blob: d302d0362a93c4152e7530cf23168b6d605f5868 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00002
3#include <common.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -06004#include <env.h>
wdenkc6097192002-11-03 00:24:07 +00005#include <malloc.h>
6#include <net.h>
Ben Warren840f8a52008-08-31 10:45:44 -07007#include <netdev.h>
wdenkc6097192002-11-03 00:24:07 +00008#include <pci.h>
9
wdenkc6097192002-11-03 00:24:07 +000010#undef DEBUG_SROM
11#undef DEBUG_SROM2
12
13#undef UPDATE_SROM
14
15/* PCI Registers.
16 */
17#define PCI_CFDA_PSM 0x43
18
19#define CFRV_RN 0x000000f0 /* Revision Number */
20
21#define WAKEUP 0x00 /* Power Saving Wakeup */
22#define SLEEP 0x80 /* Power Saving Sleep Mode */
23
24#define DC2114x_BRK 0x0020 /* CFRV break between DC21142 & DC21143 */
25
26/* Ethernet chip registers.
27 */
28#define DE4X5_BMR 0x000 /* Bus Mode Register */
29#define DE4X5_TPD 0x008 /* Transmit Poll Demand Reg */
30#define DE4X5_RRBA 0x018 /* RX Ring Base Address Reg */
31#define DE4X5_TRBA 0x020 /* TX Ring Base Address Reg */
32#define DE4X5_STS 0x028 /* Status Register */
33#define DE4X5_OMR 0x030 /* Operation Mode Register */
34#define DE4X5_SICR 0x068 /* SIA Connectivity Register */
35#define DE4X5_APROM 0x048 /* Ethernet Address PROM */
36
37/* Register bits.
38 */
39#define BMR_SWR 0x00000001 /* Software Reset */
40#define STS_TS 0x00700000 /* Transmit Process State */
41#define STS_RS 0x000e0000 /* Receive Process State */
42#define OMR_ST 0x00002000 /* Start/Stop Transmission Command */
43#define OMR_SR 0x00000002 /* Start/Stop Receive */
44#define OMR_PS 0x00040000 /* Port Select */
45#define OMR_SDP 0x02000000 /* SD Polarity - MUST BE ASSERTED */
46#define OMR_PM 0x00000080 /* Pass All Multicast */
47
48/* Descriptor bits.
49 */
50#define R_OWN 0x80000000 /* Own Bit */
51#define RD_RER 0x02000000 /* Receive End Of Ring */
52#define RD_LS 0x00000100 /* Last Descriptor */
53#define RD_ES 0x00008000 /* Error Summary */
54#define TD_TER 0x02000000 /* Transmit End Of Ring */
55#define T_OWN 0x80000000 /* Own Bit */
56#define TD_LS 0x40000000 /* Last Segment */
57#define TD_FS 0x20000000 /* First Segment */
58#define TD_ES 0x00008000 /* Error Summary */
59#define TD_SET 0x08000000 /* Setup Packet */
60
61/* The EEPROM commands include the alway-set leading bit. */
62#define SROM_WRITE_CMD 5
63#define SROM_READ_CMD 6
64#define SROM_ERASE_CMD 7
65
66#define SROM_HWADD 0x0014 /* Hardware Address offset in SROM */
67#define SROM_RD 0x00004000 /* Read from Boot ROM */
wdenk3be717f2004-01-03 19:43:48 +000068#define EE_DATA_WRITE 0x04 /* EEPROM chip data in. */
69#define EE_WRITE_0 0x4801
70#define EE_WRITE_1 0x4805
71#define EE_DATA_READ 0x08 /* EEPROM chip data out. */
wdenkc6097192002-11-03 00:24:07 +000072#define SROM_SR 0x00000800 /* Select Serial ROM when set */
73
74#define DT_IN 0x00000004 /* Serial Data In */
75#define DT_CLK 0x00000002 /* Serial ROM Clock */
76#define DT_CS 0x00000001 /* Serial ROM Chip Select */
77
78#define POLL_DEMAND 1
79
80#define RESET_DE4X5(dev) {\
81 int i;\
82 i=INL(dev, DE4X5_BMR);\
83 udelay(1000);\
84 OUTL(dev, i | BMR_SWR, DE4X5_BMR);\
85 udelay(1000);\
86 OUTL(dev, i, DE4X5_BMR);\
87 udelay(1000);\
88 for (i=0;i<5;i++) {INL(dev, DE4X5_BMR); udelay(10000);}\
89 udelay(1000);\
90}
91
92#define START_DE4X5(dev) {\
93 s32 omr; \
94 omr = INL(dev, DE4X5_OMR);\
95 omr |= OMR_ST | OMR_SR;\
96 OUTL(dev, omr, DE4X5_OMR); /* Enable the TX and/or RX */\
97}
98
99#define STOP_DE4X5(dev) {\
100 s32 omr; \
101 omr = INL(dev, DE4X5_OMR);\
102 omr &= ~(OMR_ST|OMR_SR);\
103 OUTL(dev, omr, DE4X5_OMR); /* Disable the TX and/or RX */ \
104}
105
106#define NUM_RX_DESC PKTBUFSRX
Marek Vasut331e4ec2020-04-18 01:56:51 +0200107#define NUM_TX_DESC 1 /* Number of TX descriptors */
wdenkc6097192002-11-03 00:24:07 +0000108#define RX_BUFF_SZ PKTSIZE_ALIGN
109
110#define TOUT_LOOP 1000000
111
112#define SETUP_FRAME_LEN 192
wdenkc6097192002-11-03 00:24:07 +0000113
wdenkc6097192002-11-03 00:24:07 +0000114struct de4x5_desc {
115 volatile s32 status;
116 u32 des1;
117 u32 buf;
118 u32 next;
119};
120
wdenk0260cd62004-01-02 15:01:32 +0000121static struct de4x5_desc rx_ring[NUM_RX_DESC] __attribute__ ((aligned(32))); /* RX descriptor ring */
122static struct de4x5_desc tx_ring[NUM_TX_DESC] __attribute__ ((aligned(32))); /* TX descriptor ring */
wdenkc6097192002-11-03 00:24:07 +0000123static int rx_new; /* RX descriptor ring pointer */
124static int tx_new; /* TX descriptor ring pointer */
125
126static char rxRingSize;
127static char txRingSize;
128
129static void sendto_srom(struct eth_device* dev, u_int command, u_long addr);
130static int getfrom_srom(struct eth_device* dev, u_long addr);
wdenk3be717f2004-01-03 19:43:48 +0000131static int do_eeprom_cmd(struct eth_device *dev, u_long ioaddr,int cmd,int cmd_len);
132static int do_read_eeprom(struct eth_device *dev,u_long ioaddr,int location,int addr_len);
wdenkc6097192002-11-03 00:24:07 +0000133#ifdef UPDATE_SROM
134static int write_srom(struct eth_device *dev, u_long ioaddr, int index, int new_value);
135static void update_srom(struct eth_device *dev, bd_t *bis);
136#endif
wdenk3be717f2004-01-03 19:43:48 +0000137static int read_srom(struct eth_device *dev, u_long ioaddr, int index);
wdenkc6097192002-11-03 00:24:07 +0000138static void read_hw_addr(struct eth_device* dev, bd_t * bis);
139static void send_setup_frame(struct eth_device* dev, bd_t * bis);
140
141static int dc21x4x_init(struct eth_device* dev, bd_t* bis);
Joe Hershbergercfb0cee2012-05-21 14:45:22 +0000142static int dc21x4x_send(struct eth_device *dev, void *packet, int length);
wdenkc6097192002-11-03 00:24:07 +0000143static int dc21x4x_recv(struct eth_device* dev);
144static void dc21x4x_halt(struct eth_device* dev);
wdenkc6097192002-11-03 00:24:07 +0000145
wdenk9c53f402003-10-15 23:53:47 +0000146#if defined(CONFIG_E500)
147#define phys_to_bus(a) (a)
148#else
wdenkc6097192002-11-03 00:24:07 +0000149#define phys_to_bus(a) pci_phys_to_mem((pci_dev_t)dev->priv, a)
wdenk9c53f402003-10-15 23:53:47 +0000150#endif
wdenkc6097192002-11-03 00:24:07 +0000151
152static int INL(struct eth_device* dev, u_long addr)
153{
154 return le32_to_cpu(*(volatile u_long *)(addr + dev->iobase));
155}
156
157static void OUTL(struct eth_device* dev, int command, u_long addr)
158{
159 *(volatile u_long *)(addr + dev->iobase) = cpu_to_le32(command);
160}
161
162static struct pci_device_id supported[] = {
163 { PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_DEC_TULIP_FAST },
164 { PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_DEC_21142 },
165 { }
166};
167
168int dc21x4x_initialize(bd_t *bis)
169{
Marek Vasut268cc5b2020-04-19 03:09:47 +0200170 struct eth_device *dev;
171 unsigned short status;
172 unsigned char timer;
173 unsigned int iobase;
174 int card_number = 0;
175 pci_dev_t devbusfn;
176 unsigned int cfrv;
177 int idx = 0;
wdenkc6097192002-11-03 00:24:07 +0000178
Marek Vasut268cc5b2020-04-19 03:09:47 +0200179 while (1) {
180 devbusfn = pci_find_devices(supported, idx++);
181 if (devbusfn == -1)
wdenkc6097192002-11-03 00:24:07 +0000182 break;
wdenkc6097192002-11-03 00:24:07 +0000183
184 /* Get the chip configuration revision register. */
185 pci_read_config_dword(devbusfn, PCI_REVISION_ID, &cfrv);
186
Marek Vasut268cc5b2020-04-19 03:09:47 +0200187 if ((cfrv & CFRV_RN) < DC2114x_BRK) {
wdenkc6097192002-11-03 00:24:07 +0000188 printf("Error: The chip is not DC21143.\n");
189 continue;
190 }
191
192 pci_read_config_word(devbusfn, PCI_COMMAND, &status);
Marek Vasut268cc5b2020-04-19 03:09:47 +0200193 status |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER;
wdenkc6097192002-11-03 00:24:07 +0000194 pci_write_config_word(devbusfn, PCI_COMMAND, status);
195
196 pci_read_config_word(devbusfn, PCI_COMMAND, &status);
Linus Walleij68b1b932011-09-25 21:41:14 +0000197 if (!(status & PCI_COMMAND_MEMORY)) {
198 printf("Error: Can not enable MEMORY access.\n");
wdenkc6097192002-11-03 00:24:07 +0000199 continue;
200 }
201
202 if (!(status & PCI_COMMAND_MASTER)) {
203 printf("Error: Can not enable Bus Mastering.\n");
204 continue;
205 }
206
207 /* Check the latency timer for values >= 0x60. */
208 pci_read_config_byte(devbusfn, PCI_LATENCY_TIMER, &timer);
209
210 if (timer < 0x60) {
Marek Vasut268cc5b2020-04-19 03:09:47 +0200211 pci_write_config_byte(devbusfn, PCI_LATENCY_TIMER,
212 0x60);
wdenkc6097192002-11-03 00:24:07 +0000213 }
214
wdenkc6097192002-11-03 00:24:07 +0000215 /* read BAR for memory space access */
216 pci_read_config_dword(devbusfn, PCI_BASE_ADDRESS_1, &iobase);
217 iobase &= PCI_BASE_ADDRESS_MEM_MASK;
Marek Vasut268cc5b2020-04-19 03:09:47 +0200218 debug("dc21x4x: DEC 21142 PCI Device @0x%x\n", iobase);
wdenkc6097192002-11-03 00:24:07 +0000219
Marek Vasut268cc5b2020-04-19 03:09:47 +0200220 dev = (struct eth_device *)malloc(sizeof(*dev));
Nobuhiro Iwamatsud45fa742010-10-19 14:03:40 +0900221 if (!dev) {
222 printf("Can not allocalte memory of dc21x4x\n");
223 break;
224 }
Marek Vasut268cc5b2020-04-19 03:09:47 +0200225
Nobuhiro Iwamatsud45fa742010-10-19 14:03:40 +0900226 memset(dev, 0, sizeof(*dev));
227
wdenk3be717f2004-01-03 19:43:48 +0000228 sprintf(dev->name, "dc21x4x#%d", card_number);
wdenk0260cd62004-01-02 15:01:32 +0000229
wdenkc6097192002-11-03 00:24:07 +0000230 dev->iobase = pci_mem_to_phys(devbusfn, iobase);
Marek Vasut268cc5b2020-04-19 03:09:47 +0200231 dev->priv = (void *)devbusfn;
232 dev->init = dc21x4x_init;
233 dev->halt = dc21x4x_halt;
234 dev->send = dc21x4x_send;
235 dev->recv = dc21x4x_recv;
wdenkc6097192002-11-03 00:24:07 +0000236
237 /* Ensure we're not sleeping. */
238 pci_write_config_byte(devbusfn, PCI_CFDA_PSM, WAKEUP);
239
240 udelay(10 * 1000);
241
wdenk3be717f2004-01-03 19:43:48 +0000242 read_hw_addr(dev, bis);
Marek Vasut331e4ec2020-04-18 01:56:51 +0200243
wdenkc6097192002-11-03 00:24:07 +0000244 eth_register(dev);
245
246 card_number++;
247 }
248
249 return card_number;
250}
251
Marek Vasut268cc5b2020-04-19 03:09:47 +0200252static int dc21x4x_init(struct eth_device *dev, bd_t *bis)
wdenkc6097192002-11-03 00:24:07 +0000253{
Marek Vasut268cc5b2020-04-19 03:09:47 +0200254 int i;
255 int devbusfn = (int)dev->priv;
wdenkc6097192002-11-03 00:24:07 +0000256
257 /* Ensure we're not sleeping. */
258 pci_write_config_byte(devbusfn, PCI_CFDA_PSM, WAKEUP);
259
260 RESET_DE4X5(dev);
261
262 if ((INL(dev, DE4X5_STS) & (STS_TS | STS_RS)) != 0) {
263 printf("Error: Cannot reset ethernet controller.\n");
Ben Warrende9fcb52008-01-09 18:15:53 -0500264 return -1;
wdenkc6097192002-11-03 00:24:07 +0000265 }
266
wdenkc6097192002-11-03 00:24:07 +0000267 OUTL(dev, OMR_SDP | OMR_PS | OMR_PM, DE4X5_OMR);
wdenkc6097192002-11-03 00:24:07 +0000268
269 for (i = 0; i < NUM_RX_DESC; i++) {
270 rx_ring[i].status = cpu_to_le32(R_OWN);
271 rx_ring[i].des1 = cpu_to_le32(RX_BUFF_SZ);
Marek Vasut268cc5b2020-04-19 03:09:47 +0200272 rx_ring[i].buf =
273 cpu_to_le32(phys_to_bus((u32)net_rx_packets[i]));
wdenkc6097192002-11-03 00:24:07 +0000274 rx_ring[i].next = 0;
275 }
276
Marek Vasut268cc5b2020-04-19 03:09:47 +0200277 for (i = 0; i < NUM_TX_DESC; i++) {
wdenkc6097192002-11-03 00:24:07 +0000278 tx_ring[i].status = 0;
279 tx_ring[i].des1 = 0;
280 tx_ring[i].buf = 0;
281 tx_ring[i].next = 0;
282 }
283
284 rxRingSize = NUM_RX_DESC;
285 txRingSize = NUM_TX_DESC;
286
287 /* Write the end of list marker to the descriptor lists. */
288 rx_ring[rxRingSize - 1].des1 |= cpu_to_le32(RD_RER);
289 tx_ring[txRingSize - 1].des1 |= cpu_to_le32(TD_TER);
290
291 /* Tell the adapter where the TX/RX rings are located. */
Marek Vasut268cc5b2020-04-19 03:09:47 +0200292 OUTL(dev, phys_to_bus((u32)&rx_ring), DE4X5_RRBA);
293 OUTL(dev, phys_to_bus((u32)&tx_ring), DE4X5_TRBA);
wdenkc6097192002-11-03 00:24:07 +0000294
295 START_DE4X5(dev);
296
297 tx_new = 0;
298 rx_new = 0;
299
300 send_setup_frame(dev, bis);
301
Ben Warrende9fcb52008-01-09 18:15:53 -0500302 return 0;
wdenkc6097192002-11-03 00:24:07 +0000303}
304
Joe Hershbergercfb0cee2012-05-21 14:45:22 +0000305static int dc21x4x_send(struct eth_device *dev, void *packet, int length)
wdenkc6097192002-11-03 00:24:07 +0000306{
307 int status = -1;
308 int i;
309
310 if (length <= 0) {
311 printf("%s: bad packet size: %d\n", dev->name, length);
312 goto Done;
313 }
314
315 for(i = 0; tx_ring[tx_new].status & cpu_to_le32(T_OWN); i++) {
316 if (i >= TOUT_LOOP) {
317 printf("%s: tx error buffer not ready\n", dev->name);
318 goto Done;
319 }
320 }
321
322 tx_ring[tx_new].buf = cpu_to_le32(phys_to_bus((u32) packet));
323 tx_ring[tx_new].des1 = cpu_to_le32(TD_TER | TD_LS | TD_FS | length);
324 tx_ring[tx_new].status = cpu_to_le32(T_OWN);
325
326 OUTL(dev, POLL_DEMAND, DE4X5_TPD);
327
328 for(i = 0; tx_ring[tx_new].status & cpu_to_le32(T_OWN); i++) {
329 if (i >= TOUT_LOOP) {
330 printf(".%s: tx buffer not ready\n", dev->name);
331 goto Done;
332 }
333 }
334
335 if (le32_to_cpu(tx_ring[tx_new].status) & TD_ES) {
336#if 0 /* test-only */
337 printf("TX error status = 0x%08X\n",
wdenk3be717f2004-01-03 19:43:48 +0000338 le32_to_cpu(tx_ring[tx_new].status));
wdenkc6097192002-11-03 00:24:07 +0000339#endif
wdenk0260cd62004-01-02 15:01:32 +0000340 tx_ring[tx_new].status = 0x0;
wdenkc6097192002-11-03 00:24:07 +0000341 goto Done;
342 }
343
344 status = length;
345
346 Done:
wdenk0260cd62004-01-02 15:01:32 +0000347 tx_new = (tx_new+1) % NUM_TX_DESC;
wdenkc6097192002-11-03 00:24:07 +0000348 return status;
349}
350
351static int dc21x4x_recv(struct eth_device* dev)
352{
353 s32 status;
354 int length = 0;
355
356 for ( ; ; ) {
357 status = (s32)le32_to_cpu(rx_ring[rx_new].status);
358
359 if (status & R_OWN) {
360 break;
361 }
362
363 if (status & RD_LS) {
364 /* Valid frame status.
365 */
366 if (status & RD_ES) {
367
368 /* There was an error.
369 */
370 printf("RX error status = 0x%08X\n", status);
371 } else {
372 /* A valid frame received.
373 */
374 length = (le32_to_cpu(rx_ring[rx_new].status) >> 16);
375
376 /* Pass the packet up to the protocol
377 * layers.
378 */
Joe Hershberger9f09a362015-04-08 01:41:06 -0500379 net_process_received_packet(
380 net_rx_packets[rx_new], length - 4);
wdenkc6097192002-11-03 00:24:07 +0000381 }
382
383 /* Change buffer ownership for this frame, back
384 * to the adapter.
385 */
386 rx_ring[rx_new].status = cpu_to_le32(R_OWN);
387 }
388
389 /* Update entry information.
390 */
391 rx_new = (rx_new + 1) % rxRingSize;
392 }
393
394 return length;
395}
396
397static void dc21x4x_halt(struct eth_device* dev)
398{
399 int devbusfn = (int) dev->priv;
400
401 STOP_DE4X5(dev);
402 OUTL(dev, 0, DE4X5_SICR);
403
404 pci_write_config_byte(devbusfn, PCI_CFDA_PSM, SLEEP);
405}
406
407static void send_setup_frame(struct eth_device* dev, bd_t *bis)
408{
409 int i;
410 char setup_frame[SETUP_FRAME_LEN];
Wolfgang Denka1be4762008-05-20 16:00:29 +0200411 char *pa = &setup_frame[0];
wdenkc6097192002-11-03 00:24:07 +0000412
413 memset(pa, 0xff, SETUP_FRAME_LEN);
414
415 for (i = 0; i < ETH_ALEN; i++) {
416 *(pa + (i & 1)) = dev->enetaddr[i];
417 if (i & 0x01) {
418 pa += 4;
419 }
420 }
421
422 for(i = 0; tx_ring[tx_new].status & cpu_to_le32(T_OWN); i++) {
423 if (i >= TOUT_LOOP) {
424 printf("%s: tx error buffer not ready\n", dev->name);
425 goto Done;
426 }
427 }
428
429 tx_ring[tx_new].buf = cpu_to_le32(phys_to_bus((u32) &setup_frame[0]));
430 tx_ring[tx_new].des1 = cpu_to_le32(TD_TER | TD_SET| SETUP_FRAME_LEN);
431 tx_ring[tx_new].status = cpu_to_le32(T_OWN);
432
433 OUTL(dev, POLL_DEMAND, DE4X5_TPD);
434
435 for(i = 0; tx_ring[tx_new].status & cpu_to_le32(T_OWN); i++) {
436 if (i >= TOUT_LOOP) {
437 printf("%s: tx buffer not ready\n", dev->name);
438 goto Done;
439 }
440 }
441
442 if (le32_to_cpu(tx_ring[tx_new].status) != 0x7FFFFFFF) {
443 printf("TX error status2 = 0x%08X\n", le32_to_cpu(tx_ring[tx_new].status));
444 }
wdenk0260cd62004-01-02 15:01:32 +0000445 tx_new = (tx_new+1) % NUM_TX_DESC;
446
wdenkc6097192002-11-03 00:24:07 +0000447Done:
448 return;
449}
450
Marek Vasut331e4ec2020-04-18 01:56:51 +0200451/* SROM Read and write routines. */
wdenkc6097192002-11-03 00:24:07 +0000452static void
453sendto_srom(struct eth_device* dev, u_int command, u_long addr)
454{
455 OUTL(dev, command, addr);
456 udelay(1);
457}
458
459static int
460getfrom_srom(struct eth_device* dev, u_long addr)
461{
462 s32 tmp;
463
464 tmp = INL(dev, addr);
465 udelay(1);
466
467 return tmp;
468}
469
470/* Note: this routine returns extra data bits for size detection. */
471static int do_read_eeprom(struct eth_device *dev, u_long ioaddr, int location, int addr_len)
472{
473 int i;
474 unsigned retval = 0;
475 int read_cmd = location | (SROM_READ_CMD << addr_len);
476
477 sendto_srom(dev, SROM_RD | SROM_SR, ioaddr);
478 sendto_srom(dev, SROM_RD | SROM_SR | DT_CS, ioaddr);
479
480#ifdef DEBUG_SROM
481 printf(" EEPROM read at %d ", location);
482#endif
483
484 /* Shift the read command bits out. */
485 for (i = 4 + addr_len; i >= 0; i--) {
486 short dataval = (read_cmd & (1 << i)) ? EE_DATA_WRITE : 0;
487 sendto_srom(dev, SROM_RD | SROM_SR | DT_CS | dataval, ioaddr);
488 udelay(10);
489 sendto_srom(dev, SROM_RD | SROM_SR | DT_CS | dataval | DT_CLK, ioaddr);
490 udelay(10);
491#ifdef DEBUG_SROM2
492 printf("%X", getfrom_srom(dev, ioaddr) & 15);
493#endif
494 retval = (retval << 1) | ((getfrom_srom(dev, ioaddr) & EE_DATA_READ) ? 1 : 0);
495 }
496
497 sendto_srom(dev, SROM_RD | SROM_SR | DT_CS, ioaddr);
498
499#ifdef DEBUG_SROM2
500 printf(" :%X:", getfrom_srom(dev, ioaddr) & 15);
501#endif
502
503 for (i = 16; i > 0; i--) {
504 sendto_srom(dev, SROM_RD | SROM_SR | DT_CS | DT_CLK, ioaddr);
505 udelay(10);
506#ifdef DEBUG_SROM2
507 printf("%X", getfrom_srom(dev, ioaddr) & 15);
508#endif
509 retval = (retval << 1) | ((getfrom_srom(dev, ioaddr) & EE_DATA_READ) ? 1 : 0);
510 sendto_srom(dev, SROM_RD | SROM_SR | DT_CS, ioaddr);
511 udelay(10);
512 }
513
514 /* Terminate the EEPROM access. */
515 sendto_srom(dev, SROM_RD | SROM_SR, ioaddr);
516
517#ifdef DEBUG_SROM2
518 printf(" EEPROM value at %d is %5.5x.\n", location, retval);
519#endif
520
521 return retval;
522}
523
Marek Vasut331e4ec2020-04-18 01:56:51 +0200524/*
525 * This executes a generic EEPROM command, typically a write or write
wdenk3be717f2004-01-03 19:43:48 +0000526 * enable. It returns the data output from the EEPROM, and thus may
527 * also be used for reads.
528 */
wdenkc6097192002-11-03 00:24:07 +0000529static int do_eeprom_cmd(struct eth_device *dev, u_long ioaddr, int cmd, int cmd_len)
530{
531 unsigned retval = 0;
532
533#ifdef DEBUG_SROM
534 printf(" EEPROM op 0x%x: ", cmd);
535#endif
536
537 sendto_srom(dev,SROM_RD | SROM_SR | DT_CS | DT_CLK, ioaddr);
538
539 /* Shift the command bits out. */
540 do {
541 short dataval = (cmd & (1 << cmd_len)) ? EE_WRITE_1 : EE_WRITE_0;
542 sendto_srom(dev,dataval, ioaddr);
543 udelay(10);
544
545#ifdef DEBUG_SROM2
546 printf("%X", getfrom_srom(dev,ioaddr) & 15);
547#endif
548
549 sendto_srom(dev,dataval | DT_CLK, ioaddr);
550 udelay(10);
551 retval = (retval << 1) | ((getfrom_srom(dev,ioaddr) & EE_DATA_READ) ? 1 : 0);
552 } while (--cmd_len >= 0);
553 sendto_srom(dev,SROM_RD | SROM_SR | DT_CS, ioaddr);
554
555 /* Terminate the EEPROM access. */
556 sendto_srom(dev,SROM_RD | SROM_SR, ioaddr);
557
558#ifdef DEBUG_SROM
559 printf(" EEPROM result is 0x%5.5x.\n", retval);
560#endif
561
562 return retval;
563}
564
565static int read_srom(struct eth_device *dev, u_long ioaddr, int index)
566{
567 int ee_addr_size = do_read_eeprom(dev, ioaddr, 0xff, 8) & 0x40000 ? 8 : 6;
568
569 return do_eeprom_cmd(dev, ioaddr,
570 (((SROM_READ_CMD << ee_addr_size) | index) << 16)
571 | 0xffff, 3 + ee_addr_size + 16);
572}
573
574#ifdef UPDATE_SROM
575static int write_srom(struct eth_device *dev, u_long ioaddr, int index, int new_value)
576{
577 int ee_addr_size = do_read_eeprom(dev, ioaddr, 0xff, 8) & 0x40000 ? 8 : 6;
578 int i;
579 unsigned short newval;
580
581 udelay(10*1000); /* test-only */
582
583#ifdef DEBUG_SROM
584 printf("ee_addr_size=%d.\n", ee_addr_size);
585 printf("Writing new entry 0x%4.4x to offset %d.\n", new_value, index);
586#endif
587
588 /* Enable programming modes. */
589 do_eeprom_cmd(dev, ioaddr, (0x4f << (ee_addr_size-4)), 3+ee_addr_size);
590
591 /* Do the actual write. */
592 do_eeprom_cmd(dev, ioaddr,
593 (((SROM_WRITE_CMD<<ee_addr_size)|index) << 16) | new_value,
594 3 + ee_addr_size + 16);
595
596 /* Poll for write finished. */
597 sendto_srom(dev, SROM_RD | SROM_SR | DT_CS, ioaddr);
598 for (i = 0; i < 10000; i++) /* Typical 2000 ticks */
599 if (getfrom_srom(dev, ioaddr) & EE_DATA_READ)
600 break;
601
602#ifdef DEBUG_SROM
603 printf(" Write finished after %d ticks.\n", i);
604#endif
605
606 /* Disable programming. */
607 do_eeprom_cmd(dev, ioaddr, (0x40 << (ee_addr_size-4)), 3 + ee_addr_size);
608
609 /* And read the result. */
610 newval = do_eeprom_cmd(dev, ioaddr,
611 (((SROM_READ_CMD<<ee_addr_size)|index) << 16)
612 | 0xffff, 3 + ee_addr_size + 16);
613#ifdef DEBUG_SROM
614 printf(" New value at offset %d is %4.4x.\n", index, newval);
615#endif
616 return 1;
617}
618#endif
619
620static void read_hw_addr(struct eth_device *dev, bd_t *bis)
621{
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200622 u_short tmp, *p = (u_short *)(&dev->enetaddr[0]);
wdenkc6097192002-11-03 00:24:07 +0000623 int i, j = 0;
624
625 for (i = 0; i < (ETH_ALEN >> 1); i++) {
626 tmp = read_srom(dev, DE4X5_APROM, ((SROM_HWADD >> 1) + i));
627 *p = le16_to_cpu(tmp);
628 j += *p++;
629 }
630
631 if ((j == 0) || (j == 0x2fffd)) {
632 memset (dev->enetaddr, 0, ETH_ALEN);
wdenk3be717f2004-01-03 19:43:48 +0000633 debug ("Warning: can't read HW address from SROM.\n");
wdenkc6097192002-11-03 00:24:07 +0000634 goto Done;
635 }
636
637 return;
638
639Done:
640#ifdef UPDATE_SROM
641 update_srom(dev, bis);
642#endif
643 return;
644}
645
646#ifdef UPDATE_SROM
647static void update_srom(struct eth_device *dev, bd_t *bis)
648{
649 int i;
650 static unsigned short eeprom[0x40] = {
Wolfgang Denka1be4762008-05-20 16:00:29 +0200651 0x140b, 0x6610, 0x0000, 0x0000, /* 00 */
652 0x0000, 0x0000, 0x0000, 0x0000, /* 04 */
653 0x00a3, 0x0103, 0x0000, 0x0000, /* 08 */
654 0x0000, 0x1f00, 0x0000, 0x0000, /* 0c */
655 0x0108, 0x038d, 0x0000, 0x0000, /* 10 */
656 0xe078, 0x0001, 0x0040, 0x0018, /* 14 */
657 0x0000, 0x0000, 0x0000, 0x0000, /* 18 */
658 0x0000, 0x0000, 0x0000, 0x0000, /* 1c */
659 0x0000, 0x0000, 0x0000, 0x0000, /* 20 */
660 0x0000, 0x0000, 0x0000, 0x0000, /* 24 */
661 0x0000, 0x0000, 0x0000, 0x0000, /* 28 */
662 0x0000, 0x0000, 0x0000, 0x0000, /* 2c */
663 0x0000, 0x0000, 0x0000, 0x0000, /* 30 */
664 0x0000, 0x0000, 0x0000, 0x0000, /* 34 */
665 0x0000, 0x0000, 0x0000, 0x0000, /* 38 */
666 0x0000, 0x0000, 0x0000, 0x4e07, /* 3c */
wdenkc6097192002-11-03 00:24:07 +0000667 };
Mike Frysingerb2039652009-02-11 19:01:26 -0500668 uchar enetaddr[6];
wdenkc6097192002-11-03 00:24:07 +0000669
670 /* Ethernet Addr... */
Simon Glass399a9ce2017-08-03 12:22:14 -0600671 if (!eth_env_get_enetaddr("ethaddr", enetaddr))
Mike Frysingerb2039652009-02-11 19:01:26 -0500672 return;
673 eeprom[0x0a] = (enetaddr[1] << 8) | enetaddr[0];
674 eeprom[0x0b] = (enetaddr[3] << 8) | enetaddr[2];
675 eeprom[0x0c] = (enetaddr[5] << 8) | enetaddr[4];
wdenkc6097192002-11-03 00:24:07 +0000676
Wolfgang Denka1be4762008-05-20 16:00:29 +0200677 for (i=0; i<0x40; i++) {
wdenkc6097192002-11-03 00:24:07 +0000678 write_srom(dev, DE4X5_APROM, i, eeprom[i]);
679 }
680}
wdenk3be717f2004-01-03 19:43:48 +0000681#endif /* UPDATE_SROM */