blob: ed5c78cb723935e802075461204ff0ee4ca1b8ea [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);
Joe Perches720a43e2013-03-08 15:03:25 +0000191 if (!new_skb)
Bryan Wue190d6b2007-07-17 14:43:44 +0800192 goto init_error;
Joe Perches720a43e2013-03-08 15:03:25 +0000193
Michael Hennerich015dac82009-05-29 03:41:15 +0000194 skb_reserve(new_skb, NET_IP_ALIGN);
Sonic Zhangf6e1e4f2010-05-10 05:39:08 +0000195 /* Invidate the data cache of skb->data range when it is write back
196 * cache. It will prevent overwritting the new data from DMA
197 */
198 blackfin_dcache_invalidate_range((unsigned long)new_skb->head,
199 (unsigned long)new_skb->end);
Bryan Wue190d6b2007-07-17 14:43:44 +0800200 r->skb = new_skb;
201
202 /*
203 * enabled DMA
204 * write to memory WNR = 1
205 * wordsize is 32 bits
206 * disable interrupt
207 * 6 half words is desc size
208 * large desc flow
209 */
210 a->config = DMAEN | WNR | WDSIZE_32 | NDSIZE_6 | DMAFLOW_LARGE;
211 /* since RXDWA is enabled */
212 a->start_addr = (unsigned long)new_skb->data - 2;
213 a->x_count = 0;
214 a->next_dma_desc = b;
215
216 /*
217 * enabled DMA
218 * write to memory WNR = 1
219 * wordsize is 32 bits
220 * enable interrupt
221 * 6 half words is desc size
222 * large desc flow
223 */
224 b->config = DMAEN | WNR | WDSIZE_32 | DI_EN |
225 NDSIZE_6 | DMAFLOW_LARGE;
226 b->start_addr = (unsigned long)(&(r->status));
227 b->x_count = 0;
228
229 rx_list_tail->desc_b.next_dma_desc = a;
230 rx_list_tail->next = r;
231 rx_list_tail = r;
232 }
233 rx_list_tail->next = rx_list_head; /* rx_list is a circle */
234 rx_list_tail->desc_b.next_dma_desc = &(rx_list_head->desc_a);
235 current_rx_ptr = rx_list_head;
236
237 return 0;
238
239init_error:
240 desc_list_free();
Mike Frysingerc6dd5092011-01-10 02:54:29 +0000241 pr_err("kmalloc failed\n");
Bryan Wue190d6b2007-07-17 14:43:44 +0800242 return -ENOMEM;
243}
244
245
246/*---PHY CONTROL AND CONFIGURATION-----------------------------------------*/
247
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800248/*
249 * MII operations
250 */
Bryan Wue190d6b2007-07-17 14:43:44 +0800251/* Wait until the previous MDC/MDIO transaction has completed */
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000252static int bfin_mdio_poll(void)
Bryan Wue190d6b2007-07-17 14:43:44 +0800253{
254 int timeout_cnt = MAX_TIMEOUT_CNT;
255
256 /* poll the STABUSY bit */
257 while ((bfin_read_EMAC_STAADD()) & STABUSY) {
Bryan Wu6db9e462008-01-30 16:52:21 +0800258 udelay(1);
Bryan Wue190d6b2007-07-17 14:43:44 +0800259 if (timeout_cnt-- < 0) {
Mike Frysingerc6dd5092011-01-10 02:54:29 +0000260 pr_err("wait MDC/MDIO transaction to complete timeout\n");
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000261 return -ETIMEDOUT;
Bryan Wue190d6b2007-07-17 14:43:44 +0800262 }
263 }
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000264
265 return 0;
Bryan Wue190d6b2007-07-17 14:43:44 +0800266}
267
268/* Read an off-chip register in a PHY through the MDC/MDIO port */
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700269static int bfin_mdiobus_read(struct mii_bus *bus, int phy_addr, int regnum)
Bryan Wue190d6b2007-07-17 14:43:44 +0800270{
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000271 int ret;
272
273 ret = bfin_mdio_poll();
274 if (ret)
275 return ret;
Bryan Wue190d6b2007-07-17 14:43:44 +0800276
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800277 /* read mode */
278 bfin_write_EMAC_STAADD(SET_PHYAD((u16) phy_addr) |
279 SET_REGAD((u16) regnum) |
280 STABUSY);
281
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000282 ret = bfin_mdio_poll();
283 if (ret)
284 return ret;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800285
286 return (int) bfin_read_EMAC_STADAT();
Bryan Wue190d6b2007-07-17 14:43:44 +0800287}
288
289/* Write an off-chip register in a PHY through the MDC/MDIO port */
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700290static int bfin_mdiobus_write(struct mii_bus *bus, int phy_addr, int regnum,
291 u16 value)
Bryan Wue190d6b2007-07-17 14:43:44 +0800292{
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000293 int ret;
294
295 ret = bfin_mdio_poll();
296 if (ret)
297 return ret;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800298
299 bfin_write_EMAC_STADAT((u32) value);
Bryan Wue190d6b2007-07-17 14:43:44 +0800300
301 /* write mode */
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800302 bfin_write_EMAC_STAADD(SET_PHYAD((u16) phy_addr) |
303 SET_REGAD((u16) regnum) |
Bryan Wue190d6b2007-07-17 14:43:44 +0800304 STAOP |
305 STABUSY);
306
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000307 return bfin_mdio_poll();
Bryan Wue190d6b2007-07-17 14:43:44 +0800308}
309
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800310static void bfin_mac_adjust_link(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +0800311{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800312 struct bfin_mac_local *lp = netdev_priv(dev);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800313 struct phy_device *phydev = lp->phydev;
314 unsigned long flags;
315 int new_state = 0;
Bryan Wue190d6b2007-07-17 14:43:44 +0800316
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800317 spin_lock_irqsave(&lp->lock, flags);
318 if (phydev->link) {
319 /* Now we make sure that we can be in full duplex mode.
320 * If not, we operate in half-duplex mode. */
321 if (phydev->duplex != lp->old_duplex) {
322 u32 opmode = bfin_read_EMAC_OPMODE();
323 new_state = 1;
Bryan Wue190d6b2007-07-17 14:43:44 +0800324
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800325 if (phydev->duplex)
326 opmode |= FDMODE;
327 else
328 opmode &= ~(FDMODE);
Bryan Wue190d6b2007-07-17 14:43:44 +0800329
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800330 bfin_write_EMAC_OPMODE(opmode);
331 lp->old_duplex = phydev->duplex;
332 }
Bryan Wue190d6b2007-07-17 14:43:44 +0800333
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800334 if (phydev->speed != lp->old_speed) {
Sonic Zhang02460d02010-06-11 10:44:22 +0000335 if (phydev->interface == PHY_INTERFACE_MODE_RMII) {
336 u32 opmode = bfin_read_EMAC_OPMODE();
337 switch (phydev->speed) {
338 case 10:
339 opmode |= RMII_10;
340 break;
341 case 100:
342 opmode &= ~RMII_10;
343 break;
344 default:
Mike Frysingerc6dd5092011-01-10 02:54:29 +0000345 netdev_warn(dev,
346 "Ack! Speed (%d) is not 10/100!\n",
347 phydev->speed);
Sonic Zhang02460d02010-06-11 10:44:22 +0000348 break;
349 }
350 bfin_write_EMAC_OPMODE(opmode);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800351 }
Bryan Wue190d6b2007-07-17 14:43:44 +0800352
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800353 new_state = 1;
354 lp->old_speed = phydev->speed;
355 }
Bryan Wue190d6b2007-07-17 14:43:44 +0800356
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800357 if (!lp->old_link) {
358 new_state = 1;
359 lp->old_link = 1;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800360 }
361 } else if (lp->old_link) {
362 new_state = 1;
363 lp->old_link = 0;
364 lp->old_speed = 0;
365 lp->old_duplex = -1;
Bryan Wue190d6b2007-07-17 14:43:44 +0800366 }
367
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800368 if (new_state) {
369 u32 opmode = bfin_read_EMAC_OPMODE();
370 phy_print_status(phydev);
371 pr_debug("EMAC_OPMODE = 0x%08x\n", opmode);
Bryan Wue190d6b2007-07-17 14:43:44 +0800372 }
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800373
374 spin_unlock_irqrestore(&lp->lock, flags);
375}
376
Bryan Wu7cc8f382008-01-30 16:52:22 +0800377/* MDC = 2.5 MHz */
378#define MDC_CLK 2500000
379
Sonic Zhang02460d02010-06-11 10:44:22 +0000380static int mii_probe(struct net_device *dev, int phy_mode)
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800381{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800382 struct bfin_mac_local *lp = netdev_priv(dev);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800383 struct phy_device *phydev = NULL;
384 unsigned short sysctl;
385 int i;
Bryan Wu7cc8f382008-01-30 16:52:22 +0800386 u32 sclk, mdc_div;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800387
388 /* Enable PHY output early */
Mike Frysinger98f672c2010-01-18 21:14:12 +0000389 if (!(bfin_read_VR_CTL() & CLKBUFOE))
390 bfin_write_VR_CTL(bfin_read_VR_CTL() | CLKBUFOE);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800391
Bryan Wu7cc8f382008-01-30 16:52:22 +0800392 sclk = get_sclk();
393 mdc_div = ((sclk / MDC_CLK) / 2) - 1;
394
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800395 sysctl = bfin_read_EMAC_SYSCTL();
Bryan Wu9dc7f302008-01-30 16:52:28 +0800396 sysctl = (sysctl & ~MDCDIV) | SET_MDCDIV(mdc_div);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800397 bfin_write_EMAC_SYSCTL(sysctl);
398
Sonic Zhang02460d02010-06-11 10:44:22 +0000399 /* search for connected PHY device */
400 for (i = 0; i < PHY_MAX_ADDR; ++i) {
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700401 struct phy_device *const tmp_phydev = lp->mii_bus->phy_map[i];
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800402
403 if (!tmp_phydev)
404 continue; /* no PHY here... */
405
406 phydev = tmp_phydev;
407 break; /* found it */
408 }
409
410 /* now we are supposed to have a proper phydev, to attach to... */
411 if (!phydev) {
Mike Frysingerc6dd5092011-01-10 02:54:29 +0000412 netdev_err(dev, "no phy device found\n");
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800413 return -ENODEV;
414 }
415
Sonic Zhang02460d02010-06-11 10:44:22 +0000416 if (phy_mode != PHY_INTERFACE_MODE_RMII &&
417 phy_mode != PHY_INTERFACE_MODE_MII) {
Mike Frysingerc6dd5092011-01-10 02:54:29 +0000418 netdev_err(dev, "invalid phy interface mode\n");
Sonic Zhang02460d02010-06-11 10:44:22 +0000419 return -EINVAL;
420 }
421
Andrew Lunn84eff6d2016-01-06 20:11:10 +0100422 phydev = phy_connect(dev, phydev_name(phydev),
Florian Fainellif9a8f832013-01-14 00:52:52 +0000423 &bfin_mac_adjust_link, phy_mode);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800424
425 if (IS_ERR(phydev)) {
Mike Frysingerc6dd5092011-01-10 02:54:29 +0000426 netdev_err(dev, "could not attach PHY\n");
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800427 return PTR_ERR(phydev);
428 }
429
430 /* mask with MAC supported features */
431 phydev->supported &= (SUPPORTED_10baseT_Half
432 | SUPPORTED_10baseT_Full
433 | SUPPORTED_100baseT_Half
434 | SUPPORTED_100baseT_Full
435 | SUPPORTED_Autoneg
436 | SUPPORTED_Pause | SUPPORTED_Asym_Pause
437 | SUPPORTED_MII
438 | SUPPORTED_TP);
439
440 phydev->advertising = phydev->supported;
441
442 lp->old_link = 0;
443 lp->old_speed = 0;
444 lp->old_duplex = -1;
445 lp->phydev = phydev;
446
Andrew Lunn22209432016-01-06 20:11:13 +0100447 phy_attached_print(phydev, "mdc_clk=%dHz(mdc_div=%d)@sclk=%dMHz)\n",
448 MDC_CLK, mdc_div, sclk / 1000000);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800449
450 return 0;
Bryan Wue190d6b2007-07-17 14:43:44 +0800451}
452
Bryan Wu679dce32008-04-25 11:53:11 +0800453/*
454 * Ethtool support
455 */
456
Michael Hennerich53fd3f22010-05-10 05:39:11 +0000457/*
458 * interrupt routine for magic packet wakeup
459 */
460static irqreturn_t bfin_mac_wake_interrupt(int irq, void *dev_id)
461{
462 return IRQ_HANDLED;
463}
464
Bryan Wu679dce32008-04-25 11:53:11 +0800465static int
466bfin_mac_ethtool_getsettings(struct net_device *dev, struct ethtool_cmd *cmd)
467{
468 struct bfin_mac_local *lp = netdev_priv(dev);
469
470 if (lp->phydev)
471 return phy_ethtool_gset(lp->phydev, cmd);
472
473 return -EINVAL;
474}
475
476static int
477bfin_mac_ethtool_setsettings(struct net_device *dev, struct ethtool_cmd *cmd)
478{
479 struct bfin_mac_local *lp = netdev_priv(dev);
480
481 if (!capable(CAP_NET_ADMIN))
482 return -EPERM;
483
484 if (lp->phydev)
485 return phy_ethtool_sset(lp->phydev, cmd);
486
487 return -EINVAL;
488}
489
490static void bfin_mac_ethtool_getdrvinfo(struct net_device *dev,
491 struct ethtool_drvinfo *info)
492{
Jiri Pirko7826d432013-01-06 00:44:26 +0000493 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
494 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
495 strlcpy(info->fw_version, "N/A", sizeof(info->fw_version));
496 strlcpy(info->bus_info, dev_name(&dev->dev), sizeof(info->bus_info));
Bryan Wu679dce32008-04-25 11:53:11 +0800497}
498
Michael Hennerich53fd3f22010-05-10 05:39:11 +0000499static void bfin_mac_ethtool_getwol(struct net_device *dev,
500 struct ethtool_wolinfo *wolinfo)
501{
502 struct bfin_mac_local *lp = netdev_priv(dev);
503
504 wolinfo->supported = WAKE_MAGIC;
505 wolinfo->wolopts = lp->wol;
506}
507
508static int bfin_mac_ethtool_setwol(struct net_device *dev,
509 struct ethtool_wolinfo *wolinfo)
510{
511 struct bfin_mac_local *lp = netdev_priv(dev);
512 int rc;
513
514 if (wolinfo->wolopts & (WAKE_MAGICSECURE |
515 WAKE_UCAST |
516 WAKE_MCAST |
517 WAKE_BCAST |
518 WAKE_ARP))
519 return -EOPNOTSUPP;
520
521 lp->wol = wolinfo->wolopts;
522
523 if (lp->wol && !lp->irq_wake_requested) {
524 /* register wake irq handler */
525 rc = request_irq(IRQ_MAC_WAKEDET, bfin_mac_wake_interrupt,
Michael Opdenacker63aca0f2013-09-12 05:35:43 +0200526 0, "EMAC_WAKE", dev);
Michael Hennerich53fd3f22010-05-10 05:39:11 +0000527 if (rc)
528 return rc;
529 lp->irq_wake_requested = true;
530 }
531
532 if (!lp->wol && lp->irq_wake_requested) {
533 free_irq(IRQ_MAC_WAKEDET, dev);
534 lp->irq_wake_requested = false;
535 }
536
537 /* Make sure the PHY driver doesn't suspend */
538 device_init_wakeup(&dev->dev, lp->wol);
539
540 return 0;
541}
542
Richard Cochran85c153d2012-10-31 06:27:22 +0000543#ifdef CONFIG_BFIN_MAC_USE_HWSTAMP
Richard Cochrana85bbdd2012-04-03 22:59:20 +0000544static int bfin_mac_ethtool_get_ts_info(struct net_device *dev,
David S. Miller3ffa4292012-04-06 00:17:50 -0400545 struct ethtool_ts_info *info)
Richard Cochrana85bbdd2012-04-03 22:59:20 +0000546{
Richard Cochrandd87b222012-10-31 06:27:24 +0000547 struct bfin_mac_local *lp = netdev_priv(dev);
548
Richard Cochrana85bbdd2012-04-03 22:59:20 +0000549 info->so_timestamping =
550 SOF_TIMESTAMPING_TX_HARDWARE |
551 SOF_TIMESTAMPING_RX_HARDWARE |
Richard Cochranbc3c5f62012-10-31 06:27:23 +0000552 SOF_TIMESTAMPING_RAW_HARDWARE;
Richard Cochrandd87b222012-10-31 06:27:24 +0000553 info->phc_index = lp->phc_index;
Richard Cochrana85bbdd2012-04-03 22:59:20 +0000554 info->tx_types =
555 (1 << HWTSTAMP_TX_OFF) |
556 (1 << HWTSTAMP_TX_ON);
557 info->rx_filters =
558 (1 << HWTSTAMP_FILTER_NONE) |
559 (1 << HWTSTAMP_FILTER_PTP_V1_L4_EVENT) |
560 (1 << HWTSTAMP_FILTER_PTP_V2_L2_EVENT) |
561 (1 << HWTSTAMP_FILTER_PTP_V2_L4_EVENT);
562 return 0;
563}
Richard Cochran85c153d2012-10-31 06:27:22 +0000564#endif
Richard Cochrana85bbdd2012-04-03 22:59:20 +0000565
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700566static const struct ethtool_ops bfin_mac_ethtool_ops = {
Bryan Wu679dce32008-04-25 11:53:11 +0800567 .get_settings = bfin_mac_ethtool_getsettings,
568 .set_settings = bfin_mac_ethtool_setsettings,
569 .get_link = ethtool_op_get_link,
570 .get_drvinfo = bfin_mac_ethtool_getdrvinfo,
Michael Hennerich53fd3f22010-05-10 05:39:11 +0000571 .get_wol = bfin_mac_ethtool_getwol,
572 .set_wol = bfin_mac_ethtool_setwol,
Richard Cochran85c153d2012-10-31 06:27:22 +0000573#ifdef CONFIG_BFIN_MAC_USE_HWSTAMP
Richard Cochrana85bbdd2012-04-03 22:59:20 +0000574 .get_ts_info = bfin_mac_ethtool_get_ts_info,
Richard Cochran85c153d2012-10-31 06:27:22 +0000575#endif
Bryan Wu679dce32008-04-25 11:53:11 +0800576};
577
Bryan Wue190d6b2007-07-17 14:43:44 +0800578/**************************************************************************/
Mike Frysinger5ca1bb52011-01-10 02:54:30 +0000579static void setup_system_regs(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +0800580{
Sonic Zhang02460d02010-06-11 10:44:22 +0000581 struct bfin_mac_local *lp = netdev_priv(dev);
582 int i;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800583 unsigned short sysctl;
Bryan Wue190d6b2007-07-17 14:43:44 +0800584
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800585 /*
586 * Odd word alignment for Receive Frame DMA word
587 * Configure checksum support and rcve frame word alignment
588 */
589 sysctl = bfin_read_EMAC_SYSCTL();
Sonic Zhang02460d02010-06-11 10:44:22 +0000590 /*
591 * check if interrupt is requested for any PHY,
592 * enable PHY interrupt only if needed
593 */
594 for (i = 0; i < PHY_MAX_ADDR; ++i)
595 if (lp->mii_bus->irq[i] != PHY_POLL)
596 break;
597 if (i < PHY_MAX_ADDR)
598 sysctl |= PHYIE;
Bryan Wue190d6b2007-07-17 14:43:44 +0800599 sysctl |= RXDWA;
Sonic Zhang812a9de2010-05-10 05:39:10 +0000600#if defined(BFIN_MAC_CSUM_OFFLOAD)
601 sysctl |= RXCKS;
602#else
603 sysctl &= ~RXCKS;
Bryan Wue190d6b2007-07-17 14:43:44 +0800604#endif
605 bfin_write_EMAC_SYSCTL(sysctl);
Bryan Wue190d6b2007-07-17 14:43:44 +0800606
607 bfin_write_EMAC_MMC_CTL(RSTC | CROLL);
608
Mike Frysingerc599bd62011-01-10 02:54:32 +0000609 /* Set vlan regs to let 1522 bytes long packets pass through */
610 bfin_write_EMAC_VLAN1(lp->vlan1_mask);
611 bfin_write_EMAC_VLAN2(lp->vlan2_mask);
612
Bryan Wue190d6b2007-07-17 14:43:44 +0800613 /* Initialize the TX DMA channel registers */
614 bfin_write_DMA2_X_COUNT(0);
615 bfin_write_DMA2_X_MODIFY(4);
616 bfin_write_DMA2_Y_COUNT(0);
617 bfin_write_DMA2_Y_MODIFY(0);
618
619 /* Initialize the RX DMA channel registers */
620 bfin_write_DMA1_X_COUNT(0);
621 bfin_write_DMA1_X_MODIFY(4);
622 bfin_write_DMA1_Y_COUNT(0);
623 bfin_write_DMA1_Y_MODIFY(0);
624}
625
Alex Landau73f83182007-09-19 23:14:18 +0800626static void setup_mac_addr(u8 *mac_addr)
Bryan Wue190d6b2007-07-17 14:43:44 +0800627{
628 u32 addr_low = le32_to_cpu(*(__le32 *) & mac_addr[0]);
629 u16 addr_hi = le16_to_cpu(*(__le16 *) & mac_addr[4]);
630
631 /* this depends on a little-endian machine */
632 bfin_write_EMAC_ADDRLO(addr_low);
633 bfin_write_EMAC_ADDRHI(addr_hi);
634}
635
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800636static int bfin_mac_set_mac_address(struct net_device *dev, void *p)
Alex Landau73f83182007-09-19 23:14:18 +0800637{
638 struct sockaddr *addr = p;
639 if (netif_running(dev))
640 return -EBUSY;
641 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
642 setup_mac_addr(dev->dev_addr);
643 return 0;
644}
645
Barry Songfe92afe2010-05-17 17:19:40 -0700646#ifdef CONFIG_BFIN_MAC_USE_HWSTAMP
647#define bfin_mac_hwtstamp_is_none(cfg) ((cfg) == HWTSTAMP_FILTER_NONE)
648
Richard Cochranbc3c5f62012-10-31 06:27:23 +0000649static u32 bfin_select_phc_clock(u32 input_clk, unsigned int *shift_result)
650{
651 u32 ipn = 1000000000UL / input_clk;
652 u32 ppn = 1;
653 unsigned int shift = 0;
654
655 while (ppn <= ipn) {
656 ppn <<= 1;
657 shift++;
658 }
659 *shift_result = shift;
660 return 1000000000UL / ppn;
661}
662
Ben Hutchings7575c912013-11-18 22:54:03 +0000663static int bfin_mac_hwtstamp_set(struct net_device *netdev,
664 struct ifreq *ifr)
Barry Songfe92afe2010-05-17 17:19:40 -0700665{
666 struct hwtstamp_config config;
667 struct bfin_mac_local *lp = netdev_priv(netdev);
668 u16 ptpctl;
669 u32 ptpfv1, ptpfv2, ptpfv3, ptpfoff;
670
671 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
672 return -EFAULT;
673
674 pr_debug("%s config flag:0x%x, tx_type:0x%x, rx_filter:0x%x\n",
675 __func__, config.flags, config.tx_type, config.rx_filter);
676
677 /* reserved for future extensions */
678 if (config.flags)
679 return -EINVAL;
680
681 if ((config.tx_type != HWTSTAMP_TX_OFF) &&
682 (config.tx_type != HWTSTAMP_TX_ON))
683 return -ERANGE;
684
685 ptpctl = bfin_read_EMAC_PTP_CTL();
686
687 switch (config.rx_filter) {
688 case HWTSTAMP_FILTER_NONE:
689 /*
690 * Dont allow any timestamping
691 */
692 ptpfv3 = 0xFFFFFFFF;
693 bfin_write_EMAC_PTP_FV3(ptpfv3);
694 break;
695 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
696 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
697 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
698 /*
699 * Clear the five comparison mask bits (bits[12:8]) in EMAC_PTP_CTL)
700 * to enable all the field matches.
701 */
702 ptpctl &= ~0x1F00;
703 bfin_write_EMAC_PTP_CTL(ptpctl);
704 /*
705 * Keep the default values of the EMAC_PTP_FOFF register.
706 */
707 ptpfoff = 0x4A24170C;
708 bfin_write_EMAC_PTP_FOFF(ptpfoff);
709 /*
710 * Keep the default values of the EMAC_PTP_FV1 and EMAC_PTP_FV2
711 * registers.
712 */
713 ptpfv1 = 0x11040800;
714 bfin_write_EMAC_PTP_FV1(ptpfv1);
715 ptpfv2 = 0x0140013F;
716 bfin_write_EMAC_PTP_FV2(ptpfv2);
717 /*
718 * The default value (0xFFFC) allows the timestamping of both
719 * received Sync messages and Delay_Req messages.
720 */
721 ptpfv3 = 0xFFFFFFFC;
722 bfin_write_EMAC_PTP_FV3(ptpfv3);
723
724 config.rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_EVENT;
725 break;
726 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
727 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
728 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
729 /* Clear all five comparison mask bits (bits[12:8]) in the
730 * EMAC_PTP_CTL register to enable all the field matches.
731 */
732 ptpctl &= ~0x1F00;
733 bfin_write_EMAC_PTP_CTL(ptpctl);
734 /*
735 * Keep the default values of the EMAC_PTP_FOFF register, except set
736 * the PTPCOF field to 0x2A.
737 */
738 ptpfoff = 0x2A24170C;
739 bfin_write_EMAC_PTP_FOFF(ptpfoff);
740 /*
741 * Keep the default values of the EMAC_PTP_FV1 and EMAC_PTP_FV2
742 * registers.
743 */
744 ptpfv1 = 0x11040800;
745 bfin_write_EMAC_PTP_FV1(ptpfv1);
746 ptpfv2 = 0x0140013F;
747 bfin_write_EMAC_PTP_FV2(ptpfv2);
748 /*
749 * To allow the timestamping of Pdelay_Req and Pdelay_Resp, set
750 * the value to 0xFFF0.
751 */
752 ptpfv3 = 0xFFFFFFF0;
753 bfin_write_EMAC_PTP_FV3(ptpfv3);
754
755 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L4_EVENT;
756 break;
757 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
758 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
759 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
760 /*
761 * Clear bits 8 and 12 of the EMAC_PTP_CTL register to enable only the
762 * EFTM and PTPCM field comparison.
763 */
764 ptpctl &= ~0x1100;
765 bfin_write_EMAC_PTP_CTL(ptpctl);
766 /*
767 * Keep the default values of all the fields of the EMAC_PTP_FOFF
768 * register, except set the PTPCOF field to 0x0E.
769 */
770 ptpfoff = 0x0E24170C;
771 bfin_write_EMAC_PTP_FOFF(ptpfoff);
772 /*
773 * Program bits [15:0] of the EMAC_PTP_FV1 register to 0x88F7, which
774 * corresponds to PTP messages on the MAC layer.
775 */
776 ptpfv1 = 0x110488F7;
777 bfin_write_EMAC_PTP_FV1(ptpfv1);
778 ptpfv2 = 0x0140013F;
779 bfin_write_EMAC_PTP_FV2(ptpfv2);
780 /*
781 * To allow the timestamping of Pdelay_Req and Pdelay_Resp
782 * messages, set the value to 0xFFF0.
783 */
784 ptpfv3 = 0xFFFFFFF0;
785 bfin_write_EMAC_PTP_FV3(ptpfv3);
786
787 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L2_EVENT;
788 break;
789 default:
790 return -ERANGE;
791 }
792
793 if (config.tx_type == HWTSTAMP_TX_OFF &&
794 bfin_mac_hwtstamp_is_none(config.rx_filter)) {
795 ptpctl &= ~PTP_EN;
796 bfin_write_EMAC_PTP_CTL(ptpctl);
797
798 SSYNC();
799 } else {
800 ptpctl |= PTP_EN;
801 bfin_write_EMAC_PTP_CTL(ptpctl);
802
803 /*
804 * clear any existing timestamp
805 */
806 bfin_read_EMAC_PTP_RXSNAPLO();
807 bfin_read_EMAC_PTP_RXSNAPHI();
808
809 bfin_read_EMAC_PTP_TXSNAPLO();
810 bfin_read_EMAC_PTP_TXSNAPHI();
811
Barry Songfe92afe2010-05-17 17:19:40 -0700812 SSYNC();
Barry Songfe92afe2010-05-17 17:19:40 -0700813 }
814
815 lp->stamp_cfg = config;
816 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
817 -EFAULT : 0;
818}
819
Ben Hutchings7575c912013-11-18 22:54:03 +0000820static int bfin_mac_hwtstamp_get(struct net_device *netdev,
821 struct ifreq *ifr)
822{
823 struct bfin_mac_local *lp = netdev_priv(netdev);
824
825 return copy_to_user(ifr->ifr_data, &lp->stamp_cfg,
826 sizeof(lp->stamp_cfg)) ?
827 -EFAULT : 0;
828}
829
Barry Songfe92afe2010-05-17 17:19:40 -0700830static void bfin_tx_hwtstamp(struct net_device *netdev, struct sk_buff *skb)
831{
832 struct bfin_mac_local *lp = netdev_priv(netdev);
Barry Songfe92afe2010-05-17 17:19:40 -0700833
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000834 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) {
Barry Songfe92afe2010-05-17 17:19:40 -0700835 int timeout_cnt = MAX_TIMEOUT_CNT;
836
837 /* When doing time stamping, keep the connection to the socket
838 * a while longer
839 */
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000840 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
Barry Songfe92afe2010-05-17 17:19:40 -0700841
842 /*
843 * The timestamping is done at the EMAC module's MII/RMII interface
844 * when the module sees the Start of Frame of an event message packet. This
845 * interface is the closest possible place to the physical Ethernet transmission
846 * medium, providing the best timing accuracy.
847 */
848 while ((!(bfin_read_EMAC_PTP_ISTAT() & TXTL)) && (--timeout_cnt))
849 udelay(1);
850 if (timeout_cnt == 0)
Mike Frysingerc6dd5092011-01-10 02:54:29 +0000851 netdev_err(netdev, "timestamp the TX packet failed\n");
Barry Songfe92afe2010-05-17 17:19:40 -0700852 else {
853 struct skb_shared_hwtstamps shhwtstamps;
854 u64 ns;
855 u64 regval;
856
857 regval = bfin_read_EMAC_PTP_TXSNAPLO();
858 regval |= (u64)bfin_read_EMAC_PTP_TXSNAPHI() << 32;
859 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
Richard Cochranbc3c5f62012-10-31 06:27:23 +0000860 ns = regval << lp->shift;
Barry Songfe92afe2010-05-17 17:19:40 -0700861 shhwtstamps.hwtstamp = ns_to_ktime(ns);
Barry Songfe92afe2010-05-17 17:19:40 -0700862 skb_tstamp_tx(skb, &shhwtstamps);
Barry Songfe92afe2010-05-17 17:19:40 -0700863 }
864 }
865}
866
867static void bfin_rx_hwtstamp(struct net_device *netdev, struct sk_buff *skb)
868{
869 struct bfin_mac_local *lp = netdev_priv(netdev);
870 u32 valid;
871 u64 regval, ns;
872 struct skb_shared_hwtstamps *shhwtstamps;
873
874 if (bfin_mac_hwtstamp_is_none(lp->stamp_cfg.rx_filter))
875 return;
876
877 valid = bfin_read_EMAC_PTP_ISTAT() & RXEL;
878 if (!valid)
879 return;
880
881 shhwtstamps = skb_hwtstamps(skb);
882
883 regval = bfin_read_EMAC_PTP_RXSNAPLO();
884 regval |= (u64)bfin_read_EMAC_PTP_RXSNAPHI() << 32;
Richard Cochranbc3c5f62012-10-31 06:27:23 +0000885 ns = regval << lp->shift;
Barry Songfe92afe2010-05-17 17:19:40 -0700886 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
887 shhwtstamps->hwtstamp = ns_to_ktime(ns);
Barry Songfe92afe2010-05-17 17:19:40 -0700888}
889
Barry Songfe92afe2010-05-17 17:19:40 -0700890static void bfin_mac_hwtstamp_init(struct net_device *netdev)
891{
892 struct bfin_mac_local *lp = netdev_priv(netdev);
Richard Cochrandd87b222012-10-31 06:27:24 +0000893 u64 addend, ppb;
Richard Cochranbc3c5f62012-10-31 06:27:23 +0000894 u32 input_clk, phc_clk;
Barry Songfe92afe2010-05-17 17:19:40 -0700895
896 /* Initialize hardware timer */
Richard Cochranbc3c5f62012-10-31 06:27:23 +0000897 input_clk = get_sclk();
898 phc_clk = bfin_select_phc_clock(input_clk, &lp->shift);
899 addend = phc_clk * (1ULL << 32);
900 do_div(addend, input_clk);
901 bfin_write_EMAC_PTP_ADDEND((u32)addend);
Barry Songfe92afe2010-05-17 17:19:40 -0700902
Richard Cochranbc3c5f62012-10-31 06:27:23 +0000903 lp->addend = addend;
Richard Cochrandd87b222012-10-31 06:27:24 +0000904 ppb = 1000000000ULL * input_clk;
905 do_div(ppb, phc_clk);
906 lp->max_ppb = ppb - 1000000000ULL - 1ULL;
Barry Songfe92afe2010-05-17 17:19:40 -0700907
908 /* Initialize hwstamp config */
909 lp->stamp_cfg.rx_filter = HWTSTAMP_FILTER_NONE;
910 lp->stamp_cfg.tx_type = HWTSTAMP_TX_OFF;
911}
912
Richard Cochrandd87b222012-10-31 06:27:24 +0000913static u64 bfin_ptp_time_read(struct bfin_mac_local *lp)
914{
915 u64 ns;
916 u32 lo, hi;
917
918 lo = bfin_read_EMAC_PTP_TIMELO();
919 hi = bfin_read_EMAC_PTP_TIMEHI();
920
921 ns = ((u64) hi) << 32;
922 ns |= lo;
923 ns <<= lp->shift;
924
925 return ns;
926}
927
928static void bfin_ptp_time_write(struct bfin_mac_local *lp, u64 ns)
929{
930 u32 hi, lo;
931
932 ns >>= lp->shift;
933 hi = ns >> 32;
934 lo = ns & 0xffffffff;
935
936 bfin_write_EMAC_PTP_TIMELO(lo);
937 bfin_write_EMAC_PTP_TIMEHI(hi);
938}
939
940/* PTP Hardware Clock operations */
941
942static int bfin_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
943{
944 u64 adj;
945 u32 diff, addend;
946 int neg_adj = 0;
947 struct bfin_mac_local *lp =
948 container_of(ptp, struct bfin_mac_local, caps);
949
950 if (ppb < 0) {
951 neg_adj = 1;
952 ppb = -ppb;
953 }
954 addend = lp->addend;
955 adj = addend;
956 adj *= ppb;
957 diff = div_u64(adj, 1000000000ULL);
958
959 addend = neg_adj ? addend - diff : addend + diff;
960
961 bfin_write_EMAC_PTP_ADDEND(addend);
962
963 return 0;
964}
965
966static int bfin_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
967{
968 s64 now;
969 unsigned long flags;
970 struct bfin_mac_local *lp =
971 container_of(ptp, struct bfin_mac_local, caps);
972
973 spin_lock_irqsave(&lp->phc_lock, flags);
974
975 now = bfin_ptp_time_read(lp);
976 now += delta;
977 bfin_ptp_time_write(lp, now);
978
979 spin_unlock_irqrestore(&lp->phc_lock, flags);
980
981 return 0;
982}
983
Richard Cochran20ca7fb2015-03-29 23:11:54 +0200984static int bfin_ptp_gettime(struct ptp_clock_info *ptp, struct timespec64 *ts)
Richard Cochrandd87b222012-10-31 06:27:24 +0000985{
986 u64 ns;
Richard Cochrandd87b222012-10-31 06:27:24 +0000987 unsigned long flags;
988 struct bfin_mac_local *lp =
989 container_of(ptp, struct bfin_mac_local, caps);
990
991 spin_lock_irqsave(&lp->phc_lock, flags);
992
993 ns = bfin_ptp_time_read(lp);
994
995 spin_unlock_irqrestore(&lp->phc_lock, flags);
996
Richard Cochran96ff1c32015-03-31 23:08:06 +0200997 *ts = ns_to_timespec64(ns);
998
Richard Cochrandd87b222012-10-31 06:27:24 +0000999 return 0;
1000}
1001
1002static int bfin_ptp_settime(struct ptp_clock_info *ptp,
Richard Cochran20ca7fb2015-03-29 23:11:54 +02001003 const struct timespec64 *ts)
Richard Cochrandd87b222012-10-31 06:27:24 +00001004{
1005 u64 ns;
1006 unsigned long flags;
1007 struct bfin_mac_local *lp =
1008 container_of(ptp, struct bfin_mac_local, caps);
1009
Richard Cochran96ff1c32015-03-31 23:08:06 +02001010 ns = timespec64_to_ns(ts);
Richard Cochrandd87b222012-10-31 06:27:24 +00001011
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,
Richard Cochran4986b4f02014-03-20 22:21:55 +01001034 .n_pins = 0,
Richard Cochrandd87b222012-10-31 06:27:24 +00001035 .pps = 0,
1036 .adjfreq = bfin_ptp_adjfreq,
1037 .adjtime = bfin_ptp_adjtime,
Richard Cochran20ca7fb2015-03-29 23:11:54 +02001038 .gettime64 = bfin_ptp_gettime,
1039 .settime64 = bfin_ptp_settime,
Richard Cochrandd87b222012-10-31 06:27:24 +00001040 .enable = bfin_ptp_enable,
1041};
1042
1043static int bfin_phc_init(struct net_device *netdev, struct device *dev)
1044{
1045 struct bfin_mac_local *lp = netdev_priv(netdev);
1046
1047 lp->caps = bfin_ptp_caps;
1048 lp->caps.max_adj = lp->max_ppb;
1049 lp->clock = ptp_clock_register(&lp->caps, dev);
1050 if (IS_ERR(lp->clock))
1051 return PTR_ERR(lp->clock);
1052
1053 lp->phc_index = ptp_clock_index(lp->clock);
1054 spin_lock_init(&lp->phc_lock);
1055
1056 return 0;
1057}
1058
1059static void bfin_phc_release(struct bfin_mac_local *lp)
1060{
1061 ptp_clock_unregister(lp->clock);
1062}
1063
Barry Songfe92afe2010-05-17 17:19:40 -07001064#else
1065# define bfin_mac_hwtstamp_is_none(cfg) 0
1066# define bfin_mac_hwtstamp_init(dev)
Ben Hutchings7575c912013-11-18 22:54:03 +00001067# define bfin_mac_hwtstamp_set(dev, ifr) (-EOPNOTSUPP)
1068# define bfin_mac_hwtstamp_get(dev, ifr) (-EOPNOTSUPP)
Barry Songfe92afe2010-05-17 17:19:40 -07001069# define bfin_rx_hwtstamp(dev, skb)
1070# define bfin_tx_hwtstamp(dev, skb)
Richard Cochrandd87b222012-10-31 06:27:24 +00001071# define bfin_phc_init(netdev, dev) 0
1072# define bfin_phc_release(lp)
Barry Songfe92afe2010-05-17 17:19:40 -07001073#endif
1074
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001075static inline void _tx_reclaim_skb(void)
Bryan Wue190d6b2007-07-17 14:43:44 +08001076{
Bryan Wue190d6b2007-07-17 14:43:44 +08001077 do {
1078 tx_list_head->desc_a.config &= ~DMAEN;
1079 tx_list_head->status.status_word = 0;
1080 if (tx_list_head->skb) {
Eric W. Biederman21534d22014-03-15 15:37:24 -07001081 dev_consume_skb_any(tx_list_head->skb);
Bryan Wue190d6b2007-07-17 14:43:44 +08001082 tx_list_head->skb = NULL;
Bryan Wue190d6b2007-07-17 14:43:44 +08001083 }
1084 tx_list_head = tx_list_head->next;
Bryan Wue190d6b2007-07-17 14:43:44 +08001085
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001086 } while (tx_list_head->status.status_word != 0);
1087}
1088
1089static void tx_reclaim_skb(struct bfin_mac_local *lp)
1090{
1091 int timeout_cnt = MAX_TIMEOUT_CNT;
1092
1093 if (tx_list_head->status.status_word != 0)
1094 _tx_reclaim_skb();
1095
1096 if (current_tx_ptr->next == tx_list_head) {
1097 while (tx_list_head->status.status_word == 0) {
1098 /* slow down polling to avoid too many queue stop. */
1099 udelay(10);
1100 /* reclaim skb if DMA is not running. */
1101 if (!(bfin_read_DMA2_IRQ_STATUS() & DMA_RUN))
1102 break;
1103 if (timeout_cnt-- < 0)
1104 break;
1105 }
1106
1107 if (timeout_cnt >= 0)
1108 _tx_reclaim_skb();
1109 else
1110 netif_stop_queue(lp->ndev);
1111 }
1112
1113 if (current_tx_ptr->next != tx_list_head &&
1114 netif_queue_stopped(lp->ndev))
1115 netif_wake_queue(lp->ndev);
1116
1117 if (tx_list_head != current_tx_ptr) {
1118 /* shorten the timer interval if tx queue is stopped */
1119 if (netif_queue_stopped(lp->ndev))
1120 lp->tx_reclaim_timer.expires =
1121 jiffies + (TX_RECLAIM_JIFFIES >> 4);
1122 else
1123 lp->tx_reclaim_timer.expires =
1124 jiffies + TX_RECLAIM_JIFFIES;
1125
1126 mod_timer(&lp->tx_reclaim_timer,
1127 lp->tx_reclaim_timer.expires);
1128 }
1129
1130 return;
1131}
1132
1133static void tx_reclaim_skb_timeout(unsigned long lp)
1134{
1135 tx_reclaim_skb((struct bfin_mac_local *)lp);
Bryan Wue190d6b2007-07-17 14:43:44 +08001136}
1137
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001138static int bfin_mac_hard_start_xmit(struct sk_buff *skb,
Bryan Wue190d6b2007-07-17 14:43:44 +08001139 struct net_device *dev)
1140{
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001141 struct bfin_mac_local *lp = netdev_priv(dev);
Bryan Wua50c0c02008-07-27 22:45:04 +08001142 u16 *data;
Michael Hennerich015dac82009-05-29 03:41:15 +00001143 u32 data_align = (unsigned long)(skb->data) & 0x3;
Barry Songfe92afe2010-05-17 17:19:40 -07001144
Bryan Wue190d6b2007-07-17 14:43:44 +08001145 current_tx_ptr->skb = skb;
1146
Michael Hennerich015dac82009-05-29 03:41:15 +00001147 if (data_align == 0x2) {
1148 /* move skb->data to current_tx_ptr payload */
1149 data = (u16 *)(skb->data) - 1;
Barry Songfe92afe2010-05-17 17:19:40 -07001150 *data = (u16)(skb->len);
1151 /*
1152 * When transmitting an Ethernet packet, the PTP_TSYNC module requires
1153 * a DMA_Length_Word field associated with the packet. The lower 12 bits
1154 * of this field are the length of the packet payload in bytes and the higher
1155 * 4 bits are the timestamping enable field.
1156 */
Oliver Hartkopp2244d072010-08-17 08:59:14 +00001157 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
Barry Songfe92afe2010-05-17 17:19:40 -07001158 *data |= 0x1000;
1159
Michael Hennerich015dac82009-05-29 03:41:15 +00001160 current_tx_ptr->desc_a.start_addr = (u32)data;
1161 /* this is important! */
1162 blackfin_dcache_flush_range((u32)data,
1163 (u32)((u8 *)data + skb->len + 4));
Bryan Wue190d6b2007-07-17 14:43:44 +08001164 } else {
Michael Hennerich015dac82009-05-29 03:41:15 +00001165 *((u16 *)(current_tx_ptr->packet)) = (u16)(skb->len);
Barry Songfe92afe2010-05-17 17:19:40 -07001166 /* enable timestamping for the sent packet */
Oliver Hartkopp2244d072010-08-17 08:59:14 +00001167 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
Barry Songfe92afe2010-05-17 17:19:40 -07001168 *((u16 *)(current_tx_ptr->packet)) |= 0x1000;
Michael Hennerich015dac82009-05-29 03:41:15 +00001169 memcpy((u8 *)(current_tx_ptr->packet + 2), skb->data,
1170 skb->len);
1171 current_tx_ptr->desc_a.start_addr =
1172 (u32)current_tx_ptr->packet;
Michael Hennerich015dac82009-05-29 03:41:15 +00001173 blackfin_dcache_flush_range(
1174 (u32)current_tx_ptr->packet,
1175 (u32)(current_tx_ptr->packet + skb->len + 2));
Bryan Wue190d6b2007-07-17 14:43:44 +08001176 }
1177
Sonic Zhang805a8ab2009-05-29 03:40:43 +00001178 /* make sure the internal data buffers in the core are drained
1179 * so that the DMA descriptors are completely written when the
1180 * DMA engine goes to fetch them below
1181 */
1182 SSYNC();
1183
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001184 /* always clear status buffer before start tx dma */
1185 current_tx_ptr->status.status_word = 0;
1186
Bryan Wue190d6b2007-07-17 14:43:44 +08001187 /* enable this packet's dma */
1188 current_tx_ptr->desc_a.config |= DMAEN;
1189
1190 /* tx dma is running, just return */
Michael Hennerich015dac82009-05-29 03:41:15 +00001191 if (bfin_read_DMA2_IRQ_STATUS() & DMA_RUN)
Bryan Wue190d6b2007-07-17 14:43:44 +08001192 goto out;
1193
1194 /* tx dma is not running */
1195 bfin_write_DMA2_NEXT_DESC_PTR(&(current_tx_ptr->desc_a));
1196 /* dma enabled, read from memory, size is 6 */
1197 bfin_write_DMA2_CONFIG(current_tx_ptr->desc_a.config);
1198 /* Turn on the EMAC tx */
1199 bfin_write_EMAC_OPMODE(bfin_read_EMAC_OPMODE() | TE);
1200
1201out:
Barry Songfe92afe2010-05-17 17:19:40 -07001202 bfin_tx_hwtstamp(dev, skb);
1203
Bryan Wue190d6b2007-07-17 14:43:44 +08001204 current_tx_ptr = current_tx_ptr->next;
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001205 dev->stats.tx_packets++;
1206 dev->stats.tx_bytes += (skb->len);
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001207
1208 tx_reclaim_skb(lp);
1209
Patrick McHardy6ed10652009-06-23 06:03:08 +00001210 return NETDEV_TX_OK;
Bryan Wue190d6b2007-07-17 14:43:44 +08001211}
1212
Sonic Zhangad2864d2010-05-10 05:39:09 +00001213#define IP_HEADER_OFF 0
Peter Meerwaldec497b32010-05-17 17:20:50 -07001214#define RX_ERROR_MASK (RX_LONG | RX_ALIGN | RX_CRC | RX_LEN | \
1215 RX_FRAG | RX_ADDR | RX_DMAO | RX_PHY | RX_LATE | RX_RANGE)
1216
Sonic Zhang159945a2014-07-24 17:52:59 +08001217static void bfin_mac_rx(struct bfin_mac_local *lp)
Bryan Wue190d6b2007-07-17 14:43:44 +08001218{
Sonic Zhang159945a2014-07-24 17:52:59 +08001219 struct net_device *dev = lp->ndev;
Bryan Wue190d6b2007-07-17 14:43:44 +08001220 struct sk_buff *skb, *new_skb;
Bryan Wue190d6b2007-07-17 14:43:44 +08001221 unsigned short len;
Sonic Zhangad2864d2010-05-10 05:39:09 +00001222#if defined(BFIN_MAC_CSUM_OFFLOAD)
1223 unsigned int i;
1224 unsigned char fcs[ETH_FCS_LEN + 1];
1225#endif
Bryan Wue190d6b2007-07-17 14:43:44 +08001226
Peter Meerwaldec497b32010-05-17 17:20:50 -07001227 /* check if frame status word reports an error condition
1228 * we which case we simply drop the packet
1229 */
1230 if (current_rx_ptr->status.status_word & RX_ERROR_MASK) {
Mike Frysingerc6dd5092011-01-10 02:54:29 +00001231 netdev_notice(dev, "rx: receive error - packet dropped\n");
Peter Meerwaldec497b32010-05-17 17:20:50 -07001232 dev->stats.rx_dropped++;
1233 goto out;
1234 }
1235
Bryan Wue190d6b2007-07-17 14:43:44 +08001236 /* allocate a new skb for next time receive */
1237 skb = current_rx_ptr->skb;
Barry Songfe92afe2010-05-17 17:19:40 -07001238
Pradeep A. Dalvi1ab0d2e2012-02-06 11:16:48 +00001239 new_skb = netdev_alloc_skb(dev, PKT_BUF_SZ + NET_IP_ALIGN);
Bryan Wue190d6b2007-07-17 14:43:44 +08001240 if (!new_skb) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001241 dev->stats.rx_dropped++;
Bryan Wue190d6b2007-07-17 14:43:44 +08001242 goto out;
1243 }
1244 /* reserve 2 bytes for RXDWA padding */
Michael Hennerich015dac82009-05-29 03:41:15 +00001245 skb_reserve(new_skb, NET_IP_ALIGN);
Alexey Demin6e01d1a2008-01-30 16:52:27 +08001246 /* Invidate the data cache of skb->data range when it is write back
1247 * cache. It will prevent overwritting the new data from DMA
1248 */
1249 blackfin_dcache_invalidate_range((unsigned long)new_skb->head,
1250 (unsigned long)new_skb->end);
1251
Sonic Zhangf6e1e4f2010-05-10 05:39:08 +00001252 current_rx_ptr->skb = new_skb;
1253 current_rx_ptr->desc_a.start_addr = (unsigned long)new_skb->data - 2;
1254
Sonic Zhang159945a2014-07-24 17:52:59 +08001255 len = (unsigned short)(current_rx_ptr->status.status_word & RX_FRLEN);
Sonic Zhangad2864d2010-05-10 05:39:09 +00001256 /* Deduce Ethernet FCS length from Ethernet payload length */
1257 len -= ETH_FCS_LEN;
Bryan Wue190d6b2007-07-17 14:43:44 +08001258 skb_put(skb, len);
Bryan Wue190d6b2007-07-17 14:43:44 +08001259
Bryan Wue190d6b2007-07-17 14:43:44 +08001260 skb->protocol = eth_type_trans(skb, dev);
Barry Songfe92afe2010-05-17 17:19:40 -07001261
1262 bfin_rx_hwtstamp(dev, skb);
1263
Bryan Wue190d6b2007-07-17 14:43:44 +08001264#if defined(BFIN_MAC_CSUM_OFFLOAD)
Sonic Zhangad2864d2010-05-10 05:39:09 +00001265 /* Checksum offloading only works for IPv4 packets with the standard IP header
1266 * length of 20 bytes, because the blackfin MAC checksum calculation is
1267 * based on that assumption. We must NOT use the calculated checksum if our
1268 * IP version or header break that assumption.
1269 */
1270 if (skb->data[IP_HEADER_OFF] == 0x45) {
1271 skb->csum = current_rx_ptr->status.ip_payload_csum;
1272 /*
1273 * Deduce Ethernet FCS from hardware generated IP payload checksum.
1274 * IP checksum is based on 16-bit one's complement algorithm.
1275 * To deduce a value from checksum is equal to add its inversion.
1276 * If the IP payload len is odd, the inversed FCS should also
1277 * begin from odd address and leave first byte zero.
1278 */
1279 if (skb->len % 2) {
1280 fcs[0] = 0;
1281 for (i = 0; i < ETH_FCS_LEN; i++)
1282 fcs[i + 1] = ~skb->data[skb->len + i];
1283 skb->csum = csum_partial(fcs, ETH_FCS_LEN + 1, skb->csum);
1284 } else {
1285 for (i = 0; i < ETH_FCS_LEN; i++)
1286 fcs[i] = ~skb->data[skb->len + i];
1287 skb->csum = csum_partial(fcs, ETH_FCS_LEN, skb->csum);
1288 }
1289 skb->ip_summed = CHECKSUM_COMPLETE;
1290 }
Bryan Wue190d6b2007-07-17 14:43:44 +08001291#endif
1292
Sonic Zhang159945a2014-07-24 17:52:59 +08001293 napi_gro_receive(&lp->napi, skb);
1294
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001295 dev->stats.rx_packets++;
1296 dev->stats.rx_bytes += len;
Peter Meerwaldec497b32010-05-17 17:20:50 -07001297out:
Bryan Wue190d6b2007-07-17 14:43:44 +08001298 current_rx_ptr->status.status_word = 0x00000000;
1299 current_rx_ptr = current_rx_ptr->next;
Bryan Wue190d6b2007-07-17 14:43:44 +08001300}
1301
Sonic Zhang159945a2014-07-24 17:52:59 +08001302static int bfin_mac_poll(struct napi_struct *napi, int budget)
1303{
1304 int i = 0;
1305 struct bfin_mac_local *lp = container_of(napi,
1306 struct bfin_mac_local,
1307 napi);
1308
1309 while (current_rx_ptr->status.status_word != 0 && i < budget) {
1310 bfin_mac_rx(lp);
1311 i++;
1312 }
1313
1314 if (i < budget) {
1315 napi_complete(napi);
1316 if (test_and_clear_bit(BFIN_MAC_RX_IRQ_DISABLED, &lp->flags))
1317 enable_irq(IRQ_MAC_RX);
1318 }
1319
1320 return i;
1321}
1322
Bryan Wue190d6b2007-07-17 14:43:44 +08001323/* interrupt routine to handle rx and error signal */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001324static irqreturn_t bfin_mac_interrupt(int irq, void *dev_id)
Bryan Wue190d6b2007-07-17 14:43:44 +08001325{
Sonic Zhang159945a2014-07-24 17:52:59 +08001326 struct bfin_mac_local *lp = netdev_priv(dev_id);
1327 u32 status;
Bryan Wue190d6b2007-07-17 14:43:44 +08001328
Sonic Zhang159945a2014-07-24 17:52:59 +08001329 status = bfin_read_DMA1_IRQ_STATUS();
1330
1331 bfin_write_DMA1_IRQ_STATUS(status | DMA_DONE | DMA_ERR);
1332 if (status & DMA_DONE) {
1333 disable_irq_nosync(IRQ_MAC_RX);
1334 set_bit(BFIN_MAC_RX_IRQ_DISABLED, &lp->flags);
1335 napi_schedule(&lp->napi);
Bryan Wue190d6b2007-07-17 14:43:44 +08001336 }
1337
Sonic Zhang159945a2014-07-24 17:52:59 +08001338 return IRQ_HANDLED;
Bryan Wue190d6b2007-07-17 14:43:44 +08001339}
1340
1341#ifdef CONFIG_NET_POLL_CONTROLLER
Sonic Zhang159945a2014-07-24 17:52:59 +08001342static void bfin_mac_poll_controller(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001343{
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001344 struct bfin_mac_local *lp = netdev_priv(dev);
1345
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001346 bfin_mac_interrupt(IRQ_MAC_RX, dev);
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001347 tx_reclaim_skb(lp);
Bryan Wue190d6b2007-07-17 14:43:44 +08001348}
1349#endif /* CONFIG_NET_POLL_CONTROLLER */
1350
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001351static void bfin_mac_disable(void)
Bryan Wue190d6b2007-07-17 14:43:44 +08001352{
1353 unsigned int opmode;
1354
1355 opmode = bfin_read_EMAC_OPMODE();
1356 opmode &= (~RE);
1357 opmode &= (~TE);
1358 /* Turn off the EMAC */
1359 bfin_write_EMAC_OPMODE(opmode);
1360}
1361
1362/*
1363 * Enable Interrupts, Receive, and Transmit
1364 */
Sonic Zhang02460d02010-06-11 10:44:22 +00001365static int bfin_mac_enable(struct phy_device *phydev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001366{
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001367 int ret;
Bryan Wue190d6b2007-07-17 14:43:44 +08001368 u32 opmode;
1369
Mike Frysingerc6dd5092011-01-10 02:54:29 +00001370 pr_debug("%s\n", __func__);
Bryan Wue190d6b2007-07-17 14:43:44 +08001371
1372 /* Set RX DMA */
1373 bfin_write_DMA1_NEXT_DESC_PTR(&(rx_list_head->desc_a));
1374 bfin_write_DMA1_CONFIG(rx_list_head->desc_a.config);
1375
1376 /* Wait MII done */
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001377 ret = bfin_mdio_poll();
1378 if (ret)
1379 return ret;
Bryan Wue190d6b2007-07-17 14:43:44 +08001380
1381 /* We enable only RX here */
1382 /* ASTP : Enable Automatic Pad Stripping
1383 PR : Promiscuous Mode for test
1384 PSF : Receive frames with total length less than 64 bytes.
1385 FDMODE : Full Duplex Mode
1386 LB : Internal Loopback for test
1387 RE : Receiver Enable */
1388 opmode = bfin_read_EMAC_OPMODE();
1389 if (opmode & FDMODE)
1390 opmode |= PSF;
1391 else
1392 opmode |= DRO | DC | PSF;
1393 opmode |= RE;
1394
Sonic Zhang02460d02010-06-11 10:44:22 +00001395 if (phydev->interface == PHY_INTERFACE_MODE_RMII) {
1396 opmode |= RMII; /* For Now only 100MBit are supported */
Mike Frysinger72f49052011-03-27 22:33:13 +00001397#if defined(CONFIG_BF537) || defined(CONFIG_BF536)
1398 if (__SILICON_REVISION__ < 3) {
1399 /*
1400 * This isn't publicly documented (fun times!), but in
1401 * silicon <=0.2, the RX and TX pins are clocked together.
1402 * So in order to recv, we must enable the transmit side
1403 * as well. This will cause a spurious TX interrupt too,
1404 * but we can easily consume that.
1405 */
1406 opmode |= TE;
1407 }
Bryan Wue190d6b2007-07-17 14:43:44 +08001408#endif
Sonic Zhang02460d02010-06-11 10:44:22 +00001409 }
1410
Bryan Wue190d6b2007-07-17 14:43:44 +08001411 /* Turn on the EMAC rx */
1412 bfin_write_EMAC_OPMODE(opmode);
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001413
1414 return 0;
Bryan Wue190d6b2007-07-17 14:43:44 +08001415}
1416
1417/* Our watchdog timed out. Called by the networking layer */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001418static void bfin_mac_timeout(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001419{
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001420 struct bfin_mac_local *lp = netdev_priv(dev);
1421
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001422 pr_debug("%s: %s\n", dev->name, __func__);
Bryan Wue190d6b2007-07-17 14:43:44 +08001423
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001424 bfin_mac_disable();
Bryan Wue190d6b2007-07-17 14:43:44 +08001425
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001426 del_timer(&lp->tx_reclaim_timer);
1427
1428 /* reset tx queue and free skb */
1429 while (tx_list_head != current_tx_ptr) {
1430 tx_list_head->desc_a.config &= ~DMAEN;
1431 tx_list_head->status.status_word = 0;
1432 if (tx_list_head->skb) {
1433 dev_kfree_skb(tx_list_head->skb);
1434 tx_list_head->skb = NULL;
1435 }
1436 tx_list_head = tx_list_head->next;
1437 }
1438
Sonic Zhang159945a2014-07-24 17:52:59 +08001439 if (netif_queue_stopped(dev))
1440 netif_wake_queue(dev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001441
Sonic Zhang02460d02010-06-11 10:44:22 +00001442 bfin_mac_enable(lp->phydev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001443
1444 /* We can accept TX packets again */
Eric Dumazet1ae5dc32010-05-10 05:01:31 -07001445 dev->trans_start = jiffies; /* prevent tx timeout */
Bryan Wue190d6b2007-07-17 14:43:44 +08001446}
1447
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001448static void bfin_mac_multicast_hash(struct net_device *dev)
Aidan Williams775919b2008-01-30 16:52:23 +08001449{
1450 u32 emac_hashhi, emac_hashlo;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001451 struct netdev_hw_addr *ha;
Aidan Williams775919b2008-01-30 16:52:23 +08001452 u32 crc;
1453
1454 emac_hashhi = emac_hashlo = 0;
1455
Jiri Pirko22bedad32010-04-01 21:22:57 +00001456 netdev_for_each_mc_addr(ha, dev) {
Joe Perchesf767b6d2011-01-12 18:08:04 +00001457 crc = ether_crc(ETH_ALEN, ha->addr);
Aidan Williams775919b2008-01-30 16:52:23 +08001458 crc >>= 26;
1459
1460 if (crc & 0x20)
1461 emac_hashhi |= 1 << (crc & 0x1f);
1462 else
1463 emac_hashlo |= 1 << (crc & 0x1f);
1464 }
1465
1466 bfin_write_EMAC_HASHHI(emac_hashhi);
1467 bfin_write_EMAC_HASHLO(emac_hashlo);
Aidan Williams775919b2008-01-30 16:52:23 +08001468}
1469
Bryan Wue190d6b2007-07-17 14:43:44 +08001470/*
Bryan Wue190d6b2007-07-17 14:43:44 +08001471 * This routine will, depending on the values passed to it,
1472 * either make it accept multicast packets, go into
1473 * promiscuous mode (for TCPDUMP and cousins) or accept
1474 * a select set of multicast packets
1475 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001476static void bfin_mac_set_multicast_list(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001477{
1478 u32 sysctl;
1479
1480 if (dev->flags & IFF_PROMISC) {
Mike Frysingerc6dd5092011-01-10 02:54:29 +00001481 netdev_info(dev, "set promisc mode\n");
Bryan Wue190d6b2007-07-17 14:43:44 +08001482 sysctl = bfin_read_EMAC_OPMODE();
Sonic Zhangc0da7762010-05-10 05:39:12 +00001483 sysctl |= PR;
Bryan Wue190d6b2007-07-17 14:43:44 +08001484 bfin_write_EMAC_OPMODE(sysctl);
Aidan Williams775919b2008-01-30 16:52:23 +08001485 } else if (dev->flags & IFF_ALLMULTI) {
Bryan Wue190d6b2007-07-17 14:43:44 +08001486 /* accept all multicast */
1487 sysctl = bfin_read_EMAC_OPMODE();
1488 sysctl |= PAM;
1489 bfin_write_EMAC_OPMODE(sysctl);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001490 } else if (!netdev_mc_empty(dev)) {
Aidan Williams775919b2008-01-30 16:52:23 +08001491 /* set up multicast hash table */
1492 sysctl = bfin_read_EMAC_OPMODE();
1493 sysctl |= HM;
1494 bfin_write_EMAC_OPMODE(sysctl);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001495 bfin_mac_multicast_hash(dev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001496 } else {
1497 /* clear promisc or multicast mode */
1498 sysctl = bfin_read_EMAC_OPMODE();
1499 sysctl &= ~(RAF | PAM);
1500 bfin_write_EMAC_OPMODE(sysctl);
1501 }
1502}
1503
Barry Songfe92afe2010-05-17 17:19:40 -07001504static int bfin_mac_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
1505{
Sonic Zhang02460d02010-06-11 10:44:22 +00001506 struct bfin_mac_local *lp = netdev_priv(netdev);
1507
1508 if (!netif_running(netdev))
1509 return -EINVAL;
1510
Barry Songfe92afe2010-05-17 17:19:40 -07001511 switch (cmd) {
1512 case SIOCSHWTSTAMP:
Ben Hutchings7575c912013-11-18 22:54:03 +00001513 return bfin_mac_hwtstamp_set(netdev, ifr);
1514 case SIOCGHWTSTAMP:
1515 return bfin_mac_hwtstamp_get(netdev, ifr);
Barry Songfe92afe2010-05-17 17:19:40 -07001516 default:
Sonic Zhang02460d02010-06-11 10:44:22 +00001517 if (lp->phydev)
1518 return phy_mii_ioctl(lp->phydev, ifr, cmd);
1519 else
1520 return -EOPNOTSUPP;
Barry Songfe92afe2010-05-17 17:19:40 -07001521 }
1522}
1523
Bryan Wue190d6b2007-07-17 14:43:44 +08001524/*
1525 * this puts the device in an inactive state
1526 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001527static void bfin_mac_shutdown(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001528{
1529 /* Turn off the EMAC */
1530 bfin_write_EMAC_OPMODE(0x00000000);
1531 /* Turn off the EMAC RX DMA */
1532 bfin_write_DMA1_CONFIG(0x0000);
1533 bfin_write_DMA2_CONFIG(0x0000);
1534}
1535
1536/*
1537 * Open and Initialize the interface
1538 *
1539 * Set up everything, reset the card, etc..
1540 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001541static int bfin_mac_open(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001542{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001543 struct bfin_mac_local *lp = netdev_priv(dev);
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001544 int ret;
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001545 pr_debug("%s: %s\n", dev->name, __func__);
Bryan Wue190d6b2007-07-17 14:43:44 +08001546
1547 /*
1548 * Check that the address is valid. If its not, refuse
1549 * to bring the device up. The user must specify an
1550 * address using ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx
1551 */
1552 if (!is_valid_ether_addr(dev->dev_addr)) {
Mike Frysingerc6dd5092011-01-10 02:54:29 +00001553 netdev_warn(dev, "no valid ethernet hw addr\n");
Bryan Wue190d6b2007-07-17 14:43:44 +08001554 return -EINVAL;
1555 }
1556
1557 /* initial rx and tx list */
Pradeep A. Dalvi1ab0d2e2012-02-06 11:16:48 +00001558 ret = desc_list_init(dev);
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001559 if (ret)
1560 return ret;
Bryan Wue190d6b2007-07-17 14:43:44 +08001561
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001562 phy_start(lp->phydev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001563 setup_system_regs(dev);
Michael Hennerichee02fee2008-07-27 22:45:05 +08001564 setup_mac_addr(dev->dev_addr);
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001565
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001566 bfin_mac_disable();
Sonic Zhang02460d02010-06-11 10:44:22 +00001567 ret = bfin_mac_enable(lp->phydev);
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001568 if (ret)
1569 return ret;
Bryan Wue190d6b2007-07-17 14:43:44 +08001570 pr_debug("hardware init finished\n");
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001571
Sonic Zhang159945a2014-07-24 17:52:59 +08001572 napi_enable(&lp->napi);
Bryan Wue190d6b2007-07-17 14:43:44 +08001573 netif_start_queue(dev);
1574 netif_carrier_on(dev);
1575
1576 return 0;
1577}
1578
1579/*
Bryan Wue190d6b2007-07-17 14:43:44 +08001580 * this makes the board clean up everything that it can
1581 * and not talk to the outside world. Caused by
1582 * an 'ifconfig ethX down'
1583 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001584static int bfin_mac_close(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001585{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001586 struct bfin_mac_local *lp = netdev_priv(dev);
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001587 pr_debug("%s: %s\n", dev->name, __func__);
Bryan Wue190d6b2007-07-17 14:43:44 +08001588
1589 netif_stop_queue(dev);
Sonic Zhang159945a2014-07-24 17:52:59 +08001590 napi_disable(&lp->napi);
Bryan Wue190d6b2007-07-17 14:43:44 +08001591 netif_carrier_off(dev);
1592
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001593 phy_stop(lp->phydev);
Vitja Makarov136492b2008-01-30 16:52:26 +08001594 phy_write(lp->phydev, MII_BMCR, BMCR_PDOWN);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001595
Bryan Wue190d6b2007-07-17 14:43:44 +08001596 /* clear everything */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001597 bfin_mac_shutdown(dev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001598
1599 /* free the rx/tx buffers */
1600 desc_list_free();
1601
1602 return 0;
1603}
1604
Mike Frysingerb63dc8f2009-05-26 20:55:33 -07001605static const struct net_device_ops bfin_mac_netdev_ops = {
1606 .ndo_open = bfin_mac_open,
1607 .ndo_stop = bfin_mac_close,
1608 .ndo_start_xmit = bfin_mac_hard_start_xmit,
1609 .ndo_set_mac_address = bfin_mac_set_mac_address,
1610 .ndo_tx_timeout = bfin_mac_timeout,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001611 .ndo_set_rx_mode = bfin_mac_set_multicast_list,
Barry Songfe92afe2010-05-17 17:19:40 -07001612 .ndo_do_ioctl = bfin_mac_ioctl,
Mike Frysingerb63dc8f2009-05-26 20:55:33 -07001613 .ndo_validate_addr = eth_validate_addr,
1614 .ndo_change_mtu = eth_change_mtu,
1615#ifdef CONFIG_NET_POLL_CONTROLLER
Sonic Zhang159945a2014-07-24 17:52:59 +08001616 .ndo_poll_controller = bfin_mac_poll_controller,
Mike Frysingerb63dc8f2009-05-26 20:55:33 -07001617#endif
1618};
1619
Bill Pemberton49f73152012-12-03 09:22:54 -05001620static int bfin_mac_probe(struct platform_device *pdev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001621{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001622 struct net_device *ndev;
1623 struct bfin_mac_local *lp;
Graf Yang080c8252009-05-29 03:41:48 +00001624 struct platform_device *pd;
Sonic Zhang02460d02010-06-11 10:44:22 +00001625 struct bfin_mii_bus_platform_data *mii_bus_data;
Graf Yang080c8252009-05-29 03:41:48 +00001626 int rc;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001627
1628 ndev = alloc_etherdev(sizeof(struct bfin_mac_local));
Joe Perches41de8d42012-01-29 13:47:52 +00001629 if (!ndev)
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001630 return -ENOMEM;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001631
1632 SET_NETDEV_DEV(ndev, &pdev->dev);
1633 platform_set_drvdata(pdev, ndev);
1634 lp = netdev_priv(ndev);
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001635 lp->ndev = ndev;
Bryan Wue190d6b2007-07-17 14:43:44 +08001636
1637 /* Grab the MAC address in the MAC */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001638 *(__le32 *) (&(ndev->dev_addr[0])) = cpu_to_le32(bfin_read_EMAC_ADDRLO());
1639 *(__le16 *) (&(ndev->dev_addr[4])) = cpu_to_le16((u16) bfin_read_EMAC_ADDRHI());
Bryan Wue190d6b2007-07-17 14:43:44 +08001640
1641 /* probe mac */
1642 /*todo: how to proble? which is revision_register */
1643 bfin_write_EMAC_ADDRLO(0x12345678);
1644 if (bfin_read_EMAC_ADDRLO() != 0x12345678) {
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001645 dev_err(&pdev->dev, "Cannot detect Blackfin on-chip ethernet MAC controller!\n");
1646 rc = -ENODEV;
1647 goto out_err_probe_mac;
Bryan Wue190d6b2007-07-17 14:43:44 +08001648 }
1649
Bryan Wue190d6b2007-07-17 14:43:44 +08001650
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001651 /*
1652 * Is it valid? (Did bootloader initialize it?)
1653 * Grab the MAC from the board somehow
1654 * this is done in the arch/blackfin/mach-bfxxx/boards/eth_mac.c
1655 */
Danny Kukawka5055d2f2012-02-16 07:09:31 +00001656 if (!is_valid_ether_addr(ndev->dev_addr)) {
1657 if (bfin_get_ether_addr(ndev->dev_addr) ||
1658 !is_valid_ether_addr(ndev->dev_addr)) {
1659 /* Still not valid, get a random one */
1660 netdev_warn(ndev, "Setting Ethernet MAC to a random one\n");
1661 eth_hw_addr_random(ndev);
1662 }
1663 }
Bryan Wue190d6b2007-07-17 14:43:44 +08001664
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001665 setup_mac_addr(ndev->dev_addr);
Bryan Wue190d6b2007-07-17 14:43:44 +08001666
Jingoo Hana63b82c2013-08-30 13:50:48 +09001667 if (!dev_get_platdata(&pdev->dev)) {
Graf Yang080c8252009-05-29 03:41:48 +00001668 dev_err(&pdev->dev, "Cannot get platform device bfin_mii_bus!\n");
1669 rc = -ENODEV;
1670 goto out_err_probe_mac;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001671 }
Jingoo Hana63b82c2013-08-30 13:50:48 +09001672 pd = dev_get_platdata(&pdev->dev);
Graf Yang080c8252009-05-29 03:41:48 +00001673 lp->mii_bus = platform_get_drvdata(pd);
Sonic Zhang0e995cd2010-05-10 05:39:14 +00001674 if (!lp->mii_bus) {
1675 dev_err(&pdev->dev, "Cannot get mii_bus!\n");
1676 rc = -ENODEV;
Sonic Zhang02460d02010-06-11 10:44:22 +00001677 goto out_err_probe_mac;
Sonic Zhang0e995cd2010-05-10 05:39:14 +00001678 }
Graf Yang080c8252009-05-29 03:41:48 +00001679 lp->mii_bus->priv = ndev;
Jingoo Hana63b82c2013-08-30 13:50:48 +09001680 mii_bus_data = dev_get_platdata(&pd->dev);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001681
Sonic Zhang02460d02010-06-11 10:44:22 +00001682 rc = mii_probe(ndev, mii_bus_data->phy_mode);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001683 if (rc) {
1684 dev_err(&pdev->dev, "MII Probe failed!\n");
1685 goto out_err_mii_probe;
1686 }
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001687
Mike Frysingerc599bd62011-01-10 02:54:32 +00001688 lp->vlan1_mask = ETH_P_8021Q | mii_bus_data->vlan1_mask;
1689 lp->vlan2_mask = ETH_P_8021Q | mii_bus_data->vlan2_mask;
1690
Alexander Beregalov149da652009-04-14 18:30:24 +00001691 ndev->netdev_ops = &bfin_mac_netdev_ops;
Bryan Wu679dce32008-04-25 11:53:11 +08001692 ndev->ethtool_ops = &bfin_mac_ethtool_ops;
Bryan Wue190d6b2007-07-17 14:43:44 +08001693
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001694 init_timer(&lp->tx_reclaim_timer);
1695 lp->tx_reclaim_timer.data = (unsigned long)lp;
1696 lp->tx_reclaim_timer.function = tx_reclaim_skb_timeout;
1697
Sonic Zhang159945a2014-07-24 17:52:59 +08001698 lp->flags = 0;
1699 netif_napi_add(ndev, &lp->napi, bfin_mac_poll, CONFIG_BFIN_RX_DESC_NUM);
1700
Bryan Wue190d6b2007-07-17 14:43:44 +08001701 spin_lock_init(&lp->lock);
1702
1703 /* now, enable interrupts */
1704 /* register irq handler */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001705 rc = request_irq(IRQ_MAC_RX, bfin_mac_interrupt,
Michael Opdenacker63aca0f2013-09-12 05:35:43 +02001706 0, "EMAC_RX", ndev);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001707 if (rc) {
1708 dev_err(&pdev->dev, "Cannot request Blackfin MAC RX IRQ!\n");
1709 rc = -EBUSY;
1710 goto out_err_request_irq;
Bryan Wue190d6b2007-07-17 14:43:44 +08001711 }
1712
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001713 rc = register_netdev(ndev);
1714 if (rc) {
1715 dev_err(&pdev->dev, "Cannot register net device!\n");
1716 goto out_err_reg_ndev;
Bryan Wue190d6b2007-07-17 14:43:44 +08001717 }
1718
Barry Songfe92afe2010-05-17 17:19:40 -07001719 bfin_mac_hwtstamp_init(ndev);
Wei Yongjun2c006992013-05-07 02:23:38 +00001720 rc = bfin_phc_init(ndev, &pdev->dev);
1721 if (rc) {
Richard Cochrandd87b222012-10-31 06:27:24 +00001722 dev_err(&pdev->dev, "Cannot register PHC device!\n");
1723 goto out_err_phc;
1724 }
Barry Songfe92afe2010-05-17 17:19:40 -07001725
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001726 /* now, print out the card info, in a short format.. */
Mike Frysingerc6dd5092011-01-10 02:54:29 +00001727 netdev_info(ndev, "%s, Version %s\n", DRV_DESC, DRV_VERSION);
Bryan Wue190d6b2007-07-17 14:43:44 +08001728
1729 return 0;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001730
Richard Cochrandd87b222012-10-31 06:27:24 +00001731out_err_phc:
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001732out_err_reg_ndev:
1733 free_irq(IRQ_MAC_RX, ndev);
1734out_err_request_irq:
Sonic Zhang159945a2014-07-24 17:52:59 +08001735 netif_napi_del(&lp->napi);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001736out_err_mii_probe:
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001737 mdiobus_unregister(lp->mii_bus);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001738 mdiobus_free(lp->mii_bus);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001739out_err_probe_mac:
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001740 free_netdev(ndev);
1741
1742 return rc;
Bryan Wue190d6b2007-07-17 14:43:44 +08001743}
1744
Bill Pemberton49f73152012-12-03 09:22:54 -05001745static int bfin_mac_remove(struct platform_device *pdev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001746{
1747 struct net_device *ndev = platform_get_drvdata(pdev);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001748 struct bfin_mac_local *lp = netdev_priv(ndev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001749
Richard Cochrandd87b222012-10-31 06:27:24 +00001750 bfin_phc_release(lp);
1751
Graf Yang080c8252009-05-29 03:41:48 +00001752 lp->mii_bus->priv = NULL;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001753
Bryan Wue190d6b2007-07-17 14:43:44 +08001754 unregister_netdev(ndev);
1755
Sonic Zhang159945a2014-07-24 17:52:59 +08001756 netif_napi_del(&lp->napi);
1757
Bryan Wue190d6b2007-07-17 14:43:44 +08001758 free_irq(IRQ_MAC_RX, ndev);
1759
1760 free_netdev(ndev);
1761
Bryan Wue190d6b2007-07-17 14:43:44 +08001762 return 0;
1763}
1764
Bryan Wu496a34c2007-09-19 23:37:14 +08001765#ifdef CONFIG_PM
1766static int bfin_mac_suspend(struct platform_device *pdev, pm_message_t mesg)
Bryan Wue190d6b2007-07-17 14:43:44 +08001767{
Bryan Wu496a34c2007-09-19 23:37:14 +08001768 struct net_device *net_dev = platform_get_drvdata(pdev);
Michael Hennerich53fd3f22010-05-10 05:39:11 +00001769 struct bfin_mac_local *lp = netdev_priv(net_dev);
Bryan Wu496a34c2007-09-19 23:37:14 +08001770
Michael Hennerich53fd3f22010-05-10 05:39:11 +00001771 if (lp->wol) {
1772 bfin_write_EMAC_OPMODE((bfin_read_EMAC_OPMODE() & ~TE) | RE);
1773 bfin_write_EMAC_WKUP_CTL(MPKE);
1774 enable_irq_wake(IRQ_MAC_WAKEDET);
1775 } else {
1776 if (netif_running(net_dev))
1777 bfin_mac_close(net_dev);
1778 }
Bryan Wu496a34c2007-09-19 23:37:14 +08001779
Bryan Wue190d6b2007-07-17 14:43:44 +08001780 return 0;
1781}
1782
1783static int bfin_mac_resume(struct platform_device *pdev)
1784{
Bryan Wu496a34c2007-09-19 23:37:14 +08001785 struct net_device *net_dev = platform_get_drvdata(pdev);
Michael Hennerich53fd3f22010-05-10 05:39:11 +00001786 struct bfin_mac_local *lp = netdev_priv(net_dev);
Bryan Wu496a34c2007-09-19 23:37:14 +08001787
Michael Hennerich53fd3f22010-05-10 05:39:11 +00001788 if (lp->wol) {
1789 bfin_write_EMAC_OPMODE(bfin_read_EMAC_OPMODE() | TE);
1790 bfin_write_EMAC_WKUP_CTL(0);
1791 disable_irq_wake(IRQ_MAC_WAKEDET);
1792 } else {
1793 if (netif_running(net_dev))
1794 bfin_mac_open(net_dev);
1795 }
Bryan Wu496a34c2007-09-19 23:37:14 +08001796
Bryan Wue190d6b2007-07-17 14:43:44 +08001797 return 0;
1798}
Bryan Wu496a34c2007-09-19 23:37:14 +08001799#else
1800#define bfin_mac_suspend NULL
1801#define bfin_mac_resume NULL
1802#endif /* CONFIG_PM */
Bryan Wue190d6b2007-07-17 14:43:44 +08001803
Bill Pemberton49f73152012-12-03 09:22:54 -05001804static int bfin_mii_bus_probe(struct platform_device *pdev)
Graf Yang080c8252009-05-29 03:41:48 +00001805{
1806 struct mii_bus *miibus;
Sonic Zhang02460d02010-06-11 10:44:22 +00001807 struct bfin_mii_bus_platform_data *mii_bus_pd;
1808 const unsigned short *pin_req;
Graf Yang080c8252009-05-29 03:41:48 +00001809 int rc, i;
1810
Sonic Zhang02460d02010-06-11 10:44:22 +00001811 mii_bus_pd = dev_get_platdata(&pdev->dev);
1812 if (!mii_bus_pd) {
1813 dev_err(&pdev->dev, "No peripherals in platform data!\n");
1814 return -EINVAL;
1815 }
1816
Graf Yang080c8252009-05-29 03:41:48 +00001817 /*
1818 * We are setting up a network card,
1819 * so set the GPIO pins to Ethernet mode
1820 */
Sonic Zhang02460d02010-06-11 10:44:22 +00001821 pin_req = mii_bus_pd->mac_peripherals;
Mike Frysingerc6dd5092011-01-10 02:54:29 +00001822 rc = peripheral_request_list(pin_req, KBUILD_MODNAME);
Graf Yang080c8252009-05-29 03:41:48 +00001823 if (rc) {
1824 dev_err(&pdev->dev, "Requesting peripherals failed!\n");
1825 return rc;
1826 }
1827
1828 rc = -ENOMEM;
1829 miibus = mdiobus_alloc();
1830 if (miibus == NULL)
1831 goto out_err_alloc;
1832 miibus->read = bfin_mdiobus_read;
1833 miibus->write = bfin_mdiobus_write;
Graf Yang080c8252009-05-29 03:41:48 +00001834
1835 miibus->parent = &pdev->dev;
1836 miibus->name = "bfin_mii_bus";
Sonic Zhang02460d02010-06-11 10:44:22 +00001837 miibus->phy_mask = mii_bus_pd->phy_mask;
1838
Florian Fainelli75432fd2012-01-09 23:59:08 +00001839 snprintf(miibus->id, MII_BUS_ID_SIZE, "%s-%x",
1840 pdev->name, pdev->id);
Graf Yang080c8252009-05-29 03:41:48 +00001841 miibus->irq = kmalloc(sizeof(int)*PHY_MAX_ADDR, GFP_KERNEL);
Sonic Zhang02460d02010-06-11 10:44:22 +00001842 if (!miibus->irq)
1843 goto out_err_irq_alloc;
1844
1845 for (i = rc; i < PHY_MAX_ADDR; ++i)
Graf Yang080c8252009-05-29 03:41:48 +00001846 miibus->irq[i] = PHY_POLL;
1847
Sonic Zhang02460d02010-06-11 10:44:22 +00001848 rc = clamp(mii_bus_pd->phydev_number, 0, PHY_MAX_ADDR);
1849 if (rc != mii_bus_pd->phydev_number)
1850 dev_err(&pdev->dev, "Invalid number (%i) of phydevs\n",
1851 mii_bus_pd->phydev_number);
1852 for (i = 0; i < rc; ++i) {
1853 unsigned short phyaddr = mii_bus_pd->phydev_data[i].addr;
1854 if (phyaddr < PHY_MAX_ADDR)
1855 miibus->irq[phyaddr] = mii_bus_pd->phydev_data[i].irq;
1856 else
1857 dev_err(&pdev->dev,
1858 "Invalid PHY address %i for phydev %i\n",
1859 phyaddr, i);
1860 }
1861
Graf Yang080c8252009-05-29 03:41:48 +00001862 rc = mdiobus_register(miibus);
1863 if (rc) {
1864 dev_err(&pdev->dev, "Cannot register MDIO bus!\n");
1865 goto out_err_mdiobus_register;
1866 }
1867
1868 platform_set_drvdata(pdev, miibus);
1869 return 0;
1870
1871out_err_mdiobus_register:
Denis Kirjanov7f267de2010-05-18 01:34:46 +00001872 kfree(miibus->irq);
Sonic Zhang02460d02010-06-11 10:44:22 +00001873out_err_irq_alloc:
Graf Yang080c8252009-05-29 03:41:48 +00001874 mdiobus_free(miibus);
1875out_err_alloc:
1876 peripheral_free_list(pin_req);
1877
1878 return rc;
1879}
1880
Bill Pemberton49f73152012-12-03 09:22:54 -05001881static int bfin_mii_bus_remove(struct platform_device *pdev)
Graf Yang080c8252009-05-29 03:41:48 +00001882{
1883 struct mii_bus *miibus = platform_get_drvdata(pdev);
Sonic Zhang02460d02010-06-11 10:44:22 +00001884 struct bfin_mii_bus_platform_data *mii_bus_pd =
1885 dev_get_platdata(&pdev->dev);
1886
Graf Yang080c8252009-05-29 03:41:48 +00001887 mdiobus_unregister(miibus);
Denis Kirjanov7f267de2010-05-18 01:34:46 +00001888 kfree(miibus->irq);
Graf Yang080c8252009-05-29 03:41:48 +00001889 mdiobus_free(miibus);
Sonic Zhang02460d02010-06-11 10:44:22 +00001890 peripheral_free_list(mii_bus_pd->mac_peripherals);
1891
Graf Yang080c8252009-05-29 03:41:48 +00001892 return 0;
1893}
1894
1895static struct platform_driver bfin_mii_bus_driver = {
1896 .probe = bfin_mii_bus_probe,
Bill Pemberton49f73152012-12-03 09:22:54 -05001897 .remove = bfin_mii_bus_remove,
Graf Yang080c8252009-05-29 03:41:48 +00001898 .driver = {
1899 .name = "bfin_mii_bus",
Graf Yang080c8252009-05-29 03:41:48 +00001900 },
1901};
1902
Bryan Wue190d6b2007-07-17 14:43:44 +08001903static struct platform_driver bfin_mac_driver = {
1904 .probe = bfin_mac_probe,
Bill Pemberton49f73152012-12-03 09:22:54 -05001905 .remove = bfin_mac_remove,
Bryan Wue190d6b2007-07-17 14:43:44 +08001906 .resume = bfin_mac_resume,
1907 .suspend = bfin_mac_suspend,
1908 .driver = {
Mike Frysingerc6dd5092011-01-10 02:54:29 +00001909 .name = KBUILD_MODNAME,
Kay Sievers72abb462008-04-18 13:50:44 -07001910 },
Bryan Wue190d6b2007-07-17 14:43:44 +08001911};
1912
Thierry Reding36b9ddd2015-12-02 17:30:26 +01001913static struct platform_driver * const drivers[] = {
1914 &bfin_mii_bus_driver,
1915 &bfin_mac_driver,
1916};
1917
Bryan Wue190d6b2007-07-17 14:43:44 +08001918static int __init bfin_mac_init(void)
1919{
Thierry Reding36b9ddd2015-12-02 17:30:26 +01001920 return platform_register_drivers(drivers, ARRAY_SIZE(drivers));
Bryan Wue190d6b2007-07-17 14:43:44 +08001921}
1922
1923module_init(bfin_mac_init);
1924
1925static void __exit bfin_mac_cleanup(void)
1926{
Thierry Reding36b9ddd2015-12-02 17:30:26 +01001927 platform_unregister_drivers(drivers, ARRAY_SIZE(drivers));
Bryan Wue190d6b2007-07-17 14:43:44 +08001928}
1929
1930module_exit(bfin_mac_cleanup);
Kay Sievers72abb462008-04-18 13:50:44 -07001931