blob: 4bb967bc879e33dd2da16dad864159d671316719 [file] [log] [blame]
Greg Ungerer064bff12012-07-04 13:50:00 +00001/*
2 * Support for ColdFire CPU based boards using a NS8390 Ethernet device.
3 *
4 * Derived from the many other 8390 drivers.
5 *
6 * (C) Copyright 2012, Greg Ungerer <gerg@uclinux.org>
7 *
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file COPYING in the main directory of the Linux
10 * distribution for more details.
11 */
12
13#include <linux/module.h>
14#include <linux/kernel.h>
15#include <linux/errno.h>
Greg Ungerer064bff12012-07-04 13:50:00 +000016#include <linux/platform_device.h>
17#include <linux/netdevice.h>
18#include <linux/etherdevice.h>
19#include <linux/jiffies.h>
20#include <linux/io.h>
21#include <asm/mcf8390.h>
22
23static const char version[] =
24 "mcf8390.c: (15-06-2012) Greg Ungerer <gerg@uclinux.org>";
25
26#define NE_CMD 0x00
27#define NE_DATAPORT 0x10 /* NatSemi-defined port window offset */
28#define NE_RESET 0x1f /* Issue a read to reset ,a write to clear */
29#define NE_EN0_ISR 0x07
30#define NE_EN0_DCFG 0x0e
31#define NE_EN0_RSARLO 0x08
32#define NE_EN0_RSARHI 0x09
33#define NE_EN0_RCNTLO 0x0a
34#define NE_EN0_RXCR 0x0c
35#define NE_EN0_TXCR 0x0d
36#define NE_EN0_RCNTHI 0x0b
37#define NE_EN0_IMR 0x0f
38
39#define NESM_START_PG 0x40 /* First page of TX buffer */
40#define NESM_STOP_PG 0x80 /* Last page +1 of RX ring */
Matthew Whiteheadc45f8122013-12-11 17:00:59 -050041static u32 mcf8390_msg_enable;
Greg Ungerer064bff12012-07-04 13:50:00 +000042
43#ifdef NE2000_ODDOFFSET
44/*
45 * A lot of the ColdFire boards use a separate address region for odd offset
46 * register addresses. The following functions convert and map as required.
47 * Note that the data port accesses are treated a little differently, and
48 * always accessed via the insX/outsX functions.
49 */
50static inline u32 NE_PTR(u32 addr)
51{
52 if (addr & 1)
53 return addr - 1 + NE2000_ODDOFFSET;
54 return addr;
55}
56
57static inline u32 NE_DATA_PTR(u32 addr)
58{
59 return addr;
60}
61
62void ei_outb(u32 val, u32 addr)
63{
64 NE2000_BYTE *rp;
65
66 rp = (NE2000_BYTE *) NE_PTR(addr);
67 *rp = RSWAP(val);
68}
69
70#define ei_inb ei_inb
71u8 ei_inb(u32 addr)
72{
73 NE2000_BYTE *rp, val;
74
75 rp = (NE2000_BYTE *) NE_PTR(addr);
76 val = *rp;
77 return (u8) (RSWAP(val) & 0xff);
78}
79
80void ei_insb(u32 addr, void *vbuf, int len)
81{
82 NE2000_BYTE *rp, val;
83 u8 *buf;
84
85 buf = (u8 *) vbuf;
86 rp = (NE2000_BYTE *) NE_DATA_PTR(addr);
87 for (; (len > 0); len--) {
88 val = *rp;
89 *buf++ = RSWAP(val);
90 }
91}
92
93void ei_insw(u32 addr, void *vbuf, int len)
94{
95 volatile u16 *rp;
96 u16 w, *buf;
97
98 buf = (u16 *) vbuf;
99 rp = (volatile u16 *) NE_DATA_PTR(addr);
100 for (; (len > 0); len--) {
101 w = *rp;
102 *buf++ = BSWAP(w);
103 }
104}
105
106void ei_outsb(u32 addr, const void *vbuf, int len)
107{
108 NE2000_BYTE *rp, val;
109 u8 *buf;
110
111 buf = (u8 *) vbuf;
112 rp = (NE2000_BYTE *) NE_DATA_PTR(addr);
113 for (; (len > 0); len--) {
114 val = *buf++;
115 *rp = RSWAP(val);
116 }
117}
118
119void ei_outsw(u32 addr, const void *vbuf, int len)
120{
121 volatile u16 *rp;
122 u16 w, *buf;
123
124 buf = (u16 *) vbuf;
125 rp = (volatile u16 *) NE_DATA_PTR(addr);
126 for (; (len > 0); len--) {
127 w = *buf++;
128 *rp = BSWAP(w);
129 }
130}
131
132#else /* !NE2000_ODDOFFSET */
133
134#define ei_inb inb
135#define ei_outb outb
136#define ei_insb insb
137#define ei_insw insw
138#define ei_outsb outsb
139#define ei_outsw outsw
140
141#endif /* !NE2000_ODDOFFSET */
142
143#define ei_inb_p ei_inb
144#define ei_outb_p ei_outb
145
146#include "lib8390.c"
147
148/*
149 * Hard reset the card. This used to pause for the same period that a
150 * 8390 reset command required, but that shouldn't be necessary.
151 */
152static void mcf8390_reset_8390(struct net_device *dev)
153{
154 unsigned long reset_start_time = jiffies;
155 u32 addr = dev->base_addr;
Matthew Whiteheadc45f8122013-12-11 17:00:59 -0500156 struct ei_device *ei_local = netdev_priv(dev);
Greg Ungerer064bff12012-07-04 13:50:00 +0000157
Matthew Whiteheadc45f8122013-12-11 17:00:59 -0500158 netif_dbg(ei_local, hw, dev, "resetting the 8390 t=%ld...\n", jiffies);
Greg Ungerer064bff12012-07-04 13:50:00 +0000159
160 ei_outb(ei_inb(addr + NE_RESET), addr + NE_RESET);
161
162 ei_status.txing = 0;
163 ei_status.dmaing = 0;
164
165 /* This check _should_not_ be necessary, omit eventually. */
166 while ((ei_inb(addr + NE_EN0_ISR) & ENISR_RESET) == 0) {
167 if (time_after(jiffies, reset_start_time + 2 * HZ / 100)) {
168 netdev_warn(dev, "%s: did not complete\n", __func__);
169 break;
170 }
171 }
172
173 ei_outb(ENISR_RESET, addr + NE_EN0_ISR);
174}
175
176/*
177 * This *shouldn't* happen.
178 * If it does, it's the last thing you'll see
179 */
180static void mcf8390_dmaing_err(const char *func, struct net_device *dev,
181 struct ei_device *ei_local)
182{
183 netdev_err(dev, "%s: DMAing conflict [DMAstat:%d][irqlock:%d]\n",
184 func, ei_local->dmaing, ei_local->irqlock);
185}
186
187/*
188 * Grab the 8390 specific header. Similar to the block_input routine, but
189 * we don't need to be concerned with ring wrap as the header will be at
190 * the start of a page, so we optimize accordingly.
191 */
192static void mcf8390_get_8390_hdr(struct net_device *dev,
193 struct e8390_pkt_hdr *hdr, int ring_page)
194{
195 struct ei_device *ei_local = netdev_priv(dev);
196 u32 addr = dev->base_addr;
197
198 if (ei_local->dmaing) {
199 mcf8390_dmaing_err(__func__, dev, ei_local);
200 return;
201 }
202
203 ei_local->dmaing |= 0x01;
204 ei_outb(E8390_NODMA + E8390_PAGE0 + E8390_START, addr + NE_CMD);
205 ei_outb(ENISR_RDC, addr + NE_EN0_ISR);
206 ei_outb(sizeof(struct e8390_pkt_hdr), addr + NE_EN0_RCNTLO);
207 ei_outb(0, addr + NE_EN0_RCNTHI);
208 ei_outb(0, addr + NE_EN0_RSARLO); /* On page boundary */
209 ei_outb(ring_page, addr + NE_EN0_RSARHI);
210 ei_outb(E8390_RREAD + E8390_START, addr + NE_CMD);
211
212 ei_insw(addr + NE_DATAPORT, hdr, sizeof(struct e8390_pkt_hdr) >> 1);
213
214 outb(ENISR_RDC, addr + NE_EN0_ISR); /* Ack intr */
215 ei_local->dmaing &= ~0x01;
216
217 hdr->count = cpu_to_le16(hdr->count);
218}
219
220/*
221 * Block input and output, similar to the Crynwr packet driver.
222 * If you are porting to a new ethercard, look at the packet driver source
223 * for hints. The NEx000 doesn't share the on-board packet memory --
224 * you have to put the packet out through the "remote DMA" dataport
225 * using z_writeb.
226 */
227static void mcf8390_block_input(struct net_device *dev, int count,
228 struct sk_buff *skb, int ring_offset)
229{
230 struct ei_device *ei_local = netdev_priv(dev);
231 u32 addr = dev->base_addr;
232 char *buf = skb->data;
233
234 if (ei_local->dmaing) {
235 mcf8390_dmaing_err(__func__, dev, ei_local);
236 return;
237 }
238
239 ei_local->dmaing |= 0x01;
240 ei_outb(E8390_NODMA + E8390_PAGE0 + E8390_START, addr + NE_CMD);
241 ei_outb(ENISR_RDC, addr + NE_EN0_ISR);
242 ei_outb(count & 0xff, addr + NE_EN0_RCNTLO);
243 ei_outb(count >> 8, addr + NE_EN0_RCNTHI);
244 ei_outb(ring_offset & 0xff, addr + NE_EN0_RSARLO);
245 ei_outb(ring_offset >> 8, addr + NE_EN0_RSARHI);
246 ei_outb(E8390_RREAD + E8390_START, addr + NE_CMD);
247
248 ei_insw(addr + NE_DATAPORT, buf, count >> 1);
249 if (count & 1)
250 buf[count - 1] = ei_inb(addr + NE_DATAPORT);
251
252 ei_outb(ENISR_RDC, addr + NE_EN0_ISR); /* Ack intr */
253 ei_local->dmaing &= ~0x01;
254}
255
256static void mcf8390_block_output(struct net_device *dev, int count,
257 const unsigned char *buf,
258 const int start_page)
259{
260 struct ei_device *ei_local = netdev_priv(dev);
261 u32 addr = dev->base_addr;
262 unsigned long dma_start;
263
264 /* Make sure we transfer all bytes if 16bit IO writes */
265 if (count & 0x1)
266 count++;
267
268 if (ei_local->dmaing) {
269 mcf8390_dmaing_err(__func__, dev, ei_local);
270 return;
271 }
272
273 ei_local->dmaing |= 0x01;
274 /* We should already be in page 0, but to be safe... */
275 ei_outb(E8390_PAGE0 + E8390_START + E8390_NODMA, addr + NE_CMD);
276
277 ei_outb(ENISR_RDC, addr + NE_EN0_ISR);
278
279 /* Now the normal output. */
280 ei_outb(count & 0xff, addr + NE_EN0_RCNTLO);
281 ei_outb(count >> 8, addr + NE_EN0_RCNTHI);
282 ei_outb(0x00, addr + NE_EN0_RSARLO);
283 ei_outb(start_page, addr + NE_EN0_RSARHI);
284 ei_outb(E8390_RWRITE + E8390_START, addr + NE_CMD);
285
286 ei_outsw(addr + NE_DATAPORT, buf, count >> 1);
287
288 dma_start = jiffies;
289 while ((ei_inb(addr + NE_EN0_ISR) & ENISR_RDC) == 0) {
290 if (time_after(jiffies, dma_start + 2 * HZ / 100)) { /* 20ms */
Matthew Whiteheadc45f8122013-12-11 17:00:59 -0500291 netdev_warn(dev, "timeout waiting for Tx RDC\n");
Greg Ungerer064bff12012-07-04 13:50:00 +0000292 mcf8390_reset_8390(dev);
293 __NS8390_init(dev, 1);
294 break;
295 }
296 }
297
298 ei_outb(ENISR_RDC, addr + NE_EN0_ISR); /* Ack intr */
299 ei_local->dmaing &= ~0x01;
300}
301
302static const struct net_device_ops mcf8390_netdev_ops = {
303 .ndo_open = __ei_open,
304 .ndo_stop = __ei_close,
305 .ndo_start_xmit = __ei_start_xmit,
306 .ndo_tx_timeout = __ei_tx_timeout,
307 .ndo_get_stats = __ei_get_stats,
308 .ndo_set_rx_mode = __ei_set_multicast_list,
309 .ndo_validate_addr = eth_validate_addr,
310 .ndo_set_mac_address = eth_mac_addr,
Greg Ungerer064bff12012-07-04 13:50:00 +0000311#ifdef CONFIG_NET_POLL_CONTROLLER
312 .ndo_poll_controller = __ei_poll,
313#endif
314};
315
316static int mcf8390_init(struct net_device *dev)
317{
318 static u32 offsets[] = {
319 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
320 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
321 };
322 struct ei_device *ei_local = netdev_priv(dev);
323 unsigned char SA_prom[32];
324 u32 addr = dev->base_addr;
325 int start_page, stop_page;
326 int i, ret;
327
328 mcf8390_reset_8390(dev);
329
330 /*
331 * Read the 16 bytes of station address PROM.
332 * We must first initialize registers,
333 * similar to NS8390_init(eifdev, 0).
334 * We can't reliably read the SAPROM address without this.
335 * (I learned the hard way!).
336 */
337 {
338 static const struct {
339 u32 value;
340 u32 offset;
341 } program_seq[] = {
342 {E8390_NODMA + E8390_PAGE0 + E8390_STOP, NE_CMD},
343 /* Select page 0 */
344 {0x48, NE_EN0_DCFG}, /* 0x48: Set byte-wide access */
345 {0x00, NE_EN0_RCNTLO}, /* Clear the count regs */
346 {0x00, NE_EN0_RCNTHI},
347 {0x00, NE_EN0_IMR}, /* Mask completion irq */
348 {0xFF, NE_EN0_ISR},
349 {E8390_RXOFF, NE_EN0_RXCR}, /* 0x20 Set to monitor */
350 {E8390_TXOFF, NE_EN0_TXCR}, /* 0x02 and loopback mode */
351 {32, NE_EN0_RCNTLO},
352 {0x00, NE_EN0_RCNTHI},
353 {0x00, NE_EN0_RSARLO}, /* DMA starting at 0x0000 */
354 {0x00, NE_EN0_RSARHI},
355 {E8390_RREAD + E8390_START, NE_CMD},
356 };
357 for (i = 0; i < ARRAY_SIZE(program_seq); i++) {
358 ei_outb(program_seq[i].value,
359 addr + program_seq[i].offset);
360 }
361 }
362
363 for (i = 0; i < 16; i++) {
364 SA_prom[i] = ei_inb(addr + NE_DATAPORT);
365 ei_inb(addr + NE_DATAPORT);
366 }
367
368 /* We must set the 8390 for word mode. */
369 ei_outb(0x49, addr + NE_EN0_DCFG);
370 start_page = NESM_START_PG;
371 stop_page = NESM_STOP_PG;
372
373 /* Install the Interrupt handler */
374 ret = request_irq(dev->irq, __ei_interrupt, 0, dev->name, dev);
375 if (ret)
376 return ret;
377
378 for (i = 0; i < ETH_ALEN; i++)
379 dev->dev_addr[i] = SA_prom[i];
380
381 netdev_dbg(dev, "Found ethernet address: %pM\n", dev->dev_addr);
382
383 ei_local->name = "mcf8390";
384 ei_local->tx_start_page = start_page;
385 ei_local->stop_page = stop_page;
386 ei_local->word16 = 1;
387 ei_local->rx_start_page = start_page + TX_PAGES;
388 ei_local->reset_8390 = mcf8390_reset_8390;
389 ei_local->block_input = mcf8390_block_input;
390 ei_local->block_output = mcf8390_block_output;
391 ei_local->get_8390_hdr = mcf8390_get_8390_hdr;
392 ei_local->reg_offset = offsets;
393
394 dev->netdev_ops = &mcf8390_netdev_ops;
395 __NS8390_init(dev, 0);
396 ret = register_netdev(dev);
397 if (ret) {
398 free_irq(dev->irq, dev);
399 return ret;
400 }
401
402 netdev_info(dev, "addr=0x%08x irq=%d, Ethernet Address %pM\n",
403 addr, dev->irq, dev->dev_addr);
404 return 0;
405}
406
407static int mcf8390_probe(struct platform_device *pdev)
408{
409 struct net_device *dev;
410 struct ei_device *ei_local;
411 struct resource *mem, *irq;
412 resource_size_t msize;
413 int ret;
414
415 irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
416 if (irq == NULL) {
417 dev_err(&pdev->dev, "no IRQ specified?\n");
418 return -ENXIO;
419 }
420
421 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
422 if (mem == NULL) {
423 dev_err(&pdev->dev, "no memory address specified?\n");
424 return -ENXIO;
425 }
426 msize = resource_size(mem);
427 if (!request_mem_region(mem->start, msize, pdev->name))
428 return -EBUSY;
429
430 dev = ____alloc_ei_netdev(0);
431 if (dev == NULL) {
432 release_mem_region(mem->start, msize);
433 return -ENOMEM;
434 }
435
436 SET_NETDEV_DEV(dev, &pdev->dev);
437 platform_set_drvdata(pdev, dev);
438 ei_local = netdev_priv(dev);
Matthew Whiteheadc45f8122013-12-11 17:00:59 -0500439 ei_local->msg_enable = mcf8390_msg_enable;
Greg Ungerer064bff12012-07-04 13:50:00 +0000440
441 dev->irq = irq->start;
442 dev->base_addr = mem->start;
443
444 ret = mcf8390_init(dev);
445 if (ret) {
446 release_mem_region(mem->start, msize);
447 free_netdev(dev);
448 return ret;
449 }
450 return 0;
451}
452
453static int mcf8390_remove(struct platform_device *pdev)
454{
455 struct net_device *dev = platform_get_drvdata(pdev);
456 struct resource *mem;
457
458 unregister_netdev(dev);
459 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
460 if (mem)
461 release_mem_region(mem->start, resource_size(mem));
462 free_netdev(dev);
463 return 0;
464}
465
466static struct platform_driver mcf8390_drv = {
467 .driver = {
468 .name = "mcf8390",
Greg Ungerer064bff12012-07-04 13:50:00 +0000469 },
470 .probe = mcf8390_probe,
471 .remove = mcf8390_remove,
472};
473
474module_platform_driver(mcf8390_drv);
475
476MODULE_DESCRIPTION("MCF8390 ColdFire NS8390 driver");
477MODULE_AUTHOR("Greg Ungerer <gerg@uclinux.org>");
478MODULE_LICENSE("GPL");
479MODULE_ALIAS("platform:mcf8390");