Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Amiga Linux/68k A2065 Ethernet Driver |
| 3 | * |
| 4 | * (C) Copyright 1995-2003 by Geert Uytterhoeven <geert@linux-m68k.org> |
| 5 | * |
| 6 | * Fixes and tips by: |
| 7 | * - Janos Farkas (CHEXUM@sparta.banki.hu) |
| 8 | * - Jes Degn Soerensen (jds@kom.auc.dk) |
| 9 | * - Matt Domsch (Matt_Domsch@dell.com) |
| 10 | * |
| 11 | * ---------------------------------------------------------------------------- |
| 12 | * |
| 13 | * This program is based on |
| 14 | * |
| 15 | * ariadne.?: Amiga Linux/68k Ariadne Ethernet Driver |
| 16 | * (C) Copyright 1995 by Geert Uytterhoeven, |
| 17 | * Peter De Schrijver |
| 18 | * |
| 19 | * lance.c: An AMD LANCE ethernet driver for linux. |
| 20 | * Written 1993-94 by Donald Becker. |
| 21 | * |
| 22 | * Am79C960: PCnet(tm)-ISA Single-Chip Ethernet Controller |
| 23 | * Advanced Micro Devices |
| 24 | * Publication #16907, Rev. B, Amendment/0, May 1994 |
| 25 | * |
| 26 | * ---------------------------------------------------------------------------- |
| 27 | * |
| 28 | * This file is subject to the terms and conditions of the GNU General Public |
| 29 | * License. See the file COPYING in the main directory of the Linux |
| 30 | * distribution for more details. |
| 31 | * |
| 32 | * ---------------------------------------------------------------------------- |
| 33 | * |
| 34 | * The A2065 is a Zorro-II board made by Commodore/Ameristar. It contains: |
| 35 | * |
| 36 | * - an Am7990 Local Area Network Controller for Ethernet (LANCE) with |
| 37 | * both 10BASE-2 (thin coax) and AUI (DB-15) connectors |
| 38 | */ |
| 39 | |
| 40 | #include <linux/errno.h> |
| 41 | #include <linux/netdevice.h> |
| 42 | #include <linux/etherdevice.h> |
| 43 | #include <linux/module.h> |
| 44 | #include <linux/stddef.h> |
| 45 | #include <linux/kernel.h> |
| 46 | #include <linux/interrupt.h> |
| 47 | #include <linux/ioport.h> |
| 48 | #include <linux/skbuff.h> |
| 49 | #include <linux/slab.h> |
| 50 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #include <linux/init.h> |
| 52 | #include <linux/crc32.h> |
| 53 | #include <linux/zorro.h> |
| 54 | #include <linux/bitops.h> |
| 55 | |
| 56 | #include <asm/irq.h> |
| 57 | #include <asm/amigaints.h> |
| 58 | #include <asm/amigahw.h> |
| 59 | |
| 60 | #include "a2065.h" |
| 61 | |
| 62 | |
| 63 | /* |
| 64 | * Transmit/Receive Ring Definitions |
| 65 | */ |
| 66 | |
| 67 | #define LANCE_LOG_TX_BUFFERS (2) |
| 68 | #define LANCE_LOG_RX_BUFFERS (4) |
| 69 | |
| 70 | #define TX_RING_SIZE (1<<LANCE_LOG_TX_BUFFERS) |
| 71 | #define RX_RING_SIZE (1<<LANCE_LOG_RX_BUFFERS) |
| 72 | |
| 73 | #define TX_RING_MOD_MASK (TX_RING_SIZE-1) |
| 74 | #define RX_RING_MOD_MASK (RX_RING_SIZE-1) |
| 75 | |
| 76 | #define PKT_BUF_SIZE (1544) |
| 77 | #define RX_BUFF_SIZE PKT_BUF_SIZE |
| 78 | #define TX_BUFF_SIZE PKT_BUF_SIZE |
| 79 | |
| 80 | |
| 81 | /* |
| 82 | * Layout of the Lance's RAM Buffer |
| 83 | */ |
| 84 | |
| 85 | |
| 86 | struct lance_init_block { |
| 87 | unsigned short mode; /* Pre-set mode (reg. 15) */ |
| 88 | unsigned char phys_addr[6]; /* Physical ethernet address */ |
| 89 | unsigned filter[2]; /* Multicast filter. */ |
| 90 | |
| 91 | /* Receive and transmit ring base, along with extra bits. */ |
| 92 | unsigned short rx_ptr; /* receive descriptor addr */ |
| 93 | unsigned short rx_len; /* receive len and high addr */ |
| 94 | unsigned short tx_ptr; /* transmit descriptor addr */ |
| 95 | unsigned short tx_len; /* transmit len and high addr */ |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | /* The Tx and Rx ring entries must aligned on 8-byte boundaries. */ |
| 98 | struct lance_rx_desc brx_ring[RX_RING_SIZE]; |
| 99 | struct lance_tx_desc btx_ring[TX_RING_SIZE]; |
| 100 | |
| 101 | char rx_buf [RX_RING_SIZE][RX_BUFF_SIZE]; |
| 102 | char tx_buf [TX_RING_SIZE][TX_BUFF_SIZE]; |
| 103 | }; |
| 104 | |
| 105 | |
| 106 | /* |
| 107 | * Private Device Data |
| 108 | */ |
| 109 | |
| 110 | struct lance_private { |
| 111 | char *name; |
| 112 | volatile struct lance_regs *ll; |
| 113 | volatile struct lance_init_block *init_block; /* Hosts view */ |
| 114 | volatile struct lance_init_block *lance_init_block; /* Lance view */ |
| 115 | |
| 116 | int rx_new, tx_new; |
| 117 | int rx_old, tx_old; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | int lance_log_rx_bufs, lance_log_tx_bufs; |
| 120 | int rx_ring_mod_mask, tx_ring_mod_mask; |
| 121 | |
| 122 | struct net_device_stats stats; |
| 123 | int tpe; /* cable-selection is TPE */ |
| 124 | int auto_select; /* cable-selection by carrier */ |
| 125 | unsigned short busmaster_regval; |
| 126 | |
| 127 | #ifdef CONFIG_SUNLANCE |
| 128 | struct Linux_SBus_DMA *ledma; /* if set this points to ledma and arch=4m */ |
| 129 | int burst_sizes; /* ledma SBus burst sizes */ |
| 130 | #endif |
| 131 | struct timer_list multicast_timer; |
| 132 | }; |
| 133 | |
| 134 | #define TX_BUFFS_AVAIL ((lp->tx_old<=lp->tx_new)?\ |
| 135 | lp->tx_old+lp->tx_ring_mod_mask-lp->tx_new:\ |
| 136 | lp->tx_old - lp->tx_new-1) |
| 137 | |
| 138 | |
| 139 | #define LANCE_ADDR(x) ((int)(x) & ~0xff000000) |
| 140 | |
| 141 | /* Load the CSR registers */ |
| 142 | static void load_csrs (struct lance_private *lp) |
| 143 | { |
| 144 | volatile struct lance_regs *ll = lp->ll; |
| 145 | volatile struct lance_init_block *aib = lp->lance_init_block; |
| 146 | int leptr; |
| 147 | |
| 148 | leptr = LANCE_ADDR (aib); |
| 149 | |
| 150 | ll->rap = LE_CSR1; |
| 151 | ll->rdp = (leptr & 0xFFFF); |
| 152 | ll->rap = LE_CSR2; |
| 153 | ll->rdp = leptr >> 16; |
| 154 | ll->rap = LE_CSR3; |
| 155 | ll->rdp = lp->busmaster_regval; |
| 156 | |
| 157 | /* Point back to csr0 */ |
| 158 | ll->rap = LE_CSR0; |
| 159 | } |
| 160 | |
| 161 | #define ZERO 0 |
| 162 | |
| 163 | /* Setup the Lance Rx and Tx rings */ |
| 164 | static void lance_init_ring (struct net_device *dev) |
| 165 | { |
| 166 | struct lance_private *lp = netdev_priv(dev); |
| 167 | volatile struct lance_init_block *ib = lp->init_block; |
| 168 | volatile struct lance_init_block *aib; /* for LANCE_ADDR computations */ |
| 169 | int leptr; |
| 170 | int i; |
| 171 | |
| 172 | aib = lp->lance_init_block; |
| 173 | |
| 174 | /* Lock out other processes while setting up hardware */ |
| 175 | netif_stop_queue(dev); |
| 176 | lp->rx_new = lp->tx_new = 0; |
| 177 | lp->rx_old = lp->tx_old = 0; |
| 178 | |
| 179 | ib->mode = 0; |
| 180 | |
| 181 | /* Copy the ethernet address to the lance init block |
| 182 | * Note that on the sparc you need to swap the ethernet address. |
| 183 | */ |
| 184 | ib->phys_addr [0] = dev->dev_addr [1]; |
| 185 | ib->phys_addr [1] = dev->dev_addr [0]; |
| 186 | ib->phys_addr [2] = dev->dev_addr [3]; |
| 187 | ib->phys_addr [3] = dev->dev_addr [2]; |
| 188 | ib->phys_addr [4] = dev->dev_addr [5]; |
| 189 | ib->phys_addr [5] = dev->dev_addr [4]; |
| 190 | |
| 191 | if (ZERO) |
| 192 | printk(KERN_DEBUG "TX rings:\n"); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | /* Setup the Tx ring entries */ |
| 195 | for (i = 0; i <= (1<<lp->lance_log_tx_bufs); i++) { |
| 196 | leptr = LANCE_ADDR(&aib->tx_buf[i][0]); |
| 197 | ib->btx_ring [i].tmd0 = leptr; |
| 198 | ib->btx_ring [i].tmd1_hadr = leptr >> 16; |
| 199 | ib->btx_ring [i].tmd1_bits = 0; |
| 200 | ib->btx_ring [i].length = 0xf000; /* The ones required by tmd2 */ |
| 201 | ib->btx_ring [i].misc = 0; |
| 202 | if (i < 3 && ZERO) |
| 203 | printk(KERN_DEBUG "%d: 0x%8.8x\n", i, leptr); |
| 204 | } |
| 205 | |
| 206 | /* Setup the Rx ring entries */ |
| 207 | if (ZERO) |
| 208 | printk(KERN_DEBUG "RX rings:\n"); |
| 209 | for (i = 0; i < (1<<lp->lance_log_rx_bufs); i++) { |
| 210 | leptr = LANCE_ADDR(&aib->rx_buf[i][0]); |
| 211 | |
| 212 | ib->brx_ring [i].rmd0 = leptr; |
| 213 | ib->brx_ring [i].rmd1_hadr = leptr >> 16; |
| 214 | ib->brx_ring [i].rmd1_bits = LE_R1_OWN; |
| 215 | ib->brx_ring [i].length = -RX_BUFF_SIZE | 0xf000; |
| 216 | ib->brx_ring [i].mblength = 0; |
| 217 | if (i < 3 && ZERO) |
| 218 | printk(KERN_DEBUG "%d: 0x%8.8x\n", i, leptr); |
| 219 | } |
| 220 | |
| 221 | /* Setup the initialization block */ |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 222 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | /* Setup rx descriptor pointer */ |
| 224 | leptr = LANCE_ADDR(&aib->brx_ring); |
| 225 | ib->rx_len = (lp->lance_log_rx_bufs << 13) | (leptr >> 16); |
| 226 | ib->rx_ptr = leptr; |
| 227 | if (ZERO) |
| 228 | printk(KERN_DEBUG "RX ptr: %8.8x\n", leptr); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 229 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | /* Setup tx descriptor pointer */ |
| 231 | leptr = LANCE_ADDR(&aib->btx_ring); |
| 232 | ib->tx_len = (lp->lance_log_tx_bufs << 13) | (leptr >> 16); |
| 233 | ib->tx_ptr = leptr; |
| 234 | if (ZERO) |
| 235 | printk(KERN_DEBUG "TX ptr: %8.8x\n", leptr); |
| 236 | |
| 237 | /* Clear the multicast filter */ |
| 238 | ib->filter [0] = 0; |
| 239 | ib->filter [1] = 0; |
| 240 | } |
| 241 | |
| 242 | static int init_restart_lance (struct lance_private *lp) |
| 243 | { |
| 244 | volatile struct lance_regs *ll = lp->ll; |
| 245 | int i; |
| 246 | |
| 247 | ll->rap = LE_CSR0; |
| 248 | ll->rdp = LE_C0_INIT; |
| 249 | |
| 250 | /* Wait for the lance to complete initialization */ |
| 251 | for (i = 0; (i < 100) && !(ll->rdp & (LE_C0_ERR | LE_C0_IDON)); i++) |
| 252 | barrier(); |
| 253 | if ((i == 100) || (ll->rdp & LE_C0_ERR)) { |
| 254 | printk(KERN_ERR "LANCE unopened after %d ticks, csr0=%4.4x.\n", |
| 255 | i, ll->rdp); |
| 256 | return -EIO; |
| 257 | } |
| 258 | |
| 259 | /* Clear IDON by writing a "1", enable interrupts and start lance */ |
| 260 | ll->rdp = LE_C0_IDON; |
| 261 | ll->rdp = LE_C0_INEA | LE_C0_STRT; |
| 262 | |
| 263 | return 0; |
| 264 | } |
| 265 | |
| 266 | static int lance_rx (struct net_device *dev) |
| 267 | { |
| 268 | struct lance_private *lp = netdev_priv(dev); |
| 269 | volatile struct lance_init_block *ib = lp->init_block; |
| 270 | volatile struct lance_regs *ll = lp->ll; |
| 271 | volatile struct lance_rx_desc *rd; |
| 272 | unsigned char bits; |
| 273 | int len = 0; /* XXX shut up gcc warnings */ |
| 274 | struct sk_buff *skb = 0; /* XXX shut up gcc warnings */ |
| 275 | |
| 276 | #ifdef TEST_HITS |
| 277 | int i; |
| 278 | printk(KERN_DEBUG "["); |
| 279 | for (i = 0; i < RX_RING_SIZE; i++) { |
| 280 | if (i == lp->rx_new) |
| 281 | printk ("%s", |
| 282 | ib->brx_ring [i].rmd1_bits & LE_R1_OWN ? "_" : "X"); |
| 283 | else |
| 284 | printk ("%s", |
| 285 | ib->brx_ring [i].rmd1_bits & LE_R1_OWN ? "." : "1"); |
| 286 | } |
| 287 | printk ("]\n"); |
| 288 | #endif |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | ll->rdp = LE_C0_RINT|LE_C0_INEA; |
| 291 | for (rd = &ib->brx_ring [lp->rx_new]; |
| 292 | !((bits = rd->rmd1_bits) & LE_R1_OWN); |
| 293 | rd = &ib->brx_ring [lp->rx_new]) { |
| 294 | |
| 295 | /* We got an incomplete frame? */ |
| 296 | if ((bits & LE_R1_POK) != LE_R1_POK) { |
| 297 | lp->stats.rx_over_errors++; |
| 298 | lp->stats.rx_errors++; |
| 299 | continue; |
| 300 | } else if (bits & LE_R1_ERR) { |
| 301 | /* Count only the end frame as a rx error, |
| 302 | * not the beginning |
| 303 | */ |
| 304 | if (bits & LE_R1_BUF) lp->stats.rx_fifo_errors++; |
| 305 | if (bits & LE_R1_CRC) lp->stats.rx_crc_errors++; |
| 306 | if (bits & LE_R1_OFL) lp->stats.rx_over_errors++; |
| 307 | if (bits & LE_R1_FRA) lp->stats.rx_frame_errors++; |
| 308 | if (bits & LE_R1_EOP) lp->stats.rx_errors++; |
| 309 | } else { |
| 310 | len = (rd->mblength & 0xfff) - 4; |
| 311 | skb = dev_alloc_skb (len+2); |
| 312 | |
| 313 | if (skb == 0) { |
| 314 | printk(KERN_WARNING "%s: Memory squeeze, " |
| 315 | "deferring packet.\n", dev->name); |
| 316 | lp->stats.rx_dropped++; |
| 317 | rd->mblength = 0; |
| 318 | rd->rmd1_bits = LE_R1_OWN; |
| 319 | lp->rx_new = (lp->rx_new + 1) & lp->rx_ring_mod_mask; |
| 320 | return 0; |
| 321 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 322 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | skb_reserve (skb, 2); /* 16 byte align */ |
| 324 | skb_put (skb, len); /* make room */ |
David S. Miller | 8c7b7fa | 2007-07-10 22:08:12 -0700 | [diff] [blame] | 325 | skb_copy_to_linear_data(skb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | (unsigned char *)&(ib->rx_buf [lp->rx_new][0]), |
David S. Miller | 8c7b7fa | 2007-07-10 22:08:12 -0700 | [diff] [blame] | 327 | len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | skb->protocol = eth_type_trans (skb, dev); |
| 329 | netif_rx (skb); |
| 330 | dev->last_rx = jiffies; |
| 331 | lp->stats.rx_packets++; |
| 332 | lp->stats.rx_bytes += len; |
| 333 | } |
| 334 | |
| 335 | /* Return the packet to the pool */ |
| 336 | rd->mblength = 0; |
| 337 | rd->rmd1_bits = LE_R1_OWN; |
| 338 | lp->rx_new = (lp->rx_new + 1) & lp->rx_ring_mod_mask; |
| 339 | } |
| 340 | return 0; |
| 341 | } |
| 342 | |
| 343 | static int lance_tx (struct net_device *dev) |
| 344 | { |
| 345 | struct lance_private *lp = netdev_priv(dev); |
| 346 | volatile struct lance_init_block *ib = lp->init_block; |
| 347 | volatile struct lance_regs *ll = lp->ll; |
| 348 | volatile struct lance_tx_desc *td; |
| 349 | int i, j; |
| 350 | int status; |
| 351 | |
| 352 | /* csr0 is 2f3 */ |
| 353 | ll->rdp = LE_C0_TINT | LE_C0_INEA; |
| 354 | /* csr0 is 73 */ |
| 355 | |
| 356 | j = lp->tx_old; |
| 357 | for (i = j; i != lp->tx_new; i = j) { |
| 358 | td = &ib->btx_ring [i]; |
| 359 | |
| 360 | /* If we hit a packet not owned by us, stop */ |
| 361 | if (td->tmd1_bits & LE_T1_OWN) |
| 362 | break; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 363 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | if (td->tmd1_bits & LE_T1_ERR) { |
| 365 | status = td->misc; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 366 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | lp->stats.tx_errors++; |
| 368 | if (status & LE_T3_RTY) lp->stats.tx_aborted_errors++; |
| 369 | if (status & LE_T3_LCOL) lp->stats.tx_window_errors++; |
| 370 | |
| 371 | if (status & LE_T3_CLOS) { |
| 372 | lp->stats.tx_carrier_errors++; |
| 373 | if (lp->auto_select) { |
| 374 | lp->tpe = 1 - lp->tpe; |
| 375 | printk(KERN_ERR "%s: Carrier Lost, " |
| 376 | "trying %s\n", dev->name, |
| 377 | lp->tpe?"TPE":"AUI"); |
| 378 | /* Stop the lance */ |
| 379 | ll->rap = LE_CSR0; |
| 380 | ll->rdp = LE_C0_STOP; |
| 381 | lance_init_ring (dev); |
| 382 | load_csrs (lp); |
| 383 | init_restart_lance (lp); |
| 384 | return 0; |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | /* buffer errors and underflows turn off the transmitter */ |
| 389 | /* Restart the adapter */ |
| 390 | if (status & (LE_T3_BUF|LE_T3_UFL)) { |
| 391 | lp->stats.tx_fifo_errors++; |
| 392 | |
| 393 | printk(KERN_ERR "%s: Tx: ERR_BUF|ERR_UFL, " |
| 394 | "restarting\n", dev->name); |
| 395 | /* Stop the lance */ |
| 396 | ll->rap = LE_CSR0; |
| 397 | ll->rdp = LE_C0_STOP; |
| 398 | lance_init_ring (dev); |
| 399 | load_csrs (lp); |
| 400 | init_restart_lance (lp); |
| 401 | return 0; |
| 402 | } |
| 403 | } else if ((td->tmd1_bits & LE_T1_POK) == LE_T1_POK) { |
| 404 | /* |
| 405 | * So we don't count the packet more than once. |
| 406 | */ |
| 407 | td->tmd1_bits &= ~(LE_T1_POK); |
| 408 | |
| 409 | /* One collision before packet was sent. */ |
| 410 | if (td->tmd1_bits & LE_T1_EONE) |
| 411 | lp->stats.collisions++; |
| 412 | |
| 413 | /* More than one collision, be optimistic. */ |
| 414 | if (td->tmd1_bits & LE_T1_EMORE) |
| 415 | lp->stats.collisions += 2; |
| 416 | |
| 417 | lp->stats.tx_packets++; |
| 418 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 419 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | j = (j + 1) & lp->tx_ring_mod_mask; |
| 421 | } |
| 422 | lp->tx_old = j; |
| 423 | ll->rdp = LE_C0_TINT | LE_C0_INEA; |
| 424 | return 0; |
| 425 | } |
| 426 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 427 | static irqreturn_t lance_interrupt (int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | { |
| 429 | struct net_device *dev; |
| 430 | struct lance_private *lp; |
| 431 | volatile struct lance_regs *ll; |
| 432 | int csr0; |
| 433 | |
| 434 | dev = (struct net_device *) dev_id; |
| 435 | |
| 436 | lp = netdev_priv(dev); |
| 437 | ll = lp->ll; |
| 438 | |
| 439 | ll->rap = LE_CSR0; /* LANCE Controller Status */ |
| 440 | csr0 = ll->rdp; |
| 441 | |
| 442 | if (!(csr0 & LE_C0_INTR)) /* Check if any interrupt has */ |
| 443 | return IRQ_NONE; /* been generated by the Lance. */ |
| 444 | |
| 445 | /* Acknowledge all the interrupt sources ASAP */ |
| 446 | ll->rdp = csr0 & ~(LE_C0_INEA|LE_C0_TDMD|LE_C0_STOP|LE_C0_STRT| |
| 447 | LE_C0_INIT); |
| 448 | |
| 449 | if ((csr0 & LE_C0_ERR)) { |
| 450 | /* Clear the error condition */ |
| 451 | ll->rdp = LE_C0_BABL|LE_C0_ERR|LE_C0_MISS|LE_C0_INEA; |
| 452 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 453 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | if (csr0 & LE_C0_RINT) |
| 455 | lance_rx (dev); |
| 456 | |
| 457 | if (csr0 & LE_C0_TINT) |
| 458 | lance_tx (dev); |
| 459 | |
| 460 | /* Log misc errors. */ |
| 461 | if (csr0 & LE_C0_BABL) |
| 462 | lp->stats.tx_errors++; /* Tx babble. */ |
| 463 | if (csr0 & LE_C0_MISS) |
| 464 | lp->stats.rx_errors++; /* Missed a Rx frame. */ |
| 465 | if (csr0 & LE_C0_MERR) { |
| 466 | printk(KERN_ERR "%s: Bus master arbitration failure, status " |
| 467 | "%4.4x.\n", dev->name, csr0); |
| 468 | /* Restart the chip. */ |
| 469 | ll->rdp = LE_C0_STRT; |
| 470 | } |
| 471 | |
| 472 | if (netif_queue_stopped(dev) && TX_BUFFS_AVAIL > 0) |
| 473 | netif_wake_queue(dev); |
| 474 | |
| 475 | ll->rap = LE_CSR0; |
| 476 | ll->rdp = LE_C0_BABL|LE_C0_CERR|LE_C0_MISS|LE_C0_MERR| |
| 477 | LE_C0_IDON|LE_C0_INEA; |
| 478 | return IRQ_HANDLED; |
| 479 | } |
| 480 | |
| 481 | struct net_device *last_dev = 0; |
| 482 | |
| 483 | static int lance_open (struct net_device *dev) |
| 484 | { |
| 485 | struct lance_private *lp = netdev_priv(dev); |
| 486 | volatile struct lance_regs *ll = lp->ll; |
| 487 | int ret; |
| 488 | |
| 489 | last_dev = dev; |
| 490 | |
| 491 | /* Stop the Lance */ |
| 492 | ll->rap = LE_CSR0; |
| 493 | ll->rdp = LE_C0_STOP; |
| 494 | |
| 495 | /* Install the Interrupt handler */ |
Thomas Gleixner | 1fb9df5 | 2006-07-01 19:29:39 -0700 | [diff] [blame] | 496 | ret = request_irq(IRQ_AMIGA_PORTS, lance_interrupt, IRQF_SHARED, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | dev->name, dev); |
| 498 | if (ret) return ret; |
| 499 | |
| 500 | load_csrs (lp); |
| 501 | lance_init_ring (dev); |
| 502 | |
| 503 | netif_start_queue(dev); |
| 504 | |
| 505 | return init_restart_lance (lp); |
| 506 | } |
| 507 | |
| 508 | static int lance_close (struct net_device *dev) |
| 509 | { |
| 510 | struct lance_private *lp = netdev_priv(dev); |
| 511 | volatile struct lance_regs *ll = lp->ll; |
| 512 | |
| 513 | netif_stop_queue(dev); |
| 514 | del_timer_sync(&lp->multicast_timer); |
| 515 | |
| 516 | /* Stop the card */ |
| 517 | ll->rap = LE_CSR0; |
| 518 | ll->rdp = LE_C0_STOP; |
| 519 | |
| 520 | free_irq(IRQ_AMIGA_PORTS, dev); |
| 521 | return 0; |
| 522 | } |
| 523 | |
| 524 | static inline int lance_reset (struct net_device *dev) |
| 525 | { |
| 526 | struct lance_private *lp = netdev_priv(dev); |
| 527 | volatile struct lance_regs *ll = lp->ll; |
| 528 | int status; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 529 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | /* Stop the lance */ |
| 531 | ll->rap = LE_CSR0; |
| 532 | ll->rdp = LE_C0_STOP; |
| 533 | |
| 534 | load_csrs (lp); |
| 535 | |
| 536 | lance_init_ring (dev); |
| 537 | dev->trans_start = jiffies; |
| 538 | netif_start_queue(dev); |
| 539 | |
| 540 | status = init_restart_lance (lp); |
| 541 | #ifdef DEBUG_DRIVER |
| 542 | printk(KERN_DEBUG "Lance restart=%d\n", status); |
| 543 | #endif |
| 544 | return status; |
| 545 | } |
| 546 | |
| 547 | static void lance_tx_timeout(struct net_device *dev) |
| 548 | { |
| 549 | struct lance_private *lp = netdev_priv(dev); |
| 550 | volatile struct lance_regs *ll = lp->ll; |
| 551 | |
| 552 | printk(KERN_ERR "%s: transmit timed out, status %04x, reset\n", |
| 553 | dev->name, ll->rdp); |
| 554 | lance_reset(dev); |
| 555 | netif_wake_queue(dev); |
| 556 | } |
| 557 | |
| 558 | static int lance_start_xmit (struct sk_buff *skb, struct net_device *dev) |
| 559 | { |
| 560 | struct lance_private *lp = netdev_priv(dev); |
| 561 | volatile struct lance_regs *ll = lp->ll; |
| 562 | volatile struct lance_init_block *ib = lp->init_block; |
| 563 | int entry, skblen, len; |
| 564 | int status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | unsigned long flags; |
| 566 | |
| 567 | skblen = skb->len; |
| 568 | len = skblen; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 569 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | if (len < ETH_ZLEN) { |
| 571 | len = ETH_ZLEN; |
Herbert Xu | 5b057c6 | 2006-06-23 02:06:41 -0700 | [diff] [blame] | 572 | if (skb_padto(skb, ETH_ZLEN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | return 0; |
| 574 | } |
| 575 | |
| 576 | local_irq_save(flags); |
| 577 | |
| 578 | if (!TX_BUFFS_AVAIL){ |
| 579 | local_irq_restore(flags); |
| 580 | return -1; |
| 581 | } |
| 582 | |
| 583 | #ifdef DEBUG_DRIVER |
| 584 | /* dump the packet */ |
| 585 | { |
| 586 | int i; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 587 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | for (i = 0; i < 64; i++) { |
| 589 | if ((i % 16) == 0) |
| 590 | printk("\n" KERN_DEBUG); |
| 591 | printk ("%2.2x ", skb->data [i]); |
| 592 | } |
| 593 | printk("\n"); |
| 594 | } |
| 595 | #endif |
| 596 | entry = lp->tx_new & lp->tx_ring_mod_mask; |
| 597 | ib->btx_ring [entry].length = (-len) | 0xf000; |
| 598 | ib->btx_ring [entry].misc = 0; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 599 | |
Geert Uytterhoeven | cfa08bb | 2007-05-01 22:33:05 +0200 | [diff] [blame] | 600 | skb_copy_from_linear_data(skb, (void *)&ib->tx_buf [entry][0], skblen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
| 602 | /* Clear the slack of the packet, do I need this? */ |
| 603 | if (len != skblen) |
Geert Uytterhoeven | cfa08bb | 2007-05-01 22:33:05 +0200 | [diff] [blame] | 604 | memset ((void *) &ib->tx_buf [entry][skblen], 0, len - skblen); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 605 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | /* Now, give the packet to the lance */ |
| 607 | ib->btx_ring [entry].tmd1_bits = (LE_T1_POK|LE_T1_OWN); |
| 608 | lp->tx_new = (lp->tx_new+1) & lp->tx_ring_mod_mask; |
Geert Uytterhoeven | 3f5d987 | 2007-05-01 22:32:50 +0200 | [diff] [blame] | 609 | lp->stats.tx_bytes += skblen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | |
| 611 | if (TX_BUFFS_AVAIL <= 0) |
| 612 | netif_stop_queue(dev); |
| 613 | |
| 614 | /* Kick the lance: transmit now */ |
| 615 | ll->rdp = LE_C0_INEA | LE_C0_TDMD; |
| 616 | dev->trans_start = jiffies; |
| 617 | dev_kfree_skb (skb); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | local_irq_restore(flags); |
| 620 | |
| 621 | return status; |
| 622 | } |
| 623 | |
| 624 | static struct net_device_stats *lance_get_stats (struct net_device *dev) |
| 625 | { |
| 626 | struct lance_private *lp = netdev_priv(dev); |
| 627 | |
| 628 | return &lp->stats; |
| 629 | } |
| 630 | |
| 631 | /* taken from the depca driver */ |
| 632 | static void lance_load_multicast (struct net_device *dev) |
| 633 | { |
| 634 | struct lance_private *lp = netdev_priv(dev); |
| 635 | volatile struct lance_init_block *ib = lp->init_block; |
| 636 | volatile u16 *mcast_table = (u16 *)&ib->filter; |
| 637 | struct dev_mc_list *dmi=dev->mc_list; |
| 638 | char *addrs; |
| 639 | int i; |
| 640 | u32 crc; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 641 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | /* set all multicast bits */ |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 643 | if (dev->flags & IFF_ALLMULTI){ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | ib->filter [0] = 0xffffffff; |
| 645 | ib->filter [1] = 0xffffffff; |
| 646 | return; |
| 647 | } |
| 648 | /* clear the multicast filter */ |
| 649 | ib->filter [0] = 0; |
| 650 | ib->filter [1] = 0; |
| 651 | |
| 652 | /* Add addresses */ |
| 653 | for (i = 0; i < dev->mc_count; i++){ |
| 654 | addrs = dmi->dmi_addr; |
| 655 | dmi = dmi->next; |
| 656 | |
| 657 | /* multicast address? */ |
| 658 | if (!(*addrs & 1)) |
| 659 | continue; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 660 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | crc = ether_crc_le(6, addrs); |
| 662 | crc = crc >> 26; |
| 663 | mcast_table [crc >> 4] |= 1 << (crc & 0xf); |
| 664 | } |
| 665 | return; |
| 666 | } |
| 667 | |
| 668 | static void lance_set_multicast (struct net_device *dev) |
| 669 | { |
| 670 | struct lance_private *lp = netdev_priv(dev); |
| 671 | volatile struct lance_init_block *ib = lp->init_block; |
| 672 | volatile struct lance_regs *ll = lp->ll; |
| 673 | |
| 674 | if (!netif_running(dev)) |
| 675 | return; |
| 676 | |
| 677 | if (lp->tx_old != lp->tx_new) { |
| 678 | mod_timer(&lp->multicast_timer, jiffies + 4); |
| 679 | netif_wake_queue(dev); |
| 680 | return; |
| 681 | } |
| 682 | |
| 683 | netif_stop_queue(dev); |
| 684 | |
| 685 | ll->rap = LE_CSR0; |
| 686 | ll->rdp = LE_C0_STOP; |
| 687 | lance_init_ring (dev); |
| 688 | |
| 689 | if (dev->flags & IFF_PROMISC) { |
| 690 | ib->mode |= LE_MO_PROM; |
| 691 | } else { |
| 692 | ib->mode &= ~LE_MO_PROM; |
| 693 | lance_load_multicast (dev); |
| 694 | } |
| 695 | load_csrs (lp); |
| 696 | init_restart_lance (lp); |
| 697 | netif_wake_queue(dev); |
| 698 | } |
| 699 | |
| 700 | static int __devinit a2065_init_one(struct zorro_dev *z, |
| 701 | const struct zorro_device_id *ent); |
| 702 | static void __devexit a2065_remove_one(struct zorro_dev *z); |
| 703 | |
| 704 | |
| 705 | static struct zorro_device_id a2065_zorro_tbl[] __devinitdata = { |
| 706 | { ZORRO_PROD_CBM_A2065_1 }, |
| 707 | { ZORRO_PROD_CBM_A2065_2 }, |
| 708 | { ZORRO_PROD_AMERISTAR_A2065 }, |
| 709 | { 0 } |
| 710 | }; |
| 711 | |
| 712 | static struct zorro_driver a2065_driver = { |
| 713 | .name = "a2065", |
| 714 | .id_table = a2065_zorro_tbl, |
| 715 | .probe = a2065_init_one, |
| 716 | .remove = __devexit_p(a2065_remove_one), |
| 717 | }; |
| 718 | |
| 719 | static int __devinit a2065_init_one(struct zorro_dev *z, |
| 720 | const struct zorro_device_id *ent) |
| 721 | { |
| 722 | struct net_device *dev; |
| 723 | struct lance_private *priv; |
| 724 | unsigned long board, base_addr, mem_start; |
| 725 | struct resource *r1, *r2; |
| 726 | int err; |
| 727 | |
| 728 | board = z->resource.start; |
| 729 | base_addr = board+A2065_LANCE; |
| 730 | mem_start = board+A2065_RAM; |
| 731 | |
| 732 | r1 = request_mem_region(base_addr, sizeof(struct lance_regs), |
| 733 | "Am7990"); |
| 734 | if (!r1) |
| 735 | return -EBUSY; |
| 736 | r2 = request_mem_region(mem_start, A2065_RAM_SIZE, "RAM"); |
| 737 | if (!r2) { |
| 738 | release_resource(r1); |
| 739 | return -EBUSY; |
| 740 | } |
| 741 | |
| 742 | dev = alloc_etherdev(sizeof(struct lance_private)); |
| 743 | if (dev == NULL) { |
| 744 | release_resource(r1); |
| 745 | release_resource(r2); |
| 746 | return -ENOMEM; |
| 747 | } |
| 748 | |
| 749 | SET_MODULE_OWNER(dev); |
| 750 | priv = netdev_priv(dev); |
| 751 | |
| 752 | r1->name = dev->name; |
| 753 | r2->name = dev->name; |
| 754 | |
| 755 | dev->dev_addr[0] = 0x00; |
| 756 | if (z->id != ZORRO_PROD_AMERISTAR_A2065) { /* Commodore */ |
| 757 | dev->dev_addr[1] = 0x80; |
| 758 | dev->dev_addr[2] = 0x10; |
| 759 | } else { /* Ameristar */ |
| 760 | dev->dev_addr[1] = 0x00; |
| 761 | dev->dev_addr[2] = 0x9f; |
| 762 | } |
| 763 | dev->dev_addr[3] = (z->rom.er_SerialNumber>>16) & 0xff; |
| 764 | dev->dev_addr[4] = (z->rom.er_SerialNumber>>8) & 0xff; |
| 765 | dev->dev_addr[5] = z->rom.er_SerialNumber & 0xff; |
| 766 | dev->base_addr = ZTWO_VADDR(base_addr); |
| 767 | dev->mem_start = ZTWO_VADDR(mem_start); |
| 768 | dev->mem_end = dev->mem_start+A2065_RAM_SIZE; |
| 769 | |
| 770 | priv->ll = (volatile struct lance_regs *)dev->base_addr; |
| 771 | priv->init_block = (struct lance_init_block *)dev->mem_start; |
| 772 | priv->lance_init_block = (struct lance_init_block *)A2065_RAM; |
| 773 | priv->auto_select = 0; |
| 774 | priv->busmaster_regval = LE_C3_BSWP; |
| 775 | |
| 776 | priv->lance_log_rx_bufs = LANCE_LOG_RX_BUFFERS; |
| 777 | priv->lance_log_tx_bufs = LANCE_LOG_TX_BUFFERS; |
| 778 | priv->rx_ring_mod_mask = RX_RING_MOD_MASK; |
| 779 | priv->tx_ring_mod_mask = TX_RING_MOD_MASK; |
| 780 | |
| 781 | dev->open = &lance_open; |
| 782 | dev->stop = &lance_close; |
| 783 | dev->hard_start_xmit = &lance_start_xmit; |
| 784 | dev->tx_timeout = &lance_tx_timeout; |
| 785 | dev->watchdog_timeo = 5*HZ; |
| 786 | dev->get_stats = &lance_get_stats; |
| 787 | dev->set_multicast_list = &lance_set_multicast; |
| 788 | dev->dma = 0; |
| 789 | |
| 790 | init_timer(&priv->multicast_timer); |
| 791 | priv->multicast_timer.data = (unsigned long) dev; |
| 792 | priv->multicast_timer.function = |
| 793 | (void (*)(unsigned long)) &lance_set_multicast; |
| 794 | |
| 795 | err = register_netdev(dev); |
| 796 | if (err) { |
| 797 | release_resource(r1); |
| 798 | release_resource(r2); |
| 799 | free_netdev(dev); |
| 800 | return err; |
| 801 | } |
| 802 | zorro_set_drvdata(z, dev); |
| 803 | |
| 804 | printk(KERN_INFO "%s: A2065 at 0x%08lx, Ethernet Address " |
| 805 | "%02x:%02x:%02x:%02x:%02x:%02x\n", dev->name, board, |
| 806 | dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2], |
| 807 | dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5]); |
| 808 | |
| 809 | return 0; |
| 810 | } |
| 811 | |
| 812 | |
| 813 | static void __devexit a2065_remove_one(struct zorro_dev *z) |
| 814 | { |
| 815 | struct net_device *dev = zorro_get_drvdata(z); |
| 816 | |
| 817 | unregister_netdev(dev); |
| 818 | release_mem_region(ZTWO_PADDR(dev->base_addr), |
| 819 | sizeof(struct lance_regs)); |
| 820 | release_mem_region(ZTWO_PADDR(dev->mem_start), A2065_RAM_SIZE); |
| 821 | free_netdev(dev); |
| 822 | } |
| 823 | |
| 824 | static int __init a2065_init_module(void) |
| 825 | { |
Bjorn Helgaas | 33d8675 | 2006-03-25 03:07:20 -0800 | [diff] [blame] | 826 | return zorro_register_driver(&a2065_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | } |
| 828 | |
| 829 | static void __exit a2065_cleanup_module(void) |
| 830 | { |
| 831 | zorro_unregister_driver(&a2065_driver); |
| 832 | } |
| 833 | |
| 834 | module_init(a2065_init_module); |
| 835 | module_exit(a2065_cleanup_module); |
| 836 | |
| 837 | MODULE_LICENSE("GPL"); |