blob: a175d0be1ae1a23e1c2f0fc920efd039a65b02ba [file] [log] [blame]
Bryan Wue190d6b2007-07-17 14:43:44 +08001/*
Mike Frysinger2fb9d6f2008-01-30 16:52:24 +08002 * Blackfin On-Chip MAC Driver
Bryan Wue190d6b2007-07-17 14:43:44 +08003 *
Sonic Zhang02460d02010-06-11 10:44:22 +00004 * Copyright 2004-2010 Analog Devices Inc.
Bryan Wue190d6b2007-07-17 14:43:44 +08005 *
Mike Frysinger2fb9d6f2008-01-30 16:52:24 +08006 * Enter bugs at http://blackfin.uclinux.org/
Bryan Wue190d6b2007-07-17 14:43:44 +08007 *
Mike Frysinger2fb9d6f2008-01-30 16:52:24 +08008 * Licensed under the GPL-2 or later.
Bryan Wue190d6b2007-07-17 14:43:44 +08009 */
10
Mike Frysingerc6dd5092011-01-10 02:54:29 +000011#define DRV_VERSION "1.1"
12#define DRV_DESC "Blackfin on-chip Ethernet MAC driver"
13
14#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
Bryan Wue190d6b2007-07-17 14:43:44 +080016#include <linux/init.h>
17#include <linux/module.h>
18#include <linux/kernel.h>
19#include <linux/sched.h>
20#include <linux/slab.h>
21#include <linux/delay.h>
22#include <linux/timer.h>
23#include <linux/errno.h>
24#include <linux/irq.h>
25#include <linux/io.h>
26#include <linux/ioport.h>
27#include <linux/crc32.h>
28#include <linux/device.h>
29#include <linux/spinlock.h>
Bryan Wue190d6b2007-07-17 14:43:44 +080030#include <linux/mii.h>
Bryan Wue190d6b2007-07-17 14:43:44 +080031#include <linux/netdevice.h>
32#include <linux/etherdevice.h>
Bryan Wu679dce32008-04-25 11:53:11 +080033#include <linux/ethtool.h>
Bryan Wue190d6b2007-07-17 14:43:44 +080034#include <linux/skbuff.h>
Bryan Wue190d6b2007-07-17 14:43:44 +080035#include <linux/platform_device.h>
Bryan Wue190d6b2007-07-17 14:43:44 +080036
37#include <asm/dma.h>
38#include <linux/dma-mapping.h>
39
Barry Songfe92afe2010-05-17 17:19:40 -070040#include <asm/div64.h>
Mike Frysinger98f672c2010-01-18 21:14:12 +000041#include <asm/dpmc.h>
Bryan Wue190d6b2007-07-17 14:43:44 +080042#include <asm/blackfin.h>
43#include <asm/cacheflush.h>
44#include <asm/portmux.h>
David Howells3dcc1e72010-10-07 14:08:49 +010045#include <mach/pll.h>
Bryan Wue190d6b2007-07-17 14:43:44 +080046
47#include "bfin_mac.h"
48
Mike Frysingerc6dd5092011-01-10 02:54:29 +000049MODULE_AUTHOR("Bryan Wu, Luke Yang");
Bryan Wue190d6b2007-07-17 14:43:44 +080050MODULE_LICENSE("GPL");
51MODULE_DESCRIPTION(DRV_DESC);
Kay Sievers72abb462008-04-18 13:50:44 -070052MODULE_ALIAS("platform:bfin_mac");
Bryan Wue190d6b2007-07-17 14:43:44 +080053
54#if defined(CONFIG_BFIN_MAC_USE_L1)
Sonic Zhang118133e2011-06-16 12:31:58 +000055# define bfin_mac_alloc(dma_handle, size, num) l1_data_sram_zalloc(size*num)
56# define bfin_mac_free(dma_handle, ptr, num) l1_data_sram_free(ptr)
Bryan Wue190d6b2007-07-17 14:43:44 +080057#else
Sonic Zhang118133e2011-06-16 12:31:58 +000058# define bfin_mac_alloc(dma_handle, size, num) \
59 dma_alloc_coherent(NULL, size*num, dma_handle, GFP_KERNEL)
60# define bfin_mac_free(dma_handle, ptr, num) \
61 dma_free_coherent(NULL, sizeof(*ptr)*num, ptr, dma_handle)
Bryan Wue190d6b2007-07-17 14:43:44 +080062#endif
63
64#define PKT_BUF_SZ 1580
65
66#define MAX_TIMEOUT_CNT 500
67
68/* pointers to maintain transmit list */
69static struct net_dma_desc_tx *tx_list_head;
70static struct net_dma_desc_tx *tx_list_tail;
71static struct net_dma_desc_rx *rx_list_head;
72static struct net_dma_desc_rx *rx_list_tail;
73static struct net_dma_desc_rx *current_rx_ptr;
74static struct net_dma_desc_tx *current_tx_ptr;
75static struct net_dma_desc_tx *tx_desc;
76static struct net_dma_desc_rx *rx_desc;
77
78static void desc_list_free(void)
79{
80 struct net_dma_desc_rx *r;
81 struct net_dma_desc_tx *t;
82 int i;
83#if !defined(CONFIG_BFIN_MAC_USE_L1)
84 dma_addr_t dma_handle = 0;
85#endif
86
87 if (tx_desc) {
88 t = tx_list_head;
89 for (i = 0; i < CONFIG_BFIN_TX_DESC_NUM; i++) {
90 if (t) {
91 if (t->skb) {
92 dev_kfree_skb(t->skb);
93 t->skb = NULL;
94 }
95 t = t->next;
96 }
97 }
Sonic Zhang118133e2011-06-16 12:31:58 +000098 bfin_mac_free(dma_handle, tx_desc, CONFIG_BFIN_TX_DESC_NUM);
Bryan Wue190d6b2007-07-17 14:43:44 +080099 }
100
101 if (rx_desc) {
102 r = rx_list_head;
103 for (i = 0; i < CONFIG_BFIN_RX_DESC_NUM; i++) {
104 if (r) {
105 if (r->skb) {
106 dev_kfree_skb(r->skb);
107 r->skb = NULL;
108 }
109 r = r->next;
110 }
111 }
Sonic Zhang118133e2011-06-16 12:31:58 +0000112 bfin_mac_free(dma_handle, rx_desc, CONFIG_BFIN_RX_DESC_NUM);
Bryan Wue190d6b2007-07-17 14:43:44 +0800113 }
114}
115
Pradeep A. Dalvi1ab0d2e2012-02-06 11:16:48 +0000116static int desc_list_init(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +0800117{
118 int i;
119 struct sk_buff *new_skb;
120#if !defined(CONFIG_BFIN_MAC_USE_L1)
121 /*
122 * This dma_handle is useless in Blackfin dma_alloc_coherent().
123 * The real dma handler is the return value of dma_alloc_coherent().
124 */
125 dma_addr_t dma_handle;
126#endif
127
128 tx_desc = bfin_mac_alloc(&dma_handle,
Sonic Zhang118133e2011-06-16 12:31:58 +0000129 sizeof(struct net_dma_desc_tx),
Bryan Wue190d6b2007-07-17 14:43:44 +0800130 CONFIG_BFIN_TX_DESC_NUM);
131 if (tx_desc == NULL)
132 goto init_error;
133
134 rx_desc = bfin_mac_alloc(&dma_handle,
Sonic Zhang118133e2011-06-16 12:31:58 +0000135 sizeof(struct net_dma_desc_rx),
Bryan Wue190d6b2007-07-17 14:43:44 +0800136 CONFIG_BFIN_RX_DESC_NUM);
137 if (rx_desc == NULL)
138 goto init_error;
139
140 /* init tx_list */
141 tx_list_head = tx_list_tail = tx_desc;
142
143 for (i = 0; i < CONFIG_BFIN_TX_DESC_NUM; i++) {
144 struct net_dma_desc_tx *t = tx_desc + i;
145 struct dma_descriptor *a = &(t->desc_a);
146 struct dma_descriptor *b = &(t->desc_b);
147
148 /*
149 * disable DMA
150 * read from memory WNR = 0
151 * wordsize is 32 bits
152 * 6 half words is desc size
153 * large desc flow
154 */
155 a->config = WDSIZE_32 | NDSIZE_6 | DMAFLOW_LARGE;
156 a->start_addr = (unsigned long)t->packet;
157 a->x_count = 0;
158 a->next_dma_desc = b;
159
160 /*
161 * enabled DMA
162 * write to memory WNR = 1
163 * wordsize is 32 bits
164 * disable interrupt
165 * 6 half words is desc size
166 * large desc flow
167 */
168 b->config = DMAEN | WNR | WDSIZE_32 | NDSIZE_6 | DMAFLOW_LARGE;
169 b->start_addr = (unsigned long)(&(t->status));
170 b->x_count = 0;
171
172 t->skb = NULL;
173 tx_list_tail->desc_b.next_dma_desc = a;
174 tx_list_tail->next = t;
175 tx_list_tail = t;
176 }
177 tx_list_tail->next = tx_list_head; /* tx_list is a circle */
178 tx_list_tail->desc_b.next_dma_desc = &(tx_list_head->desc_a);
179 current_tx_ptr = tx_list_head;
180
181 /* init rx_list */
182 rx_list_head = rx_list_tail = rx_desc;
183
184 for (i = 0; i < CONFIG_BFIN_RX_DESC_NUM; i++) {
185 struct net_dma_desc_rx *r = rx_desc + i;
186 struct dma_descriptor *a = &(r->desc_a);
187 struct dma_descriptor *b = &(r->desc_b);
188
189 /* allocate a new skb for next time receive */
Pradeep A. Dalvi1ab0d2e2012-02-06 11:16:48 +0000190 new_skb = netdev_alloc_skb(dev, PKT_BUF_SZ + NET_IP_ALIGN);
Bryan Wue190d6b2007-07-17 14:43:44 +0800191 if (!new_skb) {
Mike Frysingerc6dd5092011-01-10 02:54:29 +0000192 pr_notice("init: low on mem - packet dropped\n");
Bryan Wue190d6b2007-07-17 14:43:44 +0800193 goto init_error;
194 }
Michael Hennerich015dac82009-05-29 03:41:15 +0000195 skb_reserve(new_skb, NET_IP_ALIGN);
Sonic Zhangf6e1e4f2010-05-10 05:39:08 +0000196 /* Invidate the data cache of skb->data range when it is write back
197 * cache. It will prevent overwritting the new data from DMA
198 */
199 blackfin_dcache_invalidate_range((unsigned long)new_skb->head,
200 (unsigned long)new_skb->end);
Bryan Wue190d6b2007-07-17 14:43:44 +0800201 r->skb = new_skb;
202
203 /*
204 * enabled DMA
205 * write to memory WNR = 1
206 * wordsize is 32 bits
207 * disable interrupt
208 * 6 half words is desc size
209 * large desc flow
210 */
211 a->config = DMAEN | WNR | WDSIZE_32 | NDSIZE_6 | DMAFLOW_LARGE;
212 /* since RXDWA is enabled */
213 a->start_addr = (unsigned long)new_skb->data - 2;
214 a->x_count = 0;
215 a->next_dma_desc = b;
216
217 /*
218 * enabled DMA
219 * write to memory WNR = 1
220 * wordsize is 32 bits
221 * enable interrupt
222 * 6 half words is desc size
223 * large desc flow
224 */
225 b->config = DMAEN | WNR | WDSIZE_32 | DI_EN |
226 NDSIZE_6 | DMAFLOW_LARGE;
227 b->start_addr = (unsigned long)(&(r->status));
228 b->x_count = 0;
229
230 rx_list_tail->desc_b.next_dma_desc = a;
231 rx_list_tail->next = r;
232 rx_list_tail = r;
233 }
234 rx_list_tail->next = rx_list_head; /* rx_list is a circle */
235 rx_list_tail->desc_b.next_dma_desc = &(rx_list_head->desc_a);
236 current_rx_ptr = rx_list_head;
237
238 return 0;
239
240init_error:
241 desc_list_free();
Mike Frysingerc6dd5092011-01-10 02:54:29 +0000242 pr_err("kmalloc failed\n");
Bryan Wue190d6b2007-07-17 14:43:44 +0800243 return -ENOMEM;
244}
245
246
247/*---PHY CONTROL AND CONFIGURATION-----------------------------------------*/
248
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800249/*
250 * MII operations
251 */
Bryan Wue190d6b2007-07-17 14:43:44 +0800252/* Wait until the previous MDC/MDIO transaction has completed */
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000253static int bfin_mdio_poll(void)
Bryan Wue190d6b2007-07-17 14:43:44 +0800254{
255 int timeout_cnt = MAX_TIMEOUT_CNT;
256
257 /* poll the STABUSY bit */
258 while ((bfin_read_EMAC_STAADD()) & STABUSY) {
Bryan Wu6db9e462008-01-30 16:52:21 +0800259 udelay(1);
Bryan Wue190d6b2007-07-17 14:43:44 +0800260 if (timeout_cnt-- < 0) {
Mike Frysingerc6dd5092011-01-10 02:54:29 +0000261 pr_err("wait MDC/MDIO transaction to complete timeout\n");
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000262 return -ETIMEDOUT;
Bryan Wue190d6b2007-07-17 14:43:44 +0800263 }
264 }
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000265
266 return 0;
Bryan Wue190d6b2007-07-17 14:43:44 +0800267}
268
269/* Read an off-chip register in a PHY through the MDC/MDIO port */
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700270static int bfin_mdiobus_read(struct mii_bus *bus, int phy_addr, int regnum)
Bryan Wue190d6b2007-07-17 14:43:44 +0800271{
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000272 int ret;
273
274 ret = bfin_mdio_poll();
275 if (ret)
276 return ret;
Bryan Wue190d6b2007-07-17 14:43:44 +0800277
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800278 /* read mode */
279 bfin_write_EMAC_STAADD(SET_PHYAD((u16) phy_addr) |
280 SET_REGAD((u16) regnum) |
281 STABUSY);
282
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000283 ret = bfin_mdio_poll();
284 if (ret)
285 return ret;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800286
287 return (int) bfin_read_EMAC_STADAT();
Bryan Wue190d6b2007-07-17 14:43:44 +0800288}
289
290/* Write an off-chip register in a PHY through the MDC/MDIO port */
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700291static int bfin_mdiobus_write(struct mii_bus *bus, int phy_addr, int regnum,
292 u16 value)
Bryan Wue190d6b2007-07-17 14:43:44 +0800293{
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000294 int ret;
295
296 ret = bfin_mdio_poll();
297 if (ret)
298 return ret;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800299
300 bfin_write_EMAC_STADAT((u32) value);
Bryan Wue190d6b2007-07-17 14:43:44 +0800301
302 /* write mode */
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800303 bfin_write_EMAC_STAADD(SET_PHYAD((u16) phy_addr) |
304 SET_REGAD((u16) regnum) |
Bryan Wue190d6b2007-07-17 14:43:44 +0800305 STAOP |
306 STABUSY);
307
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000308 return bfin_mdio_poll();
Bryan Wue190d6b2007-07-17 14:43:44 +0800309}
310
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700311static int bfin_mdiobus_reset(struct mii_bus *bus)
Bryan Wue190d6b2007-07-17 14:43:44 +0800312{
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800313 return 0;
Bryan Wue190d6b2007-07-17 14:43:44 +0800314}
315
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800316static void bfin_mac_adjust_link(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +0800317{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800318 struct bfin_mac_local *lp = netdev_priv(dev);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800319 struct phy_device *phydev = lp->phydev;
320 unsigned long flags;
321 int new_state = 0;
Bryan Wue190d6b2007-07-17 14:43:44 +0800322
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800323 spin_lock_irqsave(&lp->lock, flags);
324 if (phydev->link) {
325 /* Now we make sure that we can be in full duplex mode.
326 * If not, we operate in half-duplex mode. */
327 if (phydev->duplex != lp->old_duplex) {
328 u32 opmode = bfin_read_EMAC_OPMODE();
329 new_state = 1;
Bryan Wue190d6b2007-07-17 14:43:44 +0800330
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800331 if (phydev->duplex)
332 opmode |= FDMODE;
333 else
334 opmode &= ~(FDMODE);
Bryan Wue190d6b2007-07-17 14:43:44 +0800335
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800336 bfin_write_EMAC_OPMODE(opmode);
337 lp->old_duplex = phydev->duplex;
338 }
Bryan Wue190d6b2007-07-17 14:43:44 +0800339
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800340 if (phydev->speed != lp->old_speed) {
Sonic Zhang02460d02010-06-11 10:44:22 +0000341 if (phydev->interface == PHY_INTERFACE_MODE_RMII) {
342 u32 opmode = bfin_read_EMAC_OPMODE();
343 switch (phydev->speed) {
344 case 10:
345 opmode |= RMII_10;
346 break;
347 case 100:
348 opmode &= ~RMII_10;
349 break;
350 default:
Mike Frysingerc6dd5092011-01-10 02:54:29 +0000351 netdev_warn(dev,
352 "Ack! Speed (%d) is not 10/100!\n",
353 phydev->speed);
Sonic Zhang02460d02010-06-11 10:44:22 +0000354 break;
355 }
356 bfin_write_EMAC_OPMODE(opmode);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800357 }
Bryan Wue190d6b2007-07-17 14:43:44 +0800358
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800359 new_state = 1;
360 lp->old_speed = phydev->speed;
361 }
Bryan Wue190d6b2007-07-17 14:43:44 +0800362
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800363 if (!lp->old_link) {
364 new_state = 1;
365 lp->old_link = 1;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800366 }
367 } else if (lp->old_link) {
368 new_state = 1;
369 lp->old_link = 0;
370 lp->old_speed = 0;
371 lp->old_duplex = -1;
Bryan Wue190d6b2007-07-17 14:43:44 +0800372 }
373
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800374 if (new_state) {
375 u32 opmode = bfin_read_EMAC_OPMODE();
376 phy_print_status(phydev);
377 pr_debug("EMAC_OPMODE = 0x%08x\n", opmode);
Bryan Wue190d6b2007-07-17 14:43:44 +0800378 }
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800379
380 spin_unlock_irqrestore(&lp->lock, flags);
381}
382
Bryan Wu7cc8f382008-01-30 16:52:22 +0800383/* MDC = 2.5 MHz */
384#define MDC_CLK 2500000
385
Sonic Zhang02460d02010-06-11 10:44:22 +0000386static int mii_probe(struct net_device *dev, int phy_mode)
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800387{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800388 struct bfin_mac_local *lp = netdev_priv(dev);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800389 struct phy_device *phydev = NULL;
390 unsigned short sysctl;
391 int i;
Bryan Wu7cc8f382008-01-30 16:52:22 +0800392 u32 sclk, mdc_div;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800393
394 /* Enable PHY output early */
Mike Frysinger98f672c2010-01-18 21:14:12 +0000395 if (!(bfin_read_VR_CTL() & CLKBUFOE))
396 bfin_write_VR_CTL(bfin_read_VR_CTL() | CLKBUFOE);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800397
Bryan Wu7cc8f382008-01-30 16:52:22 +0800398 sclk = get_sclk();
399 mdc_div = ((sclk / MDC_CLK) / 2) - 1;
400
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800401 sysctl = bfin_read_EMAC_SYSCTL();
Bryan Wu9dc7f302008-01-30 16:52:28 +0800402 sysctl = (sysctl & ~MDCDIV) | SET_MDCDIV(mdc_div);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800403 bfin_write_EMAC_SYSCTL(sysctl);
404
Sonic Zhang02460d02010-06-11 10:44:22 +0000405 /* search for connected PHY device */
406 for (i = 0; i < PHY_MAX_ADDR; ++i) {
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700407 struct phy_device *const tmp_phydev = lp->mii_bus->phy_map[i];
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800408
409 if (!tmp_phydev)
410 continue; /* no PHY here... */
411
412 phydev = tmp_phydev;
413 break; /* found it */
414 }
415
416 /* now we are supposed to have a proper phydev, to attach to... */
417 if (!phydev) {
Mike Frysingerc6dd5092011-01-10 02:54:29 +0000418 netdev_err(dev, "no phy device found\n");
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800419 return -ENODEV;
420 }
421
Sonic Zhang02460d02010-06-11 10:44:22 +0000422 if (phy_mode != PHY_INTERFACE_MODE_RMII &&
423 phy_mode != PHY_INTERFACE_MODE_MII) {
Mike Frysingerc6dd5092011-01-10 02:54:29 +0000424 netdev_err(dev, "invalid phy interface mode\n");
Sonic Zhang02460d02010-06-11 10:44:22 +0000425 return -EINVAL;
426 }
427
Florian Fainellif9a8f832013-01-14 00:52:52 +0000428 phydev = phy_connect(dev, dev_name(&phydev->dev),
429 &bfin_mac_adjust_link, phy_mode);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800430
431 if (IS_ERR(phydev)) {
Mike Frysingerc6dd5092011-01-10 02:54:29 +0000432 netdev_err(dev, "could not attach PHY\n");
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800433 return PTR_ERR(phydev);
434 }
435
436 /* mask with MAC supported features */
437 phydev->supported &= (SUPPORTED_10baseT_Half
438 | SUPPORTED_10baseT_Full
439 | SUPPORTED_100baseT_Half
440 | SUPPORTED_100baseT_Full
441 | SUPPORTED_Autoneg
442 | SUPPORTED_Pause | SUPPORTED_Asym_Pause
443 | SUPPORTED_MII
444 | SUPPORTED_TP);
445
446 phydev->advertising = phydev->supported;
447
448 lp->old_link = 0;
449 lp->old_speed = 0;
450 lp->old_duplex = -1;
451 lp->phydev = phydev;
452
Mike Frysingerc6dd5092011-01-10 02:54:29 +0000453 pr_info("attached PHY driver [%s] "
454 "(mii_bus:phy_addr=%s, irq=%d, mdc_clk=%dHz(mdc_div=%d)@sclk=%dMHz)\n",
455 phydev->drv->name, dev_name(&phydev->dev), phydev->irq,
456 MDC_CLK, mdc_div, sclk/1000000);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800457
458 return 0;
Bryan Wue190d6b2007-07-17 14:43:44 +0800459}
460
Bryan Wu679dce32008-04-25 11:53:11 +0800461/*
462 * Ethtool support
463 */
464
Michael Hennerich53fd3f22010-05-10 05:39:11 +0000465/*
466 * interrupt routine for magic packet wakeup
467 */
468static irqreturn_t bfin_mac_wake_interrupt(int irq, void *dev_id)
469{
470 return IRQ_HANDLED;
471}
472
Bryan Wu679dce32008-04-25 11:53:11 +0800473static int
474bfin_mac_ethtool_getsettings(struct net_device *dev, struct ethtool_cmd *cmd)
475{
476 struct bfin_mac_local *lp = netdev_priv(dev);
477
478 if (lp->phydev)
479 return phy_ethtool_gset(lp->phydev, cmd);
480
481 return -EINVAL;
482}
483
484static int
485bfin_mac_ethtool_setsettings(struct net_device *dev, struct ethtool_cmd *cmd)
486{
487 struct bfin_mac_local *lp = netdev_priv(dev);
488
489 if (!capable(CAP_NET_ADMIN))
490 return -EPERM;
491
492 if (lp->phydev)
493 return phy_ethtool_sset(lp->phydev, cmd);
494
495 return -EINVAL;
496}
497
498static void bfin_mac_ethtool_getdrvinfo(struct net_device *dev,
499 struct ethtool_drvinfo *info)
500{
Jiri Pirko7826d432013-01-06 00:44:26 +0000501 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
502 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
503 strlcpy(info->fw_version, "N/A", sizeof(info->fw_version));
504 strlcpy(info->bus_info, dev_name(&dev->dev), sizeof(info->bus_info));
Bryan Wu679dce32008-04-25 11:53:11 +0800505}
506
Michael Hennerich53fd3f22010-05-10 05:39:11 +0000507static void bfin_mac_ethtool_getwol(struct net_device *dev,
508 struct ethtool_wolinfo *wolinfo)
509{
510 struct bfin_mac_local *lp = netdev_priv(dev);
511
512 wolinfo->supported = WAKE_MAGIC;
513 wolinfo->wolopts = lp->wol;
514}
515
516static int bfin_mac_ethtool_setwol(struct net_device *dev,
517 struct ethtool_wolinfo *wolinfo)
518{
519 struct bfin_mac_local *lp = netdev_priv(dev);
520 int rc;
521
522 if (wolinfo->wolopts & (WAKE_MAGICSECURE |
523 WAKE_UCAST |
524 WAKE_MCAST |
525 WAKE_BCAST |
526 WAKE_ARP))
527 return -EOPNOTSUPP;
528
529 lp->wol = wolinfo->wolopts;
530
531 if (lp->wol && !lp->irq_wake_requested) {
532 /* register wake irq handler */
533 rc = request_irq(IRQ_MAC_WAKEDET, bfin_mac_wake_interrupt,
534 IRQF_DISABLED, "EMAC_WAKE", dev);
535 if (rc)
536 return rc;
537 lp->irq_wake_requested = true;
538 }
539
540 if (!lp->wol && lp->irq_wake_requested) {
541 free_irq(IRQ_MAC_WAKEDET, dev);
542 lp->irq_wake_requested = false;
543 }
544
545 /* Make sure the PHY driver doesn't suspend */
546 device_init_wakeup(&dev->dev, lp->wol);
547
548 return 0;
549}
550
Richard Cochran85c153d2012-10-31 06:27:22 +0000551#ifdef CONFIG_BFIN_MAC_USE_HWSTAMP
Richard Cochrana85bbdd2012-04-03 22:59:20 +0000552static int bfin_mac_ethtool_get_ts_info(struct net_device *dev,
David S. Miller3ffa4292012-04-06 00:17:50 -0400553 struct ethtool_ts_info *info)
Richard Cochrana85bbdd2012-04-03 22:59:20 +0000554{
Richard Cochrandd87b222012-10-31 06:27:24 +0000555 struct bfin_mac_local *lp = netdev_priv(dev);
556
Richard Cochrana85bbdd2012-04-03 22:59:20 +0000557 info->so_timestamping =
558 SOF_TIMESTAMPING_TX_HARDWARE |
559 SOF_TIMESTAMPING_RX_HARDWARE |
Richard Cochranbc3c5f62012-10-31 06:27:23 +0000560 SOF_TIMESTAMPING_RAW_HARDWARE;
Richard Cochrandd87b222012-10-31 06:27:24 +0000561 info->phc_index = lp->phc_index;
Richard Cochrana85bbdd2012-04-03 22:59:20 +0000562 info->tx_types =
563 (1 << HWTSTAMP_TX_OFF) |
564 (1 << HWTSTAMP_TX_ON);
565 info->rx_filters =
566 (1 << HWTSTAMP_FILTER_NONE) |
567 (1 << HWTSTAMP_FILTER_PTP_V1_L4_EVENT) |
568 (1 << HWTSTAMP_FILTER_PTP_V2_L2_EVENT) |
569 (1 << HWTSTAMP_FILTER_PTP_V2_L4_EVENT);
570 return 0;
571}
Richard Cochran85c153d2012-10-31 06:27:22 +0000572#endif
Richard Cochrana85bbdd2012-04-03 22:59:20 +0000573
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700574static const struct ethtool_ops bfin_mac_ethtool_ops = {
Bryan Wu679dce32008-04-25 11:53:11 +0800575 .get_settings = bfin_mac_ethtool_getsettings,
576 .set_settings = bfin_mac_ethtool_setsettings,
577 .get_link = ethtool_op_get_link,
578 .get_drvinfo = bfin_mac_ethtool_getdrvinfo,
Michael Hennerich53fd3f22010-05-10 05:39:11 +0000579 .get_wol = bfin_mac_ethtool_getwol,
580 .set_wol = bfin_mac_ethtool_setwol,
Richard Cochran85c153d2012-10-31 06:27:22 +0000581#ifdef CONFIG_BFIN_MAC_USE_HWSTAMP
Richard Cochrana85bbdd2012-04-03 22:59:20 +0000582 .get_ts_info = bfin_mac_ethtool_get_ts_info,
Richard Cochran85c153d2012-10-31 06:27:22 +0000583#endif
Bryan Wu679dce32008-04-25 11:53:11 +0800584};
585
Bryan Wue190d6b2007-07-17 14:43:44 +0800586/**************************************************************************/
Mike Frysinger5ca1bb52011-01-10 02:54:30 +0000587static void setup_system_regs(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +0800588{
Sonic Zhang02460d02010-06-11 10:44:22 +0000589 struct bfin_mac_local *lp = netdev_priv(dev);
590 int i;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800591 unsigned short sysctl;
Bryan Wue190d6b2007-07-17 14:43:44 +0800592
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800593 /*
594 * Odd word alignment for Receive Frame DMA word
595 * Configure checksum support and rcve frame word alignment
596 */
597 sysctl = bfin_read_EMAC_SYSCTL();
Sonic Zhang02460d02010-06-11 10:44:22 +0000598 /*
599 * check if interrupt is requested for any PHY,
600 * enable PHY interrupt only if needed
601 */
602 for (i = 0; i < PHY_MAX_ADDR; ++i)
603 if (lp->mii_bus->irq[i] != PHY_POLL)
604 break;
605 if (i < PHY_MAX_ADDR)
606 sysctl |= PHYIE;
Bryan Wue190d6b2007-07-17 14:43:44 +0800607 sysctl |= RXDWA;
Sonic Zhang812a9de2010-05-10 05:39:10 +0000608#if defined(BFIN_MAC_CSUM_OFFLOAD)
609 sysctl |= RXCKS;
610#else
611 sysctl &= ~RXCKS;
Bryan Wue190d6b2007-07-17 14:43:44 +0800612#endif
613 bfin_write_EMAC_SYSCTL(sysctl);
Bryan Wue190d6b2007-07-17 14:43:44 +0800614
615 bfin_write_EMAC_MMC_CTL(RSTC | CROLL);
616
Mike Frysingerc599bd62011-01-10 02:54:32 +0000617 /* Set vlan regs to let 1522 bytes long packets pass through */
618 bfin_write_EMAC_VLAN1(lp->vlan1_mask);
619 bfin_write_EMAC_VLAN2(lp->vlan2_mask);
620
Bryan Wue190d6b2007-07-17 14:43:44 +0800621 /* Initialize the TX DMA channel registers */
622 bfin_write_DMA2_X_COUNT(0);
623 bfin_write_DMA2_X_MODIFY(4);
624 bfin_write_DMA2_Y_COUNT(0);
625 bfin_write_DMA2_Y_MODIFY(0);
626
627 /* Initialize the RX DMA channel registers */
628 bfin_write_DMA1_X_COUNT(0);
629 bfin_write_DMA1_X_MODIFY(4);
630 bfin_write_DMA1_Y_COUNT(0);
631 bfin_write_DMA1_Y_MODIFY(0);
632}
633
Alex Landau73f83182007-09-19 23:14:18 +0800634static void setup_mac_addr(u8 *mac_addr)
Bryan Wue190d6b2007-07-17 14:43:44 +0800635{
636 u32 addr_low = le32_to_cpu(*(__le32 *) & mac_addr[0]);
637 u16 addr_hi = le16_to_cpu(*(__le16 *) & mac_addr[4]);
638
639 /* this depends on a little-endian machine */
640 bfin_write_EMAC_ADDRLO(addr_low);
641 bfin_write_EMAC_ADDRHI(addr_hi);
642}
643
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800644static int bfin_mac_set_mac_address(struct net_device *dev, void *p)
Alex Landau73f83182007-09-19 23:14:18 +0800645{
646 struct sockaddr *addr = p;
647 if (netif_running(dev))
648 return -EBUSY;
649 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
650 setup_mac_addr(dev->dev_addr);
651 return 0;
652}
653
Barry Songfe92afe2010-05-17 17:19:40 -0700654#ifdef CONFIG_BFIN_MAC_USE_HWSTAMP
655#define bfin_mac_hwtstamp_is_none(cfg) ((cfg) == HWTSTAMP_FILTER_NONE)
656
Richard Cochranbc3c5f62012-10-31 06:27:23 +0000657static u32 bfin_select_phc_clock(u32 input_clk, unsigned int *shift_result)
658{
659 u32 ipn = 1000000000UL / input_clk;
660 u32 ppn = 1;
661 unsigned int shift = 0;
662
663 while (ppn <= ipn) {
664 ppn <<= 1;
665 shift++;
666 }
667 *shift_result = shift;
668 return 1000000000UL / ppn;
669}
670
Barry Songfe92afe2010-05-17 17:19:40 -0700671static int bfin_mac_hwtstamp_ioctl(struct net_device *netdev,
672 struct ifreq *ifr, int cmd)
673{
674 struct hwtstamp_config config;
675 struct bfin_mac_local *lp = netdev_priv(netdev);
676 u16 ptpctl;
677 u32 ptpfv1, ptpfv2, ptpfv3, ptpfoff;
678
679 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
680 return -EFAULT;
681
682 pr_debug("%s config flag:0x%x, tx_type:0x%x, rx_filter:0x%x\n",
683 __func__, config.flags, config.tx_type, config.rx_filter);
684
685 /* reserved for future extensions */
686 if (config.flags)
687 return -EINVAL;
688
689 if ((config.tx_type != HWTSTAMP_TX_OFF) &&
690 (config.tx_type != HWTSTAMP_TX_ON))
691 return -ERANGE;
692
693 ptpctl = bfin_read_EMAC_PTP_CTL();
694
695 switch (config.rx_filter) {
696 case HWTSTAMP_FILTER_NONE:
697 /*
698 * Dont allow any timestamping
699 */
700 ptpfv3 = 0xFFFFFFFF;
701 bfin_write_EMAC_PTP_FV3(ptpfv3);
702 break;
703 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
704 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
705 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
706 /*
707 * Clear the five comparison mask bits (bits[12:8]) in EMAC_PTP_CTL)
708 * to enable all the field matches.
709 */
710 ptpctl &= ~0x1F00;
711 bfin_write_EMAC_PTP_CTL(ptpctl);
712 /*
713 * Keep the default values of the EMAC_PTP_FOFF register.
714 */
715 ptpfoff = 0x4A24170C;
716 bfin_write_EMAC_PTP_FOFF(ptpfoff);
717 /*
718 * Keep the default values of the EMAC_PTP_FV1 and EMAC_PTP_FV2
719 * registers.
720 */
721 ptpfv1 = 0x11040800;
722 bfin_write_EMAC_PTP_FV1(ptpfv1);
723 ptpfv2 = 0x0140013F;
724 bfin_write_EMAC_PTP_FV2(ptpfv2);
725 /*
726 * The default value (0xFFFC) allows the timestamping of both
727 * received Sync messages and Delay_Req messages.
728 */
729 ptpfv3 = 0xFFFFFFFC;
730 bfin_write_EMAC_PTP_FV3(ptpfv3);
731
732 config.rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_EVENT;
733 break;
734 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
735 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
736 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
737 /* Clear all five comparison mask bits (bits[12:8]) in the
738 * EMAC_PTP_CTL register to enable all the field matches.
739 */
740 ptpctl &= ~0x1F00;
741 bfin_write_EMAC_PTP_CTL(ptpctl);
742 /*
743 * Keep the default values of the EMAC_PTP_FOFF register, except set
744 * the PTPCOF field to 0x2A.
745 */
746 ptpfoff = 0x2A24170C;
747 bfin_write_EMAC_PTP_FOFF(ptpfoff);
748 /*
749 * Keep the default values of the EMAC_PTP_FV1 and EMAC_PTP_FV2
750 * registers.
751 */
752 ptpfv1 = 0x11040800;
753 bfin_write_EMAC_PTP_FV1(ptpfv1);
754 ptpfv2 = 0x0140013F;
755 bfin_write_EMAC_PTP_FV2(ptpfv2);
756 /*
757 * To allow the timestamping of Pdelay_Req and Pdelay_Resp, set
758 * the value to 0xFFF0.
759 */
760 ptpfv3 = 0xFFFFFFF0;
761 bfin_write_EMAC_PTP_FV3(ptpfv3);
762
763 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L4_EVENT;
764 break;
765 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
766 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
767 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
768 /*
769 * Clear bits 8 and 12 of the EMAC_PTP_CTL register to enable only the
770 * EFTM and PTPCM field comparison.
771 */
772 ptpctl &= ~0x1100;
773 bfin_write_EMAC_PTP_CTL(ptpctl);
774 /*
775 * Keep the default values of all the fields of the EMAC_PTP_FOFF
776 * register, except set the PTPCOF field to 0x0E.
777 */
778 ptpfoff = 0x0E24170C;
779 bfin_write_EMAC_PTP_FOFF(ptpfoff);
780 /*
781 * Program bits [15:0] of the EMAC_PTP_FV1 register to 0x88F7, which
782 * corresponds to PTP messages on the MAC layer.
783 */
784 ptpfv1 = 0x110488F7;
785 bfin_write_EMAC_PTP_FV1(ptpfv1);
786 ptpfv2 = 0x0140013F;
787 bfin_write_EMAC_PTP_FV2(ptpfv2);
788 /*
789 * To allow the timestamping of Pdelay_Req and Pdelay_Resp
790 * messages, set the value to 0xFFF0.
791 */
792 ptpfv3 = 0xFFFFFFF0;
793 bfin_write_EMAC_PTP_FV3(ptpfv3);
794
795 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L2_EVENT;
796 break;
797 default:
798 return -ERANGE;
799 }
800
801 if (config.tx_type == HWTSTAMP_TX_OFF &&
802 bfin_mac_hwtstamp_is_none(config.rx_filter)) {
803 ptpctl &= ~PTP_EN;
804 bfin_write_EMAC_PTP_CTL(ptpctl);
805
806 SSYNC();
807 } else {
808 ptpctl |= PTP_EN;
809 bfin_write_EMAC_PTP_CTL(ptpctl);
810
811 /*
812 * clear any existing timestamp
813 */
814 bfin_read_EMAC_PTP_RXSNAPLO();
815 bfin_read_EMAC_PTP_RXSNAPHI();
816
817 bfin_read_EMAC_PTP_TXSNAPLO();
818 bfin_read_EMAC_PTP_TXSNAPHI();
819
Barry Songfe92afe2010-05-17 17:19:40 -0700820 SSYNC();
Barry Songfe92afe2010-05-17 17:19:40 -0700821 }
822
823 lp->stamp_cfg = config;
824 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
825 -EFAULT : 0;
826}
827
Barry Songfe92afe2010-05-17 17:19:40 -0700828static void bfin_tx_hwtstamp(struct net_device *netdev, struct sk_buff *skb)
829{
830 struct bfin_mac_local *lp = netdev_priv(netdev);
Barry Songfe92afe2010-05-17 17:19:40 -0700831
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000832 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) {
Barry Songfe92afe2010-05-17 17:19:40 -0700833 int timeout_cnt = MAX_TIMEOUT_CNT;
834
835 /* When doing time stamping, keep the connection to the socket
836 * a while longer
837 */
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000838 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
Barry Songfe92afe2010-05-17 17:19:40 -0700839
840 /*
841 * The timestamping is done at the EMAC module's MII/RMII interface
842 * when the module sees the Start of Frame of an event message packet. This
843 * interface is the closest possible place to the physical Ethernet transmission
844 * medium, providing the best timing accuracy.
845 */
846 while ((!(bfin_read_EMAC_PTP_ISTAT() & TXTL)) && (--timeout_cnt))
847 udelay(1);
848 if (timeout_cnt == 0)
Mike Frysingerc6dd5092011-01-10 02:54:29 +0000849 netdev_err(netdev, "timestamp the TX packet failed\n");
Barry Songfe92afe2010-05-17 17:19:40 -0700850 else {
851 struct skb_shared_hwtstamps shhwtstamps;
852 u64 ns;
853 u64 regval;
854
855 regval = bfin_read_EMAC_PTP_TXSNAPLO();
856 regval |= (u64)bfin_read_EMAC_PTP_TXSNAPHI() << 32;
857 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
Richard Cochranbc3c5f62012-10-31 06:27:23 +0000858 ns = regval << lp->shift;
Barry Songfe92afe2010-05-17 17:19:40 -0700859 shhwtstamps.hwtstamp = ns_to_ktime(ns);
Barry Songfe92afe2010-05-17 17:19:40 -0700860 skb_tstamp_tx(skb, &shhwtstamps);
Barry Songfe92afe2010-05-17 17:19:40 -0700861 }
862 }
863}
864
865static void bfin_rx_hwtstamp(struct net_device *netdev, struct sk_buff *skb)
866{
867 struct bfin_mac_local *lp = netdev_priv(netdev);
868 u32 valid;
869 u64 regval, ns;
870 struct skb_shared_hwtstamps *shhwtstamps;
871
872 if (bfin_mac_hwtstamp_is_none(lp->stamp_cfg.rx_filter))
873 return;
874
875 valid = bfin_read_EMAC_PTP_ISTAT() & RXEL;
876 if (!valid)
877 return;
878
879 shhwtstamps = skb_hwtstamps(skb);
880
881 regval = bfin_read_EMAC_PTP_RXSNAPLO();
882 regval |= (u64)bfin_read_EMAC_PTP_RXSNAPHI() << 32;
Richard Cochranbc3c5f62012-10-31 06:27:23 +0000883 ns = regval << lp->shift;
Barry Songfe92afe2010-05-17 17:19:40 -0700884 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
885 shhwtstamps->hwtstamp = ns_to_ktime(ns);
Barry Songfe92afe2010-05-17 17:19:40 -0700886}
887
Barry Songfe92afe2010-05-17 17:19:40 -0700888static void bfin_mac_hwtstamp_init(struct net_device *netdev)
889{
890 struct bfin_mac_local *lp = netdev_priv(netdev);
Richard Cochrandd87b222012-10-31 06:27:24 +0000891 u64 addend, ppb;
Richard Cochranbc3c5f62012-10-31 06:27:23 +0000892 u32 input_clk, phc_clk;
Barry Songfe92afe2010-05-17 17:19:40 -0700893
894 /* Initialize hardware timer */
Richard Cochranbc3c5f62012-10-31 06:27:23 +0000895 input_clk = get_sclk();
896 phc_clk = bfin_select_phc_clock(input_clk, &lp->shift);
897 addend = phc_clk * (1ULL << 32);
898 do_div(addend, input_clk);
899 bfin_write_EMAC_PTP_ADDEND((u32)addend);
Barry Songfe92afe2010-05-17 17:19:40 -0700900
Richard Cochranbc3c5f62012-10-31 06:27:23 +0000901 lp->addend = addend;
Richard Cochrandd87b222012-10-31 06:27:24 +0000902 ppb = 1000000000ULL * input_clk;
903 do_div(ppb, phc_clk);
904 lp->max_ppb = ppb - 1000000000ULL - 1ULL;
Barry Songfe92afe2010-05-17 17:19:40 -0700905
906 /* Initialize hwstamp config */
907 lp->stamp_cfg.rx_filter = HWTSTAMP_FILTER_NONE;
908 lp->stamp_cfg.tx_type = HWTSTAMP_TX_OFF;
909}
910
Richard Cochrandd87b222012-10-31 06:27:24 +0000911static u64 bfin_ptp_time_read(struct bfin_mac_local *lp)
912{
913 u64 ns;
914 u32 lo, hi;
915
916 lo = bfin_read_EMAC_PTP_TIMELO();
917 hi = bfin_read_EMAC_PTP_TIMEHI();
918
919 ns = ((u64) hi) << 32;
920 ns |= lo;
921 ns <<= lp->shift;
922
923 return ns;
924}
925
926static void bfin_ptp_time_write(struct bfin_mac_local *lp, u64 ns)
927{
928 u32 hi, lo;
929
930 ns >>= lp->shift;
931 hi = ns >> 32;
932 lo = ns & 0xffffffff;
933
934 bfin_write_EMAC_PTP_TIMELO(lo);
935 bfin_write_EMAC_PTP_TIMEHI(hi);
936}
937
938/* PTP Hardware Clock operations */
939
940static int bfin_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
941{
942 u64 adj;
943 u32 diff, addend;
944 int neg_adj = 0;
945 struct bfin_mac_local *lp =
946 container_of(ptp, struct bfin_mac_local, caps);
947
948 if (ppb < 0) {
949 neg_adj = 1;
950 ppb = -ppb;
951 }
952 addend = lp->addend;
953 adj = addend;
954 adj *= ppb;
955 diff = div_u64(adj, 1000000000ULL);
956
957 addend = neg_adj ? addend - diff : addend + diff;
958
959 bfin_write_EMAC_PTP_ADDEND(addend);
960
961 return 0;
962}
963
964static int bfin_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
965{
966 s64 now;
967 unsigned long flags;
968 struct bfin_mac_local *lp =
969 container_of(ptp, struct bfin_mac_local, caps);
970
971 spin_lock_irqsave(&lp->phc_lock, flags);
972
973 now = bfin_ptp_time_read(lp);
974 now += delta;
975 bfin_ptp_time_write(lp, now);
976
977 spin_unlock_irqrestore(&lp->phc_lock, flags);
978
979 return 0;
980}
981
982static int bfin_ptp_gettime(struct ptp_clock_info *ptp, struct timespec *ts)
983{
984 u64 ns;
985 u32 remainder;
986 unsigned long flags;
987 struct bfin_mac_local *lp =
988 container_of(ptp, struct bfin_mac_local, caps);
989
990 spin_lock_irqsave(&lp->phc_lock, flags);
991
992 ns = bfin_ptp_time_read(lp);
993
994 spin_unlock_irqrestore(&lp->phc_lock, flags);
995
996 ts->tv_sec = div_u64_rem(ns, 1000000000, &remainder);
997 ts->tv_nsec = remainder;
998 return 0;
999}
1000
1001static int bfin_ptp_settime(struct ptp_clock_info *ptp,
1002 const struct timespec *ts)
1003{
1004 u64 ns;
1005 unsigned long flags;
1006 struct bfin_mac_local *lp =
1007 container_of(ptp, struct bfin_mac_local, caps);
1008
1009 ns = ts->tv_sec * 1000000000ULL;
1010 ns += ts->tv_nsec;
1011
1012 spin_lock_irqsave(&lp->phc_lock, flags);
1013
1014 bfin_ptp_time_write(lp, ns);
1015
1016 spin_unlock_irqrestore(&lp->phc_lock, flags);
1017
1018 return 0;
1019}
1020
1021static int bfin_ptp_enable(struct ptp_clock_info *ptp,
1022 struct ptp_clock_request *rq, int on)
1023{
1024 return -EOPNOTSUPP;
1025}
1026
1027static struct ptp_clock_info bfin_ptp_caps = {
1028 .owner = THIS_MODULE,
1029 .name = "BF518 clock",
1030 .max_adj = 0,
1031 .n_alarm = 0,
1032 .n_ext_ts = 0,
1033 .n_per_out = 0,
1034 .pps = 0,
1035 .adjfreq = bfin_ptp_adjfreq,
1036 .adjtime = bfin_ptp_adjtime,
1037 .gettime = bfin_ptp_gettime,
1038 .settime = bfin_ptp_settime,
1039 .enable = bfin_ptp_enable,
1040};
1041
1042static int bfin_phc_init(struct net_device *netdev, struct device *dev)
1043{
1044 struct bfin_mac_local *lp = netdev_priv(netdev);
1045
1046 lp->caps = bfin_ptp_caps;
1047 lp->caps.max_adj = lp->max_ppb;
1048 lp->clock = ptp_clock_register(&lp->caps, dev);
1049 if (IS_ERR(lp->clock))
1050 return PTR_ERR(lp->clock);
1051
1052 lp->phc_index = ptp_clock_index(lp->clock);
1053 spin_lock_init(&lp->phc_lock);
1054
1055 return 0;
1056}
1057
1058static void bfin_phc_release(struct bfin_mac_local *lp)
1059{
1060 ptp_clock_unregister(lp->clock);
1061}
1062
Barry Songfe92afe2010-05-17 17:19:40 -07001063#else
1064# define bfin_mac_hwtstamp_is_none(cfg) 0
1065# define bfin_mac_hwtstamp_init(dev)
1066# define bfin_mac_hwtstamp_ioctl(dev, ifr, cmd) (-EOPNOTSUPP)
1067# define bfin_rx_hwtstamp(dev, skb)
1068# define bfin_tx_hwtstamp(dev, skb)
Richard Cochrandd87b222012-10-31 06:27:24 +00001069# define bfin_phc_init(netdev, dev) 0
1070# define bfin_phc_release(lp)
Barry Songfe92afe2010-05-17 17:19:40 -07001071#endif
1072
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001073static inline void _tx_reclaim_skb(void)
Bryan Wue190d6b2007-07-17 14:43:44 +08001074{
Bryan Wue190d6b2007-07-17 14:43:44 +08001075 do {
1076 tx_list_head->desc_a.config &= ~DMAEN;
1077 tx_list_head->status.status_word = 0;
1078 if (tx_list_head->skb) {
1079 dev_kfree_skb(tx_list_head->skb);
1080 tx_list_head->skb = NULL;
Bryan Wue190d6b2007-07-17 14:43:44 +08001081 }
1082 tx_list_head = tx_list_head->next;
Bryan Wue190d6b2007-07-17 14:43:44 +08001083
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001084 } while (tx_list_head->status.status_word != 0);
1085}
1086
1087static void tx_reclaim_skb(struct bfin_mac_local *lp)
1088{
1089 int timeout_cnt = MAX_TIMEOUT_CNT;
1090
1091 if (tx_list_head->status.status_word != 0)
1092 _tx_reclaim_skb();
1093
1094 if (current_tx_ptr->next == tx_list_head) {
1095 while (tx_list_head->status.status_word == 0) {
1096 /* slow down polling to avoid too many queue stop. */
1097 udelay(10);
1098 /* reclaim skb if DMA is not running. */
1099 if (!(bfin_read_DMA2_IRQ_STATUS() & DMA_RUN))
1100 break;
1101 if (timeout_cnt-- < 0)
1102 break;
1103 }
1104
1105 if (timeout_cnt >= 0)
1106 _tx_reclaim_skb();
1107 else
1108 netif_stop_queue(lp->ndev);
1109 }
1110
1111 if (current_tx_ptr->next != tx_list_head &&
1112 netif_queue_stopped(lp->ndev))
1113 netif_wake_queue(lp->ndev);
1114
1115 if (tx_list_head != current_tx_ptr) {
1116 /* shorten the timer interval if tx queue is stopped */
1117 if (netif_queue_stopped(lp->ndev))
1118 lp->tx_reclaim_timer.expires =
1119 jiffies + (TX_RECLAIM_JIFFIES >> 4);
1120 else
1121 lp->tx_reclaim_timer.expires =
1122 jiffies + TX_RECLAIM_JIFFIES;
1123
1124 mod_timer(&lp->tx_reclaim_timer,
1125 lp->tx_reclaim_timer.expires);
1126 }
1127
1128 return;
1129}
1130
1131static void tx_reclaim_skb_timeout(unsigned long lp)
1132{
1133 tx_reclaim_skb((struct bfin_mac_local *)lp);
Bryan Wue190d6b2007-07-17 14:43:44 +08001134}
1135
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001136static int bfin_mac_hard_start_xmit(struct sk_buff *skb,
Bryan Wue190d6b2007-07-17 14:43:44 +08001137 struct net_device *dev)
1138{
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001139 struct bfin_mac_local *lp = netdev_priv(dev);
Bryan Wua50c0c02008-07-27 22:45:04 +08001140 u16 *data;
Michael Hennerich015dac82009-05-29 03:41:15 +00001141 u32 data_align = (unsigned long)(skb->data) & 0x3;
Barry Songfe92afe2010-05-17 17:19:40 -07001142
Bryan Wue190d6b2007-07-17 14:43:44 +08001143 current_tx_ptr->skb = skb;
1144
Michael Hennerich015dac82009-05-29 03:41:15 +00001145 if (data_align == 0x2) {
1146 /* move skb->data to current_tx_ptr payload */
1147 data = (u16 *)(skb->data) - 1;
Barry Songfe92afe2010-05-17 17:19:40 -07001148 *data = (u16)(skb->len);
1149 /*
1150 * When transmitting an Ethernet packet, the PTP_TSYNC module requires
1151 * a DMA_Length_Word field associated with the packet. The lower 12 bits
1152 * of this field are the length of the packet payload in bytes and the higher
1153 * 4 bits are the timestamping enable field.
1154 */
Oliver Hartkopp2244d072010-08-17 08:59:14 +00001155 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
Barry Songfe92afe2010-05-17 17:19:40 -07001156 *data |= 0x1000;
1157
Michael Hennerich015dac82009-05-29 03:41:15 +00001158 current_tx_ptr->desc_a.start_addr = (u32)data;
1159 /* this is important! */
1160 blackfin_dcache_flush_range((u32)data,
1161 (u32)((u8 *)data + skb->len + 4));
Bryan Wue190d6b2007-07-17 14:43:44 +08001162 } else {
Michael Hennerich015dac82009-05-29 03:41:15 +00001163 *((u16 *)(current_tx_ptr->packet)) = (u16)(skb->len);
Barry Songfe92afe2010-05-17 17:19:40 -07001164 /* enable timestamping for the sent packet */
Oliver Hartkopp2244d072010-08-17 08:59:14 +00001165 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
Barry Songfe92afe2010-05-17 17:19:40 -07001166 *((u16 *)(current_tx_ptr->packet)) |= 0x1000;
Michael Hennerich015dac82009-05-29 03:41:15 +00001167 memcpy((u8 *)(current_tx_ptr->packet + 2), skb->data,
1168 skb->len);
1169 current_tx_ptr->desc_a.start_addr =
1170 (u32)current_tx_ptr->packet;
Michael Hennerich015dac82009-05-29 03:41:15 +00001171 blackfin_dcache_flush_range(
1172 (u32)current_tx_ptr->packet,
1173 (u32)(current_tx_ptr->packet + skb->len + 2));
Bryan Wue190d6b2007-07-17 14:43:44 +08001174 }
1175
Sonic Zhang805a8ab2009-05-29 03:40:43 +00001176 /* make sure the internal data buffers in the core are drained
1177 * so that the DMA descriptors are completely written when the
1178 * DMA engine goes to fetch them below
1179 */
1180 SSYNC();
1181
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001182 /* always clear status buffer before start tx dma */
1183 current_tx_ptr->status.status_word = 0;
1184
Bryan Wue190d6b2007-07-17 14:43:44 +08001185 /* enable this packet's dma */
1186 current_tx_ptr->desc_a.config |= DMAEN;
1187
1188 /* tx dma is running, just return */
Michael Hennerich015dac82009-05-29 03:41:15 +00001189 if (bfin_read_DMA2_IRQ_STATUS() & DMA_RUN)
Bryan Wue190d6b2007-07-17 14:43:44 +08001190 goto out;
1191
1192 /* tx dma is not running */
1193 bfin_write_DMA2_NEXT_DESC_PTR(&(current_tx_ptr->desc_a));
1194 /* dma enabled, read from memory, size is 6 */
1195 bfin_write_DMA2_CONFIG(current_tx_ptr->desc_a.config);
1196 /* Turn on the EMAC tx */
1197 bfin_write_EMAC_OPMODE(bfin_read_EMAC_OPMODE() | TE);
1198
1199out:
Barry Songfe92afe2010-05-17 17:19:40 -07001200 bfin_tx_hwtstamp(dev, skb);
1201
Bryan Wue190d6b2007-07-17 14:43:44 +08001202 current_tx_ptr = current_tx_ptr->next;
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001203 dev->stats.tx_packets++;
1204 dev->stats.tx_bytes += (skb->len);
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001205
1206 tx_reclaim_skb(lp);
1207
Patrick McHardy6ed10652009-06-23 06:03:08 +00001208 return NETDEV_TX_OK;
Bryan Wue190d6b2007-07-17 14:43:44 +08001209}
1210
Sonic Zhangad2864d2010-05-10 05:39:09 +00001211#define IP_HEADER_OFF 0
Peter Meerwaldec497b32010-05-17 17:20:50 -07001212#define RX_ERROR_MASK (RX_LONG | RX_ALIGN | RX_CRC | RX_LEN | \
1213 RX_FRAG | RX_ADDR | RX_DMAO | RX_PHY | RX_LATE | RX_RANGE)
1214
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001215static void bfin_mac_rx(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001216{
1217 struct sk_buff *skb, *new_skb;
Bryan Wue190d6b2007-07-17 14:43:44 +08001218 unsigned short len;
Barry Songfe92afe2010-05-17 17:19:40 -07001219 struct bfin_mac_local *lp __maybe_unused = netdev_priv(dev);
Sonic Zhangad2864d2010-05-10 05:39:09 +00001220#if defined(BFIN_MAC_CSUM_OFFLOAD)
1221 unsigned int i;
1222 unsigned char fcs[ETH_FCS_LEN + 1];
1223#endif
Bryan Wue190d6b2007-07-17 14:43:44 +08001224
Peter Meerwaldec497b32010-05-17 17:20:50 -07001225 /* check if frame status word reports an error condition
1226 * we which case we simply drop the packet
1227 */
1228 if (current_rx_ptr->status.status_word & RX_ERROR_MASK) {
Mike Frysingerc6dd5092011-01-10 02:54:29 +00001229 netdev_notice(dev, "rx: receive error - packet dropped\n");
Peter Meerwaldec497b32010-05-17 17:20:50 -07001230 dev->stats.rx_dropped++;
1231 goto out;
1232 }
1233
Bryan Wue190d6b2007-07-17 14:43:44 +08001234 /* allocate a new skb for next time receive */
1235 skb = current_rx_ptr->skb;
Barry Songfe92afe2010-05-17 17:19:40 -07001236
Pradeep A. Dalvi1ab0d2e2012-02-06 11:16:48 +00001237 new_skb = netdev_alloc_skb(dev, PKT_BUF_SZ + NET_IP_ALIGN);
Bryan Wue190d6b2007-07-17 14:43:44 +08001238 if (!new_skb) {
Mike Frysingerc6dd5092011-01-10 02:54:29 +00001239 netdev_notice(dev, "rx: low on mem - packet dropped\n");
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001240 dev->stats.rx_dropped++;
Bryan Wue190d6b2007-07-17 14:43:44 +08001241 goto out;
1242 }
1243 /* reserve 2 bytes for RXDWA padding */
Michael Hennerich015dac82009-05-29 03:41:15 +00001244 skb_reserve(new_skb, NET_IP_ALIGN);
Alexey Demin6e01d1a2008-01-30 16:52:27 +08001245 /* Invidate the data cache of skb->data range when it is write back
1246 * cache. It will prevent overwritting the new data from DMA
1247 */
1248 blackfin_dcache_invalidate_range((unsigned long)new_skb->head,
1249 (unsigned long)new_skb->end);
1250
Sonic Zhangf6e1e4f2010-05-10 05:39:08 +00001251 current_rx_ptr->skb = new_skb;
1252 current_rx_ptr->desc_a.start_addr = (unsigned long)new_skb->data - 2;
1253
Bryan Wue190d6b2007-07-17 14:43:44 +08001254 len = (unsigned short)((current_rx_ptr->status.status_word) & RX_FRLEN);
Sonic Zhangad2864d2010-05-10 05:39:09 +00001255 /* Deduce Ethernet FCS length from Ethernet payload length */
1256 len -= ETH_FCS_LEN;
Bryan Wue190d6b2007-07-17 14:43:44 +08001257 skb_put(skb, len);
Bryan Wue190d6b2007-07-17 14:43:44 +08001258
Bryan Wue190d6b2007-07-17 14:43:44 +08001259 skb->protocol = eth_type_trans(skb, dev);
Barry Songfe92afe2010-05-17 17:19:40 -07001260
1261 bfin_rx_hwtstamp(dev, skb);
1262
Bryan Wue190d6b2007-07-17 14:43:44 +08001263#if defined(BFIN_MAC_CSUM_OFFLOAD)
Sonic Zhangad2864d2010-05-10 05:39:09 +00001264 /* Checksum offloading only works for IPv4 packets with the standard IP header
1265 * length of 20 bytes, because the blackfin MAC checksum calculation is
1266 * based on that assumption. We must NOT use the calculated checksum if our
1267 * IP version or header break that assumption.
1268 */
1269 if (skb->data[IP_HEADER_OFF] == 0x45) {
1270 skb->csum = current_rx_ptr->status.ip_payload_csum;
1271 /*
1272 * Deduce Ethernet FCS from hardware generated IP payload checksum.
1273 * IP checksum is based on 16-bit one's complement algorithm.
1274 * To deduce a value from checksum is equal to add its inversion.
1275 * If the IP payload len is odd, the inversed FCS should also
1276 * begin from odd address and leave first byte zero.
1277 */
1278 if (skb->len % 2) {
1279 fcs[0] = 0;
1280 for (i = 0; i < ETH_FCS_LEN; i++)
1281 fcs[i + 1] = ~skb->data[skb->len + i];
1282 skb->csum = csum_partial(fcs, ETH_FCS_LEN + 1, skb->csum);
1283 } else {
1284 for (i = 0; i < ETH_FCS_LEN; i++)
1285 fcs[i] = ~skb->data[skb->len + i];
1286 skb->csum = csum_partial(fcs, ETH_FCS_LEN, skb->csum);
1287 }
1288 skb->ip_summed = CHECKSUM_COMPLETE;
1289 }
Bryan Wue190d6b2007-07-17 14:43:44 +08001290#endif
1291
1292 netif_rx(skb);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001293 dev->stats.rx_packets++;
1294 dev->stats.rx_bytes += len;
Peter Meerwaldec497b32010-05-17 17:20:50 -07001295out:
Bryan Wue190d6b2007-07-17 14:43:44 +08001296 current_rx_ptr->status.status_word = 0x00000000;
1297 current_rx_ptr = current_rx_ptr->next;
Bryan Wue190d6b2007-07-17 14:43:44 +08001298}
1299
1300/* interrupt routine to handle rx and error signal */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001301static irqreturn_t bfin_mac_interrupt(int irq, void *dev_id)
Bryan Wue190d6b2007-07-17 14:43:44 +08001302{
1303 struct net_device *dev = dev_id;
1304 int number = 0;
1305
1306get_one_packet:
1307 if (current_rx_ptr->status.status_word == 0) {
1308 /* no more new packet received */
1309 if (number == 0) {
1310 if (current_rx_ptr->next->status.status_word != 0) {
1311 current_rx_ptr = current_rx_ptr->next;
1312 goto real_rx;
1313 }
1314 }
1315 bfin_write_DMA1_IRQ_STATUS(bfin_read_DMA1_IRQ_STATUS() |
1316 DMA_DONE | DMA_ERR);
1317 return IRQ_HANDLED;
1318 }
1319
1320real_rx:
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001321 bfin_mac_rx(dev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001322 number++;
1323 goto get_one_packet;
1324}
1325
1326#ifdef CONFIG_NET_POLL_CONTROLLER
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001327static void bfin_mac_poll(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001328{
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001329 struct bfin_mac_local *lp = netdev_priv(dev);
1330
Bryan Wue190d6b2007-07-17 14:43:44 +08001331 disable_irq(IRQ_MAC_RX);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001332 bfin_mac_interrupt(IRQ_MAC_RX, dev);
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001333 tx_reclaim_skb(lp);
Bryan Wue190d6b2007-07-17 14:43:44 +08001334 enable_irq(IRQ_MAC_RX);
1335}
1336#endif /* CONFIG_NET_POLL_CONTROLLER */
1337
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001338static void bfin_mac_disable(void)
Bryan Wue190d6b2007-07-17 14:43:44 +08001339{
1340 unsigned int opmode;
1341
1342 opmode = bfin_read_EMAC_OPMODE();
1343 opmode &= (~RE);
1344 opmode &= (~TE);
1345 /* Turn off the EMAC */
1346 bfin_write_EMAC_OPMODE(opmode);
1347}
1348
1349/*
1350 * Enable Interrupts, Receive, and Transmit
1351 */
Sonic Zhang02460d02010-06-11 10:44:22 +00001352static int bfin_mac_enable(struct phy_device *phydev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001353{
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001354 int ret;
Bryan Wue190d6b2007-07-17 14:43:44 +08001355 u32 opmode;
1356
Mike Frysingerc6dd5092011-01-10 02:54:29 +00001357 pr_debug("%s\n", __func__);
Bryan Wue190d6b2007-07-17 14:43:44 +08001358
1359 /* Set RX DMA */
1360 bfin_write_DMA1_NEXT_DESC_PTR(&(rx_list_head->desc_a));
1361 bfin_write_DMA1_CONFIG(rx_list_head->desc_a.config);
1362
1363 /* Wait MII done */
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001364 ret = bfin_mdio_poll();
1365 if (ret)
1366 return ret;
Bryan Wue190d6b2007-07-17 14:43:44 +08001367
1368 /* We enable only RX here */
1369 /* ASTP : Enable Automatic Pad Stripping
1370 PR : Promiscuous Mode for test
1371 PSF : Receive frames with total length less than 64 bytes.
1372 FDMODE : Full Duplex Mode
1373 LB : Internal Loopback for test
1374 RE : Receiver Enable */
1375 opmode = bfin_read_EMAC_OPMODE();
1376 if (opmode & FDMODE)
1377 opmode |= PSF;
1378 else
1379 opmode |= DRO | DC | PSF;
1380 opmode |= RE;
1381
Sonic Zhang02460d02010-06-11 10:44:22 +00001382 if (phydev->interface == PHY_INTERFACE_MODE_RMII) {
1383 opmode |= RMII; /* For Now only 100MBit are supported */
Mike Frysinger72f49052011-03-27 22:33:13 +00001384#if defined(CONFIG_BF537) || defined(CONFIG_BF536)
1385 if (__SILICON_REVISION__ < 3) {
1386 /*
1387 * This isn't publicly documented (fun times!), but in
1388 * silicon <=0.2, the RX and TX pins are clocked together.
1389 * So in order to recv, we must enable the transmit side
1390 * as well. This will cause a spurious TX interrupt too,
1391 * but we can easily consume that.
1392 */
1393 opmode |= TE;
1394 }
Bryan Wue190d6b2007-07-17 14:43:44 +08001395#endif
Sonic Zhang02460d02010-06-11 10:44:22 +00001396 }
1397
Bryan Wue190d6b2007-07-17 14:43:44 +08001398 /* Turn on the EMAC rx */
1399 bfin_write_EMAC_OPMODE(opmode);
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001400
1401 return 0;
Bryan Wue190d6b2007-07-17 14:43:44 +08001402}
1403
1404/* Our watchdog timed out. Called by the networking layer */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001405static void bfin_mac_timeout(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001406{
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001407 struct bfin_mac_local *lp = netdev_priv(dev);
1408
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001409 pr_debug("%s: %s\n", dev->name, __func__);
Bryan Wue190d6b2007-07-17 14:43:44 +08001410
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001411 bfin_mac_disable();
Bryan Wue190d6b2007-07-17 14:43:44 +08001412
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001413 del_timer(&lp->tx_reclaim_timer);
1414
1415 /* reset tx queue and free skb */
1416 while (tx_list_head != current_tx_ptr) {
1417 tx_list_head->desc_a.config &= ~DMAEN;
1418 tx_list_head->status.status_word = 0;
1419 if (tx_list_head->skb) {
1420 dev_kfree_skb(tx_list_head->skb);
1421 tx_list_head->skb = NULL;
1422 }
1423 tx_list_head = tx_list_head->next;
1424 }
1425
1426 if (netif_queue_stopped(lp->ndev))
1427 netif_wake_queue(lp->ndev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001428
Sonic Zhang02460d02010-06-11 10:44:22 +00001429 bfin_mac_enable(lp->phydev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001430
1431 /* We can accept TX packets again */
Eric Dumazet1ae5dc32010-05-10 05:01:31 -07001432 dev->trans_start = jiffies; /* prevent tx timeout */
Bryan Wue190d6b2007-07-17 14:43:44 +08001433 netif_wake_queue(dev);
1434}
1435
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001436static void bfin_mac_multicast_hash(struct net_device *dev)
Aidan Williams775919b2008-01-30 16:52:23 +08001437{
1438 u32 emac_hashhi, emac_hashlo;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001439 struct netdev_hw_addr *ha;
Aidan Williams775919b2008-01-30 16:52:23 +08001440 u32 crc;
1441
1442 emac_hashhi = emac_hashlo = 0;
1443
Jiri Pirko22bedad32010-04-01 21:22:57 +00001444 netdev_for_each_mc_addr(ha, dev) {
Joe Perchesf767b6d2011-01-12 18:08:04 +00001445 crc = ether_crc(ETH_ALEN, ha->addr);
Aidan Williams775919b2008-01-30 16:52:23 +08001446 crc >>= 26;
1447
1448 if (crc & 0x20)
1449 emac_hashhi |= 1 << (crc & 0x1f);
1450 else
1451 emac_hashlo |= 1 << (crc & 0x1f);
1452 }
1453
1454 bfin_write_EMAC_HASHHI(emac_hashhi);
1455 bfin_write_EMAC_HASHLO(emac_hashlo);
Aidan Williams775919b2008-01-30 16:52:23 +08001456}
1457
Bryan Wue190d6b2007-07-17 14:43:44 +08001458/*
Bryan Wue190d6b2007-07-17 14:43:44 +08001459 * This routine will, depending on the values passed to it,
1460 * either make it accept multicast packets, go into
1461 * promiscuous mode (for TCPDUMP and cousins) or accept
1462 * a select set of multicast packets
1463 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001464static void bfin_mac_set_multicast_list(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001465{
1466 u32 sysctl;
1467
1468 if (dev->flags & IFF_PROMISC) {
Mike Frysingerc6dd5092011-01-10 02:54:29 +00001469 netdev_info(dev, "set promisc mode\n");
Bryan Wue190d6b2007-07-17 14:43:44 +08001470 sysctl = bfin_read_EMAC_OPMODE();
Sonic Zhangc0da7762010-05-10 05:39:12 +00001471 sysctl |= PR;
Bryan Wue190d6b2007-07-17 14:43:44 +08001472 bfin_write_EMAC_OPMODE(sysctl);
Aidan Williams775919b2008-01-30 16:52:23 +08001473 } else if (dev->flags & IFF_ALLMULTI) {
Bryan Wue190d6b2007-07-17 14:43:44 +08001474 /* accept all multicast */
1475 sysctl = bfin_read_EMAC_OPMODE();
1476 sysctl |= PAM;
1477 bfin_write_EMAC_OPMODE(sysctl);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001478 } else if (!netdev_mc_empty(dev)) {
Aidan Williams775919b2008-01-30 16:52:23 +08001479 /* set up multicast hash table */
1480 sysctl = bfin_read_EMAC_OPMODE();
1481 sysctl |= HM;
1482 bfin_write_EMAC_OPMODE(sysctl);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001483 bfin_mac_multicast_hash(dev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001484 } else {
1485 /* clear promisc or multicast mode */
1486 sysctl = bfin_read_EMAC_OPMODE();
1487 sysctl &= ~(RAF | PAM);
1488 bfin_write_EMAC_OPMODE(sysctl);
1489 }
1490}
1491
Barry Songfe92afe2010-05-17 17:19:40 -07001492static int bfin_mac_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
1493{
Sonic Zhang02460d02010-06-11 10:44:22 +00001494 struct bfin_mac_local *lp = netdev_priv(netdev);
1495
1496 if (!netif_running(netdev))
1497 return -EINVAL;
1498
Barry Songfe92afe2010-05-17 17:19:40 -07001499 switch (cmd) {
1500 case SIOCSHWTSTAMP:
1501 return bfin_mac_hwtstamp_ioctl(netdev, ifr, cmd);
1502 default:
Sonic Zhang02460d02010-06-11 10:44:22 +00001503 if (lp->phydev)
1504 return phy_mii_ioctl(lp->phydev, ifr, cmd);
1505 else
1506 return -EOPNOTSUPP;
Barry Songfe92afe2010-05-17 17:19:40 -07001507 }
1508}
1509
Bryan Wue190d6b2007-07-17 14:43:44 +08001510/*
1511 * this puts the device in an inactive state
1512 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001513static void bfin_mac_shutdown(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001514{
1515 /* Turn off the EMAC */
1516 bfin_write_EMAC_OPMODE(0x00000000);
1517 /* Turn off the EMAC RX DMA */
1518 bfin_write_DMA1_CONFIG(0x0000);
1519 bfin_write_DMA2_CONFIG(0x0000);
1520}
1521
1522/*
1523 * Open and Initialize the interface
1524 *
1525 * Set up everything, reset the card, etc..
1526 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001527static int bfin_mac_open(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001528{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001529 struct bfin_mac_local *lp = netdev_priv(dev);
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001530 int ret;
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001531 pr_debug("%s: %s\n", dev->name, __func__);
Bryan Wue190d6b2007-07-17 14:43:44 +08001532
1533 /*
1534 * Check that the address is valid. If its not, refuse
1535 * to bring the device up. The user must specify an
1536 * address using ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx
1537 */
1538 if (!is_valid_ether_addr(dev->dev_addr)) {
Mike Frysingerc6dd5092011-01-10 02:54:29 +00001539 netdev_warn(dev, "no valid ethernet hw addr\n");
Bryan Wue190d6b2007-07-17 14:43:44 +08001540 return -EINVAL;
1541 }
1542
1543 /* initial rx and tx list */
Pradeep A. Dalvi1ab0d2e2012-02-06 11:16:48 +00001544 ret = desc_list_init(dev);
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001545 if (ret)
1546 return ret;
Bryan Wue190d6b2007-07-17 14:43:44 +08001547
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001548 phy_start(lp->phydev);
Vitja Makarov136492b2008-01-30 16:52:26 +08001549 phy_write(lp->phydev, MII_BMCR, BMCR_RESET);
Bryan Wue190d6b2007-07-17 14:43:44 +08001550 setup_system_regs(dev);
Michael Hennerichee02fee2008-07-27 22:45:05 +08001551 setup_mac_addr(dev->dev_addr);
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001552
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001553 bfin_mac_disable();
Sonic Zhang02460d02010-06-11 10:44:22 +00001554 ret = bfin_mac_enable(lp->phydev);
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001555 if (ret)
1556 return ret;
Bryan Wue190d6b2007-07-17 14:43:44 +08001557 pr_debug("hardware init finished\n");
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001558
Bryan Wue190d6b2007-07-17 14:43:44 +08001559 netif_start_queue(dev);
1560 netif_carrier_on(dev);
1561
1562 return 0;
1563}
1564
1565/*
Bryan Wue190d6b2007-07-17 14:43:44 +08001566 * this makes the board clean up everything that it can
1567 * and not talk to the outside world. Caused by
1568 * an 'ifconfig ethX down'
1569 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001570static int bfin_mac_close(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001571{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001572 struct bfin_mac_local *lp = netdev_priv(dev);
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001573 pr_debug("%s: %s\n", dev->name, __func__);
Bryan Wue190d6b2007-07-17 14:43:44 +08001574
1575 netif_stop_queue(dev);
1576 netif_carrier_off(dev);
1577
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001578 phy_stop(lp->phydev);
Vitja Makarov136492b2008-01-30 16:52:26 +08001579 phy_write(lp->phydev, MII_BMCR, BMCR_PDOWN);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001580
Bryan Wue190d6b2007-07-17 14:43:44 +08001581 /* clear everything */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001582 bfin_mac_shutdown(dev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001583
1584 /* free the rx/tx buffers */
1585 desc_list_free();
1586
1587 return 0;
1588}
1589
Mike Frysingerb63dc8f2009-05-26 20:55:33 -07001590static const struct net_device_ops bfin_mac_netdev_ops = {
1591 .ndo_open = bfin_mac_open,
1592 .ndo_stop = bfin_mac_close,
1593 .ndo_start_xmit = bfin_mac_hard_start_xmit,
1594 .ndo_set_mac_address = bfin_mac_set_mac_address,
1595 .ndo_tx_timeout = bfin_mac_timeout,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001596 .ndo_set_rx_mode = bfin_mac_set_multicast_list,
Barry Songfe92afe2010-05-17 17:19:40 -07001597 .ndo_do_ioctl = bfin_mac_ioctl,
Mike Frysingerb63dc8f2009-05-26 20:55:33 -07001598 .ndo_validate_addr = eth_validate_addr,
1599 .ndo_change_mtu = eth_change_mtu,
1600#ifdef CONFIG_NET_POLL_CONTROLLER
1601 .ndo_poll_controller = bfin_mac_poll,
1602#endif
1603};
1604
Bill Pemberton49f73152012-12-03 09:22:54 -05001605static int bfin_mac_probe(struct platform_device *pdev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001606{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001607 struct net_device *ndev;
1608 struct bfin_mac_local *lp;
Graf Yang080c8252009-05-29 03:41:48 +00001609 struct platform_device *pd;
Sonic Zhang02460d02010-06-11 10:44:22 +00001610 struct bfin_mii_bus_platform_data *mii_bus_data;
Graf Yang080c8252009-05-29 03:41:48 +00001611 int rc;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001612
1613 ndev = alloc_etherdev(sizeof(struct bfin_mac_local));
Joe Perches41de8d42012-01-29 13:47:52 +00001614 if (!ndev)
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001615 return -ENOMEM;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001616
1617 SET_NETDEV_DEV(ndev, &pdev->dev);
1618 platform_set_drvdata(pdev, ndev);
1619 lp = netdev_priv(ndev);
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001620 lp->ndev = ndev;
Bryan Wue190d6b2007-07-17 14:43:44 +08001621
1622 /* Grab the MAC address in the MAC */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001623 *(__le32 *) (&(ndev->dev_addr[0])) = cpu_to_le32(bfin_read_EMAC_ADDRLO());
1624 *(__le16 *) (&(ndev->dev_addr[4])) = cpu_to_le16((u16) bfin_read_EMAC_ADDRHI());
Bryan Wue190d6b2007-07-17 14:43:44 +08001625
1626 /* probe mac */
1627 /*todo: how to proble? which is revision_register */
1628 bfin_write_EMAC_ADDRLO(0x12345678);
1629 if (bfin_read_EMAC_ADDRLO() != 0x12345678) {
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001630 dev_err(&pdev->dev, "Cannot detect Blackfin on-chip ethernet MAC controller!\n");
1631 rc = -ENODEV;
1632 goto out_err_probe_mac;
Bryan Wue190d6b2007-07-17 14:43:44 +08001633 }
1634
Bryan Wue190d6b2007-07-17 14:43:44 +08001635
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001636 /*
1637 * Is it valid? (Did bootloader initialize it?)
1638 * Grab the MAC from the board somehow
1639 * this is done in the arch/blackfin/mach-bfxxx/boards/eth_mac.c
1640 */
Danny Kukawka5055d2f2012-02-16 07:09:31 +00001641 if (!is_valid_ether_addr(ndev->dev_addr)) {
1642 if (bfin_get_ether_addr(ndev->dev_addr) ||
1643 !is_valid_ether_addr(ndev->dev_addr)) {
1644 /* Still not valid, get a random one */
1645 netdev_warn(ndev, "Setting Ethernet MAC to a random one\n");
1646 eth_hw_addr_random(ndev);
1647 }
1648 }
Bryan Wue190d6b2007-07-17 14:43:44 +08001649
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001650 setup_mac_addr(ndev->dev_addr);
Bryan Wue190d6b2007-07-17 14:43:44 +08001651
Graf Yang080c8252009-05-29 03:41:48 +00001652 if (!pdev->dev.platform_data) {
1653 dev_err(&pdev->dev, "Cannot get platform device bfin_mii_bus!\n");
1654 rc = -ENODEV;
1655 goto out_err_probe_mac;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001656 }
Graf Yang080c8252009-05-29 03:41:48 +00001657 pd = pdev->dev.platform_data;
1658 lp->mii_bus = platform_get_drvdata(pd);
Sonic Zhang0e995cd2010-05-10 05:39:14 +00001659 if (!lp->mii_bus) {
1660 dev_err(&pdev->dev, "Cannot get mii_bus!\n");
1661 rc = -ENODEV;
Sonic Zhang02460d02010-06-11 10:44:22 +00001662 goto out_err_probe_mac;
Sonic Zhang0e995cd2010-05-10 05:39:14 +00001663 }
Graf Yang080c8252009-05-29 03:41:48 +00001664 lp->mii_bus->priv = ndev;
Sonic Zhang02460d02010-06-11 10:44:22 +00001665 mii_bus_data = pd->dev.platform_data;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001666
Sonic Zhang02460d02010-06-11 10:44:22 +00001667 rc = mii_probe(ndev, mii_bus_data->phy_mode);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001668 if (rc) {
1669 dev_err(&pdev->dev, "MII Probe failed!\n");
1670 goto out_err_mii_probe;
1671 }
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001672
Mike Frysingerc599bd62011-01-10 02:54:32 +00001673 lp->vlan1_mask = ETH_P_8021Q | mii_bus_data->vlan1_mask;
1674 lp->vlan2_mask = ETH_P_8021Q | mii_bus_data->vlan2_mask;
1675
Bryan Wue190d6b2007-07-17 14:43:44 +08001676 /* Fill in the fields of the device structure with ethernet values. */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001677 ether_setup(ndev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001678
Alexander Beregalov149da652009-04-14 18:30:24 +00001679 ndev->netdev_ops = &bfin_mac_netdev_ops;
Bryan Wu679dce32008-04-25 11:53:11 +08001680 ndev->ethtool_ops = &bfin_mac_ethtool_ops;
Bryan Wue190d6b2007-07-17 14:43:44 +08001681
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001682 init_timer(&lp->tx_reclaim_timer);
1683 lp->tx_reclaim_timer.data = (unsigned long)lp;
1684 lp->tx_reclaim_timer.function = tx_reclaim_skb_timeout;
1685
Bryan Wue190d6b2007-07-17 14:43:44 +08001686 spin_lock_init(&lp->lock);
1687
1688 /* now, enable interrupts */
1689 /* register irq handler */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001690 rc = request_irq(IRQ_MAC_RX, bfin_mac_interrupt,
Michael Hennerich91a455f2009-05-29 03:39:45 +00001691 IRQF_DISABLED, "EMAC_RX", ndev);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001692 if (rc) {
1693 dev_err(&pdev->dev, "Cannot request Blackfin MAC RX IRQ!\n");
1694 rc = -EBUSY;
1695 goto out_err_request_irq;
Bryan Wue190d6b2007-07-17 14:43:44 +08001696 }
1697
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001698 rc = register_netdev(ndev);
1699 if (rc) {
1700 dev_err(&pdev->dev, "Cannot register net device!\n");
1701 goto out_err_reg_ndev;
Bryan Wue190d6b2007-07-17 14:43:44 +08001702 }
1703
Barry Songfe92afe2010-05-17 17:19:40 -07001704 bfin_mac_hwtstamp_init(ndev);
Richard Cochrandd87b222012-10-31 06:27:24 +00001705 if (bfin_phc_init(ndev, &pdev->dev)) {
1706 dev_err(&pdev->dev, "Cannot register PHC device!\n");
1707 goto out_err_phc;
1708 }
Barry Songfe92afe2010-05-17 17:19:40 -07001709
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001710 /* now, print out the card info, in a short format.. */
Mike Frysingerc6dd5092011-01-10 02:54:29 +00001711 netdev_info(ndev, "%s, Version %s\n", DRV_DESC, DRV_VERSION);
Bryan Wue190d6b2007-07-17 14:43:44 +08001712
1713 return 0;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001714
Richard Cochrandd87b222012-10-31 06:27:24 +00001715out_err_phc:
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001716out_err_reg_ndev:
1717 free_irq(IRQ_MAC_RX, ndev);
1718out_err_request_irq:
1719out_err_mii_probe:
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001720 mdiobus_unregister(lp->mii_bus);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001721 mdiobus_free(lp->mii_bus);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001722out_err_probe_mac:
1723 platform_set_drvdata(pdev, NULL);
1724 free_netdev(ndev);
1725
1726 return rc;
Bryan Wue190d6b2007-07-17 14:43:44 +08001727}
1728
Bill Pemberton49f73152012-12-03 09:22:54 -05001729static int bfin_mac_remove(struct platform_device *pdev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001730{
1731 struct net_device *ndev = platform_get_drvdata(pdev);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001732 struct bfin_mac_local *lp = netdev_priv(ndev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001733
Richard Cochrandd87b222012-10-31 06:27:24 +00001734 bfin_phc_release(lp);
1735
Bryan Wue190d6b2007-07-17 14:43:44 +08001736 platform_set_drvdata(pdev, NULL);
1737
Graf Yang080c8252009-05-29 03:41:48 +00001738 lp->mii_bus->priv = NULL;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001739
Bryan Wue190d6b2007-07-17 14:43:44 +08001740 unregister_netdev(ndev);
1741
1742 free_irq(IRQ_MAC_RX, ndev);
1743
1744 free_netdev(ndev);
1745
Bryan Wue190d6b2007-07-17 14:43:44 +08001746 return 0;
1747}
1748
Bryan Wu496a34c2007-09-19 23:37:14 +08001749#ifdef CONFIG_PM
1750static int bfin_mac_suspend(struct platform_device *pdev, pm_message_t mesg)
Bryan Wue190d6b2007-07-17 14:43:44 +08001751{
Bryan Wu496a34c2007-09-19 23:37:14 +08001752 struct net_device *net_dev = platform_get_drvdata(pdev);
Michael Hennerich53fd3f22010-05-10 05:39:11 +00001753 struct bfin_mac_local *lp = netdev_priv(net_dev);
Bryan Wu496a34c2007-09-19 23:37:14 +08001754
Michael Hennerich53fd3f22010-05-10 05:39:11 +00001755 if (lp->wol) {
1756 bfin_write_EMAC_OPMODE((bfin_read_EMAC_OPMODE() & ~TE) | RE);
1757 bfin_write_EMAC_WKUP_CTL(MPKE);
1758 enable_irq_wake(IRQ_MAC_WAKEDET);
1759 } else {
1760 if (netif_running(net_dev))
1761 bfin_mac_close(net_dev);
1762 }
Bryan Wu496a34c2007-09-19 23:37:14 +08001763
Bryan Wue190d6b2007-07-17 14:43:44 +08001764 return 0;
1765}
1766
1767static int bfin_mac_resume(struct platform_device *pdev)
1768{
Bryan Wu496a34c2007-09-19 23:37:14 +08001769 struct net_device *net_dev = platform_get_drvdata(pdev);
Michael Hennerich53fd3f22010-05-10 05:39:11 +00001770 struct bfin_mac_local *lp = netdev_priv(net_dev);
Bryan Wu496a34c2007-09-19 23:37:14 +08001771
Michael Hennerich53fd3f22010-05-10 05:39:11 +00001772 if (lp->wol) {
1773 bfin_write_EMAC_OPMODE(bfin_read_EMAC_OPMODE() | TE);
1774 bfin_write_EMAC_WKUP_CTL(0);
1775 disable_irq_wake(IRQ_MAC_WAKEDET);
1776 } else {
1777 if (netif_running(net_dev))
1778 bfin_mac_open(net_dev);
1779 }
Bryan Wu496a34c2007-09-19 23:37:14 +08001780
Bryan Wue190d6b2007-07-17 14:43:44 +08001781 return 0;
1782}
Bryan Wu496a34c2007-09-19 23:37:14 +08001783#else
1784#define bfin_mac_suspend NULL
1785#define bfin_mac_resume NULL
1786#endif /* CONFIG_PM */
Bryan Wue190d6b2007-07-17 14:43:44 +08001787
Bill Pemberton49f73152012-12-03 09:22:54 -05001788static int bfin_mii_bus_probe(struct platform_device *pdev)
Graf Yang080c8252009-05-29 03:41:48 +00001789{
1790 struct mii_bus *miibus;
Sonic Zhang02460d02010-06-11 10:44:22 +00001791 struct bfin_mii_bus_platform_data *mii_bus_pd;
1792 const unsigned short *pin_req;
Graf Yang080c8252009-05-29 03:41:48 +00001793 int rc, i;
1794
Sonic Zhang02460d02010-06-11 10:44:22 +00001795 mii_bus_pd = dev_get_platdata(&pdev->dev);
1796 if (!mii_bus_pd) {
1797 dev_err(&pdev->dev, "No peripherals in platform data!\n");
1798 return -EINVAL;
1799 }
1800
Graf Yang080c8252009-05-29 03:41:48 +00001801 /*
1802 * We are setting up a network card,
1803 * so set the GPIO pins to Ethernet mode
1804 */
Sonic Zhang02460d02010-06-11 10:44:22 +00001805 pin_req = mii_bus_pd->mac_peripherals;
Mike Frysingerc6dd5092011-01-10 02:54:29 +00001806 rc = peripheral_request_list(pin_req, KBUILD_MODNAME);
Graf Yang080c8252009-05-29 03:41:48 +00001807 if (rc) {
1808 dev_err(&pdev->dev, "Requesting peripherals failed!\n");
1809 return rc;
1810 }
1811
1812 rc = -ENOMEM;
1813 miibus = mdiobus_alloc();
1814 if (miibus == NULL)
1815 goto out_err_alloc;
1816 miibus->read = bfin_mdiobus_read;
1817 miibus->write = bfin_mdiobus_write;
1818 miibus->reset = bfin_mdiobus_reset;
1819
1820 miibus->parent = &pdev->dev;
1821 miibus->name = "bfin_mii_bus";
Sonic Zhang02460d02010-06-11 10:44:22 +00001822 miibus->phy_mask = mii_bus_pd->phy_mask;
1823
Florian Fainelli75432fd2012-01-09 23:59:08 +00001824 snprintf(miibus->id, MII_BUS_ID_SIZE, "%s-%x",
1825 pdev->name, pdev->id);
Graf Yang080c8252009-05-29 03:41:48 +00001826 miibus->irq = kmalloc(sizeof(int)*PHY_MAX_ADDR, GFP_KERNEL);
Sonic Zhang02460d02010-06-11 10:44:22 +00001827 if (!miibus->irq)
1828 goto out_err_irq_alloc;
1829
1830 for (i = rc; i < PHY_MAX_ADDR; ++i)
Graf Yang080c8252009-05-29 03:41:48 +00001831 miibus->irq[i] = PHY_POLL;
1832
Sonic Zhang02460d02010-06-11 10:44:22 +00001833 rc = clamp(mii_bus_pd->phydev_number, 0, PHY_MAX_ADDR);
1834 if (rc != mii_bus_pd->phydev_number)
1835 dev_err(&pdev->dev, "Invalid number (%i) of phydevs\n",
1836 mii_bus_pd->phydev_number);
1837 for (i = 0; i < rc; ++i) {
1838 unsigned short phyaddr = mii_bus_pd->phydev_data[i].addr;
1839 if (phyaddr < PHY_MAX_ADDR)
1840 miibus->irq[phyaddr] = mii_bus_pd->phydev_data[i].irq;
1841 else
1842 dev_err(&pdev->dev,
1843 "Invalid PHY address %i for phydev %i\n",
1844 phyaddr, i);
1845 }
1846
Graf Yang080c8252009-05-29 03:41:48 +00001847 rc = mdiobus_register(miibus);
1848 if (rc) {
1849 dev_err(&pdev->dev, "Cannot register MDIO bus!\n");
1850 goto out_err_mdiobus_register;
1851 }
1852
1853 platform_set_drvdata(pdev, miibus);
1854 return 0;
1855
1856out_err_mdiobus_register:
Denis Kirjanov7f267de2010-05-18 01:34:46 +00001857 kfree(miibus->irq);
Sonic Zhang02460d02010-06-11 10:44:22 +00001858out_err_irq_alloc:
Graf Yang080c8252009-05-29 03:41:48 +00001859 mdiobus_free(miibus);
1860out_err_alloc:
1861 peripheral_free_list(pin_req);
1862
1863 return rc;
1864}
1865
Bill Pemberton49f73152012-12-03 09:22:54 -05001866static int bfin_mii_bus_remove(struct platform_device *pdev)
Graf Yang080c8252009-05-29 03:41:48 +00001867{
1868 struct mii_bus *miibus = platform_get_drvdata(pdev);
Sonic Zhang02460d02010-06-11 10:44:22 +00001869 struct bfin_mii_bus_platform_data *mii_bus_pd =
1870 dev_get_platdata(&pdev->dev);
1871
Graf Yang080c8252009-05-29 03:41:48 +00001872 platform_set_drvdata(pdev, NULL);
1873 mdiobus_unregister(miibus);
Denis Kirjanov7f267de2010-05-18 01:34:46 +00001874 kfree(miibus->irq);
Graf Yang080c8252009-05-29 03:41:48 +00001875 mdiobus_free(miibus);
Sonic Zhang02460d02010-06-11 10:44:22 +00001876 peripheral_free_list(mii_bus_pd->mac_peripherals);
1877
Graf Yang080c8252009-05-29 03:41:48 +00001878 return 0;
1879}
1880
1881static struct platform_driver bfin_mii_bus_driver = {
1882 .probe = bfin_mii_bus_probe,
Bill Pemberton49f73152012-12-03 09:22:54 -05001883 .remove = bfin_mii_bus_remove,
Graf Yang080c8252009-05-29 03:41:48 +00001884 .driver = {
1885 .name = "bfin_mii_bus",
1886 .owner = THIS_MODULE,
1887 },
1888};
1889
Bryan Wue190d6b2007-07-17 14:43:44 +08001890static struct platform_driver bfin_mac_driver = {
1891 .probe = bfin_mac_probe,
Bill Pemberton49f73152012-12-03 09:22:54 -05001892 .remove = bfin_mac_remove,
Bryan Wue190d6b2007-07-17 14:43:44 +08001893 .resume = bfin_mac_resume,
1894 .suspend = bfin_mac_suspend,
1895 .driver = {
Mike Frysingerc6dd5092011-01-10 02:54:29 +00001896 .name = KBUILD_MODNAME,
Kay Sievers72abb462008-04-18 13:50:44 -07001897 .owner = THIS_MODULE,
1898 },
Bryan Wue190d6b2007-07-17 14:43:44 +08001899};
1900
1901static int __init bfin_mac_init(void)
1902{
Graf Yang080c8252009-05-29 03:41:48 +00001903 int ret;
1904 ret = platform_driver_register(&bfin_mii_bus_driver);
1905 if (!ret)
1906 return platform_driver_register(&bfin_mac_driver);
1907 return -ENODEV;
Bryan Wue190d6b2007-07-17 14:43:44 +08001908}
1909
1910module_init(bfin_mac_init);
1911
1912static void __exit bfin_mac_cleanup(void)
1913{
1914 platform_driver_unregister(&bfin_mac_driver);
Graf Yang080c8252009-05-29 03:41:48 +00001915 platform_driver_unregister(&bfin_mii_bus_driver);
Bryan Wue190d6b2007-07-17 14:43:44 +08001916}
1917
1918module_exit(bfin_mac_cleanup);
Kay Sievers72abb462008-04-18 13:50:44 -07001919