]> git.ipfire.org Git - people/ms/u-boot.git/blob - drivers/net/sh_eth.c
net: sh_eth: Split sh_eth_init
[people/ms/u-boot.git] / drivers / net / sh_eth.c
1 /*
2 * sh_eth.c - Driver for Renesas ethernet controller.
3 *
4 * Copyright (C) 2008, 2011 Renesas Solutions Corp.
5 * Copyright (c) 2008, 2011, 2014 2014 Nobuhiro Iwamatsu
6 * Copyright (c) 2007 Carlos Munoz <carlos@kenati.com>
7 * Copyright (C) 2013, 2014 Renesas Electronics Corporation
8 *
9 * SPDX-License-Identifier: GPL-2.0+
10 */
11
12 #include <config.h>
13 #include <common.h>
14 #include <malloc.h>
15 #include <net.h>
16 #include <netdev.h>
17 #include <miiphy.h>
18 #include <linux/errno.h>
19 #include <asm/io.h>
20
21 #include "sh_eth.h"
22
23 #ifndef CONFIG_SH_ETHER_USE_PORT
24 # error "Please define CONFIG_SH_ETHER_USE_PORT"
25 #endif
26 #ifndef CONFIG_SH_ETHER_PHY_ADDR
27 # error "Please define CONFIG_SH_ETHER_PHY_ADDR"
28 #endif
29
30 #if defined(CONFIG_SH_ETHER_CACHE_WRITEBACK) && !defined(CONFIG_SYS_DCACHE_OFF)
31 #define flush_cache_wback(addr, len) \
32 flush_dcache_range((u32)addr, \
33 (u32)(addr + ALIGN(len, CONFIG_SH_ETHER_ALIGNE_SIZE)))
34 #else
35 #define flush_cache_wback(...)
36 #endif
37
38 #if defined(CONFIG_SH_ETHER_CACHE_INVALIDATE) && defined(CONFIG_ARM)
39 #define invalidate_cache(addr, len) \
40 { \
41 u32 line_size = CONFIG_SH_ETHER_ALIGNE_SIZE; \
42 u32 start, end; \
43 \
44 start = (u32)addr; \
45 end = start + len; \
46 start &= ~(line_size - 1); \
47 end = ((end + line_size - 1) & ~(line_size - 1)); \
48 \
49 invalidate_dcache_range(start, end); \
50 }
51 #else
52 #define invalidate_cache(...)
53 #endif
54
55 #define TIMEOUT_CNT 1000
56
57 static int sh_eth_send_common(struct sh_eth_dev *eth, void *packet, int len)
58 {
59 int port = eth->port, ret = 0, timeout;
60 struct sh_eth_info *port_info = &eth->port_info[port];
61
62 if (!packet || len > 0xffff) {
63 printf(SHETHER_NAME ": %s: Invalid argument\n", __func__);
64 ret = -EINVAL;
65 goto err;
66 }
67
68 /* packet must be a 4 byte boundary */
69 if ((int)packet & 3) {
70 printf(SHETHER_NAME ": %s: packet not 4 byte aligned\n"
71 , __func__);
72 ret = -EFAULT;
73 goto err;
74 }
75
76 /* Update tx descriptor */
77 flush_cache_wback(packet, len);
78 port_info->tx_desc_cur->td2 = ADDR_TO_PHY(packet);
79 port_info->tx_desc_cur->td1 = len << 16;
80 /* Must preserve the end of descriptor list indication */
81 if (port_info->tx_desc_cur->td0 & TD_TDLE)
82 port_info->tx_desc_cur->td0 = TD_TACT | TD_TFP | TD_TDLE;
83 else
84 port_info->tx_desc_cur->td0 = TD_TACT | TD_TFP;
85
86 flush_cache_wback(port_info->tx_desc_cur, sizeof(struct tx_desc_s));
87
88 /* Restart the transmitter if disabled */
89 if (!(sh_eth_read(port_info, EDTRR) & EDTRR_TRNS))
90 sh_eth_write(port_info, EDTRR_TRNS, EDTRR);
91
92 /* Wait until packet is transmitted */
93 timeout = TIMEOUT_CNT;
94 do {
95 invalidate_cache(port_info->tx_desc_cur,
96 sizeof(struct tx_desc_s));
97 udelay(100);
98 } while (port_info->tx_desc_cur->td0 & TD_TACT && timeout--);
99
100 if (timeout < 0) {
101 printf(SHETHER_NAME ": transmit timeout\n");
102 ret = -ETIMEDOUT;
103 goto err;
104 }
105
106 port_info->tx_desc_cur++;
107 if (port_info->tx_desc_cur >= port_info->tx_desc_base + NUM_TX_DESC)
108 port_info->tx_desc_cur = port_info->tx_desc_base;
109
110 err:
111 return ret;
112 }
113
114 static int sh_eth_send_legacy(struct eth_device *dev, void *packet, int len)
115 {
116 struct sh_eth_dev *eth = dev->priv;
117
118 return sh_eth_send_common(eth, packet, len);
119 }
120
121 static int sh_eth_recv_start(struct sh_eth_dev *eth)
122 {
123 int port = eth->port, len = 0;
124 struct sh_eth_info *port_info = &eth->port_info[port];
125
126 /* Check if the rx descriptor is ready */
127 invalidate_cache(port_info->rx_desc_cur, sizeof(struct rx_desc_s));
128 if (port_info->rx_desc_cur->rd0 & RD_RACT)
129 return -EINVAL;
130
131 /* Check for errors */
132 if (port_info->rx_desc_cur->rd0 & RD_RFE)
133 return -EINVAL;
134
135 len = port_info->rx_desc_cur->rd1 & 0xffff;
136
137 return len;
138 }
139
140 static void sh_eth_recv_finish(struct sh_eth_dev *eth)
141 {
142 struct sh_eth_info *port_info = &eth->port_info[eth->port];
143
144 /* Make current descriptor available again */
145 if (port_info->rx_desc_cur->rd0 & RD_RDLE)
146 port_info->rx_desc_cur->rd0 = RD_RACT | RD_RDLE;
147 else
148 port_info->rx_desc_cur->rd0 = RD_RACT;
149
150 flush_cache_wback(port_info->rx_desc_cur,
151 sizeof(struct rx_desc_s));
152
153 /* Point to the next descriptor */
154 port_info->rx_desc_cur++;
155 if (port_info->rx_desc_cur >=
156 port_info->rx_desc_base + NUM_RX_DESC)
157 port_info->rx_desc_cur = port_info->rx_desc_base;
158 }
159
160 static int sh_eth_recv_common(struct sh_eth_dev *eth)
161 {
162 int port = eth->port, len = 0;
163 struct sh_eth_info *port_info = &eth->port_info[port];
164 uchar *packet = (uchar *)ADDR_TO_P2(port_info->rx_desc_cur->rd2);
165
166 len = sh_eth_recv_start(eth);
167 if (len > 0) {
168 invalidate_cache(packet, len);
169 net_process_received_packet(packet, len);
170 sh_eth_recv_finish(eth);
171 } else
172 len = 0;
173
174 /* Restart the receiver if disabled */
175 if (!(sh_eth_read(port_info, EDRRR) & EDRRR_R))
176 sh_eth_write(port_info, EDRRR_R, EDRRR);
177
178 return len;
179 }
180
181 static int sh_eth_recv_legacy(struct eth_device *dev)
182 {
183 struct sh_eth_dev *eth = dev->priv;
184
185 return sh_eth_recv_common(eth);
186 }
187
188 static int sh_eth_reset(struct sh_eth_dev *eth)
189 {
190 struct sh_eth_info *port_info = &eth->port_info[eth->port];
191 #if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
192 int ret = 0, i;
193
194 /* Start e-dmac transmitter and receiver */
195 sh_eth_write(port_info, EDSR_ENALL, EDSR);
196
197 /* Perform a software reset and wait for it to complete */
198 sh_eth_write(port_info, EDMR_SRST, EDMR);
199 for (i = 0; i < TIMEOUT_CNT; i++) {
200 if (!(sh_eth_read(port_info, EDMR) & EDMR_SRST))
201 break;
202 udelay(1000);
203 }
204
205 if (i == TIMEOUT_CNT) {
206 printf(SHETHER_NAME ": Software reset timeout\n");
207 ret = -EIO;
208 }
209
210 return ret;
211 #else
212 sh_eth_write(port_info, sh_eth_read(port_info, EDMR) | EDMR_SRST, EDMR);
213 udelay(3000);
214 sh_eth_write(port_info,
215 sh_eth_read(port_info, EDMR) & ~EDMR_SRST, EDMR);
216
217 return 0;
218 #endif
219 }
220
221 static int sh_eth_tx_desc_init(struct sh_eth_dev *eth)
222 {
223 int port = eth->port, i, ret = 0;
224 u32 alloc_desc_size = NUM_TX_DESC * sizeof(struct tx_desc_s);
225 struct sh_eth_info *port_info = &eth->port_info[port];
226 struct tx_desc_s *cur_tx_desc;
227
228 /*
229 * Allocate rx descriptors. They must be aligned to size of struct
230 * tx_desc_s.
231 */
232 port_info->tx_desc_alloc =
233 memalign(sizeof(struct tx_desc_s), alloc_desc_size);
234 if (!port_info->tx_desc_alloc) {
235 printf(SHETHER_NAME ": memalign failed\n");
236 ret = -ENOMEM;
237 goto err;
238 }
239
240 flush_cache_wback(port_info->tx_desc_alloc, alloc_desc_size);
241
242 /* Make sure we use a P2 address (non-cacheable) */
243 port_info->tx_desc_base =
244 (struct tx_desc_s *)ADDR_TO_P2((u32)port_info->tx_desc_alloc);
245 port_info->tx_desc_cur = port_info->tx_desc_base;
246
247 /* Initialize all descriptors */
248 for (cur_tx_desc = port_info->tx_desc_base, i = 0; i < NUM_TX_DESC;
249 cur_tx_desc++, i++) {
250 cur_tx_desc->td0 = 0x00;
251 cur_tx_desc->td1 = 0x00;
252 cur_tx_desc->td2 = 0x00;
253 }
254
255 /* Mark the end of the descriptors */
256 cur_tx_desc--;
257 cur_tx_desc->td0 |= TD_TDLE;
258
259 /*
260 * Point the controller to the tx descriptor list. Must use physical
261 * addresses
262 */
263 sh_eth_write(port_info, ADDR_TO_PHY(port_info->tx_desc_base), TDLAR);
264 #if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
265 sh_eth_write(port_info, ADDR_TO_PHY(port_info->tx_desc_base), TDFAR);
266 sh_eth_write(port_info, ADDR_TO_PHY(cur_tx_desc), TDFXR);
267 sh_eth_write(port_info, 0x01, TDFFR);/* Last discriptor bit */
268 #endif
269
270 err:
271 return ret;
272 }
273
274 static int sh_eth_rx_desc_init(struct sh_eth_dev *eth)
275 {
276 int port = eth->port, i, ret = 0;
277 u32 alloc_desc_size = NUM_RX_DESC * sizeof(struct rx_desc_s);
278 struct sh_eth_info *port_info = &eth->port_info[port];
279 struct rx_desc_s *cur_rx_desc;
280 u8 *rx_buf;
281
282 /*
283 * Allocate rx descriptors. They must be aligned to size of struct
284 * rx_desc_s.
285 */
286 port_info->rx_desc_alloc =
287 memalign(sizeof(struct rx_desc_s), alloc_desc_size);
288 if (!port_info->rx_desc_alloc) {
289 printf(SHETHER_NAME ": memalign failed\n");
290 ret = -ENOMEM;
291 goto err;
292 }
293
294 flush_cache_wback(port_info->rx_desc_alloc, alloc_desc_size);
295
296 /* Make sure we use a P2 address (non-cacheable) */
297 port_info->rx_desc_base =
298 (struct rx_desc_s *)ADDR_TO_P2((u32)port_info->rx_desc_alloc);
299
300 port_info->rx_desc_cur = port_info->rx_desc_base;
301
302 /*
303 * Allocate rx data buffers. They must be RX_BUF_ALIGNE_SIZE bytes
304 * aligned and in P2 area.
305 */
306 port_info->rx_buf_alloc =
307 memalign(RX_BUF_ALIGNE_SIZE, NUM_RX_DESC * MAX_BUF_SIZE);
308 if (!port_info->rx_buf_alloc) {
309 printf(SHETHER_NAME ": alloc failed\n");
310 ret = -ENOMEM;
311 goto err_buf_alloc;
312 }
313
314 port_info->rx_buf_base = (u8 *)ADDR_TO_P2((u32)port_info->rx_buf_alloc);
315
316 /* Initialize all descriptors */
317 for (cur_rx_desc = port_info->rx_desc_base,
318 rx_buf = port_info->rx_buf_base, i = 0;
319 i < NUM_RX_DESC; cur_rx_desc++, rx_buf += MAX_BUF_SIZE, i++) {
320 cur_rx_desc->rd0 = RD_RACT;
321 cur_rx_desc->rd1 = MAX_BUF_SIZE << 16;
322 cur_rx_desc->rd2 = (u32)ADDR_TO_PHY(rx_buf);
323 }
324
325 /* Mark the end of the descriptors */
326 cur_rx_desc--;
327 cur_rx_desc->rd0 |= RD_RDLE;
328
329 /* Point the controller to the rx descriptor list */
330 sh_eth_write(port_info, ADDR_TO_PHY(port_info->rx_desc_base), RDLAR);
331 #if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
332 sh_eth_write(port_info, ADDR_TO_PHY(port_info->rx_desc_base), RDFAR);
333 sh_eth_write(port_info, ADDR_TO_PHY(cur_rx_desc), RDFXR);
334 sh_eth_write(port_info, RDFFR_RDLF, RDFFR);
335 #endif
336
337 return ret;
338
339 err_buf_alloc:
340 free(port_info->rx_desc_alloc);
341 port_info->rx_desc_alloc = NULL;
342
343 err:
344 return ret;
345 }
346
347 static void sh_eth_tx_desc_free(struct sh_eth_dev *eth)
348 {
349 int port = eth->port;
350 struct sh_eth_info *port_info = &eth->port_info[port];
351
352 if (port_info->tx_desc_alloc) {
353 free(port_info->tx_desc_alloc);
354 port_info->tx_desc_alloc = NULL;
355 }
356 }
357
358 static void sh_eth_rx_desc_free(struct sh_eth_dev *eth)
359 {
360 int port = eth->port;
361 struct sh_eth_info *port_info = &eth->port_info[port];
362
363 if (port_info->rx_desc_alloc) {
364 free(port_info->rx_desc_alloc);
365 port_info->rx_desc_alloc = NULL;
366 }
367
368 if (port_info->rx_buf_alloc) {
369 free(port_info->rx_buf_alloc);
370 port_info->rx_buf_alloc = NULL;
371 }
372 }
373
374 static int sh_eth_desc_init(struct sh_eth_dev *eth)
375 {
376 int ret = 0;
377
378 ret = sh_eth_tx_desc_init(eth);
379 if (ret)
380 goto err_tx_init;
381
382 ret = sh_eth_rx_desc_init(eth);
383 if (ret)
384 goto err_rx_init;
385
386 return ret;
387 err_rx_init:
388 sh_eth_tx_desc_free(eth);
389
390 err_tx_init:
391 return ret;
392 }
393
394 static void sh_eth_write_hwaddr(struct sh_eth_info *port_info,
395 unsigned char *mac)
396 {
397 u32 val;
398
399 val = (mac[0] << 24) | (mac[1] << 16) | (mac[2] << 8) | mac[3];
400 sh_eth_write(port_info, val, MAHR);
401
402 val = (mac[4] << 8) | mac[5];
403 sh_eth_write(port_info, val, MALR);
404 }
405
406 static int sh_eth_phy_config_legacy(struct sh_eth_dev *eth)
407 {
408 int port = eth->port, ret = 0;
409 struct sh_eth_info *port_info = &eth->port_info[port];
410 struct eth_device *dev = port_info->dev;
411 struct phy_device *phydev;
412
413 phydev = phy_connect(
414 miiphy_get_dev_by_name(dev->name),
415 port_info->phy_addr, dev, CONFIG_SH_ETHER_PHY_MODE);
416 port_info->phydev = phydev;
417 phy_config(phydev);
418
419 return ret;
420 }
421
422 static void sh_eth_mac_regs_config(struct sh_eth_dev *eth, unsigned char *mac)
423 {
424 struct sh_eth_info *port_info = &eth->port_info[eth->port];
425
426 /* Configure e-dmac registers */
427 sh_eth_write(port_info, (sh_eth_read(port_info, EDMR) & ~EMDR_DESC_R) |
428 (EMDR_DESC | EDMR_EL), EDMR);
429
430 sh_eth_write(port_info, 0, EESIPR);
431 sh_eth_write(port_info, 0, TRSCER);
432 sh_eth_write(port_info, 0, TFTR);
433 sh_eth_write(port_info, (FIFO_SIZE_T | FIFO_SIZE_R), FDR);
434 sh_eth_write(port_info, RMCR_RST, RMCR);
435 #if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
436 sh_eth_write(port_info, 0, RPADIR);
437 #endif
438 sh_eth_write(port_info, (FIFO_F_D_RFF | FIFO_F_D_RFD), FCFTR);
439
440 /* Configure e-mac registers */
441 sh_eth_write(port_info, 0, ECSIPR);
442
443 /* Set Mac address */
444 sh_eth_write_hwaddr(port_info, mac);
445
446 sh_eth_write(port_info, RFLR_RFL_MIN, RFLR);
447 #if defined(SH_ETH_TYPE_GETHER)
448 sh_eth_write(port_info, 0, PIPR);
449 #endif
450 #if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
451 sh_eth_write(port_info, APR_AP, APR);
452 sh_eth_write(port_info, MPR_MP, MPR);
453 sh_eth_write(port_info, TPAUSER_TPAUSE, TPAUSER);
454 #endif
455
456 #if defined(CONFIG_CPU_SH7734) || defined(CONFIG_R8A7740)
457 sh_eth_write(port_info, CONFIG_SH_ETHER_SH7734_MII, RMII_MII);
458 #elif defined(CONFIG_RCAR_GEN2)
459 sh_eth_write(port_info, sh_eth_read(port_info, RMIIMR) | 0x1, RMIIMR);
460 #endif
461 }
462
463 static int sh_eth_phy_regs_config(struct sh_eth_dev *eth)
464 {
465 struct sh_eth_info *port_info = &eth->port_info[eth->port];
466 struct phy_device *phy = port_info->phydev;
467 int ret = 0;
468 u32 val = 0;
469
470 /* Set the transfer speed */
471 if (phy->speed == 100) {
472 printf(SHETHER_NAME ": 100Base/");
473 #if defined(SH_ETH_TYPE_GETHER)
474 sh_eth_write(port_info, GECMR_100B, GECMR);
475 #elif defined(CONFIG_CPU_SH7757) || defined(CONFIG_CPU_SH7752)
476 sh_eth_write(port_info, 1, RTRATE);
477 #elif defined(CONFIG_CPU_SH7724) || defined(CONFIG_RCAR_GEN2)
478 val = ECMR_RTM;
479 #endif
480 } else if (phy->speed == 10) {
481 printf(SHETHER_NAME ": 10Base/");
482 #if defined(SH_ETH_TYPE_GETHER)
483 sh_eth_write(port_info, GECMR_10B, GECMR);
484 #elif defined(CONFIG_CPU_SH7757) || defined(CONFIG_CPU_SH7752)
485 sh_eth_write(port_info, 0, RTRATE);
486 #endif
487 }
488 #if defined(SH_ETH_TYPE_GETHER)
489 else if (phy->speed == 1000) {
490 printf(SHETHER_NAME ": 1000Base/");
491 sh_eth_write(port_info, GECMR_1000B, GECMR);
492 }
493 #endif
494
495 /* Check if full duplex mode is supported by the phy */
496 if (phy->duplex) {
497 printf("Full\n");
498 sh_eth_write(port_info,
499 val | (ECMR_CHG_DM | ECMR_RE | ECMR_TE | ECMR_DM),
500 ECMR);
501 } else {
502 printf("Half\n");
503 sh_eth_write(port_info,
504 val | (ECMR_CHG_DM | ECMR_RE | ECMR_TE),
505 ECMR);
506 }
507
508 return ret;
509 }
510
511 static void sh_eth_start(struct sh_eth_dev *eth)
512 {
513 struct sh_eth_info *port_info = &eth->port_info[eth->port];
514
515 /*
516 * Enable the e-dmac receiver only. The transmitter will be enabled when
517 * we have something to transmit
518 */
519 sh_eth_write(port_info, EDRRR_R, EDRRR);
520 }
521
522 static void sh_eth_stop(struct sh_eth_dev *eth)
523 {
524 struct sh_eth_info *port_info = &eth->port_info[eth->port];
525
526 sh_eth_write(port_info, ~EDRRR_R, EDRRR);
527 }
528
529 static int sh_eth_init_common(struct sh_eth_dev *eth, unsigned char *mac)
530 {
531 int ret = 0;
532
533 ret = sh_eth_reset(eth);
534 if (ret)
535 return ret;
536
537 ret = sh_eth_desc_init(eth);
538 if (ret)
539 return ret;
540
541 sh_eth_mac_regs_config(eth, mac);
542
543 return 0;
544 }
545
546 static int sh_eth_start_common(struct sh_eth_dev *eth)
547 {
548 struct sh_eth_info *port_info = &eth->port_info[eth->port];
549 int ret;
550
551 ret = phy_startup(port_info->phydev);
552 if (ret) {
553 printf(SHETHER_NAME ": phy startup failure\n");
554 return ret;
555 }
556
557 ret = sh_eth_phy_regs_config(eth);
558 if (ret)
559 return ret;
560
561 sh_eth_start(eth);
562
563 return 0;
564 }
565
566 static int sh_eth_init_legacy(struct eth_device *dev, bd_t *bd)
567 {
568 struct sh_eth_dev *eth = dev->priv;
569 int ret;
570
571 ret = sh_eth_init_common(eth, dev->enetaddr);
572 if (ret)
573 return ret;
574
575 ret = sh_eth_phy_config_legacy(eth);
576 if (ret) {
577 printf(SHETHER_NAME ": phy config timeout\n");
578 goto err_start;
579 }
580
581 ret = sh_eth_start_common(eth);
582 if (ret)
583 goto err_start;
584
585 return 0;
586
587 err_start:
588 sh_eth_tx_desc_free(eth);
589 sh_eth_rx_desc_free(eth);
590 return ret;
591 }
592
593 void sh_eth_halt_legacy(struct eth_device *dev)
594 {
595 struct sh_eth_dev *eth = dev->priv;
596
597 sh_eth_stop(eth);
598 }
599
600 int sh_eth_initialize(bd_t *bd)
601 {
602 int ret = 0;
603 struct sh_eth_dev *eth = NULL;
604 struct eth_device *dev = NULL;
605 struct mii_dev *mdiodev;
606
607 eth = (struct sh_eth_dev *)malloc(sizeof(struct sh_eth_dev));
608 if (!eth) {
609 printf(SHETHER_NAME ": %s: malloc failed\n", __func__);
610 ret = -ENOMEM;
611 goto err;
612 }
613
614 dev = (struct eth_device *)malloc(sizeof(struct eth_device));
615 if (!dev) {
616 printf(SHETHER_NAME ": %s: malloc failed\n", __func__);
617 ret = -ENOMEM;
618 goto err;
619 }
620 memset(dev, 0, sizeof(struct eth_device));
621 memset(eth, 0, sizeof(struct sh_eth_dev));
622
623 eth->port = CONFIG_SH_ETHER_USE_PORT;
624 eth->port_info[eth->port].phy_addr = CONFIG_SH_ETHER_PHY_ADDR;
625 eth->port_info[eth->port].iobase =
626 (void __iomem *)(BASE_IO_ADDR + 0x800 * eth->port);
627
628 dev->priv = (void *)eth;
629 dev->iobase = 0;
630 dev->init = sh_eth_init_legacy;
631 dev->halt = sh_eth_halt_legacy;
632 dev->send = sh_eth_send_legacy;
633 dev->recv = sh_eth_recv_legacy;
634 eth->port_info[eth->port].dev = dev;
635
636 strcpy(dev->name, SHETHER_NAME);
637
638 /* Register Device to EtherNet subsystem */
639 eth_register(dev);
640
641 bb_miiphy_buses[0].priv = eth;
642 mdiodev = mdio_alloc();
643 if (!mdiodev)
644 return -ENOMEM;
645 strncpy(mdiodev->name, dev->name, MDIO_NAME_LEN);
646 mdiodev->read = bb_miiphy_read;
647 mdiodev->write = bb_miiphy_write;
648
649 ret = mdio_register(mdiodev);
650 if (ret < 0)
651 return ret;
652
653 if (!eth_env_get_enetaddr("ethaddr", dev->enetaddr))
654 puts("Please set MAC address\n");
655
656 return ret;
657
658 err:
659 if (dev)
660 free(dev);
661
662 if (eth)
663 free(eth);
664
665 printf(SHETHER_NAME ": Failed\n");
666 return ret;
667 }
668
669 /******* for bb_miiphy *******/
670 static int sh_eth_bb_init(struct bb_miiphy_bus *bus)
671 {
672 return 0;
673 }
674
675 static int sh_eth_bb_mdio_active(struct bb_miiphy_bus *bus)
676 {
677 struct sh_eth_dev *eth = bus->priv;
678 struct sh_eth_info *port_info = &eth->port_info[eth->port];
679
680 sh_eth_write(port_info, sh_eth_read(port_info, PIR) | PIR_MMD, PIR);
681
682 return 0;
683 }
684
685 static int sh_eth_bb_mdio_tristate(struct bb_miiphy_bus *bus)
686 {
687 struct sh_eth_dev *eth = bus->priv;
688 struct sh_eth_info *port_info = &eth->port_info[eth->port];
689
690 sh_eth_write(port_info, sh_eth_read(port_info, PIR) & ~PIR_MMD, PIR);
691
692 return 0;
693 }
694
695 static int sh_eth_bb_set_mdio(struct bb_miiphy_bus *bus, int v)
696 {
697 struct sh_eth_dev *eth = bus->priv;
698 struct sh_eth_info *port_info = &eth->port_info[eth->port];
699
700 if (v)
701 sh_eth_write(port_info,
702 sh_eth_read(port_info, PIR) | PIR_MDO, PIR);
703 else
704 sh_eth_write(port_info,
705 sh_eth_read(port_info, PIR) & ~PIR_MDO, PIR);
706
707 return 0;
708 }
709
710 static int sh_eth_bb_get_mdio(struct bb_miiphy_bus *bus, int *v)
711 {
712 struct sh_eth_dev *eth = bus->priv;
713 struct sh_eth_info *port_info = &eth->port_info[eth->port];
714
715 *v = (sh_eth_read(port_info, PIR) & PIR_MDI) >> 3;
716
717 return 0;
718 }
719
720 static int sh_eth_bb_set_mdc(struct bb_miiphy_bus *bus, int v)
721 {
722 struct sh_eth_dev *eth = bus->priv;
723 struct sh_eth_info *port_info = &eth->port_info[eth->port];
724
725 if (v)
726 sh_eth_write(port_info,
727 sh_eth_read(port_info, PIR) | PIR_MDC, PIR);
728 else
729 sh_eth_write(port_info,
730 sh_eth_read(port_info, PIR) & ~PIR_MDC, PIR);
731
732 return 0;
733 }
734
735 static int sh_eth_bb_delay(struct bb_miiphy_bus *bus)
736 {
737 udelay(10);
738
739 return 0;
740 }
741
742 struct bb_miiphy_bus bb_miiphy_buses[] = {
743 {
744 .name = "sh_eth",
745 .init = sh_eth_bb_init,
746 .mdio_active = sh_eth_bb_mdio_active,
747 .mdio_tristate = sh_eth_bb_mdio_tristate,
748 .set_mdio = sh_eth_bb_set_mdio,
749 .get_mdio = sh_eth_bb_get_mdio,
750 .set_mdc = sh_eth_bb_set_mdc,
751 .delay = sh_eth_bb_delay,
752 }
753 };
754
755 int bb_miiphy_buses_num = ARRAY_SIZE(bb_miiphy_buses);