1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61#include <common.h>
62#include <command.h>
63#include <net.h>
64#include <asm/io.h>
65#include <dm9000.h>
66
67#include "dm9000x.h"
68
69
70
71
72
73#ifdef CONFIG_DM9000_DEBUG
74#define DM9000_DBG(fmt,args...) printf(fmt, ##args)
75#define DM9000_DMP_PACKET(func,packet,length) \
76 do { \
77 int i; \
78 printf("%s: length: %d\n", func, length); \
79 for (i = 0; i < length; i++) { \
80 if (i % 8 == 0) \
81 printf("\n%s: %02x: ", func, i); \
82 printf("%02x ", ((unsigned char *) packet)[i]); \
83 } printf("\n"); \
84 } while(0)
85#else
86#define DM9000_DBG(fmt,args...)
87#define DM9000_DMP_PACKET(func,packet,length)
88#endif
89
90
91typedef struct board_info {
92 u32 runt_length_counter;
93 u32 long_length_counter;
94 u32 reset_counter;
95 u32 reset_tx_timeout;
96 u32 reset_rx_status;
97 u16 tx_pkt_cnt;
98 u16 queue_start_addr;
99 u16 dbug_cnt;
100 u8 phy_addr;
101 u8 device_wait_reset;
102 unsigned char srom[128];
103 void (*outblk)(volatile void *data_ptr, int count);
104 void (*inblk)(void *data_ptr, int count);
105 void (*rx_status)(u16 *RxStatus, u16 *RxLen);
106 struct eth_device netdev;
107} board_info_t;
108static board_info_t dm9000_info;
109
110
111
112static int dm9000_probe(void);
113static u16 dm9000_phy_read(int);
114static void dm9000_phy_write(int, u16);
115static u8 DM9000_ior(int);
116static void DM9000_iow(int reg, u8 value);
117
118
119#ifndef CONFIG_DM9000_BYTE_SWAPPED
120#define DM9000_outb(d,r) writeb(d, (volatile u8 *)(r))
121#define DM9000_outw(d,r) writew(d, (volatile u16 *)(r))
122#define DM9000_outl(d,r) writel(d, (volatile u32 *)(r))
123#define DM9000_inb(r) readb((volatile u8 *)(r))
124#define DM9000_inw(r) readw((volatile u16 *)(r))
125#define DM9000_inl(r) readl((volatile u32 *)(r))
126#else
127#define DM9000_outb(d, r) __raw_writeb(d, r)
128#define DM9000_outw(d, r) __raw_writew(d, r)
129#define DM9000_outl(d, r) __raw_writel(d, r)
130#define DM9000_inb(r) __raw_readb(r)
131#define DM9000_inw(r) __raw_readw(r)
132#define DM9000_inl(r) __raw_readl(r)
133#endif
134
135#ifdef CONFIG_DM9000_DEBUG
136static void
137dump_regs(void)
138{
139 DM9000_DBG("\n");
140 DM9000_DBG("NCR (0x00): %02x\n", DM9000_ior(0));
141 DM9000_DBG("NSR (0x01): %02x\n", DM9000_ior(1));
142 DM9000_DBG("TCR (0x02): %02x\n", DM9000_ior(2));
143 DM9000_DBG("TSRI (0x03): %02x\n", DM9000_ior(3));
144 DM9000_DBG("TSRII (0x04): %02x\n", DM9000_ior(4));
145 DM9000_DBG("RCR (0x05): %02x\n", DM9000_ior(5));
146 DM9000_DBG("RSR (0x06): %02x\n", DM9000_ior(6));
147 DM9000_DBG("ISR (0xFE): %02x\n", DM9000_ior(DM9000_ISR));
148 DM9000_DBG("\n");
149}
150#endif
151
152static void dm9000_outblk_8bit(volatile void *data_ptr, int count)
153{
154 int i;
155 for (i = 0; i < count; i++)
156 DM9000_outb((((u8 *) data_ptr)[i] & 0xff), DM9000_DATA);
157}
158
159static void dm9000_outblk_16bit(volatile void *data_ptr, int count)
160{
161 int i;
162 u32 tmplen = (count + 1) / 2;
163
164 for (i = 0; i < tmplen; i++)
165 DM9000_outw(((u16 *) data_ptr)[i], DM9000_DATA);
166}
167static void dm9000_outblk_32bit(volatile void *data_ptr, int count)
168{
169 int i;
170 u32 tmplen = (count + 3) / 4;
171
172 for (i = 0; i < tmplen; i++)
173 DM9000_outl(((u32 *) data_ptr)[i], DM9000_DATA);
174}
175
176static void dm9000_inblk_8bit(void *data_ptr, int count)
177{
178 int i;
179 for (i = 0; i < count; i++)
180 ((u8 *) data_ptr)[i] = DM9000_inb(DM9000_DATA);
181}
182
183static void dm9000_inblk_16bit(void *data_ptr, int count)
184{
185 int i;
186 u32 tmplen = (count + 1) / 2;
187
188 for (i = 0; i < tmplen; i++)
189 ((u16 *) data_ptr)[i] = DM9000_inw(DM9000_DATA);
190}
191static void dm9000_inblk_32bit(void *data_ptr, int count)
192{
193 int i;
194 u32 tmplen = (count + 3) / 4;
195
196 for (i = 0; i < tmplen; i++)
197 ((u32 *) data_ptr)[i] = DM9000_inl(DM9000_DATA);
198}
199
200static void dm9000_rx_status_32bit(u16 *RxStatus, u16 *RxLen)
201{
202 u32 tmpdata;
203
204 DM9000_outb(DM9000_MRCMD, DM9000_IO);
205
206 tmpdata = DM9000_inl(DM9000_DATA);
207 *RxStatus = __le16_to_cpu(tmpdata);
208 *RxLen = __le16_to_cpu(tmpdata >> 16);
209}
210
211static void dm9000_rx_status_16bit(u16 *RxStatus, u16 *RxLen)
212{
213 DM9000_outb(DM9000_MRCMD, DM9000_IO);
214
215 *RxStatus = __le16_to_cpu(DM9000_inw(DM9000_DATA));
216 *RxLen = __le16_to_cpu(DM9000_inw(DM9000_DATA));
217}
218
219static void dm9000_rx_status_8bit(u16 *RxStatus, u16 *RxLen)
220{
221 DM9000_outb(DM9000_MRCMD, DM9000_IO);
222
223 *RxStatus =
224 __le16_to_cpu(DM9000_inb(DM9000_DATA) +
225 (DM9000_inb(DM9000_DATA) << 8));
226 *RxLen =
227 __le16_to_cpu(DM9000_inb(DM9000_DATA) +
228 (DM9000_inb(DM9000_DATA) << 8));
229}
230
231
232
233
234int
235dm9000_probe(void)
236{
237 u32 id_val;
238 id_val = DM9000_ior(DM9000_VIDL);
239 id_val |= DM9000_ior(DM9000_VIDH) << 8;
240 id_val |= DM9000_ior(DM9000_PIDL) << 16;
241 id_val |= DM9000_ior(DM9000_PIDH) << 24;
242 if (id_val == DM9000_ID) {
243 printf("dm9000 i/o: 0x%x, id: 0x%x \n", CONFIG_DM9000_BASE,
244 id_val);
245 return 0;
246 } else {
247 printf("dm9000 not found at 0x%08x id: 0x%08x\n",
248 CONFIG_DM9000_BASE, id_val);
249 return -1;
250 }
251}
252
253
254static void
255dm9000_reset(void)
256{
257 DM9000_DBG("resetting DM9000\n");
258
259
260
261
262
263 DM9000_iow(DM9000_GPCR, GPCR_GPIO0_OUT);
264
265 DM9000_iow(DM9000_GPR, 0);
266
267 DM9000_iow(DM9000_NCR, (NCR_LBK_INT_MAC | NCR_RST));
268
269 do {
270 DM9000_DBG("resetting the DM9000, 1st reset\n");
271 udelay(25);
272 } while (DM9000_ior(DM9000_NCR) & 1);
273
274 DM9000_iow(DM9000_NCR, 0);
275 DM9000_iow(DM9000_NCR, (NCR_LBK_INT_MAC | NCR_RST));
276
277 do {
278 DM9000_DBG("resetting the DM9000, 2nd reset\n");
279 udelay(25);
280 } while (DM9000_ior(DM9000_NCR) & 1);
281
282
283 if ((DM9000_ior(DM9000_PIDL) != 0x0) ||
284 (DM9000_ior(DM9000_PIDH) != 0x90))
285 printf("ERROR: resetting DM9000 -> not responding\n");
286}
287
288
289
290static int dm9000_init(struct eth_device *dev, bd_t *bd)
291{
292 int i, oft, lnk;
293 u8 io_mode;
294 struct board_info *db = &dm9000_info;
295
296 DM9000_DBG("%s\n", __func__);
297
298
299 dm9000_reset();
300
301 if (dm9000_probe() < 0)
302 return -1;
303
304
305 io_mode = DM9000_ior(DM9000_ISR) >> 6;
306
307 switch (io_mode) {
308 case 0x0:
309 printf("DM9000: running in 16 bit mode\n");
310 db->outblk = dm9000_outblk_16bit;
311 db->inblk = dm9000_inblk_16bit;
312 db->rx_status = dm9000_rx_status_16bit;
313 break;
314 case 0x01:
315 printf("DM9000: running in 32 bit mode\n");
316 db->outblk = dm9000_outblk_32bit;
317 db->inblk = dm9000_inblk_32bit;
318 db->rx_status = dm9000_rx_status_32bit;
319 break;
320 case 0x02:
321 printf("DM9000: running in 8 bit mode\n");
322 db->outblk = dm9000_outblk_8bit;
323 db->inblk = dm9000_inblk_8bit;
324 db->rx_status = dm9000_rx_status_8bit;
325 break;
326 default:
327
328 printf("DM9000: Undefined IO-mode:0x%x\n", io_mode);
329 db->outblk = dm9000_outblk_8bit;
330 db->inblk = dm9000_inblk_8bit;
331 db->rx_status = dm9000_rx_status_8bit;
332 break;
333 }
334
335
336 DM9000_iow(DM9000_NCR, 0x0);
337
338 DM9000_iow(DM9000_TCR, 0);
339
340 DM9000_iow(DM9000_BPTR, BPTR_BPHW(3) | BPTR_JPT_600US);
341
342 DM9000_iow(DM9000_FCTR, FCTR_HWOT(3) | FCTR_LWOT(8));
343
344 DM9000_iow(DM9000_FCR, 0x0);
345
346 DM9000_iow(DM9000_SMCR, 0);
347
348 DM9000_iow(DM9000_NSR, NSR_WAKEST | NSR_TX2END | NSR_TX1END);
349
350 DM9000_iow(DM9000_ISR, ISR_ROOS | ISR_ROS | ISR_PTS | ISR_PRS);
351
352 printf("MAC: %pM\n", dev->enetaddr);
353
354
355 for (i = 0, oft = DM9000_PAR; i < 6; i++, oft++)
356 DM9000_iow(oft, dev->enetaddr[i]);
357 for (i = 0, oft = 0x16; i < 8; i++, oft++)
358 DM9000_iow(oft, 0xff);
359
360
361 for (i = 0, oft = 0x10; i < 6; i++, oft++)
362 DM9000_DBG("%02x:", DM9000_ior(oft));
363 DM9000_DBG("\n");
364
365
366
367 DM9000_iow(DM9000_RCR, RCR_DIS_LONG | RCR_DIS_CRC | RCR_RXEN);
368
369 DM9000_iow(DM9000_IMR, IMR_PAR);
370
371 i = 0;
372 while (!(dm9000_phy_read(1) & 0x20)) {
373 udelay(1000);
374 i++;
375 if (i == 10000) {
376 printf("could not establish link\n");
377 return 0;
378 }
379 }
380
381
382 lnk = dm9000_phy_read(17) >> 12;
383 printf("operating at ");
384 switch (lnk) {
385 case 1:
386 printf("10M half duplex ");
387 break;
388 case 2:
389 printf("10M full duplex ");
390 break;
391 case 4:
392 printf("100M half duplex ");
393 break;
394 case 8:
395 printf("100M full duplex ");
396 break;
397 default:
398 printf("unknown: %d ", lnk);
399 break;
400 }
401 printf("mode\n");
402 return 0;
403}
404
405
406
407
408
409static int dm9000_send(struct eth_device *netdev, volatile void *packet,
410 int length)
411{
412 int tmo;
413 struct board_info *db = &dm9000_info;
414
415 DM9000_DMP_PACKET(__func__ , packet, length);
416
417 DM9000_iow(DM9000_ISR, IMR_PTM);
418
419
420 DM9000_outb(DM9000_MWCMD, DM9000_IO);
421
422
423 (db->outblk)(packet, length);
424
425
426 DM9000_iow(DM9000_TXPLL, length & 0xff);
427 DM9000_iow(DM9000_TXPLH, (length >> 8) & 0xff);
428
429
430 DM9000_iow(DM9000_TCR, TCR_TXREQ);
431
432
433 tmo = get_timer(0) + 5 * CONFIG_SYS_HZ;
434 while ( !(DM9000_ior(DM9000_NSR) & (NSR_TX1END | NSR_TX2END)) ||
435 !(DM9000_ior(DM9000_ISR) & IMR_PTM) ) {
436 if (get_timer(0) >= tmo) {
437 printf("transmission timeout\n");
438 break;
439 }
440 }
441 DM9000_iow(DM9000_ISR, IMR_PTM);
442
443 DM9000_DBG("transmit done\n\n");
444 return 0;
445}
446
447
448
449
450
451static void dm9000_halt(struct eth_device *netdev)
452{
453 DM9000_DBG("%s\n", __func__);
454
455
456 dm9000_phy_write(0, 0x8000);
457 DM9000_iow(DM9000_GPR, 0x01);
458 DM9000_iow(DM9000_IMR, 0x80);
459 DM9000_iow(DM9000_RCR, 0x00);
460}
461
462
463
464
465static int dm9000_rx(struct eth_device *netdev)
466{
467 u8 rxbyte, *rdptr = (u8 *) NetRxPackets[0];
468 u16 RxStatus, RxLen = 0;
469 struct board_info *db = &dm9000_info;
470
471
472
473 if (!(DM9000_ior(DM9000_ISR) & 0x01))
474 return 0;
475
476 DM9000_iow(DM9000_ISR, 0x01);
477
478
479 for (;;) {
480 DM9000_ior(DM9000_MRCMDX);
481
482
483
484 rxbyte = DM9000_inb(DM9000_DATA) & 0x03;
485
486
487 if (rxbyte > DM9000_PKT_RDY) {
488 DM9000_iow(DM9000_RCR, 0x00);
489 DM9000_iow(DM9000_ISR, 0x80);
490 printf("DM9000 error: status check fail: 0x%x\n",
491 rxbyte);
492 return 0;
493 }
494
495 if (rxbyte != DM9000_PKT_RDY)
496 return 0;
497
498 DM9000_DBG("receiving packet\n");
499
500
501 (db->rx_status)(&RxStatus, &RxLen);
502
503 DM9000_DBG("rx status: 0x%04x rx len: %d\n", RxStatus, RxLen);
504
505
506
507 (db->inblk)(rdptr, RxLen);
508
509 if ((RxStatus & 0xbf00) || (RxLen < 0x40)
510 || (RxLen > DM9000_PKT_MAX)) {
511 if (RxStatus & 0x100) {
512 printf("rx fifo error\n");
513 }
514 if (RxStatus & 0x200) {
515 printf("rx crc error\n");
516 }
517 if (RxStatus & 0x8000) {
518 printf("rx length error\n");
519 }
520 if (RxLen > DM9000_PKT_MAX) {
521 printf("rx length too big\n");
522 dm9000_reset();
523 }
524 } else {
525 DM9000_DMP_PACKET(__func__ , rdptr, RxLen);
526
527 DM9000_DBG("passing packet to upper layer\n");
528 NetReceive(NetRxPackets[0], RxLen);
529 }
530 }
531 return 0;
532}
533
534
535
536
537#if !defined(CONFIG_DM9000_NO_SROM)
538void dm9000_read_srom_word(int offset, u8 *to)
539{
540 DM9000_iow(DM9000_EPAR, offset);
541 DM9000_iow(DM9000_EPCR, 0x4);
542 udelay(8000);
543 DM9000_iow(DM9000_EPCR, 0x0);
544 to[0] = DM9000_ior(DM9000_EPDRL);
545 to[1] = DM9000_ior(DM9000_EPDRH);
546}
547
548void dm9000_write_srom_word(int offset, u16 val)
549{
550 DM9000_iow(DM9000_EPAR, offset);
551 DM9000_iow(DM9000_EPDRH, ((val >> 8) & 0xff));
552 DM9000_iow(DM9000_EPDRL, (val & 0xff));
553 DM9000_iow(DM9000_EPCR, 0x12);
554 udelay(8000);
555 DM9000_iow(DM9000_EPCR, 0);
556}
557#endif
558
559static void dm9000_get_enetaddr(struct eth_device *dev)
560{
561#if !defined(CONFIG_DM9000_NO_SROM)
562 int i;
563 for (i = 0; i < 3; i++)
564 dm9000_read_srom_word(i, dev->enetaddr + (2 * i));
565#endif
566}
567
568
569
570
571static u8
572DM9000_ior(int reg)
573{
574 DM9000_outb(reg, DM9000_IO);
575 return DM9000_inb(DM9000_DATA);
576}
577
578
579
580
581static void
582DM9000_iow(int reg, u8 value)
583{
584 DM9000_outb(reg, DM9000_IO);
585 DM9000_outb(value, DM9000_DATA);
586}
587
588
589
590
591static u16
592dm9000_phy_read(int reg)
593{
594 u16 val;
595
596
597 DM9000_iow(DM9000_EPAR, DM9000_PHY | reg);
598 DM9000_iow(DM9000_EPCR, 0xc);
599 udelay(100);
600 DM9000_iow(DM9000_EPCR, 0x0);
601 val = (DM9000_ior(DM9000_EPDRH) << 8) | DM9000_ior(DM9000_EPDRL);
602
603
604 DM9000_DBG("dm9000_phy_read(0x%x): 0x%x\n", reg, val);
605 return val;
606}
607
608
609
610
611static void
612dm9000_phy_write(int reg, u16 value)
613{
614
615
616 DM9000_iow(DM9000_EPAR, DM9000_PHY | reg);
617
618
619 DM9000_iow(DM9000_EPDRL, (value & 0xff));
620 DM9000_iow(DM9000_EPDRH, ((value >> 8) & 0xff));
621 DM9000_iow(DM9000_EPCR, 0xa);
622 udelay(500);
623 DM9000_iow(DM9000_EPCR, 0x0);
624 DM9000_DBG("dm9000_phy_write(reg:0x%x, value:0x%x)\n", reg, value);
625}
626
627int dm9000_initialize(bd_t *bis)
628{
629 struct eth_device *dev = &(dm9000_info.netdev);
630
631
632 dm9000_get_enetaddr(dev);
633
634 dev->init = dm9000_init;
635 dev->halt = dm9000_halt;
636 dev->send = dm9000_send;
637 dev->recv = dm9000_rx;
638 sprintf(dev->name, "dm9000");
639
640 eth_register(dev);
641
642 return 0;
643}
644