NET: am79c961: fix assembler warnings
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / arm / am79c961a.c
blob7b3e23f38913657896b833a73d7c679b1723558a
1 /*
2 * linux/drivers/net/am79c961.c
4 * by Russell King <rmk@arm.linux.org.uk> 1995-2001.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * Derived from various things including skeleton.c
12 * This is a special driver for the am79c961A Lance chip used in the
13 * Intel (formally Digital Equipment Corp) EBSA110 platform. Please
14 * note that this can not be built as a module (it doesn't make sense).
16 #include <linux/kernel.h>
17 #include <linux/types.h>
18 #include <linux/interrupt.h>
19 #include <linux/ioport.h>
20 #include <linux/slab.h>
21 #include <linux/string.h>
22 #include <linux/errno.h>
23 #include <linux/netdevice.h>
24 #include <linux/etherdevice.h>
25 #include <linux/delay.h>
26 #include <linux/init.h>
27 #include <linux/crc32.h>
28 #include <linux/bitops.h>
29 #include <linux/platform_device.h>
30 #include <linux/io.h>
32 #include <mach/hardware.h>
33 #include <asm/system.h>
35 #define TX_BUFFERS 15
36 #define RX_BUFFERS 25
38 #include "am79c961a.h"
40 static irqreturn_t
41 am79c961_interrupt (int irq, void *dev_id);
43 static unsigned int net_debug = NET_DEBUG;
45 static const char version[] =
46 "am79c961 ethernet driver (C) 1995-2001 Russell King v0.04\n";
48 /* --------------------------------------------------------------------------- */
50 #ifdef __arm__
51 static void write_rreg(u_long base, u_int reg, u_int val)
53 asm volatile(
54 "str%?h %1, [%2] @ NET_RAP\n\t"
55 "str%?h %0, [%2, #-4] @ NET_RDP"
57 : "r" (val), "r" (reg), "r" (ISAIO_BASE + 0x0464));
60 static inline unsigned short read_rreg(u_long base_addr, u_int reg)
62 unsigned short v;
63 asm volatile(
64 "str%?h %1, [%2] @ NET_RAP\n\t"
65 "ldr%?h %0, [%2, #-4] @ NET_RDP"
66 : "=r" (v)
67 : "r" (reg), "r" (ISAIO_BASE + 0x0464));
68 return v;
71 static inline void write_ireg(u_long base, u_int reg, u_int val)
73 asm volatile(
74 "str%?h %1, [%2] @ NET_RAP\n\t"
75 "str%?h %0, [%2, #8] @ NET_IDP"
77 : "r" (val), "r" (reg), "r" (ISAIO_BASE + 0x0464));
80 static inline unsigned short read_ireg(u_long base_addr, u_int reg)
82 u_short v;
83 asm volatile(
84 "str%?h %1, [%2] @ NAT_RAP\n\t"
85 "ldr%?h %0, [%2, #8] @ NET_IDP\n\t"
86 : "=r" (v)
87 : "r" (reg), "r" (ISAIO_BASE + 0x0464));
88 return v;
91 #define am_writeword(dev,off,val) __raw_writew(val, ISAMEM_BASE + ((off) << 1))
92 #define am_readword(dev,off) __raw_readw(ISAMEM_BASE + ((off) << 1))
94 static void
95 am_writebuffer(struct net_device *dev, u_int offset, unsigned char *buf, unsigned int length)
97 offset = ISAMEM_BASE + (offset << 1);
98 length = (length + 1) & ~1;
99 if ((int)buf & 2) {
100 asm volatile("str%?h %2, [%0], #4"
101 : "=&r" (offset) : "0" (offset), "r" (buf[0] | (buf[1] << 8)));
102 buf += 2;
103 length -= 2;
105 while (length > 8) {
106 register unsigned int tmp asm("r2"), tmp2 asm("r3");
107 asm volatile(
108 "ldm%?ia %0!, {%1, %2}"
109 : "+r" (buf), "=&r" (tmp), "=&r" (tmp2));
110 length -= 8;
111 asm volatile(
112 "str%?h %1, [%0], #4\n\t"
113 "mov%? %1, %1, lsr #16\n\t"
114 "str%?h %1, [%0], #4\n\t"
115 "str%?h %2, [%0], #4\n\t"
116 "mov%? %2, %2, lsr #16\n\t"
117 "str%?h %2, [%0], #4"
118 : "+r" (offset), "=&r" (tmp), "=&r" (tmp2));
120 while (length > 0) {
121 asm volatile("str%?h %2, [%0], #4"
122 : "=&r" (offset) : "0" (offset), "r" (buf[0] | (buf[1] << 8)));
123 buf += 2;
124 length -= 2;
128 static void
129 am_readbuffer(struct net_device *dev, u_int offset, unsigned char *buf, unsigned int length)
131 offset = ISAMEM_BASE + (offset << 1);
132 length = (length + 1) & ~1;
133 if ((int)buf & 2) {
134 unsigned int tmp;
135 asm volatile(
136 "ldr%?h %2, [%0], #4\n\t"
137 "str%?b %2, [%1], #1\n\t"
138 "mov%? %2, %2, lsr #8\n\t"
139 "str%?b %2, [%1], #1"
140 : "=&r" (offset), "=&r" (buf), "=r" (tmp): "0" (offset), "1" (buf));
141 length -= 2;
143 while (length > 8) {
144 register unsigned int tmp asm("r2"), tmp2 asm("r3"), tmp3;
145 asm volatile(
146 "ldr%?h %2, [%0], #4\n\t"
147 "ldr%?h %4, [%0], #4\n\t"
148 "ldr%?h %3, [%0], #4\n\t"
149 "orr%? %2, %2, %4, lsl #16\n\t"
150 "ldr%?h %4, [%0], #4\n\t"
151 "orr%? %3, %3, %4, lsl #16\n\t"
152 "stm%?ia %1!, {%2, %3}"
153 : "=&r" (offset), "=&r" (buf), "=r" (tmp), "=r" (tmp2), "=r" (tmp3)
154 : "0" (offset), "1" (buf));
155 length -= 8;
157 while (length > 0) {
158 unsigned int tmp;
159 asm volatile(
160 "ldr%?h %2, [%0], #4\n\t"
161 "str%?b %2, [%1], #1\n\t"
162 "mov%? %2, %2, lsr #8\n\t"
163 "str%?b %2, [%1], #1"
164 : "=&r" (offset), "=&r" (buf), "=r" (tmp) : "0" (offset), "1" (buf));
165 length -= 2;
168 #else
169 #error Not compatible
170 #endif
172 static int
173 am79c961_ramtest(struct net_device *dev, unsigned int val)
175 unsigned char *buffer = kmalloc (65536, GFP_KERNEL);
176 int i, error = 0, errorcount = 0;
178 if (!buffer)
179 return 0;
180 memset (buffer, val, 65536);
181 am_writebuffer(dev, 0, buffer, 65536);
182 memset (buffer, val ^ 255, 65536);
183 am_readbuffer(dev, 0, buffer, 65536);
184 for (i = 0; i < 65536; i++) {
185 if (buffer[i] != val && !error) {
186 printk ("%s: buffer error (%02X %02X) %05X - ", dev->name, val, buffer[i], i);
187 error = 1;
188 errorcount ++;
189 } else if (error && buffer[i] == val) {
190 printk ("%05X\n", i);
191 error = 0;
194 if (error)
195 printk ("10000\n");
196 kfree (buffer);
197 return errorcount;
200 static void am79c961_mc_hash(char *addr, u16 *hash)
202 if (addr[0] & 0x01) {
203 int idx, bit;
204 u32 crc;
206 crc = ether_crc_le(ETH_ALEN, addr);
208 idx = crc >> 30;
209 bit = (crc >> 26) & 15;
211 hash[idx] |= 1 << bit;
215 static unsigned int am79c961_get_rx_mode(struct net_device *dev, u16 *hash)
217 unsigned int mode = MODE_PORT_10BT;
219 if (dev->flags & IFF_PROMISC) {
220 mode |= MODE_PROMISC;
221 memset(hash, 0xff, 4 * sizeof(*hash));
222 } else if (dev->flags & IFF_ALLMULTI) {
223 memset(hash, 0xff, 4 * sizeof(*hash));
224 } else {
225 struct netdev_hw_addr *ha;
227 memset(hash, 0, 4 * sizeof(*hash));
229 netdev_for_each_mc_addr(ha, dev)
230 am79c961_mc_hash(ha->addr, hash);
233 return mode;
236 static void
237 am79c961_init_for_open(struct net_device *dev)
239 struct dev_priv *priv = netdev_priv(dev);
240 unsigned long flags;
241 unsigned char *p;
242 u_int hdr_addr, first_free_addr;
243 u16 multi_hash[4], mode = am79c961_get_rx_mode(dev, multi_hash);
244 int i;
247 * Stop the chip.
249 spin_lock_irqsave(&priv->chip_lock, flags);
250 write_rreg (dev->base_addr, CSR0, CSR0_BABL|CSR0_CERR|CSR0_MISS|CSR0_MERR|CSR0_TINT|CSR0_RINT|CSR0_STOP);
251 spin_unlock_irqrestore(&priv->chip_lock, flags);
253 write_ireg (dev->base_addr, 5, 0x00a0); /* Receive address LED */
254 write_ireg (dev->base_addr, 6, 0x0081); /* Collision LED */
255 write_ireg (dev->base_addr, 7, 0x0090); /* XMIT LED */
256 write_ireg (dev->base_addr, 2, 0x0000); /* MODE register selects media */
258 for (i = LADRL; i <= LADRH; i++)
259 write_rreg (dev->base_addr, i, multi_hash[i - LADRL]);
261 for (i = PADRL, p = dev->dev_addr; i <= PADRH; i++, p += 2)
262 write_rreg (dev->base_addr, i, p[0] | (p[1] << 8));
264 write_rreg (dev->base_addr, MODE, mode);
265 write_rreg (dev->base_addr, POLLINT, 0);
266 write_rreg (dev->base_addr, SIZERXR, -RX_BUFFERS);
267 write_rreg (dev->base_addr, SIZETXR, -TX_BUFFERS);
269 first_free_addr = RX_BUFFERS * 8 + TX_BUFFERS * 8 + 16;
270 hdr_addr = 0;
272 priv->rxhead = 0;
273 priv->rxtail = 0;
274 priv->rxhdr = hdr_addr;
276 for (i = 0; i < RX_BUFFERS; i++) {
277 priv->rxbuffer[i] = first_free_addr;
278 am_writeword (dev, hdr_addr, first_free_addr);
279 am_writeword (dev, hdr_addr + 2, RMD_OWN);
280 am_writeword (dev, hdr_addr + 4, (-1600));
281 am_writeword (dev, hdr_addr + 6, 0);
282 first_free_addr += 1600;
283 hdr_addr += 8;
285 priv->txhead = 0;
286 priv->txtail = 0;
287 priv->txhdr = hdr_addr;
288 for (i = 0; i < TX_BUFFERS; i++) {
289 priv->txbuffer[i] = first_free_addr;
290 am_writeword (dev, hdr_addr, first_free_addr);
291 am_writeword (dev, hdr_addr + 2, TMD_STP|TMD_ENP);
292 am_writeword (dev, hdr_addr + 4, 0xf000);
293 am_writeword (dev, hdr_addr + 6, 0);
294 first_free_addr += 1600;
295 hdr_addr += 8;
298 write_rreg (dev->base_addr, BASERXL, priv->rxhdr);
299 write_rreg (dev->base_addr, BASERXH, 0);
300 write_rreg (dev->base_addr, BASETXL, priv->txhdr);
301 write_rreg (dev->base_addr, BASERXH, 0);
302 write_rreg (dev->base_addr, CSR0, CSR0_STOP);
303 write_rreg (dev->base_addr, CSR3, CSR3_IDONM|CSR3_BABLM|CSR3_DXSUFLO);
304 write_rreg (dev->base_addr, CSR4, CSR4_APAD_XMIT|CSR4_MFCOM|CSR4_RCVCCOM|CSR4_TXSTRTM|CSR4_JABM);
305 write_rreg (dev->base_addr, CSR0, CSR0_IENA|CSR0_STRT);
308 static void am79c961_timer(unsigned long data)
310 struct net_device *dev = (struct net_device *)data;
311 struct dev_priv *priv = netdev_priv(dev);
312 unsigned int lnkstat, carrier;
314 lnkstat = read_ireg(dev->base_addr, ISALED0) & ISALED0_LNKST;
315 carrier = netif_carrier_ok(dev);
317 if (lnkstat && !carrier) {
318 netif_carrier_on(dev);
319 printk("%s: link up\n", dev->name);
320 } else if (!lnkstat && carrier) {
321 netif_carrier_off(dev);
322 printk("%s: link down\n", dev->name);
325 mod_timer(&priv->timer, jiffies + msecs_to_jiffies(500));
329 * Open/initialize the board.
331 static int
332 am79c961_open(struct net_device *dev)
334 struct dev_priv *priv = netdev_priv(dev);
335 int ret;
337 ret = request_irq(dev->irq, am79c961_interrupt, 0, dev->name, dev);
338 if (ret)
339 return ret;
341 am79c961_init_for_open(dev);
343 netif_carrier_off(dev);
345 priv->timer.expires = jiffies;
346 add_timer(&priv->timer);
348 netif_start_queue(dev);
350 return 0;
354 * The inverse routine to am79c961_open().
356 static int
357 am79c961_close(struct net_device *dev)
359 struct dev_priv *priv = netdev_priv(dev);
360 unsigned long flags;
362 del_timer_sync(&priv->timer);
364 netif_stop_queue(dev);
365 netif_carrier_off(dev);
367 spin_lock_irqsave(&priv->chip_lock, flags);
368 write_rreg (dev->base_addr, CSR0, CSR0_STOP);
369 write_rreg (dev->base_addr, CSR3, CSR3_MASKALL);
370 spin_unlock_irqrestore(&priv->chip_lock, flags);
372 free_irq (dev->irq, dev);
374 return 0;
378 * Set or clear promiscuous/multicast mode filter for this adapter.
380 static void am79c961_setmulticastlist (struct net_device *dev)
382 struct dev_priv *priv = netdev_priv(dev);
383 unsigned long flags;
384 u16 multi_hash[4], mode = am79c961_get_rx_mode(dev, multi_hash);
385 int i, stopped;
387 spin_lock_irqsave(&priv->chip_lock, flags);
389 stopped = read_rreg(dev->base_addr, CSR0) & CSR0_STOP;
391 if (!stopped) {
393 * Put the chip into suspend mode
395 write_rreg(dev->base_addr, CTRL1, CTRL1_SPND);
398 * Spin waiting for chip to report suspend mode
400 while ((read_rreg(dev->base_addr, CTRL1) & CTRL1_SPND) == 0) {
401 spin_unlock_irqrestore(&priv->chip_lock, flags);
402 nop();
403 spin_lock_irqsave(&priv->chip_lock, flags);
408 * Update the multicast hash table
410 for (i = 0; i < ARRAY_SIZE(multi_hash); i++)
411 write_rreg(dev->base_addr, i + LADRL, multi_hash[i]);
414 * Write the mode register
416 write_rreg(dev->base_addr, MODE, mode);
418 if (!stopped) {
420 * Put the chip back into running mode
422 write_rreg(dev->base_addr, CTRL1, 0);
425 spin_unlock_irqrestore(&priv->chip_lock, flags);
428 static void am79c961_timeout(struct net_device *dev)
430 printk(KERN_WARNING "%s: transmit timed out, network cable problem?\n",
431 dev->name);
434 * ought to do some setup of the tx side here
437 netif_wake_queue(dev);
441 * Transmit a packet
443 static int
444 am79c961_sendpacket(struct sk_buff *skb, struct net_device *dev)
446 struct dev_priv *priv = netdev_priv(dev);
447 unsigned int hdraddr, bufaddr;
448 unsigned int head;
449 unsigned long flags;
451 head = priv->txhead;
452 hdraddr = priv->txhdr + (head << 3);
453 bufaddr = priv->txbuffer[head];
454 head += 1;
455 if (head >= TX_BUFFERS)
456 head = 0;
458 am_writebuffer (dev, bufaddr, skb->data, skb->len);
459 am_writeword (dev, hdraddr + 4, -skb->len);
460 am_writeword (dev, hdraddr + 2, TMD_OWN|TMD_STP|TMD_ENP);
461 priv->txhead = head;
463 spin_lock_irqsave(&priv->chip_lock, flags);
464 write_rreg (dev->base_addr, CSR0, CSR0_TDMD|CSR0_IENA);
465 spin_unlock_irqrestore(&priv->chip_lock, flags);
468 * If the next packet is owned by the ethernet device,
469 * then the tx ring is full and we can't add another
470 * packet.
472 if (am_readword(dev, priv->txhdr + (priv->txhead << 3) + 2) & TMD_OWN)
473 netif_stop_queue(dev);
475 dev_kfree_skb(skb);
477 return NETDEV_TX_OK;
481 * If we have a good packet(s), get it/them out of the buffers.
483 static void
484 am79c961_rx(struct net_device *dev, struct dev_priv *priv)
486 do {
487 struct sk_buff *skb;
488 u_int hdraddr;
489 u_int pktaddr;
490 u_int status;
491 int len;
493 hdraddr = priv->rxhdr + (priv->rxtail << 3);
494 pktaddr = priv->rxbuffer[priv->rxtail];
496 status = am_readword (dev, hdraddr + 2);
497 if (status & RMD_OWN) /* do we own it? */
498 break;
500 priv->rxtail ++;
501 if (priv->rxtail >= RX_BUFFERS)
502 priv->rxtail = 0;
504 if ((status & (RMD_ERR|RMD_STP|RMD_ENP)) != (RMD_STP|RMD_ENP)) {
505 am_writeword (dev, hdraddr + 2, RMD_OWN);
506 dev->stats.rx_errors++;
507 if (status & RMD_ERR) {
508 if (status & RMD_FRAM)
509 dev->stats.rx_frame_errors++;
510 if (status & RMD_CRC)
511 dev->stats.rx_crc_errors++;
512 } else if (status & RMD_STP)
513 dev->stats.rx_length_errors++;
514 continue;
517 len = am_readword(dev, hdraddr + 6);
518 skb = dev_alloc_skb(len + 2);
520 if (skb) {
521 skb_reserve(skb, 2);
523 am_readbuffer(dev, pktaddr, skb_put(skb, len), len);
524 am_writeword(dev, hdraddr + 2, RMD_OWN);
525 skb->protocol = eth_type_trans(skb, dev);
526 netif_rx(skb);
527 dev->stats.rx_bytes += len;
528 dev->stats.rx_packets++;
529 } else {
530 am_writeword (dev, hdraddr + 2, RMD_OWN);
531 printk (KERN_WARNING "%s: memory squeeze, dropping packet.\n", dev->name);
532 dev->stats.rx_dropped++;
533 break;
535 } while (1);
539 * Update stats for the transmitted packet
541 static void
542 am79c961_tx(struct net_device *dev, struct dev_priv *priv)
544 do {
545 short len;
546 u_int hdraddr;
547 u_int status;
549 hdraddr = priv->txhdr + (priv->txtail << 3);
550 status = am_readword (dev, hdraddr + 2);
551 if (status & TMD_OWN)
552 break;
554 priv->txtail ++;
555 if (priv->txtail >= TX_BUFFERS)
556 priv->txtail = 0;
558 if (status & TMD_ERR) {
559 u_int status2;
561 dev->stats.tx_errors++;
563 status2 = am_readword (dev, hdraddr + 6);
566 * Clear the error byte
568 am_writeword (dev, hdraddr + 6, 0);
570 if (status2 & TST_RTRY)
571 dev->stats.collisions += 16;
572 if (status2 & TST_LCOL)
573 dev->stats.tx_window_errors++;
574 if (status2 & TST_LCAR)
575 dev->stats.tx_carrier_errors++;
576 if (status2 & TST_UFLO)
577 dev->stats.tx_fifo_errors++;
578 continue;
580 dev->stats.tx_packets++;
581 len = am_readword (dev, hdraddr + 4);
582 dev->stats.tx_bytes += -len;
583 } while (priv->txtail != priv->txhead);
585 netif_wake_queue(dev);
588 static irqreturn_t
589 am79c961_interrupt(int irq, void *dev_id)
591 struct net_device *dev = (struct net_device *)dev_id;
592 struct dev_priv *priv = netdev_priv(dev);
593 u_int status, n = 100;
594 int handled = 0;
596 do {
597 status = read_rreg(dev->base_addr, CSR0);
598 write_rreg(dev->base_addr, CSR0, status &
599 (CSR0_IENA|CSR0_TINT|CSR0_RINT|
600 CSR0_MERR|CSR0_MISS|CSR0_CERR|CSR0_BABL));
602 if (status & CSR0_RINT) {
603 handled = 1;
604 am79c961_rx(dev, priv);
606 if (status & CSR0_TINT) {
607 handled = 1;
608 am79c961_tx(dev, priv);
610 if (status & CSR0_MISS) {
611 handled = 1;
612 dev->stats.rx_dropped++;
614 if (status & CSR0_CERR) {
615 handled = 1;
616 mod_timer(&priv->timer, jiffies);
618 } while (--n && status & (CSR0_RINT | CSR0_TINT));
620 return IRQ_RETVAL(handled);
623 #ifdef CONFIG_NET_POLL_CONTROLLER
624 static void am79c961_poll_controller(struct net_device *dev)
626 unsigned long flags;
627 local_irq_save(flags);
628 am79c961_interrupt(dev->irq, dev);
629 local_irq_restore(flags);
631 #endif
634 * Initialise the chip. Note that we always expect
635 * to be entered with interrupts enabled.
637 static int
638 am79c961_hw_init(struct net_device *dev)
640 struct dev_priv *priv = netdev_priv(dev);
642 spin_lock_irq(&priv->chip_lock);
643 write_rreg (dev->base_addr, CSR0, CSR0_STOP);
644 write_rreg (dev->base_addr, CSR3, CSR3_MASKALL);
645 spin_unlock_irq(&priv->chip_lock);
647 am79c961_ramtest(dev, 0x66);
648 am79c961_ramtest(dev, 0x99);
650 return 0;
653 static void __init am79c961_banner(void)
655 static unsigned version_printed;
657 if (net_debug && version_printed++ == 0)
658 printk(KERN_INFO "%s", version);
660 static const struct net_device_ops am79c961_netdev_ops = {
661 .ndo_open = am79c961_open,
662 .ndo_stop = am79c961_close,
663 .ndo_start_xmit = am79c961_sendpacket,
664 .ndo_set_multicast_list = am79c961_setmulticastlist,
665 .ndo_tx_timeout = am79c961_timeout,
666 .ndo_validate_addr = eth_validate_addr,
667 .ndo_change_mtu = eth_change_mtu,
668 .ndo_set_mac_address = eth_mac_addr,
669 #ifdef CONFIG_NET_POLL_CONTROLLER
670 .ndo_poll_controller = am79c961_poll_controller,
671 #endif
674 static int __devinit am79c961_probe(struct platform_device *pdev)
676 struct resource *res;
677 struct net_device *dev;
678 struct dev_priv *priv;
679 int i, ret;
681 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
682 if (!res)
683 return -ENODEV;
685 dev = alloc_etherdev(sizeof(struct dev_priv));
686 ret = -ENOMEM;
687 if (!dev)
688 goto out;
690 SET_NETDEV_DEV(dev, &pdev->dev);
692 priv = netdev_priv(dev);
695 * Fixed address and IRQ lines here.
696 * The PNP initialisation should have been
697 * done by the ether bootp loader.
699 dev->base_addr = res->start;
700 ret = platform_get_irq(pdev, 0);
702 if (ret < 0) {
703 ret = -ENODEV;
704 goto nodev;
706 dev->irq = ret;
708 ret = -ENODEV;
709 if (!request_region(dev->base_addr, 0x18, dev->name))
710 goto nodev;
713 * Reset the device.
715 inb(dev->base_addr + NET_RESET);
716 udelay(5);
719 * Check the manufacturer part of the
720 * ether address.
722 if (inb(dev->base_addr) != 0x08 ||
723 inb(dev->base_addr + 2) != 0x00 ||
724 inb(dev->base_addr + 4) != 0x2b)
725 goto release;
727 for (i = 0; i < 6; i++)
728 dev->dev_addr[i] = inb(dev->base_addr + i * 2) & 0xff;
730 am79c961_banner();
732 spin_lock_init(&priv->chip_lock);
733 init_timer(&priv->timer);
734 priv->timer.data = (unsigned long)dev;
735 priv->timer.function = am79c961_timer;
737 if (am79c961_hw_init(dev))
738 goto release;
740 dev->netdev_ops = &am79c961_netdev_ops;
742 ret = register_netdev(dev);
743 if (ret == 0) {
744 printk(KERN_INFO "%s: ether address %pM\n",
745 dev->name, dev->dev_addr);
746 return 0;
749 release:
750 release_region(dev->base_addr, 0x18);
751 nodev:
752 free_netdev(dev);
753 out:
754 return ret;
757 static struct platform_driver am79c961_driver = {
758 .probe = am79c961_probe,
759 .driver = {
760 .name = "am79c961",
764 static int __init am79c961_init(void)
766 return platform_driver_register(&am79c961_driver);
769 __initcall(am79c961_init);