1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * sh_eth.c - Driver for Renesas ethernet controller.
4  *
5  * Copyright (C) 2008, 2011 Renesas Solutions Corp.
6  * Copyright (c) 2008, 2011, 2014 2014 Nobuhiro Iwamatsu
7  * Copyright (c) 2007 Carlos Munoz <carlos@kenati.com>
8  * Copyright (C) 2013, 2014 Renesas Electronics Corporation
9  */
10 
11 #include <config.h>
12 #include <common.h>
13 #include <environment.h>
14 #include <malloc.h>
15 #include <net.h>
16 #include <netdev.h>
17 #include <miiphy.h>
18 #include <linux/errno.h>
19 #include <asm/io.h>
20 
21 #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 
28 #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
36 
37 #if defined(CONFIG_SH_ETHER_CACHE_WRITEBACK) && !defined(CONFIG_SYS_DCACHE_OFF)
38 #define flush_cache_wback(addr, len)    \
39 		flush_dcache_range((u32)addr, \
40 		(u32)(addr + ALIGN(len, CONFIG_SH_ETHER_ALIGNE_SIZE)))
41 #else
42 #define flush_cache_wback(...)
43 #endif
44 
45 #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 
62 #define TIMEOUT_CNT 1000
63 
sh_eth_send_common(struct sh_eth_dev * eth,void * packet,int len)64 static int sh_eth_send_common(struct sh_eth_dev *eth, void *packet, int len)
65 {
66 	int ret = 0, timeout;
67 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
68 
69 	if (!packet || len > 0xffff) {
70 		printf(SHETHER_NAME ": %s: Invalid argument\n", __func__);
71 		ret = -EINVAL;
72 		goto err;
73 	}
74 
75 	/* packet must be a 4 byte boundary */
76 	if ((int)packet & 3) {
77 		printf(SHETHER_NAME ": %s: packet not 4 byte aligned\n"
78 				, __func__);
79 		ret = -EFAULT;
80 		goto err;
81 	}
82 
83 	/* Update tx descriptor */
84 	flush_cache_wback(packet, len);
85 	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 
93 	flush_cache_wback(port_info->tx_desc_cur, sizeof(struct tx_desc_s));
94 
95 	/* Restart the transmitter if disabled */
96 	if (!(sh_eth_read(port_info, EDTRR) & EDTRR_TRNS))
97 		sh_eth_write(port_info, EDTRR_TRNS, EDTRR);
98 
99 	/* Wait until packet is transmitted */
100 	timeout = TIMEOUT_CNT;
101 	do {
102 		invalidate_cache(port_info->tx_desc_cur,
103 				 sizeof(struct tx_desc_s));
104 		udelay(100);
105 	} while (port_info->tx_desc_cur->td0 & TD_TACT && timeout--);
106 
107 	if (timeout < 0) {
108 		printf(SHETHER_NAME ": transmit timeout\n");
109 		ret = -ETIMEDOUT;
110 		goto err;
111 	}
112 
113 	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 
117 err:
118 	return ret;
119 }
120 
sh_eth_recv_start(struct sh_eth_dev * eth)121 static int sh_eth_recv_start(struct sh_eth_dev *eth)
122 {
123 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
124 
125 	/* Check if the rx descriptor is ready */
126 	invalidate_cache(port_info->rx_desc_cur, sizeof(struct rx_desc_s));
127 	if (port_info->rx_desc_cur->rd0 & RD_RACT)
128 		return -EINVAL;
129 
130 	/* Check for errors */
131 	if (port_info->rx_desc_cur->rd0 & RD_RFE)
132 		return -EINVAL;
133 
134 	return port_info->rx_desc_cur->rd1 & 0xffff;
135 }
136 
sh_eth_recv_finish(struct sh_eth_dev * eth)137 static void sh_eth_recv_finish(struct sh_eth_dev *eth)
138 {
139 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
140 
141 	/* Make current descriptor available again */
142 	if (port_info->rx_desc_cur->rd0 & RD_RDLE)
143 		port_info->rx_desc_cur->rd0 = RD_RACT | RD_RDLE;
144 	else
145 		port_info->rx_desc_cur->rd0 = RD_RACT;
146 
147 	flush_cache_wback(port_info->rx_desc_cur,
148 			  sizeof(struct rx_desc_s));
149 
150 	/* Point to the next descriptor */
151 	port_info->rx_desc_cur++;
152 	if (port_info->rx_desc_cur >=
153 	    port_info->rx_desc_base + NUM_RX_DESC)
154 		port_info->rx_desc_cur = port_info->rx_desc_base;
155 }
156 
sh_eth_reset(struct sh_eth_dev * eth)157 static int sh_eth_reset(struct sh_eth_dev *eth)
158 {
159 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
160 #if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
161 	int ret = 0, i;
162 
163 	/* Start e-dmac transmitter and receiver */
164 	sh_eth_write(port_info, EDSR_ENALL, EDSR);
165 
166 	/* Perform a software reset and wait for it to complete */
167 	sh_eth_write(port_info, EDMR_SRST, EDMR);
168 	for (i = 0; i < TIMEOUT_CNT; i++) {
169 		if (!(sh_eth_read(port_info, EDMR) & EDMR_SRST))
170 			break;
171 		udelay(1000);
172 	}
173 
174 	if (i == TIMEOUT_CNT) {
175 		printf(SHETHER_NAME  ": Software reset timeout\n");
176 		ret = -EIO;
177 	}
178 
179 	return ret;
180 #else
181 	sh_eth_write(port_info, sh_eth_read(port_info, EDMR) | EDMR_SRST, EDMR);
182 	mdelay(3);
183 	sh_eth_write(port_info,
184 		     sh_eth_read(port_info, EDMR) & ~EDMR_SRST, EDMR);
185 
186 	return 0;
187 #endif
188 }
189 
sh_eth_tx_desc_init(struct sh_eth_dev * eth)190 static int sh_eth_tx_desc_init(struct sh_eth_dev *eth)
191 {
192 	int i, ret = 0;
193 	u32 alloc_desc_size = NUM_TX_DESC * sizeof(struct tx_desc_s);
194 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
195 	struct tx_desc_s *cur_tx_desc;
196 
197 	/*
198 	 * Allocate rx descriptors. They must be aligned to size of struct
199 	 * tx_desc_s.
200 	 */
201 	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");
205 		ret = -ENOMEM;
206 		goto err;
207 	}
208 
209 	flush_cache_wback(port_info->tx_desc_alloc, alloc_desc_size);
210 
211 	/* Make sure we use a P2 address (non-cacheable) */
212 	port_info->tx_desc_base =
213 		(struct tx_desc_s *)ADDR_TO_P2((u32)port_info->tx_desc_alloc);
214 	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 
228 	/*
229 	 * Point the controller to the tx descriptor list. Must use physical
230 	 * addresses
231 	 */
232 	sh_eth_write(port_info, ADDR_TO_PHY(port_info->tx_desc_base), TDLAR);
233 #if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
234 	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 */
237 #endif
238 
239 err:
240 	return ret;
241 }
242 
sh_eth_rx_desc_init(struct sh_eth_dev * eth)243 static int sh_eth_rx_desc_init(struct sh_eth_dev *eth)
244 {
245 	int i, ret = 0;
246 	u32 alloc_desc_size = NUM_RX_DESC * sizeof(struct rx_desc_s);
247 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
248 	struct rx_desc_s *cur_rx_desc;
249 	u8 *rx_buf;
250 
251 	/*
252 	 * Allocate rx descriptors. They must be aligned to size of struct
253 	 * rx_desc_s.
254 	 */
255 	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");
259 		ret = -ENOMEM;
260 		goto err;
261 	}
262 
263 	flush_cache_wback(port_info->rx_desc_alloc, alloc_desc_size);
264 
265 	/* Make sure we use a P2 address (non-cacheable) */
266 	port_info->rx_desc_base =
267 		(struct rx_desc_s *)ADDR_TO_P2((u32)port_info->rx_desc_alloc);
268 
269 	port_info->rx_desc_cur = port_info->rx_desc_base;
270 
271 	/*
272 	 * Allocate rx data buffers. They must be RX_BUF_ALIGNE_SIZE bytes
273 	 * aligned and in P2 area.
274 	 */
275 	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");
279 		ret = -ENOMEM;
280 		goto err_buf_alloc;
281 	}
282 
283 	port_info->rx_buf_base = (u8 *)ADDR_TO_P2((u32)port_info->rx_buf_alloc);
284 
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;
291 		cur_rx_desc->rd2 = (u32)ADDR_TO_PHY(rx_buf);
292 	}
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 */
299 	sh_eth_write(port_info, ADDR_TO_PHY(port_info->rx_desc_base), RDLAR);
300 #if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
301 	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);
304 #endif
305 
306 	return ret;
307 
308 err_buf_alloc:
309 	free(port_info->rx_desc_alloc);
310 	port_info->rx_desc_alloc = NULL;
311 
312 err:
313 	return ret;
314 }
315 
sh_eth_tx_desc_free(struct sh_eth_dev * eth)316 static void sh_eth_tx_desc_free(struct sh_eth_dev *eth)
317 {
318 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
319 
320 	if (port_info->tx_desc_alloc) {
321 		free(port_info->tx_desc_alloc);
322 		port_info->tx_desc_alloc = NULL;
323 	}
324 }
325 
sh_eth_rx_desc_free(struct sh_eth_dev * eth)326 static void sh_eth_rx_desc_free(struct sh_eth_dev *eth)
327 {
328 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
329 
330 	if (port_info->rx_desc_alloc) {
331 		free(port_info->rx_desc_alloc);
332 		port_info->rx_desc_alloc = NULL;
333 	}
334 
335 	if (port_info->rx_buf_alloc) {
336 		free(port_info->rx_buf_alloc);
337 		port_info->rx_buf_alloc = NULL;
338 	}
339 }
340 
sh_eth_desc_init(struct sh_eth_dev * eth)341 static int sh_eth_desc_init(struct sh_eth_dev *eth)
342 {
343 	int ret = 0;
344 
345 	ret = sh_eth_tx_desc_init(eth);
346 	if (ret)
347 		goto err_tx_init;
348 
349 	ret = sh_eth_rx_desc_init(eth);
350 	if (ret)
351 		goto err_rx_init;
352 
353 	return ret;
354 err_rx_init:
355 	sh_eth_tx_desc_free(eth);
356 
357 err_tx_init:
358 	return ret;
359 }
360 
sh_eth_write_hwaddr(struct sh_eth_info * port_info,unsigned char * mac)361 static void sh_eth_write_hwaddr(struct sh_eth_info *port_info,
362 				unsigned char *mac)
363 {
364 	u32 val;
365 
366 	val = (mac[0] << 24) | (mac[1] << 16) | (mac[2] << 8) | mac[3];
367 	sh_eth_write(port_info, val, MAHR);
368 
369 	val = (mac[4] << 8) | mac[5];
370 	sh_eth_write(port_info, val, MALR);
371 }
372 
sh_eth_mac_regs_config(struct sh_eth_dev * eth,unsigned char * mac)373 static void sh_eth_mac_regs_config(struct sh_eth_dev *eth, unsigned char *mac)
374 {
375 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
376 
377 	/* Configure e-dmac registers */
378 	sh_eth_write(port_info, (sh_eth_read(port_info, EDMR) & ~EMDR_DESC_R) |
379 			(EMDR_DESC | EDMR_EL), EDMR);
380 
381 	sh_eth_write(port_info, 0, EESIPR);
382 	sh_eth_write(port_info, 0, TRSCER);
383 	sh_eth_write(port_info, 0, TFTR);
384 	sh_eth_write(port_info, (FIFO_SIZE_T | FIFO_SIZE_R), FDR);
385 	sh_eth_write(port_info, RMCR_RST, RMCR);
386 #if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
387 	sh_eth_write(port_info, 0, RPADIR);
388 #endif
389 	sh_eth_write(port_info, (FIFO_F_D_RFF | FIFO_F_D_RFD), FCFTR);
390 
391 	/* Configure e-mac registers */
392 	sh_eth_write(port_info, 0, ECSIPR);
393 
394 	/* Set Mac address */
395 	sh_eth_write_hwaddr(port_info, mac);
396 
397 	sh_eth_write(port_info, RFLR_RFL_MIN, RFLR);
398 #if defined(SH_ETH_TYPE_GETHER)
399 	sh_eth_write(port_info, 0, PIPR);
400 #endif
401 #if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
402 	sh_eth_write(port_info, APR_AP, APR);
403 	sh_eth_write(port_info, MPR_MP, MPR);
404 	sh_eth_write(port_info, TPAUSER_TPAUSE, TPAUSER);
405 #endif
406 
407 #if defined(CONFIG_CPU_SH7734) || defined(CONFIG_R8A7740)
408 	sh_eth_write(port_info, CONFIG_SH_ETHER_SH7734_MII, RMII_MII);
409 #elif defined(CONFIG_RCAR_GEN2)
410 	sh_eth_write(port_info, sh_eth_read(port_info, RMIIMR) | 0x1, RMIIMR);
411 #endif
412 }
413 
sh_eth_phy_regs_config(struct sh_eth_dev * eth)414 static int sh_eth_phy_regs_config(struct sh_eth_dev *eth)
415 {
416 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
417 	struct phy_device *phy = port_info->phydev;
418 	int ret = 0;
419 	u32 val = 0;
420 
421 	/* Set the transfer speed */
422 	if (phy->speed == 100) {
423 		printf(SHETHER_NAME ": 100Base/");
424 #if defined(SH_ETH_TYPE_GETHER)
425 		sh_eth_write(port_info, GECMR_100B, GECMR);
426 #elif defined(CONFIG_CPU_SH7757) || defined(CONFIG_CPU_SH7752)
427 		sh_eth_write(port_info, 1, RTRATE);
428 #elif defined(CONFIG_CPU_SH7724) || defined(CONFIG_RCAR_GEN2)
429 		val = ECMR_RTM;
430 #endif
431 	} else if (phy->speed == 10) {
432 		printf(SHETHER_NAME ": 10Base/");
433 #if defined(SH_ETH_TYPE_GETHER)
434 		sh_eth_write(port_info, GECMR_10B, GECMR);
435 #elif defined(CONFIG_CPU_SH7757) || defined(CONFIG_CPU_SH7752)
436 		sh_eth_write(port_info, 0, RTRATE);
437 #endif
438 	}
439 #if defined(SH_ETH_TYPE_GETHER)
440 	else if (phy->speed == 1000) {
441 		printf(SHETHER_NAME ": 1000Base/");
442 		sh_eth_write(port_info, GECMR_1000B, GECMR);
443 	}
444 #endif
445 
446 	/* Check if full duplex mode is supported by the phy */
447 	if (phy->duplex) {
448 		printf("Full\n");
449 		sh_eth_write(port_info,
450 			     val | (ECMR_CHG_DM | ECMR_RE | ECMR_TE | ECMR_DM),
451 			     ECMR);
452 	} else {
453 		printf("Half\n");
454 		sh_eth_write(port_info,
455 			     val | (ECMR_CHG_DM | ECMR_RE | ECMR_TE),
456 			     ECMR);
457 	}
458 
459 	return ret;
460 }
461 
sh_eth_start(struct sh_eth_dev * eth)462 static void sh_eth_start(struct sh_eth_dev *eth)
463 {
464 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
465 
466 	/*
467 	 * Enable the e-dmac receiver only. The transmitter will be enabled when
468 	 * we have something to transmit
469 	 */
470 	sh_eth_write(port_info, EDRRR_R, EDRRR);
471 }
472 
sh_eth_stop(struct sh_eth_dev * eth)473 static void sh_eth_stop(struct sh_eth_dev *eth)
474 {
475 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
476 
477 	sh_eth_write(port_info, ~EDRRR_R, EDRRR);
478 }
479 
sh_eth_init_common(struct sh_eth_dev * eth,unsigned char * mac)480 static int sh_eth_init_common(struct sh_eth_dev *eth, unsigned char *mac)
481 {
482 	int ret = 0;
483 
484 	ret = sh_eth_reset(eth);
485 	if (ret)
486 		return ret;
487 
488 	ret = sh_eth_desc_init(eth);
489 	if (ret)
490 		return ret;
491 
492 	sh_eth_mac_regs_config(eth, mac);
493 
494 	return 0;
495 }
496 
sh_eth_start_common(struct sh_eth_dev * eth)497 static int sh_eth_start_common(struct sh_eth_dev *eth)
498 {
499 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
500 	int ret;
501 
502 	ret = phy_startup(port_info->phydev);
503 	if (ret) {
504 		printf(SHETHER_NAME ": phy startup failure\n");
505 		return ret;
506 	}
507 
508 	ret = sh_eth_phy_regs_config(eth);
509 	if (ret)
510 		return ret;
511 
512 	sh_eth_start(eth);
513 
514 	return 0;
515 }
516 
517 #ifndef CONFIG_DM_ETH
sh_eth_phy_config_legacy(struct sh_eth_dev * eth)518 static int sh_eth_phy_config_legacy(struct sh_eth_dev *eth)
519 {
520 	int ret = 0;
521 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
522 	struct eth_device *dev = port_info->dev;
523 	struct phy_device *phydev;
524 
525 	phydev = phy_connect(
526 			miiphy_get_dev_by_name(dev->name),
527 			port_info->phy_addr, dev, CONFIG_SH_ETHER_PHY_MODE);
528 	port_info->phydev = phydev;
529 	phy_config(phydev);
530 
531 	return ret;
532 }
533 
sh_eth_send_legacy(struct eth_device * dev,void * packet,int len)534 static int sh_eth_send_legacy(struct eth_device *dev, void *packet, int len)
535 {
536 	struct sh_eth_dev *eth = dev->priv;
537 
538 	return sh_eth_send_common(eth, packet, len);
539 }
540 
sh_eth_recv_common(struct sh_eth_dev * eth)541 static int sh_eth_recv_common(struct sh_eth_dev *eth)
542 {
543 	int len = 0;
544 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
545 	uchar *packet = (uchar *)ADDR_TO_P2(port_info->rx_desc_cur->rd2);
546 
547 	len = sh_eth_recv_start(eth);
548 	if (len > 0) {
549 		invalidate_cache(packet, len);
550 		net_process_received_packet(packet, len);
551 		sh_eth_recv_finish(eth);
552 	} else
553 		len = 0;
554 
555 	/* Restart the receiver if disabled */
556 	if (!(sh_eth_read(port_info, EDRRR) & EDRRR_R))
557 		sh_eth_write(port_info, EDRRR_R, EDRRR);
558 
559 	return len;
560 }
561 
sh_eth_recv_legacy(struct eth_device * dev)562 static int sh_eth_recv_legacy(struct eth_device *dev)
563 {
564 	struct sh_eth_dev *eth = dev->priv;
565 
566 	return sh_eth_recv_common(eth);
567 }
568 
sh_eth_init_legacy(struct eth_device * dev,bd_t * bd)569 static int sh_eth_init_legacy(struct eth_device *dev, bd_t *bd)
570 {
571 	struct sh_eth_dev *eth = dev->priv;
572 	int ret;
573 
574 	ret = sh_eth_init_common(eth, dev->enetaddr);
575 	if (ret)
576 		return ret;
577 
578 	ret = sh_eth_phy_config_legacy(eth);
579 	if (ret) {
580 		printf(SHETHER_NAME ": phy config timeout\n");
581 		goto err_start;
582 	}
583 
584 	ret = sh_eth_start_common(eth);
585 	if (ret)
586 		goto err_start;
587 
588 	return 0;
589 
590 err_start:
591 	sh_eth_tx_desc_free(eth);
592 	sh_eth_rx_desc_free(eth);
593 	return ret;
594 }
595 
sh_eth_halt_legacy(struct eth_device * dev)596 void sh_eth_halt_legacy(struct eth_device *dev)
597 {
598 	struct sh_eth_dev *eth = dev->priv;
599 
600 	sh_eth_stop(eth);
601 }
602 
sh_eth_initialize(bd_t * bd)603 int sh_eth_initialize(bd_t *bd)
604 {
605 	int ret = 0;
606 	struct sh_eth_dev *eth = NULL;
607 	struct eth_device *dev = NULL;
608 	struct mii_dev *mdiodev;
609 
610 	eth = (struct sh_eth_dev *)malloc(sizeof(struct sh_eth_dev));
611 	if (!eth) {
612 		printf(SHETHER_NAME ": %s: malloc failed\n", __func__);
613 		ret = -ENOMEM;
614 		goto err;
615 	}
616 
617 	dev = (struct eth_device *)malloc(sizeof(struct eth_device));
618 	if (!dev) {
619 		printf(SHETHER_NAME ": %s: malloc failed\n", __func__);
620 		ret = -ENOMEM;
621 		goto err;
622 	}
623 	memset(dev, 0, sizeof(struct eth_device));
624 	memset(eth, 0, sizeof(struct sh_eth_dev));
625 
626 	eth->port = CONFIG_SH_ETHER_USE_PORT;
627 	eth->port_info[eth->port].phy_addr = CONFIG_SH_ETHER_PHY_ADDR;
628 	eth->port_info[eth->port].iobase =
629 		(void __iomem *)(BASE_IO_ADDR + 0x800 * eth->port);
630 
631 	dev->priv = (void *)eth;
632 	dev->iobase = 0;
633 	dev->init = sh_eth_init_legacy;
634 	dev->halt = sh_eth_halt_legacy;
635 	dev->send = sh_eth_send_legacy;
636 	dev->recv = sh_eth_recv_legacy;
637 	eth->port_info[eth->port].dev = dev;
638 
639 	strcpy(dev->name, SHETHER_NAME);
640 
641 	/* Register Device to EtherNet subsystem  */
642 	eth_register(dev);
643 
644 	bb_miiphy_buses[0].priv = eth;
645 	mdiodev = mdio_alloc();
646 	if (!mdiodev)
647 		return -ENOMEM;
648 	strncpy(mdiodev->name, dev->name, MDIO_NAME_LEN);
649 	mdiodev->read = bb_miiphy_read;
650 	mdiodev->write = bb_miiphy_write;
651 
652 	ret = mdio_register(mdiodev);
653 	if (ret < 0)
654 		return ret;
655 
656 	if (!eth_env_get_enetaddr("ethaddr", dev->enetaddr))
657 		puts("Please set MAC address\n");
658 
659 	return ret;
660 
661 err:
662 	if (dev)
663 		free(dev);
664 
665 	if (eth)
666 		free(eth);
667 
668 	printf(SHETHER_NAME ": Failed\n");
669 	return ret;
670 }
671 
672 #else /* CONFIG_DM_ETH */
673 
674 struct sh_ether_priv {
675 	struct sh_eth_dev	shdev;
676 
677 	struct mii_dev		*bus;
678 	phys_addr_t		iobase;
679 	struct clk		clk;
680 	struct gpio_desc	reset_gpio;
681 };
682 
sh_ether_send(struct udevice * dev,void * packet,int len)683 static int sh_ether_send(struct udevice *dev, void *packet, int len)
684 {
685 	struct sh_ether_priv *priv = dev_get_priv(dev);
686 	struct sh_eth_dev *eth = &priv->shdev;
687 
688 	return sh_eth_send_common(eth, packet, len);
689 }
690 
sh_ether_recv(struct udevice * dev,int flags,uchar ** packetp)691 static int sh_ether_recv(struct udevice *dev, int flags, uchar **packetp)
692 {
693 	struct sh_ether_priv *priv = dev_get_priv(dev);
694 	struct sh_eth_dev *eth = &priv->shdev;
695 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
696 	uchar *packet = (uchar *)ADDR_TO_P2(port_info->rx_desc_cur->rd2);
697 	int len;
698 
699 	len = sh_eth_recv_start(eth);
700 	if (len > 0) {
701 		invalidate_cache(packet, len);
702 		*packetp = packet;
703 
704 		return len;
705 	} else {
706 		len = 0;
707 
708 		/* Restart the receiver if disabled */
709 		if (!(sh_eth_read(port_info, EDRRR) & EDRRR_R))
710 			sh_eth_write(port_info, EDRRR_R, EDRRR);
711 
712 		return -EAGAIN;
713 	}
714 }
715 
sh_ether_free_pkt(struct udevice * dev,uchar * packet,int length)716 static int sh_ether_free_pkt(struct udevice *dev, uchar *packet, int length)
717 {
718 	struct sh_ether_priv *priv = dev_get_priv(dev);
719 	struct sh_eth_dev *eth = &priv->shdev;
720 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
721 
722 	sh_eth_recv_finish(eth);
723 
724 	/* Restart the receiver if disabled */
725 	if (!(sh_eth_read(port_info, EDRRR) & EDRRR_R))
726 		sh_eth_write(port_info, EDRRR_R, EDRRR);
727 
728 	return 0;
729 }
730 
sh_ether_write_hwaddr(struct udevice * dev)731 static int sh_ether_write_hwaddr(struct udevice *dev)
732 {
733 	struct sh_ether_priv *priv = dev_get_priv(dev);
734 	struct sh_eth_dev *eth = &priv->shdev;
735 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
736 	struct eth_pdata *pdata = dev_get_platdata(dev);
737 
738 	sh_eth_write_hwaddr(port_info, pdata->enetaddr);
739 
740 	return 0;
741 }
742 
sh_eth_phy_config(struct udevice * dev)743 static int sh_eth_phy_config(struct udevice *dev)
744 {
745 	struct sh_ether_priv *priv = dev_get_priv(dev);
746 	struct eth_pdata *pdata = dev_get_platdata(dev);
747 	struct sh_eth_dev *eth = &priv->shdev;
748 	int ret = 0;
749 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
750 	struct phy_device *phydev;
751 	int mask = 0xffffffff;
752 
753 	phydev = phy_find_by_mask(priv->bus, mask, pdata->phy_interface);
754 	if (!phydev)
755 		return -ENODEV;
756 
757 	phy_connect_dev(phydev, dev);
758 
759 	port_info->phydev = phydev;
760 	phy_config(phydev);
761 
762 	return ret;
763 }
764 
sh_ether_start(struct udevice * dev)765 static int sh_ether_start(struct udevice *dev)
766 {
767 	struct sh_ether_priv *priv = dev_get_priv(dev);
768 	struct eth_pdata *pdata = dev_get_platdata(dev);
769 	struct sh_eth_dev *eth = &priv->shdev;
770 	int ret;
771 
772 	ret = clk_enable(&priv->clk);
773 	if (ret)
774 		return ret;
775 
776 	ret = sh_eth_init_common(eth, pdata->enetaddr);
777 	if (ret)
778 		goto err_clk;
779 
780 	ret = sh_eth_phy_config(dev);
781 	if (ret) {
782 		printf(SHETHER_NAME ": phy config timeout\n");
783 		goto err_start;
784 	}
785 
786 	ret = sh_eth_start_common(eth);
787 	if (ret)
788 		goto err_start;
789 
790 	return 0;
791 
792 err_start:
793 	sh_eth_tx_desc_free(eth);
794 	sh_eth_rx_desc_free(eth);
795 err_clk:
796 	clk_disable(&priv->clk);
797 	return ret;
798 }
799 
sh_ether_stop(struct udevice * dev)800 static void sh_ether_stop(struct udevice *dev)
801 {
802 	struct sh_ether_priv *priv = dev_get_priv(dev);
803 
804 	sh_eth_stop(&priv->shdev);
805 	clk_disable(&priv->clk);
806 }
807 
sh_ether_probe(struct udevice * udev)808 static int sh_ether_probe(struct udevice *udev)
809 {
810 	struct eth_pdata *pdata = dev_get_platdata(udev);
811 	struct sh_ether_priv *priv = dev_get_priv(udev);
812 	struct sh_eth_dev *eth = &priv->shdev;
813 	struct ofnode_phandle_args phandle_args;
814 	struct mii_dev *mdiodev;
815 	int ret;
816 
817 	priv->iobase = pdata->iobase;
818 
819 	ret = clk_get_by_index(udev, 0, &priv->clk);
820 	if (ret < 0)
821 		return ret;
822 
823 	ret = dev_read_phandle_with_args(udev, "phy-handle", NULL, 0, 0, &phandle_args);
824 	if (!ret) {
825 		gpio_request_by_name_nodev(phandle_args.node, "reset-gpios", 0,
826 					   &priv->reset_gpio, GPIOD_IS_OUT);
827 	}
828 
829 	if (!dm_gpio_is_valid(&priv->reset_gpio)) {
830 		gpio_request_by_name(udev, "reset-gpios", 0, &priv->reset_gpio,
831 				     GPIOD_IS_OUT);
832 	}
833 
834 	mdiodev = mdio_alloc();
835 	if (!mdiodev) {
836 		ret = -ENOMEM;
837 		return ret;
838 	}
839 
840 	mdiodev->read = bb_miiphy_read;
841 	mdiodev->write = bb_miiphy_write;
842 	bb_miiphy_buses[0].priv = eth;
843 	snprintf(mdiodev->name, sizeof(mdiodev->name), udev->name);
844 
845 	ret = mdio_register(mdiodev);
846 	if (ret < 0)
847 		goto err_mdio_register;
848 
849 	priv->bus = miiphy_get_dev_by_name(udev->name);
850 
851 	eth->port = CONFIG_SH_ETHER_USE_PORT;
852 	eth->port_info[eth->port].phy_addr = CONFIG_SH_ETHER_PHY_ADDR;
853 	eth->port_info[eth->port].iobase =
854 		(void __iomem *)(BASE_IO_ADDR + 0x800 * eth->port);
855 
856 	return 0;
857 
858 err_mdio_register:
859 	mdio_free(mdiodev);
860 	return ret;
861 }
862 
sh_ether_remove(struct udevice * udev)863 static 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 	return 0;
877 }
878 
879 static const struct eth_ops sh_ether_ops = {
880 	.start			= sh_ether_start,
881 	.send			= sh_ether_send,
882 	.recv			= sh_ether_recv,
883 	.free_pkt		= sh_ether_free_pkt,
884 	.stop			= sh_ether_stop,
885 	.write_hwaddr		= sh_ether_write_hwaddr,
886 };
887 
sh_ether_ofdata_to_platdata(struct udevice * dev)888 int sh_ether_ofdata_to_platdata(struct udevice *dev)
889 {
890 	struct eth_pdata *pdata = dev_get_platdata(dev);
891 	const char *phy_mode;
892 	const fdt32_t *cell;
893 	int ret = 0;
894 
895 	pdata->iobase = devfdt_get_addr(dev);
896 	pdata->phy_interface = -1;
897 	phy_mode = fdt_getprop(gd->fdt_blob, dev_of_offset(dev), "phy-mode",
898 			       NULL);
899 	if (phy_mode)
900 		pdata->phy_interface = phy_get_interface_by_name(phy_mode);
901 	if (pdata->phy_interface == -1) {
902 		debug("%s: Invalid PHY interface '%s'\n", __func__, phy_mode);
903 		return -EINVAL;
904 	}
905 
906 	pdata->max_speed = 1000;
907 	cell = fdt_getprop(gd->fdt_blob, dev_of_offset(dev), "max-speed", NULL);
908 	if (cell)
909 		pdata->max_speed = fdt32_to_cpu(*cell);
910 
911 	sprintf(bb_miiphy_buses[0].name, dev->name);
912 
913 	return ret;
914 }
915 
916 static const struct udevice_id sh_ether_ids[] = {
917 	{ .compatible = "renesas,ether-r8a7790" },
918 	{ .compatible = "renesas,ether-r8a7791" },
919 	{ .compatible = "renesas,ether-r8a7793" },
920 	{ .compatible = "renesas,ether-r8a7794" },
921 	{ }
922 };
923 
924 U_BOOT_DRIVER(eth_sh_ether) = {
925 	.name		= "sh_ether",
926 	.id		= UCLASS_ETH,
927 	.of_match	= sh_ether_ids,
928 	.ofdata_to_platdata = sh_ether_ofdata_to_platdata,
929 	.probe		= sh_ether_probe,
930 	.remove		= sh_ether_remove,
931 	.ops		= &sh_ether_ops,
932 	.priv_auto_alloc_size = sizeof(struct sh_ether_priv),
933 	.platdata_auto_alloc_size = sizeof(struct eth_pdata),
934 	.flags		= DM_FLAG_ALLOC_PRIV_DMA,
935 };
936 #endif
937 
938 /******* for bb_miiphy *******/
sh_eth_bb_init(struct bb_miiphy_bus * bus)939 static int sh_eth_bb_init(struct bb_miiphy_bus *bus)
940 {
941 	return 0;
942 }
943 
sh_eth_bb_mdio_active(struct bb_miiphy_bus * bus)944 static int sh_eth_bb_mdio_active(struct bb_miiphy_bus *bus)
945 {
946 	struct sh_eth_dev *eth = bus->priv;
947 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
948 
949 	sh_eth_write(port_info, sh_eth_read(port_info, PIR) | PIR_MMD, PIR);
950 
951 	return 0;
952 }
953 
sh_eth_bb_mdio_tristate(struct bb_miiphy_bus * bus)954 static int sh_eth_bb_mdio_tristate(struct bb_miiphy_bus *bus)
955 {
956 	struct sh_eth_dev *eth = bus->priv;
957 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
958 
959 	sh_eth_write(port_info, sh_eth_read(port_info, PIR) & ~PIR_MMD, PIR);
960 
961 	return 0;
962 }
963 
sh_eth_bb_set_mdio(struct bb_miiphy_bus * bus,int v)964 static int sh_eth_bb_set_mdio(struct bb_miiphy_bus *bus, int v)
965 {
966 	struct sh_eth_dev *eth = bus->priv;
967 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
968 
969 	if (v)
970 		sh_eth_write(port_info,
971 			     sh_eth_read(port_info, PIR) | PIR_MDO, PIR);
972 	else
973 		sh_eth_write(port_info,
974 			     sh_eth_read(port_info, PIR) & ~PIR_MDO, PIR);
975 
976 	return 0;
977 }
978 
sh_eth_bb_get_mdio(struct bb_miiphy_bus * bus,int * v)979 static int sh_eth_bb_get_mdio(struct bb_miiphy_bus *bus, int *v)
980 {
981 	struct sh_eth_dev *eth = bus->priv;
982 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
983 
984 	*v = (sh_eth_read(port_info, PIR) & PIR_MDI) >> 3;
985 
986 	return 0;
987 }
988 
sh_eth_bb_set_mdc(struct bb_miiphy_bus * bus,int v)989 static int sh_eth_bb_set_mdc(struct bb_miiphy_bus *bus, int v)
990 {
991 	struct sh_eth_dev *eth = bus->priv;
992 	struct sh_eth_info *port_info = &eth->port_info[eth->port];
993 
994 	if (v)
995 		sh_eth_write(port_info,
996 			     sh_eth_read(port_info, PIR) | PIR_MDC, PIR);
997 	else
998 		sh_eth_write(port_info,
999 			     sh_eth_read(port_info, PIR) & ~PIR_MDC, PIR);
1000 
1001 	return 0;
1002 }
1003 
sh_eth_bb_delay(struct bb_miiphy_bus * bus)1004 static int sh_eth_bb_delay(struct bb_miiphy_bus *bus)
1005 {
1006 	udelay(10);
1007 
1008 	return 0;
1009 }
1010 
1011 struct bb_miiphy_bus bb_miiphy_buses[] = {
1012 	{
1013 		.name		= "sh_eth",
1014 		.init		= sh_eth_bb_init,
1015 		.mdio_active	= sh_eth_bb_mdio_active,
1016 		.mdio_tristate	= sh_eth_bb_mdio_tristate,
1017 		.set_mdio	= sh_eth_bb_set_mdio,
1018 		.get_mdio	= sh_eth_bb_get_mdio,
1019 		.set_mdc	= sh_eth_bb_set_mdc,
1020 		.delay		= sh_eth_bb_delay,
1021 	}
1022 };
1023 
1024 int bb_miiphy_buses_num = ARRAY_SIZE(bb_miiphy_buses);
1025