sh_eth.c 84.9 KB
Newer Older
S
Sergei Shtylyov 已提交
1
/*  SuperH Ethernet device driver
2
 *
3
 *  Copyright (C) 2014 Renesas Electronics Corporation
4
 *  Copyright (C) 2006-2012 Nobuhiro Iwamatsu
5
 *  Copyright (C) 2008-2014 Renesas Solutions Corp.
6
 *  Copyright (C) 2013-2017 Cogent Embedded, Inc.
B
Ben Dooks 已提交
7
 *  Copyright (C) 2014 Codethink Limited
8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 *  This program is free software; you can redistribute it and/or modify it
 *  under the terms and conditions of the GNU General Public License,
 *  version 2, as published by the Free Software Foundation.
 *
 *  This program is distributed in the hope it will be useful, but WITHOUT
 *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 *  more details.
 *
 *  The full GNU General Public License is included in this distribution in
 *  the file called "COPYING".
 */

Y
Yoshihiro Shimoda 已提交
22 23 24
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/spinlock.h>
25
#include <linux/interrupt.h>
26 27 28 29 30 31
#include <linux/dma-mapping.h>
#include <linux/etherdevice.h>
#include <linux/delay.h>
#include <linux/platform_device.h>
#include <linux/mdio-bitbang.h>
#include <linux/netdevice.h>
32 33 34 35
#include <linux/of.h>
#include <linux/of_device.h>
#include <linux/of_irq.h>
#include <linux/of_net.h>
36 37 38
#include <linux/phy.h>
#include <linux/cache.h>
#include <linux/io.h>
39
#include <linux/pm_runtime.h>
40
#include <linux/slab.h>
41
#include <linux/ethtool.h>
42
#include <linux/if_vlan.h>
43
#include <linux/sh_eth.h>
B
Ben Dooks 已提交
44
#include <linux/of_mdio.h>
45 46 47

#include "sh_eth.h"

48 49 50 51 52 53
#define SH_ETH_DEF_MSG_ENABLE \
		(NETIF_MSG_LINK	| \
		NETIF_MSG_TIMER	| \
		NETIF_MSG_RX_ERR| \
		NETIF_MSG_TX_ERR)

54 55
#define SH_ETH_OFFSET_INVALID	((u16)~0)

56 57 58
#define SH_ETH_OFFSET_DEFAULTS			\
	[0 ... SH_ETH_MAX_REGISTER_OFFSET - 1] = SH_ETH_OFFSET_INVALID

59
static const u16 sh_eth_offset_gigabit[SH_ETH_MAX_REGISTER_OFFSET] = {
60 61
	SH_ETH_OFFSET_DEFAULTS,

62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
	[EDSR]		= 0x0000,
	[EDMR]		= 0x0400,
	[EDTRR]		= 0x0408,
	[EDRRR]		= 0x0410,
	[EESR]		= 0x0428,
	[EESIPR]	= 0x0430,
	[TDLAR]		= 0x0010,
	[TDFAR]		= 0x0014,
	[TDFXR]		= 0x0018,
	[TDFFR]		= 0x001c,
	[RDLAR]		= 0x0030,
	[RDFAR]		= 0x0034,
	[RDFXR]		= 0x0038,
	[RDFFR]		= 0x003c,
	[TRSCER]	= 0x0438,
	[RMFCR]		= 0x0440,
	[TFTR]		= 0x0448,
	[FDR]		= 0x0450,
	[RMCR]		= 0x0458,
	[RPADIR]	= 0x0460,
	[FCFTR]		= 0x0468,
	[CSMR]		= 0x04E4,

	[ECMR]		= 0x0500,
	[ECSR]		= 0x0510,
	[ECSIPR]	= 0x0518,
	[PIR]		= 0x0520,
	[PSR]		= 0x0528,
	[PIPR]		= 0x052c,
	[RFLR]		= 0x0508,
	[APR]		= 0x0554,
	[MPR]		= 0x0558,
	[PFTCR]		= 0x055c,
	[PFRCR]		= 0x0560,
	[TPAUSER]	= 0x0564,
	[GECMR]		= 0x05b0,
	[BCULR]		= 0x05b4,
	[MAHR]		= 0x05c0,
	[MALR]		= 0x05c8,
	[TROCR]		= 0x0700,
	[CDCR]		= 0x0708,
	[LCCR]		= 0x0710,
	[CEFCR]		= 0x0740,
	[FRECR]		= 0x0748,
	[TSFRCR]	= 0x0750,
	[TLFRCR]	= 0x0758,
	[RFCR]		= 0x0760,
	[CERCR]		= 0x0768,
	[CEECR]		= 0x0770,
	[MAFCR]		= 0x0778,
	[RMII_MII]	= 0x0790,

	[ARSTR]		= 0x0000,
	[TSU_CTRST]	= 0x0004,
	[TSU_FWEN0]	= 0x0010,
	[TSU_FWEN1]	= 0x0014,
	[TSU_FCM]	= 0x0018,
	[TSU_BSYSL0]	= 0x0020,
	[TSU_BSYSL1]	= 0x0024,
	[TSU_PRISL0]	= 0x0028,
	[TSU_PRISL1]	= 0x002c,
	[TSU_FWSL0]	= 0x0030,
	[TSU_FWSL1]	= 0x0034,
	[TSU_FWSLC]	= 0x0038,
126 127
	[TSU_QTAGM0]	= 0x0040,
	[TSU_QTAGM1]	= 0x0044,
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
	[TSU_FWSR]	= 0x0050,
	[TSU_FWINMK]	= 0x0054,
	[TSU_ADQT0]	= 0x0048,
	[TSU_ADQT1]	= 0x004c,
	[TSU_VTAG0]	= 0x0058,
	[TSU_VTAG1]	= 0x005c,
	[TSU_ADSBSY]	= 0x0060,
	[TSU_TEN]	= 0x0064,
	[TSU_POST1]	= 0x0070,
	[TSU_POST2]	= 0x0074,
	[TSU_POST3]	= 0x0078,
	[TSU_POST4]	= 0x007c,
	[TSU_ADRH0]	= 0x0100,

	[TXNLCR0]	= 0x0080,
	[TXALCR0]	= 0x0084,
	[RXNLCR0]	= 0x0088,
	[RXALCR0]	= 0x008c,
	[FWNLCR0]	= 0x0090,
	[FWALCR0]	= 0x0094,
	[TXNLCR1]	= 0x00a0,
S
Sergei Shtylyov 已提交
149
	[TXALCR1]	= 0x00a4,
150 151 152 153 154 155
	[RXNLCR1]	= 0x00a8,
	[RXALCR1]	= 0x00ac,
	[FWNLCR1]	= 0x00b0,
	[FWALCR1]	= 0x00b4,
};

S
Simon Horman 已提交
156
static const u16 sh_eth_offset_fast_rz[SH_ETH_MAX_REGISTER_OFFSET] = {
157 158
	SH_ETH_OFFSET_DEFAULTS,

S
Simon Horman 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
	[EDSR]		= 0x0000,
	[EDMR]		= 0x0400,
	[EDTRR]		= 0x0408,
	[EDRRR]		= 0x0410,
	[EESR]		= 0x0428,
	[EESIPR]	= 0x0430,
	[TDLAR]		= 0x0010,
	[TDFAR]		= 0x0014,
	[TDFXR]		= 0x0018,
	[TDFFR]		= 0x001c,
	[RDLAR]		= 0x0030,
	[RDFAR]		= 0x0034,
	[RDFXR]		= 0x0038,
	[RDFFR]		= 0x003c,
	[TRSCER]	= 0x0438,
	[RMFCR]		= 0x0440,
	[TFTR]		= 0x0448,
	[FDR]		= 0x0450,
	[RMCR]		= 0x0458,
	[RPADIR]	= 0x0460,
	[FCFTR]		= 0x0468,
	[CSMR]		= 0x04E4,

	[ECMR]		= 0x0500,
	[RFLR]		= 0x0508,
	[ECSR]		= 0x0510,
	[ECSIPR]	= 0x0518,
	[PIR]		= 0x0520,
	[APR]		= 0x0554,
	[MPR]		= 0x0558,
	[PFTCR]		= 0x055c,
	[PFRCR]		= 0x0560,
	[TPAUSER]	= 0x0564,
	[MAHR]		= 0x05c0,
	[MALR]		= 0x05c8,
	[CEFCR]		= 0x0740,
	[FRECR]		= 0x0748,
	[TSFRCR]	= 0x0750,
	[TLFRCR]	= 0x0758,
	[RFCR]		= 0x0760,
	[MAFCR]		= 0x0778,

	[ARSTR]		= 0x0000,
	[TSU_CTRST]	= 0x0004,
203
	[TSU_FWSLC]	= 0x0038,
S
Simon Horman 已提交
204 205 206
	[TSU_VTAG0]	= 0x0058,
	[TSU_ADSBSY]	= 0x0060,
	[TSU_TEN]	= 0x0064,
207 208 209 210
	[TSU_POST1]	= 0x0070,
	[TSU_POST2]	= 0x0074,
	[TSU_POST3]	= 0x0078,
	[TSU_POST4]	= 0x007c,
S
Simon Horman 已提交
211 212 213 214 215 216 217 218
	[TSU_ADRH0]	= 0x0100,

	[TXNLCR0]	= 0x0080,
	[TXALCR0]	= 0x0084,
	[RXNLCR0]	= 0x0088,
	[RXALCR0]	= 0x008C,
};

219
static const u16 sh_eth_offset_fast_rcar[SH_ETH_MAX_REGISTER_OFFSET] = {
220 221
	SH_ETH_OFFSET_DEFAULTS,

222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
	[ECMR]		= 0x0300,
	[RFLR]		= 0x0308,
	[ECSR]		= 0x0310,
	[ECSIPR]	= 0x0318,
	[PIR]		= 0x0320,
	[PSR]		= 0x0328,
	[RDMLR]		= 0x0340,
	[IPGR]		= 0x0350,
	[APR]		= 0x0354,
	[MPR]		= 0x0358,
	[RFCF]		= 0x0360,
	[TPAUSER]	= 0x0364,
	[TPAUSECR]	= 0x0368,
	[MAHR]		= 0x03c0,
	[MALR]		= 0x03c8,
	[TROCR]		= 0x03d0,
	[CDCR]		= 0x03d4,
	[LCCR]		= 0x03d8,
	[CNDCR]		= 0x03dc,
	[CEFCR]		= 0x03e4,
	[FRECR]		= 0x03e8,
	[TSFRCR]	= 0x03ec,
	[TLFRCR]	= 0x03f0,
	[RFCR]		= 0x03f4,
	[MAFCR]		= 0x03f8,

	[EDMR]		= 0x0200,
	[EDTRR]		= 0x0208,
	[EDRRR]		= 0x0210,
	[TDLAR]		= 0x0218,
	[RDLAR]		= 0x0220,
	[EESR]		= 0x0228,
	[EESIPR]	= 0x0230,
	[TRSCER]	= 0x0238,
	[RMFCR]		= 0x0240,
	[TFTR]		= 0x0248,
	[FDR]		= 0x0250,
	[RMCR]		= 0x0258,
	[TFUCR]		= 0x0264,
	[RFOCR]		= 0x0268,
262
	[RMIIMODE]      = 0x026c,
263 264 265 266
	[FCFTR]		= 0x0270,
	[TRIMD]		= 0x027c,
};

267
static const u16 sh_eth_offset_fast_sh4[SH_ETH_MAX_REGISTER_OFFSET] = {
268 269
	SH_ETH_OFFSET_DEFAULTS,

270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
	[ECMR]		= 0x0100,
	[RFLR]		= 0x0108,
	[ECSR]		= 0x0110,
	[ECSIPR]	= 0x0118,
	[PIR]		= 0x0120,
	[PSR]		= 0x0128,
	[RDMLR]		= 0x0140,
	[IPGR]		= 0x0150,
	[APR]		= 0x0154,
	[MPR]		= 0x0158,
	[TPAUSER]	= 0x0164,
	[RFCF]		= 0x0160,
	[TPAUSECR]	= 0x0168,
	[BCFRR]		= 0x016c,
	[MAHR]		= 0x01c0,
	[MALR]		= 0x01c8,
	[TROCR]		= 0x01d0,
	[CDCR]		= 0x01d4,
	[LCCR]		= 0x01d8,
	[CNDCR]		= 0x01dc,
	[CEFCR]		= 0x01e4,
	[FRECR]		= 0x01e8,
	[TSFRCR]	= 0x01ec,
	[TLFRCR]	= 0x01f0,
	[RFCR]		= 0x01f4,
	[MAFCR]		= 0x01f8,
	[RTRATE]	= 0x01fc,

	[EDMR]		= 0x0000,
	[EDTRR]		= 0x0008,
	[EDRRR]		= 0x0010,
	[TDLAR]		= 0x0018,
	[RDLAR]		= 0x0020,
	[EESR]		= 0x0028,
	[EESIPR]	= 0x0030,
	[TRSCER]	= 0x0038,
	[RMFCR]		= 0x0040,
	[TFTR]		= 0x0048,
	[FDR]		= 0x0050,
	[RMCR]		= 0x0058,
	[TFUCR]		= 0x0064,
	[RFOCR]		= 0x0068,
	[FCFTR]		= 0x0070,
	[RPADIR]	= 0x0078,
	[TRIMD]		= 0x007c,
	[RBWAR]		= 0x00c8,
	[RDFAR]		= 0x00cc,
	[TBRAR]		= 0x00d4,
	[TDFAR]		= 0x00d8,
};

static const u16 sh_eth_offset_fast_sh3_sh2[SH_ETH_MAX_REGISTER_OFFSET] = {
322 323
	SH_ETH_OFFSET_DEFAULTS,

324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
	[EDMR]		= 0x0000,
	[EDTRR]		= 0x0004,
	[EDRRR]		= 0x0008,
	[TDLAR]		= 0x000c,
	[RDLAR]		= 0x0010,
	[EESR]		= 0x0014,
	[EESIPR]	= 0x0018,
	[TRSCER]	= 0x001c,
	[RMFCR]		= 0x0020,
	[TFTR]		= 0x0024,
	[FDR]		= 0x0028,
	[RMCR]		= 0x002c,
	[EDOCR]		= 0x0030,
	[FCFTR]		= 0x0034,
	[RPADIR]	= 0x0038,
	[TRIMD]		= 0x003c,
	[RBWAR]		= 0x0040,
	[RDFAR]		= 0x0044,
	[TBRAR]		= 0x004c,
	[TDFAR]		= 0x0050,

345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
	[ECMR]		= 0x0160,
	[ECSR]		= 0x0164,
	[ECSIPR]	= 0x0168,
	[PIR]		= 0x016c,
	[MAHR]		= 0x0170,
	[MALR]		= 0x0174,
	[RFLR]		= 0x0178,
	[PSR]		= 0x017c,
	[TROCR]		= 0x0180,
	[CDCR]		= 0x0184,
	[LCCR]		= 0x0188,
	[CNDCR]		= 0x018c,
	[CEFCR]		= 0x0194,
	[FRECR]		= 0x0198,
	[TSFRCR]	= 0x019c,
	[TLFRCR]	= 0x01a0,
	[RFCR]		= 0x01a4,
	[MAFCR]		= 0x01a8,
	[IPGR]		= 0x01b4,
	[APR]		= 0x01b8,
	[MPR]		= 0x01bc,
	[TPAUSER]	= 0x01c4,
	[BCFR]		= 0x01cc,

	[ARSTR]		= 0x0000,
	[TSU_CTRST]	= 0x0004,
	[TSU_FWEN0]	= 0x0010,
	[TSU_FWEN1]	= 0x0014,
	[TSU_FCM]	= 0x0018,
	[TSU_BSYSL0]	= 0x0020,
	[TSU_BSYSL1]	= 0x0024,
	[TSU_PRISL0]	= 0x0028,
	[TSU_PRISL1]	= 0x002c,
	[TSU_FWSL0]	= 0x0030,
	[TSU_FWSL1]	= 0x0034,
	[TSU_FWSLC]	= 0x0038,
	[TSU_QTAGM0]	= 0x0040,
	[TSU_QTAGM1]	= 0x0044,
	[TSU_ADQT0]	= 0x0048,
	[TSU_ADQT1]	= 0x004c,
	[TSU_FWSR]	= 0x0050,
	[TSU_FWINMK]	= 0x0054,
	[TSU_ADSBSY]	= 0x0060,
	[TSU_TEN]	= 0x0064,
	[TSU_POST1]	= 0x0070,
	[TSU_POST2]	= 0x0074,
	[TSU_POST3]	= 0x0078,
	[TSU_POST4]	= 0x007c,

	[TXNLCR0]	= 0x0080,
	[TXALCR0]	= 0x0084,
	[RXNLCR0]	= 0x0088,
	[RXALCR0]	= 0x008c,
	[FWNLCR0]	= 0x0090,
	[FWALCR0]	= 0x0094,
	[TXNLCR1]	= 0x00a0,
S
Sergei Shtylyov 已提交
401
	[TXALCR1]	= 0x00a4,
402 403 404 405 406 407 408 409
	[RXNLCR1]	= 0x00a8,
	[RXALCR1]	= 0x00ac,
	[FWNLCR1]	= 0x00b0,
	[FWALCR1]	= 0x00b4,

	[TSU_ADRH0]	= 0x0100,
};

410 411 412
static void sh_eth_rcv_snd_disable(struct net_device *ndev);
static struct net_device_stats *sh_eth_get_stats(struct net_device *ndev);

413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
static void sh_eth_write(struct net_device *ndev, u32 data, int enum_index)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	u16 offset = mdp->reg_offset[enum_index];

	if (WARN_ON(offset == SH_ETH_OFFSET_INVALID))
		return;

	iowrite32(data, mdp->addr + offset);
}

static u32 sh_eth_read(struct net_device *ndev, int enum_index)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	u16 offset = mdp->reg_offset[enum_index];

	if (WARN_ON(offset == SH_ETH_OFFSET_INVALID))
		return ~0U;

	return ioread32(mdp->addr + offset);
}

435 436 437 438 439 440 441
static void sh_eth_modify(struct net_device *ndev, int enum_index, u32 clear,
			  u32 set)
{
	sh_eth_write(ndev, (sh_eth_read(ndev, enum_index) & ~clear) | set,
		     enum_index);
}

442 443 444
static void sh_eth_tsu_write(struct sh_eth_private *mdp, u32 data,
			     int enum_index)
{
445 446 447 448 449 450
	u16 offset = mdp->reg_offset[enum_index];

	if (WARN_ON(offset == SH_ETH_OFFSET_INVALID))
		return;

	iowrite32(data, mdp->tsu_addr + offset);
451 452 453 454
}

static u32 sh_eth_tsu_read(struct sh_eth_private *mdp, int enum_index)
{
455 456 457 458 459 460
	u16 offset = mdp->reg_offset[enum_index];

	if (WARN_ON(offset == SH_ETH_OFFSET_INVALID))
		return ~0U;

	return ioread32(mdp->tsu_addr + offset);
461 462
}

463 464 465 466
static void sh_eth_soft_swap(char *src, int len)
{
#ifdef __LITTLE_ENDIAN
	u32 *p = (u32 *)src;
467
	u32 *maxp = p + DIV_ROUND_UP(len, sizeof(u32));
468 469 470 471 472 473

	for (; p < maxp; p++)
		*p = swab32(*p);
#endif
}

474
static void sh_eth_select_mii(struct net_device *ndev)
475 476
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
477
	u32 value;
478 479

	switch (mdp->phy_interface) {
S
Sergei Shtylyov 已提交
480 481 482
	case PHY_INTERFACE_MODE_RGMII ... PHY_INTERFACE_MODE_RGMII_TXID:
		value = 0x3;
		break;
483 484 485 486 487 488 489 490 491 492
	case PHY_INTERFACE_MODE_GMII:
		value = 0x2;
		break;
	case PHY_INTERFACE_MODE_MII:
		value = 0x1;
		break;
	case PHY_INTERFACE_MODE_RMII:
		value = 0x0;
		break;
	default:
493 494
		netdev_warn(ndev,
			    "PHY interface mode was not setup. Set to MII.\n");
495 496 497 498 499 500 501
		value = 0x1;
		break;
	}

	sh_eth_write(ndev, value, RMII_MII);
}

502
static void sh_eth_set_duplex(struct net_device *ndev)
503 504 505
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

506
	sh_eth_modify(ndev, ECMR, ECMR_DM, mdp->duplex ? ECMR_DM : 0);
507 508
}

509 510 511 512 513
static void sh_eth_chip_reset(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

	/* reset device */
514
	sh_eth_tsu_write(mdp, ARSTR_ARST, ARSTR);
515 516 517
	mdelay(1);
}

518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
static int sh_eth_soft_reset(struct net_device *ndev)
{
	sh_eth_modify(ndev, EDMR, EDMR_SRST_ETHER, EDMR_SRST_ETHER);
	mdelay(3);
	sh_eth_modify(ndev, EDMR, EDMR_SRST_ETHER, 0);

	return 0;
}

static int sh_eth_check_soft_reset(struct net_device *ndev)
{
	int cnt;

	for (cnt = 100; cnt > 0; cnt--) {
		if (!(sh_eth_read(ndev, EDMR) & EDMR_SRST_GETHER))
			return 0;
		mdelay(1);
	}

	netdev_err(ndev, "Device reset failed\n");
	return -ETIMEDOUT;
}

static int sh_eth_soft_reset_gether(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	int ret;

	sh_eth_write(ndev, EDSR_ENALL, EDSR);
	sh_eth_modify(ndev, EDMR, EDMR_SRST_GETHER, EDMR_SRST_GETHER);

	ret = sh_eth_check_soft_reset(ndev);
	if (ret)
		return ret;

	/* Table Init */
	sh_eth_write(ndev, 0, TDLAR);
	sh_eth_write(ndev, 0, TDFAR);
	sh_eth_write(ndev, 0, TDFXR);
	sh_eth_write(ndev, 0, TDFFR);
	sh_eth_write(ndev, 0, RDLAR);
	sh_eth_write(ndev, 0, RDFAR);
	sh_eth_write(ndev, 0, RDFXR);
	sh_eth_write(ndev, 0, RDFFR);

	/* Reset HW CRC register */
	if (mdp->cd->hw_checksum)
		sh_eth_write(ndev, 0, CSMR);

	/* Select MII mode */
	if (mdp->cd->select_mii)
		sh_eth_select_mii(ndev);

	return ret;
}

574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
static void sh_eth_set_rate_gether(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

	switch (mdp->speed) {
	case 10: /* 10BASE */
		sh_eth_write(ndev, GECMR_10, GECMR);
		break;
	case 100:/* 100BASE */
		sh_eth_write(ndev, GECMR_100, GECMR);
		break;
	case 1000: /* 1000BASE */
		sh_eth_write(ndev, GECMR_1000, GECMR);
		break;
	}
}

591 592 593
#ifdef CONFIG_OF
/* R7S72100 */
static struct sh_eth_cpu_data r7s72100_data = {
594 595
	.soft_reset	= sh_eth_soft_reset_gether,

596 597 598 599 600
	.chip_reset	= sh_eth_chip_reset,
	.set_duplex	= sh_eth_set_duplex,

	.register_type	= SH_ETH_REG_FAST_RZ,

601
	.edtrr_trns	= EDTRR_TRNS_GETHER,
602 603
	.ecsr_value	= ECSR_ICD,
	.ecsipr_value	= ECSIPR_ICDIP,
604 605 606 607 608 609 610 611
	.eesipr_value	= EESIPR_TWB1IP | EESIPR_TWBIP | EESIPR_TC1IP |
			  EESIPR_TABTIP | EESIPR_RABTIP | EESIPR_RFCOFIP |
			  EESIPR_ECIIP |
			  EESIPR_FTCIP | EESIPR_TDEIP | EESIPR_TFUFIP |
			  EESIPR_FRIP | EESIPR_RDEIP | EESIPR_RFOFIP |
			  EESIPR_RMAFIP | EESIPR_RRFIP |
			  EESIPR_RTLFIP | EESIPR_RTSFIP |
			  EESIPR_PREIP | EESIPR_CERFIP,
612 613 614 615

	.tx_check	= EESR_TC1 | EESR_FTC,
	.eesr_err_check	= EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_RABT |
			  EESR_RFE | EESR_RDE | EESR_RFRMER | EESR_TFE |
616
			  EESR_TDE,
617 618 619 620 621 622 623 624 625 626 627
	.fdr_value	= 0x0000070f,

	.no_psr		= 1,
	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.hw_swap	= 1,
	.rpadir		= 1,
	.rpadir_value   = 2 << 16,
	.no_trimd	= 1,
	.no_ade		= 1,
628
	.xdfar_rw	= 1,
629
	.hw_checksum	= 1,
630
	.tsu		= 1,
631
	.no_tx_cntrs	= 1,
632
};
633 634 635

static void sh_eth_chip_reset_r8a7740(struct net_device *ndev)
{
636
	sh_eth_chip_reset(ndev);
637 638 639 640 641 642

	sh_eth_select_mii(ndev);
}

/* R8A7740 */
static struct sh_eth_cpu_data r8a7740_data = {
643 644
	.soft_reset	= sh_eth_soft_reset_gether,

645 646 647 648 649 650
	.chip_reset	= sh_eth_chip_reset_r8a7740,
	.set_duplex	= sh_eth_set_duplex,
	.set_rate	= sh_eth_set_rate_gether,

	.register_type	= SH_ETH_REG_GIGABIT,

651
	.edtrr_trns	= EDTRR_TRNS_GETHER,
652 653
	.ecsr_value	= ECSR_ICD | ECSR_MPD,
	.ecsipr_value	= ECSIPR_LCHNGIP | ECSIPR_ICDIP | ECSIPR_MPDIP,
654 655 656 657 658 659 660 661
	.eesipr_value	= EESIPR_RFCOFIP | EESIPR_ECIIP |
			  EESIPR_FTCIP | EESIPR_TDEIP | EESIPR_TFUFIP |
			  EESIPR_FRIP | EESIPR_RDEIP | EESIPR_RFOFIP |
			  0x0000f000 | EESIPR_CNDIP | EESIPR_DLCIP |
			  EESIPR_CDIP | EESIPR_TROIP | EESIPR_RMAFIP |
			  EESIPR_CEEFIP | EESIPR_CELFIP |
			  EESIPR_RRFIP | EESIPR_RTLFIP | EESIPR_RTSFIP |
			  EESIPR_PREIP | EESIPR_CERFIP,
662 663 664 665

	.tx_check	= EESR_TC1 | EESR_FTC,
	.eesr_err_check	= EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_RABT |
			  EESR_RFE | EESR_RDE | EESR_RFRMER | EESR_TFE |
666
			  EESR_TDE,
667 668 669 670 671 672 673 674 675 676 677
	.fdr_value	= 0x0000070f,

	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.bculr		= 1,
	.hw_swap	= 1,
	.rpadir		= 1,
	.rpadir_value   = 2 << 16,
	.no_trimd	= 1,
	.no_ade		= 1,
678
	.xdfar_rw	= 1,
679
	.hw_checksum	= 1,
680 681
	.tsu		= 1,
	.select_mii	= 1,
682
	.magic		= 1,
683
	.cexcr		= 1,
684
};
685

686
/* There is CPU dependent code */
687
static void sh_eth_set_rate_rcar(struct net_device *ndev)
688 689
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
690

691 692
	switch (mdp->speed) {
	case 10: /* 10BASE */
693
		sh_eth_modify(ndev, ECMR, ECMR_ELB, 0);
694 695
		break;
	case 100:/* 100BASE */
696
		sh_eth_modify(ndev, ECMR, ECMR_ELB, ECMR_ELB);
697 698 699 700
		break;
	}
}

701 702
/* R-Car Gen1 */
static struct sh_eth_cpu_data rcar_gen1_data = {
703 704
	.soft_reset	= sh_eth_soft_reset,

705
	.set_duplex	= sh_eth_set_duplex,
706
	.set_rate	= sh_eth_set_rate_rcar,
707

708 709
	.register_type	= SH_ETH_REG_FAST_RCAR,

710
	.edtrr_trns	= EDTRR_TRNS_ETHER,
711 712
	.ecsr_value	= ECSR_PSRTO | ECSR_LCHNG | ECSR_ICD,
	.ecsipr_value	= ECSIPR_PSRTOIP | ECSIPR_LCHNGIP | ECSIPR_ICDIP,
713 714 715 716 717 718
	.eesipr_value	= EESIPR_RFCOFIP | EESIPR_ADEIP | EESIPR_ECIIP |
			  EESIPR_FTCIP | EESIPR_TDEIP | EESIPR_TFUFIP |
			  EESIPR_FRIP | EESIPR_RDEIP | EESIPR_RFOFIP |
			  EESIPR_RMAFIP | EESIPR_RRFIP |
			  EESIPR_RTLFIP | EESIPR_RTSFIP |
			  EESIPR_PREIP | EESIPR_CERFIP,
719

720
	.tx_check	= EESR_FTC | EESR_CND | EESR_DLC | EESR_CD | EESR_TRO,
721
	.eesr_err_check	= EESR_TWB | EESR_TABT | EESR_RABT | EESR_RFE |
722
			  EESR_RDE | EESR_RFRMER | EESR_TFE | EESR_TDE,
723
	.fdr_value	= 0x00000f0f,
724 725 726 727 728

	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.hw_swap	= 1,
729
	.no_xdfar	= 1,
730 731
};

732 733
/* R-Car Gen2 and RZ/G1 */
static struct sh_eth_cpu_data rcar_gen2_data = {
734 735
	.soft_reset	= sh_eth_soft_reset,

736
	.set_duplex	= sh_eth_set_duplex,
737
	.set_rate	= sh_eth_set_rate_rcar,
738

739 740
	.register_type	= SH_ETH_REG_FAST_RCAR,

741
	.edtrr_trns	= EDTRR_TRNS_ETHER,
742 743 744
	.ecsr_value	= ECSR_PSRTO | ECSR_LCHNG | ECSR_ICD | ECSR_MPD,
	.ecsipr_value	= ECSIPR_PSRTOIP | ECSIPR_LCHNGIP | ECSIPR_ICDIP |
			  ECSIPR_MPDIP,
745 746 747 748 749 750
	.eesipr_value	= EESIPR_RFCOFIP | EESIPR_ADEIP | EESIPR_ECIIP |
			  EESIPR_FTCIP | EESIPR_TDEIP | EESIPR_TFUFIP |
			  EESIPR_FRIP | EESIPR_RDEIP | EESIPR_RFOFIP |
			  EESIPR_RMAFIP | EESIPR_RRFIP |
			  EESIPR_RTLFIP | EESIPR_RTSFIP |
			  EESIPR_PREIP | EESIPR_CERFIP,
751

752
	.tx_check	= EESR_FTC | EESR_CND | EESR_DLC | EESR_CD | EESR_TRO,
753
	.eesr_err_check	= EESR_TWB | EESR_TABT | EESR_RABT | EESR_RFE |
754
			  EESR_RDE | EESR_RFRMER | EESR_TFE | EESR_TDE,
755
	.fdr_value	= 0x00000f0f,
756

757 758
	.trscer_err_mask = DESC_I_RINT8,

759 760 761 762
	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.hw_swap	= 1,
763
	.no_xdfar	= 1,
764
	.rmiimode	= 1,
765
	.magic		= 1,
766
};
S
Sergei Shtylyov 已提交
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787

/* R8A77980 */
static struct sh_eth_cpu_data r8a77980_data = {
	.soft_reset	= sh_eth_soft_reset_gether,

	.set_duplex	= sh_eth_set_duplex,
	.set_rate	= sh_eth_set_rate_gether,

	.register_type  = SH_ETH_REG_GIGABIT,

	.edtrr_trns	= EDTRR_TRNS_GETHER,
	.ecsr_value	= ECSR_PSRTO | ECSR_LCHNG | ECSR_ICD | ECSR_MPD,
	.ecsipr_value	= ECSIPR_PSRTOIP | ECSIPR_LCHNGIP | ECSIPR_ICDIP |
			  ECSIPR_MPDIP,
	.eesipr_value	= EESIPR_RFCOFIP | EESIPR_ECIIP |
			  EESIPR_FTCIP | EESIPR_TDEIP | EESIPR_TFUFIP |
			  EESIPR_FRIP | EESIPR_RDEIP | EESIPR_RFOFIP |
			  EESIPR_RMAFIP | EESIPR_RRFIP |
			  EESIPR_RTLFIP | EESIPR_RTSFIP |
			  EESIPR_PREIP | EESIPR_CERFIP,

788
	.tx_check       = EESR_FTC | EESR_CD | EESR_TRO,
S
Sergei Shtylyov 已提交
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
	.eesr_err_check = EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_RABT |
			  EESR_RFE | EESR_RDE | EESR_RFRMER |
			  EESR_TFE | EESR_TDE | EESR_ECI,
	.fdr_value	= 0x0000070f,

	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.bculr		= 1,
	.hw_swap	= 1,
	.nbst		= 1,
	.rpadir		= 1,
	.rpadir_value   = 2 << 16,
	.no_trimd	= 1,
	.no_ade		= 1,
	.xdfar_rw	= 1,
	.hw_checksum	= 1,
	.select_mii	= 1,
	.magic		= 1,
	.cexcr		= 1,
};
810
#endif /* CONFIG_OF */
811

812
static void sh_eth_set_rate_sh7724(struct net_device *ndev)
813 814
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
815 816 817

	switch (mdp->speed) {
	case 10: /* 10BASE */
818
		sh_eth_modify(ndev, ECMR, ECMR_RTM, 0);
819 820
		break;
	case 100:/* 100BASE */
821
		sh_eth_modify(ndev, ECMR, ECMR_RTM, ECMR_RTM);
822 823 824 825 826
		break;
	}
}

/* SH7724 */
827
static struct sh_eth_cpu_data sh7724_data = {
828 829
	.soft_reset	= sh_eth_soft_reset,

830
	.set_duplex	= sh_eth_set_duplex,
831
	.set_rate	= sh_eth_set_rate_sh7724,
832

833 834
	.register_type	= SH_ETH_REG_FAST_SH4,

835
	.edtrr_trns	= EDTRR_TRNS_ETHER,
836 837
	.ecsr_value	= ECSR_PSRTO | ECSR_LCHNG | ECSR_ICD,
	.ecsipr_value	= ECSIPR_PSRTOIP | ECSIPR_LCHNGIP | ECSIPR_ICDIP,
838 839 840 841 842 843
	.eesipr_value	= EESIPR_RFCOFIP | EESIPR_ADEIP | EESIPR_ECIIP |
			  EESIPR_FTCIP | EESIPR_TDEIP | EESIPR_TFUFIP |
			  EESIPR_FRIP | EESIPR_RDEIP | EESIPR_RFOFIP |
			  EESIPR_RMAFIP | EESIPR_RRFIP |
			  EESIPR_RTLFIP | EESIPR_RTSFIP |
			  EESIPR_PREIP | EESIPR_CERFIP,
844

845
	.tx_check	= EESR_FTC | EESR_CND | EESR_DLC | EESR_CD | EESR_TRO,
846
	.eesr_err_check	= EESR_TWB | EESR_TABT | EESR_RABT | EESR_RFE |
847
			  EESR_RDE | EESR_RFRMER | EESR_TFE | EESR_TDE,
848 849 850 851 852

	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.hw_swap	= 1,
853 854
	.rpadir		= 1,
	.rpadir_value	= 0x00020000, /* NET_IP_ALIGN assumed to be 2 */
855
};
856

857
static void sh_eth_set_rate_sh7757(struct net_device *ndev)
858 859 860 861 862
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

	switch (mdp->speed) {
	case 10: /* 10BASE */
863
		sh_eth_write(ndev, 0, RTRATE);
864 865
		break;
	case 100:/* 100BASE */
866
		sh_eth_write(ndev, 1, RTRATE);
867 868 869 870 871
		break;
	}
}

/* SH7757 */
872
static struct sh_eth_cpu_data sh7757_data = {
873 874
	.soft_reset	= sh_eth_soft_reset,

875 876
	.set_duplex	= sh_eth_set_duplex,
	.set_rate	= sh_eth_set_rate_sh7757,
877

878 879
	.register_type	= SH_ETH_REG_FAST_SH4,

880
	.edtrr_trns	= EDTRR_TRNS_ETHER,
881 882 883 884 885 886 887 888
	.eesipr_value	= EESIPR_RFCOFIP | EESIPR_ECIIP |
			  EESIPR_FTCIP | EESIPR_TDEIP | EESIPR_TFUFIP |
			  EESIPR_FRIP | EESIPR_RDEIP | EESIPR_RFOFIP |
			  0x0000f000 | EESIPR_CNDIP | EESIPR_DLCIP |
			  EESIPR_CDIP | EESIPR_TROIP | EESIPR_RMAFIP |
			  EESIPR_CEEFIP | EESIPR_CELFIP |
			  EESIPR_RRFIP | EESIPR_RTLFIP | EESIPR_RTSFIP |
			  EESIPR_PREIP | EESIPR_CERFIP,
889

890
	.tx_check	= EESR_FTC | EESR_CND | EESR_DLC | EESR_CD | EESR_TRO,
891
	.eesr_err_check	= EESR_TWB | EESR_TABT | EESR_RABT | EESR_RFE |
892
			  EESR_RDE | EESR_RFRMER | EESR_TFE | EESR_TDE,
893

894
	.irq_flags	= IRQF_SHARED,
895 896 897 898 899
	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.hw_swap	= 1,
	.no_ade		= 1,
900 901
	.rpadir		= 1,
	.rpadir_value   = 2 << 16,
902
	.rtrate		= 1,
903
	.dual_port	= 1,
904
};
905

906
#define SH_GIGA_ETH_BASE	0xfee00000UL
907 908 909 910
#define GIGA_MALR(port)		(SH_GIGA_ETH_BASE + 0x800 * (port) + 0x05c8)
#define GIGA_MAHR(port)		(SH_GIGA_ETH_BASE + 0x800 * (port) + 0x05c0)
static void sh_eth_chip_reset_giga(struct net_device *ndev)
{
911
	u32 mahr[2], malr[2];
912
	int i;
913 914 915

	/* save MAHR and MALR */
	for (i = 0; i < 2; i++) {
Y
Yoshihiro Shimoda 已提交
916 917
		malr[i] = ioread32((void *)GIGA_MALR(i));
		mahr[i] = ioread32((void *)GIGA_MAHR(i));
918 919
	}

920
	sh_eth_chip_reset(ndev);
921 922 923

	/* restore MAHR and MALR */
	for (i = 0; i < 2; i++) {
Y
Yoshihiro Shimoda 已提交
924 925
		iowrite32(malr[i], (void *)GIGA_MALR(i));
		iowrite32(mahr[i], (void *)GIGA_MAHR(i));
926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946
	}
}

static void sh_eth_set_rate_giga(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

	switch (mdp->speed) {
	case 10: /* 10BASE */
		sh_eth_write(ndev, 0x00000000, GECMR);
		break;
	case 100:/* 100BASE */
		sh_eth_write(ndev, 0x00000010, GECMR);
		break;
	case 1000: /* 1000BASE */
		sh_eth_write(ndev, 0x00000020, GECMR);
		break;
	}
}

/* SH7757(GETHERC) */
947
static struct sh_eth_cpu_data sh7757_data_giga = {
948 949
	.soft_reset	= sh_eth_soft_reset_gether,

950
	.chip_reset	= sh_eth_chip_reset_giga,
951
	.set_duplex	= sh_eth_set_duplex,
952 953
	.set_rate	= sh_eth_set_rate_giga,

954 955
	.register_type	= SH_ETH_REG_GIGABIT,

956
	.edtrr_trns	= EDTRR_TRNS_GETHER,
957 958
	.ecsr_value	= ECSR_ICD | ECSR_MPD,
	.ecsipr_value	= ECSIPR_LCHNGIP | ECSIPR_ICDIP | ECSIPR_MPDIP,
959 960 961 962 963 964 965 966
	.eesipr_value	= EESIPR_RFCOFIP | EESIPR_ECIIP |
			  EESIPR_FTCIP | EESIPR_TDEIP | EESIPR_TFUFIP |
			  EESIPR_FRIP | EESIPR_RDEIP | EESIPR_RFOFIP |
			  0x0000f000 | EESIPR_CNDIP | EESIPR_DLCIP |
			  EESIPR_CDIP | EESIPR_TROIP | EESIPR_RMAFIP |
			  EESIPR_CEEFIP | EESIPR_CELFIP |
			  EESIPR_RRFIP | EESIPR_RTLFIP | EESIPR_RTSFIP |
			  EESIPR_PREIP | EESIPR_CERFIP,
967 968

	.tx_check	= EESR_TC1 | EESR_FTC,
969 970
	.eesr_err_check	= EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_RABT |
			  EESR_RFE | EESR_RDE | EESR_RFRMER | EESR_TFE |
971
			  EESR_TDE,
972 973
	.fdr_value	= 0x0000072f,

974
	.irq_flags	= IRQF_SHARED,
975 976 977 978 979 980 981 982 983
	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.bculr		= 1,
	.hw_swap	= 1,
	.rpadir		= 1,
	.rpadir_value   = 2 << 16,
	.no_trimd	= 1,
	.no_ade		= 1,
984
	.xdfar_rw	= 1,
985
	.tsu		= 1,
986
	.cexcr		= 1,
987
	.dual_port	= 1,
988 989
};

990 991
/* SH7734 */
static struct sh_eth_cpu_data sh7734_data = {
992 993
	.soft_reset	= sh_eth_soft_reset_gether,

994 995
	.chip_reset	= sh_eth_chip_reset,
	.set_duplex	= sh_eth_set_duplex,
996 997
	.set_rate	= sh_eth_set_rate_gether,

998 999
	.register_type	= SH_ETH_REG_GIGABIT,

1000
	.edtrr_trns	= EDTRR_TRNS_GETHER,
1001 1002
	.ecsr_value	= ECSR_ICD | ECSR_MPD,
	.ecsipr_value	= ECSIPR_LCHNGIP | ECSIPR_ICDIP | ECSIPR_MPDIP,
1003 1004 1005 1006 1007 1008 1009
	.eesipr_value	= EESIPR_RFCOFIP | EESIPR_ECIIP |
			  EESIPR_FTCIP | EESIPR_TDEIP | EESIPR_TFUFIP |
			  EESIPR_FRIP | EESIPR_RDEIP | EESIPR_RFOFIP |
			  EESIPR_DLCIP | EESIPR_CDIP | EESIPR_TROIP |
			  EESIPR_RMAFIP | EESIPR_CEEFIP | EESIPR_CELFIP |
			  EESIPR_RRFIP | EESIPR_RTLFIP | EESIPR_RTSFIP |
			  EESIPR_PREIP | EESIPR_CERFIP,
1010 1011

	.tx_check	= EESR_TC1 | EESR_FTC,
1012 1013
	.eesr_err_check	= EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_RABT |
			  EESR_RFE | EESR_RDE | EESR_RFRMER | EESR_TFE |
1014
			  EESR_TDE,
1015 1016 1017 1018 1019 1020 1021 1022

	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.bculr		= 1,
	.hw_swap	= 1,
	.no_trimd	= 1,
	.no_ade		= 1,
1023
	.xdfar_rw	= 1,
1024
	.tsu		= 1,
1025
	.hw_checksum	= 1,
1026
	.select_mii	= 1,
1027
	.magic		= 1,
1028
	.cexcr		= 1,
1029 1030 1031 1032
};

/* SH7763 */
static struct sh_eth_cpu_data sh7763_data = {
1033 1034
	.soft_reset	= sh_eth_soft_reset_gether,

1035 1036 1037
	.chip_reset	= sh_eth_chip_reset,
	.set_duplex	= sh_eth_set_duplex,
	.set_rate	= sh_eth_set_rate_gether,
1038

1039 1040
	.register_type	= SH_ETH_REG_GIGABIT,

1041
	.edtrr_trns	= EDTRR_TRNS_GETHER,
1042 1043
	.ecsr_value	= ECSR_ICD | ECSR_MPD,
	.ecsipr_value	= ECSIPR_LCHNGIP | ECSIPR_ICDIP | ECSIPR_MPDIP,
1044 1045 1046 1047 1048 1049 1050
	.eesipr_value	= EESIPR_RFCOFIP | EESIPR_ECIIP |
			  EESIPR_FTCIP | EESIPR_TDEIP | EESIPR_TFUFIP |
			  EESIPR_FRIP | EESIPR_RDEIP | EESIPR_RFOFIP |
			  EESIPR_DLCIP | EESIPR_CDIP | EESIPR_TROIP |
			  EESIPR_RMAFIP | EESIPR_CEEFIP | EESIPR_CELFIP |
			  EESIPR_RRFIP | EESIPR_RTLFIP | EESIPR_RTSFIP |
			  EESIPR_PREIP | EESIPR_CERFIP,
1051 1052

	.tx_check	= EESR_TC1 | EESR_FTC,
S
Sergei Shtylyov 已提交
1053
	.eesr_err_check	= EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_RABT |
1054
			  EESR_RDE | EESR_RFRMER | EESR_TFE | EESR_TDE,
1055 1056 1057 1058 1059 1060 1061 1062

	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.bculr		= 1,
	.hw_swap	= 1,
	.no_trimd	= 1,
	.no_ade		= 1,
1063
	.xdfar_rw	= 1,
1064
	.tsu		= 1,
1065
	.irq_flags	= IRQF_SHARED,
1066
	.magic		= 1,
1067
	.cexcr		= 1,
1068
	.dual_port	= 1,
1069 1070
};

1071
static struct sh_eth_cpu_data sh7619_data = {
1072 1073
	.soft_reset	= sh_eth_soft_reset,

1074 1075
	.register_type	= SH_ETH_REG_FAST_SH3_SH2,

1076
	.edtrr_trns	= EDTRR_TRNS_ETHER,
1077 1078 1079 1080 1081 1082 1083 1084
	.eesipr_value	= EESIPR_RFCOFIP | EESIPR_ECIIP |
			  EESIPR_FTCIP | EESIPR_TDEIP | EESIPR_TFUFIP |
			  EESIPR_FRIP | EESIPR_RDEIP | EESIPR_RFOFIP |
			  0x0000f000 | EESIPR_CNDIP | EESIPR_DLCIP |
			  EESIPR_CDIP | EESIPR_TROIP | EESIPR_RMAFIP |
			  EESIPR_CEEFIP | EESIPR_CELFIP |
			  EESIPR_RRFIP | EESIPR_RTLFIP | EESIPR_RTSFIP |
			  EESIPR_PREIP | EESIPR_CERFIP,
1085 1086 1087 1088 1089 1090

	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.hw_swap	= 1,
};
1091 1092

static struct sh_eth_cpu_data sh771x_data = {
1093 1094
	.soft_reset	= sh_eth_soft_reset,

1095 1096
	.register_type	= SH_ETH_REG_FAST_SH3_SH2,

1097
	.edtrr_trns	= EDTRR_TRNS_ETHER,
1098 1099 1100 1101 1102 1103 1104 1105
	.eesipr_value	= EESIPR_RFCOFIP | EESIPR_ECIIP |
			  EESIPR_FTCIP | EESIPR_TDEIP | EESIPR_TFUFIP |
			  EESIPR_FRIP | EESIPR_RDEIP | EESIPR_RFOFIP |
			  0x0000f000 | EESIPR_CNDIP | EESIPR_DLCIP |
			  EESIPR_CDIP | EESIPR_TROIP | EESIPR_RMAFIP |
			  EESIPR_CEEFIP | EESIPR_CELFIP |
			  EESIPR_RRFIP | EESIPR_RTLFIP | EESIPR_RTSFIP |
			  EESIPR_PREIP | EESIPR_CERFIP,
1106
	.tsu		= 1,
1107
	.dual_port	= 1,
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
};

static void sh_eth_set_default_cpu_data(struct sh_eth_cpu_data *cd)
{
	if (!cd->ecsr_value)
		cd->ecsr_value = DEFAULT_ECSR_INIT;

	if (!cd->ecsipr_value)
		cd->ecsipr_value = DEFAULT_ECSIPR_INIT;

	if (!cd->fcftr_value)
S
Sergei Shtylyov 已提交
1119
		cd->fcftr_value = DEFAULT_FIFO_F_D_RFF |
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129
				  DEFAULT_FIFO_F_D_RFD;

	if (!cd->fdr_value)
		cd->fdr_value = DEFAULT_FDR_INIT;

	if (!cd->tx_check)
		cd->tx_check = DEFAULT_TX_CHECK;

	if (!cd->eesr_err_check)
		cd->eesr_err_check = DEFAULT_EESR_ERR_CHECK;
1130 1131 1132

	if (!cd->trscer_err_mask)
		cd->trscer_err_mask = DEFAULT_TRSCER_ERR_MASK;
1133 1134 1135 1136
}

static void sh_eth_set_receive_align(struct sk_buff *skb)
{
1137
	uintptr_t reserve = (uintptr_t)skb->data & (SH_ETH_RX_ALIGN - 1);
1138 1139

	if (reserve)
1140
		skb_reserve(skb, SH_ETH_RX_ALIGN - reserve);
1141 1142
}

S
Sergei Shtylyov 已提交
1143
/* Program the hardware MAC address from dev->dev_addr. */
1144 1145
static void update_mac_address(struct net_device *ndev)
{
1146
	sh_eth_write(ndev,
S
Sergei Shtylyov 已提交
1147 1148
		     (ndev->dev_addr[0] << 24) | (ndev->dev_addr[1] << 16) |
		     (ndev->dev_addr[2] << 8) | (ndev->dev_addr[3]), MAHR);
1149
	sh_eth_write(ndev,
S
Sergei Shtylyov 已提交
1150
		     (ndev->dev_addr[4] << 8) | (ndev->dev_addr[5]), MALR);
1151 1152
}

S
Sergei Shtylyov 已提交
1153
/* Get MAC address from SuperH MAC address register
1154 1155 1156 1157 1158 1159
 *
 * SuperH's Ethernet device doesn't have 'ROM' to MAC address.
 * This driver get MAC address that use by bootloader(U-boot or sh-ipl+g).
 * When you want use this device, you must set MAC address in bootloader.
 *
 */
1160
static void read_mac_address(struct net_device *ndev, unsigned char *mac)
1161
{
1162
	if (mac[0] || mac[1] || mac[2] || mac[3] || mac[4] || mac[5]) {
1163
		memcpy(ndev->dev_addr, mac, ETH_ALEN);
1164
	} else {
1165 1166 1167 1168 1169 1170 1171 1172 1173
		u32 mahr = sh_eth_read(ndev, MAHR);
		u32 malr = sh_eth_read(ndev, MALR);

		ndev->dev_addr[0] = (mahr >> 24) & 0xFF;
		ndev->dev_addr[1] = (mahr >> 16) & 0xFF;
		ndev->dev_addr[2] = (mahr >>  8) & 0xFF;
		ndev->dev_addr[3] = (mahr >>  0) & 0xFF;
		ndev->dev_addr[4] = (malr >>  8) & 0xFF;
		ndev->dev_addr[5] = (malr >>  0) & 0xFF;
1174
	}
1175 1176 1177
}

struct bb_info {
Y
Yoshihiro Shimoda 已提交
1178
	void (*set_gate)(void *addr);
1179
	struct mdiobb_ctrl ctrl;
Y
Yoshihiro Shimoda 已提交
1180
	void *addr;
1181 1182
};

1183
static void sh_mdio_ctrl(struct mdiobb_ctrl *ctrl, u32 mask, int set)
1184 1185
{
	struct bb_info *bitbang = container_of(ctrl, struct bb_info, ctrl);
1186
	u32 pir;
1187 1188 1189 1190

	if (bitbang->set_gate)
		bitbang->set_gate(bitbang->addr);

1191
	pir = ioread32(bitbang->addr);
1192
	if (set)
1193
		pir |=  mask;
1194
	else
1195 1196
		pir &= ~mask;
	iowrite32(pir, bitbang->addr);
1197 1198 1199 1200 1201 1202
}

/* Data I/O pin control */
static void sh_mmd_ctrl(struct mdiobb_ctrl *ctrl, int bit)
{
	sh_mdio_ctrl(ctrl, PIR_MMD, bit);
1203 1204 1205 1206 1207
}

/* Set bit data*/
static void sh_set_mdio(struct mdiobb_ctrl *ctrl, int bit)
{
1208
	sh_mdio_ctrl(ctrl, PIR_MDO, bit);
1209 1210 1211 1212 1213 1214
}

/* Get bit data*/
static int sh_get_mdio(struct mdiobb_ctrl *ctrl)
{
	struct bb_info *bitbang = container_of(ctrl, struct bb_info, ctrl);
1215 1216 1217 1218

	if (bitbang->set_gate)
		bitbang->set_gate(bitbang->addr);

1219
	return (ioread32(bitbang->addr) & PIR_MDI) != 0;
1220 1221 1222 1223 1224
}

/* MDC pin control */
static void sh_mdc_ctrl(struct mdiobb_ctrl *ctrl, int bit)
{
1225
	sh_mdio_ctrl(ctrl, PIR_MDC, bit);
1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236
}

/* mdio bus control struct */
static struct mdiobb_ops bb_ops = {
	.owner = THIS_MODULE,
	.set_mdc = sh_mdc_ctrl,
	.set_mdio_dir = sh_mmd_ctrl,
	.set_mdio_data = sh_set_mdio,
	.get_mdio_data = sh_get_mdio,
};

1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258
/* free Tx skb function */
static int sh_eth_tx_free(struct net_device *ndev, bool sent_only)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	struct sh_eth_txdesc *txdesc;
	int free_num = 0;
	int entry;
	bool sent;

	for (; mdp->cur_tx - mdp->dirty_tx > 0; mdp->dirty_tx++) {
		entry = mdp->dirty_tx % mdp->num_tx_ring;
		txdesc = &mdp->tx_ring[entry];
		sent = !(txdesc->status & cpu_to_le32(TD_TACT));
		if (sent_only && !sent)
			break;
		/* TACT bit must be checked before all the following reads */
		dma_rmb();
		netif_info(mdp, tx_done, ndev,
			   "tx entry %d status 0x%08x\n",
			   entry, le32_to_cpu(txdesc->status));
		/* Free the original skb. */
		if (mdp->tx_skbuff[entry]) {
1259 1260
			dma_unmap_single(&mdp->pdev->dev,
					 le32_to_cpu(txdesc->addr),
1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278
					 le32_to_cpu(txdesc->len) >> 16,
					 DMA_TO_DEVICE);
			dev_kfree_skb_irq(mdp->tx_skbuff[entry]);
			mdp->tx_skbuff[entry] = NULL;
			free_num++;
		}
		txdesc->status = cpu_to_le32(TD_TFP);
		if (entry >= mdp->num_tx_ring - 1)
			txdesc->status |= cpu_to_le32(TD_TDLE);

		if (sent) {
			ndev->stats.tx_packets++;
			ndev->stats.tx_bytes += le32_to_cpu(txdesc->len) >> 16;
		}
	}
	return free_num;
}

1279 1280 1281 1282
/* free skb and descriptor buffer */
static void sh_eth_ring_free(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
1283
	int ringsize, i;
1284

1285 1286 1287 1288 1289
	if (mdp->rx_ring) {
		for (i = 0; i < mdp->num_rx_ring; i++) {
			if (mdp->rx_skbuff[i]) {
				struct sh_eth_rxdesc *rxdesc = &mdp->rx_ring[i];

1290
				dma_unmap_single(&mdp->pdev->dev,
1291 1292 1293 1294 1295 1296
						 le32_to_cpu(rxdesc->addr),
						 ALIGN(mdp->rx_buf_sz, 32),
						 DMA_FROM_DEVICE);
			}
		}
		ringsize = sizeof(struct sh_eth_rxdesc) * mdp->num_rx_ring;
1297
		dma_free_coherent(&mdp->pdev->dev, ringsize, mdp->rx_ring,
1298 1299 1300 1301
				  mdp->rx_desc_dma);
		mdp->rx_ring = NULL;
	}

1302 1303
	/* Free Rx skb ringbuffer */
	if (mdp->rx_skbuff) {
1304 1305
		for (i = 0; i < mdp->num_rx_ring; i++)
			dev_kfree_skb(mdp->rx_skbuff[i]);
1306 1307
	}
	kfree(mdp->rx_skbuff);
1308
	mdp->rx_skbuff = NULL;
1309

1310
	if (mdp->tx_ring) {
1311 1312
		sh_eth_tx_free(ndev, false);

1313
		ringsize = sizeof(struct sh_eth_txdesc) * mdp->num_tx_ring;
1314
		dma_free_coherent(&mdp->pdev->dev, ringsize, mdp->tx_ring,
1315 1316 1317
				  mdp->tx_desc_dma);
		mdp->tx_ring = NULL;
	}
1318 1319 1320 1321

	/* Free Tx skb ringbuffer */
	kfree(mdp->tx_skbuff);
	mdp->tx_skbuff = NULL;
1322 1323 1324 1325 1326 1327 1328 1329 1330 1331
}

/* format skb and descriptor buffer */
static void sh_eth_ring_format(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	int i;
	struct sk_buff *skb;
	struct sh_eth_rxdesc *rxdesc = NULL;
	struct sh_eth_txdesc *txdesc = NULL;
1332 1333
	int rx_ringsize = sizeof(*rxdesc) * mdp->num_rx_ring;
	int tx_ringsize = sizeof(*txdesc) * mdp->num_tx_ring;
1334
	int skbuff_size = mdp->rx_buf_sz + SH_ETH_RX_ALIGN + 32 - 1;
1335
	dma_addr_t dma_addr;
1336
	u32 buf_len;
1337

S
Sergei Shtylyov 已提交
1338 1339 1340 1341
	mdp->cur_rx = 0;
	mdp->cur_tx = 0;
	mdp->dirty_rx = 0;
	mdp->dirty_tx = 0;
1342 1343 1344 1345

	memset(mdp->rx_ring, 0, rx_ringsize);

	/* build Rx ring buffer */
1346
	for (i = 0; i < mdp->num_rx_ring; i++) {
1347 1348
		/* skb */
		mdp->rx_skbuff[i] = NULL;
1349
		skb = netdev_alloc_skb(ndev, skbuff_size);
1350 1351
		if (skb == NULL)
			break;
1352 1353
		sh_eth_set_receive_align(skb);

1354
		/* The size of the buffer is a multiple of 32 bytes. */
1355
		buf_len = ALIGN(mdp->rx_buf_sz, 32);
1356
		dma_addr = dma_map_single(&mdp->pdev->dev, skb->data, buf_len,
1357
					  DMA_FROM_DEVICE);
1358
		if (dma_mapping_error(&mdp->pdev->dev, dma_addr)) {
1359 1360 1361 1362
			kfree_skb(skb);
			break;
		}
		mdp->rx_skbuff[i] = skb;
1363 1364 1365 1366

		/* RX descriptor */
		rxdesc = &mdp->rx_ring[i];
		rxdesc->len = cpu_to_le32(buf_len << 16);
1367 1368
		rxdesc->addr = cpu_to_le32(dma_addr);
		rxdesc->status = cpu_to_le32(RD_RACT | RD_RFP);
1369

1370 1371
		/* Rx descriptor address set */
		if (i == 0) {
1372
			sh_eth_write(ndev, mdp->rx_desc_dma, RDLAR);
1373
			if (mdp->cd->xdfar_rw)
1374
				sh_eth_write(ndev, mdp->rx_desc_dma, RDFAR);
1375
		}
1376 1377
	}

1378
	mdp->dirty_rx = (u32) (i - mdp->num_rx_ring);
1379 1380

	/* Mark the last entry as wrapping the ring. */
1381 1382
	if (rxdesc)
		rxdesc->status |= cpu_to_le32(RD_RDLE);
1383 1384 1385 1386

	memset(mdp->tx_ring, 0, tx_ringsize);

	/* build Tx ring buffer */
1387
	for (i = 0; i < mdp->num_tx_ring; i++) {
1388 1389
		mdp->tx_skbuff[i] = NULL;
		txdesc = &mdp->tx_ring[i];
1390 1391
		txdesc->status = cpu_to_le32(TD_TFP);
		txdesc->len = cpu_to_le32(0);
1392
		if (i == 0) {
1393
			/* Tx descriptor address set */
1394
			sh_eth_write(ndev, mdp->tx_desc_dma, TDLAR);
1395
			if (mdp->cd->xdfar_rw)
1396
				sh_eth_write(ndev, mdp->tx_desc_dma, TDFAR);
1397
		}
1398 1399
	}

1400
	txdesc->status |= cpu_to_le32(TD_TDLE);
1401 1402 1403 1404 1405 1406
}

/* Get skb and descriptor buffer */
static int sh_eth_ring_init(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
1407
	int rx_ringsize, tx_ringsize;
1408

S
Sergei Shtylyov 已提交
1409
	/* +26 gets the maximum ethernet encapsulation, +7 & ~7 because the
1410 1411 1412 1413 1414 1415
	 * card needs room to do 8 byte alignment, +2 so we can reserve
	 * the first 2 bytes, and +16 gets room for the status word from the
	 * card.
	 */
	mdp->rx_buf_sz = (ndev->mtu <= 1492 ? PKT_BUF_SZ :
			  (((ndev->mtu + 26 + 7) & ~7) + 2 + 16));
1416 1417
	if (mdp->cd->rpadir)
		mdp->rx_buf_sz += NET_IP_ALIGN;
1418 1419

	/* Allocate RX and TX skb rings */
1420 1421
	mdp->rx_skbuff = kcalloc(mdp->num_rx_ring, sizeof(*mdp->rx_skbuff),
				 GFP_KERNEL);
1422 1423
	if (!mdp->rx_skbuff)
		return -ENOMEM;
1424

1425 1426
	mdp->tx_skbuff = kcalloc(mdp->num_tx_ring, sizeof(*mdp->tx_skbuff),
				 GFP_KERNEL);
1427
	if (!mdp->tx_skbuff)
1428
		goto ring_free;
1429 1430

	/* Allocate all Rx descriptors. */
1431
	rx_ringsize = sizeof(struct sh_eth_rxdesc) * mdp->num_rx_ring;
1432 1433
	mdp->rx_ring = dma_alloc_coherent(&mdp->pdev->dev, rx_ringsize,
					  &mdp->rx_desc_dma, GFP_KERNEL);
1434
	if (!mdp->rx_ring)
1435
		goto ring_free;
1436 1437 1438 1439

	mdp->dirty_rx = 0;

	/* Allocate all Tx descriptors. */
1440
	tx_ringsize = sizeof(struct sh_eth_txdesc) * mdp->num_tx_ring;
1441 1442
	mdp->tx_ring = dma_alloc_coherent(&mdp->pdev->dev, tx_ringsize,
					  &mdp->tx_desc_dma, GFP_KERNEL);
1443
	if (!mdp->tx_ring)
1444
		goto ring_free;
1445
	return 0;
1446

1447 1448
ring_free:
	/* Free Rx and Tx skb ring buffer and DMA buffer */
1449 1450
	sh_eth_ring_free(ndev);

1451
	return -ENOMEM;
1452 1453
}

1454
static int sh_eth_dev_init(struct net_device *ndev)
1455 1456
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
1457
	int ret;
1458 1459

	/* Soft Reset */
1460
	ret = mdp->cd->soft_reset(ndev);
1461
	if (ret)
1462
		return ret;
1463

1464 1465 1466
	if (mdp->cd->rmiimode)
		sh_eth_write(ndev, 0x1, RMIIMODE);

1467 1468
	/* Descriptor format */
	sh_eth_ring_format(ndev);
1469
	if (mdp->cd->rpadir)
1470
		sh_eth_write(ndev, mdp->cd->rpadir_value, RPADIR);
1471 1472

	/* all sh_eth int mask */
1473
	sh_eth_write(ndev, 0, EESIPR);
1474

1475
#if defined(__LITTLE_ENDIAN)
1476
	if (mdp->cd->hw_swap)
1477
		sh_eth_write(ndev, EDMR_EL, EDMR);
1478
	else
1479
#endif
1480
		sh_eth_write(ndev, 0, EDMR);
1481

1482
	/* FIFO size set */
1483 1484
	sh_eth_write(ndev, mdp->cd->fdr_value, FDR);
	sh_eth_write(ndev, 0, TFTR);
1485

1486 1487
	/* Frame recv control (enable multiple-packets per rx irq) */
	sh_eth_write(ndev, RMCR_RNC, RMCR);
1488

1489
	sh_eth_write(ndev, mdp->cd->trscer_err_mask, TRSCER);
1490

S
Sergei Shtylyov 已提交
1491 1492 1493 1494
	/* DMA transfer burst mode */
	if (mdp->cd->nbst)
		sh_eth_modify(ndev, EDMR, EDMR_NBST, EDMR_NBST);

1495
	/* Burst cycle count upper-limit */
1496
	if (mdp->cd->bculr)
1497
		sh_eth_write(ndev, 0x800, BCULR);
1498

1499
	sh_eth_write(ndev, mdp->cd->fcftr_value, FCFTR);
1500

1501
	if (!mdp->cd->no_trimd)
1502
		sh_eth_write(ndev, 0, TRIMD);
1503

1504
	/* Recv frame limit set register */
1505 1506
	sh_eth_write(ndev, ndev->mtu + ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN,
		     RFLR);
1507

1508
	sh_eth_modify(ndev, EESR, 0, 0);
1509 1510
	mdp->irq_enabled = true;
	sh_eth_write(ndev, mdp->cd->eesipr_value, EESIPR);
1511 1512

	/* PAUSE Prohibition */
1513 1514
	sh_eth_write(ndev, ECMR_ZPF | (mdp->duplex ? ECMR_DM : 0) |
		     ECMR_TE | ECMR_RE, ECMR);
1515

1516 1517 1518
	if (mdp->cd->set_rate)
		mdp->cd->set_rate(ndev);

1519
	/* E-MAC Status Register clear */
1520
	sh_eth_write(ndev, mdp->cd->ecsr_value, ECSR);
1521 1522

	/* E-MAC Interrupt Enable register */
1523
	sh_eth_write(ndev, mdp->cd->ecsipr_value, ECSIPR);
1524 1525 1526 1527 1528

	/* Set MAC address */
	update_mac_address(ndev);

	/* mask reset */
1529
	if (mdp->cd->apr)
1530
		sh_eth_write(ndev, APR_AP, APR);
1531
	if (mdp->cd->mpr)
1532
		sh_eth_write(ndev, MPR_MP, MPR);
1533
	if (mdp->cd->tpauser)
1534
		sh_eth_write(ndev, TPAUSER_UNLIMITED, TPAUSER);
1535

1536 1537
	/* Setting the Rx mode will start the Rx process. */
	sh_eth_write(ndev, EDRRR_R, EDRRR);
1538 1539 1540 1541

	return ret;
}

1542 1543 1544 1545 1546 1547 1548 1549 1550
static void sh_eth_dev_exit(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	int i;

	/* Deactivate all TX descriptors, so DMA should stop at next
	 * packet boundary if it's currently running
	 */
	for (i = 0; i < mdp->num_tx_ring; i++)
1551
		mdp->tx_ring[i].status &= ~cpu_to_le32(TD_TACT);
1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565

	/* Disable TX FIFO egress to MAC */
	sh_eth_rcv_snd_disable(ndev);

	/* Stop RX DMA at next packet boundary */
	sh_eth_write(ndev, 0, EDRRR);

	/* Aside from TX DMA, we can't tell when the hardware is
	 * really stopped, so we need to reset to make sure.
	 * Before doing that, wait for long enough to *probably*
	 * finish transmitting the last packet and poll stats.
	 */
	msleep(2); /* max frame time at 10 Mbps < 1250 us */
	sh_eth_get_stats(ndev);
1566
	mdp->cd->soft_reset(ndev);
1567 1568 1569

	/* Set MAC address again */
	update_mac_address(ndev);
1570 1571
}

1572
/* Packet receive function */
S
Sergei Shtylyov 已提交
1573
static int sh_eth_rx(struct net_device *ndev, u32 intr_status, int *quota)
1574 1575 1576 1577
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	struct sh_eth_rxdesc *rxdesc;

1578 1579
	int entry = mdp->cur_rx % mdp->num_rx_ring;
	int boguscnt = (mdp->dirty_rx + mdp->num_rx_ring) - mdp->cur_rx;
1580
	int limit;
1581
	struct sk_buff *skb;
1582
	u32 desc_status;
1583
	int skbuff_size = mdp->rx_buf_sz + SH_ETH_RX_ALIGN + 32 - 1;
1584
	dma_addr_t dma_addr;
1585
	u16 pkt_len;
1586
	u32 buf_len;
1587

1588 1589
	boguscnt = min(boguscnt, *quota);
	limit = boguscnt;
1590
	rxdesc = &mdp->rx_ring[entry];
1591
	while (!(rxdesc->status & cpu_to_le32(RD_RACT))) {
1592
		/* RACT bit must be checked before all the following reads */
S
Sergei Shtylyov 已提交
1593
		dma_rmb();
1594 1595
		desc_status = le32_to_cpu(rxdesc->status);
		pkt_len = le32_to_cpu(rxdesc->len) & RD_RFL;
1596 1597 1598 1599

		if (--boguscnt < 0)
			break;

1600 1601 1602 1603
		netif_info(mdp, rx_status, ndev,
			   "rx entry %d status 0x%08x len %d\n",
			   entry, desc_status, pkt_len);

1604
		if (!(desc_status & RDFEND))
1605
			ndev->stats.rx_length_errors++;
1606

S
Sergei Shtylyov 已提交
1607
		/* In case of almost all GETHER/ETHERs, the Receive Frame State
1608
		 * (RFS) bits in the Receive Descriptor 0 are from bit 9 to
1609 1610
		 * bit 0. However, in case of the R8A7740 and R7S72100
		 * the RFS bits are from bit 25 to bit 16. So, the
S
Simon Horman 已提交
1611
		 * driver needs right shifting by 16.
1612
		 */
1613
		if (mdp->cd->hw_checksum)
1614
			desc_status >>= 16;
1615

1616
		skb = mdp->rx_skbuff[entry];
1617 1618
		if (desc_status & (RD_RFS1 | RD_RFS2 | RD_RFS3 | RD_RFS4 |
				   RD_RFS5 | RD_RFS6 | RD_RFS10)) {
1619
			ndev->stats.rx_errors++;
1620
			if (desc_status & RD_RFS1)
1621
				ndev->stats.rx_crc_errors++;
1622
			if (desc_status & RD_RFS2)
1623
				ndev->stats.rx_frame_errors++;
1624
			if (desc_status & RD_RFS3)
1625
				ndev->stats.rx_length_errors++;
1626
			if (desc_status & RD_RFS4)
1627
				ndev->stats.rx_length_errors++;
1628
			if (desc_status & RD_RFS6)
1629
				ndev->stats.rx_missed_errors++;
1630
			if (desc_status & RD_RFS10)
1631
				ndev->stats.rx_over_errors++;
1632
		} else	if (skb) {
1633
			dma_addr = le32_to_cpu(rxdesc->addr);
1634 1635
			if (!mdp->cd->hw_swap)
				sh_eth_soft_swap(
1636
					phys_to_virt(ALIGN(dma_addr, 4)),
1637
					pkt_len + 2);
1638
			mdp->rx_skbuff[entry] = NULL;
1639 1640
			if (mdp->cd->rpadir)
				skb_reserve(skb, NET_IP_ALIGN);
1641
			dma_unmap_single(&mdp->pdev->dev, dma_addr,
1642
					 ALIGN(mdp->rx_buf_sz, 32),
1643
					 DMA_FROM_DEVICE);
1644 1645
			skb_put(skb, pkt_len);
			skb->protocol = eth_type_trans(skb, ndev);
1646
			netif_receive_skb(skb);
1647 1648
			ndev->stats.rx_packets++;
			ndev->stats.rx_bytes += pkt_len;
1649 1650
			if (desc_status & RD_RFS8)
				ndev->stats.multicast++;
1651
		}
1652
		entry = (++mdp->cur_rx) % mdp->num_rx_ring;
1653
		rxdesc = &mdp->rx_ring[entry];
1654 1655 1656 1657
	}

	/* Refill the Rx ring buffers. */
	for (; mdp->cur_rx - mdp->dirty_rx > 0; mdp->dirty_rx++) {
1658
		entry = mdp->dirty_rx % mdp->num_rx_ring;
1659
		rxdesc = &mdp->rx_ring[entry];
1660
		/* The size of the buffer is 32 byte boundary. */
1661
		buf_len = ALIGN(mdp->rx_buf_sz, 32);
1662
		rxdesc->len = cpu_to_le32(buf_len << 16);
1663

1664
		if (mdp->rx_skbuff[entry] == NULL) {
1665
			skb = netdev_alloc_skb(ndev, skbuff_size);
1666 1667
			if (skb == NULL)
				break;	/* Better luck next round. */
1668
			sh_eth_set_receive_align(skb);
1669
			dma_addr = dma_map_single(&mdp->pdev->dev, skb->data,
1670
						  buf_len, DMA_FROM_DEVICE);
1671
			if (dma_mapping_error(&mdp->pdev->dev, dma_addr)) {
1672 1673 1674 1675
				kfree_skb(skb);
				break;
			}
			mdp->rx_skbuff[entry] = skb;
1676

1677
			skb_checksum_none_assert(skb);
1678
			rxdesc->addr = cpu_to_le32(dma_addr);
1679
		}
S
Sergei Shtylyov 已提交
1680
		dma_wmb(); /* RACT bit must be set after all the above writes */
1681
		if (entry >= mdp->num_rx_ring - 1)
1682
			rxdesc->status |=
1683
				cpu_to_le32(RD_RACT | RD_RFP | RD_RDLE);
1684
		else
1685
			rxdesc->status |= cpu_to_le32(RD_RACT | RD_RFP);
1686 1687 1688 1689
	}

	/* Restart Rx engine if stopped. */
	/* If we don't need to check status, don't. -KDU */
1690
	if (!(sh_eth_read(ndev, EDRRR) & EDRRR_R)) {
1691
		/* fix the values for the next receiving if RDE is set */
1692
		if (intr_status & EESR_RDE && !mdp->cd->no_xdfar) {
S
Sergei Shtylyov 已提交
1693 1694 1695 1696 1697 1698
			u32 count = (sh_eth_read(ndev, RDFAR) -
				     sh_eth_read(ndev, RDLAR)) >> 4;

			mdp->cur_rx = count;
			mdp->dirty_rx = count;
		}
1699
		sh_eth_write(ndev, EDRRR_R, EDRRR);
1700
	}
1701

1702 1703
	*quota -= limit - boguscnt - 1;

1704
	return *quota <= 0;
1705 1706
}

1707
static void sh_eth_rcv_snd_disable(struct net_device *ndev)
1708 1709
{
	/* disable tx and rx */
1710
	sh_eth_modify(ndev, ECMR, ECMR_RE | ECMR_TE, 0);
1711 1712
}

1713
static void sh_eth_rcv_snd_enable(struct net_device *ndev)
1714 1715
{
	/* enable tx and rx */
1716
	sh_eth_modify(ndev, ECMR, ECMR_RE | ECMR_TE, ECMR_RE | ECMR_TE);
1717 1718
}

1719 1720
/* E-MAC interrupt handler */
static void sh_eth_emac_interrupt(struct net_device *ndev)
1721 1722 1723
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	u32 felic_stat;
1724
	u32 link_stat;
1725

1726 1727 1728 1729
	felic_stat = sh_eth_read(ndev, ECSR) & sh_eth_read(ndev, ECSIPR);
	sh_eth_write(ndev, felic_stat, ECSR);	/* clear int */
	if (felic_stat & ECSR_ICD)
		ndev->stats.tx_carrier_errors++;
1730 1731
	if (felic_stat & ECSR_MPD)
		pm_wakeup_event(&mdp->pdev->dev, 0);
1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742
	if (felic_stat & ECSR_LCHNG) {
		/* Link Changed */
		if (mdp->cd->no_psr || mdp->no_ether_link)
			return;
		link_stat = sh_eth_read(ndev, PSR);
		if (mdp->ether_link_active_low)
			link_stat = ~link_stat;
		if (!(link_stat & PHY_ST_LINK)) {
			sh_eth_rcv_snd_disable(ndev);
		} else {
			/* Link Up */
S
Sergei Shtylyov 已提交
1743
			sh_eth_modify(ndev, EESIPR, EESIPR_ECIIP, 0);
1744 1745
			/* clear int */
			sh_eth_modify(ndev, ECSR, 0, 0);
S
Sergei Shtylyov 已提交
1746
			sh_eth_modify(ndev, EESIPR, EESIPR_ECIIP, EESIPR_ECIIP);
1747 1748
			/* enable tx and rx */
			sh_eth_rcv_snd_enable(ndev);
1749 1750
		}
	}
1751 1752 1753 1754 1755 1756 1757
}

/* error control function */
static void sh_eth_error(struct net_device *ndev, u32 intr_status)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	u32 mask;
1758 1759

	if (intr_status & EESR_TWB) {
1760 1761
		/* Unused write back interrupt */
		if (intr_status & EESR_TABT) {	/* Transmit Abort int */
1762
			ndev->stats.tx_aborted_errors++;
1763
			netif_err(mdp, tx_err, ndev, "Transmit Abort\n");
1764
		}
1765 1766 1767 1768 1769 1770
	}

	if (intr_status & EESR_RABT) {
		/* Receive Abort int */
		if (intr_status & EESR_RFRMER) {
			/* Receive Frame Overflow int */
1771
			ndev->stats.rx_frame_errors++;
1772 1773
		}
	}
1774

1775 1776
	if (intr_status & EESR_TDE) {
		/* Transmit Descriptor Empty int */
1777
		ndev->stats.tx_fifo_errors++;
1778
		netif_err(mdp, tx_err, ndev, "Transmit Descriptor Empty\n");
1779 1780 1781 1782
	}

	if (intr_status & EESR_TFE) {
		/* FIFO under flow */
1783
		ndev->stats.tx_fifo_errors++;
1784
		netif_err(mdp, tx_err, ndev, "Transmit FIFO Under flow\n");
1785 1786 1787 1788
	}

	if (intr_status & EESR_RDE) {
		/* Receive Descriptor Empty int */
1789
		ndev->stats.rx_over_errors++;
1790
	}
1791

1792 1793
	if (intr_status & EESR_RFE) {
		/* Receive FIFO Overflow int */
1794
		ndev->stats.rx_fifo_errors++;
1795 1796 1797 1798
	}

	if (!mdp->cd->no_ade && (intr_status & EESR_ADE)) {
		/* Address Error */
1799
		ndev->stats.tx_fifo_errors++;
1800
		netif_err(mdp, tx_err, ndev, "Address Error\n");
1801
	}
1802 1803 1804 1805 1806

	mask = EESR_TWB | EESR_TABT | EESR_ADE | EESR_TDE | EESR_TFE;
	if (mdp->cd->no_ade)
		mask &= ~EESR_ADE;
	if (intr_status & mask) {
1807
		/* Tx error */
1808
		u32 edtrr = sh_eth_read(ndev, EDTRR);
1809

1810
		/* dmesg */
1811 1812 1813
		netdev_err(ndev, "TX error. status=%8.8x cur_tx=%8.8x dirty_tx=%8.8x state=%8.8x EDTRR=%8.8x.\n",
			   intr_status, mdp->cur_tx, mdp->dirty_tx,
			   (u32)ndev->state, edtrr);
1814
		/* dirty buffer free */
1815
		sh_eth_tx_free(ndev, true);
1816 1817

		/* SH7712 BUG */
1818
		if (edtrr ^ mdp->cd->edtrr_trns) {
1819
			/* tx dma start */
1820
			sh_eth_write(ndev, mdp->cd->edtrr_trns, EDTRR);
1821 1822 1823 1824 1825 1826 1827 1828 1829 1830
		}
		/* wakeup */
		netif_wake_queue(ndev);
	}
}

static irqreturn_t sh_eth_interrupt(int irq, void *netdev)
{
	struct net_device *ndev = netdev;
	struct sh_eth_private *mdp = netdev_priv(ndev);
1831
	struct sh_eth_cpu_data *cd = mdp->cd;
1832
	irqreturn_t ret = IRQ_NONE;
1833
	u32 intr_status, intr_enable;
1834 1835 1836

	spin_lock(&mdp->lock);

1837
	/* Get interrupt status */
1838
	intr_status = sh_eth_read(ndev, EESR);
1839 1840 1841 1842 1843
	/* Mask it with the interrupt mask, forcing ECI interrupt  to be always
	 * enabled since it's the one that  comes  thru regardless of the mask,
	 * and  we need to fully handle it  in sh_eth_emac_interrupt() in order
	 * to quench it as it doesn't get cleared by just writing 1 to the  ECI
	 * bit...
1844
	 */
S
Sergei Shtylyov 已提交
1845
	intr_enable = sh_eth_read(ndev, EESIPR);
S
Sergei Shtylyov 已提交
1846
	intr_status &= intr_enable | EESIPR_ECIIP;
1847 1848
	if (intr_status & (EESR_RX_CHECK | cd->tx_check | EESR_ECI |
			   cd->eesr_err_check))
1849
		ret = IRQ_HANDLED;
S
Sergei Shtylyov 已提交
1850
	else
1851 1852
		goto out;

1853
	if (unlikely(!mdp->irq_enabled)) {
1854 1855 1856
		sh_eth_write(ndev, 0, EESIPR);
		goto out;
	}
1857

S
Sergei Shtylyov 已提交
1858 1859 1860 1861 1862 1863 1864
	if (intr_status & EESR_RX_CHECK) {
		if (napi_schedule_prep(&mdp->napi)) {
			/* Mask Rx interrupts */
			sh_eth_write(ndev, intr_enable & ~EESR_RX_CHECK,
				     EESIPR);
			__napi_schedule(&mdp->napi);
		} else {
1865
			netdev_warn(ndev,
1866
				    "ignoring interrupt, status 0x%08x, mask 0x%08x.\n",
1867
				    intr_status, intr_enable);
S
Sergei Shtylyov 已提交
1868 1869
		}
	}
1870

1871
	/* Tx Check */
1872
	if (intr_status & cd->tx_check) {
S
Sergei Shtylyov 已提交
1873 1874 1875
		/* Clear Tx interrupts */
		sh_eth_write(ndev, intr_status & cd->tx_check, EESR);

1876
		sh_eth_tx_free(ndev, true);
1877 1878 1879
		netif_wake_queue(ndev);
	}

1880 1881 1882 1883
	/* E-MAC interrupt */
	if (intr_status & EESR_ECI)
		sh_eth_emac_interrupt(ndev);

S
Sergei Shtylyov 已提交
1884 1885 1886 1887
	if (intr_status & cd->eesr_err_check) {
		/* Clear error interrupts */
		sh_eth_write(ndev, intr_status & cd->eesr_err_check, EESR);

1888
		sh_eth_error(ndev, intr_status);
S
Sergei Shtylyov 已提交
1889
	}
1890

1891
out:
1892 1893
	spin_unlock(&mdp->lock);

1894
	return ret;
1895 1896
}

S
Sergei Shtylyov 已提交
1897 1898 1899 1900 1901 1902
static int sh_eth_poll(struct napi_struct *napi, int budget)
{
	struct sh_eth_private *mdp = container_of(napi, struct sh_eth_private,
						  napi);
	struct net_device *ndev = napi->dev;
	int quota = budget;
1903
	u32 intr_status;
S
Sergei Shtylyov 已提交
1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918

	for (;;) {
		intr_status = sh_eth_read(ndev, EESR);
		if (!(intr_status & EESR_RX_CHECK))
			break;
		/* Clear Rx interrupts */
		sh_eth_write(ndev, intr_status & EESR_RX_CHECK, EESR);

		if (sh_eth_rx(ndev, intr_status, &quota))
			goto out;
	}

	napi_complete(napi);

	/* Reenable Rx interrupts */
1919 1920
	if (mdp->irq_enabled)
		sh_eth_write(ndev, mdp->cd->eesipr_value, EESIPR);
S
Sergei Shtylyov 已提交
1921 1922 1923 1924
out:
	return budget - quota;
}

1925 1926 1927 1928
/* PHY state control function */
static void sh_eth_adjust_link(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
1929
	struct phy_device *phydev = ndev->phydev;
1930 1931
	int new_state = 0;

1932
	if (phydev->link) {
1933 1934 1935
		if (phydev->duplex != mdp->duplex) {
			new_state = 1;
			mdp->duplex = phydev->duplex;
1936 1937
			if (mdp->cd->set_duplex)
				mdp->cd->set_duplex(ndev);
1938 1939 1940 1941 1942
		}

		if (phydev->speed != mdp->speed) {
			new_state = 1;
			mdp->speed = phydev->speed;
1943 1944
			if (mdp->cd->set_rate)
				mdp->cd->set_rate(ndev);
1945
		}
1946
		if (!mdp->link) {
1947
			sh_eth_modify(ndev, ECMR, ECMR_TXF, 0);
1948 1949
			new_state = 1;
			mdp->link = phydev->link;
1950 1951
			if (mdp->cd->no_psr || mdp->no_ether_link)
				sh_eth_rcv_snd_enable(ndev);
1952 1953 1954
		}
	} else if (mdp->link) {
		new_state = 1;
1955
		mdp->link = 0;
1956 1957
		mdp->speed = 0;
		mdp->duplex = -1;
1958 1959
		if (mdp->cd->no_psr || mdp->no_ether_link)
			sh_eth_rcv_snd_disable(ndev);
1960 1961
	}

1962
	if (new_state && netif_msg_link(mdp))
1963 1964 1965 1966 1967 1968
		phy_print_status(phydev);
}

/* PHY init function */
static int sh_eth_phy_init(struct net_device *ndev)
{
B
Ben Dooks 已提交
1969
	struct device_node *np = ndev->dev.parent->of_node;
1970
	struct sh_eth_private *mdp = netdev_priv(ndev);
1971
	struct phy_device *phydev;
1972

1973
	mdp->link = 0;
1974 1975 1976 1977
	mdp->speed = 0;
	mdp->duplex = -1;

	/* Try connect to PHY */
B
Ben Dooks 已提交
1978 1979 1980 1981 1982 1983 1984 1985
	if (np) {
		struct device_node *pn;

		pn = of_parse_phandle(np, "phy-handle", 0);
		phydev = of_phy_connect(ndev, pn,
					sh_eth_adjust_link, 0,
					mdp->phy_interface);

1986
		of_node_put(pn);
B
Ben Dooks 已提交
1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998
		if (!phydev)
			phydev = ERR_PTR(-ENOENT);
	} else {
		char phy_id[MII_BUS_ID_SIZE + 3];

		snprintf(phy_id, sizeof(phy_id), PHY_ID_FMT,
			 mdp->mii_bus->id, mdp->phy_id);

		phydev = phy_connect(ndev, phy_id, sh_eth_adjust_link,
				     mdp->phy_interface);
	}

1999
	if (IS_ERR(phydev)) {
2000
		netdev_err(ndev, "failed to connect PHY\n");
2001 2002
		return PTR_ERR(phydev);
	}
2003

2004 2005 2006 2007 2008 2009 2010 2011 2012 2013
	/* mask with MAC supported features */
	if (mdp->cd->register_type != SH_ETH_REG_GIGABIT) {
		int err = phy_set_max_speed(phydev, SPEED_100);
		if (err) {
			netdev_err(ndev, "failed to limit PHY to 100 Mbit/s\n");
			phy_disconnect(phydev);
			return err;
		}
	}

2014
	phy_attached_info(phydev);
2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027

	return 0;
}

/* PHY control start function */
static int sh_eth_phy_start(struct net_device *ndev)
{
	int ret;

	ret = sh_eth_phy_init(ndev);
	if (ret)
		return ret;

2028
	phy_start(ndev->phydev);
2029 2030 2031 2032

	return 0;
}

2033 2034
static int sh_eth_get_link_ksettings(struct net_device *ndev,
				     struct ethtool_link_ksettings *cmd)
2035 2036 2037 2038
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	unsigned long flags;

2039
	if (!ndev->phydev)
2040 2041
		return -ENODEV;

2042
	spin_lock_irqsave(&mdp->lock, flags);
2043
	phy_ethtool_ksettings_get(ndev->phydev, cmd);
2044 2045
	spin_unlock_irqrestore(&mdp->lock, flags);

2046
	return 0;
2047 2048
}

2049 2050
static int sh_eth_set_link_ksettings(struct net_device *ndev,
				     const struct ethtool_link_ksettings *cmd)
2051 2052 2053 2054 2055
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	unsigned long flags;
	int ret;

2056
	if (!ndev->phydev)
2057 2058
		return -ENODEV;

2059 2060 2061
	spin_lock_irqsave(&mdp->lock, flags);

	/* disable tx and rx */
2062
	sh_eth_rcv_snd_disable(ndev);
2063

2064
	ret = phy_ethtool_ksettings_set(ndev->phydev, cmd);
2065 2066 2067
	if (ret)
		goto error_exit;

2068
	if (cmd->base.duplex == DUPLEX_FULL)
2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079
		mdp->duplex = 1;
	else
		mdp->duplex = 0;

	if (mdp->cd->set_duplex)
		mdp->cd->set_duplex(ndev);

error_exit:
	mdelay(1);

	/* enable tx and rx */
2080
	sh_eth_rcv_snd_enable(ndev);
2081 2082 2083 2084 2085 2086

	spin_unlock_irqrestore(&mdp->lock, flags);

	return ret;
}

2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196
/* If it is ever necessary to increase SH_ETH_REG_DUMP_MAX_REGS, the
 * version must be bumped as well.  Just adding registers up to that
 * limit is fine, as long as the existing register indices don't
 * change.
 */
#define SH_ETH_REG_DUMP_VERSION		1
#define SH_ETH_REG_DUMP_MAX_REGS	256

static size_t __sh_eth_get_regs(struct net_device *ndev, u32 *buf)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	struct sh_eth_cpu_data *cd = mdp->cd;
	u32 *valid_map;
	size_t len;

	BUILD_BUG_ON(SH_ETH_MAX_REGISTER_OFFSET > SH_ETH_REG_DUMP_MAX_REGS);

	/* Dump starts with a bitmap that tells ethtool which
	 * registers are defined for this chip.
	 */
	len = DIV_ROUND_UP(SH_ETH_REG_DUMP_MAX_REGS, 32);
	if (buf) {
		valid_map = buf;
		buf += len;
	} else {
		valid_map = NULL;
	}

	/* Add a register to the dump, if it has a defined offset.
	 * This automatically skips most undefined registers, but for
	 * some it is also necessary to check a capability flag in
	 * struct sh_eth_cpu_data.
	 */
#define mark_reg_valid(reg) valid_map[reg / 32] |= 1U << (reg % 32)
#define add_reg_from(reg, read_expr) do {				\
		if (mdp->reg_offset[reg] != SH_ETH_OFFSET_INVALID) {	\
			if (buf) {					\
				mark_reg_valid(reg);			\
				*buf++ = read_expr;			\
			}						\
			++len;						\
		}							\
	} while (0)
#define add_reg(reg) add_reg_from(reg, sh_eth_read(ndev, reg))
#define add_tsu_reg(reg) add_reg_from(reg, sh_eth_tsu_read(mdp, reg))

	add_reg(EDSR);
	add_reg(EDMR);
	add_reg(EDTRR);
	add_reg(EDRRR);
	add_reg(EESR);
	add_reg(EESIPR);
	add_reg(TDLAR);
	add_reg(TDFAR);
	add_reg(TDFXR);
	add_reg(TDFFR);
	add_reg(RDLAR);
	add_reg(RDFAR);
	add_reg(RDFXR);
	add_reg(RDFFR);
	add_reg(TRSCER);
	add_reg(RMFCR);
	add_reg(TFTR);
	add_reg(FDR);
	add_reg(RMCR);
	add_reg(TFUCR);
	add_reg(RFOCR);
	if (cd->rmiimode)
		add_reg(RMIIMODE);
	add_reg(FCFTR);
	if (cd->rpadir)
		add_reg(RPADIR);
	if (!cd->no_trimd)
		add_reg(TRIMD);
	add_reg(ECMR);
	add_reg(ECSR);
	add_reg(ECSIPR);
	add_reg(PIR);
	if (!cd->no_psr)
		add_reg(PSR);
	add_reg(RDMLR);
	add_reg(RFLR);
	add_reg(IPGR);
	if (cd->apr)
		add_reg(APR);
	if (cd->mpr)
		add_reg(MPR);
	add_reg(RFCR);
	add_reg(RFCF);
	if (cd->tpauser)
		add_reg(TPAUSER);
	add_reg(TPAUSECR);
	add_reg(GECMR);
	if (cd->bculr)
		add_reg(BCULR);
	add_reg(MAHR);
	add_reg(MALR);
	add_reg(TROCR);
	add_reg(CDCR);
	add_reg(LCCR);
	add_reg(CNDCR);
	add_reg(CEFCR);
	add_reg(FRECR);
	add_reg(TSFRCR);
	add_reg(TLFRCR);
	add_reg(CERCR);
	add_reg(CEECR);
	add_reg(MAFCR);
	if (cd->rtrate)
		add_reg(RTRATE);
2197
	if (cd->hw_checksum)
2198 2199 2200 2201
		add_reg(CSMR);
	if (cd->select_mii)
		add_reg(RMII_MII);
	if (cd->tsu) {
S
Sergei Shtylyov 已提交
2202
		add_tsu_reg(ARSTR);
2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227
		add_tsu_reg(TSU_CTRST);
		add_tsu_reg(TSU_FWEN0);
		add_tsu_reg(TSU_FWEN1);
		add_tsu_reg(TSU_FCM);
		add_tsu_reg(TSU_BSYSL0);
		add_tsu_reg(TSU_BSYSL1);
		add_tsu_reg(TSU_PRISL0);
		add_tsu_reg(TSU_PRISL1);
		add_tsu_reg(TSU_FWSL0);
		add_tsu_reg(TSU_FWSL1);
		add_tsu_reg(TSU_FWSLC);
		add_tsu_reg(TSU_QTAGM0);
		add_tsu_reg(TSU_QTAGM1);
		add_tsu_reg(TSU_FWSR);
		add_tsu_reg(TSU_FWINMK);
		add_tsu_reg(TSU_ADQT0);
		add_tsu_reg(TSU_ADQT1);
		add_tsu_reg(TSU_VTAG0);
		add_tsu_reg(TSU_VTAG1);
		add_tsu_reg(TSU_ADSBSY);
		add_tsu_reg(TSU_TEN);
		add_tsu_reg(TSU_POST1);
		add_tsu_reg(TSU_POST2);
		add_tsu_reg(TSU_POST3);
		add_tsu_reg(TSU_POST4);
2228 2229 2230 2231 2232 2233 2234 2235 2236
		/* This is the start of a table, not just a single register. */
		if (buf) {
			unsigned int i;

			mark_reg_valid(TSU_ADRH0);
			for (i = 0; i < SH_ETH_TSU_CAM_ENTRIES * 2; i++)
				*buf++ = ioread32(mdp->tsu_addr +
						  mdp->reg_offset[TSU_ADRH0] +
						  i * 4);
2237
		}
2238
		len += SH_ETH_TSU_CAM_ENTRIES * 2;
2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265
	}

#undef mark_reg_valid
#undef add_reg_from
#undef add_reg
#undef add_tsu_reg

	return len * 4;
}

static int sh_eth_get_regs_len(struct net_device *ndev)
{
	return __sh_eth_get_regs(ndev, NULL);
}

static void sh_eth_get_regs(struct net_device *ndev, struct ethtool_regs *regs,
			    void *buf)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

	regs->version = SH_ETH_REG_DUMP_VERSION;

	pm_runtime_get_sync(&mdp->pdev->dev);
	__sh_eth_get_regs(ndev, buf);
	pm_runtime_put_sync(&mdp->pdev->dev);
}

2266 2267 2268 2269 2270 2271
static int sh_eth_nway_reset(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	unsigned long flags;
	int ret;

2272
	if (!ndev->phydev)
2273 2274
		return -ENODEV;

2275
	spin_lock_irqsave(&mdp->lock, flags);
2276
	ret = phy_start_aneg(ndev->phydev);
2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310
	spin_unlock_irqrestore(&mdp->lock, flags);

	return ret;
}

static u32 sh_eth_get_msglevel(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	return mdp->msg_enable;
}

static void sh_eth_set_msglevel(struct net_device *ndev, u32 value)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	mdp->msg_enable = value;
}

static const char sh_eth_gstrings_stats[][ETH_GSTRING_LEN] = {
	"rx_current", "tx_current",
	"rx_dirty", "tx_dirty",
};
#define SH_ETH_STATS_LEN  ARRAY_SIZE(sh_eth_gstrings_stats)

static int sh_eth_get_sset_count(struct net_device *netdev, int sset)
{
	switch (sset) {
	case ETH_SS_STATS:
		return SH_ETH_STATS_LEN;
	default:
		return -EOPNOTSUPP;
	}
}

static void sh_eth_get_ethtool_stats(struct net_device *ndev,
S
Sergei Shtylyov 已提交
2311
				     struct ethtool_stats *stats, u64 *data)
2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	int i = 0;

	/* device-specific stats */
	data[i++] = mdp->cur_rx;
	data[i++] = mdp->cur_tx;
	data[i++] = mdp->dirty_rx;
	data[i++] = mdp->dirty_tx;
}

static void sh_eth_get_strings(struct net_device *ndev, u32 stringset, u8 *data)
{
	switch (stringset) {
	case ETH_SS_STATS:
		memcpy(data, *sh_eth_gstrings_stats,
S
Sergei Shtylyov 已提交
2328
		       sizeof(sh_eth_gstrings_stats));
2329 2330 2331 2332
		break;
	}
}

2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358
static void sh_eth_get_ringparam(struct net_device *ndev,
				 struct ethtool_ringparam *ring)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

	ring->rx_max_pending = RX_RING_MAX;
	ring->tx_max_pending = TX_RING_MAX;
	ring->rx_pending = mdp->num_rx_ring;
	ring->tx_pending = mdp->num_tx_ring;
}

static int sh_eth_set_ringparam(struct net_device *ndev,
				struct ethtool_ringparam *ring)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	int ret;

	if (ring->tx_pending > TX_RING_MAX ||
	    ring->rx_pending > RX_RING_MAX ||
	    ring->tx_pending < TX_RING_MIN ||
	    ring->rx_pending < RX_RING_MIN)
		return -EINVAL;
	if (ring->rx_mini_pending || ring->rx_jumbo_pending)
		return -EINVAL;

	if (netif_running(ndev)) {
2359
		netif_device_detach(ndev);
2360
		netif_tx_disable(ndev);
2361 2362 2363 2364 2365 2366 2367

		/* Serialise with the interrupt handler and NAPI, then
		 * disable interrupts.  We have to clear the
		 * irq_enabled flag first to ensure that interrupts
		 * won't be re-enabled.
		 */
		mdp->irq_enabled = false;
2368
		synchronize_irq(ndev->irq);
2369
		napi_synchronize(&mdp->napi);
2370 2371
		sh_eth_write(ndev, 0x0000, EESIPR);

2372
		sh_eth_dev_exit(ndev);
2373

2374
		/* Free all the skbuffs in the Rx queue and the DMA buffers. */
2375 2376
		sh_eth_ring_free(ndev);
	}
2377 2378 2379 2380 2381 2382

	/* Set new parameters */
	mdp->num_rx_ring = ring->rx_pending;
	mdp->num_tx_ring = ring->tx_pending;

	if (netif_running(ndev)) {
2383 2384 2385 2386 2387 2388
		ret = sh_eth_ring_init(ndev);
		if (ret < 0) {
			netdev_err(ndev, "%s: sh_eth_ring_init failed.\n",
				   __func__);
			return ret;
		}
2389
		ret = sh_eth_dev_init(ndev);
2390 2391 2392 2393 2394 2395
		if (ret < 0) {
			netdev_err(ndev, "%s: sh_eth_dev_init failed.\n",
				   __func__);
			return ret;
		}

2396
		netif_device_attach(ndev);
2397 2398 2399 2400 2401
	}

	return 0;
}

2402 2403 2404 2405 2406 2407 2408
static void sh_eth_get_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

	wol->supported = 0;
	wol->wolopts = 0;

2409
	if (mdp->cd->magic) {
2410 2411 2412 2413 2414 2415 2416 2417 2418
		wol->supported = WAKE_MAGIC;
		wol->wolopts = mdp->wol_enabled ? WAKE_MAGIC : 0;
	}
}

static int sh_eth_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

2419
	if (!mdp->cd->magic || wol->wolopts & ~WAKE_MAGIC)
2420 2421 2422 2423 2424 2425 2426 2427 2428
		return -EOPNOTSUPP;

	mdp->wol_enabled = !!(wol->wolopts & WAKE_MAGIC);

	device_set_wakeup_enable(&mdp->pdev->dev, mdp->wol_enabled);

	return 0;
}

S
stephen hemminger 已提交
2429
static const struct ethtool_ops sh_eth_ethtool_ops = {
2430 2431
	.get_regs_len	= sh_eth_get_regs_len,
	.get_regs	= sh_eth_get_regs,
S
stephen hemminger 已提交
2432
	.nway_reset	= sh_eth_nway_reset,
2433 2434
	.get_msglevel	= sh_eth_get_msglevel,
	.set_msglevel	= sh_eth_set_msglevel,
S
stephen hemminger 已提交
2435
	.get_link	= ethtool_op_get_link,
2436 2437 2438
	.get_strings	= sh_eth_get_strings,
	.get_ethtool_stats  = sh_eth_get_ethtool_stats,
	.get_sset_count     = sh_eth_get_sset_count,
2439 2440
	.get_ringparam	= sh_eth_get_ringparam,
	.set_ringparam	= sh_eth_set_ringparam,
2441 2442
	.get_link_ksettings = sh_eth_get_link_ksettings,
	.set_link_ksettings = sh_eth_set_link_ksettings,
2443 2444
	.get_wol	= sh_eth_get_wol,
	.set_wol	= sh_eth_set_wol,
2445 2446
};

2447 2448 2449 2450
/* network device open function */
static int sh_eth_open(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
2451
	int ret;
2452

2453 2454
	pm_runtime_get_sync(&mdp->pdev->dev);

2455 2456
	napi_enable(&mdp->napi);

2457
	ret = request_irq(ndev->irq, sh_eth_interrupt,
2458
			  mdp->cd->irq_flags, ndev->name, ndev);
2459
	if (ret) {
2460
		netdev_err(ndev, "Can not assign IRQ number\n");
2461
		goto out_napi_off;
2462 2463 2464 2465 2466 2467 2468 2469
	}

	/* Descriptor set */
	ret = sh_eth_ring_init(ndev);
	if (ret)
		goto out_free_irq;

	/* device init */
2470
	ret = sh_eth_dev_init(ndev);
2471 2472 2473 2474 2475 2476 2477 2478
	if (ret)
		goto out_free_irq;

	/* PHY control start*/
	ret = sh_eth_phy_start(ndev);
	if (ret)
		goto out_free_irq;

2479 2480
	netif_start_queue(ndev);

2481 2482
	mdp->is_opened = 1;

2483 2484 2485 2486
	return ret;

out_free_irq:
	free_irq(ndev->irq, ndev);
2487 2488
out_napi_off:
	napi_disable(&mdp->napi);
2489
	pm_runtime_put_sync(&mdp->pdev->dev);
2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501
	return ret;
}

/* Timeout function */
static void sh_eth_tx_timeout(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	struct sh_eth_rxdesc *rxdesc;
	int i;

	netif_stop_queue(ndev);

2502 2503
	netif_err(mdp, timer, ndev,
		  "transmit timed out, status %8.8x, resetting...\n",
2504
		  sh_eth_read(ndev, EESR));
2505 2506

	/* tx_errors count up */
2507
	ndev->stats.tx_errors++;
2508 2509

	/* Free all the skbuffs in the Rx queue. */
2510
	for (i = 0; i < mdp->num_rx_ring; i++) {
2511
		rxdesc = &mdp->rx_ring[i];
2512 2513
		rxdesc->status = cpu_to_le32(0);
		rxdesc->addr = cpu_to_le32(0xBADF00D0);
2514
		dev_kfree_skb(mdp->rx_skbuff[i]);
2515 2516
		mdp->rx_skbuff[i] = NULL;
	}
2517
	for (i = 0; i < mdp->num_tx_ring; i++) {
2518
		dev_kfree_skb(mdp->tx_skbuff[i]);
2519 2520 2521 2522
		mdp->tx_skbuff[i] = NULL;
	}

	/* device init */
2523
	sh_eth_dev_init(ndev);
2524 2525

	netif_start_queue(ndev);
2526 2527 2528 2529 2530 2531 2532
}

/* Packet transmit function */
static int sh_eth_start_xmit(struct sk_buff *skb, struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	struct sh_eth_txdesc *txdesc;
2533
	dma_addr_t dma_addr;
2534
	u32 entry;
2535
	unsigned long flags;
2536 2537

	spin_lock_irqsave(&mdp->lock, flags);
2538
	if ((mdp->cur_tx - mdp->dirty_tx) >= (mdp->num_tx_ring - 4)) {
2539
		if (!sh_eth_tx_free(ndev, true)) {
2540
			netif_warn(mdp, tx_queued, ndev, "TxFD exhausted.\n");
2541 2542
			netif_stop_queue(ndev);
			spin_unlock_irqrestore(&mdp->lock, flags);
2543
			return NETDEV_TX_BUSY;
2544 2545 2546 2547
		}
	}
	spin_unlock_irqrestore(&mdp->lock, flags);

2548
	if (skb_put_padto(skb, ETH_ZLEN))
2549 2550
		return NETDEV_TX_OK;

2551
	entry = mdp->cur_tx % mdp->num_tx_ring;
2552 2553 2554
	mdp->tx_skbuff[entry] = skb;
	txdesc = &mdp->tx_ring[entry];
	/* soft swap. */
2555
	if (!mdp->cd->hw_swap)
2556
		sh_eth_soft_swap(PTR_ALIGN(skb->data, 4), skb->len + 2);
2557
	dma_addr = dma_map_single(&mdp->pdev->dev, skb->data, skb->len,
2558
				  DMA_TO_DEVICE);
2559
	if (dma_mapping_error(&mdp->pdev->dev, dma_addr)) {
2560 2561 2562
		kfree_skb(skb);
		return NETDEV_TX_OK;
	}
2563 2564
	txdesc->addr = cpu_to_le32(dma_addr);
	txdesc->len  = cpu_to_le32(skb->len << 16);
2565

S
Sergei Shtylyov 已提交
2566
	dma_wmb(); /* TACT bit must be set after all the above writes */
2567
	if (entry >= mdp->num_tx_ring - 1)
2568
		txdesc->status |= cpu_to_le32(TD_TACT | TD_TDLE);
2569
	else
2570
		txdesc->status |= cpu_to_le32(TD_TACT);
2571 2572 2573

	mdp->cur_tx++;

2574 2575
	if (!(sh_eth_read(ndev, EDTRR) & mdp->cd->edtrr_trns))
		sh_eth_write(ndev, mdp->cd->edtrr_trns, EDTRR);
2576

2577
	return NETDEV_TX_OK;
2578 2579
}

2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595
/* The statistics registers have write-clear behaviour, which means we
 * will lose any increment between the read and write.  We mitigate
 * this by only clearing when we read a non-zero value, so we will
 * never falsely report a total of zero.
 */
static void
sh_eth_update_stat(struct net_device *ndev, unsigned long *stat, int reg)
{
	u32 delta = sh_eth_read(ndev, reg);

	if (delta) {
		*stat += delta;
		sh_eth_write(ndev, 0, reg);
	}
}

2596 2597 2598 2599
static struct net_device_stats *sh_eth_get_stats(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

2600
	if (mdp->cd->no_tx_cntrs)
2601 2602 2603 2604 2605
		return &ndev->stats;

	if (!mdp->is_opened)
		return &ndev->stats;

2606 2607 2608
	sh_eth_update_stat(ndev, &ndev->stats.tx_dropped, TROCR);
	sh_eth_update_stat(ndev, &ndev->stats.collisions, CDCR);
	sh_eth_update_stat(ndev, &ndev->stats.tx_carrier_errors, LCCR);
2609

2610
	if (mdp->cd->cexcr) {
2611 2612 2613 2614
		sh_eth_update_stat(ndev, &ndev->stats.tx_carrier_errors,
				   CERCR);
		sh_eth_update_stat(ndev, &ndev->stats.tx_carrier_errors,
				   CEECR);
2615
	} else {
2616 2617
		sh_eth_update_stat(ndev, &ndev->stats.tx_carrier_errors,
				   CNDCR);
2618 2619 2620 2621 2622
	}

	return &ndev->stats;
}

2623 2624 2625 2626 2627 2628 2629
/* device close function */
static int sh_eth_close(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

	netif_stop_queue(ndev);

2630 2631 2632 2633 2634 2635 2636
	/* Serialise with the interrupt handler and NAPI, then disable
	 * interrupts.  We have to clear the irq_enabled flag first to
	 * ensure that interrupts won't be re-enabled.
	 */
	mdp->irq_enabled = false;
	synchronize_irq(ndev->irq);
	napi_disable(&mdp->napi);
2637
	sh_eth_write(ndev, 0x0000, EESIPR);
2638

2639
	sh_eth_dev_exit(ndev);
2640 2641

	/* PHY Disconnect */
2642 2643 2644
	if (ndev->phydev) {
		phy_stop(ndev->phydev);
		phy_disconnect(ndev->phydev);
2645 2646 2647 2648
	}

	free_irq(ndev->irq, ndev);

2649
	/* Free all the skbuffs in the Rx queue and the DMA buffer. */
2650 2651
	sh_eth_ring_free(ndev);

2652 2653
	pm_runtime_put_sync(&mdp->pdev->dev);

2654
	mdp->is_opened = 0;
2655

2656
	return 0;
2657 2658
}

2659
/* ioctl to device function */
S
Sergei Shtylyov 已提交
2660
static int sh_eth_do_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
2661
{
2662
	struct phy_device *phydev = ndev->phydev;
2663 2664 2665 2666 2667 2668 2669

	if (!netif_running(ndev))
		return -EINVAL;

	if (!phydev)
		return -ENODEV;

2670
	return phy_mii_ioctl(phydev, rq, cmd);
2671 2672
}

2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683
static int sh_eth_change_mtu(struct net_device *ndev, int new_mtu)
{
	if (netif_running(ndev))
		return -EBUSY;

	ndev->mtu = new_mtu;
	netdev_update_features(ndev);

	return 0;
}

2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698
/* For TSU_POSTn. Please refer to the manual about this (strange) bitfields */
static u32 sh_eth_tsu_get_post_mask(int entry)
{
	return 0x0f << (28 - ((entry % 8) * 4));
}

static u32 sh_eth_tsu_get_post_bit(struct sh_eth_private *mdp, int entry)
{
	return (0x08 >> (mdp->port << 1)) << (28 - ((entry % 8) * 4));
}

static void sh_eth_tsu_enable_cam_entry_post(struct net_device *ndev,
					     int entry)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
2699
	int reg = TSU_POST1 + entry / 8;
2700 2701
	u32 tmp;

2702 2703
	tmp = sh_eth_tsu_read(mdp, reg);
	sh_eth_tsu_write(mdp, tmp | sh_eth_tsu_get_post_bit(mdp, entry), reg);
2704 2705 2706 2707 2708 2709
}

static bool sh_eth_tsu_disable_cam_entry_post(struct net_device *ndev,
					      int entry)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
2710
	int reg = TSU_POST1 + entry / 8;
2711 2712 2713 2714 2715
	u32 post_mask, ref_mask, tmp;

	post_mask = sh_eth_tsu_get_post_mask(entry);
	ref_mask = sh_eth_tsu_get_post_bit(mdp, entry) & ~post_mask;

2716 2717
	tmp = sh_eth_tsu_read(mdp, reg);
	sh_eth_tsu_write(mdp, tmp & ~post_mask, reg);
2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731

	/* If other port enables, the function returns "true" */
	return tmp & ref_mask;
}

static int sh_eth_tsu_busy(struct net_device *ndev)
{
	int timeout = SH_ETH_TSU_TIMEOUT_MS * 100;
	struct sh_eth_private *mdp = netdev_priv(ndev);

	while ((sh_eth_tsu_read(mdp, TSU_ADSBSY) & TSU_ADSBSY_0)) {
		udelay(10);
		timeout--;
		if (timeout <= 0) {
2732
			netdev_err(ndev, "%s: timeout\n", __func__);
2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781
			return -ETIMEDOUT;
		}
	}

	return 0;
}

static int sh_eth_tsu_write_entry(struct net_device *ndev, void *reg,
				  const u8 *addr)
{
	u32 val;

	val = addr[0] << 24 | addr[1] << 16 | addr[2] << 8 | addr[3];
	iowrite32(val, reg);
	if (sh_eth_tsu_busy(ndev) < 0)
		return -EBUSY;

	val = addr[4] << 8 | addr[5];
	iowrite32(val, reg + 4);
	if (sh_eth_tsu_busy(ndev) < 0)
		return -EBUSY;

	return 0;
}

static void sh_eth_tsu_read_entry(void *reg, u8 *addr)
{
	u32 val;

	val = ioread32(reg);
	addr[0] = (val >> 24) & 0xff;
	addr[1] = (val >> 16) & 0xff;
	addr[2] = (val >> 8) & 0xff;
	addr[3] = val & 0xff;
	val = ioread32(reg + 4);
	addr[4] = (val >> 8) & 0xff;
	addr[5] = val & 0xff;
}


static int sh_eth_tsu_find_entry(struct net_device *ndev, const u8 *addr)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	void *reg_offset = sh_eth_tsu_get_offset(mdp, TSU_ADRH0);
	int i;
	u8 c_addr[ETH_ALEN];

	for (i = 0; i < SH_ETH_TSU_CAM_ENTRIES; i++, reg_offset += 8) {
		sh_eth_tsu_read_entry(reg_offset, c_addr);
2782
		if (ether_addr_equal(addr, c_addr))
2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874
			return i;
	}

	return -ENOENT;
}

static int sh_eth_tsu_find_empty(struct net_device *ndev)
{
	u8 blank[ETH_ALEN];
	int entry;

	memset(blank, 0, sizeof(blank));
	entry = sh_eth_tsu_find_entry(ndev, blank);
	return (entry < 0) ? -ENOMEM : entry;
}

static int sh_eth_tsu_disable_cam_entry_table(struct net_device *ndev,
					      int entry)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	void *reg_offset = sh_eth_tsu_get_offset(mdp, TSU_ADRH0);
	int ret;
	u8 blank[ETH_ALEN];

	sh_eth_tsu_write(mdp, sh_eth_tsu_read(mdp, TSU_TEN) &
			 ~(1 << (31 - entry)), TSU_TEN);

	memset(blank, 0, sizeof(blank));
	ret = sh_eth_tsu_write_entry(ndev, reg_offset + entry * 8, blank);
	if (ret < 0)
		return ret;
	return 0;
}

static int sh_eth_tsu_add_entry(struct net_device *ndev, const u8 *addr)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	void *reg_offset = sh_eth_tsu_get_offset(mdp, TSU_ADRH0);
	int i, ret;

	if (!mdp->cd->tsu)
		return 0;

	i = sh_eth_tsu_find_entry(ndev, addr);
	if (i < 0) {
		/* No entry found, create one */
		i = sh_eth_tsu_find_empty(ndev);
		if (i < 0)
			return -ENOMEM;
		ret = sh_eth_tsu_write_entry(ndev, reg_offset + i * 8, addr);
		if (ret < 0)
			return ret;

		/* Enable the entry */
		sh_eth_tsu_write(mdp, sh_eth_tsu_read(mdp, TSU_TEN) |
				 (1 << (31 - i)), TSU_TEN);
	}

	/* Entry found or created, enable POST */
	sh_eth_tsu_enable_cam_entry_post(ndev, i);

	return 0;
}

static int sh_eth_tsu_del_entry(struct net_device *ndev, const u8 *addr)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	int i, ret;

	if (!mdp->cd->tsu)
		return 0;

	i = sh_eth_tsu_find_entry(ndev, addr);
	if (i) {
		/* Entry found */
		if (sh_eth_tsu_disable_cam_entry_post(ndev, i))
			goto done;

		/* Disable the entry if both ports was disabled */
		ret = sh_eth_tsu_disable_cam_entry_table(ndev, i);
		if (ret < 0)
			return ret;
	}
done:
	return 0;
}

static int sh_eth_tsu_purge_all(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	int i, ret;

2875
	if (!mdp->cd->tsu)
2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897
		return 0;

	for (i = 0; i < SH_ETH_TSU_CAM_ENTRIES; i++) {
		if (sh_eth_tsu_disable_cam_entry_post(ndev, i))
			continue;

		/* Disable the entry if both ports was disabled */
		ret = sh_eth_tsu_disable_cam_entry_table(ndev, i);
		if (ret < 0)
			return ret;
	}

	return 0;
}

static void sh_eth_tsu_purge_mcast(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	u8 addr[ETH_ALEN];
	void *reg_offset = sh_eth_tsu_get_offset(mdp, TSU_ADRH0);
	int i;

2898
	if (!mdp->cd->tsu)
2899 2900 2901 2902 2903 2904 2905 2906 2907
		return;

	for (i = 0; i < SH_ETH_TSU_CAM_ENTRIES; i++, reg_offset += 8) {
		sh_eth_tsu_read_entry(reg_offset, addr);
		if (is_multicast_ether_addr(addr))
			sh_eth_tsu_del_entry(ndev, addr);
	}
}

2908 2909
/* Update promiscuous flag and multicast filter */
static void sh_eth_set_rx_mode(struct net_device *ndev)
2910
{
2911 2912 2913 2914 2915 2916
	struct sh_eth_private *mdp = netdev_priv(ndev);
	u32 ecmr_bits;
	int mcast_all = 0;
	unsigned long flags;

	spin_lock_irqsave(&mdp->lock, flags);
S
Sergei Shtylyov 已提交
2917
	/* Initial condition is MCT = 1, PRM = 0.
2918 2919
	 * Depending on ndev->flags, set PRM or clear MCT
	 */
2920 2921 2922
	ecmr_bits = sh_eth_read(ndev, ECMR) & ~ECMR_PRM;
	if (mdp->cd->tsu)
		ecmr_bits |= ECMR_MCT;
2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933

	if (!(ndev->flags & IFF_MULTICAST)) {
		sh_eth_tsu_purge_mcast(ndev);
		mcast_all = 1;
	}
	if (ndev->flags & IFF_ALLMULTI) {
		sh_eth_tsu_purge_mcast(ndev);
		ecmr_bits &= ~ECMR_MCT;
		mcast_all = 1;
	}

2934
	if (ndev->flags & IFF_PROMISC) {
2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950
		sh_eth_tsu_purge_all(ndev);
		ecmr_bits = (ecmr_bits & ~ECMR_MCT) | ECMR_PRM;
	} else if (mdp->cd->tsu) {
		struct netdev_hw_addr *ha;
		netdev_for_each_mc_addr(ha, ndev) {
			if (mcast_all && is_multicast_ether_addr(ha->addr))
				continue;

			if (sh_eth_tsu_add_entry(ndev, ha->addr) < 0) {
				if (!mcast_all) {
					sh_eth_tsu_purge_mcast(ndev);
					ecmr_bits &= ~ECMR_MCT;
					mcast_all = 1;
				}
			}
		}
2951
	}
2952 2953 2954 2955 2956

	/* update the ethernet mode */
	sh_eth_write(ndev, ecmr_bits, ECMR);

	spin_unlock_irqrestore(&mdp->lock, flags);
2957
}
2958 2959 2960 2961 2962 2963 2964 2965 2966

static int sh_eth_get_vtag_index(struct sh_eth_private *mdp)
{
	if (!mdp->port)
		return TSU_VTAG0;
	else
		return TSU_VTAG1;
}

2967 2968
static int sh_eth_vlan_rx_add_vid(struct net_device *ndev,
				  __be16 proto, u16 vid)
2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	int vtag_reg_index = sh_eth_get_vtag_index(mdp);

	if (unlikely(!mdp->cd->tsu))
		return -EPERM;

	/* No filtering if vid = 0 */
	if (!vid)
		return 0;

	mdp->vlan_num_ids++;

S
Sergei Shtylyov 已提交
2982
	/* The controller has one VLAN tag HW filter. So, if the filter is
2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996
	 * already enabled, the driver disables it and the filte
	 */
	if (mdp->vlan_num_ids > 1) {
		/* disable VLAN filter */
		sh_eth_tsu_write(mdp, 0, vtag_reg_index);
		return 0;
	}

	sh_eth_tsu_write(mdp, TSU_VTAG_ENABLE | (vid & TSU_VTAG_VID_MASK),
			 vtag_reg_index);

	return 0;
}

2997 2998
static int sh_eth_vlan_rx_kill_vid(struct net_device *ndev,
				   __be16 proto, u16 vid)
2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	int vtag_reg_index = sh_eth_get_vtag_index(mdp);

	if (unlikely(!mdp->cd->tsu))
		return -EPERM;

	/* No filtering if vid = 0 */
	if (!vid)
		return 0;

	mdp->vlan_num_ids--;
	sh_eth_tsu_write(mdp, 0, vtag_reg_index);

	return 0;
}
3015 3016

/* SuperH's TSU register init function */
3017
static void sh_eth_tsu_init(struct sh_eth_private *mdp)
3018
{
3019
	if (!mdp->cd->dual_port) {
S
Simon Horman 已提交
3020
		sh_eth_tsu_write(mdp, 0, TSU_TEN); /* Disable all CAM entry */
3021 3022
		sh_eth_tsu_write(mdp, TSU_FWSLC_POSTENU | TSU_FWSLC_POSTENL,
				 TSU_FWSLC);	/* Enable POST registers */
S
Simon Horman 已提交
3023 3024 3025
		return;
	}

3026 3027 3028 3029 3030 3031 3032 3033 3034 3035
	sh_eth_tsu_write(mdp, 0, TSU_FWEN0);	/* Disable forward(0->1) */
	sh_eth_tsu_write(mdp, 0, TSU_FWEN1);	/* Disable forward(1->0) */
	sh_eth_tsu_write(mdp, 0, TSU_FCM);	/* forward fifo 3k-3k */
	sh_eth_tsu_write(mdp, 0xc, TSU_BSYSL0);
	sh_eth_tsu_write(mdp, 0xc, TSU_BSYSL1);
	sh_eth_tsu_write(mdp, 0, TSU_PRISL0);
	sh_eth_tsu_write(mdp, 0, TSU_PRISL1);
	sh_eth_tsu_write(mdp, 0, TSU_FWSL0);
	sh_eth_tsu_write(mdp, 0, TSU_FWSL1);
	sh_eth_tsu_write(mdp, TSU_FWSLC_POSTENU | TSU_FWSLC_POSTENL, TSU_FWSLC);
3036 3037
	sh_eth_tsu_write(mdp, 0, TSU_QTAGM0);	/* Disable QTAG(0->1) */
	sh_eth_tsu_write(mdp, 0, TSU_QTAGM1);	/* Disable QTAG(1->0) */
3038 3039 3040 3041 3042 3043 3044
	sh_eth_tsu_write(mdp, 0, TSU_FWSR);	/* all interrupt status clear */
	sh_eth_tsu_write(mdp, 0, TSU_FWINMK);	/* Disable all interrupt */
	sh_eth_tsu_write(mdp, 0, TSU_TEN);	/* Disable all CAM entry */
	sh_eth_tsu_write(mdp, 0, TSU_POST1);	/* Disable CAM entry [ 0- 7] */
	sh_eth_tsu_write(mdp, 0, TSU_POST2);	/* Disable CAM entry [ 8-15] */
	sh_eth_tsu_write(mdp, 0, TSU_POST3);	/* Disable CAM entry [16-23] */
	sh_eth_tsu_write(mdp, 0, TSU_POST4);	/* Disable CAM entry [24-31] */
3045 3046 3047
}

/* MDIO bus release function */
3048
static int sh_mdio_release(struct sh_eth_private *mdp)
3049 3050
{
	/* unregister mdio bus */
3051
	mdiobus_unregister(mdp->mii_bus);
3052 3053

	/* free bitbang info */
3054
	free_mdio_bitbang(mdp->mii_bus);
3055 3056 3057 3058 3059

	return 0;
}

/* MDIO bus init function */
3060
static int sh_mdio_init(struct sh_eth_private *mdp,
3061
			struct sh_eth_plat_data *pd)
3062
{
3063
	int ret;
3064
	struct bb_info *bitbang;
3065
	struct platform_device *pdev = mdp->pdev;
3066
	struct device *dev = &mdp->pdev->dev;
3067 3068

	/* create bit control struct for PHY */
3069
	bitbang = devm_kzalloc(dev, sizeof(struct bb_info), GFP_KERNEL);
3070 3071
	if (!bitbang)
		return -ENOMEM;
3072 3073

	/* bitbang init */
Y
Yoshihiro Shimoda 已提交
3074
	bitbang->addr = mdp->addr + mdp->reg_offset[PIR];
3075
	bitbang->set_gate = pd->set_mdio_gate;
3076 3077
	bitbang->ctrl.ops = &bb_ops;

3078
	/* MII controller setting */
3079
	mdp->mii_bus = alloc_mdio_bitbang(&bitbang->ctrl);
3080 3081
	if (!mdp->mii_bus)
		return -ENOMEM;
3082 3083 3084

	/* Hook up MII support for ethtool */
	mdp->mii_bus->name = "sh_mii";
3085
	mdp->mii_bus->parent = dev;
3086
	snprintf(mdp->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
3087
		 pdev->name, pdev->id);
3088

3089
	/* register MDIO bus */
3090 3091
	if (pd->phy_irq > 0)
		mdp->mii_bus->irq[pd->phy] = pd->phy_irq;
B
Ben Dooks 已提交
3092

3093
	ret = of_mdiobus_register(mdp->mii_bus, dev->of_node);
3094
	if (ret)
S
Sergei Shtylyov 已提交
3095
		goto out_free_bus;
3096 3097 3098 3099

	return 0;

out_free_bus:
3100
	free_mdio_bitbang(mdp->mii_bus);
3101 3102 3103
	return ret;
}

3104 3105 3106 3107 3108 3109 3110 3111
static const u16 *sh_eth_get_register_offset(int register_type)
{
	const u16 *reg_offset = NULL;

	switch (register_type) {
	case SH_ETH_REG_GIGABIT:
		reg_offset = sh_eth_offset_gigabit;
		break;
S
Simon Horman 已提交
3112 3113 3114
	case SH_ETH_REG_FAST_RZ:
		reg_offset = sh_eth_offset_fast_rz;
		break;
3115 3116 3117
	case SH_ETH_REG_FAST_RCAR:
		reg_offset = sh_eth_offset_fast_rcar;
		break;
3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128
	case SH_ETH_REG_FAST_SH4:
		reg_offset = sh_eth_offset_fast_sh4;
		break;
	case SH_ETH_REG_FAST_SH3_SH2:
		reg_offset = sh_eth_offset_fast_sh3_sh2;
		break;
	}

	return reg_offset;
}

3129
static const struct net_device_ops sh_eth_netdev_ops = {
3130 3131 3132 3133
	.ndo_open		= sh_eth_open,
	.ndo_stop		= sh_eth_close,
	.ndo_start_xmit		= sh_eth_start_xmit,
	.ndo_get_stats		= sh_eth_get_stats,
3134
	.ndo_set_rx_mode	= sh_eth_set_rx_mode,
3135 3136
	.ndo_tx_timeout		= sh_eth_tx_timeout,
	.ndo_do_ioctl		= sh_eth_do_ioctl,
3137
	.ndo_change_mtu		= sh_eth_change_mtu,
3138 3139 3140 3141
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_set_mac_address	= eth_mac_addr,
};

3142 3143 3144 3145 3146
static const struct net_device_ops sh_eth_netdev_ops_tsu = {
	.ndo_open		= sh_eth_open,
	.ndo_stop		= sh_eth_close,
	.ndo_start_xmit		= sh_eth_start_xmit,
	.ndo_get_stats		= sh_eth_get_stats,
3147
	.ndo_set_rx_mode	= sh_eth_set_rx_mode,
3148 3149 3150 3151
	.ndo_vlan_rx_add_vid	= sh_eth_vlan_rx_add_vid,
	.ndo_vlan_rx_kill_vid	= sh_eth_vlan_rx_kill_vid,
	.ndo_tx_timeout		= sh_eth_tx_timeout,
	.ndo_do_ioctl		= sh_eth_do_ioctl,
3152
	.ndo_change_mtu		= sh_eth_change_mtu,
3153 3154 3155 3156
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_set_mac_address	= eth_mac_addr,
};

3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183
#ifdef CONFIG_OF
static struct sh_eth_plat_data *sh_eth_parse_dt(struct device *dev)
{
	struct device_node *np = dev->of_node;
	struct sh_eth_plat_data *pdata;
	const char *mac_addr;

	pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
	if (!pdata)
		return NULL;

	pdata->phy_interface = of_get_phy_mode(np);

	mac_addr = of_get_mac_address(np);
	if (mac_addr)
		memcpy(pdata->mac_addr, mac_addr, ETH_ALEN);

	pdata->no_ether_link =
		of_property_read_bool(np, "renesas,no-ether-link");
	pdata->ether_link_active_low =
		of_property_read_bool(np, "renesas,ether-link-active-low");

	return pdata;
}

static const struct of_device_id sh_eth_match_table[] = {
	{ .compatible = "renesas,gether-r8a7740", .data = &r8a7740_data },
3184 3185 3186 3187 3188 3189 3190 3191
	{ .compatible = "renesas,ether-r8a7743", .data = &rcar_gen2_data },
	{ .compatible = "renesas,ether-r8a7745", .data = &rcar_gen2_data },
	{ .compatible = "renesas,ether-r8a7778", .data = &rcar_gen1_data },
	{ .compatible = "renesas,ether-r8a7779", .data = &rcar_gen1_data },
	{ .compatible = "renesas,ether-r8a7790", .data = &rcar_gen2_data },
	{ .compatible = "renesas,ether-r8a7791", .data = &rcar_gen2_data },
	{ .compatible = "renesas,ether-r8a7793", .data = &rcar_gen2_data },
	{ .compatible = "renesas,ether-r8a7794", .data = &rcar_gen2_data },
S
Sergei Shtylyov 已提交
3192
	{ .compatible = "renesas,gether-r8a77980", .data = &r8a77980_data },
3193
	{ .compatible = "renesas,ether-r7s72100", .data = &r7s72100_data },
3194 3195
	{ .compatible = "renesas,rcar-gen1-ether", .data = &rcar_gen1_data },
	{ .compatible = "renesas,rcar-gen2-ether", .data = &rcar_gen2_data },
3196 3197 3198 3199 3200 3201 3202 3203 3204 3205
	{ }
};
MODULE_DEVICE_TABLE(of, sh_eth_match_table);
#else
static inline struct sh_eth_plat_data *sh_eth_parse_dt(struct device *dev)
{
	return NULL;
}
#endif

3206 3207 3208
static int sh_eth_drv_probe(struct platform_device *pdev)
{
	struct resource *res;
J
Jingoo Han 已提交
3209
	struct sh_eth_plat_data *pd = dev_get_platdata(&pdev->dev);
3210
	const struct platform_device_id *id = platform_get_device_id(pdev);
3211 3212
	struct sh_eth_private *mdp;
	struct net_device *ndev;
3213
	int ret;
3214 3215 3216 3217 3218

	/* get base addr */
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);

	ndev = alloc_etherdev(sizeof(struct sh_eth_private));
3219 3220
	if (!ndev)
		return -ENOMEM;
3221

3222 3223 3224
	pm_runtime_enable(&pdev->dev);
	pm_runtime_get_sync(&pdev->dev);

3225
	ret = platform_get_irq(pdev, 0);
3226
	if (ret < 0)
3227
		goto out_release;
3228
	ndev->irq = ret;
3229 3230 3231 3232

	SET_NETDEV_DEV(ndev, &pdev->dev);

	mdp = netdev_priv(ndev);
3233 3234
	mdp->num_tx_ring = TX_RING_SIZE;
	mdp->num_rx_ring = RX_RING_SIZE;
S
Sergei Shtylyov 已提交
3235 3236 3237
	mdp->addr = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(mdp->addr)) {
		ret = PTR_ERR(mdp->addr);
Y
Yoshihiro Shimoda 已提交
3238 3239 3240
		goto out_release;
	}

3241 3242
	ndev->base_addr = res->start;

3243
	spin_lock_init(&mdp->lock);
3244
	mdp->pdev = pdev;
3245

3246 3247
	if (pdev->dev.of_node)
		pd = sh_eth_parse_dt(&pdev->dev);
3248 3249 3250 3251 3252 3253
	if (!pd) {
		dev_err(&pdev->dev, "no platform data\n");
		ret = -EINVAL;
		goto out_release;
	}

3254
	/* get PHY ID */
3255
	mdp->phy_id = pd->phy;
3256
	mdp->phy_interface = pd->phy_interface;
3257 3258
	mdp->no_ether_link = pd->no_ether_link;
	mdp->ether_link_active_low = pd->ether_link_active_low;
3259

3260
	/* set cpu data */
3261
	if (id)
3262
		mdp->cd = (struct sh_eth_cpu_data *)id->driver_data;
3263 3264
	else
		mdp->cd = (struct sh_eth_cpu_data *)of_device_get_match_data(&pdev->dev);
3265

3266
	mdp->reg_offset = sh_eth_get_register_offset(mdp->cd->register_type);
3267 3268 3269 3270 3271 3272
	if (!mdp->reg_offset) {
		dev_err(&pdev->dev, "Unknown register type (%d)\n",
			mdp->cd->register_type);
		ret = -EINVAL;
		goto out_release;
	}
3273 3274
	sh_eth_set_default_cpu_data(mdp->cd);

3275 3276 3277 3278 3279 3280 3281
	/* User's manual states max MTU should be 2048 but due to the
	 * alignment calculations in sh_eth_ring_init() the practical
	 * MTU is a bit less. Maybe this can be optimized some more.
	 */
	ndev->max_mtu = 2000 - (ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN);
	ndev->min_mtu = ETH_MIN_MTU;

3282
	/* set function */
3283 3284 3285 3286
	if (mdp->cd->tsu)
		ndev->netdev_ops = &sh_eth_netdev_ops_tsu;
	else
		ndev->netdev_ops = &sh_eth_netdev_ops;
3287
	ndev->ethtool_ops = &sh_eth_ethtool_ops;
3288 3289
	ndev->watchdog_timeo = TX_TIMEOUT;

3290 3291
	/* debug message level */
	mdp->msg_enable = SH_ETH_DEF_MSG_ENABLE;
3292 3293

	/* read and set MAC address */
3294
	read_mac_address(ndev, pd->mac_addr);
3295 3296 3297 3298 3299
	if (!is_valid_ether_addr(ndev->dev_addr)) {
		dev_warn(&pdev->dev,
			 "no valid MAC address supplied, using a random one.\n");
		eth_hw_addr_random(ndev);
	}
3300

3301
	if (mdp->cd->tsu) {
3302
		int port = pdev->id < 0 ? 0 : pdev->id % 2;
3303
		struct resource *rtsu;
3304

3305
		rtsu = platform_get_resource(pdev, IORESOURCE_MEM, 1);
3306 3307 3308 3309 3310 3311 3312 3313
		if (!rtsu) {
			dev_err(&pdev->dev, "no TSU resource\n");
			ret = -ENODEV;
			goto out_release;
		}
		/* We can only request the  TSU region  for the first port
		 * of the two  sharing this TSU for the probe to succeed...
		 */
3314
		if (port == 0 &&
3315 3316 3317 3318 3319 3320 3321
		    !devm_request_mem_region(&pdev->dev, rtsu->start,
					     resource_size(rtsu),
					     dev_name(&pdev->dev))) {
			dev_err(&pdev->dev, "can't request TSU resource.\n");
			ret = -EBUSY;
			goto out_release;
		}
3322
		/* ioremap the TSU registers */
3323 3324 3325 3326 3327
		mdp->tsu_addr = devm_ioremap(&pdev->dev, rtsu->start,
					     resource_size(rtsu));
		if (!mdp->tsu_addr) {
			dev_err(&pdev->dev, "TSU region ioremap() failed.\n");
			ret = -ENOMEM;
3328 3329
			goto out_release;
		}
3330
		mdp->port = port;
3331
		ndev->features = NETIF_F_HW_VLAN_CTAG_FILTER;
3332

3333
		/* Need to init only the first port of the two sharing a TSU */
3334
		if (port == 0) {
3335 3336
			if (mdp->cd->chip_reset)
				mdp->cd->chip_reset(ndev);
3337

3338 3339 3340
			/* TSU init (Init only)*/
			sh_eth_tsu_init(mdp);
		}
3341 3342
	}

3343 3344 3345
	if (mdp->cd->rmiimode)
		sh_eth_write(ndev, 0x1, RMIIMODE);

3346 3347 3348
	/* MDIO bus init */
	ret = sh_mdio_init(mdp, pd);
	if (ret) {
3349 3350
		if (ret != -EPROBE_DEFER)
			dev_err(&pdev->dev, "MDIO init failed: %d\n", ret);
3351 3352 3353
		goto out_release;
	}

S
Sergei Shtylyov 已提交
3354 3355
	netif_napi_add(ndev, &mdp->napi, sh_eth_poll, 64);

3356 3357 3358
	/* network device register */
	ret = register_netdev(ndev);
	if (ret)
S
Sergei Shtylyov 已提交
3359
		goto out_napi_del;
3360

3361
	if (mdp->cd->magic)
3362 3363
		device_set_wakeup_capable(&pdev->dev, 1);

L
Lucas De Marchi 已提交
3364
	/* print device information */
3365 3366
	netdev_info(ndev, "Base address at 0x%x, %pM, IRQ %d.\n",
		    (u32)ndev->base_addr, ndev->dev_addr, ndev->irq);
3367

3368
	pm_runtime_put(&pdev->dev);
3369 3370 3371 3372
	platform_set_drvdata(pdev, ndev);

	return ret;

S
Sergei Shtylyov 已提交
3373 3374
out_napi_del:
	netif_napi_del(&mdp->napi);
3375
	sh_mdio_release(mdp);
S
Sergei Shtylyov 已提交
3376

3377 3378
out_release:
	/* net_dev free */
3379
	free_netdev(ndev);
3380

3381 3382
	pm_runtime_put(&pdev->dev);
	pm_runtime_disable(&pdev->dev);
3383 3384 3385 3386 3387 3388
	return ret;
}

static int sh_eth_drv_remove(struct platform_device *pdev)
{
	struct net_device *ndev = platform_get_drvdata(pdev);
S
Sergei Shtylyov 已提交
3389
	struct sh_eth_private *mdp = netdev_priv(ndev);
3390 3391

	unregister_netdev(ndev);
S
Sergei Shtylyov 已提交
3392
	netif_napi_del(&mdp->napi);
3393
	sh_mdio_release(mdp);
3394
	pm_runtime_disable(&pdev->dev);
3395 3396 3397 3398 3399
	free_netdev(ndev);

	return 0;
}

3400
#ifdef CONFIG_PM
M
Mikhail Ulyanov 已提交
3401
#ifdef CONFIG_PM_SLEEP
3402 3403 3404 3405 3406 3407 3408
static int sh_eth_wol_setup(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

	/* Only allow ECI interrupts */
	synchronize_irq(ndev->irq);
	napi_disable(&mdp->napi);
S
Sergei Shtylyov 已提交
3409
	sh_eth_write(ndev, EESIPR_ECIIP, EESIPR);
3410 3411

	/* Enable MagicPacket */
3412
	sh_eth_modify(ndev, ECMR, ECMR_MPDE, ECMR_MPDE);
3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441

	return enable_irq_wake(ndev->irq);
}

static int sh_eth_wol_restore(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	int ret;

	napi_enable(&mdp->napi);

	/* Disable MagicPacket */
	sh_eth_modify(ndev, ECMR, ECMR_MPDE, 0);

	/* The device needs to be reset to restore MagicPacket logic
	 * for next wakeup. If we close and open the device it will
	 * both be reset and all registers restored. This is what
	 * happens during suspend and resume without WoL enabled.
	 */
	ret = sh_eth_close(ndev);
	if (ret < 0)
		return ret;
	ret = sh_eth_open(ndev);
	if (ret < 0)
		return ret;

	return disable_irq_wake(ndev->irq);
}

M
Mikhail Ulyanov 已提交
3442 3443 3444
static int sh_eth_suspend(struct device *dev)
{
	struct net_device *ndev = dev_get_drvdata(dev);
3445
	struct sh_eth_private *mdp = netdev_priv(ndev);
M
Mikhail Ulyanov 已提交
3446 3447
	int ret = 0;

3448 3449 3450 3451 3452 3453 3454 3455
	if (!netif_running(ndev))
		return 0;

	netif_device_detach(ndev);

	if (mdp->wol_enabled)
		ret = sh_eth_wol_setup(ndev);
	else
M
Mikhail Ulyanov 已提交
3456 3457 3458 3459 3460 3461 3462 3463
		ret = sh_eth_close(ndev);

	return ret;
}

static int sh_eth_resume(struct device *dev)
{
	struct net_device *ndev = dev_get_drvdata(dev);
3464
	struct sh_eth_private *mdp = netdev_priv(ndev);
M
Mikhail Ulyanov 已提交
3465 3466
	int ret = 0;

3467 3468 3469 3470 3471 3472
	if (!netif_running(ndev))
		return 0;

	if (mdp->wol_enabled)
		ret = sh_eth_wol_restore(ndev);
	else
M
Mikhail Ulyanov 已提交
3473
		ret = sh_eth_open(ndev);
3474 3475 3476 3477 3478

	if (ret < 0)
		return ret;

	netif_device_attach(ndev);
M
Mikhail Ulyanov 已提交
3479 3480 3481 3482 3483

	return ret;
}
#endif

3484 3485
static int sh_eth_runtime_nop(struct device *dev)
{
S
Sergei Shtylyov 已提交
3486
	/* Runtime PM callback shared between ->runtime_suspend()
3487 3488 3489 3490 3491 3492 3493 3494 3495
	 * and ->runtime_resume(). Simply returns success.
	 *
	 * This driver re-initializes all registers after
	 * pm_runtime_get_sync() anyway so there is no need
	 * to save and restore registers here.
	 */
	return 0;
}

3496
static const struct dev_pm_ops sh_eth_dev_pm_ops = {
M
Mikhail Ulyanov 已提交
3497
	SET_SYSTEM_SLEEP_PM_OPS(sh_eth_suspend, sh_eth_resume)
3498
	SET_RUNTIME_PM_OPS(sh_eth_runtime_nop, sh_eth_runtime_nop, NULL)
3499
};
3500 3501 3502 3503
#define SH_ETH_PM_OPS (&sh_eth_dev_pm_ops)
#else
#define SH_ETH_PM_OPS NULL
#endif
3504

3505
static const struct platform_device_id sh_eth_id_table[] = {
3506
	{ "sh7619-ether", (kernel_ulong_t)&sh7619_data },
3507
	{ "sh771x-ether", (kernel_ulong_t)&sh771x_data },
3508
	{ "sh7724-ether", (kernel_ulong_t)&sh7724_data },
3509
	{ "sh7734-gether", (kernel_ulong_t)&sh7734_data },
3510 3511
	{ "sh7757-ether", (kernel_ulong_t)&sh7757_data },
	{ "sh7757-gether", (kernel_ulong_t)&sh7757_data_giga },
3512
	{ "sh7763-gether", (kernel_ulong_t)&sh7763_data },
3513 3514 3515 3516
	{ }
};
MODULE_DEVICE_TABLE(platform, sh_eth_id_table);

3517 3518 3519
static struct platform_driver sh_eth_driver = {
	.probe = sh_eth_drv_probe,
	.remove = sh_eth_drv_remove,
3520
	.id_table = sh_eth_id_table,
3521 3522
	.driver = {
		   .name = CARDNAME,
3523
		   .pm = SH_ETH_PM_OPS,
3524
		   .of_match_table = of_match_ptr(sh_eth_match_table),
3525 3526 3527
	},
};

3528
module_platform_driver(sh_eth_driver);
3529 3530 3531 3532

MODULE_AUTHOR("Nobuhiro Iwamatsu, Yoshihiro Shimoda");
MODULE_DESCRIPTION("Renesas SuperH Ethernet driver");
MODULE_LICENSE("GPL v2");