blob: f7170e055460832011de5d8fb28f0a66d22a0f4f [file] [log] [blame]
wdenk281e00a2004-08-01 22:48:16 +00001/*
2 dm9000.c: Version 1.2 12/15/2003
3
4 A Davicom DM9000 ISA NIC fast Ethernet driver for Linux.
5 Copyright (C) 1997 Sten Wang
6
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
wdenk281e00a2004-08-01 22:48:16 +00008
9 (C)Copyright 1997-1998 DAVICOM Semiconductor,Inc. All Rights Reserved.
10
11V0.11 06/20/2001 REG_0A bit3=1, default enable BP with DA match
Wolfgang Denk53677ef2008-05-20 16:00:29 +020012 06/22/2001 Support DM9801 progrmming
13 E3: R25 = ((R24 + NF) & 0x00ff) | 0xf000
14 E4: R25 = ((R24 + NF) & 0x00ff) | 0xc200
15 R17 = (R17 & 0xfff0) | NF + 3
16 E5: R25 = ((R24 + NF - 3) & 0x00ff) | 0xc200
17 R17 = (R17 & 0xfff0) | NF
wdenk281e00a2004-08-01 22:48:16 +000018
Wolfgang Denk53677ef2008-05-20 16:00:29 +020019v1.00 modify by simon 2001.9.5
Wolfgang Denk93e14592013-10-04 17:43:24 +020020 change for kernel 2.4.x
wdenk281e00a2004-08-01 22:48:16 +000021
Wolfgang Denk53677ef2008-05-20 16:00:29 +020022v1.1 11/09/2001 fix force mode bug
wdenk281e00a2004-08-01 22:48:16 +000023
24v1.2 03/18/2003 Weilun Huang <weilun_huang@davicom.com.tw>:
25 Fixed phy reset.
26 Added tx/rx 32 bit mode.
27 Cleaned up for kernel merge.
28
29--------------------------------------
30
Remy Bohmera1013612008-06-03 15:26:21 +020031 12/15/2003 Initial port to u-boot by
32 Sascha Hauer <saschahauer@web.de>
33
34 06/03/2008 Remy Bohmer <linux@bohmer.net>
Remy Bohmer850ba752008-06-03 15:26:25 +020035 - Fixed the driver to work with DM9000A.
36 (check on ISR receive status bit before reading the
37 FIFO as described in DM9000 programming guide and
38 application notes)
Remy Bohmera1013612008-06-03 15:26:21 +020039 - Added autodetect of databus width.
Remy Bohmer134e2662008-06-03 15:26:22 +020040 - Made debug code compile again.
Remy Bohmeracba3182008-06-03 15:26:23 +020041 - Adapt eth_send such that it matches the DM9000*
42 application notes. Needed to make it work properly
43 for DM9000A.
Remy Bohmerfbcb7ec2008-06-03 15:26:24 +020044 - Adapted reset procedure to match DM9000 application
45 notes (i.e. double reset)
Remy Bohmer98291e22008-06-03 15:26:26 +020046 - some minor code cleanups
Remy Bohmera1013612008-06-03 15:26:21 +020047 These changes are tested with DM9000{A,EP,E} together
Remy Bohmere5a3bc22009-05-03 12:11:40 +020048 with a 200MHz Atmel AT91SAM9261 core
wdenk281e00a2004-08-01 22:48:16 +000049
Andrew Dyerd26b7392008-08-26 17:03:38 -050050TODO: external MII is not functional, only internal at the moment.
wdenk281e00a2004-08-01 22:48:16 +000051*/
52
53#include <common.h>
54#include <command.h>
55#include <net.h>
56#include <asm/io.h>
Remy Bohmere5a3bc22009-05-03 12:11:40 +020057#include <dm9000.h>
wdenk281e00a2004-08-01 22:48:16 +000058
wdenk281e00a2004-08-01 22:48:16 +000059#include "dm9000x.h"
60
61/* Board/System/Debug information/definition ---------------- */
62
wdenk281e00a2004-08-01 22:48:16 +000063/* #define CONFIG_DM9000_DEBUG */
64
65#ifdef CONFIG_DM9000_DEBUG
Remy Bohmer134e2662008-06-03 15:26:22 +020066#define DM9000_DBG(fmt,args...) printf(fmt, ##args)
67#define DM9000_DMP_PACKET(func,packet,length) \
68 do { \
69 int i; \
Thomas Weber076cd242009-12-09 09:38:04 +010070 printf("%s: length: %d\n", func, length); \
Remy Bohmer134e2662008-06-03 15:26:22 +020071 for (i = 0; i < length; i++) { \
72 if (i % 8 == 0) \
73 printf("\n%s: %02x: ", func, i); \
74 printf("%02x ", ((unsigned char *) packet)[i]); \
75 } printf("\n"); \
76 } while(0)
77#else
wdenk281e00a2004-08-01 22:48:16 +000078#define DM9000_DBG(fmt,args...)
Remy Bohmer134e2662008-06-03 15:26:22 +020079#define DM9000_DMP_PACKET(func,packet,length)
80#endif
81
wdenk281e00a2004-08-01 22:48:16 +000082/* Structure/enum declaration ------------------------------- */
83typedef struct board_info {
84 u32 runt_length_counter; /* counter: RX length < 64byte */
85 u32 long_length_counter; /* counter: RX length > 1514byte */
86 u32 reset_counter; /* counter: RESET */
87 u32 reset_tx_timeout; /* RESET caused by TX Timeout */
88 u32 reset_rx_status; /* RESET caused by RX Statsus wrong */
89 u16 tx_pkt_cnt;
90 u16 queue_start_addr;
91 u16 dbug_cnt;
92 u8 phy_addr;
93 u8 device_wait_reset; /* device state */
wdenk281e00a2004-08-01 22:48:16 +000094 unsigned char srom[128];
Remy Bohmer0e38c932008-06-05 13:03:36 +020095 void (*outblk)(volatile void *data_ptr, int count);
Remy Bohmera1013612008-06-03 15:26:21 +020096 void (*inblk)(void *data_ptr, int count);
97 void (*rx_status)(u16 *RxStatus, u16 *RxLen);
Remy Bohmer60f61e62009-05-02 21:49:18 +020098 struct eth_device netdev;
Remy Bohmer98291e22008-06-03 15:26:26 +020099} board_info_t;
Remy Bohmera1013612008-06-03 15:26:21 +0200100static board_info_t dm9000_info;
wdenk281e00a2004-08-01 22:48:16 +0000101
Remy Bohmer60f61e62009-05-02 21:49:18 +0200102
wdenk281e00a2004-08-01 22:48:16 +0000103/* function declaration ------------------------------------- */
wdenk281e00a2004-08-01 22:48:16 +0000104static int dm9000_probe(void);
Andy Fleming09c04c22011-03-22 22:49:13 -0500105static u16 dm9000_phy_read(int);
106static void dm9000_phy_write(int, u16);
wdenk281e00a2004-08-01 22:48:16 +0000107static u8 DM9000_ior(int);
108static void DM9000_iow(int reg, u8 value);
109
110/* DM9000 network board routine ---------------------------- */
Jason Jin5c1d0822011-08-25 15:46:43 +0800111#ifndef CONFIG_DM9000_BYTE_SWAPPED
Mike Frysinger67bee2f2010-07-05 02:29:21 -0400112#define DM9000_outb(d,r) writeb(d, (volatile u8 *)(r))
113#define DM9000_outw(d,r) writew(d, (volatile u16 *)(r))
114#define DM9000_outl(d,r) writel(d, (volatile u32 *)(r))
115#define DM9000_inb(r) readb((volatile u8 *)(r))
116#define DM9000_inw(r) readw((volatile u16 *)(r))
117#define DM9000_inl(r) readl((volatile u32 *)(r))
Jason Jin5c1d0822011-08-25 15:46:43 +0800118#else
119#define DM9000_outb(d, r) __raw_writeb(d, r)
120#define DM9000_outw(d, r) __raw_writew(d, r)
121#define DM9000_outl(d, r) __raw_writel(d, r)
122#define DM9000_inb(r) __raw_readb(r)
123#define DM9000_inw(r) __raw_readw(r)
124#define DM9000_inl(r) __raw_readl(r)
125#endif
wdenk281e00a2004-08-01 22:48:16 +0000126
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));
Remy Bohmer134e2662008-06-03 15:26:22 +0200139 DM9000_DBG("ISR (0xFE): %02x\n", DM9000_ior(DM9000_ISR));
wdenk281e00a2004-08-01 22:48:16 +0000140 DM9000_DBG("\n");
141}
Remy Bohmera1013612008-06-03 15:26:21 +0200142#endif
143
Remy Bohmer0e38c932008-06-05 13:03:36 +0200144static void dm9000_outblk_8bit(volatile void *data_ptr, int count)
Remy Bohmera1013612008-06-03 15:26:21 +0200145{
146 int i;
147 for (i = 0; i < count; i++)
148 DM9000_outb((((u8 *) data_ptr)[i] & 0xff), DM9000_DATA);
149}
150
Remy Bohmer0e38c932008-06-05 13:03:36 +0200151static void dm9000_outblk_16bit(volatile void *data_ptr, int count)
Remy Bohmera1013612008-06-03 15:26:21 +0200152{
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}
Remy Bohmer0e38c932008-06-05 13:03:36 +0200159static void dm9000_outblk_32bit(volatile void *data_ptr, int count)
Remy Bohmera1013612008-06-03 15:26:21 +0200160{
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{
Remy Bohmerd6ee5fa2008-06-04 10:47:25 +0200194 u32 tmpdata;
Remy Bohmera1013612008-06-03 15:26:21 +0200195
196 DM9000_outb(DM9000_MRCMD, DM9000_IO);
197
Remy Bohmerd6ee5fa2008-06-04 10:47:25 +0200198 tmpdata = DM9000_inl(DM9000_DATA);
TsiChung Liew943b8252008-06-25 15:48:52 -0500199 *RxStatus = __le16_to_cpu(tmpdata);
200 *RxLen = __le16_to_cpu(tmpdata >> 16);
Remy Bohmera1013612008-06-03 15:26:21 +0200201}
202
203static void dm9000_rx_status_16bit(u16 *RxStatus, u16 *RxLen)
204{
205 DM9000_outb(DM9000_MRCMD, DM9000_IO);
206
TsiChung Liew943b8252008-06-25 15:48:52 -0500207 *RxStatus = __le16_to_cpu(DM9000_inw(DM9000_DATA));
208 *RxLen = __le16_to_cpu(DM9000_inw(DM9000_DATA));
Remy Bohmera1013612008-06-03 15:26:21 +0200209}
210
211static void dm9000_rx_status_8bit(u16 *RxStatus, u16 *RxLen)
212{
213 DM9000_outb(DM9000_MRCMD, DM9000_IO);
214
TsiChung Liew943b8252008-06-25 15:48:52 -0500215 *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));
Remy Bohmera1013612008-06-03 15:26:21 +0200221}
wdenk281e00a2004-08-01 22:48:16 +0000222
223/*
224 Search DM9000 board, allocate space and register it
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
wdenk281e00a2004-08-01 22:48:16 +0000245/* General Purpose dm9000 reset routine */
246static void
247dm9000_reset(void)
248{
Remy Bohmerfbcb7ec2008-06-03 15:26:24 +0200249 DM9000_DBG("resetting DM9000\n");
250
251 /* Reset DM9000,
252 see DM9000 Application Notes V1.22 Jun 11, 2004 page 29 */
253
Andrew Dyerd26b7392008-08-26 17:03:38 -0500254 /* DEBUG: Make all GPIO0 outputs, all others inputs */
255 DM9000_iow(DM9000_GPCR, GPCR_GPIO0_OUT);
Remy Bohmerfbcb7ec2008-06-03 15:26:24 +0200256 /* Step 1: Power internal PHY by writing 0 to GPIO0 pin */
257 DM9000_iow(DM9000_GPR, 0);
258 /* Step 2: Software reset */
Andrew Dyerd26b7392008-08-26 17:03:38 -0500259 DM9000_iow(DM9000_NCR, (NCR_LBK_INT_MAC | NCR_RST));
Remy Bohmerfbcb7ec2008-06-03 15:26:24 +0200260
261 do {
262 DM9000_DBG("resetting the DM9000, 1st reset\n");
263 udelay(25); /* Wait at least 20 us */
264 } while (DM9000_ior(DM9000_NCR) & 1);
265
266 DM9000_iow(DM9000_NCR, 0);
Andrew Dyerd26b7392008-08-26 17:03:38 -0500267 DM9000_iow(DM9000_NCR, (NCR_LBK_INT_MAC | NCR_RST)); /* Issue a second reset */
Remy Bohmerfbcb7ec2008-06-03 15:26:24 +0200268
269 do {
270 DM9000_DBG("resetting the DM9000, 2nd reset\n");
271 udelay(25); /* Wait at least 20 us */
272 } while (DM9000_ior(DM9000_NCR) & 1);
273
274 /* Check whether the ethernet controller is present */
275 if ((DM9000_ior(DM9000_PIDL) != 0x0) ||
276 (DM9000_ior(DM9000_PIDH) != 0x90))
277 printf("ERROR: resetting DM9000 -> not responding\n");
wdenk281e00a2004-08-01 22:48:16 +0000278}
279
Remy Bohmer60f61e62009-05-02 21:49:18 +0200280/* Initialize dm9000 board
wdenk281e00a2004-08-01 22:48:16 +0000281*/
Remy Bohmer60f61e62009-05-02 21:49:18 +0200282static int dm9000_init(struct eth_device *dev, bd_t *bd)
wdenk281e00a2004-08-01 22:48:16 +0000283{
284 int i, oft, lnk;
Remy Bohmera1013612008-06-03 15:26:21 +0200285 u8 io_mode;
286 struct board_info *db = &dm9000_info;
287
Remy Bohmer60f61e62009-05-02 21:49:18 +0200288 DM9000_DBG("%s\n", __func__);
wdenk281e00a2004-08-01 22:48:16 +0000289
290 /* RESET device */
291 dm9000_reset();
Andrew Dyerd26b7392008-08-26 17:03:38 -0500292
293 if (dm9000_probe() < 0)
294 return -1;
wdenk281e00a2004-08-01 22:48:16 +0000295
Remy Bohmera1013612008-06-03 15:26:21 +0200296 /* Auto-detect 8/16/32 bit mode, ISR Bit 6+7 indicate bus width */
297 io_mode = DM9000_ior(DM9000_ISR) >> 6;
298
299 switch (io_mode) {
300 case 0x0: /* 16-bit mode */
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: /* 32-bit mode */
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: /* 8 bit mode */
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 /* Assume 8 bit mode, will probably not work anyway */
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
Andrew Dyerd26b7392008-08-26 17:03:38 -0500327 /* Program operating register, only internal phy supported */
Remy Bohmer98291e22008-06-03 15:26:26 +0200328 DM9000_iow(DM9000_NCR, 0x0);
329 /* TX Polling clear */
330 DM9000_iow(DM9000_TCR, 0);
331 /* Less 3Kb, 200us */
Andrew Dyerd26b7392008-08-26 17:03:38 -0500332 DM9000_iow(DM9000_BPTR, BPTR_BPHW(3) | BPTR_JPT_600US);
Remy Bohmer98291e22008-06-03 15:26:26 +0200333 /* Flow Control : High/Low Water */
334 DM9000_iow(DM9000_FCTR, FCTR_HWOT(3) | FCTR_LWOT(8));
335 /* SH FIXME: This looks strange! Flow Control */
336 DM9000_iow(DM9000_FCR, 0x0);
337 /* Special Mode */
338 DM9000_iow(DM9000_SMCR, 0);
339 /* clear TX status */
340 DM9000_iow(DM9000_NSR, NSR_WAKEST | NSR_TX2END | NSR_TX1END);
341 /* Clear interrupt status */
Andrew Dyerd26b7392008-08-26 17:03:38 -0500342 DM9000_iow(DM9000_ISR, ISR_ROOS | ISR_ROS | ISR_PTS | ISR_PRS);
wdenk281e00a2004-08-01 22:48:16 +0000343
Ben Warren07754372009-10-21 21:53:39 -0700344 printf("MAC: %pM\n", dev->enetaddr);
Andrew Dyerd26b7392008-08-26 17:03:38 -0500345
346 /* fill device MAC address registers */
347 for (i = 0, oft = DM9000_PAR; i < 6; i++, oft++)
Ben Warren07754372009-10-21 21:53:39 -0700348 DM9000_iow(oft, dev->enetaddr[i]);
wdenk281e00a2004-08-01 22:48:16 +0000349 for (i = 0, oft = 0x16; i < 8; i++, oft++)
350 DM9000_iow(oft, 0xff);
351
352 /* read back mac, just to be sure */
353 for (i = 0, oft = 0x10; i < 6; i++, oft++)
354 DM9000_DBG("%02x:", DM9000_ior(oft));
355 DM9000_DBG("\n");
356
357 /* Activate DM9000 */
Remy Bohmer98291e22008-06-03 15:26:26 +0200358 /* RX enable */
359 DM9000_iow(DM9000_RCR, RCR_DIS_LONG | RCR_DIS_CRC | RCR_RXEN);
360 /* Enable TX/RX interrupt mask */
361 DM9000_iow(DM9000_IMR, IMR_PAR);
362
wdenk281e00a2004-08-01 22:48:16 +0000363 i = 0;
Andy Fleming09c04c22011-03-22 22:49:13 -0500364 while (!(dm9000_phy_read(1) & 0x20)) { /* autonegation complete bit */
wdenk281e00a2004-08-01 22:48:16 +0000365 udelay(1000);
366 i++;
367 if (i == 10000) {
368 printf("could not establish link\n");
369 return 0;
370 }
371 }
372
373 /* see what we've got */
Andy Fleming09c04c22011-03-22 22:49:13 -0500374 lnk = dm9000_phy_read(17) >> 12;
wdenk281e00a2004-08-01 22:48:16 +0000375 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 Hardware start transmission.
399 Send a packet to media from the upper layer.
400*/
Joe Hershberger7f9a8a62012-05-21 14:45:23 +0000401static int dm9000_send(struct eth_device *netdev, void *packet, int length)
wdenk281e00a2004-08-01 22:48:16 +0000402{
wdenk281e00a2004-08-01 22:48:16 +0000403 int tmo;
Remy Bohmera1013612008-06-03 15:26:21 +0200404 struct board_info *db = &dm9000_info;
405
Remy Bohmer60f61e62009-05-02 21:49:18 +0200406 DM9000_DMP_PACKET(__func__ , packet, length);
wdenk281e00a2004-08-01 22:48:16 +0000407
Remy Bohmeracba3182008-06-03 15:26:23 +0200408 DM9000_iow(DM9000_ISR, IMR_PTM); /* Clear Tx bit in ISR */
409
wdenk281e00a2004-08-01 22:48:16 +0000410 /* Move data to DM9000 TX RAM */
Remy Bohmeracba3182008-06-03 15:26:23 +0200411 DM9000_outb(DM9000_MWCMD, DM9000_IO); /* Prepare for TX-data */
wdenk281e00a2004-08-01 22:48:16 +0000412
Remy Bohmera1013612008-06-03 15:26:21 +0200413 /* push the data to the TX-fifo */
Remy Bohmer0e38c932008-06-05 13:03:36 +0200414 (db->outblk)(packet, length);
wdenk281e00a2004-08-01 22:48:16 +0000415
416 /* Set TX length to DM9000 */
417 DM9000_iow(DM9000_TXPLL, length & 0xff);
418 DM9000_iow(DM9000_TXPLH, (length >> 8) & 0xff);
419
420 /* Issue TX polling command */
Remy Bohmeracba3182008-06-03 15:26:23 +0200421 DM9000_iow(DM9000_TCR, TCR_TXREQ); /* Cleared after TX complete */
wdenk281e00a2004-08-01 22:48:16 +0000422
423 /* wait for end of transmission */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200424 tmo = get_timer(0) + 5 * CONFIG_SYS_HZ;
Remy Bohmeracba3182008-06-03 15:26:23 +0200425 while ( !(DM9000_ior(DM9000_NSR) & (NSR_TX1END | NSR_TX2END)) ||
426 !(DM9000_ior(DM9000_ISR) & IMR_PTM) ) {
wdenk281e00a2004-08-01 22:48:16 +0000427 if (get_timer(0) >= tmo) {
428 printf("transmission timeout\n");
429 break;
430 }
431 }
Remy Bohmeracba3182008-06-03 15:26:23 +0200432 DM9000_iow(DM9000_ISR, IMR_PTM); /* Clear Tx bit in ISR */
433
wdenk281e00a2004-08-01 22:48:16 +0000434 DM9000_DBG("transmit done\n\n");
435 return 0;
436}
437
438/*
439 Stop the interface.
440 The interface is stopped when it is brought.
441*/
Remy Bohmer60f61e62009-05-02 21:49:18 +0200442static void dm9000_halt(struct eth_device *netdev)
wdenk281e00a2004-08-01 22:48:16 +0000443{
Remy Bohmer60f61e62009-05-02 21:49:18 +0200444 DM9000_DBG("%s\n", __func__);
wdenk281e00a2004-08-01 22:48:16 +0000445
446 /* RESET devie */
Andy Fleming09c04c22011-03-22 22:49:13 -0500447 dm9000_phy_write(0, 0x8000); /* PHY RESET */
wdenk281e00a2004-08-01 22:48:16 +0000448 DM9000_iow(DM9000_GPR, 0x01); /* Power-Down PHY */
449 DM9000_iow(DM9000_IMR, 0x80); /* Disable all interrupt */
450 DM9000_iow(DM9000_RCR, 0x00); /* Disable RX */
451}
452
453/*
454 Received a packet and pass to upper layer
455*/
Remy Bohmer60f61e62009-05-02 21:49:18 +0200456static int dm9000_rx(struct eth_device *netdev)
wdenk281e00a2004-08-01 22:48:16 +0000457{
458 u8 rxbyte, *rdptr = (u8 *) NetRxPackets[0];
459 u16 RxStatus, RxLen = 0;
Remy Bohmera1013612008-06-03 15:26:21 +0200460 struct board_info *db = &dm9000_info;
wdenk281e00a2004-08-01 22:48:16 +0000461
Remy Bohmer850ba752008-06-03 15:26:25 +0200462 /* Check packet ready or not, we must check
463 the ISR status first for DM9000A */
464 if (!(DM9000_ior(DM9000_ISR) & 0x01)) /* Rx-ISR bit must be set. */
wdenk281e00a2004-08-01 22:48:16 +0000465 return 0;
466
Remy Bohmer850ba752008-06-03 15:26:25 +0200467 DM9000_iow(DM9000_ISR, 0x01); /* clear PR status latched in bit 0 */
wdenk281e00a2004-08-01 22:48:16 +0000468
Remy Bohmer850ba752008-06-03 15:26:25 +0200469 /* There is _at least_ 1 package in the fifo, read them all */
470 for (;;) {
471 DM9000_ior(DM9000_MRCMDX); /* Dummy read */
wdenk281e00a2004-08-01 22:48:16 +0000472
Remy Bohmer0e38c932008-06-05 13:03:36 +0200473 /* Get most updated data,
474 only look at bits 0:1, See application notes DM9000 */
475 rxbyte = DM9000_inb(DM9000_DATA) & 0x03;
wdenk281e00a2004-08-01 22:48:16 +0000476
Remy Bohmer850ba752008-06-03 15:26:25 +0200477 /* Status check: this byte must be 0 or 1 */
478 if (rxbyte > DM9000_PKT_RDY) {
479 DM9000_iow(DM9000_RCR, 0x00); /* Stop Device */
480 DM9000_iow(DM9000_ISR, 0x80); /* Stop INT request */
481 printf("DM9000 error: status check fail: 0x%x\n",
482 rxbyte);
483 return 0;
wdenk281e00a2004-08-01 22:48:16 +0000484 }
wdenk281e00a2004-08-01 22:48:16 +0000485
Remy Bohmer850ba752008-06-03 15:26:25 +0200486 if (rxbyte != DM9000_PKT_RDY)
487 return 0; /* No packet received, ignore */
488
489 DM9000_DBG("receiving packet\n");
490
491 /* A packet ready now & Get status/length */
492 (db->rx_status)(&RxStatus, &RxLen);
493
494 DM9000_DBG("rx status: 0x%04x rx len: %d\n", RxStatus, RxLen);
495
496 /* Move data from DM9000 */
497 /* Read received packet from RX SRAM */
498 (db->inblk)(rdptr, RxLen);
499
500 if ((RxStatus & 0xbf00) || (RxLen < 0x40)
501 || (RxLen > DM9000_PKT_MAX)) {
502 if (RxStatus & 0x100) {
503 printf("rx fifo error\n");
504 }
505 if (RxStatus & 0x200) {
506 printf("rx crc error\n");
507 }
508 if (RxStatus & 0x8000) {
509 printf("rx length error\n");
510 }
511 if (RxLen > DM9000_PKT_MAX) {
512 printf("rx length too big\n");
513 dm9000_reset();
514 }
515 } else {
Remy Bohmer60f61e62009-05-02 21:49:18 +0200516 DM9000_DMP_PACKET(__func__ , rdptr, RxLen);
Remy Bohmer850ba752008-06-03 15:26:25 +0200517
518 DM9000_DBG("passing packet to upper layer\n");
519 NetReceive(NetRxPackets[0], RxLen);
520 }
wdenk281e00a2004-08-01 22:48:16 +0000521 }
522 return 0;
523}
524
525/*
526 Read a word data from SROM
527*/
Remy Bohmere5a3bc22009-05-03 12:11:40 +0200528#if !defined(CONFIG_DM9000_NO_SROM)
529void dm9000_read_srom_word(int offset, u8 *to)
wdenk281e00a2004-08-01 22:48:16 +0000530{
531 DM9000_iow(DM9000_EPAR, offset);
532 DM9000_iow(DM9000_EPCR, 0x4);
stefano babic5f470942007-08-21 15:50:33 +0200533 udelay(8000);
wdenk281e00a2004-08-01 22:48:16 +0000534 DM9000_iow(DM9000_EPCR, 0x0);
David Brownellad74cae2009-04-16 23:15:15 -0700535 to[0] = DM9000_ior(DM9000_EPDRL);
536 to[1] = DM9000_ior(DM9000_EPDRH);
wdenk281e00a2004-08-01 22:48:16 +0000537}
538
Remy Bohmere5a3bc22009-05-03 12:11:40 +0200539void dm9000_write_srom_word(int offset, u16 val)
stefano babic5e5803e2007-08-30 23:01:49 +0200540{
541 DM9000_iow(DM9000_EPAR, offset);
542 DM9000_iow(DM9000_EPDRH, ((val >> 8) & 0xff));
543 DM9000_iow(DM9000_EPDRL, (val & 0xff));
544 DM9000_iow(DM9000_EPCR, 0x12);
545 udelay(8000);
546 DM9000_iow(DM9000_EPCR, 0);
547}
Remy Bohmere5a3bc22009-05-03 12:11:40 +0200548#endif
stefano babic5e5803e2007-08-30 23:01:49 +0200549
Ben Warren07754372009-10-21 21:53:39 -0700550static void dm9000_get_enetaddr(struct eth_device *dev)
551{
552#if !defined(CONFIG_DM9000_NO_SROM)
553 int i;
554 for (i = 0; i < 3; i++)
555 dm9000_read_srom_word(i, dev->enetaddr + (2 * i));
556#endif
557}
558
wdenk281e00a2004-08-01 22:48:16 +0000559/*
560 Read a byte from I/O port
561*/
562static u8
563DM9000_ior(int reg)
564{
565 DM9000_outb(reg, DM9000_IO);
566 return DM9000_inb(DM9000_DATA);
567}
568
569/*
570 Write a byte to I/O port
571*/
572static void
573DM9000_iow(int reg, u8 value)
574{
575 DM9000_outb(reg, DM9000_IO);
576 DM9000_outb(value, DM9000_DATA);
577}
578
579/*
580 Read a word from phyxcer
581*/
582static u16
Andy Fleming09c04c22011-03-22 22:49:13 -0500583dm9000_phy_read(int reg)
wdenk281e00a2004-08-01 22:48:16 +0000584{
585 u16 val;
586
587 /* Fill the phyxcer register into REG_0C */
588 DM9000_iow(DM9000_EPAR, DM9000_PHY | reg);
589 DM9000_iow(DM9000_EPCR, 0xc); /* Issue phyxcer read command */
Remy Bohmer98291e22008-06-03 15:26:26 +0200590 udelay(100); /* Wait read complete */
wdenk281e00a2004-08-01 22:48:16 +0000591 DM9000_iow(DM9000_EPCR, 0x0); /* Clear phyxcer read command */
592 val = (DM9000_ior(DM9000_EPDRH) << 8) | DM9000_ior(DM9000_EPDRL);
593
594 /* The read data keeps on REG_0D & REG_0E */
Andy Fleming09c04c22011-03-22 22:49:13 -0500595 DM9000_DBG("dm9000_phy_read(0x%x): 0x%x\n", reg, val);
wdenk281e00a2004-08-01 22:48:16 +0000596 return val;
597}
598
599/*
600 Write a word to phyxcer
601*/
602static void
Andy Fleming09c04c22011-03-22 22:49:13 -0500603dm9000_phy_write(int reg, u16 value)
wdenk281e00a2004-08-01 22:48:16 +0000604{
605
606 /* Fill the phyxcer register into REG_0C */
607 DM9000_iow(DM9000_EPAR, DM9000_PHY | reg);
608
609 /* Fill the written data into REG_0D & REG_0E */
610 DM9000_iow(DM9000_EPDRL, (value & 0xff));
611 DM9000_iow(DM9000_EPDRH, ((value >> 8) & 0xff));
612 DM9000_iow(DM9000_EPCR, 0xa); /* Issue phyxcer write command */
Remy Bohmer98291e22008-06-03 15:26:26 +0200613 udelay(500); /* Wait write complete */
wdenk281e00a2004-08-01 22:48:16 +0000614 DM9000_iow(DM9000_EPCR, 0x0); /* Clear phyxcer write command */
Andy Fleming09c04c22011-03-22 22:49:13 -0500615 DM9000_DBG("dm9000_phy_write(reg:0x%x, value:0x%x)\n", reg, value);
wdenk281e00a2004-08-01 22:48:16 +0000616}
Remy Bohmer60f61e62009-05-02 21:49:18 +0200617
618int dm9000_initialize(bd_t *bis)
619{
620 struct eth_device *dev = &(dm9000_info.netdev);
621
Ben Warren07754372009-10-21 21:53:39 -0700622 /* Load MAC address from EEPROM */
623 dm9000_get_enetaddr(dev);
624
Remy Bohmer60f61e62009-05-02 21:49:18 +0200625 dev->init = dm9000_init;
626 dev->halt = dm9000_halt;
627 dev->send = dm9000_send;
628 dev->recv = dm9000_rx;
629 sprintf(dev->name, "dm9000");
630
631 eth_register(dev);
632
633 return 0;
634}