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