net: dc2114x: Clean up init code
[platform/kernel/u-boot.git] / drivers / net / dc2114x.c
1 // SPDX-License-Identifier: GPL-2.0+
2
3 #include <common.h>
4 #include <env.h>
5 #include <malloc.h>
6 #include <net.h>
7 #include <netdev.h>
8 #include <pci.h>
9
10 #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 */
68 #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. */
72 #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
107 #define NUM_TX_DESC 1                   /* Number of TX descriptors   */
108 #define RX_BUFF_SZ  PKTSIZE_ALIGN
109
110 #define TOUT_LOOP   1000000
111
112 #define SETUP_FRAME_LEN 192
113
114 struct de4x5_desc {
115         volatile s32 status;
116         u32 des1;
117         u32 buf;
118         u32 next;
119 };
120
121 static struct de4x5_desc rx_ring[NUM_RX_DESC] __attribute__ ((aligned(32))); /* RX descriptor ring         */
122 static struct de4x5_desc tx_ring[NUM_TX_DESC] __attribute__ ((aligned(32))); /* TX descriptor ring         */
123 static int rx_new;                             /* RX descriptor ring pointer */
124 static int tx_new;                             /* TX descriptor ring pointer */
125
126 static char rxRingSize;
127 static char txRingSize;
128
129 static void  sendto_srom(struct eth_device* dev, u_int command, u_long addr);
130 static int   getfrom_srom(struct eth_device* dev, u_long addr);
131 static int   do_eeprom_cmd(struct eth_device *dev, u_long ioaddr,int cmd,int cmd_len);
132 static int   do_read_eeprom(struct eth_device *dev,u_long ioaddr,int location,int addr_len);
133 #ifdef UPDATE_SROM
134 static int   write_srom(struct eth_device *dev, u_long ioaddr, int index, int new_value);
135 static void  update_srom(struct eth_device *dev, bd_t *bis);
136 #endif
137 static int   read_srom(struct eth_device *dev, u_long ioaddr, int index);
138 static void  read_hw_addr(struct eth_device* dev, bd_t * bis);
139 static void  send_setup_frame(struct eth_device* dev, bd_t * bis);
140
141 static int   dc21x4x_init(struct eth_device* dev, bd_t* bis);
142 static int   dc21x4x_send(struct eth_device *dev, void *packet, int length);
143 static int   dc21x4x_recv(struct eth_device* dev);
144 static void  dc21x4x_halt(struct eth_device* dev);
145
146 #if defined(CONFIG_E500)
147 #define phys_to_bus(a) (a)
148 #else
149 #define phys_to_bus(a)  pci_phys_to_mem((pci_dev_t)dev->priv, a)
150 #endif
151
152 static int INL(struct eth_device* dev, u_long addr)
153 {
154         return le32_to_cpu(*(volatile u_long *)(addr + dev->iobase));
155 }
156
157 static 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
162 static 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
168 int dc21x4x_initialize(bd_t *bis)
169 {
170         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;
178
179         while (1) {
180                 devbusfn = pci_find_devices(supported, idx++);
181                 if (devbusfn == -1)
182                         break;
183
184                 /* Get the chip configuration revision register. */
185                 pci_read_config_dword(devbusfn, PCI_REVISION_ID, &cfrv);
186
187                 if ((cfrv & CFRV_RN) < DC2114x_BRK) {
188                         printf("Error: The chip is not DC21143.\n");
189                         continue;
190                 }
191
192                 pci_read_config_word(devbusfn, PCI_COMMAND, &status);
193                 status |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER;
194                 pci_write_config_word(devbusfn, PCI_COMMAND, status);
195
196                 pci_read_config_word(devbusfn, PCI_COMMAND, &status);
197                 if (!(status & PCI_COMMAND_MEMORY)) {
198                         printf("Error: Can not enable MEMORY access.\n");
199                         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) {
211                         pci_write_config_byte(devbusfn, PCI_LATENCY_TIMER,
212                                               0x60);
213                 }
214
215                 /* read BAR for memory space access */
216                 pci_read_config_dword(devbusfn, PCI_BASE_ADDRESS_1, &iobase);
217                 iobase &= PCI_BASE_ADDRESS_MEM_MASK;
218                 debug("dc21x4x: DEC 21142 PCI Device @0x%x\n", iobase);
219
220                 dev = (struct eth_device *)malloc(sizeof(*dev));
221                 if (!dev) {
222                         printf("Can not allocalte memory of dc21x4x\n");
223                         break;
224                 }
225
226                 memset(dev, 0, sizeof(*dev));
227
228                 sprintf(dev->name, "dc21x4x#%d", card_number);
229
230                 dev->iobase = pci_mem_to_phys(devbusfn, iobase);
231                 dev->priv = (void *)devbusfn;
232                 dev->init = dc21x4x_init;
233                 dev->halt = dc21x4x_halt;
234                 dev->send = dc21x4x_send;
235                 dev->recv = dc21x4x_recv;
236
237                 /* Ensure we're not sleeping. */
238                 pci_write_config_byte(devbusfn, PCI_CFDA_PSM, WAKEUP);
239
240                 udelay(10 * 1000);
241
242                 read_hw_addr(dev, bis);
243
244                 eth_register(dev);
245
246                 card_number++;
247         }
248
249         return card_number;
250 }
251
252 static int dc21x4x_init(struct eth_device *dev, bd_t *bis)
253 {
254         int i;
255         int devbusfn = (int)dev->priv;
256
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");
264                 return -1;
265         }
266
267         OUTL(dev, OMR_SDP | OMR_PS | OMR_PM, DE4X5_OMR);
268
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);
272                 rx_ring[i].buf =
273                         cpu_to_le32(phys_to_bus((u32)net_rx_packets[i]));
274                 rx_ring[i].next = 0;
275         }
276
277         for (i = 0; i < NUM_TX_DESC; i++) {
278                 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. */
292         OUTL(dev, phys_to_bus((u32)&rx_ring), DE4X5_RRBA);
293         OUTL(dev, phys_to_bus((u32)&tx_ring), DE4X5_TRBA);
294
295         START_DE4X5(dev);
296
297         tx_new = 0;
298         rx_new = 0;
299
300         send_setup_frame(dev, bis);
301
302         return 0;
303 }
304
305 static int dc21x4x_send(struct eth_device *dev, void *packet, int length)
306 {
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",
338                         le32_to_cpu(tx_ring[tx_new].status));
339 #endif
340                 tx_ring[tx_new].status = 0x0;
341                 goto Done;
342         }
343
344         status = length;
345
346  Done:
347     tx_new = (tx_new+1) % NUM_TX_DESC;
348         return status;
349 }
350
351 static 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                                  */
379                                 net_process_received_packet(
380                                         net_rx_packets[rx_new], length - 4);
381                         }
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
397 static 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
407 static void send_setup_frame(struct eth_device* dev, bd_t *bis)
408 {
409         int             i;
410         char    setup_frame[SETUP_FRAME_LEN];
411         char    *pa = &setup_frame[0];
412
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         }
445         tx_new = (tx_new+1) % NUM_TX_DESC;
446
447 Done:
448         return;
449 }
450
451 /* SROM Read and write routines. */
452 static void
453 sendto_srom(struct eth_device* dev, u_int command, u_long addr)
454 {
455         OUTL(dev, command, addr);
456         udelay(1);
457 }
458
459 static int
460 getfrom_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. */
471 static 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
524 /*
525  * This executes a generic EEPROM command, typically a write or write
526  * enable. It returns the data output from the EEPROM, and thus may
527  * also be used for reads.
528  */
529 static 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
565 static 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
575 static 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
620 static void read_hw_addr(struct eth_device *dev, bd_t *bis)
621 {
622         u_short tmp, *p = (u_short *)(&dev->enetaddr[0]);
623         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);
633                 debug ("Warning: can't read HW address from SROM.\n");
634                 goto Done;
635         }
636
637         return;
638
639 Done:
640 #ifdef UPDATE_SROM
641         update_srom(dev, bis);
642 #endif
643         return;
644 }
645
646 #ifdef UPDATE_SROM
647 static void update_srom(struct eth_device *dev, bd_t *bis)
648 {
649         int i;
650         static unsigned short eeprom[0x40] = {
651                 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 */
667         };
668         uchar enetaddr[6];
669
670         /* Ethernet Addr... */
671         if (!eth_env_get_enetaddr("ethaddr", enetaddr))
672                 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];
676
677         for (i=0; i<0x40; i++) {
678                 write_srom(dev, DE4X5_APROM, i, eeprom[i]);
679         }
680 }
681 #endif  /* UPDATE_SROM */