blob: f0c4499edbc0481577cb4739b44f5041a68b7101 [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
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License
9 as published by the Free Software Foundation; either version 2
10 of the License, or (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 (C)Copyright 1997-1998 DAVICOM Semiconductor,Inc. All Rights Reserved.
18
19V0.11 06/20/2001 REG_0A bit3=1, default enable BP with DA match
Wolfgang Denk53677ef2008-05-20 16:00:29 +020020 06/22/2001 Support DM9801 progrmming
21 E3: R25 = ((R24 + NF) & 0x00ff) | 0xf000
22 E4: R25 = ((R24 + NF) & 0x00ff) | 0xc200
23 R17 = (R17 & 0xfff0) | NF + 3
24 E5: R25 = ((R24 + NF - 3) & 0x00ff) | 0xc200
25 R17 = (R17 & 0xfff0) | NF
wdenk281e00a2004-08-01 22:48:16 +000026
Wolfgang Denk53677ef2008-05-20 16:00:29 +020027v1.00 modify by simon 2001.9.5
wdenk281e00a2004-08-01 22:48:16 +000028 change for kernel 2.4.x
29
Wolfgang Denk53677ef2008-05-20 16:00:29 +020030v1.1 11/09/2001 fix force mode bug
wdenk281e00a2004-08-01 22:48:16 +000031
32v1.2 03/18/2003 Weilun Huang <weilun_huang@davicom.com.tw>:
33 Fixed phy reset.
34 Added tx/rx 32 bit mode.
35 Cleaned up for kernel merge.
36
37--------------------------------------
38
Remy Bohmera1013612008-06-03 15:26:21 +020039 12/15/2003 Initial port to u-boot by
40 Sascha Hauer <saschahauer@web.de>
41
42 06/03/2008 Remy Bohmer <linux@bohmer.net>
Remy Bohmer850ba752008-06-03 15:26:25 +020043 - Fixed the driver to work with DM9000A.
44 (check on ISR receive status bit before reading the
45 FIFO as described in DM9000 programming guide and
46 application notes)
Remy Bohmera1013612008-06-03 15:26:21 +020047 - Added autodetect of databus width.
Remy Bohmer134e2662008-06-03 15:26:22 +020048 - Made debug code compile again.
Remy Bohmeracba3182008-06-03 15:26:23 +020049 - Adapt eth_send such that it matches the DM9000*
50 application notes. Needed to make it work properly
51 for DM9000A.
Remy Bohmerfbcb7ec2008-06-03 15:26:24 +020052 - Adapted reset procedure to match DM9000 application
53 notes (i.e. double reset)
Remy Bohmer98291e22008-06-03 15:26:26 +020054 - some minor code cleanups
Remy Bohmera1013612008-06-03 15:26:21 +020055 These changes are tested with DM9000{A,EP,E} together
Remy Bohmere5a3bc22009-05-03 12:11:40 +020056 with a 200MHz Atmel AT91SAM9261 core
wdenk281e00a2004-08-01 22:48:16 +000057
Andrew Dyerd26b7392008-08-26 17:03:38 -050058TODO: external MII is not functional, only internal at the moment.
wdenk281e00a2004-08-01 22:48:16 +000059*/
60
61#include <common.h>
62#include <command.h>
63#include <net.h>
64#include <asm/io.h>
Remy Bohmere5a3bc22009-05-03 12:11:40 +020065#include <dm9000.h>
wdenk281e00a2004-08-01 22:48:16 +000066
wdenk281e00a2004-08-01 22:48:16 +000067#include "dm9000x.h"
68
69/* Board/System/Debug information/definition ---------------- */
70
wdenk281e00a2004-08-01 22:48:16 +000071/* #define CONFIG_DM9000_DEBUG */
72
73#ifdef CONFIG_DM9000_DEBUG
Remy Bohmer134e2662008-06-03 15:26:22 +020074#define DM9000_DBG(fmt,args...) printf(fmt, ##args)
75#define DM9000_DMP_PACKET(func,packet,length) \
76 do { \
77 int i; \
Thomas Weber076cd242009-12-09 09:38:04 +010078 printf("%s: length: %d\n", func, length); \
Remy Bohmer134e2662008-06-03 15:26:22 +020079 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
wdenk281e00a2004-08-01 22:48:16 +000086#define DM9000_DBG(fmt,args...)
Remy Bohmer134e2662008-06-03 15:26:22 +020087#define DM9000_DMP_PACKET(func,packet,length)
88#endif
89
wdenk281e00a2004-08-01 22:48:16 +000090/* Structure/enum declaration ------------------------------- */
91typedef struct board_info {
92 u32 runt_length_counter; /* counter: RX length < 64byte */
93 u32 long_length_counter; /* counter: RX length > 1514byte */
94 u32 reset_counter; /* counter: RESET */
95 u32 reset_tx_timeout; /* RESET caused by TX Timeout */
96 u32 reset_rx_status; /* RESET caused by RX Statsus wrong */
97 u16 tx_pkt_cnt;
98 u16 queue_start_addr;
99 u16 dbug_cnt;
100 u8 phy_addr;
101 u8 device_wait_reset; /* device state */
wdenk281e00a2004-08-01 22:48:16 +0000102 unsigned char srom[128];
Remy Bohmer0e38c932008-06-05 13:03:36 +0200103 void (*outblk)(volatile void *data_ptr, int count);
Remy Bohmera1013612008-06-03 15:26:21 +0200104 void (*inblk)(void *data_ptr, int count);
105 void (*rx_status)(u16 *RxStatus, u16 *RxLen);
Remy Bohmer60f61e62009-05-02 21:49:18 +0200106 struct eth_device netdev;
Remy Bohmer98291e22008-06-03 15:26:26 +0200107} board_info_t;
Remy Bohmera1013612008-06-03 15:26:21 +0200108static board_info_t dm9000_info;
wdenk281e00a2004-08-01 22:48:16 +0000109
Remy Bohmer60f61e62009-05-02 21:49:18 +0200110
wdenk281e00a2004-08-01 22:48:16 +0000111/* function declaration ------------------------------------- */
wdenk281e00a2004-08-01 22:48:16 +0000112static int dm9000_probe(void);
Andy Fleming09c04c22011-03-22 22:49:13 -0500113static u16 dm9000_phy_read(int);
114static void dm9000_phy_write(int, u16);
wdenk281e00a2004-08-01 22:48:16 +0000115static u8 DM9000_ior(int);
116static void DM9000_iow(int reg, u8 value);
117
118/* DM9000 network board routine ---------------------------- */
Jason Jin5c1d0822011-08-25 15:46:43 +0800119#ifndef CONFIG_DM9000_BYTE_SWAPPED
Mike Frysinger67bee2f2010-07-05 02:29:21 -0400120#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))
Jason Jin5c1d0822011-08-25 15:46:43 +0800126#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
wdenk281e00a2004-08-01 22:48:16 +0000134
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));
Remy Bohmer134e2662008-06-03 15:26:22 +0200147 DM9000_DBG("ISR (0xFE): %02x\n", DM9000_ior(DM9000_ISR));
wdenk281e00a2004-08-01 22:48:16 +0000148 DM9000_DBG("\n");
149}
Remy Bohmera1013612008-06-03 15:26:21 +0200150#endif
151
Remy Bohmer0e38c932008-06-05 13:03:36 +0200152static void dm9000_outblk_8bit(volatile void *data_ptr, int count)
Remy Bohmera1013612008-06-03 15:26:21 +0200153{
154 int i;
155 for (i = 0; i < count; i++)
156 DM9000_outb((((u8 *) data_ptr)[i] & 0xff), DM9000_DATA);
157}
158
Remy Bohmer0e38c932008-06-05 13:03:36 +0200159static void dm9000_outblk_16bit(volatile void *data_ptr, int count)
Remy Bohmera1013612008-06-03 15:26:21 +0200160{
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}
Remy Bohmer0e38c932008-06-05 13:03:36 +0200167static void dm9000_outblk_32bit(volatile void *data_ptr, int count)
Remy Bohmera1013612008-06-03 15:26:21 +0200168{
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{
Remy Bohmerd6ee5fa2008-06-04 10:47:25 +0200202 u32 tmpdata;
Remy Bohmera1013612008-06-03 15:26:21 +0200203
204 DM9000_outb(DM9000_MRCMD, DM9000_IO);
205
Remy Bohmerd6ee5fa2008-06-04 10:47:25 +0200206 tmpdata = DM9000_inl(DM9000_DATA);
TsiChung Liew943b8252008-06-25 15:48:52 -0500207 *RxStatus = __le16_to_cpu(tmpdata);
208 *RxLen = __le16_to_cpu(tmpdata >> 16);
Remy Bohmera1013612008-06-03 15:26:21 +0200209}
210
211static void dm9000_rx_status_16bit(u16 *RxStatus, u16 *RxLen)
212{
213 DM9000_outb(DM9000_MRCMD, DM9000_IO);
214
TsiChung Liew943b8252008-06-25 15:48:52 -0500215 *RxStatus = __le16_to_cpu(DM9000_inw(DM9000_DATA));
216 *RxLen = __le16_to_cpu(DM9000_inw(DM9000_DATA));
Remy Bohmera1013612008-06-03 15:26:21 +0200217}
218
219static void dm9000_rx_status_8bit(u16 *RxStatus, u16 *RxLen)
220{
221 DM9000_outb(DM9000_MRCMD, DM9000_IO);
222
TsiChung Liew943b8252008-06-25 15:48:52 -0500223 *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));
Remy Bohmera1013612008-06-03 15:26:21 +0200229}
wdenk281e00a2004-08-01 22:48:16 +0000230
231/*
232 Search DM9000 board, allocate space and register it
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
wdenk281e00a2004-08-01 22:48:16 +0000253/* General Purpose dm9000 reset routine */
254static void
255dm9000_reset(void)
256{
Remy Bohmerfbcb7ec2008-06-03 15:26:24 +0200257 DM9000_DBG("resetting DM9000\n");
258
259 /* Reset DM9000,
260 see DM9000 Application Notes V1.22 Jun 11, 2004 page 29 */
261
Andrew Dyerd26b7392008-08-26 17:03:38 -0500262 /* DEBUG: Make all GPIO0 outputs, all others inputs */
263 DM9000_iow(DM9000_GPCR, GPCR_GPIO0_OUT);
Remy Bohmerfbcb7ec2008-06-03 15:26:24 +0200264 /* Step 1: Power internal PHY by writing 0 to GPIO0 pin */
265 DM9000_iow(DM9000_GPR, 0);
266 /* Step 2: Software reset */
Andrew Dyerd26b7392008-08-26 17:03:38 -0500267 DM9000_iow(DM9000_NCR, (NCR_LBK_INT_MAC | NCR_RST));
Remy Bohmerfbcb7ec2008-06-03 15:26:24 +0200268
269 do {
270 DM9000_DBG("resetting the DM9000, 1st reset\n");
271 udelay(25); /* Wait at least 20 us */
272 } while (DM9000_ior(DM9000_NCR) & 1);
273
274 DM9000_iow(DM9000_NCR, 0);
Andrew Dyerd26b7392008-08-26 17:03:38 -0500275 DM9000_iow(DM9000_NCR, (NCR_LBK_INT_MAC | NCR_RST)); /* Issue a second reset */
Remy Bohmerfbcb7ec2008-06-03 15:26:24 +0200276
277 do {
278 DM9000_DBG("resetting the DM9000, 2nd reset\n");
279 udelay(25); /* Wait at least 20 us */
280 } while (DM9000_ior(DM9000_NCR) & 1);
281
282 /* Check whether the ethernet controller is present */
283 if ((DM9000_ior(DM9000_PIDL) != 0x0) ||
284 (DM9000_ior(DM9000_PIDH) != 0x90))
285 printf("ERROR: resetting DM9000 -> not responding\n");
wdenk281e00a2004-08-01 22:48:16 +0000286}
287
Remy Bohmer60f61e62009-05-02 21:49:18 +0200288/* Initialize dm9000 board
wdenk281e00a2004-08-01 22:48:16 +0000289*/
Remy Bohmer60f61e62009-05-02 21:49:18 +0200290static int dm9000_init(struct eth_device *dev, bd_t *bd)
wdenk281e00a2004-08-01 22:48:16 +0000291{
292 int i, oft, lnk;
Remy Bohmera1013612008-06-03 15:26:21 +0200293 u8 io_mode;
294 struct board_info *db = &dm9000_info;
295
Remy Bohmer60f61e62009-05-02 21:49:18 +0200296 DM9000_DBG("%s\n", __func__);
wdenk281e00a2004-08-01 22:48:16 +0000297
298 /* RESET device */
299 dm9000_reset();
Andrew Dyerd26b7392008-08-26 17:03:38 -0500300
301 if (dm9000_probe() < 0)
302 return -1;
wdenk281e00a2004-08-01 22:48:16 +0000303
Remy Bohmera1013612008-06-03 15:26:21 +0200304 /* Auto-detect 8/16/32 bit mode, ISR Bit 6+7 indicate bus width */
305 io_mode = DM9000_ior(DM9000_ISR) >> 6;
306
307 switch (io_mode) {
308 case 0x0: /* 16-bit mode */
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: /* 32-bit mode */
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: /* 8 bit mode */
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 /* Assume 8 bit mode, will probably not work anyway */
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
Andrew Dyerd26b7392008-08-26 17:03:38 -0500335 /* Program operating register, only internal phy supported */
Remy Bohmer98291e22008-06-03 15:26:26 +0200336 DM9000_iow(DM9000_NCR, 0x0);
337 /* TX Polling clear */
338 DM9000_iow(DM9000_TCR, 0);
339 /* Less 3Kb, 200us */
Andrew Dyerd26b7392008-08-26 17:03:38 -0500340 DM9000_iow(DM9000_BPTR, BPTR_BPHW(3) | BPTR_JPT_600US);
Remy Bohmer98291e22008-06-03 15:26:26 +0200341 /* Flow Control : High/Low Water */
342 DM9000_iow(DM9000_FCTR, FCTR_HWOT(3) | FCTR_LWOT(8));
343 /* SH FIXME: This looks strange! Flow Control */
344 DM9000_iow(DM9000_FCR, 0x0);
345 /* Special Mode */
346 DM9000_iow(DM9000_SMCR, 0);
347 /* clear TX status */
348 DM9000_iow(DM9000_NSR, NSR_WAKEST | NSR_TX2END | NSR_TX1END);
349 /* Clear interrupt status */
Andrew Dyerd26b7392008-08-26 17:03:38 -0500350 DM9000_iow(DM9000_ISR, ISR_ROOS | ISR_ROS | ISR_PTS | ISR_PRS);
wdenk281e00a2004-08-01 22:48:16 +0000351
Ben Warren07754372009-10-21 21:53:39 -0700352 printf("MAC: %pM\n", dev->enetaddr);
Andrew Dyerd26b7392008-08-26 17:03:38 -0500353
354 /* fill device MAC address registers */
355 for (i = 0, oft = DM9000_PAR; i < 6; i++, oft++)
Ben Warren07754372009-10-21 21:53:39 -0700356 DM9000_iow(oft, dev->enetaddr[i]);
wdenk281e00a2004-08-01 22:48:16 +0000357 for (i = 0, oft = 0x16; i < 8; i++, oft++)
358 DM9000_iow(oft, 0xff);
359
360 /* read back mac, just to be sure */
361 for (i = 0, oft = 0x10; i < 6; i++, oft++)
362 DM9000_DBG("%02x:", DM9000_ior(oft));
363 DM9000_DBG("\n");
364
365 /* Activate DM9000 */
Remy Bohmer98291e22008-06-03 15:26:26 +0200366 /* RX enable */
367 DM9000_iow(DM9000_RCR, RCR_DIS_LONG | RCR_DIS_CRC | RCR_RXEN);
368 /* Enable TX/RX interrupt mask */
369 DM9000_iow(DM9000_IMR, IMR_PAR);
370
wdenk281e00a2004-08-01 22:48:16 +0000371 i = 0;
Andy Fleming09c04c22011-03-22 22:49:13 -0500372 while (!(dm9000_phy_read(1) & 0x20)) { /* autonegation complete bit */
wdenk281e00a2004-08-01 22:48:16 +0000373 udelay(1000);
374 i++;
375 if (i == 10000) {
376 printf("could not establish link\n");
377 return 0;
378 }
379 }
380
381 /* see what we've got */
Andy Fleming09c04c22011-03-22 22:49:13 -0500382 lnk = dm9000_phy_read(17) >> 12;
wdenk281e00a2004-08-01 22:48:16 +0000383 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 Hardware start transmission.
407 Send a packet to media from the upper layer.
408*/
Joe Hershberger7f9a8a62012-05-21 14:45:23 +0000409static int dm9000_send(struct eth_device *netdev, void *packet, int length)
wdenk281e00a2004-08-01 22:48:16 +0000410{
wdenk281e00a2004-08-01 22:48:16 +0000411 int tmo;
Remy Bohmera1013612008-06-03 15:26:21 +0200412 struct board_info *db = &dm9000_info;
413
Remy Bohmer60f61e62009-05-02 21:49:18 +0200414 DM9000_DMP_PACKET(__func__ , packet, length);
wdenk281e00a2004-08-01 22:48:16 +0000415
Remy Bohmeracba3182008-06-03 15:26:23 +0200416 DM9000_iow(DM9000_ISR, IMR_PTM); /* Clear Tx bit in ISR */
417
wdenk281e00a2004-08-01 22:48:16 +0000418 /* Move data to DM9000 TX RAM */
Remy Bohmeracba3182008-06-03 15:26:23 +0200419 DM9000_outb(DM9000_MWCMD, DM9000_IO); /* Prepare for TX-data */
wdenk281e00a2004-08-01 22:48:16 +0000420
Remy Bohmera1013612008-06-03 15:26:21 +0200421 /* push the data to the TX-fifo */
Remy Bohmer0e38c932008-06-05 13:03:36 +0200422 (db->outblk)(packet, length);
wdenk281e00a2004-08-01 22:48:16 +0000423
424 /* Set TX length to DM9000 */
425 DM9000_iow(DM9000_TXPLL, length & 0xff);
426 DM9000_iow(DM9000_TXPLH, (length >> 8) & 0xff);
427
428 /* Issue TX polling command */
Remy Bohmeracba3182008-06-03 15:26:23 +0200429 DM9000_iow(DM9000_TCR, TCR_TXREQ); /* Cleared after TX complete */
wdenk281e00a2004-08-01 22:48:16 +0000430
431 /* wait for end of transmission */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200432 tmo = get_timer(0) + 5 * CONFIG_SYS_HZ;
Remy Bohmeracba3182008-06-03 15:26:23 +0200433 while ( !(DM9000_ior(DM9000_NSR) & (NSR_TX1END | NSR_TX2END)) ||
434 !(DM9000_ior(DM9000_ISR) & IMR_PTM) ) {
wdenk281e00a2004-08-01 22:48:16 +0000435 if (get_timer(0) >= tmo) {
436 printf("transmission timeout\n");
437 break;
438 }
439 }
Remy Bohmeracba3182008-06-03 15:26:23 +0200440 DM9000_iow(DM9000_ISR, IMR_PTM); /* Clear Tx bit in ISR */
441
wdenk281e00a2004-08-01 22:48:16 +0000442 DM9000_DBG("transmit done\n\n");
443 return 0;
444}
445
446/*
447 Stop the interface.
448 The interface is stopped when it is brought.
449*/
Remy Bohmer60f61e62009-05-02 21:49:18 +0200450static void dm9000_halt(struct eth_device *netdev)
wdenk281e00a2004-08-01 22:48:16 +0000451{
Remy Bohmer60f61e62009-05-02 21:49:18 +0200452 DM9000_DBG("%s\n", __func__);
wdenk281e00a2004-08-01 22:48:16 +0000453
454 /* RESET devie */
Andy Fleming09c04c22011-03-22 22:49:13 -0500455 dm9000_phy_write(0, 0x8000); /* PHY RESET */
wdenk281e00a2004-08-01 22:48:16 +0000456 DM9000_iow(DM9000_GPR, 0x01); /* Power-Down PHY */
457 DM9000_iow(DM9000_IMR, 0x80); /* Disable all interrupt */
458 DM9000_iow(DM9000_RCR, 0x00); /* Disable RX */
459}
460
461/*
462 Received a packet and pass to upper layer
463*/
Remy Bohmer60f61e62009-05-02 21:49:18 +0200464static int dm9000_rx(struct eth_device *netdev)
wdenk281e00a2004-08-01 22:48:16 +0000465{
466 u8 rxbyte, *rdptr = (u8 *) NetRxPackets[0];
467 u16 RxStatus, RxLen = 0;
Remy Bohmera1013612008-06-03 15:26:21 +0200468 struct board_info *db = &dm9000_info;
wdenk281e00a2004-08-01 22:48:16 +0000469
Remy Bohmer850ba752008-06-03 15:26:25 +0200470 /* Check packet ready or not, we must check
471 the ISR status first for DM9000A */
472 if (!(DM9000_ior(DM9000_ISR) & 0x01)) /* Rx-ISR bit must be set. */
wdenk281e00a2004-08-01 22:48:16 +0000473 return 0;
474
Remy Bohmer850ba752008-06-03 15:26:25 +0200475 DM9000_iow(DM9000_ISR, 0x01); /* clear PR status latched in bit 0 */
wdenk281e00a2004-08-01 22:48:16 +0000476
Remy Bohmer850ba752008-06-03 15:26:25 +0200477 /* There is _at least_ 1 package in the fifo, read them all */
478 for (;;) {
479 DM9000_ior(DM9000_MRCMDX); /* Dummy read */
wdenk281e00a2004-08-01 22:48:16 +0000480
Remy Bohmer0e38c932008-06-05 13:03:36 +0200481 /* Get most updated data,
482 only look at bits 0:1, See application notes DM9000 */
483 rxbyte = DM9000_inb(DM9000_DATA) & 0x03;
wdenk281e00a2004-08-01 22:48:16 +0000484
Remy Bohmer850ba752008-06-03 15:26:25 +0200485 /* Status check: this byte must be 0 or 1 */
486 if (rxbyte > DM9000_PKT_RDY) {
487 DM9000_iow(DM9000_RCR, 0x00); /* Stop Device */
488 DM9000_iow(DM9000_ISR, 0x80); /* Stop INT request */
489 printf("DM9000 error: status check fail: 0x%x\n",
490 rxbyte);
491 return 0;
wdenk281e00a2004-08-01 22:48:16 +0000492 }
wdenk281e00a2004-08-01 22:48:16 +0000493
Remy Bohmer850ba752008-06-03 15:26:25 +0200494 if (rxbyte != DM9000_PKT_RDY)
495 return 0; /* No packet received, ignore */
496
497 DM9000_DBG("receiving packet\n");
498
499 /* A packet ready now & Get status/length */
500 (db->rx_status)(&RxStatus, &RxLen);
501
502 DM9000_DBG("rx status: 0x%04x rx len: %d\n", RxStatus, RxLen);
503
504 /* Move data from DM9000 */
505 /* Read received packet from RX SRAM */
506 (db->inblk)(rdptr, RxLen);
507
508 if ((RxStatus & 0xbf00) || (RxLen < 0x40)
509 || (RxLen > DM9000_PKT_MAX)) {
510 if (RxStatus & 0x100) {
511 printf("rx fifo error\n");
512 }
513 if (RxStatus & 0x200) {
514 printf("rx crc error\n");
515 }
516 if (RxStatus & 0x8000) {
517 printf("rx length error\n");
518 }
519 if (RxLen > DM9000_PKT_MAX) {
520 printf("rx length too big\n");
521 dm9000_reset();
522 }
523 } else {
Remy Bohmer60f61e62009-05-02 21:49:18 +0200524 DM9000_DMP_PACKET(__func__ , rdptr, RxLen);
Remy Bohmer850ba752008-06-03 15:26:25 +0200525
526 DM9000_DBG("passing packet to upper layer\n");
527 NetReceive(NetRxPackets[0], RxLen);
528 }
wdenk281e00a2004-08-01 22:48:16 +0000529 }
530 return 0;
531}
532
533/*
534 Read a word data from SROM
535*/
Remy Bohmere5a3bc22009-05-03 12:11:40 +0200536#if !defined(CONFIG_DM9000_NO_SROM)
537void dm9000_read_srom_word(int offset, u8 *to)
wdenk281e00a2004-08-01 22:48:16 +0000538{
539 DM9000_iow(DM9000_EPAR, offset);
540 DM9000_iow(DM9000_EPCR, 0x4);
stefano babic5f470942007-08-21 15:50:33 +0200541 udelay(8000);
wdenk281e00a2004-08-01 22:48:16 +0000542 DM9000_iow(DM9000_EPCR, 0x0);
David Brownellad74cae2009-04-16 23:15:15 -0700543 to[0] = DM9000_ior(DM9000_EPDRL);
544 to[1] = DM9000_ior(DM9000_EPDRH);
wdenk281e00a2004-08-01 22:48:16 +0000545}
546
Remy Bohmere5a3bc22009-05-03 12:11:40 +0200547void dm9000_write_srom_word(int offset, u16 val)
stefano babic5e5803e2007-08-30 23:01:49 +0200548{
549 DM9000_iow(DM9000_EPAR, offset);
550 DM9000_iow(DM9000_EPDRH, ((val >> 8) & 0xff));
551 DM9000_iow(DM9000_EPDRL, (val & 0xff));
552 DM9000_iow(DM9000_EPCR, 0x12);
553 udelay(8000);
554 DM9000_iow(DM9000_EPCR, 0);
555}
Remy Bohmere5a3bc22009-05-03 12:11:40 +0200556#endif
stefano babic5e5803e2007-08-30 23:01:49 +0200557
Ben Warren07754372009-10-21 21:53:39 -0700558static void dm9000_get_enetaddr(struct eth_device *dev)
559{
560#if !defined(CONFIG_DM9000_NO_SROM)
561 int i;
562 for (i = 0; i < 3; i++)
563 dm9000_read_srom_word(i, dev->enetaddr + (2 * i));
564#endif
565}
566
wdenk281e00a2004-08-01 22:48:16 +0000567/*
568 Read a byte from I/O port
569*/
570static u8
571DM9000_ior(int reg)
572{
573 DM9000_outb(reg, DM9000_IO);
574 return DM9000_inb(DM9000_DATA);
575}
576
577/*
578 Write a byte to I/O port
579*/
580static void
581DM9000_iow(int reg, u8 value)
582{
583 DM9000_outb(reg, DM9000_IO);
584 DM9000_outb(value, DM9000_DATA);
585}
586
587/*
588 Read a word from phyxcer
589*/
590static u16
Andy Fleming09c04c22011-03-22 22:49:13 -0500591dm9000_phy_read(int reg)
wdenk281e00a2004-08-01 22:48:16 +0000592{
593 u16 val;
594
595 /* Fill the phyxcer register into REG_0C */
596 DM9000_iow(DM9000_EPAR, DM9000_PHY | reg);
597 DM9000_iow(DM9000_EPCR, 0xc); /* Issue phyxcer read command */
Remy Bohmer98291e22008-06-03 15:26:26 +0200598 udelay(100); /* Wait read complete */
wdenk281e00a2004-08-01 22:48:16 +0000599 DM9000_iow(DM9000_EPCR, 0x0); /* Clear phyxcer read command */
600 val = (DM9000_ior(DM9000_EPDRH) << 8) | DM9000_ior(DM9000_EPDRL);
601
602 /* The read data keeps on REG_0D & REG_0E */
Andy Fleming09c04c22011-03-22 22:49:13 -0500603 DM9000_DBG("dm9000_phy_read(0x%x): 0x%x\n", reg, val);
wdenk281e00a2004-08-01 22:48:16 +0000604 return val;
605}
606
607/*
608 Write a word to phyxcer
609*/
610static void
Andy Fleming09c04c22011-03-22 22:49:13 -0500611dm9000_phy_write(int reg, u16 value)
wdenk281e00a2004-08-01 22:48:16 +0000612{
613
614 /* Fill the phyxcer register into REG_0C */
615 DM9000_iow(DM9000_EPAR, DM9000_PHY | reg);
616
617 /* Fill the written data into REG_0D & REG_0E */
618 DM9000_iow(DM9000_EPDRL, (value & 0xff));
619 DM9000_iow(DM9000_EPDRH, ((value >> 8) & 0xff));
620 DM9000_iow(DM9000_EPCR, 0xa); /* Issue phyxcer write command */
Remy Bohmer98291e22008-06-03 15:26:26 +0200621 udelay(500); /* Wait write complete */
wdenk281e00a2004-08-01 22:48:16 +0000622 DM9000_iow(DM9000_EPCR, 0x0); /* Clear phyxcer write command */
Andy Fleming09c04c22011-03-22 22:49:13 -0500623 DM9000_DBG("dm9000_phy_write(reg:0x%x, value:0x%x)\n", reg, value);
wdenk281e00a2004-08-01 22:48:16 +0000624}
Remy Bohmer60f61e62009-05-02 21:49:18 +0200625
626int dm9000_initialize(bd_t *bis)
627{
628 struct eth_device *dev = &(dm9000_info.netdev);
629
Ben Warren07754372009-10-21 21:53:39 -0700630 /* Load MAC address from EEPROM */
631 dm9000_get_enetaddr(dev);
632
Remy Bohmer60f61e62009-05-02 21:49:18 +0200633 dev->init = dm9000_init;
634 dev->halt = dm9000_halt;
635 dev->send = dm9000_send;
636 dev->recv = dm9000_rx;
637 sprintf(dev->name, "dm9000");
638
639 eth_register(dev);
640
641 return 0;
642}