mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
Merge branch 'drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile
* 'drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile: pci root complex: support for tile architecture drivers/net/tile/: on-chip network drivers for the tile architecture MAINTAINERS: add drivers/char/hvc_tile.c as maintained by tile
This commit is contained in:
commit
47143b094d
@ -5839,6 +5839,8 @@ M: Chris Metcalf <cmetcalf@tilera.com>
|
||||
W: http://www.tilera.com/scm/
|
||||
S: Supported
|
||||
F: arch/tile/
|
||||
F: drivers/char/hvc_tile.c
|
||||
F: drivers/net/tile/
|
||||
|
||||
TLAN NETWORK DRIVER
|
||||
M: Samuel Chessman <chessman@tux.org>
|
||||
|
@ -329,6 +329,18 @@ endmenu # Tilera-specific configuration
|
||||
|
||||
menu "Bus options"
|
||||
|
||||
config PCI
|
||||
bool "PCI support"
|
||||
default y
|
||||
select PCI_DOMAINS
|
||||
---help---
|
||||
Enable PCI root complex support, so PCIe endpoint devices can
|
||||
be attached to the Tile chip. Many, but not all, PCI devices
|
||||
are supported under Tilera's root complex driver.
|
||||
|
||||
config PCI_DOMAINS
|
||||
bool
|
||||
|
||||
config NO_IOMEM
|
||||
def_bool !PCI
|
||||
|
||||
|
@ -137,4 +137,56 @@ static inline void finv_buffer(void *buffer, size_t size)
|
||||
mb_incoherent();
|
||||
}
|
||||
|
||||
/*
|
||||
* Flush & invalidate a VA range that is homed remotely on a single core,
|
||||
* waiting until the memory controller holds the flushed values.
|
||||
*/
|
||||
static inline void finv_buffer_remote(void *buffer, size_t size)
|
||||
{
|
||||
char *p;
|
||||
int i;
|
||||
|
||||
/*
|
||||
* Flush and invalidate the buffer out of the local L1/L2
|
||||
* and request the home cache to flush and invalidate as well.
|
||||
*/
|
||||
__finv_buffer(buffer, size);
|
||||
|
||||
/*
|
||||
* Wait for the home cache to acknowledge that it has processed
|
||||
* all the flush-and-invalidate requests. This does not mean
|
||||
* that the flushed data has reached the memory controller yet,
|
||||
* but it does mean the home cache is processing the flushes.
|
||||
*/
|
||||
__insn_mf();
|
||||
|
||||
/*
|
||||
* Issue a load to the last cache line, which can't complete
|
||||
* until all the previously-issued flushes to the same memory
|
||||
* controller have also completed. If we weren't striping
|
||||
* memory, that one load would be sufficient, but since we may
|
||||
* be, we also need to back up to the last load issued to
|
||||
* another memory controller, which would be the point where
|
||||
* we crossed an 8KB boundary (the granularity of striping
|
||||
* across memory controllers). Keep backing up and doing this
|
||||
* until we are before the beginning of the buffer, or have
|
||||
* hit all the controllers.
|
||||
*/
|
||||
for (i = 0, p = (char *)buffer + size - 1;
|
||||
i < (1 << CHIP_LOG_NUM_MSHIMS()) && p >= (char *)buffer;
|
||||
++i) {
|
||||
const unsigned long STRIPE_WIDTH = 8192;
|
||||
|
||||
/* Force a load instruction to issue. */
|
||||
*(volatile char *)p;
|
||||
|
||||
/* Jump to end of previous stripe. */
|
||||
p -= STRIPE_WIDTH;
|
||||
p = (char *)((unsigned long)p | (STRIPE_WIDTH - 1));
|
||||
}
|
||||
|
||||
/* Wait for the loads (and thus flushes) to have completed. */
|
||||
__insn_mf();
|
||||
}
|
||||
|
||||
#endif /* _ASM_TILE_CACHEFLUSH_H */
|
||||
|
@ -55,9 +55,6 @@ extern void iounmap(volatile void __iomem *addr);
|
||||
#define ioremap_writethrough(physaddr, size) ioremap(physaddr, size)
|
||||
#define ioremap_fullcache(physaddr, size) ioremap(physaddr, size)
|
||||
|
||||
void __iomem *ioport_map(unsigned long port, unsigned int len);
|
||||
extern inline void ioport_unmap(void __iomem *addr) {}
|
||||
|
||||
#define mmiowb()
|
||||
|
||||
/* Conversion between virtual and physical mappings. */
|
||||
@ -189,12 +186,22 @@ static inline void memcpy_toio(volatile void __iomem *dst, const void *src,
|
||||
* we never run, uses them unconditionally.
|
||||
*/
|
||||
|
||||
static inline int ioport_panic(void)
|
||||
static inline long ioport_panic(void)
|
||||
{
|
||||
panic("inb/outb and friends do not exist on tile");
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline void __iomem *ioport_map(unsigned long port, unsigned int len)
|
||||
{
|
||||
return (void __iomem *) ioport_panic();
|
||||
}
|
||||
|
||||
static inline void ioport_unmap(void __iomem *addr)
|
||||
{
|
||||
ioport_panic();
|
||||
}
|
||||
|
||||
static inline u8 inb(unsigned long addr)
|
||||
{
|
||||
return ioport_panic();
|
||||
|
@ -1,117 +0,0 @@
|
||||
/*
|
||||
* Copyright 2010 Tilera Corporation. All Rights Reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation, version 2.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
|
||||
* NON INFRINGEMENT. See the GNU General Public License for
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#ifndef _ASM_TILE_PCI_BRIDGE_H
|
||||
#define _ASM_TILE_PCI_BRIDGE_H
|
||||
|
||||
#include <linux/ioport.h>
|
||||
#include <linux/pci.h>
|
||||
|
||||
struct device_node;
|
||||
struct pci_controller;
|
||||
|
||||
/*
|
||||
* pci_io_base returns the memory address at which you can access
|
||||
* the I/O space for PCI bus number `bus' (or NULL on error).
|
||||
*/
|
||||
extern void __iomem *pci_bus_io_base(unsigned int bus);
|
||||
extern unsigned long pci_bus_io_base_phys(unsigned int bus);
|
||||
extern unsigned long pci_bus_mem_base_phys(unsigned int bus);
|
||||
|
||||
/* Allocate a new PCI host bridge structure */
|
||||
extern struct pci_controller *pcibios_alloc_controller(void);
|
||||
|
||||
/* Helper function for setting up resources */
|
||||
extern void pci_init_resource(struct resource *res, unsigned long start,
|
||||
unsigned long end, int flags, char *name);
|
||||
|
||||
/* Get the PCI host controller for a bus */
|
||||
extern struct pci_controller *pci_bus_to_hose(int bus);
|
||||
|
||||
/*
|
||||
* Structure of a PCI controller (host bridge)
|
||||
*/
|
||||
struct pci_controller {
|
||||
int index; /* PCI domain number */
|
||||
struct pci_bus *root_bus;
|
||||
|
||||
int first_busno;
|
||||
int last_busno;
|
||||
|
||||
int hv_cfg_fd[2]; /* config{0,1} fds for this PCIe controller */
|
||||
int hv_mem_fd; /* fd to Hypervisor for MMIO operations */
|
||||
|
||||
struct pci_ops *ops;
|
||||
|
||||
int irq_base; /* Base IRQ from the Hypervisor */
|
||||
int plx_gen1; /* flag for PLX Gen 1 configuration */
|
||||
|
||||
/* Address ranges that are routed to this controller/bridge. */
|
||||
struct resource mem_resources[3];
|
||||
};
|
||||
|
||||
static inline struct pci_controller *pci_bus_to_host(struct pci_bus *bus)
|
||||
{
|
||||
return bus->sysdata;
|
||||
}
|
||||
|
||||
extern void setup_indirect_pci_nomap(struct pci_controller *hose,
|
||||
void __iomem *cfg_addr, void __iomem *cfg_data);
|
||||
extern void setup_indirect_pci(struct pci_controller *hose,
|
||||
u32 cfg_addr, u32 cfg_data);
|
||||
extern void setup_grackle(struct pci_controller *hose);
|
||||
|
||||
extern unsigned char common_swizzle(struct pci_dev *, unsigned char *);
|
||||
|
||||
/*
|
||||
* The following code swizzles for exactly one bridge. The routine
|
||||
* common_swizzle below handles multiple bridges. But there are a
|
||||
* some boards that don't follow the PCI spec's suggestion so we
|
||||
* break this piece out separately.
|
||||
*/
|
||||
static inline unsigned char bridge_swizzle(unsigned char pin,
|
||||
unsigned char idsel)
|
||||
{
|
||||
return (((pin-1) + idsel) % 4) + 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* The following macro is used to lookup irqs in a standard table
|
||||
* format for those PPC systems that do not already have PCI
|
||||
* interrupts properly routed.
|
||||
*/
|
||||
/* FIXME - double check this */
|
||||
#define PCI_IRQ_TABLE_LOOKUP ({ \
|
||||
long _ctl_ = -1; \
|
||||
if (idsel >= min_idsel && idsel <= max_idsel && pin <= irqs_per_slot) \
|
||||
_ctl_ = pci_irq_table[idsel - min_idsel][pin-1]; \
|
||||
_ctl_; \
|
||||
})
|
||||
|
||||
/*
|
||||
* Scan the buses below a given PCI host bridge and assign suitable
|
||||
* resources to all devices found.
|
||||
*/
|
||||
extern int pciauto_bus_scan(struct pci_controller *, int);
|
||||
|
||||
#ifdef CONFIG_PCI
|
||||
extern unsigned long pci_address_to_pio(phys_addr_t address);
|
||||
#else
|
||||
static inline unsigned long pci_address_to_pio(phys_addr_t address)
|
||||
{
|
||||
return (unsigned long)-1;
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _ASM_TILE_PCI_BRIDGE_H */
|
@ -15,7 +15,29 @@
|
||||
#ifndef _ASM_TILE_PCI_H
|
||||
#define _ASM_TILE_PCI_H
|
||||
|
||||
#include <asm/pci-bridge.h>
|
||||
#include <linux/pci.h>
|
||||
|
||||
/*
|
||||
* Structure of a PCI controller (host bridge)
|
||||
*/
|
||||
struct pci_controller {
|
||||
int index; /* PCI domain number */
|
||||
struct pci_bus *root_bus;
|
||||
|
||||
int first_busno;
|
||||
int last_busno;
|
||||
|
||||
int hv_cfg_fd[2]; /* config{0,1} fds for this PCIe controller */
|
||||
int hv_mem_fd; /* fd to Hypervisor for MMIO operations */
|
||||
|
||||
struct pci_ops *ops;
|
||||
|
||||
int irq_base; /* Base IRQ from the Hypervisor */
|
||||
int plx_gen1; /* flag for PLX Gen 1 configuration */
|
||||
|
||||
/* Address ranges that are routed to this controller/bridge. */
|
||||
struct resource mem_resources[3];
|
||||
};
|
||||
|
||||
/*
|
||||
* The hypervisor maps the entirety of CPA-space as bus addresses, so
|
||||
@ -24,57 +46,13 @@
|
||||
*/
|
||||
#define PCI_DMA_BUS_IS_PHYS 1
|
||||
|
||||
struct pci_controller *pci_bus_to_hose(int bus);
|
||||
unsigned char __init common_swizzle(struct pci_dev *dev, unsigned char *pinp);
|
||||
int __init tile_pci_init(void);
|
||||
void pci_iounmap(struct pci_dev *dev, void __iomem *addr);
|
||||
|
||||
void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long max);
|
||||
static inline void pci_iounmap(struct pci_dev *dev, void __iomem *addr) {}
|
||||
|
||||
void __devinit pcibios_fixup_bus(struct pci_bus *bus);
|
||||
|
||||
int __devinit _tile_cfg_read(struct pci_controller *hose,
|
||||
int bus,
|
||||
int slot,
|
||||
int function,
|
||||
int offset,
|
||||
int size,
|
||||
u32 *val);
|
||||
int __devinit _tile_cfg_write(struct pci_controller *hose,
|
||||
int bus,
|
||||
int slot,
|
||||
int function,
|
||||
int offset,
|
||||
int size,
|
||||
u32 val);
|
||||
|
||||
/*
|
||||
* These are used to to config reads and writes in the early stages of
|
||||
* setup before the driver infrastructure has been set up enough to be
|
||||
* able to do config reads and writes.
|
||||
*/
|
||||
#define early_cfg_read(where, size, value) \
|
||||
_tile_cfg_read(controller, \
|
||||
current_bus, \
|
||||
pci_slot, \
|
||||
pci_fn, \
|
||||
where, \
|
||||
size, \
|
||||
value)
|
||||
|
||||
#define early_cfg_write(where, size, value) \
|
||||
_tile_cfg_write(controller, \
|
||||
current_bus, \
|
||||
pci_slot, \
|
||||
pci_fn, \
|
||||
where, \
|
||||
size, \
|
||||
value)
|
||||
|
||||
|
||||
|
||||
#define PCICFG_BYTE 1
|
||||
#define PCICFG_WORD 2
|
||||
#define PCICFG_DWORD 4
|
||||
|
||||
#define TILE_NUM_PCIE 2
|
||||
|
||||
#define pci_domain_nr(bus) (((struct pci_controller *)(bus)->sysdata)->index)
|
||||
@ -88,33 +66,33 @@ static inline int pci_proc_domain(struct pci_bus *bus)
|
||||
}
|
||||
|
||||
/*
|
||||
* I/O space is currently not supported.
|
||||
* pcibios_assign_all_busses() tells whether or not the bus numbers
|
||||
* should be reassigned, in case the BIOS didn't do it correctly, or
|
||||
* in case we don't have a BIOS and we want to let Linux do it.
|
||||
*/
|
||||
static inline int pcibios_assign_all_busses(void)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
#define TILE_PCIE_LOWER_IO 0x0
|
||||
#define TILE_PCIE_UPPER_IO 0x10000
|
||||
#define TILE_PCIE_PCIE_IO_SIZE 0x0000FFFF
|
||||
|
||||
#define _PAGE_NO_CACHE 0
|
||||
#define _PAGE_GUARDED 0
|
||||
|
||||
|
||||
#define pcibios_assign_all_busses() pci_assign_all_buses
|
||||
extern int pci_assign_all_buses;
|
||||
|
||||
/*
|
||||
* No special bus mastering setup handling.
|
||||
*/
|
||||
static inline void pcibios_set_master(struct pci_dev *dev)
|
||||
{
|
||||
/* No special bus mastering setup handling */
|
||||
}
|
||||
|
||||
#define PCIBIOS_MIN_MEM 0
|
||||
#define PCIBIOS_MIN_IO TILE_PCIE_LOWER_IO
|
||||
#define PCIBIOS_MIN_IO 0
|
||||
|
||||
/*
|
||||
* This flag tells if the platform is TILEmpower that needs
|
||||
* special configuration for the PLX switch chip.
|
||||
*/
|
||||
extern int blade_pci;
|
||||
extern int tile_plx_gen1;
|
||||
|
||||
/* Use any cpu for PCI. */
|
||||
#define cpumask_of_pcibus(bus) cpu_online_mask
|
||||
|
||||
/* implement the pci_ DMA API in terms of the generic device dma_ one */
|
||||
#include <asm-generic/pci-dma-compat.h>
|
||||
@ -122,7 +100,4 @@ extern int blade_pci;
|
||||
/* generic pci stuff */
|
||||
#include <asm-generic/pci.h>
|
||||
|
||||
/* Use any cpu for PCI. */
|
||||
#define cpumask_of_pcibus(bus) cpu_online_mask
|
||||
|
||||
#endif /* _ASM_TILE_PCI_H */
|
||||
|
@ -292,8 +292,18 @@ extern int kstack_hash;
|
||||
/* Are we using huge pages in the TLB for kernel data? */
|
||||
extern int kdata_huge;
|
||||
|
||||
/* Support standard Linux prefetching. */
|
||||
#define ARCH_HAS_PREFETCH
|
||||
#define prefetch(x) __builtin_prefetch(x)
|
||||
#define PREFETCH_STRIDE CHIP_L2_LINE_SIZE()
|
||||
|
||||
/* Bring a value into the L1D, faulting the TLB if necessary. */
|
||||
#ifdef __tilegx__
|
||||
#define prefetch_L1(x) __insn_prefetch_l1_fault((void *)(x))
|
||||
#else
|
||||
#define prefetch_L1(x) __insn_prefetch_L1((void *)(x))
|
||||
#endif
|
||||
|
||||
#else /* __ASSEMBLY__ */
|
||||
|
||||
/* Do some slow action (e.g. read a slow SPR). */
|
||||
|
300
arch/tile/include/hv/drv_xgbe_impl.h
Normal file
300
arch/tile/include/hv/drv_xgbe_impl.h
Normal file
@ -0,0 +1,300 @@
|
||||
/*
|
||||
* Copyright 2010 Tilera Corporation. All Rights Reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation, version 2.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
|
||||
* NON INFRINGEMENT. See the GNU General Public License for
|
||||
* more details.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file drivers/xgbe/impl.h
|
||||
* Implementation details for the NetIO library.
|
||||
*/
|
||||
|
||||
#ifndef __DRV_XGBE_IMPL_H__
|
||||
#define __DRV_XGBE_IMPL_H__
|
||||
|
||||
#include <hv/netio_errors.h>
|
||||
#include <hv/netio_intf.h>
|
||||
#include <hv/drv_xgbe_intf.h>
|
||||
|
||||
|
||||
/** How many groups we have (log2). */
|
||||
#define LOG2_NUM_GROUPS (12)
|
||||
/** How many groups we have. */
|
||||
#define NUM_GROUPS (1 << LOG2_NUM_GROUPS)
|
||||
|
||||
/** Number of output requests we'll buffer per tile. */
|
||||
#define EPP_REQS_PER_TILE (32)
|
||||
|
||||
/** Words used in an eDMA command without checksum acceleration. */
|
||||
#define EDMA_WDS_NO_CSUM 8
|
||||
/** Words used in an eDMA command with checksum acceleration. */
|
||||
#define EDMA_WDS_CSUM 10
|
||||
/** Total available words in the eDMA command FIFO. */
|
||||
#define EDMA_WDS_TOTAL 128
|
||||
|
||||
|
||||
/*
|
||||
* FIXME: These definitions are internal and should have underscores!
|
||||
* NOTE: The actual numeric values here are intentional and allow us to
|
||||
* optimize the concept "if small ... else if large ... else ...", by
|
||||
* checking for the low bit being set, and then for non-zero.
|
||||
* These are used as array indices, so they must have the values (0, 1, 2)
|
||||
* in some order.
|
||||
*/
|
||||
#define SIZE_SMALL (1) /**< Small packet queue. */
|
||||
#define SIZE_LARGE (2) /**< Large packet queue. */
|
||||
#define SIZE_JUMBO (0) /**< Jumbo packet queue. */
|
||||
|
||||
/** The number of "SIZE_xxx" values. */
|
||||
#define NETIO_NUM_SIZES 3
|
||||
|
||||
|
||||
/*
|
||||
* Default numbers of packets for IPP drivers. These values are chosen
|
||||
* such that CIPP1 will not overflow its L2 cache.
|
||||
*/
|
||||
|
||||
/** The default number of small packets. */
|
||||
#define NETIO_DEFAULT_SMALL_PACKETS 2750
|
||||
/** The default number of large packets. */
|
||||
#define NETIO_DEFAULT_LARGE_PACKETS 2500
|
||||
/** The default number of jumbo packets. */
|
||||
#define NETIO_DEFAULT_JUMBO_PACKETS 250
|
||||
|
||||
|
||||
/** Log2 of the size of a memory arena. */
|
||||
#define NETIO_ARENA_SHIFT 24 /* 16 MB */
|
||||
/** Size of a memory arena. */
|
||||
#define NETIO_ARENA_SIZE (1 << NETIO_ARENA_SHIFT)
|
||||
|
||||
|
||||
/** A queue of packets.
|
||||
*
|
||||
* This structure partially defines a queue of packets waiting to be
|
||||
* processed. The queue as a whole is written to by an interrupt handler and
|
||||
* read by non-interrupt code; this data structure is what's touched by the
|
||||
* interrupt handler. The other part of the queue state, the read offset, is
|
||||
* kept in user space, not in hypervisor space, so it is in a separate data
|
||||
* structure.
|
||||
*
|
||||
* The read offset (__packet_receive_read in the user part of the queue
|
||||
* structure) points to the next packet to be read. When the read offset is
|
||||
* equal to the write offset, the queue is empty; therefore the queue must
|
||||
* contain one more slot than the required maximum queue size.
|
||||
*
|
||||
* Here's an example of all 3 state variables and what they mean. All
|
||||
* pointers move left to right.
|
||||
*
|
||||
* @code
|
||||
* I I V V V V I I I I
|
||||
* 0 1 2 3 4 5 6 7 8 9 10
|
||||
* ^ ^ ^ ^
|
||||
* | | |
|
||||
* | | __last_packet_plus_one
|
||||
* | __buffer_write
|
||||
* __packet_receive_read
|
||||
* @endcode
|
||||
*
|
||||
* This queue has 10 slots, and thus can hold 9 packets (_last_packet_plus_one
|
||||
* = 10). The read pointer is at 2, and the write pointer is at 6; thus,
|
||||
* there are valid, unread packets in slots 2, 3, 4, and 5. The remaining
|
||||
* slots are invalid (do not contain a packet).
|
||||
*/
|
||||
typedef struct {
|
||||
/** Byte offset of the next notify packet to be written: zero for the first
|
||||
* packet on the queue, sizeof (netio_pkt_t) for the second packet on the
|
||||
* queue, etc. */
|
||||
volatile uint32_t __packet_write;
|
||||
|
||||
/** Offset of the packet after the last valid packet (i.e., when any
|
||||
* pointer is incremented to this value, it wraps back to zero). */
|
||||
uint32_t __last_packet_plus_one;
|
||||
}
|
||||
__netio_packet_queue_t;
|
||||
|
||||
|
||||
/** A queue of buffers.
|
||||
*
|
||||
* This structure partially defines a queue of empty buffers which have been
|
||||
* obtained via requests to the IPP. (The elements of the queue are packet
|
||||
* handles, which are transformed into a full netio_pkt_t when the buffer is
|
||||
* retrieved.) The queue as a whole is written to by an interrupt handler and
|
||||
* read by non-interrupt code; this data structure is what's touched by the
|
||||
* interrupt handler. The other parts of the queue state, the read offset and
|
||||
* requested write offset, are kept in user space, not in hypervisor space, so
|
||||
* they are in a separate data structure.
|
||||
*
|
||||
* The read offset (__buffer_read in the user part of the queue structure)
|
||||
* points to the next buffer to be read. When the read offset is equal to the
|
||||
* write offset, the queue is empty; therefore the queue must contain one more
|
||||
* slot than the required maximum queue size.
|
||||
*
|
||||
* The requested write offset (__buffer_requested_write in the user part of
|
||||
* the queue structure) points to the slot which will hold the next buffer we
|
||||
* request from the IPP, once we get around to sending such a request. When
|
||||
* the requested write offset is equal to the write offset, no requests for
|
||||
* new buffers are outstanding; when the requested write offset is one greater
|
||||
* than the read offset, no more requests may be sent.
|
||||
*
|
||||
* Note that, unlike the packet_queue, the buffer_queue places incoming
|
||||
* buffers at decreasing addresses. This makes the check for "is it time to
|
||||
* wrap the buffer pointer" cheaper in the assembly code which receives new
|
||||
* buffers, and means that the value which defines the queue size,
|
||||
* __last_buffer, is different than in the packet queue. Also, the offset
|
||||
* used in the packet_queue is already scaled by the size of a packet; here we
|
||||
* use unscaled slot indices for the offsets. (These differences are
|
||||
* historical, and in the future it's possible that the packet_queue will look
|
||||
* more like this queue.)
|
||||
*
|
||||
* @code
|
||||
* Here's an example of all 4 state variables and what they mean. Remember:
|
||||
* all pointers move right to left.
|
||||
*
|
||||
* V V V I I R R V V V
|
||||
* 0 1 2 3 4 5 6 7 8 9
|
||||
* ^ ^ ^ ^
|
||||
* | | | |
|
||||
* | | | __last_buffer
|
||||
* | | __buffer_write
|
||||
* | __buffer_requested_write
|
||||
* __buffer_read
|
||||
* @endcode
|
||||
*
|
||||
* This queue has 10 slots, and thus can hold 9 buffers (_last_buffer = 9).
|
||||
* The read pointer is at 2, and the write pointer is at 6; thus, there are
|
||||
* valid, unread buffers in slots 2, 1, 0, 9, 8, and 7. The requested write
|
||||
* pointer is at 4; thus, requests have been made to the IPP for buffers which
|
||||
* will be placed in slots 6 and 5 when they arrive. Finally, the remaining
|
||||
* slots are invalid (do not contain a buffer).
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
/** Ordinal number of the next buffer to be written: 0 for the first slot in
|
||||
* the queue, 1 for the second slot in the queue, etc. */
|
||||
volatile uint32_t __buffer_write;
|
||||
|
||||
/** Ordinal number of the last buffer (i.e., when any pointer is decremented
|
||||
* below zero, it is reloaded with this value). */
|
||||
uint32_t __last_buffer;
|
||||
}
|
||||
__netio_buffer_queue_t;
|
||||
|
||||
|
||||
/**
|
||||
* An object for providing Ethernet packets to a process.
|
||||
*/
|
||||
typedef struct __netio_queue_impl_t
|
||||
{
|
||||
/** The queue of packets waiting to be received. */
|
||||
__netio_packet_queue_t __packet_receive_queue;
|
||||
/** The intr bit mask that IDs this device. */
|
||||
unsigned int __intr_id;
|
||||
/** Offset to queues of empty buffers, one per size. */
|
||||
uint32_t __buffer_queue[NETIO_NUM_SIZES];
|
||||
/** The address of the first EPP tile, or -1 if no EPP. */
|
||||
/* ISSUE: Actually this is always "0" or "~0". */
|
||||
uint32_t __epp_location;
|
||||
/** The queue ID that this queue represents. */
|
||||
unsigned int __queue_id;
|
||||
/** Number of acknowledgements received. */
|
||||
volatile uint32_t __acks_received;
|
||||
/** Last completion number received for packet_sendv. */
|
||||
volatile uint32_t __last_completion_rcv;
|
||||
/** Number of packets allowed to be outstanding. */
|
||||
uint32_t __max_outstanding;
|
||||
/** First VA available for packets. */
|
||||
void* __va_0;
|
||||
/** First VA in second range available for packets. */
|
||||
void* __va_1;
|
||||
/** Padding to align the "__packets" field to the size of a netio_pkt_t. */
|
||||
uint32_t __padding[3];
|
||||
/** The packets themselves. */
|
||||
netio_pkt_t __packets[0];
|
||||
}
|
||||
netio_queue_impl_t;
|
||||
|
||||
|
||||
/**
|
||||
* An object for managing the user end of a NetIO queue.
|
||||
*/
|
||||
typedef struct __netio_queue_user_impl_t
|
||||
{
|
||||
/** The next incoming packet to be read. */
|
||||
uint32_t __packet_receive_read;
|
||||
/** The next empty buffers to be read, one index per size. */
|
||||
uint8_t __buffer_read[NETIO_NUM_SIZES];
|
||||
/** Where the empty buffer we next request from the IPP will go, one index
|
||||
* per size. */
|
||||
uint8_t __buffer_requested_write[NETIO_NUM_SIZES];
|
||||
/** PCIe interface flag. */
|
||||
uint8_t __pcie;
|
||||
/** Number of packets left to be received before we send a credit update. */
|
||||
uint32_t __receive_credit_remaining;
|
||||
/** Value placed in __receive_credit_remaining when it reaches zero. */
|
||||
uint32_t __receive_credit_interval;
|
||||
/** First fast I/O routine index. */
|
||||
uint32_t __fastio_index;
|
||||
/** Number of acknowledgements expected. */
|
||||
uint32_t __acks_outstanding;
|
||||
/** Last completion number requested. */
|
||||
uint32_t __last_completion_req;
|
||||
/** File descriptor for driver. */
|
||||
int __fd;
|
||||
}
|
||||
netio_queue_user_impl_t;
|
||||
|
||||
|
||||
#define NETIO_GROUP_CHUNK_SIZE 64 /**< Max # groups in one IPP request */
|
||||
#define NETIO_BUCKET_CHUNK_SIZE 64 /**< Max # buckets in one IPP request */
|
||||
|
||||
|
||||
/** Internal structure used to convey packet send information to the
|
||||
* hypervisor. FIXME: Actually, it's not used for that anymore, but
|
||||
* netio_packet_send() still uses it internally.
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
uint16_t flags; /**< Packet flags (__NETIO_SEND_FLG_xxx) */
|
||||
uint16_t transfer_size; /**< Size of packet */
|
||||
uint32_t va; /**< VA of start of packet */
|
||||
__netio_pkt_handle_t handle; /**< Packet handle */
|
||||
uint32_t csum0; /**< First checksum word */
|
||||
uint32_t csum1; /**< Second checksum word */
|
||||
}
|
||||
__netio_send_cmd_t;
|
||||
|
||||
|
||||
/** Flags used in two contexts:
|
||||
* - As the "flags" member in the __netio_send_cmd_t, above; used only
|
||||
* for netio_pkt_send_{prepare,commit}.
|
||||
* - As part of the flags passed to the various send packet fast I/O calls.
|
||||
*/
|
||||
|
||||
/** Need acknowledgement on this packet. Note that some code in the
|
||||
* normal send_pkt fast I/O handler assumes that this is equal to 1. */
|
||||
#define __NETIO_SEND_FLG_ACK 0x1
|
||||
|
||||
/** Do checksum on this packet. (Only used with the __netio_send_cmd_t;
|
||||
* normal packet sends use a special fast I/O index to denote checksumming,
|
||||
* and multi-segment sends test the checksum descriptor.) */
|
||||
#define __NETIO_SEND_FLG_CSUM 0x2
|
||||
|
||||
/** Get a completion on this packet. Only used with multi-segment sends. */
|
||||
#define __NETIO_SEND_FLG_COMPLETION 0x4
|
||||
|
||||
/** Position of the number-of-extra-segments value in the flags word.
|
||||
Only used with multi-segment sends. */
|
||||
#define __NETIO_SEND_FLG_XSEG_SHIFT 3
|
||||
|
||||
/** Width of the number-of-extra-segments value in the flags word. */
|
||||
#define __NETIO_SEND_FLG_XSEG_WIDTH 2
|
||||
|
||||
#endif /* __DRV_XGBE_IMPL_H__ */
|
615
arch/tile/include/hv/drv_xgbe_intf.h
Normal file
615
arch/tile/include/hv/drv_xgbe_intf.h
Normal file
@ -0,0 +1,615 @@
|
||||
/*
|
||||
* Copyright 2010 Tilera Corporation. All Rights Reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation, version 2.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
|
||||
* NON INFRINGEMENT. See the GNU General Public License for
|
||||
* more details.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file drv_xgbe_intf.h
|
||||
* Interface to the hypervisor XGBE driver.
|
||||
*/
|
||||
|
||||
#ifndef __DRV_XGBE_INTF_H__
|
||||
#define __DRV_XGBE_INTF_H__
|
||||
|
||||
/**
|
||||
* An object for forwarding VAs and PAs to the hypervisor.
|
||||
* @ingroup types
|
||||
*
|
||||
* This allows the supervisor to specify a number of areas of memory to
|
||||
* store packet buffers.
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
/** The physical address of the memory. */
|
||||
HV_PhysAddr pa;
|
||||
/** Page table entry for the memory. This is only used to derive the
|
||||
* memory's caching mode; the PA bits are ignored. */
|
||||
HV_PTE pte;
|
||||
/** The virtual address of the memory. */
|
||||
HV_VirtAddr va;
|
||||
/** Size (in bytes) of the memory area. */
|
||||
int size;
|
||||
|
||||
}
|
||||
netio_ipp_address_t;
|
||||
|
||||
/** The various pread/pwrite offsets into the hypervisor-level driver.
|
||||
* @ingroup types
|
||||
*/
|
||||
typedef enum
|
||||
{
|
||||
/** Inform the Linux driver of the address of the NetIO arena memory.
|
||||
* This offset is actually only used to convey information from netio
|
||||
* to the Linux driver; it never makes it from there to the hypervisor.
|
||||
* Write-only; takes a uint32_t specifying the VA address. */
|
||||
NETIO_FIXED_ADDR = 0x5000000000000000ULL,
|
||||
|
||||
/** Inform the Linux driver of the size of the NetIO arena memory.
|
||||
* This offset is actually only used to convey information from netio
|
||||
* to the Linux driver; it never makes it from there to the hypervisor.
|
||||
* Write-only; takes a uint32_t specifying the VA size. */
|
||||
NETIO_FIXED_SIZE = 0x5100000000000000ULL,
|
||||
|
||||
/** Register current tile with IPP. Write then read: write, takes a
|
||||
* netio_input_config_t, read returns a pointer to a netio_queue_impl_t. */
|
||||
NETIO_IPP_INPUT_REGISTER_OFF = 0x6000000000000000ULL,
|
||||
|
||||
/** Unregister current tile from IPP. Write-only, takes a dummy argument. */
|
||||
NETIO_IPP_INPUT_UNREGISTER_OFF = 0x6100000000000000ULL,
|
||||
|
||||
/** Start packets flowing. Write-only, takes a dummy argument. */
|
||||
NETIO_IPP_INPUT_INIT_OFF = 0x6200000000000000ULL,
|
||||
|
||||
/** Stop packets flowing. Write-only, takes a dummy argument. */
|
||||
NETIO_IPP_INPUT_UNINIT_OFF = 0x6300000000000000ULL,
|
||||
|
||||
/** Configure group (typically we group on VLAN). Write-only: takes an
|
||||
* array of netio_group_t's, low 24 bits of the offset is the base group
|
||||
* number times the size of a netio_group_t. */
|
||||
NETIO_IPP_INPUT_GROUP_CFG_OFF = 0x6400000000000000ULL,
|
||||
|
||||
/** Configure bucket. Write-only: takes an array of netio_bucket_t's, low
|
||||
* 24 bits of the offset is the base bucket number times the size of a
|
||||
* netio_bucket_t. */
|
||||
NETIO_IPP_INPUT_BUCKET_CFG_OFF = 0x6500000000000000ULL,
|
||||
|
||||
/** Get/set a parameter. Read or write: read or write data is the parameter
|
||||
* value, low 32 bits of the offset is a __netio_getset_offset_t. */
|
||||
NETIO_IPP_PARAM_OFF = 0x6600000000000000ULL,
|
||||
|
||||
/** Get fast I/O index. Read-only; returns a 4-byte base index value. */
|
||||
NETIO_IPP_GET_FASTIO_OFF = 0x6700000000000000ULL,
|
||||
|
||||
/** Configure hijack IP address. Packets with this IPv4 dest address
|
||||
* go to bucket NETIO_NUM_BUCKETS - 1. Write-only: takes an IP address
|
||||
* in some standard form. FIXME: Define the form! */
|
||||
NETIO_IPP_INPUT_HIJACK_CFG_OFF = 0x6800000000000000ULL,
|
||||
|
||||
/**
|
||||
* Offsets beyond this point are reserved for the supervisor (although that
|
||||
* enforcement must be done by the supervisor driver itself).
|
||||
*/
|
||||
NETIO_IPP_USER_MAX_OFF = 0x6FFFFFFFFFFFFFFFULL,
|
||||
|
||||
/** Register I/O memory. Write-only, takes a netio_ipp_address_t. */
|
||||
NETIO_IPP_IOMEM_REGISTER_OFF = 0x7000000000000000ULL,
|
||||
|
||||
/** Unregister I/O memory. Write-only, takes a netio_ipp_address_t. */
|
||||
NETIO_IPP_IOMEM_UNREGISTER_OFF = 0x7100000000000000ULL,
|
||||
|
||||
/* Offsets greater than 0x7FFFFFFF can't be used directly from Linux
|
||||
* userspace code due to limitations in the pread/pwrite syscalls. */
|
||||
|
||||
/** Drain LIPP buffers. */
|
||||
NETIO_IPP_DRAIN_OFF = 0xFA00000000000000ULL,
|
||||
|
||||
/** Supply a netio_ipp_address_t to be used as shared memory for the
|
||||
* LEPP command queue. */
|
||||
NETIO_EPP_SHM_OFF = 0xFB00000000000000ULL,
|
||||
|
||||
/* 0xFC... is currently unused. */
|
||||
|
||||
/** Stop IPP/EPP tiles. Write-only, takes a dummy argument. */
|
||||
NETIO_IPP_STOP_SHIM_OFF = 0xFD00000000000000ULL,
|
||||
|
||||
/** Start IPP/EPP tiles. Write-only, takes a dummy argument. */
|
||||
NETIO_IPP_START_SHIM_OFF = 0xFE00000000000000ULL,
|
||||
|
||||
/** Supply packet arena. Write-only, takes an array of
|
||||
* netio_ipp_address_t values. */
|
||||
NETIO_IPP_ADDRESS_OFF = 0xFF00000000000000ULL,
|
||||
} netio_hv_offset_t;
|
||||
|
||||
/** Extract the base offset from an offset */
|
||||
#define NETIO_BASE_OFFSET(off) ((off) & 0xFF00000000000000ULL)
|
||||
/** Extract the local offset from an offset */
|
||||
#define NETIO_LOCAL_OFFSET(off) ((off) & 0x00FFFFFFFFFFFFFFULL)
|
||||
|
||||
|
||||
/**
|
||||
* Get/set offset.
|
||||
*/
|
||||
typedef union
|
||||
{
|
||||
struct
|
||||
{
|
||||
uint64_t addr:48; /**< Class-specific address */
|
||||
unsigned int class:8; /**< Class (e.g., NETIO_PARAM) */
|
||||
unsigned int opcode:8; /**< High 8 bits of NETIO_IPP_PARAM_OFF */
|
||||
}
|
||||
bits; /**< Bitfields */
|
||||
uint64_t word; /**< Aggregated value to use as the offset */
|
||||
}
|
||||
__netio_getset_offset_t;
|
||||
|
||||
/**
|
||||
* Fast I/O index offsets (must be contiguous).
|
||||
*/
|
||||
typedef enum
|
||||
{
|
||||
NETIO_FASTIO_ALLOCATE = 0, /**< Get empty packet buffer */
|
||||
NETIO_FASTIO_FREE_BUFFER = 1, /**< Give buffer back to IPP */
|
||||
NETIO_FASTIO_RETURN_CREDITS = 2, /**< Give credits to IPP */
|
||||
NETIO_FASTIO_SEND_PKT_NOCK = 3, /**< Send a packet, no checksum */
|
||||
NETIO_FASTIO_SEND_PKT_CK = 4, /**< Send a packet, with checksum */
|
||||
NETIO_FASTIO_SEND_PKT_VEC = 5, /**< Send a vector of packets */
|
||||
NETIO_FASTIO_SENDV_PKT = 6, /**< Sendv one packet */
|
||||
NETIO_FASTIO_NUM_INDEX = 7, /**< Total number of fast I/O indices */
|
||||
} netio_fastio_index_t;
|
||||
|
||||
/** 3-word return type for Fast I/O call. */
|
||||
typedef struct
|
||||
{
|
||||
int err; /**< Error code. */
|
||||
uint32_t val0; /**< Value. Meaning depends upon the specific call. */
|
||||
uint32_t val1; /**< Value. Meaning depends upon the specific call. */
|
||||
} netio_fastio_rv3_t;
|
||||
|
||||
/** 0-argument fast I/O call */
|
||||
int __netio_fastio0(uint32_t fastio_index);
|
||||
/** 1-argument fast I/O call */
|
||||
int __netio_fastio1(uint32_t fastio_index, uint32_t arg0);
|
||||
/** 3-argument fast I/O call, 2-word return value */
|
||||
netio_fastio_rv3_t __netio_fastio3_rv3(uint32_t fastio_index, uint32_t arg0,
|
||||
uint32_t arg1, uint32_t arg2);
|
||||
/** 4-argument fast I/O call */
|
||||
int __netio_fastio4(uint32_t fastio_index, uint32_t arg0, uint32_t arg1,
|
||||
uint32_t arg2, uint32_t arg3);
|
||||
/** 6-argument fast I/O call */
|
||||
int __netio_fastio6(uint32_t fastio_index, uint32_t arg0, uint32_t arg1,
|
||||
uint32_t arg2, uint32_t arg3, uint32_t arg4, uint32_t arg5);
|
||||
/** 9-argument fast I/O call */
|
||||
int __netio_fastio9(uint32_t fastio_index, uint32_t arg0, uint32_t arg1,
|
||||
uint32_t arg2, uint32_t arg3, uint32_t arg4, uint32_t arg5,
|
||||
uint32_t arg6, uint32_t arg7, uint32_t arg8);
|
||||
|
||||
/** Allocate an empty packet.
|
||||
* @param fastio_index Fast I/O index.
|
||||
* @param size Size of the packet to allocate.
|
||||
*/
|
||||
#define __netio_fastio_allocate(fastio_index, size) \
|
||||
__netio_fastio1((fastio_index) + NETIO_FASTIO_ALLOCATE, size)
|
||||
|
||||
/** Free a buffer.
|
||||
* @param fastio_index Fast I/O index.
|
||||
* @param handle Handle for the packet to free.
|
||||
*/
|
||||
#define __netio_fastio_free_buffer(fastio_index, handle) \
|
||||
__netio_fastio1((fastio_index) + NETIO_FASTIO_FREE_BUFFER, handle)
|
||||
|
||||
/** Increment our receive credits.
|
||||
* @param fastio_index Fast I/O index.
|
||||
* @param credits Number of credits to add.
|
||||
*/
|
||||
#define __netio_fastio_return_credits(fastio_index, credits) \
|
||||
__netio_fastio1((fastio_index) + NETIO_FASTIO_RETURN_CREDITS, credits)
|
||||
|
||||
/** Send packet, no checksum.
|
||||
* @param fastio_index Fast I/O index.
|
||||
* @param ackflag Nonzero if we want an ack.
|
||||
* @param size Size of the packet.
|
||||
* @param va Virtual address of start of packet.
|
||||
* @param handle Packet handle.
|
||||
*/
|
||||
#define __netio_fastio_send_pkt_nock(fastio_index, ackflag, size, va, handle) \
|
||||
__netio_fastio4((fastio_index) + NETIO_FASTIO_SEND_PKT_NOCK, ackflag, \
|
||||
size, va, handle)
|
||||
|
||||
/** Send packet, calculate checksum.
|
||||
* @param fastio_index Fast I/O index.
|
||||
* @param ackflag Nonzero if we want an ack.
|
||||
* @param size Size of the packet.
|
||||
* @param va Virtual address of start of packet.
|
||||
* @param handle Packet handle.
|
||||
* @param csum0 Shim checksum header.
|
||||
* @param csum1 Checksum seed.
|
||||
*/
|
||||
#define __netio_fastio_send_pkt_ck(fastio_index, ackflag, size, va, handle, \
|
||||
csum0, csum1) \
|
||||
__netio_fastio6((fastio_index) + NETIO_FASTIO_SEND_PKT_CK, ackflag, \
|
||||
size, va, handle, csum0, csum1)
|
||||
|
||||
|
||||
/** Format for the "csum0" argument to the __netio_fastio_send routines
|
||||
* and LEPP. Note that this is currently exactly identical to the
|
||||
* ShimProtocolOffloadHeader.
|
||||
*/
|
||||
typedef union
|
||||
{
|
||||
struct
|
||||
{
|
||||
unsigned int start_byte:7; /**< The first byte to be checksummed */
|
||||
unsigned int count:14; /**< Number of bytes to be checksummed. */
|
||||
unsigned int destination_byte:7; /**< The byte to write the checksum to. */
|
||||
unsigned int reserved:4; /**< Reserved. */
|
||||
} bits; /**< Decomposed method of access. */
|
||||
unsigned int word; /**< To send out the IDN. */
|
||||
} __netio_checksum_header_t;
|
||||
|
||||
|
||||
/** Sendv packet with 1 or 2 segments.
|
||||
* @param fastio_index Fast I/O index.
|
||||
* @param flags Ack/csum/notify flags in low 3 bits; number of segments minus
|
||||
* 1 in next 2 bits; expected checksum in high 16 bits.
|
||||
* @param confno Confirmation number to request, if notify flag set.
|
||||
* @param csum0 Checksum descriptor; if zero, no checksum.
|
||||
* @param va_F Virtual address of first segment.
|
||||
* @param va_L Virtual address of last segment, if 2 segments.
|
||||
* @param len_F_L Length of first segment in low 16 bits; length of last
|
||||
* segment, if 2 segments, in high 16 bits.
|
||||
*/
|
||||
#define __netio_fastio_sendv_pkt_1_2(fastio_index, flags, confno, csum0, \
|
||||
va_F, va_L, len_F_L) \
|
||||
__netio_fastio6((fastio_index) + NETIO_FASTIO_SENDV_PKT, flags, confno, \
|
||||
csum0, va_F, va_L, len_F_L)
|
||||
|
||||
/** Send packet on PCIe interface.
|
||||
* @param fastio_index Fast I/O index.
|
||||
* @param flags Ack/csum/notify flags in low 3 bits.
|
||||
* @param confno Confirmation number to request, if notify flag set.
|
||||
* @param csum0 Checksum descriptor; Hard wired 0, not needed for PCIe.
|
||||
* @param va_F Virtual address of the packet buffer.
|
||||
* @param va_L Virtual address of last segment, if 2 segments. Hard wired 0.
|
||||
* @param len_F_L Length of the packet buffer in low 16 bits.
|
||||
*/
|
||||
#define __netio_fastio_send_pcie_pkt(fastio_index, flags, confno, csum0, \
|
||||
va_F, va_L, len_F_L) \
|
||||
__netio_fastio6((fastio_index) + PCIE_FASTIO_SENDV_PKT, flags, confno, \
|
||||
csum0, va_F, va_L, len_F_L)
|
||||
|
||||
/** Sendv packet with 3 or 4 segments.
|
||||
* @param fastio_index Fast I/O index.
|
||||
* @param flags Ack/csum/notify flags in low 3 bits; number of segments minus
|
||||
* 1 in next 2 bits; expected checksum in high 16 bits.
|
||||
* @param confno Confirmation number to request, if notify flag set.
|
||||
* @param csum0 Checksum descriptor; if zero, no checksum.
|
||||
* @param va_F Virtual address of first segment.
|
||||
* @param va_L Virtual address of last segment (third segment if 3 segments,
|
||||
* fourth segment if 4 segments).
|
||||
* @param len_F_L Length of first segment in low 16 bits; length of last
|
||||
* segment in high 16 bits.
|
||||
* @param va_M0 Virtual address of "middle 0" segment; this segment is sent
|
||||
* second when there are three segments, and third if there are four.
|
||||
* @param va_M1 Virtual address of "middle 1" segment; this segment is sent
|
||||
* second when there are four segments.
|
||||
* @param len_M0_M1 Length of middle 0 segment in low 16 bits; length of middle
|
||||
* 1 segment, if 4 segments, in high 16 bits.
|
||||
*/
|
||||
#define __netio_fastio_sendv_pkt_3_4(fastio_index, flags, confno, csum0, va_F, \
|
||||
va_L, len_F_L, va_M0, va_M1, len_M0_M1) \
|
||||
__netio_fastio9((fastio_index) + NETIO_FASTIO_SENDV_PKT, flags, confno, \
|
||||
csum0, va_F, va_L, len_F_L, va_M0, va_M1, len_M0_M1)
|
||||
|
||||
/** Send vector of packets.
|
||||
* @param fastio_index Fast I/O index.
|
||||
* @param seqno Number of packets transmitted so far on this interface;
|
||||
* used to decide which packets should be acknowledged.
|
||||
* @param nentries Number of entries in vector.
|
||||
* @param va Virtual address of start of vector entry array.
|
||||
* @return 3-word netio_fastio_rv3_t structure. The structure's err member
|
||||
* is an error code, or zero if no error. The val0 member is the
|
||||
* updated value of seqno; it has been incremented by 1 for each
|
||||
* packet sent. That increment may be less than nentries if an
|
||||
* error occured, or if some of the entries in the vector contain
|
||||
* handles equal to NETIO_PKT_HANDLE_NONE. The val1 member is the
|
||||
* updated value of nentries; it has been decremented by 1 for each
|
||||
* vector entry processed. Again, that decrement may be less than
|
||||
* nentries (leaving the returned value positive) if an error
|
||||
* occurred.
|
||||
*/
|
||||
#define __netio_fastio_send_pkt_vec(fastio_index, seqno, nentries, va) \
|
||||
__netio_fastio3_rv3((fastio_index) + NETIO_FASTIO_SEND_PKT_VEC, seqno, \
|
||||
nentries, va)
|
||||
|
||||
|
||||
/** An egress DMA command for LEPP. */
|
||||
typedef struct
|
||||
{
|
||||
/** Is this a TSO transfer?
|
||||
*
|
||||
* NOTE: This field is always 0, to distinguish it from
|
||||
* lepp_tso_cmd_t. It must come first!
|
||||
*/
|
||||
uint8_t tso : 1;
|
||||
|
||||
/** Unused padding bits. */
|
||||
uint8_t _unused : 3;
|
||||
|
||||
/** Should this packet be sent directly from caches instead of DRAM,
|
||||
* using hash-for-home to locate the packet data?
|
||||
*/
|
||||
uint8_t hash_for_home : 1;
|
||||
|
||||
/** Should we compute a checksum? */
|
||||
uint8_t compute_checksum : 1;
|
||||
|
||||
/** Is this the final buffer for this packet?
|
||||
*
|
||||
* A single packet can be split over several input buffers (a "gather"
|
||||
* operation). This flag indicates that this is the last buffer
|
||||
* in a packet.
|
||||
*/
|
||||
uint8_t end_of_packet : 1;
|
||||
|
||||
/** Should LEPP advance 'comp_busy' when this DMA is fully finished? */
|
||||
uint8_t send_completion : 1;
|
||||
|
||||
/** High bits of Client Physical Address of the start of the buffer
|
||||
* to be egressed.
|
||||
*
|
||||
* NOTE: Only 6 bits are actually needed here, as CPAs are
|
||||
* currently 38 bits. So two bits could be scavenged from this.
|
||||
*/
|
||||
uint8_t cpa_hi;
|
||||
|
||||
/** The number of bytes to be egressed. */
|
||||
uint16_t length;
|
||||
|
||||
/** Low 32 bits of Client Physical Address of the start of the buffer
|
||||
* to be egressed.
|
||||
*/
|
||||
uint32_t cpa_lo;
|
||||
|
||||
/** Checksum information (only used if 'compute_checksum'). */
|
||||
__netio_checksum_header_t checksum_data;
|
||||
|
||||
} lepp_cmd_t;
|
||||
|
||||
|
||||
/** A chunk of physical memory for a TSO egress. */
|
||||
typedef struct
|
||||
{
|
||||
/** The low bits of the CPA. */
|
||||
uint32_t cpa_lo;
|
||||
/** The high bits of the CPA. */
|
||||
uint16_t cpa_hi : 15;
|
||||
/** Should this packet be sent directly from caches instead of DRAM,
|
||||
* using hash-for-home to locate the packet data?
|
||||
*/
|
||||
uint16_t hash_for_home : 1;
|
||||
/** The length in bytes. */
|
||||
uint16_t length;
|
||||
} lepp_frag_t;
|
||||
|
||||
|
||||
/** An LEPP command that handles TSO. */
|
||||
typedef struct
|
||||
{
|
||||
/** Is this a TSO transfer?
|
||||
*
|
||||
* NOTE: This field is always 1, to distinguish it from
|
||||
* lepp_cmd_t. It must come first!
|
||||
*/
|
||||
uint8_t tso : 1;
|
||||
|
||||
/** Unused padding bits. */
|
||||
uint8_t _unused : 7;
|
||||
|
||||
/** Size of the header[] array in bytes. It must be in the range
|
||||
* [40, 127], which are the smallest header for a TCP packet over
|
||||
* Ethernet and the maximum possible prepend size supported by
|
||||
* hardware, respectively. Note that the array storage must be
|
||||
* padded out to a multiple of four bytes so that the following
|
||||
* LEPP command is aligned properly.
|
||||
*/
|
||||
uint8_t header_size;
|
||||
|
||||
/** Byte offset of the IP header in header[]. */
|
||||
uint8_t ip_offset;
|
||||
|
||||
/** Byte offset of the TCP header in header[]. */
|
||||
uint8_t tcp_offset;
|
||||
|
||||
/** The number of bytes to use for the payload of each packet,
|
||||
* except of course the last one, which may not have enough bytes.
|
||||
* This means that each Ethernet packet except the last will have a
|
||||
* size of header_size + payload_size.
|
||||
*/
|
||||
uint16_t payload_size;
|
||||
|
||||
/** The length of the 'frags' array that follows this struct. */
|
||||
uint16_t num_frags;
|
||||
|
||||
/** The actual frags. */
|
||||
lepp_frag_t frags[0 /* Variable-sized; num_frags entries. */];
|
||||
|
||||
/*
|
||||
* The packet header template logically follows frags[],
|
||||
* but you can't declare that in C.
|
||||
*
|
||||
* uint32_t header[header_size_in_words_rounded_up];
|
||||
*/
|
||||
|
||||
} lepp_tso_cmd_t;
|
||||
|
||||
|
||||
/** An LEPP completion ring entry. */
|
||||
typedef void* lepp_comp_t;
|
||||
|
||||
|
||||
/** Maximum number of frags for one TSO command. This is adapted from
|
||||
* linux's "MAX_SKB_FRAGS", and presumably over-estimates by one, for
|
||||
* our page size of exactly 65536. We add one for a "body" fragment.
|
||||
*/
|
||||
#define LEPP_MAX_FRAGS (65536 / HV_PAGE_SIZE_SMALL + 2 + 1)
|
||||
|
||||
/** Total number of bytes needed for an lepp_tso_cmd_t. */
|
||||
#define LEPP_TSO_CMD_SIZE(num_frags, header_size) \
|
||||
(sizeof(lepp_tso_cmd_t) + \
|
||||
(num_frags) * sizeof(lepp_frag_t) + \
|
||||
(((header_size) + 3) & -4))
|
||||
|
||||
/** The size of the lepp "cmd" queue. */
|
||||
#define LEPP_CMD_QUEUE_BYTES \
|
||||
(((CHIP_L2_CACHE_SIZE() - 2 * CHIP_L2_LINE_SIZE()) / \
|
||||
(sizeof(lepp_cmd_t) + sizeof(lepp_comp_t))) * sizeof(lepp_cmd_t))
|
||||
|
||||
/** The largest possible command that can go in lepp_queue_t::cmds[]. */
|
||||
#define LEPP_MAX_CMD_SIZE LEPP_TSO_CMD_SIZE(LEPP_MAX_FRAGS, 128)
|
||||
|
||||
/** The largest possible value of lepp_queue_t::cmd_{head, tail} (inclusive).
|
||||
*/
|
||||
#define LEPP_CMD_LIMIT \
|
||||
(LEPP_CMD_QUEUE_BYTES - LEPP_MAX_CMD_SIZE)
|
||||
|
||||
/** The maximum number of completions in an LEPP queue. */
|
||||
#define LEPP_COMP_QUEUE_SIZE \
|
||||
((LEPP_CMD_LIMIT + sizeof(lepp_cmd_t) - 1) / sizeof(lepp_cmd_t))
|
||||
|
||||
/** Increment an index modulo the queue size. */
|
||||
#define LEPP_QINC(var) \
|
||||
(var = __insn_mnz(var - (LEPP_COMP_QUEUE_SIZE - 1), var + 1))
|
||||
|
||||
/** A queue used to convey egress commands from the client to LEPP. */
|
||||
typedef struct
|
||||
{
|
||||
/** Index of first completion not yet processed by user code.
|
||||
* If this is equal to comp_busy, there are no such completions.
|
||||
*
|
||||
* NOTE: This is only read/written by the user.
|
||||
*/
|
||||
unsigned int comp_head;
|
||||
|
||||
/** Index of first completion record not yet completed.
|
||||
* If this is equal to comp_tail, there are no such completions.
|
||||
* This index gets advanced (modulo LEPP_QUEUE_SIZE) whenever
|
||||
* a command with the 'completion' bit set is finished.
|
||||
*
|
||||
* NOTE: This is only written by LEPP, only read by the user.
|
||||
*/
|
||||
volatile unsigned int comp_busy;
|
||||
|
||||
/** Index of the first empty slot in the completion ring.
|
||||
* Entries from this up to but not including comp_head (in ring order)
|
||||
* can be filled in with completion data.
|
||||
*
|
||||
* NOTE: This is only read/written by the user.
|
||||
*/
|
||||
unsigned int comp_tail;
|
||||
|
||||
/** Byte index of first command enqueued for LEPP but not yet processed.
|
||||
*
|
||||
* This is always divisible by sizeof(void*) and always <= LEPP_CMD_LIMIT.
|
||||
*
|
||||
* NOTE: LEPP advances this counter as soon as it no longer needs
|
||||
* the cmds[] storage for this entry, but the transfer is not actually
|
||||
* complete (i.e. the buffer pointed to by the command is no longer
|
||||
* needed) until comp_busy advances.
|
||||
*
|
||||
* If this is equal to cmd_tail, the ring is empty.
|
||||
*
|
||||
* NOTE: This is only written by LEPP, only read by the user.
|
||||
*/
|
||||
volatile unsigned int cmd_head;
|
||||
|
||||
/** Byte index of first empty slot in the command ring. This field can
|
||||
* be incremented up to but not equal to cmd_head (because that would
|
||||
* mean the ring is empty).
|
||||
*
|
||||
* This is always divisible by sizeof(void*) and always <= LEPP_CMD_LIMIT.
|
||||
*
|
||||
* NOTE: This is read/written by the user, only read by LEPP.
|
||||
*/
|
||||
volatile unsigned int cmd_tail;
|
||||
|
||||
/** A ring of variable-sized egress DMA commands.
|
||||
*
|
||||
* NOTE: Only written by the user, only read by LEPP.
|
||||
*/
|
||||
char cmds[LEPP_CMD_QUEUE_BYTES]
|
||||
__attribute__((aligned(CHIP_L2_LINE_SIZE())));
|
||||
|
||||
/** A ring of user completion data.
|
||||
* NOTE: Only read/written by the user.
|
||||
*/
|
||||
lepp_comp_t comps[LEPP_COMP_QUEUE_SIZE]
|
||||
__attribute__((aligned(CHIP_L2_LINE_SIZE())));
|
||||
} lepp_queue_t;
|
||||
|
||||
|
||||
/** An internal helper function for determining the number of entries
|
||||
* available in a ring buffer, given that there is one sentinel.
|
||||
*/
|
||||
static inline unsigned int
|
||||
_lepp_num_free_slots(unsigned int head, unsigned int tail)
|
||||
{
|
||||
/*
|
||||
* One entry is reserved for use as a sentinel, to distinguish
|
||||
* "empty" from "full". So we compute
|
||||
* (head - tail - 1) % LEPP_QUEUE_SIZE, but without using a slow % operation.
|
||||
*/
|
||||
return (head - tail - 1) + ((head <= tail) ? LEPP_COMP_QUEUE_SIZE : 0);
|
||||
}
|
||||
|
||||
|
||||
/** Returns how many new comp entries can be enqueued. */
|
||||
static inline unsigned int
|
||||
lepp_num_free_comp_slots(const lepp_queue_t* q)
|
||||
{
|
||||
return _lepp_num_free_slots(q->comp_head, q->comp_tail);
|
||||
}
|
||||
|
||||
static inline int
|
||||
lepp_qsub(int v1, int v2)
|
||||
{
|
||||
int delta = v1 - v2;
|
||||
return delta + ((delta >> 31) & LEPP_COMP_QUEUE_SIZE);
|
||||
}
|
||||
|
||||
|
||||
/** FIXME: Check this from linux, via a new "pwrite()" call. */
|
||||
#define LIPP_VERSION 1
|
||||
|
||||
|
||||
/** We use exactly two bytes of alignment padding. */
|
||||
#define LIPP_PACKET_PADDING 2
|
||||
|
||||
/** The minimum size of a "small" buffer (including the padding). */
|
||||
#define LIPP_SMALL_PACKET_SIZE 128
|
||||
|
||||
/*
|
||||
* NOTE: The following two values should total to less than around
|
||||
* 13582, to keep the total size used for "lipp_state_t" below 64K.
|
||||
*/
|
||||
|
||||
/** The maximum number of "small" buffers.
|
||||
* This is enough for 53 network cpus with 128 credits. Note that
|
||||
* if these are exhausted, we will fall back to using large buffers.
|
||||
*/
|
||||
#define LIPP_SMALL_BUFFERS 6785
|
||||
|
||||
/** The maximum number of "large" buffers.
|
||||
* This is enough for 53 network cpus with 128 credits.
|
||||
*/
|
||||
#define LIPP_LARGE_BUFFERS 6785
|
||||
|
||||
#endif /* __DRV_XGBE_INTF_H__ */
|
122
arch/tile/include/hv/netio_errors.h
Normal file
122
arch/tile/include/hv/netio_errors.h
Normal file
@ -0,0 +1,122 @@
|
||||
/*
|
||||
* Copyright 2010 Tilera Corporation. All Rights Reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation, version 2.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
|
||||
* NON INFRINGEMENT. See the GNU General Public License for
|
||||
* more details.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Error codes returned from NetIO routines.
|
||||
*/
|
||||
|
||||
#ifndef __NETIO_ERRORS_H__
|
||||
#define __NETIO_ERRORS_H__
|
||||
|
||||
/**
|
||||
* @addtogroup error
|
||||
*
|
||||
* @brief The error codes returned by NetIO functions.
|
||||
*
|
||||
* NetIO functions return 0 (defined as ::NETIO_NO_ERROR) on success, and
|
||||
* a negative value if an error occurs.
|
||||
*
|
||||
* In cases where a NetIO function failed due to a error reported by
|
||||
* system libraries, the error code will be the negation of the
|
||||
* system errno at the time of failure. The @ref netio_strerror()
|
||||
* function will deliver error strings for both NetIO and system error
|
||||
* codes.
|
||||
*
|
||||
* @{
|
||||
*/
|
||||
|
||||
/** The set of all NetIO errors. */
|
||||
typedef enum
|
||||
{
|
||||
/** Operation successfully completed. */
|
||||
NETIO_NO_ERROR = 0,
|
||||
|
||||
/** A packet was successfully retrieved from an input queue. */
|
||||
NETIO_PKT = 0,
|
||||
|
||||
/** Largest NetIO error number. */
|
||||
NETIO_ERR_MAX = -701,
|
||||
|
||||
/** The tile is not registered with the IPP. */
|
||||
NETIO_NOT_REGISTERED = -701,
|
||||
|
||||
/** No packet was available to retrieve from the input queue. */
|
||||
NETIO_NOPKT = -702,
|
||||
|
||||
/** The requested function is not implemented. */
|
||||
NETIO_NOT_IMPLEMENTED = -703,
|
||||
|
||||
/** On a registration operation, the target queue already has the maximum
|
||||
* number of tiles registered for it, and no more may be added. On a
|
||||
* packet send operation, the output queue is full and nothing more can
|
||||
* be queued until some of the queued packets are actually transmitted. */
|
||||
NETIO_QUEUE_FULL = -704,
|
||||
|
||||
/** The calling process or thread is not bound to exactly one CPU. */
|
||||
NETIO_BAD_AFFINITY = -705,
|
||||
|
||||
/** Cannot allocate memory on requested controllers. */
|
||||
NETIO_CANNOT_HOME = -706,
|
||||
|
||||
/** On a registration operation, the IPP specified is not configured
|
||||
* to support the options requested; for instance, the application
|
||||
* wants a specific type of tagged headers which the configured IPP
|
||||
* doesn't support. Or, the supplied configuration information is
|
||||
* not self-consistent, or is out of range; for instance, specifying
|
||||
* both NETIO_RECV and NETIO_NO_RECV, or asking for more than
|
||||
* NETIO_MAX_SEND_BUFFERS to be preallocated. On a VLAN or bucket
|
||||
* configure operation, the number of items, or the base item, was
|
||||
* out of range.
|
||||
*/
|
||||
NETIO_BAD_CONFIG = -707,
|
||||
|
||||
/** Too many tiles have registered to transmit packets. */
|
||||
NETIO_TOOMANY_XMIT = -708,
|
||||
|
||||
/** Packet transmission was attempted on a queue which was registered
|
||||
with transmit disabled. */
|
||||
NETIO_UNREG_XMIT = -709,
|
||||
|
||||
/** This tile is already registered with the IPP. */
|
||||
NETIO_ALREADY_REGISTERED = -710,
|
||||
|
||||
/** The Ethernet link is down. The application should try again later. */
|
||||
NETIO_LINK_DOWN = -711,
|
||||
|
||||
/** An invalid memory buffer has been specified. This may be an unmapped
|
||||
* virtual address, or one which does not meet alignment requirements.
|
||||
* For netio_input_register(), this error may be returned when multiple
|
||||
* processes specify different memory regions to be used for NetIO
|
||||
* buffers. That can happen if these processes specify explicit memory
|
||||
* regions with the ::NETIO_FIXED_BUFFER_VA flag, or if tmc_cmem_init()
|
||||
* has not been called by a common ancestor of the processes.
|
||||
*/
|
||||
NETIO_FAULT = -712,
|
||||
|
||||
/** Cannot combine user-managed shared memory and cache coherence. */
|
||||
NETIO_BAD_CACHE_CONFIG = -713,
|
||||
|
||||
/** Smallest NetIO error number. */
|
||||
NETIO_ERR_MIN = -713,
|
||||
|
||||
#ifndef __DOXYGEN__
|
||||
/** Used internally to mean that no response is needed; never returned to
|
||||
* an application. */
|
||||
NETIO_NO_RESPONSE = 1
|
||||
#endif
|
||||
} netio_error_t;
|
||||
|
||||
/** @} */
|
||||
|
||||
#endif /* __NETIO_ERRORS_H__ */
|
2975
arch/tile/include/hv/netio_intf.h
Normal file
2975
arch/tile/include/hv/netio_intf.h
Normal file
File diff suppressed because it is too large
Load Diff
@ -15,3 +15,4 @@ obj-$(CONFIG_SMP) += smpboot.o smp.o tlb.o
|
||||
obj-$(CONFIG_MODULES) += module.o
|
||||
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
|
||||
obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o
|
||||
obj-$(CONFIG_PCI) += pci.o
|
||||
|
621
arch/tile/kernel/pci.c
Normal file
621
arch/tile/kernel/pci.c
Normal file
@ -0,0 +1,621 @@
|
||||
/*
|
||||
* Copyright 2010 Tilera Corporation. All Rights Reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation, version 2.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
|
||||
* NON INFRINGEMENT. See the GNU General Public License for
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/pci.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/string.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/capability.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/errno.h>
|
||||
#include <linux/bootmem.h>
|
||||
#include <linux/irq.h>
|
||||
#include <linux/io.h>
|
||||
#include <linux/uaccess.h>
|
||||
|
||||
#include <asm/processor.h>
|
||||
#include <asm/sections.h>
|
||||
#include <asm/byteorder.h>
|
||||
#include <asm/hv_driver.h>
|
||||
#include <hv/drv_pcie_rc_intf.h>
|
||||
|
||||
|
||||
/*
|
||||
* Initialization flow and process
|
||||
* -------------------------------
|
||||
*
|
||||
* This files containes the routines to search for PCI buses,
|
||||
* enumerate the buses, and configure any attached devices.
|
||||
*
|
||||
* There are two entry points here:
|
||||
* 1) tile_pci_init
|
||||
* This sets up the pci_controller structs, and opens the
|
||||
* FDs to the hypervisor. This is called from setup_arch() early
|
||||
* in the boot process.
|
||||
* 2) pcibios_init
|
||||
* This probes the PCI bus(es) for any attached hardware. It's
|
||||
* called by subsys_initcall. All of the real work is done by the
|
||||
* generic Linux PCI layer.
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* This flag tells if the platform is TILEmpower that needs
|
||||
* special configuration for the PLX switch chip.
|
||||
*/
|
||||
int __write_once tile_plx_gen1;
|
||||
|
||||
static struct pci_controller controllers[TILE_NUM_PCIE];
|
||||
static int num_controllers;
|
||||
|
||||
static struct pci_ops tile_cfg_ops;
|
||||
|
||||
|
||||
/*
|
||||
* We don't need to worry about the alignment of resources.
|
||||
*/
|
||||
resource_size_t pcibios_align_resource(void *data, const struct resource *res,
|
||||
resource_size_t size, resource_size_t align)
|
||||
{
|
||||
return res->start;
|
||||
}
|
||||
EXPORT_SYMBOL(pcibios_align_resource);
|
||||
|
||||
/*
|
||||
* Open a FD to the hypervisor PCI device.
|
||||
*
|
||||
* controller_id is the controller number, config type is 0 or 1 for
|
||||
* config0 or config1 operations.
|
||||
*/
|
||||
static int __init tile_pcie_open(int controller_id, int config_type)
|
||||
{
|
||||
char filename[32];
|
||||
int fd;
|
||||
|
||||
sprintf(filename, "pcie/%d/config%d", controller_id, config_type);
|
||||
|
||||
fd = hv_dev_open((HV_VirtAddr)filename, 0);
|
||||
|
||||
return fd;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Get the IRQ numbers from the HV and set up the handlers for them.
|
||||
*/
|
||||
static int __init tile_init_irqs(int controller_id,
|
||||
struct pci_controller *controller)
|
||||
{
|
||||
char filename[32];
|
||||
int fd;
|
||||
int ret;
|
||||
int x;
|
||||
struct pcie_rc_config rc_config;
|
||||
|
||||
sprintf(filename, "pcie/%d/ctl", controller_id);
|
||||
fd = hv_dev_open((HV_VirtAddr)filename, 0);
|
||||
if (fd < 0) {
|
||||
pr_err("PCI: hv_dev_open(%s) failed\n", filename);
|
||||
return -1;
|
||||
}
|
||||
ret = hv_dev_pread(fd, 0, (HV_VirtAddr)(&rc_config),
|
||||
sizeof(rc_config), PCIE_RC_CONFIG_MASK_OFF);
|
||||
hv_dev_close(fd);
|
||||
if (ret != sizeof(rc_config)) {
|
||||
pr_err("PCI: wanted %zd bytes, got %d\n",
|
||||
sizeof(rc_config), ret);
|
||||
return -1;
|
||||
}
|
||||
/* Record irq_base so that we can map INTx to IRQ # later. */
|
||||
controller->irq_base = rc_config.intr;
|
||||
|
||||
for (x = 0; x < 4; x++)
|
||||
tile_irq_activate(rc_config.intr + x,
|
||||
TILE_IRQ_HW_CLEAR);
|
||||
|
||||
if (rc_config.plx_gen1)
|
||||
controller->plx_gen1 = 1;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* First initialization entry point, called from setup_arch().
|
||||
*
|
||||
* Find valid controllers and fill in pci_controller structs for each
|
||||
* of them.
|
||||
*
|
||||
* Returns the number of controllers discovered.
|
||||
*/
|
||||
int __init tile_pci_init(void)
|
||||
{
|
||||
int i;
|
||||
|
||||
pr_info("PCI: Searching for controllers...\n");
|
||||
|
||||
/* Do any configuration we need before using the PCIe */
|
||||
|
||||
for (i = 0; i < TILE_NUM_PCIE; i++) {
|
||||
int hv_cfg_fd0 = -1;
|
||||
int hv_cfg_fd1 = -1;
|
||||
int hv_mem_fd = -1;
|
||||
char name[32];
|
||||
struct pci_controller *controller;
|
||||
|
||||
/*
|
||||
* Open the fd to the HV. If it fails then this
|
||||
* device doesn't exist.
|
||||
*/
|
||||
hv_cfg_fd0 = tile_pcie_open(i, 0);
|
||||
if (hv_cfg_fd0 < 0)
|
||||
continue;
|
||||
hv_cfg_fd1 = tile_pcie_open(i, 1);
|
||||
if (hv_cfg_fd1 < 0) {
|
||||
pr_err("PCI: Couldn't open config fd to HV "
|
||||
"for controller %d\n", i);
|
||||
goto err_cont;
|
||||
}
|
||||
|
||||
sprintf(name, "pcie/%d/mem", i);
|
||||
hv_mem_fd = hv_dev_open((HV_VirtAddr)name, 0);
|
||||
if (hv_mem_fd < 0) {
|
||||
pr_err("PCI: Could not open mem fd to HV!\n");
|
||||
goto err_cont;
|
||||
}
|
||||
|
||||
pr_info("PCI: Found PCI controller #%d\n", i);
|
||||
|
||||
controller = &controllers[num_controllers];
|
||||
|
||||
if (tile_init_irqs(i, controller)) {
|
||||
pr_err("PCI: Could not initialize "
|
||||
"IRQs, aborting.\n");
|
||||
goto err_cont;
|
||||
}
|
||||
|
||||
controller->index = num_controllers;
|
||||
controller->hv_cfg_fd[0] = hv_cfg_fd0;
|
||||
controller->hv_cfg_fd[1] = hv_cfg_fd1;
|
||||
controller->hv_mem_fd = hv_mem_fd;
|
||||
controller->first_busno = 0;
|
||||
controller->last_busno = 0xff;
|
||||
controller->ops = &tile_cfg_ops;
|
||||
|
||||
num_controllers++;
|
||||
continue;
|
||||
|
||||
err_cont:
|
||||
if (hv_cfg_fd0 >= 0)
|
||||
hv_dev_close(hv_cfg_fd0);
|
||||
if (hv_cfg_fd1 >= 0)
|
||||
hv_dev_close(hv_cfg_fd1);
|
||||
if (hv_mem_fd >= 0)
|
||||
hv_dev_close(hv_mem_fd);
|
||||
continue;
|
||||
}
|
||||
|
||||
/*
|
||||
* Before using the PCIe, see if we need to do any platform-specific
|
||||
* configuration, such as the PLX switch Gen 1 issue on TILEmpower.
|
||||
*/
|
||||
for (i = 0; i < num_controllers; i++) {
|
||||
struct pci_controller *controller = &controllers[i];
|
||||
|
||||
if (controller->plx_gen1)
|
||||
tile_plx_gen1 = 1;
|
||||
}
|
||||
|
||||
return num_controllers;
|
||||
}
|
||||
|
||||
/*
|
||||
* (pin - 1) converts from the PCI standard's [1:4] convention to
|
||||
* a normal [0:3] range.
|
||||
*/
|
||||
static int tile_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
|
||||
{
|
||||
struct pci_controller *controller =
|
||||
(struct pci_controller *)dev->sysdata;
|
||||
return (pin - 1) + controller->irq_base;
|
||||
}
|
||||
|
||||
|
||||
static void __init fixup_read_and_payload_sizes(void)
|
||||
{
|
||||
struct pci_dev *dev = NULL;
|
||||
int smallest_max_payload = 0x1; /* Tile maxes out at 256 bytes. */
|
||||
int max_read_size = 0x2; /* Limit to 512 byte reads. */
|
||||
u16 new_values;
|
||||
|
||||
/* Scan for the smallest maximum payload size. */
|
||||
while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
|
||||
int pcie_caps_offset;
|
||||
u32 devcap;
|
||||
int max_payload;
|
||||
|
||||
pcie_caps_offset = pci_find_capability(dev, PCI_CAP_ID_EXP);
|
||||
if (pcie_caps_offset == 0)
|
||||
continue;
|
||||
|
||||
pci_read_config_dword(dev, pcie_caps_offset + PCI_EXP_DEVCAP,
|
||||
&devcap);
|
||||
max_payload = devcap & PCI_EXP_DEVCAP_PAYLOAD;
|
||||
if (max_payload < smallest_max_payload)
|
||||
smallest_max_payload = max_payload;
|
||||
}
|
||||
|
||||
/* Now, set the max_payload_size for all devices to that value. */
|
||||
new_values = (max_read_size << 12) | (smallest_max_payload << 5);
|
||||
while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
|
||||
int pcie_caps_offset;
|
||||
u16 devctl;
|
||||
|
||||
pcie_caps_offset = pci_find_capability(dev, PCI_CAP_ID_EXP);
|
||||
if (pcie_caps_offset == 0)
|
||||
continue;
|
||||
|
||||
pci_read_config_word(dev, pcie_caps_offset + PCI_EXP_DEVCTL,
|
||||
&devctl);
|
||||
devctl &= ~(PCI_EXP_DEVCTL_PAYLOAD | PCI_EXP_DEVCTL_READRQ);
|
||||
devctl |= new_values;
|
||||
pci_write_config_word(dev, pcie_caps_offset + PCI_EXP_DEVCTL,
|
||||
devctl);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Second PCI initialization entry point, called by subsys_initcall.
|
||||
*
|
||||
* The controllers have been set up by the time we get here, by a call to
|
||||
* tile_pci_init.
|
||||
*/
|
||||
static int __init pcibios_init(void)
|
||||
{
|
||||
int i;
|
||||
|
||||
pr_info("PCI: Probing PCI hardware\n");
|
||||
|
||||
/*
|
||||
* Delay a bit in case devices aren't ready. Some devices are
|
||||
* known to require at least 20ms here, but we use a more
|
||||
* conservative value.
|
||||
*/
|
||||
mdelay(250);
|
||||
|
||||
/* Scan all of the recorded PCI controllers. */
|
||||
for (i = 0; i < num_controllers; i++) {
|
||||
struct pci_controller *controller = &controllers[i];
|
||||
struct pci_bus *bus;
|
||||
|
||||
pr_info("PCI: initializing controller #%d\n", i);
|
||||
|
||||
/*
|
||||
* This comes from the generic Linux PCI driver.
|
||||
*
|
||||
* It reads the PCI tree for this bus into the Linux
|
||||
* data structures.
|
||||
*
|
||||
* This is inlined in linux/pci.h and calls into
|
||||
* pci_scan_bus_parented() in probe.c.
|
||||
*/
|
||||
bus = pci_scan_bus(0, controller->ops, controller);
|
||||
controller->root_bus = bus;
|
||||
controller->last_busno = bus->subordinate;
|
||||
|
||||
}
|
||||
|
||||
/* Do machine dependent PCI interrupt routing */
|
||||
pci_fixup_irqs(pci_common_swizzle, tile_map_irq);
|
||||
|
||||
/*
|
||||
* This comes from the generic Linux PCI driver.
|
||||
*
|
||||
* It allocates all of the resources (I/O memory, etc)
|
||||
* associated with the devices read in above.
|
||||
*/
|
||||
|
||||
pci_assign_unassigned_resources();
|
||||
|
||||
/* Configure the max_read_size and max_payload_size values. */
|
||||
fixup_read_and_payload_sizes();
|
||||
|
||||
/* Record the I/O resources in the PCI controller structure. */
|
||||
for (i = 0; i < num_controllers; i++) {
|
||||
struct pci_bus *root_bus = controllers[i].root_bus;
|
||||
struct pci_bus *next_bus;
|
||||
struct pci_dev *dev;
|
||||
|
||||
list_for_each_entry(dev, &root_bus->devices, bus_list) {
|
||||
/* Find the PCI host controller, ie. the 1st bridge. */
|
||||
if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI &&
|
||||
(PCI_SLOT(dev->devfn) == 0)) {
|
||||
next_bus = dev->subordinate;
|
||||
controllers[i].mem_resources[0] =
|
||||
*next_bus->resource[0];
|
||||
controllers[i].mem_resources[1] =
|
||||
*next_bus->resource[1];
|
||||
controllers[i].mem_resources[2] =
|
||||
*next_bus->resource[2];
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
subsys_initcall(pcibios_init);
|
||||
|
||||
/*
|
||||
* No bus fixups needed.
|
||||
*/
|
||||
void __devinit pcibios_fixup_bus(struct pci_bus *bus)
|
||||
{
|
||||
/* Nothing needs to be done. */
|
||||
}
|
||||
|
||||
/*
|
||||
* This can be called from the generic PCI layer, but doesn't need to
|
||||
* do anything.
|
||||
*/
|
||||
char __devinit *pcibios_setup(char *str)
|
||||
{
|
||||
/* Nothing needs to be done. */
|
||||
return str;
|
||||
}
|
||||
|
||||
/*
|
||||
* This is called from the generic Linux layer.
|
||||
*/
|
||||
void __init pcibios_update_irq(struct pci_dev *dev, int irq)
|
||||
{
|
||||
pci_write_config_byte(dev, PCI_INTERRUPT_LINE, irq);
|
||||
}
|
||||
|
||||
/*
|
||||
* Enable memory and/or address decoding, as appropriate, for the
|
||||
* device described by the 'dev' struct.
|
||||
*
|
||||
* This is called from the generic PCI layer, and can be called
|
||||
* for bridges or endpoints.
|
||||
*/
|
||||
int pcibios_enable_device(struct pci_dev *dev, int mask)
|
||||
{
|
||||
u16 cmd, old_cmd;
|
||||
u8 header_type;
|
||||
int i;
|
||||
struct resource *r;
|
||||
|
||||
pci_read_config_byte(dev, PCI_HEADER_TYPE, &header_type);
|
||||
|
||||
pci_read_config_word(dev, PCI_COMMAND, &cmd);
|
||||
old_cmd = cmd;
|
||||
if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE) {
|
||||
/*
|
||||
* For bridges, we enable both memory and I/O decoding
|
||||
* in call cases.
|
||||
*/
|
||||
cmd |= PCI_COMMAND_IO;
|
||||
cmd |= PCI_COMMAND_MEMORY;
|
||||
} else {
|
||||
/*
|
||||
* For endpoints, we enable memory and/or I/O decoding
|
||||
* only if they have a memory resource of that type.
|
||||
*/
|
||||
for (i = 0; i < 6; i++) {
|
||||
r = &dev->resource[i];
|
||||
if (r->flags & IORESOURCE_UNSET) {
|
||||
pr_err("PCI: Device %s not available "
|
||||
"because of resource collisions\n",
|
||||
pci_name(dev));
|
||||
return -EINVAL;
|
||||
}
|
||||
if (r->flags & IORESOURCE_IO)
|
||||
cmd |= PCI_COMMAND_IO;
|
||||
if (r->flags & IORESOURCE_MEM)
|
||||
cmd |= PCI_COMMAND_MEMORY;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* We only write the command if it changed.
|
||||
*/
|
||||
if (cmd != old_cmd)
|
||||
pci_write_config_word(dev, PCI_COMMAND, cmd);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long max)
|
||||
{
|
||||
unsigned long start = pci_resource_start(dev, bar);
|
||||
unsigned long len = pci_resource_len(dev, bar);
|
||||
unsigned long flags = pci_resource_flags(dev, bar);
|
||||
|
||||
if (!len)
|
||||
return NULL;
|
||||
if (max && len > max)
|
||||
len = max;
|
||||
|
||||
if (!(flags & IORESOURCE_MEM)) {
|
||||
pr_info("PCI: Trying to map invalid resource %#lx\n", flags);
|
||||
start = 0;
|
||||
}
|
||||
|
||||
return (void __iomem *)start;
|
||||
}
|
||||
EXPORT_SYMBOL(pci_iomap);
|
||||
|
||||
|
||||
/****************************************************************
|
||||
*
|
||||
* Tile PCI config space read/write routines
|
||||
*
|
||||
****************************************************************/
|
||||
|
||||
/*
|
||||
* These are the normal read and write ops
|
||||
* These are expanded with macros from pci_bus_read_config_byte() etc.
|
||||
*
|
||||
* devfn is the combined PCI slot & function.
|
||||
*
|
||||
* offset is in bytes, from the start of config space for the
|
||||
* specified bus & slot.
|
||||
*/
|
||||
|
||||
static int __devinit tile_cfg_read(struct pci_bus *bus,
|
||||
unsigned int devfn,
|
||||
int offset,
|
||||
int size,
|
||||
u32 *val)
|
||||
{
|
||||
struct pci_controller *controller = bus->sysdata;
|
||||
int busnum = bus->number & 0xff;
|
||||
int slot = (devfn >> 3) & 0x1f;
|
||||
int function = devfn & 0x7;
|
||||
u32 addr;
|
||||
int config_mode = 1;
|
||||
|
||||
/*
|
||||
* There is no bridge between the Tile and bus 0, so we
|
||||
* use config0 to talk to bus 0.
|
||||
*
|
||||
* If we're talking to a bus other than zero then we
|
||||
* must have found a bridge.
|
||||
*/
|
||||
if (busnum == 0) {
|
||||
/*
|
||||
* We fake an empty slot for (busnum == 0) && (slot > 0),
|
||||
* since there is only one slot on bus 0.
|
||||
*/
|
||||
if (slot) {
|
||||
*val = 0xFFFFFFFF;
|
||||
return 0;
|
||||
}
|
||||
config_mode = 0;
|
||||
}
|
||||
|
||||
addr = busnum << 20; /* Bus in 27:20 */
|
||||
addr |= slot << 15; /* Slot (device) in 19:15 */
|
||||
addr |= function << 12; /* Function is in 14:12 */
|
||||
addr |= (offset & 0xFFF); /* byte address in 0:11 */
|
||||
|
||||
return hv_dev_pread(controller->hv_cfg_fd[config_mode], 0,
|
||||
(HV_VirtAddr)(val), size, addr);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* See tile_cfg_read() for relevent comments.
|
||||
* Note that "val" is the value to write, not a pointer to that value.
|
||||
*/
|
||||
static int __devinit tile_cfg_write(struct pci_bus *bus,
|
||||
unsigned int devfn,
|
||||
int offset,
|
||||
int size,
|
||||
u32 val)
|
||||
{
|
||||
struct pci_controller *controller = bus->sysdata;
|
||||
int busnum = bus->number & 0xff;
|
||||
int slot = (devfn >> 3) & 0x1f;
|
||||
int function = devfn & 0x7;
|
||||
u32 addr;
|
||||
int config_mode = 1;
|
||||
HV_VirtAddr valp = (HV_VirtAddr)&val;
|
||||
|
||||
/*
|
||||
* For bus 0 slot 0 we use config 0 accesses.
|
||||
*/
|
||||
if (busnum == 0) {
|
||||
/*
|
||||
* We fake an empty slot for (busnum == 0) && (slot > 0),
|
||||
* since there is only one slot on bus 0.
|
||||
*/
|
||||
if (slot)
|
||||
return 0;
|
||||
config_mode = 0;
|
||||
}
|
||||
|
||||
addr = busnum << 20; /* Bus in 27:20 */
|
||||
addr |= slot << 15; /* Slot (device) in 19:15 */
|
||||
addr |= function << 12; /* Function is in 14:12 */
|
||||
addr |= (offset & 0xFFF); /* byte address in 0:11 */
|
||||
|
||||
#ifdef __BIG_ENDIAN
|
||||
/* Point to the correct part of the 32-bit "val". */
|
||||
valp += 4 - size;
|
||||
#endif
|
||||
|
||||
return hv_dev_pwrite(controller->hv_cfg_fd[config_mode], 0,
|
||||
valp, size, addr);
|
||||
}
|
||||
|
||||
|
||||
static struct pci_ops tile_cfg_ops = {
|
||||
.read = tile_cfg_read,
|
||||
.write = tile_cfg_write,
|
||||
};
|
||||
|
||||
|
||||
/*
|
||||
* In the following, each PCI controller's mem_resources[1]
|
||||
* represents its (non-prefetchable) PCI memory resource.
|
||||
* mem_resources[0] and mem_resources[2] refer to its PCI I/O and
|
||||
* prefetchable PCI memory resources, respectively.
|
||||
* For more details, see pci_setup_bridge() in setup-bus.c.
|
||||
* By comparing the target PCI memory address against the
|
||||
* end address of controller 0, we can determine the controller
|
||||
* that should accept the PCI memory access.
|
||||
*/
|
||||
#define TILE_READ(size, type) \
|
||||
type _tile_read##size(unsigned long addr) \
|
||||
{ \
|
||||
type val; \
|
||||
int idx = 0; \
|
||||
if (addr > controllers[0].mem_resources[1].end && \
|
||||
addr > controllers[0].mem_resources[2].end) \
|
||||
idx = 1; \
|
||||
if (hv_dev_pread(controllers[idx].hv_mem_fd, 0, \
|
||||
(HV_VirtAddr)(&val), sizeof(type), addr)) \
|
||||
pr_err("PCI: read %zd bytes at 0x%lX failed\n", \
|
||||
sizeof(type), addr); \
|
||||
return val; \
|
||||
} \
|
||||
EXPORT_SYMBOL(_tile_read##size)
|
||||
|
||||
TILE_READ(b, u8);
|
||||
TILE_READ(w, u16);
|
||||
TILE_READ(l, u32);
|
||||
TILE_READ(q, u64);
|
||||
|
||||
#define TILE_WRITE(size, type) \
|
||||
void _tile_write##size(type val, unsigned long addr) \
|
||||
{ \
|
||||
int idx = 0; \
|
||||
if (addr > controllers[0].mem_resources[1].end && \
|
||||
addr > controllers[0].mem_resources[2].end) \
|
||||
idx = 1; \
|
||||
if (hv_dev_pwrite(controllers[idx].hv_mem_fd, 0, \
|
||||
(HV_VirtAddr)(&val), sizeof(type), addr)) \
|
||||
pr_err("PCI: write %zd bytes at 0x%lX failed\n", \
|
||||
sizeof(type), addr); \
|
||||
} \
|
||||
EXPORT_SYMBOL(_tile_write##size)
|
||||
|
||||
TILE_WRITE(b, u8);
|
||||
TILE_WRITE(w, u16);
|
||||
TILE_WRITE(l, u32);
|
||||
TILE_WRITE(q, u64);
|
@ -2945,6 +2945,18 @@ source "drivers/s390/net/Kconfig"
|
||||
|
||||
source "drivers/net/caif/Kconfig"
|
||||
|
||||
config TILE_NET
|
||||
tristate "Tilera GBE/XGBE network driver support"
|
||||
depends on TILE
|
||||
default y
|
||||
select CRC32
|
||||
help
|
||||
This is a standard Linux network device driver for the
|
||||
on-chip Tilera Gigabit Ethernet and XAUI interfaces.
|
||||
|
||||
To compile this driver as a module, choose M here: the module
|
||||
will be called tile_net.
|
||||
|
||||
config XEN_NETDEV_FRONTEND
|
||||
tristate "Xen network device frontend driver"
|
||||
depends on XEN
|
||||
|
@ -301,3 +301,4 @@ obj-$(CONFIG_CAIF) += caif/
|
||||
|
||||
obj-$(CONFIG_OCTEON_MGMT_ETHERNET) += octeon/
|
||||
obj-$(CONFIG_PCH_GBE) += pch_gbe/
|
||||
obj-$(CONFIG_TILE_NET) += tile/
|
||||
|
10
drivers/net/tile/Makefile
Normal file
10
drivers/net/tile/Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
#
|
||||
# Makefile for the TILE on-chip networking support.
|
||||
#
|
||||
|
||||
obj-$(CONFIG_TILE_NET) += tile_net.o
|
||||
ifdef CONFIG_TILEGX
|
||||
tile_net-objs := tilegx.o mpipe.o iorpc_mpipe.o dma_queue.o
|
||||
else
|
||||
tile_net-objs := tilepro.o
|
||||
endif
|
2406
drivers/net/tile/tilepro.c
Normal file
2406
drivers/net/tile/tilepro.c
Normal file
File diff suppressed because it is too large
Load Diff
@ -49,6 +49,7 @@ obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o
|
||||
obj-$(CONFIG_X86_VISWS) += setup-irq.o
|
||||
obj-$(CONFIG_MN10300) += setup-bus.o
|
||||
obj-$(CONFIG_MICROBLAZE) += setup-bus.o
|
||||
obj-$(CONFIG_TILE) += setup-bus.o setup-irq.o
|
||||
|
||||
#
|
||||
# ACPI Related PCI FW Functions
|
||||
|
@ -2136,6 +2136,24 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82865_HB,
|
||||
DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82875_HB,
|
||||
quirk_unhide_mch_dev6);
|
||||
|
||||
#ifdef CONFIG_TILE
|
||||
/*
|
||||
* The Tilera TILEmpower platform needs to set the link speed
|
||||
* to 2.5GT(Giga-Transfers)/s (Gen 1). The default link speed
|
||||
* setting is 5GT/s (Gen 2). 0x98 is the Link Control2 PCIe
|
||||
* capability register of the PEX8624 PCIe switch. The switch
|
||||
* supports link speed auto negotiation, but falsely sets
|
||||
* the link speed to 5GT/s.
|
||||
*/
|
||||
static void __devinit quirk_tile_plx_gen1(struct pci_dev *dev)
|
||||
{
|
||||
if (tile_plx_gen1) {
|
||||
pci_write_config_dword(dev, 0x98, 0x1);
|
||||
mdelay(50);
|
||||
}
|
||||
}
|
||||
DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_PLX, 0x8624, quirk_tile_plx_gen1);
|
||||
#endif /* CONFIG_TILE */
|
||||
|
||||
#ifdef CONFIG_PCI_MSI
|
||||
/* Some chipsets do not support MSI. We cannot easily rely on setting
|
||||
|
Loading…
Reference in New Issue
Block a user