2 * Copyright (C) 2006, 2007 Eugene Konev
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/moduleparam.h>
23 #include <linux/sched.h>
24 #include <linux/kernel.h>
25 #include <linux/slab.h>
26 #include <linux/errno.h>
27 #include <linux/types.h>
28 #include <linux/delay.h>
29 #include <linux/version.h>
31 #include <linux/netdevice.h>
32 #include <linux/etherdevice.h>
33 #include <linux/ethtool.h>
34 #include <linux/skbuff.h>
35 #include <linux/mii.h>
36 #include <linux/phy.h>
37 #include <linux/phy_fixed.h>
38 #include <linux/platform_device.h>
39 #include <linux/dma-mapping.h>
42 MODULE_AUTHOR("Eugene Konev <ejka@imfi.kspu.ru>");
43 MODULE_DESCRIPTION("TI AR7 ethernet driver (CPMAC)");
44 MODULE_LICENSE("GPL");
46 static int debug_level
= 8;
47 static int dumb_switch
;
49 /* Next 2 are only used in cpmac_probe, so it's pointless to change them */
50 module_param(debug_level
, int, 0444);
51 module_param(dumb_switch
, int, 0444);
53 MODULE_PARM_DESC(debug_level
, "Number of NETIF_MSG bits to enable");
54 MODULE_PARM_DESC(dumb_switch
, "Assume switch is not connected to MDIO bus");
56 #define CPMAC_VERSION "0.5.0"
57 /* frame size + 802.1q tag */
58 #define CPMAC_SKB_SIZE (ETH_FRAME_LEN + 4)
59 #define CPMAC_QUEUES 8
61 /* Ethernet registers */
62 #define CPMAC_TX_CONTROL 0x0004
63 #define CPMAC_TX_TEARDOWN 0x0008
64 #define CPMAC_RX_CONTROL 0x0014
65 #define CPMAC_RX_TEARDOWN 0x0018
66 #define CPMAC_MBP 0x0100
67 # define MBP_RXPASSCRC 0x40000000
68 # define MBP_RXQOS 0x20000000
69 # define MBP_RXNOCHAIN 0x10000000
70 # define MBP_RXCMF 0x01000000
71 # define MBP_RXSHORT 0x00800000
72 # define MBP_RXCEF 0x00400000
73 # define MBP_RXPROMISC 0x00200000
74 # define MBP_PROMISCCHAN(channel) (((channel) & 0x7) << 16)
75 # define MBP_RXBCAST 0x00002000
76 # define MBP_BCASTCHAN(channel) (((channel) & 0x7) << 8)
77 # define MBP_RXMCAST 0x00000020
78 # define MBP_MCASTCHAN(channel) ((channel) & 0x7)
79 #define CPMAC_UNICAST_ENABLE 0x0104
80 #define CPMAC_UNICAST_CLEAR 0x0108
81 #define CPMAC_MAX_LENGTH 0x010c
82 #define CPMAC_BUFFER_OFFSET 0x0110
83 #define CPMAC_MAC_CONTROL 0x0160
84 # define MAC_TXPTYPE 0x00000200
85 # define MAC_TXPACE 0x00000040
86 # define MAC_MII 0x00000020
87 # define MAC_TXFLOW 0x00000010
88 # define MAC_RXFLOW 0x00000008
89 # define MAC_MTEST 0x00000004
90 # define MAC_LOOPBACK 0x00000002
91 # define MAC_FDX 0x00000001
92 #define CPMAC_MAC_STATUS 0x0164
93 # define MAC_STATUS_QOS 0x00000004
94 # define MAC_STATUS_RXFLOW 0x00000002
95 # define MAC_STATUS_TXFLOW 0x00000001
96 #define CPMAC_TX_INT_ENABLE 0x0178
97 #define CPMAC_TX_INT_CLEAR 0x017c
98 #define CPMAC_MAC_INT_VECTOR 0x0180
99 # define MAC_INT_STATUS 0x00080000
100 # define MAC_INT_HOST 0x00040000
101 # define MAC_INT_RX 0x00020000
102 # define MAC_INT_TX 0x00010000
103 #define CPMAC_MAC_EOI_VECTOR 0x0184
104 #define CPMAC_RX_INT_ENABLE 0x0198
105 #define CPMAC_RX_INT_CLEAR 0x019c
106 #define CPMAC_MAC_INT_ENABLE 0x01a8
107 #define CPMAC_MAC_INT_CLEAR 0x01ac
108 #define CPMAC_MAC_ADDR_LO(channel) (0x01b0 + (channel) * 4)
109 #define CPMAC_MAC_ADDR_MID 0x01d0
110 #define CPMAC_MAC_ADDR_HI 0x01d4
111 #define CPMAC_MAC_HASH_LO 0x01d8
112 #define CPMAC_MAC_HASH_HI 0x01dc
113 #define CPMAC_TX_PTR(channel) (0x0600 + (channel) * 4)
114 #define CPMAC_RX_PTR(channel) (0x0620 + (channel) * 4)
115 #define CPMAC_TX_ACK(channel) (0x0640 + (channel) * 4)
116 #define CPMAC_RX_ACK(channel) (0x0660 + (channel) * 4)
117 #define CPMAC_REG_END 0x0680
120 * TODO: use some of them to fill stats in cpmac_stats()
122 #define CPMAC_STATS_RX_GOOD 0x0200
123 #define CPMAC_STATS_RX_BCAST 0x0204
124 #define CPMAC_STATS_RX_MCAST 0x0208
125 #define CPMAC_STATS_RX_PAUSE 0x020c
126 #define CPMAC_STATS_RX_CRC 0x0210
127 #define CPMAC_STATS_RX_ALIGN 0x0214
128 #define CPMAC_STATS_RX_OVER 0x0218
129 #define CPMAC_STATS_RX_JABBER 0x021c
130 #define CPMAC_STATS_RX_UNDER 0x0220
131 #define CPMAC_STATS_RX_FRAG 0x0224
132 #define CPMAC_STATS_RX_FILTER 0x0228
133 #define CPMAC_STATS_RX_QOSFILTER 0x022c
134 #define CPMAC_STATS_RX_OCTETS 0x0230
136 #define CPMAC_STATS_TX_GOOD 0x0234
137 #define CPMAC_STATS_TX_BCAST 0x0238
138 #define CPMAC_STATS_TX_MCAST 0x023c
139 #define CPMAC_STATS_TX_PAUSE 0x0240
140 #define CPMAC_STATS_TX_DEFER 0x0244
141 #define CPMAC_STATS_TX_COLLISION 0x0248
142 #define CPMAC_STATS_TX_SINGLECOLL 0x024c
143 #define CPMAC_STATS_TX_MULTICOLL 0x0250
144 #define CPMAC_STATS_TX_EXCESSCOLL 0x0254
145 #define CPMAC_STATS_TX_LATECOLL 0x0258
146 #define CPMAC_STATS_TX_UNDERRUN 0x025c
147 #define CPMAC_STATS_TX_CARRIERSENSE 0x0260
148 #define CPMAC_STATS_TX_OCTETS 0x0264
150 #define cpmac_read(base, reg) (readl((void __iomem *)(base) + (reg)))
151 #define cpmac_write(base, reg, val) (writel(val, (void __iomem *)(base) + \
155 #define CPMAC_MDIO_VERSION 0x0000
156 #define CPMAC_MDIO_CONTROL 0x0004
157 # define MDIOC_IDLE 0x80000000
158 # define MDIOC_ENABLE 0x40000000
159 # define MDIOC_PREAMBLE 0x00100000
160 # define MDIOC_FAULT 0x00080000
161 # define MDIOC_FAULTDETECT 0x00040000
162 # define MDIOC_INTTEST 0x00020000
163 # define MDIOC_CLKDIV(div) ((div) & 0xff)
164 #define CPMAC_MDIO_ALIVE 0x0008
165 #define CPMAC_MDIO_LINK 0x000c
166 #define CPMAC_MDIO_ACCESS(channel) (0x0080 + (channel) * 8)
167 # define MDIO_BUSY 0x80000000
168 # define MDIO_WRITE 0x40000000
169 # define MDIO_REG(reg) (((reg) & 0x1f) << 21)
170 # define MDIO_PHY(phy) (((phy) & 0x1f) << 16)
171 # define MDIO_DATA(data) ((data) & 0xffff)
172 #define CPMAC_MDIO_PHYSEL(channel) (0x0084 + (channel) * 8)
173 # define PHYSEL_LINKSEL 0x00000040
174 # define PHYSEL_LINKINT 0x00000020
183 #define CPMAC_SOP 0x8000
184 #define CPMAC_EOP 0x4000
185 #define CPMAC_OWN 0x2000
186 #define CPMAC_EOQ 0x1000
188 struct cpmac_desc
*next
;
190 dma_addr_t data_mapping
;
196 struct cpmac_desc
*rx_head
;
198 struct cpmac_desc
*desc_ring
;
201 struct mii_bus
*mii_bus
;
202 struct phy_device
*phy
;
203 char phy_name
[BUS_ID_SIZE
];
204 int oldlink
, oldspeed
, oldduplex
;
206 struct net_device
*dev
;
207 struct work_struct reset_work
;
208 struct platform_device
*pdev
;
209 struct napi_struct napi
;
212 static irqreturn_t
cpmac_irq(int, void *);
213 static void cpmac_hw_start(struct net_device
*dev
);
214 static void cpmac_hw_stop(struct net_device
*dev
);
215 static int cpmac_stop(struct net_device
*dev
);
216 static int cpmac_open(struct net_device
*dev
);
218 static void cpmac_dump_regs(struct net_device
*dev
)
221 struct cpmac_priv
*priv
= netdev_priv(dev
);
222 for (i
= 0; i
< CPMAC_REG_END
; i
+= 4) {
226 printk(KERN_DEBUG
"%s: reg[%p]:", dev
->name
,
229 printk(" %08x", cpmac_read(priv
->regs
, i
));
234 static void cpmac_dump_desc(struct net_device
*dev
, struct cpmac_desc
*desc
)
237 printk(KERN_DEBUG
"%s: desc[%p]:", dev
->name
, desc
);
238 for (i
= 0; i
< sizeof(*desc
) / 4; i
++)
239 printk(" %08x", ((u32
*)desc
)[i
]);
243 static void cpmac_dump_skb(struct net_device
*dev
, struct sk_buff
*skb
)
246 printk(KERN_DEBUG
"%s: skb 0x%p, len=%d\n", dev
->name
, skb
, skb
->len
);
247 for (i
= 0; i
< skb
->len
; i
++) {
251 printk(KERN_DEBUG
"%s: data[%p]:", dev
->name
,
254 printk(" %02x", ((u8
*)skb
->data
)[i
]);
259 static int cpmac_mdio_read(struct mii_bus
*bus
, int phy_id
, int reg
)
263 while (cpmac_read(bus
->priv
, CPMAC_MDIO_ACCESS(0)) & MDIO_BUSY
)
265 cpmac_write(bus
->priv
, CPMAC_MDIO_ACCESS(0), MDIO_BUSY
| MDIO_REG(reg
) |
267 while ((val
= cpmac_read(bus
->priv
, CPMAC_MDIO_ACCESS(0))) & MDIO_BUSY
)
269 return MDIO_DATA(val
);
272 static int cpmac_mdio_write(struct mii_bus
*bus
, int phy_id
,
275 while (cpmac_read(bus
->priv
, CPMAC_MDIO_ACCESS(0)) & MDIO_BUSY
)
277 cpmac_write(bus
->priv
, CPMAC_MDIO_ACCESS(0), MDIO_BUSY
| MDIO_WRITE
|
278 MDIO_REG(reg
) | MDIO_PHY(phy_id
) | MDIO_DATA(val
));
282 static int cpmac_mdio_reset(struct mii_bus
*bus
)
284 ar7_device_reset(AR7_RESET_BIT_MDIO
);
285 cpmac_write(bus
->priv
, CPMAC_MDIO_CONTROL
, MDIOC_ENABLE
|
286 MDIOC_CLKDIV(ar7_cpmac_freq() / 2200000 - 1));
290 static int mii_irqs
[PHY_MAX_ADDR
] = { PHY_POLL
, };
292 static struct mii_bus cpmac_mii
= {
294 .read
= cpmac_mdio_read
,
295 .write
= cpmac_mdio_write
,
296 .reset
= cpmac_mdio_reset
,
300 static int cpmac_config(struct net_device
*dev
, struct ifmap
*map
)
302 if (dev
->flags
& IFF_UP
)
305 /* Don't allow changing the I/O address */
306 if (map
->base_addr
!= dev
->base_addr
)
309 /* ignore other fields */
313 static void cpmac_set_multicast_list(struct net_device
*dev
)
315 struct dev_mc_list
*iter
;
318 u32 mbp
, bit
, hash
[2] = { 0, };
319 struct cpmac_priv
*priv
= netdev_priv(dev
);
321 mbp
= cpmac_read(priv
->regs
, CPMAC_MBP
);
322 if (dev
->flags
& IFF_PROMISC
) {
323 cpmac_write(priv
->regs
, CPMAC_MBP
, (mbp
& ~MBP_PROMISCCHAN(0)) |
326 cpmac_write(priv
->regs
, CPMAC_MBP
, mbp
& ~MBP_RXPROMISC
);
327 if (dev
->flags
& IFF_ALLMULTI
) {
328 /* enable all multicast mode */
329 cpmac_write(priv
->regs
, CPMAC_MAC_HASH_LO
, 0xffffffff);
330 cpmac_write(priv
->regs
, CPMAC_MAC_HASH_HI
, 0xffffffff);
333 * cpmac uses some strange mac address hashing
336 for (i
= 0, iter
= dev
->mc_list
; i
< dev
->mc_count
;
337 i
++, iter
= iter
->next
) {
339 tmp
= iter
->dmi_addr
[0];
340 bit
^= (tmp
>> 2) ^ (tmp
<< 4);
341 tmp
= iter
->dmi_addr
[1];
342 bit
^= (tmp
>> 4) ^ (tmp
<< 2);
343 tmp
= iter
->dmi_addr
[2];
344 bit
^= (tmp
>> 6) ^ tmp
;
345 tmp
= iter
->dmi_addr
[3];
346 bit
^= (tmp
>> 2) ^ (tmp
<< 4);
347 tmp
= iter
->dmi_addr
[4];
348 bit
^= (tmp
>> 4) ^ (tmp
<< 2);
349 tmp
= iter
->dmi_addr
[5];
350 bit
^= (tmp
>> 6) ^ tmp
;
352 hash
[bit
/ 32] |= 1 << (bit
% 32);
355 cpmac_write(priv
->regs
, CPMAC_MAC_HASH_LO
, hash
[0]);
356 cpmac_write(priv
->regs
, CPMAC_MAC_HASH_HI
, hash
[1]);
361 static struct sk_buff
*cpmac_rx_one(struct cpmac_priv
*priv
,
362 struct cpmac_desc
*desc
)
364 struct sk_buff
*skb
, *result
= NULL
;
366 if (unlikely(netif_msg_hw(priv
)))
367 cpmac_dump_desc(priv
->dev
, desc
);
368 cpmac_write(priv
->regs
, CPMAC_RX_ACK(0), (u32
)desc
->mapping
);
369 if (unlikely(!desc
->datalen
)) {
370 if (netif_msg_rx_err(priv
) && net_ratelimit())
371 printk(KERN_WARNING
"%s: rx: spurious interrupt\n",
376 skb
= netdev_alloc_skb(priv
->dev
, CPMAC_SKB_SIZE
);
379 skb_put(desc
->skb
, desc
->datalen
);
380 desc
->skb
->protocol
= eth_type_trans(desc
->skb
, priv
->dev
);
381 desc
->skb
->ip_summed
= CHECKSUM_NONE
;
382 priv
->dev
->stats
.rx_packets
++;
383 priv
->dev
->stats
.rx_bytes
+= desc
->datalen
;
385 dma_unmap_single(&priv
->dev
->dev
, desc
->data_mapping
,
386 CPMAC_SKB_SIZE
, DMA_FROM_DEVICE
);
388 desc
->data_mapping
= dma_map_single(&priv
->dev
->dev
, skb
->data
,
391 desc
->hw_data
= (u32
)desc
->data_mapping
;
392 if (unlikely(netif_msg_pktdata(priv
))) {
393 printk(KERN_DEBUG
"%s: received packet:\n",
395 cpmac_dump_skb(priv
->dev
, result
);
398 if (netif_msg_rx_err(priv
) && net_ratelimit())
400 "%s: low on skbs, dropping packet\n",
402 priv
->dev
->stats
.rx_dropped
++;
405 desc
->buflen
= CPMAC_SKB_SIZE
;
406 desc
->dataflags
= CPMAC_OWN
;
411 static int cpmac_poll(struct napi_struct
*napi
, int budget
)
414 struct cpmac_desc
*desc
;
416 struct cpmac_priv
*priv
= container_of(napi
, struct cpmac_priv
, napi
);
418 spin_lock(&priv
->rx_lock
);
419 if (unlikely(!priv
->rx_head
)) {
420 if (netif_msg_rx_err(priv
) && net_ratelimit())
421 printk(KERN_WARNING
"%s: rx: polling, but no queue\n",
423 netif_rx_complete(priv
->dev
, napi
);
427 desc
= priv
->rx_head
;
428 while (((desc
->dataflags
& CPMAC_OWN
) == 0) && (received
< budget
)) {
429 skb
= cpmac_rx_one(priv
, desc
);
431 netif_receive_skb(skb
);
437 priv
->rx_head
= desc
;
438 spin_unlock(&priv
->rx_lock
);
439 if (unlikely(netif_msg_rx_status(priv
)))
440 printk(KERN_DEBUG
"%s: poll processed %d packets\n",
441 priv
->dev
->name
, received
);
442 if (desc
->dataflags
& CPMAC_OWN
) {
443 netif_rx_complete(priv
->dev
, napi
);
444 cpmac_write(priv
->regs
, CPMAC_RX_PTR(0), (u32
)desc
->mapping
);
445 cpmac_write(priv
->regs
, CPMAC_RX_INT_ENABLE
, 1);
452 static int cpmac_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
455 struct cpmac_desc
*desc
;
456 struct cpmac_priv
*priv
= netdev_priv(dev
);
458 if (unlikely(skb_padto(skb
, ETH_ZLEN
)))
461 len
= max(skb
->len
, ETH_ZLEN
);
462 queue
= skb_get_queue_mapping(skb
);
463 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
464 netif_stop_subqueue(dev
, queue
);
466 netif_stop_queue(dev
);
469 desc
= &priv
->desc_ring
[queue
];
470 if (unlikely(desc
->dataflags
& CPMAC_OWN
)) {
471 if (netif_msg_tx_err(priv
) && net_ratelimit())
472 printk(KERN_WARNING
"%s: tx dma ring full\n",
474 return NETDEV_TX_BUSY
;
477 spin_lock(&priv
->lock
);
478 dev
->trans_start
= jiffies
;
479 spin_unlock(&priv
->lock
);
480 desc
->dataflags
= CPMAC_SOP
| CPMAC_EOP
| CPMAC_OWN
;
482 desc
->data_mapping
= dma_map_single(&dev
->dev
, skb
->data
, len
,
484 desc
->hw_data
= (u32
)desc
->data_mapping
;
487 if (unlikely(netif_msg_tx_queued(priv
)))
488 printk(KERN_DEBUG
"%s: sending 0x%p, len=%d\n", dev
->name
, skb
,
490 if (unlikely(netif_msg_hw(priv
)))
491 cpmac_dump_desc(dev
, desc
);
492 if (unlikely(netif_msg_pktdata(priv
)))
493 cpmac_dump_skb(dev
, skb
);
494 cpmac_write(priv
->regs
, CPMAC_TX_PTR(queue
), (u32
)desc
->mapping
);
499 static void cpmac_end_xmit(struct net_device
*dev
, int queue
)
501 struct cpmac_desc
*desc
;
502 struct cpmac_priv
*priv
= netdev_priv(dev
);
504 desc
= &priv
->desc_ring
[queue
];
505 cpmac_write(priv
->regs
, CPMAC_TX_ACK(queue
), (u32
)desc
->mapping
);
506 if (likely(desc
->skb
)) {
507 spin_lock(&priv
->lock
);
508 dev
->stats
.tx_packets
++;
509 dev
->stats
.tx_bytes
+= desc
->skb
->len
;
510 spin_unlock(&priv
->lock
);
511 dma_unmap_single(&dev
->dev
, desc
->data_mapping
, desc
->skb
->len
,
514 if (unlikely(netif_msg_tx_done(priv
)))
515 printk(KERN_DEBUG
"%s: sent 0x%p, len=%d\n", dev
->name
,
516 desc
->skb
, desc
->skb
->len
);
518 dev_kfree_skb_irq(desc
->skb
);
520 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
521 if (netif_subqueue_stopped(dev
, queue
))
522 netif_wake_subqueue(dev
, queue
);
524 if (netif_queue_stopped(dev
))
525 netif_wake_queue(dev
);
528 if (netif_msg_tx_err(priv
) && net_ratelimit())
530 "%s: end_xmit: spurious interrupt\n", dev
->name
);
531 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
532 if (netif_subqueue_stopped(dev
, queue
))
533 netif_wake_subqueue(dev
, queue
);
535 if (netif_queue_stopped(dev
))
536 netif_wake_queue(dev
);
541 static void cpmac_hw_stop(struct net_device
*dev
)
544 struct cpmac_priv
*priv
= netdev_priv(dev
);
545 struct plat_cpmac_data
*pdata
= priv
->pdev
->dev
.platform_data
;
547 ar7_device_reset(pdata
->reset_bit
);
548 cpmac_write(priv
->regs
, CPMAC_RX_CONTROL
,
549 cpmac_read(priv
->regs
, CPMAC_RX_CONTROL
) & ~1);
550 cpmac_write(priv
->regs
, CPMAC_TX_CONTROL
,
551 cpmac_read(priv
->regs
, CPMAC_TX_CONTROL
) & ~1);
552 for (i
= 0; i
< 8; i
++) {
553 cpmac_write(priv
->regs
, CPMAC_TX_PTR(i
), 0);
554 cpmac_write(priv
->regs
, CPMAC_RX_PTR(i
), 0);
556 cpmac_write(priv
->regs
, CPMAC_UNICAST_CLEAR
, 0xff);
557 cpmac_write(priv
->regs
, CPMAC_RX_INT_CLEAR
, 0xff);
558 cpmac_write(priv
->regs
, CPMAC_TX_INT_CLEAR
, 0xff);
559 cpmac_write(priv
->regs
, CPMAC_MAC_INT_CLEAR
, 0xff);
560 cpmac_write(priv
->regs
, CPMAC_MAC_CONTROL
,
561 cpmac_read(priv
->regs
, CPMAC_MAC_CONTROL
) & ~MAC_MII
);
564 static void cpmac_hw_start(struct net_device
*dev
)
567 struct cpmac_priv
*priv
= netdev_priv(dev
);
568 struct plat_cpmac_data
*pdata
= priv
->pdev
->dev
.platform_data
;
570 ar7_device_reset(pdata
->reset_bit
);
571 for (i
= 0; i
< 8; i
++) {
572 cpmac_write(priv
->regs
, CPMAC_TX_PTR(i
), 0);
573 cpmac_write(priv
->regs
, CPMAC_RX_PTR(i
), 0);
575 cpmac_write(priv
->regs
, CPMAC_RX_PTR(0), priv
->rx_head
->mapping
);
577 cpmac_write(priv
->regs
, CPMAC_MBP
, MBP_RXSHORT
| MBP_RXBCAST
|
579 cpmac_write(priv
->regs
, CPMAC_BUFFER_OFFSET
, 0);
580 for (i
= 0; i
< 8; i
++)
581 cpmac_write(priv
->regs
, CPMAC_MAC_ADDR_LO(i
), dev
->dev_addr
[5]);
582 cpmac_write(priv
->regs
, CPMAC_MAC_ADDR_MID
, dev
->dev_addr
[4]);
583 cpmac_write(priv
->regs
, CPMAC_MAC_ADDR_HI
, dev
->dev_addr
[0] |
584 (dev
->dev_addr
[1] << 8) | (dev
->dev_addr
[2] << 16) |
585 (dev
->dev_addr
[3] << 24));
586 cpmac_write(priv
->regs
, CPMAC_MAX_LENGTH
, CPMAC_SKB_SIZE
);
587 cpmac_write(priv
->regs
, CPMAC_UNICAST_CLEAR
, 0xff);
588 cpmac_write(priv
->regs
, CPMAC_RX_INT_CLEAR
, 0xff);
589 cpmac_write(priv
->regs
, CPMAC_TX_INT_CLEAR
, 0xff);
590 cpmac_write(priv
->regs
, CPMAC_MAC_INT_CLEAR
, 0xff);
591 cpmac_write(priv
->regs
, CPMAC_UNICAST_ENABLE
, 1);
592 cpmac_write(priv
->regs
, CPMAC_RX_INT_ENABLE
, 1);
593 cpmac_write(priv
->regs
, CPMAC_TX_INT_ENABLE
, 0xff);
594 cpmac_write(priv
->regs
, CPMAC_MAC_INT_ENABLE
, 3);
596 cpmac_write(priv
->regs
, CPMAC_RX_CONTROL
,
597 cpmac_read(priv
->regs
, CPMAC_RX_CONTROL
) | 1);
598 cpmac_write(priv
->regs
, CPMAC_TX_CONTROL
,
599 cpmac_read(priv
->regs
, CPMAC_TX_CONTROL
) | 1);
600 cpmac_write(priv
->regs
, CPMAC_MAC_CONTROL
,
601 cpmac_read(priv
->regs
, CPMAC_MAC_CONTROL
) | MAC_MII
|
605 static void cpmac_clear_rx(struct net_device
*dev
)
607 struct cpmac_priv
*priv
= netdev_priv(dev
);
608 struct cpmac_desc
*desc
;
610 if (unlikely(!priv
->rx_head
))
612 desc
= priv
->rx_head
;
613 for (i
= 0; i
< priv
->ring_size
; i
++) {
614 if ((desc
->dataflags
& CPMAC_OWN
) == 0) {
615 if (netif_msg_rx_err(priv
) && net_ratelimit())
616 printk(KERN_WARNING
"%s: packet dropped\n",
618 if (unlikely(netif_msg_hw(priv
)))
619 cpmac_dump_desc(dev
, desc
);
620 desc
->dataflags
= CPMAC_OWN
;
621 dev
->stats
.rx_dropped
++;
627 static void cpmac_clear_tx(struct net_device
*dev
)
629 struct cpmac_priv
*priv
= netdev_priv(dev
);
631 if (unlikely(!priv
->desc_ring
))
633 for (i
= 0; i
< CPMAC_QUEUES
; i
++) {
634 priv
->desc_ring
[i
].dataflags
= 0;
635 if (priv
->desc_ring
[i
].skb
) {
636 dev_kfree_skb_any(priv
->desc_ring
[i
].skb
);
637 if (netif_subqueue_stopped(dev
, i
))
638 netif_wake_subqueue(dev
, i
);
643 static void cpmac_hw_error(struct work_struct
*work
)
645 struct cpmac_priv
*priv
=
646 container_of(work
, struct cpmac_priv
, reset_work
);
648 spin_lock(&priv
->rx_lock
);
649 cpmac_clear_rx(priv
->dev
);
650 spin_unlock(&priv
->rx_lock
);
651 cpmac_clear_tx(priv
->dev
);
652 cpmac_hw_start(priv
->dev
);
653 napi_enable(&priv
->napi
);
654 netif_start_queue(priv
->dev
);
657 static irqreturn_t
cpmac_irq(int irq
, void *dev_id
)
659 struct net_device
*dev
= dev_id
;
660 struct cpmac_priv
*priv
;
664 priv
= netdev_priv(dev
);
666 status
= cpmac_read(priv
->regs
, CPMAC_MAC_INT_VECTOR
);
668 if (unlikely(netif_msg_intr(priv
)))
669 printk(KERN_DEBUG
"%s: interrupt status: 0x%08x\n", dev
->name
,
672 if (status
& MAC_INT_TX
)
673 cpmac_end_xmit(dev
, (status
& 7));
675 if (status
& MAC_INT_RX
) {
676 queue
= (status
>> 8) & 7;
677 if (netif_rx_schedule_prep(dev
, &priv
->napi
)) {
678 cpmac_write(priv
->regs
, CPMAC_RX_INT_CLEAR
, 1 << queue
);
679 __netif_rx_schedule(dev
, &priv
->napi
);
683 cpmac_write(priv
->regs
, CPMAC_MAC_EOI_VECTOR
, 0);
685 if (unlikely(status
& (MAC_INT_HOST
| MAC_INT_STATUS
))) {
686 if (netif_msg_drv(priv
) && net_ratelimit())
687 printk(KERN_ERR
"%s: hw error, resetting...\n",
689 netif_stop_queue(dev
);
690 napi_disable(&priv
->napi
);
692 schedule_work(&priv
->reset_work
);
693 if (unlikely(netif_msg_hw(priv
)))
694 cpmac_dump_regs(dev
);
700 static void cpmac_tx_timeout(struct net_device
*dev
)
702 struct cpmac_priv
*priv
= netdev_priv(dev
);
705 spin_lock(&priv
->lock
);
706 dev
->stats
.tx_errors
++;
707 spin_unlock(&priv
->lock
);
708 if (netif_msg_tx_err(priv
) && net_ratelimit())
709 printk(KERN_WARNING
"%s: transmit timeout\n", dev
->name
);
711 * FIXME: waking up random queue is not the best thing to
712 * do... on the other hand why we got here at all?
714 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
715 for (i
= 0; i
< CPMAC_QUEUES
; i
++)
716 if (priv
->desc_ring
[i
].skb
) {
717 priv
->desc_ring
[i
].dataflags
= 0;
718 dev_kfree_skb_any(priv
->desc_ring
[i
].skb
);
719 netif_wake_subqueue(dev
, i
);
723 priv
->desc_ring
[0].dataflags
= 0;
724 if (priv
->desc_ring
[0].skb
)
725 dev_kfree_skb_any(priv
->desc_ring
[0].skb
);
726 netif_wake_queue(dev
);
730 static int cpmac_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
732 struct cpmac_priv
*priv
= netdev_priv(dev
);
733 if (!(netif_running(dev
)))
737 if ((cmd
== SIOCGMIIPHY
) || (cmd
== SIOCGMIIREG
) ||
738 (cmd
== SIOCSMIIREG
))
739 return phy_mii_ioctl(priv
->phy
, if_mii(ifr
), cmd
);
744 static int cpmac_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
746 struct cpmac_priv
*priv
= netdev_priv(dev
);
749 return phy_ethtool_gset(priv
->phy
, cmd
);
754 static int cpmac_set_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
756 struct cpmac_priv
*priv
= netdev_priv(dev
);
758 if (!capable(CAP_NET_ADMIN
))
762 return phy_ethtool_sset(priv
->phy
, cmd
);
767 static void cpmac_get_ringparam(struct net_device
*dev
, struct ethtool_ringparam
* ring
)
769 struct cpmac_priv
*priv
= netdev_priv(dev
);
771 ring
->rx_max_pending
= 1024;
772 ring
->rx_mini_max_pending
= 1;
773 ring
->rx_jumbo_max_pending
= 1;
774 ring
->tx_max_pending
= 1;
776 ring
->rx_pending
= priv
->ring_size
;
777 ring
->rx_mini_pending
= 1;
778 ring
->rx_jumbo_pending
= 1;
779 ring
->tx_pending
= 1;
782 static int cpmac_set_ringparam(struct net_device
*dev
, struct ethtool_ringparam
* ring
)
784 struct cpmac_priv
*priv
= netdev_priv(dev
);
786 if (netif_running(dev
))
788 priv
->ring_size
= ring
->rx_pending
;
792 static void cpmac_get_drvinfo(struct net_device
*dev
,
793 struct ethtool_drvinfo
*info
)
795 strcpy(info
->driver
, "cpmac");
796 strcpy(info
->version
, CPMAC_VERSION
);
797 info
->fw_version
[0] = '\0';
798 sprintf(info
->bus_info
, "%s", "cpmac");
799 info
->regdump_len
= 0;
802 static const struct ethtool_ops cpmac_ethtool_ops
= {
803 .get_settings
= cpmac_get_settings
,
804 .set_settings
= cpmac_set_settings
,
805 .get_drvinfo
= cpmac_get_drvinfo
,
806 .get_link
= ethtool_op_get_link
,
807 .get_ringparam
= cpmac_get_ringparam
,
808 .set_ringparam
= cpmac_set_ringparam
,
811 static void cpmac_adjust_link(struct net_device
*dev
)
813 struct cpmac_priv
*priv
= netdev_priv(dev
);
816 spin_lock(&priv
->lock
);
817 if (priv
->phy
->link
) {
818 netif_start_queue(dev
);
819 if (priv
->phy
->duplex
!= priv
->oldduplex
) {
821 priv
->oldduplex
= priv
->phy
->duplex
;
824 if (priv
->phy
->speed
!= priv
->oldspeed
) {
826 priv
->oldspeed
= priv
->phy
->speed
;
829 if (!priv
->oldlink
) {
834 } else if (priv
->oldlink
) {
835 netif_stop_queue(dev
);
839 priv
->oldduplex
= -1;
842 if (new_state
&& netif_msg_link(priv
) && net_ratelimit())
843 phy_print_status(priv
->phy
);
845 spin_unlock(&priv
->lock
);
848 static int cpmac_open(struct net_device
*dev
)
851 struct cpmac_priv
*priv
= netdev_priv(dev
);
852 struct resource
*mem
;
853 struct cpmac_desc
*desc
;
856 mem
= platform_get_resource_byname(priv
->pdev
, IORESOURCE_MEM
, "regs");
857 if (!request_mem_region(mem
->start
, mem
->end
- mem
->start
, dev
->name
)) {
858 if (netif_msg_drv(priv
))
859 printk(KERN_ERR
"%s: failed to request registers\n",
865 priv
->regs
= ioremap(mem
->start
, mem
->end
- mem
->start
);
867 if (netif_msg_drv(priv
))
868 printk(KERN_ERR
"%s: failed to remap registers\n",
874 size
= priv
->ring_size
+ CPMAC_QUEUES
;
875 priv
->desc_ring
= dma_alloc_coherent(&dev
->dev
,
876 sizeof(struct cpmac_desc
) * size
,
879 if (!priv
->desc_ring
) {
884 for (i
= 0; i
< size
; i
++)
885 priv
->desc_ring
[i
].mapping
= priv
->dma_ring
+ sizeof(*desc
) * i
;
887 priv
->rx_head
= &priv
->desc_ring
[CPMAC_QUEUES
];
888 for (i
= 0, desc
= priv
->rx_head
; i
< priv
->ring_size
; i
++, desc
++) {
889 skb
= netdev_alloc_skb(dev
, CPMAC_SKB_SIZE
);
890 if (unlikely(!skb
)) {
896 desc
->data_mapping
= dma_map_single(&dev
->dev
, skb
->data
,
899 desc
->hw_data
= (u32
)desc
->data_mapping
;
900 desc
->buflen
= CPMAC_SKB_SIZE
;
901 desc
->dataflags
= CPMAC_OWN
;
902 desc
->next
= &priv
->rx_head
[(i
+ 1) % priv
->ring_size
];
903 desc
->hw_next
= (u32
)desc
->next
->mapping
;
906 if ((res
= request_irq(dev
->irq
, cpmac_irq
, IRQF_SHARED
,
908 if (netif_msg_drv(priv
))
909 printk(KERN_ERR
"%s: failed to obtain irq\n",
914 INIT_WORK(&priv
->reset_work
, cpmac_hw_error
);
917 napi_enable(&priv
->napi
);
918 priv
->phy
->state
= PHY_CHANGELINK
;
919 phy_start(priv
->phy
);
925 for (i
= 0; i
< priv
->ring_size
; i
++) {
926 if (priv
->rx_head
[i
].skb
) {
927 dma_unmap_single(&dev
->dev
,
928 priv
->rx_head
[i
].data_mapping
,
931 kfree_skb(priv
->rx_head
[i
].skb
);
935 kfree(priv
->desc_ring
);
939 release_mem_region(mem
->start
, mem
->end
- mem
->start
);
945 static int cpmac_stop(struct net_device
*dev
)
948 struct cpmac_priv
*priv
= netdev_priv(dev
);
949 struct resource
*mem
;
951 netif_stop_queue(dev
);
953 cancel_work_sync(&priv
->reset_work
);
954 napi_disable(&priv
->napi
);
959 for (i
= 0; i
< 8; i
++)
960 cpmac_write(priv
->regs
, CPMAC_TX_PTR(i
), 0);
961 cpmac_write(priv
->regs
, CPMAC_RX_PTR(0), 0);
962 cpmac_write(priv
->regs
, CPMAC_MBP
, 0);
964 free_irq(dev
->irq
, dev
);
966 mem
= platform_get_resource_byname(priv
->pdev
, IORESOURCE_MEM
, "regs");
967 release_mem_region(mem
->start
, mem
->end
- mem
->start
);
968 priv
->rx_head
= &priv
->desc_ring
[CPMAC_QUEUES
];
969 for (i
= 0; i
< priv
->ring_size
; i
++) {
970 if (priv
->rx_head
[i
].skb
) {
971 dma_unmap_single(&dev
->dev
,
972 priv
->rx_head
[i
].data_mapping
,
975 kfree_skb(priv
->rx_head
[i
].skb
);
979 dma_free_coherent(&dev
->dev
, sizeof(struct cpmac_desc
) *
980 (CPMAC_QUEUES
+ priv
->ring_size
),
981 priv
->desc_ring
, priv
->dma_ring
);
985 static int external_switch
;
987 static int __devinit
cpmac_probe(struct platform_device
*pdev
)
990 int mdio_bus_id
= cpmac_mii
.id
;
991 struct resource
*mem
;
992 struct cpmac_priv
*priv
;
993 struct net_device
*dev
;
994 struct plat_cpmac_data
*pdata
;
995 DECLARE_MAC_BUF(mac
);
997 pdata
= pdev
->dev
.platform_data
;
999 for (phy_id
= 0; phy_id
< PHY_MAX_ADDR
; phy_id
++) {
1000 if (!(pdata
->phy_mask
& (1 << phy_id
)))
1002 if (!cpmac_mii
.phy_map
[phy_id
])
1007 if (phy_id
== PHY_MAX_ADDR
) {
1008 if (external_switch
|| dumb_switch
) {
1009 struct fixed_phy_status status
= {};
1014 * FIXME: this should be in the platform code!
1015 * Since there is not platform code at all (that is,
1016 * no mainline users of that driver), place it here
1023 fixed_phy_add(PHY_POLL
, phy_id
, &status
);
1025 printk(KERN_ERR
"cpmac: no PHY present\n");
1030 dev
= alloc_etherdev_mq(sizeof(*priv
), CPMAC_QUEUES
);
1033 printk(KERN_ERR
"cpmac: Unable to allocate net_device\n");
1037 platform_set_drvdata(pdev
, dev
);
1038 priv
= netdev_priv(dev
);
1041 mem
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "regs");
1047 dev
->irq
= platform_get_irq_byname(pdev
, "irq");
1049 dev
->open
= cpmac_open
;
1050 dev
->stop
= cpmac_stop
;
1051 dev
->set_config
= cpmac_config
;
1052 dev
->hard_start_xmit
= cpmac_start_xmit
;
1053 dev
->do_ioctl
= cpmac_ioctl
;
1054 dev
->set_multicast_list
= cpmac_set_multicast_list
;
1055 dev
->tx_timeout
= cpmac_tx_timeout
;
1056 dev
->ethtool_ops
= &cpmac_ethtool_ops
;
1057 dev
->features
|= NETIF_F_MULTI_QUEUE
;
1059 netif_napi_add(dev
, &priv
->napi
, cpmac_poll
, 64);
1061 spin_lock_init(&priv
->lock
);
1062 spin_lock_init(&priv
->rx_lock
);
1064 priv
->ring_size
= 64;
1065 priv
->msg_enable
= netif_msg_init(debug_level
, 0xff);
1066 memcpy(dev
->dev_addr
, pdata
->dev_addr
, sizeof(dev
->dev_addr
));
1068 snprintf(priv
->phy_name
, BUS_ID_SIZE
, PHY_ID_FMT
, mdio_bus_id
, phy_id
);
1070 priv
->phy
= phy_connect(dev
, priv
->phy_name
, &cpmac_adjust_link
, 0,
1071 PHY_INTERFACE_MODE_MII
);
1072 if (IS_ERR(priv
->phy
)) {
1073 if (netif_msg_drv(priv
))
1074 printk(KERN_ERR
"%s: Could not attach to PHY\n",
1076 return PTR_ERR(priv
->phy
);
1079 if ((rc
= register_netdev(dev
))) {
1080 printk(KERN_ERR
"cpmac: error %i registering device %s\n", rc
,
1085 if (netif_msg_probe(priv
)) {
1087 "cpmac: device %s (regs: %p, irq: %d, phy: %s, "
1088 "mac: %s)\n", dev
->name
, (void *)mem
->start
, dev
->irq
,
1089 priv
->phy_name
, print_mac(mac
, dev
->dev_addr
));
1098 static int __devexit
cpmac_remove(struct platform_device
*pdev
)
1100 struct net_device
*dev
= platform_get_drvdata(pdev
);
1101 unregister_netdev(dev
);
1106 static struct platform_driver cpmac_driver
= {
1107 .driver
.name
= "cpmac",
1108 .probe
= cpmac_probe
,
1109 .remove
= __devexit_p(cpmac_remove
),
1112 int __devinit
cpmac_init(void)
1117 cpmac_mii
.priv
= ioremap(AR7_REGS_MDIO
, 256);
1119 if (!cpmac_mii
.priv
) {
1120 printk(KERN_ERR
"Can't ioremap mdio registers\n");
1124 #warning FIXME: unhardcode gpio&reset bits
1125 ar7_gpio_disable(26);
1126 ar7_gpio_disable(27);
1127 ar7_device_reset(AR7_RESET_BIT_CPMAC_LO
);
1128 ar7_device_reset(AR7_RESET_BIT_CPMAC_HI
);
1129 ar7_device_reset(AR7_RESET_BIT_EPHY
);
1131 cpmac_mii
.reset(&cpmac_mii
);
1133 for (i
= 0; i
< 300000; i
++)
1134 if ((mask
= cpmac_read(cpmac_mii
.priv
, CPMAC_MDIO_ALIVE
)))
1140 if (mask
& (mask
- 1)) {
1141 external_switch
= 1;
1145 cpmac_mii
.phy_mask
= ~(mask
| 0x80000000);
1147 res
= mdiobus_register(&cpmac_mii
);
1151 res
= platform_driver_register(&cpmac_driver
);
1158 mdiobus_unregister(&cpmac_mii
);
1161 iounmap(cpmac_mii
.priv
);
1166 void __devexit
cpmac_exit(void)
1168 platform_driver_unregister(&cpmac_driver
);
1169 mdiobus_unregister(&cpmac_mii
);
1170 iounmap(cpmac_mii
.priv
);
1173 module_init(cpmac_init
);
1174 module_exit(cpmac_exit
);