blob: d1d3b6898dd433849d1cfa082f13638d60851475 [file] [log] [blame]
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +09001/*
Yoshihiro Shimoda9d553032012-06-26 16:38:06 +00002 * sh_eth.c - Driver for Renesas ethernet controler.
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +09003 *
Nobuhiro Iwamatsu9dfac0a2011-11-14 16:56:59 +09004 * Copyright (C) 2008, 2011 Renesas Solutions Corp.
5 * Copyright (c) 2008, 2011 Nobuhiro Iwamatsu
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +09006 * Copyright (c) 2007 Carlos Munoz <carlos@kenati.com>
Nobuhiro Iwamatsu72befd32013-08-22 13:22:04 +09007 * Copyright (C) 2013 Renesas Electronics Corporation
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +09008 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +090010 */
11
12#include <config.h>
13#include <common.h>
14#include <malloc.h>
15#include <net.h>
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +090016#include <netdev.h>
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +090017#include <miiphy.h>
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +090018#include <asm/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
Nobuhiro Iwamatsu6bff09d2013-08-22 13:22:01 +090029
Nobuhiro Iwamatsuee74c702013-08-22 13:22:03 +090030#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, (u32)(addr + len - 1))
Yoshihiro Shimoda281aa052011-01-27 10:06:08 +090033#else
34#define flush_cache_wback(...)
35#endif
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +090036
Nobuhiro Iwamatsuee74c702013-08-22 13:22:03 +090037#if defined(CONFIG_SH_ETHER_CACHE_INVALIDATE) && defined(CONFIG_ARM)
38#define invalidate_cache(addr, len) \
39 { \
40 u32 line_size = CONFIG_SH_ETHER_ALIGNE_SIZE; \
41 u32 start, end; \
42 \
43 start = (u32)addr; \
44 end = start + len; \
45 start &= ~(line_size - 1); \
46 end = ((end + line_size - 1) & ~(line_size - 1)); \
47 \
48 invalidate_dcache_range(start, end); \
49 }
50#else
51#define invalidate_cache(...)
52#endif
53
Nobuhiro Iwamatsu71f507c2012-01-11 10:23:51 +090054#define TIMEOUT_CNT 1000
55
Joe Hershbergere4e04882012-05-22 18:36:19 +000056int sh_eth_send(struct eth_device *dev, void *packet, int len)
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +090057{
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +090058 struct sh_eth_dev *eth = dev->priv;
59 int port = eth->port, ret = 0, timeout;
60 struct sh_eth_info *port_info = &eth->port_info[port];
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +090061
62 if (!packet || len > 0xffff) {
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +090063 printf(SHETHER_NAME ": %s: Invalid argument\n", __func__);
64 ret = -EINVAL;
65 goto err;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +090066 }
67
68 /* packet must be a 4 byte boundary */
Nobuhiro Iwamatsu58802902012-02-02 21:28:49 +000069 if ((int)packet & 3) {
Nobuhiro Iwamatsu31e84df2014-01-23 07:52:19 +090070 printf(SHETHER_NAME ": %s: packet not 4 byte alligned\n"
71 , __func__);
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +090072 ret = -EFAULT;
73 goto err;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +090074 }
75
76 /* Update tx descriptor */
Yoshihiro Shimoda281aa052011-01-27 10:06:08 +090077 flush_cache_wback(packet, len);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +090078 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 /* Restart the transmitter if disabled */
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +000087 if (!(sh_eth_read(eth, EDTRR) & EDTRR_TRNS))
88 sh_eth_write(eth, EDTRR_TRNS, EDTRR);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +090089
90 /* Wait until packet is transmitted */
Nobuhiro Iwamatsu71f507c2012-01-11 10:23:51 +090091 timeout = TIMEOUT_CNT;
Nobuhiro Iwamatsuee74c702013-08-22 13:22:03 +090092 do {
93 invalidate_cache(port_info->tx_desc_cur,
94 sizeof(struct tx_desc_s));
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +090095 udelay(100);
Nobuhiro Iwamatsuee74c702013-08-22 13:22:03 +090096 } while (port_info->tx_desc_cur->td0 & TD_TACT && timeout--);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +090097
98 if (timeout < 0) {
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +090099 printf(SHETHER_NAME ": transmit timeout\n");
100 ret = -ETIMEDOUT;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900101 goto err;
102 }
103
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900104 port_info->tx_desc_cur++;
105 if (port_info->tx_desc_cur >= port_info->tx_desc_base + NUM_TX_DESC)
106 port_info->tx_desc_cur = port_info->tx_desc_base;
107
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900108err:
109 return ret;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900110}
111
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900112int sh_eth_recv(struct eth_device *dev)
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900113{
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900114 struct sh_eth_dev *eth = dev->priv;
115 int port = eth->port, len = 0;
116 struct sh_eth_info *port_info = &eth->port_info[port];
Joe Hershbergere4e04882012-05-22 18:36:19 +0000117 uchar *packet;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900118
119 /* Check if the rx descriptor is ready */
Nobuhiro Iwamatsuee74c702013-08-22 13:22:03 +0900120 invalidate_cache(port_info->rx_desc_cur, sizeof(struct rx_desc_s));
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900121 if (!(port_info->rx_desc_cur->rd0 & RD_RACT)) {
122 /* Check for errors */
123 if (!(port_info->rx_desc_cur->rd0 & RD_RFE)) {
124 len = port_info->rx_desc_cur->rd1 & 0xffff;
Joe Hershbergere4e04882012-05-22 18:36:19 +0000125 packet = (uchar *)
126 ADDR_TO_P2(port_info->rx_desc_cur->rd2);
Nobuhiro Iwamatsuee74c702013-08-22 13:22:03 +0900127 invalidate_cache(packet, len);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900128 NetReceive(packet, len);
129 }
130
131 /* Make current descriptor available again */
132 if (port_info->rx_desc_cur->rd0 & RD_RDLE)
133 port_info->rx_desc_cur->rd0 = RD_RACT | RD_RDLE;
134 else
135 port_info->rx_desc_cur->rd0 = RD_RACT;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900136 /* Point to the next descriptor */
137 port_info->rx_desc_cur++;
138 if (port_info->rx_desc_cur >=
139 port_info->rx_desc_base + NUM_RX_DESC)
140 port_info->rx_desc_cur = port_info->rx_desc_base;
141 }
142
143 /* Restart the receiver if disabled */
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000144 if (!(sh_eth_read(eth, EDRRR) & EDRRR_R))
145 sh_eth_write(eth, EDRRR_R, EDRRR);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900146
147 return len;
148}
149
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900150static int sh_eth_reset(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900151{
Nobuhiro Iwamatsu46288f42014-01-23 07:52:18 +0900152#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900153 int ret = 0, i;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900154
155 /* Start e-dmac transmitter and receiver */
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000156 sh_eth_write(eth, EDSR_ENALL, EDSR);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900157
158 /* Perform a software reset and wait for it to complete */
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000159 sh_eth_write(eth, EDMR_SRST, EDMR);
Nobuhiro Iwamatsu31e84df2014-01-23 07:52:19 +0900160 for (i = 0; i < TIMEOUT_CNT; i++) {
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000161 if (!(sh_eth_read(eth, EDMR) & EDMR_SRST))
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900162 break;
163 udelay(1000);
164 }
165
Nobuhiro Iwamatsu71f507c2012-01-11 10:23:51 +0900166 if (i == TIMEOUT_CNT) {
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900167 printf(SHETHER_NAME ": Software reset timeout\n");
168 ret = -EIO;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900169 }
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900170
171 return ret;
Yoshihiro Shimoda34cca922011-01-18 17:53:45 +0900172#else
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000173 sh_eth_write(eth, sh_eth_read(eth, EDMR) | EDMR_SRST, EDMR);
Yoshihiro Shimoda34cca922011-01-18 17:53:45 +0900174 udelay(3000);
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000175 sh_eth_write(eth, sh_eth_read(eth, EDMR) & ~EDMR_SRST, EDMR);
Yoshihiro Shimoda34cca922011-01-18 17:53:45 +0900176
177 return 0;
178#endif
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900179}
180
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900181static int sh_eth_tx_desc_init(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900182{
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900183 int port = eth->port, i, ret = 0;
Nobuhiro Iwamatsu1c822112014-11-04 09:15:47 +0900184 u32 alloc_desc_size = NUM_TX_DESC * sizeof(struct tx_desc_s);
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900185 struct sh_eth_info *port_info = &eth->port_info[port];
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900186 struct tx_desc_s *cur_tx_desc;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900187
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900188 /*
Nobuhiro Iwamatsuc24b3eb2014-11-04 09:15:46 +0900189 * Allocate rx descriptors. They must be aligned to size of struct
190 * tx_desc_s.
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900191 */
Nobuhiro Iwamatsu1c822112014-11-04 09:15:47 +0900192 port_info->tx_desc_alloc =
193 memalign(sizeof(struct tx_desc_s), alloc_desc_size);
194 if (!port_info->tx_desc_alloc) {
195 printf(SHETHER_NAME ": memalign failed\n");
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900196 ret = -ENOMEM;
197 goto err;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900198 }
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900199
Nobuhiro Iwamatsu1c822112014-11-04 09:15:47 +0900200 flush_cache_wback((u32)port_info->tx_desc_alloc, alloc_desc_size);
201
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900202 /* Make sure we use a P2 address (non-cacheable) */
Nobuhiro Iwamatsu1c822112014-11-04 09:15:47 +0900203 port_info->tx_desc_base =
204 (struct tx_desc_s *)ADDR_TO_P2((u32)port_info->tx_desc_alloc);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900205 port_info->tx_desc_cur = port_info->tx_desc_base;
206
207 /* Initialize all descriptors */
208 for (cur_tx_desc = port_info->tx_desc_base, i = 0; i < NUM_TX_DESC;
209 cur_tx_desc++, i++) {
210 cur_tx_desc->td0 = 0x00;
211 cur_tx_desc->td1 = 0x00;
212 cur_tx_desc->td2 = 0x00;
213 }
214
215 /* Mark the end of the descriptors */
216 cur_tx_desc--;
217 cur_tx_desc->td0 |= TD_TDLE;
218
219 /* Point the controller to the tx descriptor list. Must use physical
220 addresses */
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000221 sh_eth_write(eth, ADDR_TO_PHY(port_info->tx_desc_base), TDLAR);
Nobuhiro Iwamatsu46288f42014-01-23 07:52:18 +0900222#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000223 sh_eth_write(eth, ADDR_TO_PHY(port_info->tx_desc_base), TDFAR);
224 sh_eth_write(eth, ADDR_TO_PHY(cur_tx_desc), TDFXR);
225 sh_eth_write(eth, 0x01, TDFFR);/* Last discriptor bit */
Yoshihiro Shimoda34cca922011-01-18 17:53:45 +0900226#endif
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900227
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900228err:
229 return ret;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900230}
231
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900232static int sh_eth_rx_desc_init(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900233{
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900234 int port = eth->port, i , ret = 0;
Nobuhiro Iwamatsu1c822112014-11-04 09:15:47 +0900235 u32 alloc_desc_size = NUM_RX_DESC * sizeof(struct rx_desc_s);
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900236 struct sh_eth_info *port_info = &eth->port_info[port];
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900237 struct rx_desc_s *cur_rx_desc;
238 u8 *rx_buf;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900239
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900240 /*
Nobuhiro Iwamatsuc24b3eb2014-11-04 09:15:46 +0900241 * Allocate rx descriptors. They must be aligned to size of struct
242 * rx_desc_s.
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900243 */
Nobuhiro Iwamatsu1c822112014-11-04 09:15:47 +0900244 port_info->rx_desc_alloc =
245 memalign(sizeof(struct rx_desc_s), alloc_desc_size);
246 if (!port_info->rx_desc_alloc) {
247 printf(SHETHER_NAME ": memalign failed\n");
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900248 ret = -ENOMEM;
249 goto err;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900250 }
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900251
Nobuhiro Iwamatsu1c822112014-11-04 09:15:47 +0900252 flush_cache_wback(port_info->rx_desc_alloc, alloc_desc_size);
253
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900254 /* Make sure we use a P2 address (non-cacheable) */
Nobuhiro Iwamatsu1c822112014-11-04 09:15:47 +0900255 port_info->rx_desc_base =
256 (struct rx_desc_s *)ADDR_TO_P2((u32)port_info->rx_desc_alloc);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900257
258 port_info->rx_desc_cur = port_info->rx_desc_base;
259
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900260 /*
Nobuhiro Iwamatsu1c822112014-11-04 09:15:47 +0900261 * Allocate rx data buffers. They must be RX_BUF_ALIGNE_SIZE bytes
262 * aligned and in P2 area.
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900263 */
Nobuhiro Iwamatsu1c822112014-11-04 09:15:47 +0900264 port_info->rx_buf_alloc =
265 memalign(RX_BUF_ALIGNE_SIZE, NUM_RX_DESC * MAX_BUF_SIZE);
266 if (!port_info->rx_buf_alloc) {
267 printf(SHETHER_NAME ": alloc failed\n");
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900268 ret = -ENOMEM;
Nobuhiro Iwamatsu1c822112014-11-04 09:15:47 +0900269 goto err_buf_alloc;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900270 }
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900271
Nobuhiro Iwamatsu1c822112014-11-04 09:15:47 +0900272 port_info->rx_buf_base = (u8 *)ADDR_TO_P2((u32)port_info->rx_buf_alloc);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900273
274 /* Initialize all descriptors */
275 for (cur_rx_desc = port_info->rx_desc_base,
276 rx_buf = port_info->rx_buf_base, i = 0;
277 i < NUM_RX_DESC; cur_rx_desc++, rx_buf += MAX_BUF_SIZE, i++) {
278 cur_rx_desc->rd0 = RD_RACT;
279 cur_rx_desc->rd1 = MAX_BUF_SIZE << 16;
280 cur_rx_desc->rd2 = (u32) ADDR_TO_PHY(rx_buf);
281 }
282
283 /* Mark the end of the descriptors */
284 cur_rx_desc--;
285 cur_rx_desc->rd0 |= RD_RDLE;
286
287 /* Point the controller to the rx descriptor list */
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000288 sh_eth_write(eth, ADDR_TO_PHY(port_info->rx_desc_base), RDLAR);
Nobuhiro Iwamatsu46288f42014-01-23 07:52:18 +0900289#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000290 sh_eth_write(eth, ADDR_TO_PHY(port_info->rx_desc_base), RDFAR);
291 sh_eth_write(eth, ADDR_TO_PHY(cur_rx_desc), RDFXR);
292 sh_eth_write(eth, RDFFR_RDLF, RDFFR);
Yoshihiro Shimoda34cca922011-01-18 17:53:45 +0900293#endif
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900294
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900295 return ret;
296
Nobuhiro Iwamatsu1c822112014-11-04 09:15:47 +0900297err_buf_alloc:
298 free(port_info->rx_desc_alloc);
299 port_info->rx_desc_alloc = NULL;
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900300
301err:
302 return ret;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900303}
304
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900305static void sh_eth_tx_desc_free(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900306{
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900307 int port = eth->port;
308 struct sh_eth_info *port_info = &eth->port_info[port];
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900309
Nobuhiro Iwamatsu1c822112014-11-04 09:15:47 +0900310 if (port_info->tx_desc_alloc) {
311 free(port_info->tx_desc_alloc);
312 port_info->tx_desc_alloc = NULL;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900313 }
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900314}
315
316static void sh_eth_rx_desc_free(struct sh_eth_dev *eth)
317{
318 int port = eth->port;
319 struct sh_eth_info *port_info = &eth->port_info[port];
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900320
Nobuhiro Iwamatsu1c822112014-11-04 09:15:47 +0900321 if (port_info->rx_desc_alloc) {
322 free(port_info->rx_desc_alloc);
323 port_info->rx_desc_alloc = NULL;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900324 }
325
Nobuhiro Iwamatsu1c822112014-11-04 09:15:47 +0900326 if (port_info->rx_buf_alloc) {
327 free(port_info->rx_buf_alloc);
328 port_info->rx_buf_alloc = NULL;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900329 }
330}
331
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900332static int sh_eth_desc_init(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900333{
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900334 int ret = 0;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900335
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900336 ret = sh_eth_tx_desc_init(eth);
337 if (ret)
338 goto err_tx_init;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900339
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900340 ret = sh_eth_rx_desc_init(eth);
341 if (ret)
342 goto err_rx_init;
343
344 return ret;
345err_rx_init:
346 sh_eth_tx_desc_free(eth);
347
348err_tx_init:
349 return ret;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900350}
351
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900352static int sh_eth_phy_config(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900353{
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900354 int port = eth->port, ret = 0;
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900355 struct sh_eth_info *port_info = &eth->port_info[port];
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900356 struct eth_device *dev = port_info->dev;
357 struct phy_device *phydev;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900358
Nobuhiro Iwamatsu58802902012-02-02 21:28:49 +0000359 phydev = phy_connect(
360 miiphy_get_dev_by_name(dev->name),
Nobuhiro Iwamatsu475f40d2012-05-15 15:49:39 +0000361 port_info->phy_addr, dev, CONFIG_SH_ETHER_PHY_MODE);
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900362 port_info->phydev = phydev;
363 phy_config(phydev);
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900364
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900365 return ret;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900366}
367
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900368static int sh_eth_config(struct sh_eth_dev *eth, bd_t *bd)
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900369{
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900370 int port = eth->port, ret = 0;
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900371 u32 val;
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900372 struct sh_eth_info *port_info = &eth->port_info[port];
Mike Frysingera86bf132009-02-11 19:14:09 -0500373 struct eth_device *dev = port_info->dev;
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900374 struct phy_device *phy;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900375
376 /* Configure e-dmac registers */
Nobuhiro Iwamatsu7a2142c2013-08-22 13:22:02 +0900377 sh_eth_write(eth, (sh_eth_read(eth, EDMR) & ~EMDR_DESC_R) |
378 (EMDR_DESC | EDMR_EL), EDMR);
379
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000380 sh_eth_write(eth, 0, EESIPR);
381 sh_eth_write(eth, 0, TRSCER);
382 sh_eth_write(eth, 0, TFTR);
383 sh_eth_write(eth, (FIFO_SIZE_T | FIFO_SIZE_R), FDR);
384 sh_eth_write(eth, RMCR_RST, RMCR);
Nobuhiro Iwamatsu46288f42014-01-23 07:52:18 +0900385#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000386 sh_eth_write(eth, 0, RPADIR);
Yoshihiro Shimoda34cca922011-01-18 17:53:45 +0900387#endif
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000388 sh_eth_write(eth, (FIFO_F_D_RFF | FIFO_F_D_RFD), FCFTR);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900389
390 /* Configure e-mac registers */
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000391 sh_eth_write(eth, 0, ECSIPR);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900392
393 /* Set Mac address */
Mike Frysingera86bf132009-02-11 19:14:09 -0500394 val = dev->enetaddr[0] << 24 | dev->enetaddr[1] << 16 |
395 dev->enetaddr[2] << 8 | dev->enetaddr[3];
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000396 sh_eth_write(eth, val, MAHR);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900397
Mike Frysingera86bf132009-02-11 19:14:09 -0500398 val = dev->enetaddr[4] << 8 | dev->enetaddr[5];
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000399 sh_eth_write(eth, val, MALR);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900400
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000401 sh_eth_write(eth, RFLR_RFL_MIN, RFLR);
Yoshihiro Shimoda9d553032012-06-26 16:38:06 +0000402#if defined(SH_ETH_TYPE_GETHER)
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000403 sh_eth_write(eth, 0, PIPR);
Nobuhiro Iwamatsu46288f42014-01-23 07:52:18 +0900404#endif
405#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000406 sh_eth_write(eth, APR_AP, APR);
407 sh_eth_write(eth, MPR_MP, MPR);
408 sh_eth_write(eth, TPAUSER_TPAUSE, TPAUSER);
Yoshihiro Shimoda34cca922011-01-18 17:53:45 +0900409#endif
Nobuhiro Iwamatsu9dfac0a2011-11-14 16:56:59 +0900410
Nobuhiro Iwamatsu4ad2c2a2012-08-02 22:08:40 +0000411#if defined(CONFIG_CPU_SH7734) || defined(CONFIG_R8A7740)
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000412 sh_eth_write(eth, CONFIG_SH_ETHER_SH7734_MII, RMII_MII);
Nobuhiro Iwamatsua2dd2a12014-06-24 17:01:08 +0900413#elif defined(CONFIG_R8A7790) || defined(CONFIG_R8A7791) || \
Nobuhiro Iwamatsu290fdfd2014-11-04 09:13:40 +0900414 defined(CONFIG_R8A7793) || defined(CONFIG_R8A7794)
Nobuhiro Iwamatsu72befd32013-08-22 13:22:04 +0900415 sh_eth_write(eth, sh_eth_read(eth, RMIIMR) | 0x1, RMIIMR);
Nobuhiro Iwamatsu475f40d2012-05-15 15:49:39 +0000416#endif
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900417 /* Configure phy */
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900418 ret = sh_eth_phy_config(eth);
419 if (ret) {
Nobuhiro Iwamatsufc4b0a22009-06-25 16:33:04 +0900420 printf(SHETHER_NAME ": phy config timeout\n");
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900421 goto err_phy_cfg;
422 }
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900423 phy = port_info->phydev;
Timur Tabi42387462012-07-09 08:52:43 +0000424 ret = phy_startup(phy);
425 if (ret) {
426 printf(SHETHER_NAME ": phy startup failure\n");
427 return ret;
428 }
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900429
Nobuhiro Iwamatsu9dfac0a2011-11-14 16:56:59 +0900430 val = 0;
431
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900432 /* Set the transfer speed */
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900433 if (phy->speed == 100) {
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900434 printf(SHETHER_NAME ": 100Base/");
Yoshihiro Shimoda9d553032012-06-26 16:38:06 +0000435#if defined(SH_ETH_TYPE_GETHER)
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000436 sh_eth_write(eth, GECMR_100B, GECMR);
Yoshihiro Shimodad27e8c92012-11-04 15:54:30 +0000437#elif defined(CONFIG_CPU_SH7757) || defined(CONFIG_CPU_SH7752)
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000438 sh_eth_write(eth, 1, RTRATE);
Nobuhiro Iwamatsu5e6cd1b2013-09-24 15:38:33 +0900439#elif defined(CONFIG_CPU_SH7724) || defined(CONFIG_R8A7790) || \
Nobuhiro Iwamatsu290fdfd2014-11-04 09:13:40 +0900440 defined(CONFIG_R8A7791) || defined(CONFIG_R8A7793) || \
441 defined(CONFIG_R8A7794)
Nobuhiro Iwamatsu9dfac0a2011-11-14 16:56:59 +0900442 val = ECMR_RTM;
443#endif
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900444 } else if (phy->speed == 10) {
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900445 printf(SHETHER_NAME ": 10Base/");
Yoshihiro Shimoda9d553032012-06-26 16:38:06 +0000446#if defined(SH_ETH_TYPE_GETHER)
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000447 sh_eth_write(eth, GECMR_10B, GECMR);
Yoshihiro Shimodad27e8c92012-11-04 15:54:30 +0000448#elif defined(CONFIG_CPU_SH7757) || defined(CONFIG_CPU_SH7752)
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000449 sh_eth_write(eth, 0, RTRATE);
Yoshihiro Shimoda34cca922011-01-18 17:53:45 +0900450#endif
Nobuhiro Iwamatsu9dfac0a2011-11-14 16:56:59 +0900451 }
Yoshihiro Shimoda9d553032012-06-26 16:38:06 +0000452#if defined(SH_ETH_TYPE_GETHER)
Nobuhiro Iwamatsu475f40d2012-05-15 15:49:39 +0000453 else if (phy->speed == 1000) {
454 printf(SHETHER_NAME ": 1000Base/");
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000455 sh_eth_write(eth, GECMR_1000B, GECMR);
Nobuhiro Iwamatsu475f40d2012-05-15 15:49:39 +0000456 }
457#endif
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900458
459 /* Check if full duplex mode is supported by the phy */
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900460 if (phy->duplex) {
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900461 printf("Full\n");
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000462 sh_eth_write(eth, val | (ECMR_CHG_DM|ECMR_RE|ECMR_TE|ECMR_DM),
463 ECMR);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900464 } else {
465 printf("Half\n");
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000466 sh_eth_write(eth, val | (ECMR_CHG_DM|ECMR_RE|ECMR_TE), ECMR);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900467 }
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900468
469 return ret;
470
471err_phy_cfg:
472 return ret;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900473}
474
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900475static void sh_eth_start(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900476{
477 /*
478 * Enable the e-dmac receiver only. The transmitter will be enabled when
479 * we have something to transmit
480 */
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000481 sh_eth_write(eth, EDRRR_R, EDRRR);
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900482}
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900483
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900484static void sh_eth_stop(struct sh_eth_dev *eth)
485{
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000486 sh_eth_write(eth, ~EDRRR_R, EDRRR);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900487}
488
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900489int sh_eth_init(struct eth_device *dev, bd_t *bd)
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900490{
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900491 int ret = 0;
492 struct sh_eth_dev *eth = dev->priv;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900493
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900494 ret = sh_eth_reset(eth);
495 if (ret)
496 goto err;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900497
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900498 ret = sh_eth_desc_init(eth);
499 if (ret)
500 goto err;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900501
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900502 ret = sh_eth_config(eth, bd);
503 if (ret)
504 goto err_config;
505
506 sh_eth_start(eth);
507
508 return ret;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900509
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900510err_config:
511 sh_eth_tx_desc_free(eth);
512 sh_eth_rx_desc_free(eth);
513
514err:
515 return ret;
516}
517
518void sh_eth_halt(struct eth_device *dev)
519{
520 struct sh_eth_dev *eth = dev->priv;
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900521 sh_eth_stop(eth);
522}
523
524int sh_eth_initialize(bd_t *bd)
525{
Nobuhiro Iwamatsu31e84df2014-01-23 07:52:19 +0900526 int ret = 0;
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900527 struct sh_eth_dev *eth = NULL;
Nobuhiro Iwamatsu31e84df2014-01-23 07:52:19 +0900528 struct eth_device *dev = NULL;
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900529
Nobuhiro Iwamatsu31e84df2014-01-23 07:52:19 +0900530 eth = (struct sh_eth_dev *)malloc(sizeof(struct sh_eth_dev));
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900531 if (!eth) {
532 printf(SHETHER_NAME ": %s: malloc failed\n", __func__);
533 ret = -ENOMEM;
534 goto err;
535 }
536
Nobuhiro Iwamatsu31e84df2014-01-23 07:52:19 +0900537 dev = (struct eth_device *)malloc(sizeof(struct eth_device));
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900538 if (!dev) {
539 printf(SHETHER_NAME ": %s: malloc failed\n", __func__);
540 ret = -ENOMEM;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900541 goto err;
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900542 }
Nobuhiro Iwamatsu31e84df2014-01-23 07:52:19 +0900543 memset(dev, 0, sizeof(struct eth_device));
544 memset(eth, 0, sizeof(struct sh_eth_dev));
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900545
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900546 eth->port = CONFIG_SH_ETHER_USE_PORT;
547 eth->port_info[eth->port].phy_addr = CONFIG_SH_ETHER_PHY_ADDR;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900548
Nobuhiro Iwamatsu31e84df2014-01-23 07:52:19 +0900549 dev->priv = (void *)eth;
550 dev->iobase = 0;
551 dev->init = sh_eth_init;
552 dev->halt = sh_eth_halt;
553 dev->send = sh_eth_send;
554 dev->recv = sh_eth_recv;
555 eth->port_info[eth->port].dev = dev;
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900556
557 sprintf(dev->name, SHETHER_NAME);
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900558
Nobuhiro Iwamatsu31e84df2014-01-23 07:52:19 +0900559 /* Register Device to EtherNet subsystem */
560 eth_register(dev);
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900561
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900562 bb_miiphy_buses[0].priv = eth;
563 miiphy_register(dev->name, bb_miiphy_read, bb_miiphy_write);
564
Mike Frysingera86bf132009-02-11 19:14:09 -0500565 if (!eth_getenv_enetaddr("ethaddr", dev->enetaddr))
566 puts("Please set MAC address\n");
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900567
568 return ret;
569
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900570err:
Nobuhiro Iwamatsud8f5d502008-11-21 12:04:18 +0900571 if (dev)
572 free(dev);
573
574 if (eth)
575 free(eth);
576
577 printf(SHETHER_NAME ": Failed\n");
578 return ret;
Nobuhiro Iwamatsu240b7232008-06-11 21:05:00 +0900579}
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900580
581/******* for bb_miiphy *******/
582static int sh_eth_bb_init(struct bb_miiphy_bus *bus)
583{
584 return 0;
585}
586
587static int sh_eth_bb_mdio_active(struct bb_miiphy_bus *bus)
588{
589 struct sh_eth_dev *eth = bus->priv;
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900590
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000591 sh_eth_write(eth, sh_eth_read(eth, PIR) | PIR_MMD, PIR);
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900592
593 return 0;
594}
595
596static int sh_eth_bb_mdio_tristate(struct bb_miiphy_bus *bus)
597{
598 struct sh_eth_dev *eth = bus->priv;
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900599
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000600 sh_eth_write(eth, sh_eth_read(eth, PIR) & ~PIR_MMD, PIR);
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900601
602 return 0;
603}
604
605static int sh_eth_bb_set_mdio(struct bb_miiphy_bus *bus, int v)
606{
607 struct sh_eth_dev *eth = bus->priv;
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900608
609 if (v)
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000610 sh_eth_write(eth, sh_eth_read(eth, PIR) | PIR_MDO, PIR);
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900611 else
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000612 sh_eth_write(eth, sh_eth_read(eth, PIR) & ~PIR_MDO, PIR);
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900613
614 return 0;
615}
616
617static int sh_eth_bb_get_mdio(struct bb_miiphy_bus *bus, int *v)
618{
619 struct sh_eth_dev *eth = bus->priv;
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900620
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000621 *v = (sh_eth_read(eth, PIR) & PIR_MDI) >> 3;
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900622
623 return 0;
624}
625
626static int sh_eth_bb_set_mdc(struct bb_miiphy_bus *bus, int v)
627{
628 struct sh_eth_dev *eth = bus->priv;
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900629
630 if (v)
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000631 sh_eth_write(eth, sh_eth_read(eth, PIR) | PIR_MDC, PIR);
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900632 else
Yoshihiro Shimoda4c4aa6c2012-06-26 16:38:09 +0000633 sh_eth_write(eth, sh_eth_read(eth, PIR) & ~PIR_MDC, PIR);
Yoshihiro Shimoda677f6cd2011-10-11 18:10:14 +0900634
635 return 0;
636}
637
638static int sh_eth_bb_delay(struct bb_miiphy_bus *bus)
639{
640 udelay(10);
641
642 return 0;
643}
644
645struct bb_miiphy_bus bb_miiphy_buses[] = {
646 {
647 .name = "sh_eth",
648 .init = sh_eth_bb_init,
649 .mdio_active = sh_eth_bb_mdio_active,
650 .mdio_tristate = sh_eth_bb_mdio_tristate,
651 .set_mdio = sh_eth_bb_set_mdio,
652 .get_mdio = sh_eth_bb_get_mdio,
653 .set_mdc = sh_eth_bb_set_mdc,
654 .delay = sh_eth_bb_delay,
655 }
656};
657int bb_miiphy_buses_num = ARRAY_SIZE(bb_miiphy_buses);