mac89x0.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:20k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* mac89x0.c: A Crystal Semiconductor CS89[02]0 driver for linux. */
  2. /*
  3. Written 1996 by Russell Nelson, with reference to skeleton.c
  4. written 1993-1994 by Donald Becker.
  5. This software may be used and distributed according to the terms
  6. of the GNU General Public License, incorporated herein by reference.
  7. The author may be reached at nelson@crynwr.com, Crynwr
  8. Software, 11 Grant St., Potsdam, NY 13676
  9.   Changelog:
  10.   Mike Cruse        : mcruse@cti-ltd.com
  11.                     : Changes for Linux 2.0 compatibility. 
  12.                     : Added dev_id parameter in net_interrupt(),
  13.                     : request_irq() and free_irq(). Just NULL for now.
  14.   Mike Cruse        : Added MOD_INC_USE_COUNT and MOD_DEC_USE_COUNT macros
  15.                     : in net_open() and net_close() so kerneld would know
  16.                     : that the module is in use and wouldn't eject the 
  17.                     : driver prematurely.
  18.   Mike Cruse        : Rewrote init_module() and cleanup_module using 8390.c
  19.                     : as an example. Disabled autoprobing in init_module(),
  20.                     : not a good thing to do to other devices while Linux
  21.                     : is running from all accounts.
  22.                     
  23.   Alan Cox          : Removed 1.2 support, added 2.1 extra counters.
  24.   David Huggins-Daines <dhd@debian.org>
  25.   
  26.   Split this off into mac89x0.c, and gutted it of all parts which are
  27.   not relevant to the existing CS8900 cards on the Macintosh
  28.   (i.e. basically the Daynaport CS and LC cards).  To be precise:
  29.     * Removed all the media-detection stuff, because these cards are
  30.     TP-only.
  31.     * Lobotomized the ISA interrupt bogosity, because these cards use
  32.     a hardwired NuBus interrupt and a magic ISAIRQ value in the card.
  33.     * Basically eliminated everything not relevant to getting the
  34.     cards minimally functioning on the Macintosh.
  35.   I might add that these cards are badly designed even from the Mac
  36.   standpoint, in that Dayna, in their infinite wisdom, used NuBus slot
  37.   I/O space and NuBus interrupts for these cards, but neglected to
  38.   provide anything even remotely resembling a NuBus ROM.  Therefore we
  39.   have to probe for them in a brain-damaged ISA-like fashion.
  40.   Arnaldo Carvalho de Melo <acme@conectiva.com.br> - 11/01/2001
  41.   check kmalloc and release the allocated memory on failure in
  42.   mac89x0_probe and in init_module
  43.   use save_flags/restore_flags in net_get_stat, not just cli/sti
  44. */
  45. static char *version =
  46. "cs89x0.c:v1.02 11/26/96 Russell Nelson <nelson@crynwr.com>n";
  47. /* ======================= configure the driver here ======================= */
  48. /* use 0 for production, 1 for verification, >2 for debug */
  49. #ifndef NET_DEBUG
  50. #define NET_DEBUG 0
  51. #endif
  52. /* ======================= end of configuration ======================= */
  53. /* Always include 'config.h' first in case the user wants to turn on
  54.    or override something. */
  55. #include <linux/module.h>
  56. #define PRINTK(x) printk x
  57. /*
  58.   Sources:
  59. Crynwr packet driver epktisa.
  60. Crystal Semiconductor data sheets.
  61. */
  62. #include <linux/kernel.h>
  63. #include <linux/sched.h>
  64. #include <linux/types.h>
  65. #include <linux/fcntl.h>
  66. #include <linux/interrupt.h>
  67. #include <linux/ptrace.h>
  68. #include <linux/ioport.h>
  69. #include <linux/in.h>
  70. #include <linux/slab.h>
  71. #include <linux/string.h>
  72. #include <linux/nubus.h>
  73. #include <asm/system.h>
  74. #include <asm/bitops.h>
  75. #include <asm/io.h>
  76. #include <asm/hwtest.h>
  77. #include <asm/macints.h>
  78. #include <linux/errno.h>
  79. #include <linux/init.h>
  80. #include <linux/netdevice.h>
  81. #include <linux/etherdevice.h>
  82. #include <linux/skbuff.h>
  83. #include "cs89x0.h"
  84. static unsigned int net_debug = NET_DEBUG;
  85. /* Information that need to be kept for each board. */
  86. struct net_local {
  87. struct net_device_stats stats;
  88. int chip_type; /* one of: CS8900, CS8920, CS8920M */
  89. char chip_revision; /* revision letter of the chip ('A'...) */
  90. int send_cmd; /* the propercommand used to send a packet. */
  91. int rx_mode;
  92. int curr_rx_cfg;
  93.         int send_underrun;      /* keep track of how many underruns in a row we get */
  94. struct sk_buff *skb;
  95. };
  96. /* Index to functions, as function prototypes. */
  97. extern int mac89x0_probe(struct net_device *dev);
  98. #if 0
  99. extern void reset_chip(struct net_device *dev);
  100. #endif
  101. static int net_open(struct net_device *dev);
  102. static int net_send_packet(struct sk_buff *skb, struct net_device *dev);
  103. static void net_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  104. static void set_multicast_list(struct net_device *dev);
  105. static void net_rx(struct net_device *dev);
  106. static int net_close(struct net_device *dev);
  107. static struct net_device_stats *net_get_stats(struct net_device *dev);
  108. static int set_mac_address(struct net_device *dev, void *addr);
  109. /* Example routines you must write ;->. */
  110. #define tx_done(dev) 1
  111. /* For reading/writing registers ISA-style */
  112. static int inline
  113. readreg_io(struct net_device *dev, int portno)
  114. {
  115. nubus_writew(swab16(portno), dev->base_addr + ADD_PORT);
  116. return swab16(nubus_readw(dev->base_addr + DATA_PORT));
  117. }
  118. static void inline
  119. writereg_io(struct net_device *dev, int portno, int value)
  120. {
  121. nubus_writew(swab16(portno), dev->base_addr + ADD_PORT);
  122. nubus_writew(swab16(value), dev->base_addr + DATA_PORT);
  123. }
  124. /* These are for reading/writing registers in shared memory */
  125. static int inline
  126. readreg(struct net_device *dev, int portno)
  127. {
  128. return swab16(nubus_readw(dev->mem_start + portno));
  129. }
  130. static void inline
  131. writereg(struct net_device *dev, int portno, int value)
  132. {
  133. nubus_writew(swab16(value), dev->mem_start + portno);
  134. }
  135. /* Probe for the CS8900 card in slot E.  We won't bother looking
  136.    anywhere else until we have a really good reason to do so. */
  137. int __init mac89x0_probe(struct net_device *dev)
  138. {
  139. static int once_is_enough;
  140. struct net_local *lp;
  141. static unsigned version_printed;
  142. int i, slot;
  143. unsigned rev_type = 0;
  144. unsigned long ioaddr;
  145. unsigned short sig;
  146. SET_MODULE_OWNER(dev);
  147. if (once_is_enough)
  148. return -ENODEV;
  149. once_is_enough = 1;
  150. /* We might have to parameterize this later */
  151. slot = 0xE;
  152. /* Get out now if there's a real NuBus card in slot E */
  153. if (nubus_find_slot(slot, NULL) != NULL)
  154. return -ENODEV;
  155. /* The pseudo-ISA bits always live at offset 0x300 (gee,
  156.            wonder why...) */
  157. ioaddr = (unsigned long)
  158. nubus_slot_addr(slot) | (((slot&0xf) << 20) + DEFAULTIOBASE);
  159. {
  160. unsigned long flags;
  161. int card_present;
  162. save_flags(flags);
  163. cli();
  164. card_present = hwreg_present((void*) ioaddr+4)
  165.   && hwreg_present((void*) ioaddr + DATA_PORT);
  166. restore_flags(flags);
  167. if (!card_present)
  168. return -ENODEV;
  169. }
  170. nubus_writew(0, ioaddr + ADD_PORT);
  171. sig = nubus_readw(ioaddr + DATA_PORT);
  172. if (sig != swab16(CHIP_EISA_ID_SIG))
  173. return -ENODEV;
  174. /* Initialize the net_device structure. */
  175. if (dev->priv == NULL) {
  176. dev->priv = kmalloc(sizeof(struct net_local), GFP_KERNEL);
  177. if (!dev->priv)
  178. return -ENOMEM;
  179.                 memset(dev->priv, 0, sizeof(struct net_local));
  180.         }
  181. lp = (struct net_local *)dev->priv;
  182. /* Fill in the 'dev' fields. */
  183. dev->base_addr = ioaddr;
  184. dev->mem_start = (unsigned long) 
  185. nubus_slot_addr(slot) | (((slot&0xf) << 20) + MMIOBASE);
  186. dev->mem_end = dev->mem_start + 0x1000;
  187. /* Turn on shared memory */
  188. writereg_io(dev, PP_BusCTL, MEMORY_ON);
  189. /* get the chip type */
  190. rev_type = readreg(dev, PRODUCT_ID_ADD);
  191. lp->chip_type = rev_type &~ REVISON_BITS;
  192. lp->chip_revision = ((rev_type & REVISON_BITS) >> 8) + 'A';
  193. /* Check the chip type and revision in order to set the correct send command
  194. CS8920 revision C and CS8900 revision F can use the faster send. */
  195. lp->send_cmd = TX_AFTER_381;
  196. if (lp->chip_type == CS8900 && lp->chip_revision >= 'F')
  197. lp->send_cmd = TX_NOW;
  198. if (lp->chip_type != CS8900 && lp->chip_revision >= 'C')
  199. lp->send_cmd = TX_NOW;
  200. if (net_debug && version_printed++ == 0)
  201. printk(version);
  202. printk(KERN_INFO "%s: cs89%c0%s rev %c found at %#8lx",
  203.        dev->name,
  204.        lp->chip_type==CS8900?'0':'2',
  205.        lp->chip_type==CS8920M?"M":"",
  206.        lp->chip_revision,
  207.        dev->base_addr);
  208. /* Try to read the MAC address */
  209. if ((readreg(dev, PP_SelfST) & (EEPROM_PRESENT | EEPROM_OK)) == 0) {
  210. printk("nmac89x0: No EEPROM, giving up now.n");
  211. kfree(dev->priv);
  212. dev->priv = NULL;
  213. return -ENODEV;
  214.         } else {
  215.                 for (i = 0; i < ETH_ALEN; i += 2) {
  216. /* Big-endian (why??!) */
  217. unsigned short s = readreg(dev, PP_IA + i);
  218.                         dev->dev_addr[i] = s >> 8;
  219.                         dev->dev_addr[i+1] = s & 0xff;
  220.                 }
  221.         }
  222. dev->irq = SLOT2IRQ(slot);
  223. printk(" IRQ %d ADDR ", dev->irq);
  224. /* print the ethernet address. */
  225. for (i = 0; i < ETH_ALEN; i++)
  226. printk("%2.2x%s", dev->dev_addr[i],
  227.        ((i < ETH_ALEN-1) ? ":" : ""));
  228. dev->open = net_open;
  229. dev->stop = net_close;
  230. dev->hard_start_xmit = net_send_packet;
  231. dev->get_stats = net_get_stats;
  232. dev->set_multicast_list = &set_multicast_list;
  233. dev->set_mac_address = &set_mac_address;
  234. /* Fill in the fields of the net_device structure with ethernet values. */
  235. ether_setup(dev);
  236. printk("n");
  237. return 0;
  238. }
  239. #if 0
  240. /* This is useful for something, but I don't know what yet. */
  241. void __init reset_chip(struct net_device *dev)
  242. {
  243. int reset_start_time;
  244. writereg(dev, PP_SelfCTL, readreg(dev, PP_SelfCTL) | POWER_ON_RESET);
  245. /* wait 30 ms */
  246. current->state = TASK_INTERRUPTIBLE;
  247. schedule_timeout(30*HZ/1000);
  248. /* Wait until the chip is reset */
  249. reset_start_time = jiffies;
  250. while( (readreg(dev, PP_SelfST) & INIT_DONE) == 0 && jiffies - reset_start_time < 2)
  251. ;
  252. }
  253. #endif
  254. /* Open/initialize the board.  This is called (in the current kernel)
  255.    sometime after booting when the 'ifconfig' program is run.
  256.    This routine should set everything up anew at each open, even
  257.    registers that "should" only need to be set once at boot, so that
  258.    there is non-reboot way to recover if something goes wrong.
  259.    */
  260. static int
  261. net_open(struct net_device *dev)
  262. {
  263. struct net_local *lp = (struct net_local *)dev->priv;
  264. int i;
  265. /* Disable the interrupt for now */
  266. writereg(dev, PP_BusCTL, readreg(dev, PP_BusCTL) & ~ENABLE_IRQ);
  267. /* Grab the interrupt */
  268. if (request_irq(dev->irq, &net_interrupt, 0, "cs89x0", dev))
  269. return -EAGAIN;
  270. /* Set up the IRQ - Apparently magic */
  271. if (lp->chip_type == CS8900)
  272. writereg(dev, PP_CS8900_ISAINT, 0);
  273. else
  274. writereg(dev, PP_CS8920_ISAINT, 0);
  275. /* set the Ethernet address */
  276. for (i=0; i < ETH_ALEN/2; i++)
  277. writereg(dev, PP_IA+i*2, dev->dev_addr[i*2] | (dev->dev_addr[i*2+1] << 8));
  278. /* Turn on both receive and transmit operations */
  279. writereg(dev, PP_LineCTL, readreg(dev, PP_LineCTL) | SERIAL_RX_ON | SERIAL_TX_ON);
  280. /* Receive only error free packets addressed to this card */
  281. lp->rx_mode = 0;
  282. writereg(dev, PP_RxCTL, DEF_RX_ACCEPT);
  283. lp->curr_rx_cfg = RX_OK_ENBL | RX_CRC_ERROR_ENBL;
  284. writereg(dev, PP_RxCFG, lp->curr_rx_cfg);
  285. writereg(dev, PP_TxCFG, TX_LOST_CRS_ENBL | TX_SQE_ERROR_ENBL | TX_OK_ENBL |
  286.        TX_LATE_COL_ENBL | TX_JBR_ENBL | TX_ANY_COL_ENBL | TX_16_COL_ENBL);
  287. writereg(dev, PP_BufCFG, READY_FOR_TX_ENBL | RX_MISS_COUNT_OVRFLOW_ENBL |
  288.  TX_COL_COUNT_OVRFLOW_ENBL | TX_UNDERRUN_ENBL);
  289. /* now that we've got our act together, enable everything */
  290. writereg(dev, PP_BusCTL, readreg(dev, PP_BusCTL) | ENABLE_IRQ);
  291. netif_start_queue(dev);
  292. return 0;
  293. }
  294. static int
  295. net_send_packet(struct sk_buff *skb, struct net_device *dev)
  296. {
  297. if (dev->tbusy) {
  298. /* If we get here, some higher level has decided we are broken.
  299.    There should really be a "kick me" function call instead. */
  300. int tickssofar = jiffies - dev->trans_start;
  301. if (tickssofar < 5)
  302. return 1;
  303. if (net_debug > 0) printk("%s: transmit timed out, %s?n", dev->name,
  304.    tx_done(dev) ? "IRQ conflict" : "network cable problem");
  305. /* Try to restart the adaptor. */
  306. dev->tbusy=0;
  307. dev->trans_start = jiffies;
  308. }
  309. /* Block a timer-based transmit from overlapping.  This could better be
  310.    done with atomic_swap(1, dev->tbusy), but set_bit() works as well. */
  311. if (test_and_set_bit(0, (void*)&dev->tbusy) != 0)
  312. printk("%s: Transmitter access conflict.n", dev->name);
  313. else {
  314. struct net_local *lp = (struct net_local *)dev->priv;
  315. unsigned long flags;
  316. if (net_debug > 3)
  317. printk("%s: sent %d byte packet of type %xn",
  318.        dev->name, skb->len,
  319.        (skb->data[ETH_ALEN+ETH_ALEN] << 8)
  320.        | skb->data[ETH_ALEN+ETH_ALEN+1]);
  321. /* keep the upload from being interrupted, since we
  322.                    ask the chip to start transmitting before the
  323.                    whole packet has been completely uploaded. */
  324. save_flags(flags);
  325. cli();
  326. /* initiate a transmit sequence */
  327. writereg(dev, PP_TxCMD, lp->send_cmd);
  328. writereg(dev, PP_TxLength, skb->len);
  329. /* Test to see if the chip has allocated memory for the packet */
  330. if ((readreg(dev, PP_BusST) & READY_FOR_TX_NOW) == 0) {
  331. /* Gasp!  It hasn't.  But that shouldn't happen since
  332.    we're waiting for TxOk, so return 1 and requeue this packet. */
  333. restore_flags(flags);
  334. return 1;
  335. }
  336. /* Write the contents of the packet */
  337. memcpy_toio(dev->mem_start + PP_TxFrame, skb->data, skb->len+1);
  338. restore_flags(flags);
  339. dev->trans_start = jiffies;
  340. }
  341. dev_kfree_skb (skb);
  342. return 0;
  343. }
  344. /* The typical workload of the driver:
  345.    Handle the network interface interrupts. */
  346. static void net_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  347. {
  348. struct net_device *dev = dev_id;
  349. struct net_local *lp;
  350. int ioaddr, status;
  351. if (dev == NULL) {
  352. printk ("net_interrupt(): irq %d for unknown device.n", irq);
  353. return;
  354. }
  355. if (dev->interrupt)
  356. printk("%s: Re-entering the interrupt handler.n", dev->name);
  357. dev->interrupt = 1;
  358. ioaddr = dev->base_addr;
  359. lp = (struct net_local *)dev->priv;
  360. /* we MUST read all the events out of the ISQ, otherwise we'll never
  361.            get interrupted again.  As a consequence, we can't have any limit
  362.            on the number of times we loop in the interrupt handler.  The
  363.            hardware guarantees that eventually we'll run out of events.  Of
  364.            course, if you're on a slow machine, and packets are arriving
  365.            faster than you can read them off, you're screwed.  Hasta la
  366.            vista, baby!  */
  367. while ((status = swab16(nubus_readw(dev->base_addr + ISQ_PORT)))) {
  368. if (net_debug > 4)printk("%s: event=%04xn", dev->name, status);
  369. switch(status & ISQ_EVENT_MASK) {
  370. case ISQ_RECEIVER_EVENT:
  371. /* Got a packet(s). */
  372. net_rx(dev);
  373. break;
  374. case ISQ_TRANSMITTER_EVENT:
  375. lp->stats.tx_packets++;
  376. dev->tbusy = 0;
  377. mark_bh(NET_BH); /* Inform upper layers. */
  378. if ((status & TX_OK) == 0) lp->stats.tx_errors++;
  379. if (status & TX_LOST_CRS) lp->stats.tx_carrier_errors++;
  380. if (status & TX_SQE_ERROR) lp->stats.tx_heartbeat_errors++;
  381. if (status & TX_LATE_COL) lp->stats.tx_window_errors++;
  382. if (status & TX_16_COL) lp->stats.tx_aborted_errors++;
  383. break;
  384. case ISQ_BUFFER_EVENT:
  385. if (status & READY_FOR_TX) {
  386. /* we tried to transmit a packet earlier,
  387.                                    but inexplicably ran out of buffers.
  388.                                    That shouldn't happen since we only ever
  389.                                    load one packet.  Shrug.  Do the right
  390.                                    thing anyway. */
  391. dev->tbusy = 0;
  392. mark_bh(NET_BH); /* Inform upper layers. */
  393. }
  394. if (status & TX_UNDERRUN) {
  395. if (net_debug > 0) printk("%s: transmit underrunn", dev->name);
  396.                                 lp->send_underrun++;
  397.                                 if (lp->send_underrun == 3) lp->send_cmd = TX_AFTER_381;
  398.                                 else if (lp->send_underrun == 6) lp->send_cmd = TX_AFTER_ALL;
  399.                         }
  400. break;
  401. case ISQ_RX_MISS_EVENT:
  402. lp->stats.rx_missed_errors += (status >>6);
  403. break;
  404. case ISQ_TX_COL_EVENT:
  405. lp->stats.collisions += (status >>6);
  406. break;
  407. }
  408. }
  409. dev->interrupt = 0;
  410. return;
  411. }
  412. /* We have a good packet(s), get it/them out of the buffers. */
  413. static void
  414. net_rx(struct net_device *dev)
  415. {
  416. struct net_local *lp = (struct net_local *)dev->priv;
  417. struct sk_buff *skb;
  418. int status, length;
  419. status = readreg(dev, PP_RxStatus);
  420. if ((status & RX_OK) == 0) {
  421. lp->stats.rx_errors++;
  422. if (status & RX_RUNT) lp->stats.rx_length_errors++;
  423. if (status & RX_EXTRA_DATA) lp->stats.rx_length_errors++;
  424. if (status & RX_CRC_ERROR) if (!(status & (RX_EXTRA_DATA|RX_RUNT)))
  425. /* per str 172 */
  426. lp->stats.rx_crc_errors++;
  427. if (status & RX_DRIBBLE) lp->stats.rx_frame_errors++;
  428. return;
  429. }
  430. length = readreg(dev, PP_RxLength);
  431. /* Malloc up new buffer. */
  432. skb = alloc_skb(length, GFP_ATOMIC);
  433. if (skb == NULL) {
  434. printk("%s: Memory squeeze, dropping packet.n", dev->name);
  435. lp->stats.rx_dropped++;
  436. return;
  437. }
  438. skb_put(skb, length);
  439. skb->dev = dev;
  440. memcpy_fromio(skb->data, dev->mem_start + PP_RxFrame, length);
  441. if (net_debug > 3)printk("%s: received %d byte packet of type %xn",
  442.                                  dev->name, length,
  443.                                  (skb->data[ETH_ALEN+ETH_ALEN] << 8)
  444.  | skb->data[ETH_ALEN+ETH_ALEN+1]);
  445.         skb->protocol=eth_type_trans(skb,dev);
  446. netif_rx(skb);
  447. dev->last_rx = jiffies;
  448. lp->stats.rx_packets++;
  449. lp->stats.rx_bytes += length;
  450. }
  451. /* The inverse routine to net_open(). */
  452. static int
  453. net_close(struct net_device *dev)
  454. {
  455. writereg(dev, PP_RxCFG, 0);
  456. writereg(dev, PP_TxCFG, 0);
  457. writereg(dev, PP_BufCFG, 0);
  458. writereg(dev, PP_BusCTL, 0);
  459. netif_stop_queue(dev);
  460. free_irq(dev->irq, dev);
  461. /* Update the statistics here. */
  462. return 0;
  463. }
  464. /* Get the current statistics. This may be called with the card open or
  465.    closed. */
  466. static struct net_device_stats *
  467. net_get_stats(struct net_device *dev)
  468. {
  469. struct net_local *lp = (struct net_local *)dev->priv;
  470. unsigned long flags;
  471. save_flags(flags);
  472. cli();
  473. /* Update the statistics from the device registers. */
  474. lp->stats.rx_missed_errors += (readreg(dev, PP_RxMiss) >> 6);
  475. lp->stats.collisions += (readreg(dev, PP_TxCol) >> 6);
  476. restore_flags(flags);
  477. return &lp->stats;
  478. }
  479. static void set_multicast_list(struct net_device *dev)
  480. {
  481. struct net_local *lp = (struct net_local *)dev->priv;
  482. if(dev->flags&IFF_PROMISC)
  483. {
  484. lp->rx_mode = RX_ALL_ACCEPT;
  485. }
  486. else if((dev->flags&IFF_ALLMULTI)||dev->mc_list)
  487. {
  488. /* The multicast-accept list is initialized to accept-all, and we
  489.    rely on higher-level filtering for now. */
  490. lp->rx_mode = RX_MULTCAST_ACCEPT;
  491. else
  492. lp->rx_mode = 0;
  493. writereg(dev, PP_RxCTL, DEF_RX_ACCEPT | lp->rx_mode);
  494. /* in promiscuous mode, we accept errored packets, so we have to enable interrupts on them also */
  495. writereg(dev, PP_RxCFG, lp->curr_rx_cfg |
  496.      (lp->rx_mode == RX_ALL_ACCEPT? (RX_CRC_ERROR_ENBL|RX_RUNT_ENBL|RX_EXTRA_DATA_ENBL) : 0));
  497. }
  498. static int set_mac_address(struct net_device *dev, void *addr)
  499. {
  500. int i;
  501. if (dev->start)
  502. return -EBUSY;
  503. printk("%s: Setting MAC address to ", dev->name);
  504. for (i = 0; i < 6; i++)
  505. printk(" %2.2x", dev->dev_addr[i] = ((unsigned char *)addr)[i]);
  506. printk(".n");
  507. /* set the Ethernet address */
  508. for (i=0; i < ETH_ALEN/2; i++)
  509. writereg(dev, PP_IA+i*2, dev->dev_addr[i*2] | (dev->dev_addr[i*2+1] << 8));
  510. return 0;
  511. }
  512. #ifdef MODULE
  513. static struct net_device dev_cs89x0;
  514. static int debug;
  515. MODULE_PARM(debug, "i");
  516. MODULE_PARM_DESC(debug, "CS89[02]0 debug level (0-5)");
  517. MODULE_LICENSE("GPL");
  518. EXPORT_NO_SYMBOLS;
  519. int
  520. init_module(void)
  521. {
  522. net_debug = debug;
  523.         dev_cs89x0.init = mac89x0_probe;
  524.         dev_cs89x0.priv = kmalloc(sizeof(struct net_local), GFP_KERNEL);
  525. if (!dev_cs89x0.priv)
  526. return -ENOMEM;
  527. memset(dev_cs89x0.priv, 0, sizeof(struct net_local));
  528.         if (register_netdev(&dev_cs89x0) != 0) {
  529.                 printk(KERN_WARNING "mac89x0.c: No card foundn");
  530. kfree(dev_cs89x0.priv);
  531.                 return -ENXIO;
  532.         }
  533. return 0;
  534. }
  535. void
  536. cleanup_module(void)
  537. {
  538. #endif
  539. #ifdef MODULE
  540. nubus_writew(0, dev_cs89x0.base_addr + ADD_PORT);
  541. #endif
  542. #ifdef MODULE
  543.         if (dev_cs89x0.priv != NULL) {
  544.                 /* Free up the private structure, or leak memory :-)  */
  545.                 unregister_netdev(&dev_cs89x0);
  546.                 kfree(dev_cs89x0.priv);
  547.                 dev_cs89x0.priv = NULL; /* gets re-allocated by cs89x0_probe1 */
  548.         }
  549. }
  550. #endif /* MODULE */
  551. /*
  552.  * Local variables:
  553.  *  compile-command: "m68k-linux-gcc -D__KERNEL__ -I../../include -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -pipe -fno-strength-reduce -ffixed-a2 -DMODULE -DMODVERSIONS -include ../../include/linux/modversions.h   -c -o mac89x0.o mac89x0.c"
  554.  *  version-control: t
  555.  *  kept-new-versions: 5
  556.  *  c-indent-level: 8
  557.  *  tab-width: 8
  558.  * End:
  559.  *
  560.  */