blob: 7a0e4156fade266ffbe1913c7ee0ad0ca639c0f9 [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 *
Mike Frysinger2fb9d6f2008-01-30 16:52:24 +08004 * Copyright 2004-2007 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
11#include <linux/init.h>
12#include <linux/module.h>
13#include <linux/kernel.h>
14#include <linux/sched.h>
15#include <linux/slab.h>
16#include <linux/delay.h>
17#include <linux/timer.h>
18#include <linux/errno.h>
19#include <linux/irq.h>
20#include <linux/io.h>
21#include <linux/ioport.h>
22#include <linux/crc32.h>
23#include <linux/device.h>
24#include <linux/spinlock.h>
Bryan Wue190d6b2007-07-17 14:43:44 +080025#include <linux/mii.h>
Bryan Wu4ae5a3a2007-09-19 23:37:36 +080026#include <linux/phy.h>
Bryan Wue190d6b2007-07-17 14:43:44 +080027#include <linux/netdevice.h>
28#include <linux/etherdevice.h>
Bryan Wu679dce32008-04-25 11:53:11 +080029#include <linux/ethtool.h>
Bryan Wue190d6b2007-07-17 14:43:44 +080030#include <linux/skbuff.h>
Bryan Wue190d6b2007-07-17 14:43:44 +080031#include <linux/platform_device.h>
Bryan Wue190d6b2007-07-17 14:43:44 +080032
33#include <asm/dma.h>
34#include <linux/dma-mapping.h>
35
Barry Songfe92afe2010-05-17 17:19:40 -070036#include <asm/div64.h>
Mike Frysinger98f672c2010-01-18 21:14:12 +000037#include <asm/dpmc.h>
Bryan Wue190d6b2007-07-17 14:43:44 +080038#include <asm/blackfin.h>
39#include <asm/cacheflush.h>
40#include <asm/portmux.h>
41
42#include "bfin_mac.h"
43
44#define DRV_NAME "bfin_mac"
45#define DRV_VERSION "1.1"
46#define DRV_AUTHOR "Bryan Wu, Luke Yang"
Bryan Wu7ef0a7e2008-04-25 11:53:10 +080047#define DRV_DESC "Blackfin on-chip Ethernet MAC driver"
Bryan Wue190d6b2007-07-17 14:43:44 +080048
49MODULE_AUTHOR(DRV_AUTHOR);
50MODULE_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)
55# define bfin_mac_alloc(dma_handle, size) l1_data_sram_zalloc(size)
56# define bfin_mac_free(dma_handle, ptr) l1_data_sram_free(ptr)
57#else
58# define bfin_mac_alloc(dma_handle, size) \
59 dma_alloc_coherent(NULL, size, dma_handle, GFP_KERNEL)
60# define bfin_mac_free(dma_handle, ptr) \
61 dma_free_coherent(NULL, sizeof(*ptr), ptr, dma_handle)
62#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
Bryan Wu7ef0a7e2008-04-25 11:53:10 +080078#if defined(CONFIG_BFIN_MAC_RMII)
79static u16 pin_req[] = P_RMII0;
80#else
81static u16 pin_req[] = P_MII0;
82#endif
83
Bryan Wue190d6b2007-07-17 14:43:44 +080084static void desc_list_free(void)
85{
86 struct net_dma_desc_rx *r;
87 struct net_dma_desc_tx *t;
88 int i;
89#if !defined(CONFIG_BFIN_MAC_USE_L1)
90 dma_addr_t dma_handle = 0;
91#endif
92
93 if (tx_desc) {
94 t = tx_list_head;
95 for (i = 0; i < CONFIG_BFIN_TX_DESC_NUM; i++) {
96 if (t) {
97 if (t->skb) {
98 dev_kfree_skb(t->skb);
99 t->skb = NULL;
100 }
101 t = t->next;
102 }
103 }
104 bfin_mac_free(dma_handle, tx_desc);
105 }
106
107 if (rx_desc) {
108 r = rx_list_head;
109 for (i = 0; i < CONFIG_BFIN_RX_DESC_NUM; i++) {
110 if (r) {
111 if (r->skb) {
112 dev_kfree_skb(r->skb);
113 r->skb = NULL;
114 }
115 r = r->next;
116 }
117 }
118 bfin_mac_free(dma_handle, rx_desc);
119 }
120}
121
122static int desc_list_init(void)
123{
124 int i;
125 struct sk_buff *new_skb;
126#if !defined(CONFIG_BFIN_MAC_USE_L1)
127 /*
128 * This dma_handle is useless in Blackfin dma_alloc_coherent().
129 * The real dma handler is the return value of dma_alloc_coherent().
130 */
131 dma_addr_t dma_handle;
132#endif
133
134 tx_desc = bfin_mac_alloc(&dma_handle,
135 sizeof(struct net_dma_desc_tx) *
136 CONFIG_BFIN_TX_DESC_NUM);
137 if (tx_desc == NULL)
138 goto init_error;
139
140 rx_desc = bfin_mac_alloc(&dma_handle,
141 sizeof(struct net_dma_desc_rx) *
142 CONFIG_BFIN_RX_DESC_NUM);
143 if (rx_desc == NULL)
144 goto init_error;
145
146 /* init tx_list */
147 tx_list_head = tx_list_tail = tx_desc;
148
149 for (i = 0; i < CONFIG_BFIN_TX_DESC_NUM; i++) {
150 struct net_dma_desc_tx *t = tx_desc + i;
151 struct dma_descriptor *a = &(t->desc_a);
152 struct dma_descriptor *b = &(t->desc_b);
153
154 /*
155 * disable DMA
156 * read from memory WNR = 0
157 * wordsize is 32 bits
158 * 6 half words is desc size
159 * large desc flow
160 */
161 a->config = WDSIZE_32 | NDSIZE_6 | DMAFLOW_LARGE;
162 a->start_addr = (unsigned long)t->packet;
163 a->x_count = 0;
164 a->next_dma_desc = b;
165
166 /*
167 * enabled DMA
168 * write to memory WNR = 1
169 * wordsize is 32 bits
170 * disable interrupt
171 * 6 half words is desc size
172 * large desc flow
173 */
174 b->config = DMAEN | WNR | WDSIZE_32 | NDSIZE_6 | DMAFLOW_LARGE;
175 b->start_addr = (unsigned long)(&(t->status));
176 b->x_count = 0;
177
178 t->skb = NULL;
179 tx_list_tail->desc_b.next_dma_desc = a;
180 tx_list_tail->next = t;
181 tx_list_tail = t;
182 }
183 tx_list_tail->next = tx_list_head; /* tx_list is a circle */
184 tx_list_tail->desc_b.next_dma_desc = &(tx_list_head->desc_a);
185 current_tx_ptr = tx_list_head;
186
187 /* init rx_list */
188 rx_list_head = rx_list_tail = rx_desc;
189
190 for (i = 0; i < CONFIG_BFIN_RX_DESC_NUM; i++) {
191 struct net_dma_desc_rx *r = rx_desc + i;
192 struct dma_descriptor *a = &(r->desc_a);
193 struct dma_descriptor *b = &(r->desc_b);
194
195 /* allocate a new skb for next time receive */
Michael Hennerich015dac82009-05-29 03:41:15 +0000196 new_skb = dev_alloc_skb(PKT_BUF_SZ + NET_IP_ALIGN);
Bryan Wue190d6b2007-07-17 14:43:44 +0800197 if (!new_skb) {
198 printk(KERN_NOTICE DRV_NAME
199 ": init: low on mem - packet dropped\n");
200 goto init_error;
201 }
Michael Hennerich015dac82009-05-29 03:41:15 +0000202 skb_reserve(new_skb, NET_IP_ALIGN);
Sonic Zhangf6e1e4f2010-05-10 05:39:08 +0000203 /* Invidate the data cache of skb->data range when it is write back
204 * cache. It will prevent overwritting the new data from DMA
205 */
206 blackfin_dcache_invalidate_range((unsigned long)new_skb->head,
207 (unsigned long)new_skb->end);
Bryan Wue190d6b2007-07-17 14:43:44 +0800208 r->skb = new_skb;
209
210 /*
211 * enabled DMA
212 * write to memory WNR = 1
213 * wordsize is 32 bits
214 * disable interrupt
215 * 6 half words is desc size
216 * large desc flow
217 */
218 a->config = DMAEN | WNR | WDSIZE_32 | NDSIZE_6 | DMAFLOW_LARGE;
219 /* since RXDWA is enabled */
220 a->start_addr = (unsigned long)new_skb->data - 2;
221 a->x_count = 0;
222 a->next_dma_desc = b;
223
224 /*
225 * enabled DMA
226 * write to memory WNR = 1
227 * wordsize is 32 bits
228 * enable interrupt
229 * 6 half words is desc size
230 * large desc flow
231 */
232 b->config = DMAEN | WNR | WDSIZE_32 | DI_EN |
233 NDSIZE_6 | DMAFLOW_LARGE;
234 b->start_addr = (unsigned long)(&(r->status));
235 b->x_count = 0;
236
237 rx_list_tail->desc_b.next_dma_desc = a;
238 rx_list_tail->next = r;
239 rx_list_tail = r;
240 }
241 rx_list_tail->next = rx_list_head; /* rx_list is a circle */
242 rx_list_tail->desc_b.next_dma_desc = &(rx_list_head->desc_a);
243 current_rx_ptr = rx_list_head;
244
245 return 0;
246
247init_error:
248 desc_list_free();
249 printk(KERN_ERR DRV_NAME ": kmalloc failed\n");
250 return -ENOMEM;
251}
252
253
254/*---PHY CONTROL AND CONFIGURATION-----------------------------------------*/
255
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800256/*
257 * MII operations
258 */
Bryan Wue190d6b2007-07-17 14:43:44 +0800259/* Wait until the previous MDC/MDIO transaction has completed */
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000260static int bfin_mdio_poll(void)
Bryan Wue190d6b2007-07-17 14:43:44 +0800261{
262 int timeout_cnt = MAX_TIMEOUT_CNT;
263
264 /* poll the STABUSY bit */
265 while ((bfin_read_EMAC_STAADD()) & STABUSY) {
Bryan Wu6db9e462008-01-30 16:52:21 +0800266 udelay(1);
Bryan Wue190d6b2007-07-17 14:43:44 +0800267 if (timeout_cnt-- < 0) {
268 printk(KERN_ERR DRV_NAME
269 ": wait MDC/MDIO transaction to complete timeout\n");
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000270 return -ETIMEDOUT;
Bryan Wue190d6b2007-07-17 14:43:44 +0800271 }
272 }
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000273
274 return 0;
Bryan Wue190d6b2007-07-17 14:43:44 +0800275}
276
277/* Read an off-chip register in a PHY through the MDC/MDIO port */
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700278static int bfin_mdiobus_read(struct mii_bus *bus, int phy_addr, int regnum)
Bryan Wue190d6b2007-07-17 14:43:44 +0800279{
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000280 int ret;
281
282 ret = bfin_mdio_poll();
283 if (ret)
284 return ret;
Bryan Wue190d6b2007-07-17 14:43:44 +0800285
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800286 /* read mode */
287 bfin_write_EMAC_STAADD(SET_PHYAD((u16) phy_addr) |
288 SET_REGAD((u16) regnum) |
289 STABUSY);
290
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000291 ret = bfin_mdio_poll();
292 if (ret)
293 return ret;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800294
295 return (int) bfin_read_EMAC_STADAT();
Bryan Wue190d6b2007-07-17 14:43:44 +0800296}
297
298/* Write an off-chip register in a PHY through the MDC/MDIO port */
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700299static int bfin_mdiobus_write(struct mii_bus *bus, int phy_addr, int regnum,
300 u16 value)
Bryan Wue190d6b2007-07-17 14:43:44 +0800301{
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000302 int ret;
303
304 ret = bfin_mdio_poll();
305 if (ret)
306 return ret;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800307
308 bfin_write_EMAC_STADAT((u32) value);
Bryan Wue190d6b2007-07-17 14:43:44 +0800309
310 /* write mode */
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800311 bfin_write_EMAC_STAADD(SET_PHYAD((u16) phy_addr) |
312 SET_REGAD((u16) regnum) |
Bryan Wue190d6b2007-07-17 14:43:44 +0800313 STAOP |
314 STABUSY);
315
Mike Frysinger2bfa0f02010-05-10 05:39:13 +0000316 return bfin_mdio_poll();
Bryan Wue190d6b2007-07-17 14:43:44 +0800317}
318
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700319static int bfin_mdiobus_reset(struct mii_bus *bus)
Bryan Wue190d6b2007-07-17 14:43:44 +0800320{
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800321 return 0;
Bryan Wue190d6b2007-07-17 14:43:44 +0800322}
323
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800324static void bfin_mac_adjust_link(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +0800325{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800326 struct bfin_mac_local *lp = netdev_priv(dev);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800327 struct phy_device *phydev = lp->phydev;
328 unsigned long flags;
329 int new_state = 0;
Bryan Wue190d6b2007-07-17 14:43:44 +0800330
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800331 spin_lock_irqsave(&lp->lock, flags);
332 if (phydev->link) {
333 /* Now we make sure that we can be in full duplex mode.
334 * If not, we operate in half-duplex mode. */
335 if (phydev->duplex != lp->old_duplex) {
336 u32 opmode = bfin_read_EMAC_OPMODE();
337 new_state = 1;
Bryan Wue190d6b2007-07-17 14:43:44 +0800338
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800339 if (phydev->duplex)
340 opmode |= FDMODE;
341 else
342 opmode &= ~(FDMODE);
Bryan Wue190d6b2007-07-17 14:43:44 +0800343
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800344 bfin_write_EMAC_OPMODE(opmode);
345 lp->old_duplex = phydev->duplex;
346 }
Bryan Wue190d6b2007-07-17 14:43:44 +0800347
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800348 if (phydev->speed != lp->old_speed) {
349#if defined(CONFIG_BFIN_MAC_RMII)
350 u32 opmode = bfin_read_EMAC_OPMODE();
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800351 switch (phydev->speed) {
352 case 10:
353 opmode |= RMII_10;
354 break;
355 case 100:
356 opmode &= ~(RMII_10);
357 break;
358 default:
359 printk(KERN_WARNING
360 "%s: Ack! Speed (%d) is not 10/100!\n",
361 DRV_NAME, phydev->speed);
362 break;
363 }
364 bfin_write_EMAC_OPMODE(opmode);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800365#endif
Bryan Wue190d6b2007-07-17 14:43:44 +0800366
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800367 new_state = 1;
368 lp->old_speed = phydev->speed;
369 }
Bryan Wue190d6b2007-07-17 14:43:44 +0800370
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800371 if (!lp->old_link) {
372 new_state = 1;
373 lp->old_link = 1;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800374 }
375 } else if (lp->old_link) {
376 new_state = 1;
377 lp->old_link = 0;
378 lp->old_speed = 0;
379 lp->old_duplex = -1;
Bryan Wue190d6b2007-07-17 14:43:44 +0800380 }
381
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800382 if (new_state) {
383 u32 opmode = bfin_read_EMAC_OPMODE();
384 phy_print_status(phydev);
385 pr_debug("EMAC_OPMODE = 0x%08x\n", opmode);
Bryan Wue190d6b2007-07-17 14:43:44 +0800386 }
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800387
388 spin_unlock_irqrestore(&lp->lock, flags);
389}
390
Bryan Wu7cc8f382008-01-30 16:52:22 +0800391/* MDC = 2.5 MHz */
392#define MDC_CLK 2500000
393
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800394static int mii_probe(struct net_device *dev)
395{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800396 struct bfin_mac_local *lp = netdev_priv(dev);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800397 struct phy_device *phydev = NULL;
398 unsigned short sysctl;
399 int i;
Bryan Wu7cc8f382008-01-30 16:52:22 +0800400 u32 sclk, mdc_div;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800401
402 /* Enable PHY output early */
Mike Frysinger98f672c2010-01-18 21:14:12 +0000403 if (!(bfin_read_VR_CTL() & CLKBUFOE))
404 bfin_write_VR_CTL(bfin_read_VR_CTL() | CLKBUFOE);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800405
Bryan Wu7cc8f382008-01-30 16:52:22 +0800406 sclk = get_sclk();
407 mdc_div = ((sclk / MDC_CLK) / 2) - 1;
408
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800409 sysctl = bfin_read_EMAC_SYSCTL();
Bryan Wu9dc7f302008-01-30 16:52:28 +0800410 sysctl = (sysctl & ~MDCDIV) | SET_MDCDIV(mdc_div);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800411 bfin_write_EMAC_SYSCTL(sysctl);
412
413 /* search for connect PHY device */
414 for (i = 0; i < PHY_MAX_ADDR; i++) {
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700415 struct phy_device *const tmp_phydev = lp->mii_bus->phy_map[i];
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800416
417 if (!tmp_phydev)
418 continue; /* no PHY here... */
419
420 phydev = tmp_phydev;
421 break; /* found it */
422 }
423
424 /* now we are supposed to have a proper phydev, to attach to... */
425 if (!phydev) {
426 printk(KERN_INFO "%s: Don't found any phy device at all\n",
427 dev->name);
428 return -ENODEV;
429 }
430
431#if defined(CONFIG_BFIN_MAC_RMII)
Kay Sieversc2313552009-03-24 16:38:22 -0700432 phydev = phy_connect(dev, dev_name(&phydev->dev), &bfin_mac_adjust_link,
433 0, PHY_INTERFACE_MODE_RMII);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800434#else
Kay Sieversc2313552009-03-24 16:38:22 -0700435 phydev = phy_connect(dev, dev_name(&phydev->dev), &bfin_mac_adjust_link,
436 0, PHY_INTERFACE_MODE_MII);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800437#endif
438
439 if (IS_ERR(phydev)) {
440 printk(KERN_ERR "%s: Could not attach to PHY\n", dev->name);
441 return PTR_ERR(phydev);
442 }
443
444 /* mask with MAC supported features */
445 phydev->supported &= (SUPPORTED_10baseT_Half
446 | SUPPORTED_10baseT_Full
447 | SUPPORTED_100baseT_Half
448 | SUPPORTED_100baseT_Full
449 | SUPPORTED_Autoneg
450 | SUPPORTED_Pause | SUPPORTED_Asym_Pause
451 | SUPPORTED_MII
452 | SUPPORTED_TP);
453
454 phydev->advertising = phydev->supported;
455
456 lp->old_link = 0;
457 lp->old_speed = 0;
458 lp->old_duplex = -1;
459 lp->phydev = phydev;
460
461 printk(KERN_INFO "%s: attached PHY driver [%s] "
Bryan Wu7cc8f382008-01-30 16:52:22 +0800462 "(mii_bus:phy_addr=%s, irq=%d, mdc_clk=%dHz(mdc_div=%d)"
463 "@sclk=%dMHz)\n",
Kay Sieversc2313552009-03-24 16:38:22 -0700464 DRV_NAME, phydev->drv->name, dev_name(&phydev->dev), phydev->irq,
Bryan Wu7cc8f382008-01-30 16:52:22 +0800465 MDC_CLK, mdc_div, sclk/1000000);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800466
467 return 0;
Bryan Wue190d6b2007-07-17 14:43:44 +0800468}
469
Bryan Wu679dce32008-04-25 11:53:11 +0800470/*
471 * Ethtool support
472 */
473
Michael Hennerich53fd3f22010-05-10 05:39:11 +0000474/*
475 * interrupt routine for magic packet wakeup
476 */
477static irqreturn_t bfin_mac_wake_interrupt(int irq, void *dev_id)
478{
479 return IRQ_HANDLED;
480}
481
Bryan Wu679dce32008-04-25 11:53:11 +0800482static int
483bfin_mac_ethtool_getsettings(struct net_device *dev, struct ethtool_cmd *cmd)
484{
485 struct bfin_mac_local *lp = netdev_priv(dev);
486
487 if (lp->phydev)
488 return phy_ethtool_gset(lp->phydev, cmd);
489
490 return -EINVAL;
491}
492
493static int
494bfin_mac_ethtool_setsettings(struct net_device *dev, struct ethtool_cmd *cmd)
495{
496 struct bfin_mac_local *lp = netdev_priv(dev);
497
498 if (!capable(CAP_NET_ADMIN))
499 return -EPERM;
500
501 if (lp->phydev)
502 return phy_ethtool_sset(lp->phydev, cmd);
503
504 return -EINVAL;
505}
506
507static void bfin_mac_ethtool_getdrvinfo(struct net_device *dev,
508 struct ethtool_drvinfo *info)
509{
510 strcpy(info->driver, DRV_NAME);
511 strcpy(info->version, DRV_VERSION);
512 strcpy(info->fw_version, "N/A");
Kay Sieversc2313552009-03-24 16:38:22 -0700513 strcpy(info->bus_info, dev_name(&dev->dev));
Bryan Wu679dce32008-04-25 11:53:11 +0800514}
515
Michael Hennerich53fd3f22010-05-10 05:39:11 +0000516static void bfin_mac_ethtool_getwol(struct net_device *dev,
517 struct ethtool_wolinfo *wolinfo)
518{
519 struct bfin_mac_local *lp = netdev_priv(dev);
520
521 wolinfo->supported = WAKE_MAGIC;
522 wolinfo->wolopts = lp->wol;
523}
524
525static int bfin_mac_ethtool_setwol(struct net_device *dev,
526 struct ethtool_wolinfo *wolinfo)
527{
528 struct bfin_mac_local *lp = netdev_priv(dev);
529 int rc;
530
531 if (wolinfo->wolopts & (WAKE_MAGICSECURE |
532 WAKE_UCAST |
533 WAKE_MCAST |
534 WAKE_BCAST |
535 WAKE_ARP))
536 return -EOPNOTSUPP;
537
538 lp->wol = wolinfo->wolopts;
539
540 if (lp->wol && !lp->irq_wake_requested) {
541 /* register wake irq handler */
542 rc = request_irq(IRQ_MAC_WAKEDET, bfin_mac_wake_interrupt,
543 IRQF_DISABLED, "EMAC_WAKE", dev);
544 if (rc)
545 return rc;
546 lp->irq_wake_requested = true;
547 }
548
549 if (!lp->wol && lp->irq_wake_requested) {
550 free_irq(IRQ_MAC_WAKEDET, dev);
551 lp->irq_wake_requested = false;
552 }
553
554 /* Make sure the PHY driver doesn't suspend */
555 device_init_wakeup(&dev->dev, lp->wol);
556
557 return 0;
558}
559
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700560static const struct ethtool_ops bfin_mac_ethtool_ops = {
Bryan Wu679dce32008-04-25 11:53:11 +0800561 .get_settings = bfin_mac_ethtool_getsettings,
562 .set_settings = bfin_mac_ethtool_setsettings,
563 .get_link = ethtool_op_get_link,
564 .get_drvinfo = bfin_mac_ethtool_getdrvinfo,
Michael Hennerich53fd3f22010-05-10 05:39:11 +0000565 .get_wol = bfin_mac_ethtool_getwol,
566 .set_wol = bfin_mac_ethtool_setwol,
Bryan Wu679dce32008-04-25 11:53:11 +0800567};
568
Bryan Wue190d6b2007-07-17 14:43:44 +0800569/**************************************************************************/
570void setup_system_regs(struct net_device *dev)
571{
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800572 unsigned short sysctl;
Bryan Wue190d6b2007-07-17 14:43:44 +0800573
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800574 /*
575 * Odd word alignment for Receive Frame DMA word
576 * Configure checksum support and rcve frame word alignment
577 */
578 sysctl = bfin_read_EMAC_SYSCTL();
Bryan Wue190d6b2007-07-17 14:43:44 +0800579 sysctl |= RXDWA;
Sonic Zhang812a9de2010-05-10 05:39:10 +0000580#if defined(BFIN_MAC_CSUM_OFFLOAD)
581 sysctl |= RXCKS;
582#else
583 sysctl &= ~RXCKS;
Bryan Wue190d6b2007-07-17 14:43:44 +0800584#endif
585 bfin_write_EMAC_SYSCTL(sysctl);
Bryan Wue190d6b2007-07-17 14:43:44 +0800586
587 bfin_write_EMAC_MMC_CTL(RSTC | CROLL);
588
589 /* Initialize the TX DMA channel registers */
590 bfin_write_DMA2_X_COUNT(0);
591 bfin_write_DMA2_X_MODIFY(4);
592 bfin_write_DMA2_Y_COUNT(0);
593 bfin_write_DMA2_Y_MODIFY(0);
594
595 /* Initialize the RX DMA channel registers */
596 bfin_write_DMA1_X_COUNT(0);
597 bfin_write_DMA1_X_MODIFY(4);
598 bfin_write_DMA1_Y_COUNT(0);
599 bfin_write_DMA1_Y_MODIFY(0);
600}
601
Alex Landau73f83182007-09-19 23:14:18 +0800602static void setup_mac_addr(u8 *mac_addr)
Bryan Wue190d6b2007-07-17 14:43:44 +0800603{
604 u32 addr_low = le32_to_cpu(*(__le32 *) & mac_addr[0]);
605 u16 addr_hi = le16_to_cpu(*(__le16 *) & mac_addr[4]);
606
607 /* this depends on a little-endian machine */
608 bfin_write_EMAC_ADDRLO(addr_low);
609 bfin_write_EMAC_ADDRHI(addr_hi);
610}
611
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800612static int bfin_mac_set_mac_address(struct net_device *dev, void *p)
Alex Landau73f83182007-09-19 23:14:18 +0800613{
614 struct sockaddr *addr = p;
615 if (netif_running(dev))
616 return -EBUSY;
617 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
618 setup_mac_addr(dev->dev_addr);
619 return 0;
620}
621
Barry Songfe92afe2010-05-17 17:19:40 -0700622#ifdef CONFIG_BFIN_MAC_USE_HWSTAMP
623#define bfin_mac_hwtstamp_is_none(cfg) ((cfg) == HWTSTAMP_FILTER_NONE)
624
625static int bfin_mac_hwtstamp_ioctl(struct net_device *netdev,
626 struct ifreq *ifr, int cmd)
627{
628 struct hwtstamp_config config;
629 struct bfin_mac_local *lp = netdev_priv(netdev);
630 u16 ptpctl;
631 u32 ptpfv1, ptpfv2, ptpfv3, ptpfoff;
632
633 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
634 return -EFAULT;
635
636 pr_debug("%s config flag:0x%x, tx_type:0x%x, rx_filter:0x%x\n",
637 __func__, config.flags, config.tx_type, config.rx_filter);
638
639 /* reserved for future extensions */
640 if (config.flags)
641 return -EINVAL;
642
643 if ((config.tx_type != HWTSTAMP_TX_OFF) &&
644 (config.tx_type != HWTSTAMP_TX_ON))
645 return -ERANGE;
646
647 ptpctl = bfin_read_EMAC_PTP_CTL();
648
649 switch (config.rx_filter) {
650 case HWTSTAMP_FILTER_NONE:
651 /*
652 * Dont allow any timestamping
653 */
654 ptpfv3 = 0xFFFFFFFF;
655 bfin_write_EMAC_PTP_FV3(ptpfv3);
656 break;
657 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
658 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
659 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
660 /*
661 * Clear the five comparison mask bits (bits[12:8]) in EMAC_PTP_CTL)
662 * to enable all the field matches.
663 */
664 ptpctl &= ~0x1F00;
665 bfin_write_EMAC_PTP_CTL(ptpctl);
666 /*
667 * Keep the default values of the EMAC_PTP_FOFF register.
668 */
669 ptpfoff = 0x4A24170C;
670 bfin_write_EMAC_PTP_FOFF(ptpfoff);
671 /*
672 * Keep the default values of the EMAC_PTP_FV1 and EMAC_PTP_FV2
673 * registers.
674 */
675 ptpfv1 = 0x11040800;
676 bfin_write_EMAC_PTP_FV1(ptpfv1);
677 ptpfv2 = 0x0140013F;
678 bfin_write_EMAC_PTP_FV2(ptpfv2);
679 /*
680 * The default value (0xFFFC) allows the timestamping of both
681 * received Sync messages and Delay_Req messages.
682 */
683 ptpfv3 = 0xFFFFFFFC;
684 bfin_write_EMAC_PTP_FV3(ptpfv3);
685
686 config.rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_EVENT;
687 break;
688 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
689 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
690 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
691 /* Clear all five comparison mask bits (bits[12:8]) in the
692 * EMAC_PTP_CTL register to enable all the field matches.
693 */
694 ptpctl &= ~0x1F00;
695 bfin_write_EMAC_PTP_CTL(ptpctl);
696 /*
697 * Keep the default values of the EMAC_PTP_FOFF register, except set
698 * the PTPCOF field to 0x2A.
699 */
700 ptpfoff = 0x2A24170C;
701 bfin_write_EMAC_PTP_FOFF(ptpfoff);
702 /*
703 * Keep the default values of the EMAC_PTP_FV1 and EMAC_PTP_FV2
704 * registers.
705 */
706 ptpfv1 = 0x11040800;
707 bfin_write_EMAC_PTP_FV1(ptpfv1);
708 ptpfv2 = 0x0140013F;
709 bfin_write_EMAC_PTP_FV2(ptpfv2);
710 /*
711 * To allow the timestamping of Pdelay_Req and Pdelay_Resp, set
712 * the value to 0xFFF0.
713 */
714 ptpfv3 = 0xFFFFFFF0;
715 bfin_write_EMAC_PTP_FV3(ptpfv3);
716
717 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L4_EVENT;
718 break;
719 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
720 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
721 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
722 /*
723 * Clear bits 8 and 12 of the EMAC_PTP_CTL register to enable only the
724 * EFTM and PTPCM field comparison.
725 */
726 ptpctl &= ~0x1100;
727 bfin_write_EMAC_PTP_CTL(ptpctl);
728 /*
729 * Keep the default values of all the fields of the EMAC_PTP_FOFF
730 * register, except set the PTPCOF field to 0x0E.
731 */
732 ptpfoff = 0x0E24170C;
733 bfin_write_EMAC_PTP_FOFF(ptpfoff);
734 /*
735 * Program bits [15:0] of the EMAC_PTP_FV1 register to 0x88F7, which
736 * corresponds to PTP messages on the MAC layer.
737 */
738 ptpfv1 = 0x110488F7;
739 bfin_write_EMAC_PTP_FV1(ptpfv1);
740 ptpfv2 = 0x0140013F;
741 bfin_write_EMAC_PTP_FV2(ptpfv2);
742 /*
743 * To allow the timestamping of Pdelay_Req and Pdelay_Resp
744 * messages, set the value to 0xFFF0.
745 */
746 ptpfv3 = 0xFFFFFFF0;
747 bfin_write_EMAC_PTP_FV3(ptpfv3);
748
749 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L2_EVENT;
750 break;
751 default:
752 return -ERANGE;
753 }
754
755 if (config.tx_type == HWTSTAMP_TX_OFF &&
756 bfin_mac_hwtstamp_is_none(config.rx_filter)) {
757 ptpctl &= ~PTP_EN;
758 bfin_write_EMAC_PTP_CTL(ptpctl);
759
760 SSYNC();
761 } else {
762 ptpctl |= PTP_EN;
763 bfin_write_EMAC_PTP_CTL(ptpctl);
764
765 /*
766 * clear any existing timestamp
767 */
768 bfin_read_EMAC_PTP_RXSNAPLO();
769 bfin_read_EMAC_PTP_RXSNAPHI();
770
771 bfin_read_EMAC_PTP_TXSNAPLO();
772 bfin_read_EMAC_PTP_TXSNAPHI();
773
774 /*
775 * Set registers so that rollover occurs soon to test this.
776 */
777 bfin_write_EMAC_PTP_TIMELO(0x00000000);
778 bfin_write_EMAC_PTP_TIMEHI(0xFF800000);
779
780 SSYNC();
781
782 lp->compare.last_update = 0;
783 timecounter_init(&lp->clock,
784 &lp->cycles,
785 ktime_to_ns(ktime_get_real()));
786 timecompare_update(&lp->compare, 0);
787 }
788
789 lp->stamp_cfg = config;
790 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
791 -EFAULT : 0;
792}
793
794static void bfin_dump_hwtamp(char *s, ktime_t *hw, ktime_t *ts, struct timecompare *cmp)
795{
796 ktime_t sys = ktime_get_real();
797
798 pr_debug("%s %s hardware:%d,%d transform system:%d,%d system:%d,%d, cmp:%lld, %lld\n",
799 __func__, s, hw->tv.sec, hw->tv.nsec, ts->tv.sec, ts->tv.nsec, sys.tv.sec,
800 sys.tv.nsec, cmp->offset, cmp->skew);
801}
802
803static void bfin_tx_hwtstamp(struct net_device *netdev, struct sk_buff *skb)
804{
805 struct bfin_mac_local *lp = netdev_priv(netdev);
Barry Songfe92afe2010-05-17 17:19:40 -0700806
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000807 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) {
Barry Songfe92afe2010-05-17 17:19:40 -0700808 int timeout_cnt = MAX_TIMEOUT_CNT;
809
810 /* When doing time stamping, keep the connection to the socket
811 * a while longer
812 */
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000813 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
Barry Songfe92afe2010-05-17 17:19:40 -0700814
815 /*
816 * The timestamping is done at the EMAC module's MII/RMII interface
817 * when the module sees the Start of Frame of an event message packet. This
818 * interface is the closest possible place to the physical Ethernet transmission
819 * medium, providing the best timing accuracy.
820 */
821 while ((!(bfin_read_EMAC_PTP_ISTAT() & TXTL)) && (--timeout_cnt))
822 udelay(1);
823 if (timeout_cnt == 0)
824 printk(KERN_ERR DRV_NAME
825 ": fails to timestamp the TX packet\n");
826 else {
827 struct skb_shared_hwtstamps shhwtstamps;
828 u64 ns;
829 u64 regval;
830
831 regval = bfin_read_EMAC_PTP_TXSNAPLO();
832 regval |= (u64)bfin_read_EMAC_PTP_TXSNAPHI() << 32;
833 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
834 ns = timecounter_cyc2time(&lp->clock,
835 regval);
836 timecompare_update(&lp->compare, ns);
837 shhwtstamps.hwtstamp = ns_to_ktime(ns);
838 shhwtstamps.syststamp =
839 timecompare_transform(&lp->compare, ns);
840 skb_tstamp_tx(skb, &shhwtstamps);
841
842 bfin_dump_hwtamp("TX", &shhwtstamps.hwtstamp, &shhwtstamps.syststamp, &lp->compare);
843 }
844 }
845}
846
847static void bfin_rx_hwtstamp(struct net_device *netdev, struct sk_buff *skb)
848{
849 struct bfin_mac_local *lp = netdev_priv(netdev);
850 u32 valid;
851 u64 regval, ns;
852 struct skb_shared_hwtstamps *shhwtstamps;
853
854 if (bfin_mac_hwtstamp_is_none(lp->stamp_cfg.rx_filter))
855 return;
856
857 valid = bfin_read_EMAC_PTP_ISTAT() & RXEL;
858 if (!valid)
859 return;
860
861 shhwtstamps = skb_hwtstamps(skb);
862
863 regval = bfin_read_EMAC_PTP_RXSNAPLO();
864 regval |= (u64)bfin_read_EMAC_PTP_RXSNAPHI() << 32;
865 ns = timecounter_cyc2time(&lp->clock, regval);
866 timecompare_update(&lp->compare, ns);
867 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
868 shhwtstamps->hwtstamp = ns_to_ktime(ns);
869 shhwtstamps->syststamp = timecompare_transform(&lp->compare, ns);
870
871 bfin_dump_hwtamp("RX", &shhwtstamps->hwtstamp, &shhwtstamps->syststamp, &lp->compare);
872}
873
874/*
875 * bfin_read_clock - read raw cycle counter (to be used by time counter)
876 */
877static cycle_t bfin_read_clock(const struct cyclecounter *tc)
878{
879 u64 stamp;
880
881 stamp = bfin_read_EMAC_PTP_TIMELO();
882 stamp |= (u64)bfin_read_EMAC_PTP_TIMEHI() << 32ULL;
883
884 return stamp;
885}
886
887#define PTP_CLK 25000000
888
889static void bfin_mac_hwtstamp_init(struct net_device *netdev)
890{
891 struct bfin_mac_local *lp = netdev_priv(netdev);
892 u64 append;
893
894 /* Initialize hardware timer */
895 append = PTP_CLK * (1ULL << 32);
896 do_div(append, get_sclk());
897 bfin_write_EMAC_PTP_ADDEND((u32)append);
898
899 memset(&lp->cycles, 0, sizeof(lp->cycles));
900 lp->cycles.read = bfin_read_clock;
901 lp->cycles.mask = CLOCKSOURCE_MASK(64);
902 lp->cycles.mult = 1000000000 / PTP_CLK;
903 lp->cycles.shift = 0;
904
905 /* Synchronize our NIC clock against system wall clock */
906 memset(&lp->compare, 0, sizeof(lp->compare));
907 lp->compare.source = &lp->clock;
908 lp->compare.target = ktime_get_real;
909 lp->compare.num_samples = 10;
910
911 /* Initialize hwstamp config */
912 lp->stamp_cfg.rx_filter = HWTSTAMP_FILTER_NONE;
913 lp->stamp_cfg.tx_type = HWTSTAMP_TX_OFF;
914}
915
916#else
917# define bfin_mac_hwtstamp_is_none(cfg) 0
918# define bfin_mac_hwtstamp_init(dev)
919# define bfin_mac_hwtstamp_ioctl(dev, ifr, cmd) (-EOPNOTSUPP)
920# define bfin_rx_hwtstamp(dev, skb)
921# define bfin_tx_hwtstamp(dev, skb)
922#endif
923
Sonic Zhang4fcc3d32010-06-11 17:44:31 +0800924static inline void _tx_reclaim_skb(void)
Bryan Wue190d6b2007-07-17 14:43:44 +0800925{
Bryan Wue190d6b2007-07-17 14:43:44 +0800926 do {
927 tx_list_head->desc_a.config &= ~DMAEN;
928 tx_list_head->status.status_word = 0;
929 if (tx_list_head->skb) {
930 dev_kfree_skb(tx_list_head->skb);
931 tx_list_head->skb = NULL;
Bryan Wue190d6b2007-07-17 14:43:44 +0800932 }
933 tx_list_head = tx_list_head->next;
Bryan Wue190d6b2007-07-17 14:43:44 +0800934
Sonic Zhang4fcc3d32010-06-11 17:44:31 +0800935 } while (tx_list_head->status.status_word != 0);
936}
937
938static void tx_reclaim_skb(struct bfin_mac_local *lp)
939{
940 int timeout_cnt = MAX_TIMEOUT_CNT;
941
942 if (tx_list_head->status.status_word != 0)
943 _tx_reclaim_skb();
944
945 if (current_tx_ptr->next == tx_list_head) {
946 while (tx_list_head->status.status_word == 0) {
947 /* slow down polling to avoid too many queue stop. */
948 udelay(10);
949 /* reclaim skb if DMA is not running. */
950 if (!(bfin_read_DMA2_IRQ_STATUS() & DMA_RUN))
951 break;
952 if (timeout_cnt-- < 0)
953 break;
954 }
955
956 if (timeout_cnt >= 0)
957 _tx_reclaim_skb();
958 else
959 netif_stop_queue(lp->ndev);
960 }
961
962 if (current_tx_ptr->next != tx_list_head &&
963 netif_queue_stopped(lp->ndev))
964 netif_wake_queue(lp->ndev);
965
966 if (tx_list_head != current_tx_ptr) {
967 /* shorten the timer interval if tx queue is stopped */
968 if (netif_queue_stopped(lp->ndev))
969 lp->tx_reclaim_timer.expires =
970 jiffies + (TX_RECLAIM_JIFFIES >> 4);
971 else
972 lp->tx_reclaim_timer.expires =
973 jiffies + TX_RECLAIM_JIFFIES;
974
975 mod_timer(&lp->tx_reclaim_timer,
976 lp->tx_reclaim_timer.expires);
977 }
978
979 return;
980}
981
982static void tx_reclaim_skb_timeout(unsigned long lp)
983{
984 tx_reclaim_skb((struct bfin_mac_local *)lp);
Bryan Wue190d6b2007-07-17 14:43:44 +0800985}
986
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800987static int bfin_mac_hard_start_xmit(struct sk_buff *skb,
Bryan Wue190d6b2007-07-17 14:43:44 +0800988 struct net_device *dev)
989{
Sonic Zhang4fcc3d32010-06-11 17:44:31 +0800990 struct bfin_mac_local *lp = netdev_priv(dev);
Bryan Wua50c0c02008-07-27 22:45:04 +0800991 u16 *data;
Michael Hennerich015dac82009-05-29 03:41:15 +0000992 u32 data_align = (unsigned long)(skb->data) & 0x3;
Barry Songfe92afe2010-05-17 17:19:40 -0700993
Bryan Wue190d6b2007-07-17 14:43:44 +0800994 current_tx_ptr->skb = skb;
995
Michael Hennerich015dac82009-05-29 03:41:15 +0000996 if (data_align == 0x2) {
997 /* move skb->data to current_tx_ptr payload */
998 data = (u16 *)(skb->data) - 1;
Barry Songfe92afe2010-05-17 17:19:40 -0700999 *data = (u16)(skb->len);
1000 /*
1001 * When transmitting an Ethernet packet, the PTP_TSYNC module requires
1002 * a DMA_Length_Word field associated with the packet. The lower 12 bits
1003 * of this field are the length of the packet payload in bytes and the higher
1004 * 4 bits are the timestamping enable field.
1005 */
Oliver Hartkopp2244d072010-08-17 08:59:14 +00001006 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
Barry Songfe92afe2010-05-17 17:19:40 -07001007 *data |= 0x1000;
1008
Michael Hennerich015dac82009-05-29 03:41:15 +00001009 current_tx_ptr->desc_a.start_addr = (u32)data;
1010 /* this is important! */
1011 blackfin_dcache_flush_range((u32)data,
1012 (u32)((u8 *)data + skb->len + 4));
Bryan Wue190d6b2007-07-17 14:43:44 +08001013 } else {
Michael Hennerich015dac82009-05-29 03:41:15 +00001014 *((u16 *)(current_tx_ptr->packet)) = (u16)(skb->len);
Barry Songfe92afe2010-05-17 17:19:40 -07001015 /* enable timestamping for the sent packet */
Oliver Hartkopp2244d072010-08-17 08:59:14 +00001016 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
Barry Songfe92afe2010-05-17 17:19:40 -07001017 *((u16 *)(current_tx_ptr->packet)) |= 0x1000;
Michael Hennerich015dac82009-05-29 03:41:15 +00001018 memcpy((u8 *)(current_tx_ptr->packet + 2), skb->data,
1019 skb->len);
1020 current_tx_ptr->desc_a.start_addr =
1021 (u32)current_tx_ptr->packet;
Michael Hennerich015dac82009-05-29 03:41:15 +00001022 blackfin_dcache_flush_range(
1023 (u32)current_tx_ptr->packet,
1024 (u32)(current_tx_ptr->packet + skb->len + 2));
Bryan Wue190d6b2007-07-17 14:43:44 +08001025 }
1026
Sonic Zhang805a8ab2009-05-29 03:40:43 +00001027 /* make sure the internal data buffers in the core are drained
1028 * so that the DMA descriptors are completely written when the
1029 * DMA engine goes to fetch them below
1030 */
1031 SSYNC();
1032
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001033 /* always clear status buffer before start tx dma */
1034 current_tx_ptr->status.status_word = 0;
1035
Bryan Wue190d6b2007-07-17 14:43:44 +08001036 /* enable this packet's dma */
1037 current_tx_ptr->desc_a.config |= DMAEN;
1038
1039 /* tx dma is running, just return */
Michael Hennerich015dac82009-05-29 03:41:15 +00001040 if (bfin_read_DMA2_IRQ_STATUS() & DMA_RUN)
Bryan Wue190d6b2007-07-17 14:43:44 +08001041 goto out;
1042
1043 /* tx dma is not running */
1044 bfin_write_DMA2_NEXT_DESC_PTR(&(current_tx_ptr->desc_a));
1045 /* dma enabled, read from memory, size is 6 */
1046 bfin_write_DMA2_CONFIG(current_tx_ptr->desc_a.config);
1047 /* Turn on the EMAC tx */
1048 bfin_write_EMAC_OPMODE(bfin_read_EMAC_OPMODE() | TE);
1049
1050out:
Barry Songfe92afe2010-05-17 17:19:40 -07001051 bfin_tx_hwtstamp(dev, skb);
1052
Bryan Wue190d6b2007-07-17 14:43:44 +08001053 current_tx_ptr = current_tx_ptr->next;
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001054 dev->stats.tx_packets++;
1055 dev->stats.tx_bytes += (skb->len);
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001056
1057 tx_reclaim_skb(lp);
1058
Patrick McHardy6ed10652009-06-23 06:03:08 +00001059 return NETDEV_TX_OK;
Bryan Wue190d6b2007-07-17 14:43:44 +08001060}
1061
Sonic Zhangad2864d2010-05-10 05:39:09 +00001062#define IP_HEADER_OFF 0
Peter Meerwaldec497b32010-05-17 17:20:50 -07001063#define RX_ERROR_MASK (RX_LONG | RX_ALIGN | RX_CRC | RX_LEN | \
1064 RX_FRAG | RX_ADDR | RX_DMAO | RX_PHY | RX_LATE | RX_RANGE)
1065
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001066static void bfin_mac_rx(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001067{
1068 struct sk_buff *skb, *new_skb;
Bryan Wue190d6b2007-07-17 14:43:44 +08001069 unsigned short len;
Barry Songfe92afe2010-05-17 17:19:40 -07001070 struct bfin_mac_local *lp __maybe_unused = netdev_priv(dev);
Sonic Zhangad2864d2010-05-10 05:39:09 +00001071#if defined(BFIN_MAC_CSUM_OFFLOAD)
1072 unsigned int i;
1073 unsigned char fcs[ETH_FCS_LEN + 1];
1074#endif
Bryan Wue190d6b2007-07-17 14:43:44 +08001075
Peter Meerwaldec497b32010-05-17 17:20:50 -07001076 /* check if frame status word reports an error condition
1077 * we which case we simply drop the packet
1078 */
1079 if (current_rx_ptr->status.status_word & RX_ERROR_MASK) {
1080 printk(KERN_NOTICE DRV_NAME
1081 ": rx: receive error - packet dropped\n");
1082 dev->stats.rx_dropped++;
1083 goto out;
1084 }
1085
Bryan Wue190d6b2007-07-17 14:43:44 +08001086 /* allocate a new skb for next time receive */
1087 skb = current_rx_ptr->skb;
Barry Songfe92afe2010-05-17 17:19:40 -07001088
Michael Hennerich015dac82009-05-29 03:41:15 +00001089 new_skb = dev_alloc_skb(PKT_BUF_SZ + NET_IP_ALIGN);
Bryan Wue190d6b2007-07-17 14:43:44 +08001090 if (!new_skb) {
1091 printk(KERN_NOTICE DRV_NAME
1092 ": rx: low on mem - packet dropped\n");
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001093 dev->stats.rx_dropped++;
Bryan Wue190d6b2007-07-17 14:43:44 +08001094 goto out;
1095 }
1096 /* reserve 2 bytes for RXDWA padding */
Michael Hennerich015dac82009-05-29 03:41:15 +00001097 skb_reserve(new_skb, NET_IP_ALIGN);
Alexey Demin6e01d1a2008-01-30 16:52:27 +08001098 /* Invidate the data cache of skb->data range when it is write back
1099 * cache. It will prevent overwritting the new data from DMA
1100 */
1101 blackfin_dcache_invalidate_range((unsigned long)new_skb->head,
1102 (unsigned long)new_skb->end);
1103
Sonic Zhangf6e1e4f2010-05-10 05:39:08 +00001104 current_rx_ptr->skb = new_skb;
1105 current_rx_ptr->desc_a.start_addr = (unsigned long)new_skb->data - 2;
1106
Bryan Wue190d6b2007-07-17 14:43:44 +08001107 len = (unsigned short)((current_rx_ptr->status.status_word) & RX_FRLEN);
Sonic Zhangad2864d2010-05-10 05:39:09 +00001108 /* Deduce Ethernet FCS length from Ethernet payload length */
1109 len -= ETH_FCS_LEN;
Bryan Wue190d6b2007-07-17 14:43:44 +08001110 skb_put(skb, len);
Bryan Wue190d6b2007-07-17 14:43:44 +08001111
Bryan Wue190d6b2007-07-17 14:43:44 +08001112 skb->protocol = eth_type_trans(skb, dev);
Barry Songfe92afe2010-05-17 17:19:40 -07001113
1114 bfin_rx_hwtstamp(dev, skb);
1115
Bryan Wue190d6b2007-07-17 14:43:44 +08001116#if defined(BFIN_MAC_CSUM_OFFLOAD)
Sonic Zhangad2864d2010-05-10 05:39:09 +00001117 /* Checksum offloading only works for IPv4 packets with the standard IP header
1118 * length of 20 bytes, because the blackfin MAC checksum calculation is
1119 * based on that assumption. We must NOT use the calculated checksum if our
1120 * IP version or header break that assumption.
1121 */
1122 if (skb->data[IP_HEADER_OFF] == 0x45) {
1123 skb->csum = current_rx_ptr->status.ip_payload_csum;
1124 /*
1125 * Deduce Ethernet FCS from hardware generated IP payload checksum.
1126 * IP checksum is based on 16-bit one's complement algorithm.
1127 * To deduce a value from checksum is equal to add its inversion.
1128 * If the IP payload len is odd, the inversed FCS should also
1129 * begin from odd address and leave first byte zero.
1130 */
1131 if (skb->len % 2) {
1132 fcs[0] = 0;
1133 for (i = 0; i < ETH_FCS_LEN; i++)
1134 fcs[i + 1] = ~skb->data[skb->len + i];
1135 skb->csum = csum_partial(fcs, ETH_FCS_LEN + 1, skb->csum);
1136 } else {
1137 for (i = 0; i < ETH_FCS_LEN; i++)
1138 fcs[i] = ~skb->data[skb->len + i];
1139 skb->csum = csum_partial(fcs, ETH_FCS_LEN, skb->csum);
1140 }
1141 skb->ip_summed = CHECKSUM_COMPLETE;
1142 }
Bryan Wue190d6b2007-07-17 14:43:44 +08001143#endif
1144
1145 netif_rx(skb);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001146 dev->stats.rx_packets++;
1147 dev->stats.rx_bytes += len;
Peter Meerwaldec497b32010-05-17 17:20:50 -07001148out:
Bryan Wue190d6b2007-07-17 14:43:44 +08001149 current_rx_ptr->status.status_word = 0x00000000;
1150 current_rx_ptr = current_rx_ptr->next;
Bryan Wue190d6b2007-07-17 14:43:44 +08001151}
1152
1153/* interrupt routine to handle rx and error signal */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001154static irqreturn_t bfin_mac_interrupt(int irq, void *dev_id)
Bryan Wue190d6b2007-07-17 14:43:44 +08001155{
1156 struct net_device *dev = dev_id;
1157 int number = 0;
1158
1159get_one_packet:
1160 if (current_rx_ptr->status.status_word == 0) {
1161 /* no more new packet received */
1162 if (number == 0) {
1163 if (current_rx_ptr->next->status.status_word != 0) {
1164 current_rx_ptr = current_rx_ptr->next;
1165 goto real_rx;
1166 }
1167 }
1168 bfin_write_DMA1_IRQ_STATUS(bfin_read_DMA1_IRQ_STATUS() |
1169 DMA_DONE | DMA_ERR);
1170 return IRQ_HANDLED;
1171 }
1172
1173real_rx:
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001174 bfin_mac_rx(dev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001175 number++;
1176 goto get_one_packet;
1177}
1178
1179#ifdef CONFIG_NET_POLL_CONTROLLER
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001180static void bfin_mac_poll(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001181{
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001182 struct bfin_mac_local *lp = netdev_priv(dev);
1183
Bryan Wue190d6b2007-07-17 14:43:44 +08001184 disable_irq(IRQ_MAC_RX);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001185 bfin_mac_interrupt(IRQ_MAC_RX, dev);
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001186 tx_reclaim_skb(lp);
Bryan Wue190d6b2007-07-17 14:43:44 +08001187 enable_irq(IRQ_MAC_RX);
1188}
1189#endif /* CONFIG_NET_POLL_CONTROLLER */
1190
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001191static void bfin_mac_disable(void)
Bryan Wue190d6b2007-07-17 14:43:44 +08001192{
1193 unsigned int opmode;
1194
1195 opmode = bfin_read_EMAC_OPMODE();
1196 opmode &= (~RE);
1197 opmode &= (~TE);
1198 /* Turn off the EMAC */
1199 bfin_write_EMAC_OPMODE(opmode);
1200}
1201
1202/*
1203 * Enable Interrupts, Receive, and Transmit
1204 */
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001205static int bfin_mac_enable(void)
Bryan Wue190d6b2007-07-17 14:43:44 +08001206{
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001207 int ret;
Bryan Wue190d6b2007-07-17 14:43:44 +08001208 u32 opmode;
1209
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001210 pr_debug("%s: %s\n", DRV_NAME, __func__);
Bryan Wue190d6b2007-07-17 14:43:44 +08001211
1212 /* Set RX DMA */
1213 bfin_write_DMA1_NEXT_DESC_PTR(&(rx_list_head->desc_a));
1214 bfin_write_DMA1_CONFIG(rx_list_head->desc_a.config);
1215
1216 /* Wait MII done */
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001217 ret = bfin_mdio_poll();
1218 if (ret)
1219 return ret;
Bryan Wue190d6b2007-07-17 14:43:44 +08001220
1221 /* We enable only RX here */
1222 /* ASTP : Enable Automatic Pad Stripping
1223 PR : Promiscuous Mode for test
1224 PSF : Receive frames with total length less than 64 bytes.
1225 FDMODE : Full Duplex Mode
1226 LB : Internal Loopback for test
1227 RE : Receiver Enable */
1228 opmode = bfin_read_EMAC_OPMODE();
1229 if (opmode & FDMODE)
1230 opmode |= PSF;
1231 else
1232 opmode |= DRO | DC | PSF;
1233 opmode |= RE;
1234
1235#if defined(CONFIG_BFIN_MAC_RMII)
1236 opmode |= RMII; /* For Now only 100MBit are supported */
Michael Hennerich6893ff12008-01-30 16:52:25 +08001237#if (defined(CONFIG_BF537) || defined(CONFIG_BF536)) && CONFIG_BF_REV_0_2
Bryan Wue190d6b2007-07-17 14:43:44 +08001238 opmode |= TE;
1239#endif
1240#endif
1241 /* Turn on the EMAC rx */
1242 bfin_write_EMAC_OPMODE(opmode);
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001243
1244 return 0;
Bryan Wue190d6b2007-07-17 14:43:44 +08001245}
1246
1247/* Our watchdog timed out. Called by the networking layer */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001248static void bfin_mac_timeout(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001249{
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001250 struct bfin_mac_local *lp = netdev_priv(dev);
1251
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001252 pr_debug("%s: %s\n", dev->name, __func__);
Bryan Wue190d6b2007-07-17 14:43:44 +08001253
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001254 bfin_mac_disable();
Bryan Wue190d6b2007-07-17 14:43:44 +08001255
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001256 del_timer(&lp->tx_reclaim_timer);
1257
1258 /* reset tx queue and free skb */
1259 while (tx_list_head != current_tx_ptr) {
1260 tx_list_head->desc_a.config &= ~DMAEN;
1261 tx_list_head->status.status_word = 0;
1262 if (tx_list_head->skb) {
1263 dev_kfree_skb(tx_list_head->skb);
1264 tx_list_head->skb = NULL;
1265 }
1266 tx_list_head = tx_list_head->next;
1267 }
1268
1269 if (netif_queue_stopped(lp->ndev))
1270 netif_wake_queue(lp->ndev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001271
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001272 bfin_mac_enable();
Bryan Wue190d6b2007-07-17 14:43:44 +08001273
1274 /* We can accept TX packets again */
Eric Dumazet1ae5dc32010-05-10 05:01:31 -07001275 dev->trans_start = jiffies; /* prevent tx timeout */
Bryan Wue190d6b2007-07-17 14:43:44 +08001276 netif_wake_queue(dev);
1277}
1278
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001279static void bfin_mac_multicast_hash(struct net_device *dev)
Aidan Williams775919b2008-01-30 16:52:23 +08001280{
1281 u32 emac_hashhi, emac_hashlo;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001282 struct netdev_hw_addr *ha;
Aidan Williams775919b2008-01-30 16:52:23 +08001283 char *addrs;
Aidan Williams775919b2008-01-30 16:52:23 +08001284 u32 crc;
1285
1286 emac_hashhi = emac_hashlo = 0;
1287
Jiri Pirko22bedad32010-04-01 21:22:57 +00001288 netdev_for_each_mc_addr(ha, dev) {
1289 addrs = ha->addr;
Aidan Williams775919b2008-01-30 16:52:23 +08001290
1291 /* skip non-multicast addresses */
1292 if (!(*addrs & 1))
1293 continue;
1294
1295 crc = ether_crc(ETH_ALEN, addrs);
1296 crc >>= 26;
1297
1298 if (crc & 0x20)
1299 emac_hashhi |= 1 << (crc & 0x1f);
1300 else
1301 emac_hashlo |= 1 << (crc & 0x1f);
1302 }
1303
1304 bfin_write_EMAC_HASHHI(emac_hashhi);
1305 bfin_write_EMAC_HASHLO(emac_hashlo);
Aidan Williams775919b2008-01-30 16:52:23 +08001306}
1307
Bryan Wue190d6b2007-07-17 14:43:44 +08001308/*
Bryan Wue190d6b2007-07-17 14:43:44 +08001309 * This routine will, depending on the values passed to it,
1310 * either make it accept multicast packets, go into
1311 * promiscuous mode (for TCPDUMP and cousins) or accept
1312 * a select set of multicast packets
1313 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001314static void bfin_mac_set_multicast_list(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001315{
1316 u32 sysctl;
1317
1318 if (dev->flags & IFF_PROMISC) {
1319 printk(KERN_INFO "%s: set to promisc mode\n", dev->name);
1320 sysctl = bfin_read_EMAC_OPMODE();
Sonic Zhangc0da7762010-05-10 05:39:12 +00001321 sysctl |= PR;
Bryan Wue190d6b2007-07-17 14:43:44 +08001322 bfin_write_EMAC_OPMODE(sysctl);
Aidan Williams775919b2008-01-30 16:52:23 +08001323 } else if (dev->flags & IFF_ALLMULTI) {
Bryan Wue190d6b2007-07-17 14:43:44 +08001324 /* accept all multicast */
1325 sysctl = bfin_read_EMAC_OPMODE();
1326 sysctl |= PAM;
1327 bfin_write_EMAC_OPMODE(sysctl);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001328 } else if (!netdev_mc_empty(dev)) {
Aidan Williams775919b2008-01-30 16:52:23 +08001329 /* set up multicast hash table */
1330 sysctl = bfin_read_EMAC_OPMODE();
1331 sysctl |= HM;
1332 bfin_write_EMAC_OPMODE(sysctl);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001333 bfin_mac_multicast_hash(dev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001334 } else {
1335 /* clear promisc or multicast mode */
1336 sysctl = bfin_read_EMAC_OPMODE();
1337 sysctl &= ~(RAF | PAM);
1338 bfin_write_EMAC_OPMODE(sysctl);
1339 }
1340}
1341
Barry Songfe92afe2010-05-17 17:19:40 -07001342static int bfin_mac_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
1343{
1344 switch (cmd) {
1345 case SIOCSHWTSTAMP:
1346 return bfin_mac_hwtstamp_ioctl(netdev, ifr, cmd);
1347 default:
1348 return -EOPNOTSUPP;
1349 }
1350}
1351
Bryan Wue190d6b2007-07-17 14:43:44 +08001352/*
1353 * this puts the device in an inactive state
1354 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001355static void bfin_mac_shutdown(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001356{
1357 /* Turn off the EMAC */
1358 bfin_write_EMAC_OPMODE(0x00000000);
1359 /* Turn off the EMAC RX DMA */
1360 bfin_write_DMA1_CONFIG(0x0000);
1361 bfin_write_DMA2_CONFIG(0x0000);
1362}
1363
1364/*
1365 * Open and Initialize the interface
1366 *
1367 * Set up everything, reset the card, etc..
1368 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001369static int bfin_mac_open(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001370{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001371 struct bfin_mac_local *lp = netdev_priv(dev);
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001372 int ret;
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001373 pr_debug("%s: %s\n", dev->name, __func__);
Bryan Wue190d6b2007-07-17 14:43:44 +08001374
1375 /*
1376 * Check that the address is valid. If its not, refuse
1377 * to bring the device up. The user must specify an
1378 * address using ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx
1379 */
1380 if (!is_valid_ether_addr(dev->dev_addr)) {
1381 printk(KERN_WARNING DRV_NAME ": no valid ethernet hw addr\n");
1382 return -EINVAL;
1383 }
1384
1385 /* initial rx and tx list */
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001386 ret = desc_list_init();
1387 if (ret)
1388 return ret;
Bryan Wue190d6b2007-07-17 14:43:44 +08001389
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001390 phy_start(lp->phydev);
Vitja Makarov136492b2008-01-30 16:52:26 +08001391 phy_write(lp->phydev, MII_BMCR, BMCR_RESET);
Bryan Wue190d6b2007-07-17 14:43:44 +08001392 setup_system_regs(dev);
Michael Hennerichee02fee2008-07-27 22:45:05 +08001393 setup_mac_addr(dev->dev_addr);
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001394
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001395 bfin_mac_disable();
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001396 ret = bfin_mac_enable();
1397 if (ret)
1398 return ret;
Bryan Wue190d6b2007-07-17 14:43:44 +08001399 pr_debug("hardware init finished\n");
Mike Frysinger2bfa0f02010-05-10 05:39:13 +00001400
Bryan Wue190d6b2007-07-17 14:43:44 +08001401 netif_start_queue(dev);
1402 netif_carrier_on(dev);
1403
1404 return 0;
1405}
1406
1407/*
Bryan Wue190d6b2007-07-17 14:43:44 +08001408 * this makes the board clean up everything that it can
1409 * and not talk to the outside world. Caused by
1410 * an 'ifconfig ethX down'
1411 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001412static int bfin_mac_close(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001413{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001414 struct bfin_mac_local *lp = netdev_priv(dev);
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001415 pr_debug("%s: %s\n", dev->name, __func__);
Bryan Wue190d6b2007-07-17 14:43:44 +08001416
1417 netif_stop_queue(dev);
1418 netif_carrier_off(dev);
1419
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001420 phy_stop(lp->phydev);
Vitja Makarov136492b2008-01-30 16:52:26 +08001421 phy_write(lp->phydev, MII_BMCR, BMCR_PDOWN);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001422
Bryan Wue190d6b2007-07-17 14:43:44 +08001423 /* clear everything */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001424 bfin_mac_shutdown(dev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001425
1426 /* free the rx/tx buffers */
1427 desc_list_free();
1428
1429 return 0;
1430}
1431
Mike Frysingerb63dc8f2009-05-26 20:55:33 -07001432static const struct net_device_ops bfin_mac_netdev_ops = {
1433 .ndo_open = bfin_mac_open,
1434 .ndo_stop = bfin_mac_close,
1435 .ndo_start_xmit = bfin_mac_hard_start_xmit,
1436 .ndo_set_mac_address = bfin_mac_set_mac_address,
1437 .ndo_tx_timeout = bfin_mac_timeout,
1438 .ndo_set_multicast_list = bfin_mac_set_multicast_list,
Barry Songfe92afe2010-05-17 17:19:40 -07001439 .ndo_do_ioctl = bfin_mac_ioctl,
Mike Frysingerb63dc8f2009-05-26 20:55:33 -07001440 .ndo_validate_addr = eth_validate_addr,
1441 .ndo_change_mtu = eth_change_mtu,
1442#ifdef CONFIG_NET_POLL_CONTROLLER
1443 .ndo_poll_controller = bfin_mac_poll,
1444#endif
1445};
1446
Mike Frysingerd7b843d32008-07-27 22:45:03 +08001447static int __devinit bfin_mac_probe(struct platform_device *pdev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001448{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001449 struct net_device *ndev;
1450 struct bfin_mac_local *lp;
Graf Yang080c8252009-05-29 03:41:48 +00001451 struct platform_device *pd;
1452 int rc;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001453
1454 ndev = alloc_etherdev(sizeof(struct bfin_mac_local));
1455 if (!ndev) {
1456 dev_err(&pdev->dev, "Cannot allocate net device!\n");
1457 return -ENOMEM;
1458 }
1459
1460 SET_NETDEV_DEV(ndev, &pdev->dev);
1461 platform_set_drvdata(pdev, ndev);
1462 lp = netdev_priv(ndev);
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001463 lp->ndev = ndev;
Bryan Wue190d6b2007-07-17 14:43:44 +08001464
1465 /* Grab the MAC address in the MAC */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001466 *(__le32 *) (&(ndev->dev_addr[0])) = cpu_to_le32(bfin_read_EMAC_ADDRLO());
1467 *(__le16 *) (&(ndev->dev_addr[4])) = cpu_to_le16((u16) bfin_read_EMAC_ADDRHI());
Bryan Wue190d6b2007-07-17 14:43:44 +08001468
1469 /* probe mac */
1470 /*todo: how to proble? which is revision_register */
1471 bfin_write_EMAC_ADDRLO(0x12345678);
1472 if (bfin_read_EMAC_ADDRLO() != 0x12345678) {
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001473 dev_err(&pdev->dev, "Cannot detect Blackfin on-chip ethernet MAC controller!\n");
1474 rc = -ENODEV;
1475 goto out_err_probe_mac;
Bryan Wue190d6b2007-07-17 14:43:44 +08001476 }
1477
Bryan Wue190d6b2007-07-17 14:43:44 +08001478
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001479 /*
1480 * Is it valid? (Did bootloader initialize it?)
1481 * Grab the MAC from the board somehow
1482 * this is done in the arch/blackfin/mach-bfxxx/boards/eth_mac.c
1483 */
1484 if (!is_valid_ether_addr(ndev->dev_addr))
1485 bfin_get_ether_addr(ndev->dev_addr);
1486
Bryan Wue190d6b2007-07-17 14:43:44 +08001487 /* If still not valid, get a random one */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001488 if (!is_valid_ether_addr(ndev->dev_addr))
1489 random_ether_addr(ndev->dev_addr);
Bryan Wue190d6b2007-07-17 14:43:44 +08001490
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001491 setup_mac_addr(ndev->dev_addr);
Bryan Wue190d6b2007-07-17 14:43:44 +08001492
Graf Yang080c8252009-05-29 03:41:48 +00001493 if (!pdev->dev.platform_data) {
1494 dev_err(&pdev->dev, "Cannot get platform device bfin_mii_bus!\n");
1495 rc = -ENODEV;
1496 goto out_err_probe_mac;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001497 }
Graf Yang080c8252009-05-29 03:41:48 +00001498 pd = pdev->dev.platform_data;
1499 lp->mii_bus = platform_get_drvdata(pd);
Sonic Zhang0e995cd2010-05-10 05:39:14 +00001500 if (!lp->mii_bus) {
1501 dev_err(&pdev->dev, "Cannot get mii_bus!\n");
1502 rc = -ENODEV;
1503 goto out_err_mii_bus_probe;
1504 }
Graf Yang080c8252009-05-29 03:41:48 +00001505 lp->mii_bus->priv = ndev;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001506
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001507 rc = mii_probe(ndev);
1508 if (rc) {
1509 dev_err(&pdev->dev, "MII Probe failed!\n");
1510 goto out_err_mii_probe;
1511 }
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001512
Bryan Wue190d6b2007-07-17 14:43:44 +08001513 /* Fill in the fields of the device structure with ethernet values. */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001514 ether_setup(ndev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001515
Alexander Beregalov149da652009-04-14 18:30:24 +00001516 ndev->netdev_ops = &bfin_mac_netdev_ops;
Bryan Wu679dce32008-04-25 11:53:11 +08001517 ndev->ethtool_ops = &bfin_mac_ethtool_ops;
Bryan Wue190d6b2007-07-17 14:43:44 +08001518
Sonic Zhang4fcc3d32010-06-11 17:44:31 +08001519 init_timer(&lp->tx_reclaim_timer);
1520 lp->tx_reclaim_timer.data = (unsigned long)lp;
1521 lp->tx_reclaim_timer.function = tx_reclaim_skb_timeout;
1522
Bryan Wue190d6b2007-07-17 14:43:44 +08001523 spin_lock_init(&lp->lock);
1524
1525 /* now, enable interrupts */
1526 /* register irq handler */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001527 rc = request_irq(IRQ_MAC_RX, bfin_mac_interrupt,
Michael Hennerich91a455f2009-05-29 03:39:45 +00001528 IRQF_DISABLED, "EMAC_RX", ndev);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001529 if (rc) {
1530 dev_err(&pdev->dev, "Cannot request Blackfin MAC RX IRQ!\n");
1531 rc = -EBUSY;
1532 goto out_err_request_irq;
Bryan Wue190d6b2007-07-17 14:43:44 +08001533 }
1534
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001535 rc = register_netdev(ndev);
1536 if (rc) {
1537 dev_err(&pdev->dev, "Cannot register net device!\n");
1538 goto out_err_reg_ndev;
Bryan Wue190d6b2007-07-17 14:43:44 +08001539 }
1540
Barry Songfe92afe2010-05-17 17:19:40 -07001541 bfin_mac_hwtstamp_init(ndev);
1542
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001543 /* now, print out the card info, in a short format.. */
1544 dev_info(&pdev->dev, "%s, Version %s\n", DRV_DESC, DRV_VERSION);
Bryan Wue190d6b2007-07-17 14:43:44 +08001545
1546 return 0;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001547
1548out_err_reg_ndev:
1549 free_irq(IRQ_MAC_RX, ndev);
1550out_err_request_irq:
1551out_err_mii_probe:
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001552 mdiobus_unregister(lp->mii_bus);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001553 mdiobus_free(lp->mii_bus);
Sonic Zhang0e995cd2010-05-10 05:39:14 +00001554out_err_mii_bus_probe:
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001555 peripheral_free_list(pin_req);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001556out_err_probe_mac:
1557 platform_set_drvdata(pdev, NULL);
1558 free_netdev(ndev);
1559
1560 return rc;
Bryan Wue190d6b2007-07-17 14:43:44 +08001561}
1562
Mike Frysingerd7b843d32008-07-27 22:45:03 +08001563static int __devexit bfin_mac_remove(struct platform_device *pdev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001564{
1565 struct net_device *ndev = platform_get_drvdata(pdev);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001566 struct bfin_mac_local *lp = netdev_priv(ndev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001567
1568 platform_set_drvdata(pdev, NULL);
1569
Graf Yang080c8252009-05-29 03:41:48 +00001570 lp->mii_bus->priv = NULL;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001571
Bryan Wue190d6b2007-07-17 14:43:44 +08001572 unregister_netdev(ndev);
1573
1574 free_irq(IRQ_MAC_RX, ndev);
1575
1576 free_netdev(ndev);
1577
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001578 peripheral_free_list(pin_req);
Bryan Wue190d6b2007-07-17 14:43:44 +08001579
1580 return 0;
1581}
1582
Bryan Wu496a34c2007-09-19 23:37:14 +08001583#ifdef CONFIG_PM
1584static int bfin_mac_suspend(struct platform_device *pdev, pm_message_t mesg)
Bryan Wue190d6b2007-07-17 14:43:44 +08001585{
Bryan Wu496a34c2007-09-19 23:37:14 +08001586 struct net_device *net_dev = platform_get_drvdata(pdev);
Michael Hennerich53fd3f22010-05-10 05:39:11 +00001587 struct bfin_mac_local *lp = netdev_priv(net_dev);
Bryan Wu496a34c2007-09-19 23:37:14 +08001588
Michael Hennerich53fd3f22010-05-10 05:39:11 +00001589 if (lp->wol) {
1590 bfin_write_EMAC_OPMODE((bfin_read_EMAC_OPMODE() & ~TE) | RE);
1591 bfin_write_EMAC_WKUP_CTL(MPKE);
1592 enable_irq_wake(IRQ_MAC_WAKEDET);
1593 } else {
1594 if (netif_running(net_dev))
1595 bfin_mac_close(net_dev);
1596 }
Bryan Wu496a34c2007-09-19 23:37:14 +08001597
Bryan Wue190d6b2007-07-17 14:43:44 +08001598 return 0;
1599}
1600
1601static int bfin_mac_resume(struct platform_device *pdev)
1602{
Bryan Wu496a34c2007-09-19 23:37:14 +08001603 struct net_device *net_dev = platform_get_drvdata(pdev);
Michael Hennerich53fd3f22010-05-10 05:39:11 +00001604 struct bfin_mac_local *lp = netdev_priv(net_dev);
Bryan Wu496a34c2007-09-19 23:37:14 +08001605
Michael Hennerich53fd3f22010-05-10 05:39:11 +00001606 if (lp->wol) {
1607 bfin_write_EMAC_OPMODE(bfin_read_EMAC_OPMODE() | TE);
1608 bfin_write_EMAC_WKUP_CTL(0);
1609 disable_irq_wake(IRQ_MAC_WAKEDET);
1610 } else {
1611 if (netif_running(net_dev))
1612 bfin_mac_open(net_dev);
1613 }
Bryan Wu496a34c2007-09-19 23:37:14 +08001614
Bryan Wue190d6b2007-07-17 14:43:44 +08001615 return 0;
1616}
Bryan Wu496a34c2007-09-19 23:37:14 +08001617#else
1618#define bfin_mac_suspend NULL
1619#define bfin_mac_resume NULL
1620#endif /* CONFIG_PM */
Bryan Wue190d6b2007-07-17 14:43:44 +08001621
Graf Yang080c8252009-05-29 03:41:48 +00001622static int __devinit bfin_mii_bus_probe(struct platform_device *pdev)
1623{
1624 struct mii_bus *miibus;
1625 int rc, i;
1626
1627 /*
1628 * We are setting up a network card,
1629 * so set the GPIO pins to Ethernet mode
1630 */
1631 rc = peripheral_request_list(pin_req, DRV_NAME);
1632 if (rc) {
1633 dev_err(&pdev->dev, "Requesting peripherals failed!\n");
1634 return rc;
1635 }
1636
1637 rc = -ENOMEM;
1638 miibus = mdiobus_alloc();
1639 if (miibus == NULL)
1640 goto out_err_alloc;
1641 miibus->read = bfin_mdiobus_read;
1642 miibus->write = bfin_mdiobus_write;
1643 miibus->reset = bfin_mdiobus_reset;
1644
1645 miibus->parent = &pdev->dev;
1646 miibus->name = "bfin_mii_bus";
1647 snprintf(miibus->id, MII_BUS_ID_SIZE, "0");
1648 miibus->irq = kmalloc(sizeof(int)*PHY_MAX_ADDR, GFP_KERNEL);
1649 if (miibus->irq == NULL)
1650 goto out_err_alloc;
1651 for (i = 0; i < PHY_MAX_ADDR; ++i)
1652 miibus->irq[i] = PHY_POLL;
1653
1654 rc = mdiobus_register(miibus);
1655 if (rc) {
1656 dev_err(&pdev->dev, "Cannot register MDIO bus!\n");
1657 goto out_err_mdiobus_register;
1658 }
1659
1660 platform_set_drvdata(pdev, miibus);
1661 return 0;
1662
1663out_err_mdiobus_register:
Denis Kirjanov7f267de2010-05-18 01:34:46 +00001664 kfree(miibus->irq);
Graf Yang080c8252009-05-29 03:41:48 +00001665 mdiobus_free(miibus);
1666out_err_alloc:
1667 peripheral_free_list(pin_req);
1668
1669 return rc;
1670}
1671
1672static int __devexit bfin_mii_bus_remove(struct platform_device *pdev)
1673{
1674 struct mii_bus *miibus = platform_get_drvdata(pdev);
1675 platform_set_drvdata(pdev, NULL);
1676 mdiobus_unregister(miibus);
Denis Kirjanov7f267de2010-05-18 01:34:46 +00001677 kfree(miibus->irq);
Graf Yang080c8252009-05-29 03:41:48 +00001678 mdiobus_free(miibus);
1679 peripheral_free_list(pin_req);
1680 return 0;
1681}
1682
1683static struct platform_driver bfin_mii_bus_driver = {
1684 .probe = bfin_mii_bus_probe,
1685 .remove = __devexit_p(bfin_mii_bus_remove),
1686 .driver = {
1687 .name = "bfin_mii_bus",
1688 .owner = THIS_MODULE,
1689 },
1690};
1691
Bryan Wue190d6b2007-07-17 14:43:44 +08001692static struct platform_driver bfin_mac_driver = {
1693 .probe = bfin_mac_probe,
Mike Frysingerd7b843d32008-07-27 22:45:03 +08001694 .remove = __devexit_p(bfin_mac_remove),
Bryan Wue190d6b2007-07-17 14:43:44 +08001695 .resume = bfin_mac_resume,
1696 .suspend = bfin_mac_suspend,
1697 .driver = {
Kay Sievers72abb462008-04-18 13:50:44 -07001698 .name = DRV_NAME,
1699 .owner = THIS_MODULE,
1700 },
Bryan Wue190d6b2007-07-17 14:43:44 +08001701};
1702
1703static int __init bfin_mac_init(void)
1704{
Graf Yang080c8252009-05-29 03:41:48 +00001705 int ret;
1706 ret = platform_driver_register(&bfin_mii_bus_driver);
1707 if (!ret)
1708 return platform_driver_register(&bfin_mac_driver);
1709 return -ENODEV;
Bryan Wue190d6b2007-07-17 14:43:44 +08001710}
1711
1712module_init(bfin_mac_init);
1713
1714static void __exit bfin_mac_cleanup(void)
1715{
1716 platform_driver_unregister(&bfin_mac_driver);
Graf Yang080c8252009-05-29 03:41:48 +00001717 platform_driver_unregister(&bfin_mii_bus_driver);
Bryan Wue190d6b2007-07-17 14:43:44 +08001718}
1719
1720module_exit(bfin_mac_cleanup);
Kay Sievers72abb462008-04-18 13:50:44 -07001721