blob: 28a99bb8c48ef61e6c4c3abc60d4d862cf8dab34 [file] [log] [blame]
wdenk8ed96042005-01-09 23:16:25 +00001/*
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +02002Ported to U-Boot by Christian Pellegrin <chri@ascensit.com>
wdenk8ed96042005-01-09 23:16:25 +00003
4Based on sources from the Linux kernel (pcnet_cs.c, 8390.h) and
5eCOS(if_dp83902a.c, if_dp83902a.h). Both of these 2 wonderful world
6are GPL, so this is, of course, GPL.
7
wdenk8ed96042005-01-09 23:16:25 +00008==========================================================================
9
10dev/if_dp83902a.c
11
12Ethernet device driver for NS DP83902a ethernet controller
13
14==========================================================================
15####ECOSGPLCOPYRIGHTBEGIN####
16-------------------------------------------
17This file is part of eCos, the Embedded Configurable Operating System.
18Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
19
20eCos is free software; you can redistribute it and/or modify it under
21the terms of the GNU General Public License as published by the Free
22Software Foundation; either version 2 or (at your option) any later version.
23
24eCos is distributed in the hope that it will be useful, but WITHOUT ANY
25WARRANTY; without even the implied warranty of MERCHANTABILITY or
26FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
27for more details.
28
29You should have received a copy of the GNU General Public License along
30with eCos; if not, write to the Free Software Foundation, Inc.,
3159 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
32
33As a special exception, if other files instantiate templates or use macros
34or inline functions from this file, or you compile this file and link it
35with other works to produce a work based on this file, this file does not
36by itself cause the resulting work to be covered by the GNU General Public
37License. However the source code for this file must still be made available
38in accordance with section (3) of the GNU General Public License.
39
40This exception does not invalidate any other reasons why a work based on
41this file might be covered by the GNU General Public License.
42
43Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
44at http://sources.redhat.com/ecos/ecos-license/
45-------------------------------------------
46####ECOSGPLCOPYRIGHTEND####
47####BSDCOPYRIGHTBEGIN####
48
49-------------------------------------------
50
51Portions of this software may have been derived from OpenBSD or other sources,
52and are covered by the appropriate copyright disclaimers included herein.
53
54-------------------------------------------
55
56####BSDCOPYRIGHTEND####
57==========================================================================
58#####DESCRIPTIONBEGIN####
59
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +020060Author(s): gthomas
61Contributors: gthomas, jskov, rsandifo
62Date: 2001-06-13
wdenk8ed96042005-01-09 23:16:25 +000063Purpose:
64Description:
65
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +020066FIXME: Will fail if pinged with large packets (1520 bytes)
wdenk8ed96042005-01-09 23:16:25 +000067Add promisc config
68Add SNMP
69
70####DESCRIPTIONEND####
71
wdenk8ed96042005-01-09 23:16:25 +000072==========================================================================
wdenk8ed96042005-01-09 23:16:25 +000073*/
74
75#include <common.h>
76#include <command.h>
Simon Glassc05ed002020-05-10 11:40:11 -060077#include <linux/delay.h>
wdenk8ed96042005-01-09 23:16:25 +000078
goda.yusukee7101852008-03-05 17:08:20 +090079/* NE2000 base header file */
80#include "ne2000_base.h"
81
wdenk8ed96042005-01-09 23:16:25 +000082/* find prom (taken from pc_net_cs.c from Linux) */
83
84#include "8390.h"
goda.yusukee7101852008-03-05 17:08:20 +090085/*
wdenk8ed96042005-01-09 23:16:25 +000086typedef struct hw_info_t {
87 u_int offset;
88 u_char a0, a1, a2;
89 u_int flags;
90} hw_info_t;
goda.yusukee7101852008-03-05 17:08:20 +090091*/
wdenk8ed96042005-01-09 23:16:25 +000092#define DELAY_OUTPUT 0x01
93#define HAS_MISC_REG 0x02
94#define USE_BIG_BUF 0x04
95#define HAS_IBM_MISC 0x08
96#define IS_DL10019 0x10
97#define IS_DL10022 0x20
98#define HAS_MII 0x40
99#define USE_SHMEM 0x80 /* autodetected */
100
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200101#define AM79C9XX_HOME_PHY 0x00006B90 /* HomePNA PHY */
102#define AM79C9XX_ETH_PHY 0x00006B70 /* 10baseT PHY */
wdenk8ed96042005-01-09 23:16:25 +0000103#define MII_PHYID_REV_MASK 0xfffffff0
104#define MII_PHYID_REG1 0x02
105#define MII_PHYID_REG2 0x03
106
107static hw_info_t hw_info[] = {
108 { /* Accton EN2212 */ 0x0ff0, 0x00, 0x00, 0xe8, DELAY_OUTPUT },
109 { /* Allied Telesis LA-PCM */ 0x0ff0, 0x00, 0x00, 0xf4, 0 },
110 { /* APEX MultiCard */ 0x03f4, 0x00, 0x20, 0xe5, 0 },
111 { /* ASANTE FriendlyNet */ 0x4910, 0x00, 0x00, 0x94,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200112 DELAY_OUTPUT | HAS_IBM_MISC },
wdenk8ed96042005-01-09 23:16:25 +0000113 { /* Danpex EN-6200P2 */ 0x0110, 0x00, 0x40, 0xc7, 0 },
114 { /* DataTrek NetCard */ 0x0ff0, 0x00, 0x20, 0xe8, 0 },
115 { /* Dayna CommuniCard E */ 0x0110, 0x00, 0x80, 0x19, 0 },
116 { /* D-Link DE-650 */ 0x0040, 0x00, 0x80, 0xc8, 0 },
117 { /* EP-210 Ethernet */ 0x0110, 0x00, 0x40, 0x33, 0 },
118 { /* EP4000 Ethernet */ 0x01c0, 0x00, 0x00, 0xb4, 0 },
119 { /* Epson EEN10B */ 0x0ff0, 0x00, 0x00, 0x48,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200120 HAS_MISC_REG | HAS_IBM_MISC },
wdenk8ed96042005-01-09 23:16:25 +0000121 { /* ELECOM Laneed LD-CDWA */ 0xb8, 0x08, 0x00, 0x42, 0 },
122 { /* Hypertec Ethernet */ 0x01c0, 0x00, 0x40, 0x4c, 0 },
123 { /* IBM CCAE */ 0x0ff0, 0x08, 0x00, 0x5a,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200124 HAS_MISC_REG | HAS_IBM_MISC },
wdenk8ed96042005-01-09 23:16:25 +0000125 { /* IBM CCAE */ 0x0ff0, 0x00, 0x04, 0xac,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200126 HAS_MISC_REG | HAS_IBM_MISC },
wdenk8ed96042005-01-09 23:16:25 +0000127 { /* IBM CCAE */ 0x0ff0, 0x00, 0x06, 0x29,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200128 HAS_MISC_REG | HAS_IBM_MISC },
wdenk8ed96042005-01-09 23:16:25 +0000129 { /* IBM FME */ 0x0374, 0x08, 0x00, 0x5a,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200130 HAS_MISC_REG | HAS_IBM_MISC },
wdenk8ed96042005-01-09 23:16:25 +0000131 { /* IBM FME */ 0x0374, 0x00, 0x04, 0xac,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200132 HAS_MISC_REG | HAS_IBM_MISC },
wdenk8ed96042005-01-09 23:16:25 +0000133 { /* Kansai KLA-PCM/T */ 0x0ff0, 0x00, 0x60, 0x87,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200134 HAS_MISC_REG | HAS_IBM_MISC },
wdenk8ed96042005-01-09 23:16:25 +0000135 { /* NSC DP83903 */ 0x0374, 0x08, 0x00, 0x17,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200136 HAS_MISC_REG | HAS_IBM_MISC },
wdenk8ed96042005-01-09 23:16:25 +0000137 { /* NSC DP83903 */ 0x0374, 0x00, 0xc0, 0xa8,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200138 HAS_MISC_REG | HAS_IBM_MISC },
wdenk8ed96042005-01-09 23:16:25 +0000139 { /* NSC DP83903 */ 0x0374, 0x00, 0xa0, 0xb0,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200140 HAS_MISC_REG | HAS_IBM_MISC },
wdenk8ed96042005-01-09 23:16:25 +0000141 { /* NSC DP83903 */ 0x0198, 0x00, 0x20, 0xe0,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200142 HAS_MISC_REG | HAS_IBM_MISC },
wdenk8ed96042005-01-09 23:16:25 +0000143 { /* I-O DATA PCLA/T */ 0x0ff0, 0x00, 0xa0, 0xb0, 0 },
144 { /* Katron PE-520 */ 0x0110, 0x00, 0x40, 0xf6, 0 },
145 { /* Kingston KNE-PCM/x */ 0x0ff0, 0x00, 0xc0, 0xf0,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200146 HAS_MISC_REG | HAS_IBM_MISC },
wdenk8ed96042005-01-09 23:16:25 +0000147 { /* Kingston KNE-PCM/x */ 0x0ff0, 0xe2, 0x0c, 0x0f,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200148 HAS_MISC_REG | HAS_IBM_MISC },
wdenk8ed96042005-01-09 23:16:25 +0000149 { /* Kingston KNE-PC2 */ 0x0180, 0x00, 0xc0, 0xf0, 0 },
150 { /* Maxtech PCN2000 */ 0x5000, 0x00, 0x00, 0xe8, 0 },
151 { /* NDC Instant-Link */ 0x003a, 0x00, 0x80, 0xc6, 0 },
152 { /* NE2000 Compatible */ 0x0ff0, 0x00, 0xa0, 0x0c, 0 },
153 { /* Network General Sniffer */ 0x0ff0, 0x00, 0x00, 0x65,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200154 HAS_MISC_REG | HAS_IBM_MISC },
wdenk8ed96042005-01-09 23:16:25 +0000155 { /* Panasonic VEL211 */ 0x0ff0, 0x00, 0x80, 0x45,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200156 HAS_MISC_REG | HAS_IBM_MISC },
wdenk8ed96042005-01-09 23:16:25 +0000157 { /* PreMax PE-200 */ 0x07f0, 0x00, 0x20, 0xe0, 0 },
158 { /* RPTI EP400 */ 0x0110, 0x00, 0x40, 0x95, 0 },
159 { /* SCM Ethernet */ 0x0ff0, 0x00, 0x20, 0xcb, 0 },
160 { /* Socket EA */ 0x4000, 0x00, 0xc0, 0x1b,
Jean-Christophe PLAGNIOL-VILLARD4acbc6c2008-04-24 07:57:16 +0200161 DELAY_OUTPUT | HAS_MISC_REG | USE_BIG_BUF },
wdenk8ed96042005-01-09 23:16:25 +0000162 { /* Socket LP-E CF+ */ 0x01c0, 0x00, 0xc0, 0x1b, 0 },
163 { /* SuperSocket RE450T */ 0x0110, 0x00, 0xe0, 0x98, 0 },
164 { /* Volktek NPL-402CT */ 0x0060, 0x00, 0x40, 0x05, 0 },
165 { /* NEC PC-9801N-J12 */ 0x0ff0, 0x00, 0x00, 0x4c, 0 },
Vlad Lunguec227552007-10-25 16:08:14 +0300166 { /* PCMCIA Technology OEM */ 0x01c8, 0x00, 0xa0, 0x0c, 0 },
Nobuhiro Iwamatsu327f55c2010-10-26 20:32:00 +0900167 { /* Qemu */ 0x0, 0x52, 0x54, 0x00, 0 },
168 { /* RTL8019AS */ 0x0, 0x0, 0x18, 0x5f, 0 }
wdenk8ed96042005-01-09 23:16:25 +0000169};
170
171#define NR_INFO (sizeof(hw_info)/sizeof(hw_info_t))
172
wdenk8ed96042005-01-09 23:16:25 +0000173#define PCNET_CMD 0x00
174#define PCNET_DATAPORT 0x10 /* NatSemi-defined port window offset. */
175#define PCNET_RESET 0x1f /* Issue a read to reset, a write to clear. */
176#define PCNET_MISC 0x18 /* For IBM CCAE and Socket EA cards */
177
Nobuhiro Iwamatsu702c85b2008-09-30 15:02:53 +0900178static void pcnet_reset_8390(u8* addr)
Jean-Christophe PLAGNIOL-VILLARD2ef75032008-04-24 07:57:17 +0200179{
180 int i, r;
181
Jean-Christophe PLAGNIOL-VILLARD2ef75032008-04-24 07:57:17 +0200182 n2k_outb(E8390_NODMA + E8390_PAGE0+E8390_STOP, E8390_CMD);
Nobuhiro Iwamatsu702c85b2008-09-30 15:02:53 +0900183 PRINTK("cmd (at %lx) is %x\n", addr + E8390_CMD, n2k_inb(E8390_CMD));
Jean-Christophe PLAGNIOL-VILLARD2ef75032008-04-24 07:57:17 +0200184 n2k_outb(E8390_NODMA+E8390_PAGE1+E8390_STOP, E8390_CMD);
Nobuhiro Iwamatsu702c85b2008-09-30 15:02:53 +0900185 PRINTK("cmd (at %lx) is %x\n", addr + E8390_CMD, n2k_inb(E8390_CMD));
Jean-Christophe PLAGNIOL-VILLARD2ef75032008-04-24 07:57:17 +0200186 n2k_outb(E8390_NODMA+E8390_PAGE0+E8390_STOP, E8390_CMD);
Nobuhiro Iwamatsu702c85b2008-09-30 15:02:53 +0900187 PRINTK("cmd (at %lx) is %x\n", addr + E8390_CMD, n2k_inb(E8390_CMD));
Jean-Christophe PLAGNIOL-VILLARD2ef75032008-04-24 07:57:17 +0200188 n2k_outb(E8390_NODMA+E8390_PAGE0+E8390_STOP, E8390_CMD);
189
190 n2k_outb(n2k_inb(PCNET_RESET), PCNET_RESET);
191
192 for (i = 0; i < 100; i++) {
193 if ((r = (n2k_inb(EN0_ISR) & ENISR_RESET)) != 0)
194 break;
195 PRINTK("got %x in reset\n", r);
196 udelay(100);
197 }
198 n2k_outb(ENISR_RESET, EN0_ISR); /* Ack intr. */
199
200 if (i == 100)
201 printf("pcnet_reset_8390() did not complete.\n");
202} /* pcnet_reset_8390 */
203
Nobuhiro Iwamatsu702c85b2008-09-30 15:02:53 +0900204int get_prom(u8* mac_addr, u8* base_addr)
Jean-Christophe PLAGNIOL-VILLARD2ef75032008-04-24 07:57:17 +0200205{
206 u8 prom[32];
207 int i, j;
208 struct {
209 u_char value, offset;
210 } program_seq[] = {
211 {E8390_NODMA+E8390_PAGE0+E8390_STOP, E8390_CMD}, /* Select page 0*/
212 {0x48, EN0_DCFG}, /* Set byte-wide (0x48) access. */
213 {0x00, EN0_RCNTLO}, /* Clear the count regs. */
214 {0x00, EN0_RCNTHI},
215 {0x00, EN0_IMR}, /* Mask completion irq. */
216 {0xFF, EN0_ISR},
217 {E8390_RXOFF, EN0_RXCR}, /* 0x20 Set to monitor */
218 {E8390_TXOFF, EN0_TXCR}, /* 0x02 and loopback mode. */
219 {32, EN0_RCNTLO},
220 {0x00, EN0_RCNTHI},
221 {0x00, EN0_RSARLO}, /* DMA starting at 0x0000. */
222 {0x00, EN0_RSARHI},
223 {E8390_RREAD+E8390_START, E8390_CMD},
224 };
225
226 PRINTK ("trying to get MAC via prom reading\n");
227
Nobuhiro Iwamatsu702c85b2008-09-30 15:02:53 +0900228 pcnet_reset_8390 (base_addr);
Jean-Christophe PLAGNIOL-VILLARD2ef75032008-04-24 07:57:17 +0200229
230 mdelay (10);
231
Axel Lina62cd292013-07-03 11:24:18 +0800232 for (i = 0; i < ARRAY_SIZE(program_seq); i++)
Jean-Christophe PLAGNIOL-VILLARD2ef75032008-04-24 07:57:17 +0200233 n2k_outb (program_seq[i].value, program_seq[i].offset);
234
235 PRINTK ("PROM:");
236 for (i = 0; i < 32; i++) {
237 prom[i] = n2k_inb (PCNET_DATAPORT);
238 PRINTK (" %02x", prom[i]);
239 }
240 PRINTK ("\n");
241 for (i = 0; i < NR_INFO; i++) {
242 if ((prom[0] == hw_info[i].a0) &&
243 (prom[2] == hw_info[i].a1) &&
244 (prom[4] == hw_info[i].a2)) {
245 PRINTK ("matched board %d\n", i);
246 break;
247 }
248 }
249 if ((i < NR_INFO) || ((prom[28] == 0x57) && (prom[30] == 0x57))) {
250 PRINTK ("on exit i is %d/%ld\n", i, NR_INFO);
251 PRINTK ("MAC address is ");
252 for (j = 0; j < 6; j++) {
253 mac_addr[j] = prom[j << 1];
254 PRINTK ("%02x:", mac_addr[i]);
255 }
256 PRINTK ("\n");
257 return (i < NR_INFO) ? i : 0;
258 }
259 return 0;
260}