blob: 5a5c6bc39ebb13ce65d4af7529504314bf0db319 [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
Marek Vasut31920262018-01-19 18:57:17 +010021#ifdef CONFIG_DM_ETH
22#include <clk.h>
23#include <dm.h>
24#include <linux/mii.h>
25#include <asm/gpio.h>
26#endif
27
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090028#include "sh_eth.h"
29
30#ifndef CONFIG_SH_ETHER_USE_PORT
31# error "Please define CONFIG_SH_ETHER_USE_PORT"
32#endif
33#ifndef CONFIG_SH_ETHER_PHY_ADDR
34# error "Please define CONFIG_SH_ETHER_PHY_ADDR"
35#endif
Nobuhiro Iwamatsu870cc232013-08-22 13:22:01 +090036
Nobuhiro Iwamatsu92f07132013-08-22 13:22:03 +090037#if defined(CONFIG_SH_ETHER_CACHE_WRITEBACK) && !defined(CONFIG_SYS_DCACHE_OFF)
38#define flush_cache_wback(addr, len) \
Nobuhiro Iwamatsuaae5d232017-12-01 13:56:08 +090039 flush_dcache_range((u32)addr, \
40 (u32)(addr + ALIGN(len, CONFIG_SH_ETHER_ALIGNE_SIZE)))
Yoshihiro Shimoda68260aa2011-01-27 10:06:08 +090041#else
42#define flush_cache_wback(...)
43#endif
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090044
Nobuhiro Iwamatsu92f07132013-08-22 13:22:03 +090045#if defined(CONFIG_SH_ETHER_CACHE_INVALIDATE) && defined(CONFIG_ARM)
46#define invalidate_cache(addr, len) \
47 { \
48 u32 line_size = CONFIG_SH_ETHER_ALIGNE_SIZE; \
49 u32 start, end; \
50 \
51 start = (u32)addr; \
52 end = start + len; \
53 start &= ~(line_size - 1); \
54 end = ((end + line_size - 1) & ~(line_size - 1)); \
55 \
56 invalidate_dcache_range(start, end); \
57 }
58#else
59#define invalidate_cache(...)
60#endif
61
Nobuhiro Iwamatsu4ba62c72012-01-11 10:23:51 +090062#define TIMEOUT_CNT 1000
63
Marek Vasutdca221b2018-01-21 14:27:51 +010064static int sh_eth_send_common(struct sh_eth_dev *eth, void *packet, int len)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090065{
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +090066 int port = eth->port, ret = 0, timeout;
67 struct sh_eth_info *port_info = &eth->port_info[port];
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090068
69 if (!packet || len > 0xffff) {
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +090070 printf(SHETHER_NAME ": %s: Invalid argument\n", __func__);
71 ret = -EINVAL;
72 goto err;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090073 }
74
75 /* packet must be a 4 byte boundary */
Nobuhiro Iwamatsuee6ec5d2012-02-02 21:28:49 +000076 if ((int)packet & 3) {
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +090077 printf(SHETHER_NAME ": %s: packet not 4 byte aligned\n"
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +090078 , __func__);
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +090079 ret = -EFAULT;
80 goto err;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090081 }
82
83 /* Update tx descriptor */
Yoshihiro Shimoda68260aa2011-01-27 10:06:08 +090084 flush_cache_wback(packet, len);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090085 port_info->tx_desc_cur->td2 = ADDR_TO_PHY(packet);
86 port_info->tx_desc_cur->td1 = len << 16;
87 /* Must preserve the end of descriptor list indication */
88 if (port_info->tx_desc_cur->td0 & TD_TDLE)
89 port_info->tx_desc_cur->td0 = TD_TACT | TD_TFP | TD_TDLE;
90 else
91 port_info->tx_desc_cur->td0 = TD_TACT | TD_TFP;
92
Nobuhiro Iwamatsuf7ca1f72014-11-04 09:15:48 +090093 flush_cache_wback(port_info->tx_desc_cur, sizeof(struct tx_desc_s));
94
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090095 /* Restart the transmitter if disabled */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +090096 if (!(sh_eth_read(port_info, EDTRR) & EDTRR_TRNS))
97 sh_eth_write(port_info, EDTRR_TRNS, EDTRR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +090098
99 /* Wait until packet is transmitted */
Nobuhiro Iwamatsu4ba62c72012-01-11 10:23:51 +0900100 timeout = TIMEOUT_CNT;
Nobuhiro Iwamatsu92f07132013-08-22 13:22:03 +0900101 do {
102 invalidate_cache(port_info->tx_desc_cur,
103 sizeof(struct tx_desc_s));
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900104 udelay(100);
Nobuhiro Iwamatsu92f07132013-08-22 13:22:03 +0900105 } while (port_info->tx_desc_cur->td0 & TD_TACT && timeout--);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900106
107 if (timeout < 0) {
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900108 printf(SHETHER_NAME ": transmit timeout\n");
109 ret = -ETIMEDOUT;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900110 goto err;
111 }
112
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900113 port_info->tx_desc_cur++;
114 if (port_info->tx_desc_cur >= port_info->tx_desc_base + NUM_TX_DESC)
115 port_info->tx_desc_cur = port_info->tx_desc_base;
116
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900117err:
118 return ret;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900119}
120
Marek Vasut52c15e22018-01-21 15:39:50 +0100121static 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
140static 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
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900160static int sh_eth_reset(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900161{
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900162 struct sh_eth_info *port_info = &eth->port_info[eth->port];
Nobuhiro Iwamatsu62cbddc2014-01-23 07:52:18 +0900163#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900164 int ret = 0, i;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900165
166 /* Start e-dmac transmitter and receiver */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900167 sh_eth_write(port_info, EDSR_ENALL, EDSR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900168
169 /* Perform a software reset and wait for it to complete */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900170 sh_eth_write(port_info, EDMR_SRST, EDMR);
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900171 for (i = 0; i < TIMEOUT_CNT; i++) {
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900172 if (!(sh_eth_read(port_info, EDMR) & EDMR_SRST))
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900173 break;
174 udelay(1000);
175 }
176
Nobuhiro Iwamatsu4ba62c72012-01-11 10:23:51 +0900177 if (i == TIMEOUT_CNT) {
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900178 printf(SHETHER_NAME ": Software reset timeout\n");
179 ret = -EIO;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900180 }
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900181
182 return ret;
Yoshihiro Shimoda903de462011-01-18 17:53:45 +0900183#else
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900184 sh_eth_write(port_info, sh_eth_read(port_info, EDMR) | EDMR_SRST, EDMR);
Yoshihiro Shimoda903de462011-01-18 17:53:45 +0900185 udelay(3000);
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900186 sh_eth_write(port_info,
187 sh_eth_read(port_info, EDMR) & ~EDMR_SRST, EDMR);
Yoshihiro Shimoda903de462011-01-18 17:53:45 +0900188
189 return 0;
190#endif
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900191}
192
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900193static int sh_eth_tx_desc_init(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900194{
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900195 int port = eth->port, i, ret = 0;
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900196 u32 alloc_desc_size = NUM_TX_DESC * sizeof(struct tx_desc_s);
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900197 struct sh_eth_info *port_info = &eth->port_info[port];
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900198 struct tx_desc_s *cur_tx_desc;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900199
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900200 /*
Nobuhiro Iwamatsu703949e2014-11-04 09:15:46 +0900201 * Allocate rx descriptors. They must be aligned to size of struct
202 * tx_desc_s.
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900203 */
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900204 port_info->tx_desc_alloc =
205 memalign(sizeof(struct tx_desc_s), alloc_desc_size);
206 if (!port_info->tx_desc_alloc) {
207 printf(SHETHER_NAME ": memalign failed\n");
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900208 ret = -ENOMEM;
209 goto err;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900210 }
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900211
Nobuhiro Iwamatsuaae5d232017-12-01 13:56:08 +0900212 flush_cache_wback(port_info->tx_desc_alloc, alloc_desc_size);
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900213
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900214 /* Make sure we use a P2 address (non-cacheable) */
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900215 port_info->tx_desc_base =
216 (struct tx_desc_s *)ADDR_TO_P2((u32)port_info->tx_desc_alloc);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900217 port_info->tx_desc_cur = port_info->tx_desc_base;
218
219 /* Initialize all descriptors */
220 for (cur_tx_desc = port_info->tx_desc_base, i = 0; i < NUM_TX_DESC;
221 cur_tx_desc++, i++) {
222 cur_tx_desc->td0 = 0x00;
223 cur_tx_desc->td1 = 0x00;
224 cur_tx_desc->td2 = 0x00;
225 }
226
227 /* Mark the end of the descriptors */
228 cur_tx_desc--;
229 cur_tx_desc->td0 |= TD_TDLE;
230
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900231 /*
232 * Point the controller to the tx descriptor list. Must use physical
233 * addresses
234 */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900235 sh_eth_write(port_info, ADDR_TO_PHY(port_info->tx_desc_base), TDLAR);
Nobuhiro Iwamatsu62cbddc2014-01-23 07:52:18 +0900236#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900237 sh_eth_write(port_info, ADDR_TO_PHY(port_info->tx_desc_base), TDFAR);
238 sh_eth_write(port_info, ADDR_TO_PHY(cur_tx_desc), TDFXR);
239 sh_eth_write(port_info, 0x01, TDFFR);/* Last discriptor bit */
Yoshihiro Shimoda903de462011-01-18 17:53:45 +0900240#endif
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900241
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900242err:
243 return ret;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900244}
245
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900246static int sh_eth_rx_desc_init(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900247{
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900248 int port = eth->port, i, ret = 0;
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900249 u32 alloc_desc_size = NUM_RX_DESC * sizeof(struct rx_desc_s);
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900250 struct sh_eth_info *port_info = &eth->port_info[port];
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900251 struct rx_desc_s *cur_rx_desc;
252 u8 *rx_buf;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900253
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900254 /*
Nobuhiro Iwamatsu703949e2014-11-04 09:15:46 +0900255 * Allocate rx descriptors. They must be aligned to size of struct
256 * rx_desc_s.
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900257 */
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900258 port_info->rx_desc_alloc =
259 memalign(sizeof(struct rx_desc_s), alloc_desc_size);
260 if (!port_info->rx_desc_alloc) {
261 printf(SHETHER_NAME ": memalign failed\n");
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900262 ret = -ENOMEM;
263 goto err;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900264 }
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900265
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900266 flush_cache_wback(port_info->rx_desc_alloc, alloc_desc_size);
267
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900268 /* Make sure we use a P2 address (non-cacheable) */
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900269 port_info->rx_desc_base =
270 (struct rx_desc_s *)ADDR_TO_P2((u32)port_info->rx_desc_alloc);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900271
272 port_info->rx_desc_cur = port_info->rx_desc_base;
273
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900274 /*
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900275 * Allocate rx data buffers. They must be RX_BUF_ALIGNE_SIZE bytes
276 * aligned and in P2 area.
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900277 */
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900278 port_info->rx_buf_alloc =
279 memalign(RX_BUF_ALIGNE_SIZE, NUM_RX_DESC * MAX_BUF_SIZE);
280 if (!port_info->rx_buf_alloc) {
281 printf(SHETHER_NAME ": alloc failed\n");
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900282 ret = -ENOMEM;
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900283 goto err_buf_alloc;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900284 }
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900285
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900286 port_info->rx_buf_base = (u8 *)ADDR_TO_P2((u32)port_info->rx_buf_alloc);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900287
288 /* Initialize all descriptors */
289 for (cur_rx_desc = port_info->rx_desc_base,
290 rx_buf = port_info->rx_buf_base, i = 0;
291 i < NUM_RX_DESC; cur_rx_desc++, rx_buf += MAX_BUF_SIZE, i++) {
292 cur_rx_desc->rd0 = RD_RACT;
293 cur_rx_desc->rd1 = MAX_BUF_SIZE << 16;
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900294 cur_rx_desc->rd2 = (u32)ADDR_TO_PHY(rx_buf);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900295 }
296
297 /* Mark the end of the descriptors */
298 cur_rx_desc--;
299 cur_rx_desc->rd0 |= RD_RDLE;
300
301 /* Point the controller to the rx descriptor list */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900302 sh_eth_write(port_info, ADDR_TO_PHY(port_info->rx_desc_base), RDLAR);
Nobuhiro Iwamatsu62cbddc2014-01-23 07:52:18 +0900303#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900304 sh_eth_write(port_info, ADDR_TO_PHY(port_info->rx_desc_base), RDFAR);
305 sh_eth_write(port_info, ADDR_TO_PHY(cur_rx_desc), RDFXR);
306 sh_eth_write(port_info, RDFFR_RDLF, RDFFR);
Yoshihiro Shimoda903de462011-01-18 17:53:45 +0900307#endif
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900308
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900309 return ret;
310
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900311err_buf_alloc:
312 free(port_info->rx_desc_alloc);
313 port_info->rx_desc_alloc = NULL;
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900314
315err:
316 return ret;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900317}
318
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900319static void sh_eth_tx_desc_free(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900320{
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900321 int port = eth->port;
322 struct sh_eth_info *port_info = &eth->port_info[port];
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900323
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900324 if (port_info->tx_desc_alloc) {
325 free(port_info->tx_desc_alloc);
326 port_info->tx_desc_alloc = NULL;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900327 }
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900328}
329
330static void sh_eth_rx_desc_free(struct sh_eth_dev *eth)
331{
332 int port = eth->port;
333 struct sh_eth_info *port_info = &eth->port_info[port];
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900334
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900335 if (port_info->rx_desc_alloc) {
336 free(port_info->rx_desc_alloc);
337 port_info->rx_desc_alloc = NULL;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900338 }
339
Nobuhiro Iwamatsu000889c2014-11-04 09:15:47 +0900340 if (port_info->rx_buf_alloc) {
341 free(port_info->rx_buf_alloc);
342 port_info->rx_buf_alloc = NULL;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900343 }
344}
345
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900346static int sh_eth_desc_init(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900347{
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900348 int ret = 0;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900349
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900350 ret = sh_eth_tx_desc_init(eth);
351 if (ret)
352 goto err_tx_init;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900353
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900354 ret = sh_eth_rx_desc_init(eth);
355 if (ret)
356 goto err_rx_init;
357
358 return ret;
359err_rx_init:
360 sh_eth_tx_desc_free(eth);
361
362err_tx_init:
363 return ret;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900364}
365
Marek Vasut68ac92e2018-01-21 14:55:44 +0100366static void sh_eth_write_hwaddr(struct sh_eth_info *port_info,
367 unsigned char *mac)
368{
369 u32 val;
370
371 val = (mac[0] << 24) | (mac[1] << 16) | (mac[2] << 8) | mac[3];
372 sh_eth_write(port_info, val, MAHR);
373
374 val = (mac[4] << 8) | mac[5];
375 sh_eth_write(port_info, val, MALR);
376}
377
Marek Vasut013af642018-01-21 15:10:21 +0100378static void sh_eth_mac_regs_config(struct sh_eth_dev *eth, unsigned char *mac)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900379{
Marek Vasut013af642018-01-21 15:10:21 +0100380 struct sh_eth_info *port_info = &eth->port_info[eth->port];
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900381
382 /* Configure e-dmac registers */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900383 sh_eth_write(port_info, (sh_eth_read(port_info, EDMR) & ~EMDR_DESC_R) |
Nobuhiro Iwamatsuf8b75072013-08-22 13:22:02 +0900384 (EMDR_DESC | EDMR_EL), EDMR);
385
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900386 sh_eth_write(port_info, 0, EESIPR);
387 sh_eth_write(port_info, 0, TRSCER);
388 sh_eth_write(port_info, 0, TFTR);
389 sh_eth_write(port_info, (FIFO_SIZE_T | FIFO_SIZE_R), FDR);
390 sh_eth_write(port_info, RMCR_RST, RMCR);
Nobuhiro Iwamatsu62cbddc2014-01-23 07:52:18 +0900391#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900392 sh_eth_write(port_info, 0, RPADIR);
Yoshihiro Shimoda903de462011-01-18 17:53:45 +0900393#endif
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900394 sh_eth_write(port_info, (FIFO_F_D_RFF | FIFO_F_D_RFD), FCFTR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900395
396 /* Configure e-mac registers */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900397 sh_eth_write(port_info, 0, ECSIPR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900398
399 /* Set Mac address */
Marek Vasut013af642018-01-21 15:10:21 +0100400 sh_eth_write_hwaddr(port_info, mac);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900401
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900402 sh_eth_write(port_info, RFLR_RFL_MIN, RFLR);
Yoshihiro Shimoda26235092012-06-26 16:38:06 +0000403#if defined(SH_ETH_TYPE_GETHER)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900404 sh_eth_write(port_info, 0, PIPR);
Nobuhiro Iwamatsu62cbddc2014-01-23 07:52:18 +0900405#endif
406#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900407 sh_eth_write(port_info, APR_AP, APR);
408 sh_eth_write(port_info, MPR_MP, MPR);
409 sh_eth_write(port_info, TPAUSER_TPAUSE, TPAUSER);
Nobuhiro Iwamatsu3bb4cc32011-11-14 16:56:59 +0900410#endif
411
Nobuhiro Iwamatsudcd5a592012-08-02 22:08:40 +0000412#if defined(CONFIG_CPU_SH7734) || defined(CONFIG_R8A7740)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900413 sh_eth_write(port_info, CONFIG_SH_ETHER_SH7734_MII, RMII_MII);
Marek Vasuteffb7902018-01-22 01:42:32 +0100414#elif defined(CONFIG_RCAR_GEN2)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900415 sh_eth_write(port_info, sh_eth_read(port_info, RMIIMR) | 0x1, RMIIMR);
Nobuhiro Iwamatsu4398d552012-05-15 15:49:39 +0000416#endif
Marek Vasut013af642018-01-21 15:10:21 +0100417}
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900418
Marek Vasut013af642018-01-21 15:10:21 +0100419static int sh_eth_phy_regs_config(struct sh_eth_dev *eth)
420{
421 struct sh_eth_info *port_info = &eth->port_info[eth->port];
422 struct phy_device *phy = port_info->phydev;
423 int ret = 0;
424 u32 val = 0;
Nobuhiro Iwamatsu3bb4cc32011-11-14 16:56:59 +0900425
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900426 /* Set the transfer speed */
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900427 if (phy->speed == 100) {
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900428 printf(SHETHER_NAME ": 100Base/");
Yoshihiro Shimoda26235092012-06-26 16:38:06 +0000429#if defined(SH_ETH_TYPE_GETHER)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900430 sh_eth_write(port_info, GECMR_100B, GECMR);
Yoshihiro Shimodae3bb3252012-11-04 15:54:30 +0000431#elif defined(CONFIG_CPU_SH7757) || defined(CONFIG_CPU_SH7752)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900432 sh_eth_write(port_info, 1, RTRATE);
Marek Vasuteffb7902018-01-22 01:42:32 +0100433#elif defined(CONFIG_CPU_SH7724) || defined(CONFIG_RCAR_GEN2)
Nobuhiro Iwamatsu3bb4cc32011-11-14 16:56:59 +0900434 val = ECMR_RTM;
435#endif
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900436 } else if (phy->speed == 10) {
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900437 printf(SHETHER_NAME ": 10Base/");
Yoshihiro Shimoda26235092012-06-26 16:38:06 +0000438#if defined(SH_ETH_TYPE_GETHER)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900439 sh_eth_write(port_info, GECMR_10B, GECMR);
Yoshihiro Shimodae3bb3252012-11-04 15:54:30 +0000440#elif defined(CONFIG_CPU_SH7757) || defined(CONFIG_CPU_SH7752)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900441 sh_eth_write(port_info, 0, RTRATE);
Yoshihiro Shimoda903de462011-01-18 17:53:45 +0900442#endif
Nobuhiro Iwamatsu3bb4cc32011-11-14 16:56:59 +0900443 }
Yoshihiro Shimoda26235092012-06-26 16:38:06 +0000444#if defined(SH_ETH_TYPE_GETHER)
Nobuhiro Iwamatsu4398d552012-05-15 15:49:39 +0000445 else if (phy->speed == 1000) {
446 printf(SHETHER_NAME ": 1000Base/");
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900447 sh_eth_write(port_info, GECMR_1000B, GECMR);
Nobuhiro Iwamatsu4398d552012-05-15 15:49:39 +0000448 }
449#endif
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900450
451 /* Check if full duplex mode is supported by the phy */
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900452 if (phy->duplex) {
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900453 printf("Full\n");
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900454 sh_eth_write(port_info,
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900455 val | (ECMR_CHG_DM | ECMR_RE | ECMR_TE | ECMR_DM),
Yoshihiro Shimoda49afb8c2012-06-26 16:38:09 +0000456 ECMR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900457 } else {
458 printf("Half\n");
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900459 sh_eth_write(port_info,
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900460 val | (ECMR_CHG_DM | ECMR_RE | ECMR_TE),
461 ECMR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900462 }
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900463
464 return ret;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900465}
466
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900467static void sh_eth_start(struct sh_eth_dev *eth)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900468{
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900469 struct sh_eth_info *port_info = &eth->port_info[eth->port];
470
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900471 /*
472 * Enable the e-dmac receiver only. The transmitter will be enabled when
473 * we have something to transmit
474 */
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900475 sh_eth_write(port_info, EDRRR_R, EDRRR);
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900476}
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900477
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900478static void sh_eth_stop(struct sh_eth_dev *eth)
479{
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900480 struct sh_eth_info *port_info = &eth->port_info[eth->port];
481
482 sh_eth_write(port_info, ~EDRRR_R, EDRRR);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900483}
484
Marek Vasut013af642018-01-21 15:10:21 +0100485static int sh_eth_init_common(struct sh_eth_dev *eth, unsigned char *mac)
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900486{
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900487 int ret = 0;
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900488
489 ret = sh_eth_reset(eth);
490 if (ret)
Marek Vasut013af642018-01-21 15:10:21 +0100491 return ret;
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900492
493 ret = sh_eth_desc_init(eth);
494 if (ret)
Marek Vasut013af642018-01-21 15:10:21 +0100495 return ret;
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900496
Marek Vasut013af642018-01-21 15:10:21 +0100497 sh_eth_mac_regs_config(eth, mac);
498
499 return 0;
500}
501
502static int sh_eth_start_common(struct sh_eth_dev *eth)
503{
504 struct sh_eth_info *port_info = &eth->port_info[eth->port];
505 int ret;
506
507 ret = phy_startup(port_info->phydev);
508 if (ret) {
509 printf(SHETHER_NAME ": phy startup failure\n");
510 return ret;
511 }
512
513 ret = sh_eth_phy_regs_config(eth);
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900514 if (ret)
Marek Vasut013af642018-01-21 15:10:21 +0100515 return ret;
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900516
517 sh_eth_start(eth);
518
Marek Vasut013af642018-01-21 15:10:21 +0100519 return 0;
520}
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900521
Marek Vasut31920262018-01-19 18:57:17 +0100522#ifndef CONFIG_DM_ETH
Marek Vasuta2207842018-01-21 15:31:48 +0100523static int sh_eth_phy_config_legacy(struct sh_eth_dev *eth)
524{
525 int port = eth->port, ret = 0;
526 struct sh_eth_info *port_info = &eth->port_info[port];
527 struct eth_device *dev = port_info->dev;
528 struct phy_device *phydev;
529
530 phydev = phy_connect(
531 miiphy_get_dev_by_name(dev->name),
532 port_info->phy_addr, dev, CONFIG_SH_ETHER_PHY_MODE);
533 port_info->phydev = phydev;
534 phy_config(phydev);
535
536 return ret;
537}
538
539static int sh_eth_send_legacy(struct eth_device *dev, void *packet, int len)
540{
541 struct sh_eth_dev *eth = dev->priv;
542
543 return sh_eth_send_common(eth, packet, len);
544}
545
546static int sh_eth_recv_common(struct sh_eth_dev *eth)
547{
548 int port = eth->port, len = 0;
549 struct sh_eth_info *port_info = &eth->port_info[port];
550 uchar *packet = (uchar *)ADDR_TO_P2(port_info->rx_desc_cur->rd2);
551
552 len = sh_eth_recv_start(eth);
553 if (len > 0) {
554 invalidate_cache(packet, len);
555 net_process_received_packet(packet, len);
556 sh_eth_recv_finish(eth);
557 } else
558 len = 0;
559
560 /* Restart the receiver if disabled */
561 if (!(sh_eth_read(port_info, EDRRR) & EDRRR_R))
562 sh_eth_write(port_info, EDRRR_R, EDRRR);
563
564 return len;
565}
566
567static int sh_eth_recv_legacy(struct eth_device *dev)
568{
569 struct sh_eth_dev *eth = dev->priv;
570
571 return sh_eth_recv_common(eth);
572}
573
Marek Vasut013af642018-01-21 15:10:21 +0100574static int sh_eth_init_legacy(struct eth_device *dev, bd_t *bd)
575{
576 struct sh_eth_dev *eth = dev->priv;
577 int ret;
578
579 ret = sh_eth_init_common(eth, dev->enetaddr);
580 if (ret)
581 return ret;
582
583 ret = sh_eth_phy_config_legacy(eth);
584 if (ret) {
585 printf(SHETHER_NAME ": phy config timeout\n");
586 goto err_start;
587 }
588
589 ret = sh_eth_start_common(eth);
590 if (ret)
591 goto err_start;
592
593 return 0;
594
595err_start:
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900596 sh_eth_tx_desc_free(eth);
597 sh_eth_rx_desc_free(eth);
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900598 return ret;
599}
600
Marek Vasut013af642018-01-21 15:10:21 +0100601void sh_eth_halt_legacy(struct eth_device *dev)
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900602{
603 struct sh_eth_dev *eth = dev->priv;
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900604
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900605 sh_eth_stop(eth);
606}
607
608int sh_eth_initialize(bd_t *bd)
609{
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900610 int ret = 0;
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900611 struct sh_eth_dev *eth = NULL;
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900612 struct eth_device *dev = NULL;
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900613 struct mii_dev *mdiodev;
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900614
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900615 eth = (struct sh_eth_dev *)malloc(sizeof(struct sh_eth_dev));
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900616 if (!eth) {
617 printf(SHETHER_NAME ": %s: malloc failed\n", __func__);
618 ret = -ENOMEM;
619 goto err;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900620 }
621
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900622 dev = (struct eth_device *)malloc(sizeof(struct eth_device));
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900623 if (!dev) {
624 printf(SHETHER_NAME ": %s: malloc failed\n", __func__);
625 ret = -ENOMEM;
626 goto err;
627 }
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900628 memset(dev, 0, sizeof(struct eth_device));
629 memset(eth, 0, sizeof(struct sh_eth_dev));
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900630
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900631 eth->port = CONFIG_SH_ETHER_USE_PORT;
632 eth->port_info[eth->port].phy_addr = CONFIG_SH_ETHER_PHY_ADDR;
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900633 eth->port_info[eth->port].iobase =
634 (void __iomem *)(BASE_IO_ADDR + 0x800 * eth->port);
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900635
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900636 dev->priv = (void *)eth;
637 dev->iobase = 0;
Marek Vasut013af642018-01-21 15:10:21 +0100638 dev->init = sh_eth_init_legacy;
639 dev->halt = sh_eth_halt_legacy;
Marek Vasutdca221b2018-01-21 14:27:51 +0100640 dev->send = sh_eth_send_legacy;
641 dev->recv = sh_eth_recv_legacy;
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900642 eth->port_info[eth->port].dev = dev;
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900643
Ben Whitten192bc692015-12-30 13:05:58 +0000644 strcpy(dev->name, SHETHER_NAME);
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900645
Nobuhiro Iwamatsue2752db2014-01-23 07:52:19 +0900646 /* Register Device to EtherNet subsystem */
647 eth_register(dev);
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900648
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900649 bb_miiphy_buses[0].priv = eth;
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900650 mdiodev = mdio_alloc();
Joe Hershberger5a49f172016-08-08 11:28:38 -0500651 if (!mdiodev)
652 return -ENOMEM;
653 strncpy(mdiodev->name, dev->name, MDIO_NAME_LEN);
654 mdiodev->read = bb_miiphy_read;
655 mdiodev->write = bb_miiphy_write;
656
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +0900657 ret = mdio_register(mdiodev);
658 if (ret < 0)
659 return ret;
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900660
Simon Glass35affd72017-08-03 12:22:14 -0600661 if (!eth_env_get_enetaddr("ethaddr", dev->enetaddr))
Mike Frysingerc527ce92009-02-11 19:14:09 -0500662 puts("Please set MAC address\n");
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900663
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900664 return ret;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900665
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900666err:
Nobuhiro Iwamatsubd3980c2008-11-21 12:04:18 +0900667 if (dev)
668 free(dev);
669
670 if (eth)
671 free(eth);
672
673 printf(SHETHER_NAME ": Failed\n");
674 return ret;
Nobuhiro Iwamatsu9751ee02008-06-11 21:05:00 +0900675}
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900676
Marek Vasut31920262018-01-19 18:57:17 +0100677#else /* CONFIG_DM_ETH */
678
679struct sh_ether_priv {
680 struct sh_eth_dev shdev;
681
682 struct mii_dev *bus;
683 void __iomem *iobase;
684 struct clk clk;
685 struct gpio_desc reset_gpio;
686};
687
688static int sh_ether_send(struct udevice *dev, void *packet, int len)
689{
690 struct sh_ether_priv *priv = dev_get_priv(dev);
691 struct sh_eth_dev *eth = &priv->shdev;
692
693 return sh_eth_send_common(eth, packet, len);
694}
695
696static int sh_ether_recv(struct udevice *dev, int flags, uchar **packetp)
697{
698 struct sh_ether_priv *priv = dev_get_priv(dev);
699 struct sh_eth_dev *eth = &priv->shdev;
700 struct sh_eth_info *port_info = &eth->port_info[eth->port];
701 uchar *packet = (uchar *)ADDR_TO_P2(port_info->rx_desc_cur->rd2);
702 int len;
703
704 len = sh_eth_recv_start(eth);
705 if (len > 0) {
706 invalidate_cache(packet, len);
707 *packetp = packet;
708
709 return len;
710 } else {
711 len = 0;
712
713 /* Restart the receiver if disabled */
714 if (!(sh_eth_read(port_info, EDRRR) & EDRRR_R))
715 sh_eth_write(port_info, EDRRR_R, EDRRR);
716
717 return -EAGAIN;
718 }
719}
720
721static int sh_ether_free_pkt(struct udevice *dev, uchar *packet, int length)
722{
723 struct sh_ether_priv *priv = dev_get_priv(dev);
724 struct sh_eth_dev *eth = &priv->shdev;
725 struct sh_eth_info *port_info = &eth->port_info[eth->port];
726
727 sh_eth_recv_finish(eth);
728
729 /* Restart the receiver if disabled */
730 if (!(sh_eth_read(port_info, EDRRR) & EDRRR_R))
731 sh_eth_write(port_info, EDRRR_R, EDRRR);
732
733 return 0;
734}
735
736static int sh_ether_write_hwaddr(struct udevice *dev)
737{
738 struct sh_ether_priv *priv = dev_get_priv(dev);
739 struct sh_eth_dev *eth = &priv->shdev;
740 struct sh_eth_info *port_info = &eth->port_info[eth->port];
741 struct eth_pdata *pdata = dev_get_platdata(dev);
742
743 sh_eth_write_hwaddr(port_info, pdata->enetaddr);
744
745 return 0;
746}
747
748static int sh_eth_phy_config(struct udevice *dev)
749{
750 struct sh_ether_priv *priv = dev_get_priv(dev);
751 struct eth_pdata *pdata = dev_get_platdata(dev);
752 struct sh_eth_dev *eth = &priv->shdev;
753 int port = eth->port, ret = 0;
754 struct sh_eth_info *port_info = &eth->port_info[port];
755 struct phy_device *phydev;
756 int mask = 0xffffffff;
757
758 phydev = phy_find_by_mask(priv->bus, mask, pdata->phy_interface);
759 if (!phydev)
760 return -ENODEV;
761
762 phy_connect_dev(phydev, dev);
763
764 port_info->phydev = phydev;
765 phy_config(phydev);
766
767 return ret;
768}
769
770static int sh_ether_start(struct udevice *dev)
771{
772 struct sh_ether_priv *priv = dev_get_priv(dev);
773 struct eth_pdata *pdata = dev_get_platdata(dev);
774 struct sh_eth_dev *eth = &priv->shdev;
775 int ret;
776
777 ret = clk_enable(&priv->clk);
778 if (ret)
779 return ret;
780
781 ret = sh_eth_init_common(eth, pdata->enetaddr);
782 if (ret)
783 goto err_clk;
784
785 ret = sh_eth_phy_config(dev);
786 if (ret) {
787 printf(SHETHER_NAME ": phy config timeout\n");
788 goto err_start;
789 }
790
791 ret = sh_eth_start_common(eth);
792 if (ret)
793 goto err_start;
794
795 return 0;
796
797err_start:
798 sh_eth_tx_desc_free(eth);
799 sh_eth_rx_desc_free(eth);
800err_clk:
801 clk_disable(&priv->clk);
802 return ret;
803}
804
805static void sh_ether_stop(struct udevice *dev)
806{
807 struct sh_ether_priv *priv = dev_get_priv(dev);
808
809 sh_eth_stop(&priv->shdev);
810 clk_disable(&priv->clk);
811}
812
813static int sh_ether_probe(struct udevice *udev)
814{
815 struct eth_pdata *pdata = dev_get_platdata(udev);
816 struct sh_ether_priv *priv = dev_get_priv(udev);
817 struct sh_eth_dev *eth = &priv->shdev;
818 struct mii_dev *mdiodev;
819 void __iomem *iobase;
820 int ret;
821
822 iobase = map_physmem(pdata->iobase, 0x1000, MAP_NOCACHE);
823 priv->iobase = iobase;
824
825 ret = clk_get_by_index(udev, 0, &priv->clk);
826 if (ret < 0)
827 goto err_mdio_alloc;
828
829 gpio_request_by_name(udev, "reset-gpios", 0, &priv->reset_gpio,
830 GPIOD_IS_OUT);
831
832 mdiodev = mdio_alloc();
833 if (!mdiodev) {
834 ret = -ENOMEM;
835 goto err_mdio_alloc;
836 }
837
838 mdiodev->read = bb_miiphy_read;
839 mdiodev->write = bb_miiphy_write;
840 bb_miiphy_buses[0].priv = eth;
841 snprintf(mdiodev->name, sizeof(mdiodev->name), udev->name);
842
843 ret = mdio_register(mdiodev);
844 if (ret < 0)
845 goto err_mdio_register;
846
847 priv->bus = miiphy_get_dev_by_name(udev->name);
848
849 eth->port = CONFIG_SH_ETHER_USE_PORT;
850 eth->port_info[eth->port].phy_addr = CONFIG_SH_ETHER_PHY_ADDR;
851 eth->port_info[eth->port].iobase =
852 (void __iomem *)(BASE_IO_ADDR + 0x800 * eth->port);
853
854 return 0;
855
856err_mdio_register:
857 mdio_free(mdiodev);
858err_mdio_alloc:
859 unmap_physmem(priv->iobase, MAP_NOCACHE);
860 return ret;
861}
862
863static int sh_ether_remove(struct udevice *udev)
864{
865 struct sh_ether_priv *priv = dev_get_priv(udev);
866 struct sh_eth_dev *eth = &priv->shdev;
867 struct sh_eth_info *port_info = &eth->port_info[eth->port];
868
869 free(port_info->phydev);
870 mdio_unregister(priv->bus);
871 mdio_free(priv->bus);
872
873 if (dm_gpio_is_valid(&priv->reset_gpio))
874 dm_gpio_free(udev, &priv->reset_gpio);
875
876 unmap_physmem(priv->iobase, MAP_NOCACHE);
877
878 return 0;
879}
880
881static const struct eth_ops sh_ether_ops = {
882 .start = sh_ether_start,
883 .send = sh_ether_send,
884 .recv = sh_ether_recv,
885 .free_pkt = sh_ether_free_pkt,
886 .stop = sh_ether_stop,
887 .write_hwaddr = sh_ether_write_hwaddr,
888};
889
890int sh_ether_ofdata_to_platdata(struct udevice *dev)
891{
892 struct eth_pdata *pdata = dev_get_platdata(dev);
893 const char *phy_mode;
894 const fdt32_t *cell;
895 int ret = 0;
896
897 pdata->iobase = devfdt_get_addr(dev);
898 pdata->phy_interface = -1;
899 phy_mode = fdt_getprop(gd->fdt_blob, dev_of_offset(dev), "phy-mode",
900 NULL);
901 if (phy_mode)
902 pdata->phy_interface = phy_get_interface_by_name(phy_mode);
903 if (pdata->phy_interface == -1) {
904 debug("%s: Invalid PHY interface '%s'\n", __func__, phy_mode);
905 return -EINVAL;
906 }
907
908 pdata->max_speed = 1000;
909 cell = fdt_getprop(gd->fdt_blob, dev_of_offset(dev), "max-speed", NULL);
910 if (cell)
911 pdata->max_speed = fdt32_to_cpu(*cell);
912
913 sprintf(bb_miiphy_buses[0].name, dev->name);
914
915 return ret;
916}
917
918static const struct udevice_id sh_ether_ids[] = {
919 { .compatible = "renesas,ether-r8a7791" },
920 { }
921};
922
923U_BOOT_DRIVER(eth_sh_ether) = {
924 .name = "sh_ether",
925 .id = UCLASS_ETH,
926 .of_match = sh_ether_ids,
927 .ofdata_to_platdata = sh_ether_ofdata_to_platdata,
928 .probe = sh_ether_probe,
929 .remove = sh_ether_remove,
930 .ops = &sh_ether_ops,
931 .priv_auto_alloc_size = sizeof(struct sh_ether_priv),
932 .platdata_auto_alloc_size = sizeof(struct eth_pdata),
933 .flags = DM_FLAG_ALLOC_PRIV_DMA,
934};
935#endif
936
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900937/******* for bb_miiphy *******/
938static int sh_eth_bb_init(struct bb_miiphy_bus *bus)
939{
940 return 0;
941}
942
943static int sh_eth_bb_mdio_active(struct bb_miiphy_bus *bus)
944{
945 struct sh_eth_dev *eth = bus->priv;
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900946 struct sh_eth_info *port_info = &eth->port_info[eth->port];
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900947
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900948 sh_eth_write(port_info, sh_eth_read(port_info, PIR) | PIR_MMD, PIR);
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900949
950 return 0;
951}
952
953static int sh_eth_bb_mdio_tristate(struct bb_miiphy_bus *bus)
954{
955 struct sh_eth_dev *eth = bus->priv;
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900956 struct sh_eth_info *port_info = &eth->port_info[eth->port];
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900957
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900958 sh_eth_write(port_info, sh_eth_read(port_info, PIR) & ~PIR_MMD, PIR);
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900959
960 return 0;
961}
962
963static int sh_eth_bb_set_mdio(struct bb_miiphy_bus *bus, int v)
964{
965 struct sh_eth_dev *eth = bus->priv;
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900966 struct sh_eth_info *port_info = &eth->port_info[eth->port];
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900967
968 if (v)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900969 sh_eth_write(port_info,
970 sh_eth_read(port_info, PIR) | PIR_MDO, PIR);
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900971 else
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900972 sh_eth_write(port_info,
973 sh_eth_read(port_info, PIR) & ~PIR_MDO, PIR);
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900974
975 return 0;
976}
977
978static int sh_eth_bb_get_mdio(struct bb_miiphy_bus *bus, int *v)
979{
980 struct sh_eth_dev *eth = bus->priv;
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900981 struct sh_eth_info *port_info = &eth->port_info[eth->port];
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900982
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900983 *v = (sh_eth_read(port_info, PIR) & PIR_MDI) >> 3;
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900984
985 return 0;
986}
987
988static int sh_eth_bb_set_mdc(struct bb_miiphy_bus *bus, int v)
989{
990 struct sh_eth_dev *eth = bus->priv;
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900991 struct sh_eth_info *port_info = &eth->port_info[eth->port];
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900992
993 if (v)
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900994 sh_eth_write(port_info,
995 sh_eth_read(port_info, PIR) | PIR_MDC, PIR);
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900996 else
Nobuhiro Iwamatsufbfb5112017-12-01 08:10:32 +0900997 sh_eth_write(port_info,
998 sh_eth_read(port_info, PIR) & ~PIR_MDC, PIR);
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +0900999
1000 return 0;
1001}
1002
1003static int sh_eth_bb_delay(struct bb_miiphy_bus *bus)
1004{
1005 udelay(10);
1006
1007 return 0;
1008}
1009
1010struct bb_miiphy_bus bb_miiphy_buses[] = {
1011 {
1012 .name = "sh_eth",
1013 .init = sh_eth_bb_init,
1014 .mdio_active = sh_eth_bb_mdio_active,
1015 .mdio_tristate = sh_eth_bb_mdio_tristate,
1016 .set_mdio = sh_eth_bb_set_mdio,
1017 .get_mdio = sh_eth_bb_get_mdio,
1018 .set_mdc = sh_eth_bb_set_mdc,
1019 .delay = sh_eth_bb_delay,
1020 }
1021};
Nobuhiro Iwamatsudc148672017-12-01 08:08:00 +09001022
Yoshihiro Shimodabd1024b2011-10-11 18:10:14 +09001023int bb_miiphy_buses_num = ARRAY_SIZE(bb_miiphy_buses);