blob: a64a6d74a5c8f9972bf93be6024b588b9ea77a49 [file] [log] [blame]
Grant Likely92744982009-04-25 12:53:39 +00001/*
2 * Driver for Xilinx TEMAC Ethernet device
3 *
4 * Copyright (c) 2008 Nissin Systems Co., Ltd., Yoshio Kashiwagi
5 * Copyright (c) 2005-2008 DLA Systems, David H. Lynch Jr. <dhlii@dlasys.net>
6 * Copyright (c) 2008-2009 Secret Lab Technologies Ltd.
7 *
8 * This is a driver for the Xilinx ll_temac ipcore which is often used
9 * in the Virtex and Spartan series of chips.
10 *
11 * Notes:
12 * - The ll_temac hardware uses indirect access for many of the TEMAC
13 * registers, include the MDIO bus. However, indirect access to MDIO
14 * registers take considerably more clock cycles than to TEMAC registers.
15 * MDIO accesses are long, so threads doing them should probably sleep
16 * rather than busywait. However, since only one indirect access can be
17 * in progress at any given time, that means that *all* indirect accesses
18 * could end up sleeping (to wait for an MDIO access to complete).
19 * Fortunately none of the indirect accesses are on the 'hot' path for tx
20 * or rx, so this should be okay.
21 *
22 * TODO:
Grant Likely92744982009-04-25 12:53:39 +000023 * - Factor out locallink DMA code into separate driver
24 * - Fix multicast assignment.
25 * - Fix support for hardware checksumming.
26 * - Testing. Lots and lots of testing.
27 *
28 */
29
30#include <linux/delay.h>
31#include <linux/etherdevice.h>
32#include <linux/init.h>
33#include <linux/mii.h>
34#include <linux/module.h>
35#include <linux/mutex.h>
36#include <linux/netdevice.h>
37#include <linux/of.h>
38#include <linux/of_device.h>
39#include <linux/of_mdio.h>
40#include <linux/of_platform.h>
Michal Simek9f1a1fc2010-09-01 08:55:23 -060041#include <linux/of_address.h>
Grant Likely92744982009-04-25 12:53:39 +000042#include <linux/skbuff.h>
43#include <linux/spinlock.h>
44#include <linux/tcp.h> /* needed for sizeof(tcphdr) */
45#include <linux/udp.h> /* needed for sizeof(udphdr) */
46#include <linux/phy.h>
47#include <linux/in.h>
48#include <linux/io.h>
49#include <linux/ip.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090050#include <linux/slab.h>
Stephen Rothwellffbc03b2011-06-08 15:49:33 +100051#include <linux/interrupt.h>
Stephen Rothwell84cac392011-06-29 02:55:59 -070052#include <linux/dma-mapping.h>
Grant Likely92744982009-04-25 12:53:39 +000053
54#include "ll_temac.h"
55
56#define TX_BD_NUM 64
57#define RX_BD_NUM 128
58
59/* ---------------------------------------------------------------------
60 * Low level register access functions
61 */
62
63u32 temac_ior(struct temac_local *lp, int offset)
64{
65 return in_be32((u32 *)(lp->regs + offset));
66}
67
68void temac_iow(struct temac_local *lp, int offset, u32 value)
69{
70 out_be32((u32 *) (lp->regs + offset), value);
71}
72
73int temac_indirect_busywait(struct temac_local *lp)
74{
75 long end = jiffies + 2;
76
77 while (!(temac_ior(lp, XTE_RDY0_OFFSET) & XTE_RDY0_HARD_ACS_RDY_MASK)) {
78 if (end - jiffies <= 0) {
79 WARN_ON(1);
80 return -ETIMEDOUT;
81 }
82 msleep(1);
83 }
84 return 0;
85}
86
87/**
88 * temac_indirect_in32
89 *
90 * lp->indirect_mutex must be held when calling this function
91 */
92u32 temac_indirect_in32(struct temac_local *lp, int reg)
93{
94 u32 val;
95
96 if (temac_indirect_busywait(lp))
97 return -ETIMEDOUT;
98 temac_iow(lp, XTE_CTL0_OFFSET, reg);
99 if (temac_indirect_busywait(lp))
100 return -ETIMEDOUT;
101 val = temac_ior(lp, XTE_LSW0_OFFSET);
102
103 return val;
104}
105
106/**
107 * temac_indirect_out32
108 *
109 * lp->indirect_mutex must be held when calling this function
110 */
111void temac_indirect_out32(struct temac_local *lp, int reg, u32 value)
112{
113 if (temac_indirect_busywait(lp))
114 return;
115 temac_iow(lp, XTE_LSW0_OFFSET, value);
116 temac_iow(lp, XTE_CTL0_OFFSET, CNTLREG_WRITE_ENABLE_MASK | reg);
Ricardo Ribaldaf79d7e62011-11-07 23:39:57 +0000117 temac_indirect_busywait(lp);
Grant Likely92744982009-04-25 12:53:39 +0000118}
119
John Linne44171f2010-04-08 07:08:02 +0000120/**
121 * temac_dma_in32 - Memory mapped DMA read, this function expects a
122 * register input that is based on DCR word addresses which
123 * are then converted to memory mapped byte addresses
124 */
Grant Likely92744982009-04-25 12:53:39 +0000125static u32 temac_dma_in32(struct temac_local *lp, int reg)
126{
John Linne44171f2010-04-08 07:08:02 +0000127 return in_be32((u32 *)(lp->sdma_regs + (reg << 2)));
128}
129
130/**
131 * temac_dma_out32 - Memory mapped DMA read, this function expects a
132 * register input that is based on DCR word addresses which
133 * are then converted to memory mapped byte addresses
134 */
135static void temac_dma_out32(struct temac_local *lp, int reg, u32 value)
136{
137 out_be32((u32 *)(lp->sdma_regs + (reg << 2)), value);
138}
139
140/* DMA register access functions can be DCR based or memory mapped.
141 * The PowerPC 440 is DCR based, the PowerPC 405 and MicroBlaze are both
142 * memory mapped.
143 */
144#ifdef CONFIG_PPC_DCR
145
146/**
147 * temac_dma_dcr_in32 - DCR based DMA read
148 */
149static u32 temac_dma_dcr_in(struct temac_local *lp, int reg)
150{
Grant Likely92744982009-04-25 12:53:39 +0000151 return dcr_read(lp->sdma_dcrs, reg);
152}
153
John Linne44171f2010-04-08 07:08:02 +0000154/**
155 * temac_dma_dcr_out32 - DCR based DMA write
156 */
157static void temac_dma_dcr_out(struct temac_local *lp, int reg, u32 value)
Grant Likely92744982009-04-25 12:53:39 +0000158{
159 dcr_write(lp->sdma_dcrs, reg, value);
160}
161
162/**
John Linne44171f2010-04-08 07:08:02 +0000163 * temac_dcr_setup - If the DMA is DCR based, then setup the address and
164 * I/O functions
165 */
Grant Likely2dc11582010-08-06 09:25:50 -0600166static int temac_dcr_setup(struct temac_local *lp, struct platform_device *op,
John Linne44171f2010-04-08 07:08:02 +0000167 struct device_node *np)
168{
169 unsigned int dcrs;
170
171 /* setup the dcr address mapping if it's in the device tree */
172
173 dcrs = dcr_resource_start(np, 0);
174 if (dcrs != 0) {
175 lp->sdma_dcrs = dcr_map(np, dcrs, dcr_resource_len(np, 0));
176 lp->dma_in = temac_dma_dcr_in;
177 lp->dma_out = temac_dma_dcr_out;
178 dev_dbg(&op->dev, "DCR base: %x\n", dcrs);
179 return 0;
180 }
181 /* no DCR in the device tree, indicate a failure */
182 return -1;
183}
184
185#else
186
187/*
188 * temac_dcr_setup - This is a stub for when DCR is not supported,
189 * such as with MicroBlaze
190 */
Grant Likely2dc11582010-08-06 09:25:50 -0600191static int temac_dcr_setup(struct temac_local *lp, struct platform_device *op,
John Linne44171f2010-04-08 07:08:02 +0000192 struct device_node *np)
193{
194 return -1;
195}
196
197#endif
198
199/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000200 * temac_dma_bd_release - Release buffer descriptor rings
Denis Kirjanov301e9d92010-07-08 10:24:51 +0000201 */
202static void temac_dma_bd_release(struct net_device *ndev)
203{
204 struct temac_local *lp = netdev_priv(ndev);
205 int i;
206
Ricardo Ribalda50ec1532011-11-07 23:31:58 +0000207 /* Reset Local Link (DMA) */
208 lp->dma_out(lp, DMA_CONTROL_REG, DMA_CONTROL_RST);
209
Denis Kirjanov301e9d92010-07-08 10:24:51 +0000210 for (i = 0; i < RX_BD_NUM; i++) {
211 if (!lp->rx_skb[i])
212 break;
213 else {
214 dma_unmap_single(ndev->dev.parent, lp->rx_bd_v[i].phys,
215 XTE_MAX_JUMBO_FRAME_SIZE, DMA_FROM_DEVICE);
216 dev_kfree_skb(lp->rx_skb[i]);
217 }
218 }
219 if (lp->rx_bd_v)
220 dma_free_coherent(ndev->dev.parent,
221 sizeof(*lp->rx_bd_v) * RX_BD_NUM,
222 lp->rx_bd_v, lp->rx_bd_p);
223 if (lp->tx_bd_v)
224 dma_free_coherent(ndev->dev.parent,
225 sizeof(*lp->tx_bd_v) * TX_BD_NUM,
226 lp->tx_bd_v, lp->tx_bd_p);
227 if (lp->rx_skb)
228 kfree(lp->rx_skb);
229}
230
231/**
Grant Likely92744982009-04-25 12:53:39 +0000232 * temac_dma_bd_init - Setup buffer descriptor rings
233 */
234static int temac_dma_bd_init(struct net_device *ndev)
235{
236 struct temac_local *lp = netdev_priv(ndev);
237 struct sk_buff *skb;
238 int i;
239
Thomas Meyerddf98e62011-12-02 12:35:43 +0000240 lp->rx_skb = kcalloc(RX_BD_NUM, sizeof(*lp->rx_skb), GFP_KERNEL);
Joe Perchesb2adaca2013-02-03 17:43:58 +0000241 if (!lp->rx_skb)
Denis Kirjanovfe62c292010-06-30 23:39:05 +0000242 goto out;
Joe Perchesb2adaca2013-02-03 17:43:58 +0000243
Grant Likely92744982009-04-25 12:53:39 +0000244 /* allocate the tx and rx ring buffer descriptors. */
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400245 /* returns a virtual address and a physical address. */
Grant Likely92744982009-04-25 12:53:39 +0000246 lp->tx_bd_v = dma_alloc_coherent(ndev->dev.parent,
247 sizeof(*lp->tx_bd_v) * TX_BD_NUM,
248 &lp->tx_bd_p, GFP_KERNEL);
Joe Perchesd0320f72013-03-14 13:07:21 +0000249 if (!lp->tx_bd_v)
Denis Kirjanovfe62c292010-06-30 23:39:05 +0000250 goto out;
Joe Perchesd0320f72013-03-14 13:07:21 +0000251
Grant Likely92744982009-04-25 12:53:39 +0000252 lp->rx_bd_v = dma_alloc_coherent(ndev->dev.parent,
253 sizeof(*lp->rx_bd_v) * RX_BD_NUM,
254 &lp->rx_bd_p, GFP_KERNEL);
Joe Perchesd0320f72013-03-14 13:07:21 +0000255 if (!lp->rx_bd_v)
Denis Kirjanovfe62c292010-06-30 23:39:05 +0000256 goto out;
Grant Likely92744982009-04-25 12:53:39 +0000257
258 memset(lp->tx_bd_v, 0, sizeof(*lp->tx_bd_v) * TX_BD_NUM);
259 for (i = 0; i < TX_BD_NUM; i++) {
260 lp->tx_bd_v[i].next = lp->tx_bd_p +
261 sizeof(*lp->tx_bd_v) * ((i + 1) % TX_BD_NUM);
262 }
263
264 memset(lp->rx_bd_v, 0, sizeof(*lp->rx_bd_v) * RX_BD_NUM);
265 for (i = 0; i < RX_BD_NUM; i++) {
266 lp->rx_bd_v[i].next = lp->rx_bd_p +
267 sizeof(*lp->rx_bd_v) * ((i + 1) % RX_BD_NUM);
268
John Linne44171f2010-04-08 07:08:02 +0000269 skb = netdev_alloc_skb_ip_align(ndev,
270 XTE_MAX_JUMBO_FRAME_SIZE);
Joe Perches720a43e2013-03-08 15:03:25 +0000271 if (!skb)
Denis Kirjanovfe62c292010-06-30 23:39:05 +0000272 goto out;
Joe Perches720a43e2013-03-08 15:03:25 +0000273
Grant Likely92744982009-04-25 12:53:39 +0000274 lp->rx_skb[i] = skb;
Grant Likely92744982009-04-25 12:53:39 +0000275 /* returns physical address of skb->data */
276 lp->rx_bd_v[i].phys = dma_map_single(ndev->dev.parent,
277 skb->data,
278 XTE_MAX_JUMBO_FRAME_SIZE,
279 DMA_FROM_DEVICE);
280 lp->rx_bd_v[i].len = XTE_MAX_JUMBO_FRAME_SIZE;
281 lp->rx_bd_v[i].app0 = STS_CTRL_APP0_IRQONEND;
282 }
283
John Linne44171f2010-04-08 07:08:02 +0000284 lp->dma_out(lp, TX_CHNL_CTRL, 0x10220400 |
Grant Likely92744982009-04-25 12:53:39 +0000285 CHNL_CTRL_IRQ_EN |
286 CHNL_CTRL_IRQ_DLY_EN |
287 CHNL_CTRL_IRQ_COAL_EN);
288 /* 0x10220483 */
289 /* 0x00100483 */
Brian Hill23ecc4b2010-05-26 20:44:30 -0700290 lp->dma_out(lp, RX_CHNL_CTRL, 0xff070000 |
Grant Likely92744982009-04-25 12:53:39 +0000291 CHNL_CTRL_IRQ_EN |
292 CHNL_CTRL_IRQ_DLY_EN |
293 CHNL_CTRL_IRQ_COAL_EN |
294 CHNL_CTRL_IRQ_IOE);
295 /* 0xff010283 */
296
John Linne44171f2010-04-08 07:08:02 +0000297 lp->dma_out(lp, RX_CURDESC_PTR, lp->rx_bd_p);
298 lp->dma_out(lp, RX_TAILDESC_PTR,
Grant Likely92744982009-04-25 12:53:39 +0000299 lp->rx_bd_p + (sizeof(*lp->rx_bd_v) * (RX_BD_NUM - 1)));
John Linne44171f2010-04-08 07:08:02 +0000300 lp->dma_out(lp, TX_CURDESC_PTR, lp->tx_bd_p);
Grant Likely92744982009-04-25 12:53:39 +0000301
302 return 0;
Denis Kirjanovfe62c292010-06-30 23:39:05 +0000303
304out:
Denis Kirjanov301e9d92010-07-08 10:24:51 +0000305 temac_dma_bd_release(ndev);
Denis Kirjanovfe62c292010-06-30 23:39:05 +0000306 return -ENOMEM;
Grant Likely92744982009-04-25 12:53:39 +0000307}
308
309/* ---------------------------------------------------------------------
310 * net_device_ops
311 */
312
Jiri Pirko04e406d2013-01-01 03:30:19 +0000313static void temac_do_set_mac_address(struct net_device *ndev)
Grant Likely92744982009-04-25 12:53:39 +0000314{
315 struct temac_local *lp = netdev_priv(ndev);
316
Grant Likely92744982009-04-25 12:53:39 +0000317 /* set up unicast MAC address filter set its mac address */
318 mutex_lock(&lp->indirect_mutex);
319 temac_indirect_out32(lp, XTE_UAW0_OFFSET,
320 (ndev->dev_addr[0]) |
321 (ndev->dev_addr[1] << 8) |
322 (ndev->dev_addr[2] << 16) |
323 (ndev->dev_addr[3] << 24));
324 /* There are reserved bits in EUAW1
325 * so don't affect them Set MAC bits [47:32] in EUAW1 */
326 temac_indirect_out32(lp, XTE_UAW1_OFFSET,
327 (ndev->dev_addr[4] & 0x000000ff) |
328 (ndev->dev_addr[5] << 8));
329 mutex_unlock(&lp->indirect_mutex);
Jiri Pirko04e406d2013-01-01 03:30:19 +0000330}
Grant Likely92744982009-04-25 12:53:39 +0000331
Jiri Pirko04e406d2013-01-01 03:30:19 +0000332static int temac_init_mac_address(struct net_device *ndev, void *address)
333{
334 memcpy(ndev->dev_addr, address, ETH_ALEN);
335 if (!is_valid_ether_addr(ndev->dev_addr))
336 eth_hw_addr_random(ndev);
337 temac_do_set_mac_address(ndev);
Grant Likely92744982009-04-25 12:53:39 +0000338 return 0;
339}
340
Jiri Pirko04e406d2013-01-01 03:30:19 +0000341static int temac_set_mac_address(struct net_device *ndev, void *p)
Steven J. Magnani8ea7a372010-02-17 07:55:07 +0000342{
343 struct sockaddr *addr = p;
344
Jiri Pirko04e406d2013-01-01 03:30:19 +0000345 if (!is_valid_ether_addr(addr->sa_data))
346 return -EADDRNOTAVAIL;
347 memcpy(ndev->dev_addr, addr->sa_data, ETH_ALEN);
348 temac_do_set_mac_address(ndev);
349 return 0;
Steven J. Magnani8ea7a372010-02-17 07:55:07 +0000350}
351
Grant Likely92744982009-04-25 12:53:39 +0000352static void temac_set_multicast_list(struct net_device *ndev)
353{
354 struct temac_local *lp = netdev_priv(ndev);
355 u32 multi_addr_msw, multi_addr_lsw, val;
356 int i;
357
358 mutex_lock(&lp->indirect_mutex);
Joe Perches8e95a202009-12-03 07:58:21 +0000359 if (ndev->flags & (IFF_ALLMULTI | IFF_PROMISC) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000360 netdev_mc_count(ndev) > MULTICAST_CAM_TABLE_NUM) {
Grant Likely92744982009-04-25 12:53:39 +0000361 /*
362 * We must make the kernel realise we had to move
363 * into promisc mode or we start all out war on
364 * the cable. If it was a promisc request the
365 * flag is already set. If not we assert it.
366 */
367 ndev->flags |= IFF_PROMISC;
368 temac_indirect_out32(lp, XTE_AFM_OFFSET, XTE_AFM_EPPRM_MASK);
369 dev_info(&ndev->dev, "Promiscuous mode enabled.\n");
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000370 } else if (!netdev_mc_empty(ndev)) {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000371 struct netdev_hw_addr *ha;
Grant Likely92744982009-04-25 12:53:39 +0000372
Jiri Pirkof9dcbcc2010-02-23 09:19:49 +0000373 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +0000374 netdev_for_each_mc_addr(ha, ndev) {
Grant Likely92744982009-04-25 12:53:39 +0000375 if (i >= MULTICAST_CAM_TABLE_NUM)
376 break;
Jiri Pirko22bedad32010-04-01 21:22:57 +0000377 multi_addr_msw = ((ha->addr[3] << 24) |
378 (ha->addr[2] << 16) |
379 (ha->addr[1] << 8) |
380 (ha->addr[0]));
Grant Likely92744982009-04-25 12:53:39 +0000381 temac_indirect_out32(lp, XTE_MAW0_OFFSET,
382 multi_addr_msw);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000383 multi_addr_lsw = ((ha->addr[5] << 8) |
384 (ha->addr[4]) | (i << 16));
Grant Likely92744982009-04-25 12:53:39 +0000385 temac_indirect_out32(lp, XTE_MAW1_OFFSET,
386 multi_addr_lsw);
Jiri Pirkof9dcbcc2010-02-23 09:19:49 +0000387 i++;
Grant Likely92744982009-04-25 12:53:39 +0000388 }
389 } else {
390 val = temac_indirect_in32(lp, XTE_AFM_OFFSET);
391 temac_indirect_out32(lp, XTE_AFM_OFFSET,
392 val & ~XTE_AFM_EPPRM_MASK);
393 temac_indirect_out32(lp, XTE_MAW0_OFFSET, 0);
394 temac_indirect_out32(lp, XTE_MAW1_OFFSET, 0);
395 dev_info(&ndev->dev, "Promiscuous mode disabled.\n");
396 }
397 mutex_unlock(&lp->indirect_mutex);
398}
399
400struct temac_option {
401 int flg;
402 u32 opt;
403 u32 reg;
404 u32 m_or;
405 u32 m_and;
406} temac_options[] = {
407 /* Turn on jumbo packet support for both Rx and Tx */
408 {
409 .opt = XTE_OPTION_JUMBO,
410 .reg = XTE_TXC_OFFSET,
411 .m_or = XTE_TXC_TXJMBO_MASK,
412 },
413 {
414 .opt = XTE_OPTION_JUMBO,
415 .reg = XTE_RXC1_OFFSET,
416 .m_or =XTE_RXC1_RXJMBO_MASK,
417 },
418 /* Turn on VLAN packet support for both Rx and Tx */
419 {
420 .opt = XTE_OPTION_VLAN,
421 .reg = XTE_TXC_OFFSET,
422 .m_or =XTE_TXC_TXVLAN_MASK,
423 },
424 {
425 .opt = XTE_OPTION_VLAN,
426 .reg = XTE_RXC1_OFFSET,
427 .m_or =XTE_RXC1_RXVLAN_MASK,
428 },
429 /* Turn on FCS stripping on receive packets */
430 {
431 .opt = XTE_OPTION_FCS_STRIP,
432 .reg = XTE_RXC1_OFFSET,
433 .m_or =XTE_RXC1_RXFCS_MASK,
434 },
435 /* Turn on FCS insertion on transmit packets */
436 {
437 .opt = XTE_OPTION_FCS_INSERT,
438 .reg = XTE_TXC_OFFSET,
439 .m_or =XTE_TXC_TXFCS_MASK,
440 },
441 /* Turn on length/type field checking on receive packets */
442 {
443 .opt = XTE_OPTION_LENTYPE_ERR,
444 .reg = XTE_RXC1_OFFSET,
445 .m_or =XTE_RXC1_RXLT_MASK,
446 },
447 /* Turn on flow control */
448 {
449 .opt = XTE_OPTION_FLOW_CONTROL,
450 .reg = XTE_FCC_OFFSET,
451 .m_or =XTE_FCC_RXFLO_MASK,
452 },
453 /* Turn on flow control */
454 {
455 .opt = XTE_OPTION_FLOW_CONTROL,
456 .reg = XTE_FCC_OFFSET,
457 .m_or =XTE_FCC_TXFLO_MASK,
458 },
459 /* Turn on promiscuous frame filtering (all frames are received ) */
460 {
461 .opt = XTE_OPTION_PROMISC,
462 .reg = XTE_AFM_OFFSET,
463 .m_or =XTE_AFM_EPPRM_MASK,
464 },
465 /* Enable transmitter if not already enabled */
466 {
467 .opt = XTE_OPTION_TXEN,
468 .reg = XTE_TXC_OFFSET,
469 .m_or =XTE_TXC_TXEN_MASK,
470 },
471 /* Enable receiver? */
472 {
473 .opt = XTE_OPTION_RXEN,
474 .reg = XTE_RXC1_OFFSET,
475 .m_or =XTE_RXC1_RXEN_MASK,
476 },
477 {}
478};
479
480/**
481 * temac_setoptions
482 */
483static u32 temac_setoptions(struct net_device *ndev, u32 options)
484{
485 struct temac_local *lp = netdev_priv(ndev);
486 struct temac_option *tp = &temac_options[0];
487 int reg;
488
489 mutex_lock(&lp->indirect_mutex);
490 while (tp->opt) {
491 reg = temac_indirect_in32(lp, tp->reg) & ~tp->m_or;
492 if (options & tp->opt)
493 reg |= tp->m_or;
494 temac_indirect_out32(lp, tp->reg, reg);
495 tp++;
496 }
497 lp->options |= options;
498 mutex_unlock(&lp->indirect_mutex);
499
Eric Dumazet807540b2010-09-23 05:40:09 +0000500 return 0;
Grant Likely92744982009-04-25 12:53:39 +0000501}
502
Uwe Kleine-König421f91d2010-06-11 12:17:00 +0200503/* Initialize temac */
Grant Likely92744982009-04-25 12:53:39 +0000504static void temac_device_reset(struct net_device *ndev)
505{
506 struct temac_local *lp = netdev_priv(ndev);
507 u32 timeout;
508 u32 val;
509
510 /* Perform a software reset */
511
512 /* 0x300 host enable bit ? */
513 /* reset PHY through control register ?:1 */
514
515 dev_dbg(&ndev->dev, "%s()\n", __func__);
516
517 mutex_lock(&lp->indirect_mutex);
518 /* Reset the receiver and wait for it to finish reset */
519 temac_indirect_out32(lp, XTE_RXC1_OFFSET, XTE_RXC1_RXRST_MASK);
520 timeout = 1000;
521 while (temac_indirect_in32(lp, XTE_RXC1_OFFSET) & XTE_RXC1_RXRST_MASK) {
522 udelay(1);
523 if (--timeout == 0) {
524 dev_err(&ndev->dev,
525 "temac_device_reset RX reset timeout!!\n");
526 break;
527 }
528 }
529
530 /* Reset the transmitter and wait for it to finish reset */
531 temac_indirect_out32(lp, XTE_TXC_OFFSET, XTE_TXC_TXRST_MASK);
532 timeout = 1000;
533 while (temac_indirect_in32(lp, XTE_TXC_OFFSET) & XTE_TXC_TXRST_MASK) {
534 udelay(1);
535 if (--timeout == 0) {
536 dev_err(&ndev->dev,
537 "temac_device_reset TX reset timeout!!\n");
538 break;
539 }
540 }
541
542 /* Disable the receiver */
543 val = temac_indirect_in32(lp, XTE_RXC1_OFFSET);
544 temac_indirect_out32(lp, XTE_RXC1_OFFSET, val & ~XTE_RXC1_RXEN_MASK);
545
546 /* Reset Local Link (DMA) */
John Linne44171f2010-04-08 07:08:02 +0000547 lp->dma_out(lp, DMA_CONTROL_REG, DMA_CONTROL_RST);
Grant Likely92744982009-04-25 12:53:39 +0000548 timeout = 1000;
John Linne44171f2010-04-08 07:08:02 +0000549 while (lp->dma_in(lp, DMA_CONTROL_REG) & DMA_CONTROL_RST) {
Grant Likely92744982009-04-25 12:53:39 +0000550 udelay(1);
551 if (--timeout == 0) {
552 dev_err(&ndev->dev,
553 "temac_device_reset DMA reset timeout!!\n");
554 break;
555 }
556 }
John Linne44171f2010-04-08 07:08:02 +0000557 lp->dma_out(lp, DMA_CONTROL_REG, DMA_TAIL_ENABLE);
Grant Likely92744982009-04-25 12:53:39 +0000558
Denis Kirjanovfe62c292010-06-30 23:39:05 +0000559 if (temac_dma_bd_init(ndev)) {
560 dev_err(&ndev->dev,
561 "temac_device_reset descriptor allocation failed\n");
562 }
Grant Likely92744982009-04-25 12:53:39 +0000563
564 temac_indirect_out32(lp, XTE_RXC0_OFFSET, 0);
565 temac_indirect_out32(lp, XTE_RXC1_OFFSET, 0);
566 temac_indirect_out32(lp, XTE_TXC_OFFSET, 0);
567 temac_indirect_out32(lp, XTE_FCC_OFFSET, XTE_FCC_RXFLO_MASK);
568
569 mutex_unlock(&lp->indirect_mutex);
570
571 /* Sync default options with HW
572 * but leave receiver and transmitter disabled. */
573 temac_setoptions(ndev,
574 lp->options & ~(XTE_OPTION_TXEN | XTE_OPTION_RXEN));
575
Jiri Pirko04e406d2013-01-01 03:30:19 +0000576 temac_do_set_mac_address(ndev);
Grant Likely92744982009-04-25 12:53:39 +0000577
578 /* Set address filter table */
579 temac_set_multicast_list(ndev);
580 if (temac_setoptions(ndev, lp->options))
581 dev_err(&ndev->dev, "Error setting TEMAC options\n");
582
583 /* Init Driver variable */
Eric Dumazet1ae5dc32010-05-10 05:01:31 -0700584 ndev->trans_start = jiffies; /* prevent tx timeout */
Grant Likely92744982009-04-25 12:53:39 +0000585}
586
587void temac_adjust_link(struct net_device *ndev)
588{
589 struct temac_local *lp = netdev_priv(ndev);
590 struct phy_device *phy = lp->phy_dev;
591 u32 mii_speed;
592 int link_state;
593
594 /* hash together the state values to decide if something has changed */
595 link_state = phy->speed | (phy->duplex << 1) | phy->link;
596
597 mutex_lock(&lp->indirect_mutex);
598 if (lp->last_link != link_state) {
599 mii_speed = temac_indirect_in32(lp, XTE_EMCFG_OFFSET);
600 mii_speed &= ~XTE_EMCFG_LINKSPD_MASK;
601
602 switch (phy->speed) {
603 case SPEED_1000: mii_speed |= XTE_EMCFG_LINKSPD_1000; break;
604 case SPEED_100: mii_speed |= XTE_EMCFG_LINKSPD_100; break;
605 case SPEED_10: mii_speed |= XTE_EMCFG_LINKSPD_10; break;
606 }
607
608 /* Write new speed setting out to TEMAC */
609 temac_indirect_out32(lp, XTE_EMCFG_OFFSET, mii_speed);
610 lp->last_link = link_state;
611 phy_print_status(phy);
612 }
613 mutex_unlock(&lp->indirect_mutex);
614}
615
616static void temac_start_xmit_done(struct net_device *ndev)
617{
618 struct temac_local *lp = netdev_priv(ndev);
619 struct cdmac_bd *cur_p;
620 unsigned int stat = 0;
621
622 cur_p = &lp->tx_bd_v[lp->tx_bd_ci];
623 stat = cur_p->app0;
624
625 while (stat & STS_CTRL_APP0_CMPLT) {
626 dma_unmap_single(ndev->dev.parent, cur_p->phys, cur_p->len,
627 DMA_TO_DEVICE);
628 if (cur_p->app4)
629 dev_kfree_skb_irq((struct sk_buff *)cur_p->app4);
630 cur_p->app0 = 0;
Brian Hill23ecc4b2010-05-26 20:44:30 -0700631 cur_p->app1 = 0;
632 cur_p->app2 = 0;
633 cur_p->app3 = 0;
634 cur_p->app4 = 0;
Grant Likely92744982009-04-25 12:53:39 +0000635
636 ndev->stats.tx_packets++;
637 ndev->stats.tx_bytes += cur_p->len;
638
639 lp->tx_bd_ci++;
640 if (lp->tx_bd_ci >= TX_BD_NUM)
641 lp->tx_bd_ci = 0;
642
643 cur_p = &lp->tx_bd_v[lp->tx_bd_ci];
644 stat = cur_p->app0;
645 }
646
647 netif_wake_queue(ndev);
648}
649
Brian Hill23ecc4b2010-05-26 20:44:30 -0700650static inline int temac_check_tx_bd_space(struct temac_local *lp, int num_frag)
651{
652 struct cdmac_bd *cur_p;
653 int tail;
654
655 tail = lp->tx_bd_tail;
656 cur_p = &lp->tx_bd_v[tail];
657
658 do {
659 if (cur_p->app0)
660 return NETDEV_TX_BUSY;
661
662 tail++;
663 if (tail >= TX_BD_NUM)
664 tail = 0;
665
666 cur_p = &lp->tx_bd_v[tail];
667 num_frag--;
668 } while (num_frag >= 0);
669
670 return 0;
671}
672
Grant Likely92744982009-04-25 12:53:39 +0000673static int temac_start_xmit(struct sk_buff *skb, struct net_device *ndev)
674{
675 struct temac_local *lp = netdev_priv(ndev);
676 struct cdmac_bd *cur_p;
677 dma_addr_t start_p, tail_p;
678 int ii;
679 unsigned long num_frag;
680 skb_frag_t *frag;
681
682 num_frag = skb_shinfo(skb)->nr_frags;
683 frag = &skb_shinfo(skb)->frags[0];
684 start_p = lp->tx_bd_p + sizeof(*lp->tx_bd_v) * lp->tx_bd_tail;
685 cur_p = &lp->tx_bd_v[lp->tx_bd_tail];
686
Brian Hill23ecc4b2010-05-26 20:44:30 -0700687 if (temac_check_tx_bd_space(lp, num_frag)) {
Grant Likely92744982009-04-25 12:53:39 +0000688 if (!netif_queue_stopped(ndev)) {
689 netif_stop_queue(ndev);
690 return NETDEV_TX_BUSY;
691 }
692 return NETDEV_TX_BUSY;
693 }
694
695 cur_p->app0 = 0;
696 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Michał Mirosław0d0b1672010-12-14 15:24:08 +0000697 unsigned int csum_start_off = skb_checksum_start_offset(skb);
Brian Hill23ecc4b2010-05-26 20:44:30 -0700698 unsigned int csum_index_off = csum_start_off + skb->csum_offset;
Grant Likely92744982009-04-25 12:53:39 +0000699
Brian Hill23ecc4b2010-05-26 20:44:30 -0700700 cur_p->app0 |= 1; /* TX Checksum Enabled */
701 cur_p->app1 = (csum_start_off << 16) | csum_index_off;
702 cur_p->app2 = 0; /* initial checksum seed */
Grant Likely92744982009-04-25 12:53:39 +0000703 }
Brian Hill23ecc4b2010-05-26 20:44:30 -0700704
Grant Likely92744982009-04-25 12:53:39 +0000705 cur_p->app0 |= STS_CTRL_APP0_SOP;
706 cur_p->len = skb_headlen(skb);
707 cur_p->phys = dma_map_single(ndev->dev.parent, skb->data, skb->len,
708 DMA_TO_DEVICE);
709 cur_p->app4 = (unsigned long)skb;
710
711 for (ii = 0; ii < num_frag; ii++) {
712 lp->tx_bd_tail++;
713 if (lp->tx_bd_tail >= TX_BD_NUM)
714 lp->tx_bd_tail = 0;
715
716 cur_p = &lp->tx_bd_v[lp->tx_bd_tail];
717 cur_p->phys = dma_map_single(ndev->dev.parent,
Ian Campbell3ed6f692011-10-10 01:11:40 +0000718 skb_frag_address(frag),
Stephen Rothwell2edcd4c2011-11-02 01:49:44 -0400719 skb_frag_size(frag), DMA_TO_DEVICE);
720 cur_p->len = skb_frag_size(frag);
Grant Likely92744982009-04-25 12:53:39 +0000721 cur_p->app0 = 0;
722 frag++;
723 }
724 cur_p->app0 |= STS_CTRL_APP0_EOP;
725
726 tail_p = lp->tx_bd_p + sizeof(*lp->tx_bd_v) * lp->tx_bd_tail;
727 lp->tx_bd_tail++;
728 if (lp->tx_bd_tail >= TX_BD_NUM)
729 lp->tx_bd_tail = 0;
730
Richard Cochran93e0ed12011-06-19 21:51:26 +0000731 skb_tx_timestamp(skb);
732
Grant Likely92744982009-04-25 12:53:39 +0000733 /* Kick off the transfer */
John Linne44171f2010-04-08 07:08:02 +0000734 lp->dma_out(lp, TX_TAILDESC_PTR, tail_p); /* DMA start */
Grant Likely92744982009-04-25 12:53:39 +0000735
Patrick McHardy6ed10652009-06-23 06:03:08 +0000736 return NETDEV_TX_OK;
Grant Likely92744982009-04-25 12:53:39 +0000737}
738
739
740static void ll_temac_recv(struct net_device *ndev)
741{
742 struct temac_local *lp = netdev_priv(ndev);
743 struct sk_buff *skb, *new_skb;
744 unsigned int bdstat;
745 struct cdmac_bd *cur_p;
746 dma_addr_t tail_p;
747 int length;
Grant Likely92744982009-04-25 12:53:39 +0000748 unsigned long flags;
749
750 spin_lock_irqsave(&lp->rx_lock, flags);
751
752 tail_p = lp->rx_bd_p + sizeof(*lp->rx_bd_v) * lp->rx_bd_ci;
753 cur_p = &lp->rx_bd_v[lp->rx_bd_ci];
754
755 bdstat = cur_p->app0;
756 while ((bdstat & STS_CTRL_APP0_CMPLT)) {
757
758 skb = lp->rx_skb[lp->rx_bd_ci];
Steven J. Magnanic3b7c122010-02-17 07:14:20 +0000759 length = cur_p->app4 & 0x3FFF;
Grant Likely92744982009-04-25 12:53:39 +0000760
John Linn33646d72010-04-08 07:08:01 +0000761 dma_unmap_single(ndev->dev.parent, cur_p->phys, length,
Grant Likely92744982009-04-25 12:53:39 +0000762 DMA_FROM_DEVICE);
763
764 skb_put(skb, length);
Grant Likely92744982009-04-25 12:53:39 +0000765 skb->protocol = eth_type_trans(skb, ndev);
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700766 skb_checksum_none_assert(skb);
Grant Likely92744982009-04-25 12:53:39 +0000767
Brian Hill23ecc4b2010-05-26 20:44:30 -0700768 /* if we're doing rx csum offload, set it up */
769 if (((lp->temac_features & TEMAC_FEATURE_RX_CSUM) != 0) &&
770 (skb->protocol == __constant_htons(ETH_P_IP)) &&
771 (skb->len > 64)) {
772
773 skb->csum = cur_p->app3 & 0xFFFF;
774 skb->ip_summed = CHECKSUM_COMPLETE;
775 }
776
Richard Cochran93e0ed12011-06-19 21:51:26 +0000777 if (!skb_defer_rx_timestamp(skb))
778 netif_rx(skb);
Grant Likely92744982009-04-25 12:53:39 +0000779
780 ndev->stats.rx_packets++;
781 ndev->stats.rx_bytes += length;
782
John Linne44171f2010-04-08 07:08:02 +0000783 new_skb = netdev_alloc_skb_ip_align(ndev,
784 XTE_MAX_JUMBO_FRAME_SIZE);
Joe Perches720a43e2013-03-08 15:03:25 +0000785 if (!new_skb) {
Grant Likely92744982009-04-25 12:53:39 +0000786 spin_unlock_irqrestore(&lp->rx_lock, flags);
787 return;
788 }
789
Grant Likely92744982009-04-25 12:53:39 +0000790 cur_p->app0 = STS_CTRL_APP0_IRQONEND;
791 cur_p->phys = dma_map_single(ndev->dev.parent, new_skb->data,
792 XTE_MAX_JUMBO_FRAME_SIZE,
793 DMA_FROM_DEVICE);
794 cur_p->len = XTE_MAX_JUMBO_FRAME_SIZE;
795 lp->rx_skb[lp->rx_bd_ci] = new_skb;
796
797 lp->rx_bd_ci++;
798 if (lp->rx_bd_ci >= RX_BD_NUM)
799 lp->rx_bd_ci = 0;
800
801 cur_p = &lp->rx_bd_v[lp->rx_bd_ci];
802 bdstat = cur_p->app0;
803 }
John Linne44171f2010-04-08 07:08:02 +0000804 lp->dma_out(lp, RX_TAILDESC_PTR, tail_p);
Grant Likely92744982009-04-25 12:53:39 +0000805
806 spin_unlock_irqrestore(&lp->rx_lock, flags);
807}
808
809static irqreturn_t ll_temac_tx_irq(int irq, void *_ndev)
810{
811 struct net_device *ndev = _ndev;
812 struct temac_local *lp = netdev_priv(ndev);
813 unsigned int status;
814
John Linne44171f2010-04-08 07:08:02 +0000815 status = lp->dma_in(lp, TX_IRQ_REG);
816 lp->dma_out(lp, TX_IRQ_REG, status);
Grant Likely92744982009-04-25 12:53:39 +0000817
818 if (status & (IRQ_COAL | IRQ_DLY))
819 temac_start_xmit_done(lp->ndev);
820 if (status & 0x080)
821 dev_err(&ndev->dev, "DMA error 0x%x\n", status);
822
823 return IRQ_HANDLED;
824}
825
826static irqreturn_t ll_temac_rx_irq(int irq, void *_ndev)
827{
828 struct net_device *ndev = _ndev;
829 struct temac_local *lp = netdev_priv(ndev);
830 unsigned int status;
831
832 /* Read and clear the status registers */
John Linne44171f2010-04-08 07:08:02 +0000833 status = lp->dma_in(lp, RX_IRQ_REG);
834 lp->dma_out(lp, RX_IRQ_REG, status);
Grant Likely92744982009-04-25 12:53:39 +0000835
836 if (status & (IRQ_COAL | IRQ_DLY))
837 ll_temac_recv(lp->ndev);
838
839 return IRQ_HANDLED;
840}
841
842static int temac_open(struct net_device *ndev)
843{
844 struct temac_local *lp = netdev_priv(ndev);
845 int rc;
846
847 dev_dbg(&ndev->dev, "temac_open()\n");
848
849 if (lp->phy_node) {
850 lp->phy_dev = of_phy_connect(lp->ndev, lp->phy_node,
851 temac_adjust_link, 0, 0);
852 if (!lp->phy_dev) {
853 dev_err(lp->dev, "of_phy_connect() failed\n");
854 return -ENODEV;
855 }
856
857 phy_start(lp->phy_dev);
858 }
859
Ricardo Ribalda50ec1532011-11-07 23:31:58 +0000860 temac_device_reset(ndev);
861
Grant Likely92744982009-04-25 12:53:39 +0000862 rc = request_irq(lp->tx_irq, ll_temac_tx_irq, 0, ndev->name, ndev);
863 if (rc)
864 goto err_tx_irq;
865 rc = request_irq(lp->rx_irq, ll_temac_rx_irq, 0, ndev->name, ndev);
866 if (rc)
867 goto err_rx_irq;
868
Grant Likely92744982009-04-25 12:53:39 +0000869 return 0;
870
871 err_rx_irq:
872 free_irq(lp->tx_irq, ndev);
873 err_tx_irq:
874 if (lp->phy_dev)
875 phy_disconnect(lp->phy_dev);
876 lp->phy_dev = NULL;
877 dev_err(lp->dev, "request_irq() failed\n");
878 return rc;
879}
880
881static int temac_stop(struct net_device *ndev)
882{
883 struct temac_local *lp = netdev_priv(ndev);
884
885 dev_dbg(&ndev->dev, "temac_close()\n");
886
887 free_irq(lp->tx_irq, ndev);
888 free_irq(lp->rx_irq, ndev);
889
890 if (lp->phy_dev)
891 phy_disconnect(lp->phy_dev);
892 lp->phy_dev = NULL;
893
Denis Kirjanov301e9d92010-07-08 10:24:51 +0000894 temac_dma_bd_release(ndev);
895
Grant Likely92744982009-04-25 12:53:39 +0000896 return 0;
897}
898
899#ifdef CONFIG_NET_POLL_CONTROLLER
900static void
901temac_poll_controller(struct net_device *ndev)
902{
903 struct temac_local *lp = netdev_priv(ndev);
904
905 disable_irq(lp->tx_irq);
906 disable_irq(lp->rx_irq);
907
Michal Simek85399922010-08-18 00:26:34 +0000908 ll_temac_rx_irq(lp->tx_irq, ndev);
909 ll_temac_tx_irq(lp->rx_irq, ndev);
Grant Likely92744982009-04-25 12:53:39 +0000910
911 enable_irq(lp->tx_irq);
912 enable_irq(lp->rx_irq);
913}
914#endif
915
Ricardo Ribalda8d8bdfe2011-11-07 23:47:45 +0000916static int temac_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
917{
918 struct temac_local *lp = netdev_priv(ndev);
919
920 if (!netif_running(ndev))
921 return -EINVAL;
922
923 if (!lp->phy_dev)
924 return -EINVAL;
925
926 return phy_mii_ioctl(lp->phy_dev, rq, cmd);
927}
928
Grant Likely92744982009-04-25 12:53:39 +0000929static const struct net_device_ops temac_netdev_ops = {
930 .ndo_open = temac_open,
931 .ndo_stop = temac_stop,
932 .ndo_start_xmit = temac_start_xmit,
Jiri Pirko04e406d2013-01-01 03:30:19 +0000933 .ndo_set_mac_address = temac_set_mac_address,
Denis Kirjanov60eb5fd2010-07-10 11:10:44 +0000934 .ndo_validate_addr = eth_validate_addr,
Ricardo Ribalda8d8bdfe2011-11-07 23:47:45 +0000935 .ndo_do_ioctl = temac_ioctl,
Grant Likely92744982009-04-25 12:53:39 +0000936#ifdef CONFIG_NET_POLL_CONTROLLER
937 .ndo_poll_controller = temac_poll_controller,
938#endif
939};
940
941/* ---------------------------------------------------------------------
942 * SYSFS device attributes
943 */
944static ssize_t temac_show_llink_regs(struct device *dev,
945 struct device_attribute *attr, char *buf)
946{
947 struct net_device *ndev = dev_get_drvdata(dev);
948 struct temac_local *lp = netdev_priv(ndev);
949 int i, len = 0;
950
951 for (i = 0; i < 0x11; i++)
John Linne44171f2010-04-08 07:08:02 +0000952 len += sprintf(buf + len, "%.8x%s", lp->dma_in(lp, i),
Grant Likely92744982009-04-25 12:53:39 +0000953 (i % 8) == 7 ? "\n" : " ");
954 len += sprintf(buf + len, "\n");
955
956 return len;
957}
958
959static DEVICE_ATTR(llink_regs, 0440, temac_show_llink_regs, NULL);
960
961static struct attribute *temac_device_attrs[] = {
962 &dev_attr_llink_regs.attr,
963 NULL,
964};
965
966static const struct attribute_group temac_attr_group = {
967 .attrs = temac_device_attrs,
968};
969
Ricardo9eac2d42011-10-18 21:35:25 +0000970/* ethtool support */
971static int temac_get_settings(struct net_device *ndev, struct ethtool_cmd *cmd)
972{
973 struct temac_local *lp = netdev_priv(ndev);
974 return phy_ethtool_gset(lp->phy_dev, cmd);
975}
976
977static int temac_set_settings(struct net_device *ndev, struct ethtool_cmd *cmd)
978{
979 struct temac_local *lp = netdev_priv(ndev);
980 return phy_ethtool_sset(lp->phy_dev, cmd);
981}
982
983static int temac_nway_reset(struct net_device *ndev)
984{
985 struct temac_local *lp = netdev_priv(ndev);
986 return phy_start_aneg(lp->phy_dev);
987}
988
989static const struct ethtool_ops temac_ethtool_ops = {
990 .get_settings = temac_get_settings,
991 .set_settings = temac_set_settings,
992 .nway_reset = temac_nway_reset,
993 .get_link = ethtool_op_get_link,
Richard Cochranf85e5ea2012-04-03 22:59:30 +0000994 .get_ts_info = ethtool_op_get_ts_info,
Ricardo9eac2d42011-10-18 21:35:25 +0000995};
996
Bill Pemberton06b0e682012-12-03 09:24:08 -0500997static int temac_of_probe(struct platform_device *op)
Grant Likely92744982009-04-25 12:53:39 +0000998{
999 struct device_node *np;
1000 struct temac_local *lp;
1001 struct net_device *ndev;
1002 const void *addr;
Brian Hill23ecc4b2010-05-26 20:44:30 -07001003 __be32 *p;
Grant Likely92744982009-04-25 12:53:39 +00001004 int size, rc = 0;
Grant Likely92744982009-04-25 12:53:39 +00001005
1006 /* Init network device structure */
1007 ndev = alloc_etherdev(sizeof(*lp));
Joe Perches41de8d42012-01-29 13:47:52 +00001008 if (!ndev)
Grant Likely92744982009-04-25 12:53:39 +00001009 return -ENOMEM;
Joe Perches41de8d42012-01-29 13:47:52 +00001010
Grant Likely92744982009-04-25 12:53:39 +00001011 ether_setup(ndev);
1012 dev_set_drvdata(&op->dev, ndev);
1013 SET_NETDEV_DEV(ndev, &op->dev);
1014 ndev->flags &= ~IFF_MULTICAST; /* clear multicast */
1015 ndev->features = NETIF_F_SG | NETIF_F_FRAGLIST;
1016 ndev->netdev_ops = &temac_netdev_ops;
Ricardo9eac2d42011-10-18 21:35:25 +00001017 ndev->ethtool_ops = &temac_ethtool_ops;
Grant Likely92744982009-04-25 12:53:39 +00001018#if 0
1019 ndev->features |= NETIF_F_IP_CSUM; /* Can checksum TCP/UDP over IPv4. */
1020 ndev->features |= NETIF_F_HW_CSUM; /* Can checksum all the packets. */
1021 ndev->features |= NETIF_F_IPV6_CSUM; /* Can checksum IPV6 TCP/UDP */
1022 ndev->features |= NETIF_F_HIGHDMA; /* Can DMA to high memory. */
1023 ndev->features |= NETIF_F_HW_VLAN_TX; /* Transmit VLAN hw accel */
1024 ndev->features |= NETIF_F_HW_VLAN_RX; /* Receive VLAN hw acceleration */
1025 ndev->features |= NETIF_F_HW_VLAN_FILTER; /* Receive VLAN filtering */
1026 ndev->features |= NETIF_F_VLAN_CHALLENGED; /* cannot handle VLAN pkts */
1027 ndev->features |= NETIF_F_GSO; /* Enable software GSO. */
1028 ndev->features |= NETIF_F_MULTI_QUEUE; /* Has multiple TX/RX queues */
1029 ndev->features |= NETIF_F_LRO; /* large receive offload */
1030#endif
1031
1032 /* setup temac private info structure */
1033 lp = netdev_priv(ndev);
1034 lp->ndev = ndev;
1035 lp->dev = &op->dev;
1036 lp->options = XTE_OPTION_DEFAULTS;
1037 spin_lock_init(&lp->rx_lock);
1038 mutex_init(&lp->indirect_mutex);
1039
1040 /* map device registers */
Grant Likely61c7a082010-04-13 16:12:29 -07001041 lp->regs = of_iomap(op->dev.of_node, 0);
Grant Likely92744982009-04-25 12:53:39 +00001042 if (!lp->regs) {
1043 dev_err(&op->dev, "could not map temac regs.\n");
1044 goto nodev;
1045 }
1046
Brian Hill23ecc4b2010-05-26 20:44:30 -07001047 /* Setup checksum offload, but default to off if not specified */
1048 lp->temac_features = 0;
1049 p = (__be32 *)of_get_property(op->dev.of_node, "xlnx,txcsum", NULL);
1050 if (p && be32_to_cpu(*p)) {
1051 lp->temac_features |= TEMAC_FEATURE_TX_CSUM;
1052 /* Can checksum TCP/UDP over IPv4. */
1053 ndev->features |= NETIF_F_IP_CSUM;
1054 }
1055 p = (__be32 *)of_get_property(op->dev.of_node, "xlnx,rxcsum", NULL);
1056 if (p && be32_to_cpu(*p))
1057 lp->temac_features |= TEMAC_FEATURE_RX_CSUM;
1058
Grant Likely92744982009-04-25 12:53:39 +00001059 /* Find the DMA node, map the DMA registers, and decode the DMA IRQs */
Grant Likely61c7a082010-04-13 16:12:29 -07001060 np = of_parse_phandle(op->dev.of_node, "llink-connected", 0);
Grant Likely92744982009-04-25 12:53:39 +00001061 if (!np) {
1062 dev_err(&op->dev, "could not find DMA node\n");
Denis Kirjanovdfe1e8e2010-07-05 21:44:20 +00001063 goto err_iounmap;
Grant Likely92744982009-04-25 12:53:39 +00001064 }
1065
John Linne44171f2010-04-08 07:08:02 +00001066 /* Setup the DMA register accesses, could be DCR or memory mapped */
1067 if (temac_dcr_setup(lp, op, np)) {
1068
1069 /* no DCR in the device tree, try non-DCR */
1070 lp->sdma_regs = of_iomap(np, 0);
1071 if (lp->sdma_regs) {
1072 lp->dma_in = temac_dma_in32;
1073 lp->dma_out = temac_dma_out32;
1074 dev_dbg(&op->dev, "MEM base: %p\n", lp->sdma_regs);
1075 } else {
1076 dev_err(&op->dev, "unable to map DMA registers\n");
Kulikov Vasiliy7cc36f62010-07-08 23:43:20 -07001077 of_node_put(np);
Denis Kirjanovdfe1e8e2010-07-05 21:44:20 +00001078 goto err_iounmap;
John Linne44171f2010-04-08 07:08:02 +00001079 }
Grant Likely92744982009-04-25 12:53:39 +00001080 }
Grant Likely92744982009-04-25 12:53:39 +00001081
1082 lp->rx_irq = irq_of_parse_and_map(np, 0);
1083 lp->tx_irq = irq_of_parse_and_map(np, 1);
Kulikov Vasiliy7cc36f62010-07-08 23:43:20 -07001084
1085 of_node_put(np); /* Finished with the DMA node; drop the reference */
1086
Michal Simek4e68ea22011-12-21 15:42:50 -05001087 if (!lp->rx_irq || !lp->tx_irq) {
Grant Likely92744982009-04-25 12:53:39 +00001088 dev_err(&op->dev, "could not determine irqs\n");
1089 rc = -ENOMEM;
Denis Kirjanovdfe1e8e2010-07-05 21:44:20 +00001090 goto err_iounmap_2;
Grant Likely92744982009-04-25 12:53:39 +00001091 }
1092
Grant Likely92744982009-04-25 12:53:39 +00001093
1094 /* Retrieve the MAC address */
Grant Likely61c7a082010-04-13 16:12:29 -07001095 addr = of_get_property(op->dev.of_node, "local-mac-address", &size);
Grant Likely92744982009-04-25 12:53:39 +00001096 if ((!addr) || (size != 6)) {
1097 dev_err(&op->dev, "could not find MAC address\n");
1098 rc = -ENODEV;
Denis Kirjanovdfe1e8e2010-07-05 21:44:20 +00001099 goto err_iounmap_2;
Grant Likely92744982009-04-25 12:53:39 +00001100 }
Jiri Pirko04e406d2013-01-01 03:30:19 +00001101 temac_init_mac_address(ndev, (void *)addr);
Grant Likely92744982009-04-25 12:53:39 +00001102
Grant Likely61c7a082010-04-13 16:12:29 -07001103 rc = temac_mdio_setup(lp, op->dev.of_node);
Grant Likely92744982009-04-25 12:53:39 +00001104 if (rc)
1105 dev_warn(&op->dev, "error registering MDIO bus\n");
1106
Grant Likely61c7a082010-04-13 16:12:29 -07001107 lp->phy_node = of_parse_phandle(op->dev.of_node, "phy-handle", 0);
Grant Likely92744982009-04-25 12:53:39 +00001108 if (lp->phy_node)
1109 dev_dbg(lp->dev, "using PHY node %s (%p)\n", np->full_name, np);
1110
1111 /* Add the device attributes */
1112 rc = sysfs_create_group(&lp->dev->kobj, &temac_attr_group);
1113 if (rc) {
1114 dev_err(lp->dev, "Error creating sysfs files\n");
Denis Kirjanovdfe1e8e2010-07-05 21:44:20 +00001115 goto err_iounmap_2;
Grant Likely92744982009-04-25 12:53:39 +00001116 }
1117
1118 rc = register_netdev(lp->ndev);
1119 if (rc) {
1120 dev_err(lp->dev, "register_netdev() error (%i)\n", rc);
1121 goto err_register_ndev;
1122 }
1123
1124 return 0;
1125
1126 err_register_ndev:
1127 sysfs_remove_group(&lp->dev->kobj, &temac_attr_group);
Denis Kirjanovdfe1e8e2010-07-05 21:44:20 +00001128 err_iounmap_2:
1129 if (lp->sdma_regs)
1130 iounmap(lp->sdma_regs);
1131 err_iounmap:
1132 iounmap(lp->regs);
Grant Likely92744982009-04-25 12:53:39 +00001133 nodev:
1134 free_netdev(ndev);
1135 ndev = NULL;
1136 return rc;
1137}
1138
Bill Pemberton06b0e682012-12-03 09:24:08 -05001139static int temac_of_remove(struct platform_device *op)
Grant Likely92744982009-04-25 12:53:39 +00001140{
1141 struct net_device *ndev = dev_get_drvdata(&op->dev);
1142 struct temac_local *lp = netdev_priv(ndev);
1143
1144 temac_mdio_teardown(lp);
1145 unregister_netdev(ndev);
1146 sysfs_remove_group(&lp->dev->kobj, &temac_attr_group);
1147 if (lp->phy_node)
1148 of_node_put(lp->phy_node);
1149 lp->phy_node = NULL;
1150 dev_set_drvdata(&op->dev, NULL);
Denis Kirjanovdfe1e8e2010-07-05 21:44:20 +00001151 iounmap(lp->regs);
1152 if (lp->sdma_regs)
1153 iounmap(lp->sdma_regs);
Grant Likely92744982009-04-25 12:53:39 +00001154 free_netdev(ndev);
1155 return 0;
1156}
1157
Bill Pemberton06b0e682012-12-03 09:24:08 -05001158static struct of_device_id temac_of_match[] = {
Grant Likely92744982009-04-25 12:53:39 +00001159 { .compatible = "xlnx,xps-ll-temac-1.01.b", },
Steven J. Magnanic3b7c122010-02-17 07:14:20 +00001160 { .compatible = "xlnx,xps-ll-temac-2.00.a", },
1161 { .compatible = "xlnx,xps-ll-temac-2.02.a", },
1162 { .compatible = "xlnx,xps-ll-temac-2.03.a", },
Grant Likely92744982009-04-25 12:53:39 +00001163 {},
1164};
1165MODULE_DEVICE_TABLE(of, temac_of_match);
1166
Grant Likely74888762011-02-22 21:05:51 -07001167static struct platform_driver temac_of_driver = {
Grant Likely92744982009-04-25 12:53:39 +00001168 .probe = temac_of_probe,
Bill Pemberton06b0e682012-12-03 09:24:08 -05001169 .remove = temac_of_remove,
Grant Likely92744982009-04-25 12:53:39 +00001170 .driver = {
1171 .owner = THIS_MODULE,
1172 .name = "xilinx_temac",
Grant Likely40182942010-04-13 16:13:02 -07001173 .of_match_table = temac_of_match,
Grant Likely92744982009-04-25 12:53:39 +00001174 },
1175};
1176
Axel Lindb62f682011-11-27 16:44:17 +00001177module_platform_driver(temac_of_driver);
Grant Likely92744982009-04-25 12:53:39 +00001178
1179MODULE_DESCRIPTION("Xilinx LL_TEMAC Ethernet driver");
1180MODULE_AUTHOR("Yoshio Kashiwagi");
1181MODULE_LICENSE("GPL");