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/interrupt.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>
30 #include <linux/netdevice.h>
31 #include <linux/if_vlan.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>
40 #include <linux/clk.h>
41 #include <linux/gpio.h>
42 #include <linux/atomic.h>
44 #include <asm/mach-ar7/ar7.h>
46 MODULE_AUTHOR("Eugene Konev <ejka@imfi.kspu.ru>");
47 MODULE_DESCRIPTION("TI AR7 ethernet driver (CPMAC)");
48 MODULE_LICENSE("GPL");
49 MODULE_ALIAS("platform:cpmac");
51 static int debug_level
= 8;
52 static int dumb_switch
;
54 /* Next 2 are only used in cpmac_probe, so it's pointless to change them */
55 module_param(debug_level
, int, 0444);
56 module_param(dumb_switch
, int, 0444);
58 MODULE_PARM_DESC(debug_level
, "Number of NETIF_MSG bits to enable");
59 MODULE_PARM_DESC(dumb_switch
, "Assume switch is not connected to MDIO bus");
61 #define CPMAC_VERSION "0.5.2"
62 /* frame size + 802.1q tag + FCS size */
63 #define CPMAC_SKB_SIZE (ETH_FRAME_LEN + ETH_FCS_LEN + VLAN_HLEN)
64 #define CPMAC_QUEUES 8
66 /* Ethernet registers */
67 #define CPMAC_TX_CONTROL 0x0004
68 #define CPMAC_TX_TEARDOWN 0x0008
69 #define CPMAC_RX_CONTROL 0x0014
70 #define CPMAC_RX_TEARDOWN 0x0018
71 #define CPMAC_MBP 0x0100
72 #define MBP_RXPASSCRC 0x40000000
73 #define MBP_RXQOS 0x20000000
74 #define MBP_RXNOCHAIN 0x10000000
75 #define MBP_RXCMF 0x01000000
76 #define MBP_RXSHORT 0x00800000
77 #define MBP_RXCEF 0x00400000
78 #define MBP_RXPROMISC 0x00200000
79 #define MBP_PROMISCCHAN(channel) (((channel) & 0x7) << 16)
80 #define MBP_RXBCAST 0x00002000
81 #define MBP_BCASTCHAN(channel) (((channel) & 0x7) << 8)
82 #define MBP_RXMCAST 0x00000020
83 #define MBP_MCASTCHAN(channel) ((channel) & 0x7)
84 #define CPMAC_UNICAST_ENABLE 0x0104
85 #define CPMAC_UNICAST_CLEAR 0x0108
86 #define CPMAC_MAX_LENGTH 0x010c
87 #define CPMAC_BUFFER_OFFSET 0x0110
88 #define CPMAC_MAC_CONTROL 0x0160
89 #define MAC_TXPTYPE 0x00000200
90 #define MAC_TXPACE 0x00000040
91 #define MAC_MII 0x00000020
92 #define MAC_TXFLOW 0x00000010
93 #define MAC_RXFLOW 0x00000008
94 #define MAC_MTEST 0x00000004
95 #define MAC_LOOPBACK 0x00000002
96 #define MAC_FDX 0x00000001
97 #define CPMAC_MAC_STATUS 0x0164
98 #define MAC_STATUS_QOS 0x00000004
99 #define MAC_STATUS_RXFLOW 0x00000002
100 #define MAC_STATUS_TXFLOW 0x00000001
101 #define CPMAC_TX_INT_ENABLE 0x0178
102 #define CPMAC_TX_INT_CLEAR 0x017c
103 #define CPMAC_MAC_INT_VECTOR 0x0180
104 #define MAC_INT_STATUS 0x00080000
105 #define MAC_INT_HOST 0x00040000
106 #define MAC_INT_RX 0x00020000
107 #define MAC_INT_TX 0x00010000
108 #define CPMAC_MAC_EOI_VECTOR 0x0184
109 #define CPMAC_RX_INT_ENABLE 0x0198
110 #define CPMAC_RX_INT_CLEAR 0x019c
111 #define CPMAC_MAC_INT_ENABLE 0x01a8
112 #define CPMAC_MAC_INT_CLEAR 0x01ac
113 #define CPMAC_MAC_ADDR_LO(channel) (0x01b0 + (channel) * 4)
114 #define CPMAC_MAC_ADDR_MID 0x01d0
115 #define CPMAC_MAC_ADDR_HI 0x01d4
116 #define CPMAC_MAC_HASH_LO 0x01d8
117 #define CPMAC_MAC_HASH_HI 0x01dc
118 #define CPMAC_TX_PTR(channel) (0x0600 + (channel) * 4)
119 #define CPMAC_RX_PTR(channel) (0x0620 + (channel) * 4)
120 #define CPMAC_TX_ACK(channel) (0x0640 + (channel) * 4)
121 #define CPMAC_RX_ACK(channel) (0x0660 + (channel) * 4)
122 #define CPMAC_REG_END 0x0680
125 * TODO: use some of them to fill stats in cpmac_stats()
127 #define CPMAC_STATS_RX_GOOD 0x0200
128 #define CPMAC_STATS_RX_BCAST 0x0204
129 #define CPMAC_STATS_RX_MCAST 0x0208
130 #define CPMAC_STATS_RX_PAUSE 0x020c
131 #define CPMAC_STATS_RX_CRC 0x0210
132 #define CPMAC_STATS_RX_ALIGN 0x0214
133 #define CPMAC_STATS_RX_OVER 0x0218
134 #define CPMAC_STATS_RX_JABBER 0x021c
135 #define CPMAC_STATS_RX_UNDER 0x0220
136 #define CPMAC_STATS_RX_FRAG 0x0224
137 #define CPMAC_STATS_RX_FILTER 0x0228
138 #define CPMAC_STATS_RX_QOSFILTER 0x022c
139 #define CPMAC_STATS_RX_OCTETS 0x0230
141 #define CPMAC_STATS_TX_GOOD 0x0234
142 #define CPMAC_STATS_TX_BCAST 0x0238
143 #define CPMAC_STATS_TX_MCAST 0x023c
144 #define CPMAC_STATS_TX_PAUSE 0x0240
145 #define CPMAC_STATS_TX_DEFER 0x0244
146 #define CPMAC_STATS_TX_COLLISION 0x0248
147 #define CPMAC_STATS_TX_SINGLECOLL 0x024c
148 #define CPMAC_STATS_TX_MULTICOLL 0x0250
149 #define CPMAC_STATS_TX_EXCESSCOLL 0x0254
150 #define CPMAC_STATS_TX_LATECOLL 0x0258
151 #define CPMAC_STATS_TX_UNDERRUN 0x025c
152 #define CPMAC_STATS_TX_CARRIERSENSE 0x0260
153 #define CPMAC_STATS_TX_OCTETS 0x0264
155 #define cpmac_read(base, reg) (readl((void __iomem *)(base) + (reg)))
156 #define cpmac_write(base, reg, val) (writel(val, (void __iomem *)(base) + \
160 #define CPMAC_MDIO_VERSION 0x0000
161 #define CPMAC_MDIO_CONTROL 0x0004
162 #define MDIOC_IDLE 0x80000000
163 #define MDIOC_ENABLE 0x40000000
164 #define MDIOC_PREAMBLE 0x00100000
165 #define MDIOC_FAULT 0x00080000
166 #define MDIOC_FAULTDETECT 0x00040000
167 #define MDIOC_INTTEST 0x00020000
168 #define MDIOC_CLKDIV(div) ((div) & 0xff)
169 #define CPMAC_MDIO_ALIVE 0x0008
170 #define CPMAC_MDIO_LINK 0x000c
171 #define CPMAC_MDIO_ACCESS(channel) (0x0080 + (channel) * 8)
172 #define MDIO_BUSY 0x80000000
173 #define MDIO_WRITE 0x40000000
174 #define MDIO_REG(reg) (((reg) & 0x1f) << 21)
175 #define MDIO_PHY(phy) (((phy) & 0x1f) << 16)
176 #define MDIO_DATA(data) ((data) & 0xffff)
177 #define CPMAC_MDIO_PHYSEL(channel) (0x0084 + (channel) * 8)
178 #define PHYSEL_LINKSEL 0x00000040
179 #define PHYSEL_LINKINT 0x00000020
188 #define CPMAC_SOP 0x8000
189 #define CPMAC_EOP 0x4000
190 #define CPMAC_OWN 0x2000
191 #define CPMAC_EOQ 0x1000
193 struct cpmac_desc
*next
;
194 struct cpmac_desc
*prev
;
196 dma_addr_t data_mapping
;
202 struct cpmac_desc
*rx_head
;
204 struct cpmac_desc
*desc_ring
;
207 struct mii_bus
*mii_bus
;
208 char phy_name
[MII_BUS_ID_SIZE
+ 3];
209 int oldlink
, oldspeed
, oldduplex
;
211 struct net_device
*dev
;
212 struct work_struct reset_work
;
213 struct platform_device
*pdev
;
214 struct napi_struct napi
;
215 atomic_t reset_pending
;
218 static irqreturn_t
cpmac_irq(int, void *);
219 static void cpmac_hw_start(struct net_device
*dev
);
220 static void cpmac_hw_stop(struct net_device
*dev
);
221 static int cpmac_stop(struct net_device
*dev
);
222 static int cpmac_open(struct net_device
*dev
);
224 static void cpmac_dump_regs(struct net_device
*dev
)
227 struct cpmac_priv
*priv
= netdev_priv(dev
);
229 for (i
= 0; i
< CPMAC_REG_END
; i
+= 4) {
233 printk("%s: reg[%p]:", dev
->name
, priv
->regs
+ i
);
235 printk(" %08x", cpmac_read(priv
->regs
, i
));
240 static void cpmac_dump_desc(struct net_device
*dev
, struct cpmac_desc
*desc
)
244 printk("%s: desc[%p]:", dev
->name
, desc
);
245 for (i
= 0; i
< sizeof(*desc
) / 4; i
++)
246 printk(" %08x", ((u32
*)desc
)[i
]);
250 static void cpmac_dump_all_desc(struct net_device
*dev
)
252 struct cpmac_priv
*priv
= netdev_priv(dev
);
253 struct cpmac_desc
*dump
= priv
->rx_head
;
256 cpmac_dump_desc(dev
, dump
);
258 } while (dump
!= priv
->rx_head
);
261 static void cpmac_dump_skb(struct net_device
*dev
, struct sk_buff
*skb
)
265 printk("%s: skb 0x%p, len=%d\n", dev
->name
, skb
, skb
->len
);
266 for (i
= 0; i
< skb
->len
; i
++) {
270 printk("%s: data[%p]:", dev
->name
, skb
->data
+ i
);
272 printk(" %02x", ((u8
*)skb
->data
)[i
]);
277 static int cpmac_mdio_read(struct mii_bus
*bus
, int phy_id
, int reg
)
281 while (cpmac_read(bus
->priv
, CPMAC_MDIO_ACCESS(0)) & MDIO_BUSY
)
283 cpmac_write(bus
->priv
, CPMAC_MDIO_ACCESS(0), MDIO_BUSY
| MDIO_REG(reg
) |
285 while ((val
= cpmac_read(bus
->priv
, CPMAC_MDIO_ACCESS(0))) & MDIO_BUSY
)
288 return MDIO_DATA(val
);
291 static int cpmac_mdio_write(struct mii_bus
*bus
, int phy_id
,
294 while (cpmac_read(bus
->priv
, CPMAC_MDIO_ACCESS(0)) & MDIO_BUSY
)
296 cpmac_write(bus
->priv
, CPMAC_MDIO_ACCESS(0), MDIO_BUSY
| MDIO_WRITE
|
297 MDIO_REG(reg
) | MDIO_PHY(phy_id
) | MDIO_DATA(val
));
302 static int cpmac_mdio_reset(struct mii_bus
*bus
)
304 struct clk
*cpmac_clk
;
306 cpmac_clk
= clk_get(&bus
->dev
, "cpmac");
307 if (IS_ERR(cpmac_clk
)) {
308 pr_err("unable to get cpmac clock\n");
311 ar7_device_reset(AR7_RESET_BIT_MDIO
);
312 cpmac_write(bus
->priv
, CPMAC_MDIO_CONTROL
, MDIOC_ENABLE
|
313 MDIOC_CLKDIV(clk_get_rate(cpmac_clk
) / 2200000 - 1));
318 static struct mii_bus
*cpmac_mii
;
320 static void cpmac_set_multicast_list(struct net_device
*dev
)
322 struct netdev_hw_addr
*ha
;
324 u32 mbp
, bit
, hash
[2] = { 0, };
325 struct cpmac_priv
*priv
= netdev_priv(dev
);
327 mbp
= cpmac_read(priv
->regs
, CPMAC_MBP
);
328 if (dev
->flags
& IFF_PROMISC
) {
329 cpmac_write(priv
->regs
, CPMAC_MBP
, (mbp
& ~MBP_PROMISCCHAN(0)) |
332 cpmac_write(priv
->regs
, CPMAC_MBP
, mbp
& ~MBP_RXPROMISC
);
333 if (dev
->flags
& IFF_ALLMULTI
) {
334 /* enable all multicast mode */
335 cpmac_write(priv
->regs
, CPMAC_MAC_HASH_LO
, 0xffffffff);
336 cpmac_write(priv
->regs
, CPMAC_MAC_HASH_HI
, 0xffffffff);
338 /* cpmac uses some strange mac address hashing
341 netdev_for_each_mc_addr(ha
, dev
) {
344 bit
^= (tmp
>> 2) ^ (tmp
<< 4);
346 bit
^= (tmp
>> 4) ^ (tmp
<< 2);
348 bit
^= (tmp
>> 6) ^ tmp
;
350 bit
^= (tmp
>> 2) ^ (tmp
<< 4);
352 bit
^= (tmp
>> 4) ^ (tmp
<< 2);
354 bit
^= (tmp
>> 6) ^ tmp
;
356 hash
[bit
/ 32] |= 1 << (bit
% 32);
359 cpmac_write(priv
->regs
, CPMAC_MAC_HASH_LO
, hash
[0]);
360 cpmac_write(priv
->regs
, CPMAC_MAC_HASH_HI
, hash
[1]);
365 static struct sk_buff
*cpmac_rx_one(struct cpmac_priv
*priv
,
366 struct cpmac_desc
*desc
)
368 struct sk_buff
*skb
, *result
= NULL
;
370 if (unlikely(netif_msg_hw(priv
)))
371 cpmac_dump_desc(priv
->dev
, desc
);
372 cpmac_write(priv
->regs
, CPMAC_RX_ACK(0), (u32
)desc
->mapping
);
373 if (unlikely(!desc
->datalen
)) {
374 if (netif_msg_rx_err(priv
) && net_ratelimit())
375 netdev_warn(priv
->dev
, "rx: spurious interrupt\n");
380 skb
= netdev_alloc_skb_ip_align(priv
->dev
, CPMAC_SKB_SIZE
);
382 skb_put(desc
->skb
, desc
->datalen
);
383 desc
->skb
->protocol
= eth_type_trans(desc
->skb
, priv
->dev
);
384 skb_checksum_none_assert(desc
->skb
);
385 priv
->dev
->stats
.rx_packets
++;
386 priv
->dev
->stats
.rx_bytes
+= desc
->datalen
;
388 dma_unmap_single(&priv
->dev
->dev
, desc
->data_mapping
,
389 CPMAC_SKB_SIZE
, DMA_FROM_DEVICE
);
391 desc
->data_mapping
= dma_map_single(&priv
->dev
->dev
, skb
->data
,
394 desc
->hw_data
= (u32
)desc
->data_mapping
;
395 if (unlikely(netif_msg_pktdata(priv
))) {
396 netdev_dbg(priv
->dev
, "received packet:\n");
397 cpmac_dump_skb(priv
->dev
, result
);
400 if (netif_msg_rx_err(priv
) && net_ratelimit())
401 netdev_warn(priv
->dev
,
402 "low on skbs, dropping packet\n");
404 priv
->dev
->stats
.rx_dropped
++;
407 desc
->buflen
= CPMAC_SKB_SIZE
;
408 desc
->dataflags
= CPMAC_OWN
;
413 static int cpmac_poll(struct napi_struct
*napi
, int budget
)
416 struct cpmac_desc
*desc
, *restart
;
417 struct cpmac_priv
*priv
= container_of(napi
, struct cpmac_priv
, napi
);
418 int received
= 0, processed
= 0;
420 spin_lock(&priv
->rx_lock
);
421 if (unlikely(!priv
->rx_head
)) {
422 if (netif_msg_rx_err(priv
) && net_ratelimit())
423 netdev_warn(priv
->dev
, "rx: polling, but no queue\n");
425 spin_unlock(&priv
->rx_lock
);
430 desc
= priv
->rx_head
;
432 while (((desc
->dataflags
& CPMAC_OWN
) == 0) && (received
< budget
)) {
435 if ((desc
->dataflags
& CPMAC_EOQ
) != 0) {
436 /* The last update to eoq->hw_next didn't happen
437 * soon enough, and the receiver stopped here.
438 * Remember this descriptor so we can restart
439 * the receiver after freeing some space.
441 if (unlikely(restart
)) {
442 if (netif_msg_rx_err(priv
))
443 netdev_err(priv
->dev
, "poll found a"
444 " duplicate EOQ: %p and %p\n",
449 restart
= desc
->next
;
452 skb
= cpmac_rx_one(priv
, desc
);
454 netif_receive_skb(skb
);
460 if (desc
!= priv
->rx_head
) {
461 /* We freed some buffers, but not the whole ring,
462 * add what we did free to the rx list
464 desc
->prev
->hw_next
= (u32
)0;
465 priv
->rx_head
->prev
->hw_next
= priv
->rx_head
->mapping
;
468 /* Optimization: If we did not actually process an EOQ (perhaps because
469 * of quota limits), check to see if the tail of the queue has EOQ set.
470 * We should immediately restart in that case so that the receiver can
471 * restart and run in parallel with more packet processing.
472 * This lets us handle slightly larger bursts before running
473 * out of ring space (assuming dev->weight < ring_size)
477 (priv
->rx_head
->prev
->dataflags
& (CPMAC_OWN
|CPMAC_EOQ
))
479 (priv
->rx_head
->dataflags
& CPMAC_OWN
) != 0) {
480 /* reset EOQ so the poll loop (above) doesn't try to
481 * restart this when it eventually gets to this descriptor.
483 priv
->rx_head
->prev
->dataflags
&= ~CPMAC_EOQ
;
484 restart
= priv
->rx_head
;
488 priv
->dev
->stats
.rx_errors
++;
489 priv
->dev
->stats
.rx_fifo_errors
++;
490 if (netif_msg_rx_err(priv
) && net_ratelimit())
491 netdev_warn(priv
->dev
, "rx dma ring overrun\n");
493 if (unlikely((restart
->dataflags
& CPMAC_OWN
) == 0)) {
494 if (netif_msg_drv(priv
))
495 netdev_err(priv
->dev
, "cpmac_poll is trying "
496 "to restart rx from a descriptor "
497 "that's not free: %p\n", restart
);
501 cpmac_write(priv
->regs
, CPMAC_RX_PTR(0), restart
->mapping
);
504 priv
->rx_head
= desc
;
505 spin_unlock(&priv
->rx_lock
);
506 if (unlikely(netif_msg_rx_status(priv
)))
507 netdev_dbg(priv
->dev
, "poll processed %d packets\n", received
);
509 if (processed
== 0) {
510 /* we ran out of packets to read,
511 * revert to interrupt-driven mode
514 cpmac_write(priv
->regs
, CPMAC_RX_INT_ENABLE
, 1);
521 /* Something went horribly wrong.
522 * Reset hardware to try to recover rather than wedging.
524 if (netif_msg_drv(priv
)) {
525 netdev_err(priv
->dev
, "cpmac_poll is confused. "
526 "Resetting hardware\n");
527 cpmac_dump_all_desc(priv
->dev
);
528 netdev_dbg(priv
->dev
, "RX_PTR(0)=0x%08x RX_ACK(0)=0x%08x\n",
529 cpmac_read(priv
->regs
, CPMAC_RX_PTR(0)),
530 cpmac_read(priv
->regs
, CPMAC_RX_ACK(0)));
533 spin_unlock(&priv
->rx_lock
);
535 netif_tx_stop_all_queues(priv
->dev
);
536 napi_disable(&priv
->napi
);
538 atomic_inc(&priv
->reset_pending
);
539 cpmac_hw_stop(priv
->dev
);
540 if (!schedule_work(&priv
->reset_work
))
541 atomic_dec(&priv
->reset_pending
);
547 static int cpmac_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
550 struct cpmac_desc
*desc
;
551 struct cpmac_priv
*priv
= netdev_priv(dev
);
553 if (unlikely(atomic_read(&priv
->reset_pending
)))
554 return NETDEV_TX_BUSY
;
556 if (unlikely(skb_padto(skb
, ETH_ZLEN
)))
559 len
= max(skb
->len
, ETH_ZLEN
);
560 queue
= skb_get_queue_mapping(skb
);
561 netif_stop_subqueue(dev
, queue
);
563 desc
= &priv
->desc_ring
[queue
];
564 if (unlikely(desc
->dataflags
& CPMAC_OWN
)) {
565 if (netif_msg_tx_err(priv
) && net_ratelimit())
566 netdev_warn(dev
, "tx dma ring full\n");
568 return NETDEV_TX_BUSY
;
571 spin_lock(&priv
->lock
);
572 spin_unlock(&priv
->lock
);
573 desc
->dataflags
= CPMAC_SOP
| CPMAC_EOP
| CPMAC_OWN
;
575 desc
->data_mapping
= dma_map_single(&dev
->dev
, skb
->data
, len
,
577 desc
->hw_data
= (u32
)desc
->data_mapping
;
580 if (unlikely(netif_msg_tx_queued(priv
)))
581 netdev_dbg(dev
, "sending 0x%p, len=%d\n", skb
, skb
->len
);
582 if (unlikely(netif_msg_hw(priv
)))
583 cpmac_dump_desc(dev
, desc
);
584 if (unlikely(netif_msg_pktdata(priv
)))
585 cpmac_dump_skb(dev
, skb
);
586 cpmac_write(priv
->regs
, CPMAC_TX_PTR(queue
), (u32
)desc
->mapping
);
591 static void cpmac_end_xmit(struct net_device
*dev
, int queue
)
593 struct cpmac_desc
*desc
;
594 struct cpmac_priv
*priv
= netdev_priv(dev
);
596 desc
= &priv
->desc_ring
[queue
];
597 cpmac_write(priv
->regs
, CPMAC_TX_ACK(queue
), (u32
)desc
->mapping
);
598 if (likely(desc
->skb
)) {
599 spin_lock(&priv
->lock
);
600 dev
->stats
.tx_packets
++;
601 dev
->stats
.tx_bytes
+= desc
->skb
->len
;
602 spin_unlock(&priv
->lock
);
603 dma_unmap_single(&dev
->dev
, desc
->data_mapping
, desc
->skb
->len
,
606 if (unlikely(netif_msg_tx_done(priv
)))
607 netdev_dbg(dev
, "sent 0x%p, len=%d\n",
608 desc
->skb
, desc
->skb
->len
);
610 dev_kfree_skb_irq(desc
->skb
);
612 if (__netif_subqueue_stopped(dev
, queue
))
613 netif_wake_subqueue(dev
, queue
);
615 if (netif_msg_tx_err(priv
) && net_ratelimit())
616 netdev_warn(dev
, "end_xmit: spurious interrupt\n");
617 if (__netif_subqueue_stopped(dev
, queue
))
618 netif_wake_subqueue(dev
, queue
);
622 static void cpmac_hw_stop(struct net_device
*dev
)
625 struct cpmac_priv
*priv
= netdev_priv(dev
);
626 struct plat_cpmac_data
*pdata
= dev_get_platdata(&priv
->pdev
->dev
);
628 ar7_device_reset(pdata
->reset_bit
);
629 cpmac_write(priv
->regs
, CPMAC_RX_CONTROL
,
630 cpmac_read(priv
->regs
, CPMAC_RX_CONTROL
) & ~1);
631 cpmac_write(priv
->regs
, CPMAC_TX_CONTROL
,
632 cpmac_read(priv
->regs
, CPMAC_TX_CONTROL
) & ~1);
633 for (i
= 0; i
< 8; i
++) {
634 cpmac_write(priv
->regs
, CPMAC_TX_PTR(i
), 0);
635 cpmac_write(priv
->regs
, CPMAC_RX_PTR(i
), 0);
637 cpmac_write(priv
->regs
, CPMAC_UNICAST_CLEAR
, 0xff);
638 cpmac_write(priv
->regs
, CPMAC_RX_INT_CLEAR
, 0xff);
639 cpmac_write(priv
->regs
, CPMAC_TX_INT_CLEAR
, 0xff);
640 cpmac_write(priv
->regs
, CPMAC_MAC_INT_CLEAR
, 0xff);
641 cpmac_write(priv
->regs
, CPMAC_MAC_CONTROL
,
642 cpmac_read(priv
->regs
, CPMAC_MAC_CONTROL
) & ~MAC_MII
);
645 static void cpmac_hw_start(struct net_device
*dev
)
648 struct cpmac_priv
*priv
= netdev_priv(dev
);
649 struct plat_cpmac_data
*pdata
= dev_get_platdata(&priv
->pdev
->dev
);
651 ar7_device_reset(pdata
->reset_bit
);
652 for (i
= 0; i
< 8; i
++) {
653 cpmac_write(priv
->regs
, CPMAC_TX_PTR(i
), 0);
654 cpmac_write(priv
->regs
, CPMAC_RX_PTR(i
), 0);
656 cpmac_write(priv
->regs
, CPMAC_RX_PTR(0), priv
->rx_head
->mapping
);
658 cpmac_write(priv
->regs
, CPMAC_MBP
, MBP_RXSHORT
| MBP_RXBCAST
|
660 cpmac_write(priv
->regs
, CPMAC_BUFFER_OFFSET
, 0);
661 for (i
= 0; i
< 8; i
++)
662 cpmac_write(priv
->regs
, CPMAC_MAC_ADDR_LO(i
), dev
->dev_addr
[5]);
663 cpmac_write(priv
->regs
, CPMAC_MAC_ADDR_MID
, dev
->dev_addr
[4]);
664 cpmac_write(priv
->regs
, CPMAC_MAC_ADDR_HI
, dev
->dev_addr
[0] |
665 (dev
->dev_addr
[1] << 8) | (dev
->dev_addr
[2] << 16) |
666 (dev
->dev_addr
[3] << 24));
667 cpmac_write(priv
->regs
, CPMAC_MAX_LENGTH
, CPMAC_SKB_SIZE
);
668 cpmac_write(priv
->regs
, CPMAC_UNICAST_CLEAR
, 0xff);
669 cpmac_write(priv
->regs
, CPMAC_RX_INT_CLEAR
, 0xff);
670 cpmac_write(priv
->regs
, CPMAC_TX_INT_CLEAR
, 0xff);
671 cpmac_write(priv
->regs
, CPMAC_MAC_INT_CLEAR
, 0xff);
672 cpmac_write(priv
->regs
, CPMAC_UNICAST_ENABLE
, 1);
673 cpmac_write(priv
->regs
, CPMAC_RX_INT_ENABLE
, 1);
674 cpmac_write(priv
->regs
, CPMAC_TX_INT_ENABLE
, 0xff);
675 cpmac_write(priv
->regs
, CPMAC_MAC_INT_ENABLE
, 3);
677 cpmac_write(priv
->regs
, CPMAC_RX_CONTROL
,
678 cpmac_read(priv
->regs
, CPMAC_RX_CONTROL
) | 1);
679 cpmac_write(priv
->regs
, CPMAC_TX_CONTROL
,
680 cpmac_read(priv
->regs
, CPMAC_TX_CONTROL
) | 1);
681 cpmac_write(priv
->regs
, CPMAC_MAC_CONTROL
,
682 cpmac_read(priv
->regs
, CPMAC_MAC_CONTROL
) | MAC_MII
|
686 static void cpmac_clear_rx(struct net_device
*dev
)
688 struct cpmac_priv
*priv
= netdev_priv(dev
);
689 struct cpmac_desc
*desc
;
692 if (unlikely(!priv
->rx_head
))
694 desc
= priv
->rx_head
;
695 for (i
= 0; i
< priv
->ring_size
; i
++) {
696 if ((desc
->dataflags
& CPMAC_OWN
) == 0) {
697 if (netif_msg_rx_err(priv
) && net_ratelimit())
698 netdev_warn(dev
, "packet dropped\n");
699 if (unlikely(netif_msg_hw(priv
)))
700 cpmac_dump_desc(dev
, desc
);
701 desc
->dataflags
= CPMAC_OWN
;
702 dev
->stats
.rx_dropped
++;
704 desc
->hw_next
= desc
->next
->mapping
;
707 priv
->rx_head
->prev
->hw_next
= 0;
710 static void cpmac_clear_tx(struct net_device
*dev
)
712 struct cpmac_priv
*priv
= netdev_priv(dev
);
715 if (unlikely(!priv
->desc_ring
))
717 for (i
= 0; i
< CPMAC_QUEUES
; i
++) {
718 priv
->desc_ring
[i
].dataflags
= 0;
719 if (priv
->desc_ring
[i
].skb
) {
720 dev_kfree_skb_any(priv
->desc_ring
[i
].skb
);
721 priv
->desc_ring
[i
].skb
= NULL
;
726 static void cpmac_hw_error(struct work_struct
*work
)
728 struct cpmac_priv
*priv
=
729 container_of(work
, struct cpmac_priv
, reset_work
);
731 spin_lock(&priv
->rx_lock
);
732 cpmac_clear_rx(priv
->dev
);
733 spin_unlock(&priv
->rx_lock
);
734 cpmac_clear_tx(priv
->dev
);
735 cpmac_hw_start(priv
->dev
);
737 atomic_dec(&priv
->reset_pending
);
739 netif_tx_wake_all_queues(priv
->dev
);
740 cpmac_write(priv
->regs
, CPMAC_MAC_INT_ENABLE
, 3);
743 static void cpmac_check_status(struct net_device
*dev
)
745 struct cpmac_priv
*priv
= netdev_priv(dev
);
747 u32 macstatus
= cpmac_read(priv
->regs
, CPMAC_MAC_STATUS
);
748 int rx_channel
= (macstatus
>> 8) & 7;
749 int rx_code
= (macstatus
>> 12) & 15;
750 int tx_channel
= (macstatus
>> 16) & 7;
751 int tx_code
= (macstatus
>> 20) & 15;
753 if (rx_code
|| tx_code
) {
754 if (netif_msg_drv(priv
) && net_ratelimit()) {
755 /* Can't find any documentation on what these
756 * error codes actually are. So just log them and hope..
759 netdev_warn(dev
, "host error %d on rx "
760 "channel %d (macstatus %08x), resetting\n",
761 rx_code
, rx_channel
, macstatus
);
763 netdev_warn(dev
, "host error %d on tx "
764 "channel %d (macstatus %08x), resetting\n",
765 tx_code
, tx_channel
, macstatus
);
768 netif_tx_stop_all_queues(dev
);
770 if (schedule_work(&priv
->reset_work
))
771 atomic_inc(&priv
->reset_pending
);
772 if (unlikely(netif_msg_hw(priv
)))
773 cpmac_dump_regs(dev
);
775 cpmac_write(priv
->regs
, CPMAC_MAC_INT_CLEAR
, 0xff);
778 static irqreturn_t
cpmac_irq(int irq
, void *dev_id
)
780 struct net_device
*dev
= dev_id
;
781 struct cpmac_priv
*priv
;
785 priv
= netdev_priv(dev
);
787 status
= cpmac_read(priv
->regs
, CPMAC_MAC_INT_VECTOR
);
789 if (unlikely(netif_msg_intr(priv
)))
790 netdev_dbg(dev
, "interrupt status: 0x%08x\n", status
);
792 if (status
& MAC_INT_TX
)
793 cpmac_end_xmit(dev
, (status
& 7));
795 if (status
& MAC_INT_RX
) {
796 queue
= (status
>> 8) & 7;
797 if (napi_schedule_prep(&priv
->napi
)) {
798 cpmac_write(priv
->regs
, CPMAC_RX_INT_CLEAR
, 1 << queue
);
799 __napi_schedule(&priv
->napi
);
803 cpmac_write(priv
->regs
, CPMAC_MAC_EOI_VECTOR
, 0);
805 if (unlikely(status
& (MAC_INT_HOST
| MAC_INT_STATUS
)))
806 cpmac_check_status(dev
);
811 static void cpmac_tx_timeout(struct net_device
*dev
)
813 struct cpmac_priv
*priv
= netdev_priv(dev
);
815 spin_lock(&priv
->lock
);
816 dev
->stats
.tx_errors
++;
817 spin_unlock(&priv
->lock
);
818 if (netif_msg_tx_err(priv
) && net_ratelimit())
819 netdev_warn(dev
, "transmit timeout\n");
821 atomic_inc(&priv
->reset_pending
);
825 atomic_dec(&priv
->reset_pending
);
827 netif_tx_wake_all_queues(priv
->dev
);
830 static int cpmac_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
832 if (!(netif_running(dev
)))
837 return phy_mii_ioctl(dev
->phydev
, ifr
, cmd
);
840 static void cpmac_get_ringparam(struct net_device
*dev
,
841 struct ethtool_ringparam
*ring
)
843 struct cpmac_priv
*priv
= netdev_priv(dev
);
845 ring
->rx_max_pending
= 1024;
846 ring
->rx_mini_max_pending
= 1;
847 ring
->rx_jumbo_max_pending
= 1;
848 ring
->tx_max_pending
= 1;
850 ring
->rx_pending
= priv
->ring_size
;
851 ring
->rx_mini_pending
= 1;
852 ring
->rx_jumbo_pending
= 1;
853 ring
->tx_pending
= 1;
856 static int cpmac_set_ringparam(struct net_device
*dev
,
857 struct ethtool_ringparam
*ring
)
859 struct cpmac_priv
*priv
= netdev_priv(dev
);
861 if (netif_running(dev
))
863 priv
->ring_size
= ring
->rx_pending
;
868 static void cpmac_get_drvinfo(struct net_device
*dev
,
869 struct ethtool_drvinfo
*info
)
871 strlcpy(info
->driver
, "cpmac", sizeof(info
->driver
));
872 strlcpy(info
->version
, CPMAC_VERSION
, sizeof(info
->version
));
873 snprintf(info
->bus_info
, sizeof(info
->bus_info
), "%s", "cpmac");
876 static const struct ethtool_ops cpmac_ethtool_ops
= {
877 .get_drvinfo
= cpmac_get_drvinfo
,
878 .get_link
= ethtool_op_get_link
,
879 .get_ringparam
= cpmac_get_ringparam
,
880 .set_ringparam
= cpmac_set_ringparam
,
881 .get_link_ksettings
= phy_ethtool_get_link_ksettings
,
882 .set_link_ksettings
= phy_ethtool_set_link_ksettings
,
885 static void cpmac_adjust_link(struct net_device
*dev
)
887 struct cpmac_priv
*priv
= netdev_priv(dev
);
890 spin_lock(&priv
->lock
);
891 if (dev
->phydev
->link
) {
892 netif_tx_start_all_queues(dev
);
893 if (dev
->phydev
->duplex
!= priv
->oldduplex
) {
895 priv
->oldduplex
= dev
->phydev
->duplex
;
898 if (dev
->phydev
->speed
!= priv
->oldspeed
) {
900 priv
->oldspeed
= dev
->phydev
->speed
;
903 if (!priv
->oldlink
) {
907 } else if (priv
->oldlink
) {
911 priv
->oldduplex
= -1;
914 if (new_state
&& netif_msg_link(priv
) && net_ratelimit())
915 phy_print_status(dev
->phydev
);
917 spin_unlock(&priv
->lock
);
920 static int cpmac_open(struct net_device
*dev
)
923 struct cpmac_priv
*priv
= netdev_priv(dev
);
924 struct resource
*mem
;
925 struct cpmac_desc
*desc
;
928 mem
= platform_get_resource_byname(priv
->pdev
, IORESOURCE_MEM
, "regs");
929 if (!request_mem_region(mem
->start
, resource_size(mem
), dev
->name
)) {
930 if (netif_msg_drv(priv
))
931 netdev_err(dev
, "failed to request registers\n");
937 priv
->regs
= ioremap(mem
->start
, resource_size(mem
));
939 if (netif_msg_drv(priv
))
940 netdev_err(dev
, "failed to remap registers\n");
946 size
= priv
->ring_size
+ CPMAC_QUEUES
;
947 priv
->desc_ring
= dma_alloc_coherent(&dev
->dev
,
948 sizeof(struct cpmac_desc
) * size
,
951 if (!priv
->desc_ring
) {
956 for (i
= 0; i
< size
; i
++)
957 priv
->desc_ring
[i
].mapping
= priv
->dma_ring
+ sizeof(*desc
) * i
;
959 priv
->rx_head
= &priv
->desc_ring
[CPMAC_QUEUES
];
960 for (i
= 0, desc
= priv
->rx_head
; i
< priv
->ring_size
; i
++, desc
++) {
961 skb
= netdev_alloc_skb_ip_align(dev
, CPMAC_SKB_SIZE
);
962 if (unlikely(!skb
)) {
967 desc
->data_mapping
= dma_map_single(&dev
->dev
, skb
->data
,
970 desc
->hw_data
= (u32
)desc
->data_mapping
;
971 desc
->buflen
= CPMAC_SKB_SIZE
;
972 desc
->dataflags
= CPMAC_OWN
;
973 desc
->next
= &priv
->rx_head
[(i
+ 1) % priv
->ring_size
];
974 desc
->next
->prev
= desc
;
975 desc
->hw_next
= (u32
)desc
->next
->mapping
;
978 priv
->rx_head
->prev
->hw_next
= (u32
)0;
980 res
= request_irq(dev
->irq
, cpmac_irq
, IRQF_SHARED
, dev
->name
, dev
);
982 if (netif_msg_drv(priv
))
983 netdev_err(dev
, "failed to obtain irq\n");
988 atomic_set(&priv
->reset_pending
, 0);
989 INIT_WORK(&priv
->reset_work
, cpmac_hw_error
);
992 napi_enable(&priv
->napi
);
993 dev
->phydev
->state
= PHY_CHANGELINK
;
994 phy_start(dev
->phydev
);
1000 for (i
= 0; i
< priv
->ring_size
; i
++) {
1001 if (priv
->rx_head
[i
].skb
) {
1002 dma_unmap_single(&dev
->dev
,
1003 priv
->rx_head
[i
].data_mapping
,
1006 kfree_skb(priv
->rx_head
[i
].skb
);
1009 dma_free_coherent(&dev
->dev
, sizeof(struct cpmac_desc
) * size
,
1010 priv
->desc_ring
, priv
->dma_ring
);
1013 iounmap(priv
->regs
);
1016 release_mem_region(mem
->start
, resource_size(mem
));
1022 static int cpmac_stop(struct net_device
*dev
)
1025 struct cpmac_priv
*priv
= netdev_priv(dev
);
1026 struct resource
*mem
;
1028 netif_tx_stop_all_queues(dev
);
1030 cancel_work_sync(&priv
->reset_work
);
1031 napi_disable(&priv
->napi
);
1032 phy_stop(dev
->phydev
);
1036 for (i
= 0; i
< 8; i
++)
1037 cpmac_write(priv
->regs
, CPMAC_TX_PTR(i
), 0);
1038 cpmac_write(priv
->regs
, CPMAC_RX_PTR(0), 0);
1039 cpmac_write(priv
->regs
, CPMAC_MBP
, 0);
1041 free_irq(dev
->irq
, dev
);
1042 iounmap(priv
->regs
);
1043 mem
= platform_get_resource_byname(priv
->pdev
, IORESOURCE_MEM
, "regs");
1044 release_mem_region(mem
->start
, resource_size(mem
));
1045 priv
->rx_head
= &priv
->desc_ring
[CPMAC_QUEUES
];
1046 for (i
= 0; i
< priv
->ring_size
; i
++) {
1047 if (priv
->rx_head
[i
].skb
) {
1048 dma_unmap_single(&dev
->dev
,
1049 priv
->rx_head
[i
].data_mapping
,
1052 kfree_skb(priv
->rx_head
[i
].skb
);
1056 dma_free_coherent(&dev
->dev
, sizeof(struct cpmac_desc
) *
1057 (CPMAC_QUEUES
+ priv
->ring_size
),
1058 priv
->desc_ring
, priv
->dma_ring
);
1063 static const struct net_device_ops cpmac_netdev_ops
= {
1064 .ndo_open
= cpmac_open
,
1065 .ndo_stop
= cpmac_stop
,
1066 .ndo_start_xmit
= cpmac_start_xmit
,
1067 .ndo_tx_timeout
= cpmac_tx_timeout
,
1068 .ndo_set_rx_mode
= cpmac_set_multicast_list
,
1069 .ndo_do_ioctl
= cpmac_ioctl
,
1070 .ndo_change_mtu
= eth_change_mtu
,
1071 .ndo_validate_addr
= eth_validate_addr
,
1072 .ndo_set_mac_address
= eth_mac_addr
,
1075 static int external_switch
;
1077 static int cpmac_probe(struct platform_device
*pdev
)
1080 char mdio_bus_id
[MII_BUS_ID_SIZE
];
1081 struct resource
*mem
;
1082 struct cpmac_priv
*priv
;
1083 struct net_device
*dev
;
1084 struct plat_cpmac_data
*pdata
;
1085 struct phy_device
*phydev
= NULL
;
1087 pdata
= dev_get_platdata(&pdev
->dev
);
1089 if (external_switch
|| dumb_switch
) {
1090 strncpy(mdio_bus_id
, "fixed-0", MII_BUS_ID_SIZE
); /* fixed phys bus */
1093 for (phy_id
= 0; phy_id
< PHY_MAX_ADDR
; phy_id
++) {
1094 if (!(pdata
->phy_mask
& (1 << phy_id
)))
1096 if (!mdiobus_get_phy(cpmac_mii
, phy_id
))
1098 strncpy(mdio_bus_id
, cpmac_mii
->id
, MII_BUS_ID_SIZE
);
1103 if (phy_id
== PHY_MAX_ADDR
) {
1104 dev_err(&pdev
->dev
, "no PHY present, falling back "
1105 "to switch on MDIO bus 0\n");
1106 strncpy(mdio_bus_id
, "fixed-0", MII_BUS_ID_SIZE
); /* fixed phys bus */
1109 mdio_bus_id
[sizeof(mdio_bus_id
) - 1] = '\0';
1111 dev
= alloc_etherdev_mq(sizeof(*priv
), CPMAC_QUEUES
);
1115 platform_set_drvdata(pdev
, dev
);
1116 priv
= netdev_priv(dev
);
1119 mem
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "regs");
1125 dev
->irq
= platform_get_irq_byname(pdev
, "irq");
1127 dev
->netdev_ops
= &cpmac_netdev_ops
;
1128 dev
->ethtool_ops
= &cpmac_ethtool_ops
;
1130 netif_napi_add(dev
, &priv
->napi
, cpmac_poll
, 64);
1132 spin_lock_init(&priv
->lock
);
1133 spin_lock_init(&priv
->rx_lock
);
1135 priv
->ring_size
= 64;
1136 priv
->msg_enable
= netif_msg_init(debug_level
, 0xff);
1137 memcpy(dev
->dev_addr
, pdata
->dev_addr
, sizeof(pdata
->dev_addr
));
1139 snprintf(priv
->phy_name
, MII_BUS_ID_SIZE
, PHY_ID_FMT
,
1140 mdio_bus_id
, phy_id
);
1142 phydev
= phy_connect(dev
, priv
->phy_name
, cpmac_adjust_link
,
1143 PHY_INTERFACE_MODE_MII
);
1145 if (IS_ERR(phydev
)) {
1146 if (netif_msg_drv(priv
))
1147 dev_err(&pdev
->dev
, "Could not attach to PHY\n");
1149 rc
= PTR_ERR(phydev
);
1153 rc
= register_netdev(dev
);
1155 dev_err(&pdev
->dev
, "Could not register net device\n");
1159 if (netif_msg_probe(priv
)) {
1160 dev_info(&pdev
->dev
, "regs: %p, irq: %d, phy: %s, "
1161 "mac: %pM\n", (void *)mem
->start
, dev
->irq
,
1162 priv
->phy_name
, dev
->dev_addr
);
1172 static int cpmac_remove(struct platform_device
*pdev
)
1174 struct net_device
*dev
= platform_get_drvdata(pdev
);
1176 unregister_netdev(dev
);
1182 static struct platform_driver cpmac_driver
= {
1186 .probe
= cpmac_probe
,
1187 .remove
= cpmac_remove
,
1190 int cpmac_init(void)
1195 cpmac_mii
= mdiobus_alloc();
1196 if (cpmac_mii
== NULL
)
1199 cpmac_mii
->name
= "cpmac-mii";
1200 cpmac_mii
->read
= cpmac_mdio_read
;
1201 cpmac_mii
->write
= cpmac_mdio_write
;
1202 cpmac_mii
->reset
= cpmac_mdio_reset
;
1204 cpmac_mii
->priv
= ioremap(AR7_REGS_MDIO
, 256);
1206 if (!cpmac_mii
->priv
) {
1207 pr_err("Can't ioremap mdio registers\n");
1212 #warning FIXME: unhardcode gpio&reset bits
1213 ar7_gpio_disable(26);
1214 ar7_gpio_disable(27);
1215 ar7_device_reset(AR7_RESET_BIT_CPMAC_LO
);
1216 ar7_device_reset(AR7_RESET_BIT_CPMAC_HI
);
1217 ar7_device_reset(AR7_RESET_BIT_EPHY
);
1219 cpmac_mii
->reset(cpmac_mii
);
1221 for (i
= 0; i
< 300; i
++) {
1222 mask
= cpmac_read(cpmac_mii
->priv
, CPMAC_MDIO_ALIVE
);
1230 if (mask
& (mask
- 1)) {
1231 external_switch
= 1;
1235 cpmac_mii
->phy_mask
= ~(mask
| 0x80000000);
1236 snprintf(cpmac_mii
->id
, MII_BUS_ID_SIZE
, "cpmac-1");
1238 res
= mdiobus_register(cpmac_mii
);
1242 res
= platform_driver_register(&cpmac_driver
);
1249 mdiobus_unregister(cpmac_mii
);
1252 iounmap(cpmac_mii
->priv
);
1255 mdiobus_free(cpmac_mii
);
1260 void cpmac_exit(void)
1262 platform_driver_unregister(&cpmac_driver
);
1263 mdiobus_unregister(cpmac_mii
);
1264 iounmap(cpmac_mii
->priv
);
1265 mdiobus_free(cpmac_mii
);
1268 module_init(cpmac_init
);
1269 module_exit(cpmac_exit
);