Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * sgiseeq.c: Seeq8003 ethernet driver for SGI machines. |
| 3 | * |
Justin P. Mattock | 79add62 | 2011-04-04 14:15:29 -0700 | [diff] [blame] | 4 | * Copyright (C) 1996 David S. Miller (davem@davemloft.net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
Ralf Baechle | a4d4d51 | 2006-03-08 11:49:31 +0000 | [diff] [blame] | 6 | |
| 7 | #undef DEBUG |
| 8 | |
Alexey Dobriyan | b7f080c | 2011-06-16 11:01:34 +0000 | [diff] [blame] | 9 | #include <linux/dma-mapping.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/kernel.h> |
| 11 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 12 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/errno.h> |
| 14 | #include <linux/init.h> |
| 15 | #include <linux/types.h> |
| 16 | #include <linux/interrupt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/string.h> |
| 18 | #include <linux/delay.h> |
| 19 | #include <linux/netdevice.h> |
Ralf Baechle | df9f540 | 2007-05-11 15:48:58 +0100 | [diff] [blame] | 20 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/etherdevice.h> |
| 22 | #include <linux/skbuff.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <asm/sgi/hpc3.h> |
| 25 | #include <asm/sgi/ip22.h> |
Ralf Baechle | df9f540 | 2007-05-11 15:48:58 +0100 | [diff] [blame] | 26 | #include <asm/sgi/seeq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
| 28 | #include "sgiseeq.h" |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | static char *sgiseeqstr = "SGI Seeq8003"; |
| 31 | |
| 32 | /* |
| 33 | * If you want speed, you do something silly, it always has worked for me. So, |
| 34 | * with that in mind, I've decided to make this driver look completely like a |
| 35 | * stupid Lance from a driver architecture perspective. Only difference is that |
| 36 | * here our "ring buffer" looks and acts like a real Lance one does but is |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 37 | * laid out like how the HPC DMA and the Seeq want it to. You'd be surprised |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | * how a stupid idea like this can pay off in performance, not to mention |
| 39 | * making this driver 2,000 times easier to write. ;-) |
| 40 | */ |
| 41 | |
| 42 | /* Tune these if we tend to run out often etc. */ |
| 43 | #define SEEQ_RX_BUFFERS 16 |
| 44 | #define SEEQ_TX_BUFFERS 16 |
| 45 | |
| 46 | #define PKT_BUF_SZ 1584 |
| 47 | |
| 48 | #define NEXT_RX(i) (((i) + 1) & (SEEQ_RX_BUFFERS - 1)) |
| 49 | #define NEXT_TX(i) (((i) + 1) & (SEEQ_TX_BUFFERS - 1)) |
| 50 | #define PREV_RX(i) (((i) - 1) & (SEEQ_RX_BUFFERS - 1)) |
| 51 | #define PREV_TX(i) (((i) - 1) & (SEEQ_TX_BUFFERS - 1)) |
| 52 | |
| 53 | #define TX_BUFFS_AVAIL(sp) ((sp->tx_old <= sp->tx_new) ? \ |
| 54 | sp->tx_old + (SEEQ_TX_BUFFERS - 1) - sp->tx_new : \ |
| 55 | sp->tx_old - sp->tx_new - 1) |
| 56 | |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 57 | #define VIRT_TO_DMA(sp, v) ((sp)->srings_dma + \ |
| 58 | (dma_addr_t)((unsigned long)(v) - \ |
| 59 | (unsigned long)((sp)->rx_desc))) |
| 60 | |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 61 | /* Copy frames shorter than rx_copybreak, otherwise pass on up in |
| 62 | * a full sized sk_buff. Value of 100 stolen from tulip.c (!alpha). |
| 63 | */ |
| 64 | static int rx_copybreak = 100; |
| 65 | |
| 66 | #define PAD_SIZE (128 - sizeof(struct hpc_dma_desc) - sizeof(void *)) |
| 67 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | struct sgiseeq_rx_desc { |
| 69 | volatile struct hpc_dma_desc rdma; |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 70 | u8 padding[PAD_SIZE]; |
| 71 | struct sk_buff *skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | }; |
| 73 | |
| 74 | struct sgiseeq_tx_desc { |
| 75 | volatile struct hpc_dma_desc tdma; |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 76 | u8 padding[PAD_SIZE]; |
| 77 | struct sk_buff *skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | }; |
| 79 | |
| 80 | /* |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 81 | * Warning: This structure is laid out in a certain way because HPC dma |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | * descriptors must be 8-byte aligned. So don't touch this without |
| 83 | * some care. |
| 84 | */ |
| 85 | struct sgiseeq_init_block { /* Note the name ;-) */ |
| 86 | struct sgiseeq_rx_desc rxvector[SEEQ_RX_BUFFERS]; |
| 87 | struct sgiseeq_tx_desc txvector[SEEQ_TX_BUFFERS]; |
| 88 | }; |
| 89 | |
| 90 | struct sgiseeq_private { |
| 91 | struct sgiseeq_init_block *srings; |
Ralf Baechle | 99cd149 | 2007-09-04 14:41:01 +0100 | [diff] [blame] | 92 | dma_addr_t srings_dma; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
| 94 | /* Ptrs to the descriptors in uncached space. */ |
| 95 | struct sgiseeq_rx_desc *rx_desc; |
| 96 | struct sgiseeq_tx_desc *tx_desc; |
| 97 | |
| 98 | char *name; |
| 99 | struct hpc3_ethregs *hregs; |
| 100 | struct sgiseeq_regs *sregs; |
| 101 | |
| 102 | /* Ring entry counters. */ |
| 103 | unsigned int rx_new, tx_new; |
| 104 | unsigned int rx_old, tx_old; |
| 105 | |
| 106 | int is_edlc; |
| 107 | unsigned char control; |
| 108 | unsigned char mode; |
| 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | spinlock_t tx_lock; |
| 111 | }; |
| 112 | |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 113 | static inline void dma_sync_desc_cpu(struct net_device *dev, void *addr) |
| 114 | { |
| 115 | dma_cache_sync(dev->dev.parent, addr, sizeof(struct sgiseeq_rx_desc), |
| 116 | DMA_FROM_DEVICE); |
| 117 | } |
| 118 | |
| 119 | static inline void dma_sync_desc_dev(struct net_device *dev, void *addr) |
| 120 | { |
| 121 | dma_cache_sync(dev->dev.parent, addr, sizeof(struct sgiseeq_rx_desc), |
| 122 | DMA_TO_DEVICE); |
| 123 | } |
| 124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | static inline void hpc3_eth_reset(struct hpc3_ethregs *hregs) |
| 126 | { |
Ralf Baechle | 302a5c4b | 2005-10-10 14:50:56 +0100 | [diff] [blame] | 127 | hregs->reset = HPC3_ERST_CRESET | HPC3_ERST_CLRIRQ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | udelay(20); |
Ralf Baechle | 302a5c4b | 2005-10-10 14:50:56 +0100 | [diff] [blame] | 129 | hregs->reset = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | static inline void reset_hpc3_and_seeq(struct hpc3_ethregs *hregs, |
| 133 | struct sgiseeq_regs *sregs) |
| 134 | { |
| 135 | hregs->rx_ctrl = hregs->tx_ctrl = 0; |
| 136 | hpc3_eth_reset(hregs); |
| 137 | } |
| 138 | |
| 139 | #define RSTAT_GO_BITS (SEEQ_RCMD_IGOOD | SEEQ_RCMD_IEOF | SEEQ_RCMD_ISHORT | \ |
| 140 | SEEQ_RCMD_IDRIB | SEEQ_RCMD_ICRC) |
| 141 | |
| 142 | static inline void seeq_go(struct sgiseeq_private *sp, |
| 143 | struct hpc3_ethregs *hregs, |
| 144 | struct sgiseeq_regs *sregs) |
| 145 | { |
| 146 | sregs->rstat = sp->mode | RSTAT_GO_BITS; |
| 147 | hregs->rx_ctrl = HPC3_ERXCTRL_ACTIVE; |
| 148 | } |
| 149 | |
| 150 | static inline void __sgiseeq_set_mac_address(struct net_device *dev) |
| 151 | { |
| 152 | struct sgiseeq_private *sp = netdev_priv(dev); |
| 153 | struct sgiseeq_regs *sregs = sp->sregs; |
| 154 | int i; |
| 155 | |
| 156 | sregs->tstat = SEEQ_TCMD_RB0; |
| 157 | for (i = 0; i < 6; i++) |
| 158 | sregs->rw.eth_addr[i] = dev->dev_addr[i]; |
| 159 | } |
| 160 | |
| 161 | static int sgiseeq_set_mac_address(struct net_device *dev, void *addr) |
| 162 | { |
| 163 | struct sgiseeq_private *sp = netdev_priv(dev); |
| 164 | struct sockaddr *sa = addr; |
| 165 | |
| 166 | memcpy(dev->dev_addr, sa->sa_data, dev->addr_len); |
| 167 | |
| 168 | spin_lock_irq(&sp->tx_lock); |
| 169 | __sgiseeq_set_mac_address(dev); |
| 170 | spin_unlock_irq(&sp->tx_lock); |
| 171 | |
| 172 | return 0; |
| 173 | } |
| 174 | |
| 175 | #define TCNTINFO_INIT (HPCDMA_EOX | HPCDMA_ETXD) |
| 176 | #define RCNTCFG_INIT (HPCDMA_OWN | HPCDMA_EORP | HPCDMA_XIE) |
| 177 | #define RCNTINFO_INIT (RCNTCFG_INIT | (PKT_BUF_SZ & HPCDMA_BCNT)) |
| 178 | |
| 179 | static int seeq_init_ring(struct net_device *dev) |
| 180 | { |
| 181 | struct sgiseeq_private *sp = netdev_priv(dev); |
| 182 | int i; |
| 183 | |
| 184 | netif_stop_queue(dev); |
| 185 | sp->rx_new = sp->tx_new = 0; |
| 186 | sp->rx_old = sp->tx_old = 0; |
| 187 | |
| 188 | __sgiseeq_set_mac_address(dev); |
| 189 | |
| 190 | /* Setup tx ring. */ |
| 191 | for(i = 0; i < SEEQ_TX_BUFFERS; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | sp->tx_desc[i].tdma.cntinfo = TCNTINFO_INIT; |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 193 | dma_sync_desc_dev(dev, &sp->tx_desc[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | /* And now the rx ring. */ |
| 197 | for (i = 0; i < SEEQ_RX_BUFFERS; i++) { |
Thomas Bogendoerfer | a24a789 | 2008-01-13 00:08:47 +0100 | [diff] [blame] | 198 | if (!sp->rx_desc[i].skb) { |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 199 | dma_addr_t dma_addr; |
| 200 | struct sk_buff *skb = netdev_alloc_skb(dev, PKT_BUF_SZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 202 | if (skb == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | return -ENOMEM; |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 204 | skb_reserve(skb, 2); |
| 205 | dma_addr = dma_map_single(dev->dev.parent, |
| 206 | skb->data - 2, |
| 207 | PKT_BUF_SZ, DMA_FROM_DEVICE); |
| 208 | sp->rx_desc[i].skb = skb; |
| 209 | sp->rx_desc[i].rdma.pbuf = dma_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | } |
| 211 | sp->rx_desc[i].rdma.cntinfo = RCNTINFO_INIT; |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 212 | dma_sync_desc_dev(dev, &sp->rx_desc[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | } |
| 214 | sp->rx_desc[i - 1].rdma.cntinfo |= HPCDMA_EOR; |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 215 | dma_sync_desc_dev(dev, &sp->rx_desc[i - 1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | return 0; |
| 217 | } |
| 218 | |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 219 | static void seeq_purge_ring(struct net_device *dev) |
| 220 | { |
| 221 | struct sgiseeq_private *sp = netdev_priv(dev); |
| 222 | int i; |
| 223 | |
| 224 | /* clear tx ring. */ |
| 225 | for (i = 0; i < SEEQ_TX_BUFFERS; i++) { |
| 226 | if (sp->tx_desc[i].skb) { |
| 227 | dev_kfree_skb(sp->tx_desc[i].skb); |
| 228 | sp->tx_desc[i].skb = NULL; |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | /* And now the rx ring. */ |
| 233 | for (i = 0; i < SEEQ_RX_BUFFERS; i++) { |
| 234 | if (sp->rx_desc[i].skb) { |
| 235 | dev_kfree_skb(sp->rx_desc[i].skb); |
| 236 | sp->rx_desc[i].skb = NULL; |
| 237 | } |
| 238 | } |
| 239 | } |
| 240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | #ifdef DEBUG |
| 242 | static struct sgiseeq_private *gpriv; |
| 243 | static struct net_device *gdev; |
| 244 | |
Ralf Baechle | a4d4d51 | 2006-03-08 11:49:31 +0000 | [diff] [blame] | 245 | static void sgiseeq_dump_rings(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | { |
| 247 | static int once; |
| 248 | struct sgiseeq_rx_desc *r = gpriv->rx_desc; |
| 249 | struct sgiseeq_tx_desc *t = gpriv->tx_desc; |
| 250 | struct hpc3_ethregs *hregs = gpriv->hregs; |
| 251 | int i; |
| 252 | |
| 253 | if (once) |
| 254 | return; |
| 255 | once++; |
| 256 | printk("RING DUMP:\n"); |
| 257 | for (i = 0; i < SEEQ_RX_BUFFERS; i++) { |
| 258 | printk("RX [%d]: @(%p) [%08x,%08x,%08x] ", |
| 259 | i, (&r[i]), r[i].rdma.pbuf, r[i].rdma.cntinfo, |
| 260 | r[i].rdma.pnext); |
| 261 | i += 1; |
| 262 | printk("-- [%d]: @(%p) [%08x,%08x,%08x]\n", |
| 263 | i, (&r[i]), r[i].rdma.pbuf, r[i].rdma.cntinfo, |
| 264 | r[i].rdma.pnext); |
| 265 | } |
| 266 | for (i = 0; i < SEEQ_TX_BUFFERS; i++) { |
| 267 | printk("TX [%d]: @(%p) [%08x,%08x,%08x] ", |
| 268 | i, (&t[i]), t[i].tdma.pbuf, t[i].tdma.cntinfo, |
| 269 | t[i].tdma.pnext); |
| 270 | i += 1; |
| 271 | printk("-- [%d]: @(%p) [%08x,%08x,%08x]\n", |
| 272 | i, (&t[i]), t[i].tdma.pbuf, t[i].tdma.cntinfo, |
| 273 | t[i].tdma.pnext); |
| 274 | } |
| 275 | printk("INFO: [rx_new = %d rx_old=%d] [tx_new = %d tx_old = %d]\n", |
| 276 | gpriv->rx_new, gpriv->rx_old, gpriv->tx_new, gpriv->tx_old); |
| 277 | printk("RREGS: rx_cbptr[%08x] rx_ndptr[%08x] rx_ctrl[%08x]\n", |
| 278 | hregs->rx_cbptr, hregs->rx_ndptr, hregs->rx_ctrl); |
| 279 | printk("TREGS: tx_cbptr[%08x] tx_ndptr[%08x] tx_ctrl[%08x]\n", |
| 280 | hregs->tx_cbptr, hregs->tx_ndptr, hregs->tx_ctrl); |
| 281 | } |
| 282 | #endif |
| 283 | |
| 284 | #define TSTAT_INIT_SEEQ (SEEQ_TCMD_IPT|SEEQ_TCMD_I16|SEEQ_TCMD_IC|SEEQ_TCMD_IUF) |
| 285 | #define TSTAT_INIT_EDLC ((TSTAT_INIT_SEEQ) | SEEQ_TCMD_RB2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
| 287 | static int init_seeq(struct net_device *dev, struct sgiseeq_private *sp, |
| 288 | struct sgiseeq_regs *sregs) |
| 289 | { |
| 290 | struct hpc3_ethregs *hregs = sp->hregs; |
| 291 | int err; |
| 292 | |
| 293 | reset_hpc3_and_seeq(hregs, sregs); |
| 294 | err = seeq_init_ring(dev); |
| 295 | if (err) |
| 296 | return err; |
| 297 | |
| 298 | /* Setup to field the proper interrupt types. */ |
| 299 | if (sp->is_edlc) { |
| 300 | sregs->tstat = TSTAT_INIT_EDLC; |
| 301 | sregs->rw.wregs.control = sp->control; |
| 302 | sregs->rw.wregs.frame_gap = 0; |
| 303 | } else { |
| 304 | sregs->tstat = TSTAT_INIT_SEEQ; |
| 305 | } |
| 306 | |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 307 | hregs->rx_ndptr = VIRT_TO_DMA(sp, sp->rx_desc); |
| 308 | hregs->tx_ndptr = VIRT_TO_DMA(sp, sp->tx_desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | |
| 310 | seeq_go(sp, hregs, sregs); |
| 311 | return 0; |
| 312 | } |
| 313 | |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 314 | static void record_rx_errors(struct net_device *dev, unsigned char status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | { |
| 316 | if (status & SEEQ_RSTAT_OVERF || |
| 317 | status & SEEQ_RSTAT_SFRAME) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 318 | dev->stats.rx_over_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | if (status & SEEQ_RSTAT_CERROR) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 320 | dev->stats.rx_crc_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | if (status & SEEQ_RSTAT_DERROR) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 322 | dev->stats.rx_frame_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | if (status & SEEQ_RSTAT_REOF) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 324 | dev->stats.rx_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | static inline void rx_maybe_restart(struct sgiseeq_private *sp, |
| 328 | struct hpc3_ethregs *hregs, |
| 329 | struct sgiseeq_regs *sregs) |
| 330 | { |
| 331 | if (!(hregs->rx_ctrl & HPC3_ERXCTRL_ACTIVE)) { |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 332 | hregs->rx_ndptr = VIRT_TO_DMA(sp, sp->rx_desc + sp->rx_new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | seeq_go(sp, hregs, sregs); |
| 334 | } |
| 335 | } |
| 336 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | static inline void sgiseeq_rx(struct net_device *dev, struct sgiseeq_private *sp, |
| 338 | struct hpc3_ethregs *hregs, |
| 339 | struct sgiseeq_regs *sregs) |
| 340 | { |
| 341 | struct sgiseeq_rx_desc *rd; |
Ralf Baechle | a4d4d51 | 2006-03-08 11:49:31 +0000 | [diff] [blame] | 342 | struct sk_buff *skb = NULL; |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 343 | struct sk_buff *newskb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | unsigned char pkt_status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | int len = 0; |
| 346 | unsigned int orig_end = PREV_RX(sp->rx_new); |
| 347 | |
| 348 | /* Service every received packet. */ |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 349 | rd = &sp->rx_desc[sp->rx_new]; |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 350 | dma_sync_desc_cpu(dev, rd); |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 351 | while (!(rd->rdma.cntinfo & HPCDMA_OWN)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | len = PKT_BUF_SZ - (rd->rdma.cntinfo & HPCDMA_BCNT) - 3; |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 353 | dma_unmap_single(dev->dev.parent, rd->rdma.pbuf, |
| 354 | PKT_BUF_SZ, DMA_FROM_DEVICE); |
| 355 | pkt_status = rd->skb->data[len]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | if (pkt_status & SEEQ_RSTAT_FIG) { |
| 357 | /* Packet is OK. */ |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 358 | /* We don't want to receive our own packets */ |
| 359 | if (memcmp(rd->skb->data + 6, dev->dev_addr, ETH_ALEN)) { |
| 360 | if (len > rx_copybreak) { |
| 361 | skb = rd->skb; |
| 362 | newskb = netdev_alloc_skb(dev, PKT_BUF_SZ); |
| 363 | if (!newskb) { |
| 364 | newskb = skb; |
| 365 | skb = NULL; |
| 366 | goto memory_squeeze; |
| 367 | } |
| 368 | skb_reserve(newskb, 2); |
| 369 | } else { |
Eric Dumazet | 89d71a6 | 2009-10-13 05:34:20 +0000 | [diff] [blame] | 370 | skb = netdev_alloc_skb_ip_align(dev, len); |
| 371 | if (skb) |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 372 | skb_copy_to_linear_data(skb, rd->skb->data, len); |
Eric Dumazet | 89d71a6 | 2009-10-13 05:34:20 +0000 | [diff] [blame] | 373 | |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 374 | newskb = rd->skb; |
| 375 | } |
| 376 | memory_squeeze: |
| 377 | if (skb) { |
| 378 | skb_put(skb, len); |
| 379 | skb->protocol = eth_type_trans(skb, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | netif_rx(skb); |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 381 | dev->stats.rx_packets++; |
| 382 | dev->stats.rx_bytes += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | } else { |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 384 | dev->stats.rx_dropped++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | } |
| 386 | } else { |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 387 | /* Silently drop my own packets */ |
| 388 | newskb = rd->skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | } |
| 390 | } else { |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 391 | record_rx_errors(dev, pkt_status); |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 392 | newskb = rd->skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | } |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 394 | rd->skb = newskb; |
| 395 | rd->rdma.pbuf = dma_map_single(dev->dev.parent, |
| 396 | newskb->data - 2, |
| 397 | PKT_BUF_SZ, DMA_FROM_DEVICE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | |
| 399 | /* Return the entry to the ring pool. */ |
| 400 | rd->rdma.cntinfo = RCNTINFO_INIT; |
| 401 | sp->rx_new = NEXT_RX(sp->rx_new); |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 402 | dma_sync_desc_dev(dev, rd); |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 403 | rd = &sp->rx_desc[sp->rx_new]; |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 404 | dma_sync_desc_cpu(dev, rd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | } |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 406 | dma_sync_desc_cpu(dev, &sp->rx_desc[orig_end]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | sp->rx_desc[orig_end].rdma.cntinfo &= ~(HPCDMA_EOR); |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 408 | dma_sync_desc_dev(dev, &sp->rx_desc[orig_end]); |
| 409 | dma_sync_desc_cpu(dev, &sp->rx_desc[PREV_RX(sp->rx_new)]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | sp->rx_desc[PREV_RX(sp->rx_new)].rdma.cntinfo |= HPCDMA_EOR; |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 411 | dma_sync_desc_dev(dev, &sp->rx_desc[PREV_RX(sp->rx_new)]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | rx_maybe_restart(sp, hregs, sregs); |
| 413 | } |
| 414 | |
| 415 | static inline void tx_maybe_reset_collisions(struct sgiseeq_private *sp, |
| 416 | struct sgiseeq_regs *sregs) |
| 417 | { |
| 418 | if (sp->is_edlc) { |
| 419 | sregs->rw.wregs.control = sp->control & ~(SEEQ_CTRL_XCNT); |
| 420 | sregs->rw.wregs.control = sp->control; |
| 421 | } |
| 422 | } |
| 423 | |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 424 | static inline void kick_tx(struct net_device *dev, |
| 425 | struct sgiseeq_private *sp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | struct hpc3_ethregs *hregs) |
| 427 | { |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 428 | struct sgiseeq_tx_desc *td; |
| 429 | int i = sp->tx_old; |
| 430 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | /* If the HPC aint doin nothin, and there are more packets |
| 432 | * with ETXD cleared and XIU set we must make very certain |
| 433 | * that we restart the HPC else we risk locking up the |
| 434 | * adapter. The following code is only safe iff the HPCDMA |
| 435 | * is not active! |
| 436 | */ |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 437 | td = &sp->tx_desc[i]; |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 438 | dma_sync_desc_cpu(dev, td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | while ((td->tdma.cntinfo & (HPCDMA_XIU | HPCDMA_ETXD)) == |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 440 | (HPCDMA_XIU | HPCDMA_ETXD)) { |
| 441 | i = NEXT_TX(i); |
| 442 | td = &sp->tx_desc[i]; |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 443 | dma_sync_desc_cpu(dev, td); |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 444 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | if (td->tdma.cntinfo & HPCDMA_XIU) { |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 446 | hregs->tx_ndptr = VIRT_TO_DMA(sp, td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | hregs->tx_ctrl = HPC3_ETXCTRL_ACTIVE; |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | static inline void sgiseeq_tx(struct net_device *dev, struct sgiseeq_private *sp, |
| 452 | struct hpc3_ethregs *hregs, |
| 453 | struct sgiseeq_regs *sregs) |
| 454 | { |
| 455 | struct sgiseeq_tx_desc *td; |
| 456 | unsigned long status = hregs->tx_ctrl; |
| 457 | int j; |
| 458 | |
| 459 | tx_maybe_reset_collisions(sp, sregs); |
| 460 | |
| 461 | if (!(status & (HPC3_ETXCTRL_ACTIVE | SEEQ_TSTAT_PTRANS))) { |
| 462 | /* Oops, HPC detected some sort of error. */ |
| 463 | if (status & SEEQ_TSTAT_R16) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 464 | dev->stats.tx_aborted_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | if (status & SEEQ_TSTAT_UFLOW) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 466 | dev->stats.tx_fifo_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | if (status & SEEQ_TSTAT_LCLS) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 468 | dev->stats.collisions++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | } |
| 470 | |
| 471 | /* Ack 'em... */ |
| 472 | for (j = sp->tx_old; j != sp->tx_new; j = NEXT_TX(j)) { |
| 473 | td = &sp->tx_desc[j]; |
| 474 | |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 475 | dma_sync_desc_cpu(dev, td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | if (!(td->tdma.cntinfo & (HPCDMA_XIU))) |
| 477 | break; |
| 478 | if (!(td->tdma.cntinfo & (HPCDMA_ETXD))) { |
| 479 | if (!(status & HPC3_ETXCTRL_ACTIVE)) { |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 480 | hregs->tx_ndptr = VIRT_TO_DMA(sp, td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | hregs->tx_ctrl = HPC3_ETXCTRL_ACTIVE; |
| 482 | } |
| 483 | break; |
| 484 | } |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 485 | dev->stats.tx_packets++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | sp->tx_old = NEXT_TX(sp->tx_old); |
| 487 | td->tdma.cntinfo &= ~(HPCDMA_XIU | HPCDMA_XIE); |
| 488 | td->tdma.cntinfo |= HPCDMA_EOX; |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 489 | if (td->skb) { |
| 490 | dev_kfree_skb_any(td->skb); |
| 491 | td->skb = NULL; |
| 492 | } |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 493 | dma_sync_desc_dev(dev, td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | } |
| 495 | } |
| 496 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 497 | static irqreturn_t sgiseeq_interrupt(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | { |
| 499 | struct net_device *dev = (struct net_device *) dev_id; |
| 500 | struct sgiseeq_private *sp = netdev_priv(dev); |
| 501 | struct hpc3_ethregs *hregs = sp->hregs; |
| 502 | struct sgiseeq_regs *sregs = sp->sregs; |
| 503 | |
| 504 | spin_lock(&sp->tx_lock); |
| 505 | |
| 506 | /* Ack the IRQ and set software state. */ |
Ralf Baechle | 302a5c4b | 2005-10-10 14:50:56 +0100 | [diff] [blame] | 507 | hregs->reset = HPC3_ERST_CLRIRQ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | |
| 509 | /* Always check for received packets. */ |
| 510 | sgiseeq_rx(dev, sp, hregs, sregs); |
| 511 | |
| 512 | /* Only check for tx acks if we have something queued. */ |
| 513 | if (sp->tx_old != sp->tx_new) |
| 514 | sgiseeq_tx(dev, sp, hregs, sregs); |
| 515 | |
| 516 | if ((TX_BUFFS_AVAIL(sp) > 0) && netif_queue_stopped(dev)) { |
| 517 | netif_wake_queue(dev); |
| 518 | } |
| 519 | spin_unlock(&sp->tx_lock); |
| 520 | |
| 521 | return IRQ_HANDLED; |
| 522 | } |
| 523 | |
| 524 | static int sgiseeq_open(struct net_device *dev) |
| 525 | { |
| 526 | struct sgiseeq_private *sp = netdev_priv(dev); |
| 527 | struct sgiseeq_regs *sregs = sp->sregs; |
| 528 | unsigned int irq = dev->irq; |
| 529 | int err; |
| 530 | |
| 531 | if (request_irq(irq, sgiseeq_interrupt, 0, sgiseeqstr, dev)) { |
| 532 | printk(KERN_ERR "Seeq8003: Can't get irq %d\n", dev->irq); |
Nicolas Kaiser | 06d6e6d | 2010-10-26 10:02:13 -0700 | [diff] [blame] | 533 | return -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | } |
| 535 | |
| 536 | err = init_seeq(dev, sp, sregs); |
| 537 | if (err) |
| 538 | goto out_free_irq; |
| 539 | |
| 540 | netif_start_queue(dev); |
| 541 | |
| 542 | return 0; |
| 543 | |
| 544 | out_free_irq: |
| 545 | free_irq(irq, dev); |
| 546 | |
| 547 | return err; |
| 548 | } |
| 549 | |
| 550 | static int sgiseeq_close(struct net_device *dev) |
| 551 | { |
| 552 | struct sgiseeq_private *sp = netdev_priv(dev); |
| 553 | struct sgiseeq_regs *sregs = sp->sregs; |
Ralf Baechle | 2891439 | 2005-10-10 14:50:51 +0100 | [diff] [blame] | 554 | unsigned int irq = dev->irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | |
| 556 | netif_stop_queue(dev); |
| 557 | |
| 558 | /* Shutdown the Seeq. */ |
| 559 | reset_hpc3_and_seeq(sp->hregs, sregs); |
Ralf Baechle | 2891439 | 2005-10-10 14:50:51 +0100 | [diff] [blame] | 560 | free_irq(irq, dev); |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 561 | seeq_purge_ring(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
| 563 | return 0; |
| 564 | } |
| 565 | |
| 566 | static inline int sgiseeq_reset(struct net_device *dev) |
| 567 | { |
| 568 | struct sgiseeq_private *sp = netdev_priv(dev); |
| 569 | struct sgiseeq_regs *sregs = sp->sregs; |
| 570 | int err; |
| 571 | |
| 572 | err = init_seeq(dev, sp, sregs); |
| 573 | if (err) |
| 574 | return err; |
| 575 | |
Eric Dumazet | 1ae5dc3 | 2010-05-10 05:01:31 -0700 | [diff] [blame] | 576 | dev->trans_start = jiffies; /* prevent tx timeout */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | netif_wake_queue(dev); |
| 578 | |
| 579 | return 0; |
| 580 | } |
| 581 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | static int sgiseeq_start_xmit(struct sk_buff *skb, struct net_device *dev) |
| 583 | { |
| 584 | struct sgiseeq_private *sp = netdev_priv(dev); |
| 585 | struct hpc3_ethregs *hregs = sp->hregs; |
| 586 | unsigned long flags; |
| 587 | struct sgiseeq_tx_desc *td; |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 588 | int len, entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | |
| 590 | spin_lock_irqsave(&sp->tx_lock, flags); |
| 591 | |
| 592 | /* Setup... */ |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 593 | len = skb->len; |
| 594 | if (len < ETH_ZLEN) { |
Julia Lawall | ce6fbde | 2010-03-29 05:35:05 +0000 | [diff] [blame] | 595 | if (skb_padto(skb, ETH_ZLEN)) { |
| 596 | spin_unlock_irqrestore(&sp->tx_lock, flags); |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 597 | return NETDEV_TX_OK; |
Julia Lawall | ce6fbde | 2010-03-29 05:35:05 +0000 | [diff] [blame] | 598 | } |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 599 | len = ETH_ZLEN; |
| 600 | } |
| 601 | |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 602 | dev->stats.tx_bytes += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | entry = sp->tx_new; |
| 604 | td = &sp->tx_desc[entry]; |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 605 | dma_sync_desc_cpu(dev, td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | |
| 607 | /* Create entry. There are so many races with adding a new |
| 608 | * descriptor to the chain: |
| 609 | * 1) Assume that the HPC is off processing a DMA chain while |
| 610 | * we are changing all of the following. |
| 611 | * 2) Do no allow the HPC to look at a new descriptor until |
| 612 | * we have completely set up it's state. This means, do |
| 613 | * not clear HPCDMA_EOX in the current last descritptor |
| 614 | * until the one we are adding looks consistent and could |
| 615 | * be processes right now. |
| 616 | * 3) The tx interrupt code must notice when we've added a new |
| 617 | * entry and the HPC got to the end of the chain before we |
| 618 | * added this new entry and restarted it. |
| 619 | */ |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 620 | td->skb = skb; |
| 621 | td->tdma.pbuf = dma_map_single(dev->dev.parent, skb->data, |
| 622 | len, DMA_TO_DEVICE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | td->tdma.cntinfo = (len & HPCDMA_BCNT) | |
| 624 | HPCDMA_XIU | HPCDMA_EOXP | HPCDMA_XIE | HPCDMA_EOX; |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 625 | dma_sync_desc_dev(dev, td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | if (sp->tx_old != sp->tx_new) { |
| 627 | struct sgiseeq_tx_desc *backend; |
| 628 | |
| 629 | backend = &sp->tx_desc[PREV_TX(sp->tx_new)]; |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 630 | dma_sync_desc_cpu(dev, backend); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | backend->tdma.cntinfo &= ~HPCDMA_EOX; |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 632 | dma_sync_desc_dev(dev, backend); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | } |
| 634 | sp->tx_new = NEXT_TX(sp->tx_new); /* Advance. */ |
| 635 | |
| 636 | /* Maybe kick the HPC back into motion. */ |
| 637 | if (!(hregs->tx_ctrl & HPC3_ETXCTRL_ACTIVE)) |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 638 | kick_tx(dev, sp, hregs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | if (!TX_BUFFS_AVAIL(sp)) |
| 641 | netif_stop_queue(dev); |
| 642 | spin_unlock_irqrestore(&sp->tx_lock, flags); |
| 643 | |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 644 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | } |
| 646 | |
| 647 | static void timeout(struct net_device *dev) |
| 648 | { |
| 649 | printk(KERN_NOTICE "%s: transmit timed out, resetting\n", dev->name); |
| 650 | sgiseeq_reset(dev); |
| 651 | |
Eric Dumazet | 1ae5dc3 | 2010-05-10 05:01:31 -0700 | [diff] [blame] | 652 | dev->trans_start = jiffies; /* prevent tx timeout */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | netif_wake_queue(dev); |
| 654 | } |
| 655 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | static void sgiseeq_set_multicast(struct net_device *dev) |
| 657 | { |
Wang Chen | 8f15ea4 | 2008-11-12 23:38:36 -0800 | [diff] [blame] | 658 | struct sgiseeq_private *sp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | unsigned char oldmode = sp->mode; |
| 660 | |
| 661 | if(dev->flags & IFF_PROMISC) |
| 662 | sp->mode = SEEQ_RCMD_RANY; |
Jiri Pirko | 4cd24ea | 2010-02-08 04:30:35 +0000 | [diff] [blame] | 663 | else if ((dev->flags & IFF_ALLMULTI) || !netdev_mc_empty(dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | sp->mode = SEEQ_RCMD_RBMCAST; |
| 665 | else |
| 666 | sp->mode = SEEQ_RCMD_RBCAST; |
| 667 | |
| 668 | /* XXX I know this sucks, but is there a better way to reprogram |
| 669 | * XXX the receiver? At least, this shouldn't happen too often. |
| 670 | */ |
| 671 | |
| 672 | if (oldmode != sp->mode) |
| 673 | sgiseeq_reset(dev); |
| 674 | } |
| 675 | |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 676 | static inline void setup_tx_ring(struct net_device *dev, |
| 677 | struct sgiseeq_tx_desc *buf, |
| 678 | int nbufs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | { |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 680 | struct sgiseeq_private *sp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | int i = 0; |
| 682 | |
| 683 | while (i < (nbufs - 1)) { |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 684 | buf[i].tdma.pnext = VIRT_TO_DMA(sp, buf + i + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | buf[i].tdma.pbuf = 0; |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 686 | dma_sync_desc_dev(dev, &buf[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | i++; |
| 688 | } |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 689 | buf[i].tdma.pnext = VIRT_TO_DMA(sp, buf); |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 690 | dma_sync_desc_dev(dev, &buf[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | } |
| 692 | |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 693 | static inline void setup_rx_ring(struct net_device *dev, |
| 694 | struct sgiseeq_rx_desc *buf, |
| 695 | int nbufs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | { |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 697 | struct sgiseeq_private *sp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | int i = 0; |
| 699 | |
| 700 | while (i < (nbufs - 1)) { |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 701 | buf[i].rdma.pnext = VIRT_TO_DMA(sp, buf + i + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | buf[i].rdma.pbuf = 0; |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 703 | dma_sync_desc_dev(dev, &buf[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | i++; |
| 705 | } |
| 706 | buf[i].rdma.pbuf = 0; |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 707 | buf[i].rdma.pnext = VIRT_TO_DMA(sp, buf); |
Thomas Bogendoerfer | 49b11bc | 2007-12-19 13:42:36 +0100 | [diff] [blame] | 708 | dma_sync_desc_dev(dev, &buf[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | } |
| 710 | |
Alexander Beregalov | 8c2c6be | 2009-04-15 12:52:58 +0000 | [diff] [blame] | 711 | static const struct net_device_ops sgiseeq_netdev_ops = { |
| 712 | .ndo_open = sgiseeq_open, |
| 713 | .ndo_stop = sgiseeq_close, |
| 714 | .ndo_start_xmit = sgiseeq_start_xmit, |
| 715 | .ndo_tx_timeout = timeout, |
Jiri Pirko | afc4b13 | 2011-08-16 06:29:01 +0000 | [diff] [blame] | 716 | .ndo_set_rx_mode = sgiseeq_set_multicast, |
Alexander Beregalov | 8c2c6be | 2009-04-15 12:52:58 +0000 | [diff] [blame] | 717 | .ndo_set_mac_address = sgiseeq_set_mac_address, |
| 718 | .ndo_change_mtu = eth_change_mtu, |
| 719 | .ndo_validate_addr = eth_validate_addr, |
| 720 | }; |
| 721 | |
Bill Pemberton | 5911ce0 | 2012-12-03 09:23:31 -0500 | [diff] [blame] | 722 | static int sgiseeq_probe(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | { |
Jingoo Han | d776542 | 2013-08-30 14:00:45 +0900 | [diff] [blame] | 724 | struct sgiseeq_platform_data *pd = dev_get_platdata(&pdev->dev); |
Ralf Baechle | df9f540 | 2007-05-11 15:48:58 +0100 | [diff] [blame] | 725 | struct hpc3_regs *hpcregs = pd->hpc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | struct sgiseeq_init_block *sr; |
Ralf Baechle | df9f540 | 2007-05-11 15:48:58 +0100 | [diff] [blame] | 727 | unsigned int irq = pd->irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | struct sgiseeq_private *sp; |
| 729 | struct net_device *dev; |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 730 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | |
| 732 | dev = alloc_etherdev(sizeof (struct sgiseeq_private)); |
| 733 | if (!dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | err = -ENOMEM; |
| 735 | goto err_out; |
| 736 | } |
Ralf Baechle | df9f540 | 2007-05-11 15:48:58 +0100 | [diff] [blame] | 737 | |
| 738 | platform_set_drvdata(pdev, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | sp = netdev_priv(dev); |
| 740 | |
| 741 | /* Make private data page aligned */ |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 742 | sr = dma_alloc_noncoherent(&pdev->dev, sizeof(*sp->srings), |
Ralf Baechle | 99cd149 | 2007-09-04 14:41:01 +0100 | [diff] [blame] | 743 | &sp->srings_dma, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | if (!sr) { |
| 745 | printk(KERN_ERR "Sgiseeq: Page alloc failed, aborting.\n"); |
| 746 | err = -ENOMEM; |
| 747 | goto err_out_free_dev; |
| 748 | } |
| 749 | sp->srings = sr; |
Ralf Baechle | 99cd149 | 2007-09-04 14:41:01 +0100 | [diff] [blame] | 750 | sp->rx_desc = sp->srings->rxvector; |
| 751 | sp->tx_desc = sp->srings->txvector; |
Jean Delvare | b8dfc6a | 2012-09-06 00:47:05 +0000 | [diff] [blame] | 752 | spin_lock_init(&sp->tx_lock); |
Ralf Baechle | 99cd149 | 2007-09-04 14:41:01 +0100 | [diff] [blame] | 753 | |
| 754 | /* A couple calculations now, saves many cycles later. */ |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 755 | setup_rx_ring(dev, sp->rx_desc, SEEQ_RX_BUFFERS); |
| 756 | setup_tx_ring(dev, sp->tx_desc, SEEQ_TX_BUFFERS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | |
Ralf Baechle | df9f540 | 2007-05-11 15:48:58 +0100 | [diff] [blame] | 758 | memcpy(dev->dev_addr, pd->mac, ETH_ALEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | |
| 760 | #ifdef DEBUG |
| 761 | gpriv = sp; |
| 762 | gdev = dev; |
| 763 | #endif |
Ralf Baechle | 302a5c4b | 2005-10-10 14:50:56 +0100 | [diff] [blame] | 764 | sp->sregs = (struct sgiseeq_regs *) &hpcregs->eth_ext[0]; |
| 765 | sp->hregs = &hpcregs->ethregs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | sp->name = sgiseeqstr; |
| 767 | sp->mode = SEEQ_RCMD_RBCAST; |
| 768 | |
Ralf Baechle | 302a5c4b | 2005-10-10 14:50:56 +0100 | [diff] [blame] | 769 | /* Setup PIO and DMA transfer timing */ |
| 770 | sp->hregs->pconfig = 0x161; |
| 771 | sp->hregs->dconfig = HPC3_EDCFG_FIRQ | HPC3_EDCFG_FEOP | |
| 772 | HPC3_EDCFG_FRXDC | HPC3_EDCFG_PTO | 0x026; |
| 773 | |
Ladislav Michl | 78ee5b3 | 2007-02-28 01:18:35 +0000 | [diff] [blame] | 774 | /* Setup PIO and DMA transfer timing */ |
| 775 | sp->hregs->pconfig = 0x161; |
| 776 | sp->hregs->dconfig = HPC3_EDCFG_FIRQ | HPC3_EDCFG_FEOP | |
| 777 | HPC3_EDCFG_FRXDC | HPC3_EDCFG_PTO | 0x026; |
| 778 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | /* Reset the chip. */ |
| 780 | hpc3_eth_reset(sp->hregs); |
| 781 | |
| 782 | sp->is_edlc = !(sp->sregs->rw.rregs.collision_tx[0] & 0xff); |
| 783 | if (sp->is_edlc) |
| 784 | sp->control = SEEQ_CTRL_XCNT | SEEQ_CTRL_ACCNT | |
| 785 | SEEQ_CTRL_SFLAG | SEEQ_CTRL_ESHORT | |
| 786 | SEEQ_CTRL_ENCARR; |
| 787 | |
Alexander Beregalov | 8c2c6be | 2009-04-15 12:52:58 +0000 | [diff] [blame] | 788 | dev->netdev_ops = &sgiseeq_netdev_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | dev->watchdog_timeo = (200 * HZ) / 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | dev->irq = irq; |
| 791 | |
| 792 | if (register_netdev(dev)) { |
| 793 | printk(KERN_ERR "Sgiseeq: Cannot register net device, " |
| 794 | "aborting.\n"); |
| 795 | err = -ENODEV; |
| 796 | goto err_out_free_page; |
| 797 | } |
| 798 | |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 799 | printk(KERN_INFO "%s: %s %pM\n", dev->name, sgiseeqstr, dev->dev_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | return 0; |
| 802 | |
| 803 | err_out_free_page: |
Ralf Baechle | 2891439 | 2005-10-10 14:50:51 +0100 | [diff] [blame] | 804 | free_page((unsigned long) sp->srings); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | err_out_free_dev: |
Kulikov Vasiliy | 8d879de | 2010-09-25 23:58:06 +0000 | [diff] [blame] | 806 | free_netdev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | |
| 808 | err_out: |
| 809 | return err; |
| 810 | } |
| 811 | |
Ralf Baechle | e3efb05 | 2007-08-22 16:03:52 +0100 | [diff] [blame] | 812 | static int __exit sgiseeq_remove(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | { |
Ralf Baechle | df9f540 | 2007-05-11 15:48:58 +0100 | [diff] [blame] | 814 | struct net_device *dev = platform_get_drvdata(pdev); |
| 815 | struct sgiseeq_private *sp = netdev_priv(dev); |
Ladislav Michl | 78ee5b3 | 2007-02-28 01:18:35 +0000 | [diff] [blame] | 816 | |
Ralf Baechle | df9f540 | 2007-05-11 15:48:58 +0100 | [diff] [blame] | 817 | unregister_netdev(dev); |
Thomas Bogendoerfer | 43831b1 | 2007-11-24 13:29:19 +0100 | [diff] [blame] | 818 | dma_free_noncoherent(&pdev->dev, sizeof(*sp->srings), sp->srings, |
| 819 | sp->srings_dma); |
Ralf Baechle | df9f540 | 2007-05-11 15:48:58 +0100 | [diff] [blame] | 820 | free_netdev(dev); |
Ralf Baechle | e3efb05 | 2007-08-22 16:03:52 +0100 | [diff] [blame] | 821 | |
| 822 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | } |
| 824 | |
Ralf Baechle | df9f540 | 2007-05-11 15:48:58 +0100 | [diff] [blame] | 825 | static struct platform_driver sgiseeq_driver = { |
| 826 | .probe = sgiseeq_probe, |
Uwe Kleine-König | fb74c2f | 2009-09-30 22:28:26 +0000 | [diff] [blame] | 827 | .remove = __exit_p(sgiseeq_remove), |
Ralf Baechle | df9f540 | 2007-05-11 15:48:58 +0100 | [diff] [blame] | 828 | .driver = { |
Kay Sievers | 72abb46 | 2008-04-18 13:50:44 -0700 | [diff] [blame] | 829 | .name = "sgiseeq", |
| 830 | .owner = THIS_MODULE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | } |
Ralf Baechle | df9f540 | 2007-05-11 15:48:58 +0100 | [diff] [blame] | 832 | }; |
| 833 | |
Axel Lin | db62f68 | 2011-11-27 16:44:17 +0000 | [diff] [blame] | 834 | module_platform_driver(sgiseeq_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | |
Ralf Baechle | 302a5c4b | 2005-10-10 14:50:56 +0100 | [diff] [blame] | 836 | MODULE_DESCRIPTION("SGI Seeq 8003 driver"); |
| 837 | MODULE_AUTHOR("Linux/MIPS Mailing List <linux-mips@linux-mips.org>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | MODULE_LICENSE("GPL"); |
Kay Sievers | 72abb46 | 2008-04-18 13:50:44 -0700 | [diff] [blame] | 839 | MODULE_ALIAS("platform:sgiseeq"); |