sh_eth.c 71.1 KB
Newer Older
S
Sergei Shtylyov 已提交
1
/*  SuperH Ethernet device driver
2
 *
3
 *  Copyright (C) 2006-2012 Nobuhiro Iwamatsu
4 5
 *  Copyright (C) 2008-2014 Renesas Solutions Corp.
 *  Copyright (C) 2013-2014 Cogent Embedded, Inc.
B
Ben Dooks 已提交
6
 *  Copyright (C) 2014 Codethink Limited
7 8 9 10 11 12 13 14 15 16 17 18 19 20
 *
 *  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 已提交
21 22 23
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/spinlock.h>
24
#include <linux/interrupt.h>
25 26 27 28 29 30
#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>
31 32 33 34
#include <linux/of.h>
#include <linux/of_device.h>
#include <linux/of_irq.h>
#include <linux/of_net.h>
35 36 37
#include <linux/phy.h>
#include <linux/cache.h>
#include <linux/io.h>
38
#include <linux/pm_runtime.h>
39
#include <linux/slab.h>
40
#include <linux/ethtool.h>
41
#include <linux/if_vlan.h>
42
#include <linux/clk.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 56 57 58 59 60 61 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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
static const u16 sh_eth_offset_gigabit[SH_ETH_MAX_REGISTER_OFFSET] = {
	[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,
	[TSU_QTAG0]	= 0x0040,
	[TSU_QTAG1]	= 0x0044,
	[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,
	[TSU_ADRL0]	= 0x0104,
	[TSU_ADRH31]	= 0x01f8,
	[TSU_ADRL31]	= 0x01fc,

	[TXNLCR0]	= 0x0080,
	[TXALCR0]	= 0x0084,
	[RXNLCR0]	= 0x0088,
	[RXALCR0]	= 0x008c,
	[FWNLCR0]	= 0x0090,
	[FWALCR0]	= 0x0094,
	[TXNLCR1]	= 0x00a0,
	[TXALCR1]	= 0x00a0,
	[RXNLCR1]	= 0x00a8,
	[RXALCR1]	= 0x00ac,
	[FWNLCR1]	= 0x00b0,
	[FWALCR1]	= 0x00b4,
};

S
Simon Horman 已提交
152 153 154 155 156 157 158 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 203 204 205 206 207 208 209 210
static const u16 sh_eth_offset_fast_rz[SH_ETH_MAX_REGISTER_OFFSET] = {
	[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,
	[TSU_VTAG0]	= 0x0058,
	[TSU_ADSBSY]	= 0x0060,
	[TSU_TEN]	= 0x0064,
	[TSU_ADRH0]	= 0x0100,
	[TSU_ADRL0]	= 0x0104,
	[TSU_ADRH31]	= 0x01f8,
	[TSU_ADRL31]	= 0x01fc,

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

211 212 213 214 215 216 217 218 219 220 221 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
static const u16 sh_eth_offset_fast_rcar[SH_ETH_MAX_REGISTER_OFFSET] = {
	[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,
252
	[RMIIMODE]      = 0x026c,
253 254 255 256
	[FCFTR]		= 0x0270,
	[TRIMD]		= 0x027c,
};

257 258 259 260 261 262 263 264 265 266 267 268 269 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
static const u16 sh_eth_offset_fast_sh4[SH_ETH_MAX_REGISTER_OFFSET] = {
	[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] = {
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
	[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,

331 332 333 334 335 336 337 338 339 340 341 342 343 344 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
	[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,
	[TXALCR1]	= 0x00a0,
	[RXNLCR1]	= 0x00a8,
	[RXALCR1]	= 0x00ac,
	[FWNLCR1]	= 0x00b0,
	[FWALCR1]	= 0x00b4,

	[TSU_ADRH0]	= 0x0100,
	[TSU_ADRL0]	= 0x0104,
	[TSU_ADRL31]	= 0x01fc,
};

398
static bool sh_eth_is_gether(struct sh_eth_private *mdp)
399
{
400
	return mdp->reg_offset == sh_eth_offset_gigabit;
401 402
}

S
Simon Horman 已提交
403 404 405 406 407
static bool sh_eth_is_rz_fast_ether(struct sh_eth_private *mdp)
{
	return mdp->reg_offset == sh_eth_offset_fast_rz;
}

408
static void sh_eth_select_mii(struct net_device *ndev)
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
{
	u32 value = 0x0;
	struct sh_eth_private *mdp = netdev_priv(ndev);

	switch (mdp->phy_interface) {
	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:
424 425
		netdev_warn(ndev,
			    "PHY interface mode was not setup. Set to MII.\n");
426 427 428 429 430 431 432
		value = 0x1;
		break;
	}

	sh_eth_write(ndev, value, RMII_MII);
}

433
static void sh_eth_set_duplex(struct net_device *ndev)
434 435 436 437
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

	if (mdp->duplex) /* Full */
438
		sh_eth_write(ndev, sh_eth_read(ndev, ECMR) | ECMR_DM, ECMR);
439
	else		/* Half */
440
		sh_eth_write(ndev, sh_eth_read(ndev, ECMR) & ~ECMR_DM, ECMR);
441 442
}

443
/* There is CPU dependent code */
444
static void sh_eth_set_rate_r8a777x(struct net_device *ndev)
445 446
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
447

448 449 450 451 452 453 454 455 456 457 458 459
	switch (mdp->speed) {
	case 10: /* 10BASE */
		sh_eth_write(ndev, sh_eth_read(ndev, ECMR) & ~ECMR_ELB, ECMR);
		break;
	case 100:/* 100BASE */
		sh_eth_write(ndev, sh_eth_read(ndev, ECMR) | ECMR_ELB, ECMR);
		break;
	default:
		break;
	}
}

S
Sergei Shtylyov 已提交
460
/* R8A7778/9 */
461
static struct sh_eth_cpu_data r8a777x_data = {
462
	.set_duplex	= sh_eth_set_duplex,
463
	.set_rate	= sh_eth_set_rate_r8a777x,
464

465 466
	.register_type	= SH_ETH_REG_FAST_RCAR,

467 468 469 470 471
	.ecsr_value	= ECSR_PSRTO | ECSR_LCHNG | ECSR_ICD,
	.ecsipr_value	= ECSIPR_PSRTOIP | ECSIPR_LCHNGIP | ECSIPR_ICDIP,
	.eesipr_value	= 0x01ff009f,

	.tx_check	= EESR_FTC | EESR_CND | EESR_DLC | EESR_CD | EESR_RTO,
472 473 474
	.eesr_err_check	= EESR_TWB | EESR_TABT | EESR_RABT | EESR_RFE |
			  EESR_RDE | EESR_RFRMER | EESR_TFE | EESR_TDE |
			  EESR_ECI,
475 476 477 478 479 480 481

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

S
Sergei Shtylyov 已提交
482 483
/* R8A7790/1 */
static struct sh_eth_cpu_data r8a779x_data = {
484 485 486
	.set_duplex	= sh_eth_set_duplex,
	.set_rate	= sh_eth_set_rate_r8a777x,

487 488
	.register_type	= SH_ETH_REG_FAST_RCAR,

489 490 491 492 493
	.ecsr_value	= ECSR_PSRTO | ECSR_LCHNG | ECSR_ICD,
	.ecsipr_value	= ECSIPR_PSRTOIP | ECSIPR_LCHNGIP | ECSIPR_ICDIP,
	.eesipr_value	= 0x01ff009f,

	.tx_check	= EESR_FTC | EESR_CND | EESR_DLC | EESR_CD | EESR_RTO,
494 495 496
	.eesr_err_check	= EESR_TWB | EESR_TABT | EESR_RABT | EESR_RFE |
			  EESR_RDE | EESR_RFRMER | EESR_TFE | EESR_TDE |
			  EESR_ECI,
497 498 499 500 501 502

	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.hw_swap	= 1,
	.rmiimode	= 1,
503
	.shift_rd0	= 1,
504 505
};

506
static void sh_eth_set_rate_sh7724(struct net_device *ndev)
507 508
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
509 510 511

	switch (mdp->speed) {
	case 10: /* 10BASE */
512
		sh_eth_write(ndev, sh_eth_read(ndev, ECMR) & ~ECMR_RTM, ECMR);
513 514
		break;
	case 100:/* 100BASE */
515
		sh_eth_write(ndev, sh_eth_read(ndev, ECMR) | ECMR_RTM, ECMR);
516 517 518 519 520 521 522
		break;
	default:
		break;
	}
}

/* SH7724 */
523
static struct sh_eth_cpu_data sh7724_data = {
524
	.set_duplex	= sh_eth_set_duplex,
525
	.set_rate	= sh_eth_set_rate_sh7724,
526

527 528
	.register_type	= SH_ETH_REG_FAST_SH4,

529 530
	.ecsr_value	= ECSR_PSRTO | ECSR_LCHNG | ECSR_ICD,
	.ecsipr_value	= ECSIPR_PSRTOIP | ECSIPR_LCHNGIP | ECSIPR_ICDIP,
531
	.eesipr_value	= 0x01ff009f,
532 533

	.tx_check	= EESR_FTC | EESR_CND | EESR_DLC | EESR_CD | EESR_RTO,
534 535 536
	.eesr_err_check	= EESR_TWB | EESR_TABT | EESR_RABT | EESR_RFE |
			  EESR_RDE | EESR_RFRMER | EESR_TFE | EESR_TDE |
			  EESR_ECI,
537 538 539 540 541

	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.hw_swap	= 1,
542 543
	.rpadir		= 1,
	.rpadir_value	= 0x00020000, /* NET_IP_ALIGN assumed to be 2 */
544
};
545

546
static void sh_eth_set_rate_sh7757(struct net_device *ndev)
547 548 549 550 551
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

	switch (mdp->speed) {
	case 10: /* 10BASE */
552
		sh_eth_write(ndev, 0, RTRATE);
553 554
		break;
	case 100:/* 100BASE */
555
		sh_eth_write(ndev, 1, RTRATE);
556 557 558 559 560 561 562
		break;
	default:
		break;
	}
}

/* SH7757 */
563 564 565
static struct sh_eth_cpu_data sh7757_data = {
	.set_duplex	= sh_eth_set_duplex,
	.set_rate	= sh_eth_set_rate_sh7757,
566

567 568
	.register_type	= SH_ETH_REG_FAST_SH4,

569 570 571
	.eesipr_value	= DMAC_M_RFRMER | DMAC_M_ECI | 0x003fffff,

	.tx_check	= EESR_FTC | EESR_CND | EESR_DLC | EESR_CD | EESR_RTO,
572 573 574
	.eesr_err_check	= EESR_TWB | EESR_TABT | EESR_RABT | EESR_RFE |
			  EESR_RDE | EESR_RFRMER | EESR_TFE | EESR_TDE |
			  EESR_ECI,
575

576
	.irq_flags	= IRQF_SHARED,
577 578 579 580 581
	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.hw_swap	= 1,
	.no_ade		= 1,
582 583
	.rpadir		= 1,
	.rpadir_value   = 2 << 16,
584
};
585

586
#define SH_GIGA_ETH_BASE	0xfee00000UL
587 588 589 590 591 592 593 594 595
#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)
{
	int i;
	unsigned long mahr[2], malr[2];

	/* save MAHR and MALR */
	for (i = 0; i < 2; i++) {
Y
Yoshihiro Shimoda 已提交
596 597
		malr[i] = ioread32((void *)GIGA_MALR(i));
		mahr[i] = ioread32((void *)GIGA_MAHR(i));
598 599 600
	}

	/* reset device */
Y
Yoshihiro Shimoda 已提交
601
	iowrite32(ARSTR_ARSTR, (void *)(SH_GIGA_ETH_BASE + 0x1800));
602 603 604 605
	mdelay(1);

	/* restore MAHR and MALR */
	for (i = 0; i < 2; i++) {
Y
Yoshihiro Shimoda 已提交
606 607
		iowrite32(malr[i], (void *)GIGA_MALR(i));
		iowrite32(mahr[i], (void *)GIGA_MAHR(i));
608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
	}
}

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;
	default:
		break;
	}
}

/* SH7757(GETHERC) */
631
static struct sh_eth_cpu_data sh7757_data_giga = {
632
	.chip_reset	= sh_eth_chip_reset_giga,
633
	.set_duplex	= sh_eth_set_duplex,
634 635
	.set_rate	= sh_eth_set_rate_giga,

636 637
	.register_type	= SH_ETH_REG_GIGABIT,

638 639 640 641 642
	.ecsr_value	= ECSR_ICD | ECSR_MPD,
	.ecsipr_value	= ECSIPR_LCHNGIP | ECSIPR_ICDIP | ECSIPR_MPDIP,
	.eesipr_value	= DMAC_M_RFRMER | DMAC_M_ECI | 0x003fffff,

	.tx_check	= EESR_TC1 | EESR_FTC,
643 644 645
	.eesr_err_check	= EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_RABT |
			  EESR_RFE | EESR_RDE | EESR_RFRMER | EESR_TFE |
			  EESR_TDE | EESR_ECI,
646 647
	.fdr_value	= 0x0000072f,

648
	.irq_flags	= IRQF_SHARED,
649 650 651 652 653 654 655 656 657
	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.bculr		= 1,
	.hw_swap	= 1,
	.rpadir		= 1,
	.rpadir_value   = 2 << 16,
	.no_trimd	= 1,
	.no_ade		= 1,
658
	.tsu		= 1,
659 660
};

661 662
static void sh_eth_chip_reset(struct net_device *ndev)
{
663 664
	struct sh_eth_private *mdp = netdev_priv(ndev);

665
	/* reset device */
666
	sh_eth_tsu_write(mdp, ARSTR_ARSTR, ARSTR);
667 668 669
	mdelay(1);
}

670
static void sh_eth_set_rate_gether(struct net_device *ndev)
671 672 673 674 675
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

	switch (mdp->speed) {
	case 10: /* 10BASE */
676
		sh_eth_write(ndev, GECMR_10, GECMR);
677 678
		break;
	case 100:/* 100BASE */
679
		sh_eth_write(ndev, GECMR_100, GECMR);
680 681
		break;
	case 1000: /* 1000BASE */
682
		sh_eth_write(ndev, GECMR_1000, GECMR);
683 684 685 686 687 688
		break;
	default:
		break;
	}
}

689 690
/* SH7734 */
static struct sh_eth_cpu_data sh7734_data = {
691 692
	.chip_reset	= sh_eth_chip_reset,
	.set_duplex	= sh_eth_set_duplex,
693 694
	.set_rate	= sh_eth_set_rate_gether,

695 696
	.register_type	= SH_ETH_REG_GIGABIT,

697 698 699 700 701
	.ecsr_value	= ECSR_ICD | ECSR_MPD,
	.ecsipr_value	= ECSIPR_LCHNGIP | ECSIPR_ICDIP | ECSIPR_MPDIP,
	.eesipr_value	= DMAC_M_RFRMER | DMAC_M_ECI | 0x003fffff,

	.tx_check	= EESR_TC1 | EESR_FTC,
702 703 704
	.eesr_err_check	= EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_RABT |
			  EESR_RFE | EESR_RDE | EESR_RFRMER | EESR_TFE |
			  EESR_TDE | EESR_ECI,
705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722

	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.bculr		= 1,
	.hw_swap	= 1,
	.no_trimd	= 1,
	.no_ade		= 1,
	.tsu		= 1,
	.hw_crc		= 1,
	.select_mii	= 1,
};

/* SH7763 */
static struct sh_eth_cpu_data sh7763_data = {
	.chip_reset	= sh_eth_chip_reset,
	.set_duplex	= sh_eth_set_duplex,
	.set_rate	= sh_eth_set_rate_gether,
723

724 725
	.register_type	= SH_ETH_REG_GIGABIT,

726 727 728 729 730
	.ecsr_value	= ECSR_ICD | ECSR_MPD,
	.ecsipr_value	= ECSIPR_LCHNGIP | ECSIPR_ICDIP | ECSIPR_MPDIP,
	.eesipr_value	= DMAC_M_RFRMER | DMAC_M_ECI | 0x003fffff,

	.tx_check	= EESR_TC1 | EESR_FTC,
S
Sergei Shtylyov 已提交
731 732
	.eesr_err_check	= EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_RABT |
			  EESR_RDE | EESR_RFRMER | EESR_TFE | EESR_TDE |
733 734 735 736 737 738 739 740 741
			  EESR_ECI,

	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.bculr		= 1,
	.hw_swap	= 1,
	.no_trimd	= 1,
	.no_ade		= 1,
742
	.tsu		= 1,
743
	.irq_flags	= IRQF_SHARED,
744 745
};

746
static void sh_eth_chip_reset_r8a7740(struct net_device *ndev)
747 748 749 750 751 752 753
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

	/* reset device */
	sh_eth_tsu_write(mdp, ARSTR_ARSTR, ARSTR);
	mdelay(1);

754
	sh_eth_select_mii(ndev);
755 756 757
}

/* R8A7740 */
758 759
static struct sh_eth_cpu_data r8a7740_data = {
	.chip_reset	= sh_eth_chip_reset_r8a7740,
760
	.set_duplex	= sh_eth_set_duplex,
761
	.set_rate	= sh_eth_set_rate_gether,
762

763 764
	.register_type	= SH_ETH_REG_GIGABIT,

765 766 767 768 769
	.ecsr_value	= ECSR_ICD | ECSR_MPD,
	.ecsipr_value	= ECSIPR_LCHNGIP | ECSIPR_ICDIP | ECSIPR_MPDIP,
	.eesipr_value	= DMAC_M_RFRMER | DMAC_M_ECI | 0x003fffff,

	.tx_check	= EESR_TC1 | EESR_FTC,
770 771 772
	.eesr_err_check	= EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_RABT |
			  EESR_RFE | EESR_RDE | EESR_RFRMER | EESR_TFE |
			  EESR_TDE | EESR_ECI,
773
	.fdr_value	= 0x0000070f,
774 775 776 777 778 779

	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.bculr		= 1,
	.hw_swap	= 1,
780 781
	.rpadir		= 1,
	.rpadir_value   = 2 << 16,
782 783 784
	.no_trimd	= 1,
	.no_ade		= 1,
	.tsu		= 1,
785
	.select_mii	= 1,
786
	.shift_rd0	= 1,
787 788
};

S
Simon Horman 已提交
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
/* R7S72100 */
static struct sh_eth_cpu_data r7s72100_data = {
	.chip_reset	= sh_eth_chip_reset,
	.set_duplex	= sh_eth_set_duplex,

	.register_type	= SH_ETH_REG_FAST_RZ,

	.ecsr_value	= ECSR_ICD,
	.ecsipr_value	= ECSIPR_ICDIP,
	.eesipr_value	= 0xff7f009f,

	.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 |
			  EESR_TDE | EESR_ECI,
	.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,
	.hw_crc		= 1,
	.tsu		= 1,
	.shift_rd0	= 1,
};

820
static struct sh_eth_cpu_data sh7619_data = {
821 822
	.register_type	= SH_ETH_REG_FAST_SH3_SH2,

823 824 825 826 827 828 829
	.eesipr_value	= DMAC_M_RFRMER | DMAC_M_ECI | 0x003fffff,

	.apr		= 1,
	.mpr		= 1,
	.tpauser	= 1,
	.hw_swap	= 1,
};
830 831

static struct sh_eth_cpu_data sh771x_data = {
832 833
	.register_type	= SH_ETH_REG_FAST_SH3_SH2,

834
	.eesipr_value	= DMAC_M_RFRMER | DMAC_M_ECI | 0x003fffff,
835
	.tsu		= 1,
836 837 838 839 840 841 842 843 844 845 846
};

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 已提交
847
		cd->fcftr_value = DEFAULT_FIFO_F_D_RFF |
848 849 850 851 852 853 854 855 856 857 858 859
				  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;
}

860 861 862 863 864 865 866 867 868 869 870
static int sh_eth_check_reset(struct net_device *ndev)
{
	int ret = 0;
	int cnt = 100;

	while (cnt > 0) {
		if (!(sh_eth_read(ndev, EDMR) & 0x3))
			break;
		mdelay(1);
		cnt--;
	}
871
	if (cnt <= 0) {
872
		netdev_err(ndev, "Device reset failed\n");
873 874 875
		ret = -ETIMEDOUT;
	}
	return ret;
876
}
877 878 879 880 881 882

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

S
Simon Horman 已提交
883
	if (sh_eth_is_gether(mdp) || sh_eth_is_rz_fast_ether(mdp)) {
884 885 886 887 888 889
		sh_eth_write(ndev, EDSR_ENALL, EDSR);
		sh_eth_write(ndev, sh_eth_read(ndev, EDMR) | EDMR_SRST_GETHER,
			     EDMR);

		ret = sh_eth_check_reset(ndev);
		if (ret)
890
			return ret;
891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918

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

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

		/* Select MII mode */
		if (mdp->cd->select_mii)
			sh_eth_select_mii(ndev);
	} else {
		sh_eth_write(ndev, sh_eth_read(ndev, EDMR) | EDMR_SRST_ETHER,
			     EDMR);
		mdelay(3);
		sh_eth_write(ndev, sh_eth_read(ndev, EDMR) & ~EDMR_SRST_ETHER,
			     EDMR);
	}

	return ret;
}
919

920
#if defined(CONFIG_CPU_SH4) || defined(CONFIG_ARCH_SHMOBILE)
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936
static void sh_eth_set_receive_align(struct sk_buff *skb)
{
	int reserve;

	reserve = SH4_SKB_RX_ALIGN - ((u32)skb->data & (SH4_SKB_RX_ALIGN - 1));
	if (reserve)
		skb_reserve(skb, reserve);
}
#else
static void sh_eth_set_receive_align(struct sk_buff *skb)
{
	skb_reserve(skb, SH2_SH3_SKB_RX_ALIGN);
}
#endif


937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959
/* CPU <-> EDMAC endian convert */
static inline __u32 cpu_to_edmac(struct sh_eth_private *mdp, u32 x)
{
	switch (mdp->edmac_endian) {
	case EDMAC_LITTLE_ENDIAN:
		return cpu_to_le32(x);
	case EDMAC_BIG_ENDIAN:
		return cpu_to_be32(x);
	}
	return x;
}

static inline __u32 edmac_to_cpu(struct sh_eth_private *mdp, u32 x)
{
	switch (mdp->edmac_endian) {
	case EDMAC_LITTLE_ENDIAN:
		return le32_to_cpu(x);
	case EDMAC_BIG_ENDIAN:
		return be32_to_cpu(x);
	}
	return x;
}

S
Sergei Shtylyov 已提交
960
/* Program the hardware MAC address from dev->dev_addr. */
961 962
static void update_mac_address(struct net_device *ndev)
{
963
	sh_eth_write(ndev,
S
Sergei Shtylyov 已提交
964 965
		     (ndev->dev_addr[0] << 24) | (ndev->dev_addr[1] << 16) |
		     (ndev->dev_addr[2] << 8) | (ndev->dev_addr[3]), MAHR);
966
	sh_eth_write(ndev,
S
Sergei Shtylyov 已提交
967
		     (ndev->dev_addr[4] << 8) | (ndev->dev_addr[5]), MALR);
968 969
}

S
Sergei Shtylyov 已提交
970
/* Get MAC address from SuperH MAC address register
971 972 973 974 975 976
 *
 * 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.
 *
 */
977
static void read_mac_address(struct net_device *ndev, unsigned char *mac)
978
{
979
	if (mac[0] || mac[1] || mac[2] || mac[3] || mac[4] || mac[5]) {
980
		memcpy(ndev->dev_addr, mac, ETH_ALEN);
981
	} else {
982 983 984 985 986 987
		ndev->dev_addr[0] = (sh_eth_read(ndev, MAHR) >> 24);
		ndev->dev_addr[1] = (sh_eth_read(ndev, MAHR) >> 16) & 0xFF;
		ndev->dev_addr[2] = (sh_eth_read(ndev, MAHR) >> 8) & 0xFF;
		ndev->dev_addr[3] = (sh_eth_read(ndev, MAHR) & 0xFF);
		ndev->dev_addr[4] = (sh_eth_read(ndev, MALR) >> 8) & 0xFF;
		ndev->dev_addr[5] = (sh_eth_read(ndev, MALR) & 0xFF);
988
	}
989 990
}

991 992
static unsigned long sh_eth_get_edtrr_trns(struct sh_eth_private *mdp)
{
S
Simon Horman 已提交
993
	if (sh_eth_is_gether(mdp) || sh_eth_is_rz_fast_ether(mdp))
994 995 996 997 998
		return EDTRR_TRNS_GETHER;
	else
		return EDTRR_TRNS_ETHER;
}

999
struct bb_info {
Y
Yoshihiro Shimoda 已提交
1000
	void (*set_gate)(void *addr);
1001
	struct mdiobb_ctrl ctrl;
Y
Yoshihiro Shimoda 已提交
1002
	void *addr;
1003 1004 1005 1006 1007 1008 1009
	u32 mmd_msk;/* MMD */
	u32 mdo_msk;
	u32 mdi_msk;
	u32 mdc_msk;
};

/* PHY bit set */
Y
Yoshihiro Shimoda 已提交
1010
static void bb_set(void *addr, u32 msk)
1011
{
Y
Yoshihiro Shimoda 已提交
1012
	iowrite32(ioread32(addr) | msk, addr);
1013 1014 1015
}

/* PHY bit clear */
Y
Yoshihiro Shimoda 已提交
1016
static void bb_clr(void *addr, u32 msk)
1017
{
Y
Yoshihiro Shimoda 已提交
1018
	iowrite32((ioread32(addr) & ~msk), addr);
1019 1020 1021
}

/* PHY bit read */
Y
Yoshihiro Shimoda 已提交
1022
static int bb_read(void *addr, u32 msk)
1023
{
Y
Yoshihiro Shimoda 已提交
1024
	return (ioread32(addr) & msk) != 0;
1025 1026 1027 1028 1029 1030
}

/* Data I/O pin control */
static void sh_mmd_ctrl(struct mdiobb_ctrl *ctrl, int bit)
{
	struct bb_info *bitbang = container_of(ctrl, struct bb_info, ctrl);
1031 1032 1033 1034

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

1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045
	if (bit)
		bb_set(bitbang->addr, bitbang->mmd_msk);
	else
		bb_clr(bitbang->addr, bitbang->mmd_msk);
}

/* Set bit data*/
static void sh_set_mdio(struct mdiobb_ctrl *ctrl, int bit)
{
	struct bb_info *bitbang = container_of(ctrl, struct bb_info, ctrl);

1046 1047 1048
	if (bitbang->set_gate)
		bitbang->set_gate(bitbang->addr);

1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
	if (bit)
		bb_set(bitbang->addr, bitbang->mdo_msk);
	else
		bb_clr(bitbang->addr, bitbang->mdo_msk);
}

/* Get bit data*/
static int sh_get_mdio(struct mdiobb_ctrl *ctrl)
{
	struct bb_info *bitbang = container_of(ctrl, struct bb_info, ctrl);
1059 1060 1061 1062

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

1063 1064 1065 1066 1067 1068 1069 1070
	return bb_read(bitbang->addr, bitbang->mdi_msk);
}

/* MDC pin control */
static void sh_mdc_ctrl(struct mdiobb_ctrl *ctrl, int bit)
{
	struct bb_info *bitbang = container_of(ctrl, struct bb_info, ctrl);

1071 1072 1073
	if (bitbang->set_gate)
		bitbang->set_gate(bitbang->addr);

1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
	if (bit)
		bb_set(bitbang->addr, bitbang->mdc_msk);
	else
		bb_clr(bitbang->addr, bitbang->mdc_msk);
}

/* 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,
};

/* free skb and descriptor buffer */
static void sh_eth_ring_free(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	int i;

	/* Free Rx skb ringbuffer */
	if (mdp->rx_skbuff) {
1097 1098
		for (i = 0; i < mdp->num_rx_ring; i++)
			dev_kfree_skb(mdp->rx_skbuff[i]);
1099 1100
	}
	kfree(mdp->rx_skbuff);
1101
	mdp->rx_skbuff = NULL;
1102 1103 1104

	/* Free Tx skb ringbuffer */
	if (mdp->tx_skbuff) {
1105 1106
		for (i = 0; i < mdp->num_tx_ring; i++)
			dev_kfree_skb(mdp->tx_skbuff[i]);
1107 1108
	}
	kfree(mdp->tx_skbuff);
1109
	mdp->tx_skbuff = NULL;
1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
}

/* 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;
1120 1121
	int rx_ringsize = sizeof(*rxdesc) * mdp->num_rx_ring;
	int tx_ringsize = sizeof(*txdesc) * mdp->num_tx_ring;
1122

S
Sergei Shtylyov 已提交
1123 1124 1125 1126
	mdp->cur_rx = 0;
	mdp->cur_tx = 0;
	mdp->dirty_rx = 0;
	mdp->dirty_tx = 0;
1127 1128 1129 1130

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

	/* build Rx ring buffer */
1131
	for (i = 0; i < mdp->num_rx_ring; i++) {
1132 1133
		/* skb */
		mdp->rx_skbuff[i] = NULL;
1134
		skb = netdev_alloc_skb(ndev, mdp->rx_buf_sz);
1135 1136 1137
		mdp->rx_skbuff[i] = skb;
		if (skb == NULL)
			break;
1138
		dma_map_single(&ndev->dev, skb->data, mdp->rx_buf_sz,
S
Sergei Shtylyov 已提交
1139
			       DMA_FROM_DEVICE);
1140 1141
		sh_eth_set_receive_align(skb);

1142 1143
		/* RX descriptor */
		rxdesc = &mdp->rx_ring[i];
1144
		rxdesc->addr = virt_to_phys(PTR_ALIGN(skb->data, 4));
1145
		rxdesc->status = cpu_to_edmac(mdp, RD_RACT | RD_RFP);
1146 1147

		/* The size of the buffer is 16 byte boundary. */
1148
		rxdesc->buffer_length = ALIGN(mdp->rx_buf_sz, 16);
1149 1150
		/* Rx descriptor address set */
		if (i == 0) {
1151
			sh_eth_write(ndev, mdp->rx_desc_dma, RDLAR);
S
Simon Horman 已提交
1152 1153
			if (sh_eth_is_gether(mdp) ||
			    sh_eth_is_rz_fast_ether(mdp))
1154
				sh_eth_write(ndev, mdp->rx_desc_dma, RDFAR);
1155
		}
1156 1157
	}

1158
	mdp->dirty_rx = (u32) (i - mdp->num_rx_ring);
1159 1160

	/* Mark the last entry as wrapping the ring. */
1161
	rxdesc->status |= cpu_to_edmac(mdp, RD_RDEL);
1162 1163 1164 1165

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

	/* build Tx ring buffer */
1166
	for (i = 0; i < mdp->num_tx_ring; i++) {
1167 1168
		mdp->tx_skbuff[i] = NULL;
		txdesc = &mdp->tx_ring[i];
1169
		txdesc->status = cpu_to_edmac(mdp, TD_TFP);
1170
		txdesc->buffer_length = 0;
1171
		if (i == 0) {
1172
			/* Tx descriptor address set */
1173
			sh_eth_write(ndev, mdp->tx_desc_dma, TDLAR);
S
Simon Horman 已提交
1174 1175
			if (sh_eth_is_gether(mdp) ||
			    sh_eth_is_rz_fast_ether(mdp))
1176
				sh_eth_write(ndev, mdp->tx_desc_dma, TDFAR);
1177
		}
1178 1179
	}

1180
	txdesc->status |= cpu_to_edmac(mdp, TD_TDLE);
1181 1182 1183 1184 1185 1186 1187 1188
}

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

S
Sergei Shtylyov 已提交
1189
	/* +26 gets the maximum ethernet encapsulation, +7 & ~7 because the
1190 1191 1192 1193 1194 1195
	 * 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));
1196 1197
	if (mdp->cd->rpadir)
		mdp->rx_buf_sz += NET_IP_ALIGN;
1198 1199

	/* Allocate RX and TX skb rings */
1200 1201
	mdp->rx_skbuff = kmalloc_array(mdp->num_rx_ring,
				       sizeof(*mdp->rx_skbuff), GFP_KERNEL);
1202 1203 1204 1205 1206
	if (!mdp->rx_skbuff) {
		ret = -ENOMEM;
		return ret;
	}

1207 1208
	mdp->tx_skbuff = kmalloc_array(mdp->num_tx_ring,
				       sizeof(*mdp->tx_skbuff), GFP_KERNEL);
1209 1210 1211 1212 1213 1214
	if (!mdp->tx_skbuff) {
		ret = -ENOMEM;
		goto skb_ring_free;
	}

	/* Allocate all Rx descriptors. */
1215
	rx_ringsize = sizeof(struct sh_eth_rxdesc) * mdp->num_rx_ring;
1216
	mdp->rx_ring = dma_alloc_coherent(NULL, rx_ringsize, &mdp->rx_desc_dma,
1217
					  GFP_KERNEL);
1218 1219 1220 1221 1222 1223 1224 1225
	if (!mdp->rx_ring) {
		ret = -ENOMEM;
		goto desc_ring_free;
	}

	mdp->dirty_rx = 0;

	/* Allocate all Tx descriptors. */
1226
	tx_ringsize = sizeof(struct sh_eth_txdesc) * mdp->num_tx_ring;
1227
	mdp->tx_ring = dma_alloc_coherent(NULL, tx_ringsize, &mdp->tx_desc_dma,
1228
					  GFP_KERNEL);
1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241
	if (!mdp->tx_ring) {
		ret = -ENOMEM;
		goto desc_ring_free;
	}
	return ret;

desc_ring_free:
	/* free DMA buffer */
	dma_free_coherent(NULL, rx_ringsize, mdp->rx_ring, mdp->rx_desc_dma);

skb_ring_free:
	/* Free Rx and Tx skb ring buffer */
	sh_eth_ring_free(ndev);
1242 1243
	mdp->tx_ring = NULL;
	mdp->rx_ring = NULL;
1244 1245 1246 1247

	return ret;
}

1248 1249 1250 1251 1252
static void sh_eth_free_dma_buffer(struct sh_eth_private *mdp)
{
	int ringsize;

	if (mdp->rx_ring) {
1253
		ringsize = sizeof(struct sh_eth_rxdesc) * mdp->num_rx_ring;
1254 1255 1256 1257 1258 1259
		dma_free_coherent(NULL, ringsize, mdp->rx_ring,
				  mdp->rx_desc_dma);
		mdp->rx_ring = NULL;
	}

	if (mdp->tx_ring) {
1260
		ringsize = sizeof(struct sh_eth_txdesc) * mdp->num_tx_ring;
1261 1262 1263 1264 1265 1266
		dma_free_coherent(NULL, ringsize, mdp->tx_ring,
				  mdp->tx_desc_dma);
		mdp->tx_ring = NULL;
	}
}

1267
static int sh_eth_dev_init(struct net_device *ndev, bool start)
1268 1269 1270 1271 1272 1273
{
	int ret = 0;
	struct sh_eth_private *mdp = netdev_priv(ndev);
	u32 val;

	/* Soft Reset */
1274 1275
	ret = sh_eth_reset(ndev);
	if (ret)
1276
		return ret;
1277

1278 1279 1280
	if (mdp->cd->rmiimode)
		sh_eth_write(ndev, 0x1, RMIIMODE);

1281 1282
	/* Descriptor format */
	sh_eth_ring_format(ndev);
1283
	if (mdp->cd->rpadir)
1284
		sh_eth_write(ndev, mdp->cd->rpadir_value, RPADIR);
1285 1286

	/* all sh_eth int mask */
1287
	sh_eth_write(ndev, 0, EESIPR);
1288

1289
#if defined(__LITTLE_ENDIAN)
1290
	if (mdp->cd->hw_swap)
1291
		sh_eth_write(ndev, EDMR_EL, EDMR);
1292
	else
1293
#endif
1294
		sh_eth_write(ndev, 0, EDMR);
1295

1296
	/* FIFO size set */
1297 1298
	sh_eth_write(ndev, mdp->cd->fdr_value, FDR);
	sh_eth_write(ndev, 0, TFTR);
1299

1300 1301
	/* Frame recv control (enable multiple-packets per rx irq) */
	sh_eth_write(ndev, RMCR_RNC, RMCR);
1302

1303
	sh_eth_write(ndev, DESC_I_RINT8 | DESC_I_RINT5 | DESC_I_TINT2, TRSCER);
1304

1305
	if (mdp->cd->bculr)
1306
		sh_eth_write(ndev, 0x800, BCULR);	/* Burst sycle set */
1307

1308
	sh_eth_write(ndev, mdp->cd->fcftr_value, FCFTR);
1309

1310
	if (!mdp->cd->no_trimd)
1311
		sh_eth_write(ndev, 0, TRIMD);
1312

1313
	/* Recv frame limit set register */
1314 1315
	sh_eth_write(ndev, ndev->mtu + ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN,
		     RFLR);
1316

1317
	sh_eth_write(ndev, sh_eth_read(ndev, EESR), EESR);
1318 1319
	if (start)
		sh_eth_write(ndev, mdp->cd->eesipr_value, EESIPR);
1320 1321

	/* PAUSE Prohibition */
1322
	val = (sh_eth_read(ndev, ECMR) & ECMR_DM) |
1323 1324
		ECMR_ZPF | (mdp->duplex ? ECMR_DM : 0) | ECMR_TE | ECMR_RE;

1325
	sh_eth_write(ndev, val, ECMR);
1326

1327 1328 1329
	if (mdp->cd->set_rate)
		mdp->cd->set_rate(ndev);

1330
	/* E-MAC Status Register clear */
1331
	sh_eth_write(ndev, mdp->cd->ecsr_value, ECSR);
1332 1333

	/* E-MAC Interrupt Enable register */
1334 1335
	if (start)
		sh_eth_write(ndev, mdp->cd->ecsipr_value, ECSIPR);
1336 1337 1338 1339 1340

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

	/* mask reset */
1341
	if (mdp->cd->apr)
1342
		sh_eth_write(ndev, APR_AP, APR);
1343
	if (mdp->cd->mpr)
1344
		sh_eth_write(ndev, MPR_MP, MPR);
1345
	if (mdp->cd->tpauser)
1346
		sh_eth_write(ndev, TPAUSER_UNLIMITED, TPAUSER);
1347

1348 1349 1350
	if (start) {
		/* Setting the Rx mode will start the Rx process. */
		sh_eth_write(ndev, EDRRR_R, EDRRR);
1351

1352 1353
		netif_start_queue(ndev);
	}
1354 1355 1356 1357 1358 1359 1360 1361 1362

	return ret;
}

/* free Tx skb function */
static int sh_eth_txfree(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	struct sh_eth_txdesc *txdesc;
S
Sergei Shtylyov 已提交
1363
	int free_num = 0;
1364 1365 1366
	int entry = 0;

	for (; mdp->cur_tx - mdp->dirty_tx > 0; mdp->dirty_tx++) {
1367
		entry = mdp->dirty_tx % mdp->num_tx_ring;
1368
		txdesc = &mdp->tx_ring[entry];
1369
		if (txdesc->status & cpu_to_edmac(mdp, TD_TACT))
1370 1371 1372
			break;
		/* Free the original skb. */
		if (mdp->tx_skbuff[entry]) {
1373 1374
			dma_unmap_single(&ndev->dev, txdesc->addr,
					 txdesc->buffer_length, DMA_TO_DEVICE);
1375 1376
			dev_kfree_skb_irq(mdp->tx_skbuff[entry]);
			mdp->tx_skbuff[entry] = NULL;
S
Sergei Shtylyov 已提交
1377
			free_num++;
1378
		}
1379
		txdesc->status = cpu_to_edmac(mdp, TD_TFP);
1380
		if (entry >= mdp->num_tx_ring - 1)
1381
			txdesc->status |= cpu_to_edmac(mdp, TD_TDLE);
1382

1383 1384
		ndev->stats.tx_packets++;
		ndev->stats.tx_bytes += txdesc->buffer_length;
1385
	}
S
Sergei Shtylyov 已提交
1386
	return free_num;
1387 1388 1389
}

/* Packet receive function */
S
Sergei Shtylyov 已提交
1390
static int sh_eth_rx(struct net_device *ndev, u32 intr_status, int *quota)
1391 1392 1393 1394
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	struct sh_eth_rxdesc *rxdesc;

1395 1396
	int entry = mdp->cur_rx % mdp->num_rx_ring;
	int boguscnt = (mdp->dirty_rx + mdp->num_rx_ring) - mdp->cur_rx;
1397 1398
	struct sk_buff *skb;
	u16 pkt_len = 0;
1399
	u32 desc_status;
1400 1401

	rxdesc = &mdp->rx_ring[entry];
1402 1403
	while (!(rxdesc->status & cpu_to_edmac(mdp, RD_RACT))) {
		desc_status = edmac_to_cpu(mdp, rxdesc->status);
1404 1405 1406 1407 1408
		pkt_len = rxdesc->frame_length;

		if (--boguscnt < 0)
			break;

1409
		if (*quota <= 0)
S
Sergei Shtylyov 已提交
1410
			break;
1411

S
Sergei Shtylyov 已提交
1412 1413
		(*quota)--;

1414
		if (!(desc_status & RDFEND))
1415
			ndev->stats.rx_length_errors++;
1416

S
Sergei Shtylyov 已提交
1417
		/* In case of almost all GETHER/ETHERs, the Receive Frame State
1418
		 * (RFS) bits in the Receive Descriptor 0 are from bit 9 to
S
Simon Horman 已提交
1419 1420 1421
		 * bit 0. However, in case of the R8A7740, R8A779x, and
		 * R7S72100 the RFS bits are from bit 25 to bit 16. So, the
		 * driver needs right shifting by 16.
1422
		 */
1423 1424
		if (mdp->cd->shift_rd0)
			desc_status >>= 16;
1425

1426 1427
		if (desc_status & (RD_RFS1 | RD_RFS2 | RD_RFS3 | RD_RFS4 |
				   RD_RFS5 | RD_RFS6 | RD_RFS10)) {
1428
			ndev->stats.rx_errors++;
1429
			if (desc_status & RD_RFS1)
1430
				ndev->stats.rx_crc_errors++;
1431
			if (desc_status & RD_RFS2)
1432
				ndev->stats.rx_frame_errors++;
1433
			if (desc_status & RD_RFS3)
1434
				ndev->stats.rx_length_errors++;
1435
			if (desc_status & RD_RFS4)
1436
				ndev->stats.rx_length_errors++;
1437
			if (desc_status & RD_RFS6)
1438
				ndev->stats.rx_missed_errors++;
1439
			if (desc_status & RD_RFS10)
1440
				ndev->stats.rx_over_errors++;
1441
		} else {
1442 1443 1444 1445
			if (!mdp->cd->hw_swap)
				sh_eth_soft_swap(
					phys_to_virt(ALIGN(rxdesc->addr, 4)),
					pkt_len + 2);
1446 1447
			skb = mdp->rx_skbuff[entry];
			mdp->rx_skbuff[entry] = NULL;
1448 1449
			if (mdp->cd->rpadir)
				skb_reserve(skb, NET_IP_ALIGN);
1450 1451 1452
			dma_sync_single_for_cpu(&ndev->dev, rxdesc->addr,
						mdp->rx_buf_sz,
						DMA_FROM_DEVICE);
1453 1454
			skb_put(skb, pkt_len);
			skb->protocol = eth_type_trans(skb, ndev);
1455
			netif_receive_skb(skb);
1456 1457
			ndev->stats.rx_packets++;
			ndev->stats.rx_bytes += pkt_len;
1458
		}
1459
		entry = (++mdp->cur_rx) % mdp->num_rx_ring;
1460
		rxdesc = &mdp->rx_ring[entry];
1461 1462 1463 1464
	}

	/* Refill the Rx ring buffers. */
	for (; mdp->cur_rx - mdp->dirty_rx > 0; mdp->dirty_rx++) {
1465
		entry = mdp->dirty_rx % mdp->num_rx_ring;
1466
		rxdesc = &mdp->rx_ring[entry];
1467
		/* The size of the buffer is 16 byte boundary. */
1468
		rxdesc->buffer_length = ALIGN(mdp->rx_buf_sz, 16);
1469

1470
		if (mdp->rx_skbuff[entry] == NULL) {
1471
			skb = netdev_alloc_skb(ndev, mdp->rx_buf_sz);
1472 1473 1474
			mdp->rx_skbuff[entry] = skb;
			if (skb == NULL)
				break;	/* Better luck next round. */
1475
			dma_map_single(&ndev->dev, skb->data, mdp->rx_buf_sz,
S
Sergei Shtylyov 已提交
1476
				       DMA_FROM_DEVICE);
1477 1478
			sh_eth_set_receive_align(skb);

1479
			skb_checksum_none_assert(skb);
1480
			rxdesc->addr = virt_to_phys(PTR_ALIGN(skb->data, 4));
1481
		}
1482
		if (entry >= mdp->num_rx_ring - 1)
1483
			rxdesc->status |=
1484
				cpu_to_edmac(mdp, RD_RACT | RD_RFP | RD_RDEL);
1485 1486
		else
			rxdesc->status |=
1487
				cpu_to_edmac(mdp, RD_RACT | RD_RFP);
1488 1489 1490 1491
	}

	/* Restart Rx engine if stopped. */
	/* If we don't need to check status, don't. -KDU */
1492
	if (!(sh_eth_read(ndev, EDRRR) & EDRRR_R)) {
1493
		/* fix the values for the next receiving if RDE is set */
S
Sergei Shtylyov 已提交
1494 1495 1496 1497 1498 1499 1500
		if (intr_status & EESR_RDE) {
			u32 count = (sh_eth_read(ndev, RDFAR) -
				     sh_eth_read(ndev, RDLAR)) >> 4;

			mdp->cur_rx = count;
			mdp->dirty_rx = count;
		}
1501
		sh_eth_write(ndev, EDRRR_R, EDRRR);
1502
	}
1503

1504
	return *quota <= 0;
1505 1506
}

1507
static void sh_eth_rcv_snd_disable(struct net_device *ndev)
1508 1509
{
	/* disable tx and rx */
1510 1511
	sh_eth_write(ndev, sh_eth_read(ndev, ECMR) &
		~(ECMR_RE | ECMR_TE), ECMR);
1512 1513
}

1514
static void sh_eth_rcv_snd_enable(struct net_device *ndev)
1515 1516
{
	/* enable tx and rx */
1517 1518
	sh_eth_write(ndev, sh_eth_read(ndev, ECMR) |
		(ECMR_RE | ECMR_TE), ECMR);
1519 1520
}

1521 1522 1523 1524 1525
/* error control function */
static void sh_eth_error(struct net_device *ndev, int intr_status)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	u32 felic_stat;
1526 1527
	u32 link_stat;
	u32 mask;
1528 1529

	if (intr_status & EESR_ECI) {
1530 1531
		felic_stat = sh_eth_read(ndev, ECSR);
		sh_eth_write(ndev, felic_stat, ECSR);	/* clear int */
1532
		if (felic_stat & ECSR_ICD)
1533
			ndev->stats.tx_carrier_errors++;
1534 1535
		if (felic_stat & ECSR_LCHNG) {
			/* Link Changed */
1536
			if (mdp->cd->no_psr || mdp->no_ether_link) {
1537
				goto ignore_link;
1538
			} else {
1539
				link_stat = (sh_eth_read(ndev, PSR));
1540 1541
				if (mdp->ether_link_active_low)
					link_stat = ~link_stat;
1542
			}
S
Sergei Shtylyov 已提交
1543
			if (!(link_stat & PHY_ST_LINK)) {
1544
				sh_eth_rcv_snd_disable(ndev);
S
Sergei Shtylyov 已提交
1545
			} else {
1546
				/* Link Up */
1547
				sh_eth_write(ndev, sh_eth_read(ndev, EESIPR) &
S
Sergei Shtylyov 已提交
1548 1549
						   ~DMAC_M_ECI, EESIPR);
				/* clear int */
1550
				sh_eth_write(ndev, sh_eth_read(ndev, ECSR),
S
Sergei Shtylyov 已提交
1551
					     ECSR);
1552
				sh_eth_write(ndev, sh_eth_read(ndev, EESIPR) |
S
Sergei Shtylyov 已提交
1553
						   DMAC_M_ECI, EESIPR);
1554
				/* enable tx and rx */
1555
				sh_eth_rcv_snd_enable(ndev);
1556 1557 1558 1559
			}
		}
	}

1560
ignore_link:
1561
	if (intr_status & EESR_TWB) {
1562 1563
		/* Unused write back interrupt */
		if (intr_status & EESR_TABT) {	/* Transmit Abort int */
1564
			ndev->stats.tx_aborted_errors++;
1565
			netif_err(mdp, tx_err, ndev, "Transmit Abort\n");
1566
		}
1567 1568 1569 1570 1571 1572
	}

	if (intr_status & EESR_RABT) {
		/* Receive Abort int */
		if (intr_status & EESR_RFRMER) {
			/* Receive Frame Overflow int */
1573
			ndev->stats.rx_frame_errors++;
1574
			netif_err(mdp, rx_err, ndev, "Receive Abort\n");
1575 1576
		}
	}
1577

1578 1579
	if (intr_status & EESR_TDE) {
		/* Transmit Descriptor Empty int */
1580
		ndev->stats.tx_fifo_errors++;
1581
		netif_err(mdp, tx_err, ndev, "Transmit Descriptor Empty\n");
1582 1583 1584 1585
	}

	if (intr_status & EESR_TFE) {
		/* FIFO under flow */
1586
		ndev->stats.tx_fifo_errors++;
1587
		netif_err(mdp, tx_err, ndev, "Transmit FIFO Under flow\n");
1588 1589 1590 1591
	}

	if (intr_status & EESR_RDE) {
		/* Receive Descriptor Empty int */
1592
		ndev->stats.rx_over_errors++;
1593
		netif_err(mdp, rx_err, ndev, "Receive Descriptor Empty\n");
1594
	}
1595

1596 1597
	if (intr_status & EESR_RFE) {
		/* Receive FIFO Overflow int */
1598
		ndev->stats.rx_fifo_errors++;
1599
		netif_err(mdp, rx_err, ndev, "Receive FIFO Overflow\n");
1600 1601 1602 1603
	}

	if (!mdp->cd->no_ade && (intr_status & EESR_ADE)) {
		/* Address Error */
1604
		ndev->stats.tx_fifo_errors++;
1605
		netif_err(mdp, tx_err, ndev, "Address Error\n");
1606
	}
1607 1608 1609 1610 1611

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

1615
		/* dmesg */
1616 1617 1618
		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);
1619 1620 1621 1622
		/* dirty buffer free */
		sh_eth_txfree(ndev);

		/* SH7712 BUG */
1623
		if (edtrr ^ sh_eth_get_edtrr_trns(mdp)) {
1624
			/* tx dma start */
1625
			sh_eth_write(ndev, sh_eth_get_edtrr_trns(mdp), EDTRR);
1626 1627 1628 1629 1630 1631 1632 1633 1634 1635
		}
		/* 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);
1636
	struct sh_eth_cpu_data *cd = mdp->cd;
1637
	irqreturn_t ret = IRQ_NONE;
S
Sergei Shtylyov 已提交
1638
	unsigned long intr_status, intr_enable;
1639 1640 1641

	spin_lock(&mdp->lock);

1642
	/* Get interrupt status */
1643
	intr_status = sh_eth_read(ndev, EESR);
1644 1645 1646 1647 1648
	/* 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_error() in order to quench
	 * it as it doesn't get cleared by just writing 1 to the ECI bit...
	 */
S
Sergei Shtylyov 已提交
1649 1650 1651
	intr_enable = sh_eth_read(ndev, EESIPR);
	intr_status &= intr_enable | DMAC_M_ECI;
	if (intr_status & (EESR_RX_CHECK | cd->tx_check | cd->eesr_err_check))
1652
		ret = IRQ_HANDLED;
S
Sergei Shtylyov 已提交
1653
	else
1654
		goto other_irq;
1655

S
Sergei Shtylyov 已提交
1656 1657 1658 1659 1660 1661 1662
	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 {
1663 1664 1665
			netdev_warn(ndev,
				    "ignoring interrupt, status 0x%08lx, mask 0x%08lx.\n",
				    intr_status, intr_enable);
S
Sergei Shtylyov 已提交
1666 1667
		}
	}
1668

1669
	/* Tx Check */
1670
	if (intr_status & cd->tx_check) {
S
Sergei Shtylyov 已提交
1671 1672 1673
		/* Clear Tx interrupts */
		sh_eth_write(ndev, intr_status & cd->tx_check, EESR);

1674 1675 1676 1677
		sh_eth_txfree(ndev);
		netif_wake_queue(ndev);
	}

S
Sergei Shtylyov 已提交
1678 1679 1680 1681
	if (intr_status & cd->eesr_err_check) {
		/* Clear error interrupts */
		sh_eth_write(ndev, intr_status & cd->eesr_err_check, EESR);

1682
		sh_eth_error(ndev, intr_status);
S
Sergei Shtylyov 已提交
1683
	}
1684

1685
other_irq:
1686 1687
	spin_unlock(&mdp->lock);

1688
	return ret;
1689 1690
}

S
Sergei Shtylyov 已提交
1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717
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;
	unsigned long intr_status;

	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 */
	sh_eth_write(ndev, mdp->cd->eesipr_value, EESIPR);
out:
	return budget - quota;
}

1718 1719 1720 1721 1722 1723 1724
/* PHY state control function */
static void sh_eth_adjust_link(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	struct phy_device *phydev = mdp->phydev;
	int new_state = 0;

1725
	if (phydev->link) {
1726 1727 1728
		if (phydev->duplex != mdp->duplex) {
			new_state = 1;
			mdp->duplex = phydev->duplex;
1729 1730
			if (mdp->cd->set_duplex)
				mdp->cd->set_duplex(ndev);
1731 1732 1733 1734 1735
		}

		if (phydev->speed != mdp->speed) {
			new_state = 1;
			mdp->speed = phydev->speed;
1736 1737
			if (mdp->cd->set_rate)
				mdp->cd->set_rate(ndev);
1738
		}
1739
		if (!mdp->link) {
1740
			sh_eth_write(ndev,
S
Sergei Shtylyov 已提交
1741 1742
				     sh_eth_read(ndev, ECMR) & ~ECMR_TXF,
				     ECMR);
1743 1744
			new_state = 1;
			mdp->link = phydev->link;
1745 1746
			if (mdp->cd->no_psr || mdp->no_ether_link)
				sh_eth_rcv_snd_enable(ndev);
1747 1748 1749
		}
	} else if (mdp->link) {
		new_state = 1;
1750
		mdp->link = 0;
1751 1752
		mdp->speed = 0;
		mdp->duplex = -1;
1753 1754
		if (mdp->cd->no_psr || mdp->no_ether_link)
			sh_eth_rcv_snd_disable(ndev);
1755 1756
	}

1757
	if (new_state && netif_msg_link(mdp))
1758 1759 1760 1761 1762 1763
		phy_print_status(phydev);
}

/* PHY init function */
static int sh_eth_phy_init(struct net_device *ndev)
{
B
Ben Dooks 已提交
1764
	struct device_node *np = ndev->dev.parent->of_node;
1765 1766 1767
	struct sh_eth_private *mdp = netdev_priv(ndev);
	struct phy_device *phydev = NULL;

1768
	mdp->link = 0;
1769 1770 1771 1772
	mdp->speed = 0;
	mdp->duplex = -1;

	/* Try connect to PHY */
B
Ben Dooks 已提交
1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792
	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);

		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);
	}

1793
	if (IS_ERR(phydev)) {
1794
		netdev_err(ndev, "failed to connect PHY\n");
1795 1796
		return PTR_ERR(phydev);
	}
1797

1798 1799
	netdev_info(ndev, "attached PHY %d (IRQ %d) to driver %s\n",
		    phydev->addr, phydev->irq, phydev->drv->name);
1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820

	mdp->phydev = phydev;

	return 0;
}

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

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

	phy_start(mdp->phydev);

	return 0;
}

1821
static int sh_eth_get_settings(struct net_device *ndev,
S
Sergei Shtylyov 已提交
1822
			       struct ethtool_cmd *ecmd)
1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	unsigned long flags;
	int ret;

	spin_lock_irqsave(&mdp->lock, flags);
	ret = phy_ethtool_gset(mdp->phydev, ecmd);
	spin_unlock_irqrestore(&mdp->lock, flags);

	return ret;
}

static int sh_eth_set_settings(struct net_device *ndev,
S
Sergei Shtylyov 已提交
1836
			       struct ethtool_cmd *ecmd)
1837 1838 1839 1840 1841 1842 1843 1844
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	unsigned long flags;
	int ret;

	spin_lock_irqsave(&mdp->lock, flags);

	/* disable tx and rx */
1845
	sh_eth_rcv_snd_disable(ndev);
1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862

	ret = phy_ethtool_sset(mdp->phydev, ecmd);
	if (ret)
		goto error_exit;

	if (ecmd->duplex == DUPLEX_FULL)
		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 */
1863
	sh_eth_rcv_snd_enable(ndev);
1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911

	spin_unlock_irqrestore(&mdp->lock, flags);

	return ret;
}

static int sh_eth_nway_reset(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	unsigned long flags;
	int ret;

	spin_lock_irqsave(&mdp->lock, flags);
	ret = phy_start_aneg(mdp->phydev);
	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 已提交
1912
				     struct ethtool_stats *stats, u64 *data)
1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928
{
	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 已提交
1929
		       sizeof(sh_eth_gstrings_stats));
1930 1931 1932 1933
		break;
	}
}

1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979
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)) {
		netif_tx_disable(ndev);
		/* Disable interrupts by clearing the interrupt mask. */
		sh_eth_write(ndev, 0x0000, EESIPR);
		/* Stop the chip's Tx and Rx processes. */
		sh_eth_write(ndev, 0, EDTRR);
		sh_eth_write(ndev, 0, EDRRR);
		synchronize_irq(ndev->irq);
	}

	/* Free all the skbuffs in the Rx queue. */
	sh_eth_ring_free(ndev);
	/* Free DMA buffer */
	sh_eth_free_dma_buffer(mdp);

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

	ret = sh_eth_ring_init(ndev);
	if (ret < 0) {
1980
		netdev_err(ndev, "%s: sh_eth_ring_init failed.\n", __func__);
1981 1982 1983 1984
		return ret;
	}
	ret = sh_eth_dev_init(ndev, false);
	if (ret < 0) {
1985
		netdev_err(ndev, "%s: sh_eth_dev_init failed.\n", __func__);
1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998
		return ret;
	}

	if (netif_running(ndev)) {
		sh_eth_write(ndev, mdp->cd->eesipr_value, EESIPR);
		/* Setting the Rx mode will start the Rx process. */
		sh_eth_write(ndev, EDRRR_R, EDRRR);
		netif_wake_queue(ndev);
	}

	return 0;
}

S
stephen hemminger 已提交
1999
static const struct ethtool_ops sh_eth_ethtool_ops = {
2000 2001
	.get_settings	= sh_eth_get_settings,
	.set_settings	= sh_eth_set_settings,
S
stephen hemminger 已提交
2002
	.nway_reset	= sh_eth_nway_reset,
2003 2004
	.get_msglevel	= sh_eth_get_msglevel,
	.set_msglevel	= sh_eth_set_msglevel,
S
stephen hemminger 已提交
2005
	.get_link	= ethtool_op_get_link,
2006 2007 2008
	.get_strings	= sh_eth_get_strings,
	.get_ethtool_stats  = sh_eth_get_ethtool_stats,
	.get_sset_count     = sh_eth_get_sset_count,
2009 2010
	.get_ringparam	= sh_eth_get_ringparam,
	.set_ringparam	= sh_eth_set_ringparam,
2011 2012
};

2013 2014 2015 2016 2017 2018
/* network device open function */
static int sh_eth_open(struct net_device *ndev)
{
	int ret = 0;
	struct sh_eth_private *mdp = netdev_priv(ndev);

2019 2020
	pm_runtime_get_sync(&mdp->pdev->dev);

2021 2022
	napi_enable(&mdp->napi);

2023
	ret = request_irq(ndev->irq, sh_eth_interrupt,
2024
			  mdp->cd->irq_flags, ndev->name, ndev);
2025
	if (ret) {
2026
		netdev_err(ndev, "Can not assign IRQ number\n");
2027
		goto out_napi_off;
2028 2029 2030 2031 2032 2033 2034 2035
	}

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

	/* device init */
2036
	ret = sh_eth_dev_init(ndev, true);
2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048
	if (ret)
		goto out_free_irq;

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

	return ret;

out_free_irq:
	free_irq(ndev->irq, ndev);
2049 2050
out_napi_off:
	napi_disable(&mdp->napi);
2051
	pm_runtime_put_sync(&mdp->pdev->dev);
2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063
	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);

2064 2065 2066
	netif_err(mdp, timer, ndev,
		  "transmit timed out, status %8.8x, resetting...\n",
		  (int)sh_eth_read(ndev, EESR));
2067 2068

	/* tx_errors count up */
2069
	ndev->stats.tx_errors++;
2070 2071

	/* Free all the skbuffs in the Rx queue. */
2072
	for (i = 0; i < mdp->num_rx_ring; i++) {
2073 2074 2075
		rxdesc = &mdp->rx_ring[i];
		rxdesc->status = 0;
		rxdesc->addr = 0xBADF00D0;
2076
		dev_kfree_skb(mdp->rx_skbuff[i]);
2077 2078
		mdp->rx_skbuff[i] = NULL;
	}
2079
	for (i = 0; i < mdp->num_tx_ring; i++) {
2080
		dev_kfree_skb(mdp->tx_skbuff[i]);
2081 2082 2083 2084
		mdp->tx_skbuff[i] = NULL;
	}

	/* device init */
2085
	sh_eth_dev_init(ndev, true);
2086 2087 2088 2089 2090 2091 2092 2093
}

/* 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;
	u32 entry;
2094
	unsigned long flags;
2095 2096

	spin_lock_irqsave(&mdp->lock, flags);
2097
	if ((mdp->cur_tx - mdp->dirty_tx) >= (mdp->num_tx_ring - 4)) {
2098
		if (!sh_eth_txfree(ndev)) {
2099
			netif_warn(mdp, tx_queued, ndev, "TxFD exhausted.\n");
2100 2101
			netif_stop_queue(ndev);
			spin_unlock_irqrestore(&mdp->lock, flags);
2102
			return NETDEV_TX_BUSY;
2103 2104 2105 2106
		}
	}
	spin_unlock_irqrestore(&mdp->lock, flags);

2107
	entry = mdp->cur_tx % mdp->num_tx_ring;
2108 2109 2110
	mdp->tx_skbuff[entry] = skb;
	txdesc = &mdp->tx_ring[entry];
	/* soft swap. */
2111 2112 2113
	if (!mdp->cd->hw_swap)
		sh_eth_soft_swap(phys_to_virt(ALIGN(txdesc->addr, 4)),
				 skb->len + 2);
2114 2115
	txdesc->addr = dma_map_single(&ndev->dev, skb->data, skb->len,
				      DMA_TO_DEVICE);
2116 2117
	if (skb->len < ETH_ZLEN)
		txdesc->buffer_length = ETH_ZLEN;
2118 2119 2120
	else
		txdesc->buffer_length = skb->len;

2121
	if (entry >= mdp->num_tx_ring - 1)
2122
		txdesc->status |= cpu_to_edmac(mdp, TD_TACT | TD_TDLE);
2123
	else
2124
		txdesc->status |= cpu_to_edmac(mdp, TD_TACT);
2125 2126 2127

	mdp->cur_tx++;

2128 2129
	if (!(sh_eth_read(ndev, EDTRR) & sh_eth_get_edtrr_trns(mdp)))
		sh_eth_write(ndev, sh_eth_get_edtrr_trns(mdp), EDTRR);
2130

2131
	return NETDEV_TX_OK;
2132 2133 2134 2135 2136 2137 2138 2139 2140 2141
}

/* device close function */
static int sh_eth_close(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

	netif_stop_queue(ndev);

	/* Disable interrupts by clearing the interrupt mask. */
2142
	sh_eth_write(ndev, 0x0000, EESIPR);
2143 2144

	/* Stop the chip's Tx and Rx processes. */
2145 2146
	sh_eth_write(ndev, 0, EDTRR);
	sh_eth_write(ndev, 0, EDRRR);
2147 2148 2149 2150 2151 2152 2153 2154 2155

	/* PHY Disconnect */
	if (mdp->phydev) {
		phy_stop(mdp->phydev);
		phy_disconnect(mdp->phydev);
	}

	free_irq(ndev->irq, ndev);

2156 2157
	napi_disable(&mdp->napi);

2158 2159 2160 2161
	/* Free all the skbuffs in the Rx queue. */
	sh_eth_ring_free(ndev);

	/* free DMA buffer */
2162
	sh_eth_free_dma_buffer(mdp);
2163

2164 2165
	pm_runtime_put_sync(&mdp->pdev->dev);

2166 2167 2168 2169 2170 2171 2172
	return 0;
}

static struct net_device_stats *sh_eth_get_stats(struct net_device *ndev)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);

S
Simon Horman 已提交
2173 2174 2175
	if (sh_eth_is_rz_fast_ether(mdp))
		return &ndev->stats;

2176 2177
	pm_runtime_get_sync(&mdp->pdev->dev);

2178
	ndev->stats.tx_dropped += sh_eth_read(ndev, TROCR);
2179
	sh_eth_write(ndev, 0, TROCR);	/* (write clear) */
2180
	ndev->stats.collisions += sh_eth_read(ndev, CDCR);
2181
	sh_eth_write(ndev, 0, CDCR);	/* (write clear) */
2182
	ndev->stats.tx_carrier_errors += sh_eth_read(ndev, LCCR);
2183
	sh_eth_write(ndev, 0, LCCR);	/* (write clear) */
2184
	if (sh_eth_is_gether(mdp)) {
2185
		ndev->stats.tx_carrier_errors += sh_eth_read(ndev, CERCR);
2186
		sh_eth_write(ndev, 0, CERCR);	/* (write clear) */
2187
		ndev->stats.tx_carrier_errors += sh_eth_read(ndev, CEECR);
2188 2189
		sh_eth_write(ndev, 0, CEECR);	/* (write clear) */
	} else {
2190
		ndev->stats.tx_carrier_errors += sh_eth_read(ndev, CNDCR);
2191 2192
		sh_eth_write(ndev, 0, CNDCR);	/* (write clear) */
	}
2193 2194
	pm_runtime_put_sync(&mdp->pdev->dev);

2195
	return &ndev->stats;
2196 2197
}

2198
/* ioctl to device function */
S
Sergei Shtylyov 已提交
2199
static int sh_eth_do_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
2200 2201 2202 2203 2204 2205 2206 2207 2208 2209
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	struct phy_device *phydev = mdp->phydev;

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

	if (!phydev)
		return -ENODEV;

2210
	return phy_mii_ioctl(phydev, rq, cmd);
2211 2212
}

2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 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 2266 2267 2268
/* For TSU_POSTn. Please refer to the manual about this (strange) bitfields */
static void *sh_eth_tsu_get_post_reg_offset(struct sh_eth_private *mdp,
					    int entry)
{
	return sh_eth_tsu_get_offset(mdp, TSU_POST1) + (entry / 8 * 4);
}

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);
	u32 tmp;
	void *reg_offset;

	reg_offset = sh_eth_tsu_get_post_reg_offset(mdp, entry);
	tmp = ioread32(reg_offset);
	iowrite32(tmp | sh_eth_tsu_get_post_bit(mdp, entry), reg_offset);
}

static bool sh_eth_tsu_disable_cam_entry_post(struct net_device *ndev,
					      int entry)
{
	struct sh_eth_private *mdp = netdev_priv(ndev);
	u32 post_mask, ref_mask, tmp;
	void *reg_offset;

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

	tmp = ioread32(reg_offset);
	iowrite32(tmp & ~post_mask, reg_offset);

	/* 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) {
2269
			netdev_err(ndev, "%s: timeout\n", __func__);
2270 2271 2272 2273 2274 2275 2276 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 2311 2312 2313 2314 2315 2316 2317 2318
			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);
2319
		if (ether_addr_equal(addr, c_addr))
2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 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 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444
			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;

	if (unlikely(!mdp->cd->tsu))
		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;

	if (unlikely(!mdp->cd->tsu))
		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);
	}
}

2445 2446 2447
/* Multicast reception directions set */
static void sh_eth_set_multicast_list(struct net_device *ndev)
{
2448 2449 2450 2451 2452 2453
	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 已提交
2454
	/* Initial condition is MCT = 1, PRM = 0.
2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468
	 * Depending on ndev->flags, set PRM or clear MCT
	 */
	ecmr_bits = (sh_eth_read(ndev, ECMR) & ~ECMR_PRM) | ECMR_MCT;

	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;
	}

2469
	if (ndev->flags & IFF_PROMISC) {
2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485
		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;
				}
			}
		}
2486 2487
	} else {
		/* Normal, unicast/broadcast-only mode. */
2488
		ecmr_bits = (ecmr_bits & ~ECMR_PRM) | ECMR_MCT;
2489
	}
2490 2491 2492 2493 2494

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

	spin_unlock_irqrestore(&mdp->lock, flags);
2495
}
2496 2497 2498 2499 2500 2501 2502 2503 2504

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

2505 2506
static int sh_eth_vlan_rx_add_vid(struct net_device *ndev,
				  __be16 proto, u16 vid)
2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519
{
	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 已提交
2520
	/* The controller has one VLAN tag HW filter. So, if the filter is
2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534
	 * 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;
}

2535 2536
static int sh_eth_vlan_rx_kill_vid(struct net_device *ndev,
				   __be16 proto, u16 vid)
2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552
{
	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;
}
2553 2554

/* SuperH's TSU register init function */
2555
static void sh_eth_tsu_init(struct sh_eth_private *mdp)
2556
{
S
Simon Horman 已提交
2557 2558 2559 2560 2561
	if (sh_eth_is_rz_fast_ether(mdp)) {
		sh_eth_tsu_write(mdp, 0, TSU_TEN); /* Disable all CAM entry */
		return;
	}

2562 2563 2564 2565 2566 2567 2568 2569 2570 2571
	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);
2572 2573 2574 2575 2576 2577 2578
	if (sh_eth_is_gether(mdp)) {
		sh_eth_tsu_write(mdp, 0, TSU_QTAG0);	/* Disable QTAG(0->1) */
		sh_eth_tsu_write(mdp, 0, TSU_QTAG1);	/* Disable QTAG(1->0) */
	} else {
		sh_eth_tsu_write(mdp, 0, TSU_QTAGM0);	/* Disable QTAG(0->1) */
		sh_eth_tsu_write(mdp, 0, TSU_QTAGM1);	/* Disable QTAG(1->0) */
	}
2579 2580 2581 2582 2583 2584 2585
	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] */
2586 2587 2588
}

/* MDIO bus release function */
2589
static int sh_mdio_release(struct sh_eth_private *mdp)
2590 2591
{
	/* unregister mdio bus */
2592
	mdiobus_unregister(mdp->mii_bus);
2593 2594

	/* free bitbang info */
2595
	free_mdio_bitbang(mdp->mii_bus);
2596 2597 2598 2599 2600

	return 0;
}

/* MDIO bus init function */
2601
static int sh_mdio_init(struct sh_eth_private *mdp,
2602
			struct sh_eth_plat_data *pd)
2603 2604 2605
{
	int ret, i;
	struct bb_info *bitbang;
2606
	struct platform_device *pdev = mdp->pdev;
2607
	struct device *dev = &mdp->pdev->dev;
2608 2609

	/* create bit control struct for PHY */
2610
	bitbang = devm_kzalloc(dev, sizeof(struct bb_info), GFP_KERNEL);
2611 2612
	if (!bitbang)
		return -ENOMEM;
2613 2614

	/* bitbang init */
Y
Yoshihiro Shimoda 已提交
2615
	bitbang->addr = mdp->addr + mdp->reg_offset[PIR];
2616
	bitbang->set_gate = pd->set_mdio_gate;
S
Sergei Shtylyov 已提交
2617 2618 2619 2620
	bitbang->mdi_msk = PIR_MDI;
	bitbang->mdo_msk = PIR_MDO;
	bitbang->mmd_msk = PIR_MMD;
	bitbang->mdc_msk = PIR_MDC;
2621 2622
	bitbang->ctrl.ops = &bb_ops;

2623
	/* MII controller setting */
2624
	mdp->mii_bus = alloc_mdio_bitbang(&bitbang->ctrl);
2625 2626
	if (!mdp->mii_bus)
		return -ENOMEM;
2627 2628 2629

	/* Hook up MII support for ethtool */
	mdp->mii_bus->name = "sh_mii";
2630
	mdp->mii_bus->parent = dev;
2631
	snprintf(mdp->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
2632
		 pdev->name, pdev->id);
2633 2634

	/* PHY IRQ */
2635 2636
	mdp->mii_bus->irq = devm_kmalloc_array(dev, PHY_MAX_ADDR, sizeof(int),
					       GFP_KERNEL);
2637 2638 2639 2640 2641
	if (!mdp->mii_bus->irq) {
		ret = -ENOMEM;
		goto out_free_bus;
	}

2642 2643 2644
	/* register MDIO bus */
	if (dev->of_node) {
		ret = of_mdiobus_register(mdp->mii_bus, dev->of_node);
B
Ben Dooks 已提交
2645 2646 2647 2648 2649 2650 2651 2652 2653
	} else {
		for (i = 0; i < PHY_MAX_ADDR; i++)
			mdp->mii_bus->irq[i] = PHY_POLL;
		if (pd->phy_irq > 0)
			mdp->mii_bus->irq[pd->phy] = pd->phy_irq;

		ret = mdiobus_register(mdp->mii_bus);
	}

2654
	if (ret)
S
Sergei Shtylyov 已提交
2655
		goto out_free_bus;
2656 2657 2658 2659

	return 0;

out_free_bus:
2660
	free_mdio_bitbang(mdp->mii_bus);
2661 2662 2663
	return ret;
}

2664 2665 2666 2667 2668 2669 2670 2671
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 已提交
2672 2673 2674
	case SH_ETH_REG_FAST_RZ:
		reg_offset = sh_eth_offset_fast_rz;
		break;
2675 2676 2677
	case SH_ETH_REG_FAST_RCAR:
		reg_offset = sh_eth_offset_fast_rcar;
		break;
2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690
	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;
	default:
		break;
	}

	return reg_offset;
}

2691
static const struct net_device_ops sh_eth_netdev_ops = {
2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702
	.ndo_open		= sh_eth_open,
	.ndo_stop		= sh_eth_close,
	.ndo_start_xmit		= sh_eth_start_xmit,
	.ndo_get_stats		= sh_eth_get_stats,
	.ndo_tx_timeout		= sh_eth_tx_timeout,
	.ndo_do_ioctl		= sh_eth_do_ioctl,
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_set_mac_address	= eth_mac_addr,
	.ndo_change_mtu		= eth_change_mtu,
};

2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717
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,
	.ndo_set_rx_mode	= sh_eth_set_multicast_list,
	.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,
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_set_mac_address	= eth_mac_addr,
	.ndo_change_mtu		= eth_change_mtu,
};

2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748
#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 },
	{ .compatible = "renesas,ether-r8a7778", .data = &r8a777x_data },
	{ .compatible = "renesas,ether-r8a7779", .data = &r8a777x_data },
	{ .compatible = "renesas,ether-r8a7790", .data = &r8a779x_data },
	{ .compatible = "renesas,ether-r8a7791", .data = &r8a779x_data },
2749
	{ .compatible = "renesas,ether-r8a7794", .data = &r8a779x_data },
2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760
	{ .compatible = "renesas,ether-r7s72100", .data = &r7s72100_data },
	{ }
};
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

2761 2762
static int sh_eth_drv_probe(struct platform_device *pdev)
{
2763
	int ret, devno = 0;
2764 2765
	struct resource *res;
	struct net_device *ndev = NULL;
2766
	struct sh_eth_private *mdp = NULL;
J
Jingoo Han 已提交
2767
	struct sh_eth_plat_data *pd = dev_get_platdata(&pdev->dev);
2768
	const struct platform_device_id *id = platform_get_device_id(pdev);
2769 2770 2771 2772 2773

	/* get base addr */
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (unlikely(res == NULL)) {
		dev_err(&pdev->dev, "invalid resource\n");
2774
		return -EINVAL;
2775 2776 2777
	}

	ndev = alloc_etherdev(sizeof(struct sh_eth_private));
2778 2779
	if (!ndev)
		return -ENOMEM;
2780

2781 2782 2783
	pm_runtime_enable(&pdev->dev);
	pm_runtime_get_sync(&pdev->dev);

2784 2785 2786 2787 2788 2789 2790
	/* The sh Ether-specific entries in the device structure. */
	ndev->base_addr = res->start;
	devno = pdev->id;
	if (devno < 0)
		devno = 0;

	ndev->dma = -1;
2791 2792
	ret = platform_get_irq(pdev, 0);
	if (ret < 0) {
2793 2794 2795
		ret = -ENODEV;
		goto out_release;
	}
2796
	ndev->irq = ret;
2797 2798 2799 2800

	SET_NETDEV_DEV(ndev, &pdev->dev);

	mdp = netdev_priv(ndev);
2801 2802
	mdp->num_tx_ring = TX_RING_SIZE;
	mdp->num_rx_ring = RX_RING_SIZE;
S
Sergei Shtylyov 已提交
2803 2804 2805
	mdp->addr = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(mdp->addr)) {
		ret = PTR_ERR(mdp->addr);
Y
Yoshihiro Shimoda 已提交
2806 2807 2808
		goto out_release;
	}

2809
	spin_lock_init(&mdp->lock);
2810
	mdp->pdev = pdev;
2811

2812 2813
	if (pdev->dev.of_node)
		pd = sh_eth_parse_dt(&pdev->dev);
2814 2815 2816 2817 2818 2819
	if (!pd) {
		dev_err(&pdev->dev, "no platform data\n");
		ret = -EINVAL;
		goto out_release;
	}

2820
	/* get PHY ID */
2821
	mdp->phy_id = pd->phy;
2822
	mdp->phy_interface = pd->phy_interface;
2823 2824
	/* EDMAC endian */
	mdp->edmac_endian = pd->edmac_endian;
2825 2826
	mdp->no_ether_link = pd->no_ether_link;
	mdp->ether_link_active_low = pd->ether_link_active_low;
2827

2828
	/* set cpu data */
2829 2830 2831 2832 2833 2834 2835 2836 2837
	if (id) {
		mdp->cd = (struct sh_eth_cpu_data *)id->driver_data;
	} else	{
		const struct of_device_id *match;

		match = of_match_device(of_match_ptr(sh_eth_match_table),
					&pdev->dev);
		mdp->cd = (struct sh_eth_cpu_data *)match->data;
	}
2838
	mdp->reg_offset = sh_eth_get_register_offset(mdp->cd->register_type);
2839 2840 2841 2842 2843 2844
	if (!mdp->reg_offset) {
		dev_err(&pdev->dev, "Unknown register type (%d)\n",
			mdp->cd->register_type);
		ret = -EINVAL;
		goto out_release;
	}
2845 2846
	sh_eth_set_default_cpu_data(mdp->cd);

2847
	/* set function */
2848 2849 2850 2851
	if (mdp->cd->tsu)
		ndev->netdev_ops = &sh_eth_netdev_ops_tsu;
	else
		ndev->netdev_ops = &sh_eth_netdev_ops;
2852
	ndev->ethtool_ops = &sh_eth_ethtool_ops;
2853 2854
	ndev->watchdog_timeo = TX_TIMEOUT;

2855 2856
	/* debug message level */
	mdp->msg_enable = SH_ETH_DEF_MSG_ENABLE;
2857 2858

	/* read and set MAC address */
2859
	read_mac_address(ndev, pd->mac_addr);
2860 2861 2862 2863 2864
	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);
	}
2865

2866 2867 2868 2869
	/* ioremap the TSU registers */
	if (mdp->cd->tsu) {
		struct resource *rtsu;
		rtsu = platform_get_resource(pdev, IORESOURCE_MEM, 1);
S
Sergei Shtylyov 已提交
2870 2871 2872
		mdp->tsu_addr = devm_ioremap_resource(&pdev->dev, rtsu);
		if (IS_ERR(mdp->tsu_addr)) {
			ret = PTR_ERR(mdp->tsu_addr);
2873 2874
			goto out_release;
		}
2875
		mdp->port = devno % 2;
2876
		ndev->features = NETIF_F_HW_VLAN_CTAG_FILTER;
2877 2878
	}

2879 2880
	/* initialize first or needed device */
	if (!devno || pd->needs_init) {
2881 2882
		if (mdp->cd->chip_reset)
			mdp->cd->chip_reset(ndev);
2883

2884 2885 2886 2887
		if (mdp->cd->tsu) {
			/* TSU init (Init only)*/
			sh_eth_tsu_init(mdp);
		}
2888 2889
	}

2890 2891 2892 2893 2894 2895 2896
	/* MDIO bus init */
	ret = sh_mdio_init(mdp, pd);
	if (ret) {
		dev_err(&ndev->dev, "failed to initialise MDIO\n");
		goto out_release;
	}

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

2899 2900 2901
	/* network device register */
	ret = register_netdev(ndev);
	if (ret)
S
Sergei Shtylyov 已提交
2902
		goto out_napi_del;
2903

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

2908
	pm_runtime_put(&pdev->dev);
2909 2910 2911 2912
	platform_set_drvdata(pdev, ndev);

	return ret;

S
Sergei Shtylyov 已提交
2913 2914
out_napi_del:
	netif_napi_del(&mdp->napi);
2915
	sh_mdio_release(mdp);
S
Sergei Shtylyov 已提交
2916

2917 2918 2919 2920 2921
out_release:
	/* net_dev free */
	if (ndev)
		free_netdev(ndev);

2922 2923
	pm_runtime_put(&pdev->dev);
	pm_runtime_disable(&pdev->dev);
2924 2925 2926 2927 2928 2929
	return ret;
}

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

	unregister_netdev(ndev);
S
Sergei Shtylyov 已提交
2933
	netif_napi_del(&mdp->napi);
2934
	sh_mdio_release(mdp);
2935
	pm_runtime_disable(&pdev->dev);
2936 2937 2938 2939 2940
	free_netdev(ndev);

	return 0;
}

2941
#ifdef CONFIG_PM
2942 2943
static int sh_eth_runtime_nop(struct device *dev)
{
S
Sergei Shtylyov 已提交
2944
	/* Runtime PM callback shared between ->runtime_suspend()
2945 2946 2947 2948 2949 2950 2951 2952 2953
	 * 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;
}

2954
static const struct dev_pm_ops sh_eth_dev_pm_ops = {
2955 2956 2957
	.runtime_suspend = sh_eth_runtime_nop,
	.runtime_resume = sh_eth_runtime_nop,
};
2958 2959 2960 2961
#define SH_ETH_PM_OPS (&sh_eth_dev_pm_ops)
#else
#define SH_ETH_PM_OPS NULL
#endif
2962

2963
static struct platform_device_id sh_eth_id_table[] = {
2964
	{ "sh7619-ether", (kernel_ulong_t)&sh7619_data },
2965
	{ "sh771x-ether", (kernel_ulong_t)&sh771x_data },
2966
	{ "sh7724-ether", (kernel_ulong_t)&sh7724_data },
2967
	{ "sh7734-gether", (kernel_ulong_t)&sh7734_data },
2968 2969
	{ "sh7757-ether", (kernel_ulong_t)&sh7757_data },
	{ "sh7757-gether", (kernel_ulong_t)&sh7757_data_giga },
2970
	{ "sh7763-gether", (kernel_ulong_t)&sh7763_data },
S
Simon Horman 已提交
2971
	{ "r7s72100-ether", (kernel_ulong_t)&r7s72100_data },
2972
	{ "r8a7740-gether", (kernel_ulong_t)&r8a7740_data },
2973
	{ "r8a777x-ether", (kernel_ulong_t)&r8a777x_data },
S
Sergei Shtylyov 已提交
2974 2975
	{ "r8a7790-ether", (kernel_ulong_t)&r8a779x_data },
	{ "r8a7791-ether", (kernel_ulong_t)&r8a779x_data },
2976
	{ "r8a7794-ether", (kernel_ulong_t)&r8a779x_data },
2977 2978 2979 2980
	{ }
};
MODULE_DEVICE_TABLE(platform, sh_eth_id_table);

2981 2982 2983
static struct platform_driver sh_eth_driver = {
	.probe = sh_eth_drv_probe,
	.remove = sh_eth_drv_remove,
2984
	.id_table = sh_eth_id_table,
2985 2986
	.driver = {
		   .name = CARDNAME,
2987
		   .pm = SH_ETH_PM_OPS,
2988
		   .of_match_table = of_match_ptr(sh_eth_match_table),
2989 2990 2991
	},
};

2992
module_platform_driver(sh_eth_driver);
2993 2994 2995 2996

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