blob: d065141bf9136d7b8bcc86835ec1250ee61c98a5 [file] [log] [blame]
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +09001/*
Robert P. J. Day1cc0a9f2016-05-04 04:47:31 -04002 * sh_eth.c - Driver for Renesas ethernet controller.
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +09003 *
Nobuhiro Iwamatsu3bb4cc32011-11-14 16:56:59 +09004 * Copyright (C) 2008, 2011 Renesas Solutions Corp.
Nobuhiro Iwamatsuf7ca1f72014-11-04 09:15:48 +09005 * Copyright (c) 2008, 2011, 2014 2014 Nobuhiro Iwamatsu
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +09006 * Copyright (c) 2007 Carlos Munoz <carlos@kenati.com>
Nobuhiro Iwamatsuf7ca1f72014-11-04 09:15:48 +09007 * Copyright (C) 2013, 2014 Renesas Electronics Corporation
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +09008 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090010 */
11
12#include <config.h>
13#include <common.h>
14#include <malloc.h>
15#include <net.h>
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +090016#include <netdev.h>
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +090017#include <miiphy.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090018#include <linux/errno.h>
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090019#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 Iwamatsu870cc232013-08-22 13:22:01 +090029
Nobuhiro Iwamatsu92f07132013-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) \
Nobuhiro Iwamatsuaae5d232017-12-01 13:56:08 +090032 flush_dcache_range((u32)addr, \
33 (u32)(addr + ALIGN(len, CONFIG_SH_ETHER_ALIGNE_SIZE)))
Yoshihiro Shimoda68260aa2011-01-27 10:06:08 +090034#else
35#define flush_cache_wback(...)
36#endif
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090037
Nobuhiro Iwamatsu92f07132013-08-22 13:22:03 +090038#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
Nobuhiro Iwamatsu4ba62c72012-01-11 10:23:51 +090055#define TIMEOUT_CNT 1000
56
Joe Hershberger10cbe3b2012-05-22 18:36:19 +000057int sh_eth_send(struct eth_device *dev, void *packet, int len)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090058{
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +090059 struct sh_eth_dev *eth = dev->priv;
60 int port = eth->port, ret = 0, timeout;
61 struct sh_eth_info *port_info = &eth->port_info[port];
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090062
63 if (!packet || len > 0xffff) {
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +090064 printf(SHETHER_NAME ": %s: Invalid argument\n", __func__);
65 ret = -EINVAL;
66 goto err;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090067 }
68
69 /* packet must be a 4 byte boundary */
Nobuhiro Iwamatsuee6ec5d2012-02-02 21:28:49 +000070 if ((int)packet & 3) {
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +090071 printf(SHETHER_NAME ": %s: packet not 4 byte aligned\n"
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +090072 , __func__);
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +090073 ret = -EFAULT;
74 goto err;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090075 }
76
77 /* Update tx descriptor */
Yoshihiro Shimoda68260aa2011-01-27 10:06:08 +090078 flush_cache_wback(packet, len);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090079 port_info->tx_desc_cur->td2 = ADDR_TO_PHY(packet);
80 port_info->tx_desc_cur->td1 = len << 16;
81 /* Must preserve the end of descriptor list indication */
82 if (port_info->tx_desc_cur->td0 & TD_TDLE)
83 port_info->tx_desc_cur->td0 = TD_TACT | TD_TFP | TD_TDLE;
84 else
85 port_info->tx_desc_cur->td0 = TD_TACT | TD_TFP;
86
Nobuhiro Iwamatsuf7ca1f72014-11-04 09:15:48 +090087 flush_cache_wback(port_info->tx_desc_cur, sizeof(struct tx_desc_s));
88
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090089 /* Restart the transmitter if disabled */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +090090 if (!(sh_eth_read(port_info, EDTRR) & EDTRR_TRNS))
91 sh_eth_write(port_info, EDTRR_TRNS, EDTRR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090092
93 /* Wait until packet is transmitted */
Nobuhiro Iwamatsu4ba62c72012-01-11 10:23:51 +090094 timeout = TIMEOUT_CNT;
Nobuhiro Iwamatsu92f07132013-08-22 13:22:03 +090095 do {
96 invalidate_cache(port_info->tx_desc_cur,
97 sizeof(struct tx_desc_s));
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090098 udelay(100);
Nobuhiro Iwamatsu92f07132013-08-22 13:22:03 +090099 } while (port_info->tx_desc_cur->td0 & TD_TACT && timeout--);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900100
101 if (timeout < 0) {
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900102 printf(SHETHER_NAME ": transmit timeout\n");
103 ret = -ETIMEDOUT;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900104 goto err;
105 }
106
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900107 port_info->tx_desc_cur++;
108 if (port_info->tx_desc_cur >= port_info->tx_desc_base + NUM_TX_DESC)
109 port_info->tx_desc_cur = port_info->tx_desc_base;
110
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900111err:
112 return ret;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900113}
114
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900115int sh_eth_recv(struct eth_device *dev)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900116{
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900117 struct sh_eth_dev *eth = dev->priv;
118 int port = eth->port, len = 0;
119 struct sh_eth_info *port_info = &eth->port_info[port];
Joe Hershberger10cbe3b2012-05-22 18:36:19 +0000120 uchar *packet;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900121
122 /* Check if the rx descriptor is ready */
Nobuhiro Iwamatsu92f07132013-08-22 13:22:03 +0900123 invalidate_cache(port_info->rx_desc_cur, sizeof(struct rx_desc_s));
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900124 if (!(port_info->rx_desc_cur->rd0 & RD_RACT)) {
125 /* Check for errors */
126 if (!(port_info->rx_desc_cur->rd0 & RD_RFE)) {
127 len = port_info->rx_desc_cur->rd1 & 0xffff;
Joe Hershberger10cbe3b2012-05-22 18:36:19 +0000128 packet = (uchar *)
129 ADDR_TO_P2(port_info->rx_desc_cur->rd2);
Nobuhiro Iwamatsu92f07132013-08-22 13:22:03 +0900130 invalidate_cache(packet, len);
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500131 net_process_received_packet(packet, len);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900132 }
133
134 /* Make current descriptor available again */
135 if (port_info->rx_desc_cur->rd0 & RD_RDLE)
136 port_info->rx_desc_cur->rd0 = RD_RACT | RD_RDLE;
137 else
138 port_info->rx_desc_cur->rd0 = RD_RACT;
Nobuhiro Iwamatsuf7ca1f72014-11-04 09:15:48 +0900139
140 flush_cache_wback(port_info->rx_desc_cur,
141 sizeof(struct rx_desc_s));
142
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900143 /* Point to the next descriptor */
144 port_info->rx_desc_cur++;
145 if (port_info->rx_desc_cur >=
146 port_info->rx_desc_base + NUM_RX_DESC)
147 port_info->rx_desc_cur = port_info->rx_desc_base;
148 }
149
150 /* Restart the receiver if disabled */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900151 if (!(sh_eth_read(port_info, EDRRR) & EDRRR_R))
152 sh_eth_write(port_info, EDRRR_R, EDRRR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900153
154 return len;
155}
156
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900157static int sh_eth_reset(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900158{
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900159 struct sh_eth_info *port_info = &eth->port_info[eth->port];
Nobuhiro Iwamatsu62cbddc2014-01-23 07:52:18 +0900160#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900161 int ret = 0, i;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900162
163 /* Start e-dmac transmitter and receiver */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900164 sh_eth_write(port_info, EDSR_ENALL, EDSR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900165
166 /* Perform a software reset and wait for it to complete */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900167 sh_eth_write(port_info, EDMR_SRST, EDMR);
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900168 for (i = 0; i < TIMEOUT_CNT; i++) {
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900169 if (!(sh_eth_read(port_info, EDMR) & EDMR_SRST))
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900170 break;
171 udelay(1000);
172 }
173
Nobuhiro Iwamatsu4ba62c72012-01-11 10:23:51 +0900174 if (i == TIMEOUT_CNT) {
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900175 printf(SHETHER_NAME ": Software reset timeout\n");
176 ret = -EIO;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900177 }
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900178
179 return ret;
Yoshihiro Shimoda903de462011-01-18 17:53:45 +0900180#else
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900181 sh_eth_write(port_info, sh_eth_read(port_info, EDMR) | EDMR_SRST, EDMR);
Yoshihiro Shimoda903de462011-01-18 17:53:45 +0900182 udelay(3000);
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900183 sh_eth_write(port_info,
184 sh_eth_read(port_info, EDMR) & ~EDMR_SRST, EDMR);
Yoshihiro Shimoda903de462011-01-18 17:53:45 +0900185
186 return 0;
187#endif
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900188}
189
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900190static int sh_eth_tx_desc_init(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900191{
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900192 int port = eth->port, i, ret = 0;
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900193 u32 alloc_desc_size = NUM_TX_DESC * sizeof(struct tx_desc_s);
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900194 struct sh_eth_info *port_info = &eth->port_info[port];
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900195 struct tx_desc_s *cur_tx_desc;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900196
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900197 /*
Nobuhiro Iwamatsu703949e2014-11-04 09:15:46 +0900198 * Allocate rx descriptors. They must be aligned to size of struct
199 * tx_desc_s.
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900200 */
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900201 port_info->tx_desc_alloc =
202 memalign(sizeof(struct tx_desc_s), alloc_desc_size);
203 if (!port_info->tx_desc_alloc) {
204 printf(SHETHER_NAME ": memalign failed\n");
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900205 ret = -ENOMEM;
206 goto err;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900207 }
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900208
Nobuhiro Iwamatsuaae5d232017-12-01 13:56:08 +0900209 flush_cache_wback(port_info->tx_desc_alloc, alloc_desc_size);
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900210
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900211 /* Make sure we use a P2 address (non-cacheable) */
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900212 port_info->tx_desc_base =
213 (struct tx_desc_s *)ADDR_TO_P2((u32)port_info->tx_desc_alloc);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900214 port_info->tx_desc_cur = port_info->tx_desc_base;
215
216 /* Initialize all descriptors */
217 for (cur_tx_desc = port_info->tx_desc_base, i = 0; i < NUM_TX_DESC;
218 cur_tx_desc++, i++) {
219 cur_tx_desc->td0 = 0x00;
220 cur_tx_desc->td1 = 0x00;
221 cur_tx_desc->td2 = 0x00;
222 }
223
224 /* Mark the end of the descriptors */
225 cur_tx_desc--;
226 cur_tx_desc->td0 |= TD_TDLE;
227
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900228 /*
229 * Point the controller to the tx descriptor list. Must use physical
230 * addresses
231 */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900232 sh_eth_write(port_info, ADDR_TO_PHY(port_info->tx_desc_base), TDLAR);
Nobuhiro Iwamatsu62cbddc2014-01-23 07:52:18 +0900233#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900234 sh_eth_write(port_info, ADDR_TO_PHY(port_info->tx_desc_base), TDFAR);
235 sh_eth_write(port_info, ADDR_TO_PHY(cur_tx_desc), TDFXR);
236 sh_eth_write(port_info, 0x01, TDFFR);/* Last discriptor bit */
Yoshihiro Shimoda903de462011-01-18 17:53:45 +0900237#endif
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900238
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900239err:
240 return ret;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900241}
242
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900243static int sh_eth_rx_desc_init(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900244{
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900245 int port = eth->port, i, ret = 0;
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900246 u32 alloc_desc_size = NUM_RX_DESC * sizeof(struct rx_desc_s);
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900247 struct sh_eth_info *port_info = &eth->port_info[port];
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900248 struct rx_desc_s *cur_rx_desc;
249 u8 *rx_buf;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900250
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900251 /*
Nobuhiro Iwamatsu703949e2014-11-04 09:15:46 +0900252 * Allocate rx descriptors. They must be aligned to size of struct
253 * rx_desc_s.
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900254 */
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900255 port_info->rx_desc_alloc =
256 memalign(sizeof(struct rx_desc_s), alloc_desc_size);
257 if (!port_info->rx_desc_alloc) {
258 printf(SHETHER_NAME ": memalign failed\n");
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900259 ret = -ENOMEM;
260 goto err;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900261 }
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900262
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900263 flush_cache_wback(port_info->rx_desc_alloc, alloc_desc_size);
264
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900265 /* Make sure we use a P2 address (non-cacheable) */
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900266 port_info->rx_desc_base =
267 (struct rx_desc_s *)ADDR_TO_P2((u32)port_info->rx_desc_alloc);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900268
269 port_info->rx_desc_cur = port_info->rx_desc_base;
270
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900271 /*
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900272 * Allocate rx data buffers. They must be RX_BUF_ALIGNE_SIZE bytes
273 * aligned and in P2 area.
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900274 */
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900275 port_info->rx_buf_alloc =
276 memalign(RX_BUF_ALIGNE_SIZE, NUM_RX_DESC * MAX_BUF_SIZE);
277 if (!port_info->rx_buf_alloc) {
278 printf(SHETHER_NAME ": alloc failed\n");
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900279 ret = -ENOMEM;
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900280 goto err_buf_alloc;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900281 }
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900282
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900283 port_info->rx_buf_base = (u8 *)ADDR_TO_P2((u32)port_info->rx_buf_alloc);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900284
285 /* Initialize all descriptors */
286 for (cur_rx_desc = port_info->rx_desc_base,
287 rx_buf = port_info->rx_buf_base, i = 0;
288 i < NUM_RX_DESC; cur_rx_desc++, rx_buf += MAX_BUF_SIZE, i++) {
289 cur_rx_desc->rd0 = RD_RACT;
290 cur_rx_desc->rd1 = MAX_BUF_SIZE << 16;
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900291 cur_rx_desc->rd2 = (u32)ADDR_TO_PHY(rx_buf);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900292 }
293
294 /* Mark the end of the descriptors */
295 cur_rx_desc--;
296 cur_rx_desc->rd0 |= RD_RDLE;
297
298 /* Point the controller to the rx descriptor list */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900299 sh_eth_write(port_info, ADDR_TO_PHY(port_info->rx_desc_base), RDLAR);
Nobuhiro Iwamatsu62cbddc2014-01-23 07:52:18 +0900300#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900301 sh_eth_write(port_info, ADDR_TO_PHY(port_info->rx_desc_base), RDFAR);
302 sh_eth_write(port_info, ADDR_TO_PHY(cur_rx_desc), RDFXR);
303 sh_eth_write(port_info, RDFFR_RDLF, RDFFR);
Yoshihiro Shimoda903de462011-01-18 17:53:45 +0900304#endif
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900305
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900306 return ret;
307
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900308err_buf_alloc:
309 free(port_info->rx_desc_alloc);
310 port_info->rx_desc_alloc = NULL;
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900311
312err:
313 return ret;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900314}
315
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900316static void sh_eth_tx_desc_free(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900317{
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900318 int port = eth->port;
319 struct sh_eth_info *port_info = &eth->port_info[port];
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900320
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900321 if (port_info->tx_desc_alloc) {
322 free(port_info->tx_desc_alloc);
323 port_info->tx_desc_alloc = NULL;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900324 }
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900325}
326
327static void sh_eth_rx_desc_free(struct sh_eth_dev *eth)
328{
329 int port = eth->port;
330 struct sh_eth_info *port_info = &eth->port_info[port];
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900331
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900332 if (port_info->rx_desc_alloc) {
333 free(port_info->rx_desc_alloc);
334 port_info->rx_desc_alloc = NULL;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900335 }
336
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900337 if (port_info->rx_buf_alloc) {
338 free(port_info->rx_buf_alloc);
339 port_info->rx_buf_alloc = NULL;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900340 }
341}
342
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900343static int sh_eth_desc_init(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900344{
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900345 int ret = 0;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900346
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900347 ret = sh_eth_tx_desc_init(eth);
348 if (ret)
349 goto err_tx_init;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900350
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900351 ret = sh_eth_rx_desc_init(eth);
352 if (ret)
353 goto err_rx_init;
354
355 return ret;
356err_rx_init:
357 sh_eth_tx_desc_free(eth);
358
359err_tx_init:
360 return ret;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900361}
362
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900363static int sh_eth_phy_config(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900364{
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900365 int port = eth->port, ret = 0;
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900366 struct sh_eth_info *port_info = &eth->port_info[port];
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900367 struct eth_device *dev = port_info->dev;
368 struct phy_device *phydev;
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900369
Nobuhiro Iwamatsuee6ec5d2012-02-02 21:28:49 +0000370 phydev = phy_connect(
371 miiphy_get_dev_by_name(dev->name),
Nobuhiro Iwamatsu4398d552012-05-15 15:49:39 +0000372 port_info->phy_addr, dev, CONFIG_SH_ETHER_PHY_MODE);
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900373 port_info->phydev = phydev;
374 phy_config(phydev);
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900375
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900376 return ret;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900377}
378
Nobuhiro Iwamatsu9b5f9ec2017-12-01 08:08:47 +0900379static int sh_eth_config(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900380{
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900381 int port = eth->port, ret = 0;
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900382 u32 val;
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900383 struct sh_eth_info *port_info = &eth->port_info[port];
Mike Frysingerc527ce92009-02-11 19:14:09 -0500384 struct eth_device *dev = port_info->dev;
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900385 struct phy_device *phy;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900386
387 /* Configure e-dmac registers */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900388 sh_eth_write(port_info, (sh_eth_read(port_info, EDMR) & ~EMDR_DESC_R) |
Nobuhiro Iwamatsuf8b75072013-08-22 13:22:02 +0900389 (EMDR_DESC | EDMR_EL), EDMR);
390
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900391 sh_eth_write(port_info, 0, EESIPR);
392 sh_eth_write(port_info, 0, TRSCER);
393 sh_eth_write(port_info, 0, TFTR);
394 sh_eth_write(port_info, (FIFO_SIZE_T | FIFO_SIZE_R), FDR);
395 sh_eth_write(port_info, RMCR_RST, RMCR);
Nobuhiro Iwamatsu62cbddc2014-01-23 07:52:18 +0900396#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900397 sh_eth_write(port_info, 0, RPADIR);
Yoshihiro Shimoda903de462011-01-18 17:53:45 +0900398#endif
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900399 sh_eth_write(port_info, (FIFO_F_D_RFF | FIFO_F_D_RFD), FCFTR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900400
401 /* Configure e-mac registers */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900402 sh_eth_write(port_info, 0, ECSIPR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900403
404 /* Set Mac address */
Mike Frysingerc527ce92009-02-11 19:14:09 -0500405 val = dev->enetaddr[0] << 24 | dev->enetaddr[1] << 16 |
406 dev->enetaddr[2] << 8 | dev->enetaddr[3];
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900407 sh_eth_write(port_info, val, MAHR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900408
Mike Frysingerc527ce92009-02-11 19:14:09 -0500409 val = dev->enetaddr[4] << 8 | dev->enetaddr[5];
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900410 sh_eth_write(port_info, val, MALR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900411
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900412 sh_eth_write(port_info, RFLR_RFL_MIN, RFLR);
Yoshihiro Shimoda26235092012-06-26 16:38:06 +0000413#if defined(SH_ETH_TYPE_GETHER)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900414 sh_eth_write(port_info, 0, PIPR);
Nobuhiro Iwamatsu62cbddc2014-01-23 07:52:18 +0900415#endif
416#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900417 sh_eth_write(port_info, APR_AP, APR);
418 sh_eth_write(port_info, MPR_MP, MPR);
419 sh_eth_write(port_info, TPAUSER_TPAUSE, TPAUSER);
Nobuhiro Iwamatsu3bb4cc32011-11-14 16:56:59 +0900420#endif
421
Nobuhiro Iwamatsudcd5a592012-08-02 22:08:40 +0000422#if defined(CONFIG_CPU_SH7734) || defined(CONFIG_R8A7740)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900423 sh_eth_write(port_info, CONFIG_SH_ETHER_SH7734_MII, RMII_MII);
Marek Vasuteffb7902018-01-22 01:42:32 +0100424#elif defined(CONFIG_RCAR_GEN2)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900425 sh_eth_write(port_info, sh_eth_read(port_info, RMIIMR) | 0x1, RMIIMR);
Nobuhiro Iwamatsu4398d552012-05-15 15:49:39 +0000426#endif
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900427 /* Configure phy */
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900428 ret = sh_eth_phy_config(eth);
429 if (ret) {
Nobuhiro Iwamatsu88a4c2e2009-06-25 16:33:04 +0900430 printf(SHETHER_NAME ": phy config timeout\n");
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900431 goto err_phy_cfg;
432 }
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900433 phy = port_info->phydev;
Timur Tabi11af8d62012-07-09 08:52:43 +0000434 ret = phy_startup(phy);
435 if (ret) {
436 printf(SHETHER_NAME ": phy startup failure\n");
437 return ret;
438 }
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900439
Nobuhiro Iwamatsu3bb4cc32011-11-14 16:56:59 +0900440 val = 0;
441
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900442 /* Set the transfer speed */
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900443 if (phy->speed == 100) {
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900444 printf(SHETHER_NAME ": 100Base/");
Yoshihiro Shimoda26235092012-06-26 16:38:06 +0000445#if defined(SH_ETH_TYPE_GETHER)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900446 sh_eth_write(port_info, GECMR_100B, GECMR);
Yoshihiro Shimodae3bb3252012-11-04 15:54:30 +0000447#elif defined(CONFIG_CPU_SH7757) || defined(CONFIG_CPU_SH7752)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900448 sh_eth_write(port_info, 1, RTRATE);
Marek Vasuteffb7902018-01-22 01:42:32 +0100449#elif defined(CONFIG_CPU_SH7724) || defined(CONFIG_RCAR_GEN2)
Nobuhiro Iwamatsu3bb4cc32011-11-14 16:56:59 +0900450 val = ECMR_RTM;
451#endif
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900452 } else if (phy->speed == 10) {
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900453 printf(SHETHER_NAME ": 10Base/");
Yoshihiro Shimoda26235092012-06-26 16:38:06 +0000454#if defined(SH_ETH_TYPE_GETHER)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900455 sh_eth_write(port_info, GECMR_10B, GECMR);
Yoshihiro Shimodae3bb3252012-11-04 15:54:30 +0000456#elif defined(CONFIG_CPU_SH7757) || defined(CONFIG_CPU_SH7752)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900457 sh_eth_write(port_info, 0, RTRATE);
Yoshihiro Shimoda903de462011-01-18 17:53:45 +0900458#endif
Nobuhiro Iwamatsu3bb4cc32011-11-14 16:56:59 +0900459 }
Yoshihiro Shimoda26235092012-06-26 16:38:06 +0000460#if defined(SH_ETH_TYPE_GETHER)
Nobuhiro Iwamatsu4398d552012-05-15 15:49:39 +0000461 else if (phy->speed == 1000) {
462 printf(SHETHER_NAME ": 1000Base/");
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900463 sh_eth_write(port_info, GECMR_1000B, GECMR);
Nobuhiro Iwamatsu4398d552012-05-15 15:49:39 +0000464 }
465#endif
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900466
467 /* Check if full duplex mode is supported by the phy */
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900468 if (phy->duplex) {
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900469 printf("Full\n");
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900470 sh_eth_write(port_info,
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900471 val | (ECMR_CHG_DM | ECMR_RE | ECMR_TE | ECMR_DM),
Yoshihiro Shimoda49afb8c2012-06-26 16:38:09 +0000472 ECMR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900473 } else {
474 printf("Half\n");
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900475 sh_eth_write(port_info,
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900476 val | (ECMR_CHG_DM | ECMR_RE | ECMR_TE),
477 ECMR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900478 }
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900479
480 return ret;
481
482err_phy_cfg:
483 return ret;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900484}
485
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900486static void sh_eth_start(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900487{
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900488 struct sh_eth_info *port_info = &eth->port_info[eth->port];
489
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900490 /*
491 * Enable the e-dmac receiver only. The transmitter will be enabled when
492 * we have something to transmit
493 */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900494 sh_eth_write(port_info, EDRRR_R, EDRRR);
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900495}
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900496
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900497static void sh_eth_stop(struct sh_eth_dev *eth)
498{
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900499 struct sh_eth_info *port_info = &eth->port_info[eth->port];
500
501 sh_eth_write(port_info, ~EDRRR_R, EDRRR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900502}
503
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900504int sh_eth_init(struct eth_device *dev, bd_t *bd)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900505{
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900506 int ret = 0;
507 struct sh_eth_dev *eth = dev->priv;
508
509 ret = sh_eth_reset(eth);
510 if (ret)
511 goto err;
512
513 ret = sh_eth_desc_init(eth);
514 if (ret)
515 goto err;
516
Nobuhiro Iwamatsu9b5f9ec2017-12-01 08:08:47 +0900517 ret = sh_eth_config(eth);
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900518 if (ret)
519 goto err_config;
520
521 sh_eth_start(eth);
522
523 return ret;
524
525err_config:
526 sh_eth_tx_desc_free(eth);
527 sh_eth_rx_desc_free(eth);
528
529err:
530 return ret;
531}
532
533void sh_eth_halt(struct eth_device *dev)
534{
535 struct sh_eth_dev *eth = dev->priv;
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900536
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900537 sh_eth_stop(eth);
538}
539
540int sh_eth_initialize(bd_t *bd)
541{
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900542 int ret = 0;
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900543 struct sh_eth_dev *eth = NULL;
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900544 struct eth_device *dev = NULL;
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900545 struct mii_dev *mdiodev;
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900546
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900547 eth = (struct sh_eth_dev *)malloc(sizeof(struct sh_eth_dev));
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900548 if (!eth) {
549 printf(SHETHER_NAME ": %s: malloc failed\n", __func__);
550 ret = -ENOMEM;
551 goto err;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900552 }
553
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900554 dev = (struct eth_device *)malloc(sizeof(struct eth_device));
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900555 if (!dev) {
556 printf(SHETHER_NAME ": %s: malloc failed\n", __func__);
557 ret = -ENOMEM;
558 goto err;
559 }
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900560 memset(dev, 0, sizeof(struct eth_device));
561 memset(eth, 0, sizeof(struct sh_eth_dev));
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900562
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900563 eth->port = CONFIG_SH_ETHER_USE_PORT;
564 eth->port_info[eth->port].phy_addr = CONFIG_SH_ETHER_PHY_ADDR;
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900565 eth->port_info[eth->port].iobase =
566 (void __iomem *)(BASE_IO_ADDR + 0x800 * eth->port);
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900567
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900568 dev->priv = (void *)eth;
569 dev->iobase = 0;
570 dev->init = sh_eth_init;
571 dev->halt = sh_eth_halt;
572 dev->send = sh_eth_send;
573 dev->recv = sh_eth_recv;
574 eth->port_info[eth->port].dev = dev;
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900575
Ben Whitten192bc692015-12-30 13:05:58 +0000576 strcpy(dev->name, SHETHER_NAME);
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900577
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900578 /* Register Device to EtherNet subsystem */
579 eth_register(dev);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900580
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900581 bb_miiphy_buses[0].priv = eth;
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900582 mdiodev = mdio_alloc();
Joe Hershberger5a49f172016-08-08 11:28:38 -0500583 if (!mdiodev)
584 return -ENOMEM;
585 strncpy(mdiodev->name, dev->name, MDIO_NAME_LEN);
586 mdiodev->read = bb_miiphy_read;
587 mdiodev->write = bb_miiphy_write;
588
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900589 ret = mdio_register(mdiodev);
590 if (ret < 0)
591 return ret;
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900592
Simon Glass35affd72017-08-03 12:22:14 -0600593 if (!eth_env_get_enetaddr("ethaddr", dev->enetaddr))
Mike Frysingerc527ce92009-02-11 19:14:09 -0500594 puts("Please set MAC address\n");
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900595
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900596 return ret;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900597
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900598err:
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900599 if (dev)
600 free(dev);
601
602 if (eth)
603 free(eth);
604
605 printf(SHETHER_NAME ": Failed\n");
606 return ret;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900607}
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900608
609/******* for bb_miiphy *******/
610static int sh_eth_bb_init(struct bb_miiphy_bus *bus)
611{
612 return 0;
613}
614
615static int sh_eth_bb_mdio_active(struct bb_miiphy_bus *bus)
616{
617 struct sh_eth_dev *eth = bus->priv;
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900618 struct sh_eth_info *port_info = &eth->port_info[eth->port];
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900619
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900620 sh_eth_write(port_info, sh_eth_read(port_info, PIR) | PIR_MMD, PIR);
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900621
622 return 0;
623}
624
625static int sh_eth_bb_mdio_tristate(struct bb_miiphy_bus *bus)
626{
627 struct sh_eth_dev *eth = bus->priv;
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900628 struct sh_eth_info *port_info = &eth->port_info[eth->port];
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900629
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900630 sh_eth_write(port_info, sh_eth_read(port_info, PIR) & ~PIR_MMD, PIR);
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900631
632 return 0;
633}
634
635static int sh_eth_bb_set_mdio(struct bb_miiphy_bus *bus, int v)
636{
637 struct sh_eth_dev *eth = bus->priv;
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900638 struct sh_eth_info *port_info = &eth->port_info[eth->port];
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900639
640 if (v)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900641 sh_eth_write(port_info,
642 sh_eth_read(port_info, PIR) | PIR_MDO, PIR);
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900643 else
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900644 sh_eth_write(port_info,
645 sh_eth_read(port_info, PIR) & ~PIR_MDO, PIR);
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900646
647 return 0;
648}
649
650static int sh_eth_bb_get_mdio(struct bb_miiphy_bus *bus, int *v)
651{
652 struct sh_eth_dev *eth = bus->priv;
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900653 struct sh_eth_info *port_info = &eth->port_info[eth->port];
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900654
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900655 *v = (sh_eth_read(port_info, PIR) & PIR_MDI) >> 3;
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900656
657 return 0;
658}
659
660static int sh_eth_bb_set_mdc(struct bb_miiphy_bus *bus, int v)
661{
662 struct sh_eth_dev *eth = bus->priv;
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900663 struct sh_eth_info *port_info = &eth->port_info[eth->port];
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900664
665 if (v)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900666 sh_eth_write(port_info,
667 sh_eth_read(port_info, PIR) | PIR_MDC, PIR);
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900668 else
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900669 sh_eth_write(port_info,
670 sh_eth_read(port_info, PIR) & ~PIR_MDC, PIR);
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900671
672 return 0;
673}
674
675static int sh_eth_bb_delay(struct bb_miiphy_bus *bus)
676{
677 udelay(10);
678
679 return 0;
680}
681
682struct bb_miiphy_bus bb_miiphy_buses[] = {
683 {
684 .name = "sh_eth",
685 .init = sh_eth_bb_init,
686 .mdio_active = sh_eth_bb_mdio_active,
687 .mdio_tristate = sh_eth_bb_mdio_tristate,
688 .set_mdio = sh_eth_bb_set_mdio,
689 .get_mdio = sh_eth_bb_get_mdio,
690 .set_mdc = sh_eth_bb_set_mdc,
691 .delay = sh_eth_bb_delay,
692 }
693};
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900694
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900695int bb_miiphy_buses_num = ARRAY_SIZE(bb_miiphy_buses);