blob: b0207f01eb6b1eb28f89234d086944e13b02fe7d [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
Mike Frysinger98f672c2010-01-18 21:14:12 +000036#include <asm/dpmc.h>
Bryan Wue190d6b2007-07-17 14:43:44 +080037#include <asm/blackfin.h>
38#include <asm/cacheflush.h>
39#include <asm/portmux.h>
40
41#include "bfin_mac.h"
42
43#define DRV_NAME "bfin_mac"
44#define DRV_VERSION "1.1"
45#define DRV_AUTHOR "Bryan Wu, Luke Yang"
Bryan Wu7ef0a7e2008-04-25 11:53:10 +080046#define DRV_DESC "Blackfin on-chip Ethernet MAC driver"
Bryan Wue190d6b2007-07-17 14:43:44 +080047
48MODULE_AUTHOR(DRV_AUTHOR);
49MODULE_LICENSE("GPL");
50MODULE_DESCRIPTION(DRV_DESC);
Kay Sievers72abb462008-04-18 13:50:44 -070051MODULE_ALIAS("platform:bfin_mac");
Bryan Wue190d6b2007-07-17 14:43:44 +080052
53#if defined(CONFIG_BFIN_MAC_USE_L1)
54# define bfin_mac_alloc(dma_handle, size) l1_data_sram_zalloc(size)
55# define bfin_mac_free(dma_handle, ptr) l1_data_sram_free(ptr)
56#else
57# define bfin_mac_alloc(dma_handle, size) \
58 dma_alloc_coherent(NULL, size, dma_handle, GFP_KERNEL)
59# define bfin_mac_free(dma_handle, ptr) \
60 dma_free_coherent(NULL, sizeof(*ptr), ptr, dma_handle)
61#endif
62
63#define PKT_BUF_SZ 1580
64
65#define MAX_TIMEOUT_CNT 500
66
67/* pointers to maintain transmit list */
68static struct net_dma_desc_tx *tx_list_head;
69static struct net_dma_desc_tx *tx_list_tail;
70static struct net_dma_desc_rx *rx_list_head;
71static struct net_dma_desc_rx *rx_list_tail;
72static struct net_dma_desc_rx *current_rx_ptr;
73static struct net_dma_desc_tx *current_tx_ptr;
74static struct net_dma_desc_tx *tx_desc;
75static struct net_dma_desc_rx *rx_desc;
76
Bryan Wu7ef0a7e2008-04-25 11:53:10 +080077#if defined(CONFIG_BFIN_MAC_RMII)
78static u16 pin_req[] = P_RMII0;
79#else
80static u16 pin_req[] = P_MII0;
81#endif
82
83static void bfin_mac_disable(void);
84static void bfin_mac_enable(void);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +080085
Bryan Wue190d6b2007-07-17 14:43:44 +080086static void desc_list_free(void)
87{
88 struct net_dma_desc_rx *r;
89 struct net_dma_desc_tx *t;
90 int i;
91#if !defined(CONFIG_BFIN_MAC_USE_L1)
92 dma_addr_t dma_handle = 0;
93#endif
94
95 if (tx_desc) {
96 t = tx_list_head;
97 for (i = 0; i < CONFIG_BFIN_TX_DESC_NUM; i++) {
98 if (t) {
99 if (t->skb) {
100 dev_kfree_skb(t->skb);
101 t->skb = NULL;
102 }
103 t = t->next;
104 }
105 }
106 bfin_mac_free(dma_handle, tx_desc);
107 }
108
109 if (rx_desc) {
110 r = rx_list_head;
111 for (i = 0; i < CONFIG_BFIN_RX_DESC_NUM; i++) {
112 if (r) {
113 if (r->skb) {
114 dev_kfree_skb(r->skb);
115 r->skb = NULL;
116 }
117 r = r->next;
118 }
119 }
120 bfin_mac_free(dma_handle, rx_desc);
121 }
122}
123
124static int desc_list_init(void)
125{
126 int i;
127 struct sk_buff *new_skb;
128#if !defined(CONFIG_BFIN_MAC_USE_L1)
129 /*
130 * This dma_handle is useless in Blackfin dma_alloc_coherent().
131 * The real dma handler is the return value of dma_alloc_coherent().
132 */
133 dma_addr_t dma_handle;
134#endif
135
136 tx_desc = bfin_mac_alloc(&dma_handle,
137 sizeof(struct net_dma_desc_tx) *
138 CONFIG_BFIN_TX_DESC_NUM);
139 if (tx_desc == NULL)
140 goto init_error;
141
142 rx_desc = bfin_mac_alloc(&dma_handle,
143 sizeof(struct net_dma_desc_rx) *
144 CONFIG_BFIN_RX_DESC_NUM);
145 if (rx_desc == NULL)
146 goto init_error;
147
148 /* init tx_list */
149 tx_list_head = tx_list_tail = tx_desc;
150
151 for (i = 0; i < CONFIG_BFIN_TX_DESC_NUM; i++) {
152 struct net_dma_desc_tx *t = tx_desc + i;
153 struct dma_descriptor *a = &(t->desc_a);
154 struct dma_descriptor *b = &(t->desc_b);
155
156 /*
157 * disable DMA
158 * read from memory WNR = 0
159 * wordsize is 32 bits
160 * 6 half words is desc size
161 * large desc flow
162 */
163 a->config = WDSIZE_32 | NDSIZE_6 | DMAFLOW_LARGE;
164 a->start_addr = (unsigned long)t->packet;
165 a->x_count = 0;
166 a->next_dma_desc = b;
167
168 /*
169 * enabled DMA
170 * write to memory WNR = 1
171 * wordsize is 32 bits
172 * disable interrupt
173 * 6 half words is desc size
174 * large desc flow
175 */
176 b->config = DMAEN | WNR | WDSIZE_32 | NDSIZE_6 | DMAFLOW_LARGE;
177 b->start_addr = (unsigned long)(&(t->status));
178 b->x_count = 0;
179
180 t->skb = NULL;
181 tx_list_tail->desc_b.next_dma_desc = a;
182 tx_list_tail->next = t;
183 tx_list_tail = t;
184 }
185 tx_list_tail->next = tx_list_head; /* tx_list is a circle */
186 tx_list_tail->desc_b.next_dma_desc = &(tx_list_head->desc_a);
187 current_tx_ptr = tx_list_head;
188
189 /* init rx_list */
190 rx_list_head = rx_list_tail = rx_desc;
191
192 for (i = 0; i < CONFIG_BFIN_RX_DESC_NUM; i++) {
193 struct net_dma_desc_rx *r = rx_desc + i;
194 struct dma_descriptor *a = &(r->desc_a);
195 struct dma_descriptor *b = &(r->desc_b);
196
197 /* allocate a new skb for next time receive */
Michael Hennerich015dac82009-05-29 03:41:15 +0000198 new_skb = dev_alloc_skb(PKT_BUF_SZ + NET_IP_ALIGN);
Bryan Wue190d6b2007-07-17 14:43:44 +0800199 if (!new_skb) {
200 printk(KERN_NOTICE DRV_NAME
201 ": init: low on mem - packet dropped\n");
202 goto init_error;
203 }
Michael Hennerich015dac82009-05-29 03:41:15 +0000204 skb_reserve(new_skb, NET_IP_ALIGN);
Bryan Wue190d6b2007-07-17 14:43:44 +0800205 r->skb = new_skb;
206
207 /*
208 * enabled DMA
209 * write to memory WNR = 1
210 * wordsize is 32 bits
211 * disable interrupt
212 * 6 half words is desc size
213 * large desc flow
214 */
215 a->config = DMAEN | WNR | WDSIZE_32 | NDSIZE_6 | DMAFLOW_LARGE;
216 /* since RXDWA is enabled */
217 a->start_addr = (unsigned long)new_skb->data - 2;
218 a->x_count = 0;
219 a->next_dma_desc = b;
220
221 /*
222 * enabled DMA
223 * write to memory WNR = 1
224 * wordsize is 32 bits
225 * enable interrupt
226 * 6 half words is desc size
227 * large desc flow
228 */
229 b->config = DMAEN | WNR | WDSIZE_32 | DI_EN |
230 NDSIZE_6 | DMAFLOW_LARGE;
231 b->start_addr = (unsigned long)(&(r->status));
232 b->x_count = 0;
233
234 rx_list_tail->desc_b.next_dma_desc = a;
235 rx_list_tail->next = r;
236 rx_list_tail = r;
237 }
238 rx_list_tail->next = rx_list_head; /* rx_list is a circle */
239 rx_list_tail->desc_b.next_dma_desc = &(rx_list_head->desc_a);
240 current_rx_ptr = rx_list_head;
241
242 return 0;
243
244init_error:
245 desc_list_free();
246 printk(KERN_ERR DRV_NAME ": kmalloc failed\n");
247 return -ENOMEM;
248}
249
250
251/*---PHY CONTROL AND CONFIGURATION-----------------------------------------*/
252
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800253/*
254 * MII operations
255 */
Bryan Wue190d6b2007-07-17 14:43:44 +0800256/* Wait until the previous MDC/MDIO transaction has completed */
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700257static void bfin_mdio_poll(void)
Bryan Wue190d6b2007-07-17 14:43:44 +0800258{
259 int timeout_cnt = MAX_TIMEOUT_CNT;
260
261 /* poll the STABUSY bit */
262 while ((bfin_read_EMAC_STAADD()) & STABUSY) {
Bryan Wu6db9e462008-01-30 16:52:21 +0800263 udelay(1);
Bryan Wue190d6b2007-07-17 14:43:44 +0800264 if (timeout_cnt-- < 0) {
265 printk(KERN_ERR DRV_NAME
266 ": wait MDC/MDIO transaction to complete timeout\n");
267 break;
268 }
269 }
270}
271
272/* Read an off-chip register in a PHY through the MDC/MDIO port */
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700273static int bfin_mdiobus_read(struct mii_bus *bus, int phy_addr, int regnum)
Bryan Wue190d6b2007-07-17 14:43:44 +0800274{
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700275 bfin_mdio_poll();
Bryan Wue190d6b2007-07-17 14:43:44 +0800276
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800277 /* read mode */
278 bfin_write_EMAC_STAADD(SET_PHYAD((u16) phy_addr) |
279 SET_REGAD((u16) regnum) |
280 STABUSY);
281
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700282 bfin_mdio_poll();
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800283
284 return (int) bfin_read_EMAC_STADAT();
Bryan Wue190d6b2007-07-17 14:43:44 +0800285}
286
287/* Write an off-chip register in a PHY through the MDC/MDIO port */
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700288static int bfin_mdiobus_write(struct mii_bus *bus, int phy_addr, int regnum,
289 u16 value)
Bryan Wue190d6b2007-07-17 14:43:44 +0800290{
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700291 bfin_mdio_poll();
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800292
293 bfin_write_EMAC_STADAT((u32) value);
Bryan Wue190d6b2007-07-17 14:43:44 +0800294
295 /* write mode */
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800296 bfin_write_EMAC_STAADD(SET_PHYAD((u16) phy_addr) |
297 SET_REGAD((u16) regnum) |
Bryan Wue190d6b2007-07-17 14:43:44 +0800298 STAOP |
299 STABUSY);
300
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700301 bfin_mdio_poll();
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800302
303 return 0;
Bryan Wue190d6b2007-07-17 14:43:44 +0800304}
305
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700306static int bfin_mdiobus_reset(struct mii_bus *bus)
Bryan Wue190d6b2007-07-17 14:43:44 +0800307{
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800308 return 0;
Bryan Wue190d6b2007-07-17 14:43:44 +0800309}
310
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800311static void bfin_mac_adjust_link(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +0800312{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800313 struct bfin_mac_local *lp = netdev_priv(dev);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800314 struct phy_device *phydev = lp->phydev;
315 unsigned long flags;
316 int new_state = 0;
Bryan Wue190d6b2007-07-17 14:43:44 +0800317
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800318 spin_lock_irqsave(&lp->lock, flags);
319 if (phydev->link) {
320 /* Now we make sure that we can be in full duplex mode.
321 * If not, we operate in half-duplex mode. */
322 if (phydev->duplex != lp->old_duplex) {
323 u32 opmode = bfin_read_EMAC_OPMODE();
324 new_state = 1;
Bryan Wue190d6b2007-07-17 14:43:44 +0800325
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800326 if (phydev->duplex)
327 opmode |= FDMODE;
328 else
329 opmode &= ~(FDMODE);
Bryan Wue190d6b2007-07-17 14:43:44 +0800330
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800331 bfin_write_EMAC_OPMODE(opmode);
332 lp->old_duplex = phydev->duplex;
333 }
Bryan Wue190d6b2007-07-17 14:43:44 +0800334
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800335 if (phydev->speed != lp->old_speed) {
336#if defined(CONFIG_BFIN_MAC_RMII)
337 u32 opmode = bfin_read_EMAC_OPMODE();
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800338 switch (phydev->speed) {
339 case 10:
340 opmode |= RMII_10;
341 break;
342 case 100:
343 opmode &= ~(RMII_10);
344 break;
345 default:
346 printk(KERN_WARNING
347 "%s: Ack! Speed (%d) is not 10/100!\n",
348 DRV_NAME, phydev->speed);
349 break;
350 }
351 bfin_write_EMAC_OPMODE(opmode);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800352#endif
Bryan Wue190d6b2007-07-17 14:43:44 +0800353
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800354 new_state = 1;
355 lp->old_speed = phydev->speed;
356 }
Bryan Wue190d6b2007-07-17 14:43:44 +0800357
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800358 if (!lp->old_link) {
359 new_state = 1;
360 lp->old_link = 1;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800361 }
362 } else if (lp->old_link) {
363 new_state = 1;
364 lp->old_link = 0;
365 lp->old_speed = 0;
366 lp->old_duplex = -1;
Bryan Wue190d6b2007-07-17 14:43:44 +0800367 }
368
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800369 if (new_state) {
370 u32 opmode = bfin_read_EMAC_OPMODE();
371 phy_print_status(phydev);
372 pr_debug("EMAC_OPMODE = 0x%08x\n", opmode);
Bryan Wue190d6b2007-07-17 14:43:44 +0800373 }
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800374
375 spin_unlock_irqrestore(&lp->lock, flags);
376}
377
Bryan Wu7cc8f382008-01-30 16:52:22 +0800378/* MDC = 2.5 MHz */
379#define MDC_CLK 2500000
380
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800381static int mii_probe(struct net_device *dev)
382{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800383 struct bfin_mac_local *lp = netdev_priv(dev);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800384 struct phy_device *phydev = NULL;
385 unsigned short sysctl;
386 int i;
Bryan Wu7cc8f382008-01-30 16:52:22 +0800387 u32 sclk, mdc_div;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800388
389 /* Enable PHY output early */
Mike Frysinger98f672c2010-01-18 21:14:12 +0000390 if (!(bfin_read_VR_CTL() & CLKBUFOE))
391 bfin_write_VR_CTL(bfin_read_VR_CTL() | CLKBUFOE);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800392
Bryan Wu7cc8f382008-01-30 16:52:22 +0800393 sclk = get_sclk();
394 mdc_div = ((sclk / MDC_CLK) / 2) - 1;
395
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800396 sysctl = bfin_read_EMAC_SYSCTL();
Bryan Wu9dc7f302008-01-30 16:52:28 +0800397 sysctl = (sysctl & ~MDCDIV) | SET_MDCDIV(mdc_div);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800398 bfin_write_EMAC_SYSCTL(sysctl);
399
400 /* search for connect PHY device */
401 for (i = 0; i < PHY_MAX_ADDR; i++) {
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700402 struct phy_device *const tmp_phydev = lp->mii_bus->phy_map[i];
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800403
404 if (!tmp_phydev)
405 continue; /* no PHY here... */
406
407 phydev = tmp_phydev;
408 break; /* found it */
409 }
410
411 /* now we are supposed to have a proper phydev, to attach to... */
412 if (!phydev) {
413 printk(KERN_INFO "%s: Don't found any phy device at all\n",
414 dev->name);
415 return -ENODEV;
416 }
417
418#if defined(CONFIG_BFIN_MAC_RMII)
Kay Sieversc2313552009-03-24 16:38:22 -0700419 phydev = phy_connect(dev, dev_name(&phydev->dev), &bfin_mac_adjust_link,
420 0, PHY_INTERFACE_MODE_RMII);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800421#else
Kay Sieversc2313552009-03-24 16:38:22 -0700422 phydev = phy_connect(dev, dev_name(&phydev->dev), &bfin_mac_adjust_link,
423 0, PHY_INTERFACE_MODE_MII);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800424#endif
425
426 if (IS_ERR(phydev)) {
427 printk(KERN_ERR "%s: Could not attach to PHY\n", dev->name);
428 return PTR_ERR(phydev);
429 }
430
431 /* mask with MAC supported features */
432 phydev->supported &= (SUPPORTED_10baseT_Half
433 | SUPPORTED_10baseT_Full
434 | SUPPORTED_100baseT_Half
435 | SUPPORTED_100baseT_Full
436 | SUPPORTED_Autoneg
437 | SUPPORTED_Pause | SUPPORTED_Asym_Pause
438 | SUPPORTED_MII
439 | SUPPORTED_TP);
440
441 phydev->advertising = phydev->supported;
442
443 lp->old_link = 0;
444 lp->old_speed = 0;
445 lp->old_duplex = -1;
446 lp->phydev = phydev;
447
448 printk(KERN_INFO "%s: attached PHY driver [%s] "
Bryan Wu7cc8f382008-01-30 16:52:22 +0800449 "(mii_bus:phy_addr=%s, irq=%d, mdc_clk=%dHz(mdc_div=%d)"
450 "@sclk=%dMHz)\n",
Kay Sieversc2313552009-03-24 16:38:22 -0700451 DRV_NAME, phydev->drv->name, dev_name(&phydev->dev), phydev->irq,
Bryan Wu7cc8f382008-01-30 16:52:22 +0800452 MDC_CLK, mdc_div, sclk/1000000);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800453
454 return 0;
Bryan Wue190d6b2007-07-17 14:43:44 +0800455}
456
Bryan Wu679dce32008-04-25 11:53:11 +0800457/*
458 * Ethtool support
459 */
460
461static int
462bfin_mac_ethtool_getsettings(struct net_device *dev, struct ethtool_cmd *cmd)
463{
464 struct bfin_mac_local *lp = netdev_priv(dev);
465
466 if (lp->phydev)
467 return phy_ethtool_gset(lp->phydev, cmd);
468
469 return -EINVAL;
470}
471
472static int
473bfin_mac_ethtool_setsettings(struct net_device *dev, struct ethtool_cmd *cmd)
474{
475 struct bfin_mac_local *lp = netdev_priv(dev);
476
477 if (!capable(CAP_NET_ADMIN))
478 return -EPERM;
479
480 if (lp->phydev)
481 return phy_ethtool_sset(lp->phydev, cmd);
482
483 return -EINVAL;
484}
485
486static void bfin_mac_ethtool_getdrvinfo(struct net_device *dev,
487 struct ethtool_drvinfo *info)
488{
489 strcpy(info->driver, DRV_NAME);
490 strcpy(info->version, DRV_VERSION);
491 strcpy(info->fw_version, "N/A");
Kay Sieversc2313552009-03-24 16:38:22 -0700492 strcpy(info->bus_info, dev_name(&dev->dev));
Bryan Wu679dce32008-04-25 11:53:11 +0800493}
494
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700495static const struct ethtool_ops bfin_mac_ethtool_ops = {
Bryan Wu679dce32008-04-25 11:53:11 +0800496 .get_settings = bfin_mac_ethtool_getsettings,
497 .set_settings = bfin_mac_ethtool_setsettings,
498 .get_link = ethtool_op_get_link,
499 .get_drvinfo = bfin_mac_ethtool_getdrvinfo,
500};
501
Bryan Wue190d6b2007-07-17 14:43:44 +0800502/**************************************************************************/
503void setup_system_regs(struct net_device *dev)
504{
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800505 unsigned short sysctl;
Bryan Wue190d6b2007-07-17 14:43:44 +0800506
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800507 /*
508 * Odd word alignment for Receive Frame DMA word
509 * Configure checksum support and rcve frame word alignment
510 */
511 sysctl = bfin_read_EMAC_SYSCTL();
Bryan Wue190d6b2007-07-17 14:43:44 +0800512#if defined(BFIN_MAC_CSUM_OFFLOAD)
513 sysctl |= RXDWA | RXCKS;
514#else
515 sysctl |= RXDWA;
516#endif
517 bfin_write_EMAC_SYSCTL(sysctl);
Bryan Wue190d6b2007-07-17 14:43:44 +0800518
519 bfin_write_EMAC_MMC_CTL(RSTC | CROLL);
520
521 /* Initialize the TX DMA channel registers */
522 bfin_write_DMA2_X_COUNT(0);
523 bfin_write_DMA2_X_MODIFY(4);
524 bfin_write_DMA2_Y_COUNT(0);
525 bfin_write_DMA2_Y_MODIFY(0);
526
527 /* Initialize the RX DMA channel registers */
528 bfin_write_DMA1_X_COUNT(0);
529 bfin_write_DMA1_X_MODIFY(4);
530 bfin_write_DMA1_Y_COUNT(0);
531 bfin_write_DMA1_Y_MODIFY(0);
532}
533
Alex Landau73f83182007-09-19 23:14:18 +0800534static void setup_mac_addr(u8 *mac_addr)
Bryan Wue190d6b2007-07-17 14:43:44 +0800535{
536 u32 addr_low = le32_to_cpu(*(__le32 *) & mac_addr[0]);
537 u16 addr_hi = le16_to_cpu(*(__le16 *) & mac_addr[4]);
538
539 /* this depends on a little-endian machine */
540 bfin_write_EMAC_ADDRLO(addr_low);
541 bfin_write_EMAC_ADDRHI(addr_hi);
542}
543
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800544static int bfin_mac_set_mac_address(struct net_device *dev, void *p)
Alex Landau73f83182007-09-19 23:14:18 +0800545{
546 struct sockaddr *addr = p;
547 if (netif_running(dev))
548 return -EBUSY;
549 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
550 setup_mac_addr(dev->dev_addr);
551 return 0;
552}
553
Bryan Wue190d6b2007-07-17 14:43:44 +0800554static void adjust_tx_list(void)
555{
556 int timeout_cnt = MAX_TIMEOUT_CNT;
557
Joe Perches8e95a202009-12-03 07:58:21 +0000558 if (tx_list_head->status.status_word != 0 &&
559 current_tx_ptr != tx_list_head) {
Bryan Wue190d6b2007-07-17 14:43:44 +0800560 goto adjust_head; /* released something, just return; */
561 }
562
563 /*
564 * if nothing released, check wait condition
565 * current's next can not be the head,
566 * otherwise the dma will not stop as we want
567 */
568 if (current_tx_ptr->next->next == tx_list_head) {
569 while (tx_list_head->status.status_word == 0) {
Michael Hennerich015dac82009-05-29 03:41:15 +0000570 udelay(10);
Joe Perches8e95a202009-12-03 07:58:21 +0000571 if (tx_list_head->status.status_word != 0 ||
572 !(bfin_read_DMA2_IRQ_STATUS() & DMA_RUN)) {
Bryan Wue190d6b2007-07-17 14:43:44 +0800573 goto adjust_head;
574 }
575 if (timeout_cnt-- < 0) {
576 printk(KERN_ERR DRV_NAME
577 ": wait for adjust tx list head timeout\n");
578 break;
579 }
580 }
581 if (tx_list_head->status.status_word != 0) {
582 goto adjust_head;
583 }
584 }
585
586 return;
587
588adjust_head:
589 do {
590 tx_list_head->desc_a.config &= ~DMAEN;
591 tx_list_head->status.status_word = 0;
592 if (tx_list_head->skb) {
593 dev_kfree_skb(tx_list_head->skb);
594 tx_list_head->skb = NULL;
595 } else {
596 printk(KERN_ERR DRV_NAME
597 ": no sk_buff in a transmitted frame!\n");
598 }
599 tx_list_head = tx_list_head->next;
Joe Perches8e95a202009-12-03 07:58:21 +0000600 } while (tx_list_head->status.status_word != 0 &&
601 current_tx_ptr != tx_list_head);
Bryan Wue190d6b2007-07-17 14:43:44 +0800602 return;
603
604}
605
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800606static int bfin_mac_hard_start_xmit(struct sk_buff *skb,
Bryan Wue190d6b2007-07-17 14:43:44 +0800607 struct net_device *dev)
608{
Bryan Wua50c0c02008-07-27 22:45:04 +0800609 u16 *data;
Michael Hennerich015dac82009-05-29 03:41:15 +0000610 u32 data_align = (unsigned long)(skb->data) & 0x3;
Bryan Wue190d6b2007-07-17 14:43:44 +0800611 current_tx_ptr->skb = skb;
612
Michael Hennerich015dac82009-05-29 03:41:15 +0000613 if (data_align == 0x2) {
614 /* move skb->data to current_tx_ptr payload */
615 data = (u16 *)(skb->data) - 1;
616 *data = (u16)(skb->len);
617 current_tx_ptr->desc_a.start_addr = (u32)data;
618 /* this is important! */
619 blackfin_dcache_flush_range((u32)data,
620 (u32)((u8 *)data + skb->len + 4));
Bryan Wue190d6b2007-07-17 14:43:44 +0800621 } else {
Michael Hennerich015dac82009-05-29 03:41:15 +0000622 *((u16 *)(current_tx_ptr->packet)) = (u16)(skb->len);
623 memcpy((u8 *)(current_tx_ptr->packet + 2), skb->data,
624 skb->len);
625 current_tx_ptr->desc_a.start_addr =
626 (u32)current_tx_ptr->packet;
627 if (current_tx_ptr->status.status_word != 0)
628 current_tx_ptr->status.status_word = 0;
629 blackfin_dcache_flush_range(
630 (u32)current_tx_ptr->packet,
631 (u32)(current_tx_ptr->packet + skb->len + 2));
Bryan Wue190d6b2007-07-17 14:43:44 +0800632 }
633
Sonic Zhang805a8ab2009-05-29 03:40:43 +0000634 /* make sure the internal data buffers in the core are drained
635 * so that the DMA descriptors are completely written when the
636 * DMA engine goes to fetch them below
637 */
638 SSYNC();
639
Bryan Wue190d6b2007-07-17 14:43:44 +0800640 /* enable this packet's dma */
641 current_tx_ptr->desc_a.config |= DMAEN;
642
643 /* tx dma is running, just return */
Michael Hennerich015dac82009-05-29 03:41:15 +0000644 if (bfin_read_DMA2_IRQ_STATUS() & DMA_RUN)
Bryan Wue190d6b2007-07-17 14:43:44 +0800645 goto out;
646
647 /* tx dma is not running */
648 bfin_write_DMA2_NEXT_DESC_PTR(&(current_tx_ptr->desc_a));
649 /* dma enabled, read from memory, size is 6 */
650 bfin_write_DMA2_CONFIG(current_tx_ptr->desc_a.config);
651 /* Turn on the EMAC tx */
652 bfin_write_EMAC_OPMODE(bfin_read_EMAC_OPMODE() | TE);
653
654out:
655 adjust_tx_list();
656 current_tx_ptr = current_tx_ptr->next;
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700657 dev->stats.tx_packets++;
658 dev->stats.tx_bytes += (skb->len);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000659 return NETDEV_TX_OK;
Bryan Wue190d6b2007-07-17 14:43:44 +0800660}
661
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800662static void bfin_mac_rx(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +0800663{
664 struct sk_buff *skb, *new_skb;
Bryan Wue190d6b2007-07-17 14:43:44 +0800665 unsigned short len;
666
667 /* allocate a new skb for next time receive */
668 skb = current_rx_ptr->skb;
Michael Hennerich015dac82009-05-29 03:41:15 +0000669 new_skb = dev_alloc_skb(PKT_BUF_SZ + NET_IP_ALIGN);
Bryan Wue190d6b2007-07-17 14:43:44 +0800670 if (!new_skb) {
671 printk(KERN_NOTICE DRV_NAME
672 ": rx: low on mem - packet dropped\n");
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700673 dev->stats.rx_dropped++;
Bryan Wue190d6b2007-07-17 14:43:44 +0800674 goto out;
675 }
676 /* reserve 2 bytes for RXDWA padding */
Michael Hennerich015dac82009-05-29 03:41:15 +0000677 skb_reserve(new_skb, NET_IP_ALIGN);
Bryan Wue190d6b2007-07-17 14:43:44 +0800678 current_rx_ptr->skb = new_skb;
679 current_rx_ptr->desc_a.start_addr = (unsigned long)new_skb->data - 2;
680
Alexey Demin6e01d1a2008-01-30 16:52:27 +0800681 /* Invidate the data cache of skb->data range when it is write back
682 * cache. It will prevent overwritting the new data from DMA
683 */
684 blackfin_dcache_invalidate_range((unsigned long)new_skb->head,
685 (unsigned long)new_skb->end);
686
Bryan Wue190d6b2007-07-17 14:43:44 +0800687 len = (unsigned short)((current_rx_ptr->status.status_word) & RX_FRLEN);
688 skb_put(skb, len);
689 blackfin_dcache_invalidate_range((unsigned long)skb->head,
690 (unsigned long)skb->tail);
691
Bryan Wue190d6b2007-07-17 14:43:44 +0800692 skb->protocol = eth_type_trans(skb, dev);
693#if defined(BFIN_MAC_CSUM_OFFLOAD)
694 skb->csum = current_rx_ptr->status.ip_payload_csum;
Vitja Makarov00ff49a2007-11-23 17:55:51 +0800695 skb->ip_summed = CHECKSUM_COMPLETE;
Bryan Wue190d6b2007-07-17 14:43:44 +0800696#endif
697
698 netif_rx(skb);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700699 dev->stats.rx_packets++;
700 dev->stats.rx_bytes += len;
Bryan Wue190d6b2007-07-17 14:43:44 +0800701 current_rx_ptr->status.status_word = 0x00000000;
702 current_rx_ptr = current_rx_ptr->next;
703
704out:
705 return;
706}
707
708/* interrupt routine to handle rx and error signal */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800709static irqreturn_t bfin_mac_interrupt(int irq, void *dev_id)
Bryan Wue190d6b2007-07-17 14:43:44 +0800710{
711 struct net_device *dev = dev_id;
712 int number = 0;
713
714get_one_packet:
715 if (current_rx_ptr->status.status_word == 0) {
716 /* no more new packet received */
717 if (number == 0) {
718 if (current_rx_ptr->next->status.status_word != 0) {
719 current_rx_ptr = current_rx_ptr->next;
720 goto real_rx;
721 }
722 }
723 bfin_write_DMA1_IRQ_STATUS(bfin_read_DMA1_IRQ_STATUS() |
724 DMA_DONE | DMA_ERR);
725 return IRQ_HANDLED;
726 }
727
728real_rx:
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800729 bfin_mac_rx(dev);
Bryan Wue190d6b2007-07-17 14:43:44 +0800730 number++;
731 goto get_one_packet;
732}
733
734#ifdef CONFIG_NET_POLL_CONTROLLER
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800735static void bfin_mac_poll(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +0800736{
737 disable_irq(IRQ_MAC_RX);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800738 bfin_mac_interrupt(IRQ_MAC_RX, dev);
Bryan Wue190d6b2007-07-17 14:43:44 +0800739 enable_irq(IRQ_MAC_RX);
740}
741#endif /* CONFIG_NET_POLL_CONTROLLER */
742
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800743static void bfin_mac_disable(void)
Bryan Wue190d6b2007-07-17 14:43:44 +0800744{
745 unsigned int opmode;
746
747 opmode = bfin_read_EMAC_OPMODE();
748 opmode &= (~RE);
749 opmode &= (~TE);
750 /* Turn off the EMAC */
751 bfin_write_EMAC_OPMODE(opmode);
752}
753
754/*
755 * Enable Interrupts, Receive, and Transmit
756 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800757static void bfin_mac_enable(void)
Bryan Wue190d6b2007-07-17 14:43:44 +0800758{
759 u32 opmode;
760
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700761 pr_debug("%s: %s\n", DRV_NAME, __func__);
Bryan Wue190d6b2007-07-17 14:43:44 +0800762
763 /* Set RX DMA */
764 bfin_write_DMA1_NEXT_DESC_PTR(&(rx_list_head->desc_a));
765 bfin_write_DMA1_CONFIG(rx_list_head->desc_a.config);
766
767 /* Wait MII done */
Adrian Bunk0ed0563e2008-10-12 21:15:17 -0700768 bfin_mdio_poll();
Bryan Wue190d6b2007-07-17 14:43:44 +0800769
770 /* We enable only RX here */
771 /* ASTP : Enable Automatic Pad Stripping
772 PR : Promiscuous Mode for test
773 PSF : Receive frames with total length less than 64 bytes.
774 FDMODE : Full Duplex Mode
775 LB : Internal Loopback for test
776 RE : Receiver Enable */
777 opmode = bfin_read_EMAC_OPMODE();
778 if (opmode & FDMODE)
779 opmode |= PSF;
780 else
781 opmode |= DRO | DC | PSF;
782 opmode |= RE;
783
784#if defined(CONFIG_BFIN_MAC_RMII)
785 opmode |= RMII; /* For Now only 100MBit are supported */
Michael Hennerich6893ff12008-01-30 16:52:25 +0800786#if (defined(CONFIG_BF537) || defined(CONFIG_BF536)) && CONFIG_BF_REV_0_2
Bryan Wue190d6b2007-07-17 14:43:44 +0800787 opmode |= TE;
788#endif
789#endif
790 /* Turn on the EMAC rx */
791 bfin_write_EMAC_OPMODE(opmode);
Bryan Wue190d6b2007-07-17 14:43:44 +0800792}
793
794/* Our watchdog timed out. Called by the networking layer */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800795static void bfin_mac_timeout(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +0800796{
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700797 pr_debug("%s: %s\n", dev->name, __func__);
Bryan Wue190d6b2007-07-17 14:43:44 +0800798
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800799 bfin_mac_disable();
Bryan Wue190d6b2007-07-17 14:43:44 +0800800
801 /* reset tx queue */
802 tx_list_tail = tx_list_head->next;
803
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800804 bfin_mac_enable();
Bryan Wue190d6b2007-07-17 14:43:44 +0800805
806 /* We can accept TX packets again */
Eric Dumazet1ae5dc32010-05-10 05:01:31 -0700807 dev->trans_start = jiffies; /* prevent tx timeout */
Bryan Wue190d6b2007-07-17 14:43:44 +0800808 netif_wake_queue(dev);
809}
810
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800811static void bfin_mac_multicast_hash(struct net_device *dev)
Aidan Williams775919b2008-01-30 16:52:23 +0800812{
813 u32 emac_hashhi, emac_hashlo;
Jiri Pirko22bedad32010-04-01 21:22:57 +0000814 struct netdev_hw_addr *ha;
Aidan Williams775919b2008-01-30 16:52:23 +0800815 char *addrs;
Aidan Williams775919b2008-01-30 16:52:23 +0800816 u32 crc;
817
818 emac_hashhi = emac_hashlo = 0;
819
Jiri Pirko22bedad32010-04-01 21:22:57 +0000820 netdev_for_each_mc_addr(ha, dev) {
821 addrs = ha->addr;
Aidan Williams775919b2008-01-30 16:52:23 +0800822
823 /* skip non-multicast addresses */
824 if (!(*addrs & 1))
825 continue;
826
827 crc = ether_crc(ETH_ALEN, addrs);
828 crc >>= 26;
829
830 if (crc & 0x20)
831 emac_hashhi |= 1 << (crc & 0x1f);
832 else
833 emac_hashlo |= 1 << (crc & 0x1f);
834 }
835
836 bfin_write_EMAC_HASHHI(emac_hashhi);
837 bfin_write_EMAC_HASHLO(emac_hashlo);
838
839 return;
840}
841
Bryan Wue190d6b2007-07-17 14:43:44 +0800842/*
Bryan Wue190d6b2007-07-17 14:43:44 +0800843 * This routine will, depending on the values passed to it,
844 * either make it accept multicast packets, go into
845 * promiscuous mode (for TCPDUMP and cousins) or accept
846 * a select set of multicast packets
847 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800848static void bfin_mac_set_multicast_list(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +0800849{
850 u32 sysctl;
851
852 if (dev->flags & IFF_PROMISC) {
853 printk(KERN_INFO "%s: set to promisc mode\n", dev->name);
854 sysctl = bfin_read_EMAC_OPMODE();
855 sysctl |= RAF;
856 bfin_write_EMAC_OPMODE(sysctl);
Aidan Williams775919b2008-01-30 16:52:23 +0800857 } else if (dev->flags & IFF_ALLMULTI) {
Bryan Wue190d6b2007-07-17 14:43:44 +0800858 /* accept all multicast */
859 sysctl = bfin_read_EMAC_OPMODE();
860 sysctl |= PAM;
861 bfin_write_EMAC_OPMODE(sysctl);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000862 } else if (!netdev_mc_empty(dev)) {
Aidan Williams775919b2008-01-30 16:52:23 +0800863 /* set up multicast hash table */
864 sysctl = bfin_read_EMAC_OPMODE();
865 sysctl |= HM;
866 bfin_write_EMAC_OPMODE(sysctl);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800867 bfin_mac_multicast_hash(dev);
Bryan Wue190d6b2007-07-17 14:43:44 +0800868 } else {
869 /* clear promisc or multicast mode */
870 sysctl = bfin_read_EMAC_OPMODE();
871 sysctl &= ~(RAF | PAM);
872 bfin_write_EMAC_OPMODE(sysctl);
873 }
874}
875
876/*
877 * this puts the device in an inactive state
878 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800879static void bfin_mac_shutdown(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +0800880{
881 /* Turn off the EMAC */
882 bfin_write_EMAC_OPMODE(0x00000000);
883 /* Turn off the EMAC RX DMA */
884 bfin_write_DMA1_CONFIG(0x0000);
885 bfin_write_DMA2_CONFIG(0x0000);
886}
887
888/*
889 * Open and Initialize the interface
890 *
891 * Set up everything, reset the card, etc..
892 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800893static int bfin_mac_open(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +0800894{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800895 struct bfin_mac_local *lp = netdev_priv(dev);
Michael Hennerich4af4b842007-07-25 14:09:54 +0800896 int retval;
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700897 pr_debug("%s: %s\n", dev->name, __func__);
Bryan Wue190d6b2007-07-17 14:43:44 +0800898
899 /*
900 * Check that the address is valid. If its not, refuse
901 * to bring the device up. The user must specify an
902 * address using ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx
903 */
904 if (!is_valid_ether_addr(dev->dev_addr)) {
905 printk(KERN_WARNING DRV_NAME ": no valid ethernet hw addr\n");
906 return -EINVAL;
907 }
908
909 /* initial rx and tx list */
Michael Hennerich4af4b842007-07-25 14:09:54 +0800910 retval = desc_list_init();
911
912 if (retval)
913 return retval;
Bryan Wue190d6b2007-07-17 14:43:44 +0800914
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800915 phy_start(lp->phydev);
Vitja Makarov136492b2008-01-30 16:52:26 +0800916 phy_write(lp->phydev, MII_BMCR, BMCR_RESET);
Bryan Wue190d6b2007-07-17 14:43:44 +0800917 setup_system_regs(dev);
Michael Hennerichee02fee2008-07-27 22:45:05 +0800918 setup_mac_addr(dev->dev_addr);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800919 bfin_mac_disable();
920 bfin_mac_enable();
Bryan Wue190d6b2007-07-17 14:43:44 +0800921 pr_debug("hardware init finished\n");
922 netif_start_queue(dev);
923 netif_carrier_on(dev);
924
925 return 0;
926}
927
928/*
Bryan Wue190d6b2007-07-17 14:43:44 +0800929 * this makes the board clean up everything that it can
930 * and not talk to the outside world. Caused by
931 * an 'ifconfig ethX down'
932 */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800933static int bfin_mac_close(struct net_device *dev)
Bryan Wue190d6b2007-07-17 14:43:44 +0800934{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800935 struct bfin_mac_local *lp = netdev_priv(dev);
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700936 pr_debug("%s: %s\n", dev->name, __func__);
Bryan Wue190d6b2007-07-17 14:43:44 +0800937
938 netif_stop_queue(dev);
939 netif_carrier_off(dev);
940
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800941 phy_stop(lp->phydev);
Vitja Makarov136492b2008-01-30 16:52:26 +0800942 phy_write(lp->phydev, MII_BMCR, BMCR_PDOWN);
Bryan Wu4ae5a3a2007-09-19 23:37:36 +0800943
Bryan Wue190d6b2007-07-17 14:43:44 +0800944 /* clear everything */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800945 bfin_mac_shutdown(dev);
Bryan Wue190d6b2007-07-17 14:43:44 +0800946
947 /* free the rx/tx buffers */
948 desc_list_free();
949
950 return 0;
951}
952
Mike Frysingerb63dc8f2009-05-26 20:55:33 -0700953static const struct net_device_ops bfin_mac_netdev_ops = {
954 .ndo_open = bfin_mac_open,
955 .ndo_stop = bfin_mac_close,
956 .ndo_start_xmit = bfin_mac_hard_start_xmit,
957 .ndo_set_mac_address = bfin_mac_set_mac_address,
958 .ndo_tx_timeout = bfin_mac_timeout,
959 .ndo_set_multicast_list = bfin_mac_set_multicast_list,
960 .ndo_validate_addr = eth_validate_addr,
961 .ndo_change_mtu = eth_change_mtu,
962#ifdef CONFIG_NET_POLL_CONTROLLER
963 .ndo_poll_controller = bfin_mac_poll,
964#endif
965};
966
Mike Frysingerd7b843d32008-07-27 22:45:03 +0800967static int __devinit bfin_mac_probe(struct platform_device *pdev)
Bryan Wue190d6b2007-07-17 14:43:44 +0800968{
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800969 struct net_device *ndev;
970 struct bfin_mac_local *lp;
Graf Yang080c8252009-05-29 03:41:48 +0000971 struct platform_device *pd;
972 int rc;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800973
974 ndev = alloc_etherdev(sizeof(struct bfin_mac_local));
975 if (!ndev) {
976 dev_err(&pdev->dev, "Cannot allocate net device!\n");
977 return -ENOMEM;
978 }
979
980 SET_NETDEV_DEV(ndev, &pdev->dev);
981 platform_set_drvdata(pdev, ndev);
982 lp = netdev_priv(ndev);
Bryan Wue190d6b2007-07-17 14:43:44 +0800983
984 /* Grab the MAC address in the MAC */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800985 *(__le32 *) (&(ndev->dev_addr[0])) = cpu_to_le32(bfin_read_EMAC_ADDRLO());
986 *(__le16 *) (&(ndev->dev_addr[4])) = cpu_to_le16((u16) bfin_read_EMAC_ADDRHI());
Bryan Wue190d6b2007-07-17 14:43:44 +0800987
988 /* probe mac */
989 /*todo: how to proble? which is revision_register */
990 bfin_write_EMAC_ADDRLO(0x12345678);
991 if (bfin_read_EMAC_ADDRLO() != 0x12345678) {
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800992 dev_err(&pdev->dev, "Cannot detect Blackfin on-chip ethernet MAC controller!\n");
993 rc = -ENODEV;
994 goto out_err_probe_mac;
Bryan Wue190d6b2007-07-17 14:43:44 +0800995 }
996
Bryan Wue190d6b2007-07-17 14:43:44 +0800997
Bryan Wu7ef0a7e2008-04-25 11:53:10 +0800998 /*
999 * Is it valid? (Did bootloader initialize it?)
1000 * Grab the MAC from the board somehow
1001 * this is done in the arch/blackfin/mach-bfxxx/boards/eth_mac.c
1002 */
1003 if (!is_valid_ether_addr(ndev->dev_addr))
1004 bfin_get_ether_addr(ndev->dev_addr);
1005
Bryan Wue190d6b2007-07-17 14:43:44 +08001006 /* If still not valid, get a random one */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001007 if (!is_valid_ether_addr(ndev->dev_addr))
1008 random_ether_addr(ndev->dev_addr);
Bryan Wue190d6b2007-07-17 14:43:44 +08001009
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001010 setup_mac_addr(ndev->dev_addr);
Bryan Wue190d6b2007-07-17 14:43:44 +08001011
Graf Yang080c8252009-05-29 03:41:48 +00001012 if (!pdev->dev.platform_data) {
1013 dev_err(&pdev->dev, "Cannot get platform device bfin_mii_bus!\n");
1014 rc = -ENODEV;
1015 goto out_err_probe_mac;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001016 }
Graf Yang080c8252009-05-29 03:41:48 +00001017 pd = pdev->dev.platform_data;
1018 lp->mii_bus = platform_get_drvdata(pd);
1019 lp->mii_bus->priv = ndev;
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001020
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001021 rc = mii_probe(ndev);
1022 if (rc) {
1023 dev_err(&pdev->dev, "MII Probe failed!\n");
1024 goto out_err_mii_probe;
1025 }
Bryan Wu4ae5a3a2007-09-19 23:37:36 +08001026
Bryan Wue190d6b2007-07-17 14:43:44 +08001027 /* Fill in the fields of the device structure with ethernet values. */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001028 ether_setup(ndev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001029
Alexander Beregalov149da652009-04-14 18:30:24 +00001030 ndev->netdev_ops = &bfin_mac_netdev_ops;
Bryan Wu679dce32008-04-25 11:53:11 +08001031 ndev->ethtool_ops = &bfin_mac_ethtool_ops;
Bryan Wue190d6b2007-07-17 14:43:44 +08001032
Bryan Wue190d6b2007-07-17 14:43:44 +08001033 spin_lock_init(&lp->lock);
1034
1035 /* now, enable interrupts */
1036 /* register irq handler */
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001037 rc = request_irq(IRQ_MAC_RX, bfin_mac_interrupt,
Michael Hennerich91a455f2009-05-29 03:39:45 +00001038 IRQF_DISABLED, "EMAC_RX", ndev);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001039 if (rc) {
1040 dev_err(&pdev->dev, "Cannot request Blackfin MAC RX IRQ!\n");
1041 rc = -EBUSY;
1042 goto out_err_request_irq;
Bryan Wue190d6b2007-07-17 14:43:44 +08001043 }
1044
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001045 rc = register_netdev(ndev);
1046 if (rc) {
1047 dev_err(&pdev->dev, "Cannot register net device!\n");
1048 goto out_err_reg_ndev;
Bryan Wue190d6b2007-07-17 14:43:44 +08001049 }
1050
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001051 /* now, print out the card info, in a short format.. */
1052 dev_info(&pdev->dev, "%s, Version %s\n", DRV_DESC, DRV_VERSION);
Bryan Wue190d6b2007-07-17 14:43:44 +08001053
1054 return 0;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001055
1056out_err_reg_ndev:
1057 free_irq(IRQ_MAC_RX, ndev);
1058out_err_request_irq:
1059out_err_mii_probe:
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001060 mdiobus_unregister(lp->mii_bus);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001061 mdiobus_free(lp->mii_bus);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001062 peripheral_free_list(pin_req);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001063out_err_probe_mac:
1064 platform_set_drvdata(pdev, NULL);
1065 free_netdev(ndev);
1066
1067 return rc;
Bryan Wue190d6b2007-07-17 14:43:44 +08001068}
1069
Mike Frysingerd7b843d32008-07-27 22:45:03 +08001070static int __devexit bfin_mac_remove(struct platform_device *pdev)
Bryan Wue190d6b2007-07-17 14:43:44 +08001071{
1072 struct net_device *ndev = platform_get_drvdata(pdev);
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001073 struct bfin_mac_local *lp = netdev_priv(ndev);
Bryan Wue190d6b2007-07-17 14:43:44 +08001074
1075 platform_set_drvdata(pdev, NULL);
1076
Graf Yang080c8252009-05-29 03:41:48 +00001077 lp->mii_bus->priv = NULL;
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001078
Bryan Wue190d6b2007-07-17 14:43:44 +08001079 unregister_netdev(ndev);
1080
1081 free_irq(IRQ_MAC_RX, ndev);
1082
1083 free_netdev(ndev);
1084
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001085 peripheral_free_list(pin_req);
Bryan Wue190d6b2007-07-17 14:43:44 +08001086
1087 return 0;
1088}
1089
Bryan Wu496a34c2007-09-19 23:37:14 +08001090#ifdef CONFIG_PM
1091static int bfin_mac_suspend(struct platform_device *pdev, pm_message_t mesg)
Bryan Wue190d6b2007-07-17 14:43:44 +08001092{
Bryan Wu496a34c2007-09-19 23:37:14 +08001093 struct net_device *net_dev = platform_get_drvdata(pdev);
1094
1095 if (netif_running(net_dev))
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001096 bfin_mac_close(net_dev);
Bryan Wu496a34c2007-09-19 23:37:14 +08001097
Bryan Wue190d6b2007-07-17 14:43:44 +08001098 return 0;
1099}
1100
1101static int bfin_mac_resume(struct platform_device *pdev)
1102{
Bryan Wu496a34c2007-09-19 23:37:14 +08001103 struct net_device *net_dev = platform_get_drvdata(pdev);
1104
1105 if (netif_running(net_dev))
Bryan Wu7ef0a7e2008-04-25 11:53:10 +08001106 bfin_mac_open(net_dev);
Bryan Wu496a34c2007-09-19 23:37:14 +08001107
Bryan Wue190d6b2007-07-17 14:43:44 +08001108 return 0;
1109}
Bryan Wu496a34c2007-09-19 23:37:14 +08001110#else
1111#define bfin_mac_suspend NULL
1112#define bfin_mac_resume NULL
1113#endif /* CONFIG_PM */
Bryan Wue190d6b2007-07-17 14:43:44 +08001114
Graf Yang080c8252009-05-29 03:41:48 +00001115static int __devinit bfin_mii_bus_probe(struct platform_device *pdev)
1116{
1117 struct mii_bus *miibus;
1118 int rc, i;
1119
1120 /*
1121 * We are setting up a network card,
1122 * so set the GPIO pins to Ethernet mode
1123 */
1124 rc = peripheral_request_list(pin_req, DRV_NAME);
1125 if (rc) {
1126 dev_err(&pdev->dev, "Requesting peripherals failed!\n");
1127 return rc;
1128 }
1129
1130 rc = -ENOMEM;
1131 miibus = mdiobus_alloc();
1132 if (miibus == NULL)
1133 goto out_err_alloc;
1134 miibus->read = bfin_mdiobus_read;
1135 miibus->write = bfin_mdiobus_write;
1136 miibus->reset = bfin_mdiobus_reset;
1137
1138 miibus->parent = &pdev->dev;
1139 miibus->name = "bfin_mii_bus";
1140 snprintf(miibus->id, MII_BUS_ID_SIZE, "0");
1141 miibus->irq = kmalloc(sizeof(int)*PHY_MAX_ADDR, GFP_KERNEL);
1142 if (miibus->irq == NULL)
1143 goto out_err_alloc;
1144 for (i = 0; i < PHY_MAX_ADDR; ++i)
1145 miibus->irq[i] = PHY_POLL;
1146
1147 rc = mdiobus_register(miibus);
1148 if (rc) {
1149 dev_err(&pdev->dev, "Cannot register MDIO bus!\n");
1150 goto out_err_mdiobus_register;
1151 }
1152
1153 platform_set_drvdata(pdev, miibus);
1154 return 0;
1155
1156out_err_mdiobus_register:
1157 mdiobus_free(miibus);
1158out_err_alloc:
1159 peripheral_free_list(pin_req);
1160
1161 return rc;
1162}
1163
1164static int __devexit bfin_mii_bus_remove(struct platform_device *pdev)
1165{
1166 struct mii_bus *miibus = platform_get_drvdata(pdev);
1167 platform_set_drvdata(pdev, NULL);
1168 mdiobus_unregister(miibus);
1169 mdiobus_free(miibus);
1170 peripheral_free_list(pin_req);
1171 return 0;
1172}
1173
1174static struct platform_driver bfin_mii_bus_driver = {
1175 .probe = bfin_mii_bus_probe,
1176 .remove = __devexit_p(bfin_mii_bus_remove),
1177 .driver = {
1178 .name = "bfin_mii_bus",
1179 .owner = THIS_MODULE,
1180 },
1181};
1182
Bryan Wue190d6b2007-07-17 14:43:44 +08001183static struct platform_driver bfin_mac_driver = {
1184 .probe = bfin_mac_probe,
Mike Frysingerd7b843d32008-07-27 22:45:03 +08001185 .remove = __devexit_p(bfin_mac_remove),
Bryan Wue190d6b2007-07-17 14:43:44 +08001186 .resume = bfin_mac_resume,
1187 .suspend = bfin_mac_suspend,
1188 .driver = {
Kay Sievers72abb462008-04-18 13:50:44 -07001189 .name = DRV_NAME,
1190 .owner = THIS_MODULE,
1191 },
Bryan Wue190d6b2007-07-17 14:43:44 +08001192};
1193
1194static int __init bfin_mac_init(void)
1195{
Graf Yang080c8252009-05-29 03:41:48 +00001196 int ret;
1197 ret = platform_driver_register(&bfin_mii_bus_driver);
1198 if (!ret)
1199 return platform_driver_register(&bfin_mac_driver);
1200 return -ENODEV;
Bryan Wue190d6b2007-07-17 14:43:44 +08001201}
1202
1203module_init(bfin_mac_init);
1204
1205static void __exit bfin_mac_cleanup(void)
1206{
1207 platform_driver_unregister(&bfin_mac_driver);
Graf Yang080c8252009-05-29 03:41:48 +00001208 platform_driver_unregister(&bfin_mii_bus_driver);
Bryan Wue190d6b2007-07-17 14:43:44 +08001209}
1210
1211module_exit(bfin_mac_cleanup);
Kay Sievers72abb462008-04-18 13:50:44 -07001212