sunbmac.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:33k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: sunbmac.c,v 1.28 2001/10/21 06:35:29 davem Exp $
  2.  * sunbmac.c: Driver for Sparc BigMAC 100baseT ethernet adapters.
  3.  *
  4.  * Copyright (C) 1997, 1998, 1999 David S. Miller (davem@redhat.com)
  5.  */
  6. #include <linux/module.h>
  7. #include <linux/kernel.h>
  8. #include <linux/sched.h>
  9. #include <linux/types.h>
  10. #include <linux/fcntl.h>
  11. #include <linux/interrupt.h>
  12. #include <linux/ptrace.h>
  13. #include <linux/ioport.h>
  14. #include <linux/in.h>
  15. #include <linux/slab.h>
  16. #include <linux/string.h>
  17. #include <linux/delay.h>
  18. #include <linux/init.h>
  19. #include <asm/system.h>
  20. #include <asm/bitops.h>
  21. #include <asm/io.h>
  22. #include <asm/dma.h>
  23. #include <linux/errno.h>
  24. #include <asm/byteorder.h>
  25. #include <asm/idprom.h>
  26. #include <asm/sbus.h>
  27. #include <asm/openprom.h>
  28. #include <asm/oplib.h>
  29. #include <asm/auxio.h>
  30. #include <asm/pgtable.h>
  31. #include <linux/netdevice.h>
  32. #include <linux/etherdevice.h>
  33. #include <linux/skbuff.h>
  34. #include "sunbmac.h"
  35. static char version[] __initdata =
  36.         "sunbmac.c:v1.9 11/Sep/99 David S. Miller (davem@redhat.com)n";
  37. #undef DEBUG_PROBE
  38. #undef DEBUG_TX
  39. #undef DEBUG_IRQ
  40. #ifdef DEBUG_PROBE
  41. #define DP(x)  printk x
  42. #else
  43. #define DP(x)
  44. #endif
  45. #ifdef DEBUG_TX
  46. #define DTX(x)  printk x
  47. #else
  48. #define DTX(x)
  49. #endif
  50. #ifdef DEBUG_IRQ
  51. #define DIRQ(x)  printk x
  52. #else
  53. #define DIRQ(x)
  54. #endif
  55. static struct bigmac *root_bigmac_dev;
  56. #define DEFAULT_JAMSIZE    4 /* Toe jam */
  57. #define QEC_RESET_TRIES 200
  58. static int qec_global_reset(unsigned long gregs)
  59. {
  60. int tries = QEC_RESET_TRIES;
  61. sbus_writel(GLOB_CTRL_RESET, gregs + GLOB_CTRL);
  62. while (--tries) {
  63. if (sbus_readl(gregs + GLOB_CTRL) & GLOB_CTRL_RESET) {
  64. udelay(20);
  65. continue;
  66. }
  67. break;
  68. }
  69. if (tries)
  70. return 0;
  71. printk(KERN_ERR "BigMAC: Cannot reset the QEC.n");
  72. return -1;
  73. }
  74. static void qec_init(struct bigmac *bp)
  75. {
  76. unsigned long gregs = bp->gregs;
  77. struct sbus_dev *qec_sdev = bp->qec_sdev;
  78. u8 bsizes = bp->bigmac_bursts;
  79. u32 regval;
  80. /* 64byte bursts do not work at the moment, do
  81.  * not even try to enable them.  -DaveM
  82.  */
  83. if (bsizes & DMA_BURST32)
  84. regval = GLOB_CTRL_B32;
  85. else
  86. regval = GLOB_CTRL_B16;
  87. sbus_writel(regval | GLOB_CTRL_BMODE, gregs + GLOB_CTRL);
  88. sbus_writel(GLOB_PSIZE_2048, gregs + GLOB_PSIZE);
  89. /* All of memsize is given to bigmac. */
  90. sbus_writel(qec_sdev->reg_addrs[1].reg_size,
  91.     gregs + GLOB_MSIZE);
  92. /* Half to the transmitter, half to the receiver. */
  93. sbus_writel(qec_sdev->reg_addrs[1].reg_size >> 1,
  94.     gregs + GLOB_TSIZE);
  95. sbus_writel(qec_sdev->reg_addrs[1].reg_size >> 1,
  96.     gregs + GLOB_RSIZE);
  97. }
  98. #define TX_RESET_TRIES     32
  99. #define RX_RESET_TRIES     32
  100. static void bigmac_tx_reset(unsigned long bregs)
  101. {
  102. int tries = TX_RESET_TRIES;
  103. sbus_writel(0, bregs + BMAC_TXCFG);
  104. /* The fifo threshold bit is read-only and does
  105.  * not clear.  -DaveM
  106.  */
  107. while ((sbus_readl(bregs + BMAC_TXCFG) & ~(BIGMAC_TXCFG_FIFO)) != 0 &&
  108.        --tries != 0)
  109. udelay(20);
  110. if (!tries) {
  111. printk(KERN_ERR "BIGMAC: Transmitter will not reset.n");
  112. printk(KERN_ERR "BIGMAC: tx_cfg is %08xn",
  113.        sbus_readl(bregs + BMAC_TXCFG));
  114. }
  115. }
  116. static void bigmac_rx_reset(unsigned long bregs)
  117. {
  118. int tries = RX_RESET_TRIES;
  119. sbus_writel(0, bregs + BMAC_RXCFG);
  120. while (sbus_readl(bregs + BMAC_RXCFG) && --tries)
  121. udelay(20);
  122. if (!tries) {
  123. printk(KERN_ERR "BIGMAC: Receiver will not reset.n");
  124. printk(KERN_ERR "BIGMAC: rx_cfg is %08xn",
  125.        sbus_readl(bregs + BMAC_RXCFG));
  126. }
  127. }
  128. /* Reset the transmitter and receiver. */
  129. static void bigmac_stop(struct bigmac *bp)
  130. {
  131. bigmac_tx_reset(bp->bregs);
  132. bigmac_rx_reset(bp->bregs);
  133. }
  134. static void bigmac_get_counters(struct bigmac *bp, unsigned long bregs)
  135. {
  136. struct net_device_stats *stats = &bp->enet_stats;
  137. stats->rx_crc_errors += sbus_readl(bregs + BMAC_RCRCECTR);
  138. sbus_writel(0, bregs + BMAC_RCRCECTR);
  139. stats->rx_frame_errors += sbus_readl(bregs + BMAC_UNALECTR);
  140. sbus_writel(0, bregs + BMAC_UNALECTR);
  141. stats->rx_length_errors += sbus_readl(bregs + BMAC_GLECTR);
  142. sbus_writel(0, bregs + BMAC_GLECTR);
  143. stats->tx_aborted_errors += sbus_readl(bregs + BMAC_EXCTR);
  144. stats->collisions +=
  145. (sbus_readl(bregs + BMAC_EXCTR) +
  146.  sbus_readl(bregs + BMAC_LTCTR));
  147. sbus_writel(0, bregs + BMAC_EXCTR);
  148. sbus_writel(0, bregs + BMAC_LTCTR);
  149. }
  150. static void bigmac_clean_rings(struct bigmac *bp)
  151. {
  152. int i;
  153. for (i = 0; i < RX_RING_SIZE; i++) {
  154. if (bp->rx_skbs[i] != NULL) {
  155. dev_kfree_skb_any(bp->rx_skbs[i]);
  156. bp->rx_skbs[i] = NULL;
  157. }
  158. }
  159. for (i = 0; i < TX_RING_SIZE; i++) {
  160. if (bp->tx_skbs[i] != NULL) {
  161. dev_kfree_skb_any(bp->tx_skbs[i]);
  162. bp->tx_skbs[i] = NULL;
  163. }
  164. }
  165. }
  166. static void bigmac_init_rings(struct bigmac *bp, int from_irq)
  167. {
  168. struct bmac_init_block *bb = bp->bmac_block;
  169. struct net_device *dev = bp->dev;
  170. int i, gfp_flags = GFP_KERNEL;
  171. if (from_irq || in_interrupt())
  172. gfp_flags = GFP_ATOMIC;
  173. bp->rx_new = bp->rx_old = bp->tx_new = bp->tx_old = 0;
  174. /* Free any skippy bufs left around in the rings. */
  175. bigmac_clean_rings(bp);
  176. /* Now get new skbufs for the receive ring. */
  177. for (i = 0; i < RX_RING_SIZE; i++) {
  178. struct sk_buff *skb;
  179. skb = big_mac_alloc_skb(RX_BUF_ALLOC_SIZE, gfp_flags);
  180. if (!skb)
  181. continue;
  182. bp->rx_skbs[i] = skb;
  183. skb->dev = dev;
  184. /* Because we reserve afterwards. */
  185. skb_put(skb, ETH_FRAME_LEN);
  186. skb_reserve(skb, 34);
  187. bb->be_rxd[i].rx_addr =
  188. sbus_map_single(bp->bigmac_sdev, skb->data,
  189. RX_BUF_ALLOC_SIZE - 34,
  190. SBUS_DMA_FROMDEVICE);
  191. bb->be_rxd[i].rx_flags =
  192. (RXD_OWN | ((RX_BUF_ALLOC_SIZE - 34) & RXD_LENGTH));
  193. }
  194. for (i = 0; i < TX_RING_SIZE; i++)
  195. bb->be_txd[i].tx_flags = bb->be_txd[i].tx_addr = 0;
  196. }
  197. #define MGMT_CLKON  (MGMT_PAL_INT_MDIO|MGMT_PAL_EXT_MDIO|MGMT_PAL_OENAB|MGMT_PAL_DCLOCK)
  198. #define MGMT_CLKOFF (MGMT_PAL_INT_MDIO|MGMT_PAL_EXT_MDIO|MGMT_PAL_OENAB)
  199. static void idle_transceiver(unsigned long tregs)
  200. {
  201. int i = 20;
  202. while (i--) {
  203. sbus_writel(MGMT_CLKOFF, tregs + TCVR_MPAL);
  204. sbus_readl(tregs + TCVR_MPAL);
  205. sbus_writel(MGMT_CLKON, tregs + TCVR_MPAL);
  206. sbus_readl(tregs + TCVR_MPAL);
  207. }
  208. }
  209. static void write_tcvr_bit(struct bigmac *bp, unsigned long tregs, int bit)
  210. {
  211. if (bp->tcvr_type == internal) {
  212. bit = (bit & 1) << 3;
  213. sbus_writel(bit | (MGMT_PAL_OENAB | MGMT_PAL_EXT_MDIO),
  214.     tregs + TCVR_MPAL);
  215. sbus_readl(tregs + TCVR_MPAL);
  216. sbus_writel(bit | MGMT_PAL_OENAB | MGMT_PAL_EXT_MDIO | MGMT_PAL_DCLOCK,
  217.     tregs + TCVR_MPAL);
  218. sbus_readl(tregs + TCVR_MPAL);
  219. } else if (bp->tcvr_type == external) {
  220. bit = (bit & 1) << 2;
  221. sbus_writel(bit | MGMT_PAL_INT_MDIO | MGMT_PAL_OENAB,
  222.     tregs + TCVR_MPAL);
  223. sbus_readl(tregs + TCVR_MPAL);
  224. sbus_writel(bit | MGMT_PAL_INT_MDIO | MGMT_PAL_OENAB | MGMT_PAL_DCLOCK,
  225.     tregs + TCVR_MPAL);
  226. sbus_readl(tregs + TCVR_MPAL);
  227. } else {
  228. printk(KERN_ERR "write_tcvr_bit: No transceiver type known!n");
  229. }
  230. }
  231. static int read_tcvr_bit(struct bigmac *bp, unsigned long tregs)
  232. {
  233. int retval = 0;
  234. if (bp->tcvr_type == internal) {
  235. sbus_writel(MGMT_PAL_EXT_MDIO, tregs + TCVR_MPAL);
  236. sbus_readl(tregs + TCVR_MPAL);
  237. sbus_writel(MGMT_PAL_EXT_MDIO | MGMT_PAL_DCLOCK,
  238.     tregs + TCVR_MPAL);
  239. sbus_readl(tregs + TCVR_MPAL);
  240. retval = (sbus_readl(tregs + TCVR_MPAL) & MGMT_PAL_INT_MDIO) >> 3;
  241. } else if (bp->tcvr_type == external) {
  242. sbus_writel(MGMT_PAL_INT_MDIO, tregs + TCVR_MPAL);
  243. sbus_readl(tregs + TCVR_MPAL);
  244. sbus_writel(MGMT_PAL_INT_MDIO | MGMT_PAL_DCLOCK, tregs + TCVR_MPAL);
  245. sbus_readl(tregs + TCVR_MPAL);
  246. retval = (sbus_readl(tregs + TCVR_MPAL) & MGMT_PAL_EXT_MDIO) >> 2;
  247. } else {
  248. printk(KERN_ERR "read_tcvr_bit: No transceiver type known!n");
  249. }
  250. return retval;
  251. }
  252. static int read_tcvr_bit2(struct bigmac *bp, unsigned long tregs)
  253. {
  254. int retval = 0;
  255. if (bp->tcvr_type == internal) {
  256. sbus_writel(MGMT_PAL_EXT_MDIO, tregs + TCVR_MPAL);
  257. sbus_readl(tregs + TCVR_MPAL);
  258. retval = (sbus_readl(tregs + TCVR_MPAL) & MGMT_PAL_INT_MDIO) >> 3;
  259. sbus_writel(MGMT_PAL_EXT_MDIO | MGMT_PAL_DCLOCK, tregs + TCVR_MPAL);
  260. sbus_readl(tregs + TCVR_MPAL);
  261. } else if (bp->tcvr_type == external) {
  262. sbus_writel(MGMT_PAL_INT_MDIO, tregs + TCVR_MPAL);
  263. sbus_readl(tregs + TCVR_MPAL);
  264. retval = (sbus_readl(tregs + TCVR_MPAL) & MGMT_PAL_EXT_MDIO) >> 2;
  265. sbus_writel(MGMT_PAL_INT_MDIO | MGMT_PAL_DCLOCK, tregs + TCVR_MPAL);
  266. sbus_readl(tregs + TCVR_MPAL);
  267. } else {
  268. printk(KERN_ERR "read_tcvr_bit2: No transceiver type known!n");
  269. }
  270. return retval;
  271. }
  272. static void put_tcvr_byte(struct bigmac *bp,
  273.   unsigned long tregs,
  274.   unsigned int byte)
  275. {
  276. int shift = 4;
  277. do {
  278. write_tcvr_bit(bp, tregs, ((byte >> shift) & 1));
  279. shift -= 1;
  280. } while (shift >= 0);
  281. }
  282. static void bigmac_tcvr_write(struct bigmac *bp, unsigned long tregs,
  283.       int reg, unsigned short val)
  284. {
  285. int shift;
  286. reg &= 0xff;
  287. val &= 0xffff;
  288. switch(bp->tcvr_type) {
  289. case internal:
  290. case external:
  291. break;
  292. default:
  293. printk(KERN_ERR "bigmac_tcvr_read: Whoops, no known transceiver type.n");
  294. return;
  295. };
  296. idle_transceiver(tregs);
  297. write_tcvr_bit(bp, tregs, 0);
  298. write_tcvr_bit(bp, tregs, 1);
  299. write_tcvr_bit(bp, tregs, 0);
  300. write_tcvr_bit(bp, tregs, 1);
  301. put_tcvr_byte(bp, tregs,
  302.       ((bp->tcvr_type == internal) ?
  303.        BIGMAC_PHY_INTERNAL : BIGMAC_PHY_EXTERNAL));
  304. put_tcvr_byte(bp, tregs, reg);
  305. write_tcvr_bit(bp, tregs, 1);
  306. write_tcvr_bit(bp, tregs, 0);
  307. shift = 15;
  308. do {
  309. write_tcvr_bit(bp, tregs, (val >> shift) & 1);
  310. shift -= 1;
  311. } while (shift >= 0);
  312. }
  313. static unsigned short bigmac_tcvr_read(struct bigmac *bp,
  314.        unsigned long tregs,
  315.        int reg)
  316. {
  317. unsigned short retval = 0;
  318. reg &= 0xff;
  319. switch(bp->tcvr_type) {
  320. case internal:
  321. case external:
  322. break;
  323. default:
  324. printk(KERN_ERR "bigmac_tcvr_read: Whoops, no known transceiver type.n");
  325. return 0xffff;
  326. };
  327. idle_transceiver(tregs);
  328. write_tcvr_bit(bp, tregs, 0);
  329. write_tcvr_bit(bp, tregs, 1);
  330. write_tcvr_bit(bp, tregs, 1);
  331. write_tcvr_bit(bp, tregs, 0);
  332. put_tcvr_byte(bp, tregs,
  333.       ((bp->tcvr_type == internal) ?
  334.        BIGMAC_PHY_INTERNAL : BIGMAC_PHY_EXTERNAL));
  335. put_tcvr_byte(bp, tregs, reg);
  336. if (bp->tcvr_type == external) {
  337. int shift = 15;
  338. (void) read_tcvr_bit2(bp, tregs);
  339. (void) read_tcvr_bit2(bp, tregs);
  340. do {
  341. int tmp;
  342. tmp = read_tcvr_bit2(bp, tregs);
  343. retval |= ((tmp & 1) << shift);
  344. shift -= 1;
  345. } while (shift >= 0);
  346. (void) read_tcvr_bit2(bp, tregs);
  347. (void) read_tcvr_bit2(bp, tregs);
  348. (void) read_tcvr_bit2(bp, tregs);
  349. } else {
  350. int shift = 15;
  351. (void) read_tcvr_bit(bp, tregs);
  352. (void) read_tcvr_bit(bp, tregs);
  353. do {
  354. int tmp;
  355. tmp = read_tcvr_bit(bp, tregs);
  356. retval |= ((tmp & 1) << shift);
  357. shift -= 1;
  358. } while (shift >= 0);
  359. (void) read_tcvr_bit(bp, tregs);
  360. (void) read_tcvr_bit(bp, tregs);
  361. (void) read_tcvr_bit(bp, tregs);
  362. }
  363. return retval;
  364. }
  365. static void bigmac_tcvr_init(struct bigmac *bp)
  366. {
  367. unsigned long tregs = bp->tregs;
  368. u32 mpal;
  369. idle_transceiver(tregs);
  370. sbus_writel(MGMT_PAL_INT_MDIO | MGMT_PAL_EXT_MDIO | MGMT_PAL_DCLOCK,
  371.     tregs + TCVR_MPAL);
  372. sbus_readl(tregs + TCVR_MPAL);
  373. /* Only the bit for the present transceiver (internal or
  374.  * external) will stick, set them both and see what stays.
  375.  */
  376. sbus_writel(MGMT_PAL_INT_MDIO | MGMT_PAL_EXT_MDIO, tregs + TCVR_MPAL);
  377. sbus_readl(tregs + TCVR_MPAL);
  378. udelay(20);
  379. mpal = sbus_readl(tregs + TCVR_MPAL);
  380. if (mpal & MGMT_PAL_EXT_MDIO) {
  381. bp->tcvr_type = external;
  382. sbus_writel(~(TCVR_PAL_EXTLBACK | TCVR_PAL_MSENSE | TCVR_PAL_LTENABLE),
  383.     tregs + TCVR_TPAL);
  384. sbus_readl(tregs + TCVR_TPAL);
  385. } else if (mpal & MGMT_PAL_INT_MDIO) {
  386. bp->tcvr_type = internal;
  387. sbus_writel(~(TCVR_PAL_SERIAL | TCVR_PAL_EXTLBACK |
  388.       TCVR_PAL_MSENSE | TCVR_PAL_LTENABLE),
  389.     tregs + TCVR_TPAL);
  390. sbus_readl(tregs + TCVR_TPAL);
  391. } else {
  392. printk(KERN_ERR "BIGMAC: AIEEE, neither internal nor "
  393.        "external MDIO available!n");
  394. printk(KERN_ERR "BIGMAC: mgmt_pal[%08x] tcvr_pal[%08x]n",
  395.        sbus_readl(tregs + TCVR_MPAL),
  396.        sbus_readl(tregs + TCVR_TPAL));
  397. }
  398. }
  399. static int bigmac_init(struct bigmac *, int);
  400. static int try_next_permutation(struct bigmac *bp, unsigned long tregs)
  401. {
  402. if (bp->sw_bmcr & BMCR_SPEED100) {
  403. int timeout;
  404. /* Reset the PHY. */
  405. bp->sw_bmcr = (BMCR_ISOLATE | BMCR_PDOWN | BMCR_LOOPBACK);
  406. bigmac_tcvr_write(bp, tregs, BIGMAC_BMCR, bp->sw_bmcr);
  407. bp->sw_bmcr = (BMCR_RESET);
  408. bigmac_tcvr_write(bp, tregs, BIGMAC_BMCR, bp->sw_bmcr);
  409. timeout = 64;
  410. while (--timeout) {
  411. bp->sw_bmcr = bigmac_tcvr_read(bp, tregs, BIGMAC_BMCR);
  412. if ((bp->sw_bmcr & BMCR_RESET) == 0)
  413. break;
  414. udelay(20);
  415. }
  416. if (timeout == 0)
  417. printk(KERN_ERR "%s: PHY reset failed.n", bp->dev->name);
  418. bp->sw_bmcr = bigmac_tcvr_read(bp, tregs, BIGMAC_BMCR);
  419. /* Now we try 10baseT. */
  420. bp->sw_bmcr &= ~(BMCR_SPEED100);
  421. bigmac_tcvr_write(bp, tregs, BIGMAC_BMCR, bp->sw_bmcr);
  422. return 0;
  423. }
  424. /* We've tried them all. */
  425. return -1;
  426. }
  427. static void bigmac_timer(unsigned long data)
  428. {
  429. struct bigmac *bp = (struct bigmac *) data;
  430. unsigned long tregs = bp->tregs;
  431. int restart_timer = 0;
  432. bp->timer_ticks++;
  433. if (bp->timer_state == ltrywait) {
  434. bp->sw_bmsr = bigmac_tcvr_read(bp, tregs, BIGMAC_BMSR);
  435. bp->sw_bmcr = bigmac_tcvr_read(bp, tregs, BIGMAC_BMCR);
  436. if (bp->sw_bmsr & BMSR_LSTATUS) {
  437. printk(KERN_INFO "%s: Link is now up at %s.n",
  438.        bp->dev->name,
  439.        (bp->sw_bmcr & BMCR_SPEED100) ?
  440.        "100baseT" : "10baseT");
  441. bp->timer_state = asleep;
  442. restart_timer = 0;
  443. } else {
  444. if (bp->timer_ticks >= 4) {
  445. int ret;
  446. ret = try_next_permutation(bp, tregs);
  447. if (ret == -1) {
  448. printk(KERN_ERR "%s: Link down, cable problem?n",
  449.        bp->dev->name);
  450. ret = bigmac_init(bp, 0);
  451. if (ret) {
  452. printk(KERN_ERR "%s: Error, cannot re-init the "
  453.        "BigMAC.n", bp->dev->name);
  454. }
  455. return;
  456. }
  457. bp->timer_ticks = 0;
  458. restart_timer = 1;
  459. } else {
  460. restart_timer = 1;
  461. }
  462. }
  463. } else {
  464. /* Can't happens.... */
  465. printk(KERN_ERR "%s: Aieee, link timer is asleep but we got one anyways!n",
  466.        bp->dev->name);
  467. restart_timer = 0;
  468. bp->timer_ticks = 0;
  469. bp->timer_state = asleep; /* foo on you */
  470. }
  471. if (restart_timer != 0) {
  472. bp->bigmac_timer.expires = jiffies + ((12 * HZ)/10); /* 1.2 sec. */
  473. add_timer(&bp->bigmac_timer);
  474. }
  475. }
  476. /* Well, really we just force the chip into 100baseT then
  477.  * 10baseT, each time checking for a link status.
  478.  */
  479. static void bigmac_begin_auto_negotiation(struct bigmac *bp)
  480. {
  481. unsigned long tregs = bp->tregs;
  482. int timeout;
  483. /* Grab new software copies of PHY registers. */
  484. bp->sw_bmsr = bigmac_tcvr_read(bp, tregs, BIGMAC_BMSR);
  485. bp->sw_bmcr = bigmac_tcvr_read(bp, tregs, BIGMAC_BMCR);
  486. /* Reset the PHY. */
  487. bp->sw_bmcr = (BMCR_ISOLATE | BMCR_PDOWN | BMCR_LOOPBACK);
  488. bigmac_tcvr_write(bp, tregs, BIGMAC_BMCR, bp->sw_bmcr);
  489. bp->sw_bmcr = (BMCR_RESET);
  490. bigmac_tcvr_write(bp, tregs, BIGMAC_BMCR, bp->sw_bmcr);
  491. timeout = 64;
  492. while (--timeout) {
  493. bp->sw_bmcr = bigmac_tcvr_read(bp, tregs, BIGMAC_BMCR);
  494. if ((bp->sw_bmcr & BMCR_RESET) == 0)
  495. break;
  496. udelay(20);
  497. }
  498. if (timeout == 0)
  499. printk(KERN_ERR "%s: PHY reset failed.n", bp->dev->name);
  500. bp->sw_bmcr = bigmac_tcvr_read(bp, tregs, BIGMAC_BMCR);
  501. /* First we try 100baseT. */
  502. bp->sw_bmcr |= BMCR_SPEED100;
  503. bigmac_tcvr_write(bp, tregs, BIGMAC_BMCR, bp->sw_bmcr);
  504. bp->timer_state = ltrywait;
  505. bp->timer_ticks = 0;
  506. bp->bigmac_timer.expires = jiffies + (12 * HZ) / 10;
  507. bp->bigmac_timer.data = (unsigned long) bp;
  508. bp->bigmac_timer.function = &bigmac_timer;
  509. add_timer(&bp->bigmac_timer);
  510. }
  511. static int bigmac_init(struct bigmac *bp, int from_irq)
  512. {
  513. unsigned long gregs        = bp->gregs;
  514. unsigned long cregs        = bp->creg;
  515. unsigned long bregs        = bp->bregs;
  516. unsigned char *e = &bp->dev->dev_addr[0];
  517. /* Latch current counters into statistics. */
  518. bigmac_get_counters(bp, bregs);
  519. /* Reset QEC. */
  520. qec_global_reset(gregs);
  521. /* Init QEC. */
  522. qec_init(bp);
  523. /* Alloc and reset the tx/rx descriptor chains. */
  524. bigmac_init_rings(bp, from_irq);
  525. /* Initialize the PHY. */
  526. bigmac_tcvr_init(bp);
  527. /* Stop transmitter and receiver. */
  528. bigmac_stop(bp);
  529. /* Set hardware ethernet address. */
  530. sbus_writel(((e[4] << 8) | e[5]), bregs + BMAC_MACADDR2);
  531. sbus_writel(((e[2] << 8) | e[3]), bregs + BMAC_MACADDR1);
  532. sbus_writel(((e[0] << 8) | e[1]), bregs + BMAC_MACADDR0);
  533. /* Clear the hash table until mc upload occurs. */
  534. sbus_writel(0, bregs + BMAC_HTABLE3);
  535. sbus_writel(0, bregs + BMAC_HTABLE2);
  536. sbus_writel(0, bregs + BMAC_HTABLE1);
  537. sbus_writel(0, bregs + BMAC_HTABLE0);
  538. /* Enable Big Mac hash table filter. */
  539. sbus_writel(BIGMAC_RXCFG_HENABLE | BIGMAC_RXCFG_FIFO,
  540.     bregs + BMAC_RXCFG);
  541. udelay(20);
  542. /* Ok, configure the Big Mac transmitter. */
  543. sbus_writel(BIGMAC_TXCFG_FIFO, bregs + BMAC_TXCFG);
  544. /* The HME docs recommend to use the 10LSB of our MAC here. */
  545. sbus_writel(((e[5] | e[4] << 8) & 0x3ff),
  546.     bregs + BMAC_RSEED);
  547. /* Enable the output drivers no matter what. */
  548. sbus_writel(BIGMAC_XCFG_ODENABLE | BIGMAC_XCFG_RESV,
  549.     bregs + BMAC_XIFCFG);
  550. /* Tell the QEC where the ring descriptors are. */
  551. sbus_writel(bp->bblock_dvma + bib_offset(be_rxd, 0),
  552.     cregs + CREG_RXDS);
  553. sbus_writel(bp->bblock_dvma + bib_offset(be_txd, 0),
  554.     cregs + CREG_TXDS);
  555. /* Setup the FIFO pointers into QEC local memory. */
  556. sbus_writel(0, cregs + CREG_RXRBUFPTR);
  557. sbus_writel(0, cregs + CREG_RXWBUFPTR);
  558. sbus_writel(sbus_readl(gregs + GLOB_RSIZE),
  559.     cregs + CREG_TXRBUFPTR);
  560. sbus_writel(sbus_readl(gregs + GLOB_RSIZE),
  561.     cregs + CREG_TXWBUFPTR);
  562. /* Tell bigmac what interrupts we don't want to hear about. */
  563. sbus_writel(BIGMAC_IMASK_GOTFRAME | BIGMAC_IMASK_SENTFRAME,
  564.     bregs + BMAC_IMASK);
  565. /* Enable the various other irq's. */
  566. sbus_writel(0, cregs + CREG_RIMASK);
  567. sbus_writel(0, cregs + CREG_TIMASK);
  568. sbus_writel(0, cregs + CREG_QMASK);
  569. sbus_writel(0, cregs + CREG_BMASK);
  570. /* Set jam size to a reasonable default. */
  571. sbus_writel(DEFAULT_JAMSIZE, bregs + BMAC_JSIZE);
  572. /* Clear collision counter. */
  573. sbus_writel(0, cregs + CREG_CCNT);
  574. /* Enable transmitter and receiver. */
  575. sbus_writel(sbus_readl(bregs + BMAC_TXCFG) | BIGMAC_TXCFG_ENABLE,
  576.     bregs + BMAC_TXCFG);
  577. sbus_writel(sbus_readl(bregs + BMAC_RXCFG) | BIGMAC_RXCFG_ENABLE,
  578.     bregs + BMAC_RXCFG);
  579. /* Ok, start detecting link speed/duplex. */
  580. bigmac_begin_auto_negotiation(bp);
  581. /* Success. */
  582. return 0;
  583. }
  584. /* Error interrupts get sent here. */
  585. static void bigmac_is_medium_rare(struct bigmac *bp, u32 qec_status, u32 bmac_status)
  586. {
  587. printk(KERN_ERR "bigmac_is_medium_rare: ");
  588. if (qec_status & (GLOB_STAT_ER | GLOB_STAT_BM)) {
  589. if (qec_status & GLOB_STAT_ER)
  590. printk("QEC_ERROR, ");
  591. if (qec_status & GLOB_STAT_BM)
  592. printk("QEC_BMAC_ERROR, ");
  593. }
  594. if (bmac_status & CREG_STAT_ERRORS) {
  595. if (bmac_status & CREG_STAT_BERROR)
  596. printk("BMAC_ERROR, ");
  597. if (bmac_status & CREG_STAT_TXDERROR)
  598. printk("TXD_ERROR, ");
  599. if (bmac_status & CREG_STAT_TXLERR)
  600. printk("TX_LATE_ERROR, ");
  601. if (bmac_status & CREG_STAT_TXPERR)
  602. printk("TX_PARITY_ERROR, ");
  603. if (bmac_status & CREG_STAT_TXSERR)
  604. printk("TX_SBUS_ERROR, ");
  605. if (bmac_status & CREG_STAT_RXDROP)
  606. printk("RX_DROP_ERROR, ");
  607. if (bmac_status & CREG_STAT_RXSMALL)
  608. printk("RX_SMALL_ERROR, ");
  609. if (bmac_status & CREG_STAT_RXLERR)
  610. printk("RX_LATE_ERROR, ");
  611. if (bmac_status & CREG_STAT_RXPERR)
  612. printk("RX_PARITY_ERROR, ");
  613. if (bmac_status & CREG_STAT_RXSERR)
  614. printk("RX_SBUS_ERROR, ");
  615. }
  616. printk(" RESETn");
  617. bigmac_init(bp, 1);
  618. }
  619. /* BigMAC transmit complete service routines. */
  620. static void bigmac_tx(struct bigmac *bp)
  621. {
  622. struct be_txd *txbase = &bp->bmac_block->be_txd[0];
  623. struct net_device *dev = bp->dev;
  624. int elem;
  625. spin_lock(&bp->lock);
  626. elem = bp->tx_old;
  627. DTX(("bigmac_tx: tx_old[%d] ", elem));
  628. while (elem != bp->tx_new) {
  629. struct sk_buff *skb;
  630. struct be_txd *this = &txbase[elem];
  631. DTX(("this(%p) [flags(%08x)addr(%08x)]",
  632.      this, this->tx_flags, this->tx_addr));
  633. if (this->tx_flags & TXD_OWN)
  634. break;
  635. skb = bp->tx_skbs[elem];
  636. bp->enet_stats.tx_packets++;
  637. bp->enet_stats.tx_bytes += skb->len;
  638. sbus_unmap_single(bp->bigmac_sdev,
  639.   this->tx_addr, skb->len,
  640.   SBUS_DMA_TODEVICE);
  641. DTX(("skb(%p) ", skb));
  642. bp->tx_skbs[elem] = NULL;
  643. dev_kfree_skb_irq(skb);
  644. elem = NEXT_TX(elem);
  645. }
  646. DTX((" DONE, tx_old=%dn", elem));
  647. bp->tx_old = elem;
  648. if (netif_queue_stopped(dev) &&
  649.     TX_BUFFS_AVAIL(bp) > 0)
  650. netif_wake_queue(bp->dev);
  651. spin_unlock(&bp->lock);
  652. }
  653. /* BigMAC receive complete service routines. */
  654. static void bigmac_rx(struct bigmac *bp)
  655. {
  656. struct be_rxd *rxbase = &bp->bmac_block->be_rxd[0];
  657. struct be_rxd *this;
  658. int elem = bp->rx_new, drops = 0;
  659. u32 flags;
  660. this = &rxbase[elem];
  661. while (!((flags = this->rx_flags) & RXD_OWN)) {
  662. struct sk_buff *skb;
  663. int len = (flags & RXD_LENGTH); /* FCS not included */
  664. /* Check for errors. */
  665. if (len < ETH_ZLEN) {
  666. bp->enet_stats.rx_errors++;
  667. bp->enet_stats.rx_length_errors++;
  668. drop_it:
  669. /* Return it to the BigMAC. */
  670. bp->enet_stats.rx_dropped++;
  671. this->rx_flags =
  672. (RXD_OWN | ((RX_BUF_ALLOC_SIZE - 34) & RXD_LENGTH));
  673. goto next;
  674. }
  675. skb = bp->rx_skbs[elem];
  676. if (len > RX_COPY_THRESHOLD) {
  677. struct sk_buff *new_skb;
  678. /* Now refill the entry, if we can. */
  679. new_skb = big_mac_alloc_skb(RX_BUF_ALLOC_SIZE, GFP_ATOMIC);
  680. if (new_skb == NULL) {
  681. drops++;
  682. goto drop_it;
  683. }
  684. sbus_unmap_single(bp->bigmac_sdev,
  685.   this->rx_addr,
  686.   RX_BUF_ALLOC_SIZE - 34,
  687.   SBUS_DMA_FROMDEVICE);
  688. bp->rx_skbs[elem] = new_skb;
  689. new_skb->dev = bp->dev;
  690. skb_put(new_skb, ETH_FRAME_LEN);
  691. skb_reserve(new_skb, 34);
  692. this->rx_addr = sbus_map_single(bp->bigmac_sdev,
  693. new_skb->data,
  694. RX_BUF_ALLOC_SIZE - 34,
  695. SBUS_DMA_FROMDEVICE);
  696. this->rx_flags =
  697. (RXD_OWN | ((RX_BUF_ALLOC_SIZE - 34) & RXD_LENGTH));
  698. /* Trim the original skb for the netif. */
  699. skb_trim(skb, len);
  700. } else {
  701. struct sk_buff *copy_skb = dev_alloc_skb(len + 2);
  702. if (copy_skb == NULL) {
  703. drops++;
  704. goto drop_it;
  705. }
  706. copy_skb->dev = bp->dev;
  707. skb_reserve(copy_skb, 2);
  708. skb_put(copy_skb, len);
  709. sbus_dma_sync_single(bp->bigmac_sdev,
  710.      this->rx_addr, len, SBUS_DMA_FROMDEVICE);
  711. eth_copy_and_sum(copy_skb, (unsigned char *)skb->data, len, 0);
  712. /* Reuse original ring buffer. */
  713. this->rx_flags =
  714. (RXD_OWN | ((RX_BUF_ALLOC_SIZE - 34) & RXD_LENGTH));
  715. skb = copy_skb;
  716. }
  717. /* No checksums done by the BigMAC ;-( */
  718. skb->protocol = eth_type_trans(skb, bp->dev);
  719. netif_rx(skb);
  720. bp->dev->last_rx = jiffies;
  721. bp->enet_stats.rx_packets++;
  722. bp->enet_stats.rx_bytes += len;
  723. next:
  724. elem = NEXT_RX(elem);
  725. this = &rxbase[elem];
  726. }
  727. bp->rx_new = elem;
  728. if (drops)
  729. printk(KERN_NOTICE "%s: Memory squeeze, deferring packet.n", bp->dev->name);
  730. }
  731. static void bigmac_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  732. {
  733. struct bigmac *bp = (struct bigmac *) dev_id;
  734. u32 qec_status, bmac_status;
  735. DIRQ(("bigmac_interrupt: "));
  736. /* Latch status registers now. */
  737. bmac_status = sbus_readl(bp->creg + CREG_STAT);
  738. qec_status = sbus_readl(bp->gregs + GLOB_STAT);
  739. DIRQ(("qec_status=%08x bmac_status=%08xn", qec_status, bmac_status));
  740. if ((qec_status & (GLOB_STAT_ER | GLOB_STAT_BM)) ||
  741.    (bmac_status & CREG_STAT_ERRORS))
  742. bigmac_is_medium_rare(bp, qec_status, bmac_status);
  743. if (bmac_status & CREG_STAT_TXIRQ)
  744. bigmac_tx(bp);
  745. if (bmac_status & CREG_STAT_RXIRQ)
  746. bigmac_rx(bp);
  747. }
  748. static int bigmac_open(struct net_device *dev)
  749. {
  750. struct bigmac *bp = (struct bigmac *) dev->priv;
  751. int ret;
  752. ret = request_irq(dev->irq, &bigmac_interrupt, SA_SHIRQ, dev->name, bp);
  753. if (ret) {
  754. printk(KERN_ERR "BIGMAC: Can't order irq %d to go.n", dev->irq);
  755. return ret;
  756. }
  757. init_timer(&bp->bigmac_timer);
  758. ret = bigmac_init(bp, 0);
  759. if (ret)
  760. free_irq(dev->irq, bp);
  761. return ret;
  762. }
  763. static int bigmac_close(struct net_device *dev)
  764. {
  765. struct bigmac *bp = (struct bigmac *) dev->priv;
  766. del_timer(&bp->bigmac_timer);
  767. bp->timer_state = asleep;
  768. bp->timer_ticks = 0;
  769. bigmac_stop(bp);
  770. bigmac_clean_rings(bp);
  771. free_irq(dev->irq, bp);
  772. return 0;
  773. }
  774. static void bigmac_tx_timeout(struct net_device *dev)
  775. {
  776. struct bigmac *bp = (struct bigmac *) dev->priv;
  777. bigmac_init(bp, 0);
  778. netif_wake_queue(dev);
  779. }
  780. /* Put a packet on the wire. */
  781. static int bigmac_start_xmit(struct sk_buff *skb, struct net_device *dev)
  782. {
  783. struct bigmac *bp = (struct bigmac *) dev->priv;
  784. int len, entry;
  785. u32 mapping;
  786. len = skb->len;
  787. mapping = sbus_map_single(bp->bigmac_sdev, skb->data, len, SBUS_DMA_TODEVICE);
  788. /* Avoid a race... */
  789. spin_lock_irq(&bp->lock);
  790. entry = bp->tx_new;
  791. DTX(("bigmac_start_xmit: len(%d) entry(%d)n", len, entry));
  792. bp->bmac_block->be_txd[entry].tx_flags = TXD_UPDATE;
  793. bp->tx_skbs[entry] = skb;
  794. bp->bmac_block->be_txd[entry].tx_addr = mapping;
  795. bp->bmac_block->be_txd[entry].tx_flags =
  796. (TXD_OWN | TXD_SOP | TXD_EOP | (len & TXD_LENGTH));
  797. bp->tx_new = NEXT_TX(entry);
  798. if (TX_BUFFS_AVAIL(bp) <= 0)
  799. netif_stop_queue(dev);
  800. spin_unlock_irq(&bp->lock);
  801. /* Get it going. */
  802. sbus_writel(CREG_CTRL_TWAKEUP, bp->creg + CREG_CTRL);
  803. dev->trans_start = jiffies;
  804. return 0;
  805. }
  806. static struct net_device_stats *bigmac_get_stats(struct net_device *dev)
  807. {
  808. struct bigmac *bp = (struct bigmac *) dev->priv;
  809. bigmac_get_counters(bp, bp->bregs);
  810. return &bp->enet_stats;
  811. }
  812. #define CRC_POLYNOMIAL_BE 0x04c11db7UL  /* Ethernet CRC, big endian */
  813. #define CRC_POLYNOMIAL_LE 0xedb88320UL  /* Ethernet CRC, little endian */
  814. static void bigmac_set_multicast(struct net_device *dev)
  815. {
  816. struct bigmac *bp = (struct bigmac *) dev->priv;
  817. unsigned long bregs = bp->bregs;
  818. struct dev_mc_list *dmi = dev->mc_list;
  819. char *addrs;
  820. int i, j, bit, byte;
  821. u32 tmp, crc, poly = CRC_POLYNOMIAL_LE;
  822. /* Disable the receiver.  The bit self-clears when
  823.  * the operation is complete.
  824.  */
  825. tmp = sbus_readl(bregs + BMAC_RXCFG);
  826. tmp &= ~(BIGMAC_RXCFG_ENABLE);
  827. sbus_writel(tmp, bregs + BMAC_RXCFG);
  828. while ((sbus_readl(bregs + BMAC_RXCFG) & BIGMAC_RXCFG_ENABLE) != 0)
  829. udelay(20);
  830. if ((dev->flags & IFF_ALLMULTI) || (dev->mc_count > 64)) {
  831. sbus_writel(0xffff, bregs + BMAC_HTABLE0);
  832. sbus_writel(0xffff, bregs + BMAC_HTABLE1);
  833. sbus_writel(0xffff, bregs + BMAC_HTABLE2);
  834. sbus_writel(0xffff, bregs + BMAC_HTABLE3);
  835. } else if (dev->flags & IFF_PROMISC) {
  836. tmp = sbus_readl(bregs + BMAC_RXCFG);
  837. tmp |= BIGMAC_RXCFG_PMISC;
  838. sbus_writel(tmp, bregs + BMAC_RXCFG);
  839. } else {
  840. u16 hash_table[4];
  841. for (i = 0; i < 4; i++)
  842. hash_table[i] = 0;
  843. for (i = 0; i < dev->mc_count; i++) {
  844. addrs = dmi->dmi_addr;
  845. dmi = dmi->next;
  846. if (!(*addrs & 1))
  847. continue;
  848. crc = 0xffffffffU;
  849. for (byte = 0; byte < 6; byte++) {
  850. for (bit = *addrs++, j = 0; j < 8; j++, bit >>= 1) {
  851. int test;
  852. test = ((bit ^ crc) & 0x01);
  853. crc >>= 1;
  854. if (test)
  855. crc = crc ^ poly;
  856. }
  857. }
  858. crc >>= 26;
  859. hash_table[crc >> 4] |= 1 << (crc & 0xf);
  860. }
  861. sbus_writel(hash_table[0], bregs + BMAC_HTABLE0);
  862. sbus_writel(hash_table[1], bregs + BMAC_HTABLE1);
  863. sbus_writel(hash_table[2], bregs + BMAC_HTABLE2);
  864. sbus_writel(hash_table[3], bregs + BMAC_HTABLE3);
  865. }
  866. /* Re-enable the receiver. */
  867. tmp = sbus_readl(bregs + BMAC_RXCFG);
  868. tmp |= BIGMAC_RXCFG_ENABLE;
  869. sbus_writel(tmp, bregs + BMAC_RXCFG);
  870. }
  871. static int __init bigmac_ether_init(struct net_device *dev, struct sbus_dev *qec_sdev)
  872. {
  873. static int version_printed;
  874. struct bigmac *bp;
  875. u8 bsizes, bsizes_more;
  876. int i;
  877. /* Get a new device struct for this interface. */
  878. dev = init_etherdev(NULL, sizeof(struct bigmac));
  879. if (!dev)
  880. return -ENOMEM;
  881. SET_MODULE_OWNER(dev);
  882. if (version_printed++ == 0)
  883. printk(KERN_INFO "%s", version);
  884. if (!dev)
  885. return -ENOMEM;
  886. /* Report what we have found to the user. */
  887. printk(KERN_INFO "%s: BigMAC 100baseT Ethernet ", dev->name);
  888. dev->base_addr = (long) qec_sdev;
  889. for (i = 0; i < 6; i++)
  890. printk("%2.2x%c", dev->dev_addr[i] = idprom->id_ethaddr[i],
  891.        i == 5 ? ' ' : ':');
  892. printk("n");
  893. /* Setup softc, with backpointers to QEC and BigMAC SBUS device structs. */
  894. bp = dev->priv;
  895. bp->qec_sdev = qec_sdev;
  896. bp->bigmac_sdev = qec_sdev->child;
  897. spin_lock_init(&bp->lock);
  898. /* Verify the registers we expect, are actually there. */
  899. if ((bp->bigmac_sdev->num_registers != 3) ||
  900.    (bp->qec_sdev->num_registers != 2)) {
  901. printk(KERN_ERR "BIGMAC: Device does not have 2 and 3 regs, it has %d and %d.n",
  902.        bp->qec_sdev->num_registers,
  903.        bp->bigmac_sdev->num_registers);
  904. printk(KERN_ERR "BIGMAC: Would you like that for here or to go?n");
  905. goto fail_and_cleanup;
  906. }
  907. /* Map in QEC global control registers. */
  908. bp->gregs = sbus_ioremap(&bp->qec_sdev->resource[0], 0,
  909.  GLOB_REG_SIZE, "BigMAC QEC GLobal Regs");
  910. if (!bp->gregs) {
  911. printk(KERN_ERR "BIGMAC: Cannot map QEC global registers.n");
  912. goto fail_and_cleanup;
  913. }
  914. /* Make sure QEC is in BigMAC mode. */
  915. if ((sbus_readl(bp->gregs + GLOB_CTRL) & 0xf0000000) != GLOB_CTRL_BMODE) {
  916. printk(KERN_ERR "BigMAC: AIEEE, QEC is not in BigMAC mode!n");
  917. goto fail_and_cleanup;
  918. }
  919. /* Reset the QEC. */
  920. if (qec_global_reset(bp->gregs))
  921. goto fail_and_cleanup;
  922. /* Get supported SBUS burst sizes. */
  923. bsizes = prom_getintdefault(bp->qec_sdev->prom_node,
  924.     "burst-sizes",
  925.     0xff);
  926. bsizes_more = prom_getintdefault(bp->qec_sdev->bus->prom_node,
  927.  "burst-sizes",
  928.  0xff);
  929. bsizes &= 0xff;
  930. if (bsizes_more != 0xff)
  931. bsizes &= bsizes_more;
  932. if (bsizes == 0xff || (bsizes & DMA_BURST16) == 0 ||
  933.     (bsizes & DMA_BURST32) == 0)
  934. bsizes = (DMA_BURST32 - 1);
  935. bp->bigmac_bursts = bsizes;
  936. /* Perform QEC initialization. */
  937. qec_init(bp);
  938. /* Map in the BigMAC channel registers. */
  939. bp->creg = sbus_ioremap(&bp->bigmac_sdev->resource[0], 0,
  940. CREG_REG_SIZE, "BigMAC QEC Channel Regs");
  941. if (!bp->creg) {
  942. printk(KERN_ERR "BIGMAC: Cannot map QEC channel registers.n");
  943. goto fail_and_cleanup;
  944. }
  945. /* Map in the BigMAC control registers. */
  946. bp->bregs = sbus_ioremap(&bp->bigmac_sdev->resource[1], 0,
  947.  BMAC_REG_SIZE, "BigMAC Primary Regs");
  948. if (!bp->bregs) {
  949. printk(KERN_ERR "BIGMAC: Cannot map BigMAC primary registers.n");
  950. goto fail_and_cleanup;
  951. }
  952. /* Map in the BigMAC transceiver registers, this is how you poke at
  953.  * the BigMAC's PHY.
  954.  */
  955. bp->tregs = sbus_ioremap(&bp->bigmac_sdev->resource[2], 0,
  956.  TCVR_REG_SIZE, "BigMAC Transceiver Regs");
  957. if (!bp->tregs) {
  958. printk(KERN_ERR "BIGMAC: Cannot map BigMAC transceiver registers.n");
  959. goto fail_and_cleanup;
  960. }
  961. /* Stop the BigMAC. */
  962. bigmac_stop(bp);
  963. /* Allocate transmit/receive descriptor DVMA block. */
  964. bp->bmac_block = sbus_alloc_consistent(bp->bigmac_sdev,
  965.        PAGE_SIZE,
  966.        &bp->bblock_dvma);
  967. if (bp->bmac_block == NULL || bp->bblock_dvma == 0) {
  968. printk(KERN_ERR "BIGMAC: Cannot allocate consistent DMA.n");
  969. goto fail_and_cleanup;
  970. }
  971. /* Get the board revision of this BigMAC. */
  972. bp->board_rev = prom_getintdefault(bp->bigmac_sdev->prom_node,
  973.    "board-version", 1);
  974. /* Init auto-negotiation timer state. */
  975. init_timer(&bp->bigmac_timer);
  976. bp->timer_state = asleep;
  977. bp->timer_ticks = 0;
  978. /* Backlink to generic net device struct. */
  979. bp->dev = dev;
  980. /* Set links to our BigMAC open and close routines. */
  981. dev->open = &bigmac_open;
  982. dev->stop = &bigmac_close;
  983. dev->hard_start_xmit = &bigmac_start_xmit;
  984. /* Set links to BigMAC statistic and multi-cast loading code. */
  985. dev->get_stats = &bigmac_get_stats;
  986. dev->set_multicast_list = &bigmac_set_multicast;
  987. dev->tx_timeout = &bigmac_tx_timeout;
  988. dev->watchdog_timeo = 5*HZ;
  989. /* Finish net device registration. */
  990. dev->irq = bp->bigmac_sdev->irqs[0];
  991. dev->dma = 0;
  992. ether_setup(dev);
  993. /* Put us into the list of instances attached for later driver
  994.  * exit.
  995.  */
  996. bp->next_module = root_bigmac_dev;
  997. root_bigmac_dev = bp;
  998. return 0;
  999. fail_and_cleanup:
  1000. /* Something went wrong, undo whatever we did so far. */
  1001. /* Free register mappings if any. */
  1002. if (bp->gregs)
  1003. sbus_iounmap(bp->gregs, GLOB_REG_SIZE);
  1004. if (bp->creg)
  1005. sbus_iounmap(bp->creg, CREG_REG_SIZE);
  1006. if (bp->bregs)
  1007. sbus_iounmap(bp->bregs, BMAC_REG_SIZE);
  1008. if (bp->tregs)
  1009. sbus_iounmap(bp->tregs, TCVR_REG_SIZE);
  1010. if (bp->bmac_block)
  1011. sbus_free_consistent(bp->bigmac_sdev,
  1012.      PAGE_SIZE,
  1013.      bp->bmac_block,
  1014.      bp->bblock_dvma);
  1015. unregister_netdev(dev);
  1016. kfree(dev);
  1017. return -ENODEV;
  1018. }
  1019. /* QEC can be the parent of either QuadEthernet or
  1020.  * a BigMAC.  We want the latter.
  1021.  */
  1022. static int __init bigmac_match(struct sbus_dev *sdev)
  1023. {
  1024. struct sbus_dev *child = sdev->child;
  1025. if (strcmp(sdev->prom_name, "qec") != 0)
  1026. return 0;
  1027. if (child == NULL)
  1028. return 0;
  1029. if (strcmp(child->prom_name, "be") != 0)
  1030. return 0;
  1031. return 1;
  1032. }
  1033. static int __init bigmac_probe(void)
  1034. {
  1035. struct net_device *dev = NULL;
  1036. struct sbus_bus *sbus;
  1037. struct sbus_dev *sdev = 0;
  1038. static int called;
  1039. int cards = 0, v;
  1040. root_bigmac_dev = NULL;
  1041. if (called)
  1042. return -ENODEV;
  1043. called++;
  1044. for_each_sbus(sbus) {
  1045. for_each_sbusdev(sdev, sbus) {
  1046. if (cards)
  1047. dev = NULL;
  1048. if (bigmac_match(sdev)) {
  1049. cards++;
  1050. if ((v = bigmac_ether_init(dev, sdev)))
  1051. return v;
  1052. }
  1053. }
  1054. }
  1055. if (!cards)
  1056. return -ENODEV;
  1057. return 0;
  1058. }
  1059. static void __exit bigmac_cleanup(void)
  1060. {
  1061. while (root_bigmac_dev) {
  1062. struct bigmac *bp = root_bigmac_dev;
  1063. struct bigmac *bp_nxt = root_bigmac_dev->next_module;
  1064. sbus_iounmap(bp->gregs, GLOB_REG_SIZE);
  1065. sbus_iounmap(bp->creg, CREG_REG_SIZE);
  1066. sbus_iounmap(bp->bregs, BMAC_REG_SIZE);
  1067. sbus_iounmap(bp->tregs, TCVR_REG_SIZE);
  1068. sbus_free_consistent(bp->bigmac_sdev,
  1069.      PAGE_SIZE,
  1070.      bp->bmac_block,
  1071.      bp->bblock_dvma);
  1072. unregister_netdev(bp->dev);
  1073. kfree(bp->dev);
  1074. root_bigmac_dev = bp_nxt;
  1075. }
  1076. }
  1077. module_init(bigmac_probe);
  1078. module_exit(bigmac_cleanup);
  1079. MODULE_LICENSE("GPL");