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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Network device driver for the BMAC ethernet controller on
  3.  * Apple Powermacs.  Assumes it's under a DBDMA controller.
  4.  *
  5.  * Copyright (C) 1998 Randy Gobbel.
  6.  *
  7.  * May 1999, Al Viro: proper release of /proc/net/bmac entry, switched to
  8.  * dynamic procfs inode.
  9.  */
  10. #include <linux/config.h>
  11. #include <linux/module.h>
  12. #include <linux/kernel.h>
  13. #include <linux/netdevice.h>
  14. #include <linux/etherdevice.h>
  15. #include <linux/delay.h>
  16. #include <linux/string.h>
  17. #include <linux/timer.h>
  18. #include <linux/proc_fs.h>
  19. #include <linux/init.h>
  20. #include <asm/prom.h>
  21. #include <asm/dbdma.h>
  22. #include <asm/io.h>
  23. #include <asm/page.h>
  24. #include <asm/pgtable.h>
  25. #include <asm/machdep.h>
  26. #include <asm/pmac_feature.h>
  27. #ifdef CONFIG_PMAC_PBOOK
  28. #include <linux/adb.h>
  29. #include <linux/pmu.h>
  30. #include <asm/irq.h>
  31. #endif
  32. #include "bmac.h"
  33. #define trunc_page(x) ((void *)(((unsigned long)(x)) & ~((unsigned long)(PAGE_SIZE - 1))))
  34. #define round_page(x) trunc_page(((unsigned long)(x)) + ((unsigned long)(PAGE_SIZE - 1)))
  35. /*
  36.  * CRC polynomial - used in working out multicast filter bits.
  37.  */
  38. #define ENET_CRCPOLY 0x04c11db7
  39. /* switch to use multicast code lifted from sunhme driver */
  40. #define SUNHME_MULTICAST
  41. #define N_RX_RING 64
  42. #define N_TX_RING 32
  43. #define MAX_TX_ACTIVE 1
  44. #define ETHERCRC 4
  45. #define ETHERMINPACKET 64
  46. #define ETHERMTU 1500
  47. #define RX_BUFLEN (ETHERMTU + 14 + ETHERCRC + 2)
  48. #define TX_TIMEOUT HZ /* 1 second */
  49. /* Bits in transmit DMA status */
  50. #define TX_DMA_ERR 0x80
  51. #define XXDEBUG(args)
  52. struct bmac_data {
  53. /* volatile struct bmac *bmac; */
  54. struct sk_buff_head *queue;
  55. volatile struct dbdma_regs *tx_dma;
  56. int tx_dma_intr;
  57. volatile struct dbdma_regs *rx_dma;
  58. int rx_dma_intr;
  59. volatile struct dbdma_cmd *tx_cmds; /* xmit dma command list */
  60. volatile struct dbdma_cmd *rx_cmds; /* recv dma command list */
  61. struct device_node *node;
  62. int is_bmac_plus;
  63. struct sk_buff *rx_bufs[N_RX_RING];
  64. int rx_fill;
  65. int rx_empty;
  66. struct sk_buff *tx_bufs[N_TX_RING];
  67. int tx_fill;
  68. int tx_empty;
  69. unsigned char tx_fullup;
  70. struct net_device_stats stats;
  71. struct timer_list tx_timeout;
  72. int timeout_active;
  73. int sleeping;
  74. int opened;
  75. unsigned short hash_use_count[64];
  76. unsigned short hash_table_mask[4];
  77. struct net_device *next_bmac;
  78. };
  79. typedef struct bmac_reg_entry {
  80. char *name;
  81. unsigned short reg_offset;
  82. } bmac_reg_entry_t;
  83. #define N_REG_ENTRIES 31
  84. static bmac_reg_entry_t reg_entries[N_REG_ENTRIES] = {
  85. {"MEMADD", MEMADD},
  86. {"MEMDATAHI", MEMDATAHI},
  87. {"MEMDATALO", MEMDATALO},
  88. {"TXPNTR", TXPNTR},
  89. {"RXPNTR", RXPNTR},
  90. {"IPG1", IPG1},
  91. {"IPG2", IPG2},
  92. {"ALIMIT", ALIMIT},
  93. {"SLOT", SLOT},
  94. {"PALEN", PALEN},
  95. {"PAPAT", PAPAT},
  96. {"TXSFD", TXSFD},
  97. {"JAM", JAM},
  98. {"TXCFG", TXCFG},
  99. {"TXMAX", TXMAX},
  100. {"TXMIN", TXMIN},
  101. {"PAREG", PAREG},
  102. {"DCNT", DCNT},
  103. {"NCCNT", NCCNT},
  104. {"NTCNT", NTCNT},
  105. {"EXCNT", EXCNT},
  106. {"LTCNT", LTCNT},
  107. {"TXSM", TXSM},
  108. {"RXCFG", RXCFG},
  109. {"RXMAX", RXMAX},
  110. {"RXMIN", RXMIN},
  111. {"FRCNT", FRCNT},
  112. {"AECNT", AECNT},
  113. {"FECNT", FECNT},
  114. {"RXSM", RXSM},
  115. {"RXCV", RXCV}
  116. };
  117. static struct net_device *bmac_devs;
  118. static unsigned char *bmac_emergency_rxbuf;
  119. #ifdef CONFIG_PMAC_PBOOK
  120. static int bmac_sleep_notify(struct pmu_sleep_notifier *self, int when);
  121. static struct pmu_sleep_notifier bmac_sleep_notifier = {
  122. bmac_sleep_notify, SLEEP_LEVEL_NET,
  123. };
  124. #endif
  125. /*
  126.  * Number of bytes of private data per BMAC: allow enough for
  127.  * the rx and tx dma commands plus a branch dma command each,
  128.  * and another 16 bytes to allow us to align the dma command
  129.  * buffers on a 16 byte boundary.
  130.  */
  131. #define PRIV_BYTES (sizeof(struct bmac_data) 
  132. + (N_RX_RING + N_TX_RING + 4) * sizeof(struct dbdma_cmd) 
  133. + sizeof(struct sk_buff_head))
  134. static unsigned char bitrev(unsigned char b);
  135. static void bmac_probe1(struct device_node *bmac, int is_bmac_plus);
  136. static int bmac_open(struct net_device *dev);
  137. static int bmac_close(struct net_device *dev);
  138. static int bmac_transmit_packet(struct sk_buff *skb, struct net_device *dev);
  139. static struct net_device_stats *bmac_stats(struct net_device *dev);
  140. static void bmac_set_multicast(struct net_device *dev);
  141. static void bmac_reset_and_enable(struct net_device *dev);
  142. static void bmac_start_chip(struct net_device *dev);
  143. static void bmac_init_chip(struct net_device *dev);
  144. static void bmac_init_registers(struct net_device *dev);
  145. static void bmac_enable_and_reset_chip(struct net_device *dev);
  146. static int bmac_set_address(struct net_device *dev, void *addr);
  147. static void bmac_misc_intr(int irq, void *dev_id, struct pt_regs *regs);
  148. static void bmac_txdma_intr(int irq, void *dev_id, struct pt_regs *regs);
  149. static void bmac_rxdma_intr(int irq, void *dev_id, struct pt_regs *regs);
  150. static void bmac_set_timeout(struct net_device *dev);
  151. static void bmac_tx_timeout(unsigned long data);
  152. static int bmac_proc_info ( char *buffer, char **start, off_t offset, int length);
  153. static int bmac_output(struct sk_buff *skb, struct net_device *dev);
  154. static void bmac_start(struct net_device *dev);
  155. #define DBDMA_SET(x) ( ((x) | (x) << 16) )
  156. #define DBDMA_CLEAR(x) ( (x) << 16)
  157. static inline void
  158. dbdma_st32(volatile unsigned long *a, unsigned long x)
  159. {
  160. __asm__ volatile( "stwbrx %0,0,%1" : : "r" (x), "r" (a) : "memory");
  161. return;
  162. }
  163. static inline unsigned long
  164. dbdma_ld32(volatile unsigned long *a)
  165. {
  166. unsigned long swap;
  167. __asm__ volatile ("lwbrx %0,0,%1" :  "=r" (swap) : "r" (a));
  168. return swap;
  169. }
  170. static void
  171. dbdma_continue(volatile struct dbdma_regs *dmap)
  172. {
  173. dbdma_st32((volatile unsigned long *)&dmap->control,
  174.    DBDMA_SET(RUN|WAKE) | DBDMA_CLEAR(PAUSE|DEAD));
  175. eieio();
  176. }
  177. static void
  178. dbdma_reset(volatile struct dbdma_regs *dmap)
  179. {
  180. dbdma_st32((volatile unsigned long *)&dmap->control,
  181.    DBDMA_CLEAR(ACTIVE|DEAD|WAKE|FLUSH|PAUSE|RUN));
  182. eieio();
  183. while (dbdma_ld32((volatile unsigned long *)&dmap->status) & RUN)
  184. eieio();
  185. }
  186. static void
  187. dbdma_setcmd(volatile struct dbdma_cmd *cp,
  188.      unsigned short cmd, unsigned count, unsigned long addr,
  189.      unsigned long cmd_dep)
  190. {
  191. out_le16(&cp->command, cmd);
  192. out_le16(&cp->req_count, count);
  193. out_le32(&cp->phy_addr, addr);
  194. out_le32(&cp->cmd_dep, cmd_dep);
  195. out_le16(&cp->xfer_status, 0);
  196. out_le16(&cp->res_count, 0);
  197. }
  198. static inline
  199. void bmwrite(struct net_device *dev, unsigned long reg_offset, unsigned data )
  200. {
  201. out_le16((void *)dev->base_addr + reg_offset, data);
  202. }
  203. static inline
  204. volatile unsigned short bmread(struct net_device *dev, unsigned long reg_offset )
  205. {
  206. return in_le16((void *)dev->base_addr + reg_offset);
  207. }
  208. static void
  209. bmac_enable_and_reset_chip(struct net_device *dev)
  210. {
  211. struct bmac_data *bp = (struct bmac_data *) dev->priv;
  212. volatile struct dbdma_regs *rd = bp->rx_dma;
  213. volatile struct dbdma_regs *td = bp->tx_dma;
  214. if (rd)
  215. dbdma_reset(rd);
  216. if (td)
  217. dbdma_reset(td);
  218. pmac_call_feature(PMAC_FTR_BMAC_ENABLE, bp->node, 0, 1);
  219. }
  220. #define MIFDELAY udelay(10)
  221. static unsigned int
  222. bmac_mif_readbits(struct net_device *dev, int nb)
  223. {
  224. unsigned int val = 0;
  225. while (--nb >= 0) {
  226. bmwrite(dev, MIFCSR, 0);
  227. MIFDELAY;
  228. if (bmread(dev, MIFCSR) & 8)
  229. val |= 1 << nb;
  230. bmwrite(dev, MIFCSR, 1);
  231. MIFDELAY;
  232. }
  233. bmwrite(dev, MIFCSR, 0);
  234. MIFDELAY;
  235. bmwrite(dev, MIFCSR, 1);
  236. MIFDELAY;
  237. return val;
  238. }
  239. static void
  240. bmac_mif_writebits(struct net_device *dev, unsigned int val, int nb)
  241. {
  242. int b;
  243. while (--nb >= 0) {
  244. b = (val & (1 << nb))? 6: 4;
  245. bmwrite(dev, MIFCSR, b);
  246. MIFDELAY;
  247. bmwrite(dev, MIFCSR, b|1);
  248. MIFDELAY;
  249. }
  250. }
  251. static unsigned int
  252. bmac_mif_read(struct net_device *dev, unsigned int addr)
  253. {
  254. unsigned int val;
  255. bmwrite(dev, MIFCSR, 4);
  256. MIFDELAY;
  257. bmac_mif_writebits(dev, ~0U, 32);
  258. bmac_mif_writebits(dev, 6, 4);
  259. bmac_mif_writebits(dev, addr, 10);
  260. bmwrite(dev, MIFCSR, 2);
  261. MIFDELAY;
  262. bmwrite(dev, MIFCSR, 1);
  263. MIFDELAY;
  264. val = bmac_mif_readbits(dev, 17);
  265. bmwrite(dev, MIFCSR, 4);
  266. MIFDELAY;
  267. return val;
  268. }
  269. static void
  270. bmac_mif_write(struct net_device *dev, unsigned int addr, unsigned int val)
  271. {
  272. bmwrite(dev, MIFCSR, 4);
  273. MIFDELAY;
  274. bmac_mif_writebits(dev, ~0U, 32);
  275. bmac_mif_writebits(dev, 5, 4);
  276. bmac_mif_writebits(dev, addr, 10);
  277. bmac_mif_writebits(dev, 2, 2);
  278. bmac_mif_writebits(dev, val, 16);
  279. bmac_mif_writebits(dev, 3, 2);
  280. }
  281. static void
  282. bmac_init_registers(struct net_device *dev)
  283. {
  284. struct bmac_data *bp = (struct bmac_data *) dev->priv;
  285. volatile unsigned short regValue;
  286. unsigned short *pWord16;
  287. int i;
  288. /* XXDEBUG(("bmac: enter init_registersn")); */
  289. bmwrite(dev, RXRST, RxResetValue);
  290. bmwrite(dev, TXRST, TxResetBit);
  291. i = 100;
  292. do {
  293. --i;
  294. udelay(10000);
  295. regValue = bmread(dev, TXRST); /* wait for reset to clear..acknowledge */
  296. } while ((regValue & TxResetBit) && i > 0);
  297. if (!bp->is_bmac_plus) {
  298. regValue = bmread(dev, XCVRIF);
  299. regValue |= ClkBit | SerialMode | COLActiveLow;
  300. bmwrite(dev, XCVRIF, regValue);
  301. udelay(10000);
  302. }
  303. bmwrite(dev, RSEED, (unsigned short)0x1968);
  304. regValue = bmread(dev, XIFC);
  305. regValue |= TxOutputEnable;
  306. bmwrite(dev, XIFC, regValue);
  307. bmread(dev, PAREG);
  308. /* set collision counters to 0 */
  309. bmwrite(dev, NCCNT, 0);
  310. bmwrite(dev, NTCNT, 0);
  311. bmwrite(dev, EXCNT, 0);
  312. bmwrite(dev, LTCNT, 0);
  313. /* set rx counters to 0 */
  314. bmwrite(dev, FRCNT, 0);
  315. bmwrite(dev, LECNT, 0);
  316. bmwrite(dev, AECNT, 0);
  317. bmwrite(dev, FECNT, 0);
  318. bmwrite(dev, RXCV, 0);
  319. /* set tx fifo information */
  320. bmwrite(dev, TXTH, 4); /* 4 octets before tx starts */
  321. bmwrite(dev, TXFIFOCSR, 0); /* first disable txFIFO */
  322. bmwrite(dev, TXFIFOCSR, TxFIFOEnable );
  323. /* set rx fifo information */
  324. bmwrite(dev, RXFIFOCSR, 0); /* first disable rxFIFO */
  325. bmwrite(dev, RXFIFOCSR, RxFIFOEnable );
  326. //bmwrite(dev, TXCFG, TxMACEnable);         /* TxNeverGiveUp maybe later */
  327. bmread(dev, STATUS); /* read it just to clear it */
  328. /* zero out the chip Hash Filter registers */
  329. for (i=0; i<4; i++) bp->hash_table_mask[i] = 0;
  330. bmwrite(dev, BHASH3, bp->hash_table_mask[0]);  /* bits 15 - 0 */
  331. bmwrite(dev, BHASH2, bp->hash_table_mask[1]);  /* bits 31 - 16 */
  332. bmwrite(dev, BHASH1, bp->hash_table_mask[2]);  /* bits 47 - 32 */
  333. bmwrite(dev, BHASH0, bp->hash_table_mask[3]);  /* bits 63 - 48 */
  334. pWord16 = (unsigned short *)dev->dev_addr;
  335. bmwrite(dev, MADD0, *pWord16++);
  336. bmwrite(dev, MADD1, *pWord16++);
  337. bmwrite(dev, MADD2, *pWord16);
  338. bmwrite(dev, RXCFG, RxCRCNoStrip | RxHashFilterEnable | RxRejectOwnPackets);
  339. bmwrite(dev, INTDISABLE, EnableNormal);
  340. return;
  341. }
  342. #if 0
  343. static void
  344. bmac_disable_interrupts(struct net_device *dev)
  345. {
  346. bmwrite(dev, INTDISABLE, DisableAll);
  347. }
  348. static void
  349. bmac_enable_interrupts(struct net_device *dev)
  350. {
  351. bmwrite(dev, INTDISABLE, EnableNormal);
  352. }
  353. #endif
  354. static void
  355. bmac_start_chip(struct net_device *dev)
  356. {
  357. struct bmac_data *bp = (struct bmac_data *) dev->priv;
  358. volatile struct dbdma_regs *rd = bp->rx_dma;
  359. unsigned short oldConfig;
  360. /* enable rx dma channel */
  361. dbdma_continue(rd);
  362. oldConfig = bmread(dev, TXCFG);
  363. bmwrite(dev, TXCFG, oldConfig | TxMACEnable );
  364. /* turn on rx plus any other bits already on (promiscuous possibly) */
  365. oldConfig = bmread(dev, RXCFG);
  366. bmwrite(dev, RXCFG, oldConfig | RxMACEnable );
  367. udelay(20000);
  368. }
  369. static void
  370. bmac_init_phy(struct net_device *dev)
  371. {
  372. unsigned int addr;
  373. struct bmac_data *bp = (struct bmac_data *) dev->priv;
  374. printk(KERN_DEBUG "phy registers:");
  375. for (addr = 0; addr < 32; ++addr) {
  376. if ((addr & 7) == 0)
  377. printk("n" KERN_DEBUG);
  378. printk(" %.4x", bmac_mif_read(dev, addr));
  379. }
  380. printk("n");
  381. if (bp->is_bmac_plus) {
  382. unsigned int capable, ctrl;
  383. ctrl = bmac_mif_read(dev, 0);
  384. capable = ((bmac_mif_read(dev, 1) & 0xf800) >> 6) | 1;
  385. if (bmac_mif_read(dev, 4) != capable
  386.     || (ctrl & 0x1000) == 0) {
  387. bmac_mif_write(dev, 4, capable);
  388. bmac_mif_write(dev, 0, 0x1200);
  389. } else
  390. bmac_mif_write(dev, 0, 0x1000);
  391. }
  392. }
  393. static void
  394. bmac_init_chip(struct net_device *dev)
  395. {
  396. bmac_init_phy(dev);
  397. bmac_init_registers(dev);
  398. }
  399. #ifdef CONFIG_PMAC_PBOOK
  400. static int
  401. bmac_sleep_notify(struct pmu_sleep_notifier *self, int when)
  402. {
  403. struct bmac_data *bp;
  404. unsigned long flags;
  405. unsigned short config;
  406. struct net_device* dev = bmac_devs;
  407. int i;
  408. if (bmac_devs == 0)
  409. return PBOOK_SLEEP_OK;
  410. bp = (struct bmac_data *) dev->priv;
  411. switch (when) {
  412. case PBOOK_SLEEP_REQUEST:
  413. break;
  414. case PBOOK_SLEEP_REJECT:
  415. break;
  416. case PBOOK_SLEEP_NOW:
  417. netif_device_detach(dev);
  418. /* prolly should wait for dma to finish & turn off the chip */
  419. save_flags(flags); cli();
  420. if (bp->timeout_active) {
  421. del_timer(&bp->tx_timeout);
  422. bp->timeout_active = 0;
  423. }
  424. disable_irq(dev->irq);
  425. disable_irq(bp->tx_dma_intr);
  426. disable_irq(bp->rx_dma_intr);
  427. bp->sleeping = 1;
  428. restore_flags(flags);
  429. if (bp->opened) {
  430. volatile struct dbdma_regs *rd = bp->rx_dma;
  431. volatile struct dbdma_regs *td = bp->tx_dma;
  432. config = bmread(dev, RXCFG);
  433. bmwrite(dev, RXCFG, (config & ~RxMACEnable));
  434. config = bmread(dev, TXCFG);
  435. bmwrite(dev, TXCFG, (config & ~TxMACEnable));
  436. bmwrite(dev, INTDISABLE, DisableAll); /* disable all intrs */
  437. /* disable rx and tx dma */
  438. st_le32(&rd->control, DBDMA_CLEAR(RUN|PAUSE|FLUSH|WAKE)); /* clear run bit */
  439. st_le32(&td->control, DBDMA_CLEAR(RUN|PAUSE|FLUSH|WAKE)); /* clear run bit */
  440. /* free some skb's */
  441. for (i=0; i<N_RX_RING; i++) {
  442. if (bp->rx_bufs[i] != NULL) {
  443. dev_kfree_skb(bp->rx_bufs[i]);
  444. bp->rx_bufs[i] = NULL;
  445. }
  446. }
  447. for (i = 0; i<N_TX_RING; i++) {
  448. if (bp->tx_bufs[i] != NULL) {
  449. dev_kfree_skb(bp->tx_bufs[i]);
  450. bp->tx_bufs[i] = NULL;
  451. }
  452. }
  453. }
  454. pmac_call_feature(PMAC_FTR_BMAC_ENABLE, bp->node, 0, 0);
  455. break;
  456. case PBOOK_WAKE:
  457. /* see if this is enough */
  458. if (bp->opened)
  459. bmac_reset_and_enable(dev);
  460. enable_irq(dev->irq);
  461. enable_irq(bp->tx_dma_intr);
  462. enable_irq(bp->rx_dma_intr);
  463. netif_device_attach(dev);
  464. break;
  465. }
  466. return PBOOK_SLEEP_OK;
  467. }
  468. #endif
  469. static int bmac_set_address(struct net_device *dev, void *addr)
  470. {
  471. unsigned char *p = addr;
  472. unsigned short *pWord16;
  473. unsigned long flags;
  474. int i;
  475. XXDEBUG(("bmac: enter set_addressn"));
  476. save_flags(flags); cli();
  477. for (i = 0; i < 6; ++i) {
  478. dev->dev_addr[i] = p[i];
  479. }
  480. /* load up the hardware address */
  481. pWord16  = (unsigned short *)dev->dev_addr;
  482. bmwrite(dev, MADD0, *pWord16++);
  483. bmwrite(dev, MADD1, *pWord16++);
  484. bmwrite(dev, MADD2, *pWord16);
  485. restore_flags(flags);
  486. XXDEBUG(("bmac: exit set_addressn"));
  487. return 0;
  488. }
  489. static inline void bmac_set_timeout(struct net_device *dev)
  490. {
  491. struct bmac_data *bp = (struct bmac_data *) dev->priv;
  492. unsigned long flags;
  493. save_flags(flags);
  494. cli();
  495. if (bp->timeout_active)
  496. del_timer(&bp->tx_timeout);
  497. bp->tx_timeout.expires = jiffies + TX_TIMEOUT;
  498. bp->tx_timeout.function = bmac_tx_timeout;
  499. bp->tx_timeout.data = (unsigned long) dev;
  500. add_timer(&bp->tx_timeout);
  501. bp->timeout_active = 1;
  502. restore_flags(flags);
  503. }
  504. static void
  505. bmac_construct_xmt(struct sk_buff *skb, volatile struct dbdma_cmd *cp)
  506. {
  507. void *vaddr;
  508. unsigned long baddr;
  509. unsigned long len;
  510. len = skb->len;
  511. vaddr = skb->data;
  512. baddr = virt_to_bus(vaddr);
  513. dbdma_setcmd(cp, (OUTPUT_LAST | INTR_ALWAYS | WAIT_IFCLR), len, baddr, 0);
  514. }
  515. static void
  516. bmac_construct_rxbuff(struct sk_buff *skb, volatile struct dbdma_cmd *cp)
  517. {
  518. unsigned char *addr = skb? skb->data: bmac_emergency_rxbuf;
  519. dbdma_setcmd(cp, (INPUT_LAST | INTR_ALWAYS), RX_BUFLEN,
  520.      virt_to_bus(addr), 0);
  521. }
  522. /* Bit-reverse one byte of an ethernet hardware address. */
  523. static unsigned char
  524. bitrev(unsigned char b)
  525. {
  526. int d = 0, i;
  527. for (i = 0; i < 8; ++i, b >>= 1)
  528. d = (d << 1) | (b & 1);
  529. return d;
  530. }
  531. static void
  532. bmac_init_tx_ring(struct bmac_data *bp)
  533. {
  534. volatile struct dbdma_regs *td = bp->tx_dma;
  535. memset((char *)bp->tx_cmds, 0, (N_TX_RING+1) * sizeof(struct dbdma_cmd));
  536. bp->tx_empty = 0;
  537. bp->tx_fill = 0;
  538. bp->tx_fullup = 0;
  539. /* put a branch at the end of the tx command list */
  540. dbdma_setcmd(&bp->tx_cmds[N_TX_RING],
  541.      (DBDMA_NOP | BR_ALWAYS), 0, 0, virt_to_bus(bp->tx_cmds));
  542. /* reset tx dma */
  543. dbdma_reset(td);
  544. out_le32(&td->wait_sel, 0x00200020);
  545. out_le32(&td->cmdptr, virt_to_bus(bp->tx_cmds));
  546. }
  547. static int
  548. bmac_init_rx_ring(struct bmac_data *bp)
  549. {
  550. volatile struct dbdma_regs *rd = bp->rx_dma;
  551. int i;
  552. struct sk_buff *skb;
  553. /* initialize list of sk_buffs for receiving and set up recv dma */
  554. memset((char *)bp->rx_cmds, 0,
  555.        (N_RX_RING + 1) * sizeof(struct dbdma_cmd));
  556. for (i = 0; i < N_RX_RING; i++) {
  557. if ((skb = bp->rx_bufs[i]) == NULL) {
  558. bp->rx_bufs[i] = skb = dev_alloc_skb(RX_BUFLEN+2);
  559. if (skb != NULL)
  560. skb_reserve(skb, 2);
  561. }
  562. bmac_construct_rxbuff(skb, &bp->rx_cmds[i]);
  563. }
  564. bp->rx_empty = 0;
  565. bp->rx_fill = i;
  566. /* Put a branch back to the beginning of the receive command list */
  567. dbdma_setcmd(&bp->rx_cmds[N_RX_RING],
  568.      (DBDMA_NOP | BR_ALWAYS), 0, 0, virt_to_bus(bp->rx_cmds));
  569. /* start rx dma */
  570. dbdma_reset(rd);
  571. out_le32(&rd->cmdptr, virt_to_bus(bp->rx_cmds));
  572. return 1;
  573. }
  574. static int bmac_transmit_packet(struct sk_buff *skb, struct net_device *dev)
  575. {
  576. struct bmac_data *bp = (struct bmac_data *) dev->priv;
  577. volatile struct dbdma_regs *td = bp->tx_dma;
  578. int i;
  579. /* see if there's a free slot in the tx ring */
  580. /* XXDEBUG(("bmac_xmit_start: empty=%d fill=%dn", */
  581. /*       bp->tx_empty, bp->tx_fill)); */
  582. i = bp->tx_fill + 1;
  583. if (i >= N_TX_RING)
  584. i = 0;
  585. if (i == bp->tx_empty) {
  586. netif_stop_queue(dev);
  587. bp->tx_fullup = 1;
  588. XXDEBUG(("bmac_transmit_packet: tx ring fulln"));
  589. return -1; /* can't take it at the moment */
  590. }
  591. dbdma_setcmd(&bp->tx_cmds[i], DBDMA_STOP, 0, 0, 0);
  592. bmac_construct_xmt(skb, &bp->tx_cmds[bp->tx_fill]);
  593. bp->tx_bufs[bp->tx_fill] = skb;
  594. bp->tx_fill = i;
  595. bp->stats.tx_bytes += skb->len;
  596. dbdma_continue(td);
  597. return 0;
  598. }
  599. static int rxintcount;
  600. static void bmac_rxdma_intr(int irq, void *dev_id, struct pt_regs *regs)
  601. {
  602. struct net_device *dev = (struct net_device *) dev_id;
  603. struct bmac_data *bp = (struct bmac_data *) dev->priv;
  604. volatile struct dbdma_regs *rd = bp->rx_dma;
  605. volatile struct dbdma_cmd *cp;
  606. int i, nb, stat;
  607. struct sk_buff *skb;
  608. unsigned int residual;
  609. int last;
  610. unsigned long flags;
  611. save_flags(flags); cli();
  612. if (++rxintcount < 10) {
  613. XXDEBUG(("bmac_rxdma_intrn"));
  614. }
  615. last = -1;
  616. i = bp->rx_empty;
  617. while (1) {
  618. cp = &bp->rx_cmds[i];
  619. stat = ld_le16(&cp->xfer_status);
  620. residual = ld_le16(&cp->res_count);
  621. if ((stat & ACTIVE) == 0)
  622. break;
  623. nb = RX_BUFLEN - residual - 2;
  624. if (nb < (ETHERMINPACKET - ETHERCRC)) {
  625. skb = NULL;
  626. bp->stats.rx_length_errors++;
  627. bp->stats.rx_errors++;
  628. } else {
  629. skb = bp->rx_bufs[i];
  630. bp->rx_bufs[i] = NULL;
  631. }
  632. if (skb != NULL) {
  633. nb -= ETHERCRC;
  634. skb_put(skb, nb);
  635. skb->dev = dev;
  636. skb->protocol = eth_type_trans(skb, dev);
  637. netif_rx(skb);
  638. dev->last_rx = jiffies;
  639. ++bp->stats.rx_packets;
  640. bp->stats.rx_bytes += nb;
  641. } else {
  642. ++bp->stats.rx_dropped;
  643. }
  644. dev->last_rx = jiffies;
  645. if ((skb = bp->rx_bufs[i]) == NULL) {
  646. bp->rx_bufs[i] = skb = dev_alloc_skb(RX_BUFLEN+2);
  647. if (skb != NULL)
  648. skb_reserve(bp->rx_bufs[i], 2);
  649. }
  650. bmac_construct_rxbuff(skb, &bp->rx_cmds[i]);
  651. st_le16(&cp->res_count, 0);
  652. st_le16(&cp->xfer_status, 0);
  653. last = i;
  654. if (++i >= N_RX_RING) i = 0;
  655. }
  656. if (last != -1) {
  657. bp->rx_fill = last;
  658. bp->rx_empty = i;
  659. }
  660. restore_flags(flags);
  661. dbdma_continue(rd);
  662. if (rxintcount < 10) {
  663. XXDEBUG(("bmac_rxdma_intr donen"));
  664. }
  665. }
  666. static int txintcount;
  667. static void bmac_txdma_intr(int irq, void *dev_id, struct pt_regs *regs)
  668. {
  669. struct net_device *dev = (struct net_device *) dev_id;
  670. struct bmac_data *bp = (struct bmac_data *) dev->priv;
  671. volatile struct dbdma_cmd *cp;
  672. int stat;
  673. unsigned long flags;
  674. save_flags(flags); cli();
  675. if (txintcount++ < 10) {
  676. XXDEBUG(("bmac_txdma_intrn"));
  677. }
  678. /*     del_timer(&bp->tx_timeout); */
  679. /*     bp->timeout_active = 0; */
  680. while (1) {
  681. cp = &bp->tx_cmds[bp->tx_empty];
  682. stat = ld_le16(&cp->xfer_status);
  683. if (txintcount < 10) {
  684. XXDEBUG(("bmac_txdma_xfer_stat=%#0xn", stat));
  685. }
  686. if (!(stat & ACTIVE)) {
  687. /*
  688.  * status field might not have been filled by DBDMA
  689.  */
  690. if (cp == bus_to_virt(in_le32(&bp->tx_dma->cmdptr)))
  691. break;
  692. }
  693. if (bp->tx_bufs[bp->tx_empty]) {
  694. ++bp->stats.tx_packets;
  695. dev_kfree_skb_irq(bp->tx_bufs[bp->tx_empty]);
  696. }
  697. bp->tx_bufs[bp->tx_empty] = NULL;
  698. bp->tx_fullup = 0;
  699. netif_wake_queue(dev);
  700. if (++bp->tx_empty >= N_TX_RING)
  701. bp->tx_empty = 0;
  702. if (bp->tx_empty == bp->tx_fill)
  703. break;
  704. }
  705. restore_flags(flags);
  706. if (txintcount < 10) {
  707. XXDEBUG(("bmac_txdma_intr done->bmac_startn"));
  708. }
  709. bmac_start(dev);
  710. }
  711. static struct net_device_stats *bmac_stats(struct net_device *dev)
  712. {
  713. struct bmac_data *p = (struct bmac_data *) dev->priv;
  714. return &p->stats;
  715. }
  716. #ifndef SUNHME_MULTICAST
  717. /* Real fast bit-reversal algorithm, 6-bit values */
  718. static int reverse6[64] = {
  719. 0x0,0x20,0x10,0x30,0x8,0x28,0x18,0x38,
  720. 0x4,0x24,0x14,0x34,0xc,0x2c,0x1c,0x3c,
  721. 0x2,0x22,0x12,0x32,0xa,0x2a,0x1a,0x3a,
  722. 0x6,0x26,0x16,0x36,0xe,0x2e,0x1e,0x3e,
  723. 0x1,0x21,0x11,0x31,0x9,0x29,0x19,0x39,
  724. 0x5,0x25,0x15,0x35,0xd,0x2d,0x1d,0x3d,
  725. 0x3,0x23,0x13,0x33,0xb,0x2b,0x1b,0x3b,
  726. 0x7,0x27,0x17,0x37,0xf,0x2f,0x1f,0x3f
  727. };
  728. static unsigned int
  729. crc416(unsigned int curval, unsigned short nxtval)
  730. {
  731. register unsigned int counter, cur = curval, next = nxtval;
  732. register int high_crc_set, low_data_set;
  733. /* Swap bytes */
  734. next = ((next & 0x00FF) << 8) | (next >> 8);
  735. /* Compute bit-by-bit */
  736. for (counter = 0; counter < 16; ++counter) {
  737. /* is high CRC bit set? */
  738. if ((cur & 0x80000000) == 0) high_crc_set = 0;
  739. else high_crc_set = 1;
  740. cur = cur << 1;
  741. if ((next & 0x0001) == 0) low_data_set = 0;
  742. else low_data_set = 1;
  743. next = next >> 1;
  744. /* do the XOR */
  745. if (high_crc_set ^ low_data_set) cur = cur ^ ENET_CRCPOLY;
  746. }
  747. return cur;
  748. }
  749. static unsigned int
  750. bmac_crc(unsigned short *address)
  751. {
  752. unsigned int newcrc;
  753. XXDEBUG(("bmac_crc: addr=%#04x, %#04x, %#04xn", *address, address[1], address[2]));
  754. newcrc = crc416(0xffffffff, *address); /* address bits 47 - 32 */
  755. newcrc = crc416(newcrc, address[1]); /* address bits 31 - 16 */
  756. newcrc = crc416(newcrc, address[2]); /* address bits 15 - 0  */
  757. return(newcrc);
  758. }
  759. /*
  760.  * Add requested mcast addr to BMac's hash table filter.
  761.  *
  762.  */
  763. static void
  764. bmac_addhash(struct bmac_data *bp, unsigned char *addr)
  765. {
  766. unsigned int  crc;
  767. unsigned short  mask;
  768. if (!(*addr)) return;
  769. crc = bmac_crc((unsigned short *)addr) & 0x3f; /* Big-endian alert! */
  770. crc = reverse6[crc]; /* Hyperfast bit-reversing algorithm */
  771. if (bp->hash_use_count[crc]++) return; /* This bit is already set */
  772. mask = crc % 16;
  773. mask = (unsigned char)1 << mask;
  774. bp->hash_use_count[crc/16] |= mask;
  775. }
  776. static void
  777. bmac_removehash(struct bmac_data *bp, unsigned char *addr)
  778. {
  779. unsigned int crc;
  780. unsigned char mask;
  781. /* Now, delete the address from the filter copy, as indicated */
  782. crc = bmac_crc((unsigned short *)addr) & 0x3f; /* Big-endian alert! */
  783. crc = reverse6[crc]; /* Hyperfast bit-reversing algorithm */
  784. if (bp->hash_use_count[crc] == 0) return; /* That bit wasn't in use! */
  785. if (--bp->hash_use_count[crc]) return; /* That bit is still in use */
  786. mask = crc % 16;
  787. mask = ((unsigned char)1 << mask) ^ 0xffff; /* To turn off bit */
  788. bp->hash_table_mask[crc/16] &= mask;
  789. }
  790. /*
  791.  * Sync the adapter with the software copy of the multicast mask
  792.  *  (logical address filter).
  793.  */
  794. static void
  795. bmac_rx_off(struct net_device *dev)
  796. {
  797. unsigned short rx_cfg;
  798. rx_cfg = bmread(dev, RXCFG);
  799. rx_cfg &= ~RxMACEnable;
  800. bmwrite(dev, RXCFG, rx_cfg);
  801. do {
  802. rx_cfg = bmread(dev, RXCFG);
  803. }  while (rx_cfg & RxMACEnable);
  804. }
  805. unsigned short
  806. bmac_rx_on(struct net_device *dev, int hash_enable, int promisc_enable)
  807. {
  808. unsigned short rx_cfg;
  809. rx_cfg = bmread(dev, RXCFG);
  810. rx_cfg |= RxMACEnable;
  811. if (hash_enable) rx_cfg |= RxHashFilterEnable;
  812. else rx_cfg &= ~RxHashFilterEnable;
  813. if (promisc_enable) rx_cfg |= RxPromiscEnable;
  814. else rx_cfg &= ~RxPromiscEnable;
  815. bmwrite(dev, RXRST, RxResetValue);
  816. bmwrite(dev, RXFIFOCSR, 0); /* first disable rxFIFO */
  817. bmwrite(dev, RXFIFOCSR, RxFIFOEnable );
  818. bmwrite(dev, RXCFG, rx_cfg );
  819. return rx_cfg;
  820. }
  821. static void
  822. bmac_update_hash_table_mask(struct net_device *dev, struct bmac_data *bp)
  823. {
  824. bmwrite(dev, BHASH3, bp->hash_table_mask[0]); /* bits 15 - 0 */
  825. bmwrite(dev, BHASH2, bp->hash_table_mask[1]); /* bits 31 - 16 */
  826. bmwrite(dev, BHASH1, bp->hash_table_mask[2]); /* bits 47 - 32 */
  827. bmwrite(dev, BHASH0, bp->hash_table_mask[3]); /* bits 63 - 48 */
  828. }
  829. #if 0
  830. static void
  831. bmac_add_multi(struct net_device *dev,
  832.        struct bmac_data *bp, unsigned char *addr)
  833. {
  834. /* XXDEBUG(("bmac: enter bmac_add_multin")); */
  835. bmac_addhash(bp, addr);
  836. bmac_rx_off(dev);
  837. bmac_update_hash_table_mask(dev, bp);
  838. bmac_rx_on(dev, 1, (dev->flags & IFF_PROMISC)? 1 : 0);
  839. /* XXDEBUG(("bmac: exit bmac_add_multin")); */
  840. }
  841. static void
  842. bmac_remove_multi(struct net_device *dev,
  843.   struct bmac_data *bp, unsigned char *addr)
  844. {
  845. bmac_removehash(bp, addr);
  846. bmac_rx_off(dev);
  847. bmac_update_hash_table_mask(dev, bp);
  848. bmac_rx_on(dev, 1, (dev->flags & IFF_PROMISC)? 1 : 0);
  849. }
  850. #endif
  851. /* Set or clear the multicast filter for this adaptor.
  852.     num_addrs == -1 Promiscuous mode, receive all packets
  853.     num_addrs == 0 Normal mode, clear multicast list
  854.     num_addrs > 0 Multicast mode, receive normal and MC packets, and do
  855. best-effort filtering.
  856.  */
  857. static void bmac_set_multicast(struct net_device *dev)
  858. {
  859. struct dev_mc_list *dmi;
  860. struct bmac_data *bp = (struct bmac_data *) dev->priv;
  861. int num_addrs = dev->mc_count;
  862. unsigned short rx_cfg;
  863. int i;
  864. if (bp->sleeping)
  865. return;
  866. XXDEBUG(("bmac: enter bmac_set_multicast, n_addrs=%dn", num_addrs));
  867. if((dev->flags & IFF_ALLMULTI) || (dev->mc_count > 64)) {
  868. for (i=0; i<4; i++) bp->hash_table_mask[i] = 0xffff;
  869. bmac_update_hash_table_mask(dev, bp);
  870. rx_cfg = bmac_rx_on(dev, 1, 0);
  871. XXDEBUG(("bmac: all multi, rx_cfg=%#08xn"));
  872. } else if ((dev->flags & IFF_PROMISC) || (num_addrs < 0)) {
  873. rx_cfg = bmread(dev, RXCFG);
  874. rx_cfg |= RxPromiscEnable;
  875. bmwrite(dev, RXCFG, rx_cfg);
  876. rx_cfg = bmac_rx_on(dev, 0, 1);
  877. XXDEBUG(("bmac: promisc mode enabled, rx_cfg=%#08xn", rx_cfg));
  878. } else {
  879. for (i=0; i<4; i++) bp->hash_table_mask[i] = 0;
  880. for (i=0; i<64; i++) bp->hash_use_count[i] = 0;
  881. if (num_addrs == 0) {
  882. rx_cfg = bmac_rx_on(dev, 0, 0);
  883. XXDEBUG(("bmac: multi disabled, rx_cfg=%#08xn", rx_cfg));
  884. } else {
  885. for (dmi=dev->mc_list; dmi!=NULL; dmi=dmi->next)
  886. bmac_addhash(bp, dmi->dmi_addr);
  887. bmac_update_hash_table_mask(dev, bp);
  888. rx_cfg = bmac_rx_on(dev, 1, 0);
  889. XXDEBUG(("bmac: multi enabled, rx_cfg=%#08xn", rx_cfg));
  890. }
  891. }
  892. /* XXDEBUG(("bmac: exit bmac_set_multicastn")); */
  893. }
  894. #else /* ifdef SUNHME_MULTICAST */
  895. /* The version of set_multicast below was lifted from sunhme.c */
  896. #define CRC_POLYNOMIAL_BE 0x04c11db7UL  /* Ethernet CRC, big endian */
  897. #define CRC_POLYNOMIAL_LE 0xedb88320UL  /* Ethernet CRC, little endian */
  898. static void bmac_set_multicast(struct net_device *dev)
  899. {
  900. struct dev_mc_list *dmi = dev->mc_list;
  901. char *addrs;
  902. int i, j, bit, byte;
  903. unsigned short rx_cfg;
  904. u32 crc, poly = CRC_POLYNOMIAL_LE;
  905. if((dev->flags & IFF_ALLMULTI) || (dev->mc_count > 64)) {
  906. bmwrite(dev, BHASH0, 0xffff);
  907. bmwrite(dev, BHASH1, 0xffff);
  908. bmwrite(dev, BHASH2, 0xffff);
  909. bmwrite(dev, BHASH3, 0xffff);
  910. } else if(dev->flags & IFF_PROMISC) {
  911. rx_cfg = bmread(dev, RXCFG);
  912. rx_cfg |= RxPromiscEnable;
  913. bmwrite(dev, RXCFG, rx_cfg);
  914. } else {
  915. u16 hash_table[4];
  916. rx_cfg = bmread(dev, RXCFG);
  917. rx_cfg &= ~RxPromiscEnable;
  918. bmwrite(dev, RXCFG, rx_cfg);
  919. for(i = 0; i < 4; i++) hash_table[i] = 0;
  920. for(i = 0; i < dev->mc_count; i++) {
  921. addrs = dmi->dmi_addr;
  922. dmi = dmi->next;
  923. if(!(*addrs & 1))
  924. continue;
  925. crc = 0xffffffffU;
  926. for(byte = 0; byte < 6; byte++) {
  927. for(bit = *addrs++, j = 0; j < 8; j++, bit >>= 1) {
  928. int test;
  929. test = ((bit ^ crc) & 0x01);
  930. crc >>= 1;
  931. if(test)
  932. crc = crc ^ poly;
  933. }
  934. }
  935. crc >>= 26;
  936. hash_table[crc >> 4] |= 1 << (crc & 0xf);
  937. }
  938. bmwrite(dev, BHASH0, hash_table[0]);
  939. bmwrite(dev, BHASH1, hash_table[1]);
  940. bmwrite(dev, BHASH2, hash_table[2]);
  941. bmwrite(dev, BHASH3, hash_table[3]);
  942. }
  943. }
  944. #endif /* SUNHME_MULTICAST */
  945. static int miscintcount;
  946. static void bmac_misc_intr(int irq, void *dev_id, struct pt_regs *regs)
  947. {
  948. struct net_device *dev = (struct net_device *) dev_id;
  949. struct bmac_data *bp = (struct bmac_data *)dev->priv;
  950. unsigned int status = bmread(dev, STATUS);
  951. if (miscintcount++ < 10) {
  952. XXDEBUG(("bmac_misc_intrn"));
  953. }
  954. /* XXDEBUG(("bmac_misc_intr, status=%#08xn", status)); */
  955. /*     bmac_txdma_intr_inner(irq, dev_id, regs); */
  956. /*   if (status & FrameReceived) bp->stats.rx_dropped++; */
  957. if (status & RxErrorMask) bp->stats.rx_errors++;
  958. if (status & RxCRCCntExp) bp->stats.rx_crc_errors++;
  959. if (status & RxLenCntExp) bp->stats.rx_length_errors++;
  960. if (status & RxOverFlow) bp->stats.rx_over_errors++;
  961. if (status & RxAlignCntExp) bp->stats.rx_frame_errors++;
  962. /*   if (status & FrameSent) bp->stats.tx_dropped++; */
  963. if (status & TxErrorMask) bp->stats.tx_errors++;
  964. if (status & TxUnderrun) bp->stats.tx_fifo_errors++;
  965. if (status & TxNormalCollExp) bp->stats.collisions++;
  966. }
  967. /*
  968.  * Procedure for reading EEPROM
  969.  */
  970. #define SROMAddressLength 5
  971. #define DataInOn 0x0008
  972. #define DataInOff 0x0000
  973. #define Clk 0x0002
  974. #define ChipSelect 0x0001
  975. #define SDIShiftCount 3
  976. #define SD0ShiftCount 2
  977. #define DelayValue 1000 /* number of microseconds */
  978. #define SROMStartOffset 10 /* this is in words */
  979. #define SROMReadCount 3 /* number of words to read from SROM */
  980. #define SROMAddressBits 6
  981. #define EnetAddressOffset 20
  982. static unsigned char
  983. bmac_clock_out_bit(struct net_device *dev)
  984. {
  985. unsigned short         data;
  986. unsigned short         val;
  987. bmwrite(dev, SROMCSR, ChipSelect | Clk);
  988. udelay(DelayValue);
  989. data = bmread(dev, SROMCSR);
  990. udelay(DelayValue);
  991. val = (data >> SD0ShiftCount) & 1;
  992. bmwrite(dev, SROMCSR, ChipSelect);
  993. udelay(DelayValue);
  994. return val;
  995. }
  996. static void
  997. bmac_clock_in_bit(struct net_device *dev, unsigned int val)
  998. {
  999. unsigned short data;
  1000. if (val != 0 && val != 1) return;
  1001. data = (val << SDIShiftCount);
  1002. bmwrite(dev, SROMCSR, data | ChipSelect  );
  1003. udelay(DelayValue);
  1004. bmwrite(dev, SROMCSR, data | ChipSelect | Clk );
  1005. udelay(DelayValue);
  1006. bmwrite(dev, SROMCSR, data | ChipSelect);
  1007. udelay(DelayValue);
  1008. }
  1009. static void
  1010. reset_and_select_srom(struct net_device *dev)
  1011. {
  1012. /* first reset */
  1013. bmwrite(dev, SROMCSR, 0);
  1014. udelay(DelayValue);
  1015. /* send it the read command (110) */
  1016. bmac_clock_in_bit(dev, 1);
  1017. bmac_clock_in_bit(dev, 1);
  1018. bmac_clock_in_bit(dev, 0);
  1019. }
  1020. static unsigned short
  1021. read_srom(struct net_device *dev, unsigned int addr, unsigned int addr_len)
  1022. {
  1023. unsigned short data, val;
  1024. int i;
  1025. /* send out the address we want to read from */
  1026. for (i = 0; i < addr_len; i++) {
  1027. val = addr >> (addr_len-i-1);
  1028. bmac_clock_in_bit(dev, val & 1);
  1029. }
  1030. /* Now read in the 16-bit data */
  1031. data = 0;
  1032. for (i = 0; i < 16; i++) {
  1033. val = bmac_clock_out_bit(dev);
  1034. data <<= 1;
  1035. data |= val;
  1036. }
  1037. bmwrite(dev, SROMCSR, 0);
  1038. return data;
  1039. }
  1040. /*
  1041.  * It looks like Cogent and SMC use different methods for calculating
  1042.  * checksums. What a pain..
  1043.  */
  1044. static int
  1045. bmac_verify_checksum(struct net_device *dev)
  1046. {
  1047. unsigned short data, storedCS;
  1048. reset_and_select_srom(dev);
  1049. data = read_srom(dev, 3, SROMAddressBits);
  1050. storedCS = ((data >> 8) & 0x0ff) | ((data << 8) & 0xff00);
  1051. return 0;
  1052. }
  1053. static void
  1054. bmac_get_station_address(struct net_device *dev, unsigned char *ea)
  1055. {
  1056. int i;
  1057. unsigned short data;
  1058. for (i = 0; i < 6; i++)
  1059. {
  1060. reset_and_select_srom(dev);
  1061. data = read_srom(dev, i + EnetAddressOffset/2, SROMAddressBits);
  1062. ea[2*i]   = bitrev(data & 0x0ff);
  1063. ea[2*i+1] = bitrev((data >> 8) & 0x0ff);
  1064. }
  1065. }
  1066. static void bmac_reset_and_enable(struct net_device *dev)
  1067. {
  1068. struct bmac_data *bp = dev->priv;
  1069. unsigned long flags;
  1070. struct sk_buff *skb;
  1071. unsigned char *data;
  1072. save_flags(flags); cli();
  1073. bmac_enable_and_reset_chip(dev);
  1074. bmac_init_tx_ring(bp);
  1075. bmac_init_rx_ring(bp);
  1076. bmac_init_chip(dev);
  1077. bmac_start_chip(dev);
  1078. bmwrite(dev, INTDISABLE, EnableNormal);
  1079. bp->sleeping = 0;
  1080. /*
  1081.  * It seems that the bmac can't receive until it's transmitted
  1082.  * a packet.  So we give it a dummy packet to transmit.
  1083.  */
  1084. skb = dev_alloc_skb(ETHERMINPACKET);
  1085. if (skb != NULL) {
  1086. data = skb_put(skb, ETHERMINPACKET);
  1087. memset(data, 0, ETHERMINPACKET);
  1088. memcpy(data, dev->dev_addr, 6);
  1089. memcpy(data+6, dev->dev_addr, 6);
  1090. bmac_transmit_packet(skb, dev);
  1091. }
  1092. restore_flags(flags);
  1093. }
  1094. static int __init bmac_probe(void)
  1095. {
  1096. struct device_node *bmac;
  1097. MOD_INC_USE_COUNT;
  1098. for (bmac = find_devices("bmac"); bmac != 0; bmac = bmac->next)
  1099. bmac_probe1(bmac, 0);
  1100. for (bmac = find_compatible_devices("network", "bmac+"); bmac != 0;
  1101.      bmac = bmac->next)
  1102. bmac_probe1(bmac, 1);
  1103. if (bmac_devs != 0) {
  1104. proc_net_create ("bmac", 0, bmac_proc_info);
  1105. #ifdef CONFIG_PMAC_PBOOK
  1106. pmu_register_sleep_notifier(&bmac_sleep_notifier);
  1107. #endif
  1108. }
  1109. MOD_DEC_USE_COUNT;
  1110. return bmac_devs? 0: -ENODEV;
  1111. }
  1112. static void __init bmac_probe1(struct device_node *bmac, int is_bmac_plus)
  1113. {
  1114. int j, rev, ret;
  1115. struct bmac_data *bp;
  1116. unsigned char *addr;
  1117. struct net_device *dev;
  1118. if (bmac->n_addrs != 3 || bmac->n_intrs != 3) {
  1119. printk(KERN_ERR "can't use BMAC %s: need 3 addrs and 3 intrsn",
  1120.        bmac->full_name);
  1121. return;
  1122. }
  1123. addr = get_property(bmac, "mac-address", NULL);
  1124. if (addr == NULL) {
  1125. addr = get_property(bmac, "local-mac-address", NULL);
  1126. if (addr == NULL) {
  1127. printk(KERN_ERR "Can't get mac-address for BMAC %sn",
  1128.        bmac->full_name);
  1129. return;
  1130. }
  1131. }
  1132. if (bmac_emergency_rxbuf == NULL) {
  1133. bmac_emergency_rxbuf = kmalloc(RX_BUFLEN, GFP_KERNEL);
  1134. if (bmac_emergency_rxbuf == NULL) {
  1135. printk(KERN_ERR "BMAC: can't allocate emergency RX buffern");
  1136. return;
  1137. }
  1138. }
  1139. dev = init_etherdev(NULL, PRIV_BYTES);
  1140. if (!dev) {
  1141. printk(KERN_ERR "init_etherdev failed, out of memory for BMAC %sn",
  1142.        bmac->full_name);
  1143. return;
  1144. }
  1145. bp = (struct bmac_data *) dev->priv;
  1146. SET_MODULE_OWNER(dev);
  1147. bp->node = bmac;
  1148. if (!request_OF_resource(bmac, 0, " (bmac)")) {
  1149. printk(KERN_ERR "BMAC: can't request IO resource !n");
  1150. goto err_out;
  1151. }
  1152. if (!request_OF_resource(bmac, 1, " (bmac tx dma)")) {
  1153. printk(KERN_ERR "BMAC: can't request TX DMA resource !n");
  1154. goto err_out;
  1155. }
  1156. if (!request_OF_resource(bmac, 2, " (bmac rx dma)")) {
  1157. printk(KERN_ERR "BMAC: can't request RX DMA resource !n");
  1158. goto err_out;
  1159. }
  1160. dev->base_addr = (unsigned long)
  1161. ioremap(bmac->addrs[0].address, bmac->addrs[0].size);
  1162. if (!dev->base_addr)
  1163. goto err_out;
  1164. dev->irq = bmac->intrs[0].line;
  1165. bmac_enable_and_reset_chip(dev);
  1166. bmwrite(dev, INTDISABLE, DisableAll);
  1167. printk(KERN_INFO "%s: BMAC%s at", dev->name, (is_bmac_plus? "+": ""));
  1168. rev = addr[0] == 0 && addr[1] == 0xA0;
  1169. for (j = 0; j < 6; ++j) {
  1170. dev->dev_addr[j] = rev? bitrev(addr[j]): addr[j];
  1171. printk("%c%.2x", (j? ':': ' '), dev->dev_addr[j]);
  1172. }
  1173. XXDEBUG((", base_addr=%#0lx", dev->base_addr));
  1174. printk("n");
  1175. /* Enable chip without interrupts for now */
  1176. bmac_enable_and_reset_chip(dev);
  1177. bmwrite(dev, INTDISABLE, DisableAll);
  1178. dev->open = bmac_open;
  1179. dev->stop = bmac_close;
  1180. dev->hard_start_xmit = bmac_output;
  1181. dev->get_stats = bmac_stats;
  1182. dev->set_multicast_list = bmac_set_multicast;
  1183. dev->set_mac_address = bmac_set_address;
  1184. bmac_get_station_address(dev, addr);
  1185. if (bmac_verify_checksum(dev) != 0)
  1186. goto err_out_iounmap;
  1187. bp->is_bmac_plus = is_bmac_plus;
  1188. bp->tx_dma = (volatile struct dbdma_regs *)
  1189. ioremap(bmac->addrs[1].address, bmac->addrs[1].size);
  1190. if (!bp->tx_dma)
  1191. goto err_out_iounmap;
  1192. bp->tx_dma_intr = bmac->intrs[1].line;
  1193. bp->rx_dma = (volatile struct dbdma_regs *)
  1194. ioremap(bmac->addrs[2].address, bmac->addrs[2].size);
  1195. if (!bp->rx_dma)
  1196. goto err_out_iounmap_tx;
  1197. bp->rx_dma_intr = bmac->intrs[2].line;
  1198. bp->tx_cmds = (volatile struct dbdma_cmd *) DBDMA_ALIGN(bp + 1);
  1199. bp->rx_cmds = bp->tx_cmds + N_TX_RING + 1;
  1200. bp->queue = (struct sk_buff_head *)(bp->rx_cmds + N_RX_RING + 1);
  1201. skb_queue_head_init(bp->queue);
  1202. memset((char *) bp->tx_cmds, 0,
  1203.        (N_TX_RING + N_RX_RING + 2) * sizeof(struct dbdma_cmd));
  1204. /*     init_timer(&bp->tx_timeout); */
  1205. /*     bp->timeout_active = 0; */
  1206. ret = request_irq(dev->irq, bmac_misc_intr, 0, "BMAC-misc", dev);
  1207. if (ret) {
  1208. printk(KERN_ERR "BMAC: can't get irq %dn", dev->irq);
  1209. goto err_out_iounmap_rx;
  1210. }
  1211. ret = request_irq(bmac->intrs[1].line, bmac_txdma_intr, 0, "BMAC-txdma", dev);
  1212. if (ret) {
  1213. printk(KERN_ERR "BMAC: can't get irq %dn", bmac->intrs[1].line);
  1214. goto err_out_irq0;
  1215. }
  1216. ret = request_irq(bmac->intrs[2].line, bmac_rxdma_intr, 0, "BMAC-rxdma", dev);
  1217. if (ret) {
  1218. printk(KERN_ERR "BMAC: can't get irq %dn", bmac->intrs[2].line);
  1219. goto err_out_irq1;
  1220. }
  1221. /* Mask chip interrupts and disable chip, will be
  1222.  * re-enabled on open()
  1223.  */
  1224. disable_irq(dev->irq);
  1225. pmac_call_feature(PMAC_FTR_BMAC_ENABLE, bp->node, 0, 0);
  1226. bp->next_bmac = bmac_devs;
  1227. bmac_devs = dev;
  1228. return;
  1229. err_out_irq1:
  1230. free_irq(bmac->intrs[1].line, dev);
  1231. err_out_irq0:
  1232. free_irq(dev->irq, dev);
  1233. err_out_iounmap_rx:
  1234. iounmap((void *)bp->rx_dma);
  1235. err_out_iounmap_tx:
  1236. iounmap((void *)bp->tx_dma);
  1237. err_out_iounmap:
  1238. iounmap((void *)dev->base_addr);
  1239. err_out:
  1240. if (bp->node) {
  1241. release_OF_resource(bp->node, 0);
  1242. release_OF_resource(bp->node, 1);
  1243. release_OF_resource(bp->node, 2);
  1244. pmac_call_feature(PMAC_FTR_BMAC_ENABLE, bp->node, 0, 0);
  1245. }
  1246. unregister_netdev(dev);
  1247. kfree(dev);
  1248. }
  1249. static int bmac_open(struct net_device *dev)
  1250. {
  1251. struct bmac_data *bp = (struct bmac_data *) dev->priv;
  1252. /* XXDEBUG(("bmac: enter openn")); */
  1253. /* reset the chip */
  1254. bp->opened = 1;
  1255. bmac_reset_and_enable(dev);
  1256. enable_irq(dev->irq);
  1257. dev->flags |= IFF_RUNNING;
  1258. return 0;
  1259. }
  1260. static int bmac_close(struct net_device *dev)
  1261. {
  1262. struct bmac_data *bp = (struct bmac_data *) dev->priv;
  1263. volatile struct dbdma_regs *rd = bp->rx_dma;
  1264. volatile struct dbdma_regs *td = bp->tx_dma;
  1265. unsigned short config;
  1266. int i;
  1267. bp->sleeping = 1;
  1268. dev->flags &= ~(IFF_UP | IFF_RUNNING);
  1269. /* disable rx and tx */
  1270. config = bmread(dev, RXCFG);
  1271. bmwrite(dev, RXCFG, (config & ~RxMACEnable));
  1272. config = bmread(dev, TXCFG);
  1273. bmwrite(dev, TXCFG, (config & ~TxMACEnable));
  1274. bmwrite(dev, INTDISABLE, DisableAll); /* disable all intrs */
  1275. /* disable rx and tx dma */
  1276. st_le32(&rd->control, DBDMA_CLEAR(RUN|PAUSE|FLUSH|WAKE)); /* clear run bit */
  1277. st_le32(&td->control, DBDMA_CLEAR(RUN|PAUSE|FLUSH|WAKE)); /* clear run bit */
  1278. /* free some skb's */
  1279. XXDEBUG(("bmac: free rx bufsn"));
  1280. for (i=0; i<N_RX_RING; i++) {
  1281. if (bp->rx_bufs[i] != NULL) {
  1282. dev_kfree_skb(bp->rx_bufs[i]);
  1283. bp->rx_bufs[i] = NULL;
  1284. }
  1285. }
  1286. XXDEBUG(("bmac: free tx bufsn"));
  1287. for (i = 0; i<N_TX_RING; i++) {
  1288. if (bp->tx_bufs[i] != NULL) {
  1289. dev_kfree_skb(bp->tx_bufs[i]);
  1290. bp->tx_bufs[i] = NULL;
  1291. }
  1292. }
  1293. XXDEBUG(("bmac: all bufs freedn"));
  1294. bp->opened = 0;
  1295. disable_irq(dev->irq);
  1296. pmac_call_feature(PMAC_FTR_BMAC_ENABLE, bp->node, 0, 0);
  1297. return 0;
  1298. }
  1299. static void
  1300. bmac_start(struct net_device *dev)
  1301. {
  1302. struct bmac_data *bp = dev->priv;
  1303. int i;
  1304. struct sk_buff *skb;
  1305. unsigned long flags;
  1306. if (bp->sleeping)
  1307. return;
  1308. save_flags(flags); cli();
  1309. while (1) {
  1310. i = bp->tx_fill + 1;
  1311. if (i >= N_TX_RING)
  1312. i = 0;
  1313. if (i == bp->tx_empty)
  1314. break;
  1315. skb = skb_dequeue(bp->queue);
  1316. if (skb == NULL)
  1317. break;
  1318. bmac_transmit_packet(skb, dev);
  1319. }
  1320. restore_flags(flags);
  1321. }
  1322. static int
  1323. bmac_output(struct sk_buff *skb, struct net_device *dev)
  1324. {
  1325. struct bmac_data *bp = dev->priv;
  1326. skb_queue_tail(bp->queue, skb);
  1327. bmac_start(dev);
  1328. return 0;
  1329. }
  1330. static void bmac_tx_timeout(unsigned long data)
  1331. {
  1332. struct net_device *dev = (struct net_device *) data;
  1333. struct bmac_data *bp = (struct bmac_data *) dev->priv;
  1334. volatile struct dbdma_regs *td = bp->tx_dma;
  1335. volatile struct dbdma_regs *rd = bp->rx_dma;
  1336. volatile struct dbdma_cmd *cp;
  1337. unsigned long flags;
  1338. unsigned short config, oldConfig;
  1339. int i;
  1340. XXDEBUG(("bmac: tx_timeout calledn"));
  1341. save_flags(flags); cli();
  1342. bp->timeout_active = 0;
  1343. /* update various counters */
  1344. /*      bmac_handle_misc_intrs(bp, 0); */
  1345. cp = &bp->tx_cmds[bp->tx_empty];
  1346. /* XXDEBUG((KERN_DEBUG "bmac: tx dmastat=%x %x runt=%d pr=%x fs=%x fc=%xn", */
  1347. /*     ld_le32(&td->status), ld_le16(&cp->xfer_status), bp->tx_bad_runt, */
  1348. /*     mb->pr, mb->xmtfs, mb->fifofc)); */
  1349. /* turn off both tx and rx and reset the chip */
  1350. config = bmread(dev, RXCFG);
  1351. bmwrite(dev, RXCFG, (config & ~RxMACEnable));
  1352. config = bmread(dev, TXCFG);
  1353. bmwrite(dev, TXCFG, (config & ~TxMACEnable));
  1354. out_le32(&td->control, DBDMA_CLEAR(RUN|PAUSE|FLUSH|WAKE|ACTIVE|DEAD));
  1355. printk(KERN_ERR "bmac: transmit timeout - resettingn");
  1356. bmac_enable_and_reset_chip(dev);
  1357. /* restart rx dma */
  1358. cp = bus_to_virt(ld_le32(&rd->cmdptr));
  1359. out_le32(&rd->control, DBDMA_CLEAR(RUN|PAUSE|FLUSH|WAKE|ACTIVE|DEAD));
  1360. out_le16(&cp->xfer_status, 0);
  1361. out_le32(&rd->cmdptr, virt_to_bus(cp));
  1362. out_le32(&rd->control, DBDMA_SET(RUN|WAKE));
  1363. /* fix up the transmit side */
  1364. XXDEBUG((KERN_DEBUG "bmac: tx empty=%d fill=%d fullup=%dn",
  1365.  bp->tx_empty, bp->tx_fill, bp->tx_fullup));
  1366. i = bp->tx_empty;
  1367. ++bp->stats.tx_errors;
  1368. if (i != bp->tx_fill) {
  1369. dev_kfree_skb(bp->tx_bufs[i]);
  1370. bp->tx_bufs[i] = NULL;
  1371. if (++i >= N_TX_RING) i = 0;
  1372. bp->tx_empty = i;
  1373. }
  1374. bp->tx_fullup = 0;
  1375. netif_wake_queue(dev);
  1376. if (i != bp->tx_fill) {
  1377. cp = &bp->tx_cmds[i];
  1378. out_le16(&cp->xfer_status, 0);
  1379. out_le16(&cp->command, OUTPUT_LAST);
  1380. out_le32(&td->cmdptr, virt_to_bus(cp));
  1381. out_le32(&td->control, DBDMA_SET(RUN));
  1382. /*  bmac_set_timeout(dev); */
  1383. XXDEBUG((KERN_DEBUG "bmac: starting %dn", i));
  1384. }
  1385. /* turn it back on */
  1386. oldConfig = bmread(dev, RXCFG);
  1387. bmwrite(dev, RXCFG, oldConfig | RxMACEnable );
  1388. oldConfig = bmread(dev, TXCFG);
  1389. bmwrite(dev, TXCFG, oldConfig | TxMACEnable );
  1390. restore_flags(flags);
  1391. }
  1392. #if 0
  1393. static void dump_dbdma(volatile struct dbdma_cmd *cp,int count)
  1394. {
  1395. int i,*ip;
  1396. for (i=0;i< count;i++) {
  1397. ip = (int*)(cp+i);
  1398. printk("dbdma req 0x%x addr 0x%x baddr 0x%x xfer/res 0x%xn",
  1399.        ld_le32(ip+0),
  1400.        ld_le32(ip+1),
  1401.        ld_le32(ip+2),
  1402.        ld_le32(ip+3));
  1403. }
  1404. }
  1405. #endif
  1406. static int
  1407. bmac_proc_info(char *buffer, char **start, off_t offset, int length)
  1408. {
  1409. int len = 0;
  1410. off_t pos   = 0;
  1411. off_t begin = 0;
  1412. int i;
  1413. if (bmac_devs == NULL)
  1414. return (-ENOSYS);
  1415. len += sprintf(buffer, "BMAC counters & registersn");
  1416. for (i = 0; i<N_REG_ENTRIES; i++) {
  1417. len += sprintf(buffer + len, "%s: %#08xn",
  1418.        reg_entries[i].name,
  1419.        bmread(bmac_devs, reg_entries[i].reg_offset));
  1420. pos = begin + len;
  1421. if (pos < offset) {
  1422. len = 0;
  1423. begin = pos;
  1424. }
  1425. if (pos > offset+length) break;
  1426. }
  1427. *start = buffer + (offset - begin);
  1428. len -= (offset - begin);
  1429. if (len > length) len = length;
  1430. return len;
  1431. }
  1432. MODULE_AUTHOR("Randy Gobbel/Paul Mackerras");
  1433. MODULE_DESCRIPTION("PowerMac BMAC ethernet driver.");
  1434. MODULE_LICENSE("GPL");
  1435. EXPORT_NO_SYMBOLS;
  1436. static void __exit bmac_cleanup (void)
  1437. {
  1438. struct bmac_data *bp;
  1439. struct net_device *dev;
  1440. if (bmac_emergency_rxbuf != NULL) {
  1441. kfree(bmac_emergency_rxbuf);
  1442. bmac_emergency_rxbuf = NULL;
  1443. }
  1444. if (bmac_devs == 0)
  1445. return;
  1446. #ifdef CONFIG_PMAC_PBOOK
  1447. pmu_unregister_sleep_notifier(&bmac_sleep_notifier);
  1448. #endif
  1449. proc_net_remove("bmac");
  1450. do {
  1451. dev = bmac_devs;
  1452. bp = (struct bmac_data *) dev->priv;
  1453. bmac_devs = bp->next_bmac;
  1454. unregister_netdev(dev);
  1455. release_OF_resource(bp->node, 0);
  1456. release_OF_resource(bp->node, 1);
  1457. release_OF_resource(bp->node, 2);
  1458. free_irq(dev->irq, dev);
  1459. free_irq(bp->tx_dma_intr, dev);
  1460. free_irq(bp->rx_dma_intr, dev);
  1461. kfree(dev);
  1462. } while (bmac_devs != NULL);
  1463. }
  1464. module_init(bmac_probe);
  1465. module_exit(bmac_cleanup);