Searched defs:lance_private (Results 1 – 5 of 5) sorted by relevance
/linux/drivers/net/ethernet/amd/ |
H A D | 7990.h | 101 struct lance_private { struct 102 const char *name; 103 unsigned long base; 104 volatile struct lance_init_block *init_block; /* CPU address of RAM */ 105 volatile struct lance_init_block *lance_init_block; /* LANCE address of RAM */ 107 int rx_new, tx_new; 108 int rx_old, tx_old; 110 int lance_log_rx_bufs, lance_log_tx_bufs; 111 int rx_ring_mod_mask, tx_ring_mod_mask; 113 int tpe; /* TPE is selected */ [all …]
|
H A D | sunlance.c | 236 struct lance_private { struct 237 void __iomem *lregs; /* Lance RAP/RDP regs. */ 238 void __iomem *dregs; /* DMA controller regs. */ 239 struct lance_init_block __iomem *init_block_iomem; 240 struct lance_init_block *init_block_mem; 242 spinlock_t lock; 244 int rx_new, tx_new; 245 int rx_old, tx_old; 247 struct platform_device *ledma; /* If set this points to ledma */ 248 char tpe; /* cable-selection is TPE */ [all …]
|
H A D | declance.c | 250 struct lance_private { struct 251 struct net_device *next; 252 int type; 253 int dma_irq; 254 volatile struct lance_regs *ll; 256 spinlock_t lock; 258 int rx_new, tx_new; 259 int rx_old, tx_old; 261 unsigned short busmaster_regval; 263 struct timer_list multicast_timer; [all …]
|
H A D | sun3lance.c | 151 struct lance_private { struct 152 volatile unsigned short *iobase; 153 struct lance_memory *mem; 154 int new_rx, new_tx; /* The next free ring entry */ 155 int old_tx, old_rx; /* ring entry to be processed */ 157 long tx_full; 158 long lock;
|
H A D | atarilance.c | 219 struct lance_private { struct 220 enum lance_type cardtype; 221 struct lance_ioreg *iobase; 222 struct lance_memory *mem; 223 int cur_rx, cur_tx; /* The next free ring entry */ 224 int dirty_tx; /* Ring entries to be freed. */ 226 void *(*memcpy_f)( void *, const void *, size_t ); 228 long tx_full; 229 spinlock_t devlock;
|