blob: fa0cfda24fd9caaf44d47812d5b1b13a2af73dcf [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>
Alexey Dobriyan539d3ee2011-06-10 03:36:43 +000020#include <linux/interrupt.h>
Matteo Croced95b39c2007-10-14 18:10:13 +020021#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>
Florian Fainelli30765d02010-03-07 00:55:26 +000031#include <linux/if_vlan.h>
Matteo Croced95b39c2007-10-14 18:10:13 +020032#include <linux/etherdevice.h>
33#include <linux/ethtool.h>
34#include <linux/skbuff.h>
35#include <linux/mii.h>
36#include <linux/phy.h>
Eugene Konevb88219f2007-10-24 10:42:03 +080037#include <linux/phy_fixed.h>
Matteo Croced95b39c2007-10-14 18:10:13 +020038#include <linux/platform_device.h>
39#include <linux/dma-mapping.h>
Florian Fainelli780019d2010-01-27 09:10:06 +010040#include <linux/clk.h>
Florian Fainelli559764d2010-08-08 10:09:39 +000041#include <linux/gpio.h>
Arun Sharma600634972011-07-26 16:09:06 -070042#include <linux/atomic.h>
Matteo Croced95b39c2007-10-14 18:10:13 +020043
Alban Bedel832f5da2015-08-02 18:30:11 +020044#include <asm/mach-ar7/ar7.h>
45
Matteo Croced95b39c2007-10-14 18:10:13 +020046MODULE_AUTHOR("Eugene Konev <ejka@imfi.kspu.ru>");
47MODULE_DESCRIPTION("TI AR7 ethernet driver (CPMAC)");
48MODULE_LICENSE("GPL");
Kay Sievers72abb462008-04-18 13:50:44 -070049MODULE_ALIAS("platform:cpmac");
Matteo Croced95b39c2007-10-14 18:10:13 +020050
51static int debug_level = 8;
52static int dumb_switch;
53
54/* Next 2 are only used in cpmac_probe, so it's pointless to change them */
55module_param(debug_level, int, 0444);
56module_param(dumb_switch, int, 0444);
57
58MODULE_PARM_DESC(debug_level, "Number of NETIF_MSG bits to enable");
59MODULE_PARM_DESC(dumb_switch, "Assume switch is not connected to MDIO bus");
60
Florian Fainelli25dc27d2010-03-07 00:55:50 +000061#define CPMAC_VERSION "0.5.2"
Florian Fainelli30765d02010-03-07 00:55:26 +000062/* frame size + 802.1q tag + FCS size */
63#define CPMAC_SKB_SIZE (ETH_FRAME_LEN + ETH_FCS_LEN + VLAN_HLEN)
Matteo Croced95b39c2007-10-14 18:10:13 +020064#define CPMAC_QUEUES 8
65
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
Varka Bhadramaf595152014-07-10 11:05:39 +053072#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)
Matteo Croced95b39c2007-10-14 18:10:13 +020084#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
Varka Bhadramaf595152014-07-10 11:05:39 +053089#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
Matteo Croced95b39c2007-10-14 18:10:13 +020097#define CPMAC_MAC_STATUS 0x0164
Varka Bhadramaf595152014-07-10 11:05:39 +053098#define MAC_STATUS_QOS 0x00000004
99#define MAC_STATUS_RXFLOW 0x00000002
100#define MAC_STATUS_TXFLOW 0x00000001
Matteo Croced95b39c2007-10-14 18:10:13 +0200101#define CPMAC_TX_INT_ENABLE 0x0178
102#define CPMAC_TX_INT_CLEAR 0x017c
103#define CPMAC_MAC_INT_VECTOR 0x0180
Varka Bhadramaf595152014-07-10 11:05:39 +0530104#define MAC_INT_STATUS 0x00080000
105#define MAC_INT_HOST 0x00040000
106#define MAC_INT_RX 0x00020000
107#define MAC_INT_TX 0x00010000
Matteo Croced95b39c2007-10-14 18:10:13 +0200108#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
Florian Fainelli559764d2010-08-08 10:09:39 +0000113#define CPMAC_MAC_ADDR_LO(channel) (0x01b0 + (channel) * 4)
Matteo Croced95b39c2007-10-14 18:10:13 +0200114#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
Varka Bhadram8bcd5c62014-07-10 11:05:40 +0530123
124/* Rx/Tx statistics
Matteo Croced95b39c2007-10-14 18:10:13 +0200125 * TODO: use some of them to fill stats in cpmac_stats()
126 */
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
140
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
154
155#define cpmac_read(base, reg) (readl((void __iomem *)(base) + (reg)))
156#define cpmac_write(base, reg, val) (writel(val, (void __iomem *)(base) + \
157 (reg)))
158
159/* MDIO bus */
160#define CPMAC_MDIO_VERSION 0x0000
161#define CPMAC_MDIO_CONTROL 0x0004
Varka Bhadramaf595152014-07-10 11:05:39 +0530162#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)
Matteo Croced95b39c2007-10-14 18:10:13 +0200169#define CPMAC_MDIO_ALIVE 0x0008
170#define CPMAC_MDIO_LINK 0x000c
171#define CPMAC_MDIO_ACCESS(channel) (0x0080 + (channel) * 8)
Varka Bhadramaf595152014-07-10 11:05:39 +0530172#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)
Matteo Croced95b39c2007-10-14 18:10:13 +0200177#define CPMAC_MDIO_PHYSEL(channel) (0x0084 + (channel) * 8)
Varka Bhadramaf595152014-07-10 11:05:39 +0530178#define PHYSEL_LINKSEL 0x00000040
179#define PHYSEL_LINKINT 0x00000020
Matteo Croced95b39c2007-10-14 18:10:13 +0200180
181struct cpmac_desc {
182 u32 hw_next;
183 u32 hw_data;
184 u16 buflen;
185 u16 bufflags;
186 u16 datalen;
187 u16 dataflags;
188#define CPMAC_SOP 0x8000
189#define CPMAC_EOP 0x4000
190#define CPMAC_OWN 0x2000
191#define CPMAC_EOQ 0x1000
192 struct sk_buff *skb;
193 struct cpmac_desc *next;
Matteo Crocef917d582008-05-14 00:58:32 +0200194 struct cpmac_desc *prev;
Matteo Croced95b39c2007-10-14 18:10:13 +0200195 dma_addr_t mapping;
196 dma_addr_t data_mapping;
197};
198
199struct cpmac_priv {
200 spinlock_t lock;
201 spinlock_t rx_lock;
202 struct cpmac_desc *rx_head;
203 int ring_size;
204 struct cpmac_desc *desc_ring;
205 dma_addr_t dma_ring;
206 void __iomem *regs;
207 struct mii_bus *mii_bus;
David S. Miller21a8cfe2009-05-26 21:10:22 -0700208 char phy_name[MII_BUS_ID_SIZE + 3];
Matteo Croced95b39c2007-10-14 18:10:13 +0200209 int oldlink, oldspeed, oldduplex;
210 u32 msg_enable;
211 struct net_device *dev;
212 struct work_struct reset_work;
213 struct platform_device *pdev;
Eugene Konev67d129d2007-10-24 10:42:02 +0800214 struct napi_struct napi;
Matteo Crocef917d582008-05-14 00:58:32 +0200215 atomic_t reset_pending;
Matteo Croced95b39c2007-10-14 18:10:13 +0200216};
217
218static irqreturn_t cpmac_irq(int, void *);
219static void cpmac_hw_start(struct net_device *dev);
220static void cpmac_hw_stop(struct net_device *dev);
221static int cpmac_stop(struct net_device *dev);
222static int cpmac_open(struct net_device *dev);
223
224static void cpmac_dump_regs(struct net_device *dev)
225{
226 int i;
227 struct cpmac_priv *priv = netdev_priv(dev);
Varka Bhadram59329d82014-07-10 11:05:43 +0530228
Matteo Croced95b39c2007-10-14 18:10:13 +0200229 for (i = 0; i < CPMAC_REG_END; i += 4) {
230 if (i % 16 == 0) {
231 if (i)
Varka Bhadramff320452014-07-10 15:29:38 +0530232 printk("\n");
233 printk("%s: reg[%p]:", dev->name, priv->regs + i);
Matteo Croced95b39c2007-10-14 18:10:13 +0200234 }
Varka Bhadramff320452014-07-10 15:29:38 +0530235 printk(" %08x", cpmac_read(priv->regs, i));
Matteo Croced95b39c2007-10-14 18:10:13 +0200236 }
Varka Bhadramff320452014-07-10 15:29:38 +0530237 printk("\n");
Matteo Croced95b39c2007-10-14 18:10:13 +0200238}
239
240static void cpmac_dump_desc(struct net_device *dev, struct cpmac_desc *desc)
241{
242 int i;
Varka Bhadram59329d82014-07-10 11:05:43 +0530243
Varka Bhadramff320452014-07-10 15:29:38 +0530244 printk("%s: desc[%p]:", dev->name, desc);
Matteo Croced95b39c2007-10-14 18:10:13 +0200245 for (i = 0; i < sizeof(*desc) / 4; i++)
Varka Bhadramff320452014-07-10 15:29:38 +0530246 printk(" %08x", ((u32 *)desc)[i]);
247 printk("\n");
Matteo Croced95b39c2007-10-14 18:10:13 +0200248}
249
Matteo Crocef917d582008-05-14 00:58:32 +0200250static void cpmac_dump_all_desc(struct net_device *dev)
251{
252 struct cpmac_priv *priv = netdev_priv(dev);
253 struct cpmac_desc *dump = priv->rx_head;
Varka Bhadram59329d82014-07-10 11:05:43 +0530254
Matteo Crocef917d582008-05-14 00:58:32 +0200255 do {
256 cpmac_dump_desc(dev, dump);
257 dump = dump->next;
258 } while (dump != priv->rx_head);
259}
260
Matteo Croced95b39c2007-10-14 18:10:13 +0200261static void cpmac_dump_skb(struct net_device *dev, struct sk_buff *skb)
262{
263 int i;
Varka Bhadram59329d82014-07-10 11:05:43 +0530264
Varka Bhadramff320452014-07-10 15:29:38 +0530265 printk("%s: skb 0x%p, len=%d\n", dev->name, skb, skb->len);
Matteo Croced95b39c2007-10-14 18:10:13 +0200266 for (i = 0; i < skb->len; i++) {
267 if (i % 16 == 0) {
268 if (i)
Varka Bhadramff320452014-07-10 15:29:38 +0530269 printk("\n");
270 printk("%s: data[%p]:", dev->name, skb->data + i);
Matteo Croced95b39c2007-10-14 18:10:13 +0200271 }
Varka Bhadramff320452014-07-10 15:29:38 +0530272 printk(" %02x", ((u8 *)skb->data)[i]);
Matteo Croced95b39c2007-10-14 18:10:13 +0200273 }
Varka Bhadramff320452014-07-10 15:29:38 +0530274 printk("\n");
Matteo Croced95b39c2007-10-14 18:10:13 +0200275}
276
277static int cpmac_mdio_read(struct mii_bus *bus, int phy_id, int reg)
278{
279 u32 val;
280
281 while (cpmac_read(bus->priv, CPMAC_MDIO_ACCESS(0)) & MDIO_BUSY)
282 cpu_relax();
283 cpmac_write(bus->priv, CPMAC_MDIO_ACCESS(0), MDIO_BUSY | MDIO_REG(reg) |
284 MDIO_PHY(phy_id));
285 while ((val = cpmac_read(bus->priv, CPMAC_MDIO_ACCESS(0))) & MDIO_BUSY)
286 cpu_relax();
Varka Bhadram55064ef2014-07-10 11:05:44 +0530287
Matteo Croced95b39c2007-10-14 18:10:13 +0200288 return MDIO_DATA(val);
289}
290
291static int cpmac_mdio_write(struct mii_bus *bus, int phy_id,
292 int reg, u16 val)
293{
294 while (cpmac_read(bus->priv, CPMAC_MDIO_ACCESS(0)) & MDIO_BUSY)
295 cpu_relax();
296 cpmac_write(bus->priv, CPMAC_MDIO_ACCESS(0), MDIO_BUSY | MDIO_WRITE |
297 MDIO_REG(reg) | MDIO_PHY(phy_id) | MDIO_DATA(val));
Varka Bhadram55064ef2014-07-10 11:05:44 +0530298
Matteo Croced95b39c2007-10-14 18:10:13 +0200299 return 0;
300}
301
302static int cpmac_mdio_reset(struct mii_bus *bus)
303{
Florian Fainelli780019d2010-01-27 09:10:06 +0100304 struct clk *cpmac_clk;
305
306 cpmac_clk = clk_get(&bus->dev, "cpmac");
307 if (IS_ERR(cpmac_clk)) {
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530308 pr_err("unable to get cpmac clock\n");
Florian Fainelli780019d2010-01-27 09:10:06 +0100309 return -1;
310 }
Matteo Croced95b39c2007-10-14 18:10:13 +0200311 ar7_device_reset(AR7_RESET_BIT_MDIO);
312 cpmac_write(bus->priv, CPMAC_MDIO_CONTROL, MDIOC_ENABLE |
Florian Fainelli780019d2010-01-27 09:10:06 +0100313 MDIOC_CLKDIV(clk_get_rate(cpmac_clk) / 2200000 - 1));
Varka Bhadram55064ef2014-07-10 11:05:44 +0530314
Matteo Croced95b39c2007-10-14 18:10:13 +0200315 return 0;
316}
317
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700318static struct mii_bus *cpmac_mii;
Matteo Croced95b39c2007-10-14 18:10:13 +0200319
Matteo Croced95b39c2007-10-14 18:10:13 +0200320static void cpmac_set_multicast_list(struct net_device *dev)
321{
Jiri Pirko22bedad32010-04-01 21:22:57 +0000322 struct netdev_hw_addr *ha;
Matteo Croced95b39c2007-10-14 18:10:13 +0200323 u8 tmp;
324 u32 mbp, bit, hash[2] = { 0, };
325 struct cpmac_priv *priv = netdev_priv(dev);
326
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)) |
330 MBP_RXPROMISC);
331 } else {
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);
337 } else {
Varka Bhadram8bcd5c62014-07-10 11:05:40 +0530338 /* cpmac uses some strange mac address hashing
Matteo Croced95b39c2007-10-14 18:10:13 +0200339 * (not crc32)
340 */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000341 netdev_for_each_mc_addr(ha, dev) {
Matteo Croced95b39c2007-10-14 18:10:13 +0200342 bit = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +0000343 tmp = ha->addr[0];
Matteo Croced95b39c2007-10-14 18:10:13 +0200344 bit ^= (tmp >> 2) ^ (tmp << 4);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000345 tmp = ha->addr[1];
Matteo Croced95b39c2007-10-14 18:10:13 +0200346 bit ^= (tmp >> 4) ^ (tmp << 2);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000347 tmp = ha->addr[2];
Matteo Croced95b39c2007-10-14 18:10:13 +0200348 bit ^= (tmp >> 6) ^ tmp;
Jiri Pirko22bedad32010-04-01 21:22:57 +0000349 tmp = ha->addr[3];
Matteo Croced95b39c2007-10-14 18:10:13 +0200350 bit ^= (tmp >> 2) ^ (tmp << 4);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000351 tmp = ha->addr[4];
Matteo Croced95b39c2007-10-14 18:10:13 +0200352 bit ^= (tmp >> 4) ^ (tmp << 2);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000353 tmp = ha->addr[5];
Matteo Croced95b39c2007-10-14 18:10:13 +0200354 bit ^= (tmp >> 6) ^ tmp;
355 bit &= 0x3f;
356 hash[bit / 32] |= 1 << (bit % 32);
357 }
358
359 cpmac_write(priv->regs, CPMAC_MAC_HASH_LO, hash[0]);
360 cpmac_write(priv->regs, CPMAC_MAC_HASH_HI, hash[1]);
361 }
362 }
363}
364
Eugene Konev67d129d2007-10-24 10:42:02 +0800365static struct sk_buff *cpmac_rx_one(struct cpmac_priv *priv,
Matteo Croced95b39c2007-10-14 18:10:13 +0200366 struct cpmac_desc *desc)
367{
368 struct sk_buff *skb, *result = NULL;
369
370 if (unlikely(netif_msg_hw(priv)))
Eugene Konev67d129d2007-10-24 10:42:02 +0800371 cpmac_dump_desc(priv->dev, desc);
Matteo Croced95b39c2007-10-14 18:10:13 +0200372 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())
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530375 netdev_warn(priv->dev, "rx: spurious interrupt\n");
376
Matteo Croced95b39c2007-10-14 18:10:13 +0200377 return NULL;
378 }
379
Eric Dumazet89d71a62009-10-13 05:34:20 +0000380 skb = netdev_alloc_skb_ip_align(priv->dev, CPMAC_SKB_SIZE);
Matteo Croced95b39c2007-10-14 18:10:13 +0200381 if (likely(skb)) {
Matteo Croced95b39c2007-10-14 18:10:13 +0200382 skb_put(desc->skb, desc->datalen);
Eugene Konev67d129d2007-10-24 10:42:02 +0800383 desc->skb->protocol = eth_type_trans(desc->skb, priv->dev);
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700384 skb_checksum_none_assert(desc->skb);
Eugene Konev67d129d2007-10-24 10:42:02 +0800385 priv->dev->stats.rx_packets++;
386 priv->dev->stats.rx_bytes += desc->datalen;
Matteo Croced95b39c2007-10-14 18:10:13 +0200387 result = desc->skb;
Eugene Konev67d129d2007-10-24 10:42:02 +0800388 dma_unmap_single(&priv->dev->dev, desc->data_mapping,
389 CPMAC_SKB_SIZE, DMA_FROM_DEVICE);
Matteo Croced95b39c2007-10-14 18:10:13 +0200390 desc->skb = skb;
Eugene Konev67d129d2007-10-24 10:42:02 +0800391 desc->data_mapping = dma_map_single(&priv->dev->dev, skb->data,
Matteo Croced95b39c2007-10-14 18:10:13 +0200392 CPMAC_SKB_SIZE,
393 DMA_FROM_DEVICE);
394 desc->hw_data = (u32)desc->data_mapping;
395 if (unlikely(netif_msg_pktdata(priv))) {
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530396 netdev_dbg(priv->dev, "received packet:\n");
Eugene Konev67d129d2007-10-24 10:42:02 +0800397 cpmac_dump_skb(priv->dev, result);
Matteo Croced95b39c2007-10-14 18:10:13 +0200398 }
399 } else {
400 if (netif_msg_rx_err(priv) && net_ratelimit())
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530401 netdev_warn(priv->dev,
402 "low on skbs, dropping packet\n");
403
Eugene Konev67d129d2007-10-24 10:42:02 +0800404 priv->dev->stats.rx_dropped++;
Matteo Croced95b39c2007-10-14 18:10:13 +0200405 }
406
407 desc->buflen = CPMAC_SKB_SIZE;
408 desc->dataflags = CPMAC_OWN;
409
410 return result;
411}
412
Eugene Konev67d129d2007-10-24 10:42:02 +0800413static int cpmac_poll(struct napi_struct *napi, int budget)
Matteo Croced95b39c2007-10-14 18:10:13 +0200414{
415 struct sk_buff *skb;
Matteo Crocef917d582008-05-14 00:58:32 +0200416 struct cpmac_desc *desc, *restart;
Eugene Konev67d129d2007-10-24 10:42:02 +0800417 struct cpmac_priv *priv = container_of(napi, struct cpmac_priv, napi);
Matteo Crocef917d582008-05-14 00:58:32 +0200418 int received = 0, processed = 0;
Matteo Croced95b39c2007-10-14 18:10:13 +0200419
420 spin_lock(&priv->rx_lock);
421 if (unlikely(!priv->rx_head)) {
422 if (netif_msg_rx_err(priv) && net_ratelimit())
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530423 netdev_warn(priv->dev, "rx: polling, but no queue\n");
424
Matteo Crocef917d582008-05-14 00:58:32 +0200425 spin_unlock(&priv->rx_lock);
Ben Hutchings288379f2009-01-19 16:43:59 -0800426 napi_complete(napi);
Matteo Croced95b39c2007-10-14 18:10:13 +0200427 return 0;
428 }
429
430 desc = priv->rx_head;
Matteo Crocef917d582008-05-14 00:58:32 +0200431 restart = NULL;
Eugene Konev67d129d2007-10-24 10:42:02 +0800432 while (((desc->dataflags & CPMAC_OWN) == 0) && (received < budget)) {
Matteo Crocef917d582008-05-14 00:58:32 +0200433 processed++;
434
435 if ((desc->dataflags & CPMAC_EOQ) != 0) {
436 /* The last update to eoq->hw_next didn't happen
Varka Bhadram8bcd5c62014-07-10 11:05:40 +0530437 * soon enough, and the receiver stopped here.
438 * Remember this descriptor so we can restart
439 * the receiver after freeing some space.
440 */
Matteo Crocef917d582008-05-14 00:58:32 +0200441 if (unlikely(restart)) {
442 if (netif_msg_rx_err(priv))
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530443 netdev_err(priv->dev, "poll found a"
444 " duplicate EOQ: %p and %p\n",
445 restart, desc);
Matteo Crocef917d582008-05-14 00:58:32 +0200446 goto fatal_error;
447 }
448
449 restart = desc->next;
450 }
451
Eugene Konev67d129d2007-10-24 10:42:02 +0800452 skb = cpmac_rx_one(priv, desc);
Matteo Croced95b39c2007-10-14 18:10:13 +0200453 if (likely(skb)) {
454 netif_receive_skb(skb);
455 received++;
456 }
457 desc = desc->next;
458 }
459
Matteo Crocef917d582008-05-14 00:58:32 +0200460 if (desc != priv->rx_head) {
461 /* We freed some buffers, but not the whole ring,
Varka Bhadram8bcd5c62014-07-10 11:05:40 +0530462 * add what we did free to the rx list
463 */
Matteo Crocef917d582008-05-14 00:58:32 +0200464 desc->prev->hw_next = (u32)0;
465 priv->rx_head->prev->hw_next = priv->rx_head->mapping;
466 }
467
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.
Varka Bhadram8bcd5c62014-07-10 11:05:40 +0530470 * 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)
474 */
Matteo Crocef917d582008-05-14 00:58:32 +0200475
476 if (!restart &&
477 (priv->rx_head->prev->dataflags & (CPMAC_OWN|CPMAC_EOQ))
478 == CPMAC_EOQ &&
479 (priv->rx_head->dataflags & CPMAC_OWN) != 0) {
480 /* reset EOQ so the poll loop (above) doesn't try to
Varka Bhadram8bcd5c62014-07-10 11:05:40 +0530481 * restart this when it eventually gets to this descriptor.
482 */
Matteo Crocef917d582008-05-14 00:58:32 +0200483 priv->rx_head->prev->dataflags &= ~CPMAC_EOQ;
484 restart = priv->rx_head;
485 }
486
487 if (restart) {
488 priv->dev->stats.rx_errors++;
489 priv->dev->stats.rx_fifo_errors++;
490 if (netif_msg_rx_err(priv) && net_ratelimit())
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530491 netdev_warn(priv->dev, "rx dma ring overrun\n");
Matteo Crocef917d582008-05-14 00:58:32 +0200492
493 if (unlikely((restart->dataflags & CPMAC_OWN) == 0)) {
494 if (netif_msg_drv(priv))
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530495 netdev_err(priv->dev, "cpmac_poll is trying "
496 "to restart rx from a descriptor "
497 "that's not free: %p\n", restart);
Julia Lawall9e1634a2010-08-05 10:28:31 +0000498 goto fatal_error;
Matteo Crocef917d582008-05-14 00:58:32 +0200499 }
500
501 cpmac_write(priv->regs, CPMAC_RX_PTR(0), restart->mapping);
502 }
503
Matteo Croced95b39c2007-10-14 18:10:13 +0200504 priv->rx_head = desc;
505 spin_unlock(&priv->rx_lock);
Matteo Croced95b39c2007-10-14 18:10:13 +0200506 if (unlikely(netif_msg_rx_status(priv)))
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530507 netdev_dbg(priv->dev, "poll processed %d packets\n", received);
508
Matteo Crocef917d582008-05-14 00:58:32 +0200509 if (processed == 0) {
510 /* we ran out of packets to read,
Varka Bhadram8bcd5c62014-07-10 11:05:40 +0530511 * revert to interrupt-driven mode
512 */
Ben Hutchings288379f2009-01-19 16:43:59 -0800513 napi_complete(napi);
Matteo Croced95b39c2007-10-14 18:10:13 +0200514 cpmac_write(priv->regs, CPMAC_RX_INT_ENABLE, 1);
515 return 0;
516 }
517
518 return 1;
Matteo Crocef917d582008-05-14 00:58:32 +0200519
520fatal_error:
521 /* Something went horribly wrong.
Varka Bhadram8bcd5c62014-07-10 11:05:40 +0530522 * Reset hardware to try to recover rather than wedging.
523 */
Matteo Crocef917d582008-05-14 00:58:32 +0200524 if (netif_msg_drv(priv)) {
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530525 netdev_err(priv->dev, "cpmac_poll is confused. "
526 "Resetting hardware\n");
Matteo Crocef917d582008-05-14 00:58:32 +0200527 cpmac_dump_all_desc(priv->dev);
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530528 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)));
Matteo Crocef917d582008-05-14 00:58:32 +0200531 }
532
533 spin_unlock(&priv->rx_lock);
Ben Hutchings288379f2009-01-19 16:43:59 -0800534 napi_complete(napi);
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700535 netif_tx_stop_all_queues(priv->dev);
Matteo Crocef917d582008-05-14 00:58:32 +0200536 napi_disable(&priv->napi);
537
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);
Varka Bhadram55064ef2014-07-10 11:05:44 +0530542
Matteo Crocef917d582008-05-14 00:58:32 +0200543 return 0;
544
Matteo Croced95b39c2007-10-14 18:10:13 +0200545}
546
547static int cpmac_start_xmit(struct sk_buff *skb, struct net_device *dev)
548{
Paul Burton2f5281b2016-09-02 15:22:48 +0100549 int queue;
550 unsigned int len;
Matteo Croced95b39c2007-10-14 18:10:13 +0200551 struct cpmac_desc *desc;
552 struct cpmac_priv *priv = netdev_priv(dev);
553
Matteo Crocef917d582008-05-14 00:58:32 +0200554 if (unlikely(atomic_read(&priv->reset_pending)))
555 return NETDEV_TX_BUSY;
556
Matteo Croce6cd043d2007-10-23 19:12:22 +0200557 if (unlikely(skb_padto(skb, ETH_ZLEN)))
558 return NETDEV_TX_OK;
Matteo Croced95b39c2007-10-14 18:10:13 +0200559
Paul Burton2f5281b2016-09-02 15:22:48 +0100560 len = max_t(unsigned int, skb->len, ETH_ZLEN);
Matteo Croceba596a02008-01-12 19:05:23 +0100561 queue = skb_get_queue_mapping(skb);
Matteo Croced95b39c2007-10-14 18:10:13 +0200562 netif_stop_subqueue(dev, queue);
Matteo Croced95b39c2007-10-14 18:10:13 +0200563
564 desc = &priv->desc_ring[queue];
565 if (unlikely(desc->dataflags & CPMAC_OWN)) {
566 if (netif_msg_tx_err(priv) && net_ratelimit())
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530567 netdev_warn(dev, "tx dma ring full\n");
568
Matteo Croce6cd043d2007-10-23 19:12:22 +0200569 return NETDEV_TX_BUSY;
Matteo Croced95b39c2007-10-14 18:10:13 +0200570 }
571
572 spin_lock(&priv->lock);
Matteo Croced95b39c2007-10-14 18:10:13 +0200573 spin_unlock(&priv->lock);
574 desc->dataflags = CPMAC_SOP | CPMAC_EOP | CPMAC_OWN;
575 desc->skb = skb;
576 desc->data_mapping = dma_map_single(&dev->dev, skb->data, len,
577 DMA_TO_DEVICE);
578 desc->hw_data = (u32)desc->data_mapping;
579 desc->datalen = len;
580 desc->buflen = len;
581 if (unlikely(netif_msg_tx_queued(priv)))
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530582 netdev_dbg(dev, "sending 0x%p, len=%d\n", skb, skb->len);
Matteo Croced95b39c2007-10-14 18:10:13 +0200583 if (unlikely(netif_msg_hw(priv)))
584 cpmac_dump_desc(dev, desc);
585 if (unlikely(netif_msg_pktdata(priv)))
586 cpmac_dump_skb(dev, skb);
587 cpmac_write(priv->regs, CPMAC_TX_PTR(queue), (u32)desc->mapping);
588
Matteo Croce6cd043d2007-10-23 19:12:22 +0200589 return NETDEV_TX_OK;
Matteo Croced95b39c2007-10-14 18:10:13 +0200590}
591
592static void cpmac_end_xmit(struct net_device *dev, int queue)
593{
594 struct cpmac_desc *desc;
595 struct cpmac_priv *priv = netdev_priv(dev);
596
597 desc = &priv->desc_ring[queue];
598 cpmac_write(priv->regs, CPMAC_TX_ACK(queue), (u32)desc->mapping);
599 if (likely(desc->skb)) {
600 spin_lock(&priv->lock);
601 dev->stats.tx_packets++;
602 dev->stats.tx_bytes += desc->skb->len;
603 spin_unlock(&priv->lock);
604 dma_unmap_single(&dev->dev, desc->data_mapping, desc->skb->len,
605 DMA_TO_DEVICE);
606
607 if (unlikely(netif_msg_tx_done(priv)))
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530608 netdev_dbg(dev, "sent 0x%p, len=%d\n",
609 desc->skb, desc->skb->len);
Matteo Croced95b39c2007-10-14 18:10:13 +0200610
611 dev_kfree_skb_irq(desc->skb);
612 desc->skb = NULL;
Stefan Weil0220ff72009-05-31 10:59:15 +0000613 if (__netif_subqueue_stopped(dev, queue))
Matteo Croced95b39c2007-10-14 18:10:13 +0200614 netif_wake_subqueue(dev, queue);
Matteo Croced95b39c2007-10-14 18:10:13 +0200615 } else {
616 if (netif_msg_tx_err(priv) && net_ratelimit())
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530617 netdev_warn(dev, "end_xmit: spurious interrupt\n");
Stefan Weil0220ff72009-05-31 10:59:15 +0000618 if (__netif_subqueue_stopped(dev, queue))
Matteo Croced95b39c2007-10-14 18:10:13 +0200619 netif_wake_subqueue(dev, queue);
Matteo Croced95b39c2007-10-14 18:10:13 +0200620 }
621}
622
623static void cpmac_hw_stop(struct net_device *dev)
624{
625 int i;
626 struct cpmac_priv *priv = netdev_priv(dev);
Jingoo Hana0ea2ac2013-08-30 14:05:02 +0900627 struct plat_cpmac_data *pdata = dev_get_platdata(&priv->pdev->dev);
Matteo Croced95b39c2007-10-14 18:10:13 +0200628
629 ar7_device_reset(pdata->reset_bit);
630 cpmac_write(priv->regs, CPMAC_RX_CONTROL,
631 cpmac_read(priv->regs, CPMAC_RX_CONTROL) & ~1);
632 cpmac_write(priv->regs, CPMAC_TX_CONTROL,
633 cpmac_read(priv->regs, CPMAC_TX_CONTROL) & ~1);
634 for (i = 0; i < 8; i++) {
635 cpmac_write(priv->regs, CPMAC_TX_PTR(i), 0);
636 cpmac_write(priv->regs, CPMAC_RX_PTR(i), 0);
637 }
638 cpmac_write(priv->regs, CPMAC_UNICAST_CLEAR, 0xff);
639 cpmac_write(priv->regs, CPMAC_RX_INT_CLEAR, 0xff);
640 cpmac_write(priv->regs, CPMAC_TX_INT_CLEAR, 0xff);
641 cpmac_write(priv->regs, CPMAC_MAC_INT_CLEAR, 0xff);
642 cpmac_write(priv->regs, CPMAC_MAC_CONTROL,
643 cpmac_read(priv->regs, CPMAC_MAC_CONTROL) & ~MAC_MII);
644}
645
646static void cpmac_hw_start(struct net_device *dev)
647{
648 int i;
649 struct cpmac_priv *priv = netdev_priv(dev);
Jingoo Hana0ea2ac2013-08-30 14:05:02 +0900650 struct plat_cpmac_data *pdata = dev_get_platdata(&priv->pdev->dev);
Matteo Croced95b39c2007-10-14 18:10:13 +0200651
652 ar7_device_reset(pdata->reset_bit);
653 for (i = 0; i < 8; i++) {
654 cpmac_write(priv->regs, CPMAC_TX_PTR(i), 0);
655 cpmac_write(priv->regs, CPMAC_RX_PTR(i), 0);
656 }
657 cpmac_write(priv->regs, CPMAC_RX_PTR(0), priv->rx_head->mapping);
658
659 cpmac_write(priv->regs, CPMAC_MBP, MBP_RXSHORT | MBP_RXBCAST |
660 MBP_RXMCAST);
661 cpmac_write(priv->regs, CPMAC_BUFFER_OFFSET, 0);
662 for (i = 0; i < 8; i++)
663 cpmac_write(priv->regs, CPMAC_MAC_ADDR_LO(i), dev->dev_addr[5]);
664 cpmac_write(priv->regs, CPMAC_MAC_ADDR_MID, dev->dev_addr[4]);
665 cpmac_write(priv->regs, CPMAC_MAC_ADDR_HI, dev->dev_addr[0] |
666 (dev->dev_addr[1] << 8) | (dev->dev_addr[2] << 16) |
667 (dev->dev_addr[3] << 24));
668 cpmac_write(priv->regs, CPMAC_MAX_LENGTH, CPMAC_SKB_SIZE);
669 cpmac_write(priv->regs, CPMAC_UNICAST_CLEAR, 0xff);
670 cpmac_write(priv->regs, CPMAC_RX_INT_CLEAR, 0xff);
671 cpmac_write(priv->regs, CPMAC_TX_INT_CLEAR, 0xff);
672 cpmac_write(priv->regs, CPMAC_MAC_INT_CLEAR, 0xff);
673 cpmac_write(priv->regs, CPMAC_UNICAST_ENABLE, 1);
674 cpmac_write(priv->regs, CPMAC_RX_INT_ENABLE, 1);
675 cpmac_write(priv->regs, CPMAC_TX_INT_ENABLE, 0xff);
676 cpmac_write(priv->regs, CPMAC_MAC_INT_ENABLE, 3);
677
678 cpmac_write(priv->regs, CPMAC_RX_CONTROL,
679 cpmac_read(priv->regs, CPMAC_RX_CONTROL) | 1);
680 cpmac_write(priv->regs, CPMAC_TX_CONTROL,
681 cpmac_read(priv->regs, CPMAC_TX_CONTROL) | 1);
682 cpmac_write(priv->regs, CPMAC_MAC_CONTROL,
683 cpmac_read(priv->regs, CPMAC_MAC_CONTROL) | MAC_MII |
684 MAC_FDX);
685}
686
687static void cpmac_clear_rx(struct net_device *dev)
688{
689 struct cpmac_priv *priv = netdev_priv(dev);
690 struct cpmac_desc *desc;
691 int i;
Varka Bhadram59329d82014-07-10 11:05:43 +0530692
Matteo Croced95b39c2007-10-14 18:10:13 +0200693 if (unlikely(!priv->rx_head))
694 return;
695 desc = priv->rx_head;
696 for (i = 0; i < priv->ring_size; i++) {
697 if ((desc->dataflags & CPMAC_OWN) == 0) {
698 if (netif_msg_rx_err(priv) && net_ratelimit())
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530699 netdev_warn(dev, "packet dropped\n");
Matteo Croced95b39c2007-10-14 18:10:13 +0200700 if (unlikely(netif_msg_hw(priv)))
701 cpmac_dump_desc(dev, desc);
702 desc->dataflags = CPMAC_OWN;
703 dev->stats.rx_dropped++;
704 }
Matteo Crocef917d582008-05-14 00:58:32 +0200705 desc->hw_next = desc->next->mapping;
Matteo Croced95b39c2007-10-14 18:10:13 +0200706 desc = desc->next;
707 }
Matteo Crocef917d582008-05-14 00:58:32 +0200708 priv->rx_head->prev->hw_next = 0;
Matteo Croced95b39c2007-10-14 18:10:13 +0200709}
710
711static void cpmac_clear_tx(struct net_device *dev)
712{
713 struct cpmac_priv *priv = netdev_priv(dev);
714 int i;
Varka Bhadram59329d82014-07-10 11:05:43 +0530715
Matteo Croced95b39c2007-10-14 18:10:13 +0200716 if (unlikely(!priv->desc_ring))
717 return;
Matteo Croce6cd043d2007-10-23 19:12:22 +0200718 for (i = 0; i < CPMAC_QUEUES; i++) {
719 priv->desc_ring[i].dataflags = 0;
Matteo Croced95b39c2007-10-14 18:10:13 +0200720 if (priv->desc_ring[i].skb) {
721 dev_kfree_skb_any(priv->desc_ring[i].skb);
Matteo Crocef917d582008-05-14 00:58:32 +0200722 priv->desc_ring[i].skb = NULL;
Matteo Croced95b39c2007-10-14 18:10:13 +0200723 }
Matteo Croce6cd043d2007-10-23 19:12:22 +0200724 }
Matteo Croced95b39c2007-10-14 18:10:13 +0200725}
726
727static void cpmac_hw_error(struct work_struct *work)
728{
729 struct cpmac_priv *priv =
730 container_of(work, struct cpmac_priv, reset_work);
731
732 spin_lock(&priv->rx_lock);
733 cpmac_clear_rx(priv->dev);
734 spin_unlock(&priv->rx_lock);
735 cpmac_clear_tx(priv->dev);
736 cpmac_hw_start(priv->dev);
Matteo Crocef917d582008-05-14 00:58:32 +0200737 barrier();
738 atomic_dec(&priv->reset_pending);
739
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700740 netif_tx_wake_all_queues(priv->dev);
Matteo Crocef917d582008-05-14 00:58:32 +0200741 cpmac_write(priv->regs, CPMAC_MAC_INT_ENABLE, 3);
742}
743
744static void cpmac_check_status(struct net_device *dev)
745{
746 struct cpmac_priv *priv = netdev_priv(dev);
747
748 u32 macstatus = cpmac_read(priv->regs, CPMAC_MAC_STATUS);
749 int rx_channel = (macstatus >> 8) & 7;
750 int rx_code = (macstatus >> 12) & 15;
751 int tx_channel = (macstatus >> 16) & 7;
752 int tx_code = (macstatus >> 20) & 15;
753
754 if (rx_code || tx_code) {
755 if (netif_msg_drv(priv) && net_ratelimit()) {
756 /* Can't find any documentation on what these
Varka Bhadram8bcd5c62014-07-10 11:05:40 +0530757 * error codes actually are. So just log them and hope..
Matteo Crocef917d582008-05-14 00:58:32 +0200758 */
759 if (rx_code)
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530760 netdev_warn(dev, "host error %d on rx "
761 "channel %d (macstatus %08x), resetting\n",
762 rx_code, rx_channel, macstatus);
Matteo Crocef917d582008-05-14 00:58:32 +0200763 if (tx_code)
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530764 netdev_warn(dev, "host error %d on tx "
765 "channel %d (macstatus %08x), resetting\n",
766 tx_code, tx_channel, macstatus);
Matteo Crocef917d582008-05-14 00:58:32 +0200767 }
768
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700769 netif_tx_stop_all_queues(dev);
Matteo Crocef917d582008-05-14 00:58:32 +0200770 cpmac_hw_stop(dev);
771 if (schedule_work(&priv->reset_work))
772 atomic_inc(&priv->reset_pending);
773 if (unlikely(netif_msg_hw(priv)))
774 cpmac_dump_regs(dev);
775 }
776 cpmac_write(priv->regs, CPMAC_MAC_INT_CLEAR, 0xff);
Matteo Croced95b39c2007-10-14 18:10:13 +0200777}
778
779static irqreturn_t cpmac_irq(int irq, void *dev_id)
780{
781 struct net_device *dev = dev_id;
782 struct cpmac_priv *priv;
783 int queue;
784 u32 status;
785
Matteo Croced95b39c2007-10-14 18:10:13 +0200786 priv = netdev_priv(dev);
787
788 status = cpmac_read(priv->regs, CPMAC_MAC_INT_VECTOR);
789
790 if (unlikely(netif_msg_intr(priv)))
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530791 netdev_dbg(dev, "interrupt status: 0x%08x\n", status);
Matteo Croced95b39c2007-10-14 18:10:13 +0200792
793 if (status & MAC_INT_TX)
794 cpmac_end_xmit(dev, (status & 7));
795
796 if (status & MAC_INT_RX) {
797 queue = (status >> 8) & 7;
Ben Hutchings288379f2009-01-19 16:43:59 -0800798 if (napi_schedule_prep(&priv->napi)) {
Eugene Konev67d129d2007-10-24 10:42:02 +0800799 cpmac_write(priv->regs, CPMAC_RX_INT_CLEAR, 1 << queue);
Ben Hutchings288379f2009-01-19 16:43:59 -0800800 __napi_schedule(&priv->napi);
Eugene Konev67d129d2007-10-24 10:42:02 +0800801 }
Matteo Croced95b39c2007-10-14 18:10:13 +0200802 }
803
804 cpmac_write(priv->regs, CPMAC_MAC_EOI_VECTOR, 0);
805
Matteo Crocef917d582008-05-14 00:58:32 +0200806 if (unlikely(status & (MAC_INT_HOST | MAC_INT_STATUS)))
807 cpmac_check_status(dev);
Matteo Croced95b39c2007-10-14 18:10:13 +0200808
809 return IRQ_HANDLED;
810}
811
812static void cpmac_tx_timeout(struct net_device *dev)
813{
Matteo Crocef917d582008-05-14 00:58:32 +0200814 struct cpmac_priv *priv = netdev_priv(dev);
Matteo Croced95b39c2007-10-14 18:10:13 +0200815
816 spin_lock(&priv->lock);
817 dev->stats.tx_errors++;
818 spin_unlock(&priv->lock);
819 if (netif_msg_tx_err(priv) && net_ratelimit())
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530820 netdev_warn(dev, "transmit timeout\n");
Matteo Crocef917d582008-05-14 00:58:32 +0200821
822 atomic_inc(&priv->reset_pending);
823 barrier();
824 cpmac_clear_tx(dev);
825 barrier();
826 atomic_dec(&priv->reset_pending);
827
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700828 netif_tx_wake_all_queues(priv->dev);
Matteo Croced95b39c2007-10-14 18:10:13 +0200829}
830
831static int cpmac_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
832{
Matteo Croced95b39c2007-10-14 18:10:13 +0200833 if (!(netif_running(dev)))
834 return -EINVAL;
Philippe Reynesb401a9b2016-07-15 12:39:01 +0200835 if (!dev->phydev)
Matteo Croced95b39c2007-10-14 18:10:13 +0200836 return -EINVAL;
Matteo Croced95b39c2007-10-14 18:10:13 +0200837
Philippe Reynesb401a9b2016-07-15 12:39:01 +0200838 return phy_mii_ioctl(dev->phydev, ifr, cmd);
Matteo Croced95b39c2007-10-14 18:10:13 +0200839}
840
Florian Fainelli559764d2010-08-08 10:09:39 +0000841static void cpmac_get_ringparam(struct net_device *dev,
842 struct ethtool_ringparam *ring)
Matteo Croced95b39c2007-10-14 18:10:13 +0200843{
844 struct cpmac_priv *priv = netdev_priv(dev);
845
846 ring->rx_max_pending = 1024;
847 ring->rx_mini_max_pending = 1;
848 ring->rx_jumbo_max_pending = 1;
849 ring->tx_max_pending = 1;
850
851 ring->rx_pending = priv->ring_size;
852 ring->rx_mini_pending = 1;
853 ring->rx_jumbo_pending = 1;
854 ring->tx_pending = 1;
855}
856
Florian Fainelli559764d2010-08-08 10:09:39 +0000857static int cpmac_set_ringparam(struct net_device *dev,
858 struct ethtool_ringparam *ring)
Matteo Croced95b39c2007-10-14 18:10:13 +0200859{
860 struct cpmac_priv *priv = netdev_priv(dev);
861
Matteo Croce6cd043d2007-10-23 19:12:22 +0200862 if (netif_running(dev))
Matteo Croced95b39c2007-10-14 18:10:13 +0200863 return -EBUSY;
864 priv->ring_size = ring->rx_pending;
Varka Bhadram55064ef2014-07-10 11:05:44 +0530865
Matteo Croced95b39c2007-10-14 18:10:13 +0200866 return 0;
867}
868
869static void cpmac_get_drvinfo(struct net_device *dev,
870 struct ethtool_drvinfo *info)
871{
Jiri Pirko7826d432013-01-06 00:44:26 +0000872 strlcpy(info->driver, "cpmac", sizeof(info->driver));
873 strlcpy(info->version, CPMAC_VERSION, sizeof(info->version));
874 snprintf(info->bus_info, sizeof(info->bus_info), "%s", "cpmac");
Matteo Croced95b39c2007-10-14 18:10:13 +0200875}
876
877static const struct ethtool_ops cpmac_ethtool_ops = {
Matteo Croced95b39c2007-10-14 18:10:13 +0200878 .get_drvinfo = cpmac_get_drvinfo,
879 .get_link = ethtool_op_get_link,
880 .get_ringparam = cpmac_get_ringparam,
881 .set_ringparam = cpmac_set_ringparam,
Philippe Reynes7dc09932016-07-15 12:39:02 +0200882 .get_link_ksettings = phy_ethtool_get_link_ksettings,
883 .set_link_ksettings = phy_ethtool_set_link_ksettings,
Matteo Croced95b39c2007-10-14 18:10:13 +0200884};
885
886static void cpmac_adjust_link(struct net_device *dev)
887{
888 struct cpmac_priv *priv = netdev_priv(dev);
889 int new_state = 0;
890
891 spin_lock(&priv->lock);
Philippe Reynesb401a9b2016-07-15 12:39:01 +0200892 if (dev->phydev->link) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700893 netif_tx_start_all_queues(dev);
Philippe Reynesb401a9b2016-07-15 12:39:01 +0200894 if (dev->phydev->duplex != priv->oldduplex) {
Matteo Croced95b39c2007-10-14 18:10:13 +0200895 new_state = 1;
Philippe Reynesb401a9b2016-07-15 12:39:01 +0200896 priv->oldduplex = dev->phydev->duplex;
Matteo Croced95b39c2007-10-14 18:10:13 +0200897 }
898
Philippe Reynesb401a9b2016-07-15 12:39:01 +0200899 if (dev->phydev->speed != priv->oldspeed) {
Matteo Croced95b39c2007-10-14 18:10:13 +0200900 new_state = 1;
Philippe Reynesb401a9b2016-07-15 12:39:01 +0200901 priv->oldspeed = dev->phydev->speed;
Matteo Croced95b39c2007-10-14 18:10:13 +0200902 }
903
904 if (!priv->oldlink) {
905 new_state = 1;
906 priv->oldlink = 1;
Matteo Croced95b39c2007-10-14 18:10:13 +0200907 }
908 } else if (priv->oldlink) {
Matteo Croced95b39c2007-10-14 18:10:13 +0200909 new_state = 1;
910 priv->oldlink = 0;
911 priv->oldspeed = 0;
912 priv->oldduplex = -1;
913 }
914
915 if (new_state && netif_msg_link(priv) && net_ratelimit())
Philippe Reynesb401a9b2016-07-15 12:39:01 +0200916 phy_print_status(dev->phydev);
Matteo Croced95b39c2007-10-14 18:10:13 +0200917
918 spin_unlock(&priv->lock);
919}
920
921static int cpmac_open(struct net_device *dev)
922{
923 int i, size, res;
924 struct cpmac_priv *priv = netdev_priv(dev);
925 struct resource *mem;
926 struct cpmac_desc *desc;
927 struct sk_buff *skb;
928
Matteo Croced95b39c2007-10-14 18:10:13 +0200929 mem = platform_get_resource_byname(priv->pdev, IORESOURCE_MEM, "regs");
Dan Carpenter7e307c72010-06-30 13:12:01 -0700930 if (!request_mem_region(mem->start, resource_size(mem), dev->name)) {
Matteo Croced95b39c2007-10-14 18:10:13 +0200931 if (netif_msg_drv(priv))
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530932 netdev_err(dev, "failed to request registers\n");
933
Matteo Croced95b39c2007-10-14 18:10:13 +0200934 res = -ENXIO;
935 goto fail_reserve;
936 }
937
Dan Carpenter7e307c72010-06-30 13:12:01 -0700938 priv->regs = ioremap(mem->start, resource_size(mem));
Matteo Croced95b39c2007-10-14 18:10:13 +0200939 if (!priv->regs) {
940 if (netif_msg_drv(priv))
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530941 netdev_err(dev, "failed to remap registers\n");
942
Matteo Croced95b39c2007-10-14 18:10:13 +0200943 res = -ENXIO;
944 goto fail_remap;
945 }
946
947 size = priv->ring_size + CPMAC_QUEUES;
948 priv->desc_ring = dma_alloc_coherent(&dev->dev,
949 sizeof(struct cpmac_desc) * size,
950 &priv->dma_ring,
951 GFP_KERNEL);
952 if (!priv->desc_ring) {
953 res = -ENOMEM;
954 goto fail_alloc;
955 }
956
957 for (i = 0; i < size; i++)
958 priv->desc_ring[i].mapping = priv->dma_ring + sizeof(*desc) * i;
959
960 priv->rx_head = &priv->desc_ring[CPMAC_QUEUES];
961 for (i = 0, desc = priv->rx_head; i < priv->ring_size; i++, desc++) {
Eric Dumazet89d71a62009-10-13 05:34:20 +0000962 skb = netdev_alloc_skb_ip_align(dev, CPMAC_SKB_SIZE);
Matteo Croced95b39c2007-10-14 18:10:13 +0200963 if (unlikely(!skb)) {
964 res = -ENOMEM;
965 goto fail_desc;
966 }
Matteo Croced95b39c2007-10-14 18:10:13 +0200967 desc->skb = skb;
968 desc->data_mapping = dma_map_single(&dev->dev, skb->data,
969 CPMAC_SKB_SIZE,
970 DMA_FROM_DEVICE);
971 desc->hw_data = (u32)desc->data_mapping;
972 desc->buflen = CPMAC_SKB_SIZE;
973 desc->dataflags = CPMAC_OWN;
974 desc->next = &priv->rx_head[(i + 1) % priv->ring_size];
Matteo Crocef917d582008-05-14 00:58:32 +0200975 desc->next->prev = desc;
Matteo Croced95b39c2007-10-14 18:10:13 +0200976 desc->hw_next = (u32)desc->next->mapping;
977 }
978
Matteo Crocef917d582008-05-14 00:58:32 +0200979 priv->rx_head->prev->hw_next = (u32)0;
980
Florian Fainelli559764d2010-08-08 10:09:39 +0000981 res = request_irq(dev->irq, cpmac_irq, IRQF_SHARED, dev->name, dev);
982 if (res) {
Matteo Croced95b39c2007-10-14 18:10:13 +0200983 if (netif_msg_drv(priv))
Varka Bhadramf160a2d2014-07-10 11:05:41 +0530984 netdev_err(dev, "failed to obtain irq\n");
985
Matteo Croced95b39c2007-10-14 18:10:13 +0200986 goto fail_irq;
987 }
988
Matteo Crocef917d582008-05-14 00:58:32 +0200989 atomic_set(&priv->reset_pending, 0);
Matteo Croced95b39c2007-10-14 18:10:13 +0200990 INIT_WORK(&priv->reset_work, cpmac_hw_error);
991 cpmac_hw_start(dev);
992
Eugene Konev67d129d2007-10-24 10:42:02 +0800993 napi_enable(&priv->napi);
Philippe Reynesb401a9b2016-07-15 12:39:01 +0200994 dev->phydev->state = PHY_CHANGELINK;
995 phy_start(dev->phydev);
Matteo Croced95b39c2007-10-14 18:10:13 +0200996
997 return 0;
998
999fail_irq:
1000fail_desc:
1001 for (i = 0; i < priv->ring_size; i++) {
1002 if (priv->rx_head[i].skb) {
1003 dma_unmap_single(&dev->dev,
1004 priv->rx_head[i].data_mapping,
1005 CPMAC_SKB_SIZE,
1006 DMA_FROM_DEVICE);
1007 kfree_skb(priv->rx_head[i].skb);
1008 }
1009 }
Christophe Jaillet731e6f02016-07-17 08:15:50 +02001010 dma_free_coherent(&dev->dev, sizeof(struct cpmac_desc) * size,
1011 priv->desc_ring, priv->dma_ring);
1012
Matteo Croced95b39c2007-10-14 18:10:13 +02001013fail_alloc:
Matteo Croced95b39c2007-10-14 18:10:13 +02001014 iounmap(priv->regs);
1015
1016fail_remap:
Dan Carpenter7e307c72010-06-30 13:12:01 -07001017 release_mem_region(mem->start, resource_size(mem));
Matteo Croced95b39c2007-10-14 18:10:13 +02001018
1019fail_reserve:
Matteo Croced95b39c2007-10-14 18:10:13 +02001020 return res;
1021}
1022
1023static int cpmac_stop(struct net_device *dev)
1024{
1025 int i;
1026 struct cpmac_priv *priv = netdev_priv(dev);
1027 struct resource *mem;
1028
David S. Millerfd2ea0a2008-07-17 01:56:23 -07001029 netif_tx_stop_all_queues(dev);
Matteo Croced95b39c2007-10-14 18:10:13 +02001030
1031 cancel_work_sync(&priv->reset_work);
Eugene Konev67d129d2007-10-24 10:42:02 +08001032 napi_disable(&priv->napi);
Philippe Reynesb401a9b2016-07-15 12:39:01 +02001033 phy_stop(dev->phydev);
Matteo Croced95b39c2007-10-14 18:10:13 +02001034
1035 cpmac_hw_stop(dev);
1036
1037 for (i = 0; i < 8; i++)
1038 cpmac_write(priv->regs, CPMAC_TX_PTR(i), 0);
1039 cpmac_write(priv->regs, CPMAC_RX_PTR(0), 0);
1040 cpmac_write(priv->regs, CPMAC_MBP, 0);
1041
1042 free_irq(dev->irq, dev);
1043 iounmap(priv->regs);
1044 mem = platform_get_resource_byname(priv->pdev, IORESOURCE_MEM, "regs");
Dan Carpenter7e307c72010-06-30 13:12:01 -07001045 release_mem_region(mem->start, resource_size(mem));
Matteo Croced95b39c2007-10-14 18:10:13 +02001046 priv->rx_head = &priv->desc_ring[CPMAC_QUEUES];
1047 for (i = 0; i < priv->ring_size; i++) {
1048 if (priv->rx_head[i].skb) {
1049 dma_unmap_single(&dev->dev,
1050 priv->rx_head[i].data_mapping,
1051 CPMAC_SKB_SIZE,
1052 DMA_FROM_DEVICE);
1053 kfree_skb(priv->rx_head[i].skb);
1054 }
1055 }
1056
1057 dma_free_coherent(&dev->dev, sizeof(struct cpmac_desc) *
1058 (CPMAC_QUEUES + priv->ring_size),
1059 priv->desc_ring, priv->dma_ring);
Varka Bhadram55064ef2014-07-10 11:05:44 +05301060
Matteo Croced95b39c2007-10-14 18:10:13 +02001061 return 0;
1062}
1063
Alexander Beregalov63ef7d82009-04-15 12:52:36 +00001064static const struct net_device_ops cpmac_netdev_ops = {
1065 .ndo_open = cpmac_open,
1066 .ndo_stop = cpmac_stop,
1067 .ndo_start_xmit = cpmac_start_xmit,
1068 .ndo_tx_timeout = cpmac_tx_timeout,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001069 .ndo_set_rx_mode = cpmac_set_multicast_list,
Florian Fainelli6a9b6542009-06-24 16:32:33 -07001070 .ndo_do_ioctl = cpmac_ioctl,
Alexander Beregalov63ef7d82009-04-15 12:52:36 +00001071 .ndo_change_mtu = eth_change_mtu,
1072 .ndo_validate_addr = eth_validate_addr,
1073 .ndo_set_mac_address = eth_mac_addr,
1074};
1075
Matteo Croced95b39c2007-10-14 18:10:13 +02001076static int external_switch;
1077
Bill Pembertonf57ae662012-12-03 09:23:43 -05001078static int cpmac_probe(struct platform_device *pdev)
Matteo Croced95b39c2007-10-14 18:10:13 +02001079{
Florian Fainelli69bd4ae2009-05-31 10:57:07 +00001080 int rc, phy_id;
Florian Fainelli762c6aa2009-09-15 21:44:22 +00001081 char mdio_bus_id[MII_BUS_ID_SIZE];
Matteo Croced95b39c2007-10-14 18:10:13 +02001082 struct resource *mem;
1083 struct cpmac_priv *priv;
1084 struct net_device *dev;
1085 struct plat_cpmac_data *pdata;
Philippe Reynesb401a9b2016-07-15 12:39:01 +02001086 struct phy_device *phydev = NULL;
Matteo Croced95b39c2007-10-14 18:10:13 +02001087
Jingoo Hana0ea2ac2013-08-30 14:05:02 +09001088 pdata = dev_get_platdata(&pdev->dev);
Matteo Croced95b39c2007-10-14 18:10:13 +02001089
Florian Fainelli76e61ea2009-08-04 10:52:52 +00001090 if (external_switch || dumb_switch) {
Florian Fainellia19c5d62012-02-13 01:23:20 +00001091 strncpy(mdio_bus_id, "fixed-0", MII_BUS_ID_SIZE); /* fixed phys bus */
Florian Fainelli76e61ea2009-08-04 10:52:52 +00001092 phy_id = pdev->id;
1093 } else {
1094 for (phy_id = 0; phy_id < PHY_MAX_ADDR; phy_id++) {
1095 if (!(pdata->phy_mask & (1 << phy_id)))
1096 continue;
Guenter Roeck3c6396d2016-01-09 13:19:39 -08001097 if (!mdiobus_get_phy(cpmac_mii, phy_id))
Florian Fainelli76e61ea2009-08-04 10:52:52 +00001098 continue;
Florian Fainelli762c6aa2009-09-15 21:44:22 +00001099 strncpy(mdio_bus_id, cpmac_mii->id, MII_BUS_ID_SIZE);
Florian Fainelli76e61ea2009-08-04 10:52:52 +00001100 break;
1101 }
Matteo Croced95b39c2007-10-14 18:10:13 +02001102 }
1103
1104 if (phy_id == PHY_MAX_ADDR) {
Florian Fainelli559764d2010-08-08 10:09:39 +00001105 dev_err(&pdev->dev, "no PHY present, falling back "
Varka Bhadramf160a2d2014-07-10 11:05:41 +05301106 "to switch on MDIO bus 0\n");
Florian Fainellia19c5d62012-02-13 01:23:20 +00001107 strncpy(mdio_bus_id, "fixed-0", MII_BUS_ID_SIZE); /* fixed phys bus */
Florian Fainelli9fba1c32010-03-07 00:55:47 +00001108 phy_id = pdev->id;
Matteo Croced95b39c2007-10-14 18:10:13 +02001109 }
Rickard Strandqvist9951e042014-08-10 01:41:47 +02001110 mdio_bus_id[sizeof(mdio_bus_id) - 1] = '\0';
Matteo Croced95b39c2007-10-14 18:10:13 +02001111
1112 dev = alloc_etherdev_mq(sizeof(*priv), CPMAC_QUEUES);
Joe Perches41de8d42012-01-29 13:47:52 +00001113 if (!dev)
Matteo Croced95b39c2007-10-14 18:10:13 +02001114 return -ENOMEM;
Matteo Croced95b39c2007-10-14 18:10:13 +02001115
1116 platform_set_drvdata(pdev, dev);
1117 priv = netdev_priv(dev);
1118
1119 priv->pdev = pdev;
1120 mem = platform_get_resource_byname(pdev, IORESOURCE_MEM, "regs");
1121 if (!mem) {
1122 rc = -ENODEV;
Wei Yongjun09714272016-07-19 12:37:53 +00001123 goto fail;
Matteo Croced95b39c2007-10-14 18:10:13 +02001124 }
1125
1126 dev->irq = platform_get_irq_byname(pdev, "irq");
1127
Alexander Beregalov63ef7d82009-04-15 12:52:36 +00001128 dev->netdev_ops = &cpmac_netdev_ops;
1129 dev->ethtool_ops = &cpmac_ethtool_ops;
Matteo Croced95b39c2007-10-14 18:10:13 +02001130
Eugene Konev67d129d2007-10-24 10:42:02 +08001131 netif_napi_add(dev, &priv->napi, cpmac_poll, 64);
1132
Matteo Croced95b39c2007-10-14 18:10:13 +02001133 spin_lock_init(&priv->lock);
1134 spin_lock_init(&priv->rx_lock);
1135 priv->dev = dev;
1136 priv->ring_size = 64;
1137 priv->msg_enable = netif_msg_init(debug_level, 0xff);
Julia Lawall2447f2f2009-12-13 05:35:45 +00001138 memcpy(dev->dev_addr, pdata->dev_addr, sizeof(pdata->dev_addr));
Eugene Konevb88219f2007-10-24 10:42:03 +08001139
Florian Fainelli559764d2010-08-08 10:09:39 +00001140 snprintf(priv->phy_name, MII_BUS_ID_SIZE, PHY_ID_FMT,
1141 mdio_bus_id, phy_id);
Florian Fainelli76e61ea2009-08-04 10:52:52 +00001142
Philippe Reynesb401a9b2016-07-15 12:39:01 +02001143 phydev = phy_connect(dev, priv->phy_name, cpmac_adjust_link,
1144 PHY_INTERFACE_MODE_MII);
Florian Fainelli76e61ea2009-08-04 10:52:52 +00001145
Philippe Reynesb401a9b2016-07-15 12:39:01 +02001146 if (IS_ERR(phydev)) {
Eugene Konevb88219f2007-10-24 10:42:03 +08001147 if (netif_msg_drv(priv))
Varka Bhadramf160a2d2014-07-10 11:05:41 +05301148 dev_err(&pdev->dev, "Could not attach to PHY\n");
1149
Philippe Reynesb401a9b2016-07-15 12:39:01 +02001150 rc = PTR_ERR(phydev);
Wei Yongjun09714272016-07-19 12:37:53 +00001151 goto fail;
Eugene Konevb88219f2007-10-24 10:42:03 +08001152 }
Matteo Croced95b39c2007-10-14 18:10:13 +02001153
Florian Fainelli559764d2010-08-08 10:09:39 +00001154 rc = register_netdev(dev);
1155 if (rc) {
Varka Bhadramf160a2d2014-07-10 11:05:41 +05301156 dev_err(&pdev->dev, "Could not register net device\n");
Matteo Croced95b39c2007-10-14 18:10:13 +02001157 goto fail;
1158 }
1159
1160 if (netif_msg_probe(priv)) {
Varka Bhadramf160a2d2014-07-10 11:05:41 +05301161 dev_info(&pdev->dev, "regs: %p, irq: %d, phy: %s, "
1162 "mac: %pM\n", (void *)mem->start, dev->irq,
1163 priv->phy_name, dev->dev_addr);
Matteo Croced95b39c2007-10-14 18:10:13 +02001164 }
Varka Bhadram55064ef2014-07-10 11:05:44 +05301165
Matteo Croced95b39c2007-10-14 18:10:13 +02001166 return 0;
1167
1168fail:
1169 free_netdev(dev);
1170 return rc;
1171}
1172
Bill Pembertonf57ae662012-12-03 09:23:43 -05001173static int cpmac_remove(struct platform_device *pdev)
Matteo Croced95b39c2007-10-14 18:10:13 +02001174{
1175 struct net_device *dev = platform_get_drvdata(pdev);
Varka Bhadram59329d82014-07-10 11:05:43 +05301176
Matteo Croced95b39c2007-10-14 18:10:13 +02001177 unregister_netdev(dev);
1178 free_netdev(dev);
Varka Bhadram55064ef2014-07-10 11:05:44 +05301179
Matteo Croced95b39c2007-10-14 18:10:13 +02001180 return 0;
1181}
1182
1183static struct platform_driver cpmac_driver = {
Varka Bhadram96a8d3c2014-07-10 11:05:42 +05301184 .driver = {
1185 .name = "cpmac",
Varka Bhadram96a8d3c2014-07-10 11:05:42 +05301186 },
1187 .probe = cpmac_probe,
Bill Pembertonf57ae662012-12-03 09:23:43 -05001188 .remove = cpmac_remove,
Matteo Croced95b39c2007-10-14 18:10:13 +02001189};
1190
Bill Pembertonf57ae662012-12-03 09:23:43 -05001191int cpmac_init(void)
Matteo Croced95b39c2007-10-14 18:10:13 +02001192{
1193 u32 mask;
1194 int i, res;
1195
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001196 cpmac_mii = mdiobus_alloc();
1197 if (cpmac_mii == NULL)
1198 return -ENOMEM;
Matteo Croced95b39c2007-10-14 18:10:13 +02001199
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001200 cpmac_mii->name = "cpmac-mii";
1201 cpmac_mii->read = cpmac_mdio_read;
1202 cpmac_mii->write = cpmac_mdio_write;
1203 cpmac_mii->reset = cpmac_mdio_reset;
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001204
1205 cpmac_mii->priv = ioremap(AR7_REGS_MDIO, 256);
1206
1207 if (!cpmac_mii->priv) {
Varka Bhadramf160a2d2014-07-10 11:05:41 +05301208 pr_err("Can't ioremap mdio registers\n");
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001209 res = -ENXIO;
1210 goto fail_alloc;
Matteo Croced95b39c2007-10-14 18:10:13 +02001211 }
1212
1213#warning FIXME: unhardcode gpio&reset bits
1214 ar7_gpio_disable(26);
1215 ar7_gpio_disable(27);
1216 ar7_device_reset(AR7_RESET_BIT_CPMAC_LO);
1217 ar7_device_reset(AR7_RESET_BIT_CPMAC_HI);
1218 ar7_device_reset(AR7_RESET_BIT_EPHY);
1219
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001220 cpmac_mii->reset(cpmac_mii);
Matteo Croced95b39c2007-10-14 18:10:13 +02001221
Florian Fainelli559764d2010-08-08 10:09:39 +00001222 for (i = 0; i < 300; i++) {
1223 mask = cpmac_read(cpmac_mii->priv, CPMAC_MDIO_ALIVE);
1224 if (mask)
Matteo Croced95b39c2007-10-14 18:10:13 +02001225 break;
1226 else
Florian Fainellie4540aa2009-08-04 10:52:57 +00001227 msleep(10);
Florian Fainelli559764d2010-08-08 10:09:39 +00001228 }
Matteo Croced95b39c2007-10-14 18:10:13 +02001229
1230 mask &= 0x7fffffff;
1231 if (mask & (mask - 1)) {
1232 external_switch = 1;
1233 mask = 0;
1234 }
1235
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001236 cpmac_mii->phy_mask = ~(mask | 0x80000000);
Florian Fainellid1733f02012-01-09 23:59:21 +00001237 snprintf(cpmac_mii->id, MII_BUS_ID_SIZE, "cpmac-1");
Matteo Croced95b39c2007-10-14 18:10:13 +02001238
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001239 res = mdiobus_register(cpmac_mii);
Matteo Croced95b39c2007-10-14 18:10:13 +02001240 if (res)
1241 goto fail_mii;
1242
1243 res = platform_driver_register(&cpmac_driver);
1244 if (res)
1245 goto fail_cpmac;
1246
1247 return 0;
1248
1249fail_cpmac:
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001250 mdiobus_unregister(cpmac_mii);
Matteo Croced95b39c2007-10-14 18:10:13 +02001251
1252fail_mii:
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001253 iounmap(cpmac_mii->priv);
1254
1255fail_alloc:
1256 mdiobus_free(cpmac_mii);
Matteo Croced95b39c2007-10-14 18:10:13 +02001257
1258 return res;
1259}
1260
Bill Pembertonf57ae662012-12-03 09:23:43 -05001261void cpmac_exit(void)
Matteo Croced95b39c2007-10-14 18:10:13 +02001262{
1263 platform_driver_unregister(&cpmac_driver);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001264 mdiobus_unregister(cpmac_mii);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001265 iounmap(cpmac_mii->priv);
Dan Carpenter48a29512010-03-02 22:46:10 +00001266 mdiobus_free(cpmac_mii);
Matteo Croced95b39c2007-10-14 18:10:13 +02001267}
1268
1269module_init(cpmac_init);
1270module_exit(cpmac_exit);