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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Network device driver for the MACE ethernet controller on
  3.  * Apple Powermacs.  Assumes it's under a DBDMA controller.
  4.  *
  5.  * Copyright (C) 1996 Paul Mackerras.
  6.  */
  7. #include <linux/config.h>
  8. #include <linux/module.h>
  9. #include <linux/version.h>
  10. #include <linux/kernel.h>
  11. #include <linux/netdevice.h>
  12. #include <linux/etherdevice.h>
  13. #include <linux/delay.h>
  14. #include <linux/string.h>
  15. #include <linux/timer.h>
  16. #include <linux/init.h>
  17. #include <asm/prom.h>
  18. #include <asm/dbdma.h>
  19. #include <asm/io.h>
  20. #include <asm/pgtable.h>
  21. #include "mace.h"
  22. static struct net_device *mace_devs;
  23. static int port_aaui = -1;
  24. #define N_RX_RING 8
  25. #define N_TX_RING 6
  26. #define MAX_TX_ACTIVE 1
  27. #define NCMDS_TX 1 /* dma commands per element in tx ring */
  28. #define RX_BUFLEN (ETH_FRAME_LEN + 8)
  29. #define TX_TIMEOUT HZ /* 1 second */
  30. /* Chip rev needs workaround on HW & multicast addr change */
  31. #define BROKEN_ADDRCHG_REV 0x0941
  32. /* Bits in transmit DMA status */
  33. #define TX_DMA_ERR 0x80
  34. struct mace_data {
  35.     volatile struct mace *mace;
  36.     volatile struct dbdma_regs *tx_dma;
  37.     int tx_dma_intr;
  38.     volatile struct dbdma_regs *rx_dma;
  39.     int rx_dma_intr;
  40.     volatile struct dbdma_cmd *tx_cmds; /* xmit dma command list */
  41.     volatile struct dbdma_cmd *rx_cmds; /* recv dma command list */
  42.     struct sk_buff *rx_bufs[N_RX_RING];
  43.     int rx_fill;
  44.     int rx_empty;
  45.     struct sk_buff *tx_bufs[N_TX_RING];
  46.     int tx_fill;
  47.     int tx_empty;
  48.     unsigned char maccc;
  49.     unsigned char tx_fullup;
  50.     unsigned char tx_active;
  51.     unsigned char tx_bad_runt;
  52.     struct net_device_stats stats;
  53.     struct timer_list tx_timeout;
  54.     int timeout_active;
  55.     int port_aaui;
  56.     int chipid;
  57.     struct device_node* of_node;
  58.     struct net_device *next_mace;
  59. };
  60. /*
  61.  * Number of bytes of private data per MACE: allow enough for
  62.  * the rx and tx dma commands plus a branch dma command each,
  63.  * and another 16 bytes to allow us to align the dma command
  64.  * buffers on a 16 byte boundary.
  65.  */
  66. #define PRIV_BYTES (sizeof(struct mace_data) 
  67. + (N_RX_RING + NCMDS_TX * N_TX_RING + 3) * sizeof(struct dbdma_cmd))
  68. static int bitrev(int);
  69. static int mace_probe(void);
  70. static void mace_probe1(struct device_node *mace);
  71. static int mace_open(struct net_device *dev);
  72. static int mace_close(struct net_device *dev);
  73. static int mace_xmit_start(struct sk_buff *skb, struct net_device *dev);
  74. static struct net_device_stats *mace_stats(struct net_device *dev);
  75. static void mace_set_multicast(struct net_device *dev);
  76. static void mace_reset(struct net_device *dev);
  77. static int mace_set_address(struct net_device *dev, void *addr);
  78. static void mace_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  79. static void mace_txdma_intr(int irq, void *dev_id, struct pt_regs *regs);
  80. static void mace_rxdma_intr(int irq, void *dev_id, struct pt_regs *regs);
  81. static void mace_set_timeout(struct net_device *dev);
  82. static void mace_tx_timeout(unsigned long data);
  83. static inline void dbdma_reset(volatile struct dbdma_regs *dma);
  84. static inline void mace_clean_rings(struct mace_data *mp);
  85. static void __mace_set_address(struct net_device *dev, void *addr);
  86. /*
  87.  * If we can't get a skbuff when we need it, we use this area for DMA.
  88.  */
  89. static unsigned char *dummy_buf;
  90. /* Bit-reverse one byte of an ethernet hardware address. */
  91. static inline int
  92. bitrev(int b)
  93. {
  94.     int d = 0, i;
  95.     for (i = 0; i < 8; ++i, b >>= 1)
  96. d = (d << 1) | (b & 1);
  97.     return d;
  98. }
  99. static int __init mace_probe(void)
  100. {
  101. struct device_node *mace;
  102. for (mace = find_devices("mace"); mace != NULL; mace = mace->next)
  103. mace_probe1(mace);
  104. return mace_devs? 0: -ENODEV;
  105. }
  106. static void __init mace_probe1(struct device_node *mace)
  107. {
  108. int j, rev;
  109. struct net_device *dev;
  110. struct mace_data *mp;
  111. unsigned char *addr;
  112. if (mace->n_addrs != 3 || mace->n_intrs != 3) {
  113. printk(KERN_ERR "can't use MACE %s: need 3 addrs and 3 irqsn",
  114.        mace->full_name);
  115. return;
  116. }
  117. addr = get_property(mace, "mac-address", NULL);
  118. if (addr == NULL) {
  119. addr = get_property(mace, "local-mac-address", NULL);
  120. if (addr == NULL) {
  121. printk(KERN_ERR "Can't get mac-address for MACE %sn",
  122.        mace->full_name);
  123. return;
  124. }
  125. }
  126. if (dummy_buf == NULL) {
  127. dummy_buf = kmalloc(RX_BUFLEN+2, GFP_KERNEL);
  128. if (dummy_buf == NULL) {
  129. printk(KERN_ERR "MACE: couldn't allocate dummy buffern");
  130. return;
  131. }
  132. }
  133. dev = init_etherdev(0, PRIV_BYTES);
  134. if (!dev)
  135. return;
  136. SET_MODULE_OWNER(dev);
  137. mp = dev->priv;
  138. mp->of_node = mace;
  139. if (!request_OF_resource(mace, 0, " (mace)")) {
  140. printk(KERN_ERR "MACE: can't request IO resource !n");
  141. goto err_out;
  142. }
  143. if (!request_OF_resource(mace, 1, " (mace tx dma)")) {
  144. printk(KERN_ERR "MACE: can't request TX DMA resource !n");
  145. goto err_out;
  146. }
  147. if (!request_OF_resource(mace, 2, " (mace tx dma)")) {
  148. printk(KERN_ERR "MACE: can't request RX DMA resource !n");
  149. goto err_out;
  150. }
  151. dev->base_addr = mace->addrs[0].address;
  152. mp->mace = (volatile struct mace *)
  153. ioremap(mace->addrs[0].address, 0x1000);
  154. dev->irq = mace->intrs[0].line;
  155. printk(KERN_INFO "%s: MACE at", dev->name);
  156. rev = addr[0] == 0 && addr[1] == 0xA0;
  157. for (j = 0; j < 6; ++j) {
  158. dev->dev_addr[j] = rev? bitrev(addr[j]): addr[j];
  159. printk("%c%.2x", (j? ':': ' '), dev->dev_addr[j]);
  160. }
  161. mp->chipid = (in_8(&mp->mace->chipid_hi) << 8) |
  162. in_8(&mp->mace->chipid_lo);
  163. printk(", chip revision %d.%dn", mp->chipid >> 8, mp->chipid & 0xff);
  164. mp = (struct mace_data *) dev->priv;
  165. mp->maccc = ENXMT | ENRCV;
  166. mp->tx_dma = (volatile struct dbdma_regs *)
  167. ioremap(mace->addrs[1].address, 0x1000);
  168. mp->tx_dma_intr = mace->intrs[1].line;
  169. mp->rx_dma = (volatile struct dbdma_regs *)
  170. ioremap(mace->addrs[2].address, 0x1000);
  171. mp->rx_dma_intr = mace->intrs[2].line;
  172. mp->tx_cmds = (volatile struct dbdma_cmd *) DBDMA_ALIGN(mp + 1);
  173. mp->rx_cmds = mp->tx_cmds + NCMDS_TX * N_TX_RING + 1;
  174. memset(&mp->stats, 0, sizeof(mp->stats));
  175. memset((char *) mp->tx_cmds, 0,
  176.        (NCMDS_TX*N_TX_RING + N_RX_RING + 2) * sizeof(struct dbdma_cmd));
  177. init_timer(&mp->tx_timeout);
  178. mp->timeout_active = 0;
  179. if (port_aaui >= 0)
  180. mp->port_aaui = port_aaui;
  181. else {
  182. /* Apple Network Server uses the AAUI port */
  183. if (machine_is_compatible("AAPL,ShinerESB"))
  184. mp->port_aaui = 1;
  185. else {
  186. #ifdef CONFIG_MACE_AAUI_PORT
  187. mp->port_aaui = 1;
  188. #else
  189. mp->port_aaui = 0;
  190. #endif
  191. }
  192. }
  193. dev->open = mace_open;
  194. dev->stop = mace_close;
  195. dev->hard_start_xmit = mace_xmit_start;
  196. dev->get_stats = mace_stats;
  197. dev->set_multicast_list = mace_set_multicast;
  198. dev->set_mac_address = mace_set_address;
  199. ether_setup(dev);
  200. mace_reset(dev);
  201. if (request_irq(dev->irq, mace_interrupt, 0, "MACE", dev))
  202. printk(KERN_ERR "MACE: can't get irq %dn", dev->irq);
  203. if (request_irq(mace->intrs[1].line, mace_txdma_intr, 0, "MACE-txdma",
  204. dev))
  205. printk(KERN_ERR "MACE: can't get irq %dn", mace->intrs[1].line);
  206. if (request_irq(mace->intrs[2].line, mace_rxdma_intr, 0, "MACE-rxdma",
  207. dev))
  208. printk(KERN_ERR "MACE: can't get irq %dn", mace->intrs[2].line);
  209. mp->next_mace = mace_devs;
  210. mace_devs = dev;
  211. return;
  212. err_out:
  213. unregister_netdev(dev);
  214. if (mp->of_node) {
  215. release_OF_resource(mp->of_node, 0);
  216. release_OF_resource(mp->of_node, 1);
  217. release_OF_resource(mp->of_node, 2);
  218. }
  219. kfree(dev);
  220. }
  221. static void dbdma_reset(volatile struct dbdma_regs *dma)
  222. {
  223.     int i;
  224.     out_le32(&dma->control, (WAKE|FLUSH|PAUSE|RUN) << 16);
  225.     /*
  226.      * Yes this looks peculiar, but apparently it needs to be this
  227.      * way on some machines.
  228.      */
  229.     for (i = 200; i > 0; --i)
  230. if (ld_le32(&dma->control) & RUN)
  231.     udelay(1);
  232. }
  233. static void mace_reset(struct net_device *dev)
  234. {
  235.     struct mace_data *mp = (struct mace_data *) dev->priv;
  236.     volatile struct mace *mb = mp->mace;
  237.     int i;
  238.     /* soft-reset the chip */
  239.     i = 200;
  240.     while (--i) {
  241. out_8(&mb->biucc, SWRST);
  242. if (in_8(&mb->biucc) & SWRST) {
  243.     udelay(10);
  244.     continue;
  245. }
  246. break;
  247.     }
  248.     if (!i) {
  249. printk(KERN_ERR "mace: cannot reset chip!n");
  250. return;
  251.     }
  252.     out_8(&mb->imr, 0xff); /* disable all intrs for now */
  253.     i = in_8(&mb->ir);
  254.     out_8(&mb->maccc, 0); /* turn off tx, rx */
  255.     out_8(&mb->biucc, XMTSP_64);
  256.     out_8(&mb->utr, RTRD);
  257.     out_8(&mb->fifocc, RCVFW_32 | XMTFW_16 | XMTFWU | RCVFWU | XMTBRST);
  258.     out_8(&mb->xmtfc, AUTO_PAD_XMIT); /* auto-pad short frames */
  259.     out_8(&mb->rcvfc, 0);
  260.     /* load up the hardware address */
  261.     __mace_set_address(dev, dev->dev_addr);
  262.     /* clear the multicast filter */
  263.     if (mp->chipid == BROKEN_ADDRCHG_REV)
  264. out_8(&mb->iac, LOGADDR);
  265.     else {
  266. out_8(&mb->iac, ADDRCHG | LOGADDR);
  267. while ((in_8(&mb->iac) & ADDRCHG) != 0)
  268. ;
  269.     }
  270.     for (i = 0; i < 8; ++i)
  271. out_8(&mb->ladrf, 0);
  272.     /* done changing address */
  273.     if (mp->chipid != BROKEN_ADDRCHG_REV)
  274. out_8(&mb->iac, 0);
  275.     if (mp->port_aaui)
  276.      out_8(&mb->plscc, PORTSEL_AUI + ENPLSIO);
  277.     else
  278.      out_8(&mb->plscc, PORTSEL_GPSI + ENPLSIO);
  279. }
  280. static void __mace_set_address(struct net_device *dev, void *addr)
  281. {
  282.     struct mace_data *mp = (struct mace_data *) dev->priv;
  283.     volatile struct mace *mb = mp->mace;
  284.     unsigned char *p = addr;
  285.     int i;
  286.     /* load up the hardware address */
  287.     if (mp->chipid == BROKEN_ADDRCHG_REV)
  288.      out_8(&mb->iac, PHYADDR);
  289.     else {
  290.      out_8(&mb->iac, ADDRCHG | PHYADDR);
  291. while ((in_8(&mb->iac) & ADDRCHG) != 0)
  292.     ;
  293.     }
  294.     for (i = 0; i < 6; ++i)
  295. out_8(&mb->padr, dev->dev_addr[i] = p[i]);
  296.     if (mp->chipid != BROKEN_ADDRCHG_REV)
  297.         out_8(&mb->iac, 0);
  298. }
  299. static int mace_set_address(struct net_device *dev, void *addr)
  300. {
  301.     struct mace_data *mp = (struct mace_data *) dev->priv;
  302.     volatile struct mace *mb = mp->mace;
  303.     unsigned long flags;
  304.     save_flags(flags); cli();
  305.     __mace_set_address(dev, addr);
  306.     /* note: setting ADDRCHG clears ENRCV */
  307.     out_8(&mb->maccc, mp->maccc);
  308.     restore_flags(flags);
  309.     return 0;
  310. }
  311. static int mace_open(struct net_device *dev)
  312. {
  313.     struct mace_data *mp = (struct mace_data *) dev->priv;
  314.     volatile struct mace *mb = mp->mace;
  315.     volatile struct dbdma_regs *rd = mp->rx_dma;
  316.     volatile struct dbdma_regs *td = mp->tx_dma;
  317.     volatile struct dbdma_cmd *cp;
  318.     int i;
  319.     struct sk_buff *skb;
  320.     unsigned char *data;
  321.     /* reset the chip */
  322.     mace_reset(dev);
  323.     /* initialize list of sk_buffs for receiving and set up recv dma */
  324.     mace_clean_rings(mp);
  325.     memset((char *)mp->rx_cmds, 0, N_RX_RING * sizeof(struct dbdma_cmd));
  326.     cp = mp->rx_cmds;
  327.     for (i = 0; i < N_RX_RING - 1; ++i) {
  328. skb = dev_alloc_skb(RX_BUFLEN + 2);
  329. if (skb == 0) {
  330.     data = dummy_buf;
  331. } else {
  332.     skb_reserve(skb, 2); /* so IP header lands on 4-byte bdry */
  333.     data = skb->data;
  334. }
  335. mp->rx_bufs[i] = skb;
  336. st_le16(&cp->req_count, RX_BUFLEN);
  337. st_le16(&cp->command, INPUT_LAST + INTR_ALWAYS);
  338. st_le32(&cp->phy_addr, virt_to_bus(data));
  339. cp->xfer_status = 0;
  340. ++cp;
  341.     }
  342.     mp->rx_bufs[i] = 0;
  343.     st_le16(&cp->command, DBDMA_STOP);
  344.     mp->rx_fill = i;
  345.     mp->rx_empty = 0;
  346.     /* Put a branch back to the beginning of the receive command list */
  347.     ++cp;
  348.     st_le16(&cp->command, DBDMA_NOP + BR_ALWAYS);
  349.     st_le32(&cp->cmd_dep, virt_to_bus(mp->rx_cmds));
  350.     /* start rx dma */
  351.     out_le32(&rd->control, (RUN|PAUSE|FLUSH|WAKE) << 16); /* clear run bit */
  352.     out_le32(&rd->cmdptr, virt_to_bus(mp->rx_cmds));
  353.     out_le32(&rd->control, (RUN << 16) | RUN);
  354.     /* put a branch at the end of the tx command list */
  355.     cp = mp->tx_cmds + NCMDS_TX * N_TX_RING;
  356.     st_le16(&cp->command, DBDMA_NOP + BR_ALWAYS);
  357.     st_le32(&cp->cmd_dep, virt_to_bus(mp->tx_cmds));
  358.     /* reset tx dma */
  359.     out_le32(&td->control, (RUN|PAUSE|FLUSH|WAKE) << 16);
  360.     out_le32(&td->cmdptr, virt_to_bus(mp->tx_cmds));
  361.     mp->tx_fill = 0;
  362.     mp->tx_empty = 0;
  363.     mp->tx_fullup = 0;
  364.     mp->tx_active = 0;
  365.     mp->tx_bad_runt = 0;
  366.     /* turn it on! */
  367.     out_8(&mb->maccc, mp->maccc);
  368.     /* enable all interrupts except receive interrupts */
  369.     out_8(&mb->imr, RCVINT);
  370.     return 0;
  371. }
  372. static inline void mace_clean_rings(struct mace_data *mp)
  373. {
  374.     int i;
  375.     /* free some skb's */
  376.     for (i = 0; i < N_RX_RING; ++i) {
  377. if (mp->rx_bufs[i] != 0) {
  378.     dev_kfree_skb(mp->rx_bufs[i]);
  379.     mp->rx_bufs[i] = 0;
  380. }
  381.     }
  382.     for (i = mp->tx_empty; i != mp->tx_fill; ) {
  383. dev_kfree_skb(mp->tx_bufs[i]);
  384. if (++i >= N_TX_RING)
  385.     i = 0;
  386.     }
  387. }
  388. static int mace_close(struct net_device *dev)
  389. {
  390.     struct mace_data *mp = (struct mace_data *) dev->priv;
  391.     volatile struct mace *mb = mp->mace;
  392.     volatile struct dbdma_regs *rd = mp->rx_dma;
  393.     volatile struct dbdma_regs *td = mp->tx_dma;
  394.     /* disable rx and tx */
  395.     out_8(&mb->maccc, 0);
  396.     out_8(&mb->imr, 0xff); /* disable all intrs */
  397.     /* disable rx and tx dma */
  398.     st_le32(&rd->control, (RUN|PAUSE|FLUSH|WAKE) << 16); /* clear run bit */
  399.     st_le32(&td->control, (RUN|PAUSE|FLUSH|WAKE) << 16); /* clear run bit */
  400.     mace_clean_rings(mp);
  401.     return 0;
  402. }
  403. static inline void mace_set_timeout(struct net_device *dev)
  404. {
  405.     struct mace_data *mp = (struct mace_data *) dev->priv;
  406.     unsigned long flags;
  407.     save_flags(flags);
  408.     cli();
  409.     if (mp->timeout_active)
  410. del_timer(&mp->tx_timeout);
  411.     mp->tx_timeout.expires = jiffies + TX_TIMEOUT;
  412.     mp->tx_timeout.function = mace_tx_timeout;
  413.     mp->tx_timeout.data = (unsigned long) dev;
  414.     add_timer(&mp->tx_timeout);
  415.     mp->timeout_active = 1;
  416.     restore_flags(flags);
  417. }
  418. static int mace_xmit_start(struct sk_buff *skb, struct net_device *dev)
  419. {
  420.     struct mace_data *mp = (struct mace_data *) dev->priv;
  421.     volatile struct dbdma_regs *td = mp->tx_dma;
  422.     volatile struct dbdma_cmd *cp, *np;
  423.     unsigned long flags;
  424.     int fill, next, len;
  425.     /* see if there's a free slot in the tx ring */
  426.     save_flags(flags); cli();
  427.     fill = mp->tx_fill;
  428.     next = fill + 1;
  429.     if (next >= N_TX_RING)
  430. next = 0;
  431.     if (next == mp->tx_empty) {
  432. netif_stop_queue(dev);
  433. mp->tx_fullup = 1;
  434. restore_flags(flags);
  435. return 1; /* can't take it at the moment */
  436.     }
  437.     restore_flags(flags);
  438.     /* partially fill in the dma command block */
  439.     len = skb->len;
  440.     if (len > ETH_FRAME_LEN) {
  441. printk(KERN_DEBUG "mace: xmit frame too long (%d)n", len);
  442. len = ETH_FRAME_LEN;
  443.     }
  444.     mp->tx_bufs[fill] = skb;
  445.     cp = mp->tx_cmds + NCMDS_TX * fill;
  446.     st_le16(&cp->req_count, len);
  447.     st_le32(&cp->phy_addr, virt_to_bus(skb->data));
  448.     np = mp->tx_cmds + NCMDS_TX * next;
  449.     out_le16(&np->command, DBDMA_STOP);
  450.     /* poke the tx dma channel */
  451.     save_flags(flags);
  452.     cli();
  453.     mp->tx_fill = next;
  454.     if (!mp->tx_bad_runt && mp->tx_active < MAX_TX_ACTIVE) {
  455. out_le16(&cp->xfer_status, 0);
  456. out_le16(&cp->command, OUTPUT_LAST);
  457. out_le32(&td->control, ((RUN|WAKE) << 16) + (RUN|WAKE));
  458. ++mp->tx_active;
  459. mace_set_timeout(dev);
  460.     }
  461.     if (++next >= N_TX_RING)
  462. next = 0;
  463.     if (next == mp->tx_empty)
  464. netif_stop_queue(dev);
  465.     restore_flags(flags);
  466.     return 0;
  467. }
  468. static struct net_device_stats *mace_stats(struct net_device *dev)
  469. {
  470.     struct mace_data *p = (struct mace_data *) dev->priv;
  471.     return &p->stats;
  472. }
  473. /*
  474.  * CRC polynomial - used in working out multicast filter bits.
  475.  */
  476. #define CRC_POLY 0xedb88320
  477. static void mace_set_multicast(struct net_device *dev)
  478. {
  479.     struct mace_data *mp = (struct mace_data *) dev->priv;
  480.     volatile struct mace *mb = mp->mace;
  481.     int i, j, k, b;
  482.     unsigned long crc;
  483.     mp->maccc &= ~PROM;
  484.     if (dev->flags & IFF_PROMISC) {
  485. mp->maccc |= PROM;
  486.     } else {
  487. unsigned char multicast_filter[8];
  488. struct dev_mc_list *dmi = dev->mc_list;
  489. if (dev->flags & IFF_ALLMULTI) {
  490.     for (i = 0; i < 8; i++)
  491. multicast_filter[i] = 0xff;
  492. } else {
  493.     for (i = 0; i < 8; i++)
  494. multicast_filter[i] = 0;
  495.     for (i = 0; i < dev->mc_count; i++) {
  496. crc = ~0;
  497. for (j = 0; j < 6; ++j) {
  498.     b = dmi->dmi_addr[j];
  499.     for (k = 0; k < 8; ++k) {
  500. if ((crc ^ b) & 1)
  501.     crc = (crc >> 1) ^ CRC_POLY;
  502. else
  503.     crc >>= 1;
  504. b >>= 1;
  505.     }
  506. }
  507. j = crc >> 26; /* bit number in multicast_filter */
  508. multicast_filter[j >> 3] |= 1 << (j & 7);
  509. dmi = dmi->next;
  510.     }
  511. }
  512. #if 0
  513. printk("Multicast filter :");
  514. for (i = 0; i < 8; i++)
  515.     printk("%02x ", multicast_filter[i]);
  516. printk("n");
  517. #endif
  518. if (mp->chipid == BROKEN_ADDRCHG_REV)
  519.     out_8(&mb->iac, LOGADDR);
  520. else {
  521.     out_8(&mb->iac, ADDRCHG | LOGADDR);
  522.     while ((in_8(&mb->iac) & ADDRCHG) != 0)
  523. ;
  524. }
  525. for (i = 0; i < 8; ++i)
  526.     out_8(&mb->ladrf, multicast_filter[i]);
  527. if (mp->chipid != BROKEN_ADDRCHG_REV)
  528.     out_8(&mb->iac, 0);
  529.     }
  530.     /* reset maccc */
  531.     out_8(&mb->maccc, mp->maccc);
  532. }
  533. static void mace_handle_misc_intrs(struct mace_data *mp, int intr)
  534. {
  535.     volatile struct mace *mb = mp->mace;
  536.     static int mace_babbles, mace_jabbers;
  537.     if (intr & MPCO)
  538. mp->stats.rx_missed_errors += 256;
  539.     mp->stats.rx_missed_errors += in_8(&mb->mpc);   /* reading clears it */
  540.     if (intr & RNTPCO)
  541. mp->stats.rx_length_errors += 256;
  542.     mp->stats.rx_length_errors += in_8(&mb->rntpc); /* reading clears it */
  543.     if (intr & CERR)
  544. ++mp->stats.tx_heartbeat_errors;
  545.     if (intr & BABBLE)
  546. if (mace_babbles++ < 4)
  547.     printk(KERN_DEBUG "mace: babbling transmittern");
  548.     if (intr & JABBER)
  549. if (mace_jabbers++ < 4)
  550.     printk(KERN_DEBUG "mace: jabbering transceivern");
  551. }
  552. static void mace_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  553. {
  554.     struct net_device *dev = (struct net_device *) dev_id;
  555.     struct mace_data *mp = (struct mace_data *) dev->priv;
  556.     volatile struct mace *mb = mp->mace;
  557.     volatile struct dbdma_regs *td = mp->tx_dma;
  558.     volatile struct dbdma_cmd *cp;
  559.     int intr, fs, i, stat, x;
  560.     int xcount, dstat;
  561.     /* static int mace_last_fs, mace_last_xcount; */
  562.     intr = in_8(&mb->ir); /* read interrupt register */
  563.     in_8(&mb->xmtrc); /* get retries */
  564.     mace_handle_misc_intrs(mp, intr);
  565.     i = mp->tx_empty;
  566.     while (in_8(&mb->pr) & XMTSV) {
  567. del_timer(&mp->tx_timeout);
  568. mp->timeout_active = 0;
  569. /*
  570.  * Clear any interrupt indication associated with this status
  571.  * word.  This appears to unlatch any error indication from
  572.  * the DMA controller.
  573.  */
  574. intr = in_8(&mb->ir);
  575. if (intr != 0)
  576.     mace_handle_misc_intrs(mp, intr);
  577. if (mp->tx_bad_runt) {
  578.     fs = in_8(&mb->xmtfs);
  579.     mp->tx_bad_runt = 0;
  580.     out_8(&mb->xmtfc, AUTO_PAD_XMIT);
  581.     continue;
  582. }
  583. dstat = ld_le32(&td->status);
  584. /* stop DMA controller */
  585. out_le32(&td->control, RUN << 16);
  586. /*
  587.  * xcount is the number of complete frames which have been
  588.  * written to the fifo but for which status has not been read.
  589.  */
  590. xcount = (in_8(&mb->fifofc) >> XMTFC_SH) & XMTFC_MASK;
  591. if (xcount == 0 || (dstat & DEAD)) {
  592.     /*
  593.      * If a packet was aborted before the DMA controller has
  594.      * finished transferring it, it seems that there are 2 bytes
  595.      * which are stuck in some buffer somewhere.  These will get
  596.      * transmitted as soon as we read the frame status (which
  597.      * reenables the transmit data transfer request).  Turning
  598.      * off the DMA controller and/or resetting the MACE doesn't
  599.      * help.  So we disable auto-padding and FCS transmission
  600.      * so the two bytes will only be a runt packet which should
  601.      * be ignored by other stations.
  602.      */
  603.     out_8(&mb->xmtfc, DXMTFCS);
  604. }
  605. fs = in_8(&mb->xmtfs);
  606. if ((fs & XMTSV) == 0) {
  607.     printk(KERN_ERR "mace: xmtfs not valid! (fs=%x xc=%d ds=%x)n",
  608.    fs, xcount, dstat);
  609.     mace_reset(dev);
  610. /*
  611.  * XXX mace likes to hang the machine after a xmtfs error.
  612.  * This is hard to reproduce, reseting *may* help
  613.  */
  614. }
  615. cp = mp->tx_cmds + NCMDS_TX * i;
  616. stat = ld_le16(&cp->xfer_status);
  617. if ((fs & (UFLO|LCOL|LCAR|RTRY)) || (dstat & DEAD) || xcount == 0) {
  618.     /*
  619.      * Check whether there were in fact 2 bytes written to
  620.      * the transmit FIFO.
  621.      */
  622.     udelay(1);
  623.     x = (in_8(&mb->fifofc) >> XMTFC_SH) & XMTFC_MASK;
  624.     if (x != 0) {
  625. /* there were two bytes with an end-of-packet indication */
  626. mp->tx_bad_runt = 1;
  627. mace_set_timeout(dev);
  628.     } else {
  629. /*
  630.  * Either there weren't the two bytes buffered up, or they
  631.  * didn't have an end-of-packet indication.
  632.  * We flush the transmit FIFO just in case (by setting the
  633.  * XMTFWU bit with the transmitter disabled).
  634.  */
  635. out_8(&mb->maccc, in_8(&mb->maccc) & ~ENXMT);
  636. out_8(&mb->fifocc, in_8(&mb->fifocc) | XMTFWU);
  637. udelay(1);
  638. out_8(&mb->maccc, in_8(&mb->maccc) | ENXMT);
  639. out_8(&mb->xmtfc, AUTO_PAD_XMIT);
  640.     }
  641. }
  642. /* dma should have finished */
  643. if (i == mp->tx_fill) {
  644.     printk(KERN_DEBUG "mace: tx ring ran out? (fs=%x xc=%d ds=%x)n",
  645.    fs, xcount, dstat);
  646.     continue;
  647. }
  648. /* Update stats */
  649. if (fs & (UFLO|LCOL|LCAR|RTRY)) {
  650.     ++mp->stats.tx_errors;
  651.     if (fs & LCAR)
  652. ++mp->stats.tx_carrier_errors;
  653.     if (fs & (UFLO|LCOL|RTRY))
  654. ++mp->stats.tx_aborted_errors;
  655. } else {
  656.     mp->stats.tx_bytes += mp->tx_bufs[i]->len;
  657.     ++mp->stats.tx_packets;
  658. }
  659. dev_kfree_skb_irq(mp->tx_bufs[i]);
  660. --mp->tx_active;
  661. if (++i >= N_TX_RING)
  662.     i = 0;
  663. #if 0
  664. mace_last_fs = fs;
  665. mace_last_xcount = xcount;
  666. #endif
  667.     }
  668.     if (i != mp->tx_empty) {
  669. mp->tx_fullup = 0;
  670. netif_wake_queue(dev);
  671.     }
  672.     mp->tx_empty = i;
  673.     i += mp->tx_active;
  674.     if (i >= N_TX_RING)
  675. i -= N_TX_RING;
  676.     if (!mp->tx_bad_runt && i != mp->tx_fill && mp->tx_active < MAX_TX_ACTIVE) {
  677. do {
  678.     /* set up the next one */
  679.     cp = mp->tx_cmds + NCMDS_TX * i;
  680.     out_le16(&cp->xfer_status, 0);
  681.     out_le16(&cp->command, OUTPUT_LAST);
  682.     ++mp->tx_active;
  683.     if (++i >= N_TX_RING)
  684. i = 0;
  685. } while (i != mp->tx_fill && mp->tx_active < MAX_TX_ACTIVE);
  686. out_le32(&td->control, ((RUN|WAKE) << 16) + (RUN|WAKE));
  687. mace_set_timeout(dev);
  688.     }
  689. }
  690. static void mace_tx_timeout(unsigned long data)
  691. {
  692.     struct net_device *dev = (struct net_device *) data;
  693.     struct mace_data *mp = (struct mace_data *) dev->priv;
  694.     volatile struct mace *mb = mp->mace;
  695.     volatile struct dbdma_regs *td = mp->tx_dma;
  696.     volatile struct dbdma_regs *rd = mp->rx_dma;
  697.     volatile struct dbdma_cmd *cp;
  698.     unsigned long flags;
  699.     int i;
  700.     save_flags(flags);
  701.     cli();
  702.     mp->timeout_active = 0;
  703.     if (mp->tx_active == 0 && !mp->tx_bad_runt)
  704. goto out;
  705.     /* update various counters */
  706.     mace_handle_misc_intrs(mp, in_8(&mb->ir));
  707.     cp = mp->tx_cmds + NCMDS_TX * mp->tx_empty;
  708.     /* turn off both tx and rx and reset the chip */
  709.     out_8(&mb->maccc, 0);
  710.     printk(KERN_ERR "mace: transmit timeout - resettingn");
  711.     dbdma_reset(td);
  712.     mace_reset(dev);
  713.     /* restart rx dma */
  714.     cp = bus_to_virt(ld_le32(&rd->cmdptr));
  715.     dbdma_reset(rd);
  716.     out_le16(&cp->xfer_status, 0);
  717.     out_le32(&rd->cmdptr, virt_to_bus(cp));
  718.     out_le32(&rd->control, (RUN << 16) | RUN);
  719.     /* fix up the transmit side */
  720.     i = mp->tx_empty;
  721.     mp->tx_active = 0;
  722.     ++mp->stats.tx_errors;
  723.     if (mp->tx_bad_runt) {
  724. mp->tx_bad_runt = 0;
  725.     } else if (i != mp->tx_fill) {
  726. dev_kfree_skb(mp->tx_bufs[i]);
  727. if (++i >= N_TX_RING)
  728.     i = 0;
  729. mp->tx_empty = i;
  730.     }
  731.     mp->tx_fullup = 0;
  732.     netif_wake_queue(dev);
  733.     if (i != mp->tx_fill) {
  734. cp = mp->tx_cmds + NCMDS_TX * i;
  735. out_le16(&cp->xfer_status, 0);
  736. out_le16(&cp->command, OUTPUT_LAST);
  737. out_le32(&td->cmdptr, virt_to_bus(cp));
  738. out_le32(&td->control, (RUN << 16) | RUN);
  739. ++mp->tx_active;
  740. mace_set_timeout(dev);
  741.     }
  742.     /* turn it back on */
  743.     out_8(&mb->imr, RCVINT);
  744.     out_8(&mb->maccc, mp->maccc);
  745. out:
  746.     restore_flags(flags);
  747. }
  748. static void mace_txdma_intr(int irq, void *dev_id, struct pt_regs *regs)
  749. {
  750. }
  751. static void mace_rxdma_intr(int irq, void *dev_id, struct pt_regs *regs)
  752. {
  753.     struct net_device *dev = (struct net_device *) dev_id;
  754.     struct mace_data *mp = (struct mace_data *) dev->priv;
  755.     volatile struct dbdma_regs *rd = mp->rx_dma;
  756.     volatile struct dbdma_cmd *cp, *np;
  757.     int i, nb, stat, next;
  758.     struct sk_buff *skb;
  759.     unsigned frame_status;
  760.     static int mace_lost_status;
  761.     unsigned char *data;
  762.     for (i = mp->rx_empty; i != mp->rx_fill; ) {
  763. cp = mp->rx_cmds + i;
  764. stat = ld_le16(&cp->xfer_status);
  765. if ((stat & ACTIVE) == 0) {
  766.     next = i + 1;
  767.     if (next >= N_RX_RING)
  768. next = 0;
  769.     np = mp->rx_cmds + next;
  770.     if (next != mp->rx_fill
  771. && (ld_le16(&np->xfer_status) & ACTIVE) != 0) {
  772. printk(KERN_DEBUG "mace: lost a status wordn");
  773. ++mace_lost_status;
  774.     } else
  775. break;
  776. }
  777. nb = ld_le16(&cp->req_count) - ld_le16(&cp->res_count);
  778. out_le16(&cp->command, DBDMA_STOP);
  779. /* got a packet, have a look at it */
  780. skb = mp->rx_bufs[i];
  781. if (skb == 0) {
  782.     ++mp->stats.rx_dropped;
  783. } else if (nb > 8) {
  784.     data = skb->data;
  785.     frame_status = (data[nb-3] << 8) + data[nb-4];
  786.     if (frame_status & (RS_OFLO|RS_CLSN|RS_FRAMERR|RS_FCSERR)) {
  787. ++mp->stats.rx_errors;
  788. if (frame_status & RS_OFLO)
  789.     ++mp->stats.rx_over_errors;
  790. if (frame_status & RS_FRAMERR)
  791.     ++mp->stats.rx_frame_errors;
  792. if (frame_status & RS_FCSERR)
  793.     ++mp->stats.rx_crc_errors;
  794.     } else {
  795. /* Mace feature AUTO_STRIP_RCV is on by default, dropping the
  796.  * FCS on frames with 802.3 headers. This means that Ethernet
  797.  * frames have 8 extra octets at the end, while 802.3 frames
  798.  * have only 4. We need to correctly account for this. */
  799. if (*(unsigned short *)(data+12) < 1536) /* 802.3 header */
  800.     nb -= 4;
  801. else /* Ethernet header; mace includes FCS */
  802.     nb -= 8;
  803. skb_put(skb, nb);
  804. skb->dev = dev;
  805. skb->protocol = eth_type_trans(skb, dev);
  806. mp->stats.rx_bytes += skb->len;
  807. netif_rx(skb);
  808. dev->last_rx = jiffies;
  809. mp->rx_bufs[i] = 0;
  810. ++mp->stats.rx_packets;
  811.     }
  812. } else {
  813.     ++mp->stats.rx_errors;
  814.     ++mp->stats.rx_length_errors;
  815. }
  816. /* advance to next */
  817. if (++i >= N_RX_RING)
  818.     i = 0;
  819.     }
  820.     mp->rx_empty = i;
  821.     i = mp->rx_fill;
  822.     for (;;) {
  823. next = i + 1;
  824. if (next >= N_RX_RING)
  825.     next = 0;
  826. if (next == mp->rx_empty)
  827.     break;
  828. cp = mp->rx_cmds + i;
  829. skb = mp->rx_bufs[i];
  830. if (skb == 0) {
  831.     skb = dev_alloc_skb(RX_BUFLEN + 2);
  832.     if (skb != 0) {
  833. skb_reserve(skb, 2);
  834. mp->rx_bufs[i] = skb;
  835.     }
  836. }
  837. st_le16(&cp->req_count, RX_BUFLEN);
  838. data = skb? skb->data: dummy_buf;
  839. st_le32(&cp->phy_addr, virt_to_bus(data));
  840. out_le16(&cp->xfer_status, 0);
  841. out_le16(&cp->command, INPUT_LAST + INTR_ALWAYS);
  842. #if 0
  843. if ((ld_le32(&rd->status) & ACTIVE) != 0) {
  844.     out_le32(&rd->control, (PAUSE << 16) | PAUSE);
  845.     while ((in_le32(&rd->status) & ACTIVE) != 0)
  846. ;
  847. }
  848. #endif
  849. i = next;
  850.     }
  851.     if (i != mp->rx_fill) {
  852. out_le32(&rd->control, ((RUN|WAKE) << 16) | (RUN|WAKE));
  853. mp->rx_fill = i;
  854.     }
  855. }
  856. MODULE_AUTHOR("Paul Mackerras");
  857. MODULE_DESCRIPTION("PowerMac MACE driver.");
  858. MODULE_PARM(port_aaui, "i");
  859. MODULE_PARM_DESC(port_aaui, "MACE uses AAUI port (0-1)");
  860. MODULE_LICENSE("GPL");
  861. EXPORT_NO_SYMBOLS;
  862. static void __exit mace_cleanup (void)
  863. {
  864.     struct net_device *dev;
  865.     struct mace_data *mp;
  866.     while ((dev = mace_devs) != 0) {
  867. mp = (struct mace_data *) mace_devs->priv;
  868. mace_devs = mp->next_mace;
  869. unregister_netdev(dev);
  870. free_irq(dev->irq, dev);
  871. free_irq(mp->tx_dma_intr, dev);
  872. free_irq(mp->rx_dma_intr, dev);
  873. release_OF_resource(mp->of_node, 0);
  874. release_OF_resource(mp->of_node, 1);
  875. release_OF_resource(mp->of_node, 2);
  876. kfree(dev);
  877.     }
  878.     if (dummy_buf != NULL) {
  879. kfree(dummy_buf);
  880. dummy_buf = NULL;
  881.     }
  882. }
  883. module_init(mace_probe);
  884. module_exit(mace_cleanup);