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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * macsonic.c
  3.  *
  4.  * (C) 1998 Alan Cox
  5.  *
  6.  * Debugging Andreas Ehliar, Michael Schmitz
  7.  *
  8.  * Based on code
  9.  * (C) 1996 by Thomas Bogendoerfer (tsbogend@bigbug.franken.de)
  10.  * 
  11.  * This driver is based on work from Andreas Busse, but most of
  12.  * the code is rewritten.
  13.  * 
  14.  * (C) 1995 by Andreas Busse (andy@waldorf-gmbh.de)
  15.  *
  16.  * A driver for the Mac onboard Sonic ethernet chip.
  17.  *
  18.  * 98/12/21 MSch: judged from tests on Q800, it's basically working, 
  19.  *   but eating up both receive and transmit resources
  20.  *   and duplicating packets. Needs more testing.
  21.  *
  22.  * 99/01/03 MSch: upgraded to version 0.92 of the core driver, fixed.
  23.  * 
  24.  * 00/10/31 sammy@sammy.net: Updated driver for 2.4 kernels, fixed problems
  25.  *          on centris.
  26.  */
  27. #include <linux/kernel.h>
  28. #include <linux/sched.h>
  29. #include <linux/types.h>
  30. #include <linux/ctype.h>
  31. #include <linux/fcntl.h>
  32. #include <linux/interrupt.h>
  33. #include <linux/ptrace.h>
  34. #include <linux/init.h>
  35. #include <linux/ioport.h>
  36. #include <linux/in.h>
  37. #include <linux/slab.h>
  38. #include <linux/string.h>
  39. #include <linux/delay.h>
  40. #include <linux/nubus.h>
  41. #include <asm/bootinfo.h>
  42. #include <asm/system.h>
  43. #include <asm/bitops.h>
  44. #include <asm/pgtable.h>
  45. #include <asm/segment.h>
  46. #include <asm/io.h>
  47. #include <asm/hwtest.h>
  48. #include <asm/dma.h>
  49. #include <asm/macintosh.h>
  50. #include <asm/macints.h>
  51. #include <asm/mac_via.h>
  52. #include <asm/pgalloc.h>
  53. #include <linux/errno.h>
  54. #include <linux/netdevice.h>
  55. #include <linux/etherdevice.h>
  56. #include <linux/skbuff.h>
  57. #include <linux/module.h>
  58. #define SREGS_PAD(n)    u16 n;
  59. #include "sonic.h"
  60. #define SONIC_READ(reg) 
  61. nubus_readl(base_addr+(reg))
  62. #define SONIC_WRITE(reg,val) 
  63. nubus_writel((val), base_addr+(reg))
  64. #define sonic_read(dev, reg) 
  65. nubus_readl((dev)->base_addr+(reg))
  66. #define sonic_write(dev, reg, val) 
  67. nubus_writel((val), (dev)->base_addr+(reg))
  68. static int sonic_debug;
  69. static int sonic_version_printed;
  70. static int reg_offset;
  71. extern int macsonic_probe(struct net_device* dev);
  72. extern int mac_onboard_sonic_probe(struct net_device* dev);
  73. extern int mac_nubus_sonic_probe(struct net_device* dev);
  74. /* For onboard SONIC */
  75. #define ONBOARD_SONIC_REGISTERS 0x50F0A000
  76. #define ONBOARD_SONIC_PROM_BASE 0x50f08000
  77. enum macsonic_type {
  78. MACSONIC_DUODOCK,
  79. MACSONIC_APPLE,
  80. MACSONIC_APPLE16,
  81. MACSONIC_DAYNA,
  82. MACSONIC_DAYNALINK
  83. };
  84. /* For the built-in SONIC in the Duo Dock */
  85. #define DUODOCK_SONIC_REGISTERS 0xe10000
  86. #define DUODOCK_SONIC_PROM_BASE 0xe12000
  87. /* For Apple-style NuBus SONIC */
  88. #define APPLE_SONIC_REGISTERS 0
  89. #define APPLE_SONIC_PROM_BASE 0x40000
  90. /* Daynalink LC SONIC */
  91. #define DAYNALINK_PROM_BASE 0x400000
  92. /* For Dayna-style NuBus SONIC (haven't seen one yet) */
  93. #define DAYNA_SONIC_REGISTERS   0x180000
  94. /* This is what OpenBSD says.  However, this is definitely in NuBus
  95.    ROM space so we should be able to get it by walking the NuBus
  96.    resource directories */
  97. #define DAYNA_SONIC_MAC_ADDR 0xffe004
  98. #define SONIC_READ_PROM(addr) nubus_readb(prom_addr+addr)
  99. int __init macsonic_probe(struct net_device* dev)
  100. {
  101. int rv;
  102. /* This will catch fatal stuff like -ENOMEM as well as success */
  103. if ((rv = mac_onboard_sonic_probe(dev)) != -ENODEV)
  104. return rv;
  105. return mac_nubus_sonic_probe(dev);
  106. }
  107. /*
  108.  * For reversing the PROM address
  109.  */
  110. static unsigned char nibbletab[] = {0, 8, 4, 12, 2, 10, 6, 14,
  111.     1, 9, 5, 13, 3, 11, 7, 15};
  112. static inline void bit_reverse_addr(unsigned char addr[6])
  113. {
  114. int i;
  115. for(i = 0; i < 6; i++)
  116. addr[i] = ((nibbletab[addr[i] & 0xf] << 4) | 
  117.    nibbletab[(addr[i] >> 4) &0xf]);
  118. }
  119. int __init macsonic_init(struct net_device* dev)
  120. {
  121. struct sonic_local* lp;
  122. int i;
  123. /* Allocate the entire chunk of memory for the descriptors.
  124.            Note that this cannot cross a 64K boundary. */
  125. for (i = 0; i < 20; i++) {
  126. unsigned long desc_base, desc_top;
  127. if((lp = kmalloc(sizeof(struct sonic_local), GFP_KERNEL | GFP_DMA)) == NULL) {
  128. printk(KERN_ERR "%s: couldn't allocate descriptor buffersn", dev->name);
  129. return -ENOMEM;
  130. }
  131. desc_base = (unsigned long) lp;
  132. desc_top = desc_base + sizeof(struct sonic_local);
  133. if ((desc_top & 0xffff) >= (desc_base & 0xffff))
  134. break;
  135. /* Hmm. try again (FIXME: does this actually work?) */
  136. kfree(lp);
  137. printk(KERN_DEBUG
  138.        "%s: didn't get continguous chunk [%08lx - %08lx], trying againn",
  139.        dev->name, desc_base, desc_top);
  140. }
  141. if (lp == NULL) {
  142. printk(KERN_ERR "%s: tried 20 times to allocate descriptor buffers, giving up.n",
  143.        dev->name);
  144. return -ENOMEM;
  145. }        
  146. dev->priv = lp;
  147. #if 0
  148. /* this code is only here as a curiousity...   mainly, where the 
  149.    fuck did SONIC_BUS_SCALE come from, and what was it supposed
  150.    to do?  the normal allocation works great for 32 bit stuffs..  */
  151. /* Now set up the pointers to point to the appropriate places */
  152. lp->cda = lp->sonic_desc;
  153. lp->tda = lp->cda + (SIZEOF_SONIC_CDA * SONIC_BUS_SCALE(lp->dma_bitmode));
  154. lp->rda = lp->tda + (SIZEOF_SONIC_TD * SONIC_NUM_TDS
  155.      * SONIC_BUS_SCALE(lp->dma_bitmode));
  156. lp->rra = lp->rda + (SIZEOF_SONIC_RD * SONIC_NUM_RDS
  157.      * SONIC_BUS_SCALE(lp->dma_bitmode));
  158. #endif
  159. memset(lp, 0, sizeof(struct sonic_local));
  160. lp->cda_laddr = (unsigned int)&(lp->cda);
  161. lp->tda_laddr = (unsigned int)lp->tda;
  162. lp->rra_laddr = (unsigned int)lp->rra;
  163. lp->rda_laddr = (unsigned int)lp->rda;
  164. /* FIXME, maybe we should use skbs */
  165. if ((lp->rba = (char *)
  166.      kmalloc(SONIC_NUM_RRS * SONIC_RBSIZE, GFP_KERNEL | GFP_DMA)) == NULL) {
  167. printk(KERN_ERR "%s: couldn't allocate receive buffersn", dev->name);
  168. return -ENOMEM;
  169. }
  170. lp->rba_laddr = (unsigned int)lp->rba;
  171. {
  172. int rs, ds;
  173. /* almost always 12*4096, but let's not take chances */
  174. rs = ((SONIC_NUM_RRS * SONIC_RBSIZE + 4095) / 4096) * 4096;
  175. /* almost always under a page, but let's not take chances */
  176. ds = ((sizeof(struct sonic_local) + 4095) / 4096) * 4096;
  177. kernel_set_cachemode(lp->rba, rs, IOMAP_NOCACHE_SER);
  178. kernel_set_cachemode(lp, ds, IOMAP_NOCACHE_SER);
  179. }
  180. #if 0
  181. flush_cache_all();
  182. #endif
  183. dev->open = sonic_open;
  184. dev->stop = sonic_close;
  185. dev->hard_start_xmit = sonic_send_packet;
  186. dev->get_stats = sonic_get_stats;
  187. dev->set_multicast_list = &sonic_multicast_list;
  188. /*
  189.  * clear tally counter
  190.  */
  191. sonic_write(dev, SONIC_CRCT, 0xffff);
  192. sonic_write(dev, SONIC_FAET, 0xffff);
  193. sonic_write(dev, SONIC_MPT, 0xffff);
  194. /* Fill in the fields of the device structure with ethernet values. */
  195. ether_setup(dev);
  196. return 0;
  197. }
  198. int __init mac_onboard_sonic_ethernet_addr(struct net_device* dev)
  199. {
  200. const int prom_addr = ONBOARD_SONIC_PROM_BASE;
  201. int i;
  202. /* On NuBus boards we can sometimes look in the ROM resources.
  203.    No such luck for comm-slot/onboard. */
  204. for(i = 0; i < 6; i++)
  205. dev->dev_addr[i] = SONIC_READ_PROM(i);
  206. /* Most of the time, the address is bit-reversed.  The NetBSD
  207.    source has a rather long and detailed historical account of
  208.    why this is so. */
  209. if (memcmp(dev->dev_addr, "x08x00x07", 3) &&
  210.     memcmp(dev->dev_addr, "x00xA0x40", 3) &&
  211.     memcmp(dev->dev_addr, "x00x05x02", 3))
  212. bit_reverse_addr(dev->dev_addr);
  213. else
  214. return 0;
  215. /* If we still have what seems to be a bogus address, we'll
  216.            look in the CAM.  The top entry should be ours. */
  217. /* Danger! This only works if MacOS has already initialized
  218.            the card... */
  219. if (memcmp(dev->dev_addr, "x08x00x07", 3) &&
  220.     memcmp(dev->dev_addr, "x00xA0x40", 3) &&
  221.     memcmp(dev->dev_addr, "x00x05x02", 3))
  222. {
  223. unsigned short val;
  224. printk(KERN_INFO "macsonic: PROM seems to be wrong, trying CAM entry 15n");
  225. sonic_write(dev, SONIC_CMD, SONIC_CR_RST);
  226. sonic_write(dev, SONIC_CEP, 15);
  227. val = sonic_read(dev, SONIC_CAP2);
  228. dev->dev_addr[5] = val >> 8;
  229. dev->dev_addr[4] = val & 0xff;
  230. val = sonic_read(dev, SONIC_CAP1);
  231. dev->dev_addr[3] = val >> 8;
  232. dev->dev_addr[2] = val & 0xff;
  233. val = sonic_read(dev, SONIC_CAP0);
  234. dev->dev_addr[1] = val >> 8;
  235. dev->dev_addr[0] = val & 0xff;
  236. printk(KERN_INFO "HW Address from CAM 15: ");
  237. for (i = 0; i < 6; i++) {
  238. printk("%2.2x", dev->dev_addr[i]);
  239. if (i < 5)
  240. printk(":");
  241. }
  242. printk("n");
  243. } else return 0;
  244. if (memcmp(dev->dev_addr, "x08x00x07", 3) &&
  245.     memcmp(dev->dev_addr, "x00xA0x40", 3) &&
  246.     memcmp(dev->dev_addr, "x00x05x02", 3))
  247. {
  248. /*
  249.  * Still nonsense ... messed up someplace!
  250.  */
  251. printk(KERN_ERR "macsonic: ERROR (INVALID MAC)n");
  252. return -EIO;
  253. } else return 0;
  254. }
  255. int __init mac_onboard_sonic_probe(struct net_device* dev)
  256. {
  257. /* Bwahahaha */
  258. static int once_is_more_than_enough;
  259. int i;
  260. int dma_bitmode;
  261. if (once_is_more_than_enough)
  262. return -ENODEV;
  263. once_is_more_than_enough = 1;
  264. if (!MACH_IS_MAC)
  265. return -ENODEV;
  266. printk(KERN_INFO "Checking for internal Macintosh ethernet (SONIC).. ");
  267. if (macintosh_config->ether_type != MAC_ETHER_SONIC)
  268. {
  269. printk("none.n");
  270. return -ENODEV;
  271. }
  272. /* Bogus probing, on the models which may or may not have
  273.    Ethernet (BTW, the Ethernet *is* always at the same
  274.    address, and nothing else lives there, at least if Apple's
  275.    documentation is to be believed) */
  276. if (macintosh_config->ident == MAC_MODEL_Q630 ||
  277.     macintosh_config->ident == MAC_MODEL_P588 ||
  278.     macintosh_config->ident == MAC_MODEL_C610) {
  279. unsigned long flags;
  280. int card_present;
  281. save_flags(flags);
  282. cli();
  283. card_present = hwreg_present((void*)ONBOARD_SONIC_REGISTERS);
  284. restore_flags(flags);
  285. if (!card_present) {
  286. printk("none.n");
  287. return -ENODEV;
  288. }
  289. }
  290. printk("yesn");
  291. if (dev) {
  292. dev = init_etherdev(dev, sizeof(struct sonic_local));
  293. if (!dev)
  294. return -ENOMEM;
  295. /* methinks this will always be true but better safe than sorry */
  296. if (dev->priv == NULL) {
  297. dev->priv = kmalloc(sizeof(struct sonic_local), GFP_KERNEL);
  298. if (!dev->priv)
  299. return -ENOMEM;
  300. }
  301. } else {
  302. dev = init_etherdev(NULL, sizeof(struct sonic_local));
  303. }
  304. if (dev == NULL)
  305. return -ENOMEM;
  306. if(dev->priv) {
  307. printk("%s: warning! sonic entering with priv already allocated!n",
  308.        dev->name);
  309. printk("%s: discarding, will attempt to reallocaten", dev->name);
  310. dev->priv = NULL;
  311. }
  312. /* Danger!  My arms are flailing wildly!  You *must* set this
  313.            before using sonic_read() */
  314. dev->base_addr = ONBOARD_SONIC_REGISTERS;
  315. if (via_alt_mapping)
  316. dev->irq = IRQ_AUTO_3;
  317. else
  318. dev->irq = IRQ_NUBUS_9;
  319. if (!sonic_version_printed) {
  320. printk(KERN_INFO "%s", version);
  321. sonic_version_printed = 1;
  322. }
  323. printk(KERN_INFO "%s: onboard / comm-slot SONIC at 0x%08lxn",
  324.        dev->name, dev->base_addr);
  325. /* Now do a song and dance routine in an attempt to determine
  326.            the bus width */
  327. /* The PowerBook's SONIC is 16 bit always. */
  328. if (macintosh_config->ident == MAC_MODEL_PB520) {
  329. reg_offset = 0;
  330. dma_bitmode = 0;
  331. } else if (macintosh_config->ident == MAC_MODEL_C610) {
  332. reg_offset = 0;
  333. dma_bitmode = 1;
  334. } else {
  335. /* Some of the comm-slot cards are 16 bit.  But some
  336.                    of them are not.  The 32-bit cards use offset 2 and
  337.                    pad with zeroes or sometimes ones (I think...)
  338.                    Therefore, if we try offset 0 and get a silicon
  339.                    revision of 0, we assume 16 bit. */
  340. int sr;
  341. /* Technically this is not necessary since we zeroed
  342.                    it above */
  343. reg_offset = 0;
  344. dma_bitmode = 0;
  345. sr = sonic_read(dev, SONIC_SR);
  346. if (sr == 0 || sr == 0xffff) {
  347. reg_offset = 2;
  348. /* 83932 is 0x0004, 83934 is 0x0100 or 0x0101 */
  349. sr = sonic_read(dev, SONIC_SR);
  350. dma_bitmode = 1;
  351. }
  352. printk(KERN_INFO
  353.        "%s: revision 0x%04x, using %d bit DMA and register offset %dn",
  354.        dev->name, sr, dma_bitmode?32:16, reg_offset);
  355. }
  356. /* this carries my sincere apologies -- by the time I got to updating
  357.    the driver, support for "reg_offsets" appeares nowhere in the sonic
  358.    code, going back for over a year.  Fortunately, my Mac does't seem
  359.    to use whatever this was.
  360.    If you know how this is supposed to be implemented, either fix it,
  361.    or contact me (sammy@sammy.net) to explain what it is. --Sam */
  362.    
  363. if(reg_offset) {
  364. printk("%s: register offset unsupported.  please fix this if you know what it is.n", dev->name);
  365. return -ENODEV;
  366. }
  367. /* Software reset, then initialize control registers. */
  368. sonic_write(dev, SONIC_CMD, SONIC_CR_RST);
  369. sonic_write(dev, SONIC_DCR, SONIC_DCR_BMS |
  370.     SONIC_DCR_RFT1 | SONIC_DCR_TFT0 | SONIC_DCR_EXBUS |
  371.     (dma_bitmode ? SONIC_DCR_DW : 0));
  372. /* This *must* be written back to in order to restore the
  373.            extended programmable output bits */
  374. sonic_write(dev, SONIC_DCR2, 0);
  375. /* Clear *and* disable interrupts to be on the safe side */
  376. sonic_write(dev, SONIC_ISR,0x7fff);
  377. sonic_write(dev, SONIC_IMR,0);
  378. /* Now look for the MAC address. */
  379. if (mac_onboard_sonic_ethernet_addr(dev) != 0)
  380. return -ENODEV;
  381. printk(KERN_INFO "MAC ");
  382. for (i = 0; i < 6; i++) {
  383. printk("%2.2x", dev->dev_addr[i]);
  384. if (i < 5)
  385. printk(":");
  386. }
  387. printk(" IRQ %dn", dev->irq);
  388. /* Shared init code */
  389. return macsonic_init(dev);
  390. }
  391. int __init mac_nubus_sonic_ethernet_addr(struct net_device* dev,
  392.  unsigned long prom_addr,
  393.  int id)
  394. {
  395. int i;
  396. for(i = 0; i < 6; i++)
  397. dev->dev_addr[i] = SONIC_READ_PROM(i);
  398. /* For now we are going to assume that they're all bit-reversed */
  399. bit_reverse_addr(dev->dev_addr);
  400. return 0;
  401. }
  402. int __init macsonic_ident(struct nubus_dev* ndev)
  403. {
  404. if (ndev->dr_hw == NUBUS_DRHW_ASANTE_LC && 
  405.     ndev->dr_sw == NUBUS_DRSW_SONIC_LC)
  406. return MACSONIC_DAYNALINK;
  407. if (ndev->dr_hw == NUBUS_DRHW_SONIC &&
  408.     ndev->dr_sw == NUBUS_DRSW_APPLE) {
  409. /* There has to be a better way to do this... */
  410. if (strstr(ndev->board->name, "DuoDock"))
  411. return MACSONIC_DUODOCK;
  412. else
  413. return MACSONIC_APPLE;
  414. }
  415. return -1;
  416. }
  417. int __init mac_nubus_sonic_probe(struct net_device* dev)
  418. {
  419. static int slots;
  420. struct nubus_dev* ndev = NULL;
  421. struct sonic_local* lp;
  422. unsigned long base_addr, prom_addr;
  423. u16 sonic_dcr;
  424. int id;
  425. int i;
  426. int dma_bitmode;
  427. /* Find the first SONIC that hasn't been initialized already */
  428. while ((ndev = nubus_find_type(NUBUS_CAT_NETWORK,
  429.        NUBUS_TYPE_ETHERNET, ndev)) != NULL)
  430. {
  431. /* Have we seen it already? */
  432. if (slots & (1<<ndev->board->slot))
  433. continue;
  434. slots |= 1<<ndev->board->slot;
  435. /* Is it one of ours? */
  436. if ((id = macsonic_ident(ndev)) != -1)
  437. break;
  438. }
  439. if (ndev == NULL)
  440. return -ENODEV;
  441. switch (id) {
  442. case MACSONIC_DUODOCK:
  443. base_addr = ndev->board->slot_addr + DUODOCK_SONIC_REGISTERS;
  444. prom_addr = ndev->board->slot_addr + DUODOCK_SONIC_PROM_BASE;
  445. sonic_dcr = SONIC_DCR_EXBUS | SONIC_DCR_RFT0 | SONIC_DCR_RFT1
  446. | SONIC_DCR_TFT0;
  447. reg_offset = 2;
  448. dma_bitmode = 1;
  449. break;
  450. case MACSONIC_APPLE:
  451. base_addr = ndev->board->slot_addr + APPLE_SONIC_REGISTERS;
  452. prom_addr = ndev->board->slot_addr + APPLE_SONIC_PROM_BASE;
  453. sonic_dcr = SONIC_DCR_BMS | SONIC_DCR_RFT1 | SONIC_DCR_TFT0;
  454. reg_offset = 0;
  455. dma_bitmode = 1;
  456. break;
  457. case MACSONIC_APPLE16:
  458. base_addr = ndev->board->slot_addr + APPLE_SONIC_REGISTERS;
  459. prom_addr = ndev->board->slot_addr + APPLE_SONIC_PROM_BASE;
  460. sonic_dcr = SONIC_DCR_EXBUS
  461.   | SONIC_DCR_RFT1 | SONIC_DCR_TFT0
  462. | SONIC_DCR_PO1 | SONIC_DCR_BMS; 
  463. reg_offset = 0;
  464. dma_bitmode = 0;
  465. break;
  466. case MACSONIC_DAYNALINK:
  467. base_addr = ndev->board->slot_addr + APPLE_SONIC_REGISTERS;
  468. prom_addr = ndev->board->slot_addr + DAYNALINK_PROM_BASE;
  469. sonic_dcr = SONIC_DCR_RFT1 | SONIC_DCR_TFT0
  470. | SONIC_DCR_PO1 | SONIC_DCR_BMS; 
  471. reg_offset = 0;
  472. dma_bitmode = 0;
  473. break;
  474. case MACSONIC_DAYNA:
  475. base_addr = ndev->board->slot_addr + DAYNA_SONIC_REGISTERS;
  476. prom_addr = ndev->board->slot_addr + DAYNA_SONIC_MAC_ADDR;
  477. sonic_dcr = SONIC_DCR_BMS
  478. | SONIC_DCR_RFT1 | SONIC_DCR_TFT0 | SONIC_DCR_PO1;
  479. reg_offset = 0;
  480. dma_bitmode = 0;
  481. break;
  482. default:
  483. printk(KERN_ERR "macsonic: WTF, id is %dn", id);
  484. return -ENODEV;
  485. }
  486. if (dev) {
  487. dev = init_etherdev(dev, sizeof(struct sonic_local));
  488. if (!dev)
  489. return -ENOMEM;
  490. /* methinks this will always be true but better safe than sorry */
  491. if (dev->priv == NULL) {
  492. dev->priv = kmalloc(sizeof(struct sonic_local), GFP_KERNEL);
  493. if (!dev->priv) /* FIXME: kfree dev if necessary */
  494. return -ENOMEM;
  495. }
  496. } else {
  497. dev = init_etherdev(NULL, sizeof(struct sonic_local));
  498. }
  499. if (dev == NULL)
  500. return -ENOMEM;
  501. lp = (struct sonic_local*) dev->priv;
  502. memset(lp, 0, sizeof(struct sonic_local));
  503. /* Danger!  My arms are flailing wildly!  You *must* set this
  504.            before using sonic_read() */
  505. dev->base_addr = base_addr;
  506. dev->irq = SLOT2IRQ(ndev->board->slot);
  507. if (!sonic_version_printed) {
  508. printk(KERN_INFO "%s", version);
  509. sonic_version_printed = 1;
  510. }
  511. printk(KERN_INFO "%s: %s in slot %Xn",
  512.        dev->name, ndev->board->name, ndev->board->slot);
  513. printk(KERN_INFO "%s: revision 0x%04x, using %d bit DMA and register offset %dn",
  514.        dev->name, sonic_read(dev, SONIC_SR), dma_bitmode?32:16, reg_offset);
  515. if(reg_offset) {
  516. printk("%s: register offset unsupported.  please fix this if you know what it is.n", dev->name);
  517. return -ENODEV;
  518. }
  519. /* Software reset, then initialize control registers. */
  520. sonic_write(dev, SONIC_CMD, SONIC_CR_RST);
  521. sonic_write(dev, SONIC_DCR, sonic_dcr
  522.     | (dma_bitmode ? SONIC_DCR_DW : 0));
  523. /* Clear *and* disable interrupts to be on the safe side */
  524. sonic_write(dev, SONIC_ISR,0x7fff);
  525. sonic_write(dev, SONIC_IMR,0);
  526. /* Now look for the MAC address. */
  527. if (mac_nubus_sonic_ethernet_addr(dev, prom_addr, id) != 0)
  528. return -ENODEV;
  529. printk(KERN_INFO "MAC ");
  530. for (i = 0; i < 6; i++) {
  531. printk("%2.2x", dev->dev_addr[i]);
  532. if (i < 5)
  533. printk(":");
  534. }
  535. printk(" IRQ %dn", dev->irq);
  536. /* Shared init code */
  537. return macsonic_init(dev);
  538. }
  539. #ifdef MODULE
  540. static char namespace[16] = "";
  541. static struct net_device dev_macsonic;
  542. MODULE_PARM(sonic_debug, "i");
  543. MODULE_PARM_DESC(sonic_debug, "macsonic debug level (1-4)");
  544. MODULE_LICENSE("GPL");
  545. EXPORT_NO_SYMBOLS;
  546. int
  547. init_module(void)
  548. {
  549.         dev_macsonic.name = namespace;
  550.         dev_macsonic.init = macsonic_probe;
  551.         if (register_netdev(&dev_macsonic) != 0) {
  552.                 printk(KERN_WARNING "macsonic.c: No card foundn");
  553.                 return -ENXIO;
  554.         }
  555. return 0;
  556. }
  557. void
  558. cleanup_module(void)
  559. {
  560.         if (dev_macsonic.priv != NULL) {
  561.                 unregister_netdev(&dev_macsonic);
  562.                 kfree(dev_macsonic.priv);
  563.                 dev_macsonic.priv = NULL;
  564.         }
  565. }
  566. #endif /* MODULE */
  567. #define vdma_alloc(foo, bar) ((u32)foo)
  568. #define vdma_free(baz)
  569. #define sonic_chiptomem(bat) (bat)
  570. #define PHYSADDR(quux) (quux)
  571. #define sonic_request_irq       request_irq
  572. #define sonic_free_irq          free_irq
  573. #include "sonic.c"
  574. /*
  575.  * Local variables:
  576.  *  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 macsonic.o macsonic.c"
  577.  *  version-control: t
  578.  *  kept-new-versions: 5
  579.  *  c-indent-level: 8
  580.  *  tab-width: 8
  581.  * End:
  582.  *
  583.  */