blob: 15abd37d70e3a587dc603947303ed9ce262d0027 [file] [log] [blame]
Pantelis Antoniou48257c42005-10-28 16:25:58 -04001/*
2 * Ethernet on Serial Communications Controller (SCC) driver for Motorola MPC8xx and MPC82xx.
3 *
Vitaly Bordug9b8ee8e2007-09-18 20:05:35 +04004 * Copyright (c) 2003 Intracom S.A.
Pantelis Antoniou48257c42005-10-28 16:25:58 -04005 * by Pantelis Antoniou <panto@intracom.gr>
Vitaly Bordug9b8ee8e2007-09-18 20:05:35 +04006 *
7 * 2005 (c) MontaVista Software, Inc.
Pantelis Antoniou48257c42005-10-28 16:25:58 -04008 * Vitaly Bordug <vbordug@ru.mvista.com>
9 *
Vitaly Bordug9b8ee8e2007-09-18 20:05:35 +040010 * This file is licensed under the terms of the GNU General Public License
11 * version 2. This program is licensed "as is" without any warranty of any
Pantelis Antoniou48257c42005-10-28 16:25:58 -040012 * kind, whether express or implied.
13 */
14
Pantelis Antoniou48257c42005-10-28 16:25:58 -040015#include <linux/module.h>
16#include <linux/kernel.h>
17#include <linux/types.h>
Pantelis Antoniou48257c42005-10-28 16:25:58 -040018#include <linux/string.h>
19#include <linux/ptrace.h>
20#include <linux/errno.h>
21#include <linux/ioport.h>
Pantelis Antoniou48257c42005-10-28 16:25:58 -040022#include <linux/interrupt.h>
Pantelis Antoniou48257c42005-10-28 16:25:58 -040023#include <linux/delay.h>
24#include <linux/netdevice.h>
25#include <linux/etherdevice.h>
26#include <linux/skbuff.h>
27#include <linux/spinlock.h>
28#include <linux/mii.h>
29#include <linux/ethtool.h>
30#include <linux/bitops.h>
31#include <linux/fs.h>
Marcelo Tosattif7b99962005-11-09 11:00:16 -020032#include <linux/platform_device.h>
Rob Herring5af50732013-09-17 14:28:33 -050033#include <linux/of_address.h>
34#include <linux/of_irq.h>
Kumar Galab2191082008-06-12 08:32:13 -050035#include <linux/of_platform.h>
Pantelis Antoniou48257c42005-10-28 16:25:58 -040036
37#include <asm/irq.h>
38#include <asm/uaccess.h>
39
40#ifdef CONFIG_8xx
41#include <asm/8xx_immap.h>
42#include <asm/pgtable.h>
Jochen Friedrichb5677d82008-01-25 15:31:42 +010043#include <asm/cpm1.h>
Pantelis Antoniou48257c42005-10-28 16:25:58 -040044#endif
45
46#include "fs_enet.h"
47
48/*************************************************/
Pantelis Antoniou48257c42005-10-28 16:25:58 -040049#if defined(CONFIG_CPM1)
50/* for a 8xx __raw_xxx's are sufficient */
51#define __fs_out32(addr, x) __raw_writel(x, addr)
52#define __fs_out16(addr, x) __raw_writew(x, addr)
53#define __fs_out8(addr, x) __raw_writeb(x, addr)
54#define __fs_in32(addr) __raw_readl(addr)
55#define __fs_in16(addr) __raw_readw(addr)
56#define __fs_in8(addr) __raw_readb(addr)
57#else
58/* for others play it safe */
59#define __fs_out32(addr, x) out_be32(addr, x)
60#define __fs_out16(addr, x) out_be16(addr, x)
61#define __fs_in32(addr) in_be32(addr)
62#define __fs_in16(addr) in_be16(addr)
Heiko Schocherf4f62302008-08-25 20:20:53 -050063#define __fs_out8(addr, x) out_8(addr, x)
64#define __fs_in8(addr) in_8(addr)
Pantelis Antoniou48257c42005-10-28 16:25:58 -040065#endif
66
67/* write, read, set bits, clear bits */
68#define W32(_p, _m, _v) __fs_out32(&(_p)->_m, (_v))
69#define R32(_p, _m) __fs_in32(&(_p)->_m)
70#define S32(_p, _m, _v) W32(_p, _m, R32(_p, _m) | (_v))
71#define C32(_p, _m, _v) W32(_p, _m, R32(_p, _m) & ~(_v))
72
73#define W16(_p, _m, _v) __fs_out16(&(_p)->_m, (_v))
74#define R16(_p, _m) __fs_in16(&(_p)->_m)
75#define S16(_p, _m, _v) W16(_p, _m, R16(_p, _m) | (_v))
76#define C16(_p, _m, _v) W16(_p, _m, R16(_p, _m) & ~(_v))
77
78#define W8(_p, _m, _v) __fs_out8(&(_p)->_m, (_v))
79#define R8(_p, _m) __fs_in8(&(_p)->_m)
80#define S8(_p, _m, _v) W8(_p, _m, R8(_p, _m) | (_v))
81#define C8(_p, _m, _v) W8(_p, _m, R8(_p, _m) & ~(_v))
82
83#define SCC_MAX_MULTICAST_ADDRS 64
84
85/*
Vitaly Bordug9b8ee8e2007-09-18 20:05:35 +040086 * Delay to wait for SCC reset command to complete (in us)
Pantelis Antoniou48257c42005-10-28 16:25:58 -040087 */
88#define SCC_RESET_DELAY 50
Pantelis Antoniou48257c42005-10-28 16:25:58 -040089
90static inline int scc_cr_cmd(struct fs_enet_private *fep, u32 op)
91{
Scott Wood976de6a2007-10-02 10:55:58 -050092 const struct fs_platform_info *fpi = fep->fpi;
Pantelis Antoniou48257c42005-10-28 16:25:58 -040093
Jochen Friedrich362f9b62007-11-26 18:03:40 +010094 return cpm_command(fpi->cp_command, op);
Pantelis Antoniou48257c42005-10-28 16:25:58 -040095}
96
97static int do_pd_setup(struct fs_enet_private *fep)
98{
Grant Likely2dc11582010-08-06 09:25:50 -060099 struct platform_device *ofdev = to_platform_device(fep->dev);
Scott Wood976de6a2007-10-02 10:55:58 -0500100
Thierry Redingf7578492013-09-18 15:24:44 +0200101 fep->interrupt = irq_of_parse_and_map(ofdev->dev.of_node, 0);
Michael Ellerman99c17902016-09-10 19:59:05 +1000102 if (!fep->interrupt)
Scott Wood976de6a2007-10-02 10:55:58 -0500103 return -EINVAL;
104
Grant Likely61c7a082010-04-13 16:12:29 -0700105 fep->scc.sccp = of_iomap(ofdev->dev.of_node, 0);
Scott Wood976de6a2007-10-02 10:55:58 -0500106 if (!fep->scc.sccp)
107 return -EINVAL;
108
Grant Likely61c7a082010-04-13 16:12:29 -0700109 fep->scc.ep = of_iomap(ofdev->dev.of_node, 1);
Scott Wood976de6a2007-10-02 10:55:58 -0500110 if (!fep->scc.ep) {
111 iounmap(fep->scc.sccp);
112 return -EINVAL;
113 }
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400114
115 return 0;
116}
117
Christophe Leroy85727632016-09-09 14:26:21 +0200118#define SCC_NAPI_EVENT_MSK (SCCE_ENET_RXF | SCCE_ENET_RXB | SCCE_ENET_TXB)
119#define SCC_EVENT (SCCE_ENET_RXF | SCCE_ENET_TXB)
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400120#define SCC_ERR_EVENT_MSK (SCCE_ENET_TXE | SCCE_ENET_BSY)
121
122static int setup_data(struct net_device *dev)
123{
124 struct fs_enet_private *fep = netdev_priv(dev);
Scott Wood976de6a2007-10-02 10:55:58 -0500125
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400126 do_pd_setup(fep);
127
128 fep->scc.hthi = 0;
129 fep->scc.htlo = 0;
130
Christophe Leroy85727632016-09-09 14:26:21 +0200131 fep->ev_napi = SCC_NAPI_EVENT_MSK;
132 fep->ev = SCC_EVENT | SCCE_ENET_TXE;
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400133 fep->ev_err = SCC_ERR_EVENT_MSK;
134
135 return 0;
136}
137
138static int allocate_bd(struct net_device *dev)
139{
140 struct fs_enet_private *fep = netdev_priv(dev);
141 const struct fs_platform_info *fpi = fep->fpi;
142
143 fep->ring_mem_addr = cpm_dpalloc((fpi->tx_ring + fpi->rx_ring) *
144 sizeof(cbd_t), 8);
Timur Tabi4c356302007-05-08 14:46:36 -0500145 if (IS_ERR_VALUE(fep->ring_mem_addr))
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400146 return -ENOMEM;
147
Scott Wood31a5bb02007-10-01 14:20:58 -0500148 fep->ring_base = (void __iomem __force*)
149 cpm_dpram_addr(fep->ring_mem_addr);
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400150
151 return 0;
152}
153
154static void free_bd(struct net_device *dev)
155{
156 struct fs_enet_private *fep = netdev_priv(dev);
157
158 if (fep->ring_base)
159 cpm_dpfree(fep->ring_mem_addr);
160}
161
162static void cleanup_data(struct net_device *dev)
163{
164 /* nothing */
165}
166
167static void set_promiscuous_mode(struct net_device *dev)
Vitaly Bordug9b8ee8e2007-09-18 20:05:35 +0400168{
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400169 struct fs_enet_private *fep = netdev_priv(dev);
Scott Wood31a5bb02007-10-01 14:20:58 -0500170 scc_t __iomem *sccp = fep->scc.sccp;
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400171
172 S16(sccp, scc_psmr, SCC_PSMR_PRO);
173}
174
175static void set_multicast_start(struct net_device *dev)
176{
177 struct fs_enet_private *fep = netdev_priv(dev);
Scott Wood31a5bb02007-10-01 14:20:58 -0500178 scc_enet_t __iomem *ep = fep->scc.ep;
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400179
180 W16(ep, sen_gaddr1, 0);
181 W16(ep, sen_gaddr2, 0);
182 W16(ep, sen_gaddr3, 0);
183 W16(ep, sen_gaddr4, 0);
184}
185
186static void set_multicast_one(struct net_device *dev, const u8 * mac)
187{
188 struct fs_enet_private *fep = netdev_priv(dev);
Scott Wood31a5bb02007-10-01 14:20:58 -0500189 scc_enet_t __iomem *ep = fep->scc.ep;
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400190 u16 taddrh, taddrm, taddrl;
191
192 taddrh = ((u16) mac[5] << 8) | mac[4];
193 taddrm = ((u16) mac[3] << 8) | mac[2];
194 taddrl = ((u16) mac[1] << 8) | mac[0];
195
196 W16(ep, sen_taddrh, taddrh);
197 W16(ep, sen_taddrm, taddrm);
198 W16(ep, sen_taddrl, taddrl);
199 scc_cr_cmd(fep, CPM_CR_SET_GADDR);
200}
201
202static void set_multicast_finish(struct net_device *dev)
203{
204 struct fs_enet_private *fep = netdev_priv(dev);
Scott Wood31a5bb02007-10-01 14:20:58 -0500205 scc_t __iomem *sccp = fep->scc.sccp;
206 scc_enet_t __iomem *ep = fep->scc.ep;
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400207
208 /* clear promiscuous always */
209 C16(sccp, scc_psmr, SCC_PSMR_PRO);
210
211 /* if all multi or too many multicasts; just enable all */
212 if ((dev->flags & IFF_ALLMULTI) != 0 ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000213 netdev_mc_count(dev) > SCC_MAX_MULTICAST_ADDRS) {
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400214
215 W16(ep, sen_gaddr1, 0xffff);
216 W16(ep, sen_gaddr2, 0xffff);
217 W16(ep, sen_gaddr3, 0xffff);
218 W16(ep, sen_gaddr4, 0xffff);
219 }
220}
221
222static void set_multicast_list(struct net_device *dev)
223{
Jiri Pirko22bedad32010-04-01 21:22:57 +0000224 struct netdev_hw_addr *ha;
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400225
226 if ((dev->flags & IFF_PROMISC) == 0) {
227 set_multicast_start(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000228 netdev_for_each_mc_addr(ha, dev)
229 set_multicast_one(dev, ha->addr);
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400230 set_multicast_finish(dev);
231 } else
232 set_promiscuous_mode(dev);
233}
234
235/*
236 * This function is called to start or restart the FEC during a link
237 * change. This only happens when switching between half and full
238 * duplex.
239 */
240static void restart(struct net_device *dev)
241{
242 struct fs_enet_private *fep = netdev_priv(dev);
Scott Wood31a5bb02007-10-01 14:20:58 -0500243 scc_t __iomem *sccp = fep->scc.sccp;
244 scc_enet_t __iomem *ep = fep->scc.ep;
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400245 const struct fs_platform_info *fpi = fep->fpi;
246 u16 paddrh, paddrm, paddrl;
247 const unsigned char *mac;
248 int i;
249
250 C32(sccp, scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
251
252 /* clear everything (slow & steady does it) */
253 for (i = 0; i < sizeof(*ep); i++)
Scott Wood31a5bb02007-10-01 14:20:58 -0500254 __fs_out8((u8 __iomem *)ep + i, 0);
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400255
256 /* point to bds */
257 W16(ep, sen_genscc.scc_rbase, fep->ring_mem_addr);
258 W16(ep, sen_genscc.scc_tbase,
259 fep->ring_mem_addr + sizeof(cbd_t) * fpi->rx_ring);
260
261 /* Initialize function code registers for big-endian.
262 */
Heiko Schocherf4f62302008-08-25 20:20:53 -0500263#ifndef CONFIG_NOT_COHERENT_CACHE
264 W8(ep, sen_genscc.scc_rfcr, SCC_EB | SCC_GBL);
265 W8(ep, sen_genscc.scc_tfcr, SCC_EB | SCC_GBL);
266#else
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400267 W8(ep, sen_genscc.scc_rfcr, SCC_EB);
268 W8(ep, sen_genscc.scc_tfcr, SCC_EB);
Heiko Schocherf4f62302008-08-25 20:20:53 -0500269#endif
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400270
271 /* Set maximum bytes per receive buffer.
272 * This appears to be an Ethernet frame size, not the buffer
273 * fragment size. It must be a multiple of four.
274 */
275 W16(ep, sen_genscc.scc_mrblr, 0x5f0);
276
277 /* Set CRC preset and mask.
278 */
279 W32(ep, sen_cpres, 0xffffffff);
280 W32(ep, sen_cmask, 0xdebb20e3);
281
282 W32(ep, sen_crcec, 0); /* CRC Error counter */
283 W32(ep, sen_alec, 0); /* alignment error counter */
284 W32(ep, sen_disfc, 0); /* discard frame counter */
285
286 W16(ep, sen_pads, 0x8888); /* Tx short frame pad character */
287 W16(ep, sen_retlim, 15); /* Retry limit threshold */
288
289 W16(ep, sen_maxflr, 0x5ee); /* maximum frame length register */
290
291 W16(ep, sen_minflr, PKT_MINBUF_SIZE); /* minimum frame length register */
292
293 W16(ep, sen_maxd1, 0x000005f0); /* maximum DMA1 length */
294 W16(ep, sen_maxd2, 0x000005f0); /* maximum DMA2 length */
295
296 /* Clear hash tables.
297 */
298 W16(ep, sen_gaddr1, 0);
299 W16(ep, sen_gaddr2, 0);
300 W16(ep, sen_gaddr3, 0);
301 W16(ep, sen_gaddr4, 0);
302 W16(ep, sen_iaddr1, 0);
303 W16(ep, sen_iaddr2, 0);
304 W16(ep, sen_iaddr3, 0);
305 W16(ep, sen_iaddr4, 0);
306
Vitaly Bordug9b8ee8e2007-09-18 20:05:35 +0400307 /* set address
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400308 */
309 mac = dev->dev_addr;
310 paddrh = ((u16) mac[5] << 8) | mac[4];
311 paddrm = ((u16) mac[3] << 8) | mac[2];
312 paddrl = ((u16) mac[1] << 8) | mac[0];
313
314 W16(ep, sen_paddrh, paddrh);
315 W16(ep, sen_paddrm, paddrm);
316 W16(ep, sen_paddrl, paddrl);
317
318 W16(ep, sen_pper, 0);
319 W16(ep, sen_taddrl, 0);
320 W16(ep, sen_taddrm, 0);
321 W16(ep, sen_taddrh, 0);
322
323 fs_init_bds(dev);
324
325 scc_cr_cmd(fep, CPM_CR_INIT_TRX);
326
327 W16(sccp, scc_scce, 0xffff);
328
Vitaly Bordug9b8ee8e2007-09-18 20:05:35 +0400329 /* Enable interrupts we wish to service.
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400330 */
331 W16(sccp, scc_sccm, SCCE_ENET_TXE | SCCE_ENET_RXF | SCCE_ENET_TXB);
332
333 /* Set GSMR_H to enable all normal operating modes.
334 * Set GSMR_L to enable Ethernet to MC68160.
335 */
336 W32(sccp, scc_gsmrh, 0);
337 W32(sccp, scc_gsmrl,
338 SCC_GSMRL_TCI | SCC_GSMRL_TPL_48 | SCC_GSMRL_TPP_10 |
339 SCC_GSMRL_MODE_ENET);
340
341 /* Set sync/delimiters.
342 */
343 W16(sccp, scc_dsr, 0xd555);
344
345 /* Set processing mode. Use Ethernet CRC, catch broadcast, and
346 * start frame search 22 bit times after RENA.
347 */
348 W16(sccp, scc_psmr, SCC_PSMR_ENCRC | SCC_PSMR_NIB22);
349
350 /* Set full duplex mode if needed */
Philippe Reynesc1c511a2016-05-16 16:52:36 +0200351 if (dev->phydev->duplex)
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400352 S16(sccp, scc_psmr, SCC_PSMR_LPB | SCC_PSMR_FDE);
353
LEROY Christophe8751b122014-10-22 09:05:47 +0200354 /* Restore multicast and promiscuous settings */
355 set_multicast_list(dev);
356
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400357 S32(sccp, scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
358}
359
Vitaly Bordug9b8ee8e2007-09-18 20:05:35 +0400360static void stop(struct net_device *dev)
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400361{
362 struct fs_enet_private *fep = netdev_priv(dev);
Scott Wood31a5bb02007-10-01 14:20:58 -0500363 scc_t __iomem *sccp = fep->scc.sccp;
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400364 int i;
365
366 for (i = 0; (R16(sccp, scc_sccm) == 0) && i < SCC_RESET_DELAY; i++)
367 udelay(1);
368
369 if (i == SCC_RESET_DELAY)
Anatolij Gustschinfcb6a1c2010-02-26 12:00:47 +0000370 dev_warn(fep->dev, "SCC timeout on graceful transmit stop\n");
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400371
372 W16(sccp, scc_sccm, 0);
373 C32(sccp, scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
374
375 fs_cleanup_bds(dev);
376}
377
Christophe Leroy85727632016-09-09 14:26:21 +0200378static void napi_clear_event_fs(struct net_device *dev)
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400379{
380 struct fs_enet_private *fep = netdev_priv(dev);
Scott Wood31a5bb02007-10-01 14:20:58 -0500381 scc_t __iomem *sccp = fep->scc.sccp;
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400382
Christophe Leroy85727632016-09-09 14:26:21 +0200383 W16(sccp, scc_scce, SCC_NAPI_EVENT_MSK);
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400384}
385
Christophe Leroy85727632016-09-09 14:26:21 +0200386static void napi_enable_fs(struct net_device *dev)
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400387{
388 struct fs_enet_private *fep = netdev_priv(dev);
Scott Wood31a5bb02007-10-01 14:20:58 -0500389 scc_t __iomem *sccp = fep->scc.sccp;
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400390
Christophe Leroy85727632016-09-09 14:26:21 +0200391 S16(sccp, scc_sccm, SCC_NAPI_EVENT_MSK);
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400392}
393
Christophe Leroy85727632016-09-09 14:26:21 +0200394static void napi_disable_fs(struct net_device *dev)
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400395{
396 struct fs_enet_private *fep = netdev_priv(dev);
Scott Wood31a5bb02007-10-01 14:20:58 -0500397 scc_t __iomem *sccp = fep->scc.sccp;
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400398
Christophe Leroy85727632016-09-09 14:26:21 +0200399 C16(sccp, scc_sccm, SCC_NAPI_EVENT_MSK);
LEROY Christophed43a3962014-10-07 15:05:02 +0200400}
401
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400402static void rx_bd_done(struct net_device *dev)
403{
404 /* nothing */
405}
406
407static void tx_kickstart(struct net_device *dev)
408{
409 /* nothing */
410}
411
412static u32 get_int_events(struct net_device *dev)
413{
414 struct fs_enet_private *fep = netdev_priv(dev);
Scott Wood31a5bb02007-10-01 14:20:58 -0500415 scc_t __iomem *sccp = fep->scc.sccp;
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400416
417 return (u32) R16(sccp, scc_scce);
418}
419
420static void clear_int_events(struct net_device *dev, u32 int_events)
421{
422 struct fs_enet_private *fep = netdev_priv(dev);
Scott Wood31a5bb02007-10-01 14:20:58 -0500423 scc_t __iomem *sccp = fep->scc.sccp;
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400424
425 W16(sccp, scc_scce, int_events & 0xffff);
426}
427
428static void ev_error(struct net_device *dev, u32 int_events)
429{
Anatolij Gustschinfcb6a1c2010-02-26 12:00:47 +0000430 struct fs_enet_private *fep = netdev_priv(dev);
431
432 dev_warn(fep->dev, "SCC ERROR(s) 0x%x\n", int_events);
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400433}
434
435static int get_regs(struct net_device *dev, void *p, int *sizep)
436{
437 struct fs_enet_private *fep = netdev_priv(dev);
438
Scott Wood31a5bb02007-10-01 14:20:58 -0500439 if (*sizep < sizeof(scc_t) + sizeof(scc_enet_t __iomem *))
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400440 return -EINVAL;
441
442 memcpy_fromio(p, fep->scc.sccp, sizeof(scc_t));
443 p = (char *)p + sizeof(scc_t);
444
Scott Wood31a5bb02007-10-01 14:20:58 -0500445 memcpy_fromio(p, fep->scc.ep, sizeof(scc_enet_t __iomem *));
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400446
447 return 0;
448}
449
450static int get_regs_len(struct net_device *dev)
451{
Scott Wood31a5bb02007-10-01 14:20:58 -0500452 return sizeof(scc_t) + sizeof(scc_enet_t __iomem *);
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400453}
454
455static void tx_restart(struct net_device *dev)
456{
457 struct fs_enet_private *fep = netdev_priv(dev);
458
459 scc_cr_cmd(fep, CPM_CR_RESTART_TX);
460}
461
Vitaly Bordug5b4b8452006-08-14 23:00:30 -0700462
463
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400464/*************************************************************************/
465
466const struct fs_ops fs_scc_ops = {
467 .setup_data = setup_data,
468 .cleanup_data = cleanup_data,
469 .set_multicast_list = set_multicast_list,
470 .restart = restart,
471 .stop = stop,
Christophe Leroy85727632016-09-09 14:26:21 +0200472 .napi_clear_event = napi_clear_event_fs,
473 .napi_enable = napi_enable_fs,
474 .napi_disable = napi_disable_fs,
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400475 .rx_bd_done = rx_bd_done,
476 .tx_kickstart = tx_kickstart,
477 .get_int_events = get_int_events,
478 .clear_int_events = clear_int_events,
479 .ev_error = ev_error,
480 .get_regs = get_regs,
481 .get_regs_len = get_regs_len,
482 .tx_restart = tx_restart,
483 .allocate_bd = allocate_bd,
484 .free_bd = free_bd,
485};