blob: 99d8ce8379c8b8eb2fe1282a7f6d0f30b5478178 [file] [log] [blame]
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001/*
2 * SuperH Ethernet device driver
3 *
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +09004 * Copyright (C) 2006-2008 Nobuhiro Iwamatsu
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00005 * Copyright (C) 2008-2009 Renesas Solutions Corp.
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07006 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2, as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * The full GNU General Public License is included in this distribution in
20 * the file called "COPYING".
21 */
22
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -070023#include <linux/init.h>
Yoshihiro Shimoda06540112011-09-29 17:16:57 +000024#include <linux/module.h>
25#include <linux/kernel.h>
26#include <linux/spinlock.h>
David S. Miller823dcd22011-08-20 10:39:12 -070027#include <linux/interrupt.h>
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -070028#include <linux/dma-mapping.h>
29#include <linux/etherdevice.h>
30#include <linux/delay.h>
31#include <linux/platform_device.h>
32#include <linux/mdio-bitbang.h>
33#include <linux/netdevice.h>
34#include <linux/phy.h>
35#include <linux/cache.h>
36#include <linux/io.h>
Magnus Dammbcd51492009-10-09 00:20:04 +000037#include <linux/pm_runtime.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +000039#include <linux/ethtool.h>
Yoshihiro Shimodafdb37a72012-02-06 23:55:15 +000040#include <linux/if_vlan.h>
Yoshihiro Shimodad4fa0e32011-09-27 21:49:12 +000041#include <linux/sh_eth.h>
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -070042
43#include "sh_eth.h"
44
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +000045#define SH_ETH_DEF_MSG_ENABLE \
46 (NETIF_MSG_LINK | \
47 NETIF_MSG_TIMER | \
48 NETIF_MSG_RX_ERR| \
49 NETIF_MSG_TX_ERR)
50
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +000051/* There is CPU dependent code */
Yoshihiro Shimoda65ac8852009-05-24 23:54:30 +000052#if defined(CONFIG_CPU_SUBTYPE_SH7724)
53#define SH_ETH_RESET_DEFAULT 1
54static void sh_eth_set_duplex(struct net_device *ndev)
55{
56 struct sh_eth_private *mdp = netdev_priv(ndev);
Yoshihiro Shimoda65ac8852009-05-24 23:54:30 +000057
58 if (mdp->duplex) /* Full */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +000059 sh_eth_write(ndev, sh_eth_read(ndev, ECMR) | ECMR_DM, ECMR);
Yoshihiro Shimoda65ac8852009-05-24 23:54:30 +000060 else /* Half */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +000061 sh_eth_write(ndev, sh_eth_read(ndev, ECMR) & ~ECMR_DM, ECMR);
Yoshihiro Shimoda65ac8852009-05-24 23:54:30 +000062}
63
64static void sh_eth_set_rate(struct net_device *ndev)
65{
66 struct sh_eth_private *mdp = netdev_priv(ndev);
Yoshihiro Shimoda65ac8852009-05-24 23:54:30 +000067
68 switch (mdp->speed) {
69 case 10: /* 10BASE */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +000070 sh_eth_write(ndev, sh_eth_read(ndev, ECMR) & ~ECMR_RTM, ECMR);
Yoshihiro Shimoda65ac8852009-05-24 23:54:30 +000071 break;
72 case 100:/* 100BASE */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +000073 sh_eth_write(ndev, sh_eth_read(ndev, ECMR) | ECMR_RTM, ECMR);
Yoshihiro Shimoda65ac8852009-05-24 23:54:30 +000074 break;
75 default:
76 break;
77 }
78}
79
80/* SH7724 */
81static struct sh_eth_cpu_data sh_eth_my_cpu_data = {
82 .set_duplex = sh_eth_set_duplex,
83 .set_rate = sh_eth_set_rate,
84
85 .ecsr_value = ECSR_PSRTO | ECSR_LCHNG | ECSR_ICD,
86 .ecsipr_value = ECSIPR_PSRTOIP | ECSIPR_LCHNGIP | ECSIPR_ICDIP,
87 .eesipr_value = DMAC_M_RFRMER | DMAC_M_ECI | 0x01ff009f,
88
89 .tx_check = EESR_FTC | EESR_CND | EESR_DLC | EESR_CD | EESR_RTO,
90 .eesr_err_check = EESR_TWB | EESR_TABT | EESR_RABT | EESR_RDE |
91 EESR_RFRMER | EESR_TFE | EESR_TDE | EESR_ECI,
92 .tx_error_check = EESR_TWB | EESR_TABT | EESR_TDE | EESR_TFE,
93
94 .apr = 1,
95 .mpr = 1,
96 .tpauser = 1,
97 .hw_swap = 1,
Magnus Damm503914c2009-12-15 21:16:55 -080098 .rpadir = 1,
99 .rpadir_value = 0x00020000, /* NET_IP_ALIGN assumed to be 2 */
Yoshihiro Shimoda65ac8852009-05-24 23:54:30 +0000100};
Yoshihiro Shimodaf29a3d02010-07-05 18:32:50 +0000101#elif defined(CONFIG_CPU_SUBTYPE_SH7757)
Yoshihiro Shimoda8fcd4962011-03-07 21:59:49 +0000102#define SH_ETH_HAS_BOTH_MODULES 1
103#define SH_ETH_HAS_TSU 1
Yoshihiro Shimodaf29a3d02010-07-05 18:32:50 +0000104static void sh_eth_set_duplex(struct net_device *ndev)
105{
106 struct sh_eth_private *mdp = netdev_priv(ndev);
Yoshihiro Shimodaf29a3d02010-07-05 18:32:50 +0000107
108 if (mdp->duplex) /* Full */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000109 sh_eth_write(ndev, sh_eth_read(ndev, ECMR) | ECMR_DM, ECMR);
Yoshihiro Shimodaf29a3d02010-07-05 18:32:50 +0000110 else /* Half */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000111 sh_eth_write(ndev, sh_eth_read(ndev, ECMR) & ~ECMR_DM, ECMR);
Yoshihiro Shimodaf29a3d02010-07-05 18:32:50 +0000112}
113
114static void sh_eth_set_rate(struct net_device *ndev)
115{
116 struct sh_eth_private *mdp = netdev_priv(ndev);
Yoshihiro Shimodaf29a3d02010-07-05 18:32:50 +0000117
118 switch (mdp->speed) {
119 case 10: /* 10BASE */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000120 sh_eth_write(ndev, 0, RTRATE);
Yoshihiro Shimodaf29a3d02010-07-05 18:32:50 +0000121 break;
122 case 100:/* 100BASE */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000123 sh_eth_write(ndev, 1, RTRATE);
Yoshihiro Shimodaf29a3d02010-07-05 18:32:50 +0000124 break;
125 default:
126 break;
127 }
128}
129
130/* SH7757 */
131static struct sh_eth_cpu_data sh_eth_my_cpu_data = {
132 .set_duplex = sh_eth_set_duplex,
133 .set_rate = sh_eth_set_rate,
134
135 .eesipr_value = DMAC_M_RFRMER | DMAC_M_ECI | 0x003fffff,
136 .rmcr_value = 0x00000001,
137
138 .tx_check = EESR_FTC | EESR_CND | EESR_DLC | EESR_CD | EESR_RTO,
139 .eesr_err_check = EESR_TWB | EESR_TABT | EESR_RABT | EESR_RDE |
140 EESR_RFRMER | EESR_TFE | EESR_TDE | EESR_ECI,
141 .tx_error_check = EESR_TWB | EESR_TABT | EESR_TDE | EESR_TFE,
142
143 .apr = 1,
144 .mpr = 1,
145 .tpauser = 1,
146 .hw_swap = 1,
147 .no_ade = 1,
Yoshihiro Shimoda2e98e792011-07-05 20:33:57 +0000148 .rpadir = 1,
149 .rpadir_value = 2 << 16,
Yoshihiro Shimodaf29a3d02010-07-05 18:32:50 +0000150};
Yoshihiro Shimoda65ac8852009-05-24 23:54:30 +0000151
Yoshihiro Shimoda8fcd4962011-03-07 21:59:49 +0000152#define SH_GIGA_ETH_BASE 0xfee00000
153#define GIGA_MALR(port) (SH_GIGA_ETH_BASE + 0x800 * (port) + 0x05c8)
154#define GIGA_MAHR(port) (SH_GIGA_ETH_BASE + 0x800 * (port) + 0x05c0)
155static void sh_eth_chip_reset_giga(struct net_device *ndev)
156{
157 int i;
158 unsigned long mahr[2], malr[2];
159
160 /* save MAHR and MALR */
161 for (i = 0; i < 2; i++) {
Yoshihiro Shimodaae706442011-09-27 21:48:58 +0000162 malr[i] = ioread32((void *)GIGA_MALR(i));
163 mahr[i] = ioread32((void *)GIGA_MAHR(i));
Yoshihiro Shimoda8fcd4962011-03-07 21:59:49 +0000164 }
165
166 /* reset device */
Yoshihiro Shimodaae706442011-09-27 21:48:58 +0000167 iowrite32(ARSTR_ARSTR, (void *)(SH_GIGA_ETH_BASE + 0x1800));
Yoshihiro Shimoda8fcd4962011-03-07 21:59:49 +0000168 mdelay(1);
169
170 /* restore MAHR and MALR */
171 for (i = 0; i < 2; i++) {
Yoshihiro Shimodaae706442011-09-27 21:48:58 +0000172 iowrite32(malr[i], (void *)GIGA_MALR(i));
173 iowrite32(mahr[i], (void *)GIGA_MAHR(i));
Yoshihiro Shimoda8fcd4962011-03-07 21:59:49 +0000174 }
175}
176
177static int sh_eth_is_gether(struct sh_eth_private *mdp);
178static void sh_eth_reset(struct net_device *ndev)
179{
180 struct sh_eth_private *mdp = netdev_priv(ndev);
181 int cnt = 100;
182
183 if (sh_eth_is_gether(mdp)) {
184 sh_eth_write(ndev, 0x03, EDSR);
185 sh_eth_write(ndev, sh_eth_read(ndev, EDMR) | EDMR_SRST_GETHER,
186 EDMR);
187 while (cnt > 0) {
188 if (!(sh_eth_read(ndev, EDMR) & 0x3))
189 break;
190 mdelay(1);
191 cnt--;
192 }
193 if (cnt < 0)
194 printk(KERN_ERR "Device reset fail\n");
195
196 /* Table Init */
197 sh_eth_write(ndev, 0x0, TDLAR);
198 sh_eth_write(ndev, 0x0, TDFAR);
199 sh_eth_write(ndev, 0x0, TDFXR);
200 sh_eth_write(ndev, 0x0, TDFFR);
201 sh_eth_write(ndev, 0x0, RDLAR);
202 sh_eth_write(ndev, 0x0, RDFAR);
203 sh_eth_write(ndev, 0x0, RDFXR);
204 sh_eth_write(ndev, 0x0, RDFFR);
205 } else {
206 sh_eth_write(ndev, sh_eth_read(ndev, EDMR) | EDMR_SRST_ETHER,
207 EDMR);
208 mdelay(3);
209 sh_eth_write(ndev, sh_eth_read(ndev, EDMR) & ~EDMR_SRST_ETHER,
210 EDMR);
211 }
212}
213
214static void sh_eth_set_duplex_giga(struct net_device *ndev)
215{
216 struct sh_eth_private *mdp = netdev_priv(ndev);
217
218 if (mdp->duplex) /* Full */
219 sh_eth_write(ndev, sh_eth_read(ndev, ECMR) | ECMR_DM, ECMR);
220 else /* Half */
221 sh_eth_write(ndev, sh_eth_read(ndev, ECMR) & ~ECMR_DM, ECMR);
222}
223
224static void sh_eth_set_rate_giga(struct net_device *ndev)
225{
226 struct sh_eth_private *mdp = netdev_priv(ndev);
227
228 switch (mdp->speed) {
229 case 10: /* 10BASE */
230 sh_eth_write(ndev, 0x00000000, GECMR);
231 break;
232 case 100:/* 100BASE */
233 sh_eth_write(ndev, 0x00000010, GECMR);
234 break;
235 case 1000: /* 1000BASE */
236 sh_eth_write(ndev, 0x00000020, GECMR);
237 break;
238 default:
239 break;
240 }
241}
242
243/* SH7757(GETHERC) */
244static struct sh_eth_cpu_data sh_eth_my_cpu_data_giga = {
245 .chip_reset = sh_eth_chip_reset_giga,
246 .set_duplex = sh_eth_set_duplex_giga,
247 .set_rate = sh_eth_set_rate_giga,
248
249 .ecsr_value = ECSR_ICD | ECSR_MPD,
250 .ecsipr_value = ECSIPR_LCHNGIP | ECSIPR_ICDIP | ECSIPR_MPDIP,
251 .eesipr_value = DMAC_M_RFRMER | DMAC_M_ECI | 0x003fffff,
252
253 .tx_check = EESR_TC1 | EESR_FTC,
254 .eesr_err_check = EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_RABT | \
255 EESR_RDE | EESR_RFRMER | EESR_TFE | EESR_TDE | \
256 EESR_ECI,
257 .tx_error_check = EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_TDE | \
258 EESR_TFE,
259 .fdr_value = 0x0000072f,
260 .rmcr_value = 0x00000001,
261
262 .apr = 1,
263 .mpr = 1,
264 .tpauser = 1,
265 .bculr = 1,
266 .hw_swap = 1,
267 .rpadir = 1,
268 .rpadir_value = 2 << 16,
269 .no_trimd = 1,
270 .no_ade = 1,
Yoshihiro Shimoda3acbc972012-02-15 17:54:51 +0000271 .tsu = 1,
Yoshihiro Shimoda8fcd4962011-03-07 21:59:49 +0000272};
273
274static struct sh_eth_cpu_data *sh_eth_get_cpu_data(struct sh_eth_private *mdp)
275{
276 if (sh_eth_is_gether(mdp))
277 return &sh_eth_my_cpu_data_giga;
278 else
279 return &sh_eth_my_cpu_data;
280}
281
Yoshihiro Shimoda65ac8852009-05-24 23:54:30 +0000282#elif defined(CONFIG_CPU_SUBTYPE_SH7763)
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000283#define SH_ETH_HAS_TSU 1
284static void sh_eth_chip_reset(struct net_device *ndev)
285{
Yoshihiro Shimoda4986b992011-03-07 21:59:34 +0000286 struct sh_eth_private *mdp = netdev_priv(ndev);
287
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000288 /* reset device */
Yoshihiro Shimoda4986b992011-03-07 21:59:34 +0000289 sh_eth_tsu_write(mdp, ARSTR_ARSTR, ARSTR);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000290 mdelay(1);
291}
292
293static void sh_eth_reset(struct net_device *ndev)
294{
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000295 int cnt = 100;
296
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000297 sh_eth_write(ndev, EDSR_ENALL, EDSR);
Yoshihiro Shimodac5ed5362011-03-07 21:59:38 +0000298 sh_eth_write(ndev, sh_eth_read(ndev, EDMR) | EDMR_SRST_GETHER, EDMR);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000299 while (cnt > 0) {
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000300 if (!(sh_eth_read(ndev, EDMR) & 0x3))
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000301 break;
302 mdelay(1);
303 cnt--;
304 }
roel kluin890c8c12009-12-30 01:43:45 +0000305 if (cnt == 0)
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000306 printk(KERN_ERR "Device reset fail\n");
307
308 /* Table Init */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000309 sh_eth_write(ndev, 0x0, TDLAR);
310 sh_eth_write(ndev, 0x0, TDFAR);
311 sh_eth_write(ndev, 0x0, TDFXR);
312 sh_eth_write(ndev, 0x0, TDFFR);
313 sh_eth_write(ndev, 0x0, RDLAR);
314 sh_eth_write(ndev, 0x0, RDFAR);
315 sh_eth_write(ndev, 0x0, RDFXR);
316 sh_eth_write(ndev, 0x0, RDFFR);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000317}
318
319static void sh_eth_set_duplex(struct net_device *ndev)
320{
321 struct sh_eth_private *mdp = netdev_priv(ndev);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000322
323 if (mdp->duplex) /* Full */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000324 sh_eth_write(ndev, sh_eth_read(ndev, ECMR) | ECMR_DM, ECMR);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000325 else /* Half */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000326 sh_eth_write(ndev, sh_eth_read(ndev, ECMR) & ~ECMR_DM, ECMR);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000327}
328
329static void sh_eth_set_rate(struct net_device *ndev)
330{
331 struct sh_eth_private *mdp = netdev_priv(ndev);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000332
333 switch (mdp->speed) {
334 case 10: /* 10BASE */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000335 sh_eth_write(ndev, GECMR_10, GECMR);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000336 break;
337 case 100:/* 100BASE */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000338 sh_eth_write(ndev, GECMR_100, GECMR);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000339 break;
340 case 1000: /* 1000BASE */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000341 sh_eth_write(ndev, GECMR_1000, GECMR);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000342 break;
343 default:
344 break;
345 }
346}
347
348/* sh7763 */
349static struct sh_eth_cpu_data sh_eth_my_cpu_data = {
350 .chip_reset = sh_eth_chip_reset,
351 .set_duplex = sh_eth_set_duplex,
352 .set_rate = sh_eth_set_rate,
353
354 .ecsr_value = ECSR_ICD | ECSR_MPD,
355 .ecsipr_value = ECSIPR_LCHNGIP | ECSIPR_ICDIP | ECSIPR_MPDIP,
356 .eesipr_value = DMAC_M_RFRMER | DMAC_M_ECI | 0x003fffff,
357
358 .tx_check = EESR_TC1 | EESR_FTC,
359 .eesr_err_check = EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_RABT | \
360 EESR_RDE | EESR_RFRMER | EESR_TFE | EESR_TDE | \
361 EESR_ECI,
362 .tx_error_check = EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_TDE | \
363 EESR_TFE,
364
365 .apr = 1,
366 .mpr = 1,
367 .tpauser = 1,
368 .bculr = 1,
369 .hw_swap = 1,
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000370 .no_trimd = 1,
371 .no_ade = 1,
Yoshihiro Shimoda4986b992011-03-07 21:59:34 +0000372 .tsu = 1,
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000373};
374
375#elif defined(CONFIG_CPU_SUBTYPE_SH7619)
376#define SH_ETH_RESET_DEFAULT 1
377static struct sh_eth_cpu_data sh_eth_my_cpu_data = {
378 .eesipr_value = DMAC_M_RFRMER | DMAC_M_ECI | 0x003fffff,
379
380 .apr = 1,
381 .mpr = 1,
382 .tpauser = 1,
383 .hw_swap = 1,
384};
385#elif defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712)
386#define SH_ETH_RESET_DEFAULT 1
387#define SH_ETH_HAS_TSU 1
388static struct sh_eth_cpu_data sh_eth_my_cpu_data = {
389 .eesipr_value = DMAC_M_RFRMER | DMAC_M_ECI | 0x003fffff,
Yoshihiro Shimoda4986b992011-03-07 21:59:34 +0000390 .tsu = 1,
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000391};
392#endif
393
394static void sh_eth_set_default_cpu_data(struct sh_eth_cpu_data *cd)
395{
396 if (!cd->ecsr_value)
397 cd->ecsr_value = DEFAULT_ECSR_INIT;
398
399 if (!cd->ecsipr_value)
400 cd->ecsipr_value = DEFAULT_ECSIPR_INIT;
401
402 if (!cd->fcftr_value)
403 cd->fcftr_value = DEFAULT_FIFO_F_D_RFF | \
404 DEFAULT_FIFO_F_D_RFD;
405
406 if (!cd->fdr_value)
407 cd->fdr_value = DEFAULT_FDR_INIT;
408
409 if (!cd->rmcr_value)
410 cd->rmcr_value = DEFAULT_RMCR_VALUE;
411
412 if (!cd->tx_check)
413 cd->tx_check = DEFAULT_TX_CHECK;
414
415 if (!cd->eesr_err_check)
416 cd->eesr_err_check = DEFAULT_EESR_ERR_CHECK;
417
418 if (!cd->tx_error_check)
419 cd->tx_error_check = DEFAULT_TX_ERROR_CHECK;
420}
421
422#if defined(SH_ETH_RESET_DEFAULT)
423/* Chip Reset */
424static void sh_eth_reset(struct net_device *ndev)
425{
Yoshihiro Shimodac5ed5362011-03-07 21:59:38 +0000426 sh_eth_write(ndev, sh_eth_read(ndev, EDMR) | EDMR_SRST_ETHER, EDMR);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000427 mdelay(3);
Yoshihiro Shimodac5ed5362011-03-07 21:59:38 +0000428 sh_eth_write(ndev, sh_eth_read(ndev, EDMR) & ~EDMR_SRST_ETHER, EDMR);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000429}
430#endif
431
432#if defined(CONFIG_CPU_SH4)
433static void sh_eth_set_receive_align(struct sk_buff *skb)
434{
435 int reserve;
436
437 reserve = SH4_SKB_RX_ALIGN - ((u32)skb->data & (SH4_SKB_RX_ALIGN - 1));
438 if (reserve)
439 skb_reserve(skb, reserve);
440}
441#else
442static void sh_eth_set_receive_align(struct sk_buff *skb)
443{
444 skb_reserve(skb, SH2_SH3_SKB_RX_ALIGN);
445}
446#endif
447
448
Yoshinori Sato71557a32008-08-06 19:49:00 -0400449/* CPU <-> EDMAC endian convert */
450static inline __u32 cpu_to_edmac(struct sh_eth_private *mdp, u32 x)
451{
452 switch (mdp->edmac_endian) {
453 case EDMAC_LITTLE_ENDIAN:
454 return cpu_to_le32(x);
455 case EDMAC_BIG_ENDIAN:
456 return cpu_to_be32(x);
457 }
458 return x;
459}
460
461static inline __u32 edmac_to_cpu(struct sh_eth_private *mdp, u32 x)
462{
463 switch (mdp->edmac_endian) {
464 case EDMAC_LITTLE_ENDIAN:
465 return le32_to_cpu(x);
466 case EDMAC_BIG_ENDIAN:
467 return be32_to_cpu(x);
468 }
469 return x;
470}
471
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700472/*
473 * Program the hardware MAC address from dev->dev_addr.
474 */
475static void update_mac_address(struct net_device *ndev)
476{
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000477 sh_eth_write(ndev,
478 (ndev->dev_addr[0] << 24) | (ndev->dev_addr[1] << 16) |
479 (ndev->dev_addr[2] << 8) | (ndev->dev_addr[3]), MAHR);
480 sh_eth_write(ndev,
481 (ndev->dev_addr[4] << 8) | (ndev->dev_addr[5]), MALR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700482}
483
484/*
485 * Get MAC address from SuperH MAC address register
486 *
487 * SuperH's Ethernet device doesn't have 'ROM' to MAC address.
488 * This driver get MAC address that use by bootloader(U-boot or sh-ipl+g).
489 * When you want use this device, you must set MAC address in bootloader.
490 *
491 */
Magnus Damm748031f2009-10-09 00:17:14 +0000492static void read_mac_address(struct net_device *ndev, unsigned char *mac)
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700493{
Magnus Damm748031f2009-10-09 00:17:14 +0000494 if (mac[0] || mac[1] || mac[2] || mac[3] || mac[4] || mac[5]) {
495 memcpy(ndev->dev_addr, mac, 6);
496 } else {
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000497 ndev->dev_addr[0] = (sh_eth_read(ndev, MAHR) >> 24);
498 ndev->dev_addr[1] = (sh_eth_read(ndev, MAHR) >> 16) & 0xFF;
499 ndev->dev_addr[2] = (sh_eth_read(ndev, MAHR) >> 8) & 0xFF;
500 ndev->dev_addr[3] = (sh_eth_read(ndev, MAHR) & 0xFF);
501 ndev->dev_addr[4] = (sh_eth_read(ndev, MALR) >> 8) & 0xFF;
502 ndev->dev_addr[5] = (sh_eth_read(ndev, MALR) & 0xFF);
Magnus Damm748031f2009-10-09 00:17:14 +0000503 }
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700504}
505
Yoshihiro Shimodac5ed5362011-03-07 21:59:38 +0000506static int sh_eth_is_gether(struct sh_eth_private *mdp)
507{
508 if (mdp->reg_offset == sh_eth_offset_gigabit)
509 return 1;
510 else
511 return 0;
512}
513
514static unsigned long sh_eth_get_edtrr_trns(struct sh_eth_private *mdp)
515{
516 if (sh_eth_is_gether(mdp))
517 return EDTRR_TRNS_GETHER;
518 else
519 return EDTRR_TRNS_ETHER;
520}
521
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700522struct bb_info {
Yoshihiro Shimodaae706442011-09-27 21:48:58 +0000523 void (*set_gate)(void *addr);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700524 struct mdiobb_ctrl ctrl;
Yoshihiro Shimodaae706442011-09-27 21:48:58 +0000525 void *addr;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700526 u32 mmd_msk;/* MMD */
527 u32 mdo_msk;
528 u32 mdi_msk;
529 u32 mdc_msk;
530};
531
532/* PHY bit set */
Yoshihiro Shimodaae706442011-09-27 21:48:58 +0000533static void bb_set(void *addr, u32 msk)
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700534{
Yoshihiro Shimodaae706442011-09-27 21:48:58 +0000535 iowrite32(ioread32(addr) | msk, addr);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700536}
537
538/* PHY bit clear */
Yoshihiro Shimodaae706442011-09-27 21:48:58 +0000539static void bb_clr(void *addr, u32 msk)
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700540{
Yoshihiro Shimodaae706442011-09-27 21:48:58 +0000541 iowrite32((ioread32(addr) & ~msk), addr);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700542}
543
544/* PHY bit read */
Yoshihiro Shimodaae706442011-09-27 21:48:58 +0000545static int bb_read(void *addr, u32 msk)
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700546{
Yoshihiro Shimodaae706442011-09-27 21:48:58 +0000547 return (ioread32(addr) & msk) != 0;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700548}
549
550/* Data I/O pin control */
551static void sh_mmd_ctrl(struct mdiobb_ctrl *ctrl, int bit)
552{
553 struct bb_info *bitbang = container_of(ctrl, struct bb_info, ctrl);
Yoshihiro Shimodab3017e62011-03-07 21:59:55 +0000554
555 if (bitbang->set_gate)
556 bitbang->set_gate(bitbang->addr);
557
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700558 if (bit)
559 bb_set(bitbang->addr, bitbang->mmd_msk);
560 else
561 bb_clr(bitbang->addr, bitbang->mmd_msk);
562}
563
564/* Set bit data*/
565static void sh_set_mdio(struct mdiobb_ctrl *ctrl, int bit)
566{
567 struct bb_info *bitbang = container_of(ctrl, struct bb_info, ctrl);
568
Yoshihiro Shimodab3017e62011-03-07 21:59:55 +0000569 if (bitbang->set_gate)
570 bitbang->set_gate(bitbang->addr);
571
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700572 if (bit)
573 bb_set(bitbang->addr, bitbang->mdo_msk);
574 else
575 bb_clr(bitbang->addr, bitbang->mdo_msk);
576}
577
578/* Get bit data*/
579static int sh_get_mdio(struct mdiobb_ctrl *ctrl)
580{
581 struct bb_info *bitbang = container_of(ctrl, struct bb_info, ctrl);
Yoshihiro Shimodab3017e62011-03-07 21:59:55 +0000582
583 if (bitbang->set_gate)
584 bitbang->set_gate(bitbang->addr);
585
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700586 return bb_read(bitbang->addr, bitbang->mdi_msk);
587}
588
589/* MDC pin control */
590static void sh_mdc_ctrl(struct mdiobb_ctrl *ctrl, int bit)
591{
592 struct bb_info *bitbang = container_of(ctrl, struct bb_info, ctrl);
593
Yoshihiro Shimodab3017e62011-03-07 21:59:55 +0000594 if (bitbang->set_gate)
595 bitbang->set_gate(bitbang->addr);
596
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700597 if (bit)
598 bb_set(bitbang->addr, bitbang->mdc_msk);
599 else
600 bb_clr(bitbang->addr, bitbang->mdc_msk);
601}
602
603/* mdio bus control struct */
604static struct mdiobb_ops bb_ops = {
605 .owner = THIS_MODULE,
606 .set_mdc = sh_mdc_ctrl,
607 .set_mdio_dir = sh_mmd_ctrl,
608 .set_mdio_data = sh_set_mdio,
609 .get_mdio_data = sh_get_mdio,
610};
611
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700612/* free skb and descriptor buffer */
613static void sh_eth_ring_free(struct net_device *ndev)
614{
615 struct sh_eth_private *mdp = netdev_priv(ndev);
616 int i;
617
618 /* Free Rx skb ringbuffer */
619 if (mdp->rx_skbuff) {
620 for (i = 0; i < RX_RING_SIZE; i++) {
621 if (mdp->rx_skbuff[i])
622 dev_kfree_skb(mdp->rx_skbuff[i]);
623 }
624 }
625 kfree(mdp->rx_skbuff);
626
627 /* Free Tx skb ringbuffer */
628 if (mdp->tx_skbuff) {
629 for (i = 0; i < TX_RING_SIZE; i++) {
630 if (mdp->tx_skbuff[i])
631 dev_kfree_skb(mdp->tx_skbuff[i]);
632 }
633 }
634 kfree(mdp->tx_skbuff);
635}
636
637/* format skb and descriptor buffer */
638static void sh_eth_ring_format(struct net_device *ndev)
639{
640 struct sh_eth_private *mdp = netdev_priv(ndev);
641 int i;
642 struct sk_buff *skb;
643 struct sh_eth_rxdesc *rxdesc = NULL;
644 struct sh_eth_txdesc *txdesc = NULL;
645 int rx_ringsize = sizeof(*rxdesc) * RX_RING_SIZE;
646 int tx_ringsize = sizeof(*txdesc) * TX_RING_SIZE;
647
648 mdp->cur_rx = mdp->cur_tx = 0;
649 mdp->dirty_rx = mdp->dirty_tx = 0;
650
651 memset(mdp->rx_ring, 0, rx_ringsize);
652
653 /* build Rx ring buffer */
654 for (i = 0; i < RX_RING_SIZE; i++) {
655 /* skb */
656 mdp->rx_skbuff[i] = NULL;
Pradeep A. Dalvidae2e9f2012-02-06 11:16:13 +0000657 skb = netdev_alloc_skb(ndev, mdp->rx_buf_sz);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700658 mdp->rx_skbuff[i] = skb;
659 if (skb == NULL)
660 break;
Eric Dumazetbb7d92e2012-02-06 22:17:21 +0000661 dma_map_single(&ndev->dev, skb->data, mdp->rx_buf_sz,
Yoshihiro Shimodae88aae72009-05-24 23:52:35 +0000662 DMA_FROM_DEVICE);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000663 sh_eth_set_receive_align(skb);
664
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700665 /* RX descriptor */
666 rxdesc = &mdp->rx_ring[i];
Yoshihiro Shimoda0029d642009-05-24 23:53:20 +0000667 rxdesc->addr = virt_to_phys(PTR_ALIGN(skb->data, 4));
Yoshinori Sato71557a32008-08-06 19:49:00 -0400668 rxdesc->status = cpu_to_edmac(mdp, RD_RACT | RD_RFP);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700669
670 /* The size of the buffer is 16 byte boundary. */
Yoshihiro Shimoda0029d642009-05-24 23:53:20 +0000671 rxdesc->buffer_length = ALIGN(mdp->rx_buf_sz, 16);
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900672 /* Rx descriptor address set */
673 if (i == 0) {
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000674 sh_eth_write(ndev, mdp->rx_desc_dma, RDLAR);
Yoshihiro Shimodac5ed5362011-03-07 21:59:38 +0000675 if (sh_eth_is_gether(mdp))
676 sh_eth_write(ndev, mdp->rx_desc_dma, RDFAR);
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900677 }
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700678 }
679
680 mdp->dirty_rx = (u32) (i - RX_RING_SIZE);
681
682 /* Mark the last entry as wrapping the ring. */
Yoshinori Sato71557a32008-08-06 19:49:00 -0400683 rxdesc->status |= cpu_to_edmac(mdp, RD_RDEL);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700684
685 memset(mdp->tx_ring, 0, tx_ringsize);
686
687 /* build Tx ring buffer */
688 for (i = 0; i < TX_RING_SIZE; i++) {
689 mdp->tx_skbuff[i] = NULL;
690 txdesc = &mdp->tx_ring[i];
Yoshinori Sato71557a32008-08-06 19:49:00 -0400691 txdesc->status = cpu_to_edmac(mdp, TD_TFP);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700692 txdesc->buffer_length = 0;
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900693 if (i == 0) {
Yoshinori Sato71557a32008-08-06 19:49:00 -0400694 /* Tx descriptor address set */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000695 sh_eth_write(ndev, mdp->tx_desc_dma, TDLAR);
Yoshihiro Shimodac5ed5362011-03-07 21:59:38 +0000696 if (sh_eth_is_gether(mdp))
697 sh_eth_write(ndev, mdp->tx_desc_dma, TDFAR);
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900698 }
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700699 }
700
Yoshinori Sato71557a32008-08-06 19:49:00 -0400701 txdesc->status |= cpu_to_edmac(mdp, TD_TDLE);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700702}
703
704/* Get skb and descriptor buffer */
705static int sh_eth_ring_init(struct net_device *ndev)
706{
707 struct sh_eth_private *mdp = netdev_priv(ndev);
708 int rx_ringsize, tx_ringsize, ret = 0;
709
710 /*
711 * +26 gets the maximum ethernet encapsulation, +7 & ~7 because the
712 * card needs room to do 8 byte alignment, +2 so we can reserve
713 * the first 2 bytes, and +16 gets room for the status word from the
714 * card.
715 */
716 mdp->rx_buf_sz = (ndev->mtu <= 1492 ? PKT_BUF_SZ :
717 (((ndev->mtu + 26 + 7) & ~7) + 2 + 16));
Magnus Damm503914c2009-12-15 21:16:55 -0800718 if (mdp->cd->rpadir)
719 mdp->rx_buf_sz += NET_IP_ALIGN;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700720
721 /* Allocate RX and TX skb rings */
722 mdp->rx_skbuff = kmalloc(sizeof(*mdp->rx_skbuff) * RX_RING_SIZE,
723 GFP_KERNEL);
724 if (!mdp->rx_skbuff) {
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000725 dev_err(&ndev->dev, "Cannot allocate Rx skb\n");
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700726 ret = -ENOMEM;
727 return ret;
728 }
729
730 mdp->tx_skbuff = kmalloc(sizeof(*mdp->tx_skbuff) * TX_RING_SIZE,
731 GFP_KERNEL);
732 if (!mdp->tx_skbuff) {
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000733 dev_err(&ndev->dev, "Cannot allocate Tx skb\n");
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700734 ret = -ENOMEM;
735 goto skb_ring_free;
736 }
737
738 /* Allocate all Rx descriptors. */
739 rx_ringsize = sizeof(struct sh_eth_rxdesc) * RX_RING_SIZE;
740 mdp->rx_ring = dma_alloc_coherent(NULL, rx_ringsize, &mdp->rx_desc_dma,
741 GFP_KERNEL);
742
743 if (!mdp->rx_ring) {
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000744 dev_err(&ndev->dev, "Cannot allocate Rx Ring (size %d bytes)\n",
745 rx_ringsize);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700746 ret = -ENOMEM;
747 goto desc_ring_free;
748 }
749
750 mdp->dirty_rx = 0;
751
752 /* Allocate all Tx descriptors. */
753 tx_ringsize = sizeof(struct sh_eth_txdesc) * TX_RING_SIZE;
754 mdp->tx_ring = dma_alloc_coherent(NULL, tx_ringsize, &mdp->tx_desc_dma,
755 GFP_KERNEL);
756 if (!mdp->tx_ring) {
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000757 dev_err(&ndev->dev, "Cannot allocate Tx Ring (size %d bytes)\n",
758 tx_ringsize);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700759 ret = -ENOMEM;
760 goto desc_ring_free;
761 }
762 return ret;
763
764desc_ring_free:
765 /* free DMA buffer */
766 dma_free_coherent(NULL, rx_ringsize, mdp->rx_ring, mdp->rx_desc_dma);
767
768skb_ring_free:
769 /* Free Rx and Tx skb ring buffer */
770 sh_eth_ring_free(ndev);
771
772 return ret;
773}
774
775static int sh_eth_dev_init(struct net_device *ndev)
776{
777 int ret = 0;
778 struct sh_eth_private *mdp = netdev_priv(ndev);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700779 u_int32_t rx_int_var, tx_int_var;
780 u32 val;
781
782 /* Soft Reset */
783 sh_eth_reset(ndev);
784
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900785 /* Descriptor format */
786 sh_eth_ring_format(ndev);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000787 if (mdp->cd->rpadir)
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000788 sh_eth_write(ndev, mdp->cd->rpadir_value, RPADIR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700789
790 /* all sh_eth int mask */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000791 sh_eth_write(ndev, 0, EESIPR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700792
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000793#if defined(__LITTLE_ENDIAN__)
794 if (mdp->cd->hw_swap)
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000795 sh_eth_write(ndev, EDMR_EL, EDMR);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000796 else
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900797#endif
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000798 sh_eth_write(ndev, 0, EDMR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700799
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900800 /* FIFO size set */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000801 sh_eth_write(ndev, mdp->cd->fdr_value, FDR);
802 sh_eth_write(ndev, 0, TFTR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700803
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900804 /* Frame recv control */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000805 sh_eth_write(ndev, mdp->cd->rmcr_value, RMCR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700806
807 rx_int_var = mdp->rx_int_var = DESC_I_RINT8 | DESC_I_RINT5;
808 tx_int_var = mdp->tx_int_var = DESC_I_TINT2;
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000809 sh_eth_write(ndev, rx_int_var | tx_int_var, TRSCER);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700810
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000811 if (mdp->cd->bculr)
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000812 sh_eth_write(ndev, 0x800, BCULR); /* Burst sycle set */
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900813
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000814 sh_eth_write(ndev, mdp->cd->fcftr_value, FCFTR);
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900815
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000816 if (!mdp->cd->no_trimd)
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000817 sh_eth_write(ndev, 0, TRIMD);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700818
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900819 /* Recv frame limit set register */
Yoshihiro Shimodafdb37a72012-02-06 23:55:15 +0000820 sh_eth_write(ndev, ndev->mtu + ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN,
821 RFLR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700822
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000823 sh_eth_write(ndev, sh_eth_read(ndev, EESR), EESR);
824 sh_eth_write(ndev, mdp->cd->eesipr_value, EESIPR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700825
826 /* PAUSE Prohibition */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000827 val = (sh_eth_read(ndev, ECMR) & ECMR_DM) |
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700828 ECMR_ZPF | (mdp->duplex ? ECMR_DM : 0) | ECMR_TE | ECMR_RE;
829
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000830 sh_eth_write(ndev, val, ECMR);
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900831
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000832 if (mdp->cd->set_rate)
833 mdp->cd->set_rate(ndev);
834
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900835 /* E-MAC Status Register clear */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000836 sh_eth_write(ndev, mdp->cd->ecsr_value, ECSR);
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900837
838 /* E-MAC Interrupt Enable register */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000839 sh_eth_write(ndev, mdp->cd->ecsipr_value, ECSIPR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700840
841 /* Set MAC address */
842 update_mac_address(ndev);
843
844 /* mask reset */
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000845 if (mdp->cd->apr)
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000846 sh_eth_write(ndev, APR_AP, APR);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000847 if (mdp->cd->mpr)
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000848 sh_eth_write(ndev, MPR_MP, MPR);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000849 if (mdp->cd->tpauser)
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000850 sh_eth_write(ndev, TPAUSER_UNLIMITED, TPAUSER);
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900851
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700852 /* Setting the Rx mode will start the Rx process. */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000853 sh_eth_write(ndev, EDRRR_R, EDRRR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700854
855 netif_start_queue(ndev);
856
857 return ret;
858}
859
860/* free Tx skb function */
861static int sh_eth_txfree(struct net_device *ndev)
862{
863 struct sh_eth_private *mdp = netdev_priv(ndev);
864 struct sh_eth_txdesc *txdesc;
865 int freeNum = 0;
866 int entry = 0;
867
868 for (; mdp->cur_tx - mdp->dirty_tx > 0; mdp->dirty_tx++) {
869 entry = mdp->dirty_tx % TX_RING_SIZE;
870 txdesc = &mdp->tx_ring[entry];
Yoshinori Sato71557a32008-08-06 19:49:00 -0400871 if (txdesc->status & cpu_to_edmac(mdp, TD_TACT))
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700872 break;
873 /* Free the original skb. */
874 if (mdp->tx_skbuff[entry]) {
Yoshihiro Shimoda31fcb992011-06-30 22:52:13 +0000875 dma_unmap_single(&ndev->dev, txdesc->addr,
876 txdesc->buffer_length, DMA_TO_DEVICE);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700877 dev_kfree_skb_irq(mdp->tx_skbuff[entry]);
878 mdp->tx_skbuff[entry] = NULL;
879 freeNum++;
880 }
Yoshinori Sato71557a32008-08-06 19:49:00 -0400881 txdesc->status = cpu_to_edmac(mdp, TD_TFP);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700882 if (entry >= TX_RING_SIZE - 1)
Yoshinori Sato71557a32008-08-06 19:49:00 -0400883 txdesc->status |= cpu_to_edmac(mdp, TD_TDLE);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700884
Eric Dumazetbb7d92e2012-02-06 22:17:21 +0000885 ndev->stats.tx_packets++;
886 ndev->stats.tx_bytes += txdesc->buffer_length;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700887 }
888 return freeNum;
889}
890
891/* Packet receive function */
892static int sh_eth_rx(struct net_device *ndev)
893{
894 struct sh_eth_private *mdp = netdev_priv(ndev);
895 struct sh_eth_rxdesc *rxdesc;
896
897 int entry = mdp->cur_rx % RX_RING_SIZE;
898 int boguscnt = (mdp->dirty_rx + RX_RING_SIZE) - mdp->cur_rx;
899 struct sk_buff *skb;
900 u16 pkt_len = 0;
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000901 u32 desc_status;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700902
903 rxdesc = &mdp->rx_ring[entry];
Yoshinori Sato71557a32008-08-06 19:49:00 -0400904 while (!(rxdesc->status & cpu_to_edmac(mdp, RD_RACT))) {
905 desc_status = edmac_to_cpu(mdp, rxdesc->status);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700906 pkt_len = rxdesc->frame_length;
907
908 if (--boguscnt < 0)
909 break;
910
911 if (!(desc_status & RDFEND))
Eric Dumazetbb7d92e2012-02-06 22:17:21 +0000912 ndev->stats.rx_length_errors++;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700913
914 if (desc_status & (RD_RFS1 | RD_RFS2 | RD_RFS3 | RD_RFS4 |
915 RD_RFS5 | RD_RFS6 | RD_RFS10)) {
Eric Dumazetbb7d92e2012-02-06 22:17:21 +0000916 ndev->stats.rx_errors++;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700917 if (desc_status & RD_RFS1)
Eric Dumazetbb7d92e2012-02-06 22:17:21 +0000918 ndev->stats.rx_crc_errors++;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700919 if (desc_status & RD_RFS2)
Eric Dumazetbb7d92e2012-02-06 22:17:21 +0000920 ndev->stats.rx_frame_errors++;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700921 if (desc_status & RD_RFS3)
Eric Dumazetbb7d92e2012-02-06 22:17:21 +0000922 ndev->stats.rx_length_errors++;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700923 if (desc_status & RD_RFS4)
Eric Dumazetbb7d92e2012-02-06 22:17:21 +0000924 ndev->stats.rx_length_errors++;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700925 if (desc_status & RD_RFS6)
Eric Dumazetbb7d92e2012-02-06 22:17:21 +0000926 ndev->stats.rx_missed_errors++;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700927 if (desc_status & RD_RFS10)
Eric Dumazetbb7d92e2012-02-06 22:17:21 +0000928 ndev->stats.rx_over_errors++;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700929 } else {
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000930 if (!mdp->cd->hw_swap)
931 sh_eth_soft_swap(
932 phys_to_virt(ALIGN(rxdesc->addr, 4)),
933 pkt_len + 2);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700934 skb = mdp->rx_skbuff[entry];
935 mdp->rx_skbuff[entry] = NULL;
Magnus Damm503914c2009-12-15 21:16:55 -0800936 if (mdp->cd->rpadir)
937 skb_reserve(skb, NET_IP_ALIGN);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700938 skb_put(skb, pkt_len);
939 skb->protocol = eth_type_trans(skb, ndev);
940 netif_rx(skb);
Eric Dumazetbb7d92e2012-02-06 22:17:21 +0000941 ndev->stats.rx_packets++;
942 ndev->stats.rx_bytes += pkt_len;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700943 }
Yoshinori Sato71557a32008-08-06 19:49:00 -0400944 rxdesc->status |= cpu_to_edmac(mdp, RD_RACT);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700945 entry = (++mdp->cur_rx) % RX_RING_SIZE;
Yoshihiro Shimoda862df492009-05-24 23:53:40 +0000946 rxdesc = &mdp->rx_ring[entry];
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700947 }
948
949 /* Refill the Rx ring buffers. */
950 for (; mdp->cur_rx - mdp->dirty_rx > 0; mdp->dirty_rx++) {
951 entry = mdp->dirty_rx % RX_RING_SIZE;
952 rxdesc = &mdp->rx_ring[entry];
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900953 /* The size of the buffer is 16 byte boundary. */
Yoshihiro Shimoda0029d642009-05-24 23:53:20 +0000954 rxdesc->buffer_length = ALIGN(mdp->rx_buf_sz, 16);
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +0900955
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700956 if (mdp->rx_skbuff[entry] == NULL) {
Pradeep A. Dalvidae2e9f2012-02-06 11:16:13 +0000957 skb = netdev_alloc_skb(ndev, mdp->rx_buf_sz);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700958 mdp->rx_skbuff[entry] = skb;
959 if (skb == NULL)
960 break; /* Better luck next round. */
Eric Dumazetbb7d92e2012-02-06 22:17:21 +0000961 dma_map_single(&ndev->dev, skb->data, mdp->rx_buf_sz,
Yoshihiro Shimodae88aae72009-05-24 23:52:35 +0000962 DMA_FROM_DEVICE);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +0000963 sh_eth_set_receive_align(skb);
964
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700965 skb_checksum_none_assert(skb);
Yoshihiro Shimoda0029d642009-05-24 23:53:20 +0000966 rxdesc->addr = virt_to_phys(PTR_ALIGN(skb->data, 4));
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700967 }
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700968 if (entry >= RX_RING_SIZE - 1)
969 rxdesc->status |=
Yoshinori Sato71557a32008-08-06 19:49:00 -0400970 cpu_to_edmac(mdp, RD_RACT | RD_RFP | RD_RDEL);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700971 else
972 rxdesc->status |=
Yoshinori Sato71557a32008-08-06 19:49:00 -0400973 cpu_to_edmac(mdp, RD_RACT | RD_RFP);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700974 }
975
976 /* Restart Rx engine if stopped. */
977 /* If we don't need to check status, don't. -KDU */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000978 if (!(sh_eth_read(ndev, EDRRR) & EDRRR_R))
979 sh_eth_write(ndev, EDRRR_R, EDRRR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700980
981 return 0;
982}
983
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000984static void sh_eth_rcv_snd_disable(struct net_device *ndev)
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +0000985{
986 /* disable tx and rx */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000987 sh_eth_write(ndev, sh_eth_read(ndev, ECMR) &
988 ~(ECMR_RE | ECMR_TE), ECMR);
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +0000989}
990
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000991static void sh_eth_rcv_snd_enable(struct net_device *ndev)
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +0000992{
993 /* enable tx and rx */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +0000994 sh_eth_write(ndev, sh_eth_read(ndev, ECMR) |
995 (ECMR_RE | ECMR_TE), ECMR);
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +0000996}
997
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -0700998/* error control function */
999static void sh_eth_error(struct net_device *ndev, int intr_status)
1000{
1001 struct sh_eth_private *mdp = netdev_priv(ndev);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001002 u32 felic_stat;
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001003 u32 link_stat;
1004 u32 mask;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001005
1006 if (intr_status & EESR_ECI) {
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001007 felic_stat = sh_eth_read(ndev, ECSR);
1008 sh_eth_write(ndev, felic_stat, ECSR); /* clear int */
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001009 if (felic_stat & ECSR_ICD)
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001010 ndev->stats.tx_carrier_errors++;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001011 if (felic_stat & ECSR_LCHNG) {
1012 /* Link Changed */
Yoshihiro Shimoda49235762009-08-27 23:25:03 +00001013 if (mdp->cd->no_psr || mdp->no_ether_link) {
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001014 if (mdp->link == PHY_DOWN)
1015 link_stat = 0;
1016 else
1017 link_stat = PHY_ST_LINK;
1018 } else {
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001019 link_stat = (sh_eth_read(ndev, PSR));
Yoshihiro Shimoda49235762009-08-27 23:25:03 +00001020 if (mdp->ether_link_active_low)
1021 link_stat = ~link_stat;
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001022 }
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001023 if (!(link_stat & PHY_ST_LINK))
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001024 sh_eth_rcv_snd_disable(ndev);
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001025 else {
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001026 /* Link Up */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001027 sh_eth_write(ndev, sh_eth_read(ndev, EESIPR) &
1028 ~DMAC_M_ECI, EESIPR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001029 /*clear int */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001030 sh_eth_write(ndev, sh_eth_read(ndev, ECSR),
1031 ECSR);
1032 sh_eth_write(ndev, sh_eth_read(ndev, EESIPR) |
1033 DMAC_M_ECI, EESIPR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001034 /* enable tx and rx */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001035 sh_eth_rcv_snd_enable(ndev);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001036 }
1037 }
1038 }
1039
1040 if (intr_status & EESR_TWB) {
1041 /* Write buck end. unused write back interrupt */
1042 if (intr_status & EESR_TABT) /* Transmit Abort int */
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001043 ndev->stats.tx_aborted_errors++;
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001044 if (netif_msg_tx_err(mdp))
1045 dev_err(&ndev->dev, "Transmit Abort\n");
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001046 }
1047
1048 if (intr_status & EESR_RABT) {
1049 /* Receive Abort int */
1050 if (intr_status & EESR_RFRMER) {
1051 /* Receive Frame Overflow int */
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001052 ndev->stats.rx_frame_errors++;
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001053 if (netif_msg_rx_err(mdp))
1054 dev_err(&ndev->dev, "Receive Abort\n");
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001055 }
1056 }
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001057
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001058 if (intr_status & EESR_TDE) {
1059 /* Transmit Descriptor Empty int */
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001060 ndev->stats.tx_fifo_errors++;
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001061 if (netif_msg_tx_err(mdp))
1062 dev_err(&ndev->dev, "Transmit Descriptor Empty\n");
1063 }
1064
1065 if (intr_status & EESR_TFE) {
1066 /* FIFO under flow */
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001067 ndev->stats.tx_fifo_errors++;
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001068 if (netif_msg_tx_err(mdp))
1069 dev_err(&ndev->dev, "Transmit FIFO Under flow\n");
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001070 }
1071
1072 if (intr_status & EESR_RDE) {
1073 /* Receive Descriptor Empty int */
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001074 ndev->stats.rx_over_errors++;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001075
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001076 if (sh_eth_read(ndev, EDRRR) ^ EDRRR_R)
1077 sh_eth_write(ndev, EDRRR_R, EDRRR);
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001078 if (netif_msg_rx_err(mdp))
1079 dev_err(&ndev->dev, "Receive Descriptor Empty\n");
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001080 }
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001081
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001082 if (intr_status & EESR_RFE) {
1083 /* Receive FIFO Overflow int */
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001084 ndev->stats.rx_fifo_errors++;
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001085 if (netif_msg_rx_err(mdp))
1086 dev_err(&ndev->dev, "Receive FIFO Overflow\n");
1087 }
1088
1089 if (!mdp->cd->no_ade && (intr_status & EESR_ADE)) {
1090 /* Address Error */
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001091 ndev->stats.tx_fifo_errors++;
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001092 if (netif_msg_tx_err(mdp))
1093 dev_err(&ndev->dev, "Address Error\n");
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001094 }
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001095
1096 mask = EESR_TWB | EESR_TABT | EESR_ADE | EESR_TDE | EESR_TFE;
1097 if (mdp->cd->no_ade)
1098 mask &= ~EESR_ADE;
1099 if (intr_status & mask) {
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001100 /* Tx error */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001101 u32 edtrr = sh_eth_read(ndev, EDTRR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001102 /* dmesg */
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001103 dev_err(&ndev->dev, "TX error. status=%8.8x cur_tx=%8.8x ",
1104 intr_status, mdp->cur_tx);
1105 dev_err(&ndev->dev, "dirty_tx=%8.8x state=%8.8x EDTRR=%8.8x.\n",
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001106 mdp->dirty_tx, (u32) ndev->state, edtrr);
1107 /* dirty buffer free */
1108 sh_eth_txfree(ndev);
1109
1110 /* SH7712 BUG */
Yoshihiro Shimodac5ed5362011-03-07 21:59:38 +00001111 if (edtrr ^ sh_eth_get_edtrr_trns(mdp)) {
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001112 /* tx dma start */
Yoshihiro Shimodac5ed5362011-03-07 21:59:38 +00001113 sh_eth_write(ndev, sh_eth_get_edtrr_trns(mdp), EDTRR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001114 }
1115 /* wakeup */
1116 netif_wake_queue(ndev);
1117 }
1118}
1119
1120static irqreturn_t sh_eth_interrupt(int irq, void *netdev)
1121{
1122 struct net_device *ndev = netdev;
1123 struct sh_eth_private *mdp = netdev_priv(ndev);
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001124 struct sh_eth_cpu_data *cd = mdp->cd;
Nobuhiro Iwamatsu0e0fde32009-03-16 19:50:57 +00001125 irqreturn_t ret = IRQ_NONE;
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001126 u32 intr_status = 0;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001127
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001128 spin_lock(&mdp->lock);
1129
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +09001130 /* Get interrpt stat */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001131 intr_status = sh_eth_read(ndev, EESR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001132 /* Clear interrupt */
Nobuhiro Iwamatsu0e0fde32009-03-16 19:50:57 +00001133 if (intr_status & (EESR_FRC | EESR_RMAF | EESR_RRF |
1134 EESR_RTLF | EESR_RTSF | EESR_PRE | EESR_CERF |
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001135 cd->tx_check | cd->eesr_err_check)) {
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001136 sh_eth_write(ndev, intr_status, EESR);
Nobuhiro Iwamatsu0e0fde32009-03-16 19:50:57 +00001137 ret = IRQ_HANDLED;
1138 } else
1139 goto other_irq;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001140
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +09001141 if (intr_status & (EESR_FRC | /* Frame recv*/
1142 EESR_RMAF | /* Multi cast address recv*/
1143 EESR_RRF | /* Bit frame recv */
1144 EESR_RTLF | /* Long frame recv*/
1145 EESR_RTSF | /* short frame recv */
1146 EESR_PRE | /* PHY-LSI recv error */
1147 EESR_CERF)){ /* recv frame CRC error */
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001148 sh_eth_rx(ndev);
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +09001149 }
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001150
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +09001151 /* Tx Check */
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001152 if (intr_status & cd->tx_check) {
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001153 sh_eth_txfree(ndev);
1154 netif_wake_queue(ndev);
1155 }
1156
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001157 if (intr_status & cd->eesr_err_check)
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001158 sh_eth_error(ndev, intr_status);
1159
Nobuhiro Iwamatsu0e0fde32009-03-16 19:50:57 +00001160other_irq:
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001161 spin_unlock(&mdp->lock);
1162
Nobuhiro Iwamatsu0e0fde32009-03-16 19:50:57 +00001163 return ret;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001164}
1165
1166static void sh_eth_timer(unsigned long data)
1167{
1168 struct net_device *ndev = (struct net_device *)data;
1169 struct sh_eth_private *mdp = netdev_priv(ndev);
1170
1171 mod_timer(&mdp->timer, jiffies + (10 * HZ));
1172}
1173
1174/* PHY state control function */
1175static void sh_eth_adjust_link(struct net_device *ndev)
1176{
1177 struct sh_eth_private *mdp = netdev_priv(ndev);
1178 struct phy_device *phydev = mdp->phydev;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001179 int new_state = 0;
1180
1181 if (phydev->link != PHY_DOWN) {
1182 if (phydev->duplex != mdp->duplex) {
1183 new_state = 1;
1184 mdp->duplex = phydev->duplex;
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001185 if (mdp->cd->set_duplex)
1186 mdp->cd->set_duplex(ndev);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001187 }
1188
1189 if (phydev->speed != mdp->speed) {
1190 new_state = 1;
1191 mdp->speed = phydev->speed;
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001192 if (mdp->cd->set_rate)
1193 mdp->cd->set_rate(ndev);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001194 }
1195 if (mdp->link == PHY_DOWN) {
Yoshihiro Shimoda91a56152011-07-05 20:33:51 +00001196 sh_eth_write(ndev,
1197 (sh_eth_read(ndev, ECMR) & ~ECMR_TXF), ECMR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001198 new_state = 1;
1199 mdp->link = phydev->link;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001200 }
1201 } else if (mdp->link) {
1202 new_state = 1;
1203 mdp->link = PHY_DOWN;
1204 mdp->speed = 0;
1205 mdp->duplex = -1;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001206 }
1207
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001208 if (new_state && netif_msg_link(mdp))
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001209 phy_print_status(phydev);
1210}
1211
1212/* PHY init function */
1213static int sh_eth_phy_init(struct net_device *ndev)
1214{
1215 struct sh_eth_private *mdp = netdev_priv(ndev);
David S. Miller0a372eb2009-05-26 21:11:09 -07001216 char phy_id[MII_BUS_ID_SIZE + 3];
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001217 struct phy_device *phydev = NULL;
1218
Kay Sieversfb28ad32008-11-10 13:55:14 -08001219 snprintf(phy_id, sizeof(phy_id), PHY_ID_FMT,
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001220 mdp->mii_bus->id , mdp->phy_id);
1221
1222 mdp->link = PHY_DOWN;
1223 mdp->speed = 0;
1224 mdp->duplex = -1;
1225
1226 /* Try connect to PHY */
Joe Perchesc061b182010-08-23 18:20:03 +00001227 phydev = phy_connect(ndev, phy_id, sh_eth_adjust_link,
Yoshihiro Shimodae47c9052011-03-07 21:59:45 +00001228 0, mdp->phy_interface);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001229 if (IS_ERR(phydev)) {
1230 dev_err(&ndev->dev, "phy_connect failed\n");
1231 return PTR_ERR(phydev);
1232 }
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001233
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001234 dev_info(&ndev->dev, "attached phy %i to driver %s\n",
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001235 phydev->addr, phydev->drv->name);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001236
1237 mdp->phydev = phydev;
1238
1239 return 0;
1240}
1241
1242/* PHY control start function */
1243static int sh_eth_phy_start(struct net_device *ndev)
1244{
1245 struct sh_eth_private *mdp = netdev_priv(ndev);
1246 int ret;
1247
1248 ret = sh_eth_phy_init(ndev);
1249 if (ret)
1250 return ret;
1251
1252 /* reset phy - this also wakes it from PDOWN */
1253 phy_write(mdp->phydev, MII_BMCR, BMCR_RESET);
1254 phy_start(mdp->phydev);
1255
1256 return 0;
1257}
1258
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001259static int sh_eth_get_settings(struct net_device *ndev,
1260 struct ethtool_cmd *ecmd)
1261{
1262 struct sh_eth_private *mdp = netdev_priv(ndev);
1263 unsigned long flags;
1264 int ret;
1265
1266 spin_lock_irqsave(&mdp->lock, flags);
1267 ret = phy_ethtool_gset(mdp->phydev, ecmd);
1268 spin_unlock_irqrestore(&mdp->lock, flags);
1269
1270 return ret;
1271}
1272
1273static int sh_eth_set_settings(struct net_device *ndev,
1274 struct ethtool_cmd *ecmd)
1275{
1276 struct sh_eth_private *mdp = netdev_priv(ndev);
1277 unsigned long flags;
1278 int ret;
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001279
1280 spin_lock_irqsave(&mdp->lock, flags);
1281
1282 /* disable tx and rx */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001283 sh_eth_rcv_snd_disable(ndev);
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001284
1285 ret = phy_ethtool_sset(mdp->phydev, ecmd);
1286 if (ret)
1287 goto error_exit;
1288
1289 if (ecmd->duplex == DUPLEX_FULL)
1290 mdp->duplex = 1;
1291 else
1292 mdp->duplex = 0;
1293
1294 if (mdp->cd->set_duplex)
1295 mdp->cd->set_duplex(ndev);
1296
1297error_exit:
1298 mdelay(1);
1299
1300 /* enable tx and rx */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001301 sh_eth_rcv_snd_enable(ndev);
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001302
1303 spin_unlock_irqrestore(&mdp->lock, flags);
1304
1305 return ret;
1306}
1307
1308static int sh_eth_nway_reset(struct net_device *ndev)
1309{
1310 struct sh_eth_private *mdp = netdev_priv(ndev);
1311 unsigned long flags;
1312 int ret;
1313
1314 spin_lock_irqsave(&mdp->lock, flags);
1315 ret = phy_start_aneg(mdp->phydev);
1316 spin_unlock_irqrestore(&mdp->lock, flags);
1317
1318 return ret;
1319}
1320
1321static u32 sh_eth_get_msglevel(struct net_device *ndev)
1322{
1323 struct sh_eth_private *mdp = netdev_priv(ndev);
1324 return mdp->msg_enable;
1325}
1326
1327static void sh_eth_set_msglevel(struct net_device *ndev, u32 value)
1328{
1329 struct sh_eth_private *mdp = netdev_priv(ndev);
1330 mdp->msg_enable = value;
1331}
1332
1333static const char sh_eth_gstrings_stats[][ETH_GSTRING_LEN] = {
1334 "rx_current", "tx_current",
1335 "rx_dirty", "tx_dirty",
1336};
1337#define SH_ETH_STATS_LEN ARRAY_SIZE(sh_eth_gstrings_stats)
1338
1339static int sh_eth_get_sset_count(struct net_device *netdev, int sset)
1340{
1341 switch (sset) {
1342 case ETH_SS_STATS:
1343 return SH_ETH_STATS_LEN;
1344 default:
1345 return -EOPNOTSUPP;
1346 }
1347}
1348
1349static void sh_eth_get_ethtool_stats(struct net_device *ndev,
1350 struct ethtool_stats *stats, u64 *data)
1351{
1352 struct sh_eth_private *mdp = netdev_priv(ndev);
1353 int i = 0;
1354
1355 /* device-specific stats */
1356 data[i++] = mdp->cur_rx;
1357 data[i++] = mdp->cur_tx;
1358 data[i++] = mdp->dirty_rx;
1359 data[i++] = mdp->dirty_tx;
1360}
1361
1362static void sh_eth_get_strings(struct net_device *ndev, u32 stringset, u8 *data)
1363{
1364 switch (stringset) {
1365 case ETH_SS_STATS:
1366 memcpy(data, *sh_eth_gstrings_stats,
1367 sizeof(sh_eth_gstrings_stats));
1368 break;
1369 }
1370}
1371
stephen hemminger9b07be42012-01-04 12:59:49 +00001372static const struct ethtool_ops sh_eth_ethtool_ops = {
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001373 .get_settings = sh_eth_get_settings,
1374 .set_settings = sh_eth_set_settings,
stephen hemminger9b07be42012-01-04 12:59:49 +00001375 .nway_reset = sh_eth_nway_reset,
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001376 .get_msglevel = sh_eth_get_msglevel,
1377 .set_msglevel = sh_eth_set_msglevel,
stephen hemminger9b07be42012-01-04 12:59:49 +00001378 .get_link = ethtool_op_get_link,
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001379 .get_strings = sh_eth_get_strings,
1380 .get_ethtool_stats = sh_eth_get_ethtool_stats,
1381 .get_sset_count = sh_eth_get_sset_count,
1382};
1383
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001384/* network device open function */
1385static int sh_eth_open(struct net_device *ndev)
1386{
1387 int ret = 0;
1388 struct sh_eth_private *mdp = netdev_priv(ndev);
1389
Magnus Dammbcd51492009-10-09 00:20:04 +00001390 pm_runtime_get_sync(&mdp->pdev->dev);
1391
Joe Perchesa0607fd2009-11-18 23:29:17 -08001392 ret = request_irq(ndev->irq, sh_eth_interrupt,
Yoshihiro Shimodaf29a3d02010-07-05 18:32:50 +00001393#if defined(CONFIG_CPU_SUBTYPE_SH7763) || \
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001394 defined(CONFIG_CPU_SUBTYPE_SH7764) || \
1395 defined(CONFIG_CPU_SUBTYPE_SH7757)
Nobuhiro Iwamatsu0e0fde32009-03-16 19:50:57 +00001396 IRQF_SHARED,
1397#else
1398 0,
1399#endif
1400 ndev->name, ndev);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001401 if (ret) {
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001402 dev_err(&ndev->dev, "Can not assign IRQ number\n");
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001403 return ret;
1404 }
1405
1406 /* Descriptor set */
1407 ret = sh_eth_ring_init(ndev);
1408 if (ret)
1409 goto out_free_irq;
1410
1411 /* device init */
1412 ret = sh_eth_dev_init(ndev);
1413 if (ret)
1414 goto out_free_irq;
1415
1416 /* PHY control start*/
1417 ret = sh_eth_phy_start(ndev);
1418 if (ret)
1419 goto out_free_irq;
1420
1421 /* Set the timer to check for link beat. */
1422 init_timer(&mdp->timer);
1423 mdp->timer.expires = (jiffies + (24 * HZ)) / 10;/* 2.4 sec. */
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +09001424 setup_timer(&mdp->timer, sh_eth_timer, (unsigned long)ndev);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001425
1426 return ret;
1427
1428out_free_irq:
1429 free_irq(ndev->irq, ndev);
Magnus Dammbcd51492009-10-09 00:20:04 +00001430 pm_runtime_put_sync(&mdp->pdev->dev);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001431 return ret;
1432}
1433
1434/* Timeout function */
1435static void sh_eth_tx_timeout(struct net_device *ndev)
1436{
1437 struct sh_eth_private *mdp = netdev_priv(ndev);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001438 struct sh_eth_rxdesc *rxdesc;
1439 int i;
1440
1441 netif_stop_queue(ndev);
1442
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001443 if (netif_msg_timer(mdp))
1444 dev_err(&ndev->dev, "%s: transmit timed out, status %8.8x,"
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001445 " resetting...\n", ndev->name, (int)sh_eth_read(ndev, EESR));
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001446
1447 /* tx_errors count up */
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001448 ndev->stats.tx_errors++;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001449
1450 /* timer off */
1451 del_timer_sync(&mdp->timer);
1452
1453 /* Free all the skbuffs in the Rx queue. */
1454 for (i = 0; i < RX_RING_SIZE; i++) {
1455 rxdesc = &mdp->rx_ring[i];
1456 rxdesc->status = 0;
1457 rxdesc->addr = 0xBADF00D0;
1458 if (mdp->rx_skbuff[i])
1459 dev_kfree_skb(mdp->rx_skbuff[i]);
1460 mdp->rx_skbuff[i] = NULL;
1461 }
1462 for (i = 0; i < TX_RING_SIZE; i++) {
1463 if (mdp->tx_skbuff[i])
1464 dev_kfree_skb(mdp->tx_skbuff[i]);
1465 mdp->tx_skbuff[i] = NULL;
1466 }
1467
1468 /* device init */
1469 sh_eth_dev_init(ndev);
1470
1471 /* timer on */
1472 mdp->timer.expires = (jiffies + (24 * HZ)) / 10;/* 2.4 sec. */
1473 add_timer(&mdp->timer);
1474}
1475
1476/* Packet transmit function */
1477static int sh_eth_start_xmit(struct sk_buff *skb, struct net_device *ndev)
1478{
1479 struct sh_eth_private *mdp = netdev_priv(ndev);
1480 struct sh_eth_txdesc *txdesc;
1481 u32 entry;
Nobuhiro Iwamatsufb5e2f92008-11-17 20:29:58 +00001482 unsigned long flags;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001483
1484 spin_lock_irqsave(&mdp->lock, flags);
1485 if ((mdp->cur_tx - mdp->dirty_tx) >= (TX_RING_SIZE - 4)) {
1486 if (!sh_eth_txfree(ndev)) {
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00001487 if (netif_msg_tx_queued(mdp))
1488 dev_warn(&ndev->dev, "TxFD exhausted.\n");
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001489 netif_stop_queue(ndev);
1490 spin_unlock_irqrestore(&mdp->lock, flags);
Patrick McHardy5b548142009-06-12 06:22:29 +00001491 return NETDEV_TX_BUSY;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001492 }
1493 }
1494 spin_unlock_irqrestore(&mdp->lock, flags);
1495
1496 entry = mdp->cur_tx % TX_RING_SIZE;
1497 mdp->tx_skbuff[entry] = skb;
1498 txdesc = &mdp->tx_ring[entry];
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001499 /* soft swap. */
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001500 if (!mdp->cd->hw_swap)
1501 sh_eth_soft_swap(phys_to_virt(ALIGN(txdesc->addr, 4)),
1502 skb->len + 2);
Yoshihiro Shimoda31fcb992011-06-30 22:52:13 +00001503 txdesc->addr = dma_map_single(&ndev->dev, skb->data, skb->len,
1504 DMA_TO_DEVICE);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001505 if (skb->len < ETHERSMALL)
1506 txdesc->buffer_length = ETHERSMALL;
1507 else
1508 txdesc->buffer_length = skb->len;
1509
1510 if (entry >= TX_RING_SIZE - 1)
Yoshinori Sato71557a32008-08-06 19:49:00 -04001511 txdesc->status |= cpu_to_edmac(mdp, TD_TACT | TD_TDLE);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001512 else
Yoshinori Sato71557a32008-08-06 19:49:00 -04001513 txdesc->status |= cpu_to_edmac(mdp, TD_TACT);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001514
1515 mdp->cur_tx++;
1516
Yoshihiro Shimodac5ed5362011-03-07 21:59:38 +00001517 if (!(sh_eth_read(ndev, EDTRR) & sh_eth_get_edtrr_trns(mdp)))
1518 sh_eth_write(ndev, sh_eth_get_edtrr_trns(mdp), EDTRR);
Nobuhiro Iwamatsub0ca2a22008-06-30 11:08:17 +09001519
Patrick McHardy6ed10652009-06-23 06:03:08 +00001520 return NETDEV_TX_OK;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001521}
1522
1523/* device close function */
1524static int sh_eth_close(struct net_device *ndev)
1525{
1526 struct sh_eth_private *mdp = netdev_priv(ndev);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001527 int ringsize;
1528
1529 netif_stop_queue(ndev);
1530
1531 /* Disable interrupts by clearing the interrupt mask. */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001532 sh_eth_write(ndev, 0x0000, EESIPR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001533
1534 /* Stop the chip's Tx and Rx processes. */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001535 sh_eth_write(ndev, 0, EDTRR);
1536 sh_eth_write(ndev, 0, EDRRR);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001537
1538 /* PHY Disconnect */
1539 if (mdp->phydev) {
1540 phy_stop(mdp->phydev);
1541 phy_disconnect(mdp->phydev);
1542 }
1543
1544 free_irq(ndev->irq, ndev);
1545
1546 del_timer_sync(&mdp->timer);
1547
1548 /* Free all the skbuffs in the Rx queue. */
1549 sh_eth_ring_free(ndev);
1550
1551 /* free DMA buffer */
1552 ringsize = sizeof(struct sh_eth_rxdesc) * RX_RING_SIZE;
1553 dma_free_coherent(NULL, ringsize, mdp->rx_ring, mdp->rx_desc_dma);
1554
1555 /* free DMA buffer */
1556 ringsize = sizeof(struct sh_eth_txdesc) * TX_RING_SIZE;
1557 dma_free_coherent(NULL, ringsize, mdp->tx_ring, mdp->tx_desc_dma);
1558
Magnus Dammbcd51492009-10-09 00:20:04 +00001559 pm_runtime_put_sync(&mdp->pdev->dev);
1560
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001561 return 0;
1562}
1563
1564static struct net_device_stats *sh_eth_get_stats(struct net_device *ndev)
1565{
1566 struct sh_eth_private *mdp = netdev_priv(ndev);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001567
Magnus Dammbcd51492009-10-09 00:20:04 +00001568 pm_runtime_get_sync(&mdp->pdev->dev);
1569
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001570 ndev->stats.tx_dropped += sh_eth_read(ndev, TROCR);
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001571 sh_eth_write(ndev, 0, TROCR); /* (write clear) */
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001572 ndev->stats.collisions += sh_eth_read(ndev, CDCR);
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001573 sh_eth_write(ndev, 0, CDCR); /* (write clear) */
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001574 ndev->stats.tx_carrier_errors += sh_eth_read(ndev, LCCR);
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001575 sh_eth_write(ndev, 0, LCCR); /* (write clear) */
Yoshihiro Shimodac5ed5362011-03-07 21:59:38 +00001576 if (sh_eth_is_gether(mdp)) {
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001577 ndev->stats.tx_carrier_errors += sh_eth_read(ndev, CERCR);
Yoshihiro Shimodac5ed5362011-03-07 21:59:38 +00001578 sh_eth_write(ndev, 0, CERCR); /* (write clear) */
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001579 ndev->stats.tx_carrier_errors += sh_eth_read(ndev, CEECR);
Yoshihiro Shimodac5ed5362011-03-07 21:59:38 +00001580 sh_eth_write(ndev, 0, CEECR); /* (write clear) */
1581 } else {
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001582 ndev->stats.tx_carrier_errors += sh_eth_read(ndev, CNDCR);
Yoshihiro Shimodac5ed5362011-03-07 21:59:38 +00001583 sh_eth_write(ndev, 0, CNDCR); /* (write clear) */
1584 }
Magnus Dammbcd51492009-10-09 00:20:04 +00001585 pm_runtime_put_sync(&mdp->pdev->dev);
1586
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001587 return &ndev->stats;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001588}
1589
Eric Dumazetbb7d92e2012-02-06 22:17:21 +00001590/* ioctl to device function */
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001591static int sh_eth_do_ioctl(struct net_device *ndev, struct ifreq *rq,
1592 int cmd)
1593{
1594 struct sh_eth_private *mdp = netdev_priv(ndev);
1595 struct phy_device *phydev = mdp->phydev;
1596
1597 if (!netif_running(ndev))
1598 return -EINVAL;
1599
1600 if (!phydev)
1601 return -ENODEV;
1602
Richard Cochran28b04112010-07-17 08:48:55 +00001603 return phy_mii_ioctl(phydev, rq, cmd);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001604}
1605
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00001606#if defined(SH_ETH_HAS_TSU)
Yoshihiro Shimoda6743fe62012-02-15 17:55:03 +00001607/* For TSU_POSTn. Please refer to the manual about this (strange) bitfields */
1608static void *sh_eth_tsu_get_post_reg_offset(struct sh_eth_private *mdp,
1609 int entry)
1610{
1611 return sh_eth_tsu_get_offset(mdp, TSU_POST1) + (entry / 8 * 4);
1612}
1613
1614static u32 sh_eth_tsu_get_post_mask(int entry)
1615{
1616 return 0x0f << (28 - ((entry % 8) * 4));
1617}
1618
1619static u32 sh_eth_tsu_get_post_bit(struct sh_eth_private *mdp, int entry)
1620{
1621 return (0x08 >> (mdp->port << 1)) << (28 - ((entry % 8) * 4));
1622}
1623
1624static void sh_eth_tsu_enable_cam_entry_post(struct net_device *ndev,
1625 int entry)
1626{
1627 struct sh_eth_private *mdp = netdev_priv(ndev);
1628 u32 tmp;
1629 void *reg_offset;
1630
1631 reg_offset = sh_eth_tsu_get_post_reg_offset(mdp, entry);
1632 tmp = ioread32(reg_offset);
1633 iowrite32(tmp | sh_eth_tsu_get_post_bit(mdp, entry), reg_offset);
1634}
1635
1636static bool sh_eth_tsu_disable_cam_entry_post(struct net_device *ndev,
1637 int entry)
1638{
1639 struct sh_eth_private *mdp = netdev_priv(ndev);
1640 u32 post_mask, ref_mask, tmp;
1641 void *reg_offset;
1642
1643 reg_offset = sh_eth_tsu_get_post_reg_offset(mdp, entry);
1644 post_mask = sh_eth_tsu_get_post_mask(entry);
1645 ref_mask = sh_eth_tsu_get_post_bit(mdp, entry) & ~post_mask;
1646
1647 tmp = ioread32(reg_offset);
1648 iowrite32(tmp & ~post_mask, reg_offset);
1649
1650 /* If other port enables, the function returns "true" */
1651 return tmp & ref_mask;
1652}
1653
1654static int sh_eth_tsu_busy(struct net_device *ndev)
1655{
1656 int timeout = SH_ETH_TSU_TIMEOUT_MS * 100;
1657 struct sh_eth_private *mdp = netdev_priv(ndev);
1658
1659 while ((sh_eth_tsu_read(mdp, TSU_ADSBSY) & TSU_ADSBSY_0)) {
1660 udelay(10);
1661 timeout--;
1662 if (timeout <= 0) {
1663 dev_err(&ndev->dev, "%s: timeout\n", __func__);
1664 return -ETIMEDOUT;
1665 }
1666 }
1667
1668 return 0;
1669}
1670
1671static int sh_eth_tsu_write_entry(struct net_device *ndev, void *reg,
1672 const u8 *addr)
1673{
1674 u32 val;
1675
1676 val = addr[0] << 24 | addr[1] << 16 | addr[2] << 8 | addr[3];
1677 iowrite32(val, reg);
1678 if (sh_eth_tsu_busy(ndev) < 0)
1679 return -EBUSY;
1680
1681 val = addr[4] << 8 | addr[5];
1682 iowrite32(val, reg + 4);
1683 if (sh_eth_tsu_busy(ndev) < 0)
1684 return -EBUSY;
1685
1686 return 0;
1687}
1688
1689static void sh_eth_tsu_read_entry(void *reg, u8 *addr)
1690{
1691 u32 val;
1692
1693 val = ioread32(reg);
1694 addr[0] = (val >> 24) & 0xff;
1695 addr[1] = (val >> 16) & 0xff;
1696 addr[2] = (val >> 8) & 0xff;
1697 addr[3] = val & 0xff;
1698 val = ioread32(reg + 4);
1699 addr[4] = (val >> 8) & 0xff;
1700 addr[5] = val & 0xff;
1701}
1702
1703
1704static int sh_eth_tsu_find_entry(struct net_device *ndev, const u8 *addr)
1705{
1706 struct sh_eth_private *mdp = netdev_priv(ndev);
1707 void *reg_offset = sh_eth_tsu_get_offset(mdp, TSU_ADRH0);
1708 int i;
1709 u8 c_addr[ETH_ALEN];
1710
1711 for (i = 0; i < SH_ETH_TSU_CAM_ENTRIES; i++, reg_offset += 8) {
1712 sh_eth_tsu_read_entry(reg_offset, c_addr);
1713 if (memcmp(addr, c_addr, ETH_ALEN) == 0)
1714 return i;
1715 }
1716
1717 return -ENOENT;
1718}
1719
1720static int sh_eth_tsu_find_empty(struct net_device *ndev)
1721{
1722 u8 blank[ETH_ALEN];
1723 int entry;
1724
1725 memset(blank, 0, sizeof(blank));
1726 entry = sh_eth_tsu_find_entry(ndev, blank);
1727 return (entry < 0) ? -ENOMEM : entry;
1728}
1729
1730static int sh_eth_tsu_disable_cam_entry_table(struct net_device *ndev,
1731 int entry)
1732{
1733 struct sh_eth_private *mdp = netdev_priv(ndev);
1734 void *reg_offset = sh_eth_tsu_get_offset(mdp, TSU_ADRH0);
1735 int ret;
1736 u8 blank[ETH_ALEN];
1737
1738 sh_eth_tsu_write(mdp, sh_eth_tsu_read(mdp, TSU_TEN) &
1739 ~(1 << (31 - entry)), TSU_TEN);
1740
1741 memset(blank, 0, sizeof(blank));
1742 ret = sh_eth_tsu_write_entry(ndev, reg_offset + entry * 8, blank);
1743 if (ret < 0)
1744 return ret;
1745 return 0;
1746}
1747
1748static int sh_eth_tsu_add_entry(struct net_device *ndev, const u8 *addr)
1749{
1750 struct sh_eth_private *mdp = netdev_priv(ndev);
1751 void *reg_offset = sh_eth_tsu_get_offset(mdp, TSU_ADRH0);
1752 int i, ret;
1753
1754 if (!mdp->cd->tsu)
1755 return 0;
1756
1757 i = sh_eth_tsu_find_entry(ndev, addr);
1758 if (i < 0) {
1759 /* No entry found, create one */
1760 i = sh_eth_tsu_find_empty(ndev);
1761 if (i < 0)
1762 return -ENOMEM;
1763 ret = sh_eth_tsu_write_entry(ndev, reg_offset + i * 8, addr);
1764 if (ret < 0)
1765 return ret;
1766
1767 /* Enable the entry */
1768 sh_eth_tsu_write(mdp, sh_eth_tsu_read(mdp, TSU_TEN) |
1769 (1 << (31 - i)), TSU_TEN);
1770 }
1771
1772 /* Entry found or created, enable POST */
1773 sh_eth_tsu_enable_cam_entry_post(ndev, i);
1774
1775 return 0;
1776}
1777
1778static int sh_eth_tsu_del_entry(struct net_device *ndev, const u8 *addr)
1779{
1780 struct sh_eth_private *mdp = netdev_priv(ndev);
1781 int i, ret;
1782
1783 if (!mdp->cd->tsu)
1784 return 0;
1785
1786 i = sh_eth_tsu_find_entry(ndev, addr);
1787 if (i) {
1788 /* Entry found */
1789 if (sh_eth_tsu_disable_cam_entry_post(ndev, i))
1790 goto done;
1791
1792 /* Disable the entry if both ports was disabled */
1793 ret = sh_eth_tsu_disable_cam_entry_table(ndev, i);
1794 if (ret < 0)
1795 return ret;
1796 }
1797done:
1798 return 0;
1799}
1800
1801static int sh_eth_tsu_purge_all(struct net_device *ndev)
1802{
1803 struct sh_eth_private *mdp = netdev_priv(ndev);
1804 int i, ret;
1805
1806 if (unlikely(!mdp->cd->tsu))
1807 return 0;
1808
1809 for (i = 0; i < SH_ETH_TSU_CAM_ENTRIES; i++) {
1810 if (sh_eth_tsu_disable_cam_entry_post(ndev, i))
1811 continue;
1812
1813 /* Disable the entry if both ports was disabled */
1814 ret = sh_eth_tsu_disable_cam_entry_table(ndev, i);
1815 if (ret < 0)
1816 return ret;
1817 }
1818
1819 return 0;
1820}
1821
1822static void sh_eth_tsu_purge_mcast(struct net_device *ndev)
1823{
1824 struct sh_eth_private *mdp = netdev_priv(ndev);
1825 u8 addr[ETH_ALEN];
1826 void *reg_offset = sh_eth_tsu_get_offset(mdp, TSU_ADRH0);
1827 int i;
1828
1829 if (unlikely(!mdp->cd->tsu))
1830 return;
1831
1832 for (i = 0; i < SH_ETH_TSU_CAM_ENTRIES; i++, reg_offset += 8) {
1833 sh_eth_tsu_read_entry(reg_offset, addr);
1834 if (is_multicast_ether_addr(addr))
1835 sh_eth_tsu_del_entry(ndev, addr);
1836 }
1837}
1838
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001839/* Multicast reception directions set */
1840static void sh_eth_set_multicast_list(struct net_device *ndev)
1841{
Yoshihiro Shimoda6743fe62012-02-15 17:55:03 +00001842 struct sh_eth_private *mdp = netdev_priv(ndev);
1843 u32 ecmr_bits;
1844 int mcast_all = 0;
1845 unsigned long flags;
1846
1847 spin_lock_irqsave(&mdp->lock, flags);
1848 /*
1849 * Initial condition is MCT = 1, PRM = 0.
1850 * Depending on ndev->flags, set PRM or clear MCT
1851 */
1852 ecmr_bits = (sh_eth_read(ndev, ECMR) & ~ECMR_PRM) | ECMR_MCT;
1853
1854 if (!(ndev->flags & IFF_MULTICAST)) {
1855 sh_eth_tsu_purge_mcast(ndev);
1856 mcast_all = 1;
1857 }
1858 if (ndev->flags & IFF_ALLMULTI) {
1859 sh_eth_tsu_purge_mcast(ndev);
1860 ecmr_bits &= ~ECMR_MCT;
1861 mcast_all = 1;
1862 }
1863
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001864 if (ndev->flags & IFF_PROMISC) {
Yoshihiro Shimoda6743fe62012-02-15 17:55:03 +00001865 sh_eth_tsu_purge_all(ndev);
1866 ecmr_bits = (ecmr_bits & ~ECMR_MCT) | ECMR_PRM;
1867 } else if (mdp->cd->tsu) {
1868 struct netdev_hw_addr *ha;
1869 netdev_for_each_mc_addr(ha, ndev) {
1870 if (mcast_all && is_multicast_ether_addr(ha->addr))
1871 continue;
1872
1873 if (sh_eth_tsu_add_entry(ndev, ha->addr) < 0) {
1874 if (!mcast_all) {
1875 sh_eth_tsu_purge_mcast(ndev);
1876 ecmr_bits &= ~ECMR_MCT;
1877 mcast_all = 1;
1878 }
1879 }
1880 }
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001881 } else {
1882 /* Normal, unicast/broadcast-only mode. */
Yoshihiro Shimoda6743fe62012-02-15 17:55:03 +00001883 ecmr_bits = (ecmr_bits & ~ECMR_PRM) | ECMR_MCT;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001884 }
Yoshihiro Shimoda6743fe62012-02-15 17:55:03 +00001885
1886 /* update the ethernet mode */
1887 sh_eth_write(ndev, ecmr_bits, ECMR);
1888
1889 spin_unlock_irqrestore(&mdp->lock, flags);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001890}
Yoshihiro Shimoda4986b992011-03-07 21:59:34 +00001891#endif /* SH_ETH_HAS_TSU */
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001892
1893/* SuperH's TSU register init function */
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001894static void sh_eth_tsu_init(struct sh_eth_private *mdp)
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001895{
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001896 sh_eth_tsu_write(mdp, 0, TSU_FWEN0); /* Disable forward(0->1) */
1897 sh_eth_tsu_write(mdp, 0, TSU_FWEN1); /* Disable forward(1->0) */
1898 sh_eth_tsu_write(mdp, 0, TSU_FCM); /* forward fifo 3k-3k */
1899 sh_eth_tsu_write(mdp, 0xc, TSU_BSYSL0);
1900 sh_eth_tsu_write(mdp, 0xc, TSU_BSYSL1);
1901 sh_eth_tsu_write(mdp, 0, TSU_PRISL0);
1902 sh_eth_tsu_write(mdp, 0, TSU_PRISL1);
1903 sh_eth_tsu_write(mdp, 0, TSU_FWSL0);
1904 sh_eth_tsu_write(mdp, 0, TSU_FWSL1);
1905 sh_eth_tsu_write(mdp, TSU_FWSLC_POSTENU | TSU_FWSLC_POSTENL, TSU_FWSLC);
Yoshihiro Shimodac5ed5362011-03-07 21:59:38 +00001906 if (sh_eth_is_gether(mdp)) {
1907 sh_eth_tsu_write(mdp, 0, TSU_QTAG0); /* Disable QTAG(0->1) */
1908 sh_eth_tsu_write(mdp, 0, TSU_QTAG1); /* Disable QTAG(1->0) */
1909 } else {
1910 sh_eth_tsu_write(mdp, 0, TSU_QTAGM0); /* Disable QTAG(0->1) */
1911 sh_eth_tsu_write(mdp, 0, TSU_QTAGM1); /* Disable QTAG(1->0) */
1912 }
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00001913 sh_eth_tsu_write(mdp, 0, TSU_FWSR); /* all interrupt status clear */
1914 sh_eth_tsu_write(mdp, 0, TSU_FWINMK); /* Disable all interrupt */
1915 sh_eth_tsu_write(mdp, 0, TSU_TEN); /* Disable all CAM entry */
1916 sh_eth_tsu_write(mdp, 0, TSU_POST1); /* Disable CAM entry [ 0- 7] */
1917 sh_eth_tsu_write(mdp, 0, TSU_POST2); /* Disable CAM entry [ 8-15] */
1918 sh_eth_tsu_write(mdp, 0, TSU_POST3); /* Disable CAM entry [16-23] */
1919 sh_eth_tsu_write(mdp, 0, TSU_POST4); /* Disable CAM entry [24-31] */
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001920}
1921
1922/* MDIO bus release function */
1923static int sh_mdio_release(struct net_device *ndev)
1924{
1925 struct mii_bus *bus = dev_get_drvdata(&ndev->dev);
1926
1927 /* unregister mdio bus */
1928 mdiobus_unregister(bus);
1929
1930 /* remove mdio bus info from net_device */
1931 dev_set_drvdata(&ndev->dev, NULL);
1932
Denis Kirjanov0f0b4052010-05-20 04:00:59 +00001933 /* free interrupts memory */
1934 kfree(bus->irq);
1935
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001936 /* free bitbang info */
1937 free_mdio_bitbang(bus);
1938
1939 return 0;
1940}
1941
1942/* MDIO bus init function */
Yoshihiro Shimodab3017e62011-03-07 21:59:55 +00001943static int sh_mdio_init(struct net_device *ndev, int id,
1944 struct sh_eth_plat_data *pd)
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001945{
1946 int ret, i;
1947 struct bb_info *bitbang;
1948 struct sh_eth_private *mdp = netdev_priv(ndev);
1949
1950 /* create bit control struct for PHY */
1951 bitbang = kzalloc(sizeof(struct bb_info), GFP_KERNEL);
1952 if (!bitbang) {
1953 ret = -ENOMEM;
1954 goto out;
1955 }
1956
1957 /* bitbang init */
Yoshihiro Shimodaae706442011-09-27 21:48:58 +00001958 bitbang->addr = mdp->addr + mdp->reg_offset[PIR];
Yoshihiro Shimodab3017e62011-03-07 21:59:55 +00001959 bitbang->set_gate = pd->set_mdio_gate;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001960 bitbang->mdi_msk = 0x08;
1961 bitbang->mdo_msk = 0x04;
1962 bitbang->mmd_msk = 0x02;/* MMD */
1963 bitbang->mdc_msk = 0x01;
1964 bitbang->ctrl.ops = &bb_ops;
1965
Stefan Weilc2e07b32010-08-03 19:44:52 +02001966 /* MII controller setting */
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001967 mdp->mii_bus = alloc_mdio_bitbang(&bitbang->ctrl);
1968 if (!mdp->mii_bus) {
1969 ret = -ENOMEM;
1970 goto out_free_bitbang;
1971 }
1972
1973 /* Hook up MII support for ethtool */
1974 mdp->mii_bus->name = "sh_mii";
Lennert Buytenhek18ee49d2008-10-01 15:41:33 +00001975 mdp->mii_bus->parent = &ndev->dev;
Florian Fainelli5278fb52012-01-09 23:59:17 +00001976 snprintf(mdp->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
Nobuhiro Iwamatsu34aa6f12012-01-16 16:50:16 +00001977 mdp->pdev->name, id);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07001978
1979 /* PHY IRQ */
1980 mdp->mii_bus->irq = kmalloc(sizeof(int)*PHY_MAX_ADDR, GFP_KERNEL);
1981 if (!mdp->mii_bus->irq) {
1982 ret = -ENOMEM;
1983 goto out_free_bus;
1984 }
1985
1986 for (i = 0; i < PHY_MAX_ADDR; i++)
1987 mdp->mii_bus->irq[i] = PHY_POLL;
1988
1989 /* regist mdio bus */
1990 ret = mdiobus_register(mdp->mii_bus);
1991 if (ret)
1992 goto out_free_irq;
1993
1994 dev_set_drvdata(&ndev->dev, mdp->mii_bus);
1995
1996 return 0;
1997
1998out_free_irq:
1999 kfree(mdp->mii_bus->irq);
2000
2001out_free_bus:
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07002002 free_mdio_bitbang(mdp->mii_bus);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002003
2004out_free_bitbang:
2005 kfree(bitbang);
2006
2007out:
2008 return ret;
2009}
2010
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00002011static const u16 *sh_eth_get_register_offset(int register_type)
2012{
2013 const u16 *reg_offset = NULL;
2014
2015 switch (register_type) {
2016 case SH_ETH_REG_GIGABIT:
2017 reg_offset = sh_eth_offset_gigabit;
2018 break;
2019 case SH_ETH_REG_FAST_SH4:
2020 reg_offset = sh_eth_offset_fast_sh4;
2021 break;
2022 case SH_ETH_REG_FAST_SH3_SH2:
2023 reg_offset = sh_eth_offset_fast_sh3_sh2;
2024 break;
2025 default:
2026 printk(KERN_ERR "Unknown register type (%d)\n", register_type);
2027 break;
2028 }
2029
2030 return reg_offset;
2031}
2032
Alexander Beregalovebf84ea2009-04-11 07:40:49 +00002033static const struct net_device_ops sh_eth_netdev_ops = {
2034 .ndo_open = sh_eth_open,
2035 .ndo_stop = sh_eth_close,
2036 .ndo_start_xmit = sh_eth_start_xmit,
2037 .ndo_get_stats = sh_eth_get_stats,
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00002038#if defined(SH_ETH_HAS_TSU)
Jiri Pirkoafc4b132011-08-16 06:29:01 +00002039 .ndo_set_rx_mode = sh_eth_set_multicast_list,
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00002040#endif
Alexander Beregalovebf84ea2009-04-11 07:40:49 +00002041 .ndo_tx_timeout = sh_eth_tx_timeout,
2042 .ndo_do_ioctl = sh_eth_do_ioctl,
2043 .ndo_validate_addr = eth_validate_addr,
2044 .ndo_set_mac_address = eth_mac_addr,
2045 .ndo_change_mtu = eth_change_mtu,
2046};
2047
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002048static int sh_eth_drv_probe(struct platform_device *pdev)
2049{
Kuninori Morimoto9c386572010-08-19 00:39:45 -07002050 int ret, devno = 0;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002051 struct resource *res;
2052 struct net_device *ndev = NULL;
Kuninori Morimotoec0d7552011-06-23 16:02:38 +00002053 struct sh_eth_private *mdp = NULL;
Yoshinori Sato71557a32008-08-06 19:49:00 -04002054 struct sh_eth_plat_data *pd;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002055
2056 /* get base addr */
2057 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2058 if (unlikely(res == NULL)) {
2059 dev_err(&pdev->dev, "invalid resource\n");
2060 ret = -EINVAL;
2061 goto out;
2062 }
2063
2064 ndev = alloc_etherdev(sizeof(struct sh_eth_private));
2065 if (!ndev) {
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002066 ret = -ENOMEM;
2067 goto out;
2068 }
2069
2070 /* The sh Ether-specific entries in the device structure. */
2071 ndev->base_addr = res->start;
2072 devno = pdev->id;
2073 if (devno < 0)
2074 devno = 0;
2075
2076 ndev->dma = -1;
roel kluincc3c0802008-09-10 19:22:44 +02002077 ret = platform_get_irq(pdev, 0);
2078 if (ret < 0) {
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002079 ret = -ENODEV;
2080 goto out_release;
2081 }
roel kluincc3c0802008-09-10 19:22:44 +02002082 ndev->irq = ret;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002083
2084 SET_NETDEV_DEV(ndev, &pdev->dev);
2085
2086 /* Fill in the fields of the device structure with ethernet values. */
2087 ether_setup(ndev);
2088
2089 mdp = netdev_priv(ndev);
Yoshihiro Shimodaae706442011-09-27 21:48:58 +00002090 mdp->addr = ioremap(res->start, resource_size(res));
2091 if (mdp->addr == NULL) {
2092 ret = -ENOMEM;
2093 dev_err(&pdev->dev, "ioremap failed.\n");
2094 goto out_release;
2095 }
2096
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002097 spin_lock_init(&mdp->lock);
Magnus Dammbcd51492009-10-09 00:20:04 +00002098 mdp->pdev = pdev;
2099 pm_runtime_enable(&pdev->dev);
2100 pm_runtime_resume(&pdev->dev);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002101
Yoshinori Sato71557a32008-08-06 19:49:00 -04002102 pd = (struct sh_eth_plat_data *)(pdev->dev.platform_data);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002103 /* get PHY ID */
Yoshinori Sato71557a32008-08-06 19:49:00 -04002104 mdp->phy_id = pd->phy;
Yoshihiro Shimodae47c9052011-03-07 21:59:45 +00002105 mdp->phy_interface = pd->phy_interface;
Yoshinori Sato71557a32008-08-06 19:49:00 -04002106 /* EDMAC endian */
2107 mdp->edmac_endian = pd->edmac_endian;
Yoshihiro Shimoda49235762009-08-27 23:25:03 +00002108 mdp->no_ether_link = pd->no_ether_link;
2109 mdp->ether_link_active_low = pd->ether_link_active_low;
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00002110 mdp->reg_offset = sh_eth_get_register_offset(pd->register_type);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002111
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00002112 /* set cpu data */
Yoshihiro Shimoda8fcd4962011-03-07 21:59:49 +00002113#if defined(SH_ETH_HAS_BOTH_MODULES)
2114 mdp->cd = sh_eth_get_cpu_data(mdp);
2115#else
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00002116 mdp->cd = &sh_eth_my_cpu_data;
Yoshihiro Shimoda8fcd4962011-03-07 21:59:49 +00002117#endif
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00002118 sh_eth_set_default_cpu_data(mdp->cd);
2119
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002120 /* set function */
Alexander Beregalovebf84ea2009-04-11 07:40:49 +00002121 ndev->netdev_ops = &sh_eth_netdev_ops;
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00002122 SET_ETHTOOL_OPS(ndev, &sh_eth_ethtool_ops);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002123 ndev->watchdog_timeo = TX_TIMEOUT;
2124
Nobuhiro Iwamatsudc19e4e2011-02-15 21:17:32 +00002125 /* debug message level */
2126 mdp->msg_enable = SH_ETH_DEF_MSG_ENABLE;
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002127 mdp->post_rx = POST_RX >> (devno << 1);
2128 mdp->post_fw = POST_FW >> (devno << 1);
2129
2130 /* read and set MAC address */
Magnus Damm748031f2009-10-09 00:17:14 +00002131 read_mac_address(ndev, pd->mac_addr);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002132
Yoshihiro Shimoda6ba88022012-02-15 17:55:01 +00002133 /* ioremap the TSU registers */
2134 if (mdp->cd->tsu) {
2135 struct resource *rtsu;
2136 rtsu = platform_get_resource(pdev, IORESOURCE_MEM, 1);
2137 if (!rtsu) {
2138 dev_err(&pdev->dev, "Not found TSU resource\n");
2139 goto out_release;
2140 }
2141 mdp->tsu_addr = ioremap(rtsu->start,
2142 resource_size(rtsu));
Yoshihiro Shimoda6743fe62012-02-15 17:55:03 +00002143 mdp->port = devno % 2;
Yoshihiro Shimoda6ba88022012-02-15 17:55:01 +00002144 }
2145
Yoshihiro Shimoda150647f2012-02-15 17:54:56 +00002146 /* initialize first or needed device */
2147 if (!devno || pd->needs_init) {
Yoshihiro Shimoda380af9e2009-05-24 23:54:21 +00002148 if (mdp->cd->chip_reset)
2149 mdp->cd->chip_reset(ndev);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002150
Yoshihiro Shimoda4986b992011-03-07 21:59:34 +00002151 if (mdp->cd->tsu) {
2152 /* TSU init (Init only)*/
2153 sh_eth_tsu_init(mdp);
2154 }
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002155 }
2156
2157 /* network device register */
2158 ret = register_netdev(ndev);
2159 if (ret)
2160 goto out_release;
2161
2162 /* mdio bus init */
Yoshihiro Shimodab3017e62011-03-07 21:59:55 +00002163 ret = sh_mdio_init(ndev, pdev->id, pd);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002164 if (ret)
2165 goto out_unregister;
2166
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002167 /* print device information */
H Hartley Sweeten6cd9b492009-12-29 20:10:35 -08002168 pr_info("Base address at 0x%x, %pM, IRQ %d.\n",
2169 (u32)ndev->base_addr, ndev->dev_addr, ndev->irq);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002170
2171 platform_set_drvdata(pdev, ndev);
2172
2173 return ret;
2174
2175out_unregister:
2176 unregister_netdev(ndev);
2177
2178out_release:
2179 /* net_dev free */
Yoshihiro Shimodaae706442011-09-27 21:48:58 +00002180 if (mdp && mdp->addr)
2181 iounmap(mdp->addr);
Kuninori Morimotoec0d7552011-06-23 16:02:38 +00002182 if (mdp && mdp->tsu_addr)
Yoshihiro Shimoda4986b992011-03-07 21:59:34 +00002183 iounmap(mdp->tsu_addr);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002184 if (ndev)
2185 free_netdev(ndev);
2186
2187out:
2188 return ret;
2189}
2190
2191static int sh_eth_drv_remove(struct platform_device *pdev)
2192{
2193 struct net_device *ndev = platform_get_drvdata(pdev);
Yoshihiro Shimoda4986b992011-03-07 21:59:34 +00002194 struct sh_eth_private *mdp = netdev_priv(ndev);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002195
Yoshihiro Shimoda6ba88022012-02-15 17:55:01 +00002196 if (mdp->cd->tsu)
2197 iounmap(mdp->tsu_addr);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002198 sh_mdio_release(ndev);
2199 unregister_netdev(ndev);
Magnus Dammbcd51492009-10-09 00:20:04 +00002200 pm_runtime_disable(&pdev->dev);
Yoshihiro Shimodaae706442011-09-27 21:48:58 +00002201 iounmap(mdp->addr);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002202 free_netdev(ndev);
2203 platform_set_drvdata(pdev, NULL);
2204
2205 return 0;
2206}
2207
Magnus Dammbcd51492009-10-09 00:20:04 +00002208static int sh_eth_runtime_nop(struct device *dev)
2209{
2210 /*
2211 * Runtime PM callback shared between ->runtime_suspend()
2212 * and ->runtime_resume(). Simply returns success.
2213 *
2214 * This driver re-initializes all registers after
2215 * pm_runtime_get_sync() anyway so there is no need
2216 * to save and restore registers here.
2217 */
2218 return 0;
2219}
2220
2221static struct dev_pm_ops sh_eth_dev_pm_ops = {
2222 .runtime_suspend = sh_eth_runtime_nop,
2223 .runtime_resume = sh_eth_runtime_nop,
2224};
2225
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002226static struct platform_driver sh_eth_driver = {
2227 .probe = sh_eth_drv_probe,
2228 .remove = sh_eth_drv_remove,
2229 .driver = {
2230 .name = CARDNAME,
Magnus Dammbcd51492009-10-09 00:20:04 +00002231 .pm = &sh_eth_dev_pm_ops,
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002232 },
2233};
2234
Axel Lindb62f682011-11-27 16:44:17 +00002235module_platform_driver(sh_eth_driver);
Nobuhiro Iwamatsu86a74ff2008-06-09 16:33:56 -07002236
2237MODULE_AUTHOR("Nobuhiro Iwamatsu, Yoshihiro Shimoda");
2238MODULE_DESCRIPTION("Renesas SuperH Ethernet driver");
2239MODULE_LICENSE("GPL v2");