blob: bf2072e54200a61887eddae673fc7a63dbf4ba9c [file] [log] [blame]
Matteo Croced95b39c2007-10-14 18:10:13 +02001/*
2 * Copyright (C) 2006, 2007 Eugene Konev
3 *
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.
8 *
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.
13 *
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
17 */
18
19#include <linux/module.h>
20#include <linux/init.h>
21#include <linux/moduleparam.h>
22
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>
Matteo Croced95b39c2007-10-14 18:10:13 +020029
30#include <linux/netdevice.h>
31#include <linux/etherdevice.h>
32#include <linux/ethtool.h>
33#include <linux/skbuff.h>
34#include <linux/mii.h>
35#include <linux/phy.h>
Eugene Konevb88219f2007-10-24 10:42:03 +080036#include <linux/phy_fixed.h>
Matteo Croced95b39c2007-10-14 18:10:13 +020037#include <linux/platform_device.h>
38#include <linux/dma-mapping.h>
Florian Fainelli780019d2010-01-27 09:10:06 +010039#include <linux/clk.h>
Matteo Croced95b39c2007-10-14 18:10:13 +020040#include <asm/gpio.h>
Matteo Crocef917d582008-05-14 00:58:32 +020041#include <asm/atomic.h>
Matteo Croced95b39c2007-10-14 18:10:13 +020042
43MODULE_AUTHOR("Eugene Konev <ejka@imfi.kspu.ru>");
44MODULE_DESCRIPTION("TI AR7 ethernet driver (CPMAC)");
45MODULE_LICENSE("GPL");
Kay Sievers72abb462008-04-18 13:50:44 -070046MODULE_ALIAS("platform:cpmac");
Matteo Croced95b39c2007-10-14 18:10:13 +020047
48static int debug_level = 8;
49static int dumb_switch;
50
51/* Next 2 are only used in cpmac_probe, so it's pointless to change them */
52module_param(debug_level, int, 0444);
53module_param(dumb_switch, int, 0444);
54
55MODULE_PARM_DESC(debug_level, "Number of NETIF_MSG bits to enable");
56MODULE_PARM_DESC(dumb_switch, "Assume switch is not connected to MDIO bus");
57
Florian Fainelli4e43af32009-08-04 10:53:00 +000058#define CPMAC_VERSION "0.5.1"
Matteo Croced95b39c2007-10-14 18:10:13 +020059/* frame size + 802.1q tag */
60#define CPMAC_SKB_SIZE (ETH_FRAME_LEN + 4)
61#define CPMAC_QUEUES 8
62
63/* Ethernet registers */
64#define CPMAC_TX_CONTROL 0x0004
65#define CPMAC_TX_TEARDOWN 0x0008
66#define CPMAC_RX_CONTROL 0x0014
67#define CPMAC_RX_TEARDOWN 0x0018
68#define CPMAC_MBP 0x0100
69# define MBP_RXPASSCRC 0x40000000
70# define MBP_RXQOS 0x20000000
71# define MBP_RXNOCHAIN 0x10000000
72# define MBP_RXCMF 0x01000000
73# define MBP_RXSHORT 0x00800000
74# define MBP_RXCEF 0x00400000
75# define MBP_RXPROMISC 0x00200000
76# define MBP_PROMISCCHAN(channel) (((channel) & 0x7) << 16)
77# define MBP_RXBCAST 0x00002000
78# define MBP_BCASTCHAN(channel) (((channel) & 0x7) << 8)
79# define MBP_RXMCAST 0x00000020
80# define MBP_MCASTCHAN(channel) ((channel) & 0x7)
81#define CPMAC_UNICAST_ENABLE 0x0104
82#define CPMAC_UNICAST_CLEAR 0x0108
83#define CPMAC_MAX_LENGTH 0x010c
84#define CPMAC_BUFFER_OFFSET 0x0110
85#define CPMAC_MAC_CONTROL 0x0160
86# define MAC_TXPTYPE 0x00000200
87# define MAC_TXPACE 0x00000040
88# define MAC_MII 0x00000020
89# define MAC_TXFLOW 0x00000010
90# define MAC_RXFLOW 0x00000008
91# define MAC_MTEST 0x00000004
92# define MAC_LOOPBACK 0x00000002
93# define MAC_FDX 0x00000001
94#define CPMAC_MAC_STATUS 0x0164
95# define MAC_STATUS_QOS 0x00000004
96# define MAC_STATUS_RXFLOW 0x00000002
97# define MAC_STATUS_TXFLOW 0x00000001
98#define CPMAC_TX_INT_ENABLE 0x0178
99#define CPMAC_TX_INT_CLEAR 0x017c
100#define CPMAC_MAC_INT_VECTOR 0x0180
101# define MAC_INT_STATUS 0x00080000
102# define MAC_INT_HOST 0x00040000
103# define MAC_INT_RX 0x00020000
104# define MAC_INT_TX 0x00010000
105#define CPMAC_MAC_EOI_VECTOR 0x0184
106#define CPMAC_RX_INT_ENABLE 0x0198
107#define CPMAC_RX_INT_CLEAR 0x019c
108#define CPMAC_MAC_INT_ENABLE 0x01a8
109#define CPMAC_MAC_INT_CLEAR 0x01ac
110#define CPMAC_MAC_ADDR_LO(channel) (0x01b0 + (channel) * 4)
111#define CPMAC_MAC_ADDR_MID 0x01d0
112#define CPMAC_MAC_ADDR_HI 0x01d4
113#define CPMAC_MAC_HASH_LO 0x01d8
114#define CPMAC_MAC_HASH_HI 0x01dc
115#define CPMAC_TX_PTR(channel) (0x0600 + (channel) * 4)
116#define CPMAC_RX_PTR(channel) (0x0620 + (channel) * 4)
117#define CPMAC_TX_ACK(channel) (0x0640 + (channel) * 4)
118#define CPMAC_RX_ACK(channel) (0x0660 + (channel) * 4)
119#define CPMAC_REG_END 0x0680
120/*
121 * Rx/Tx statistics
122 * TODO: use some of them to fill stats in cpmac_stats()
123 */
124#define CPMAC_STATS_RX_GOOD 0x0200
125#define CPMAC_STATS_RX_BCAST 0x0204
126#define CPMAC_STATS_RX_MCAST 0x0208
127#define CPMAC_STATS_RX_PAUSE 0x020c
128#define CPMAC_STATS_RX_CRC 0x0210
129#define CPMAC_STATS_RX_ALIGN 0x0214
130#define CPMAC_STATS_RX_OVER 0x0218
131#define CPMAC_STATS_RX_JABBER 0x021c
132#define CPMAC_STATS_RX_UNDER 0x0220
133#define CPMAC_STATS_RX_FRAG 0x0224
134#define CPMAC_STATS_RX_FILTER 0x0228
135#define CPMAC_STATS_RX_QOSFILTER 0x022c
136#define CPMAC_STATS_RX_OCTETS 0x0230
137
138#define CPMAC_STATS_TX_GOOD 0x0234
139#define CPMAC_STATS_TX_BCAST 0x0238
140#define CPMAC_STATS_TX_MCAST 0x023c
141#define CPMAC_STATS_TX_PAUSE 0x0240
142#define CPMAC_STATS_TX_DEFER 0x0244
143#define CPMAC_STATS_TX_COLLISION 0x0248
144#define CPMAC_STATS_TX_SINGLECOLL 0x024c
145#define CPMAC_STATS_TX_MULTICOLL 0x0250
146#define CPMAC_STATS_TX_EXCESSCOLL 0x0254
147#define CPMAC_STATS_TX_LATECOLL 0x0258
148#define CPMAC_STATS_TX_UNDERRUN 0x025c
149#define CPMAC_STATS_TX_CARRIERSENSE 0x0260
150#define CPMAC_STATS_TX_OCTETS 0x0264
151
152#define cpmac_read(base, reg) (readl((void __iomem *)(base) + (reg)))
153#define cpmac_write(base, reg, val) (writel(val, (void __iomem *)(base) + \
154 (reg)))
155
156/* MDIO bus */
157#define CPMAC_MDIO_VERSION 0x0000
158#define CPMAC_MDIO_CONTROL 0x0004
159# define MDIOC_IDLE 0x80000000
160# define MDIOC_ENABLE 0x40000000
161# define MDIOC_PREAMBLE 0x00100000
162# define MDIOC_FAULT 0x00080000
163# define MDIOC_FAULTDETECT 0x00040000
164# define MDIOC_INTTEST 0x00020000
165# define MDIOC_CLKDIV(div) ((div) & 0xff)
166#define CPMAC_MDIO_ALIVE 0x0008
167#define CPMAC_MDIO_LINK 0x000c
168#define CPMAC_MDIO_ACCESS(channel) (0x0080 + (channel) * 8)
169# define MDIO_BUSY 0x80000000
170# define MDIO_WRITE 0x40000000
171# define MDIO_REG(reg) (((reg) & 0x1f) << 21)
172# define MDIO_PHY(phy) (((phy) & 0x1f) << 16)
173# define MDIO_DATA(data) ((data) & 0xffff)
174#define CPMAC_MDIO_PHYSEL(channel) (0x0084 + (channel) * 8)
175# define PHYSEL_LINKSEL 0x00000040
176# define PHYSEL_LINKINT 0x00000020
177
178struct cpmac_desc {
179 u32 hw_next;
180 u32 hw_data;
181 u16 buflen;
182 u16 bufflags;
183 u16 datalen;
184 u16 dataflags;
185#define CPMAC_SOP 0x8000
186#define CPMAC_EOP 0x4000
187#define CPMAC_OWN 0x2000
188#define CPMAC_EOQ 0x1000
189 struct sk_buff *skb;
190 struct cpmac_desc *next;
Matteo Crocef917d582008-05-14 00:58:32 +0200191 struct cpmac_desc *prev;
Matteo Croced95b39c2007-10-14 18:10:13 +0200192 dma_addr_t mapping;
193 dma_addr_t data_mapping;
194};
195
196struct cpmac_priv {
197 spinlock_t lock;
198 spinlock_t rx_lock;
199 struct cpmac_desc *rx_head;
200 int ring_size;
201 struct cpmac_desc *desc_ring;
202 dma_addr_t dma_ring;
203 void __iomem *regs;
204 struct mii_bus *mii_bus;
205 struct phy_device *phy;
David S. Miller21a8cfe2009-05-26 21:10:22 -0700206 char phy_name[MII_BUS_ID_SIZE + 3];
Matteo Croced95b39c2007-10-14 18:10:13 +0200207 int oldlink, oldspeed, oldduplex;
208 u32 msg_enable;
209 struct net_device *dev;
210 struct work_struct reset_work;
211 struct platform_device *pdev;
Eugene Konev67d129d2007-10-24 10:42:02 +0800212 struct napi_struct napi;
Matteo Crocef917d582008-05-14 00:58:32 +0200213 atomic_t reset_pending;
Matteo Croced95b39c2007-10-14 18:10:13 +0200214};
215
216static irqreturn_t cpmac_irq(int, void *);
217static void cpmac_hw_start(struct net_device *dev);
218static void cpmac_hw_stop(struct net_device *dev);
219static int cpmac_stop(struct net_device *dev);
220static int cpmac_open(struct net_device *dev);
221
222static void cpmac_dump_regs(struct net_device *dev)
223{
224 int i;
225 struct cpmac_priv *priv = netdev_priv(dev);
226 for (i = 0; i < CPMAC_REG_END; i += 4) {
227 if (i % 16 == 0) {
228 if (i)
229 printk("\n");
230 printk(KERN_DEBUG "%s: reg[%p]:", dev->name,
231 priv->regs + i);
232 }
233 printk(" %08x", cpmac_read(priv->regs, i));
234 }
235 printk("\n");
236}
237
238static void cpmac_dump_desc(struct net_device *dev, struct cpmac_desc *desc)
239{
240 int i;
241 printk(KERN_DEBUG "%s: desc[%p]:", dev->name, desc);
242 for (i = 0; i < sizeof(*desc) / 4; i++)
243 printk(" %08x", ((u32 *)desc)[i]);
244 printk("\n");
245}
246
Matteo Crocef917d582008-05-14 00:58:32 +0200247static void cpmac_dump_all_desc(struct net_device *dev)
248{
249 struct cpmac_priv *priv = netdev_priv(dev);
250 struct cpmac_desc *dump = priv->rx_head;
251 do {
252 cpmac_dump_desc(dev, dump);
253 dump = dump->next;
254 } while (dump != priv->rx_head);
255}
256
Matteo Croced95b39c2007-10-14 18:10:13 +0200257static void cpmac_dump_skb(struct net_device *dev, struct sk_buff *skb)
258{
259 int i;
260 printk(KERN_DEBUG "%s: skb 0x%p, len=%d\n", dev->name, skb, skb->len);
261 for (i = 0; i < skb->len; i++) {
262 if (i % 16 == 0) {
263 if (i)
264 printk("\n");
265 printk(KERN_DEBUG "%s: data[%p]:", dev->name,
266 skb->data + i);
267 }
268 printk(" %02x", ((u8 *)skb->data)[i]);
269 }
270 printk("\n");
271}
272
273static int cpmac_mdio_read(struct mii_bus *bus, int phy_id, int reg)
274{
275 u32 val;
276
277 while (cpmac_read(bus->priv, CPMAC_MDIO_ACCESS(0)) & MDIO_BUSY)
278 cpu_relax();
279 cpmac_write(bus->priv, CPMAC_MDIO_ACCESS(0), MDIO_BUSY | MDIO_REG(reg) |
280 MDIO_PHY(phy_id));
281 while ((val = cpmac_read(bus->priv, CPMAC_MDIO_ACCESS(0))) & MDIO_BUSY)
282 cpu_relax();
283 return MDIO_DATA(val);
284}
285
286static int cpmac_mdio_write(struct mii_bus *bus, int phy_id,
287 int reg, u16 val)
288{
289 while (cpmac_read(bus->priv, CPMAC_MDIO_ACCESS(0)) & MDIO_BUSY)
290 cpu_relax();
291 cpmac_write(bus->priv, CPMAC_MDIO_ACCESS(0), MDIO_BUSY | MDIO_WRITE |
292 MDIO_REG(reg) | MDIO_PHY(phy_id) | MDIO_DATA(val));
293 return 0;
294}
295
296static int cpmac_mdio_reset(struct mii_bus *bus)
297{
Florian Fainelli780019d2010-01-27 09:10:06 +0100298 struct clk *cpmac_clk;
299
300 cpmac_clk = clk_get(&bus->dev, "cpmac");
301 if (IS_ERR(cpmac_clk)) {
302 printk(KERN_ERR "unable to get cpmac clock\n");
303 return -1;
304 }
Matteo Croced95b39c2007-10-14 18:10:13 +0200305 ar7_device_reset(AR7_RESET_BIT_MDIO);
306 cpmac_write(bus->priv, CPMAC_MDIO_CONTROL, MDIOC_ENABLE |
Florian Fainelli780019d2010-01-27 09:10:06 +0100307 MDIOC_CLKDIV(clk_get_rate(cpmac_clk) / 2200000 - 1));
Matteo Croced95b39c2007-10-14 18:10:13 +0200308 return 0;
309}
310
311static int mii_irqs[PHY_MAX_ADDR] = { PHY_POLL, };
312
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700313static struct mii_bus *cpmac_mii;
Matteo Croced95b39c2007-10-14 18:10:13 +0200314
315static int cpmac_config(struct net_device *dev, struct ifmap *map)
316{
317 if (dev->flags & IFF_UP)
318 return -EBUSY;
319
320 /* Don't allow changing the I/O address */
321 if (map->base_addr != dev->base_addr)
322 return -EOPNOTSUPP;
323
324 /* ignore other fields */
325 return 0;
326}
327
328static void cpmac_set_multicast_list(struct net_device *dev)
329{
330 struct dev_mc_list *iter;
331 int i;
332 u8 tmp;
333 u32 mbp, bit, hash[2] = { 0, };
334 struct cpmac_priv *priv = netdev_priv(dev);
335
336 mbp = cpmac_read(priv->regs, CPMAC_MBP);
337 if (dev->flags & IFF_PROMISC) {
338 cpmac_write(priv->regs, CPMAC_MBP, (mbp & ~MBP_PROMISCCHAN(0)) |
339 MBP_RXPROMISC);
340 } else {
341 cpmac_write(priv->regs, CPMAC_MBP, mbp & ~MBP_RXPROMISC);
342 if (dev->flags & IFF_ALLMULTI) {
343 /* enable all multicast mode */
344 cpmac_write(priv->regs, CPMAC_MAC_HASH_LO, 0xffffffff);
345 cpmac_write(priv->regs, CPMAC_MAC_HASH_HI, 0xffffffff);
346 } else {
347 /*
348 * cpmac uses some strange mac address hashing
349 * (not crc32)
350 */
351 for (i = 0, iter = dev->mc_list; i < dev->mc_count;
352 i++, iter = iter->next) {
353 bit = 0;
354 tmp = iter->dmi_addr[0];
355 bit ^= (tmp >> 2) ^ (tmp << 4);
356 tmp = iter->dmi_addr[1];
357 bit ^= (tmp >> 4) ^ (tmp << 2);
358 tmp = iter->dmi_addr[2];
359 bit ^= (tmp >> 6) ^ tmp;
360 tmp = iter->dmi_addr[3];
361 bit ^= (tmp >> 2) ^ (tmp << 4);
362 tmp = iter->dmi_addr[4];
363 bit ^= (tmp >> 4) ^ (tmp << 2);
364 tmp = iter->dmi_addr[5];
365 bit ^= (tmp >> 6) ^ tmp;
366 bit &= 0x3f;
367 hash[bit / 32] |= 1 << (bit % 32);
368 }
369
370 cpmac_write(priv->regs, CPMAC_MAC_HASH_LO, hash[0]);
371 cpmac_write(priv->regs, CPMAC_MAC_HASH_HI, hash[1]);
372 }
373 }
374}
375
Eugene Konev67d129d2007-10-24 10:42:02 +0800376static struct sk_buff *cpmac_rx_one(struct cpmac_priv *priv,
Matteo Croced95b39c2007-10-14 18:10:13 +0200377 struct cpmac_desc *desc)
378{
379 struct sk_buff *skb, *result = NULL;
380
381 if (unlikely(netif_msg_hw(priv)))
Eugene Konev67d129d2007-10-24 10:42:02 +0800382 cpmac_dump_desc(priv->dev, desc);
Matteo Croced95b39c2007-10-14 18:10:13 +0200383 cpmac_write(priv->regs, CPMAC_RX_ACK(0), (u32)desc->mapping);
384 if (unlikely(!desc->datalen)) {
385 if (netif_msg_rx_err(priv) && net_ratelimit())
386 printk(KERN_WARNING "%s: rx: spurious interrupt\n",
Eugene Konev67d129d2007-10-24 10:42:02 +0800387 priv->dev->name);
Matteo Croced95b39c2007-10-14 18:10:13 +0200388 return NULL;
389 }
390
Eric Dumazet89d71a62009-10-13 05:34:20 +0000391 skb = netdev_alloc_skb_ip_align(priv->dev, CPMAC_SKB_SIZE);
Matteo Croced95b39c2007-10-14 18:10:13 +0200392 if (likely(skb)) {
Matteo Croced95b39c2007-10-14 18:10:13 +0200393 skb_put(desc->skb, desc->datalen);
Eugene Konev67d129d2007-10-24 10:42:02 +0800394 desc->skb->protocol = eth_type_trans(desc->skb, priv->dev);
Matteo Croced95b39c2007-10-14 18:10:13 +0200395 desc->skb->ip_summed = CHECKSUM_NONE;
Eugene Konev67d129d2007-10-24 10:42:02 +0800396 priv->dev->stats.rx_packets++;
397 priv->dev->stats.rx_bytes += desc->datalen;
Matteo Croced95b39c2007-10-14 18:10:13 +0200398 result = desc->skb;
Eugene Konev67d129d2007-10-24 10:42:02 +0800399 dma_unmap_single(&priv->dev->dev, desc->data_mapping,
400 CPMAC_SKB_SIZE, DMA_FROM_DEVICE);
Matteo Croced95b39c2007-10-14 18:10:13 +0200401 desc->skb = skb;
Eugene Konev67d129d2007-10-24 10:42:02 +0800402 desc->data_mapping = dma_map_single(&priv->dev->dev, skb->data,
Matteo Croced95b39c2007-10-14 18:10:13 +0200403 CPMAC_SKB_SIZE,
404 DMA_FROM_DEVICE);
405 desc->hw_data = (u32)desc->data_mapping;
406 if (unlikely(netif_msg_pktdata(priv))) {
Eugene Konev67d129d2007-10-24 10:42:02 +0800407 printk(KERN_DEBUG "%s: received packet:\n",
408 priv->dev->name);
409 cpmac_dump_skb(priv->dev, result);
Matteo Croced95b39c2007-10-14 18:10:13 +0200410 }
411 } else {
412 if (netif_msg_rx_err(priv) && net_ratelimit())
413 printk(KERN_WARNING
Eugene Konev67d129d2007-10-24 10:42:02 +0800414 "%s: low on skbs, dropping packet\n",
415 priv->dev->name);
416 priv->dev->stats.rx_dropped++;
Matteo Croced95b39c2007-10-14 18:10:13 +0200417 }
418
419 desc->buflen = CPMAC_SKB_SIZE;
420 desc->dataflags = CPMAC_OWN;
421
422 return result;
423}
424
Eugene Konev67d129d2007-10-24 10:42:02 +0800425static int cpmac_poll(struct napi_struct *napi, int budget)
Matteo Croced95b39c2007-10-14 18:10:13 +0200426{
427 struct sk_buff *skb;
Matteo Crocef917d582008-05-14 00:58:32 +0200428 struct cpmac_desc *desc, *restart;
Eugene Konev67d129d2007-10-24 10:42:02 +0800429 struct cpmac_priv *priv = container_of(napi, struct cpmac_priv, napi);
Matteo Crocef917d582008-05-14 00:58:32 +0200430 int received = 0, processed = 0;
Matteo Croced95b39c2007-10-14 18:10:13 +0200431
432 spin_lock(&priv->rx_lock);
433 if (unlikely(!priv->rx_head)) {
434 if (netif_msg_rx_err(priv) && net_ratelimit())
435 printk(KERN_WARNING "%s: rx: polling, but no queue\n",
Eugene Konev67d129d2007-10-24 10:42:02 +0800436 priv->dev->name);
Matteo Crocef917d582008-05-14 00:58:32 +0200437 spin_unlock(&priv->rx_lock);
Ben Hutchings288379f2009-01-19 16:43:59 -0800438 napi_complete(napi);
Matteo Croced95b39c2007-10-14 18:10:13 +0200439 return 0;
440 }
441
442 desc = priv->rx_head;
Matteo Crocef917d582008-05-14 00:58:32 +0200443 restart = NULL;
Eugene Konev67d129d2007-10-24 10:42:02 +0800444 while (((desc->dataflags & CPMAC_OWN) == 0) && (received < budget)) {
Matteo Crocef917d582008-05-14 00:58:32 +0200445 processed++;
446
447 if ((desc->dataflags & CPMAC_EOQ) != 0) {
448 /* The last update to eoq->hw_next didn't happen
449 * soon enough, and the receiver stopped here.
450 *Remember this descriptor so we can restart
451 * the receiver after freeing some space.
452 */
453 if (unlikely(restart)) {
454 if (netif_msg_rx_err(priv))
455 printk(KERN_ERR "%s: poll found a"
456 " duplicate EOQ: %p and %p\n",
457 priv->dev->name, restart, desc);
458 goto fatal_error;
459 }
460
461 restart = desc->next;
462 }
463
Eugene Konev67d129d2007-10-24 10:42:02 +0800464 skb = cpmac_rx_one(priv, desc);
Matteo Croced95b39c2007-10-14 18:10:13 +0200465 if (likely(skb)) {
466 netif_receive_skb(skb);
467 received++;
468 }
469 desc = desc->next;
470 }
471
Matteo Crocef917d582008-05-14 00:58:32 +0200472 if (desc != priv->rx_head) {
473 /* We freed some buffers, but not the whole ring,
474 * add what we did free to the rx list */
475 desc->prev->hw_next = (u32)0;
476 priv->rx_head->prev->hw_next = priv->rx_head->mapping;
477 }
478
479 /* Optimization: If we did not actually process an EOQ (perhaps because
480 * of quota limits), check to see if the tail of the queue has EOQ set.
481 * We should immediately restart in that case so that the receiver can
482 * restart and run in parallel with more packet processing.
483 * This lets us handle slightly larger bursts before running
484 * out of ring space (assuming dev->weight < ring_size) */
485
486 if (!restart &&
487 (priv->rx_head->prev->dataflags & (CPMAC_OWN|CPMAC_EOQ))
488 == CPMAC_EOQ &&
489 (priv->rx_head->dataflags & CPMAC_OWN) != 0) {
490 /* reset EOQ so the poll loop (above) doesn't try to
491 * restart this when it eventually gets to this descriptor.
492 */
493 priv->rx_head->prev->dataflags &= ~CPMAC_EOQ;
494 restart = priv->rx_head;
495 }
496
497 if (restart) {
498 priv->dev->stats.rx_errors++;
499 priv->dev->stats.rx_fifo_errors++;
500 if (netif_msg_rx_err(priv) && net_ratelimit())
501 printk(KERN_WARNING "%s: rx dma ring overrun\n",
502 priv->dev->name);
503
504 if (unlikely((restart->dataflags & CPMAC_OWN) == 0)) {
505 if (netif_msg_drv(priv))
506 printk(KERN_ERR "%s: cpmac_poll is trying to "
507 "restart rx from a descriptor that's "
508 "not free: %p\n",
509 priv->dev->name, restart);
510 goto fatal_error;
511 }
512
513 cpmac_write(priv->regs, CPMAC_RX_PTR(0), restart->mapping);
514 }
515
Matteo Croced95b39c2007-10-14 18:10:13 +0200516 priv->rx_head = desc;
517 spin_unlock(&priv->rx_lock);
Matteo Croced95b39c2007-10-14 18:10:13 +0200518 if (unlikely(netif_msg_rx_status(priv)))
Eugene Konev67d129d2007-10-24 10:42:02 +0800519 printk(KERN_DEBUG "%s: poll processed %d packets\n",
520 priv->dev->name, received);
Matteo Crocef917d582008-05-14 00:58:32 +0200521 if (processed == 0) {
522 /* we ran out of packets to read,
523 * revert to interrupt-driven mode */
Ben Hutchings288379f2009-01-19 16:43:59 -0800524 napi_complete(napi);
Matteo Croced95b39c2007-10-14 18:10:13 +0200525 cpmac_write(priv->regs, CPMAC_RX_INT_ENABLE, 1);
526 return 0;
527 }
528
529 return 1;
Matteo Crocef917d582008-05-14 00:58:32 +0200530
531fatal_error:
532 /* Something went horribly wrong.
533 * Reset hardware to try to recover rather than wedging. */
534
535 if (netif_msg_drv(priv)) {
536 printk(KERN_ERR "%s: cpmac_poll is confused. "
537 "Resetting hardware\n", priv->dev->name);
538 cpmac_dump_all_desc(priv->dev);
539 printk(KERN_DEBUG "%s: RX_PTR(0)=0x%08x RX_ACK(0)=0x%08x\n",
540 priv->dev->name,
541 cpmac_read(priv->regs, CPMAC_RX_PTR(0)),
542 cpmac_read(priv->regs, CPMAC_RX_ACK(0)));
543 }
544
545 spin_unlock(&priv->rx_lock);
Ben Hutchings288379f2009-01-19 16:43:59 -0800546 napi_complete(napi);
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700547 netif_tx_stop_all_queues(priv->dev);
Matteo Crocef917d582008-05-14 00:58:32 +0200548 napi_disable(&priv->napi);
549
550 atomic_inc(&priv->reset_pending);
551 cpmac_hw_stop(priv->dev);
552 if (!schedule_work(&priv->reset_work))
553 atomic_dec(&priv->reset_pending);
554 return 0;
555
Matteo Croced95b39c2007-10-14 18:10:13 +0200556}
557
558static int cpmac_start_xmit(struct sk_buff *skb, struct net_device *dev)
559{
560 int queue, len;
561 struct cpmac_desc *desc;
562 struct cpmac_priv *priv = netdev_priv(dev);
563
Matteo Crocef917d582008-05-14 00:58:32 +0200564 if (unlikely(atomic_read(&priv->reset_pending)))
565 return NETDEV_TX_BUSY;
566
Matteo Croce6cd043d2007-10-23 19:12:22 +0200567 if (unlikely(skb_padto(skb, ETH_ZLEN)))
568 return NETDEV_TX_OK;
Matteo Croced95b39c2007-10-14 18:10:13 +0200569
570 len = max(skb->len, ETH_ZLEN);
Matteo Croceba596a02008-01-12 19:05:23 +0100571 queue = skb_get_queue_mapping(skb);
Matteo Croced95b39c2007-10-14 18:10:13 +0200572 netif_stop_subqueue(dev, queue);
Matteo Croced95b39c2007-10-14 18:10:13 +0200573
574 desc = &priv->desc_ring[queue];
575 if (unlikely(desc->dataflags & CPMAC_OWN)) {
576 if (netif_msg_tx_err(priv) && net_ratelimit())
Matteo Croce6cd043d2007-10-23 19:12:22 +0200577 printk(KERN_WARNING "%s: tx dma ring full\n",
Matteo Croced95b39c2007-10-14 18:10:13 +0200578 dev->name);
Matteo Croce6cd043d2007-10-23 19:12:22 +0200579 return NETDEV_TX_BUSY;
Matteo Croced95b39c2007-10-14 18:10:13 +0200580 }
581
582 spin_lock(&priv->lock);
583 dev->trans_start = jiffies;
584 spin_unlock(&priv->lock);
585 desc->dataflags = CPMAC_SOP | CPMAC_EOP | CPMAC_OWN;
586 desc->skb = skb;
587 desc->data_mapping = dma_map_single(&dev->dev, skb->data, len,
588 DMA_TO_DEVICE);
589 desc->hw_data = (u32)desc->data_mapping;
590 desc->datalen = len;
591 desc->buflen = len;
592 if (unlikely(netif_msg_tx_queued(priv)))
593 printk(KERN_DEBUG "%s: sending 0x%p, len=%d\n", dev->name, skb,
594 skb->len);
595 if (unlikely(netif_msg_hw(priv)))
596 cpmac_dump_desc(dev, desc);
597 if (unlikely(netif_msg_pktdata(priv)))
598 cpmac_dump_skb(dev, skb);
599 cpmac_write(priv->regs, CPMAC_TX_PTR(queue), (u32)desc->mapping);
600
Matteo Croce6cd043d2007-10-23 19:12:22 +0200601 return NETDEV_TX_OK;
Matteo Croced95b39c2007-10-14 18:10:13 +0200602}
603
604static void cpmac_end_xmit(struct net_device *dev, int queue)
605{
606 struct cpmac_desc *desc;
607 struct cpmac_priv *priv = netdev_priv(dev);
608
609 desc = &priv->desc_ring[queue];
610 cpmac_write(priv->regs, CPMAC_TX_ACK(queue), (u32)desc->mapping);
611 if (likely(desc->skb)) {
612 spin_lock(&priv->lock);
613 dev->stats.tx_packets++;
614 dev->stats.tx_bytes += desc->skb->len;
615 spin_unlock(&priv->lock);
616 dma_unmap_single(&dev->dev, desc->data_mapping, desc->skb->len,
617 DMA_TO_DEVICE);
618
619 if (unlikely(netif_msg_tx_done(priv)))
620 printk(KERN_DEBUG "%s: sent 0x%p, len=%d\n", dev->name,
621 desc->skb, desc->skb->len);
622
623 dev_kfree_skb_irq(desc->skb);
624 desc->skb = NULL;
Stefan Weil0220ff72009-05-31 10:59:15 +0000625 if (__netif_subqueue_stopped(dev, queue))
Matteo Croced95b39c2007-10-14 18:10:13 +0200626 netif_wake_subqueue(dev, queue);
Matteo Croced95b39c2007-10-14 18:10:13 +0200627 } else {
628 if (netif_msg_tx_err(priv) && net_ratelimit())
629 printk(KERN_WARNING
630 "%s: end_xmit: spurious interrupt\n", dev->name);
Stefan Weil0220ff72009-05-31 10:59:15 +0000631 if (__netif_subqueue_stopped(dev, queue))
Matteo Croced95b39c2007-10-14 18:10:13 +0200632 netif_wake_subqueue(dev, queue);
Matteo Croced95b39c2007-10-14 18:10:13 +0200633 }
634}
635
636static void cpmac_hw_stop(struct net_device *dev)
637{
638 int i;
639 struct cpmac_priv *priv = netdev_priv(dev);
640 struct plat_cpmac_data *pdata = priv->pdev->dev.platform_data;
641
642 ar7_device_reset(pdata->reset_bit);
643 cpmac_write(priv->regs, CPMAC_RX_CONTROL,
644 cpmac_read(priv->regs, CPMAC_RX_CONTROL) & ~1);
645 cpmac_write(priv->regs, CPMAC_TX_CONTROL,
646 cpmac_read(priv->regs, CPMAC_TX_CONTROL) & ~1);
647 for (i = 0; i < 8; i++) {
648 cpmac_write(priv->regs, CPMAC_TX_PTR(i), 0);
649 cpmac_write(priv->regs, CPMAC_RX_PTR(i), 0);
650 }
651 cpmac_write(priv->regs, CPMAC_UNICAST_CLEAR, 0xff);
652 cpmac_write(priv->regs, CPMAC_RX_INT_CLEAR, 0xff);
653 cpmac_write(priv->regs, CPMAC_TX_INT_CLEAR, 0xff);
654 cpmac_write(priv->regs, CPMAC_MAC_INT_CLEAR, 0xff);
655 cpmac_write(priv->regs, CPMAC_MAC_CONTROL,
656 cpmac_read(priv->regs, CPMAC_MAC_CONTROL) & ~MAC_MII);
657}
658
659static void cpmac_hw_start(struct net_device *dev)
660{
661 int i;
662 struct cpmac_priv *priv = netdev_priv(dev);
663 struct plat_cpmac_data *pdata = priv->pdev->dev.platform_data;
664
665 ar7_device_reset(pdata->reset_bit);
666 for (i = 0; i < 8; i++) {
667 cpmac_write(priv->regs, CPMAC_TX_PTR(i), 0);
668 cpmac_write(priv->regs, CPMAC_RX_PTR(i), 0);
669 }
670 cpmac_write(priv->regs, CPMAC_RX_PTR(0), priv->rx_head->mapping);
671
672 cpmac_write(priv->regs, CPMAC_MBP, MBP_RXSHORT | MBP_RXBCAST |
673 MBP_RXMCAST);
674 cpmac_write(priv->regs, CPMAC_BUFFER_OFFSET, 0);
675 for (i = 0; i < 8; i++)
676 cpmac_write(priv->regs, CPMAC_MAC_ADDR_LO(i), dev->dev_addr[5]);
677 cpmac_write(priv->regs, CPMAC_MAC_ADDR_MID, dev->dev_addr[4]);
678 cpmac_write(priv->regs, CPMAC_MAC_ADDR_HI, dev->dev_addr[0] |
679 (dev->dev_addr[1] << 8) | (dev->dev_addr[2] << 16) |
680 (dev->dev_addr[3] << 24));
681 cpmac_write(priv->regs, CPMAC_MAX_LENGTH, CPMAC_SKB_SIZE);
682 cpmac_write(priv->regs, CPMAC_UNICAST_CLEAR, 0xff);
683 cpmac_write(priv->regs, CPMAC_RX_INT_CLEAR, 0xff);
684 cpmac_write(priv->regs, CPMAC_TX_INT_CLEAR, 0xff);
685 cpmac_write(priv->regs, CPMAC_MAC_INT_CLEAR, 0xff);
686 cpmac_write(priv->regs, CPMAC_UNICAST_ENABLE, 1);
687 cpmac_write(priv->regs, CPMAC_RX_INT_ENABLE, 1);
688 cpmac_write(priv->regs, CPMAC_TX_INT_ENABLE, 0xff);
689 cpmac_write(priv->regs, CPMAC_MAC_INT_ENABLE, 3);
690
691 cpmac_write(priv->regs, CPMAC_RX_CONTROL,
692 cpmac_read(priv->regs, CPMAC_RX_CONTROL) | 1);
693 cpmac_write(priv->regs, CPMAC_TX_CONTROL,
694 cpmac_read(priv->regs, CPMAC_TX_CONTROL) | 1);
695 cpmac_write(priv->regs, CPMAC_MAC_CONTROL,
696 cpmac_read(priv->regs, CPMAC_MAC_CONTROL) | MAC_MII |
697 MAC_FDX);
698}
699
700static void cpmac_clear_rx(struct net_device *dev)
701{
702 struct cpmac_priv *priv = netdev_priv(dev);
703 struct cpmac_desc *desc;
704 int i;
705 if (unlikely(!priv->rx_head))
706 return;
707 desc = priv->rx_head;
708 for (i = 0; i < priv->ring_size; i++) {
709 if ((desc->dataflags & CPMAC_OWN) == 0) {
710 if (netif_msg_rx_err(priv) && net_ratelimit())
711 printk(KERN_WARNING "%s: packet dropped\n",
712 dev->name);
713 if (unlikely(netif_msg_hw(priv)))
714 cpmac_dump_desc(dev, desc);
715 desc->dataflags = CPMAC_OWN;
716 dev->stats.rx_dropped++;
717 }
Matteo Crocef917d582008-05-14 00:58:32 +0200718 desc->hw_next = desc->next->mapping;
Matteo Croced95b39c2007-10-14 18:10:13 +0200719 desc = desc->next;
720 }
Matteo Crocef917d582008-05-14 00:58:32 +0200721 priv->rx_head->prev->hw_next = 0;
Matteo Croced95b39c2007-10-14 18:10:13 +0200722}
723
724static void cpmac_clear_tx(struct net_device *dev)
725{
726 struct cpmac_priv *priv = netdev_priv(dev);
727 int i;
728 if (unlikely(!priv->desc_ring))
729 return;
Matteo Croce6cd043d2007-10-23 19:12:22 +0200730 for (i = 0; i < CPMAC_QUEUES; i++) {
731 priv->desc_ring[i].dataflags = 0;
Matteo Croced95b39c2007-10-14 18:10:13 +0200732 if (priv->desc_ring[i].skb) {
733 dev_kfree_skb_any(priv->desc_ring[i].skb);
Matteo Crocef917d582008-05-14 00:58:32 +0200734 priv->desc_ring[i].skb = NULL;
Matteo Croced95b39c2007-10-14 18:10:13 +0200735 }
Matteo Croce6cd043d2007-10-23 19:12:22 +0200736 }
Matteo Croced95b39c2007-10-14 18:10:13 +0200737}
738
739static void cpmac_hw_error(struct work_struct *work)
740{
741 struct cpmac_priv *priv =
742 container_of(work, struct cpmac_priv, reset_work);
743
744 spin_lock(&priv->rx_lock);
745 cpmac_clear_rx(priv->dev);
746 spin_unlock(&priv->rx_lock);
747 cpmac_clear_tx(priv->dev);
748 cpmac_hw_start(priv->dev);
Matteo Crocef917d582008-05-14 00:58:32 +0200749 barrier();
750 atomic_dec(&priv->reset_pending);
751
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700752 netif_tx_wake_all_queues(priv->dev);
Matteo Crocef917d582008-05-14 00:58:32 +0200753 cpmac_write(priv->regs, CPMAC_MAC_INT_ENABLE, 3);
754}
755
756static void cpmac_check_status(struct net_device *dev)
757{
758 struct cpmac_priv *priv = netdev_priv(dev);
759
760 u32 macstatus = cpmac_read(priv->regs, CPMAC_MAC_STATUS);
761 int rx_channel = (macstatus >> 8) & 7;
762 int rx_code = (macstatus >> 12) & 15;
763 int tx_channel = (macstatus >> 16) & 7;
764 int tx_code = (macstatus >> 20) & 15;
765
766 if (rx_code || tx_code) {
767 if (netif_msg_drv(priv) && net_ratelimit()) {
768 /* Can't find any documentation on what these
769 *error codes actually are. So just log them and hope..
770 */
771 if (rx_code)
772 printk(KERN_WARNING "%s: host error %d on rx "
773 "channel %d (macstatus %08x), resetting\n",
774 dev->name, rx_code, rx_channel, macstatus);
775 if (tx_code)
776 printk(KERN_WARNING "%s: host error %d on tx "
777 "channel %d (macstatus %08x), resetting\n",
778 dev->name, tx_code, tx_channel, macstatus);
779 }
780
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700781 netif_tx_stop_all_queues(dev);
Matteo Crocef917d582008-05-14 00:58:32 +0200782 cpmac_hw_stop(dev);
783 if (schedule_work(&priv->reset_work))
784 atomic_inc(&priv->reset_pending);
785 if (unlikely(netif_msg_hw(priv)))
786 cpmac_dump_regs(dev);
787 }
788 cpmac_write(priv->regs, CPMAC_MAC_INT_CLEAR, 0xff);
Matteo Croced95b39c2007-10-14 18:10:13 +0200789}
790
791static irqreturn_t cpmac_irq(int irq, void *dev_id)
792{
793 struct net_device *dev = dev_id;
794 struct cpmac_priv *priv;
795 int queue;
796 u32 status;
797
Matteo Croced95b39c2007-10-14 18:10:13 +0200798 priv = netdev_priv(dev);
799
800 status = cpmac_read(priv->regs, CPMAC_MAC_INT_VECTOR);
801
802 if (unlikely(netif_msg_intr(priv)))
803 printk(KERN_DEBUG "%s: interrupt status: 0x%08x\n", dev->name,
804 status);
805
806 if (status & MAC_INT_TX)
807 cpmac_end_xmit(dev, (status & 7));
808
809 if (status & MAC_INT_RX) {
810 queue = (status >> 8) & 7;
Ben Hutchings288379f2009-01-19 16:43:59 -0800811 if (napi_schedule_prep(&priv->napi)) {
Eugene Konev67d129d2007-10-24 10:42:02 +0800812 cpmac_write(priv->regs, CPMAC_RX_INT_CLEAR, 1 << queue);
Ben Hutchings288379f2009-01-19 16:43:59 -0800813 __napi_schedule(&priv->napi);
Eugene Konev67d129d2007-10-24 10:42:02 +0800814 }
Matteo Croced95b39c2007-10-14 18:10:13 +0200815 }
816
817 cpmac_write(priv->regs, CPMAC_MAC_EOI_VECTOR, 0);
818
Matteo Crocef917d582008-05-14 00:58:32 +0200819 if (unlikely(status & (MAC_INT_HOST | MAC_INT_STATUS)))
820 cpmac_check_status(dev);
Matteo Croced95b39c2007-10-14 18:10:13 +0200821
822 return IRQ_HANDLED;
823}
824
825static void cpmac_tx_timeout(struct net_device *dev)
826{
Matteo Crocef917d582008-05-14 00:58:32 +0200827 struct cpmac_priv *priv = netdev_priv(dev);
Matteo Croced95b39c2007-10-14 18:10:13 +0200828
829 spin_lock(&priv->lock);
830 dev->stats.tx_errors++;
831 spin_unlock(&priv->lock);
832 if (netif_msg_tx_err(priv) && net_ratelimit())
833 printk(KERN_WARNING "%s: transmit timeout\n", dev->name);
Matteo Crocef917d582008-05-14 00:58:32 +0200834
835 atomic_inc(&priv->reset_pending);
836 barrier();
837 cpmac_clear_tx(dev);
838 barrier();
839 atomic_dec(&priv->reset_pending);
840
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700841 netif_tx_wake_all_queues(priv->dev);
Matteo Croced95b39c2007-10-14 18:10:13 +0200842}
843
844static int cpmac_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
845{
846 struct cpmac_priv *priv = netdev_priv(dev);
847 if (!(netif_running(dev)))
848 return -EINVAL;
849 if (!priv->phy)
850 return -EINVAL;
851 if ((cmd == SIOCGMIIPHY) || (cmd == SIOCGMIIREG) ||
852 (cmd == SIOCSMIIREG))
853 return phy_mii_ioctl(priv->phy, if_mii(ifr), cmd);
854
855 return -EOPNOTSUPP;
856}
857
858static int cpmac_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
859{
860 struct cpmac_priv *priv = netdev_priv(dev);
861
862 if (priv->phy)
863 return phy_ethtool_gset(priv->phy, cmd);
864
865 return -EINVAL;
866}
867
868static int cpmac_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
869{
870 struct cpmac_priv *priv = netdev_priv(dev);
871
872 if (!capable(CAP_NET_ADMIN))
873 return -EPERM;
874
875 if (priv->phy)
876 return phy_ethtool_sset(priv->phy, cmd);
877
878 return -EINVAL;
879}
880
881static void cpmac_get_ringparam(struct net_device *dev, struct ethtool_ringparam* ring)
882{
883 struct cpmac_priv *priv = netdev_priv(dev);
884
885 ring->rx_max_pending = 1024;
886 ring->rx_mini_max_pending = 1;
887 ring->rx_jumbo_max_pending = 1;
888 ring->tx_max_pending = 1;
889
890 ring->rx_pending = priv->ring_size;
891 ring->rx_mini_pending = 1;
892 ring->rx_jumbo_pending = 1;
893 ring->tx_pending = 1;
894}
895
896static int cpmac_set_ringparam(struct net_device *dev, struct ethtool_ringparam* ring)
897{
898 struct cpmac_priv *priv = netdev_priv(dev);
899
Matteo Croce6cd043d2007-10-23 19:12:22 +0200900 if (netif_running(dev))
Matteo Croced95b39c2007-10-14 18:10:13 +0200901 return -EBUSY;
902 priv->ring_size = ring->rx_pending;
903 return 0;
904}
905
906static void cpmac_get_drvinfo(struct net_device *dev,
907 struct ethtool_drvinfo *info)
908{
909 strcpy(info->driver, "cpmac");
910 strcpy(info->version, CPMAC_VERSION);
911 info->fw_version[0] = '\0';
912 sprintf(info->bus_info, "%s", "cpmac");
913 info->regdump_len = 0;
914}
915
916static const struct ethtool_ops cpmac_ethtool_ops = {
917 .get_settings = cpmac_get_settings,
918 .set_settings = cpmac_set_settings,
919 .get_drvinfo = cpmac_get_drvinfo,
920 .get_link = ethtool_op_get_link,
921 .get_ringparam = cpmac_get_ringparam,
922 .set_ringparam = cpmac_set_ringparam,
923};
924
925static void cpmac_adjust_link(struct net_device *dev)
926{
927 struct cpmac_priv *priv = netdev_priv(dev);
928 int new_state = 0;
929
930 spin_lock(&priv->lock);
931 if (priv->phy->link) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700932 netif_tx_start_all_queues(dev);
Matteo Croced95b39c2007-10-14 18:10:13 +0200933 if (priv->phy->duplex != priv->oldduplex) {
934 new_state = 1;
935 priv->oldduplex = priv->phy->duplex;
936 }
937
938 if (priv->phy->speed != priv->oldspeed) {
939 new_state = 1;
940 priv->oldspeed = priv->phy->speed;
941 }
942
943 if (!priv->oldlink) {
944 new_state = 1;
945 priv->oldlink = 1;
Matteo Croced95b39c2007-10-14 18:10:13 +0200946 }
947 } else if (priv->oldlink) {
Matteo Croced95b39c2007-10-14 18:10:13 +0200948 new_state = 1;
949 priv->oldlink = 0;
950 priv->oldspeed = 0;
951 priv->oldduplex = -1;
952 }
953
954 if (new_state && netif_msg_link(priv) && net_ratelimit())
955 phy_print_status(priv->phy);
956
957 spin_unlock(&priv->lock);
958}
959
960static int cpmac_open(struct net_device *dev)
961{
962 int i, size, res;
963 struct cpmac_priv *priv = netdev_priv(dev);
964 struct resource *mem;
965 struct cpmac_desc *desc;
966 struct sk_buff *skb;
967
Matteo Croced95b39c2007-10-14 18:10:13 +0200968 mem = platform_get_resource_byname(priv->pdev, IORESOURCE_MEM, "regs");
969 if (!request_mem_region(mem->start, mem->end - mem->start, dev->name)) {
970 if (netif_msg_drv(priv))
971 printk(KERN_ERR "%s: failed to request registers\n",
972 dev->name);
973 res = -ENXIO;
974 goto fail_reserve;
975 }
976
977 priv->regs = ioremap(mem->start, mem->end - mem->start);
978 if (!priv->regs) {
979 if (netif_msg_drv(priv))
980 printk(KERN_ERR "%s: failed to remap registers\n",
981 dev->name);
982 res = -ENXIO;
983 goto fail_remap;
984 }
985
986 size = priv->ring_size + CPMAC_QUEUES;
987 priv->desc_ring = dma_alloc_coherent(&dev->dev,
988 sizeof(struct cpmac_desc) * size,
989 &priv->dma_ring,
990 GFP_KERNEL);
991 if (!priv->desc_ring) {
992 res = -ENOMEM;
993 goto fail_alloc;
994 }
995
996 for (i = 0; i < size; i++)
997 priv->desc_ring[i].mapping = priv->dma_ring + sizeof(*desc) * i;
998
999 priv->rx_head = &priv->desc_ring[CPMAC_QUEUES];
1000 for (i = 0, desc = priv->rx_head; i < priv->ring_size; i++, desc++) {
Eric Dumazet89d71a62009-10-13 05:34:20 +00001001 skb = netdev_alloc_skb_ip_align(dev, CPMAC_SKB_SIZE);
Matteo Croced95b39c2007-10-14 18:10:13 +02001002 if (unlikely(!skb)) {
1003 res = -ENOMEM;
1004 goto fail_desc;
1005 }
Matteo Croced95b39c2007-10-14 18:10:13 +02001006 desc->skb = skb;
1007 desc->data_mapping = dma_map_single(&dev->dev, skb->data,
1008 CPMAC_SKB_SIZE,
1009 DMA_FROM_DEVICE);
1010 desc->hw_data = (u32)desc->data_mapping;
1011 desc->buflen = CPMAC_SKB_SIZE;
1012 desc->dataflags = CPMAC_OWN;
1013 desc->next = &priv->rx_head[(i + 1) % priv->ring_size];
Matteo Crocef917d582008-05-14 00:58:32 +02001014 desc->next->prev = desc;
Matteo Croced95b39c2007-10-14 18:10:13 +02001015 desc->hw_next = (u32)desc->next->mapping;
1016 }
1017
Matteo Crocef917d582008-05-14 00:58:32 +02001018 priv->rx_head->prev->hw_next = (u32)0;
1019
Matteo Croced95b39c2007-10-14 18:10:13 +02001020 if ((res = request_irq(dev->irq, cpmac_irq, IRQF_SHARED,
1021 dev->name, dev))) {
1022 if (netif_msg_drv(priv))
1023 printk(KERN_ERR "%s: failed to obtain irq\n",
1024 dev->name);
1025 goto fail_irq;
1026 }
1027
Matteo Crocef917d582008-05-14 00:58:32 +02001028 atomic_set(&priv->reset_pending, 0);
Matteo Croced95b39c2007-10-14 18:10:13 +02001029 INIT_WORK(&priv->reset_work, cpmac_hw_error);
1030 cpmac_hw_start(dev);
1031
Eugene Konev67d129d2007-10-24 10:42:02 +08001032 napi_enable(&priv->napi);
Matteo Croced95b39c2007-10-14 18:10:13 +02001033 priv->phy->state = PHY_CHANGELINK;
1034 phy_start(priv->phy);
1035
1036 return 0;
1037
1038fail_irq:
1039fail_desc:
1040 for (i = 0; i < priv->ring_size; i++) {
1041 if (priv->rx_head[i].skb) {
1042 dma_unmap_single(&dev->dev,
1043 priv->rx_head[i].data_mapping,
1044 CPMAC_SKB_SIZE,
1045 DMA_FROM_DEVICE);
1046 kfree_skb(priv->rx_head[i].skb);
1047 }
1048 }
1049fail_alloc:
1050 kfree(priv->desc_ring);
1051 iounmap(priv->regs);
1052
1053fail_remap:
1054 release_mem_region(mem->start, mem->end - mem->start);
1055
1056fail_reserve:
Matteo Croced95b39c2007-10-14 18:10:13 +02001057 return res;
1058}
1059
1060static int cpmac_stop(struct net_device *dev)
1061{
1062 int i;
1063 struct cpmac_priv *priv = netdev_priv(dev);
1064 struct resource *mem;
1065
David S. Millerfd2ea0a2008-07-17 01:56:23 -07001066 netif_tx_stop_all_queues(dev);
Matteo Croced95b39c2007-10-14 18:10:13 +02001067
1068 cancel_work_sync(&priv->reset_work);
Eugene Konev67d129d2007-10-24 10:42:02 +08001069 napi_disable(&priv->napi);
Matteo Croced95b39c2007-10-14 18:10:13 +02001070 phy_stop(priv->phy);
Matteo Croced95b39c2007-10-14 18:10:13 +02001071
1072 cpmac_hw_stop(dev);
1073
1074 for (i = 0; i < 8; i++)
1075 cpmac_write(priv->regs, CPMAC_TX_PTR(i), 0);
1076 cpmac_write(priv->regs, CPMAC_RX_PTR(0), 0);
1077 cpmac_write(priv->regs, CPMAC_MBP, 0);
1078
1079 free_irq(dev->irq, dev);
1080 iounmap(priv->regs);
1081 mem = platform_get_resource_byname(priv->pdev, IORESOURCE_MEM, "regs");
1082 release_mem_region(mem->start, mem->end - mem->start);
1083 priv->rx_head = &priv->desc_ring[CPMAC_QUEUES];
1084 for (i = 0; i < priv->ring_size; i++) {
1085 if (priv->rx_head[i].skb) {
1086 dma_unmap_single(&dev->dev,
1087 priv->rx_head[i].data_mapping,
1088 CPMAC_SKB_SIZE,
1089 DMA_FROM_DEVICE);
1090 kfree_skb(priv->rx_head[i].skb);
1091 }
1092 }
1093
1094 dma_free_coherent(&dev->dev, sizeof(struct cpmac_desc) *
1095 (CPMAC_QUEUES + priv->ring_size),
1096 priv->desc_ring, priv->dma_ring);
1097 return 0;
1098}
1099
Alexander Beregalov63ef7d82009-04-15 12:52:36 +00001100static const struct net_device_ops cpmac_netdev_ops = {
1101 .ndo_open = cpmac_open,
1102 .ndo_stop = cpmac_stop,
1103 .ndo_start_xmit = cpmac_start_xmit,
1104 .ndo_tx_timeout = cpmac_tx_timeout,
1105 .ndo_set_multicast_list = cpmac_set_multicast_list,
Florian Fainelli6a9b6542009-06-24 16:32:33 -07001106 .ndo_do_ioctl = cpmac_ioctl,
Alexander Beregalov63ef7d82009-04-15 12:52:36 +00001107 .ndo_set_config = cpmac_config,
1108 .ndo_change_mtu = eth_change_mtu,
1109 .ndo_validate_addr = eth_validate_addr,
1110 .ndo_set_mac_address = eth_mac_addr,
1111};
1112
Matteo Croced95b39c2007-10-14 18:10:13 +02001113static int external_switch;
1114
1115static int __devinit cpmac_probe(struct platform_device *pdev)
1116{
Florian Fainelli69bd4ae2009-05-31 10:57:07 +00001117 int rc, phy_id;
Florian Fainelli762c6aa2009-09-15 21:44:22 +00001118 char mdio_bus_id[MII_BUS_ID_SIZE];
Matteo Croced95b39c2007-10-14 18:10:13 +02001119 struct resource *mem;
1120 struct cpmac_priv *priv;
1121 struct net_device *dev;
1122 struct plat_cpmac_data *pdata;
1123
1124 pdata = pdev->dev.platform_data;
1125
Florian Fainelli76e61ea2009-08-04 10:52:52 +00001126 if (external_switch || dumb_switch) {
Florian Fainelli762c6aa2009-09-15 21:44:22 +00001127 strncpy(mdio_bus_id, "0", MII_BUS_ID_SIZE); /* fixed phys bus */
Florian Fainelli76e61ea2009-08-04 10:52:52 +00001128 phy_id = pdev->id;
1129 } else {
1130 for (phy_id = 0; phy_id < PHY_MAX_ADDR; phy_id++) {
1131 if (!(pdata->phy_mask & (1 << phy_id)))
1132 continue;
1133 if (!cpmac_mii->phy_map[phy_id])
1134 continue;
Florian Fainelli762c6aa2009-09-15 21:44:22 +00001135 strncpy(mdio_bus_id, cpmac_mii->id, MII_BUS_ID_SIZE);
Florian Fainelli76e61ea2009-08-04 10:52:52 +00001136 break;
1137 }
Matteo Croced95b39c2007-10-14 18:10:13 +02001138 }
1139
1140 if (phy_id == PHY_MAX_ADDR) {
Florian Fainelli76e61ea2009-08-04 10:52:52 +00001141 dev_err(&pdev->dev, "no PHY present\n");
1142 return -ENODEV;
Matteo Croced95b39c2007-10-14 18:10:13 +02001143 }
1144
1145 dev = alloc_etherdev_mq(sizeof(*priv), CPMAC_QUEUES);
1146
1147 if (!dev) {
1148 printk(KERN_ERR "cpmac: Unable to allocate net_device\n");
1149 return -ENOMEM;
1150 }
1151
1152 platform_set_drvdata(pdev, dev);
1153 priv = netdev_priv(dev);
1154
1155 priv->pdev = pdev;
1156 mem = platform_get_resource_byname(pdev, IORESOURCE_MEM, "regs");
1157 if (!mem) {
1158 rc = -ENODEV;
1159 goto fail;
1160 }
1161
1162 dev->irq = platform_get_irq_byname(pdev, "irq");
1163
Alexander Beregalov63ef7d82009-04-15 12:52:36 +00001164 dev->netdev_ops = &cpmac_netdev_ops;
1165 dev->ethtool_ops = &cpmac_ethtool_ops;
Matteo Croced95b39c2007-10-14 18:10:13 +02001166
Eugene Konev67d129d2007-10-24 10:42:02 +08001167 netif_napi_add(dev, &priv->napi, cpmac_poll, 64);
1168
Matteo Croced95b39c2007-10-14 18:10:13 +02001169 spin_lock_init(&priv->lock);
1170 spin_lock_init(&priv->rx_lock);
1171 priv->dev = dev;
1172 priv->ring_size = 64;
1173 priv->msg_enable = netif_msg_init(debug_level, 0xff);
Julia Lawall2447f2f2009-12-13 05:35:45 +00001174 memcpy(dev->dev_addr, pdata->dev_addr, sizeof(pdata->dev_addr));
Eugene Konevb88219f2007-10-24 10:42:03 +08001175
Florian Fainelli762c6aa2009-09-15 21:44:22 +00001176 snprintf(priv->phy_name, MII_BUS_ID_SIZE, PHY_ID_FMT, mdio_bus_id, phy_id);
Florian Fainelli76e61ea2009-08-04 10:52:52 +00001177
1178 priv->phy = phy_connect(dev, priv->phy_name, &cpmac_adjust_link, 0,
1179 PHY_INTERFACE_MODE_MII);
1180
Eugene Konevb88219f2007-10-24 10:42:03 +08001181 if (IS_ERR(priv->phy)) {
1182 if (netif_msg_drv(priv))
1183 printk(KERN_ERR "%s: Could not attach to PHY\n",
1184 dev->name);
1185 return PTR_ERR(priv->phy);
1186 }
Matteo Croced95b39c2007-10-14 18:10:13 +02001187
1188 if ((rc = register_netdev(dev))) {
1189 printk(KERN_ERR "cpmac: error %i registering device %s\n", rc,
1190 dev->name);
1191 goto fail;
1192 }
1193
1194 if (netif_msg_probe(priv)) {
1195 printk(KERN_INFO
Eugene Konevdf523b52007-10-24 10:42:01 +08001196 "cpmac: device %s (regs: %p, irq: %d, phy: %s, "
Johannes Berge1749612008-10-27 15:59:26 -07001197 "mac: %pM)\n", dev->name, (void *)mem->start, dev->irq,
1198 priv->phy_name, dev->dev_addr);
Matteo Croced95b39c2007-10-14 18:10:13 +02001199 }
1200 return 0;
1201
1202fail:
1203 free_netdev(dev);
1204 return rc;
1205}
1206
1207static int __devexit cpmac_remove(struct platform_device *pdev)
1208{
1209 struct net_device *dev = platform_get_drvdata(pdev);
1210 unregister_netdev(dev);
1211 free_netdev(dev);
1212 return 0;
1213}
1214
1215static struct platform_driver cpmac_driver = {
1216 .driver.name = "cpmac",
Kay Sievers72abb462008-04-18 13:50:44 -07001217 .driver.owner = THIS_MODULE,
Matteo Croced95b39c2007-10-14 18:10:13 +02001218 .probe = cpmac_probe,
1219 .remove = __devexit_p(cpmac_remove),
1220};
1221
1222int __devinit cpmac_init(void)
1223{
1224 u32 mask;
1225 int i, res;
1226
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001227 cpmac_mii = mdiobus_alloc();
1228 if (cpmac_mii == NULL)
1229 return -ENOMEM;
Matteo Croced95b39c2007-10-14 18:10:13 +02001230
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001231 cpmac_mii->name = "cpmac-mii";
1232 cpmac_mii->read = cpmac_mdio_read;
1233 cpmac_mii->write = cpmac_mdio_write;
1234 cpmac_mii->reset = cpmac_mdio_reset;
1235 cpmac_mii->irq = mii_irqs;
1236
1237 cpmac_mii->priv = ioremap(AR7_REGS_MDIO, 256);
1238
1239 if (!cpmac_mii->priv) {
Matteo Croced95b39c2007-10-14 18:10:13 +02001240 printk(KERN_ERR "Can't ioremap mdio registers\n");
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001241 res = -ENXIO;
1242 goto fail_alloc;
Matteo Croced95b39c2007-10-14 18:10:13 +02001243 }
1244
1245#warning FIXME: unhardcode gpio&reset bits
1246 ar7_gpio_disable(26);
1247 ar7_gpio_disable(27);
1248 ar7_device_reset(AR7_RESET_BIT_CPMAC_LO);
1249 ar7_device_reset(AR7_RESET_BIT_CPMAC_HI);
1250 ar7_device_reset(AR7_RESET_BIT_EPHY);
1251
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001252 cpmac_mii->reset(cpmac_mii);
Matteo Croced95b39c2007-10-14 18:10:13 +02001253
Florian Fainellie4540aa2009-08-04 10:52:57 +00001254 for (i = 0; i < 300; i++)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001255 if ((mask = cpmac_read(cpmac_mii->priv, CPMAC_MDIO_ALIVE)))
Matteo Croced95b39c2007-10-14 18:10:13 +02001256 break;
1257 else
Florian Fainellie4540aa2009-08-04 10:52:57 +00001258 msleep(10);
Matteo Croced95b39c2007-10-14 18:10:13 +02001259
1260 mask &= 0x7fffffff;
1261 if (mask & (mask - 1)) {
1262 external_switch = 1;
1263 mask = 0;
1264 }
1265
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001266 cpmac_mii->phy_mask = ~(mask | 0x80000000);
Florian Fainellid76c6262009-08-04 10:52:41 +00001267 snprintf(cpmac_mii->id, MII_BUS_ID_SIZE, "1");
Matteo Croced95b39c2007-10-14 18:10:13 +02001268
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001269 res = mdiobus_register(cpmac_mii);
Matteo Croced95b39c2007-10-14 18:10:13 +02001270 if (res)
1271 goto fail_mii;
1272
1273 res = platform_driver_register(&cpmac_driver);
1274 if (res)
1275 goto fail_cpmac;
1276
1277 return 0;
1278
1279fail_cpmac:
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001280 mdiobus_unregister(cpmac_mii);
Matteo Croced95b39c2007-10-14 18:10:13 +02001281
1282fail_mii:
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001283 iounmap(cpmac_mii->priv);
1284
1285fail_alloc:
1286 mdiobus_free(cpmac_mii);
Matteo Croced95b39c2007-10-14 18:10:13 +02001287
1288 return res;
1289}
1290
1291void __devexit cpmac_exit(void)
1292{
1293 platform_driver_unregister(&cpmac_driver);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001294 mdiobus_unregister(cpmac_mii);
1295 mdiobus_free(cpmac_mii);
1296 iounmap(cpmac_mii->priv);
Matteo Croced95b39c2007-10-14 18:10:13 +02001297}
1298
1299module_init(cpmac_init);
1300module_exit(cpmac_exit);