]>
Commit | Line | Data |
---|---|---|
9751ee09 | 1 | /* |
26235093 | 2 | * sh_eth.c - Driver for Renesas ethernet controler. |
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 <[email protected]> |
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> |
9751ee09 NI |
18 | #include <asm/errno.h> |
19 | #include <asm/io.h> | |
20 | ||
21 | #include "sh_eth.h" | |
22 | ||
23 | #ifndef CONFIG_SH_ETHER_USE_PORT | |
24 | # error "Please define CONFIG_SH_ETHER_USE_PORT" | |
25 | #endif | |
26 | #ifndef CONFIG_SH_ETHER_PHY_ADDR | |
27 | # error "Please define CONFIG_SH_ETHER_PHY_ADDR" | |
28 | #endif | |
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 | 56 | int 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 = ð->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) { |
e2752db0 NI |
70 | printf(SHETHER_NAME ": %s: packet not 4 byte alligned\n" |
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 */ |
49afb8ca YS |
89 | if (!(sh_eth_read(eth, EDTRR) & EDTRR_TRNS)) |
90 | sh_eth_write(eth, 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 |
110 | err: |
111 | return ret; | |
9751ee09 NI |
112 | } |
113 | ||
bd3980cc | 114 | int 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 = ð->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 */ | |
49afb8ca YS |
150 | if (!(sh_eth_read(eth, EDRRR) & EDRRR_R)) |
151 | sh_eth_write(eth, EDRRR_R, EDRRR); | |
9751ee09 NI |
152 | |
153 | return len; | |
154 | } | |
155 | ||
bd3980cc | 156 | static int sh_eth_reset(struct sh_eth_dev *eth) |
9751ee09 | 157 | { |
62cbddc4 | 158 | #if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ) |
bd3980cc | 159 | int ret = 0, i; |
9751ee09 NI |
160 | |
161 | /* Start e-dmac transmitter and receiver */ | |
49afb8ca | 162 | sh_eth_write(eth, EDSR_ENALL, EDSR); |
9751ee09 NI |
163 | |
164 | /* Perform a software reset and wait for it to complete */ | |
49afb8ca | 165 | sh_eth_write(eth, EDMR_SRST, EDMR); |
e2752db0 | 166 | for (i = 0; i < TIMEOUT_CNT; i++) { |
49afb8ca | 167 | if (!(sh_eth_read(eth, EDMR) & EDMR_SRST)) |
9751ee09 NI |
168 | break; |
169 | udelay(1000); | |
170 | } | |
171 | ||
4ba62c72 | 172 | if (i == TIMEOUT_CNT) { |
bd3980cc NI |
173 | printf(SHETHER_NAME ": Software reset timeout\n"); |
174 | ret = -EIO; | |
9751ee09 | 175 | } |
bd3980cc NI |
176 | |
177 | return ret; | |
903de461 | 178 | #else |
49afb8ca | 179 | sh_eth_write(eth, sh_eth_read(eth, EDMR) | EDMR_SRST, EDMR); |
903de461 | 180 | udelay(3000); |
49afb8ca | 181 | sh_eth_write(eth, sh_eth_read(eth, EDMR) & ~EDMR_SRST, EDMR); |
903de461 YS |
182 | |
183 | return 0; | |
184 | #endif | |
9751ee09 NI |
185 | } |
186 | ||
bd3980cc | 187 | static int sh_eth_tx_desc_init(struct sh_eth_dev *eth) |
9751ee09 | 188 | { |
bd3980cc | 189 | int port = eth->port, i, ret = 0; |
000889cd | 190 | u32 alloc_desc_size = NUM_TX_DESC * sizeof(struct tx_desc_s); |
bd3980cc | 191 | struct sh_eth_info *port_info = ð->port_info[port]; |
9751ee09 | 192 | struct tx_desc_s *cur_tx_desc; |
9751ee09 | 193 | |
bd3980cc | 194 | /* |
703949e4 NI |
195 | * Allocate rx descriptors. They must be aligned to size of struct |
196 | * tx_desc_s. | |
bd3980cc | 197 | */ |
000889cd NI |
198 | port_info->tx_desc_alloc = |
199 | memalign(sizeof(struct tx_desc_s), alloc_desc_size); | |
200 | if (!port_info->tx_desc_alloc) { | |
201 | printf(SHETHER_NAME ": memalign failed\n"); | |
bd3980cc NI |
202 | ret = -ENOMEM; |
203 | goto err; | |
9751ee09 | 204 | } |
bd3980cc | 205 | |
000889cd NI |
206 | flush_cache_wback((u32)port_info->tx_desc_alloc, alloc_desc_size); |
207 | ||
9751ee09 | 208 | /* Make sure we use a P2 address (non-cacheable) */ |
000889cd NI |
209 | port_info->tx_desc_base = |
210 | (struct tx_desc_s *)ADDR_TO_P2((u32)port_info->tx_desc_alloc); | |
9751ee09 NI |
211 | port_info->tx_desc_cur = port_info->tx_desc_base; |
212 | ||
213 | /* Initialize all descriptors */ | |
214 | for (cur_tx_desc = port_info->tx_desc_base, i = 0; i < NUM_TX_DESC; | |
215 | cur_tx_desc++, i++) { | |
216 | cur_tx_desc->td0 = 0x00; | |
217 | cur_tx_desc->td1 = 0x00; | |
218 | cur_tx_desc->td2 = 0x00; | |
219 | } | |
220 | ||
221 | /* Mark the end of the descriptors */ | |
222 | cur_tx_desc--; | |
223 | cur_tx_desc->td0 |= TD_TDLE; | |
224 | ||
225 | /* Point the controller to the tx descriptor list. Must use physical | |
226 | addresses */ | |
49afb8ca | 227 | sh_eth_write(eth, ADDR_TO_PHY(port_info->tx_desc_base), TDLAR); |
62cbddc4 | 228 | #if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ) |
49afb8ca YS |
229 | sh_eth_write(eth, ADDR_TO_PHY(port_info->tx_desc_base), TDFAR); |
230 | sh_eth_write(eth, ADDR_TO_PHY(cur_tx_desc), TDFXR); | |
231 | sh_eth_write(eth, 0x01, TDFFR);/* Last discriptor bit */ | |
903de461 | 232 | #endif |
9751ee09 | 233 | |
bd3980cc NI |
234 | err: |
235 | return ret; | |
9751ee09 NI |
236 | } |
237 | ||
bd3980cc | 238 | static int sh_eth_rx_desc_init(struct sh_eth_dev *eth) |
9751ee09 | 239 | { |
bd3980cc | 240 | int port = eth->port, i , ret = 0; |
000889cd | 241 | u32 alloc_desc_size = NUM_RX_DESC * sizeof(struct rx_desc_s); |
bd3980cc | 242 | struct sh_eth_info *port_info = ð->port_info[port]; |
9751ee09 NI |
243 | struct rx_desc_s *cur_rx_desc; |
244 | u8 *rx_buf; | |
9751ee09 | 245 | |
bd3980cc | 246 | /* |
703949e4 NI |
247 | * Allocate rx descriptors. They must be aligned to size of struct |
248 | * rx_desc_s. | |
bd3980cc | 249 | */ |
000889cd NI |
250 | port_info->rx_desc_alloc = |
251 | memalign(sizeof(struct rx_desc_s), alloc_desc_size); | |
252 | if (!port_info->rx_desc_alloc) { | |
253 | printf(SHETHER_NAME ": memalign failed\n"); | |
bd3980cc NI |
254 | ret = -ENOMEM; |
255 | goto err; | |
9751ee09 | 256 | } |
bd3980cc | 257 | |
000889cd NI |
258 | flush_cache_wback(port_info->rx_desc_alloc, alloc_desc_size); |
259 | ||
9751ee09 | 260 | /* Make sure we use a P2 address (non-cacheable) */ |
000889cd NI |
261 | port_info->rx_desc_base = |
262 | (struct rx_desc_s *)ADDR_TO_P2((u32)port_info->rx_desc_alloc); | |
9751ee09 NI |
263 | |
264 | port_info->rx_desc_cur = port_info->rx_desc_base; | |
265 | ||
bd3980cc | 266 | /* |
000889cd NI |
267 | * Allocate rx data buffers. They must be RX_BUF_ALIGNE_SIZE bytes |
268 | * aligned and in P2 area. | |
bd3980cc | 269 | */ |
000889cd NI |
270 | port_info->rx_buf_alloc = |
271 | memalign(RX_BUF_ALIGNE_SIZE, NUM_RX_DESC * MAX_BUF_SIZE); | |
272 | if (!port_info->rx_buf_alloc) { | |
273 | printf(SHETHER_NAME ": alloc failed\n"); | |
bd3980cc | 274 | ret = -ENOMEM; |
000889cd | 275 | goto err_buf_alloc; |
9751ee09 | 276 | } |
bd3980cc | 277 | |
000889cd | 278 | port_info->rx_buf_base = (u8 *)ADDR_TO_P2((u32)port_info->rx_buf_alloc); |
9751ee09 NI |
279 | |
280 | /* Initialize all descriptors */ | |
281 | for (cur_rx_desc = port_info->rx_desc_base, | |
282 | rx_buf = port_info->rx_buf_base, i = 0; | |
283 | i < NUM_RX_DESC; cur_rx_desc++, rx_buf += MAX_BUF_SIZE, i++) { | |
284 | cur_rx_desc->rd0 = RD_RACT; | |
285 | cur_rx_desc->rd1 = MAX_BUF_SIZE << 16; | |
286 | cur_rx_desc->rd2 = (u32) ADDR_TO_PHY(rx_buf); | |
287 | } | |
288 | ||
289 | /* Mark the end of the descriptors */ | |
290 | cur_rx_desc--; | |
291 | cur_rx_desc->rd0 |= RD_RDLE; | |
292 | ||
293 | /* Point the controller to the rx descriptor list */ | |
49afb8ca | 294 | sh_eth_write(eth, ADDR_TO_PHY(port_info->rx_desc_base), RDLAR); |
62cbddc4 | 295 | #if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ) |
49afb8ca YS |
296 | sh_eth_write(eth, ADDR_TO_PHY(port_info->rx_desc_base), RDFAR); |
297 | sh_eth_write(eth, ADDR_TO_PHY(cur_rx_desc), RDFXR); | |
298 | sh_eth_write(eth, RDFFR_RDLF, RDFFR); | |
903de461 | 299 | #endif |
9751ee09 | 300 | |
bd3980cc NI |
301 | return ret; |
302 | ||
000889cd NI |
303 | err_buf_alloc: |
304 | free(port_info->rx_desc_alloc); | |
305 | port_info->rx_desc_alloc = NULL; | |
bd3980cc NI |
306 | |
307 | err: | |
308 | return ret; | |
9751ee09 NI |
309 | } |
310 | ||
bd3980cc | 311 | static void sh_eth_tx_desc_free(struct sh_eth_dev *eth) |
9751ee09 | 312 | { |
bd3980cc NI |
313 | int port = eth->port; |
314 | struct sh_eth_info *port_info = ð->port_info[port]; | |
9751ee09 | 315 | |
000889cd NI |
316 | if (port_info->tx_desc_alloc) { |
317 | free(port_info->tx_desc_alloc); | |
318 | port_info->tx_desc_alloc = NULL; | |
9751ee09 | 319 | } |
bd3980cc NI |
320 | } |
321 | ||
322 | static void sh_eth_rx_desc_free(struct sh_eth_dev *eth) | |
323 | { | |
324 | int port = eth->port; | |
325 | struct sh_eth_info *port_info = ð->port_info[port]; | |
9751ee09 | 326 | |
000889cd NI |
327 | if (port_info->rx_desc_alloc) { |
328 | free(port_info->rx_desc_alloc); | |
329 | port_info->rx_desc_alloc = NULL; | |
9751ee09 NI |
330 | } |
331 | ||
000889cd NI |
332 | if (port_info->rx_buf_alloc) { |
333 | free(port_info->rx_buf_alloc); | |
334 | port_info->rx_buf_alloc = NULL; | |
9751ee09 NI |
335 | } |
336 | } | |
337 | ||
bd3980cc | 338 | static int sh_eth_desc_init(struct sh_eth_dev *eth) |
9751ee09 | 339 | { |
bd3980cc | 340 | int ret = 0; |
9751ee09 | 341 | |
bd3980cc NI |
342 | ret = sh_eth_tx_desc_init(eth); |
343 | if (ret) | |
344 | goto err_tx_init; | |
9751ee09 | 345 | |
bd3980cc NI |
346 | ret = sh_eth_rx_desc_init(eth); |
347 | if (ret) | |
348 | goto err_rx_init; | |
349 | ||
350 | return ret; | |
351 | err_rx_init: | |
352 | sh_eth_tx_desc_free(eth); | |
353 | ||
354 | err_tx_init: | |
355 | return ret; | |
9751ee09 NI |
356 | } |
357 | ||
bd3980cc | 358 | static int sh_eth_phy_config(struct sh_eth_dev *eth) |
9751ee09 | 359 | { |
bd1024b0 | 360 | int port = eth->port, ret = 0; |
bd3980cc | 361 | struct sh_eth_info *port_info = ð->port_info[port]; |
bd1024b0 YS |
362 | struct eth_device *dev = port_info->dev; |
363 | struct phy_device *phydev; | |
9751ee09 | 364 | |
ee6ec5d4 NI |
365 | phydev = phy_connect( |
366 | miiphy_get_dev_by_name(dev->name), | |
4398d559 | 367 | port_info->phy_addr, dev, CONFIG_SH_ETHER_PHY_MODE); |
bd1024b0 YS |
368 | port_info->phydev = phydev; |
369 | phy_config(phydev); | |
bd3980cc | 370 | |
bd3980cc | 371 | return ret; |
9751ee09 NI |
372 | } |
373 | ||
bd3980cc | 374 | static int sh_eth_config(struct sh_eth_dev *eth, bd_t *bd) |
9751ee09 | 375 | { |
bd3980cc | 376 | int port = eth->port, ret = 0; |
bd1024b0 | 377 | u32 val; |
bd3980cc | 378 | struct sh_eth_info *port_info = ð->port_info[port]; |
c527ce92 | 379 | struct eth_device *dev = port_info->dev; |
bd1024b0 | 380 | struct phy_device *phy; |
9751ee09 NI |
381 | |
382 | /* Configure e-dmac registers */ | |
f8b7507d NI |
383 | sh_eth_write(eth, (sh_eth_read(eth, EDMR) & ~EMDR_DESC_R) | |
384 | (EMDR_DESC | EDMR_EL), EDMR); | |
385 | ||
49afb8ca YS |
386 | sh_eth_write(eth, 0, EESIPR); |
387 | sh_eth_write(eth, 0, TRSCER); | |
388 | sh_eth_write(eth, 0, TFTR); | |
389 | sh_eth_write(eth, (FIFO_SIZE_T | FIFO_SIZE_R), FDR); | |
390 | sh_eth_write(eth, RMCR_RST, RMCR); | |
62cbddc4 | 391 | #if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ) |
49afb8ca | 392 | sh_eth_write(eth, 0, RPADIR); |
903de461 | 393 | #endif |
49afb8ca | 394 | sh_eth_write(eth, (FIFO_F_D_RFF | FIFO_F_D_RFD), FCFTR); |
9751ee09 NI |
395 | |
396 | /* Configure e-mac registers */ | |
49afb8ca | 397 | sh_eth_write(eth, 0, ECSIPR); |
9751ee09 NI |
398 | |
399 | /* Set Mac address */ | |
c527ce92 MF |
400 | val = dev->enetaddr[0] << 24 | dev->enetaddr[1] << 16 | |
401 | dev->enetaddr[2] << 8 | dev->enetaddr[3]; | |
49afb8ca | 402 | sh_eth_write(eth, val, MAHR); |
9751ee09 | 403 | |
c527ce92 | 404 | val = dev->enetaddr[4] << 8 | dev->enetaddr[5]; |
49afb8ca | 405 | sh_eth_write(eth, val, MALR); |
9751ee09 | 406 | |
49afb8ca | 407 | sh_eth_write(eth, RFLR_RFL_MIN, RFLR); |
26235093 | 408 | #if defined(SH_ETH_TYPE_GETHER) |
49afb8ca | 409 | sh_eth_write(eth, 0, PIPR); |
62cbddc4 NI |
410 | #endif |
411 | #if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ) | |
49afb8ca YS |
412 | sh_eth_write(eth, APR_AP, APR); |
413 | sh_eth_write(eth, MPR_MP, MPR); | |
414 | sh_eth_write(eth, TPAUSER_TPAUSE, TPAUSER); | |
903de461 | 415 | #endif |
3bb4cc31 | 416 | |
dcd5a593 | 417 | #if defined(CONFIG_CPU_SH7734) || defined(CONFIG_R8A7740) |
49afb8ca | 418 | sh_eth_write(eth, CONFIG_SH_ETHER_SH7734_MII, RMII_MII); |
17243747 | 419 | #elif defined(CONFIG_R8A7790) || defined(CONFIG_R8A7791) || \ |
a341b7e0 | 420 | defined(CONFIG_R8A7793) || defined(CONFIG_R8A7794) |
8707678c | 421 | sh_eth_write(eth, sh_eth_read(eth, RMIIMR) | 0x1, RMIIMR); |
4398d559 | 422 | #endif |
9751ee09 | 423 | /* Configure phy */ |
bd3980cc NI |
424 | ret = sh_eth_phy_config(eth); |
425 | if (ret) { | |
88a4c2e7 | 426 | printf(SHETHER_NAME ": phy config timeout\n"); |
bd3980cc NI |
427 | goto err_phy_cfg; |
428 | } | |
bd1024b0 | 429 | phy = port_info->phydev; |
11af8d65 TT |
430 | ret = phy_startup(phy); |
431 | if (ret) { | |
432 | printf(SHETHER_NAME ": phy startup failure\n"); | |
433 | return ret; | |
434 | } | |
9751ee09 | 435 | |
3bb4cc31 NI |
436 | val = 0; |
437 | ||
9751ee09 | 438 | /* Set the transfer speed */ |
bd1024b0 | 439 | if (phy->speed == 100) { |
bd3980cc | 440 | printf(SHETHER_NAME ": 100Base/"); |
26235093 | 441 | #if defined(SH_ETH_TYPE_GETHER) |
49afb8ca | 442 | sh_eth_write(eth, GECMR_100B, GECMR); |
e3bb3254 | 443 | #elif defined(CONFIG_CPU_SH7757) || defined(CONFIG_CPU_SH7752) |
49afb8ca | 444 | sh_eth_write(eth, 1, RTRATE); |
47ce8890 | 445 | #elif defined(CONFIG_CPU_SH7724) || defined(CONFIG_R8A7790) || \ |
a341b7e0 NI |
446 | defined(CONFIG_R8A7791) || defined(CONFIG_R8A7793) || \ |
447 | defined(CONFIG_R8A7794) | |
3bb4cc31 NI |
448 | val = ECMR_RTM; |
449 | #endif | |
bd1024b0 | 450 | } else if (phy->speed == 10) { |
bd3980cc | 451 | printf(SHETHER_NAME ": 10Base/"); |
26235093 | 452 | #if defined(SH_ETH_TYPE_GETHER) |
49afb8ca | 453 | sh_eth_write(eth, GECMR_10B, GECMR); |
e3bb3254 | 454 | #elif defined(CONFIG_CPU_SH7757) || defined(CONFIG_CPU_SH7752) |
49afb8ca | 455 | sh_eth_write(eth, 0, RTRATE); |
903de461 | 456 | #endif |
3bb4cc31 | 457 | } |
26235093 | 458 | #if defined(SH_ETH_TYPE_GETHER) |
4398d559 NI |
459 | else if (phy->speed == 1000) { |
460 | printf(SHETHER_NAME ": 1000Base/"); | |
49afb8ca | 461 | sh_eth_write(eth, GECMR_1000B, GECMR); |
4398d559 NI |
462 | } |
463 | #endif | |
9751ee09 NI |
464 | |
465 | /* Check if full duplex mode is supported by the phy */ | |
bd1024b0 | 466 | if (phy->duplex) { |
9751ee09 | 467 | printf("Full\n"); |
49afb8ca YS |
468 | sh_eth_write(eth, val | (ECMR_CHG_DM|ECMR_RE|ECMR_TE|ECMR_DM), |
469 | ECMR); | |
9751ee09 NI |
470 | } else { |
471 | printf("Half\n"); | |
49afb8ca | 472 | sh_eth_write(eth, val | (ECMR_CHG_DM|ECMR_RE|ECMR_TE), ECMR); |
9751ee09 | 473 | } |
bd3980cc NI |
474 | |
475 | return ret; | |
476 | ||
477 | err_phy_cfg: | |
478 | return ret; | |
9751ee09 NI |
479 | } |
480 | ||
bd3980cc | 481 | static void sh_eth_start(struct sh_eth_dev *eth) |
9751ee09 NI |
482 | { |
483 | /* | |
484 | * Enable the e-dmac receiver only. The transmitter will be enabled when | |
485 | * we have something to transmit | |
486 | */ | |
49afb8ca | 487 | sh_eth_write(eth, EDRRR_R, EDRRR); |
bd3980cc | 488 | } |
9751ee09 | 489 | |
bd3980cc NI |
490 | static void sh_eth_stop(struct sh_eth_dev *eth) |
491 | { | |
49afb8ca | 492 | sh_eth_write(eth, ~EDRRR_R, EDRRR); |
9751ee09 NI |
493 | } |
494 | ||
bd3980cc | 495 | int sh_eth_init(struct eth_device *dev, bd_t *bd) |
9751ee09 | 496 | { |
bd3980cc NI |
497 | int ret = 0; |
498 | struct sh_eth_dev *eth = dev->priv; | |
9751ee09 | 499 | |
bd3980cc NI |
500 | ret = sh_eth_reset(eth); |
501 | if (ret) | |
502 | goto err; | |
9751ee09 | 503 | |
bd3980cc NI |
504 | ret = sh_eth_desc_init(eth); |
505 | if (ret) | |
506 | goto err; | |
9751ee09 | 507 | |
bd3980cc NI |
508 | ret = sh_eth_config(eth, bd); |
509 | if (ret) | |
510 | goto err_config; | |
511 | ||
512 | sh_eth_start(eth); | |
513 | ||
514 | return ret; | |
9751ee09 | 515 | |
bd3980cc NI |
516 | err_config: |
517 | sh_eth_tx_desc_free(eth); | |
518 | sh_eth_rx_desc_free(eth); | |
519 | ||
520 | err: | |
521 | return ret; | |
522 | } | |
523 | ||
524 | void sh_eth_halt(struct eth_device *dev) | |
525 | { | |
526 | struct sh_eth_dev *eth = dev->priv; | |
bd3980cc NI |
527 | sh_eth_stop(eth); |
528 | } | |
529 | ||
530 | int sh_eth_initialize(bd_t *bd) | |
531 | { | |
e2752db0 | 532 | int ret = 0; |
bd3980cc | 533 | struct sh_eth_dev *eth = NULL; |
e2752db0 | 534 | struct eth_device *dev = NULL; |
bd3980cc | 535 | |
e2752db0 | 536 | eth = (struct sh_eth_dev *)malloc(sizeof(struct sh_eth_dev)); |
bd3980cc NI |
537 | if (!eth) { |
538 | printf(SHETHER_NAME ": %s: malloc failed\n", __func__); | |
539 | ret = -ENOMEM; | |
9751ee09 | 540 | goto err; |
bd3980cc | 541 | } |
9751ee09 | 542 | |
e2752db0 | 543 | dev = (struct eth_device *)malloc(sizeof(struct eth_device)); |
bd3980cc NI |
544 | if (!dev) { |
545 | printf(SHETHER_NAME ": %s: malloc failed\n", __func__); | |
546 | ret = -ENOMEM; | |
547 | goto err; | |
548 | } | |
e2752db0 NI |
549 | memset(dev, 0, sizeof(struct eth_device)); |
550 | memset(eth, 0, sizeof(struct sh_eth_dev)); | |
9751ee09 | 551 | |
bd3980cc NI |
552 | eth->port = CONFIG_SH_ETHER_USE_PORT; |
553 | eth->port_info[eth->port].phy_addr = CONFIG_SH_ETHER_PHY_ADDR; | |
554 | ||
e2752db0 NI |
555 | dev->priv = (void *)eth; |
556 | dev->iobase = 0; | |
557 | dev->init = sh_eth_init; | |
558 | dev->halt = sh_eth_halt; | |
559 | dev->send = sh_eth_send; | |
560 | dev->recv = sh_eth_recv; | |
561 | eth->port_info[eth->port].dev = dev; | |
bd3980cc NI |
562 | |
563 | sprintf(dev->name, SHETHER_NAME); | |
564 | ||
e2752db0 NI |
565 | /* Register Device to EtherNet subsystem */ |
566 | eth_register(dev); | |
bd3980cc | 567 | |
bd1024b0 YS |
568 | bb_miiphy_buses[0].priv = eth; |
569 | miiphy_register(dev->name, bb_miiphy_read, bb_miiphy_write); | |
570 | ||
c527ce92 MF |
571 | if (!eth_getenv_enetaddr("ethaddr", dev->enetaddr)) |
572 | puts("Please set MAC address\n"); | |
bd3980cc NI |
573 | |
574 | return ret; | |
9751ee09 | 575 | |
9751ee09 | 576 | err: |
bd3980cc NI |
577 | if (dev) |
578 | free(dev); | |
579 | ||
580 | if (eth) | |
581 | free(eth); | |
582 | ||
583 | printf(SHETHER_NAME ": Failed\n"); | |
584 | return ret; | |
9751ee09 | 585 | } |
bd1024b0 YS |
586 | |
587 | /******* for bb_miiphy *******/ | |
588 | static int sh_eth_bb_init(struct bb_miiphy_bus *bus) | |
589 | { | |
590 | return 0; | |
591 | } | |
592 | ||
593 | static int sh_eth_bb_mdio_active(struct bb_miiphy_bus *bus) | |
594 | { | |
595 | struct sh_eth_dev *eth = bus->priv; | |
bd1024b0 | 596 | |
49afb8ca | 597 | sh_eth_write(eth, sh_eth_read(eth, PIR) | PIR_MMD, PIR); |
bd1024b0 YS |
598 | |
599 | return 0; | |
600 | } | |
601 | ||
602 | static int sh_eth_bb_mdio_tristate(struct bb_miiphy_bus *bus) | |
603 | { | |
604 | struct sh_eth_dev *eth = bus->priv; | |
bd1024b0 | 605 | |
49afb8ca | 606 | sh_eth_write(eth, sh_eth_read(eth, PIR) & ~PIR_MMD, PIR); |
bd1024b0 YS |
607 | |
608 | return 0; | |
609 | } | |
610 | ||
611 | static int sh_eth_bb_set_mdio(struct bb_miiphy_bus *bus, int v) | |
612 | { | |
613 | struct sh_eth_dev *eth = bus->priv; | |
bd1024b0 YS |
614 | |
615 | if (v) | |
49afb8ca | 616 | sh_eth_write(eth, sh_eth_read(eth, PIR) | PIR_MDO, PIR); |
bd1024b0 | 617 | else |
49afb8ca | 618 | sh_eth_write(eth, sh_eth_read(eth, PIR) & ~PIR_MDO, PIR); |
bd1024b0 YS |
619 | |
620 | return 0; | |
621 | } | |
622 | ||
623 | static int sh_eth_bb_get_mdio(struct bb_miiphy_bus *bus, int *v) | |
624 | { | |
625 | struct sh_eth_dev *eth = bus->priv; | |
bd1024b0 | 626 | |
49afb8ca | 627 | *v = (sh_eth_read(eth, PIR) & PIR_MDI) >> 3; |
bd1024b0 YS |
628 | |
629 | return 0; | |
630 | } | |
631 | ||
632 | static int sh_eth_bb_set_mdc(struct bb_miiphy_bus *bus, int v) | |
633 | { | |
634 | struct sh_eth_dev *eth = bus->priv; | |
bd1024b0 YS |
635 | |
636 | if (v) | |
49afb8ca | 637 | sh_eth_write(eth, sh_eth_read(eth, PIR) | PIR_MDC, PIR); |
bd1024b0 | 638 | else |
49afb8ca | 639 | sh_eth_write(eth, sh_eth_read(eth, PIR) & ~PIR_MDC, PIR); |
bd1024b0 YS |
640 | |
641 | return 0; | |
642 | } | |
643 | ||
644 | static int sh_eth_bb_delay(struct bb_miiphy_bus *bus) | |
645 | { | |
646 | udelay(10); | |
647 | ||
648 | return 0; | |
649 | } | |
650 | ||
651 | struct bb_miiphy_bus bb_miiphy_buses[] = { | |
652 | { | |
653 | .name = "sh_eth", | |
654 | .init = sh_eth_bb_init, | |
655 | .mdio_active = sh_eth_bb_mdio_active, | |
656 | .mdio_tristate = sh_eth_bb_mdio_tristate, | |
657 | .set_mdio = sh_eth_bb_set_mdio, | |
658 | .get_mdio = sh_eth_bb_get_mdio, | |
659 | .set_mdc = sh_eth_bb_set_mdc, | |
660 | .delay = sh_eth_bb_delay, | |
661 | } | |
662 | }; | |
663 | int bb_miiphy_buses_num = ARRAY_SIZE(bb_miiphy_buses); |