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