net: ethernet: adi: bfin_mac: use phydev from struct net_device
[deliverable/linux.git] / drivers / net / ethernet / adi / bfin_mac.c
CommitLineData
e190d6b1 1/*
2fb9d6f5 2 * Blackfin On-Chip MAC Driver
e190d6b1 3 *
02460d08 4 * Copyright 2004-2010 Analog Devices Inc.
e190d6b1 5 *
2fb9d6f5 6 * Enter bugs at http://blackfin.uclinux.org/
e190d6b1 7 *
2fb9d6f5 8 * Licensed under the GPL-2 or later.
e190d6b1
BW
9 */
10
c6dd5098
MF
11#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
e190d6b1
BW
16#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>
e190d6b1 30#include <linux/mii.h>
e190d6b1
BW
31#include <linux/netdevice.h>
32#include <linux/etherdevice.h>
679dce39 33#include <linux/ethtool.h>
e190d6b1 34#include <linux/skbuff.h>
e190d6b1 35#include <linux/platform_device.h>
e190d6b1
BW
36
37#include <asm/dma.h>
38#include <linux/dma-mapping.h>
39
fe92afed 40#include <asm/div64.h>
98f672ca 41#include <asm/dpmc.h>
e190d6b1
BW
42#include <asm/blackfin.h>
43#include <asm/cacheflush.h>
44#include <asm/portmux.h>
3dcc1e7f 45#include <mach/pll.h>
e190d6b1
BW
46
47#include "bfin_mac.h"
48
c6dd5098 49MODULE_AUTHOR("Bryan Wu, Luke Yang");
e190d6b1
BW
50MODULE_LICENSE("GPL");
51MODULE_DESCRIPTION(DRV_DESC);
72abb461 52MODULE_ALIAS("platform:bfin_mac");
e190d6b1
BW
53
54#if defined(CONFIG_BFIN_MAC_USE_L1)
118133e6
SZ
55# 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)
e190d6b1 57#else
118133e6
SZ
58# 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)
e190d6b1
BW
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
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 }
118133e6 98 bfin_mac_free(dma_handle, tx_desc, CONFIG_BFIN_TX_DESC_NUM);
e190d6b1
BW
99 }
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 }
118133e6 112 bfin_mac_free(dma_handle, rx_desc, CONFIG_BFIN_RX_DESC_NUM);
e190d6b1
BW
113 }
114}
115
1ab0d2ec 116static int desc_list_init(struct net_device *dev)
e190d6b1
BW
117{
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,
118133e6 129 sizeof(struct net_dma_desc_tx),
e190d6b1
BW
130 CONFIG_BFIN_TX_DESC_NUM);
131 if (tx_desc == NULL)
132 goto init_error;
133
134 rx_desc = bfin_mac_alloc(&dma_handle,
118133e6 135 sizeof(struct net_dma_desc_rx),
e190d6b1
BW
136 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 */
1ab0d2ec 190 new_skb = netdev_alloc_skb(dev, PKT_BUF_SZ + NET_IP_ALIGN);
720a43ef 191 if (!new_skb)
e190d6b1 192 goto init_error;
720a43ef 193
015dac88 194 skb_reserve(new_skb, NET_IP_ALIGN);
f6e1e4f3
SZ
195 /* 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);
e190d6b1
BW
200 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();
c6dd5098 241 pr_err("kmalloc failed\n");
e190d6b1
BW
242 return -ENOMEM;
243}
244
245
246/*---PHY CONTROL AND CONFIGURATION-----------------------------------------*/
247
4ae5a3ad
BW
248/*
249 * MII operations
250 */
e190d6b1 251/* Wait until the previous MDC/MDIO transaction has completed */
2bfa0f0c 252static int bfin_mdio_poll(void)
e190d6b1
BW
253{
254 int timeout_cnt = MAX_TIMEOUT_CNT;
255
256 /* poll the STABUSY bit */
257 while ((bfin_read_EMAC_STAADD()) & STABUSY) {
6db9e461 258 udelay(1);
e190d6b1 259 if (timeout_cnt-- < 0) {
c6dd5098 260 pr_err("wait MDC/MDIO transaction to complete timeout\n");
2bfa0f0c 261 return -ETIMEDOUT;
e190d6b1
BW
262 }
263 }
2bfa0f0c
MF
264
265 return 0;
e190d6b1
BW
266}
267
268/* Read an off-chip register in a PHY through the MDC/MDIO port */
0ed0563e 269static int bfin_mdiobus_read(struct mii_bus *bus, int phy_addr, int regnum)
e190d6b1 270{
2bfa0f0c
MF
271 int ret;
272
273 ret = bfin_mdio_poll();
274 if (ret)
275 return ret;
4ae5a3ad 276
e190d6b1 277 /* read mode */
4ae5a3ad
BW
278 bfin_write_EMAC_STAADD(SET_PHYAD((u16) phy_addr) |
279 SET_REGAD((u16) regnum) |
e190d6b1 280 STABUSY);
e190d6b1 281
2bfa0f0c
MF
282 ret = bfin_mdio_poll();
283 if (ret)
284 return ret;
4ae5a3ad
BW
285
286 return (int) bfin_read_EMAC_STADAT();
e190d6b1
BW
287}
288
289/* Write an off-chip register in a PHY through the MDC/MDIO port */
0ed0563e
AB
290static int bfin_mdiobus_write(struct mii_bus *bus, int phy_addr, int regnum,
291 u16 value)
e190d6b1 292{
2bfa0f0c
MF
293 int ret;
294
295 ret = bfin_mdio_poll();
296 if (ret)
297 return ret;
4ae5a3ad
BW
298
299 bfin_write_EMAC_STADAT((u32) value);
e190d6b1
BW
300
301 /* write mode */
4ae5a3ad
BW
302 bfin_write_EMAC_STAADD(SET_PHYAD((u16) phy_addr) |
303 SET_REGAD((u16) regnum) |
e190d6b1
BW
304 STAOP |
305 STABUSY);
306
2bfa0f0c 307 return bfin_mdio_poll();
e190d6b1
BW
308}
309
7ef0a7ee 310static void bfin_mac_adjust_link(struct net_device *dev)
e190d6b1 311{
7ef0a7ee 312 struct bfin_mac_local *lp = netdev_priv(dev);
ec87485d 313 struct phy_device *phydev = dev->phydev;
4ae5a3ad
BW
314 unsigned long flags;
315 int new_state = 0;
316
317 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;
324
325 if (phydev->duplex)
326 opmode |= FDMODE;
327 else
328 opmode &= ~(FDMODE);
329
330 bfin_write_EMAC_OPMODE(opmode);
331 lp->old_duplex = phydev->duplex;
332 }
e190d6b1 333
4ae5a3ad 334 if (phydev->speed != lp->old_speed) {
02460d08
SZ
335 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:
c6dd5098
MF
345 netdev_warn(dev,
346 "Ack! Speed (%d) is not 10/100!\n",
347 phydev->speed);
02460d08
SZ
348 break;
349 }
350 bfin_write_EMAC_OPMODE(opmode);
4ae5a3ad 351 }
e190d6b1 352
4ae5a3ad
BW
353 new_state = 1;
354 lp->old_speed = phydev->speed;
355 }
e190d6b1 356
4ae5a3ad
BW
357 if (!lp->old_link) {
358 new_state = 1;
359 lp->old_link = 1;
4ae5a3ad
BW
360 }
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;
e190d6b1
BW
366 }
367
4ae5a3ad
BW
368 if (new_state) {
369 u32 opmode = bfin_read_EMAC_OPMODE();
370 phy_print_status(phydev);
371 pr_debug("EMAC_OPMODE = 0x%08x\n", opmode);
e190d6b1 372 }
4ae5a3ad
BW
373
374 spin_unlock_irqrestore(&lp->lock, flags);
e190d6b1
BW
375}
376
7cc8f381
BW
377/* MDC = 2.5 MHz */
378#define MDC_CLK 2500000
379
02460d08 380static int mii_probe(struct net_device *dev, int phy_mode)
e190d6b1 381{
7ef0a7ee 382 struct bfin_mac_local *lp = netdev_priv(dev);
713d4024 383 struct phy_device *phydev;
4ae5a3ad 384 unsigned short sysctl;
7cc8f381 385 u32 sclk, mdc_div;
e190d6b1 386
4ae5a3ad 387 /* Enable PHY output early */
98f672ca
MF
388 if (!(bfin_read_VR_CTL() & CLKBUFOE))
389 bfin_write_VR_CTL(bfin_read_VR_CTL() | CLKBUFOE);
e190d6b1 390
7cc8f381
BW
391 sclk = get_sclk();
392 mdc_div = ((sclk / MDC_CLK) / 2) - 1;
393
4ae5a3ad 394 sysctl = bfin_read_EMAC_SYSCTL();
9dc7f30e 395 sysctl = (sysctl & ~MDCDIV) | SET_MDCDIV(mdc_div);
e190d6b1 396 bfin_write_EMAC_SYSCTL(sysctl);
e190d6b1 397
713d4024 398 phydev = phy_find_first(lp->mii_bus);
4ae5a3ad 399 if (!phydev) {
c6dd5098 400 netdev_err(dev, "no phy device found\n");
4ae5a3ad 401 return -ENODEV;
e190d6b1
BW
402 }
403
02460d08
SZ
404 if (phy_mode != PHY_INTERFACE_MODE_RMII &&
405 phy_mode != PHY_INTERFACE_MODE_MII) {
c6dd5098 406 netdev_err(dev, "invalid phy interface mode\n");
02460d08
SZ
407 return -EINVAL;
408 }
409
84eff6d1 410 phydev = phy_connect(dev, phydev_name(phydev),
f9a8f83b 411 &bfin_mac_adjust_link, phy_mode);
e190d6b1 412
4ae5a3ad 413 if (IS_ERR(phydev)) {
c6dd5098 414 netdev_err(dev, "could not attach PHY\n");
4ae5a3ad
BW
415 return PTR_ERR(phydev);
416 }
417
418 /* mask with MAC supported features */
419 phydev->supported &= (SUPPORTED_10baseT_Half
420 | SUPPORTED_10baseT_Full
421 | SUPPORTED_100baseT_Half
422 | SUPPORTED_100baseT_Full
423 | SUPPORTED_Autoneg
424 | SUPPORTED_Pause | SUPPORTED_Asym_Pause
425 | SUPPORTED_MII
426 | SUPPORTED_TP);
427
428 phydev->advertising = phydev->supported;
429
430 lp->old_link = 0;
431 lp->old_speed = 0;
432 lp->old_duplex = -1;
4ae5a3ad 433
2220943a
AL
434 phy_attached_print(phydev, "mdc_clk=%dHz(mdc_div=%d)@sclk=%dMHz)\n",
435 MDC_CLK, mdc_div, sclk / 1000000);
4ae5a3ad
BW
436
437 return 0;
438}
439
679dce39
BW
440/*
441 * Ethtool support
442 */
443
53fd3f28
MH
444/*
445 * interrupt routine for magic packet wakeup
446 */
447static irqreturn_t bfin_mac_wake_interrupt(int irq, void *dev_id)
448{
449 return IRQ_HANDLED;
450}
451
679dce39
BW
452static int
453bfin_mac_ethtool_getsettings(struct net_device *dev, struct ethtool_cmd *cmd)
454{
ec87485d
PR
455 if (dev->phydev)
456 return phy_ethtool_gset(dev->phydev, cmd);
679dce39
BW
457
458 return -EINVAL;
459}
460
461static int
462bfin_mac_ethtool_setsettings(struct net_device *dev, struct ethtool_cmd *cmd)
463{
679dce39
BW
464 if (!capable(CAP_NET_ADMIN))
465 return -EPERM;
466
ec87485d
PR
467 if (dev->phydev)
468 return phy_ethtool_sset(dev->phydev, cmd);
679dce39
BW
469
470 return -EINVAL;
471}
472
473static void bfin_mac_ethtool_getdrvinfo(struct net_device *dev,
474 struct ethtool_drvinfo *info)
475{
7826d43f
JP
476 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
477 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
478 strlcpy(info->fw_version, "N/A", sizeof(info->fw_version));
479 strlcpy(info->bus_info, dev_name(&dev->dev), sizeof(info->bus_info));
679dce39
BW
480}
481
53fd3f28
MH
482static void bfin_mac_ethtool_getwol(struct net_device *dev,
483 struct ethtool_wolinfo *wolinfo)
484{
485 struct bfin_mac_local *lp = netdev_priv(dev);
486
487 wolinfo->supported = WAKE_MAGIC;
488 wolinfo->wolopts = lp->wol;
489}
490
491static int bfin_mac_ethtool_setwol(struct net_device *dev,
492 struct ethtool_wolinfo *wolinfo)
493{
494 struct bfin_mac_local *lp = netdev_priv(dev);
495 int rc;
496
497 if (wolinfo->wolopts & (WAKE_MAGICSECURE |
498 WAKE_UCAST |
499 WAKE_MCAST |
500 WAKE_BCAST |
501 WAKE_ARP))
502 return -EOPNOTSUPP;
503
504 lp->wol = wolinfo->wolopts;
505
506 if (lp->wol && !lp->irq_wake_requested) {
507 /* register wake irq handler */
508 rc = request_irq(IRQ_MAC_WAKEDET, bfin_mac_wake_interrupt,
63aca0f7 509 0, "EMAC_WAKE", dev);
53fd3f28
MH
510 if (rc)
511 return rc;
512 lp->irq_wake_requested = true;
513 }
514
515 if (!lp->wol && lp->irq_wake_requested) {
516 free_irq(IRQ_MAC_WAKEDET, dev);
517 lp->irq_wake_requested = false;
518 }
519
520 /* Make sure the PHY driver doesn't suspend */
521 device_init_wakeup(&dev->dev, lp->wol);
522
523 return 0;
524}
525
85c153d2 526#ifdef CONFIG_BFIN_MAC_USE_HWSTAMP
a85bbddd 527static int bfin_mac_ethtool_get_ts_info(struct net_device *dev,
3ffa4290 528 struct ethtool_ts_info *info)
a85bbddd 529{
dd87b22f
RC
530 struct bfin_mac_local *lp = netdev_priv(dev);
531
a85bbddd
RC
532 info->so_timestamping =
533 SOF_TIMESTAMPING_TX_HARDWARE |
534 SOF_TIMESTAMPING_RX_HARDWARE |
bc3c5f63 535 SOF_TIMESTAMPING_RAW_HARDWARE;
dd87b22f 536 info->phc_index = lp->phc_index;
a85bbddd
RC
537 info->tx_types =
538 (1 << HWTSTAMP_TX_OFF) |
539 (1 << HWTSTAMP_TX_ON);
540 info->rx_filters =
541 (1 << HWTSTAMP_FILTER_NONE) |
542 (1 << HWTSTAMP_FILTER_PTP_V1_L4_EVENT) |
543 (1 << HWTSTAMP_FILTER_PTP_V2_L2_EVENT) |
544 (1 << HWTSTAMP_FILTER_PTP_V2_L4_EVENT);
545 return 0;
546}
85c153d2 547#endif
a85bbddd 548
0fc0b732 549static const struct ethtool_ops bfin_mac_ethtool_ops = {
679dce39
BW
550 .get_settings = bfin_mac_ethtool_getsettings,
551 .set_settings = bfin_mac_ethtool_setsettings,
552 .get_link = ethtool_op_get_link,
553 .get_drvinfo = bfin_mac_ethtool_getdrvinfo,
53fd3f28
MH
554 .get_wol = bfin_mac_ethtool_getwol,
555 .set_wol = bfin_mac_ethtool_setwol,
85c153d2 556#ifdef CONFIG_BFIN_MAC_USE_HWSTAMP
a85bbddd 557 .get_ts_info = bfin_mac_ethtool_get_ts_info,
85c153d2 558#endif
679dce39
BW
559};
560
4ae5a3ad 561/**************************************************************************/
5ca1bb5a 562static void setup_system_regs(struct net_device *dev)
4ae5a3ad 563{
02460d08
SZ
564 struct bfin_mac_local *lp = netdev_priv(dev);
565 int i;
4ae5a3ad
BW
566 unsigned short sysctl;
567
568 /*
569 * Odd word alignment for Receive Frame DMA word
570 * Configure checksum support and rcve frame word alignment
571 */
572 sysctl = bfin_read_EMAC_SYSCTL();
02460d08
SZ
573 /*
574 * check if interrupt is requested for any PHY,
575 * enable PHY interrupt only if needed
576 */
577 for (i = 0; i < PHY_MAX_ADDR; ++i)
578 if (lp->mii_bus->irq[i] != PHY_POLL)
579 break;
580 if (i < PHY_MAX_ADDR)
581 sysctl |= PHYIE;
812a9de7 582 sysctl |= RXDWA;
4ae5a3ad 583#if defined(BFIN_MAC_CSUM_OFFLOAD)
812a9de7 584 sysctl |= RXCKS;
4ae5a3ad 585#else
812a9de7 586 sysctl &= ~RXCKS;
4ae5a3ad
BW
587#endif
588 bfin_write_EMAC_SYSCTL(sysctl);
e190d6b1
BW
589
590 bfin_write_EMAC_MMC_CTL(RSTC | CROLL);
591
c599bd6b
MF
592 /* Set vlan regs to let 1522 bytes long packets pass through */
593 bfin_write_EMAC_VLAN1(lp->vlan1_mask);
594 bfin_write_EMAC_VLAN2(lp->vlan2_mask);
595
e190d6b1
BW
596 /* Initialize the TX DMA channel registers */
597 bfin_write_DMA2_X_COUNT(0);
598 bfin_write_DMA2_X_MODIFY(4);
599 bfin_write_DMA2_Y_COUNT(0);
600 bfin_write_DMA2_Y_MODIFY(0);
601
602 /* Initialize the RX DMA channel registers */
603 bfin_write_DMA1_X_COUNT(0);
604 bfin_write_DMA1_X_MODIFY(4);
605 bfin_write_DMA1_Y_COUNT(0);
606 bfin_write_DMA1_Y_MODIFY(0);
607}
608
73f83182 609static void setup_mac_addr(u8 *mac_addr)
e190d6b1
BW
610{
611 u32 addr_low = le32_to_cpu(*(__le32 *) & mac_addr[0]);
612 u16 addr_hi = le16_to_cpu(*(__le16 *) & mac_addr[4]);
613
614 /* this depends on a little-endian machine */
615 bfin_write_EMAC_ADDRLO(addr_low);
616 bfin_write_EMAC_ADDRHI(addr_hi);
617}
618
7ef0a7ee 619static int bfin_mac_set_mac_address(struct net_device *dev, void *p)
73f83182
AL
620{
621 struct sockaddr *addr = p;
622 if (netif_running(dev))
623 return -EBUSY;
624 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
625 setup_mac_addr(dev->dev_addr);
626 return 0;
627}
628
fe92afed
BS
629#ifdef CONFIG_BFIN_MAC_USE_HWSTAMP
630#define bfin_mac_hwtstamp_is_none(cfg) ((cfg) == HWTSTAMP_FILTER_NONE)
631
bc3c5f63
RC
632static u32 bfin_select_phc_clock(u32 input_clk, unsigned int *shift_result)
633{
634 u32 ipn = 1000000000UL / input_clk;
635 u32 ppn = 1;
636 unsigned int shift = 0;
637
638 while (ppn <= ipn) {
639 ppn <<= 1;
640 shift++;
641 }
642 *shift_result = shift;
643 return 1000000000UL / ppn;
644}
645
7575c917
BH
646static int bfin_mac_hwtstamp_set(struct net_device *netdev,
647 struct ifreq *ifr)
fe92afed
BS
648{
649 struct hwtstamp_config config;
650 struct bfin_mac_local *lp = netdev_priv(netdev);
651 u16 ptpctl;
652 u32 ptpfv1, ptpfv2, ptpfv3, ptpfoff;
653
654 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
655 return -EFAULT;
656
657 pr_debug("%s config flag:0x%x, tx_type:0x%x, rx_filter:0x%x\n",
658 __func__, config.flags, config.tx_type, config.rx_filter);
659
660 /* reserved for future extensions */
661 if (config.flags)
662 return -EINVAL;
663
664 if ((config.tx_type != HWTSTAMP_TX_OFF) &&
665 (config.tx_type != HWTSTAMP_TX_ON))
666 return -ERANGE;
667
668 ptpctl = bfin_read_EMAC_PTP_CTL();
669
670 switch (config.rx_filter) {
671 case HWTSTAMP_FILTER_NONE:
672 /*
673 * Dont allow any timestamping
674 */
675 ptpfv3 = 0xFFFFFFFF;
676 bfin_write_EMAC_PTP_FV3(ptpfv3);
677 break;
678 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
679 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
680 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
681 /*
682 * Clear the five comparison mask bits (bits[12:8]) in EMAC_PTP_CTL)
683 * to enable all the field matches.
684 */
685 ptpctl &= ~0x1F00;
686 bfin_write_EMAC_PTP_CTL(ptpctl);
687 /*
688 * Keep the default values of the EMAC_PTP_FOFF register.
689 */
690 ptpfoff = 0x4A24170C;
691 bfin_write_EMAC_PTP_FOFF(ptpfoff);
692 /*
693 * Keep the default values of the EMAC_PTP_FV1 and EMAC_PTP_FV2
694 * registers.
695 */
696 ptpfv1 = 0x11040800;
697 bfin_write_EMAC_PTP_FV1(ptpfv1);
698 ptpfv2 = 0x0140013F;
699 bfin_write_EMAC_PTP_FV2(ptpfv2);
700 /*
701 * The default value (0xFFFC) allows the timestamping of both
702 * received Sync messages and Delay_Req messages.
703 */
704 ptpfv3 = 0xFFFFFFFC;
705 bfin_write_EMAC_PTP_FV3(ptpfv3);
706
707 config.rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_EVENT;
708 break;
709 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
710 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
711 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
712 /* Clear all five comparison mask bits (bits[12:8]) in the
713 * EMAC_PTP_CTL register to enable all the field matches.
714 */
715 ptpctl &= ~0x1F00;
716 bfin_write_EMAC_PTP_CTL(ptpctl);
717 /*
718 * Keep the default values of the EMAC_PTP_FOFF register, except set
719 * the PTPCOF field to 0x2A.
720 */
721 ptpfoff = 0x2A24170C;
722 bfin_write_EMAC_PTP_FOFF(ptpfoff);
723 /*
724 * Keep the default values of the EMAC_PTP_FV1 and EMAC_PTP_FV2
725 * registers.
726 */
727 ptpfv1 = 0x11040800;
728 bfin_write_EMAC_PTP_FV1(ptpfv1);
729 ptpfv2 = 0x0140013F;
730 bfin_write_EMAC_PTP_FV2(ptpfv2);
731 /*
732 * To allow the timestamping of Pdelay_Req and Pdelay_Resp, set
733 * the value to 0xFFF0.
734 */
735 ptpfv3 = 0xFFFFFFF0;
736 bfin_write_EMAC_PTP_FV3(ptpfv3);
737
738 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L4_EVENT;
739 break;
740 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
741 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
742 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
743 /*
744 * Clear bits 8 and 12 of the EMAC_PTP_CTL register to enable only the
745 * EFTM and PTPCM field comparison.
746 */
747 ptpctl &= ~0x1100;
748 bfin_write_EMAC_PTP_CTL(ptpctl);
749 /*
750 * Keep the default values of all the fields of the EMAC_PTP_FOFF
751 * register, except set the PTPCOF field to 0x0E.
752 */
753 ptpfoff = 0x0E24170C;
754 bfin_write_EMAC_PTP_FOFF(ptpfoff);
755 /*
756 * Program bits [15:0] of the EMAC_PTP_FV1 register to 0x88F7, which
757 * corresponds to PTP messages on the MAC layer.
758 */
759 ptpfv1 = 0x110488F7;
760 bfin_write_EMAC_PTP_FV1(ptpfv1);
761 ptpfv2 = 0x0140013F;
762 bfin_write_EMAC_PTP_FV2(ptpfv2);
763 /*
764 * To allow the timestamping of Pdelay_Req and Pdelay_Resp
765 * messages, set the value to 0xFFF0.
766 */
767 ptpfv3 = 0xFFFFFFF0;
768 bfin_write_EMAC_PTP_FV3(ptpfv3);
769
770 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L2_EVENT;
771 break;
772 default:
773 return -ERANGE;
774 }
775
776 if (config.tx_type == HWTSTAMP_TX_OFF &&
777 bfin_mac_hwtstamp_is_none(config.rx_filter)) {
778 ptpctl &= ~PTP_EN;
779 bfin_write_EMAC_PTP_CTL(ptpctl);
780
781 SSYNC();
782 } else {
783 ptpctl |= PTP_EN;
784 bfin_write_EMAC_PTP_CTL(ptpctl);
785
786 /*
787 * clear any existing timestamp
788 */
789 bfin_read_EMAC_PTP_RXSNAPLO();
790 bfin_read_EMAC_PTP_RXSNAPHI();
791
792 bfin_read_EMAC_PTP_TXSNAPLO();
793 bfin_read_EMAC_PTP_TXSNAPHI();
794
fe92afed 795 SSYNC();
fe92afed
BS
796 }
797
798 lp->stamp_cfg = config;
799 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
800 -EFAULT : 0;
801}
802
7575c917
BH
803static int bfin_mac_hwtstamp_get(struct net_device *netdev,
804 struct ifreq *ifr)
805{
806 struct bfin_mac_local *lp = netdev_priv(netdev);
807
808 return copy_to_user(ifr->ifr_data, &lp->stamp_cfg,
809 sizeof(lp->stamp_cfg)) ?
810 -EFAULT : 0;
811}
812
fe92afed
BS
813static void bfin_tx_hwtstamp(struct net_device *netdev, struct sk_buff *skb)
814{
815 struct bfin_mac_local *lp = netdev_priv(netdev);
fe92afed 816
2244d07b 817 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) {
fe92afed
BS
818 int timeout_cnt = MAX_TIMEOUT_CNT;
819
820 /* When doing time stamping, keep the connection to the socket
821 * a while longer
822 */
2244d07b 823 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
fe92afed
BS
824
825 /*
826 * The timestamping is done at the EMAC module's MII/RMII interface
827 * when the module sees the Start of Frame of an event message packet. This
828 * interface is the closest possible place to the physical Ethernet transmission
829 * medium, providing the best timing accuracy.
830 */
831 while ((!(bfin_read_EMAC_PTP_ISTAT() & TXTL)) && (--timeout_cnt))
832 udelay(1);
833 if (timeout_cnt == 0)
c6dd5098 834 netdev_err(netdev, "timestamp the TX packet failed\n");
fe92afed
BS
835 else {
836 struct skb_shared_hwtstamps shhwtstamps;
837 u64 ns;
838 u64 regval;
839
840 regval = bfin_read_EMAC_PTP_TXSNAPLO();
841 regval |= (u64)bfin_read_EMAC_PTP_TXSNAPHI() << 32;
842 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
bc3c5f63 843 ns = regval << lp->shift;
fe92afed 844 shhwtstamps.hwtstamp = ns_to_ktime(ns);
fe92afed 845 skb_tstamp_tx(skb, &shhwtstamps);
fe92afed
BS
846 }
847 }
848}
849
850static void bfin_rx_hwtstamp(struct net_device *netdev, struct sk_buff *skb)
851{
852 struct bfin_mac_local *lp = netdev_priv(netdev);
853 u32 valid;
854 u64 regval, ns;
855 struct skb_shared_hwtstamps *shhwtstamps;
856
857 if (bfin_mac_hwtstamp_is_none(lp->stamp_cfg.rx_filter))
858 return;
859
860 valid = bfin_read_EMAC_PTP_ISTAT() & RXEL;
861 if (!valid)
862 return;
863
864 shhwtstamps = skb_hwtstamps(skb);
865
866 regval = bfin_read_EMAC_PTP_RXSNAPLO();
867 regval |= (u64)bfin_read_EMAC_PTP_RXSNAPHI() << 32;
bc3c5f63 868 ns = regval << lp->shift;
fe92afed
BS
869 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
870 shhwtstamps->hwtstamp = ns_to_ktime(ns);
fe92afed
BS
871}
872
fe92afed
BS
873static void bfin_mac_hwtstamp_init(struct net_device *netdev)
874{
875 struct bfin_mac_local *lp = netdev_priv(netdev);
dd87b22f 876 u64 addend, ppb;
bc3c5f63 877 u32 input_clk, phc_clk;
fe92afed
BS
878
879 /* Initialize hardware timer */
bc3c5f63
RC
880 input_clk = get_sclk();
881 phc_clk = bfin_select_phc_clock(input_clk, &lp->shift);
882 addend = phc_clk * (1ULL << 32);
883 do_div(addend, input_clk);
884 bfin_write_EMAC_PTP_ADDEND((u32)addend);
885
886 lp->addend = addend;
dd87b22f
RC
887 ppb = 1000000000ULL * input_clk;
888 do_div(ppb, phc_clk);
889 lp->max_ppb = ppb - 1000000000ULL - 1ULL;
fe92afed
BS
890
891 /* Initialize hwstamp config */
892 lp->stamp_cfg.rx_filter = HWTSTAMP_FILTER_NONE;
893 lp->stamp_cfg.tx_type = HWTSTAMP_TX_OFF;
894}
895
dd87b22f
RC
896static u64 bfin_ptp_time_read(struct bfin_mac_local *lp)
897{
898 u64 ns;
899 u32 lo, hi;
900
901 lo = bfin_read_EMAC_PTP_TIMELO();
902 hi = bfin_read_EMAC_PTP_TIMEHI();
903
904 ns = ((u64) hi) << 32;
905 ns |= lo;
906 ns <<= lp->shift;
907
908 return ns;
909}
910
911static void bfin_ptp_time_write(struct bfin_mac_local *lp, u64 ns)
912{
913 u32 hi, lo;
914
915 ns >>= lp->shift;
916 hi = ns >> 32;
917 lo = ns & 0xffffffff;
918
919 bfin_write_EMAC_PTP_TIMELO(lo);
920 bfin_write_EMAC_PTP_TIMEHI(hi);
921}
922
923/* PTP Hardware Clock operations */
924
925static int bfin_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
926{
927 u64 adj;
928 u32 diff, addend;
929 int neg_adj = 0;
930 struct bfin_mac_local *lp =
931 container_of(ptp, struct bfin_mac_local, caps);
932
933 if (ppb < 0) {
934 neg_adj = 1;
935 ppb = -ppb;
936 }
937 addend = lp->addend;
938 adj = addend;
939 adj *= ppb;
940 diff = div_u64(adj, 1000000000ULL);
941
942 addend = neg_adj ? addend - diff : addend + diff;
943
944 bfin_write_EMAC_PTP_ADDEND(addend);
945
946 return 0;
947}
948
949static int bfin_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
950{
951 s64 now;
952 unsigned long flags;
953 struct bfin_mac_local *lp =
954 container_of(ptp, struct bfin_mac_local, caps);
955
956 spin_lock_irqsave(&lp->phc_lock, flags);
957
958 now = bfin_ptp_time_read(lp);
959 now += delta;
960 bfin_ptp_time_write(lp, now);
961
962 spin_unlock_irqrestore(&lp->phc_lock, flags);
963
964 return 0;
965}
966
20ca7fb6 967static int bfin_ptp_gettime(struct ptp_clock_info *ptp, struct timespec64 *ts)
dd87b22f
RC
968{
969 u64 ns;
dd87b22f
RC
970 unsigned long flags;
971 struct bfin_mac_local *lp =
972 container_of(ptp, struct bfin_mac_local, caps);
973
974 spin_lock_irqsave(&lp->phc_lock, flags);
975
976 ns = bfin_ptp_time_read(lp);
977
978 spin_unlock_irqrestore(&lp->phc_lock, flags);
979
96ff1c37
RC
980 *ts = ns_to_timespec64(ns);
981
dd87b22f
RC
982 return 0;
983}
984
985static int bfin_ptp_settime(struct ptp_clock_info *ptp,
20ca7fb6 986 const struct timespec64 *ts)
dd87b22f
RC
987{
988 u64 ns;
989 unsigned long flags;
990 struct bfin_mac_local *lp =
991 container_of(ptp, struct bfin_mac_local, caps);
992
96ff1c37 993 ns = timespec64_to_ns(ts);
dd87b22f
RC
994
995 spin_lock_irqsave(&lp->phc_lock, flags);
996
997 bfin_ptp_time_write(lp, ns);
998
999 spin_unlock_irqrestore(&lp->phc_lock, flags);
1000
1001 return 0;
1002}
1003
1004static int bfin_ptp_enable(struct ptp_clock_info *ptp,
1005 struct ptp_clock_request *rq, int on)
1006{
1007 return -EOPNOTSUPP;
1008}
1009
1010static struct ptp_clock_info bfin_ptp_caps = {
1011 .owner = THIS_MODULE,
1012 .name = "BF518 clock",
1013 .max_adj = 0,
1014 .n_alarm = 0,
1015 .n_ext_ts = 0,
1016 .n_per_out = 0,
4986b4f0 1017 .n_pins = 0,
dd87b22f
RC
1018 .pps = 0,
1019 .adjfreq = bfin_ptp_adjfreq,
1020 .adjtime = bfin_ptp_adjtime,
20ca7fb6
RC
1021 .gettime64 = bfin_ptp_gettime,
1022 .settime64 = bfin_ptp_settime,
dd87b22f
RC
1023 .enable = bfin_ptp_enable,
1024};
1025
1026static int bfin_phc_init(struct net_device *netdev, struct device *dev)
1027{
1028 struct bfin_mac_local *lp = netdev_priv(netdev);
1029
1030 lp->caps = bfin_ptp_caps;
1031 lp->caps.max_adj = lp->max_ppb;
1032 lp->clock = ptp_clock_register(&lp->caps, dev);
1033 if (IS_ERR(lp->clock))
1034 return PTR_ERR(lp->clock);
1035
1036 lp->phc_index = ptp_clock_index(lp->clock);
1037 spin_lock_init(&lp->phc_lock);
1038
1039 return 0;
1040}
1041
1042static void bfin_phc_release(struct bfin_mac_local *lp)
1043{
1044 ptp_clock_unregister(lp->clock);
1045}
1046
fe92afed
BS
1047#else
1048# define bfin_mac_hwtstamp_is_none(cfg) 0
1049# define bfin_mac_hwtstamp_init(dev)
7575c917
BH
1050# define bfin_mac_hwtstamp_set(dev, ifr) (-EOPNOTSUPP)
1051# define bfin_mac_hwtstamp_get(dev, ifr) (-EOPNOTSUPP)
fe92afed
BS
1052# define bfin_rx_hwtstamp(dev, skb)
1053# define bfin_tx_hwtstamp(dev, skb)
dd87b22f
RC
1054# define bfin_phc_init(netdev, dev) 0
1055# define bfin_phc_release(lp)
fe92afed
BS
1056#endif
1057
4fcc3d34
SZ
1058static inline void _tx_reclaim_skb(void)
1059{
1060 do {
1061 tx_list_head->desc_a.config &= ~DMAEN;
1062 tx_list_head->status.status_word = 0;
1063 if (tx_list_head->skb) {
21534d20 1064 dev_consume_skb_any(tx_list_head->skb);
4fcc3d34
SZ
1065 tx_list_head->skb = NULL;
1066 }
1067 tx_list_head = tx_list_head->next;
1068
1069 } while (tx_list_head->status.status_word != 0);
1070}
1071
1072static void tx_reclaim_skb(struct bfin_mac_local *lp)
e190d6b1
BW
1073{
1074 int timeout_cnt = MAX_TIMEOUT_CNT;
1075
4fcc3d34
SZ
1076 if (tx_list_head->status.status_word != 0)
1077 _tx_reclaim_skb();
e190d6b1 1078
4fcc3d34 1079 if (current_tx_ptr->next == tx_list_head) {
e190d6b1 1080 while (tx_list_head->status.status_word == 0) {
4fcc3d34 1081 /* slow down polling to avoid too many queue stop. */
015dac88 1082 udelay(10);
4fcc3d34
SZ
1083 /* reclaim skb if DMA is not running. */
1084 if (!(bfin_read_DMA2_IRQ_STATUS() & DMA_RUN))
1085 break;
1086 if (timeout_cnt-- < 0)
e190d6b1 1087 break;
e190d6b1 1088 }
4fcc3d34
SZ
1089
1090 if (timeout_cnt >= 0)
1091 _tx_reclaim_skb();
1092 else
1093 netif_stop_queue(lp->ndev);
e190d6b1
BW
1094 }
1095
4fcc3d34
SZ
1096 if (current_tx_ptr->next != tx_list_head &&
1097 netif_queue_stopped(lp->ndev))
1098 netif_wake_queue(lp->ndev);
1099
1100 if (tx_list_head != current_tx_ptr) {
1101 /* shorten the timer interval if tx queue is stopped */
1102 if (netif_queue_stopped(lp->ndev))
1103 lp->tx_reclaim_timer.expires =
1104 jiffies + (TX_RECLAIM_JIFFIES >> 4);
1105 else
1106 lp->tx_reclaim_timer.expires =
1107 jiffies + TX_RECLAIM_JIFFIES;
1108
1109 mod_timer(&lp->tx_reclaim_timer,
1110 lp->tx_reclaim_timer.expires);
1111 }
e190d6b1 1112
e190d6b1 1113 return;
4fcc3d34 1114}
e190d6b1 1115
4fcc3d34
SZ
1116static void tx_reclaim_skb_timeout(unsigned long lp)
1117{
1118 tx_reclaim_skb((struct bfin_mac_local *)lp);
e190d6b1
BW
1119}
1120
7ef0a7ee 1121static int bfin_mac_hard_start_xmit(struct sk_buff *skb,
e190d6b1
BW
1122 struct net_device *dev)
1123{
4fcc3d34 1124 struct bfin_mac_local *lp = netdev_priv(dev);
a50c0c05 1125 u16 *data;
015dac88 1126 u32 data_align = (unsigned long)(skb->data) & 0x3;
fe92afed 1127
e190d6b1
BW
1128 current_tx_ptr->skb = skb;
1129
015dac88
MH
1130 if (data_align == 0x2) {
1131 /* move skb->data to current_tx_ptr payload */
1132 data = (u16 *)(skb->data) - 1;
fe92afed
BS
1133 *data = (u16)(skb->len);
1134 /*
1135 * When transmitting an Ethernet packet, the PTP_TSYNC module requires
1136 * a DMA_Length_Word field associated with the packet. The lower 12 bits
1137 * of this field are the length of the packet payload in bytes and the higher
1138 * 4 bits are the timestamping enable field.
1139 */
2244d07b 1140 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
fe92afed
BS
1141 *data |= 0x1000;
1142
015dac88
MH
1143 current_tx_ptr->desc_a.start_addr = (u32)data;
1144 /* this is important! */
1145 blackfin_dcache_flush_range((u32)data,
1146 (u32)((u8 *)data + skb->len + 4));
e190d6b1 1147 } else {
015dac88 1148 *((u16 *)(current_tx_ptr->packet)) = (u16)(skb->len);
fe92afed 1149 /* enable timestamping for the sent packet */
2244d07b 1150 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
fe92afed 1151 *((u16 *)(current_tx_ptr->packet)) |= 0x1000;
015dac88
MH
1152 memcpy((u8 *)(current_tx_ptr->packet + 2), skb->data,
1153 skb->len);
1154 current_tx_ptr->desc_a.start_addr =
1155 (u32)current_tx_ptr->packet;
015dac88
MH
1156 blackfin_dcache_flush_range(
1157 (u32)current_tx_ptr->packet,
1158 (u32)(current_tx_ptr->packet + skb->len + 2));
e190d6b1
BW
1159 }
1160
805a8ab3
SZ
1161 /* make sure the internal data buffers in the core are drained
1162 * so that the DMA descriptors are completely written when the
1163 * DMA engine goes to fetch them below
1164 */
1165 SSYNC();
1166
4fcc3d34
SZ
1167 /* always clear status buffer before start tx dma */
1168 current_tx_ptr->status.status_word = 0;
1169
e190d6b1
BW
1170 /* enable this packet's dma */
1171 current_tx_ptr->desc_a.config |= DMAEN;
1172
1173 /* tx dma is running, just return */
015dac88 1174 if (bfin_read_DMA2_IRQ_STATUS() & DMA_RUN)
e190d6b1
BW
1175 goto out;
1176
1177 /* tx dma is not running */
1178 bfin_write_DMA2_NEXT_DESC_PTR(&(current_tx_ptr->desc_a));
1179 /* dma enabled, read from memory, size is 6 */
1180 bfin_write_DMA2_CONFIG(current_tx_ptr->desc_a.config);
1181 /* Turn on the EMAC tx */
1182 bfin_write_EMAC_OPMODE(bfin_read_EMAC_OPMODE() | TE);
1183
1184out:
fe92afed
BS
1185 bfin_tx_hwtstamp(dev, skb);
1186
e190d6b1 1187 current_tx_ptr = current_tx_ptr->next;
09f75cd7
JG
1188 dev->stats.tx_packets++;
1189 dev->stats.tx_bytes += (skb->len);
4fcc3d34
SZ
1190
1191 tx_reclaim_skb(lp);
1192
6ed10654 1193 return NETDEV_TX_OK;
e190d6b1
BW
1194}
1195
ad2864d8 1196#define IP_HEADER_OFF 0
ec497b32
PM
1197#define RX_ERROR_MASK (RX_LONG | RX_ALIGN | RX_CRC | RX_LEN | \
1198 RX_FRAG | RX_ADDR | RX_DMAO | RX_PHY | RX_LATE | RX_RANGE)
1199
159945af 1200static void bfin_mac_rx(struct bfin_mac_local *lp)
e190d6b1 1201{
159945af 1202 struct net_device *dev = lp->ndev;
e190d6b1 1203 struct sk_buff *skb, *new_skb;
e190d6b1 1204 unsigned short len;
ad2864d8
SZ
1205#if defined(BFIN_MAC_CSUM_OFFLOAD)
1206 unsigned int i;
1207 unsigned char fcs[ETH_FCS_LEN + 1];
1208#endif
e190d6b1 1209
ec497b32
PM
1210 /* check if frame status word reports an error condition
1211 * we which case we simply drop the packet
1212 */
1213 if (current_rx_ptr->status.status_word & RX_ERROR_MASK) {
c6dd5098 1214 netdev_notice(dev, "rx: receive error - packet dropped\n");
ec497b32
PM
1215 dev->stats.rx_dropped++;
1216 goto out;
1217 }
1218
e190d6b1
BW
1219 /* allocate a new skb for next time receive */
1220 skb = current_rx_ptr->skb;
fe92afed 1221
1ab0d2ec 1222 new_skb = netdev_alloc_skb(dev, PKT_BUF_SZ + NET_IP_ALIGN);
e190d6b1 1223 if (!new_skb) {
09f75cd7 1224 dev->stats.rx_dropped++;
e190d6b1
BW
1225 goto out;
1226 }
1227 /* reserve 2 bytes for RXDWA padding */
015dac88 1228 skb_reserve(new_skb, NET_IP_ALIGN);
6e01d1a4
AD
1229 /* Invidate the data cache of skb->data range when it is write back
1230 * cache. It will prevent overwritting the new data from DMA
1231 */
1232 blackfin_dcache_invalidate_range((unsigned long)new_skb->head,
1233 (unsigned long)new_skb->end);
1234
f6e1e4f3
SZ
1235 current_rx_ptr->skb = new_skb;
1236 current_rx_ptr->desc_a.start_addr = (unsigned long)new_skb->data - 2;
1237
159945af 1238 len = (unsigned short)(current_rx_ptr->status.status_word & RX_FRLEN);
ad2864d8
SZ
1239 /* Deduce Ethernet FCS length from Ethernet payload length */
1240 len -= ETH_FCS_LEN;
e190d6b1 1241 skb_put(skb, len);
e190d6b1 1242
e190d6b1 1243 skb->protocol = eth_type_trans(skb, dev);
fe92afed
BS
1244
1245 bfin_rx_hwtstamp(dev, skb);
1246
e190d6b1 1247#if defined(BFIN_MAC_CSUM_OFFLOAD)
ad2864d8
SZ
1248 /* Checksum offloading only works for IPv4 packets with the standard IP header
1249 * length of 20 bytes, because the blackfin MAC checksum calculation is
1250 * based on that assumption. We must NOT use the calculated checksum if our
1251 * IP version or header break that assumption.
1252 */
1253 if (skb->data[IP_HEADER_OFF] == 0x45) {
1254 skb->csum = current_rx_ptr->status.ip_payload_csum;
1255 /*
1256 * Deduce Ethernet FCS from hardware generated IP payload checksum.
1257 * IP checksum is based on 16-bit one's complement algorithm.
1258 * To deduce a value from checksum is equal to add its inversion.
1259 * If the IP payload len is odd, the inversed FCS should also
1260 * begin from odd address and leave first byte zero.
1261 */
1262 if (skb->len % 2) {
1263 fcs[0] = 0;
1264 for (i = 0; i < ETH_FCS_LEN; i++)
1265 fcs[i + 1] = ~skb->data[skb->len + i];
1266 skb->csum = csum_partial(fcs, ETH_FCS_LEN + 1, skb->csum);
1267 } else {
1268 for (i = 0; i < ETH_FCS_LEN; i++)
1269 fcs[i] = ~skb->data[skb->len + i];
1270 skb->csum = csum_partial(fcs, ETH_FCS_LEN, skb->csum);
1271 }
1272 skb->ip_summed = CHECKSUM_COMPLETE;
1273 }
e190d6b1
BW
1274#endif
1275
159945af
SZ
1276 napi_gro_receive(&lp->napi, skb);
1277
09f75cd7
JG
1278 dev->stats.rx_packets++;
1279 dev->stats.rx_bytes += len;
ec497b32 1280out:
e190d6b1
BW
1281 current_rx_ptr->status.status_word = 0x00000000;
1282 current_rx_ptr = current_rx_ptr->next;
e190d6b1
BW
1283}
1284
159945af
SZ
1285static int bfin_mac_poll(struct napi_struct *napi, int budget)
1286{
1287 int i = 0;
1288 struct bfin_mac_local *lp = container_of(napi,
1289 struct bfin_mac_local,
1290 napi);
1291
1292 while (current_rx_ptr->status.status_word != 0 && i < budget) {
1293 bfin_mac_rx(lp);
1294 i++;
1295 }
1296
1297 if (i < budget) {
1298 napi_complete(napi);
1299 if (test_and_clear_bit(BFIN_MAC_RX_IRQ_DISABLED, &lp->flags))
1300 enable_irq(IRQ_MAC_RX);
1301 }
1302
1303 return i;
1304}
1305
e190d6b1 1306/* interrupt routine to handle rx and error signal */
7ef0a7ee 1307static irqreturn_t bfin_mac_interrupt(int irq, void *dev_id)
e190d6b1 1308{
159945af
SZ
1309 struct bfin_mac_local *lp = netdev_priv(dev_id);
1310 u32 status;
1311
1312 status = bfin_read_DMA1_IRQ_STATUS();
1313
1314 bfin_write_DMA1_IRQ_STATUS(status | DMA_DONE | DMA_ERR);
1315 if (status & DMA_DONE) {
1316 disable_irq_nosync(IRQ_MAC_RX);
1317 set_bit(BFIN_MAC_RX_IRQ_DISABLED, &lp->flags);
1318 napi_schedule(&lp->napi);
e190d6b1
BW
1319 }
1320
159945af 1321 return IRQ_HANDLED;
e190d6b1
BW
1322}
1323
1324#ifdef CONFIG_NET_POLL_CONTROLLER
159945af 1325static void bfin_mac_poll_controller(struct net_device *dev)
e190d6b1 1326{
4fcc3d34
SZ
1327 struct bfin_mac_local *lp = netdev_priv(dev);
1328
7ef0a7ee 1329 bfin_mac_interrupt(IRQ_MAC_RX, dev);
4fcc3d34 1330 tx_reclaim_skb(lp);
e190d6b1
BW
1331}
1332#endif /* CONFIG_NET_POLL_CONTROLLER */
1333
7ef0a7ee 1334static void bfin_mac_disable(void)
e190d6b1
BW
1335{
1336 unsigned int opmode;
1337
1338 opmode = bfin_read_EMAC_OPMODE();
1339 opmode &= (~RE);
1340 opmode &= (~TE);
1341 /* Turn off the EMAC */
1342 bfin_write_EMAC_OPMODE(opmode);
1343}
1344
1345/*
1346 * Enable Interrupts, Receive, and Transmit
1347 */
02460d08 1348static int bfin_mac_enable(struct phy_device *phydev)
e190d6b1 1349{
2bfa0f0c 1350 int ret;
e190d6b1
BW
1351 u32 opmode;
1352
c6dd5098 1353 pr_debug("%s\n", __func__);
e190d6b1
BW
1354
1355 /* Set RX DMA */
1356 bfin_write_DMA1_NEXT_DESC_PTR(&(rx_list_head->desc_a));
1357 bfin_write_DMA1_CONFIG(rx_list_head->desc_a.config);
1358
1359 /* Wait MII done */
2bfa0f0c
MF
1360 ret = bfin_mdio_poll();
1361 if (ret)
1362 return ret;
e190d6b1
BW
1363
1364 /* We enable only RX here */
1365 /* ASTP : Enable Automatic Pad Stripping
1366 PR : Promiscuous Mode for test
1367 PSF : Receive frames with total length less than 64 bytes.
1368 FDMODE : Full Duplex Mode
1369 LB : Internal Loopback for test
1370 RE : Receiver Enable */
1371 opmode = bfin_read_EMAC_OPMODE();
1372 if (opmode & FDMODE)
1373 opmode |= PSF;
1374 else
1375 opmode |= DRO | DC | PSF;
1376 opmode |= RE;
1377
02460d08
SZ
1378 if (phydev->interface == PHY_INTERFACE_MODE_RMII) {
1379 opmode |= RMII; /* For Now only 100MBit are supported */
72f49050
MF
1380#if defined(CONFIG_BF537) || defined(CONFIG_BF536)
1381 if (__SILICON_REVISION__ < 3) {
1382 /*
1383 * This isn't publicly documented (fun times!), but in
1384 * silicon <=0.2, the RX and TX pins are clocked together.
1385 * So in order to recv, we must enable the transmit side
1386 * as well. This will cause a spurious TX interrupt too,
1387 * but we can easily consume that.
1388 */
1389 opmode |= TE;
1390 }
e190d6b1 1391#endif
02460d08
SZ
1392 }
1393
e190d6b1
BW
1394 /* Turn on the EMAC rx */
1395 bfin_write_EMAC_OPMODE(opmode);
2bfa0f0c
MF
1396
1397 return 0;
e190d6b1
BW
1398}
1399
1400/* Our watchdog timed out. Called by the networking layer */
7ef0a7ee 1401static void bfin_mac_timeout(struct net_device *dev)
e190d6b1 1402{
4fcc3d34
SZ
1403 struct bfin_mac_local *lp = netdev_priv(dev);
1404
b39d66a8 1405 pr_debug("%s: %s\n", dev->name, __func__);
e190d6b1 1406
7ef0a7ee 1407 bfin_mac_disable();
e190d6b1 1408
4fcc3d34
SZ
1409 del_timer(&lp->tx_reclaim_timer);
1410
1411 /* reset tx queue and free skb */
1412 while (tx_list_head != current_tx_ptr) {
1413 tx_list_head->desc_a.config &= ~DMAEN;
1414 tx_list_head->status.status_word = 0;
1415 if (tx_list_head->skb) {
1416 dev_kfree_skb(tx_list_head->skb);
1417 tx_list_head->skb = NULL;
1418 }
1419 tx_list_head = tx_list_head->next;
1420 }
1421
159945af
SZ
1422 if (netif_queue_stopped(dev))
1423 netif_wake_queue(dev);
e190d6b1 1424
ec87485d 1425 bfin_mac_enable(dev->phydev);
e190d6b1
BW
1426
1427 /* We can accept TX packets again */
860e9538 1428 netif_trans_update(dev); /* prevent tx timeout */
e190d6b1
BW
1429}
1430
7ef0a7ee 1431static void bfin_mac_multicast_hash(struct net_device *dev)
775919bc
AW
1432{
1433 u32 emac_hashhi, emac_hashlo;
22bedad3 1434 struct netdev_hw_addr *ha;
775919bc
AW
1435 u32 crc;
1436
1437 emac_hashhi = emac_hashlo = 0;
1438
22bedad3 1439 netdev_for_each_mc_addr(ha, dev) {
f767b6df 1440 crc = ether_crc(ETH_ALEN, ha->addr);
775919bc
AW
1441 crc >>= 26;
1442
1443 if (crc & 0x20)
1444 emac_hashhi |= 1 << (crc & 0x1f);
1445 else
1446 emac_hashlo |= 1 << (crc & 0x1f);
1447 }
1448
1449 bfin_write_EMAC_HASHHI(emac_hashhi);
1450 bfin_write_EMAC_HASHLO(emac_hashlo);
775919bc
AW
1451}
1452
e190d6b1
BW
1453/*
1454 * This routine will, depending on the values passed to it,
1455 * either make it accept multicast packets, go into
1456 * promiscuous mode (for TCPDUMP and cousins) or accept
1457 * a select set of multicast packets
1458 */
7ef0a7ee 1459static void bfin_mac_set_multicast_list(struct net_device *dev)
e190d6b1
BW
1460{
1461 u32 sysctl;
1462
1463 if (dev->flags & IFF_PROMISC) {
c6dd5098 1464 netdev_info(dev, "set promisc mode\n");
e190d6b1 1465 sysctl = bfin_read_EMAC_OPMODE();
c0da776b 1466 sysctl |= PR;
e190d6b1 1467 bfin_write_EMAC_OPMODE(sysctl);
775919bc 1468 } else if (dev->flags & IFF_ALLMULTI) {
e190d6b1
BW
1469 /* accept all multicast */
1470 sysctl = bfin_read_EMAC_OPMODE();
1471 sysctl |= PAM;
1472 bfin_write_EMAC_OPMODE(sysctl);
4cd24eaf 1473 } else if (!netdev_mc_empty(dev)) {
775919bc
AW
1474 /* set up multicast hash table */
1475 sysctl = bfin_read_EMAC_OPMODE();
1476 sysctl |= HM;
1477 bfin_write_EMAC_OPMODE(sysctl);
7ef0a7ee 1478 bfin_mac_multicast_hash(dev);
e190d6b1
BW
1479 } else {
1480 /* clear promisc or multicast mode */
1481 sysctl = bfin_read_EMAC_OPMODE();
1482 sysctl &= ~(RAF | PAM);
1483 bfin_write_EMAC_OPMODE(sysctl);
1484 }
1485}
1486
fe92afed
BS
1487static int bfin_mac_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
1488{
02460d08
SZ
1489 if (!netif_running(netdev))
1490 return -EINVAL;
1491
fe92afed
BS
1492 switch (cmd) {
1493 case SIOCSHWTSTAMP:
7575c917
BH
1494 return bfin_mac_hwtstamp_set(netdev, ifr);
1495 case SIOCGHWTSTAMP:
1496 return bfin_mac_hwtstamp_get(netdev, ifr);
fe92afed 1497 default:
ec87485d
PR
1498 if (netdev->phydev)
1499 return phy_mii_ioctl(netdev->phydev, ifr, cmd);
02460d08
SZ
1500 else
1501 return -EOPNOTSUPP;
fe92afed
BS
1502 }
1503}
1504
e190d6b1
BW
1505/*
1506 * this puts the device in an inactive state
1507 */
7ef0a7ee 1508static void bfin_mac_shutdown(struct net_device *dev)
e190d6b1
BW
1509{
1510 /* Turn off the EMAC */
1511 bfin_write_EMAC_OPMODE(0x00000000);
1512 /* Turn off the EMAC RX DMA */
1513 bfin_write_DMA1_CONFIG(0x0000);
1514 bfin_write_DMA2_CONFIG(0x0000);
1515}
1516
1517/*
1518 * Open and Initialize the interface
1519 *
1520 * Set up everything, reset the card, etc..
1521 */
7ef0a7ee 1522static int bfin_mac_open(struct net_device *dev)
e190d6b1 1523{
7ef0a7ee 1524 struct bfin_mac_local *lp = netdev_priv(dev);
2bfa0f0c 1525 int ret;
b39d66a8 1526 pr_debug("%s: %s\n", dev->name, __func__);
e190d6b1
BW
1527
1528 /*
1529 * Check that the address is valid. If its not, refuse
1530 * to bring the device up. The user must specify an
1531 * address using ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx
1532 */
1533 if (!is_valid_ether_addr(dev->dev_addr)) {
c6dd5098 1534 netdev_warn(dev, "no valid ethernet hw addr\n");
e190d6b1
BW
1535 return -EINVAL;
1536 }
1537
1538 /* initial rx and tx list */
1ab0d2ec 1539 ret = desc_list_init(dev);
2bfa0f0c
MF
1540 if (ret)
1541 return ret;
e190d6b1 1542
ec87485d 1543 phy_start(dev->phydev);
e190d6b1 1544 setup_system_regs(dev);
ee02fee8 1545 setup_mac_addr(dev->dev_addr);
2bfa0f0c 1546
7ef0a7ee 1547 bfin_mac_disable();
ec87485d 1548 ret = bfin_mac_enable(dev->phydev);
2bfa0f0c
MF
1549 if (ret)
1550 return ret;
e190d6b1 1551 pr_debug("hardware init finished\n");
2bfa0f0c 1552
159945af 1553 napi_enable(&lp->napi);
e190d6b1
BW
1554 netif_start_queue(dev);
1555 netif_carrier_on(dev);
1556
1557 return 0;
1558}
1559
1560/*
e190d6b1
BW
1561 * this makes the board clean up everything that it can
1562 * and not talk to the outside world. Caused by
1563 * an 'ifconfig ethX down'
1564 */
7ef0a7ee 1565static int bfin_mac_close(struct net_device *dev)
e190d6b1 1566{
7ef0a7ee 1567 struct bfin_mac_local *lp = netdev_priv(dev);
b39d66a8 1568 pr_debug("%s: %s\n", dev->name, __func__);
e190d6b1
BW
1569
1570 netif_stop_queue(dev);
159945af 1571 napi_disable(&lp->napi);
e190d6b1
BW
1572 netif_carrier_off(dev);
1573
ec87485d
PR
1574 phy_stop(dev->phydev);
1575 phy_write(dev->phydev, MII_BMCR, BMCR_PDOWN);
4ae5a3ad 1576
e190d6b1 1577 /* clear everything */
7ef0a7ee 1578 bfin_mac_shutdown(dev);
e190d6b1
BW
1579
1580 /* free the rx/tx buffers */
1581 desc_list_free();
1582
1583 return 0;
1584}
1585
b63dc8fe
MF
1586static const struct net_device_ops bfin_mac_netdev_ops = {
1587 .ndo_open = bfin_mac_open,
1588 .ndo_stop = bfin_mac_close,
1589 .ndo_start_xmit = bfin_mac_hard_start_xmit,
1590 .ndo_set_mac_address = bfin_mac_set_mac_address,
1591 .ndo_tx_timeout = bfin_mac_timeout,
afc4b13d 1592 .ndo_set_rx_mode = bfin_mac_set_multicast_list,
fe92afed 1593 .ndo_do_ioctl = bfin_mac_ioctl,
b63dc8fe
MF
1594 .ndo_validate_addr = eth_validate_addr,
1595 .ndo_change_mtu = eth_change_mtu,
1596#ifdef CONFIG_NET_POLL_CONTROLLER
159945af 1597 .ndo_poll_controller = bfin_mac_poll_controller,
b63dc8fe
MF
1598#endif
1599};
1600
49f7315b 1601static int bfin_mac_probe(struct platform_device *pdev)
e190d6b1 1602{
7ef0a7ee
BW
1603 struct net_device *ndev;
1604 struct bfin_mac_local *lp;
080c8255 1605 struct platform_device *pd;
02460d08 1606 struct bfin_mii_bus_platform_data *mii_bus_data;
080c8255 1607 int rc;
7ef0a7ee
BW
1608
1609 ndev = alloc_etherdev(sizeof(struct bfin_mac_local));
41de8d4c 1610 if (!ndev)
7ef0a7ee 1611 return -ENOMEM;
7ef0a7ee
BW
1612
1613 SET_NETDEV_DEV(ndev, &pdev->dev);
1614 platform_set_drvdata(pdev, ndev);
1615 lp = netdev_priv(ndev);
4fcc3d34 1616 lp->ndev = ndev;
e190d6b1
BW
1617
1618 /* Grab the MAC address in the MAC */
7ef0a7ee
BW
1619 *(__le32 *) (&(ndev->dev_addr[0])) = cpu_to_le32(bfin_read_EMAC_ADDRLO());
1620 *(__le16 *) (&(ndev->dev_addr[4])) = cpu_to_le16((u16) bfin_read_EMAC_ADDRHI());
e190d6b1
BW
1621
1622 /* probe mac */
1623 /*todo: how to proble? which is revision_register */
1624 bfin_write_EMAC_ADDRLO(0x12345678);
1625 if (bfin_read_EMAC_ADDRLO() != 0x12345678) {
7ef0a7ee
BW
1626 dev_err(&pdev->dev, "Cannot detect Blackfin on-chip ethernet MAC controller!\n");
1627 rc = -ENODEV;
1628 goto out_err_probe_mac;
e190d6b1
BW
1629 }
1630
e190d6b1 1631
7ef0a7ee
BW
1632 /*
1633 * Is it valid? (Did bootloader initialize it?)
1634 * Grab the MAC from the board somehow
1635 * this is done in the arch/blackfin/mach-bfxxx/boards/eth_mac.c
1636 */
5055d2f2
DK
1637 if (!is_valid_ether_addr(ndev->dev_addr)) {
1638 if (bfin_get_ether_addr(ndev->dev_addr) ||
1639 !is_valid_ether_addr(ndev->dev_addr)) {
1640 /* Still not valid, get a random one */
1641 netdev_warn(ndev, "Setting Ethernet MAC to a random one\n");
1642 eth_hw_addr_random(ndev);
1643 }
1644 }
e190d6b1 1645
7ef0a7ee 1646 setup_mac_addr(ndev->dev_addr);
e190d6b1 1647
a63b82c4 1648 if (!dev_get_platdata(&pdev->dev)) {
080c8255
GY
1649 dev_err(&pdev->dev, "Cannot get platform device bfin_mii_bus!\n");
1650 rc = -ENODEV;
1651 goto out_err_probe_mac;
7ef0a7ee 1652 }
a63b82c4 1653 pd = dev_get_platdata(&pdev->dev);
080c8255 1654 lp->mii_bus = platform_get_drvdata(pd);
0e995cd3
SZ
1655 if (!lp->mii_bus) {
1656 dev_err(&pdev->dev, "Cannot get mii_bus!\n");
1657 rc = -ENODEV;
02460d08 1658 goto out_err_probe_mac;
0e995cd3 1659 }
080c8255 1660 lp->mii_bus->priv = ndev;
a63b82c4 1661 mii_bus_data = dev_get_platdata(&pd->dev);
4ae5a3ad 1662
02460d08 1663 rc = mii_probe(ndev, mii_bus_data->phy_mode);
7ef0a7ee
BW
1664 if (rc) {
1665 dev_err(&pdev->dev, "MII Probe failed!\n");
1666 goto out_err_mii_probe;
1667 }
4ae5a3ad 1668
c599bd6b
MF
1669 lp->vlan1_mask = ETH_P_8021Q | mii_bus_data->vlan1_mask;
1670 lp->vlan2_mask = ETH_P_8021Q | mii_bus_data->vlan2_mask;
1671
149da651 1672 ndev->netdev_ops = &bfin_mac_netdev_ops;
679dce39 1673 ndev->ethtool_ops = &bfin_mac_ethtool_ops;
e190d6b1 1674
4fcc3d34
SZ
1675 init_timer(&lp->tx_reclaim_timer);
1676 lp->tx_reclaim_timer.data = (unsigned long)lp;
1677 lp->tx_reclaim_timer.function = tx_reclaim_skb_timeout;
1678
159945af
SZ
1679 lp->flags = 0;
1680 netif_napi_add(ndev, &lp->napi, bfin_mac_poll, CONFIG_BFIN_RX_DESC_NUM);
1681
e190d6b1
BW
1682 spin_lock_init(&lp->lock);
1683
1684 /* now, enable interrupts */
1685 /* register irq handler */
7ef0a7ee 1686 rc = request_irq(IRQ_MAC_RX, bfin_mac_interrupt,
63aca0f7 1687 0, "EMAC_RX", ndev);
7ef0a7ee
BW
1688 if (rc) {
1689 dev_err(&pdev->dev, "Cannot request Blackfin MAC RX IRQ!\n");
1690 rc = -EBUSY;
1691 goto out_err_request_irq;
e190d6b1
BW
1692 }
1693
7ef0a7ee
BW
1694 rc = register_netdev(ndev);
1695 if (rc) {
1696 dev_err(&pdev->dev, "Cannot register net device!\n");
1697 goto out_err_reg_ndev;
e190d6b1
BW
1698 }
1699
fe92afed 1700 bfin_mac_hwtstamp_init(ndev);
2c006994
WY
1701 rc = bfin_phc_init(ndev, &pdev->dev);
1702 if (rc) {
dd87b22f
RC
1703 dev_err(&pdev->dev, "Cannot register PHC device!\n");
1704 goto out_err_phc;
1705 }
fe92afed 1706
7ef0a7ee 1707 /* now, print out the card info, in a short format.. */
c6dd5098 1708 netdev_info(ndev, "%s, Version %s\n", DRV_DESC, DRV_VERSION);
e190d6b1 1709
7ef0a7ee 1710 return 0;
e190d6b1 1711
dd87b22f 1712out_err_phc:
7ef0a7ee
BW
1713out_err_reg_ndev:
1714 free_irq(IRQ_MAC_RX, ndev);
1715out_err_request_irq:
159945af 1716 netif_napi_del(&lp->napi);
7ef0a7ee 1717out_err_mii_probe:
298cf9be 1718 mdiobus_unregister(lp->mii_bus);
298cf9be 1719 mdiobus_free(lp->mii_bus);
7ef0a7ee 1720out_err_probe_mac:
7ef0a7ee 1721 free_netdev(ndev);
e190d6b1 1722
7ef0a7ee 1723 return rc;
e190d6b1
BW
1724}
1725
49f7315b 1726static int bfin_mac_remove(struct platform_device *pdev)
e190d6b1
BW
1727{
1728 struct net_device *ndev = platform_get_drvdata(pdev);
7ef0a7ee 1729 struct bfin_mac_local *lp = netdev_priv(ndev);
e190d6b1 1730
dd87b22f
RC
1731 bfin_phc_release(lp);
1732
080c8255 1733 lp->mii_bus->priv = NULL;
7ef0a7ee 1734
e190d6b1
BW
1735 unregister_netdev(ndev);
1736
159945af
SZ
1737 netif_napi_del(&lp->napi);
1738
e190d6b1
BW
1739 free_irq(IRQ_MAC_RX, ndev);
1740
1741 free_netdev(ndev);
1742
e190d6b1
BW
1743 return 0;
1744}
1745
496a34c2
BW
1746#ifdef CONFIG_PM
1747static int bfin_mac_suspend(struct platform_device *pdev, pm_message_t mesg)
e190d6b1 1748{
496a34c2 1749 struct net_device *net_dev = platform_get_drvdata(pdev);
53fd3f28 1750 struct bfin_mac_local *lp = netdev_priv(net_dev);
496a34c2 1751
53fd3f28
MH
1752 if (lp->wol) {
1753 bfin_write_EMAC_OPMODE((bfin_read_EMAC_OPMODE() & ~TE) | RE);
1754 bfin_write_EMAC_WKUP_CTL(MPKE);
1755 enable_irq_wake(IRQ_MAC_WAKEDET);
1756 } else {
1757 if (netif_running(net_dev))
1758 bfin_mac_close(net_dev);
1759 }
496a34c2 1760
e190d6b1
BW
1761 return 0;
1762}
1763
1764static int bfin_mac_resume(struct platform_device *pdev)
1765{
496a34c2 1766 struct net_device *net_dev = platform_get_drvdata(pdev);
53fd3f28 1767 struct bfin_mac_local *lp = netdev_priv(net_dev);
496a34c2 1768
53fd3f28
MH
1769 if (lp->wol) {
1770 bfin_write_EMAC_OPMODE(bfin_read_EMAC_OPMODE() | TE);
1771 bfin_write_EMAC_WKUP_CTL(0);
1772 disable_irq_wake(IRQ_MAC_WAKEDET);
1773 } else {
1774 if (netif_running(net_dev))
1775 bfin_mac_open(net_dev);
1776 }
496a34c2 1777
e190d6b1
BW
1778 return 0;
1779}
496a34c2
BW
1780#else
1781#define bfin_mac_suspend NULL
1782#define bfin_mac_resume NULL
1783#endif /* CONFIG_PM */
e190d6b1 1784
49f7315b 1785static int bfin_mii_bus_probe(struct platform_device *pdev)
080c8255
GY
1786{
1787 struct mii_bus *miibus;
02460d08
SZ
1788 struct bfin_mii_bus_platform_data *mii_bus_pd;
1789 const unsigned short *pin_req;
080c8255
GY
1790 int rc, i;
1791
02460d08
SZ
1792 mii_bus_pd = dev_get_platdata(&pdev->dev);
1793 if (!mii_bus_pd) {
1794 dev_err(&pdev->dev, "No peripherals in platform data!\n");
1795 return -EINVAL;
1796 }
1797
080c8255
GY
1798 /*
1799 * We are setting up a network card,
1800 * so set the GPIO pins to Ethernet mode
1801 */
02460d08 1802 pin_req = mii_bus_pd->mac_peripherals;
c6dd5098 1803 rc = peripheral_request_list(pin_req, KBUILD_MODNAME);
080c8255
GY
1804 if (rc) {
1805 dev_err(&pdev->dev, "Requesting peripherals failed!\n");
1806 return rc;
1807 }
1808
1809 rc = -ENOMEM;
1810 miibus = mdiobus_alloc();
1811 if (miibus == NULL)
1812 goto out_err_alloc;
1813 miibus->read = bfin_mdiobus_read;
1814 miibus->write = bfin_mdiobus_write;
080c8255
GY
1815
1816 miibus->parent = &pdev->dev;
1817 miibus->name = "bfin_mii_bus";
02460d08
SZ
1818 miibus->phy_mask = mii_bus_pd->phy_mask;
1819
75432fd2
FF
1820 snprintf(miibus->id, MII_BUS_ID_SIZE, "%s-%x",
1821 pdev->name, pdev->id);
080c8255 1822
02460d08
SZ
1823 rc = clamp(mii_bus_pd->phydev_number, 0, PHY_MAX_ADDR);
1824 if (rc != mii_bus_pd->phydev_number)
1825 dev_err(&pdev->dev, "Invalid number (%i) of phydevs\n",
1826 mii_bus_pd->phydev_number);
1827 for (i = 0; i < rc; ++i) {
1828 unsigned short phyaddr = mii_bus_pd->phydev_data[i].addr;
1829 if (phyaddr < PHY_MAX_ADDR)
1830 miibus->irq[phyaddr] = mii_bus_pd->phydev_data[i].irq;
1831 else
1832 dev_err(&pdev->dev,
1833 "Invalid PHY address %i for phydev %i\n",
1834 phyaddr, i);
1835 }
1836
080c8255
GY
1837 rc = mdiobus_register(miibus);
1838 if (rc) {
1839 dev_err(&pdev->dev, "Cannot register MDIO bus!\n");
fdffd2e8 1840 goto out_err_irq_alloc;
080c8255
GY
1841 }
1842
1843 platform_set_drvdata(pdev, miibus);
1844 return 0;
1845
02460d08 1846out_err_irq_alloc:
080c8255
GY
1847 mdiobus_free(miibus);
1848out_err_alloc:
1849 peripheral_free_list(pin_req);
1850
1851 return rc;
1852}
1853
49f7315b 1854static int bfin_mii_bus_remove(struct platform_device *pdev)
080c8255
GY
1855{
1856 struct mii_bus *miibus = platform_get_drvdata(pdev);
02460d08
SZ
1857 struct bfin_mii_bus_platform_data *mii_bus_pd =
1858 dev_get_platdata(&pdev->dev);
1859
080c8255
GY
1860 mdiobus_unregister(miibus);
1861 mdiobus_free(miibus);
02460d08
SZ
1862 peripheral_free_list(mii_bus_pd->mac_peripherals);
1863
080c8255
GY
1864 return 0;
1865}
1866
1867static struct platform_driver bfin_mii_bus_driver = {
1868 .probe = bfin_mii_bus_probe,
49f7315b 1869 .remove = bfin_mii_bus_remove,
080c8255
GY
1870 .driver = {
1871 .name = "bfin_mii_bus",
080c8255
GY
1872 },
1873};
1874
e190d6b1
BW
1875static struct platform_driver bfin_mac_driver = {
1876 .probe = bfin_mac_probe,
49f7315b 1877 .remove = bfin_mac_remove,
e190d6b1
BW
1878 .resume = bfin_mac_resume,
1879 .suspend = bfin_mac_suspend,
1880 .driver = {
c6dd5098 1881 .name = KBUILD_MODNAME,
72abb461 1882 },
e190d6b1
BW
1883};
1884
36b9ddd5
TR
1885static struct platform_driver * const drivers[] = {
1886 &bfin_mii_bus_driver,
1887 &bfin_mac_driver,
1888};
1889
e190d6b1
BW
1890static int __init bfin_mac_init(void)
1891{
36b9ddd5 1892 return platform_register_drivers(drivers, ARRAY_SIZE(drivers));
e190d6b1
BW
1893}
1894
1895module_init(bfin_mac_init);
1896
1897static void __exit bfin_mac_cleanup(void)
1898{
36b9ddd5 1899 platform_unregister_drivers(drivers, ARRAY_SIZE(drivers));
e190d6b1
BW
1900}
1901
1902module_exit(bfin_mac_cleanup);
72abb461 1903
This page took 0.925858 seconds and 5 git commands to generate.