ravb_main.c 64.4 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3
/* Renesas Ethernet AVB device driver
 *
4
 * Copyright (C) 2014-2019 Renesas Electronics Corporation
5
 * Copyright (C) 2015 Renesas Solutions Corp.
6
 * Copyright (C) 2015-2016 Cogent Embedded, Inc. <source@cogentembedded.com>
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
 *
 * Based on the SuperH Ethernet driver
 */

#include <linux/cache.h>
#include <linux/clk.h>
#include <linux/delay.h>
#include <linux/dma-mapping.h>
#include <linux/err.h>
#include <linux/etherdevice.h>
#include <linux/ethtool.h>
#include <linux/if_vlan.h>
#include <linux/kernel.h>
#include <linux/list.h>
#include <linux/module.h>
#include <linux/net_tstamp.h>
#include <linux/of.h>
#include <linux/of_device.h>
#include <linux/of_irq.h>
#include <linux/of_mdio.h>
#include <linux/of_net.h>
#include <linux/pm_runtime.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
31
#include <linux/sys_soc.h>
B
Biju Das 已提交
32
#include <linux/reset.h>
33

34 35
#include <asm/div64.h>

36 37 38 39 40 41 42 43
#include "ravb.h"

#define RAVB_DEF_MSG_ENABLE \
		(NETIF_MSG_LINK	  | \
		 NETIF_MSG_TIMER  | \
		 NETIF_MSG_RX_ERR | \
		 NETIF_MSG_TX_ERR)

44 45 46 47 48 49 50 51 52 53
static const char *ravb_rx_irqs[NUM_RX_QUEUE] = {
	"ch0", /* RAVB_BE */
	"ch1", /* RAVB_NC */
};

static const char *ravb_tx_irqs[NUM_TX_QUEUE] = {
	"ch18", /* RAVB_BE */
	"ch19", /* RAVB_NC */
};

54 55 56 57 58 59
void ravb_modify(struct net_device *ndev, enum ravb_reg reg, u32 clear,
		 u32 set)
{
	ravb_write(ndev, (ravb_read(ndev, reg) & ~clear) | set, reg);
}

60
int ravb_wait(struct net_device *ndev, enum ravb_reg reg, u32 mask, u32 value)
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
{
	int i;

	for (i = 0; i < 10000; i++) {
		if ((ravb_read(ndev, reg) & mask) == value)
			return 0;
		udelay(10);
	}
	return -ETIMEDOUT;
}

static int ravb_config(struct net_device *ndev)
{
	int error;

	/* Set config mode */
77
	ravb_modify(ndev, CCC, CCC_OPC, CCC_OPC_CONFIG);
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
	/* Check if the operating mode is changed to the config mode */
	error = ravb_wait(ndev, CSR, CSR_OPS, CSR_OPS_CONFIG);
	if (error)
		netdev_err(ndev, "failed to switch device to config mode\n");

	return error;
}

static void ravb_set_rate(struct net_device *ndev)
{
	struct ravb_private *priv = netdev_priv(ndev);

	switch (priv->speed) {
	case 100:		/* 100BASE */
		ravb_write(ndev, GECMR_SPEED_100, GECMR);
		break;
	case 1000:		/* 1000BASE */
		ravb_write(ndev, GECMR_SPEED_1000, GECMR);
		break;
	}
}

static void ravb_set_buffer_align(struct sk_buff *skb)
{
	u32 reserve = (unsigned long)skb->data & (RAVB_ALIGN - 1);

	if (reserve)
		skb_reserve(skb, RAVB_ALIGN - reserve);
}

/* Get MAC address from the MAC address registers
 *
 * Ethernet AVB device doesn't have ROM for MAC address.
 * This function gets the MAC address that was used by a bootloader.
 */
113 114
static void ravb_read_mac_address(struct device_node *np,
				  struct net_device *ndev)
115
{
116 117 118 119
	int ret;

	ret = of_get_mac_address(np, ndev->dev_addr);
	if (ret) {
120 121 122 123 124 125 126 127 128
		u32 mahr = ravb_read(ndev, MAHR);
		u32 malr = ravb_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;
129 130 131 132 133 134 135 136
	}
}

static void ravb_mdio_ctrl(struct mdiobb_ctrl *ctrl, u32 mask, int set)
{
	struct ravb_private *priv = container_of(ctrl, struct ravb_private,
						 mdiobb);

137
	ravb_modify(priv->ndev, PIR, mask, set ? mask : 0);
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
}

/* MDC pin control */
static void ravb_set_mdc(struct mdiobb_ctrl *ctrl, int level)
{
	ravb_mdio_ctrl(ctrl, PIR_MDC, level);
}

/* Data I/O pin control */
static void ravb_set_mdio_dir(struct mdiobb_ctrl *ctrl, int output)
{
	ravb_mdio_ctrl(ctrl, PIR_MMD, output);
}

/* Set data bit */
static void ravb_set_mdio_data(struct mdiobb_ctrl *ctrl, int value)
{
	ravb_mdio_ctrl(ctrl, PIR_MDO, value);
}

/* Get data bit */
static int ravb_get_mdio_data(struct mdiobb_ctrl *ctrl)
{
	struct ravb_private *priv = container_of(ctrl, struct ravb_private,
						 mdiobb);

	return (ravb_read(priv->ndev, PIR) & PIR_MDI) != 0;
}

/* MDIO bus control struct */
168
static const struct mdiobb_ops bb_ops = {
169 170 171 172 173 174 175
	.owner = THIS_MODULE,
	.set_mdc = ravb_set_mdc,
	.set_mdio_dir = ravb_set_mdio_dir,
	.set_mdio_data = ravb_set_mdio_data,
	.get_mdio_data = ravb_get_mdio_data,
};

176 177 178 179 180
/* Free TX skb function for AVB-IP */
static int ravb_tx_free(struct net_device *ndev, int q, bool free_txed_only)
{
	struct ravb_private *priv = netdev_priv(ndev);
	struct net_device_stats *stats = &priv->stats[q];
181
	unsigned int num_tx_desc = priv->num_tx_desc;
182
	struct ravb_tx_desc *desc;
183
	unsigned int entry;
184 185 186 187 188 189 190
	int free_num = 0;
	u32 size;

	for (; priv->cur_tx[q] - priv->dirty_tx[q] > 0; priv->dirty_tx[q]++) {
		bool txed;

		entry = priv->dirty_tx[q] % (priv->num_tx_ring[q] *
191
					     num_tx_desc);
192 193 194 195 196 197 198 199
		desc = &priv->tx_ring[q][entry];
		txed = desc->die_dt == DT_FEMPTY;
		if (free_txed_only && !txed)
			break;
		/* Descriptor type must be checked before all other reads */
		dma_rmb();
		size = le16_to_cpu(desc->ds_tagl) & TX_DS;
		/* Free the original skb. */
200
		if (priv->tx_skb[q][entry / num_tx_desc]) {
201 202 203
			dma_unmap_single(ndev->dev.parent, le32_to_cpu(desc->dptr),
					 size, DMA_TO_DEVICE);
			/* Last packet descriptor? */
204 205
			if (entry % num_tx_desc == num_tx_desc - 1) {
				entry /= num_tx_desc;
206 207 208 209 210 211 212 213 214 215 216 217 218 219
				dev_kfree_skb_any(priv->tx_skb[q][entry]);
				priv->tx_skb[q][entry] = NULL;
				if (txed)
					stats->tx_packets++;
			}
			free_num++;
		}
		if (txed)
			stats->tx_bytes += size;
		desc->die_dt = DT_EEMPTY;
	}
	return free_num;
}

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
static void ravb_rx_ring_free(struct net_device *ndev, int q)
{
	struct ravb_private *priv = netdev_priv(ndev);
	unsigned int ring_size;
	unsigned int i;

	if (!priv->rx_ring[q])
		return;

	for (i = 0; i < priv->num_rx_ring[q]; i++) {
		struct ravb_ex_rx_desc *desc = &priv->rx_ring[q][i];

		if (!dma_mapping_error(ndev->dev.parent,
				       le32_to_cpu(desc->dptr)))
			dma_unmap_single(ndev->dev.parent,
					 le32_to_cpu(desc->dptr),
					 RX_BUF_SZ,
					 DMA_FROM_DEVICE);
	}
	ring_size = sizeof(struct ravb_ex_rx_desc) *
		    (priv->num_rx_ring[q] + 1);
	dma_free_coherent(ndev->dev.parent, ring_size, priv->rx_ring[q],
			  priv->rx_desc_dma[q]);
	priv->rx_ring[q] = NULL;
}

246 247 248 249
/* Free skb's and DMA buffers for Ethernet AVB */
static void ravb_ring_free(struct net_device *ndev, int q)
{
	struct ravb_private *priv = netdev_priv(ndev);
250
	const struct ravb_hw_info *info = priv->info;
251 252 253
	unsigned int num_tx_desc = priv->num_tx_desc;
	unsigned int ring_size;
	unsigned int i;
254

255
	info->rx_ring_free(ndev, q);
256 257

	if (priv->tx_ring[q]) {
258 259
		ravb_tx_free(ndev, q, false);

260
		ring_size = sizeof(struct ravb_tx_desc) *
261
			    (priv->num_tx_ring[q] * num_tx_desc + 1);
262
		dma_free_coherent(ndev->dev.parent, ring_size, priv->tx_ring[q],
263 264 265
				  priv->tx_desc_dma[q]);
		priv->tx_ring[q] = NULL;
	}
266

267 268 269 270 271 272 273 274 275 276 277 278
	/* Free RX skb ringbuffer */
	if (priv->rx_skb[q]) {
		for (i = 0; i < priv->num_rx_ring[q]; i++)
			dev_kfree_skb(priv->rx_skb[q][i]);
	}
	kfree(priv->rx_skb[q]);
	priv->rx_skb[q] = NULL;

	/* Free aligned TX buffers */
	kfree(priv->tx_align[q]);
	priv->tx_align[q] = NULL;

279 280 281 282 283
	/* Free TX skb ringbuffer.
	 * SKBs are freed by ravb_tx_free() call above.
	 */
	kfree(priv->tx_skb[q]);
	priv->tx_skb[q] = NULL;
284 285
}

286
static void ravb_rx_ring_format(struct net_device *ndev, int q)
287 288
{
	struct ravb_private *priv = netdev_priv(ndev);
289
	struct ravb_ex_rx_desc *rx_desc;
290
	unsigned int rx_ring_size = sizeof(*rx_desc) * priv->num_rx_ring[q];
291
	dma_addr_t dma_addr;
292
	unsigned int i;
293 294 295 296 297 298

	memset(priv->rx_ring[q], 0, rx_ring_size);
	/* Build RX ring buffer */
	for (i = 0; i < priv->num_rx_ring[q]; i++) {
		/* RX descriptor */
		rx_desc = &priv->rx_ring[q][i];
299
		rx_desc->ds_cc = cpu_to_le16(RX_BUF_SZ);
300
		dma_addr = dma_map_single(ndev->dev.parent, priv->rx_skb[q][i]->data,
301
					  RX_BUF_SZ,
302
					  DMA_FROM_DEVICE);
303 304 305
		/* We just set the data size to 0 for a failed mapping which
		 * should prevent DMA from happening...
		 */
306
		if (dma_mapping_error(ndev->dev.parent, dma_addr))
307
			rx_desc->ds_cc = cpu_to_le16(0);
308 309 310 311 312 313
		rx_desc->dptr = cpu_to_le32(dma_addr);
		rx_desc->die_dt = DT_FEMPTY;
	}
	rx_desc = &priv->rx_ring[q][i];
	rx_desc->dptr = cpu_to_le32((u32)priv->rx_desc_dma[q]);
	rx_desc->die_dt = DT_LINKFIX; /* type */
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
}

/* Format skb and descriptor buffer for Ethernet AVB */
static void ravb_ring_format(struct net_device *ndev, int q)
{
	struct ravb_private *priv = netdev_priv(ndev);
	const struct ravb_hw_info *info = priv->info;
	unsigned int num_tx_desc = priv->num_tx_desc;
	struct ravb_tx_desc *tx_desc;
	struct ravb_desc *desc;
	unsigned int tx_ring_size = sizeof(*tx_desc) * priv->num_tx_ring[q] *
				    num_tx_desc;
	unsigned int i;

	priv->cur_rx[q] = 0;
	priv->cur_tx[q] = 0;
	priv->dirty_rx[q] = 0;
	priv->dirty_tx[q] = 0;

	info->rx_ring_format(ndev, q);
334 335 336

	memset(priv->tx_ring[q], 0, tx_ring_size);
	/* Build TX ring buffer */
S
Sergei Shtylyov 已提交
337 338 339
	for (i = 0, tx_desc = priv->tx_ring[q]; i < priv->num_tx_ring[q];
	     i++, tx_desc++) {
		tx_desc->die_dt = DT_EEMPTY;
340 341 342 343
		if (num_tx_desc > 1) {
			tx_desc++;
			tx_desc->die_dt = DT_EEMPTY;
		}
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
	}
	tx_desc->dptr = cpu_to_le32((u32)priv->tx_desc_dma[q]);
	tx_desc->die_dt = DT_LINKFIX; /* type */

	/* RX descriptor base address for best effort */
	desc = &priv->desc_bat[RX_QUEUE_OFFSET + q];
	desc->die_dt = DT_LINKFIX; /* type */
	desc->dptr = cpu_to_le32((u32)priv->rx_desc_dma[q]);

	/* TX descriptor base address for best effort */
	desc = &priv->desc_bat[q];
	desc->die_dt = DT_LINKFIX; /* type */
	desc->dptr = cpu_to_le32((u32)priv->tx_desc_dma[q]);
}

359 360 361 362 363 364 365 366 367 368 369 370 371
static void *ravb_alloc_rx_desc(struct net_device *ndev, int q)
{
	struct ravb_private *priv = netdev_priv(ndev);
	unsigned int ring_size;

	ring_size = sizeof(struct ravb_ex_rx_desc) * (priv->num_rx_ring[q] + 1);

	priv->rx_ring[q] = dma_alloc_coherent(ndev->dev.parent, ring_size,
					      &priv->rx_desc_dma[q],
					      GFP_KERNEL);
	return priv->rx_ring[q];
}

372 373 374 375
/* Init skb and descriptor buffer for Ethernet AVB */
static int ravb_ring_init(struct net_device *ndev, int q)
{
	struct ravb_private *priv = netdev_priv(ndev);
376
	const struct ravb_hw_info *info = priv->info;
377 378
	unsigned int num_tx_desc = priv->num_tx_desc;
	unsigned int ring_size;
379
	struct sk_buff *skb;
380
	unsigned int i;
381 382 383 384 385 386 387 388 389

	/* Allocate RX and TX skb rings */
	priv->rx_skb[q] = kcalloc(priv->num_rx_ring[q],
				  sizeof(*priv->rx_skb[q]), GFP_KERNEL);
	priv->tx_skb[q] = kcalloc(priv->num_tx_ring[q],
				  sizeof(*priv->tx_skb[q]), GFP_KERNEL);
	if (!priv->rx_skb[q] || !priv->tx_skb[q])
		goto error;

390
	for (i = 0; i < priv->num_rx_ring[q]; i++) {
391
		skb = netdev_alloc_skb(ndev, info->max_rx_len);
392 393 394 395 396 397
		if (!skb)
			goto error;
		ravb_set_buffer_align(skb);
		priv->rx_skb[q][i] = skb;
	}

398 399 400 401 402 403 404
	if (num_tx_desc > 1) {
		/* Allocate rings for the aligned buffers */
		priv->tx_align[q] = kmalloc(DPTR_ALIGN * priv->num_tx_ring[q] +
					    DPTR_ALIGN - 1, GFP_KERNEL);
		if (!priv->tx_align[q])
			goto error;
	}
405 406

	/* Allocate all RX descriptors. */
407
	if (!info->alloc_rx_desc(ndev, q))
408 409 410 411 412
		goto error;

	priv->dirty_rx[q] = 0;

	/* Allocate all TX descriptors. */
S
Sergei Shtylyov 已提交
413
	ring_size = sizeof(struct ravb_tx_desc) *
414
		    (priv->num_tx_ring[q] * num_tx_desc + 1);
415
	priv->tx_ring[q] = dma_alloc_coherent(ndev->dev.parent, ring_size,
416 417 418 419 420 421 422 423 424 425 426 427 428
					      &priv->tx_desc_dma[q],
					      GFP_KERNEL);
	if (!priv->tx_ring[q])
		goto error;

	return 0;

error:
	ravb_ring_free(ndev, q);

	return -ENOMEM;
}

429
static void ravb_rcar_emac_init(struct net_device *ndev)
430 431 432 433
{
	/* Receive frame limit set register */
	ravb_write(ndev, ndev->mtu + ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN, RFLR);

S
Simon Horman 已提交
434
	/* EMAC Mode: PAUSE prohibition; Duplex; RX Checksum; TX; RX */
M
Magnus Damm 已提交
435
	ravb_write(ndev, ECMR_ZPF | ECMR_DM |
S
Simon Horman 已提交
436
		   (ndev->features & NETIF_F_RXCSUM ? ECMR_RCSC : 0) |
437
		   ECMR_TE | ECMR_RE, ECMR);
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454

	ravb_set_rate(ndev);

	/* Set MAC address */
	ravb_write(ndev,
		   (ndev->dev_addr[0] << 24) | (ndev->dev_addr[1] << 16) |
		   (ndev->dev_addr[2] << 8)  | (ndev->dev_addr[3]), MAHR);
	ravb_write(ndev,
		   (ndev->dev_addr[4] << 8)  | (ndev->dev_addr[5]), MALR);

	/* E-MAC status register clear */
	ravb_write(ndev, ECSR_ICD | ECSR_MPD, ECSR);

	/* E-MAC interrupt enable register */
	ravb_write(ndev, ECSIPR_ICDIP | ECSIPR_MPDIP | ECSIPR_LCHNGIP, ECSIPR);
}

455 456 457 458 459 460 461 462 463
/* E-MAC init function */
static void ravb_emac_init(struct net_device *ndev)
{
	struct ravb_private *priv = netdev_priv(ndev);
	const struct ravb_hw_info *info = priv->info;

	info->emac_init(ndev);
}

464
static void ravb_rcar_dmac_init(struct net_device *ndev)
465
{
466
	struct ravb_private *priv = netdev_priv(ndev);
467
	const struct ravb_hw_info *info = priv->info;
468 469

	/* Set AVB RX */
470 471
	ravb_write(ndev,
		   RCR_EFFS | RCR_ENCF | RCR_ETS0 | RCR_ESF | 0x18000000, RCR);
472 473

	/* Set FIFO size */
474
	ravb_write(ndev, TGC_TQP_AVBMODE1 | 0x00112200, TGC);
475 476 477 478

	/* Timestamp enable */
	ravb_write(ndev, TCCR_TFEN, TCCR);

479
	/* Interrupt init: */
480
	if (info->multi_irqs) {
481 482 483 484 485
		/* Clear DIL.DPLx */
		ravb_write(ndev, 0, DIL);
		/* Set queue specific interrupt */
		ravb_write(ndev, CIE_CRIE | CIE_CTIE | CIE_CL0M, CIE);
	}
486 487
	/* Frame receive */
	ravb_write(ndev, RIC0_FRE0 | RIC0_FRE1, RIC0);
488 489
	/* Disable FIFO full warning */
	ravb_write(ndev, 0, RIC1);
490 491 492 493
	/* Receive FIFO full error, descriptor empty */
	ravb_write(ndev, RIC2_QFE0 | RIC2_QFE1 | RIC2_RFFE, RIC2);
	/* Frame transmitted, timestamp FIFO updated */
	ravb_write(ndev, TIC_FTE0 | TIC_FTE1 | TIC_TFUE, TIC);
494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521
}

/* Device init function for Ethernet AVB */
static int ravb_dmac_init(struct net_device *ndev)
{
	struct ravb_private *priv = netdev_priv(ndev);
	const struct ravb_hw_info *info = priv->info;
	int error;

	/* Set CONFIG mode */
	error = ravb_config(ndev);
	if (error)
		return error;

	error = ravb_ring_init(ndev, RAVB_BE);
	if (error)
		return error;
	error = ravb_ring_init(ndev, RAVB_NC);
	if (error) {
		ravb_ring_free(ndev, RAVB_BE);
		return error;
	}

	/* Descriptor format */
	ravb_ring_format(ndev, RAVB_BE);
	ravb_ring_format(ndev, RAVB_NC);

	info->dmac_init(ndev);
522 523

	/* Setting the control will start the AVB-DMAC process. */
524
	ravb_modify(ndev, CCC, CCC_OPC, CCC_OPC_OPERATION);
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

	return 0;
}

static void ravb_get_tx_tstamp(struct net_device *ndev)
{
	struct ravb_private *priv = netdev_priv(ndev);
	struct ravb_tstamp_skb *ts_skb, *ts_skb2;
	struct skb_shared_hwtstamps shhwtstamps;
	struct sk_buff *skb;
	struct timespec64 ts;
	u16 tag, tfa_tag;
	int count;
	u32 tfa2;

	count = (ravb_read(ndev, TSR) & TSR_TFFL) >> 8;
	while (count--) {
		tfa2 = ravb_read(ndev, TFA2);
		tfa_tag = (tfa2 & TFA2_TST) >> 16;
		ts.tv_nsec = (u64)ravb_read(ndev, TFA0);
		ts.tv_sec = ((u64)(tfa2 & TFA2_TSV) << 32) |
			    ravb_read(ndev, TFA1);
		memset(&shhwtstamps, 0, sizeof(shhwtstamps));
		shhwtstamps.hwtstamp = timespec64_to_ktime(ts);
		list_for_each_entry_safe(ts_skb, ts_skb2, &priv->ts_skb_list,
					 list) {
			skb = ts_skb->skb;
			tag = ts_skb->tag;
			list_del(&ts_skb->list);
			kfree(ts_skb);
			if (tag == tfa_tag) {
				skb_tstamp_tx(skb, &shhwtstamps);
557
				dev_consume_skb_any(skb);
558
				break;
559 560
			} else {
				dev_kfree_skb_any(skb);
561 562
			}
		}
563
		ravb_modify(ndev, TCCR, TCCR_TFR, TCCR_TFR);
564 565 566
	}
}

S
Simon Horman 已提交
567 568 569 570
static void ravb_rx_csum(struct sk_buff *skb)
{
	u8 *hw_csum;

571 572 573 574
	/* The hardware checksum is contained in sizeof(__sum16) (2) bytes
	 * appended to packet data
	 */
	if (unlikely(skb->len < sizeof(__sum16)))
S
Simon Horman 已提交
575
		return;
576
	hw_csum = skb_tail_pointer(skb) - sizeof(__sum16);
S
Simon Horman 已提交
577 578
	skb->csum = csum_unfold((__force __sum16)get_unaligned_le16(hw_csum));
	skb->ip_summed = CHECKSUM_COMPLETE;
579
	skb_trim(skb, skb->len - sizeof(__sum16));
S
Simon Horman 已提交
580 581
}

B
Biju Das 已提交
582
static bool ravb_rcar_rx(struct net_device *ndev, int *quota, int q)
583 584
{
	struct ravb_private *priv = netdev_priv(ndev);
585
	const struct ravb_hw_info *info = priv->info;
586 587 588 589 590 591 592 593 594
	int entry = priv->cur_rx[q] % priv->num_rx_ring[q];
	int boguscnt = (priv->dirty_rx[q] + priv->num_rx_ring[q]) -
			priv->cur_rx[q];
	struct net_device_stats *stats = &priv->stats[q];
	struct ravb_ex_rx_desc *desc;
	struct sk_buff *skb;
	dma_addr_t dma_addr;
	struct timespec64 ts;
	u8  desc_status;
595
	u16 pkt_len;
596 597 598 599 600 601 602 603 604 605 606 607 608 609
	int limit;

	boguscnt = min(boguscnt, *quota);
	limit = boguscnt;
	desc = &priv->rx_ring[q][entry];
	while (desc->die_dt != DT_FEMPTY) {
		/* Descriptor type must be checked before all other reads */
		dma_rmb();
		desc_status = desc->msc;
		pkt_len = le16_to_cpu(desc->ds_cc) & RX_DS;

		if (--boguscnt < 0)
			break;

610 611 612 613
		/* We use 0-byte descriptors to mark the DMA mapping errors */
		if (!pkt_len)
			continue;

614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
		if (desc_status & MSC_MC)
			stats->multicast++;

		if (desc_status & (MSC_CRC | MSC_RFE | MSC_RTSF | MSC_RTLF |
				   MSC_CEEF)) {
			stats->rx_errors++;
			if (desc_status & MSC_CRC)
				stats->rx_crc_errors++;
			if (desc_status & MSC_RFE)
				stats->rx_frame_errors++;
			if (desc_status & (MSC_RTLF | MSC_RTSF))
				stats->rx_length_errors++;
			if (desc_status & MSC_CEEF)
				stats->rx_missed_errors++;
		} else {
			u32 get_ts = priv->tstamp_rx_ctrl & RAVB_RXTSTAMP_TYPE;

			skb = priv->rx_skb[q][entry];
			priv->rx_skb[q][entry] = NULL;
633
			dma_unmap_single(ndev->dev.parent, le32_to_cpu(desc->dptr),
634
					 RX_BUF_SZ,
635
					 DMA_FROM_DEVICE);
636 637 638 639 640 641 642 643 644 645 646 647 648
			get_ts &= (q == RAVB_NC) ?
					RAVB_RXTSTAMP_TYPE_V2_L2_EVENT :
					~RAVB_RXTSTAMP_TYPE_V2_L2_EVENT;
			if (get_ts) {
				struct skb_shared_hwtstamps *shhwtstamps;

				shhwtstamps = skb_hwtstamps(skb);
				memset(shhwtstamps, 0, sizeof(*shhwtstamps));
				ts.tv_sec = ((u64) le16_to_cpu(desc->ts_sh) <<
					     32) | le32_to_cpu(desc->ts_sl);
				ts.tv_nsec = le32_to_cpu(desc->ts_n);
				shhwtstamps->hwtstamp = timespec64_to_ktime(ts);
			}
S
Simon Horman 已提交
649

650 651
			skb_put(skb, pkt_len);
			skb->protocol = eth_type_trans(skb, ndev);
S
Simon Horman 已提交
652 653
			if (ndev->features & NETIF_F_RXCSUM)
				ravb_rx_csum(skb);
654 655 656 657 658 659 660 661 662 663 664 665 666
			napi_gro_receive(&priv->napi[q], skb);
			stats->rx_packets++;
			stats->rx_bytes += pkt_len;
		}

		entry = (++priv->cur_rx[q]) % priv->num_rx_ring[q];
		desc = &priv->rx_ring[q][entry];
	}

	/* Refill the RX ring buffers. */
	for (; priv->cur_rx[q] - priv->dirty_rx[q] > 0; priv->dirty_rx[q]++) {
		entry = priv->dirty_rx[q] % priv->num_rx_ring[q];
		desc = &priv->rx_ring[q][entry];
667
		desc->ds_cc = cpu_to_le16(RX_BUF_SZ);
668 669

		if (!priv->rx_skb[q][entry]) {
670
			skb = netdev_alloc_skb(ndev, info->max_rx_len);
671 672 673
			if (!skb)
				break;	/* Better luck next round. */
			ravb_set_buffer_align(skb);
674
			dma_addr = dma_map_single(ndev->dev.parent, skb->data,
675 676 677
						  le16_to_cpu(desc->ds_cc),
						  DMA_FROM_DEVICE);
			skb_checksum_none_assert(skb);
678 679 680
			/* We just set the data size to 0 for a failed mapping
			 * which should prevent DMA  from happening...
			 */
681
			if (dma_mapping_error(ndev->dev.parent, dma_addr))
682
				desc->ds_cc = cpu_to_le16(0);
683 684 685 686 687 688 689 690 691 692 693 694 695
			desc->dptr = cpu_to_le32(dma_addr);
			priv->rx_skb[q][entry] = skb;
		}
		/* Descriptor type must be set after all the above writes */
		dma_wmb();
		desc->die_dt = DT_FEMPTY;
	}

	*quota -= limit - (++boguscnt);

	return boguscnt <= 0;
}

B
Biju Das 已提交
696 697 698 699 700 701 702 703 704
/* Packet receive function for Ethernet AVB */
static bool ravb_rx(struct net_device *ndev, int *quota, int q)
{
	struct ravb_private *priv = netdev_priv(ndev);
	const struct ravb_hw_info *info = priv->info;

	return info->receive(ndev, quota, q);
}

705 706 707
static void ravb_rcv_snd_disable(struct net_device *ndev)
{
	/* Disable TX and RX */
708
	ravb_modify(ndev, ECMR, ECMR_RE | ECMR_TE, 0);
709 710 711 712 713
}

static void ravb_rcv_snd_enable(struct net_device *ndev)
{
	/* Enable TX and RX */
714
	ravb_modify(ndev, ECMR, ECMR_RE | ECMR_TE, ECMR_RE | ECMR_TE);
715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
}

/* function for waiting dma process finished */
static int ravb_stop_dma(struct net_device *ndev)
{
	int error;

	/* Wait for stopping the hardware TX process */
	error = ravb_wait(ndev, TCCR,
			  TCCR_TSRQ0 | TCCR_TSRQ1 | TCCR_TSRQ2 | TCCR_TSRQ3, 0);
	if (error)
		return error;

	error = ravb_wait(ndev, CSR, CSR_TPO0 | CSR_TPO1 | CSR_TPO2 | CSR_TPO3,
			  0);
	if (error)
		return error;

	/* Stop the E-MAC's RX/TX processes. */
	ravb_rcv_snd_disable(ndev);

	/* Wait for stopping the RX DMA process */
	error = ravb_wait(ndev, CSR, CSR_RPO, 0);
	if (error)
		return error;

	/* Stop AVB-DMAC process */
	return ravb_config(ndev);
}

/* E-MAC interrupt handler */
746
static void ravb_emac_interrupt_unlocked(struct net_device *ndev)
747 748 749 750 751 752
{
	struct ravb_private *priv = netdev_priv(ndev);
	u32 ecsr, psr;

	ecsr = ravb_read(ndev, ECSR);
	ravb_write(ndev, ecsr, ECSR);	/* clear interrupt */
753 754 755

	if (ecsr & ECSR_MPD)
		pm_wakeup_event(&priv->pdev->dev, 0);
756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774
	if (ecsr & ECSR_ICD)
		ndev->stats.tx_carrier_errors++;
	if (ecsr & ECSR_LCHNG) {
		/* Link changed */
		if (priv->no_avb_link)
			return;
		psr = ravb_read(ndev, PSR);
		if (priv->avb_link_active_low)
			psr ^= PSR_LMON;
		if (!(psr & PSR_LMON)) {
			/* DIsable RX and TX */
			ravb_rcv_snd_disable(ndev);
		} else {
			/* Enable RX and TX */
			ravb_rcv_snd_enable(ndev);
		}
	}
}

775 776 777 778 779 780 781 782 783 784 785
static irqreturn_t ravb_emac_interrupt(int irq, void *dev_id)
{
	struct net_device *ndev = dev_id;
	struct ravb_private *priv = netdev_priv(ndev);

	spin_lock(&priv->lock);
	ravb_emac_interrupt_unlocked(ndev);
	spin_unlock(&priv->lock);
	return IRQ_HANDLED;
}

786 787 788 789 790 791 792
/* Error interrupt handler */
static void ravb_error_interrupt(struct net_device *ndev)
{
	struct ravb_private *priv = netdev_priv(ndev);
	u32 eis, ris2;

	eis = ravb_read(ndev, EIS);
793
	ravb_write(ndev, ~(EIS_QFS | EIS_RESERVED), EIS);
794 795
	if (eis & EIS_QFS) {
		ris2 = ravb_read(ndev, RIS2);
796 797
		ravb_write(ndev, ~(RIS2_QFF0 | RIS2_RFFF | RIS2_RESERVED),
			   RIS2);
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812

		/* Receive Descriptor Empty int */
		if (ris2 & RIS2_QFF0)
			priv->stats[RAVB_BE].rx_over_errors++;

		    /* Receive Descriptor Empty int */
		if (ris2 & RIS2_QFF1)
			priv->stats[RAVB_NC].rx_over_errors++;

		/* Receive FIFO Overflow int */
		if (ris2 & RIS2_RFFF)
			priv->rx_fifo_errors++;
	}
}

813 814 815
static bool ravb_queue_interrupt(struct net_device *ndev, int q)
{
	struct ravb_private *priv = netdev_priv(ndev);
816
	const struct ravb_hw_info *info = priv->info;
817 818 819 820 821 822 823 824
	u32 ris0 = ravb_read(ndev, RIS0);
	u32 ric0 = ravb_read(ndev, RIC0);
	u32 tis  = ravb_read(ndev, TIS);
	u32 tic  = ravb_read(ndev, TIC);

	if (((ris0 & ric0) & BIT(q)) || ((tis  & tic)  & BIT(q))) {
		if (napi_schedule_prep(&priv->napi[q])) {
			/* Mask RX and TX interrupts */
825
			if (!info->multi_irqs) {
826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850
				ravb_write(ndev, ric0 & ~BIT(q), RIC0);
				ravb_write(ndev, tic & ~BIT(q), TIC);
			} else {
				ravb_write(ndev, BIT(q), RID0);
				ravb_write(ndev, BIT(q), TID);
			}
			__napi_schedule(&priv->napi[q]);
		} else {
			netdev_warn(ndev,
				    "ignoring interrupt, rx status 0x%08x, rx mask 0x%08x,\n",
				    ris0, ric0);
			netdev_warn(ndev,
				    "                    tx status 0x%08x, tx mask 0x%08x.\n",
				    tis, tic);
		}
		return true;
	}
	return false;
}

static bool ravb_timestamp_interrupt(struct net_device *ndev)
{
	u32 tis = ravb_read(ndev, TIS);

	if (tis & TIS_TFUF) {
851
		ravb_write(ndev, ~(TIS_TFUF | TIS_RESERVED), TIS);
852 853 854 855 856 857
		ravb_get_tx_tstamp(ndev);
		return true;
	}
	return false;
}

858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873
static irqreturn_t ravb_interrupt(int irq, void *dev_id)
{
	struct net_device *ndev = dev_id;
	struct ravb_private *priv = netdev_priv(ndev);
	irqreturn_t result = IRQ_NONE;
	u32 iss;

	spin_lock(&priv->lock);
	/* Get interrupt status */
	iss = ravb_read(ndev, ISS);

	/* Received and transmitted interrupts */
	if (iss & (ISS_FRS | ISS_FTS | ISS_TFUS)) {
		int q;

		/* Timestamp updated */
874
		if (ravb_timestamp_interrupt(ndev))
875 876 877 878
			result = IRQ_HANDLED;

		/* Network control and best effort queue RX/TX */
		for (q = RAVB_NC; q >= RAVB_BE; q--) {
879
			if (ravb_queue_interrupt(ndev, q))
880 881 882 883 884 885
				result = IRQ_HANDLED;
		}
	}

	/* E-MAC status summary */
	if (iss & ISS_MS) {
886
		ravb_emac_interrupt_unlocked(ndev);
887 888 889 890 891 892 893 894 895
		result = IRQ_HANDLED;
	}

	/* Error status summary */
	if (iss & ISS_ES) {
		ravb_error_interrupt(ndev);
		result = IRQ_HANDLED;
	}

896
	/* gPTP interrupt status summary */
897 898
	if (iss & ISS_CGIS) {
		ravb_ptp_interrupt(ndev);
899
		result = IRQ_HANDLED;
900
	}
901

902 903 904 905
	spin_unlock(&priv->lock);
	return result;
}

906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928
/* Timestamp/Error/gPTP interrupt handler */
static irqreturn_t ravb_multi_interrupt(int irq, void *dev_id)
{
	struct net_device *ndev = dev_id;
	struct ravb_private *priv = netdev_priv(ndev);
	irqreturn_t result = IRQ_NONE;
	u32 iss;

	spin_lock(&priv->lock);
	/* Get interrupt status */
	iss = ravb_read(ndev, ISS);

	/* Timestamp updated */
	if ((iss & ISS_TFUS) && ravb_timestamp_interrupt(ndev))
		result = IRQ_HANDLED;

	/* Error status summary */
	if (iss & ISS_ES) {
		ravb_error_interrupt(ndev);
		result = IRQ_HANDLED;
	}

	/* gPTP interrupt status summary */
929 930
	if (iss & ISS_CGIS) {
		ravb_ptp_interrupt(ndev);
931
		result = IRQ_HANDLED;
932
	}
933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963

	spin_unlock(&priv->lock);
	return result;
}

static irqreturn_t ravb_dma_interrupt(int irq, void *dev_id, int q)
{
	struct net_device *ndev = dev_id;
	struct ravb_private *priv = netdev_priv(ndev);
	irqreturn_t result = IRQ_NONE;

	spin_lock(&priv->lock);

	/* Network control/Best effort queue RX/TX */
	if (ravb_queue_interrupt(ndev, q))
		result = IRQ_HANDLED;

	spin_unlock(&priv->lock);
	return result;
}

static irqreturn_t ravb_be_interrupt(int irq, void *dev_id)
{
	return ravb_dma_interrupt(irq, dev_id, RAVB_BE);
}

static irqreturn_t ravb_nc_interrupt(int irq, void *dev_id)
{
	return ravb_dma_interrupt(irq, dev_id, RAVB_NC);
}

964 965 966 967
static int ravb_poll(struct napi_struct *napi, int budget)
{
	struct net_device *ndev = napi->dev;
	struct ravb_private *priv = netdev_priv(ndev);
968
	const struct ravb_hw_info *info = priv->info;
969 970 971 972 973
	unsigned long flags;
	int q = napi - priv->napi;
	int mask = BIT(q);
	int quota = budget;

974 975 976 977 978
	/* Processing RX Descriptor Ring */
	/* Clear RX interrupt */
	ravb_write(ndev, ~(mask | RIS0_RESERVED), RIS0);
	if (ravb_rx(ndev, &quota, q))
		goto out;
979

B
Biju Das 已提交
980
	/* Processing TX Descriptor Ring */
981 982 983 984 985 986
	spin_lock_irqsave(&priv->lock, flags);
	/* Clear TX interrupt */
	ravb_write(ndev, ~(mask | TIS_RESERVED), TIS);
	ravb_tx_free(ndev, q, true);
	netif_wake_subqueue(ndev, q);
	spin_unlock_irqrestore(&priv->lock, flags);
987 988 989 990 991

	napi_complete(napi);

	/* Re-enable RX/TX interrupts */
	spin_lock_irqsave(&priv->lock, flags);
992
	if (!info->multi_irqs) {
993 994 995 996 997 998
		ravb_modify(ndev, RIC0, mask, mask);
		ravb_modify(ndev, TIC,  mask, mask);
	} else {
		ravb_write(ndev, mask, RIE0);
		ravb_write(ndev, mask, TIE);
	}
999 1000 1001 1002 1003
	spin_unlock_irqrestore(&priv->lock, flags);

	/* Receive error message handling */
	priv->rx_over_errors =  priv->stats[RAVB_BE].rx_over_errors;
	priv->rx_over_errors += priv->stats[RAVB_NC].rx_over_errors;
1004
	if (priv->rx_over_errors != ndev->stats.rx_over_errors)
1005
		ndev->stats.rx_over_errors = priv->rx_over_errors;
1006
	if (priv->rx_fifo_errors != ndev->stats.rx_fifo_errors)
1007 1008 1009 1010 1011 1012 1013 1014 1015
		ndev->stats.rx_fifo_errors = priv->rx_fifo_errors;
out:
	return budget - quota;
}

/* PHY state control function */
static void ravb_adjust_link(struct net_device *ndev)
{
	struct ravb_private *priv = netdev_priv(ndev);
1016
	const struct ravb_hw_info *info = priv->info;
1017
	struct phy_device *phydev = ndev->phydev;
1018
	bool new_state = false;
1019 1020 1021 1022 1023 1024 1025
	unsigned long flags;

	spin_lock_irqsave(&priv->lock, flags);

	/* Disable TX and RX right over here, if E-MAC change is ignored */
	if (priv->no_avb_link)
		ravb_rcv_snd_disable(ndev);
1026 1027 1028 1029 1030

	if (phydev->link) {
		if (phydev->speed != priv->speed) {
			new_state = true;
			priv->speed = phydev->speed;
1031
			info->set_rate(ndev);
1032 1033
		}
		if (!priv->link) {
1034
			ravb_modify(ndev, ECMR, ECMR_TXF, 0);
1035 1036 1037 1038 1039 1040 1041 1042 1043
			new_state = true;
			priv->link = phydev->link;
		}
	} else if (priv->link) {
		new_state = true;
		priv->link = 0;
		priv->speed = 0;
	}

1044 1045 1046 1047 1048 1049
	/* Enable TX and RX right over here, if E-MAC change is ignored */
	if (priv->no_avb_link && phydev->link)
		ravb_rcv_snd_enable(ndev);

	spin_unlock_irqrestore(&priv->lock, flags);

1050 1051 1052 1053
	if (new_state && netif_msg_link(priv))
		phy_print_status(phydev);
}

1054 1055 1056 1057 1058
static const struct soc_device_attribute r8a7795es10[] = {
	{ .soc_id = "r8a7795", .revision = "ES1.0", },
	{ /* sentinel */ }
};

1059 1060 1061 1062 1063 1064 1065
/* PHY init function */
static int ravb_phy_init(struct net_device *ndev)
{
	struct device_node *np = ndev->dev.parent->of_node;
	struct ravb_private *priv = netdev_priv(ndev);
	struct phy_device *phydev;
	struct device_node *pn;
1066
	phy_interface_t iface;
K
Kazuya Mizuguchi 已提交
1067
	int err;
1068 1069 1070 1071 1072 1073

	priv->link = 0;
	priv->speed = 0;

	/* Try connecting to PHY */
	pn = of_parse_phandle(np, "phy-handle", 0);
K
Kazuya Mizuguchi 已提交
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
	if (!pn) {
		/* In the case of a fixed PHY, the DT node associated
		 * to the PHY is the Ethernet MAC DT node.
		 */
		if (of_phy_is_fixed_link(np)) {
			err = of_phy_register_fixed_link(np);
			if (err)
				return err;
		}
		pn = of_node_get(np);
	}
1085

1086 1087
	iface = priv->rgmii_override ? PHY_INTERFACE_MODE_RGMII
				     : priv->phy_interface;
1088
	phydev = of_phy_connect(ndev, pn, ravb_adjust_link, 0, iface);
1089
	of_node_put(pn);
1090 1091
	if (!phydev) {
		netdev_err(ndev, "failed to connect PHY\n");
1092 1093
		err = -ENOENT;
		goto err_deregister_fixed_link;
1094 1095
	}

1096
	/* This driver only support 10/100Mbit speeds on R-Car H3 ES1.0
1097 1098
	 * at this time.
	 */
1099
	if (soc_device_match(r8a7795es10)) {
1100 1101 1102
		err = phy_set_max_speed(phydev, SPEED_100);
		if (err) {
			netdev_err(ndev, "failed to limit PHY to 100Mbit/s\n");
1103
			goto err_phy_disconnect;
1104 1105 1106 1107 1108
		}

		netdev_info(ndev, "limited PHY to 100Mbit/s\n");
	}

A
Andrew Lunn 已提交
1109
	/* 10BASE, Pause and Asym Pause is not supported */
1110 1111
	phy_remove_link_mode(phydev, ETHTOOL_LINK_MODE_10baseT_Half_BIT);
	phy_remove_link_mode(phydev, ETHTOOL_LINK_MODE_10baseT_Full_BIT);
A
Andrew Lunn 已提交
1112 1113
	phy_remove_link_mode(phydev, ETHTOOL_LINK_MODE_Pause_BIT);
	phy_remove_link_mode(phydev, ETHTOOL_LINK_MODE_Asym_Pause_BIT);
K
Kazuya Mizuguchi 已提交
1114

1115 1116 1117 1118
	/* Half Duplex is not supported */
	phy_remove_link_mode(phydev, ETHTOOL_LINK_MODE_1000baseT_Half_BIT);
	phy_remove_link_mode(phydev, ETHTOOL_LINK_MODE_100baseT_Half_BIT);

1119
	phy_attached_info(phydev);
1120 1121

	return 0;
1122 1123 1124 1125 1126 1127 1128 1129

err_phy_disconnect:
	phy_disconnect(phydev);
err_deregister_fixed_link:
	if (of_phy_is_fixed_link(np))
		of_phy_deregister_fixed_link(np);

	return err;
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
}

/* PHY control start function */
static int ravb_phy_start(struct net_device *ndev)
{
	int error;

	error = ravb_phy_init(ndev);
	if (error)
		return error;

1141
	phy_start(ndev->phydev);
1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187

	return 0;
}

static u32 ravb_get_msglevel(struct net_device *ndev)
{
	struct ravb_private *priv = netdev_priv(ndev);

	return priv->msg_enable;
}

static void ravb_set_msglevel(struct net_device *ndev, u32 value)
{
	struct ravb_private *priv = netdev_priv(ndev);

	priv->msg_enable = value;
}

static const char ravb_gstrings_stats[][ETH_GSTRING_LEN] = {
	"rx_queue_0_current",
	"tx_queue_0_current",
	"rx_queue_0_dirty",
	"tx_queue_0_dirty",
	"rx_queue_0_packets",
	"tx_queue_0_packets",
	"rx_queue_0_bytes",
	"tx_queue_0_bytes",
	"rx_queue_0_mcast_packets",
	"rx_queue_0_errors",
	"rx_queue_0_crc_errors",
	"rx_queue_0_frame_errors",
	"rx_queue_0_length_errors",
	"rx_queue_0_missed_errors",
	"rx_queue_0_over_errors",

	"rx_queue_1_current",
	"tx_queue_1_current",
	"rx_queue_1_dirty",
	"tx_queue_1_dirty",
	"rx_queue_1_packets",
	"tx_queue_1_packets",
	"rx_queue_1_bytes",
	"tx_queue_1_bytes",
	"rx_queue_1_mcast_packets",
	"rx_queue_1_errors",
	"rx_queue_1_crc_errors",
1188
	"rx_queue_1_frame_errors",
1189 1190 1191 1192 1193 1194 1195
	"rx_queue_1_length_errors",
	"rx_queue_1_missed_errors",
	"rx_queue_1_over_errors",
};

static int ravb_get_sset_count(struct net_device *netdev, int sset)
{
1196 1197 1198
	struct ravb_private *priv = netdev_priv(netdev);
	const struct ravb_hw_info *info = priv->info;

1199 1200
	switch (sset) {
	case ETH_SS_STATS:
1201
		return info->stats_len;
1202 1203 1204 1205 1206 1207
	default:
		return -EOPNOTSUPP;
	}
}

static void ravb_get_ethtool_stats(struct net_device *ndev,
1208
				   struct ethtool_stats *estats, u64 *data)
1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237
{
	struct ravb_private *priv = netdev_priv(ndev);
	int i = 0;
	int q;

	/* Device-specific stats */
	for (q = RAVB_BE; q < NUM_RX_QUEUE; q++) {
		struct net_device_stats *stats = &priv->stats[q];

		data[i++] = priv->cur_rx[q];
		data[i++] = priv->cur_tx[q];
		data[i++] = priv->dirty_rx[q];
		data[i++] = priv->dirty_tx[q];
		data[i++] = stats->rx_packets;
		data[i++] = stats->tx_packets;
		data[i++] = stats->rx_bytes;
		data[i++] = stats->tx_bytes;
		data[i++] = stats->multicast;
		data[i++] = stats->rx_errors;
		data[i++] = stats->rx_crc_errors;
		data[i++] = stats->rx_frame_errors;
		data[i++] = stats->rx_length_errors;
		data[i++] = stats->rx_missed_errors;
		data[i++] = stats->rx_over_errors;
	}
}

static void ravb_get_strings(struct net_device *ndev, u32 stringset, u8 *data)
{
1238 1239 1240
	struct ravb_private *priv = netdev_priv(ndev);
	const struct ravb_hw_info *info = priv->info;

1241 1242
	switch (stringset) {
	case ETH_SS_STATS:
1243
		memcpy(data, info->gstrings_stats, info->gstrings_size);
1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
		break;
	}
}

static void ravb_get_ringparam(struct net_device *ndev,
			       struct ethtool_ringparam *ring)
{
	struct ravb_private *priv = netdev_priv(ndev);

	ring->rx_max_pending = BE_RX_RING_MAX;
	ring->tx_max_pending = BE_TX_RING_MAX;
	ring->rx_pending = priv->num_rx_ring[RAVB_BE];
	ring->tx_pending = priv->num_tx_ring[RAVB_BE];
}

static int ravb_set_ringparam(struct net_device *ndev,
			      struct ethtool_ringparam *ring)
{
	struct ravb_private *priv = netdev_priv(ndev);
1263
	const struct ravb_hw_info *info = priv->info;
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275
	int error;

	if (ring->tx_pending > BE_TX_RING_MAX ||
	    ring->rx_pending > BE_RX_RING_MAX ||
	    ring->tx_pending < BE_TX_RING_MIN ||
	    ring->rx_pending < BE_RX_RING_MIN)
		return -EINVAL;
	if (ring->rx_mini_pending || ring->rx_jumbo_pending)
		return -EINVAL;

	if (netif_running(ndev)) {
		netif_device_detach(ndev);
1276
		/* Stop PTP Clock driver */
1277
		if (info->no_ptp_cfg_active)
1278
			ravb_ptp_stop(ndev);
1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307
		/* Wait for DMA stopping */
		error = ravb_stop_dma(ndev);
		if (error) {
			netdev_err(ndev,
				   "cannot set ringparam! Any AVB processes are still running?\n");
			return error;
		}
		synchronize_irq(ndev->irq);

		/* Free all the skb's in the RX queue and the DMA buffers. */
		ravb_ring_free(ndev, RAVB_BE);
		ravb_ring_free(ndev, RAVB_NC);
	}

	/* Set new parameters */
	priv->num_rx_ring[RAVB_BE] = ring->rx_pending;
	priv->num_tx_ring[RAVB_BE] = ring->tx_pending;

	if (netif_running(ndev)) {
		error = ravb_dmac_init(ndev);
		if (error) {
			netdev_err(ndev,
				   "%s: ravb_dmac_init() failed, error %d\n",
				   __func__, error);
			return error;
		}

		ravb_emac_init(ndev);

1308
		/* Initialise PTP Clock driver */
1309
		if (info->no_ptp_cfg_active)
1310
			ravb_ptp_init(ndev, priv->pdev);
1311

1312 1313 1314 1315 1316 1317 1318 1319 1320
		netif_device_attach(ndev);
	}

	return 0;
}

static int ravb_get_ts_info(struct net_device *ndev,
			    struct ethtool_ts_info *info)
{
1321 1322
	struct ravb_private *priv = netdev_priv(ndev);

1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334
	info->so_timestamping =
		SOF_TIMESTAMPING_TX_SOFTWARE |
		SOF_TIMESTAMPING_RX_SOFTWARE |
		SOF_TIMESTAMPING_SOFTWARE |
		SOF_TIMESTAMPING_TX_HARDWARE |
		SOF_TIMESTAMPING_RX_HARDWARE |
		SOF_TIMESTAMPING_RAW_HARDWARE;
	info->tx_types = (1 << HWTSTAMP_TX_OFF) | (1 << HWTSTAMP_TX_ON);
	info->rx_filters =
		(1 << HWTSTAMP_FILTER_NONE) |
		(1 << HWTSTAMP_FILTER_PTP_V2_L2_EVENT) |
		(1 << HWTSTAMP_FILTER_ALL);
1335
	info->phc_index = ptp_clock_index(priv->ptp.clock);
1336 1337 1338 1339

	return 0;
}

1340 1341 1342 1343
static void ravb_get_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
{
	struct ravb_private *priv = netdev_priv(ndev);

1344 1345
	wol->supported = WAKE_MAGIC;
	wol->wolopts = priv->wol_enabled ? WAKE_MAGIC : 0;
1346 1347 1348 1349 1350 1351
}

static int ravb_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
{
	struct ravb_private *priv = netdev_priv(ndev);

1352
	if (wol->wolopts & ~WAKE_MAGIC)
1353 1354 1355 1356 1357 1358 1359 1360 1361
		return -EOPNOTSUPP;

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

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

	return 0;
}

1362
static const struct ethtool_ops ravb_ethtool_ops = {
1363
	.nway_reset		= phy_ethtool_nway_reset,
1364 1365 1366 1367 1368 1369 1370 1371 1372
	.get_msglevel		= ravb_get_msglevel,
	.set_msglevel		= ravb_set_msglevel,
	.get_link		= ethtool_op_get_link,
	.get_strings		= ravb_get_strings,
	.get_ethtool_stats	= ravb_get_ethtool_stats,
	.get_sset_count		= ravb_get_sset_count,
	.get_ringparam		= ravb_get_ringparam,
	.set_ringparam		= ravb_set_ringparam,
	.get_ts_info		= ravb_get_ts_info,
1373
	.get_link_ksettings	= phy_ethtool_get_link_ksettings,
1374
	.set_link_ksettings	= phy_ethtool_set_link_ksettings,
1375 1376
	.get_wol		= ravb_get_wol,
	.set_wol		= ravb_set_wol,
1377 1378
};

1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395
static inline int ravb_hook_irq(unsigned int irq, irq_handler_t handler,
				struct net_device *ndev, struct device *dev,
				const char *ch)
{
	char *name;
	int error;

	name = devm_kasprintf(dev, GFP_KERNEL, "%s:%s", ndev->name, ch);
	if (!name)
		return -ENOMEM;
	error = request_irq(irq, handler, 0, name, ndev);
	if (error)
		netdev_err(ndev, "cannot request IRQ %s\n", name);

	return error;
}

1396 1397 1398 1399
/* Network device open function for Ethernet AVB */
static int ravb_open(struct net_device *ndev)
{
	struct ravb_private *priv = netdev_priv(ndev);
1400
	const struct ravb_hw_info *info = priv->info;
1401 1402
	struct platform_device *pdev = priv->pdev;
	struct device *dev = &pdev->dev;
1403 1404 1405 1406 1407
	int error;

	napi_enable(&priv->napi[RAVB_BE]);
	napi_enable(&priv->napi[RAVB_NC]);

1408
	if (!info->multi_irqs) {
1409 1410
		error = request_irq(ndev->irq, ravb_interrupt, IRQF_SHARED,
				    ndev->name, ndev);
1411 1412
		if (error) {
			netdev_err(ndev, "cannot request IRQ\n");
1413
			goto out_napi_off;
1414
		}
1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439
	} else {
		error = ravb_hook_irq(ndev->irq, ravb_multi_interrupt, ndev,
				      dev, "ch22:multi");
		if (error)
			goto out_napi_off;
		error = ravb_hook_irq(priv->emac_irq, ravb_emac_interrupt, ndev,
				      dev, "ch24:emac");
		if (error)
			goto out_free_irq;
		error = ravb_hook_irq(priv->rx_irqs[RAVB_BE], ravb_be_interrupt,
				      ndev, dev, "ch0:rx_be");
		if (error)
			goto out_free_irq_emac;
		error = ravb_hook_irq(priv->tx_irqs[RAVB_BE], ravb_be_interrupt,
				      ndev, dev, "ch18:tx_be");
		if (error)
			goto out_free_irq_be_rx;
		error = ravb_hook_irq(priv->rx_irqs[RAVB_NC], ravb_nc_interrupt,
				      ndev, dev, "ch1:rx_nc");
		if (error)
			goto out_free_irq_be_tx;
		error = ravb_hook_irq(priv->tx_irqs[RAVB_NC], ravb_nc_interrupt,
				      ndev, dev, "ch19:tx_nc");
		if (error)
			goto out_free_irq_nc_rx;
1440 1441
	}

1442 1443 1444
	/* Device init */
	error = ravb_dmac_init(ndev);
	if (error)
1445
		goto out_free_irq_nc_tx;
1446 1447
	ravb_emac_init(ndev);

1448
	/* Initialise PTP Clock driver */
1449
	if (info->no_ptp_cfg_active)
1450
		ravb_ptp_init(ndev, priv->pdev);
1451

1452 1453 1454 1455 1456
	netif_tx_start_all_queues(ndev);

	/* PHY control start */
	error = ravb_phy_start(ndev);
	if (error)
1457
		goto out_ptp_stop;
1458 1459 1460

	return 0;

1461 1462
out_ptp_stop:
	/* Stop PTP Clock driver */
1463
	if (info->no_ptp_cfg_active)
1464
		ravb_ptp_stop(ndev);
1465
out_free_irq_nc_tx:
1466
	if (!info->multi_irqs)
1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
		goto out_free_irq;
	free_irq(priv->tx_irqs[RAVB_NC], ndev);
out_free_irq_nc_rx:
	free_irq(priv->rx_irqs[RAVB_NC], ndev);
out_free_irq_be_tx:
	free_irq(priv->tx_irqs[RAVB_BE], ndev);
out_free_irq_be_rx:
	free_irq(priv->rx_irqs[RAVB_BE], ndev);
out_free_irq_emac:
	free_irq(priv->emac_irq, ndev);
1477 1478 1479 1480 1481 1482 1483 1484 1485
out_free_irq:
	free_irq(ndev->irq, ndev);
out_napi_off:
	napi_disable(&priv->napi[RAVB_NC]);
	napi_disable(&priv->napi[RAVB_BE]);
	return error;
}

/* Timeout function for Ethernet AVB */
1486
static void ravb_tx_timeout(struct net_device *ndev, unsigned int txqueue)
1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503
{
	struct ravb_private *priv = netdev_priv(ndev);

	netif_err(priv, tx_err, ndev,
		  "transmit timed out, status %08x, resetting...\n",
		  ravb_read(ndev, ISS));

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

	schedule_work(&priv->work);
}

static void ravb_tx_timeout_work(struct work_struct *work)
{
	struct ravb_private *priv = container_of(work, struct ravb_private,
						 work);
1504
	const struct ravb_hw_info *info = priv->info;
1505
	struct net_device *ndev = priv->ndev;
1506
	int error;
1507 1508 1509

	netif_tx_stop_all_queues(ndev);

1510
	/* Stop PTP Clock driver */
1511
	if (info->no_ptp_cfg_active)
1512
		ravb_ptp_stop(ndev);
1513

1514
	/* Wait for DMA stopping */
1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526
	if (ravb_stop_dma(ndev)) {
		/* If ravb_stop_dma() fails, the hardware is still operating
		 * for TX and/or RX. So, this should not call the following
		 * functions because ravb_dmac_init() is possible to fail too.
		 * Also, this should not retry ravb_stop_dma() again and again
		 * here because it's possible to wait forever. So, this just
		 * re-enables the TX and RX and skip the following
		 * re-initialization procedure.
		 */
		ravb_rcv_snd_enable(ndev);
		goto out;
	}
1527 1528 1529 1530 1531

	ravb_ring_free(ndev, RAVB_BE);
	ravb_ring_free(ndev, RAVB_NC);

	/* Device init */
1532 1533 1534 1535 1536 1537 1538 1539 1540 1541
	error = ravb_dmac_init(ndev);
	if (error) {
		/* If ravb_dmac_init() fails, descriptors are freed. So, this
		 * should return here to avoid re-enabling the TX and RX in
		 * ravb_emac_init().
		 */
		netdev_err(ndev, "%s: ravb_dmac_init() failed, error %d\n",
			   __func__, error);
		return;
	}
1542 1543
	ravb_emac_init(ndev);

1544
out:
1545
	/* Initialise PTP Clock driver */
1546
	if (info->no_ptp_cfg_active)
1547
		ravb_ptp_init(ndev, priv->pdev);
1548

1549 1550 1551 1552 1553 1554 1555
	netif_tx_start_all_queues(ndev);
}

/* Packet transmit function for Ethernet AVB */
static netdev_tx_t ravb_start_xmit(struct sk_buff *skb, struct net_device *ndev)
{
	struct ravb_private *priv = netdev_priv(ndev);
1556
	unsigned int num_tx_desc = priv->num_tx_desc;
1557
	u16 q = skb_get_queue_mapping(skb);
1558
	struct ravb_tstamp_skb *ts_skb;
1559 1560 1561 1562 1563
	struct ravb_tx_desc *desc;
	unsigned long flags;
	u32 dma_addr;
	void *buffer;
	u32 entry;
S
Sergei Shtylyov 已提交
1564
	u32 len;
1565 1566

	spin_lock_irqsave(&priv->lock, flags);
S
Sergei Shtylyov 已提交
1567
	if (priv->cur_tx[q] - priv->dirty_tx[q] > (priv->num_tx_ring[q] - 1) *
1568
	    num_tx_desc) {
1569 1570 1571 1572 1573 1574 1575 1576
		netif_err(priv, tx_queued, ndev,
			  "still transmitting with the full ring!\n");
		netif_stop_subqueue(ndev, q);
		spin_unlock_irqrestore(&priv->lock, flags);
		return NETDEV_TX_BUSY;
	}

	if (skb_put_padto(skb, ETH_ZLEN))
1577 1578
		goto exit;

1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600
	entry = priv->cur_tx[q] % (priv->num_tx_ring[q] * num_tx_desc);
	priv->tx_skb[q][entry / num_tx_desc] = skb;

	if (num_tx_desc > 1) {
		buffer = PTR_ALIGN(priv->tx_align[q], DPTR_ALIGN) +
			 entry / num_tx_desc * DPTR_ALIGN;
		len = PTR_ALIGN(skb->data, DPTR_ALIGN) - skb->data;

		/* Zero length DMA descriptors are problematic as they seem
		 * to terminate DMA transfers. Avoid them by simply using a
		 * length of DPTR_ALIGN (4) when skb data is aligned to
		 * DPTR_ALIGN.
		 *
		 * As skb is guaranteed to have at least ETH_ZLEN (60)
		 * bytes of data by the call to skb_put_padto() above this
		 * is safe with respect to both the length of the first DMA
		 * descriptor (len) overflowing the available data and the
		 * length of the second DMA descriptor (skb->len - len)
		 * being negative.
		 */
		if (len == 0)
			len = DPTR_ALIGN;
1601

1602 1603 1604 1605 1606
		memcpy(buffer, skb->data, len);
		dma_addr = dma_map_single(ndev->dev.parent, buffer, len,
					  DMA_TO_DEVICE);
		if (dma_mapping_error(ndev->dev.parent, dma_addr))
			goto drop;
S
Sergei Shtylyov 已提交
1607

1608 1609 1610
		desc = &priv->tx_ring[q][entry];
		desc->ds_tagl = cpu_to_le16(len);
		desc->dptr = cpu_to_le32(dma_addr);
S
Sergei Shtylyov 已提交
1611

1612 1613 1614 1615 1616 1617
		buffer = skb->data + len;
		len = skb->len - len;
		dma_addr = dma_map_single(ndev->dev.parent, buffer, len,
					  DMA_TO_DEVICE);
		if (dma_mapping_error(ndev->dev.parent, dma_addr))
			goto unmap;
S
Sergei Shtylyov 已提交
1618

1619 1620 1621 1622 1623 1624 1625 1626 1627
		desc++;
	} else {
		desc = &priv->tx_ring[q][entry];
		len = skb->len;
		dma_addr = dma_map_single(ndev->dev.parent, skb->data, skb->len,
					  DMA_TO_DEVICE);
		if (dma_mapping_error(ndev->dev.parent, dma_addr))
			goto drop;
	}
S
Sergei Shtylyov 已提交
1628
	desc->ds_tagl = cpu_to_le16(len);
1629 1630 1631 1632 1633 1634
	desc->dptr = cpu_to_le32(dma_addr);

	/* TX timestamp required */
	if (q == RAVB_NC) {
		ts_skb = kmalloc(sizeof(*ts_skb), GFP_ATOMIC);
		if (!ts_skb) {
1635 1636 1637 1638 1639
			if (num_tx_desc > 1) {
				desc--;
				dma_unmap_single(ndev->dev.parent, dma_addr,
						 len, DMA_TO_DEVICE);
			}
S
Sergei Shtylyov 已提交
1640
			goto unmap;
1641
		}
1642
		ts_skb->skb = skb_get(skb);
1643 1644 1645 1646 1647 1648 1649
		ts_skb->tag = priv->ts_skb_tag++;
		priv->ts_skb_tag &= 0x3ff;
		list_add_tail(&ts_skb->list, &priv->ts_skb_list);

		/* TAG and timestamp required flag */
		skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
		desc->tagh_tsr = (ts_skb->tag >> 4) | TX_TSR;
1650
		desc->ds_tagl |= cpu_to_le16(ts_skb->tag << 12);
1651 1652
	}

1653
	skb_tx_timestamp(skb);
1654 1655
	/* Descriptor type must be set after all the above writes */
	dma_wmb();
1656 1657 1658 1659 1660 1661 1662
	if (num_tx_desc > 1) {
		desc->die_dt = DT_FEND;
		desc--;
		desc->die_dt = DT_FSTART;
	} else {
		desc->die_dt = DT_FSINGLE;
	}
1663
	ravb_modify(ndev, TCCR, TCCR_TSRQ0 << q, TCCR_TSRQ0 << q);
1664

1665
	priv->cur_tx[q] += num_tx_desc;
S
Sergei Shtylyov 已提交
1666
	if (priv->cur_tx[q] - priv->dirty_tx[q] >
1667
	    (priv->num_tx_ring[q] - 1) * num_tx_desc &&
1668
	    !ravb_tx_free(ndev, q, true))
1669 1670 1671 1672 1673 1674
		netif_stop_subqueue(ndev, q);

exit:
	spin_unlock_irqrestore(&priv->lock, flags);
	return NETDEV_TX_OK;

S
Sergei Shtylyov 已提交
1675
unmap:
1676
	dma_unmap_single(ndev->dev.parent, le32_to_cpu(desc->dptr),
S
Sergei Shtylyov 已提交
1677
			 le16_to_cpu(desc->ds_tagl), DMA_TO_DEVICE);
1678 1679
drop:
	dev_kfree_skb_any(skb);
1680
	priv->tx_skb[q][entry / num_tx_desc] = NULL;
1681 1682 1683 1684
	goto exit;
}

static u16 ravb_select_queue(struct net_device *ndev, struct sk_buff *skb,
1685
			     struct net_device *sb_dev)
1686 1687 1688 1689 1690 1691 1692 1693 1694 1695
{
	/* If skb needs TX timestamp, it is handled in network control queue */
	return (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) ? RAVB_NC :
							       RAVB_BE;

}

static struct net_device_stats *ravb_get_stats(struct net_device *ndev)
{
	struct ravb_private *priv = netdev_priv(ndev);
1696
	const struct ravb_hw_info *info = priv->info;
1697 1698 1699 1700 1701 1702
	struct net_device_stats *nstats, *stats0, *stats1;

	nstats = &ndev->stats;
	stats0 = &priv->stats[RAVB_BE];
	stats1 = &priv->stats[RAVB_NC];

1703
	if (info->tx_counters) {
1704 1705 1706
		nstats->tx_dropped += ravb_read(ndev, TROCR);
		ravb_write(ndev, 0, TROCR);	/* (write clear) */
	}
1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733

	nstats->rx_packets = stats0->rx_packets + stats1->rx_packets;
	nstats->tx_packets = stats0->tx_packets + stats1->tx_packets;
	nstats->rx_bytes = stats0->rx_bytes + stats1->rx_bytes;
	nstats->tx_bytes = stats0->tx_bytes + stats1->tx_bytes;
	nstats->multicast = stats0->multicast + stats1->multicast;
	nstats->rx_errors = stats0->rx_errors + stats1->rx_errors;
	nstats->rx_crc_errors = stats0->rx_crc_errors + stats1->rx_crc_errors;
	nstats->rx_frame_errors =
		stats0->rx_frame_errors + stats1->rx_frame_errors;
	nstats->rx_length_errors =
		stats0->rx_length_errors + stats1->rx_length_errors;
	nstats->rx_missed_errors =
		stats0->rx_missed_errors + stats1->rx_missed_errors;
	nstats->rx_over_errors =
		stats0->rx_over_errors + stats1->rx_over_errors;

	return nstats;
}

/* Update promiscuous bit */
static void ravb_set_rx_mode(struct net_device *ndev)
{
	struct ravb_private *priv = netdev_priv(ndev);
	unsigned long flags;

	spin_lock_irqsave(&priv->lock, flags);
1734 1735
	ravb_modify(ndev, ECMR, ECMR_PRM,
		    ndev->flags & IFF_PROMISC ? ECMR_PRM : 0);
1736 1737 1738 1739 1740 1741
	spin_unlock_irqrestore(&priv->lock, flags);
}

/* Device close function for Ethernet AVB */
static int ravb_close(struct net_device *ndev)
{
1742
	struct device_node *np = ndev->dev.parent->of_node;
1743
	struct ravb_private *priv = netdev_priv(ndev);
1744
	const struct ravb_hw_info *info = priv->info;
1745 1746 1747 1748 1749 1750 1751 1752 1753
	struct ravb_tstamp_skb *ts_skb, *ts_skb2;

	netif_tx_stop_all_queues(ndev);

	/* Disable interrupts by clearing the interrupt masks. */
	ravb_write(ndev, 0, RIC0);
	ravb_write(ndev, 0, RIC2);
	ravb_write(ndev, 0, TIC);

1754
	/* Stop PTP Clock driver */
1755
	if (info->no_ptp_cfg_active)
1756
		ravb_ptp_stop(ndev);
1757

1758 1759 1760 1761 1762 1763 1764 1765
	/* Set the config mode to stop the AVB-DMAC's processes */
	if (ravb_stop_dma(ndev) < 0)
		netdev_err(ndev,
			   "device will be stopped after h/w processes are done.\n");

	/* Clear the timestamp list */
	list_for_each_entry_safe(ts_skb, ts_skb2, &priv->ts_skb_list, list) {
		list_del(&ts_skb->list);
1766
		kfree_skb(ts_skb->skb);
1767 1768 1769 1770
		kfree(ts_skb);
	}

	/* PHY disconnect */
1771 1772 1773
	if (ndev->phydev) {
		phy_stop(ndev->phydev);
		phy_disconnect(ndev->phydev);
1774 1775
		if (of_phy_is_fixed_link(np))
			of_phy_deregister_fixed_link(np);
1776 1777
	}

1778
	if (info->multi_irqs) {
1779 1780 1781 1782
		free_irq(priv->tx_irqs[RAVB_NC], ndev);
		free_irq(priv->rx_irqs[RAVB_NC], ndev);
		free_irq(priv->tx_irqs[RAVB_BE], ndev);
		free_irq(priv->rx_irqs[RAVB_BE], ndev);
1783
		free_irq(priv->emac_irq, ndev);
1784
	}
1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804
	free_irq(ndev->irq, ndev);

	napi_disable(&priv->napi[RAVB_NC]);
	napi_disable(&priv->napi[RAVB_BE]);

	/* Free all the skb's in the RX queue and the DMA buffers. */
	ravb_ring_free(ndev, RAVB_BE);
	ravb_ring_free(ndev, RAVB_NC);

	return 0;
}

static int ravb_hwtstamp_get(struct net_device *ndev, struct ifreq *req)
{
	struct ravb_private *priv = netdev_priv(ndev);
	struct hwtstamp_config config;

	config.flags = 0;
	config.tx_type = priv->tstamp_tx_ctrl ? HWTSTAMP_TX_ON :
						HWTSTAMP_TX_OFF;
1805 1806
	switch (priv->tstamp_rx_ctrl & RAVB_RXTSTAMP_TYPE) {
	case RAVB_RXTSTAMP_TYPE_V2_L2_EVENT:
1807
		config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L2_EVENT;
1808 1809
		break;
	case RAVB_RXTSTAMP_TYPE_ALL:
1810
		config.rx_filter = HWTSTAMP_FILTER_ALL;
1811 1812
		break;
	default:
1813
		config.rx_filter = HWTSTAMP_FILTER_NONE;
1814
	}
1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867

	return copy_to_user(req->ifr_data, &config, sizeof(config)) ?
		-EFAULT : 0;
}

/* Control hardware time stamping */
static int ravb_hwtstamp_set(struct net_device *ndev, struct ifreq *req)
{
	struct ravb_private *priv = netdev_priv(ndev);
	struct hwtstamp_config config;
	u32 tstamp_rx_ctrl = RAVB_RXTSTAMP_ENABLED;
	u32 tstamp_tx_ctrl;

	if (copy_from_user(&config, req->ifr_data, sizeof(config)))
		return -EFAULT;

	/* Reserved for future extensions */
	if (config.flags)
		return -EINVAL;

	switch (config.tx_type) {
	case HWTSTAMP_TX_OFF:
		tstamp_tx_ctrl = 0;
		break;
	case HWTSTAMP_TX_ON:
		tstamp_tx_ctrl = RAVB_TXTSTAMP_ENABLED;
		break;
	default:
		return -ERANGE;
	}

	switch (config.rx_filter) {
	case HWTSTAMP_FILTER_NONE:
		tstamp_rx_ctrl = 0;
		break;
	case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
		tstamp_rx_ctrl |= RAVB_RXTSTAMP_TYPE_V2_L2_EVENT;
		break;
	default:
		config.rx_filter = HWTSTAMP_FILTER_ALL;
		tstamp_rx_ctrl |= RAVB_RXTSTAMP_TYPE_ALL;
	}

	priv->tstamp_tx_ctrl = tstamp_tx_ctrl;
	priv->tstamp_rx_ctrl = tstamp_rx_ctrl;

	return copy_to_user(req->ifr_data, &config, sizeof(config)) ?
		-EFAULT : 0;
}

/* ioctl to device function */
static int ravb_do_ioctl(struct net_device *ndev, struct ifreq *req, int cmd)
{
1868
	struct phy_device *phydev = ndev->phydev;
1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885

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

	if (!phydev)
		return -ENODEV;

	switch (cmd) {
	case SIOCGHWTSTAMP:
		return ravb_hwtstamp_get(ndev, req);
	case SIOCSHWTSTAMP:
		return ravb_hwtstamp_set(ndev, req);
	}

	return phy_mii_ioctl(phydev, req, cmd);
}

1886 1887
static int ravb_change_mtu(struct net_device *ndev, int new_mtu)
{
1888
	struct ravb_private *priv = netdev_priv(ndev);
1889 1890

	ndev->mtu = new_mtu;
1891 1892 1893 1894 1895 1896

	if (netif_running(ndev)) {
		synchronize_irq(priv->emac_irq);
		ravb_emac_init(ndev);
	}

1897 1898 1899 1900 1901
	netdev_update_features(ndev);

	return 0;
}

S
Simon Horman 已提交
1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920
static void ravb_set_rx_csum(struct net_device *ndev, bool enable)
{
	struct ravb_private *priv = netdev_priv(ndev);
	unsigned long flags;

	spin_lock_irqsave(&priv->lock, flags);

	/* Disable TX and RX */
	ravb_rcv_snd_disable(ndev);

	/* Modify RX Checksum setting */
	ravb_modify(ndev, ECMR, ECMR_RCSC, enable ? ECMR_RCSC : 0);

	/* Enable TX and RX */
	ravb_rcv_snd_enable(ndev);

	spin_unlock_irqrestore(&priv->lock, flags);
}

1921 1922
static int ravb_set_features_rcar(struct net_device *ndev,
				  netdev_features_t features)
S
Simon Horman 已提交
1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933
{
	netdev_features_t changed = ndev->features ^ features;

	if (changed & NETIF_F_RXCSUM)
		ravb_set_rx_csum(ndev, features & NETIF_F_RXCSUM);

	ndev->features = features;

	return 0;
}

B
Biju Das 已提交
1934 1935 1936 1937 1938 1939
static int ravb_set_features(struct net_device *ndev,
			     netdev_features_t features)
{
	struct ravb_private *priv = netdev_priv(ndev);
	const struct ravb_hw_info *info = priv->info;

1940
	return info->set_feature(ndev, features);
B
Biju Das 已提交
1941 1942
}

1943 1944 1945 1946 1947 1948 1949 1950
static const struct net_device_ops ravb_netdev_ops = {
	.ndo_open		= ravb_open,
	.ndo_stop		= ravb_close,
	.ndo_start_xmit		= ravb_start_xmit,
	.ndo_select_queue	= ravb_select_queue,
	.ndo_get_stats		= ravb_get_stats,
	.ndo_set_rx_mode	= ravb_set_rx_mode,
	.ndo_tx_timeout		= ravb_tx_timeout,
1951
	.ndo_eth_ioctl		= ravb_do_ioctl,
1952
	.ndo_change_mtu		= ravb_change_mtu,
1953 1954
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_set_mac_address	= eth_mac_addr,
S
Simon Horman 已提交
1955
	.ndo_set_features	= ravb_set_features,
1956 1957
};

1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002
/* MDIO bus init function */
static int ravb_mdio_init(struct ravb_private *priv)
{
	struct platform_device *pdev = priv->pdev;
	struct device *dev = &pdev->dev;
	int error;

	/* Bitbang init */
	priv->mdiobb.ops = &bb_ops;

	/* MII controller setting */
	priv->mii_bus = alloc_mdio_bitbang(&priv->mdiobb);
	if (!priv->mii_bus)
		return -ENOMEM;

	/* Hook up MII support for ethtool */
	priv->mii_bus->name = "ravb_mii";
	priv->mii_bus->parent = dev;
	snprintf(priv->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
		 pdev->name, pdev->id);

	/* Register MDIO bus */
	error = of_mdiobus_register(priv->mii_bus, dev->of_node);
	if (error)
		goto out_free_bus;

	return 0;

out_free_bus:
	free_mdio_bitbang(priv->mii_bus);
	return error;
}

/* MDIO bus release function */
static int ravb_mdio_release(struct ravb_private *priv)
{
	/* Unregister mdio bus */
	mdiobus_unregister(priv->mii_bus);

	/* Free bitbang info */
	free_mdio_bitbang(priv->mii_bus);

	return 0;
}

2003
static const struct ravb_hw_info ravb_gen3_hw_info = {
2004
	.rx_ring_free = ravb_rx_ring_free,
2005
	.rx_ring_format = ravb_rx_ring_format,
2006
	.alloc_rx_desc = ravb_alloc_rx_desc,
B
Biju Das 已提交
2007
	.receive = ravb_rcar_rx,
2008
	.set_rate = ravb_set_rate,
2009
	.set_feature = ravb_set_features_rcar,
2010
	.dmac_init = ravb_rcar_dmac_init,
2011
	.emac_init = ravb_rcar_emac_init,
2012 2013
	.gstrings_stats = ravb_gstrings_stats,
	.gstrings_size = sizeof(ravb_gstrings_stats),
2014 2015
	.net_hw_features = NETIF_F_RXCSUM,
	.net_features = NETIF_F_RXCSUM,
2016
	.stats_len = ARRAY_SIZE(ravb_gstrings_stats),
2017
	.max_rx_len = RX_BUF_SZ + RAVB_ALIGN - 1,
2018
	.internal_delay = 1,
2019
	.tx_counters = 1,
2020
	.multi_irqs = 1,
2021
	.ptp_cfg_active = 1,
2022 2023 2024
};

static const struct ravb_hw_info ravb_gen2_hw_info = {
2025
	.rx_ring_free = ravb_rx_ring_free,
2026
	.rx_ring_format = ravb_rx_ring_format,
2027
	.alloc_rx_desc = ravb_alloc_rx_desc,
B
Biju Das 已提交
2028
	.receive = ravb_rcar_rx,
2029
	.set_rate = ravb_set_rate,
2030
	.set_feature = ravb_set_features_rcar,
2031
	.dmac_init = ravb_rcar_dmac_init,
2032
	.emac_init = ravb_rcar_emac_init,
2033 2034
	.gstrings_stats = ravb_gstrings_stats,
	.gstrings_size = sizeof(ravb_gstrings_stats),
2035 2036
	.net_hw_features = NETIF_F_RXCSUM,
	.net_features = NETIF_F_RXCSUM,
2037
	.stats_len = ARRAY_SIZE(ravb_gstrings_stats),
2038
	.max_rx_len = RX_BUF_SZ + RAVB_ALIGN - 1,
2039
	.aligned_tx = 1,
2040
	.no_ptp_cfg_active = 1,
2041 2042
};

2043
static const struct of_device_id ravb_match_table[] = {
2044 2045 2046 2047 2048
	{ .compatible = "renesas,etheravb-r8a7790", .data = &ravb_gen2_hw_info },
	{ .compatible = "renesas,etheravb-r8a7794", .data = &ravb_gen2_hw_info },
	{ .compatible = "renesas,etheravb-rcar-gen2", .data = &ravb_gen2_hw_info },
	{ .compatible = "renesas,etheravb-r8a7795", .data = &ravb_gen3_hw_info },
	{ .compatible = "renesas,etheravb-rcar-gen3", .data = &ravb_gen3_hw_info },
2049 2050 2051 2052
	{ }
};
MODULE_DEVICE_TABLE(of, ravb_match_table);

2053 2054
static int ravb_set_gti(struct net_device *ndev)
{
2055
	struct ravb_private *priv = netdev_priv(ndev);
2056 2057 2058 2059
	struct device *dev = ndev->dev.parent;
	unsigned long rate;
	uint64_t inc;

2060
	rate = clk_get_rate(priv->clk);
2061 2062 2063
	if (!rate)
		return -EINVAL;

2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077
	inc = 1000000000ULL << 20;
	do_div(inc, rate);

	if (inc < GTI_TIV_MIN || inc > GTI_TIV_MAX) {
		dev_err(dev, "gti.tiv increment 0x%llx is outside the range 0x%x - 0x%x\n",
			inc, GTI_TIV_MIN, GTI_TIV_MAX);
		return -EINVAL;
	}

	ravb_write(ndev, inc, GTI);

	return 0;
}

2078 2079 2080
static void ravb_set_config_mode(struct net_device *ndev)
{
	struct ravb_private *priv = netdev_priv(ndev);
2081
	const struct ravb_hw_info *info = priv->info;
2082

2083
	if (info->no_ptp_cfg_active) {
2084 2085 2086 2087 2088 2089 2090 2091 2092
		ravb_modify(ndev, CCC, CCC_OPC, CCC_OPC_CONFIG);
		/* Set CSEL value */
		ravb_modify(ndev, CCC, CCC_CSEL, CCC_CSEL_HPB);
	} else {
		ravb_modify(ndev, CCC, CCC_OPC, CCC_OPC_CONFIG |
			    CCC_GAC | CCC_CSEL_HPB);
	}
}

2093
/* Set tx and rx clock internal delay modes */
2094
static void ravb_parse_delay_mode(struct device_node *np, struct net_device *ndev)
2095 2096
{
	struct ravb_private *priv = netdev_priv(ndev);
2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109
	bool explicit_delay = false;
	u32 delay;

	if (!of_property_read_u32(np, "rx-internal-delay-ps", &delay)) {
		/* Valid values are 0 and 1800, according to DT bindings */
		priv->rxcidm = !!delay;
		explicit_delay = true;
	}
	if (!of_property_read_u32(np, "tx-internal-delay-ps", &delay)) {
		/* Valid values are 0 and 2000, according to DT bindings */
		priv->txcidm = !!delay;
		explicit_delay = true;
	}
2110

2111 2112 2113 2114
	if (explicit_delay)
		return;

	/* Fall back to legacy rgmii-*id behavior */
2115
	if (priv->phy_interface == PHY_INTERFACE_MODE_RGMII_ID ||
2116
	    priv->phy_interface == PHY_INTERFACE_MODE_RGMII_RXID) {
2117
		priv->rxcidm = 1;
2118 2119
		priv->rgmii_override = 1;
	}
2120 2121

	if (priv->phy_interface == PHY_INTERFACE_MODE_RGMII_ID ||
2122
	    priv->phy_interface == PHY_INTERFACE_MODE_RGMII_TXID) {
2123 2124
		priv->txcidm = 1;
		priv->rgmii_override = 1;
2125
	}
2126 2127 2128 2129 2130 2131
}

static void ravb_set_delay_mode(struct net_device *ndev)
{
	struct ravb_private *priv = netdev_priv(ndev);
	u32 set = 0;
2132

2133
	if (priv->rxcidm)
S
Sergey Shtylyov 已提交
2134
		set |= APSR_RDM;
2135
	if (priv->txcidm)
S
Sergey Shtylyov 已提交
2136 2137
		set |= APSR_TDM;
	ravb_modify(ndev, APSR, APSR_RDM | APSR_TDM, set);
2138 2139
}

2140 2141 2142
static int ravb_probe(struct platform_device *pdev)
{
	struct device_node *np = pdev->dev.of_node;
2143
	const struct ravb_hw_info *info;
B
Biju Das 已提交
2144
	struct reset_control *rstc;
2145 2146 2147 2148
	struct ravb_private *priv;
	struct net_device *ndev;
	int error, irq, q;
	struct resource *res;
2149
	int i;
2150 2151 2152 2153 2154 2155 2156

	if (!np) {
		dev_err(&pdev->dev,
			"this driver is required to be instantiated from device tree\n");
		return -EINVAL;
	}

B
Biju Das 已提交
2157 2158 2159 2160 2161
	rstc = devm_reset_control_get_optional_exclusive(&pdev->dev, NULL);
	if (IS_ERR(rstc))
		return dev_err_probe(&pdev->dev, PTR_ERR(rstc),
				     "failed to get cpg reset\n");

2162 2163 2164 2165 2166
	ndev = alloc_etherdev_mqs(sizeof(struct ravb_private),
				  NUM_TX_QUEUE, NUM_RX_QUEUE);
	if (!ndev)
		return -ENOMEM;

2167 2168 2169 2170
	info = of_device_get_match_data(&pdev->dev);

	ndev->features = info->net_features;
	ndev->hw_features = info->net_hw_features;
S
Simon Horman 已提交
2171

B
Biju Das 已提交
2172
	reset_control_deassert(rstc);
2173 2174 2175
	pm_runtime_enable(&pdev->dev);
	pm_runtime_get_sync(&pdev->dev);

2176
	if (info->multi_irqs)
2177 2178 2179
		irq = platform_get_irq_byname(pdev, "ch22");
	else
		irq = platform_get_irq(pdev, 0);
2180
	if (irq < 0) {
2181
		error = irq;
2182 2183 2184 2185 2186 2187 2188
		goto out_release;
	}
	ndev->irq = irq;

	SET_NETDEV_DEV(ndev, &pdev->dev);

	priv = netdev_priv(ndev);
2189
	priv->info = info;
B
Biju Das 已提交
2190
	priv->rstc = rstc;
2191 2192 2193 2194 2195 2196
	priv->ndev = ndev;
	priv->pdev = pdev;
	priv->num_tx_ring[RAVB_BE] = BE_TX_RING_SIZE;
	priv->num_rx_ring[RAVB_BE] = BE_RX_RING_SIZE;
	priv->num_tx_ring[RAVB_NC] = NC_TX_RING_SIZE;
	priv->num_rx_ring[RAVB_NC] = NC_RX_RING_SIZE;
2197
	priv->addr = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
2198 2199 2200 2201 2202
	if (IS_ERR(priv->addr)) {
		error = PTR_ERR(priv->addr);
		goto out_release;
	}

2203 2204 2205
	/* The Ether-specific entries in the device structure. */
	ndev->base_addr = res->start;

2206 2207 2208
	spin_lock_init(&priv->lock);
	INIT_WORK(&priv->work, ravb_tx_timeout_work);

2209 2210 2211
	error = of_get_phy_mode(np, &priv->phy_interface);
	if (error && error != -ENODEV)
		goto out_release;
2212 2213 2214 2215 2216

	priv->no_avb_link = of_property_read_bool(np, "renesas,no-ether-link");
	priv->avb_link_active_low =
		of_property_read_bool(np, "renesas,ether-link-active-low");

2217
	if (info->multi_irqs) {
2218 2219 2220 2221 2222 2223
		irq = platform_get_irq_byname(pdev, "ch24");
		if (irq < 0) {
			error = irq;
			goto out_release;
		}
		priv->emac_irq = irq;
2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239
		for (i = 0; i < NUM_RX_QUEUE; i++) {
			irq = platform_get_irq_byname(pdev, ravb_rx_irqs[i]);
			if (irq < 0) {
				error = irq;
				goto out_release;
			}
			priv->rx_irqs[i] = irq;
		}
		for (i = 0; i < NUM_TX_QUEUE; i++) {
			irq = platform_get_irq_byname(pdev, ravb_tx_irqs[i]);
			if (irq < 0) {
				error = irq;
				goto out_release;
			}
			priv->tx_irqs[i] = irq;
		}
2240 2241
	}

2242
	priv->clk = devm_clk_get(&pdev->dev, NULL);
2243 2244 2245 2246
	if (IS_ERR(priv->clk)) {
		error = PTR_ERR(priv->clk);
		goto out_release;
	}
2247

2248 2249 2250 2251 2252 2253 2254
	priv->refclk = devm_clk_get_optional(&pdev->dev, "refclk");
	if (IS_ERR(priv->refclk)) {
		error = PTR_ERR(priv->refclk);
		goto out_release;
	}
	clk_prepare_enable(priv->refclk);

2255 2256 2257
	ndev->max_mtu = 2048 - (ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN);
	ndev->min_mtu = ETH_MIN_MTU;

2258 2259 2260 2261 2262 2263
	/* FIXME: R-Car Gen2 has 4byte alignment restriction for tx buffer
	 * Use two descriptor to handle such situation. First descriptor to
	 * handle aligned data buffer and second descriptor to handle the
	 * overflow data because of alignment.
	 */
	priv->num_tx_desc = info->aligned_tx ? 2 : 1;
2264

2265 2266 2267 2268 2269
	/* Set function */
	ndev->netdev_ops = &ravb_netdev_ops;
	ndev->ethtool_ops = &ravb_ethtool_ops;

	/* Set AVB config mode */
2270
	ravb_set_config_mode(ndev);
2271 2272

	/* Set GTI value */
2273 2274
	error = ravb_set_gti(ndev);
	if (error)
2275
		goto out_disable_refclk;
2276 2277

	/* Request GTI loading */
2278
	ravb_modify(ndev, GCCR, GCCR_LTI, GCCR_LTI);
2279

2280
	if (info->internal_delay) {
2281
		ravb_parse_delay_mode(np, ndev);
2282
		ravb_set_delay_mode(ndev);
2283
	}
2284

2285 2286
	/* Allocate descriptor base address table */
	priv->desc_bat_size = sizeof(struct ravb_desc) * DBAT_ENTRY_NUM;
2287
	priv->desc_bat = dma_alloc_coherent(ndev->dev.parent, priv->desc_bat_size,
2288 2289
					    &priv->desc_bat_dma, GFP_KERNEL);
	if (!priv->desc_bat) {
2290
		dev_err(&pdev->dev,
2291 2292 2293
			"Cannot allocate desc base address table (size %d bytes)\n",
			priv->desc_bat_size);
		error = -ENOMEM;
2294
		goto out_disable_refclk;
2295 2296 2297 2298 2299 2300 2301 2302
	}
	for (q = RAVB_BE; q < DBAT_ENTRY_NUM; q++)
		priv->desc_bat[q].die_dt = DT_EOS;
	ravb_write(ndev, priv->desc_bat_dma, DBAT);

	/* Initialise HW timestamp list */
	INIT_LIST_HEAD(&priv->ts_skb_list);

2303
	/* Initialise PTP Clock driver */
2304
	if (info->ptp_cfg_active)
2305 2306
		ravb_ptp_init(ndev, pdev);

2307 2308 2309 2310
	/* Debug message level */
	priv->msg_enable = RAVB_DEF_MSG_ENABLE;

	/* Read and set MAC address */
2311
	ravb_read_mac_address(np, ndev);
2312 2313 2314 2315 2316 2317
	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);
	}

2318 2319 2320 2321 2322 2323 2324
	/* MDIO bus init */
	error = ravb_mdio_init(priv);
	if (error) {
		dev_err(&pdev->dev, "failed to initialize MDIO\n");
		goto out_dma_free;
	}

2325 2326 2327 2328 2329 2330 2331 2332
	netif_napi_add(ndev, &priv->napi[RAVB_BE], ravb_poll, 64);
	netif_napi_add(ndev, &priv->napi[RAVB_NC], ravb_poll, 64);

	/* Network device register */
	error = register_netdev(ndev);
	if (error)
		goto out_napi_del;

2333
	device_set_wakeup_capable(&pdev->dev, 1);
2334

2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345
	/* Print device information */
	netdev_info(ndev, "Base address at %#x, %pM, IRQ %d.\n",
		    (u32)ndev->base_addr, ndev->dev_addr, ndev->irq);

	platform_set_drvdata(pdev, ndev);

	return 0;

out_napi_del:
	netif_napi_del(&priv->napi[RAVB_NC]);
	netif_napi_del(&priv->napi[RAVB_BE]);
2346 2347
	ravb_mdio_release(priv);
out_dma_free:
2348
	dma_free_coherent(ndev->dev.parent, priv->desc_bat_size, priv->desc_bat,
2349
			  priv->desc_bat_dma);
2350 2351

	/* Stop PTP Clock driver */
2352
	if (info->ptp_cfg_active)
2353
		ravb_ptp_stop(ndev);
2354
out_disable_refclk:
2355
	clk_disable_unprepare(priv->refclk);
2356
out_release:
2357
	free_netdev(ndev);
2358 2359 2360

	pm_runtime_put(&pdev->dev);
	pm_runtime_disable(&pdev->dev);
B
Biju Das 已提交
2361
	reset_control_assert(rstc);
2362 2363 2364 2365 2366 2367 2368
	return error;
}

static int ravb_remove(struct platform_device *pdev)
{
	struct net_device *ndev = platform_get_drvdata(pdev);
	struct ravb_private *priv = netdev_priv(ndev);
2369
	const struct ravb_hw_info *info = priv->info;
2370

2371
	/* Stop PTP Clock driver */
2372
	if (info->ptp_cfg_active)
2373 2374
		ravb_ptp_stop(ndev);

2375 2376
	clk_disable_unprepare(priv->refclk);

2377
	dma_free_coherent(ndev->dev.parent, priv->desc_bat_size, priv->desc_bat,
2378 2379 2380 2381 2382 2383 2384
			  priv->desc_bat_dma);
	/* Set reset mode */
	ravb_write(ndev, CCC_OPC_RESET, CCC);
	pm_runtime_put_sync(&pdev->dev);
	unregister_netdev(ndev);
	netif_napi_del(&priv->napi[RAVB_NC]);
	netif_napi_del(&priv->napi[RAVB_BE]);
2385
	ravb_mdio_release(priv);
2386
	pm_runtime_disable(&pdev->dev);
B
Biju Das 已提交
2387
	reset_control_assert(priv->rstc);
2388 2389 2390 2391 2392 2393
	free_netdev(ndev);
	platform_set_drvdata(pdev, NULL);

	return 0;
}

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
static int ravb_wol_setup(struct net_device *ndev)
{
	struct ravb_private *priv = netdev_priv(ndev);

	/* Disable interrupts by clearing the interrupt masks. */
	ravb_write(ndev, 0, RIC0);
	ravb_write(ndev, 0, RIC2);
	ravb_write(ndev, 0, TIC);

	/* Only allow ECI interrupts */
	synchronize_irq(priv->emac_irq);
	napi_disable(&priv->napi[RAVB_NC]);
	napi_disable(&priv->napi[RAVB_BE]);
	ravb_write(ndev, ECSIPR_MPDIP, ECSIPR);

	/* Enable MagicPacket */
	ravb_modify(ndev, ECMR, ECMR_MPDE, ECMR_MPDE);

	return enable_irq_wake(priv->emac_irq);
}

static int ravb_wol_restore(struct net_device *ndev)
{
	struct ravb_private *priv = netdev_priv(ndev);
	int ret;

	napi_enable(&priv->napi[RAVB_NC]);
	napi_enable(&priv->napi[RAVB_BE]);

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

	ret = ravb_close(ndev);
	if (ret < 0)
		return ret;

	return disable_irq_wake(priv->emac_irq);
}

2433
static int __maybe_unused ravb_suspend(struct device *dev)
2434 2435
{
	struct net_device *ndev = dev_get_drvdata(dev);
2436 2437
	struct ravb_private *priv = netdev_priv(ndev);
	int ret;
2438

2439 2440 2441 2442 2443 2444 2445 2446
	if (!netif_running(ndev))
		return 0;

	netif_device_detach(ndev);

	if (priv->wol_enabled)
		ret = ravb_wol_setup(ndev);
	else
2447 2448 2449 2450 2451
		ret = ravb_close(ndev);

	return ret;
}

2452
static int __maybe_unused ravb_resume(struct device *dev)
2453 2454 2455
{
	struct net_device *ndev = dev_get_drvdata(dev);
	struct ravb_private *priv = netdev_priv(ndev);
2456
	const struct ravb_hw_info *info = priv->info;
2457 2458
	int ret = 0;

2459 2460
	/* If WoL is enabled set reset mode to rearm the WoL logic */
	if (priv->wol_enabled)
2461 2462
		ravb_write(ndev, CCC_OPC_RESET, CCC);

2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478
	/* All register have been reset to default values.
	 * Restore all registers which where setup at probe time and
	 * reopen device if it was running before system suspended.
	 */

	/* Set AVB config mode */
	ravb_set_config_mode(ndev);

	/* Set GTI value */
	ret = ravb_set_gti(ndev);
	if (ret)
		return ret;

	/* Request GTI loading */
	ravb_modify(ndev, GCCR, GCCR_LTI, GCCR_LTI);

2479
	if (info->internal_delay)
2480 2481
		ravb_set_delay_mode(ndev);

2482 2483 2484 2485
	/* Restore descriptor base address table */
	ravb_write(ndev, priv->desc_bat_dma, DBAT);

	if (netif_running(ndev)) {
2486 2487 2488 2489 2490
		if (priv->wol_enabled) {
			ret = ravb_wol_restore(ndev);
			if (ret)
				return ret;
		}
2491 2492 2493 2494 2495 2496 2497 2498 2499
		ret = ravb_open(ndev);
		if (ret < 0)
			return ret;
		netif_device_attach(ndev);
	}

	return ret;
}

2500
static int __maybe_unused ravb_runtime_nop(struct device *dev)
2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512
{
	/* Runtime PM callback shared between ->runtime_suspend()
	 * 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;
}

static const struct dev_pm_ops ravb_dev_pm_ops = {
2513
	SET_SYSTEM_SLEEP_PM_OPS(ravb_suspend, ravb_resume)
2514
	SET_RUNTIME_PM_OPS(ravb_runtime_nop, ravb_runtime_nop, NULL)
2515 2516 2517 2518 2519 2520 2521
};

static struct platform_driver ravb_driver = {
	.probe		= ravb_probe,
	.remove		= ravb_remove,
	.driver = {
		.name	= "ravb",
2522
		.pm	= &ravb_dev_pm_ops,
2523 2524 2525 2526 2527 2528 2529 2530 2531
		.of_match_table = ravb_match_table,
	},
};

module_platform_driver(ravb_driver);

MODULE_AUTHOR("Mitsuhiro Kimura, Masaru Nagai");
MODULE_DESCRIPTION("Renesas Ethernet AVB driver");
MODULE_LICENSE("GPL v2");