blob: dd902386b14c42c6133e2bf274fda660319bfa64 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk1df49e22002-09-17 21:37:55 +00002/*
3 * (C) Copyright 2002
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk1df49e22002-09-17 21:37:55 +00005 */
6
7#include <common.h>
8#include <malloc.h>
9#include <net.h>
Ben Warren10efa022008-08-31 20:37:00 -070010#include <netdev.h>
wdenk1df49e22002-09-17 21:37:55 +000011#include <asm/io.h>
12#include <pci.h>
Marian Balakowicz63ff0042005-10-28 22:30:33 +020013#include <miiphy.h>
Simon Glassc05ed002020-05-10 11:40:11 -060014#include <linux/delay.h>
wdenk1df49e22002-09-17 21:37:55 +000015
Marek Vasutaba283d2020-05-23 12:49:16 +020016/* Ethernet chip registers. */
Wolfgang Denkc570b2f2005-09-26 01:06:33 +020017#define SCBStatus 0 /* Rx/Command Unit Status *Word* */
18#define SCBIntAckByte 1 /* Rx/Command Unit STAT/ACK byte */
19#define SCBCmd 2 /* Rx/Command Unit Command *Word* */
20#define SCBIntrCtlByte 3 /* Rx/Command Unit Intr.Control Byte */
21#define SCBPointer 4 /* General purpose pointer. */
22#define SCBPort 8 /* Misc. commands and operands. */
23#define SCBflash 12 /* Flash memory control. */
24#define SCBeeprom 14 /* EEPROM memory control. */
25#define SCBCtrlMDI 16 /* MDI interface control. */
26#define SCBEarlyRx 20 /* Early receive byte count. */
27#define SCBGenControl 28 /* 82559 General Control Register */
28#define SCBGenStatus 29 /* 82559 General Status register */
wdenk1df49e22002-09-17 21:37:55 +000029
Marek Vasutaba283d2020-05-23 12:49:16 +020030/* 82559 SCB status word defnitions */
Wolfgang Denkc570b2f2005-09-26 01:06:33 +020031#define SCB_STATUS_CX 0x8000 /* CU finished command (transmit) */
32#define SCB_STATUS_FR 0x4000 /* frame received */
33#define SCB_STATUS_CNA 0x2000 /* CU left active state */
34#define SCB_STATUS_RNR 0x1000 /* receiver left ready state */
35#define SCB_STATUS_MDI 0x0800 /* MDI read/write cycle done */
36#define SCB_STATUS_SWI 0x0400 /* software generated interrupt */
37#define SCB_STATUS_FCP 0x0100 /* flow control pause interrupt */
wdenk1df49e22002-09-17 21:37:55 +000038
Wolfgang Denkc570b2f2005-09-26 01:06:33 +020039#define SCB_INTACK_MASK 0xFD00 /* all the above */
wdenk1df49e22002-09-17 21:37:55 +000040
Wolfgang Denkc570b2f2005-09-26 01:06:33 +020041#define SCB_INTACK_TX (SCB_STATUS_CX | SCB_STATUS_CNA)
42#define SCB_INTACK_RX (SCB_STATUS_FR | SCB_STATUS_RNR)
wdenk1df49e22002-09-17 21:37:55 +000043
Marek Vasutaba283d2020-05-23 12:49:16 +020044/* System control block commands */
wdenk1df49e22002-09-17 21:37:55 +000045/* CU Commands */
Wolfgang Denkc570b2f2005-09-26 01:06:33 +020046#define CU_NOP 0x0000
47#define CU_START 0x0010
48#define CU_RESUME 0x0020
49#define CU_STATSADDR 0x0040 /* Load Dump Statistics ctrs addr */
50#define CU_SHOWSTATS 0x0050 /* Dump statistics counters. */
51#define CU_ADDR_LOAD 0x0060 /* Base address to add to CU commands */
52#define CU_DUMPSTATS 0x0070 /* Dump then reset stats counters. */
wdenk1df49e22002-09-17 21:37:55 +000053
54/* RUC Commands */
Wolfgang Denkc570b2f2005-09-26 01:06:33 +020055#define RUC_NOP 0x0000
56#define RUC_START 0x0001
57#define RUC_RESUME 0x0002
58#define RUC_ABORT 0x0004
59#define RUC_ADDR_LOAD 0x0006 /* (seems not to clear on acceptance) */
60#define RUC_RESUMENR 0x0007
wdenk1df49e22002-09-17 21:37:55 +000061
Wolfgang Denkc570b2f2005-09-26 01:06:33 +020062#define CU_CMD_MASK 0x00f0
63#define RU_CMD_MASK 0x0007
wdenk1df49e22002-09-17 21:37:55 +000064
Wolfgang Denkc570b2f2005-09-26 01:06:33 +020065#define SCB_M 0x0100 /* 0 = enable interrupt, 1 = disable */
66#define SCB_SWI 0x0200 /* 1 - cause device to interrupt */
wdenk1df49e22002-09-17 21:37:55 +000067
Wolfgang Denkc570b2f2005-09-26 01:06:33 +020068#define CU_STATUS_MASK 0x00C0
69#define RU_STATUS_MASK 0x003C
wdenk1df49e22002-09-17 21:37:55 +000070
Wolfgang Denkc570b2f2005-09-26 01:06:33 +020071#define RU_STATUS_IDLE (0<<2)
72#define RU_STATUS_SUS (1<<2)
73#define RU_STATUS_NORES (2<<2)
74#define RU_STATUS_READY (4<<2)
75#define RU_STATUS_NO_RBDS_SUS ((1<<2)|(8<<2))
wdenk1df49e22002-09-17 21:37:55 +000076#define RU_STATUS_NO_RBDS_NORES ((2<<2)|(8<<2))
77#define RU_STATUS_NO_RBDS_READY ((4<<2)|(8<<2))
78
Marek Vasutaba283d2020-05-23 12:49:16 +020079/* 82559 Port interface commands. */
wdenk1df49e22002-09-17 21:37:55 +000080#define I82559_RESET 0x00000000 /* Software reset */
81#define I82559_SELFTEST 0x00000001 /* 82559 Selftest command */
82#define I82559_SELECTIVE_RESET 0x00000002
83#define I82559_DUMP 0x00000003
84#define I82559_DUMP_WAKEUP 0x00000007
85
Marek Vasutaba283d2020-05-23 12:49:16 +020086/* 82559 Eeprom interface. */
wdenk1df49e22002-09-17 21:37:55 +000087#define EE_SHIFT_CLK 0x01 /* EEPROM shift clock. */
88#define EE_CS 0x02 /* EEPROM chip select. */
89#define EE_DATA_WRITE 0x04 /* EEPROM chip data in. */
90#define EE_WRITE_0 0x01
91#define EE_WRITE_1 0x05
92#define EE_DATA_READ 0x08 /* EEPROM chip data out. */
93#define EE_ENB (0x4800 | EE_CS)
94#define EE_CMD_BITS 3
95#define EE_DATA_BITS 16
96
Marek Vasutaba283d2020-05-23 12:49:16 +020097/* The EEPROM commands include the alway-set leading bit. */
wdenk1df49e22002-09-17 21:37:55 +000098#define EE_EWENB_CMD (4 << addr_len)
99#define EE_WRITE_CMD (5 << addr_len)
100#define EE_READ_CMD (6 << addr_len)
101#define EE_ERASE_CMD (7 << addr_len)
102
Marek Vasutaba283d2020-05-23 12:49:16 +0200103/* Receive frame descriptors. */
wdenk1df49e22002-09-17 21:37:55 +0000104struct RxFD {
105 volatile u16 status;
106 volatile u16 control;
107 volatile u32 link; /* struct RxFD * */
108 volatile u32 rx_buf_addr; /* void * */
109 volatile u32 count;
110
111 volatile u8 data[PKTSIZE_ALIGN];
112};
113
114#define RFD_STATUS_C 0x8000 /* completion of received frame */
Wolfgang Denkc570b2f2005-09-26 01:06:33 +0200115#define RFD_STATUS_OK 0x2000 /* frame received with no errors */
wdenk1df49e22002-09-17 21:37:55 +0000116
Wolfgang Denkc570b2f2005-09-26 01:06:33 +0200117#define RFD_CONTROL_EL 0x8000 /* 1=last RFD in RFA */
118#define RFD_CONTROL_S 0x4000 /* 1=suspend RU after receiving frame */
119#define RFD_CONTROL_H 0x0010 /* 1=RFD is a header RFD */
120#define RFD_CONTROL_SF 0x0008 /* 0=simplified, 1=flexible mode */
wdenk1df49e22002-09-17 21:37:55 +0000121
Wolfgang Denkc570b2f2005-09-26 01:06:33 +0200122#define RFD_COUNT_MASK 0x3fff
123#define RFD_COUNT_F 0x4000
124#define RFD_COUNT_EOF 0x8000
wdenk1df49e22002-09-17 21:37:55 +0000125
Wolfgang Denkc570b2f2005-09-26 01:06:33 +0200126#define RFD_RX_CRC 0x0800 /* crc error */
127#define RFD_RX_ALIGNMENT 0x0400 /* alignment error */
128#define RFD_RX_RESOURCE 0x0200 /* out of space, no resources */
129#define RFD_RX_DMA_OVER 0x0100 /* DMA overrun */
130#define RFD_RX_SHORT 0x0080 /* short frame error */
131#define RFD_RX_LENGTH 0x0020
132#define RFD_RX_ERROR 0x0010 /* receive error */
133#define RFD_RX_NO_ADR_MATCH 0x0004 /* no address match */
134#define RFD_RX_IA_MATCH 0x0002 /* individual address does not match */
135#define RFD_RX_TCO 0x0001 /* TCO indication */
wdenk1df49e22002-09-17 21:37:55 +0000136
Marek Vasutaba283d2020-05-23 12:49:16 +0200137/* Transmit frame descriptors */
wdenk1df49e22002-09-17 21:37:55 +0000138struct TxFD { /* Transmit frame descriptor set. */
139 volatile u16 status;
140 volatile u16 command;
141 volatile u32 link; /* void * */
142 volatile u32 tx_desc_addr; /* Always points to the tx_buf_addr element. */
143 volatile s32 count;
144
Marek Vasutaba283d2020-05-23 12:49:16 +0200145 volatile u32 tx_buf_addr0; /* void *, frame to be transmitted. */
wdenk1df49e22002-09-17 21:37:55 +0000146 volatile s32 tx_buf_size0; /* Length of Tx frame. */
Marek Vasutaba283d2020-05-23 12:49:16 +0200147 volatile u32 tx_buf_addr1; /* void *, frame to be transmitted. */
wdenk1df49e22002-09-17 21:37:55 +0000148 volatile s32 tx_buf_size1; /* Length of Tx frame. */
149};
150
151#define TxCB_CMD_TRANSMIT 0x0004 /* transmit command */
Wolfgang Denkc570b2f2005-09-26 01:06:33 +0200152#define TxCB_CMD_SF 0x0008 /* 0=simplified, 1=flexible mode */
153#define TxCB_CMD_NC 0x0010 /* 0=CRC insert by controller */
154#define TxCB_CMD_I 0x2000 /* generate interrupt on completion */
155#define TxCB_CMD_S 0x4000 /* suspend on completion */
156#define TxCB_CMD_EL 0x8000 /* last command block in CBL */
wdenk1df49e22002-09-17 21:37:55 +0000157
Wolfgang Denkc570b2f2005-09-26 01:06:33 +0200158#define TxCB_COUNT_MASK 0x3fff
159#define TxCB_COUNT_EOF 0x8000
wdenk1df49e22002-09-17 21:37:55 +0000160
Marek Vasutaba283d2020-05-23 12:49:16 +0200161/* The Speedo3 Rx and Tx frame/buffer descriptors. */
wdenk1df49e22002-09-17 21:37:55 +0000162struct descriptor { /* A generic descriptor. */
163 volatile u16 status;
164 volatile u16 command;
Marek Vasutaba283d2020-05-23 12:49:16 +0200165 volatile u32 link; /* struct descriptor * */
wdenk1df49e22002-09-17 21:37:55 +0000166
167 unsigned char params[0];
168};
169
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200170#define CONFIG_SYS_CMD_EL 0x8000
171#define CONFIG_SYS_CMD_SUSPEND 0x4000
172#define CONFIG_SYS_CMD_INT 0x2000
173#define CONFIG_SYS_CMD_IAS 0x0001 /* individual address setup */
174#define CONFIG_SYS_CMD_CONFIGURE 0x0002 /* configure */
wdenk1df49e22002-09-17 21:37:55 +0000175
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200176#define CONFIG_SYS_STATUS_C 0x8000
177#define CONFIG_SYS_STATUS_OK 0x2000
wdenk1df49e22002-09-17 21:37:55 +0000178
Marek Vasutaba283d2020-05-23 12:49:16 +0200179/* Misc. */
Wolfgang Denkc570b2f2005-09-26 01:06:33 +0200180#define NUM_RX_DESC PKTBUFSRX
Marek Vasutaba283d2020-05-23 12:49:16 +0200181#define NUM_TX_DESC 1 /* Number of TX descriptors */
wdenk1df49e22002-09-17 21:37:55 +0000182
183#define TOUT_LOOP 1000000
184
Marek Vasutaba283d2020-05-23 12:49:16 +0200185static struct RxFD rx_ring[NUM_RX_DESC]; /* RX descriptor ring */
186static struct TxFD tx_ring[NUM_TX_DESC]; /* TX descriptor ring */
wdenk1df49e22002-09-17 21:37:55 +0000187static int rx_next; /* RX descriptor ring pointer */
188static int tx_next; /* TX descriptor ring pointer */
189static int tx_threshold;
190
191/*
192 * The parameters for a CmdConfigure operation.
193 * There are so many options that it would be difficult to document
194 * each bit. We mostly use the default or recommended settings.
195 */
wdenk1df49e22002-09-17 21:37:55 +0000196static const char i82558_config_cmd[] = {
197 22, 0x08, 0, 1, 0, 0, 0x22, 0x03, 1, /* 1=Use MII 0=Use AUI */
198 0, 0x2E, 0, 0x60, 0x08, 0x88,
199 0x68, 0, 0x40, 0xf2, 0x84, /* Disable FC */
200 0x31, 0x05,
201};
202
203static void init_rx_ring (struct eth_device *dev);
204static void purge_tx_ring (struct eth_device *dev);
205
206static void read_hw_addr (struct eth_device *dev, bd_t * bis);
207
208static int eepro100_init (struct eth_device *dev, bd_t * bis);
Joe Hershbergerbccbe612012-05-21 14:45:25 +0000209static int eepro100_send(struct eth_device *dev, void *packet, int length);
wdenk1df49e22002-09-17 21:37:55 +0000210static int eepro100_recv (struct eth_device *dev);
211static void eepro100_halt (struct eth_device *dev);
212
Wolfgang Denk03b00402014-10-21 15:23:32 +0200213#if defined(CONFIG_E500)
wdenk42d1f032003-10-15 23:53:47 +0000214#define bus_to_phys(a) (a)
215#define phys_to_bus(a) (a)
216#else
wdenk1df49e22002-09-17 21:37:55 +0000217#define bus_to_phys(a) pci_mem_to_phys((pci_dev_t)dev->priv, a)
218#define phys_to_bus(a) pci_phys_to_mem((pci_dev_t)dev->priv, a)
wdenk42d1f032003-10-15 23:53:47 +0000219#endif
wdenk1df49e22002-09-17 21:37:55 +0000220
221static inline int INW (struct eth_device *dev, u_long addr)
222{
Bin Menge6655d72016-01-25 01:26:26 -0800223 return le16_to_cpu(*(volatile u16 *)(addr + (u_long)dev->iobase));
wdenk1df49e22002-09-17 21:37:55 +0000224}
225
226static inline void OUTW (struct eth_device *dev, int command, u_long addr)
227{
Bin Menge6655d72016-01-25 01:26:26 -0800228 *(volatile u16 *)((addr + (u_long)dev->iobase)) = cpu_to_le16(command);
wdenk1df49e22002-09-17 21:37:55 +0000229}
230
231static inline void OUTL (struct eth_device *dev, int command, u_long addr)
232{
Bin Menge6655d72016-01-25 01:26:26 -0800233 *(volatile u32 *)((addr + (u_long)dev->iobase)) = cpu_to_le32(command);
wdenk1df49e22002-09-17 21:37:55 +0000234}
235
Jon Loeliger07d38a12007-07-09 17:30:01 -0500236#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Wolfgang Denka9127332005-09-26 00:39:59 +0200237static inline int INL (struct eth_device *dev, u_long addr)
238{
Bin Menge6655d72016-01-25 01:26:26 -0800239 return le32_to_cpu(*(volatile u32 *)(addr + (u_long)dev->iobase));
Wolfgang Denka9127332005-09-26 00:39:59 +0200240}
241
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200242static int get_phyreg (struct eth_device *dev, unsigned char addr,
243 unsigned char reg, unsigned short *value)
Wolfgang Denka9127332005-09-26 00:39:59 +0200244{
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200245 int cmd;
246 int timeout = 50;
Wolfgang Denka9127332005-09-26 00:39:59 +0200247
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200248 /* read requested data */
249 cmd = (2 << 26) | ((addr & 0x1f) << 21) | ((reg & 0x1f) << 16);
Wolfgang Denka9127332005-09-26 00:39:59 +0200250 OUTL (dev, cmd, SCBCtrlMDI);
Wolfgang Denkc570b2f2005-09-26 01:06:33 +0200251
Wolfgang Denka9127332005-09-26 00:39:59 +0200252 do {
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200253 udelay(1000);
Wolfgang Denka9127332005-09-26 00:39:59 +0200254 cmd = INL (dev, SCBCtrlMDI);
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200255 } while (!(cmd & (1 << 28)) && (--timeout));
256
257 if (timeout == 0)
258 return -1;
Wolfgang Denka9127332005-09-26 00:39:59 +0200259
260 *value = (unsigned short) (cmd & 0xffff);
Wolfgang Denkc570b2f2005-09-26 01:06:33 +0200261
Wolfgang Denka9127332005-09-26 00:39:59 +0200262 return 0;
263}
264
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200265static int set_phyreg (struct eth_device *dev, unsigned char addr,
266 unsigned char reg, unsigned short value)
Wolfgang Denka9127332005-09-26 00:39:59 +0200267{
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200268 int cmd;
269 int timeout = 50;
Wolfgang Denka9127332005-09-26 00:39:59 +0200270
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200271 /* write requested data */
272 cmd = (1 << 26) | ((addr & 0x1f) << 21) | ((reg & 0x1f) << 16);
Wolfgang Denka9127332005-09-26 00:39:59 +0200273 OUTL (dev, cmd | value, SCBCtrlMDI);
274
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200275 while (!(INL (dev, SCBCtrlMDI) & (1 << 28)) && (--timeout))
276 udelay(1000);
277
278 if (timeout == 0)
279 return -1;
Wolfgang Denka9127332005-09-26 00:39:59 +0200280
281 return 0;
282}
Wolfgang Denka9127332005-09-26 00:39:59 +0200283
Marek Vasutaba283d2020-05-23 12:49:16 +0200284/*
285 * Check if given phyaddr is valid, i.e. there is a PHY connected.
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200286 * Do this by checking model value field from ID2 register.
287 */
Ben Warrend7fb9bc2010-07-29 12:56:11 -0700288static struct eth_device* verify_phyaddr (const char *devname,
289 unsigned char addr)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200290{
291 struct eth_device *dev;
292 unsigned short value;
293 unsigned char model;
294
295 dev = eth_get_dev_by_name(devname);
296 if (dev == NULL) {
297 printf("%s: no such device\n", devname);
298 return NULL;
299 }
300
301 /* read id2 register */
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500302 if (get_phyreg(dev, addr, MII_PHYSID2, &value) != 0) {
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200303 printf("%s: mii read timeout!\n", devname);
304 return NULL;
305 }
306
307 /* get model */
308 model = (unsigned char)((value >> 4) & 0x003f);
309
310 if (model == 0) {
311 printf("%s: no PHY at address %d\n", devname, addr);
312 return NULL;
313 }
314
315 return dev;
316}
317
Joe Hershberger5a49f172016-08-08 11:28:38 -0500318static int eepro100_miiphy_read(struct mii_dev *bus, int addr, int devad,
319 int reg)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200320{
Joe Hershberger5a49f172016-08-08 11:28:38 -0500321 unsigned short value = 0;
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200322 struct eth_device *dev;
323
Joe Hershberger5a49f172016-08-08 11:28:38 -0500324 dev = verify_phyaddr(bus->name, addr);
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200325 if (dev == NULL)
326 return -1;
327
Joe Hershberger5a49f172016-08-08 11:28:38 -0500328 if (get_phyreg(dev, addr, reg, &value) != 0) {
329 printf("%s: mii read timeout!\n", bus->name);
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200330 return -1;
331 }
332
Joe Hershberger5a49f172016-08-08 11:28:38 -0500333 return value;
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200334}
335
Joe Hershberger5a49f172016-08-08 11:28:38 -0500336static int eepro100_miiphy_write(struct mii_dev *bus, int addr, int devad,
337 int reg, u16 value)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200338{
339 struct eth_device *dev;
340
Joe Hershberger5a49f172016-08-08 11:28:38 -0500341 dev = verify_phyaddr(bus->name, addr);
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200342 if (dev == NULL)
343 return -1;
344
345 if (set_phyreg(dev, addr, reg, value) != 0) {
Joe Hershberger5a49f172016-08-08 11:28:38 -0500346 printf("%s: mii write timeout!\n", bus->name);
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200347 return -1;
348 }
349
350 return 0;
351}
352
Jon Loeliger07d38a12007-07-09 17:30:01 -0500353#endif
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200354
Marek Vasutaba283d2020-05-23 12:49:16 +0200355/* Wait for the chip get the command. */
wdenk1df49e22002-09-17 21:37:55 +0000356static int wait_for_eepro100 (struct eth_device *dev)
357{
358 int i;
359
360 for (i = 0; INW (dev, SCBCmd) & (CU_CMD_MASK | RU_CMD_MASK); i++) {
361 if (i >= TOUT_LOOP) {
362 return 0;
363 }
364 }
365
366 return 1;
367}
368
369static struct pci_device_id supported[] = {
370 {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82557},
371 {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82559},
372 {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82559ER},
373 {}
374};
375
376int eepro100_initialize (bd_t * bis)
377{
378 pci_dev_t devno;
379 int card_number = 0;
380 struct eth_device *dev;
381 u32 iobase, status;
382 int idx = 0;
383
384 while (1) {
Marek Vasutaba283d2020-05-23 12:49:16 +0200385 /* Find PCI device */
wdenk1df49e22002-09-17 21:37:55 +0000386 if ((devno = pci_find_devices (supported, idx++)) < 0) {
387 break;
388 }
389
390 pci_read_config_dword (devno, PCI_BASE_ADDRESS_0, &iobase);
391 iobase &= ~0xf;
392
Marek Vasute5352c62020-05-23 13:11:48 +0200393 debug("eepro100: Intel i82559 PCI EtherExpressPro @0x%x\n",
394 iobase);
wdenk1df49e22002-09-17 21:37:55 +0000395
396 pci_write_config_dword (devno,
397 PCI_COMMAND,
398 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
399
Marek Vasutaba283d2020-05-23 12:49:16 +0200400 /* Check if I/O accesses and Bus Mastering are enabled. */
wdenk1df49e22002-09-17 21:37:55 +0000401 pci_read_config_dword (devno, PCI_COMMAND, &status);
402 if (!(status & PCI_COMMAND_MEMORY)) {
403 printf ("Error: Can not enable MEM access.\n");
404 continue;
405 }
406
407 if (!(status & PCI_COMMAND_MASTER)) {
408 printf ("Error: Can not enable Bus Mastering.\n");
409 continue;
410 }
411
412 dev = (struct eth_device *) malloc (sizeof *dev);
Nobuhiro Iwamatsu72c4c332010-10-19 14:03:41 +0900413 if (!dev) {
414 printf("eepro100: Can not allocate memory\n");
415 break;
416 }
417 memset(dev, 0, sizeof(*dev));
wdenk1df49e22002-09-17 21:37:55 +0000418
419 sprintf (dev->name, "i82559#%d", card_number);
wdenk7a8e9bed2003-05-31 18:35:21 +0000420 dev->priv = (void *) devno; /* this have to come before bus_to_phys() */
wdenk1df49e22002-09-17 21:37:55 +0000421 dev->iobase = bus_to_phys (iobase);
wdenk1df49e22002-09-17 21:37:55 +0000422 dev->init = eepro100_init;
423 dev->halt = eepro100_halt;
424 dev->send = eepro100_send;
425 dev->recv = eepro100_recv;
426
427 eth_register (dev);
428
Jon Loeliger07d38a12007-07-09 17:30:01 -0500429#if defined (CONFIG_MII) || defined(CONFIG_CMD_MII)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200430 /* register mii command access routines */
Joe Hershberger5a49f172016-08-08 11:28:38 -0500431 int retval;
432 struct mii_dev *mdiodev = mdio_alloc();
433 if (!mdiodev)
434 return -ENOMEM;
435 strncpy(mdiodev->name, dev->name, MDIO_NAME_LEN);
436 mdiodev->read = eepro100_miiphy_read;
437 mdiodev->write = eepro100_miiphy_write;
438
439 retval = mdio_register(mdiodev);
440 if (retval < 0)
441 return retval;
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200442#endif
443
wdenk1df49e22002-09-17 21:37:55 +0000444 card_number++;
445
Marek Vasutaba283d2020-05-23 12:49:16 +0200446 /* Set the latency timer for value. */
wdenk1df49e22002-09-17 21:37:55 +0000447 pci_write_config_byte (devno, PCI_LATENCY_TIMER, 0x20);
448
Simon Glass07e11142020-05-10 11:40:10 -0600449 udelay(10 * 1000);
wdenk1df49e22002-09-17 21:37:55 +0000450
451 read_hw_addr (dev, bis);
452 }
453
454 return card_number;
455}
456
457
458static int eepro100_init (struct eth_device *dev, bd_t * bis)
459{
Ben Warren422b1a02008-01-09 18:15:53 -0500460 int i, status = -1;
wdenk1df49e22002-09-17 21:37:55 +0000461 int tx_cur;
462 struct descriptor *ias_cmd, *cfg_cmd;
463
Marek Vasutaba283d2020-05-23 12:49:16 +0200464 /* Reset the ethernet controller */
wdenk1df49e22002-09-17 21:37:55 +0000465 OUTL (dev, I82559_SELECTIVE_RESET, SCBPort);
Simon Glass07e11142020-05-10 11:40:10 -0600466 udelay(20);
wdenk1df49e22002-09-17 21:37:55 +0000467
468 OUTL (dev, I82559_RESET, SCBPort);
Simon Glass07e11142020-05-10 11:40:10 -0600469 udelay(20);
wdenk1df49e22002-09-17 21:37:55 +0000470
471 if (!wait_for_eepro100 (dev)) {
472 printf ("Error: Can not reset ethernet controller.\n");
473 goto Done;
474 }
475 OUTL (dev, 0, SCBPointer);
476 OUTW (dev, SCB_M | RUC_ADDR_LOAD, SCBCmd);
477
478 if (!wait_for_eepro100 (dev)) {
479 printf ("Error: Can not reset ethernet controller.\n");
480 goto Done;
481 }
482 OUTL (dev, 0, SCBPointer);
483 OUTW (dev, SCB_M | CU_ADDR_LOAD, SCBCmd);
484
Marek Vasutaba283d2020-05-23 12:49:16 +0200485 /* Initialize Rx and Tx rings. */
wdenk1df49e22002-09-17 21:37:55 +0000486 init_rx_ring (dev);
487 purge_tx_ring (dev);
488
Marek Vasutaba283d2020-05-23 12:49:16 +0200489 /* Tell the adapter where the RX ring is located. */
wdenk1df49e22002-09-17 21:37:55 +0000490 if (!wait_for_eepro100 (dev)) {
491 printf ("Error: Can not reset ethernet controller.\n");
492 goto Done;
493 }
494
495 OUTL (dev, phys_to_bus ((u32) & rx_ring[rx_next]), SCBPointer);
496 OUTW (dev, SCB_M | RUC_START, SCBCmd);
497
498 /* Send the Configure frame */
499 tx_cur = tx_next;
500 tx_next = ((tx_next + 1) % NUM_TX_DESC);
501
502 cfg_cmd = (struct descriptor *) &tx_ring[tx_cur];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200503 cfg_cmd->command = cpu_to_le16 ((CONFIG_SYS_CMD_SUSPEND | CONFIG_SYS_CMD_CONFIGURE));
wdenk1df49e22002-09-17 21:37:55 +0000504 cfg_cmd->status = 0;
505 cfg_cmd->link = cpu_to_le32 (phys_to_bus ((u32) & tx_ring[tx_next]));
506
507 memcpy (cfg_cmd->params, i82558_config_cmd,
508 sizeof (i82558_config_cmd));
509
510 if (!wait_for_eepro100 (dev)) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200511 printf ("Error---CONFIG_SYS_CMD_CONFIGURE: Can not reset ethernet controller.\n");
wdenk1df49e22002-09-17 21:37:55 +0000512 goto Done;
513 }
514
515 OUTL (dev, phys_to_bus ((u32) & tx_ring[tx_cur]), SCBPointer);
516 OUTW (dev, SCB_M | CU_START, SCBCmd);
517
518 for (i = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200519 !(le16_to_cpu (tx_ring[tx_cur].status) & CONFIG_SYS_STATUS_C);
wdenk1df49e22002-09-17 21:37:55 +0000520 i++) {
521 if (i >= TOUT_LOOP) {
522 printf ("%s: Tx error buffer not ready\n", dev->name);
523 goto Done;
524 }
525 }
526
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200527 if (!(le16_to_cpu (tx_ring[tx_cur].status) & CONFIG_SYS_STATUS_OK)) {
wdenk1df49e22002-09-17 21:37:55 +0000528 printf ("TX error status = 0x%08X\n",
529 le16_to_cpu (tx_ring[tx_cur].status));
530 goto Done;
531 }
532
Marek Vasutaba283d2020-05-23 12:49:16 +0200533 /* Send the Individual Address Setup frame */
wdenk1df49e22002-09-17 21:37:55 +0000534 tx_cur = tx_next;
535 tx_next = ((tx_next + 1) % NUM_TX_DESC);
536
537 ias_cmd = (struct descriptor *) &tx_ring[tx_cur];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200538 ias_cmd->command = cpu_to_le16 ((CONFIG_SYS_CMD_SUSPEND | CONFIG_SYS_CMD_IAS));
wdenk1df49e22002-09-17 21:37:55 +0000539 ias_cmd->status = 0;
540 ias_cmd->link = cpu_to_le32 (phys_to_bus ((u32) & tx_ring[tx_next]));
541
542 memcpy (ias_cmd->params, dev->enetaddr, 6);
543
Marek Vasutaba283d2020-05-23 12:49:16 +0200544 /* Tell the adapter where the TX ring is located. */
wdenk1df49e22002-09-17 21:37:55 +0000545 if (!wait_for_eepro100 (dev)) {
546 printf ("Error: Can not reset ethernet controller.\n");
547 goto Done;
548 }
549
550 OUTL (dev, phys_to_bus ((u32) & tx_ring[tx_cur]), SCBPointer);
551 OUTW (dev, SCB_M | CU_START, SCBCmd);
552
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200553 for (i = 0; !(le16_to_cpu (tx_ring[tx_cur].status) & CONFIG_SYS_STATUS_C);
wdenk1df49e22002-09-17 21:37:55 +0000554 i++) {
555 if (i >= TOUT_LOOP) {
556 printf ("%s: Tx error buffer not ready\n",
557 dev->name);
558 goto Done;
559 }
560 }
561
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200562 if (!(le16_to_cpu (tx_ring[tx_cur].status) & CONFIG_SYS_STATUS_OK)) {
wdenk1df49e22002-09-17 21:37:55 +0000563 printf ("TX error status = 0x%08X\n",
564 le16_to_cpu (tx_ring[tx_cur].status));
565 goto Done;
566 }
567
Ben Warren422b1a02008-01-09 18:15:53 -0500568 status = 0;
wdenk1df49e22002-09-17 21:37:55 +0000569
570 Done:
571 return status;
572}
573
Joe Hershbergerbccbe612012-05-21 14:45:25 +0000574static int eepro100_send(struct eth_device *dev, void *packet, int length)
wdenk1df49e22002-09-17 21:37:55 +0000575{
576 int i, status = -1;
577 int tx_cur;
578
579 if (length <= 0) {
580 printf ("%s: bad packet size: %d\n", dev->name, length);
581 goto Done;
582 }
583
584 tx_cur = tx_next;
585 tx_next = (tx_next + 1) % NUM_TX_DESC;
586
587 tx_ring[tx_cur].command = cpu_to_le16 ( TxCB_CMD_TRANSMIT |
588 TxCB_CMD_SF |
589 TxCB_CMD_S |
590 TxCB_CMD_EL );
591 tx_ring[tx_cur].status = 0;
592 tx_ring[tx_cur].count = cpu_to_le32 (tx_threshold);
593 tx_ring[tx_cur].link =
594 cpu_to_le32 (phys_to_bus ((u32) & tx_ring[tx_next]));
595 tx_ring[tx_cur].tx_desc_addr =
596 cpu_to_le32 (phys_to_bus ((u32) & tx_ring[tx_cur].tx_buf_addr0));
597 tx_ring[tx_cur].tx_buf_addr0 =
598 cpu_to_le32 (phys_to_bus ((u_long) packet));
599 tx_ring[tx_cur].tx_buf_size0 = cpu_to_le32 (length);
600
601 if (!wait_for_eepro100 (dev)) {
602 printf ("%s: Tx error ethernet controller not ready.\n",
603 dev->name);
604 goto Done;
605 }
606
Marek Vasutaba283d2020-05-23 12:49:16 +0200607 /* Send the packet. */
wdenk1df49e22002-09-17 21:37:55 +0000608 OUTL (dev, phys_to_bus ((u32) & tx_ring[tx_cur]), SCBPointer);
609 OUTW (dev, SCB_M | CU_START, SCBCmd);
610
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200611 for (i = 0; !(le16_to_cpu (tx_ring[tx_cur].status) & CONFIG_SYS_STATUS_C);
wdenk1df49e22002-09-17 21:37:55 +0000612 i++) {
613 if (i >= TOUT_LOOP) {
614 printf ("%s: Tx error buffer not ready\n", dev->name);
615 goto Done;
616 }
617 }
618
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200619 if (!(le16_to_cpu (tx_ring[tx_cur].status) & CONFIG_SYS_STATUS_OK)) {
wdenk1df49e22002-09-17 21:37:55 +0000620 printf ("TX error status = 0x%08X\n",
621 le16_to_cpu (tx_ring[tx_cur].status));
622 goto Done;
623 }
624
625 status = length;
626
627 Done:
628 return status;
629}
630
631static int eepro100_recv (struct eth_device *dev)
632{
633 u16 status, stat;
634 int rx_prev, length = 0;
635
636 stat = INW (dev, SCBStatus);
637 OUTW (dev, stat & SCB_STATUS_RNR, SCBStatus);
638
639 for (;;) {
640 status = le16_to_cpu (rx_ring[rx_next].status);
641
642 if (!(status & RFD_STATUS_C)) {
643 break;
644 }
645
Marek Vasutaba283d2020-05-23 12:49:16 +0200646 /* Valid frame status. */
wdenk1df49e22002-09-17 21:37:55 +0000647 if ((status & RFD_STATUS_OK)) {
Marek Vasutaba283d2020-05-23 12:49:16 +0200648 /* A valid frame received. */
wdenk1df49e22002-09-17 21:37:55 +0000649 length = le32_to_cpu (rx_ring[rx_next].count) & 0x3fff;
650
Marek Vasutaba283d2020-05-23 12:49:16 +0200651 /* Pass the packet up to the protocol layers. */
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500652 net_process_received_packet((u8 *)rx_ring[rx_next].data,
653 length);
wdenk1df49e22002-09-17 21:37:55 +0000654 } else {
Marek Vasutaba283d2020-05-23 12:49:16 +0200655 /* There was an error. */
wdenk1df49e22002-09-17 21:37:55 +0000656 printf ("RX error status = 0x%08X\n", status);
657 }
658
659 rx_ring[rx_next].control = cpu_to_le16 (RFD_CONTROL_S);
660 rx_ring[rx_next].status = 0;
661 rx_ring[rx_next].count = cpu_to_le32 (PKTSIZE_ALIGN << 16);
662
663 rx_prev = (rx_next + NUM_RX_DESC - 1) % NUM_RX_DESC;
664 rx_ring[rx_prev].control = 0;
665
Marek Vasutaba283d2020-05-23 12:49:16 +0200666 /* Update entry information. */
wdenk1df49e22002-09-17 21:37:55 +0000667 rx_next = (rx_next + 1) % NUM_RX_DESC;
668 }
669
670 if (stat & SCB_STATUS_RNR) {
671
672 printf ("%s: Receiver is not ready, restart it !\n", dev->name);
673
Marek Vasutaba283d2020-05-23 12:49:16 +0200674 /* Reinitialize Rx ring. */
wdenk1df49e22002-09-17 21:37:55 +0000675 init_rx_ring (dev);
676
677 if (!wait_for_eepro100 (dev)) {
678 printf ("Error: Can not restart ethernet controller.\n");
679 goto Done;
680 }
681
682 OUTL (dev, phys_to_bus ((u32) & rx_ring[rx_next]), SCBPointer);
683 OUTW (dev, SCB_M | RUC_START, SCBCmd);
684 }
685
686 Done:
687 return length;
688}
689
690static void eepro100_halt (struct eth_device *dev)
691{
Marek Vasutaba283d2020-05-23 12:49:16 +0200692 /* Reset the ethernet controller */
wdenk1df49e22002-09-17 21:37:55 +0000693 OUTL (dev, I82559_SELECTIVE_RESET, SCBPort);
Simon Glass07e11142020-05-10 11:40:10 -0600694 udelay(20);
wdenk1df49e22002-09-17 21:37:55 +0000695
696 OUTL (dev, I82559_RESET, SCBPort);
Simon Glass07e11142020-05-10 11:40:10 -0600697 udelay(20);
wdenk1df49e22002-09-17 21:37:55 +0000698
699 if (!wait_for_eepro100 (dev)) {
700 printf ("Error: Can not reset ethernet controller.\n");
701 goto Done;
702 }
703 OUTL (dev, 0, SCBPointer);
704 OUTW (dev, SCB_M | RUC_ADDR_LOAD, SCBCmd);
705
706 if (!wait_for_eepro100 (dev)) {
707 printf ("Error: Can not reset ethernet controller.\n");
708 goto Done;
709 }
710 OUTL (dev, 0, SCBPointer);
711 OUTW (dev, SCB_M | CU_ADDR_LOAD, SCBCmd);
712
713 Done:
714 return;
715}
716
Marek Vasutaba283d2020-05-23 12:49:16 +0200717/* SROM Read. */
wdenk1df49e22002-09-17 21:37:55 +0000718static int read_eeprom (struct eth_device *dev, int location, int addr_len)
719{
720 unsigned short retval = 0;
721 int read_cmd = location | EE_READ_CMD;
722 int i;
723
724 OUTW (dev, EE_ENB & ~EE_CS, SCBeeprom);
725 OUTW (dev, EE_ENB, SCBeeprom);
726
727 /* Shift the read command bits out. */
728 for (i = 12; i >= 0; i--) {
729 short dataval = (read_cmd & (1 << i)) ? EE_DATA_WRITE : 0;
730
731 OUTW (dev, EE_ENB | dataval, SCBeeprom);
Simon Glass07e11142020-05-10 11:40:10 -0600732 udelay(1);
wdenk1df49e22002-09-17 21:37:55 +0000733 OUTW (dev, EE_ENB | dataval | EE_SHIFT_CLK, SCBeeprom);
Simon Glass07e11142020-05-10 11:40:10 -0600734 udelay(1);
wdenk1df49e22002-09-17 21:37:55 +0000735 }
736 OUTW (dev, EE_ENB, SCBeeprom);
737
738 for (i = 15; i >= 0; i--) {
739 OUTW (dev, EE_ENB | EE_SHIFT_CLK, SCBeeprom);
Simon Glass07e11142020-05-10 11:40:10 -0600740 udelay(1);
wdenk1df49e22002-09-17 21:37:55 +0000741 retval = (retval << 1) |
742 ((INW (dev, SCBeeprom) & EE_DATA_READ) ? 1 : 0);
743 OUTW (dev, EE_ENB, SCBeeprom);
Simon Glass07e11142020-05-10 11:40:10 -0600744 udelay(1);
wdenk1df49e22002-09-17 21:37:55 +0000745 }
746
747 /* Terminate the EEPROM access. */
748 OUTW (dev, EE_ENB & ~EE_CS, SCBeeprom);
749 return retval;
750}
751
wdenk1df49e22002-09-17 21:37:55 +0000752static void init_rx_ring (struct eth_device *dev)
753{
754 int i;
755
756 for (i = 0; i < NUM_RX_DESC; i++) {
757 rx_ring[i].status = 0;
758 rx_ring[i].control =
759 (i == NUM_RX_DESC - 1) ? cpu_to_le16 (RFD_CONTROL_S) : 0;
760 rx_ring[i].link =
761 cpu_to_le32 (phys_to_bus
762 ((u32) & rx_ring[(i + 1) % NUM_RX_DESC]));
763 rx_ring[i].rx_buf_addr = 0xffffffff;
764 rx_ring[i].count = cpu_to_le32 (PKTSIZE_ALIGN << 16);
765 }
766
767 rx_next = 0;
768}
769
770static void purge_tx_ring (struct eth_device *dev)
771{
772 int i;
773
774 tx_next = 0;
775 tx_threshold = 0x01208000;
776
777 for (i = 0; i < NUM_TX_DESC; i++) {
778 tx_ring[i].status = 0;
779 tx_ring[i].command = 0;
780 tx_ring[i].link = 0;
781 tx_ring[i].tx_desc_addr = 0;
782 tx_ring[i].count = 0;
783
784 tx_ring[i].tx_buf_addr0 = 0;
785 tx_ring[i].tx_buf_size0 = 0;
786 tx_ring[i].tx_buf_addr1 = 0;
787 tx_ring[i].tx_buf_size1 = 0;
788 }
789}
790
791static void read_hw_addr (struct eth_device *dev, bd_t * bis)
792{
wdenk1df49e22002-09-17 21:37:55 +0000793 u16 sum = 0;
794 int i, j;
795 int addr_len = read_eeprom (dev, 0, 6) == 0xffff ? 8 : 6;
796
797 for (j = 0, i = 0; i < 0x40; i++) {
798 u16 value = read_eeprom (dev, i, addr_len);
799
wdenk1df49e22002-09-17 21:37:55 +0000800 sum += value;
801 if (i < 3) {
802 dev->enetaddr[j++] = value;
803 dev->enetaddr[j++] = value >> 8;
804 }
805 }
806
807 if (sum != 0xBABA) {
808 memset (dev->enetaddr, 0, ETH_ALEN);
Marek Vasute5352c62020-05-23 13:11:48 +0200809 debug("%s: Invalid EEPROM checksum %#4.4x, check settings before activating this device!\n",
810 dev->name, sum);
wdenk1df49e22002-09-17 21:37:55 +0000811 }
812}