Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* sun3lance.c: Ethernet driver for SUN3 Lance chip */ |
| 2 | /* |
| 3 | |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 4 | Sun3 Lance ethernet driver, by Sam Creasey (sammy@users.qual.net). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | This driver is a part of the linux kernel, and is thus distributed |
| 6 | under the GNU General Public License. |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 7 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | The values used in LANCE_OBIO and LANCE_IRQ seem to be empirically |
| 9 | true for the correct IRQ and address of the lance registers. They |
| 10 | have not been widely tested, however. What we probably need is a |
| 11 | "proper" way to search for a device in the sun3's prom, but, alas, |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 12 | linux has no such thing. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
| 14 | This driver is largely based on atarilance.c, by Roman Hodek. Other |
| 15 | sources of inspiration were the NetBSD sun3 am7990 driver, and the |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 16 | linux sparc lance driver (sunlance.c). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
| 18 | There are more assumptions made throughout this driver, it almost |
| 19 | certainly still needs work, but it does work at least for RARP/BOOTP and |
| 20 | mounting the root NFS filesystem. |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | */ |
| 23 | |
| 24 | static char *version = "sun3lance.c: v1.2 1/12/2001 Sam Creasey (sammy@sammy.net)\n"; |
| 25 | |
| 26 | #include <linux/module.h> |
| 27 | #include <linux/stddef.h> |
| 28 | #include <linux/kernel.h> |
| 29 | #include <linux/string.h> |
| 30 | #include <linux/errno.h> |
| 31 | #include <linux/slab.h> |
| 32 | #include <linux/interrupt.h> |
| 33 | #include <linux/init.h> |
| 34 | #include <linux/ioport.h> |
| 35 | #include <linux/delay.h> |
| 36 | #include <linux/netdevice.h> |
| 37 | #include <linux/etherdevice.h> |
| 38 | #include <linux/skbuff.h> |
| 39 | #include <linux/bitops.h> |
| 40 | |
Al Viro | a1f8e7f7 | 2006-10-19 16:08:53 -0400 | [diff] [blame] | 41 | #include <asm/cacheflush.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <asm/setup.h> |
| 43 | #include <asm/irq.h> |
| 44 | #include <asm/io.h> |
| 45 | #include <asm/pgtable.h> |
| 46 | #include <asm/dvma.h> |
| 47 | #include <asm/idprom.h> |
| 48 | #include <asm/machines.h> |
| 49 | |
| 50 | #ifdef CONFIG_SUN3 |
| 51 | #include <asm/sun3mmu.h> |
| 52 | #else |
| 53 | #include <asm/sun3xprom.h> |
| 54 | #endif |
| 55 | |
| 56 | /* sun3/60 addr/irq for the lance chip. If your sun is different, |
| 57 | change this. */ |
| 58 | #define LANCE_OBIO 0x120000 |
Roman Zippel | 4facfde | 2006-06-25 05:46:59 -0700 | [diff] [blame] | 59 | #define LANCE_IRQ IRQ_AUTO_3 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 61 | /* Debug level: |
| 62 | * 0 = silent, print only serious errors |
| 63 | * 1 = normal, print error messages |
| 64 | * 2 = debug, print debug infos |
| 65 | * 3 = debug, print even more debug infos (packet data) |
| 66 | */ |
| 67 | |
| 68 | #define LANCE_DEBUG 0 |
| 69 | |
| 70 | #ifdef LANCE_DEBUG |
| 71 | static int lance_debug = LANCE_DEBUG; |
| 72 | #else |
| 73 | static int lance_debug = 1; |
| 74 | #endif |
Rusty Russell | 8d3b33f | 2006-03-25 03:07:05 -0800 | [diff] [blame] | 75 | module_param(lance_debug, int, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | MODULE_PARM_DESC(lance_debug, "SUN3 Lance debug level (0-3)"); |
| 77 | MODULE_LICENSE("GPL"); |
| 78 | |
| 79 | #define DPRINTK(n,a) \ |
| 80 | do { \ |
| 81 | if (lance_debug >= n) \ |
| 82 | printk a; \ |
| 83 | } while( 0 ) |
| 84 | |
| 85 | |
| 86 | /* we're only using 32k of memory, so we use 4 TX |
| 87 | buffers and 16 RX buffers. These values are expressed as log2. */ |
| 88 | |
| 89 | #define TX_LOG_RING_SIZE 3 |
| 90 | #define RX_LOG_RING_SIZE 5 |
| 91 | |
| 92 | /* These are the derived values */ |
| 93 | |
| 94 | #define TX_RING_SIZE (1 << TX_LOG_RING_SIZE) |
| 95 | #define TX_RING_LEN_BITS (TX_LOG_RING_SIZE << 5) |
| 96 | #define TX_RING_MOD_MASK (TX_RING_SIZE - 1) |
| 97 | |
| 98 | #define RX_RING_SIZE (1 << RX_LOG_RING_SIZE) |
| 99 | #define RX_RING_LEN_BITS (RX_LOG_RING_SIZE << 5) |
| 100 | #define RX_RING_MOD_MASK (RX_RING_SIZE - 1) |
| 101 | |
| 102 | /* Definitions for packet buffer access: */ |
| 103 | #define PKT_BUF_SZ 1544 |
| 104 | |
| 105 | /* Get the address of a packet buffer corresponding to a given buffer head */ |
| 106 | #define PKTBUF_ADDR(head) (void *)((unsigned long)(MEM) | (head)->base) |
| 107 | |
| 108 | |
| 109 | /* The LANCE Rx and Tx ring descriptors. */ |
| 110 | struct lance_rx_head { |
| 111 | unsigned short base; /* Low word of base addr */ |
| 112 | volatile unsigned char flag; |
| 113 | unsigned char base_hi; /* High word of base addr (unused) */ |
| 114 | short buf_length; /* This length is 2s complement! */ |
| 115 | volatile short msg_length; /* This length is "normal". */ |
| 116 | }; |
| 117 | |
| 118 | struct lance_tx_head { |
| 119 | unsigned short base; /* Low word of base addr */ |
| 120 | volatile unsigned char flag; |
| 121 | unsigned char base_hi; /* High word of base addr (unused) */ |
| 122 | short length; /* Length is 2s complement! */ |
| 123 | volatile short misc; |
| 124 | }; |
| 125 | |
| 126 | /* The LANCE initialization block, described in databook. */ |
| 127 | struct lance_init_block { |
| 128 | unsigned short mode; /* Pre-set mode */ |
| 129 | unsigned char hwaddr[6]; /* Physical ethernet address */ |
| 130 | unsigned int filter[2]; /* Multicast filter (unused). */ |
| 131 | /* Receive and transmit ring base, along with length bits. */ |
| 132 | unsigned short rdra; |
| 133 | unsigned short rlen; |
| 134 | unsigned short tdra; |
| 135 | unsigned short tlen; |
| 136 | unsigned short pad[4]; /* is thie needed? */ |
| 137 | }; |
| 138 | |
| 139 | /* The whole layout of the Lance shared memory */ |
| 140 | struct lance_memory { |
| 141 | struct lance_init_block init; |
| 142 | struct lance_tx_head tx_head[TX_RING_SIZE]; |
| 143 | struct lance_rx_head rx_head[RX_RING_SIZE]; |
| 144 | char rx_data[RX_RING_SIZE][PKT_BUF_SZ]; |
| 145 | char tx_data[TX_RING_SIZE][PKT_BUF_SZ]; |
| 146 | }; |
| 147 | |
| 148 | /* The driver's private device structure */ |
| 149 | |
| 150 | struct lance_private { |
| 151 | volatile unsigned short *iobase; |
| 152 | struct lance_memory *mem; |
| 153 | int new_rx, new_tx; /* The next free ring entry */ |
| 154 | int old_tx, old_rx; /* ring entry to be processed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | /* These two must be longs for set_bit() */ |
| 156 | long tx_full; |
| 157 | long lock; |
| 158 | }; |
| 159 | |
| 160 | /* I/O register access macros */ |
| 161 | |
| 162 | #define MEM lp->mem |
| 163 | #define DREG lp->iobase[0] |
| 164 | #define AREG lp->iobase[1] |
Al Viro | e345d5e | 2005-08-25 06:24:21 +0100 | [diff] [blame] | 165 | #define REGA(a) (*( AREG = (a), &DREG )) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | |
| 167 | /* Definitions for the Lance */ |
| 168 | |
| 169 | /* tx_head flags */ |
| 170 | #define TMD1_ENP 0x01 /* end of packet */ |
| 171 | #define TMD1_STP 0x02 /* start of packet */ |
| 172 | #define TMD1_DEF 0x04 /* deferred */ |
| 173 | #define TMD1_ONE 0x08 /* one retry needed */ |
| 174 | #define TMD1_MORE 0x10 /* more than one retry needed */ |
| 175 | #define TMD1_ERR 0x40 /* error summary */ |
| 176 | #define TMD1_OWN 0x80 /* ownership (set: chip owns) */ |
| 177 | |
| 178 | #define TMD1_OWN_CHIP TMD1_OWN |
| 179 | #define TMD1_OWN_HOST 0 |
| 180 | |
| 181 | /* tx_head misc field */ |
| 182 | #define TMD3_TDR 0x03FF /* Time Domain Reflectometry counter */ |
| 183 | #define TMD3_RTRY 0x0400 /* failed after 16 retries */ |
| 184 | #define TMD3_LCAR 0x0800 /* carrier lost */ |
| 185 | #define TMD3_LCOL 0x1000 /* late collision */ |
| 186 | #define TMD3_UFLO 0x4000 /* underflow (late memory) */ |
| 187 | #define TMD3_BUFF 0x8000 /* buffering error (no ENP) */ |
| 188 | |
| 189 | /* rx_head flags */ |
| 190 | #define RMD1_ENP 0x01 /* end of packet */ |
| 191 | #define RMD1_STP 0x02 /* start of packet */ |
| 192 | #define RMD1_BUFF 0x04 /* buffer error */ |
| 193 | #define RMD1_CRC 0x08 /* CRC error */ |
| 194 | #define RMD1_OFLO 0x10 /* overflow */ |
| 195 | #define RMD1_FRAM 0x20 /* framing error */ |
| 196 | #define RMD1_ERR 0x40 /* error summary */ |
| 197 | #define RMD1_OWN 0x80 /* ownership (set: ship owns) */ |
| 198 | |
| 199 | #define RMD1_OWN_CHIP RMD1_OWN |
| 200 | #define RMD1_OWN_HOST 0 |
| 201 | |
| 202 | /* register names */ |
| 203 | #define CSR0 0 /* mode/status */ |
| 204 | #define CSR1 1 /* init block addr (low) */ |
| 205 | #define CSR2 2 /* init block addr (high) */ |
| 206 | #define CSR3 3 /* misc */ |
| 207 | #define CSR8 8 /* address filter */ |
| 208 | #define CSR15 15 /* promiscuous mode */ |
| 209 | |
| 210 | /* CSR0 */ |
| 211 | /* (R=readable, W=writeable, S=set on write, C=clear on write) */ |
| 212 | #define CSR0_INIT 0x0001 /* initialize (RS) */ |
| 213 | #define CSR0_STRT 0x0002 /* start (RS) */ |
| 214 | #define CSR0_STOP 0x0004 /* stop (RS) */ |
| 215 | #define CSR0_TDMD 0x0008 /* transmit demand (RS) */ |
| 216 | #define CSR0_TXON 0x0010 /* transmitter on (R) */ |
| 217 | #define CSR0_RXON 0x0020 /* receiver on (R) */ |
| 218 | #define CSR0_INEA 0x0040 /* interrupt enable (RW) */ |
| 219 | #define CSR0_INTR 0x0080 /* interrupt active (R) */ |
| 220 | #define CSR0_IDON 0x0100 /* initialization done (RC) */ |
| 221 | #define CSR0_TINT 0x0200 /* transmitter interrupt (RC) */ |
| 222 | #define CSR0_RINT 0x0400 /* receiver interrupt (RC) */ |
| 223 | #define CSR0_MERR 0x0800 /* memory error (RC) */ |
| 224 | #define CSR0_MISS 0x1000 /* missed frame (RC) */ |
| 225 | #define CSR0_CERR 0x2000 /* carrier error (no heartbeat :-) (RC) */ |
| 226 | #define CSR0_BABL 0x4000 /* babble: tx-ed too many bits (RC) */ |
| 227 | #define CSR0_ERR 0x8000 /* error (RC) */ |
| 228 | |
| 229 | /* CSR3 */ |
| 230 | #define CSR3_BCON 0x0001 /* byte control */ |
| 231 | #define CSR3_ACON 0x0002 /* ALE control */ |
| 232 | #define CSR3_BSWP 0x0004 /* byte swap (1=big endian) */ |
| 233 | |
| 234 | /***************************** Prototypes *****************************/ |
| 235 | |
| 236 | static int lance_probe( struct net_device *dev); |
| 237 | static int lance_open( struct net_device *dev ); |
| 238 | static void lance_init_ring( struct net_device *dev ); |
| 239 | static int lance_start_xmit( struct sk_buff *skb, struct net_device *dev ); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 240 | static irqreturn_t lance_interrupt( int irq, void *dev_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | static int lance_rx( struct net_device *dev ); |
| 242 | static int lance_close( struct net_device *dev ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | static void set_multicast_list( struct net_device *dev ); |
| 244 | |
| 245 | /************************* End of Prototypes **************************/ |
| 246 | |
| 247 | struct net_device * __init sun3lance_probe(int unit) |
| 248 | { |
| 249 | struct net_device *dev; |
| 250 | static int found; |
| 251 | int err = -ENODEV; |
| 252 | |
Geert Uytterhoeven | 0f73448 | 2008-05-18 20:47:16 +0200 | [diff] [blame] | 253 | if (!MACH_IS_SUN3 && !MACH_IS_SUN3X) |
| 254 | return ERR_PTR(-ENODEV); |
| 255 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | /* check that this machine has an onboard lance */ |
| 257 | switch(idprom->id_machtype) { |
| 258 | case SM_SUN3|SM_3_50: |
| 259 | case SM_SUN3|SM_3_60: |
| 260 | case SM_SUN3X|SM_3_80: |
| 261 | /* these machines have lance */ |
| 262 | break; |
| 263 | |
| 264 | default: |
| 265 | return ERR_PTR(-ENODEV); |
| 266 | } |
| 267 | |
| 268 | if (found) |
| 269 | return ERR_PTR(-ENODEV); |
| 270 | |
| 271 | dev = alloc_etherdev(sizeof(struct lance_private)); |
| 272 | if (!dev) |
| 273 | return ERR_PTR(-ENOMEM); |
| 274 | if (unit >= 0) { |
| 275 | sprintf(dev->name, "eth%d", unit); |
| 276 | netdev_boot_setup_check(dev); |
| 277 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
| 279 | if (!lance_probe(dev)) |
| 280 | goto out; |
| 281 | |
| 282 | err = register_netdev(dev); |
| 283 | if (err) |
| 284 | goto out1; |
| 285 | found = 1; |
| 286 | return dev; |
| 287 | |
| 288 | out1: |
| 289 | #ifdef CONFIG_SUN3 |
Al Viro | 437111c | 2006-10-11 17:28:17 +0100 | [diff] [blame] | 290 | iounmap((void __iomem *)dev->base_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | #endif |
| 292 | out: |
| 293 | free_netdev(dev); |
| 294 | return ERR_PTR(err); |
| 295 | } |
| 296 | |
| 297 | static int __init lance_probe( struct net_device *dev) |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 298 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | unsigned long ioaddr; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 300 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | struct lance_private *lp; |
| 302 | int i; |
| 303 | static int did_version; |
| 304 | volatile unsigned short *ioaddr_probe; |
| 305 | unsigned short tmp1, tmp2; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 306 | DECLARE_MAC_BUF(mac); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | |
| 308 | #ifdef CONFIG_SUN3 |
| 309 | ioaddr = (unsigned long)ioremap(LANCE_OBIO, PAGE_SIZE); |
| 310 | if (!ioaddr) |
| 311 | return 0; |
| 312 | #else |
| 313 | ioaddr = SUN3X_LANCE; |
| 314 | #endif |
| 315 | |
| 316 | /* test to see if there's really a lance here */ |
| 317 | /* (CSRO_INIT shouldn't be readable) */ |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 318 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | ioaddr_probe = (volatile unsigned short *)ioaddr; |
| 320 | tmp1 = ioaddr_probe[0]; |
| 321 | tmp2 = ioaddr_probe[1]; |
| 322 | |
| 323 | ioaddr_probe[1] = CSR0; |
| 324 | ioaddr_probe[0] = CSR0_INIT | CSR0_STOP; |
| 325 | |
| 326 | if(ioaddr_probe[0] != CSR0_STOP) { |
| 327 | ioaddr_probe[0] = tmp1; |
| 328 | ioaddr_probe[1] = tmp2; |
| 329 | |
| 330 | #ifdef CONFIG_SUN3 |
Al Viro | 437111c | 2006-10-11 17:28:17 +0100 | [diff] [blame] | 331 | iounmap((void __iomem *)ioaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | #endif |
| 333 | return 0; |
| 334 | } |
| 335 | |
| 336 | lp = netdev_priv(dev); |
| 337 | |
| 338 | /* XXX - leak? */ |
| 339 | MEM = dvma_malloc_align(sizeof(struct lance_memory), 0x10000); |
Cyrill V. Gorcunov | c14bac6 | 2007-03-26 21:47:26 -0800 | [diff] [blame] | 340 | if (MEM == NULL) { |
| 341 | #ifdef CONFIG_SUN3 |
| 342 | iounmap((void __iomem *)ioaddr); |
| 343 | #endif |
| 344 | printk(KERN_WARNING "SUN3 Lance couldn't allocate DVMA memory\n"); |
| 345 | return 0; |
| 346 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
| 348 | lp->iobase = (volatile unsigned short *)ioaddr; |
| 349 | dev->base_addr = (unsigned long)ioaddr; /* informational only */ |
| 350 | |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 351 | REGA(CSR0) = CSR0_STOP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | |
Cyrill V. Gorcunov | c14bac6 | 2007-03-26 21:47:26 -0800 | [diff] [blame] | 353 | if (request_irq(LANCE_IRQ, lance_interrupt, IRQF_DISABLED, "SUN3 Lance", dev) < 0) { |
| 354 | #ifdef CONFIG_SUN3 |
| 355 | iounmap((void __iomem *)ioaddr); |
| 356 | #endif |
| 357 | dvma_free((void *)MEM); |
| 358 | printk(KERN_WARNING "SUN3 Lance unable to allocate IRQ\n"); |
| 359 | return 0; |
| 360 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | dev->irq = (unsigned short)LANCE_IRQ; |
| 362 | |
| 363 | |
| 364 | printk("%s: SUN3 Lance at io %#lx, mem %#lx, irq %d, hwaddr ", |
| 365 | dev->name, |
| 366 | (unsigned long)ioaddr, |
| 367 | (unsigned long)MEM, |
| 368 | dev->irq); |
| 369 | |
| 370 | /* copy in the ethernet address from the prom */ |
| 371 | for(i = 0; i < 6 ; i++) |
| 372 | dev->dev_addr[i] = idprom->id_ethaddr[i]; |
| 373 | |
| 374 | /* tell the card it's ether address, bytes swapped */ |
| 375 | MEM->init.hwaddr[0] = dev->dev_addr[1]; |
| 376 | MEM->init.hwaddr[1] = dev->dev_addr[0]; |
| 377 | MEM->init.hwaddr[2] = dev->dev_addr[3]; |
| 378 | MEM->init.hwaddr[3] = dev->dev_addr[2]; |
| 379 | MEM->init.hwaddr[4] = dev->dev_addr[5]; |
| 380 | MEM->init.hwaddr[5] = dev->dev_addr[4]; |
| 381 | |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 382 | printk("%s\n", print_mac(mac, dev->dev_addr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | |
| 384 | MEM->init.mode = 0x0000; |
| 385 | MEM->init.filter[0] = 0x00000000; |
| 386 | MEM->init.filter[1] = 0x00000000; |
| 387 | MEM->init.rdra = dvma_vtob(MEM->rx_head); |
| 388 | MEM->init.rlen = (RX_LOG_RING_SIZE << 13) | |
| 389 | (dvma_vtob(MEM->rx_head) >> 16); |
| 390 | MEM->init.tdra = dvma_vtob(MEM->tx_head); |
| 391 | MEM->init.tlen = (TX_LOG_RING_SIZE << 13) | |
| 392 | (dvma_vtob(MEM->tx_head) >> 16); |
| 393 | |
| 394 | DPRINTK(2, ("initaddr: %08lx rx_ring: %08lx tx_ring: %08lx\n", |
| 395 | dvma_vtob(&(MEM->init)), dvma_vtob(MEM->rx_head), |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 396 | (dvma_vtob(MEM->tx_head)))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
| 398 | if (did_version++ == 0) |
| 399 | printk( version ); |
| 400 | |
| 401 | /* The LANCE-specific entries in the device structure. */ |
| 402 | dev->open = &lance_open; |
| 403 | dev->hard_start_xmit = &lance_start_xmit; |
| 404 | dev->stop = &lance_close; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | dev->set_multicast_list = &set_multicast_list; |
Al Viro | a5d361f | 2006-01-12 01:06:34 -0800 | [diff] [blame] | 406 | dev->set_mac_address = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | // KLUDGE -- REMOVE ME |
| 408 | set_bit(__LINK_STATE_PRESENT, &dev->state); |
| 409 | |
| 410 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | return 1; |
| 412 | } |
| 413 | |
| 414 | static int lance_open( struct net_device *dev ) |
| 415 | { |
| 416 | struct lance_private *lp = netdev_priv(dev); |
| 417 | int i; |
| 418 | |
| 419 | DPRINTK( 2, ( "%s: lance_open()\n", dev->name )); |
| 420 | |
| 421 | REGA(CSR0) = CSR0_STOP; |
| 422 | |
| 423 | lance_init_ring(dev); |
| 424 | |
| 425 | /* From now on, AREG is kept to point to CSR0 */ |
| 426 | REGA(CSR0) = CSR0_INIT; |
| 427 | |
| 428 | i = 1000000; |
| 429 | while (--i > 0) |
| 430 | if (DREG & CSR0_IDON) |
| 431 | break; |
| 432 | if (i < 0 || (DREG & CSR0_ERR)) { |
| 433 | DPRINTK( 2, ( "lance_open(): opening %s failed, i=%d, csr0=%04x\n", |
| 434 | dev->name, i, DREG )); |
| 435 | DREG = CSR0_STOP; |
| 436 | return( -EIO ); |
| 437 | } |
| 438 | |
| 439 | DREG = CSR0_IDON | CSR0_STRT | CSR0_INEA; |
| 440 | |
| 441 | netif_start_queue(dev); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | DPRINTK( 2, ( "%s: LANCE is open, csr0 %04x\n", dev->name, DREG )); |
| 444 | |
| 445 | return( 0 ); |
| 446 | } |
| 447 | |
| 448 | |
| 449 | /* Initialize the LANCE Rx and Tx rings. */ |
| 450 | |
| 451 | static void lance_init_ring( struct net_device *dev ) |
| 452 | { |
| 453 | struct lance_private *lp = netdev_priv(dev); |
| 454 | int i; |
| 455 | |
| 456 | lp->lock = 0; |
| 457 | lp->tx_full = 0; |
| 458 | lp->new_rx = lp->new_tx = 0; |
| 459 | lp->old_rx = lp->old_tx = 0; |
| 460 | |
| 461 | for( i = 0; i < TX_RING_SIZE; i++ ) { |
| 462 | MEM->tx_head[i].base = dvma_vtob(MEM->tx_data[i]); |
| 463 | MEM->tx_head[i].flag = 0; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 464 | MEM->tx_head[i].base_hi = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | (dvma_vtob(MEM->tx_data[i])) >>16; |
| 466 | MEM->tx_head[i].length = 0; |
| 467 | MEM->tx_head[i].misc = 0; |
| 468 | } |
| 469 | |
| 470 | for( i = 0; i < RX_RING_SIZE; i++ ) { |
| 471 | MEM->rx_head[i].base = dvma_vtob(MEM->rx_data[i]); |
| 472 | MEM->rx_head[i].flag = RMD1_OWN_CHIP; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 473 | MEM->rx_head[i].base_hi = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | (dvma_vtob(MEM->rx_data[i])) >> 16; |
| 475 | MEM->rx_head[i].buf_length = -PKT_BUF_SZ | 0xf000; |
| 476 | MEM->rx_head[i].msg_length = 0; |
| 477 | } |
| 478 | |
| 479 | /* tell the card it's ether address, bytes swapped */ |
| 480 | MEM->init.hwaddr[0] = dev->dev_addr[1]; |
| 481 | MEM->init.hwaddr[1] = dev->dev_addr[0]; |
| 482 | MEM->init.hwaddr[2] = dev->dev_addr[3]; |
| 483 | MEM->init.hwaddr[3] = dev->dev_addr[2]; |
| 484 | MEM->init.hwaddr[4] = dev->dev_addr[5]; |
| 485 | MEM->init.hwaddr[5] = dev->dev_addr[4]; |
| 486 | |
| 487 | MEM->init.mode = 0x0000; |
| 488 | MEM->init.filter[0] = 0x00000000; |
| 489 | MEM->init.filter[1] = 0x00000000; |
| 490 | MEM->init.rdra = dvma_vtob(MEM->rx_head); |
| 491 | MEM->init.rlen = (RX_LOG_RING_SIZE << 13) | |
| 492 | (dvma_vtob(MEM->rx_head) >> 16); |
| 493 | MEM->init.tdra = dvma_vtob(MEM->tx_head); |
| 494 | MEM->init.tlen = (TX_LOG_RING_SIZE << 13) | |
| 495 | (dvma_vtob(MEM->tx_head) >> 16); |
| 496 | |
| 497 | |
| 498 | /* tell the lance the address of its init block */ |
| 499 | REGA(CSR1) = dvma_vtob(&(MEM->init)); |
| 500 | REGA(CSR2) = dvma_vtob(&(MEM->init)) >> 16; |
| 501 | |
| 502 | #ifdef CONFIG_SUN3X |
| 503 | REGA(CSR3) = CSR3_BSWP | CSR3_ACON | CSR3_BCON; |
| 504 | #else |
| 505 | REGA(CSR3) = CSR3_BSWP; |
| 506 | #endif |
| 507 | |
| 508 | } |
| 509 | |
| 510 | |
| 511 | static int lance_start_xmit( struct sk_buff *skb, struct net_device *dev ) |
| 512 | { |
| 513 | struct lance_private *lp = netdev_priv(dev); |
| 514 | int entry, len; |
| 515 | struct lance_tx_head *head; |
| 516 | unsigned long flags; |
| 517 | |
| 518 | DPRINTK( 1, ( "%s: transmit start.\n", |
| 519 | dev->name)); |
| 520 | |
| 521 | /* Transmitter timeout, serious problems. */ |
| 522 | if (netif_queue_stopped(dev)) { |
| 523 | int tickssofar = jiffies - dev->trans_start; |
| 524 | if (tickssofar < 20) |
| 525 | return( 1 ); |
| 526 | |
| 527 | DPRINTK( 1, ( "%s: transmit timed out, status %04x, resetting.\n", |
| 528 | dev->name, DREG )); |
| 529 | DREG = CSR0_STOP; |
| 530 | /* |
| 531 | * Always set BSWP after a STOP as STOP puts it back into |
| 532 | * little endian mode. |
| 533 | */ |
| 534 | REGA(CSR3) = CSR3_BSWP; |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 535 | dev->stats.tx_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | |
| 537 | if(lance_debug >= 2) { |
| 538 | int i; |
| 539 | printk("Ring data: old_tx %d new_tx %d%s new_rx %d\n", |
| 540 | lp->old_tx, lp->new_tx, |
| 541 | lp->tx_full ? " (full)" : "", |
| 542 | lp->new_rx ); |
| 543 | for( i = 0 ; i < RX_RING_SIZE; i++ ) |
| 544 | printk( "rx #%d: base=%04x blen=%04x mlen=%04x\n", |
| 545 | i, MEM->rx_head[i].base, |
| 546 | -MEM->rx_head[i].buf_length, |
| 547 | MEM->rx_head[i].msg_length); |
| 548 | for( i = 0 ; i < TX_RING_SIZE; i++ ) |
| 549 | printk("tx #%d: base=%04x len=%04x misc=%04x\n", |
| 550 | i, MEM->tx_head[i].base, |
| 551 | -MEM->tx_head[i].length, |
| 552 | MEM->tx_head[i].misc ); |
| 553 | } |
| 554 | |
| 555 | lance_init_ring(dev); |
| 556 | REGA( CSR0 ) = CSR0_INEA | CSR0_INIT | CSR0_STRT; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 557 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | netif_start_queue(dev); |
| 559 | dev->trans_start = jiffies; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 560 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | return 0; |
| 562 | } |
| 563 | |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 564 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | /* Block a timer-based transmit from overlapping. This could better be |
| 566 | done with atomic_swap(1, dev->tbusy), but set_bit() works as well. */ |
| 567 | |
| 568 | /* Block a timer-based transmit from overlapping with us by |
| 569 | stopping the queue for a bit... */ |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 570 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | netif_stop_queue(dev); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 572 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | if (test_and_set_bit( 0, (void*)&lp->lock ) != 0) { |
| 574 | printk( "%s: tx queue lock!.\n", dev->name); |
| 575 | /* don't clear dev->tbusy flag. */ |
| 576 | return 1; |
| 577 | } |
| 578 | |
| 579 | AREG = CSR0; |
| 580 | DPRINTK( 2, ( "%s: lance_start_xmit() called, csr0 %4.4x.\n", |
| 581 | dev->name, DREG )); |
| 582 | |
| 583 | #ifdef CONFIG_SUN3X |
| 584 | /* this weirdness doesn't appear on sun3... */ |
| 585 | if(!(DREG & CSR0_INIT)) { |
| 586 | DPRINTK( 1, ("INIT not set, reinitializing...\n")); |
| 587 | REGA( CSR0 ) = CSR0_STOP; |
| 588 | lance_init_ring(dev); |
| 589 | REGA( CSR0 ) = CSR0_INIT | CSR0_STRT; |
| 590 | } |
| 591 | #endif |
| 592 | |
| 593 | /* Fill in a Tx ring entry */ |
| 594 | #if 0 |
| 595 | if (lance_debug >= 2) { |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 596 | printk( "%s: TX pkt %d type 0x%04x" |
| 597 | " from %s to %s" |
| 598 | " data at 0x%08x len %d\n", |
| 599 | dev->name, lp->new_tx, ((u_short *)skb->data)[6], |
| 600 | DEV_ADDR(&skb->data[6]), DEV_ADDR(skb->data), |
| 601 | (int)skb->data, (int)skb->len ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 603 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | /* We're not prepared for the int until the last flags are set/reset. |
| 605 | * And the int may happen already after setting the OWN_CHIP... */ |
| 606 | local_irq_save(flags); |
| 607 | |
| 608 | /* Mask to ring buffer boundary. */ |
| 609 | entry = lp->new_tx; |
| 610 | head = &(MEM->tx_head[entry]); |
| 611 | |
| 612 | /* Caution: the write order is important here, set the "ownership" bits |
| 613 | * last. |
| 614 | */ |
| 615 | |
| 616 | /* the sun3's lance needs it's buffer padded to the minimum |
| 617 | size */ |
| 618 | len = (ETH_ZLEN < skb->len) ? skb->len : ETH_ZLEN; |
| 619 | |
| 620 | // head->length = -len; |
| 621 | head->length = (-len) | 0xf000; |
| 622 | head->misc = 0; |
| 623 | |
Arnaldo Carvalho de Melo | d626f62 | 2007-03-27 18:55:52 -0300 | [diff] [blame] | 624 | skb_copy_from_linear_data(skb, PKTBUF_ADDR(head), skb->len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | if (len != skb->len) |
| 626 | memset(PKTBUF_ADDR(head) + skb->len, 0, len-skb->len); |
| 627 | |
| 628 | head->flag = TMD1_OWN_CHIP | TMD1_ENP | TMD1_STP; |
| 629 | lp->new_tx = (lp->new_tx + 1) & TX_RING_MOD_MASK; |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 630 | dev->stats.tx_bytes += skb->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | |
| 632 | /* Trigger an immediate send poll. */ |
| 633 | REGA(CSR0) = CSR0_INEA | CSR0_TDMD | CSR0_STRT; |
| 634 | AREG = CSR0; |
| 635 | DPRINTK( 2, ( "%s: lance_start_xmit() exiting, csr0 %4.4x.\n", |
| 636 | dev->name, DREG )); |
| 637 | dev->trans_start = jiffies; |
| 638 | dev_kfree_skb( skb ); |
| 639 | |
| 640 | lp->lock = 0; |
| 641 | if ((MEM->tx_head[(entry+1) & TX_RING_MOD_MASK].flag & TMD1_OWN) == |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 642 | TMD1_OWN_HOST) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | netif_start_queue(dev); |
| 644 | |
| 645 | local_irq_restore(flags); |
| 646 | |
| 647 | return 0; |
| 648 | } |
| 649 | |
| 650 | /* The LANCE interrupt handler. */ |
| 651 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 652 | static irqreturn_t lance_interrupt( int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | { |
| 654 | struct net_device *dev = dev_id; |
| 655 | struct lance_private *lp = netdev_priv(dev); |
| 656 | int csr0; |
| 657 | static int in_interrupt; |
| 658 | |
| 659 | if (dev == NULL) { |
| 660 | DPRINTK( 1, ( "lance_interrupt(): invalid dev_id\n" )); |
| 661 | return IRQ_NONE; |
| 662 | } |
| 663 | |
| 664 | if (in_interrupt) |
| 665 | DPRINTK( 2, ( "%s: Re-entering the interrupt handler.\n", dev->name )); |
| 666 | in_interrupt = 1; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 667 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | still_more: |
| 669 | flush_cache_all(); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 670 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | AREG = CSR0; |
| 672 | csr0 = DREG; |
| 673 | |
| 674 | /* ack interrupts */ |
| 675 | DREG = csr0 & (CSR0_TINT | CSR0_RINT | CSR0_IDON); |
| 676 | |
| 677 | /* clear errors */ |
| 678 | if(csr0 & CSR0_ERR) |
| 679 | DREG = CSR0_BABL | CSR0_MERR | CSR0_CERR | CSR0_MISS; |
| 680 | |
| 681 | |
| 682 | DPRINTK( 2, ( "%s: interrupt csr0=%04x new csr=%04x.\n", |
| 683 | dev->name, csr0, DREG )); |
| 684 | |
| 685 | if (csr0 & CSR0_TINT) { /* Tx-done interrupt */ |
| 686 | int old_tx = lp->old_tx; |
| 687 | |
| 688 | // if(lance_debug >= 3) { |
| 689 | // int i; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 690 | // |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | // printk("%s: tx int\n", dev->name); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 692 | // |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | // for(i = 0; i < TX_RING_SIZE; i++) |
| 694 | // printk("ring %d flag=%04x\n", i, |
| 695 | // MEM->tx_head[i].flag); |
| 696 | // } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 697 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | while( old_tx != lp->new_tx) { |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 699 | struct lance_tx_head *head = &(MEM->tx_head[old_tx]); |
| 700 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | DPRINTK(3, ("on tx_ring %d\n", old_tx)); |
| 702 | |
| 703 | if (head->flag & TMD1_OWN_CHIP) |
| 704 | break; /* It still hasn't been Txed */ |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 705 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | if (head->flag & TMD1_ERR) { |
| 707 | int status = head->misc; |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 708 | dev->stats.tx_errors++; |
| 709 | if (status & TMD3_RTRY) dev->stats.tx_aborted_errors++; |
| 710 | if (status & TMD3_LCAR) dev->stats.tx_carrier_errors++; |
| 711 | if (status & TMD3_LCOL) dev->stats.tx_window_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | if (status & (TMD3_UFLO | TMD3_BUFF)) { |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 713 | dev->stats.tx_fifo_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | printk("%s: Tx FIFO error\n", |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 715 | dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | REGA(CSR0) = CSR0_STOP; |
| 717 | REGA(CSR3) = CSR3_BSWP; |
| 718 | lance_init_ring(dev); |
| 719 | REGA(CSR0) = CSR0_STRT | CSR0_INEA; |
| 720 | return IRQ_HANDLED; |
| 721 | } |
| 722 | } else if(head->flag & (TMD1_ENP | TMD1_STP)) { |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 723 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | head->flag &= ~(TMD1_ENP | TMD1_STP); |
| 725 | if(head->flag & (TMD1_ONE | TMD1_MORE)) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 726 | dev->stats.collisions++; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 727 | |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 728 | dev->stats.tx_packets++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | DPRINTK(3, ("cleared tx ring %d\n", old_tx)); |
| 730 | } |
| 731 | old_tx = (old_tx +1) & TX_RING_MOD_MASK; |
| 732 | } |
| 733 | |
| 734 | lp->old_tx = old_tx; |
| 735 | } |
| 736 | |
| 737 | |
| 738 | if (netif_queue_stopped(dev)) { |
| 739 | /* The ring is no longer full, clear tbusy. */ |
| 740 | netif_start_queue(dev); |
| 741 | netif_wake_queue(dev); |
| 742 | } |
| 743 | |
| 744 | if (csr0 & CSR0_RINT) /* Rx interrupt */ |
| 745 | lance_rx( dev ); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 746 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | /* Log misc errors. */ |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 748 | if (csr0 & CSR0_BABL) dev->stats.tx_errors++; /* Tx babble. */ |
| 749 | if (csr0 & CSR0_MISS) dev->stats.rx_errors++; /* Missed a Rx frame. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | if (csr0 & CSR0_MERR) { |
| 751 | DPRINTK( 1, ( "%s: Bus master arbitration failure (?!?), " |
| 752 | "status %04x.\n", dev->name, csr0 )); |
| 753 | /* Restart the chip. */ |
| 754 | REGA(CSR0) = CSR0_STOP; |
| 755 | REGA(CSR3) = CSR3_BSWP; |
| 756 | lance_init_ring(dev); |
| 757 | REGA(CSR0) = CSR0_STRT | CSR0_INEA; |
| 758 | } |
| 759 | |
| 760 | |
| 761 | /* Clear any other interrupt, and set interrupt enable. */ |
| 762 | // DREG = CSR0_BABL | CSR0_CERR | CSR0_MISS | CSR0_MERR | |
| 763 | // CSR0_IDON | CSR0_INEA; |
| 764 | |
| 765 | REGA(CSR0) = CSR0_INEA; |
| 766 | |
| 767 | if(DREG & (CSR0_RINT | CSR0_TINT)) { |
| 768 | DPRINTK(2, ("restarting interrupt, csr0=%#04x\n", DREG)); |
| 769 | goto still_more; |
| 770 | } |
| 771 | |
| 772 | DPRINTK( 2, ( "%s: exiting interrupt, csr0=%#04x.\n", |
| 773 | dev->name, DREG )); |
| 774 | in_interrupt = 0; |
| 775 | return IRQ_HANDLED; |
| 776 | } |
| 777 | |
| 778 | /* get packet, toss into skbuff */ |
| 779 | static int lance_rx( struct net_device *dev ) |
| 780 | { |
| 781 | struct lance_private *lp = netdev_priv(dev); |
| 782 | int entry = lp->new_rx; |
| 783 | |
| 784 | /* If we own the next entry, it's a new packet. Send it up. */ |
| 785 | while( (MEM->rx_head[entry].flag & RMD1_OWN) == RMD1_OWN_HOST ) { |
| 786 | struct lance_rx_head *head = &(MEM->rx_head[entry]); |
| 787 | int status = head->flag; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 788 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | if (status != (RMD1_ENP|RMD1_STP)) { /* There was an error. */ |
| 790 | /* There is a tricky error noted by John Murphy, |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 791 | <murf@perftech.com> to Russ Nelson: Even with |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | full-sized buffers it's possible for a jabber packet to use two |
| 793 | buffers, with only the last correctly noting the error. */ |
| 794 | if (status & RMD1_ENP) /* Only count a general error at the */ |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 795 | dev->stats.rx_errors++; /* end of a packet.*/ |
| 796 | if (status & RMD1_FRAM) dev->stats.rx_frame_errors++; |
| 797 | if (status & RMD1_OFLO) dev->stats.rx_over_errors++; |
| 798 | if (status & RMD1_CRC) dev->stats.rx_crc_errors++; |
| 799 | if (status & RMD1_BUFF) dev->stats.rx_fifo_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | head->flag &= (RMD1_ENP|RMD1_STP); |
| 801 | } else { |
| 802 | /* Malloc up new buffer, compatible with net-3. */ |
| 803 | // short pkt_len = head->msg_length;// & 0xfff; |
| 804 | short pkt_len = (head->msg_length & 0xfff) - 4; |
| 805 | struct sk_buff *skb; |
| 806 | |
| 807 | if (pkt_len < 60) { |
| 808 | printk( "%s: Runt packet!\n", dev->name ); |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 809 | dev->stats.rx_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | } |
| 811 | else { |
| 812 | skb = dev_alloc_skb( pkt_len+2 ); |
| 813 | if (skb == NULL) { |
| 814 | DPRINTK( 1, ( "%s: Memory squeeze, deferring packet.\n", |
| 815 | dev->name )); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 816 | |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 817 | dev->stats.rx_dropped++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | head->msg_length = 0; |
| 819 | head->flag |= RMD1_OWN_CHIP; |
| 820 | lp->new_rx = (lp->new_rx+1) & |
| 821 | RX_RING_MOD_MASK; |
| 822 | } |
| 823 | |
| 824 | #if 0 |
| 825 | if (lance_debug >= 3) { |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 826 | u_char *data = PKTBUF_ADDR(head); |
| 827 | DECLARE_MAC_BUF(mac); |
| 828 | DECLARE_MAC_BUF(mac2) |
| 829 | printk("%s: RX pkt %d type 0x%04x" |
| 830 | " from %s to %s", |
| 831 | dev->name, lp->new_tx, ((u_short *)data)[6], |
| 832 | print_mac(mac, &data[6]), print_mac(mac2, data)); |
| 833 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | printk(" data %02x %02x %02x %02x %02x %02x %02x %02x " |
| 835 | "len %d at %08x\n", |
| 836 | data[15], data[16], data[17], data[18], |
| 837 | data[19], data[20], data[21], data[22], |
| 838 | pkt_len, data); |
| 839 | } |
| 840 | #endif |
| 841 | if (lance_debug >= 3) { |
| 842 | u_char *data = PKTBUF_ADDR(head); |
| 843 | printk( "%s: RX pkt %d type 0x%04x len %d\n ", dev->name, entry, ((u_short *)data)[6], pkt_len); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 844 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | |
| 846 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | skb_reserve( skb, 2 ); /* 16 byte align */ |
| 848 | skb_put( skb, pkt_len ); /* Make room */ |
David S. Miller | 8c7b7fa | 2007-07-10 22:08:12 -0700 | [diff] [blame] | 849 | skb_copy_to_linear_data(skb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | PKTBUF_ADDR(head), |
David S. Miller | 8c7b7fa | 2007-07-10 22:08:12 -0700 | [diff] [blame] | 851 | pkt_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | |
| 853 | skb->protocol = eth_type_trans( skb, dev ); |
| 854 | netif_rx( skb ); |
| 855 | dev->last_rx = jiffies; |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 856 | dev->stats.rx_packets++; |
| 857 | dev->stats.rx_bytes += pkt_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | } |
| 859 | } |
| 860 | |
| 861 | // head->buf_length = -PKT_BUF_SZ | 0xf000; |
| 862 | head->msg_length = 0; |
| 863 | head->flag = RMD1_OWN_CHIP; |
| 864 | |
| 865 | entry = lp->new_rx = (lp->new_rx +1) & RX_RING_MOD_MASK; |
| 866 | } |
| 867 | |
| 868 | /* From lance.c (Donald Becker): */ |
| 869 | /* We should check that at least two ring entries are free. |
| 870 | If not, we should free one and mark stats->rx_dropped++. */ |
| 871 | |
| 872 | return 0; |
| 873 | } |
| 874 | |
| 875 | |
| 876 | static int lance_close( struct net_device *dev ) |
| 877 | { |
| 878 | struct lance_private *lp = netdev_priv(dev); |
| 879 | |
| 880 | netif_stop_queue(dev); |
| 881 | |
| 882 | AREG = CSR0; |
| 883 | |
| 884 | DPRINTK( 2, ( "%s: Shutting down ethercard, status was %2.2x.\n", |
| 885 | dev->name, DREG )); |
| 886 | |
| 887 | /* We stop the LANCE here -- it occasionally polls |
| 888 | memory if we don't. */ |
| 889 | DREG = CSR0_STOP; |
| 890 | return 0; |
| 891 | } |
| 892 | |
| 893 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | /* Set or clear the multicast filter for this adaptor. |
| 895 | num_addrs == -1 Promiscuous mode, receive all packets |
| 896 | num_addrs == 0 Normal mode, clear multicast list |
| 897 | num_addrs > 0 Multicast mode, receive normal and MC packets, and do |
| 898 | best-effort filtering. |
| 899 | */ |
| 900 | |
| 901 | /* completely untested on a sun3 */ |
| 902 | static void set_multicast_list( struct net_device *dev ) |
| 903 | { |
| 904 | struct lance_private *lp = netdev_priv(dev); |
| 905 | |
| 906 | if(netif_queue_stopped(dev)) |
| 907 | /* Only possible if board is already started */ |
| 908 | return; |
| 909 | |
| 910 | /* We take the simple way out and always enable promiscuous mode. */ |
| 911 | DREG = CSR0_STOP; /* Temporarily stop the lance. */ |
| 912 | |
| 913 | if (dev->flags & IFF_PROMISC) { |
| 914 | /* Log any net taps. */ |
Andy Gospodarek | d5b2069 | 2006-09-11 17:39:18 -0400 | [diff] [blame] | 915 | DPRINTK( 3, ( "%s: Promiscuous mode enabled.\n", dev->name )); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | REGA( CSR15 ) = 0x8000; /* Set promiscuous mode */ |
| 917 | } else { |
| 918 | short multicast_table[4]; |
| 919 | int num_addrs = dev->mc_count; |
| 920 | int i; |
| 921 | /* We don't use the multicast table, but rely on upper-layer |
| 922 | * filtering. */ |
| 923 | memset( multicast_table, (num_addrs == 0) ? 0 : -1, |
| 924 | sizeof(multicast_table) ); |
| 925 | for( i = 0; i < 4; i++ ) |
| 926 | REGA( CSR8+i ) = multicast_table[i]; |
| 927 | REGA( CSR15 ) = 0; /* Unset promiscuous mode */ |
| 928 | } |
| 929 | |
| 930 | /* |
| 931 | * Always set BSWP after a STOP as STOP puts it back into |
| 932 | * little endian mode. |
| 933 | */ |
| 934 | REGA( CSR3 ) = CSR3_BSWP; |
| 935 | |
| 936 | /* Resume normal operation and reset AREG to CSR0 */ |
| 937 | REGA( CSR0 ) = CSR0_IDON | CSR0_INEA | CSR0_STRT; |
| 938 | } |
| 939 | |
| 940 | |
| 941 | #ifdef MODULE |
| 942 | |
| 943 | static struct net_device *sun3lance_dev; |
| 944 | |
Al Viro | afc8eb4 | 2006-06-14 18:50:53 -0400 | [diff] [blame] | 945 | int __init init_module(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | { |
| 947 | sun3lance_dev = sun3lance_probe(-1); |
| 948 | if (IS_ERR(sun3lance_dev)) |
| 949 | return PTR_ERR(sun3lance_dev); |
| 950 | return 0; |
| 951 | } |
| 952 | |
Al Viro | afc8eb4 | 2006-06-14 18:50:53 -0400 | [diff] [blame] | 953 | void __exit cleanup_module(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | { |
| 955 | unregister_netdev(sun3lance_dev); |
| 956 | #ifdef CONFIG_SUN3 |
Al Viro | 437111c | 2006-10-11 17:28:17 +0100 | [diff] [blame] | 957 | iounmap((void __iomem *)sun3lance_dev->base_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | #endif |
| 959 | free_netdev(sun3lance_dev); |
| 960 | } |
| 961 | |
| 962 | #endif /* MODULE */ |
| 963 | |