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

Linux/Unix编程

开发平台:

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