2018-07-14 19:29:24 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2014-07-11 03:52:13 +08:00
|
|
|
/*
|
|
|
|
* Driver for Marvell PPv2 network controller for Armada 375 SoC.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Marvell
|
|
|
|
*
|
|
|
|
* Marcin Wojtas <mw@semihalf.com>
|
|
|
|
*/
|
|
|
|
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
#include <linux/acpi.h>
|
2014-07-11 03:52:13 +08:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/etherdevice.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/skbuff.h>
|
|
|
|
#include <linux/inetdevice.h>
|
|
|
|
#include <linux/mbus.h>
|
|
|
|
#include <linux/module.h>
|
2017-08-23 01:08:27 +08:00
|
|
|
#include <linux/mfd/syscon.h>
|
2014-07-11 03:52:13 +08:00
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/cpumask.h>
|
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/of_irq.h>
|
|
|
|
#include <linux/of_mdio.h>
|
|
|
|
#include <linux/of_net.h>
|
|
|
|
#include <linux/of_address.h>
|
2017-03-07 23:53:06 +08:00
|
|
|
#include <linux/of_device.h>
|
2014-07-11 03:52:13 +08:00
|
|
|
#include <linux/phy.h>
|
2018-05-17 16:29:31 +08:00
|
|
|
#include <linux/phylink.h>
|
2017-08-30 16:29:15 +08:00
|
|
|
#include <linux/phy/phy.h>
|
2020-09-10 00:26:00 +08:00
|
|
|
#include <linux/ptp_classify.h>
|
2014-07-11 03:52:13 +08:00
|
|
|
#include <linux/clk.h>
|
2015-08-07 01:00:30 +08:00
|
|
|
#include <linux/hrtimer.h>
|
|
|
|
#include <linux/ktime.h>
|
2017-08-23 01:08:27 +08:00
|
|
|
#include <linux/regmap.h>
|
2014-07-11 03:52:13 +08:00
|
|
|
#include <uapi/linux/ppp_defs.h>
|
|
|
|
#include <net/ip.h>
|
|
|
|
#include <net/ipv6.h>
|
2017-08-23 15:46:56 +08:00
|
|
|
#include <net/tso.h>
|
2020-07-02 22:12:42 +08:00
|
|
|
#include <linux/bpf_trace.h>
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
#include "mvpp2.h"
|
|
|
|
#include "mvpp2_prs.h"
|
|
|
|
#include "mvpp2_cls.h"
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
|
2018-03-05 22:16:50 +08:00
|
|
|
enum mvpp2_bm_pool_log_num {
|
|
|
|
MVPP2_BM_SHORT,
|
|
|
|
MVPP2_BM_LONG,
|
2018-03-05 22:16:54 +08:00
|
|
|
MVPP2_BM_JUMBO,
|
2018-03-05 22:16:50 +08:00
|
|
|
MVPP2_BM_POOLS_NUM
|
2014-07-11 03:52:13 +08:00
|
|
|
};
|
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
static struct {
|
|
|
|
int pkt_size;
|
|
|
|
int buf_num;
|
|
|
|
} mvpp2_pools[MVPP2_BM_POOLS_NUM];
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
/* The prototype is added here to be used in start_dev when using ACPI. This
|
|
|
|
* will be removed once phylink is used for all modes (dt+ACPI).
|
|
|
|
*/
|
2020-09-01 21:48:12 +08:00
|
|
|
static void mvpp2_acpi_start(struct mvpp2_port *port);
|
2018-03-07 22:18:04 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
/* Queue modes */
|
|
|
|
#define MVPP2_QDIST_SINGLE_MODE 0
|
|
|
|
#define MVPP2_QDIST_MULTI_MODE 1
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-07-12 19:54:13 +08:00
|
|
|
static int queue_mode = MVPP2_QDIST_MULTI_MODE;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
module_param(queue_mode, int, 0444);
|
|
|
|
MODULE_PARM_DESC(queue_mode, "Set queue_mode (single=0, multi=1)");
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
/* Utility/helper methods */
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
void mvpp2_write(struct mvpp2 *priv, u32 offset, u32 data)
|
|
|
|
{
|
|
|
|
writel(data, priv->swth_base[0] + offset);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
u32 mvpp2_read(struct mvpp2 *priv, u32 offset)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2018-05-31 16:07:43 +08:00
|
|
|
return readl(priv->swth_base[0] + offset);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2018-09-19 17:27:07 +08:00
|
|
|
static u32 mvpp2_read_relaxed(struct mvpp2 *priv, u32 offset)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2018-05-31 16:07:43 +08:00
|
|
|
return readl_relaxed(priv->swth_base[0] + offset);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
2018-09-19 17:27:08 +08:00
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
static inline u32 mvpp2_cpu_to_thread(struct mvpp2 *priv, int cpu)
|
2018-09-19 17:27:08 +08:00
|
|
|
{
|
2018-09-19 17:27:10 +08:00
|
|
|
return cpu % priv->nthreads;
|
2018-09-19 17:27:08 +08:00
|
|
|
}
|
|
|
|
|
2021-02-11 18:48:56 +08:00
|
|
|
static void mvpp2_cm3_write(struct mvpp2 *priv, u32 offset, u32 data)
|
|
|
|
{
|
|
|
|
writel(data, priv->cm3_base + offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
static u32 mvpp2_cm3_read(struct mvpp2 *priv, u32 offset)
|
|
|
|
{
|
|
|
|
return readl(priv->cm3_base + offset);
|
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:41 +08:00
|
|
|
static struct page_pool *
|
2020-07-02 22:12:43 +08:00
|
|
|
mvpp2_create_page_pool(struct device *dev, int num, int len,
|
|
|
|
enum dma_data_direction dma_dir)
|
2020-07-02 22:12:41 +08:00
|
|
|
{
|
|
|
|
struct page_pool_params pp_params = {
|
|
|
|
/* internal DMA mapping in page_pool */
|
|
|
|
.flags = PP_FLAG_DMA_MAP | PP_FLAG_DMA_SYNC_DEV,
|
|
|
|
.pool_size = num,
|
|
|
|
.nid = NUMA_NO_NODE,
|
|
|
|
.dev = dev,
|
2020-07-02 22:12:43 +08:00
|
|
|
.dma_dir = dma_dir,
|
2020-07-02 22:12:42 +08:00
|
|
|
.offset = MVPP2_SKB_HEADROOM,
|
2020-07-02 22:12:41 +08:00
|
|
|
.max_len = len,
|
|
|
|
};
|
|
|
|
|
|
|
|
return page_pool_create(&pp_params);
|
|
|
|
}
|
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
/* These accessors should be used to access:
|
|
|
|
*
|
2018-09-19 17:27:08 +08:00
|
|
|
* - per-thread registers, where each thread has its own copy of the
|
2018-05-31 16:07:43 +08:00
|
|
|
* register.
|
|
|
|
*
|
|
|
|
* MVPP2_BM_VIRT_ALLOC_REG
|
|
|
|
* MVPP2_BM_ADDR_HIGH_ALLOC
|
|
|
|
* MVPP22_BM_ADDR_HIGH_RLS_REG
|
|
|
|
* MVPP2_BM_VIRT_RLS_REG
|
|
|
|
* MVPP2_ISR_RX_TX_CAUSE_REG
|
|
|
|
* MVPP2_ISR_RX_TX_MASK_REG
|
|
|
|
* MVPP2_TXQ_NUM_REG
|
|
|
|
* MVPP2_AGGR_TXQ_UPDATE_REG
|
|
|
|
* MVPP2_TXQ_RSVD_REQ_REG
|
|
|
|
* MVPP2_TXQ_RSVD_RSLT_REG
|
|
|
|
* MVPP2_TXQ_SENT_REG
|
|
|
|
* MVPP2_RXQ_NUM_REG
|
|
|
|
*
|
2018-09-19 17:27:08 +08:00
|
|
|
* - global registers that must be accessed through a specific thread
|
|
|
|
* window, because they are related to an access to a per-thread
|
2018-05-31 16:07:43 +08:00
|
|
|
* register
|
|
|
|
*
|
|
|
|
* MVPP2_BM_PHY_ALLOC_REG (related to MVPP2_BM_VIRT_ALLOC_REG)
|
|
|
|
* MVPP2_BM_PHY_RLS_REG (related to MVPP2_BM_VIRT_RLS_REG)
|
|
|
|
* MVPP2_RXQ_THRESH_REG (related to MVPP2_RXQ_NUM_REG)
|
|
|
|
* MVPP2_RXQ_DESC_ADDR_REG (related to MVPP2_RXQ_NUM_REG)
|
|
|
|
* MVPP2_RXQ_DESC_SIZE_REG (related to MVPP2_RXQ_NUM_REG)
|
|
|
|
* MVPP2_RXQ_INDEX_REG (related to MVPP2_RXQ_NUM_REG)
|
|
|
|
* MVPP2_TXQ_PENDING_REG (related to MVPP2_TXQ_NUM_REG)
|
|
|
|
* MVPP2_TXQ_DESC_ADDR_REG (related to MVPP2_TXQ_NUM_REG)
|
|
|
|
* MVPP2_TXQ_DESC_SIZE_REG (related to MVPP2_TXQ_NUM_REG)
|
|
|
|
* MVPP2_TXQ_INDEX_REG (related to MVPP2_TXQ_NUM_REG)
|
|
|
|
* MVPP2_TXQ_PENDING_REG (related to MVPP2_TXQ_NUM_REG)
|
|
|
|
* MVPP2_TXQ_PREF_BUF_REG (related to MVPP2_TXQ_NUM_REG)
|
|
|
|
* MVPP2_TXQ_PREF_BUF_REG (related to MVPP2_TXQ_NUM_REG)
|
|
|
|
*/
|
2018-09-19 17:27:11 +08:00
|
|
|
static void mvpp2_thread_write(struct mvpp2 *priv, unsigned int thread,
|
2018-05-31 16:07:43 +08:00
|
|
|
u32 offset, u32 data)
|
|
|
|
{
|
2018-09-19 17:27:08 +08:00
|
|
|
writel(data, priv->swth_base[thread] + offset);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2018-09-19 17:27:11 +08:00
|
|
|
static u32 mvpp2_thread_read(struct mvpp2 *priv, unsigned int thread,
|
2018-05-31 16:07:43 +08:00
|
|
|
u32 offset)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2018-09-19 17:27:08 +08:00
|
|
|
return readl(priv->swth_base[thread] + offset);
|
2018-05-31 16:07:43 +08:00
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-09-19 17:27:11 +08:00
|
|
|
static void mvpp2_thread_write_relaxed(struct mvpp2 *priv, unsigned int thread,
|
2018-05-31 16:07:43 +08:00
|
|
|
u32 offset, u32 data)
|
|
|
|
{
|
2018-09-19 17:27:08 +08:00
|
|
|
writel_relaxed(data, priv->swth_base[thread] + offset);
|
2018-05-31 16:07:43 +08:00
|
|
|
}
|
2018-03-26 21:34:23 +08:00
|
|
|
|
2018-09-19 17:27:11 +08:00
|
|
|
static u32 mvpp2_thread_read_relaxed(struct mvpp2 *priv, unsigned int thread,
|
2018-05-31 16:07:43 +08:00
|
|
|
u32 offset)
|
|
|
|
{
|
2018-09-19 17:27:08 +08:00
|
|
|
return readl_relaxed(priv->swth_base[thread] + offset);
|
2018-05-31 16:07:43 +08:00
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
static dma_addr_t mvpp2_txdesc_dma_addr_get(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_tx_desc *tx_desc)
|
|
|
|
{
|
|
|
|
if (port->priv->hw_version == MVPP21)
|
2018-06-28 20:42:04 +08:00
|
|
|
return le32_to_cpu(tx_desc->pp21.buf_dma_addr);
|
2018-05-31 16:07:43 +08:00
|
|
|
else
|
2018-06-28 20:42:04 +08:00
|
|
|
return le64_to_cpu(tx_desc->pp22.buf_dma_addr_ptp) &
|
|
|
|
MVPP2_DESC_DMA_MASK;
|
2018-05-31 16:07:43 +08:00
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
static void mvpp2_txdesc_dma_addr_set(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_tx_desc *tx_desc,
|
|
|
|
dma_addr_t dma_addr)
|
|
|
|
{
|
|
|
|
dma_addr_t addr, offset;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
addr = dma_addr & ~MVPP2_TX_DESC_ALIGN;
|
|
|
|
offset = dma_addr & MVPP2_TX_DESC_ALIGN;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
if (port->priv->hw_version == MVPP21) {
|
2018-06-28 20:42:04 +08:00
|
|
|
tx_desc->pp21.buf_dma_addr = cpu_to_le32(addr);
|
2018-05-31 16:07:43 +08:00
|
|
|
tx_desc->pp21.packet_offset = offset;
|
2018-03-26 21:34:23 +08:00
|
|
|
} else {
|
2018-06-28 20:42:04 +08:00
|
|
|
__le64 val = cpu_to_le64(addr);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-06-28 20:42:04 +08:00
|
|
|
tx_desc->pp22.buf_dma_addr_ptp &= ~cpu_to_le64(MVPP2_DESC_DMA_MASK);
|
2018-05-31 16:07:43 +08:00
|
|
|
tx_desc->pp22.buf_dma_addr_ptp |= val;
|
|
|
|
tx_desc->pp22.packet_offset = offset;
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
static size_t mvpp2_txdesc_size_get(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_tx_desc *tx_desc)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2018-05-31 16:07:43 +08:00
|
|
|
if (port->priv->hw_version == MVPP21)
|
2018-06-28 20:42:04 +08:00
|
|
|
return le16_to_cpu(tx_desc->pp21.data_size);
|
2018-05-31 16:07:43 +08:00
|
|
|
else
|
2018-06-28 20:42:04 +08:00
|
|
|
return le16_to_cpu(tx_desc->pp22.data_size);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
static void mvpp2_txdesc_size_set(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_tx_desc *tx_desc,
|
|
|
|
size_t size)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2018-05-31 16:07:43 +08:00
|
|
|
if (port->priv->hw_version == MVPP21)
|
2018-06-28 20:42:04 +08:00
|
|
|
tx_desc->pp21.data_size = cpu_to_le16(size);
|
2018-05-31 16:07:43 +08:00
|
|
|
else
|
2018-06-28 20:42:04 +08:00
|
|
|
tx_desc->pp22.data_size = cpu_to_le16(size);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
static void mvpp2_txdesc_txq_set(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_tx_desc *tx_desc,
|
|
|
|
unsigned int txq)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2018-05-31 16:07:43 +08:00
|
|
|
if (port->priv->hw_version == MVPP21)
|
|
|
|
tx_desc->pp21.phys_txq = txq;
|
|
|
|
else
|
|
|
|
tx_desc->pp22.phys_txq = txq;
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
static void mvpp2_txdesc_cmd_set(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_tx_desc *tx_desc,
|
|
|
|
unsigned int command)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2018-05-31 16:07:43 +08:00
|
|
|
if (port->priv->hw_version == MVPP21)
|
2018-06-28 20:42:04 +08:00
|
|
|
tx_desc->pp21.command = cpu_to_le32(command);
|
2018-05-31 16:07:43 +08:00
|
|
|
else
|
2018-06-28 20:42:04 +08:00
|
|
|
tx_desc->pp22.command = cpu_to_le32(command);
|
2018-05-31 16:07:43 +08:00
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
static unsigned int mvpp2_txdesc_offset_get(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_tx_desc *tx_desc)
|
|
|
|
{
|
|
|
|
if (port->priv->hw_version == MVPP21)
|
|
|
|
return tx_desc->pp21.packet_offset;
|
|
|
|
else
|
|
|
|
return tx_desc->pp22.packet_offset;
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
static dma_addr_t mvpp2_rxdesc_dma_addr_get(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_rx_desc *rx_desc)
|
|
|
|
{
|
|
|
|
if (port->priv->hw_version == MVPP21)
|
2018-06-28 20:42:04 +08:00
|
|
|
return le32_to_cpu(rx_desc->pp21.buf_dma_addr);
|
2018-05-31 16:07:43 +08:00
|
|
|
else
|
2018-06-28 20:42:04 +08:00
|
|
|
return le64_to_cpu(rx_desc->pp22.buf_dma_addr_key_hash) &
|
|
|
|
MVPP2_DESC_DMA_MASK;
|
2018-05-31 16:07:43 +08:00
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
static unsigned long mvpp2_rxdesc_cookie_get(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_rx_desc *rx_desc)
|
|
|
|
{
|
|
|
|
if (port->priv->hw_version == MVPP21)
|
2018-06-28 20:42:04 +08:00
|
|
|
return le32_to_cpu(rx_desc->pp21.buf_cookie);
|
2018-05-31 16:07:43 +08:00
|
|
|
else
|
2018-06-28 20:42:04 +08:00
|
|
|
return le64_to_cpu(rx_desc->pp22.buf_cookie_misc) &
|
|
|
|
MVPP2_DESC_DMA_MASK;
|
2018-05-31 16:07:43 +08:00
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
static size_t mvpp2_rxdesc_size_get(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_rx_desc *rx_desc)
|
|
|
|
{
|
|
|
|
if (port->priv->hw_version == MVPP21)
|
2018-06-28 20:42:04 +08:00
|
|
|
return le16_to_cpu(rx_desc->pp21.data_size);
|
2018-05-31 16:07:43 +08:00
|
|
|
else
|
2018-06-28 20:42:04 +08:00
|
|
|
return le16_to_cpu(rx_desc->pp22.data_size);
|
2018-05-31 16:07:43 +08:00
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
static u32 mvpp2_rxdesc_status_get(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_rx_desc *rx_desc)
|
|
|
|
{
|
|
|
|
if (port->priv->hw_version == MVPP21)
|
2018-06-28 20:42:04 +08:00
|
|
|
return le32_to_cpu(rx_desc->pp21.status);
|
2018-05-31 16:07:43 +08:00
|
|
|
else
|
2018-06-28 20:42:04 +08:00
|
|
|
return le32_to_cpu(rx_desc->pp22.status);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
static void mvpp2_txq_inc_get(struct mvpp2_txq_pcpu *txq_pcpu)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2018-05-31 16:07:43 +08:00
|
|
|
txq_pcpu->txq_get_index++;
|
|
|
|
if (txq_pcpu->txq_get_index == txq_pcpu->size)
|
|
|
|
txq_pcpu->txq_get_index = 0;
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
static void mvpp2_txq_inc_put(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu,
|
2020-07-02 22:12:43 +08:00
|
|
|
void *data,
|
|
|
|
struct mvpp2_tx_desc *tx_desc,
|
|
|
|
enum mvpp2_tx_buf_type buf_type)
|
2018-05-31 16:07:43 +08:00
|
|
|
{
|
|
|
|
struct mvpp2_txq_pcpu_buf *tx_buf =
|
|
|
|
txq_pcpu->buffs + txq_pcpu->txq_put_index;
|
2020-07-02 22:12:43 +08:00
|
|
|
tx_buf->type = buf_type;
|
|
|
|
if (buf_type == MVPP2_TYPE_SKB)
|
|
|
|
tx_buf->skb = data;
|
|
|
|
else
|
|
|
|
tx_buf->xdpf = data;
|
2018-05-31 16:07:43 +08:00
|
|
|
tx_buf->size = mvpp2_txdesc_size_get(port, tx_desc);
|
|
|
|
tx_buf->dma = mvpp2_txdesc_dma_addr_get(port, tx_desc) +
|
|
|
|
mvpp2_txdesc_offset_get(port, tx_desc);
|
|
|
|
txq_pcpu->txq_put_index++;
|
|
|
|
if (txq_pcpu->txq_put_index == txq_pcpu->size)
|
|
|
|
txq_pcpu->txq_put_index = 0;
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
/* Get number of maximum RXQ */
|
|
|
|
static int mvpp2_get_nrxqs(struct mvpp2 *priv)
|
|
|
|
{
|
|
|
|
unsigned int nrxqs;
|
|
|
|
|
2021-02-14 21:38:35 +08:00
|
|
|
if (priv->hw_version >= MVPP22 && queue_mode == MVPP2_QDIST_SINGLE_MODE)
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
/* According to the PPv2.2 datasheet and our experiments on
|
|
|
|
* PPv2.1, RX queues have an allocation granularity of 4 (when
|
|
|
|
* more than a single one on PPv2.2).
|
|
|
|
* Round up to nearest multiple of 4.
|
|
|
|
*/
|
|
|
|
nrxqs = (num_possible_cpus() + 3) & ~0x3;
|
|
|
|
if (nrxqs > MVPP2_PORT_MAX_RXQ)
|
|
|
|
nrxqs = MVPP2_PORT_MAX_RXQ;
|
|
|
|
|
|
|
|
return nrxqs;
|
|
|
|
}
|
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
/* Get number of physical egress port */
|
|
|
|
static inline int mvpp2_egress_port(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
return MVPP2_MAX_TCONT + port->id;
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-31 16:07:43 +08:00
|
|
|
/* Get number of physical TXQ */
|
|
|
|
static inline int mvpp2_txq_phys(int port, int txq)
|
|
|
|
{
|
|
|
|
return (MVPP2_MAX_TCONT + port) * MVPP2_MAX_TXQ + txq;
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:41 +08:00
|
|
|
/* Returns a struct page if page_pool is set, otherwise a buffer */
|
|
|
|
static void *mvpp2_frag_alloc(const struct mvpp2_bm_pool *pool,
|
|
|
|
struct page_pool *page_pool)
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
{
|
2020-07-02 22:12:41 +08:00
|
|
|
if (page_pool)
|
|
|
|
return page_pool_dev_alloc_pages(page_pool);
|
|
|
|
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
if (likely(pool->frag_size <= PAGE_SIZE))
|
|
|
|
return netdev_alloc_frag(pool->frag_size);
|
2020-07-02 22:12:41 +08:00
|
|
|
|
|
|
|
return kmalloc(pool->frag_size, GFP_ATOMIC);
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:41 +08:00
|
|
|
static void mvpp2_frag_free(const struct mvpp2_bm_pool *pool,
|
|
|
|
struct page_pool *page_pool, void *data)
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
{
|
2020-07-02 22:12:41 +08:00
|
|
|
if (page_pool)
|
|
|
|
page_pool_put_full_page(page_pool, virt_to_head_page(data), false);
|
|
|
|
else if (likely(pool->frag_size <= PAGE_SIZE))
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
skb_free_frag(data);
|
|
|
|
else
|
|
|
|
kfree(data);
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Buffer Manager configuration routines */
|
|
|
|
|
|
|
|
/* Create pool */
|
2019-09-02 18:21:36 +08:00
|
|
|
static int mvpp2_bm_pool_create(struct device *dev, struct mvpp2 *priv,
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_bm_pool *bm_pool, int size)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
2017-03-07 23:53:09 +08:00
|
|
|
/* Number of buffer pointers must be a multiple of 16, as per
|
|
|
|
* hardware constraints
|
|
|
|
*/
|
|
|
|
if (!IS_ALIGNED(size, 16))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2021-02-11 18:48:52 +08:00
|
|
|
/* PPv2.1 needs 8 bytes per buffer pointer, PPv2.2 and PPv2.3 needs 16
|
2017-03-07 23:53:09 +08:00
|
|
|
* bytes per buffer pointer
|
|
|
|
*/
|
|
|
|
if (priv->hw_version == MVPP21)
|
|
|
|
bm_pool->size_bytes = 2 * sizeof(u32) * size;
|
|
|
|
else
|
|
|
|
bm_pool->size_bytes = 2 * sizeof(u64) * size;
|
|
|
|
|
2019-09-02 18:21:36 +08:00
|
|
|
bm_pool->virt_addr = dma_alloc_coherent(dev, bm_pool->size_bytes,
|
2017-03-07 23:53:00 +08:00
|
|
|
&bm_pool->dma_addr,
|
2014-07-11 03:52:13 +08:00
|
|
|
GFP_KERNEL);
|
|
|
|
if (!bm_pool->virt_addr)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2017-02-21 18:28:13 +08:00
|
|
|
if (!IS_ALIGNED((unsigned long)bm_pool->virt_addr,
|
|
|
|
MVPP2_BM_POOL_PTR_ALIGN)) {
|
2019-09-02 18:21:36 +08:00
|
|
|
dma_free_coherent(dev, bm_pool->size_bytes,
|
2017-03-07 23:53:09 +08:00
|
|
|
bm_pool->virt_addr, bm_pool->dma_addr);
|
2019-09-02 18:21:36 +08:00
|
|
|
dev_err(dev, "BM pool %d is not %d bytes aligned\n",
|
2014-07-11 03:52:13 +08:00
|
|
|
bm_pool->id, MVPP2_BM_POOL_PTR_ALIGN);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
mvpp2_write(priv, MVPP2_BM_POOL_BASE_REG(bm_pool->id),
|
2017-03-07 23:53:09 +08:00
|
|
|
lower_32_bits(bm_pool->dma_addr));
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_write(priv, MVPP2_BM_POOL_SIZE_REG(bm_pool->id), size);
|
|
|
|
|
|
|
|
val = mvpp2_read(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id));
|
|
|
|
val |= MVPP2_BM_START_MASK;
|
2021-02-11 18:48:59 +08:00
|
|
|
|
|
|
|
val &= ~MVPP2_BM_LOW_THRESH_MASK;
|
|
|
|
val &= ~MVPP2_BM_HIGH_THRESH_MASK;
|
|
|
|
|
|
|
|
/* Set 8 Pools BPPI threshold for MVPP23 */
|
|
|
|
if (priv->hw_version == MVPP23) {
|
|
|
|
val |= MVPP2_BM_LOW_THRESH_VALUE(MVPP23_BM_BPPI_LOW_THRESH);
|
|
|
|
val |= MVPP2_BM_HIGH_THRESH_VALUE(MVPP23_BM_BPPI_HIGH_THRESH);
|
|
|
|
} else {
|
|
|
|
val |= MVPP2_BM_LOW_THRESH_VALUE(MVPP2_BM_BPPI_LOW_THRESH);
|
|
|
|
val |= MVPP2_BM_HIGH_THRESH_VALUE(MVPP2_BM_BPPI_HIGH_THRESH);
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_write(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id), val);
|
|
|
|
|
|
|
|
bm_pool->size = size;
|
|
|
|
bm_pool->pkt_size = 0;
|
|
|
|
bm_pool->buf_num = 0;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set pool buffer size */
|
|
|
|
static void mvpp2_bm_pool_bufsize_set(struct mvpp2 *priv,
|
|
|
|
struct mvpp2_bm_pool *bm_pool,
|
|
|
|
int buf_size)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
bm_pool->buf_size = buf_size;
|
|
|
|
|
|
|
|
val = ALIGN(buf_size, 1 << MVPP2_POOL_BUF_SIZE_OFFSET);
|
|
|
|
mvpp2_write(priv, MVPP2_POOL_BUF_SIZE_REG(bm_pool->id), val);
|
|
|
|
}
|
|
|
|
|
2017-03-07 23:53:09 +08:00
|
|
|
static void mvpp2_bm_bufs_get_addrs(struct device *dev, struct mvpp2 *priv,
|
|
|
|
struct mvpp2_bm_pool *bm_pool,
|
|
|
|
dma_addr_t *dma_addr,
|
|
|
|
phys_addr_t *phys_addr)
|
|
|
|
{
|
2018-09-19 17:27:10 +08:00
|
|
|
unsigned int thread = mvpp2_cpu_to_thread(priv, get_cpu());
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
|
2018-09-19 17:27:11 +08:00
|
|
|
*dma_addr = mvpp2_thread_read(priv, thread,
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
MVPP2_BM_PHY_ALLOC_REG(bm_pool->id));
|
2018-09-19 17:27:11 +08:00
|
|
|
*phys_addr = mvpp2_thread_read(priv, thread, MVPP2_BM_VIRT_ALLOC_REG);
|
2017-03-07 23:53:09 +08:00
|
|
|
|
2021-02-14 21:38:35 +08:00
|
|
|
if (priv->hw_version >= MVPP22) {
|
2017-03-07 23:53:09 +08:00
|
|
|
u32 val;
|
|
|
|
u32 dma_addr_highbits, phys_addr_highbits;
|
|
|
|
|
2018-09-19 17:27:11 +08:00
|
|
|
val = mvpp2_thread_read(priv, thread, MVPP22_BM_ADDR_HIGH_ALLOC);
|
2017-03-07 23:53:09 +08:00
|
|
|
dma_addr_highbits = (val & MVPP22_BM_ADDR_HIGH_PHYS_MASK);
|
|
|
|
phys_addr_highbits = (val & MVPP22_BM_ADDR_HIGH_VIRT_MASK) >>
|
|
|
|
MVPP22_BM_ADDR_HIGH_VIRT_SHIFT;
|
|
|
|
|
|
|
|
if (sizeof(dma_addr_t) == 8)
|
|
|
|
*dma_addr |= (u64)dma_addr_highbits << 32;
|
|
|
|
|
|
|
|
if (sizeof(phys_addr_t) == 8)
|
|
|
|
*phys_addr |= (u64)phys_addr_highbits << 32;
|
|
|
|
}
|
2017-06-11 05:18:22 +08:00
|
|
|
|
|
|
|
put_cpu();
|
2017-03-07 23:53:09 +08:00
|
|
|
}
|
|
|
|
|
2014-07-22 00:48:14 +08:00
|
|
|
/* Free all buffers from the pool */
|
2015-12-03 22:20:50 +08:00
|
|
|
static void mvpp2_bm_bufs_free(struct device *dev, struct mvpp2 *priv,
|
2018-03-05 22:16:51 +08:00
|
|
|
struct mvpp2_bm_pool *bm_pool, int buf_num)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2020-07-02 22:12:41 +08:00
|
|
|
struct page_pool *pp = NULL;
|
2014-07-11 03:52:13 +08:00
|
|
|
int i;
|
|
|
|
|
2018-03-05 22:16:51 +08:00
|
|
|
if (buf_num > bm_pool->buf_num) {
|
|
|
|
WARN(1, "Pool does not have so many bufs pool(%d) bufs(%d)\n",
|
|
|
|
bm_pool->id, buf_num);
|
|
|
|
buf_num = bm_pool->buf_num;
|
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:41 +08:00
|
|
|
if (priv->percpu_pools)
|
|
|
|
pp = priv->page_pool[bm_pool->id];
|
|
|
|
|
2018-03-05 22:16:51 +08:00
|
|
|
for (i = 0; i < buf_num; i++) {
|
2017-03-07 23:53:00 +08:00
|
|
|
dma_addr_t buf_dma_addr;
|
net: mvpp2: store physical address of buffer in rx_desc->buf_cookie
The RX descriptors of the PPv2 hardware allow to store several
information, amongst which:
- the DMA address of the buffer in which the data has been received
- a "cookie" field, left to the use of the driver, and not used by the
hardware
In the current implementation, the "cookie" field is used to store the
virtual address of the buffer, so that in the receive completion path,
we can easily get the virtual address of the buffer that corresponds to
a completed RX descriptors.
On PPv2.1, used on 32-bit platforms, those two fields are 32-bit wide,
which is enough to store a DMA address in the first field, and a virtual
address in the second field.
On PPv2.2, used on 64-bit platforms, these two fields have been extended
to 40 bits. While 40 bits is enough to store a DMA address (as long as
the DMA mask is 40 bits or lower), it is not enough to store a virtual
address. Therefore, the "cookie" field can no longer be used to store
the virtual address of the buffer.
However, as Russell King pointed out, the RX buffers are always
allocated in the kernel linear mapping, and therefore using
phys_to_virt() on the physical address of the RX buffer is possible and
correct.
Therefore, this commit changes the driver to use the "cookie" field to
store the physical address instead of the virtual
address. phys_to_virt() is used in the receive completion path to
retrieve the virtual address from the physical address.
It is obviously important to realize that the DMA address and physical
address are two different things, which is why we store both in the RX
descriptors. While those addresses may be identical in some situations,
it remains two distinct concepts, and both addresses should be handled
separately.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:04 +08:00
|
|
|
phys_addr_t buf_phys_addr;
|
|
|
|
void *data;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2017-03-07 23:53:09 +08:00
|
|
|
mvpp2_bm_bufs_get_addrs(dev, priv, bm_pool,
|
|
|
|
&buf_dma_addr, &buf_phys_addr);
|
2015-12-03 22:20:50 +08:00
|
|
|
|
2020-07-02 22:12:41 +08:00
|
|
|
if (!pp)
|
|
|
|
dma_unmap_single(dev, buf_dma_addr,
|
|
|
|
bm_pool->buf_size, DMA_FROM_DEVICE);
|
2015-12-03 22:20:50 +08:00
|
|
|
|
net: mvpp2: store physical address of buffer in rx_desc->buf_cookie
The RX descriptors of the PPv2 hardware allow to store several
information, amongst which:
- the DMA address of the buffer in which the data has been received
- a "cookie" field, left to the use of the driver, and not used by the
hardware
In the current implementation, the "cookie" field is used to store the
virtual address of the buffer, so that in the receive completion path,
we can easily get the virtual address of the buffer that corresponds to
a completed RX descriptors.
On PPv2.1, used on 32-bit platforms, those two fields are 32-bit wide,
which is enough to store a DMA address in the first field, and a virtual
address in the second field.
On PPv2.2, used on 64-bit platforms, these two fields have been extended
to 40 bits. While 40 bits is enough to store a DMA address (as long as
the DMA mask is 40 bits or lower), it is not enough to store a virtual
address. Therefore, the "cookie" field can no longer be used to store
the virtual address of the buffer.
However, as Russell King pointed out, the RX buffers are always
allocated in the kernel linear mapping, and therefore using
phys_to_virt() on the physical address of the RX buffer is possible and
correct.
Therefore, this commit changes the driver to use the "cookie" field to
store the physical address instead of the virtual
address. phys_to_virt() is used in the receive completion path to
retrieve the virtual address from the physical address.
It is obviously important to realize that the DMA address and physical
address are two different things, which is why we store both in the RX
descriptors. While those addresses may be identical in some situations,
it remains two distinct concepts, and both addresses should be handled
separately.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:04 +08:00
|
|
|
data = (void *)phys_to_virt(buf_phys_addr);
|
|
|
|
if (!data)
|
2014-07-11 03:52:13 +08:00
|
|
|
break;
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
|
2020-07-02 22:12:41 +08:00
|
|
|
mvpp2_frag_free(bm_pool, pp, data);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Update BM driver with number of buffers removed from pool */
|
|
|
|
bm_pool->buf_num -= i;
|
|
|
|
}
|
|
|
|
|
2018-03-05 22:16:51 +08:00
|
|
|
/* Check number of buffers in BM pool */
|
2018-03-06 13:05:06 +08:00
|
|
|
static int mvpp2_check_hw_buf_num(struct mvpp2 *priv, struct mvpp2_bm_pool *bm_pool)
|
2018-03-05 22:16:51 +08:00
|
|
|
{
|
|
|
|
int buf_num = 0;
|
|
|
|
|
|
|
|
buf_num += mvpp2_read(priv, MVPP2_BM_POOL_PTRS_NUM_REG(bm_pool->id)) &
|
|
|
|
MVPP22_BM_POOL_PTRS_NUM_MASK;
|
|
|
|
buf_num += mvpp2_read(priv, MVPP2_BM_BPPI_PTRS_NUM_REG(bm_pool->id)) &
|
|
|
|
MVPP2_BM_BPPI_PTR_NUM_MASK;
|
|
|
|
|
|
|
|
/* HW has one buffer ready which is not reflected in the counters */
|
|
|
|
if (buf_num)
|
|
|
|
buf_num += 1;
|
|
|
|
|
|
|
|
return buf_num;
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Cleanup pool */
|
2019-09-02 18:21:36 +08:00
|
|
|
static int mvpp2_bm_pool_destroy(struct device *dev, struct mvpp2 *priv,
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_bm_pool *bm_pool)
|
|
|
|
{
|
2018-03-05 22:16:51 +08:00
|
|
|
int buf_num;
|
2014-07-11 03:52:13 +08:00
|
|
|
u32 val;
|
|
|
|
|
2018-03-05 22:16:51 +08:00
|
|
|
buf_num = mvpp2_check_hw_buf_num(priv, bm_pool);
|
2019-09-02 18:21:36 +08:00
|
|
|
mvpp2_bm_bufs_free(dev, priv, bm_pool, buf_num);
|
2018-03-05 22:16:51 +08:00
|
|
|
|
|
|
|
/* Check buffer counters after free */
|
|
|
|
buf_num = mvpp2_check_hw_buf_num(priv, bm_pool);
|
|
|
|
if (buf_num) {
|
|
|
|
WARN(1, "cannot free all buffers in pool %d, buf_num left %d\n",
|
|
|
|
bm_pool->id, bm_pool->buf_num);
|
2014-07-11 03:52:13 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
val = mvpp2_read(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id));
|
|
|
|
val |= MVPP2_BM_STOP_MASK;
|
|
|
|
mvpp2_write(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id), val);
|
|
|
|
|
2020-07-07 21:19:13 +08:00
|
|
|
if (priv->percpu_pools) {
|
2020-07-02 22:12:43 +08:00
|
|
|
page_pool_destroy(priv->page_pool[bm_pool->id]);
|
2020-07-07 21:19:13 +08:00
|
|
|
priv->page_pool[bm_pool->id] = NULL;
|
|
|
|
}
|
2020-07-02 22:12:43 +08:00
|
|
|
|
2019-09-02 18:21:36 +08:00
|
|
|
dma_free_coherent(dev, bm_pool->size_bytes,
|
2014-07-11 03:52:13 +08:00
|
|
|
bm_pool->virt_addr,
|
2017-03-07 23:53:00 +08:00
|
|
|
bm_pool->dma_addr);
|
2014-07-11 03:52:13 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-09-02 18:21:36 +08:00
|
|
|
static int mvpp2_bm_pools_init(struct device *dev, struct mvpp2 *priv)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
int i, err, size, poolnum = MVPP2_BM_POOLS_NUM;
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_bm_pool *bm_pool;
|
|
|
|
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
if (priv->percpu_pools)
|
|
|
|
poolnum = mvpp2_get_nrxqs(priv) * 2;
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Create all pools with maximum size */
|
|
|
|
size = MVPP2_BM_POOL_SIZE_MAX;
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
for (i = 0; i < poolnum; i++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
bm_pool = &priv->bm_pools[i];
|
|
|
|
bm_pool->id = i;
|
2019-09-02 18:21:36 +08:00
|
|
|
err = mvpp2_bm_pool_create(dev, priv, bm_pool, size);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (err)
|
|
|
|
goto err_unroll_pools;
|
|
|
|
mvpp2_bm_pool_bufsize_set(priv, bm_pool, 0);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_unroll_pools:
|
2019-09-02 18:21:36 +08:00
|
|
|
dev_err(dev, "failed to create BM pool %d, size %d\n", i, size);
|
2014-07-11 03:52:13 +08:00
|
|
|
for (i = i - 1; i >= 0; i--)
|
2019-09-02 18:21:36 +08:00
|
|
|
mvpp2_bm_pool_destroy(dev, priv, &priv->bm_pools[i]);
|
2014-07-11 03:52:13 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2021-02-11 18:48:59 +08:00
|
|
|
/* Routine enable PPv23 8 pool mode */
|
|
|
|
static void mvpp23_bm_set_8pool_mode(struct mvpp2 *priv)
|
|
|
|
{
|
|
|
|
int val;
|
|
|
|
|
|
|
|
val = mvpp2_read(priv, MVPP22_BM_POOL_BASE_ADDR_HIGH_REG);
|
|
|
|
val |= MVPP23_BM_8POOL_MODE;
|
|
|
|
mvpp2_write(priv, MVPP22_BM_POOL_BASE_ADDR_HIGH_REG, val);
|
|
|
|
}
|
|
|
|
|
2019-09-02 18:21:36 +08:00
|
|
|
static int mvpp2_bm_init(struct device *dev, struct mvpp2 *priv)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2020-07-02 22:12:43 +08:00
|
|
|
enum dma_data_direction dma_dir = DMA_FROM_DEVICE;
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
int i, err, poolnum = MVPP2_BM_POOLS_NUM;
|
2020-07-02 22:12:43 +08:00
|
|
|
struct mvpp2_port *port;
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
|
2020-07-02 22:12:41 +08:00
|
|
|
if (priv->percpu_pools) {
|
2020-07-02 22:12:43 +08:00
|
|
|
for (i = 0; i < priv->port_count; i++) {
|
|
|
|
port = priv->port_list[i];
|
|
|
|
if (port->xdp_prog) {
|
|
|
|
dma_dir = DMA_BIDIRECTIONAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
poolnum = mvpp2_get_nrxqs(priv) * 2;
|
2020-07-02 22:12:41 +08:00
|
|
|
for (i = 0; i < poolnum; i++) {
|
|
|
|
/* the pool in use */
|
|
|
|
int pn = i / (poolnum / 2);
|
|
|
|
|
|
|
|
priv->page_pool[i] =
|
|
|
|
mvpp2_create_page_pool(dev,
|
|
|
|
mvpp2_pools[pn].buf_num,
|
2020-07-02 22:12:43 +08:00
|
|
|
mvpp2_pools[pn].pkt_size,
|
|
|
|
dma_dir);
|
2020-07-07 21:19:13 +08:00
|
|
|
if (IS_ERR(priv->page_pool[i])) {
|
|
|
|
int j;
|
|
|
|
|
|
|
|
for (j = 0; j < i; j++) {
|
|
|
|
page_pool_destroy(priv->page_pool[j]);
|
|
|
|
priv->page_pool[j] = NULL;
|
|
|
|
}
|
2020-07-02 22:12:41 +08:00
|
|
|
return PTR_ERR(priv->page_pool[i]);
|
2020-07-07 21:19:13 +08:00
|
|
|
}
|
2020-07-02 22:12:41 +08:00
|
|
|
}
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
dev_info(dev, "using %d %s buffers\n", poolnum,
|
|
|
|
priv->percpu_pools ? "per-cpu" : "shared");
|
|
|
|
|
|
|
|
for (i = 0; i < poolnum; i++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Mask BM all interrupts */
|
|
|
|
mvpp2_write(priv, MVPP2_BM_INTR_MASK_REG(i), 0);
|
|
|
|
/* Clear BM cause register */
|
|
|
|
mvpp2_write(priv, MVPP2_BM_INTR_CAUSE_REG(i), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate and initialize BM pools */
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
priv->bm_pools = devm_kcalloc(dev, poolnum,
|
2017-04-17 15:06:33 +08:00
|
|
|
sizeof(*priv->bm_pools), GFP_KERNEL);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (!priv->bm_pools)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2021-02-11 18:48:59 +08:00
|
|
|
if (priv->hw_version == MVPP23)
|
|
|
|
mvpp23_bm_set_8pool_mode(priv);
|
|
|
|
|
2019-09-02 18:21:36 +08:00
|
|
|
err = mvpp2_bm_pools_init(dev, priv);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-05 22:16:50 +08:00
|
|
|
static void mvpp2_setup_bm_pool(void)
|
|
|
|
{
|
|
|
|
/* Short pool */
|
|
|
|
mvpp2_pools[MVPP2_BM_SHORT].buf_num = MVPP2_BM_SHORT_BUF_NUM;
|
|
|
|
mvpp2_pools[MVPP2_BM_SHORT].pkt_size = MVPP2_BM_SHORT_PKT_SIZE;
|
|
|
|
|
|
|
|
/* Long pool */
|
|
|
|
mvpp2_pools[MVPP2_BM_LONG].buf_num = MVPP2_BM_LONG_BUF_NUM;
|
|
|
|
mvpp2_pools[MVPP2_BM_LONG].pkt_size = MVPP2_BM_LONG_PKT_SIZE;
|
2018-03-05 22:16:54 +08:00
|
|
|
|
|
|
|
/* Jumbo pool */
|
|
|
|
mvpp2_pools[MVPP2_BM_JUMBO].buf_num = MVPP2_BM_JUMBO_BUF_NUM;
|
|
|
|
mvpp2_pools[MVPP2_BM_JUMBO].pkt_size = MVPP2_BM_JUMBO_PKT_SIZE;
|
2018-03-05 22:16:50 +08:00
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Attach long pool to rxq */
|
|
|
|
static void mvpp2_rxq_long_pool_set(struct mvpp2_port *port,
|
|
|
|
int lrxq, int long_pool)
|
|
|
|
{
|
2017-03-07 23:53:10 +08:00
|
|
|
u32 val, mask;
|
2014-07-11 03:52:13 +08:00
|
|
|
int prxq;
|
|
|
|
|
|
|
|
/* Get queue physical ID */
|
|
|
|
prxq = port->rxqs[lrxq]->id;
|
|
|
|
|
2017-03-07 23:53:10 +08:00
|
|
|
if (port->priv->hw_version == MVPP21)
|
|
|
|
mask = MVPP21_RXQ_POOL_LONG_MASK;
|
|
|
|
else
|
|
|
|
mask = MVPP22_RXQ_POOL_LONG_MASK;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2017-03-07 23:53:10 +08:00
|
|
|
val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(prxq));
|
|
|
|
val &= ~mask;
|
|
|
|
val |= (long_pool << MVPP2_RXQ_POOL_LONG_OFFS) & mask;
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(prxq), val);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Attach short pool to rxq */
|
|
|
|
static void mvpp2_rxq_short_pool_set(struct mvpp2_port *port,
|
|
|
|
int lrxq, int short_pool)
|
|
|
|
{
|
2017-03-07 23:53:10 +08:00
|
|
|
u32 val, mask;
|
2014-07-11 03:52:13 +08:00
|
|
|
int prxq;
|
|
|
|
|
|
|
|
/* Get queue physical ID */
|
|
|
|
prxq = port->rxqs[lrxq]->id;
|
|
|
|
|
2017-03-07 23:53:10 +08:00
|
|
|
if (port->priv->hw_version == MVPP21)
|
|
|
|
mask = MVPP21_RXQ_POOL_SHORT_MASK;
|
|
|
|
else
|
|
|
|
mask = MVPP22_RXQ_POOL_SHORT_MASK;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2017-03-07 23:53:10 +08:00
|
|
|
val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(prxq));
|
|
|
|
val &= ~mask;
|
|
|
|
val |= (short_pool << MVPP2_RXQ_POOL_SHORT_OFFS) & mask;
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(prxq), val);
|
|
|
|
}
|
|
|
|
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
static void *mvpp2_buf_alloc(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_bm_pool *bm_pool,
|
2020-07-02 22:12:41 +08:00
|
|
|
struct page_pool *page_pool,
|
2017-03-07 23:53:00 +08:00
|
|
|
dma_addr_t *buf_dma_addr,
|
net: mvpp2: store physical address of buffer in rx_desc->buf_cookie
The RX descriptors of the PPv2 hardware allow to store several
information, amongst which:
- the DMA address of the buffer in which the data has been received
- a "cookie" field, left to the use of the driver, and not used by the
hardware
In the current implementation, the "cookie" field is used to store the
virtual address of the buffer, so that in the receive completion path,
we can easily get the virtual address of the buffer that corresponds to
a completed RX descriptors.
On PPv2.1, used on 32-bit platforms, those two fields are 32-bit wide,
which is enough to store a DMA address in the first field, and a virtual
address in the second field.
On PPv2.2, used on 64-bit platforms, these two fields have been extended
to 40 bits. While 40 bits is enough to store a DMA address (as long as
the DMA mask is 40 bits or lower), it is not enough to store a virtual
address. Therefore, the "cookie" field can no longer be used to store
the virtual address of the buffer.
However, as Russell King pointed out, the RX buffers are always
allocated in the kernel linear mapping, and therefore using
phys_to_virt() on the physical address of the RX buffer is possible and
correct.
Therefore, this commit changes the driver to use the "cookie" field to
store the physical address instead of the virtual
address. phys_to_virt() is used in the receive completion path to
retrieve the virtual address from the physical address.
It is obviously important to realize that the DMA address and physical
address are two different things, which is why we store both in the RX
descriptors. While those addresses may be identical in some situations,
it remains two distinct concepts, and both addresses should be handled
separately.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:04 +08:00
|
|
|
phys_addr_t *buf_phys_addr,
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
gfp_t gfp_mask)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2017-03-07 23:53:00 +08:00
|
|
|
dma_addr_t dma_addr;
|
2020-07-02 22:12:41 +08:00
|
|
|
struct page *page;
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
void *data;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2020-07-02 22:12:41 +08:00
|
|
|
data = mvpp2_frag_alloc(bm_pool, page_pool);
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
if (!data)
|
2014-07-11 03:52:13 +08:00
|
|
|
return NULL;
|
|
|
|
|
2020-07-02 22:12:41 +08:00
|
|
|
if (page_pool) {
|
|
|
|
page = (struct page *)data;
|
|
|
|
dma_addr = page_pool_get_dma_addr(page);
|
|
|
|
data = page_to_virt(page);
|
|
|
|
} else {
|
|
|
|
dma_addr = dma_map_single(port->dev->dev.parent, data,
|
|
|
|
MVPP2_RX_BUF_SIZE(bm_pool->pkt_size),
|
|
|
|
DMA_FROM_DEVICE);
|
|
|
|
if (unlikely(dma_mapping_error(port->dev->dev.parent, dma_addr))) {
|
|
|
|
mvpp2_frag_free(bm_pool, NULL, data);
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
2017-03-07 23:53:00 +08:00
|
|
|
*buf_dma_addr = dma_addr;
|
net: mvpp2: store physical address of buffer in rx_desc->buf_cookie
The RX descriptors of the PPv2 hardware allow to store several
information, amongst which:
- the DMA address of the buffer in which the data has been received
- a "cookie" field, left to the use of the driver, and not used by the
hardware
In the current implementation, the "cookie" field is used to store the
virtual address of the buffer, so that in the receive completion path,
we can easily get the virtual address of the buffer that corresponds to
a completed RX descriptors.
On PPv2.1, used on 32-bit platforms, those two fields are 32-bit wide,
which is enough to store a DMA address in the first field, and a virtual
address in the second field.
On PPv2.2, used on 64-bit platforms, these two fields have been extended
to 40 bits. While 40 bits is enough to store a DMA address (as long as
the DMA mask is 40 bits or lower), it is not enough to store a virtual
address. Therefore, the "cookie" field can no longer be used to store
the virtual address of the buffer.
However, as Russell King pointed out, the RX buffers are always
allocated in the kernel linear mapping, and therefore using
phys_to_virt() on the physical address of the RX buffer is possible and
correct.
Therefore, this commit changes the driver to use the "cookie" field to
store the physical address instead of the virtual
address. phys_to_virt() is used in the receive completion path to
retrieve the virtual address from the physical address.
It is obviously important to realize that the DMA address and physical
address are two different things, which is why we store both in the RX
descriptors. While those addresses may be identical in some situations,
it remains two distinct concepts, and both addresses should be handled
separately.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:04 +08:00
|
|
|
*buf_phys_addr = virt_to_phys(data);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
return data;
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2021-02-11 18:48:57 +08:00
|
|
|
/* Routine enable flow control for RXQs condition */
|
|
|
|
static void mvpp2_rxq_enable_fc(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
int val, cm3_state, host_id, q;
|
|
|
|
int fq = port->first_rxq;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&port->priv->mss_spinlock, flags);
|
|
|
|
|
|
|
|
/* Remove Flow control enable bit to prevent race between FW and Kernel
|
|
|
|
* If Flow control was enabled, it would be re-enabled.
|
|
|
|
*/
|
|
|
|
val = mvpp2_cm3_read(port->priv, MSS_FC_COM_REG);
|
|
|
|
cm3_state = (val & FLOW_CONTROL_ENABLE_BIT);
|
|
|
|
val &= ~FLOW_CONTROL_ENABLE_BIT;
|
|
|
|
mvpp2_cm3_write(port->priv, MSS_FC_COM_REG, val);
|
|
|
|
|
|
|
|
/* Set same Flow control for all RXQs */
|
|
|
|
for (q = 0; q < port->nrxqs; q++) {
|
|
|
|
/* Set stop and start Flow control RXQ thresholds */
|
|
|
|
val = MSS_THRESHOLD_START;
|
|
|
|
val |= (MSS_THRESHOLD_STOP << MSS_RXQ_TRESH_STOP_OFFS);
|
|
|
|
mvpp2_cm3_write(port->priv, MSS_RXQ_TRESH_REG(q, fq), val);
|
|
|
|
|
|
|
|
val = mvpp2_cm3_read(port->priv, MSS_RXQ_ASS_REG(q, fq));
|
|
|
|
/* Set RXQ port ID */
|
|
|
|
val &= ~(MSS_RXQ_ASS_PORTID_MASK << MSS_RXQ_ASS_Q_BASE(q, fq));
|
|
|
|
val |= (port->id << MSS_RXQ_ASS_Q_BASE(q, fq));
|
|
|
|
val &= ~(MSS_RXQ_ASS_HOSTID_MASK << (MSS_RXQ_ASS_Q_BASE(q, fq)
|
|
|
|
+ MSS_RXQ_ASS_HOSTID_OFFS));
|
|
|
|
|
|
|
|
/* Calculate RXQ host ID:
|
|
|
|
* In Single queue mode: Host ID equal to Host ID used for
|
|
|
|
* shared RX interrupt
|
|
|
|
* In Multi queue mode: Host ID equal to number of
|
|
|
|
* RXQ ID / number of CoS queues
|
|
|
|
* In Single resource mode: Host ID always equal to 0
|
|
|
|
*/
|
|
|
|
if (queue_mode == MVPP2_QDIST_SINGLE_MODE)
|
|
|
|
host_id = port->nqvecs;
|
|
|
|
else if (queue_mode == MVPP2_QDIST_MULTI_MODE)
|
|
|
|
host_id = q;
|
|
|
|
else
|
|
|
|
host_id = 0;
|
|
|
|
|
|
|
|
/* Set RXQ host ID */
|
|
|
|
val |= (host_id << (MSS_RXQ_ASS_Q_BASE(q, fq)
|
|
|
|
+ MSS_RXQ_ASS_HOSTID_OFFS));
|
|
|
|
|
|
|
|
mvpp2_cm3_write(port->priv, MSS_RXQ_ASS_REG(q, fq), val);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Notify Firmware that Flow control config space ready for update */
|
|
|
|
val = mvpp2_cm3_read(port->priv, MSS_FC_COM_REG);
|
|
|
|
val |= FLOW_CONTROL_UPDATE_COMMAND_BIT;
|
|
|
|
val |= cm3_state;
|
|
|
|
mvpp2_cm3_write(port->priv, MSS_FC_COM_REG, val);
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(&port->priv->mss_spinlock, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Routine disable flow control for RXQs condition */
|
|
|
|
static void mvpp2_rxq_disable_fc(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
int val, cm3_state, q;
|
|
|
|
unsigned long flags;
|
|
|
|
int fq = port->first_rxq;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&port->priv->mss_spinlock, flags);
|
|
|
|
|
|
|
|
/* Remove Flow control enable bit to prevent race between FW and Kernel
|
|
|
|
* If Flow control was enabled, it would be re-enabled.
|
|
|
|
*/
|
|
|
|
val = mvpp2_cm3_read(port->priv, MSS_FC_COM_REG);
|
|
|
|
cm3_state = (val & FLOW_CONTROL_ENABLE_BIT);
|
|
|
|
val &= ~FLOW_CONTROL_ENABLE_BIT;
|
|
|
|
mvpp2_cm3_write(port->priv, MSS_FC_COM_REG, val);
|
|
|
|
|
|
|
|
/* Disable Flow control for all RXQs */
|
|
|
|
for (q = 0; q < port->nrxqs; q++) {
|
|
|
|
/* Set threshold 0 to disable Flow control */
|
|
|
|
val = 0;
|
|
|
|
val |= (0 << MSS_RXQ_TRESH_STOP_OFFS);
|
|
|
|
mvpp2_cm3_write(port->priv, MSS_RXQ_TRESH_REG(q, fq), val);
|
|
|
|
|
|
|
|
val = mvpp2_cm3_read(port->priv, MSS_RXQ_ASS_REG(q, fq));
|
|
|
|
|
|
|
|
val &= ~(MSS_RXQ_ASS_PORTID_MASK << MSS_RXQ_ASS_Q_BASE(q, fq));
|
|
|
|
|
|
|
|
val &= ~(MSS_RXQ_ASS_HOSTID_MASK << (MSS_RXQ_ASS_Q_BASE(q, fq)
|
|
|
|
+ MSS_RXQ_ASS_HOSTID_OFFS));
|
|
|
|
|
|
|
|
mvpp2_cm3_write(port->priv, MSS_RXQ_ASS_REG(q, fq), val);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Notify Firmware that Flow control config space ready for update */
|
|
|
|
val = mvpp2_cm3_read(port->priv, MSS_FC_COM_REG);
|
|
|
|
val |= FLOW_CONTROL_UPDATE_COMMAND_BIT;
|
|
|
|
val |= cm3_state;
|
|
|
|
mvpp2_cm3_write(port->priv, MSS_FC_COM_REG, val);
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(&port->priv->mss_spinlock, flags);
|
|
|
|
}
|
|
|
|
|
2021-02-11 18:48:58 +08:00
|
|
|
/* Routine disable/enable flow control for BM pool condition */
|
|
|
|
static void mvpp2_bm_pool_update_fc(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_bm_pool *pool,
|
|
|
|
bool en)
|
|
|
|
{
|
|
|
|
int val, cm3_state;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&port->priv->mss_spinlock, flags);
|
|
|
|
|
|
|
|
/* Remove Flow control enable bit to prevent race between FW and Kernel
|
|
|
|
* If Flow control were enabled, it would be re-enabled.
|
|
|
|
*/
|
|
|
|
val = mvpp2_cm3_read(port->priv, MSS_FC_COM_REG);
|
|
|
|
cm3_state = (val & FLOW_CONTROL_ENABLE_BIT);
|
|
|
|
val &= ~FLOW_CONTROL_ENABLE_BIT;
|
|
|
|
mvpp2_cm3_write(port->priv, MSS_FC_COM_REG, val);
|
|
|
|
|
|
|
|
/* Check if BM pool should be enabled/disable */
|
|
|
|
if (en) {
|
|
|
|
/* Set BM pool start and stop thresholds per port */
|
|
|
|
val = mvpp2_cm3_read(port->priv, MSS_BUF_POOL_REG(pool->id));
|
|
|
|
val |= MSS_BUF_POOL_PORT_OFFS(port->id);
|
|
|
|
val &= ~MSS_BUF_POOL_START_MASK;
|
|
|
|
val |= (MSS_THRESHOLD_START << MSS_BUF_POOL_START_OFFS);
|
|
|
|
val &= ~MSS_BUF_POOL_STOP_MASK;
|
|
|
|
val |= MSS_THRESHOLD_STOP;
|
|
|
|
mvpp2_cm3_write(port->priv, MSS_BUF_POOL_REG(pool->id), val);
|
|
|
|
} else {
|
|
|
|
/* Remove BM pool from the port */
|
|
|
|
val = mvpp2_cm3_read(port->priv, MSS_BUF_POOL_REG(pool->id));
|
|
|
|
val &= ~MSS_BUF_POOL_PORT_OFFS(port->id);
|
|
|
|
|
|
|
|
/* Zero BM pool start and stop thresholds to disable pool
|
|
|
|
* flow control if pool empty (not used by any port)
|
|
|
|
*/
|
|
|
|
if (!pool->buf_num) {
|
|
|
|
val &= ~MSS_BUF_POOL_START_MASK;
|
|
|
|
val &= ~MSS_BUF_POOL_STOP_MASK;
|
|
|
|
}
|
|
|
|
|
|
|
|
mvpp2_cm3_write(port->priv, MSS_BUF_POOL_REG(pool->id), val);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Notify Firmware that Flow control config space ready for update */
|
|
|
|
val = mvpp2_cm3_read(port->priv, MSS_FC_COM_REG);
|
|
|
|
val |= FLOW_CONTROL_UPDATE_COMMAND_BIT;
|
|
|
|
val |= cm3_state;
|
|
|
|
mvpp2_cm3_write(port->priv, MSS_FC_COM_REG, val);
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(&port->priv->mss_spinlock, flags);
|
|
|
|
}
|
|
|
|
|
2021-02-15 23:23:42 +08:00
|
|
|
/* disable/enable flow control for BM pool on all ports */
|
|
|
|
static void mvpp2_bm_pool_update_priv_fc(struct mvpp2 *priv, bool en)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < priv->port_count; i++) {
|
|
|
|
port = priv->port_list[i];
|
|
|
|
if (port->priv->percpu_pools) {
|
|
|
|
for (i = 0; i < port->nrxqs; i++)
|
|
|
|
mvpp2_bm_pool_update_fc(port, &port->priv->bm_pools[i],
|
|
|
|
port->tx_fc & en);
|
|
|
|
} else {
|
|
|
|
mvpp2_bm_pool_update_fc(port, port->pool_long, port->tx_fc & en);
|
|
|
|
mvpp2_bm_pool_update_fc(port, port->pool_short, port->tx_fc & en);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-11 18:49:02 +08:00
|
|
|
static int mvpp2_enable_global_fc(struct mvpp2 *priv)
|
|
|
|
{
|
|
|
|
int val, timeout = 0;
|
|
|
|
|
|
|
|
/* Enable global flow control. In this stage global
|
|
|
|
* flow control enabled, but still disabled per port.
|
|
|
|
*/
|
|
|
|
val = mvpp2_cm3_read(priv, MSS_FC_COM_REG);
|
|
|
|
val |= FLOW_CONTROL_ENABLE_BIT;
|
|
|
|
mvpp2_cm3_write(priv, MSS_FC_COM_REG, val);
|
|
|
|
|
|
|
|
/* Check if Firmware running and disable FC if not*/
|
|
|
|
val |= FLOW_CONTROL_UPDATE_COMMAND_BIT;
|
|
|
|
mvpp2_cm3_write(priv, MSS_FC_COM_REG, val);
|
|
|
|
|
|
|
|
while (timeout < MSS_FC_MAX_TIMEOUT) {
|
|
|
|
val = mvpp2_cm3_read(priv, MSS_FC_COM_REG);
|
|
|
|
|
|
|
|
if (!(val & FLOW_CONTROL_UPDATE_COMMAND_BIT))
|
|
|
|
return 0;
|
|
|
|
usleep_range(10, 20);
|
|
|
|
timeout++;
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->global_tx_fc = false;
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Release buffer to BM */
|
|
|
|
static inline void mvpp2_bm_pool_put(struct mvpp2_port *port, int pool,
|
2017-03-07 23:53:00 +08:00
|
|
|
dma_addr_t buf_dma_addr,
|
net: mvpp2: store physical address of buffer in rx_desc->buf_cookie
The RX descriptors of the PPv2 hardware allow to store several
information, amongst which:
- the DMA address of the buffer in which the data has been received
- a "cookie" field, left to the use of the driver, and not used by the
hardware
In the current implementation, the "cookie" field is used to store the
virtual address of the buffer, so that in the receive completion path,
we can easily get the virtual address of the buffer that corresponds to
a completed RX descriptors.
On PPv2.1, used on 32-bit platforms, those two fields are 32-bit wide,
which is enough to store a DMA address in the first field, and a virtual
address in the second field.
On PPv2.2, used on 64-bit platforms, these two fields have been extended
to 40 bits. While 40 bits is enough to store a DMA address (as long as
the DMA mask is 40 bits or lower), it is not enough to store a virtual
address. Therefore, the "cookie" field can no longer be used to store
the virtual address of the buffer.
However, as Russell King pointed out, the RX buffers are always
allocated in the kernel linear mapping, and therefore using
phys_to_virt() on the physical address of the RX buffer is possible and
correct.
Therefore, this commit changes the driver to use the "cookie" field to
store the physical address instead of the virtual
address. phys_to_virt() is used in the receive completion path to
retrieve the virtual address from the physical address.
It is obviously important to realize that the DMA address and physical
address are two different things, which is why we store both in the RX
descriptors. While those addresses may be identical in some situations,
it remains two distinct concepts, and both addresses should be handled
separately.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:04 +08:00
|
|
|
phys_addr_t buf_phys_addr)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2018-09-19 17:27:10 +08:00
|
|
|
unsigned int thread = mvpp2_cpu_to_thread(port->priv, get_cpu());
|
|
|
|
unsigned long flags = 0;
|
|
|
|
|
|
|
|
if (test_bit(thread, &port->priv->lock_map))
|
|
|
|
spin_lock_irqsave(&port->bm_lock[thread], flags);
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
|
2021-02-14 21:38:35 +08:00
|
|
|
if (port->priv->hw_version >= MVPP22) {
|
2017-03-07 23:53:09 +08:00
|
|
|
u32 val = 0;
|
|
|
|
|
|
|
|
if (sizeof(dma_addr_t) == 8)
|
|
|
|
val |= upper_32_bits(buf_dma_addr) &
|
|
|
|
MVPP22_BM_ADDR_HIGH_PHYS_RLS_MASK;
|
|
|
|
|
|
|
|
if (sizeof(phys_addr_t) == 8)
|
|
|
|
val |= (upper_32_bits(buf_phys_addr)
|
|
|
|
<< MVPP22_BM_ADDR_HIGH_VIRT_RLS_SHIFT) &
|
|
|
|
MVPP22_BM_ADDR_HIGH_VIRT_RLS_MASK;
|
|
|
|
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write_relaxed(port->priv, thread,
|
2018-03-27 22:49:05 +08:00
|
|
|
MVPP22_BM_ADDR_HIGH_RLS_REG, val);
|
2017-03-07 23:53:09 +08:00
|
|
|
}
|
|
|
|
|
net: mvpp2: store physical address of buffer in rx_desc->buf_cookie
The RX descriptors of the PPv2 hardware allow to store several
information, amongst which:
- the DMA address of the buffer in which the data has been received
- a "cookie" field, left to the use of the driver, and not used by the
hardware
In the current implementation, the "cookie" field is used to store the
virtual address of the buffer, so that in the receive completion path,
we can easily get the virtual address of the buffer that corresponds to
a completed RX descriptors.
On PPv2.1, used on 32-bit platforms, those two fields are 32-bit wide,
which is enough to store a DMA address in the first field, and a virtual
address in the second field.
On PPv2.2, used on 64-bit platforms, these two fields have been extended
to 40 bits. While 40 bits is enough to store a DMA address (as long as
the DMA mask is 40 bits or lower), it is not enough to store a virtual
address. Therefore, the "cookie" field can no longer be used to store
the virtual address of the buffer.
However, as Russell King pointed out, the RX buffers are always
allocated in the kernel linear mapping, and therefore using
phys_to_virt() on the physical address of the RX buffer is possible and
correct.
Therefore, this commit changes the driver to use the "cookie" field to
store the physical address instead of the virtual
address. phys_to_virt() is used in the receive completion path to
retrieve the virtual address from the physical address.
It is obviously important to realize that the DMA address and physical
address are two different things, which is why we store both in the RX
descriptors. While those addresses may be identical in some situations,
it remains two distinct concepts, and both addresses should be handled
separately.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:04 +08:00
|
|
|
/* MVPP2_BM_VIRT_RLS_REG is not interpreted by HW, and simply
|
|
|
|
* returned in the "cookie" field of the RX
|
|
|
|
* descriptor. Instead of storing the virtual address, we
|
|
|
|
* store the physical address
|
|
|
|
*/
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write_relaxed(port->priv, thread,
|
2018-03-27 22:49:05 +08:00
|
|
|
MVPP2_BM_VIRT_RLS_REG, buf_phys_addr);
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write_relaxed(port->priv, thread,
|
2018-03-27 22:49:05 +08:00
|
|
|
MVPP2_BM_PHY_RLS_REG(pool), buf_dma_addr);
|
2017-06-11 05:18:22 +08:00
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
if (test_bit(thread, &port->priv->lock_map))
|
|
|
|
spin_unlock_irqrestore(&port->bm_lock[thread], flags);
|
|
|
|
|
2017-06-11 05:18:22 +08:00
|
|
|
put_cpu();
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate buffers for the pool */
|
|
|
|
static int mvpp2_bm_bufs_add(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_bm_pool *bm_pool, int buf_num)
|
|
|
|
{
|
|
|
|
int i, buf_size, total_size;
|
2017-03-07 23:53:00 +08:00
|
|
|
dma_addr_t dma_addr;
|
net: mvpp2: store physical address of buffer in rx_desc->buf_cookie
The RX descriptors of the PPv2 hardware allow to store several
information, amongst which:
- the DMA address of the buffer in which the data has been received
- a "cookie" field, left to the use of the driver, and not used by the
hardware
In the current implementation, the "cookie" field is used to store the
virtual address of the buffer, so that in the receive completion path,
we can easily get the virtual address of the buffer that corresponds to
a completed RX descriptors.
On PPv2.1, used on 32-bit platforms, those two fields are 32-bit wide,
which is enough to store a DMA address in the first field, and a virtual
address in the second field.
On PPv2.2, used on 64-bit platforms, these two fields have been extended
to 40 bits. While 40 bits is enough to store a DMA address (as long as
the DMA mask is 40 bits or lower), it is not enough to store a virtual
address. Therefore, the "cookie" field can no longer be used to store
the virtual address of the buffer.
However, as Russell King pointed out, the RX buffers are always
allocated in the kernel linear mapping, and therefore using
phys_to_virt() on the physical address of the RX buffer is possible and
correct.
Therefore, this commit changes the driver to use the "cookie" field to
store the physical address instead of the virtual
address. phys_to_virt() is used in the receive completion path to
retrieve the virtual address from the physical address.
It is obviously important to realize that the DMA address and physical
address are two different things, which is why we store both in the RX
descriptors. While those addresses may be identical in some situations,
it remains two distinct concepts, and both addresses should be handled
separately.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:04 +08:00
|
|
|
phys_addr_t phys_addr;
|
2020-07-02 22:12:41 +08:00
|
|
|
struct page_pool *pp = NULL;
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
void *buf;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
if (port->priv->percpu_pools &&
|
|
|
|
bm_pool->pkt_size > MVPP2_BM_LONG_PKT_SIZE) {
|
|
|
|
netdev_err(port->dev,
|
|
|
|
"attempted to use jumbo frames with per-cpu pools");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
buf_size = MVPP2_RX_BUF_SIZE(bm_pool->pkt_size);
|
|
|
|
total_size = MVPP2_RX_TOTAL_SIZE(buf_size);
|
|
|
|
|
|
|
|
if (buf_num < 0 ||
|
|
|
|
(buf_num + bm_pool->buf_num > bm_pool->size)) {
|
|
|
|
netdev_err(port->dev,
|
|
|
|
"cannot allocate %d buffers for pool %d\n",
|
|
|
|
buf_num, bm_pool->id);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:41 +08:00
|
|
|
if (port->priv->percpu_pools)
|
|
|
|
pp = port->priv->page_pool[bm_pool->id];
|
2014-07-11 03:52:13 +08:00
|
|
|
for (i = 0; i < buf_num; i++) {
|
2020-07-02 22:12:41 +08:00
|
|
|
buf = mvpp2_buf_alloc(port, bm_pool, pp, &dma_addr,
|
net: mvpp2: store physical address of buffer in rx_desc->buf_cookie
The RX descriptors of the PPv2 hardware allow to store several
information, amongst which:
- the DMA address of the buffer in which the data has been received
- a "cookie" field, left to the use of the driver, and not used by the
hardware
In the current implementation, the "cookie" field is used to store the
virtual address of the buffer, so that in the receive completion path,
we can easily get the virtual address of the buffer that corresponds to
a completed RX descriptors.
On PPv2.1, used on 32-bit platforms, those two fields are 32-bit wide,
which is enough to store a DMA address in the first field, and a virtual
address in the second field.
On PPv2.2, used on 64-bit platforms, these two fields have been extended
to 40 bits. While 40 bits is enough to store a DMA address (as long as
the DMA mask is 40 bits or lower), it is not enough to store a virtual
address. Therefore, the "cookie" field can no longer be used to store
the virtual address of the buffer.
However, as Russell King pointed out, the RX buffers are always
allocated in the kernel linear mapping, and therefore using
phys_to_virt() on the physical address of the RX buffer is possible and
correct.
Therefore, this commit changes the driver to use the "cookie" field to
store the physical address instead of the virtual
address. phys_to_virt() is used in the receive completion path to
retrieve the virtual address from the physical address.
It is obviously important to realize that the DMA address and physical
address are two different things, which is why we store both in the RX
descriptors. While those addresses may be identical in some situations,
it remains two distinct concepts, and both addresses should be handled
separately.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:04 +08:00
|
|
|
&phys_addr, GFP_KERNEL);
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
if (!buf)
|
2014-07-11 03:52:13 +08:00
|
|
|
break;
|
|
|
|
|
2017-03-07 23:53:00 +08:00
|
|
|
mvpp2_bm_pool_put(port, bm_pool->id, dma_addr,
|
net: mvpp2: store physical address of buffer in rx_desc->buf_cookie
The RX descriptors of the PPv2 hardware allow to store several
information, amongst which:
- the DMA address of the buffer in which the data has been received
- a "cookie" field, left to the use of the driver, and not used by the
hardware
In the current implementation, the "cookie" field is used to store the
virtual address of the buffer, so that in the receive completion path,
we can easily get the virtual address of the buffer that corresponds to
a completed RX descriptors.
On PPv2.1, used on 32-bit platforms, those two fields are 32-bit wide,
which is enough to store a DMA address in the first field, and a virtual
address in the second field.
On PPv2.2, used on 64-bit platforms, these two fields have been extended
to 40 bits. While 40 bits is enough to store a DMA address (as long as
the DMA mask is 40 bits or lower), it is not enough to store a virtual
address. Therefore, the "cookie" field can no longer be used to store
the virtual address of the buffer.
However, as Russell King pointed out, the RX buffers are always
allocated in the kernel linear mapping, and therefore using
phys_to_virt() on the physical address of the RX buffer is possible and
correct.
Therefore, this commit changes the driver to use the "cookie" field to
store the physical address instead of the virtual
address. phys_to_virt() is used in the receive completion path to
retrieve the virtual address from the physical address.
It is obviously important to realize that the DMA address and physical
address are two different things, which is why we store both in the RX
descriptors. While those addresses may be identical in some situations,
it remains two distinct concepts, and both addresses should be handled
separately.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:04 +08:00
|
|
|
phys_addr);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Update BM driver with number of buffers added to pool */
|
|
|
|
bm_pool->buf_num += i;
|
|
|
|
|
|
|
|
netdev_dbg(port->dev,
|
2018-03-05 22:16:50 +08:00
|
|
|
"pool %d: pkt_size=%4d, buf_size=%4d, total_size=%4d\n",
|
2014-07-11 03:52:13 +08:00
|
|
|
bm_pool->id, bm_pool->pkt_size, buf_size, total_size);
|
|
|
|
|
|
|
|
netdev_dbg(port->dev,
|
2018-03-05 22:16:50 +08:00
|
|
|
"pool %d: %d of %d buffers added\n",
|
2014-07-11 03:52:13 +08:00
|
|
|
bm_pool->id, i, buf_num);
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Notify the driver that BM pool is being used as specific type and return the
|
|
|
|
* pool pointer on success
|
|
|
|
*/
|
|
|
|
static struct mvpp2_bm_pool *
|
2018-03-05 22:16:50 +08:00
|
|
|
mvpp2_bm_pool_use(struct mvpp2_port *port, unsigned pool, int pkt_size)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
|
|
|
struct mvpp2_bm_pool *new_pool = &port->priv->bm_pools[pool];
|
|
|
|
int num;
|
|
|
|
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
if ((port->priv->percpu_pools && pool > mvpp2_get_nrxqs(port->priv) * 2) ||
|
|
|
|
(!port->priv->percpu_pools && pool >= MVPP2_BM_POOLS_NUM)) {
|
|
|
|
netdev_err(port->dev, "Invalid pool %d\n", pool);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate buffers in case BM pool is used as long pool, but packet
|
|
|
|
* size doesn't match MTU or BM pool hasn't being used yet
|
|
|
|
*/
|
|
|
|
if (new_pool->pkt_size == 0) {
|
|
|
|
int pkts_num;
|
|
|
|
|
|
|
|
/* Set default buffer number or free all the buffers in case
|
|
|
|
* the pool is not empty
|
|
|
|
*/
|
|
|
|
pkts_num = new_pool->buf_num;
|
|
|
|
if (pkts_num == 0) {
|
|
|
|
if (port->priv->percpu_pools) {
|
|
|
|
if (pool < port->nrxqs)
|
|
|
|
pkts_num = mvpp2_pools[MVPP2_BM_SHORT].buf_num;
|
|
|
|
else
|
|
|
|
pkts_num = mvpp2_pools[MVPP2_BM_LONG].buf_num;
|
|
|
|
} else {
|
|
|
|
pkts_num = mvpp2_pools[pool].buf_num;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mvpp2_bm_bufs_free(port->dev->dev.parent,
|
|
|
|
port->priv, new_pool, pkts_num);
|
|
|
|
}
|
|
|
|
|
|
|
|
new_pool->pkt_size = pkt_size;
|
|
|
|
new_pool->frag_size =
|
|
|
|
SKB_DATA_ALIGN(MVPP2_RX_BUF_SIZE(pkt_size)) +
|
|
|
|
MVPP2_SKB_SHINFO_SIZE;
|
|
|
|
|
|
|
|
/* Allocate buffers for this pool */
|
|
|
|
num = mvpp2_bm_bufs_add(port, new_pool, pkts_num);
|
|
|
|
if (num != pkts_num) {
|
|
|
|
WARN(1, "pool %d: %d of %d allocated\n",
|
|
|
|
new_pool->id, num, pkts_num);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mvpp2_bm_pool_bufsize_set(port->priv, new_pool,
|
|
|
|
MVPP2_RX_BUF_SIZE(new_pool->pkt_size));
|
|
|
|
|
|
|
|
return new_pool;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct mvpp2_bm_pool *
|
|
|
|
mvpp2_bm_pool_use_percpu(struct mvpp2_port *port, int type,
|
|
|
|
unsigned int pool, int pkt_size)
|
|
|
|
{
|
|
|
|
struct mvpp2_bm_pool *new_pool = &port->priv->bm_pools[pool];
|
|
|
|
int num;
|
|
|
|
|
|
|
|
if (pool > port->nrxqs * 2) {
|
2018-03-05 22:16:50 +08:00
|
|
|
netdev_err(port->dev, "Invalid pool %d\n", pool);
|
2014-07-11 03:52:13 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate buffers in case BM pool is used as long pool, but packet
|
|
|
|
* size doesn't match MTU or BM pool hasn't being used yet
|
|
|
|
*/
|
2018-03-05 22:16:50 +08:00
|
|
|
if (new_pool->pkt_size == 0) {
|
2014-07-11 03:52:13 +08:00
|
|
|
int pkts_num;
|
|
|
|
|
|
|
|
/* Set default buffer number or free all the buffers in case
|
|
|
|
* the pool is not empty
|
|
|
|
*/
|
|
|
|
pkts_num = new_pool->buf_num;
|
|
|
|
if (pkts_num == 0)
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
pkts_num = mvpp2_pools[type].buf_num;
|
2014-07-11 03:52:13 +08:00
|
|
|
else
|
2015-12-03 22:20:50 +08:00
|
|
|
mvpp2_bm_bufs_free(port->dev->dev.parent,
|
2018-03-05 22:16:51 +08:00
|
|
|
port->priv, new_pool, pkts_num);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
new_pool->pkt_size = pkt_size;
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
new_pool->frag_size =
|
|
|
|
SKB_DATA_ALIGN(MVPP2_RX_BUF_SIZE(pkt_size)) +
|
|
|
|
MVPP2_SKB_SHINFO_SIZE;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* Allocate buffers for this pool */
|
|
|
|
num = mvpp2_bm_bufs_add(port, new_pool, pkts_num);
|
|
|
|
if (num != pkts_num) {
|
|
|
|
WARN(1, "pool %d: %d of %d allocated\n",
|
|
|
|
new_pool->id, num, pkts_num);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mvpp2_bm_pool_bufsize_set(port->priv, new_pool,
|
|
|
|
MVPP2_RX_BUF_SIZE(new_pool->pkt_size));
|
|
|
|
|
|
|
|
return new_pool;
|
|
|
|
}
|
|
|
|
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
/* Initialize pools for swf, shared buffers variant */
|
|
|
|
static int mvpp2_swf_bm_pool_init_shared(struct mvpp2_port *port)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2018-03-05 22:16:54 +08:00
|
|
|
enum mvpp2_bm_pool_log_num long_log_pool, short_log_pool;
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
int rxq;
|
2018-03-05 22:16:54 +08:00
|
|
|
|
|
|
|
/* If port pkt_size is higher than 1518B:
|
|
|
|
* HW Long pool - SW Jumbo pool, HW Short pool - SW Long pool
|
|
|
|
* else: HW Long pool - SW Long pool, HW Short pool - SW Short pool
|
|
|
|
*/
|
|
|
|
if (port->pkt_size > MVPP2_BM_LONG_PKT_SIZE) {
|
|
|
|
long_log_pool = MVPP2_BM_JUMBO;
|
|
|
|
short_log_pool = MVPP2_BM_LONG;
|
|
|
|
} else {
|
|
|
|
long_log_pool = MVPP2_BM_LONG;
|
|
|
|
short_log_pool = MVPP2_BM_SHORT;
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
if (!port->pool_long) {
|
|
|
|
port->pool_long =
|
2018-03-05 22:16:54 +08:00
|
|
|
mvpp2_bm_pool_use(port, long_log_pool,
|
|
|
|
mvpp2_pools[long_log_pool].pkt_size);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (!port->pool_long)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2018-03-05 22:16:54 +08:00
|
|
|
port->pool_long->port_map |= BIT(port->id);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (rxq = 0; rxq < port->nrxqs; rxq++)
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_rxq_long_pool_set(port, rxq, port->pool_long->id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!port->pool_short) {
|
|
|
|
port->pool_short =
|
2018-03-05 22:16:54 +08:00
|
|
|
mvpp2_bm_pool_use(port, short_log_pool,
|
2018-03-22 01:31:15 +08:00
|
|
|
mvpp2_pools[short_log_pool].pkt_size);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (!port->pool_short)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2018-03-05 22:16:54 +08:00
|
|
|
port->pool_short->port_map |= BIT(port->id);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (rxq = 0; rxq < port->nrxqs; rxq++)
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_rxq_short_pool_set(port, rxq,
|
|
|
|
port->pool_short->id);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
/* Initialize pools for swf, percpu buffers variant */
|
|
|
|
static int mvpp2_swf_bm_pool_init_percpu(struct mvpp2_port *port)
|
|
|
|
{
|
2020-07-02 22:12:40 +08:00
|
|
|
struct mvpp2_bm_pool *bm_pool;
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < port->nrxqs; i++) {
|
2020-07-02 22:12:40 +08:00
|
|
|
bm_pool = mvpp2_bm_pool_use_percpu(port, MVPP2_BM_SHORT, i,
|
|
|
|
mvpp2_pools[MVPP2_BM_SHORT].pkt_size);
|
|
|
|
if (!bm_pool)
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2020-07-02 22:12:40 +08:00
|
|
|
bm_pool->port_map |= BIT(port->id);
|
|
|
|
mvpp2_rxq_short_pool_set(port, i, bm_pool->id);
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < port->nrxqs; i++) {
|
2020-07-02 22:12:40 +08:00
|
|
|
bm_pool = mvpp2_bm_pool_use_percpu(port, MVPP2_BM_LONG, i + port->nrxqs,
|
|
|
|
mvpp2_pools[MVPP2_BM_LONG].pkt_size);
|
|
|
|
if (!bm_pool)
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2020-07-02 22:12:40 +08:00
|
|
|
bm_pool->port_map |= BIT(port->id);
|
|
|
|
mvpp2_rxq_long_pool_set(port, i, bm_pool->id);
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
port->pool_long = NULL;
|
|
|
|
port->pool_short = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_swf_bm_pool_init(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
if (port->priv->percpu_pools)
|
|
|
|
return mvpp2_swf_bm_pool_init_percpu(port);
|
|
|
|
else
|
|
|
|
return mvpp2_swf_bm_pool_init_shared(port);
|
|
|
|
}
|
|
|
|
|
2019-07-29 01:35:49 +08:00
|
|
|
static void mvpp2_set_hw_csum(struct mvpp2_port *port,
|
|
|
|
enum mvpp2_bm_pool_log_num new_long_pool)
|
|
|
|
{
|
|
|
|
const netdev_features_t csums = NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
|
|
|
|
|
|
|
|
/* Update L4 checksum when jumbo enable/disable on port.
|
|
|
|
* Only port 0 supports hardware checksum offload due to
|
|
|
|
* the Tx FIFO size limitation.
|
|
|
|
* Also, don't set NETIF_F_HW_CSUM because L3_offset in TX descriptor
|
|
|
|
* has 7 bits, so the maximum L3 offset is 128.
|
|
|
|
*/
|
|
|
|
if (new_long_pool == MVPP2_BM_JUMBO && port->id != 0) {
|
|
|
|
port->dev->features &= ~csums;
|
|
|
|
port->dev->hw_features &= ~csums;
|
|
|
|
} else {
|
|
|
|
port->dev->features |= csums;
|
|
|
|
port->dev->hw_features |= csums;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
static int mvpp2_bm_update_mtu(struct net_device *dev, int mtu)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
2018-03-05 22:16:54 +08:00
|
|
|
enum mvpp2_bm_pool_log_num new_long_pool;
|
|
|
|
int pkt_size = MVPP2_RX_PKT_SIZE(mtu);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
if (port->priv->percpu_pools)
|
|
|
|
goto out_set;
|
|
|
|
|
2018-03-05 22:16:54 +08:00
|
|
|
/* If port MTU is higher than 1518B:
|
|
|
|
* HW Long pool - SW Jumbo pool, HW Short pool - SW Long pool
|
|
|
|
* else: HW Long pool - SW Long pool, HW Short pool - SW Short pool
|
|
|
|
*/
|
|
|
|
if (pkt_size > MVPP2_BM_LONG_PKT_SIZE)
|
|
|
|
new_long_pool = MVPP2_BM_JUMBO;
|
|
|
|
else
|
|
|
|
new_long_pool = MVPP2_BM_LONG;
|
|
|
|
|
|
|
|
if (new_long_pool != port->pool_long->id) {
|
2021-02-11 18:48:58 +08:00
|
|
|
if (port->tx_fc) {
|
|
|
|
if (pkt_size > MVPP2_BM_LONG_PKT_SIZE)
|
|
|
|
mvpp2_bm_pool_update_fc(port,
|
|
|
|
port->pool_short,
|
|
|
|
false);
|
|
|
|
else
|
|
|
|
mvpp2_bm_pool_update_fc(port, port->pool_long,
|
|
|
|
false);
|
|
|
|
}
|
|
|
|
|
2018-03-05 22:16:54 +08:00
|
|
|
/* Remove port from old short & long pool */
|
|
|
|
port->pool_long = mvpp2_bm_pool_use(port, port->pool_long->id,
|
|
|
|
port->pool_long->pkt_size);
|
|
|
|
port->pool_long->port_map &= ~BIT(port->id);
|
|
|
|
port->pool_long = NULL;
|
|
|
|
|
|
|
|
port->pool_short = mvpp2_bm_pool_use(port, port->pool_short->id,
|
|
|
|
port->pool_short->pkt_size);
|
|
|
|
port->pool_short->port_map &= ~BIT(port->id);
|
|
|
|
port->pool_short = NULL;
|
|
|
|
|
|
|
|
port->pkt_size = pkt_size;
|
|
|
|
|
|
|
|
/* Add port to new short & long pool */
|
|
|
|
mvpp2_swf_bm_pool_init(port);
|
|
|
|
|
2019-07-29 01:35:49 +08:00
|
|
|
mvpp2_set_hw_csum(port, new_long_pool);
|
2021-02-11 18:48:58 +08:00
|
|
|
|
|
|
|
if (port->tx_fc) {
|
|
|
|
if (pkt_size > MVPP2_BM_LONG_PKT_SIZE)
|
|
|
|
mvpp2_bm_pool_update_fc(port, port->pool_long,
|
|
|
|
true);
|
|
|
|
else
|
|
|
|
mvpp2_bm_pool_update_fc(port, port->pool_short,
|
|
|
|
true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update L4 checksum when jumbo enable/disable on port */
|
|
|
|
if (new_long_pool == MVPP2_BM_JUMBO && port->id != 0) {
|
|
|
|
dev->features &= ~(NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM);
|
|
|
|
dev->hw_features &= ~(NETIF_F_IP_CSUM |
|
|
|
|
NETIF_F_IPV6_CSUM);
|
|
|
|
} else {
|
|
|
|
dev->features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
|
|
|
|
dev->hw_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
out_set:
|
2014-07-11 03:52:13 +08:00
|
|
|
dev->mtu = mtu;
|
2018-03-05 22:16:54 +08:00
|
|
|
dev->wanted_features = dev->features;
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
netdev_update_features(dev);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void mvpp2_interrupts_enable(struct mvpp2_port *port)
|
|
|
|
{
|
2017-08-03 16:41:59 +08:00
|
|
|
int i, sw_thread_mask = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < port->nqvecs; i++)
|
|
|
|
sw_thread_mask |= port->qvecs[i].sw_thread_mask;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
mvpp2_write(port->priv, MVPP2_ISR_ENABLE_REG(port->id),
|
2017-08-03 16:41:59 +08:00
|
|
|
MVPP2_ISR_ENABLE_INTERRUPT(sw_thread_mask));
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void mvpp2_interrupts_disable(struct mvpp2_port *port)
|
|
|
|
{
|
2017-08-03 16:41:59 +08:00
|
|
|
int i, sw_thread_mask = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < port->nqvecs; i++)
|
|
|
|
sw_thread_mask |= port->qvecs[i].sw_thread_mask;
|
|
|
|
|
|
|
|
mvpp2_write(port->priv, MVPP2_ISR_ENABLE_REG(port->id),
|
|
|
|
MVPP2_ISR_DISABLE_INTERRUPT(sw_thread_mask));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void mvpp2_qvec_interrupt_enable(struct mvpp2_queue_vector *qvec)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = qvec->port;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
mvpp2_write(port->priv, MVPP2_ISR_ENABLE_REG(port->id),
|
2017-08-03 16:41:59 +08:00
|
|
|
MVPP2_ISR_ENABLE_INTERRUPT(qvec->sw_thread_mask));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void mvpp2_qvec_interrupt_disable(struct mvpp2_queue_vector *qvec)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = qvec->port;
|
|
|
|
|
|
|
|
mvpp2_write(port->priv, MVPP2_ISR_ENABLE_REG(port->id),
|
|
|
|
MVPP2_ISR_DISABLE_INTERRUPT(qvec->sw_thread_mask));
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2018-09-19 17:27:08 +08:00
|
|
|
/* Mask the current thread's Rx/Tx interrupts
|
2017-06-22 20:23:18 +08:00
|
|
|
* Called by on_each_cpu(), guaranteed to run with migration disabled,
|
|
|
|
* using smp_processor_id() is OK.
|
|
|
|
*/
|
2014-07-11 03:52:13 +08:00
|
|
|
static void mvpp2_interrupts_mask(void *arg)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = arg;
|
2021-02-11 18:48:55 +08:00
|
|
|
int cpu = smp_processor_id();
|
|
|
|
u32 thread;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
/* If the thread isn't used, don't do anything */
|
2021-02-11 18:48:55 +08:00
|
|
|
if (cpu > port->priv->nthreads)
|
2018-09-19 17:27:10 +08:00
|
|
|
return;
|
|
|
|
|
2021-02-11 18:48:55 +08:00
|
|
|
thread = mvpp2_cpu_to_thread(port->priv, cpu);
|
|
|
|
|
|
|
|
mvpp2_thread_write(port->priv, thread,
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
MVPP2_ISR_RX_TX_MASK_REG(port->id), 0);
|
2021-02-11 18:48:55 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread,
|
|
|
|
MVPP2_ISR_RX_ERR_CAUSE_REG(port->id), 0);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2018-09-19 17:27:08 +08:00
|
|
|
/* Unmask the current thread's Rx/Tx interrupts.
|
2017-06-22 20:23:18 +08:00
|
|
|
* Called by on_each_cpu(), guaranteed to run with migration disabled,
|
|
|
|
* using smp_processor_id() is OK.
|
|
|
|
*/
|
2014-07-11 03:52:13 +08:00
|
|
|
static void mvpp2_interrupts_unmask(void *arg)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = arg;
|
2021-02-11 18:48:55 +08:00
|
|
|
int cpu = smp_processor_id();
|
|
|
|
u32 val, thread;
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
/* If the thread isn't used, don't do anything */
|
2021-02-11 23:13:19 +08:00
|
|
|
if (cpu >= port->priv->nthreads)
|
2018-09-19 17:27:10 +08:00
|
|
|
return;
|
|
|
|
|
2021-02-11 18:48:55 +08:00
|
|
|
thread = mvpp2_cpu_to_thread(port->priv, cpu);
|
|
|
|
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
val = MVPP2_CAUSE_MISC_SUM_MASK |
|
2018-09-19 17:27:04 +08:00
|
|
|
MVPP2_CAUSE_RXQ_OCCUP_DESC_ALL_MASK(port->priv->hw_version);
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
if (port->has_tx_irqs)
|
|
|
|
val |= MVPP2_CAUSE_TXQ_OCCUP_DESC_ALL_MASK;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2021-02-11 18:48:55 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread,
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
MVPP2_ISR_RX_TX_MASK_REG(port->id), val);
|
2021-02-11 18:48:55 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread,
|
|
|
|
MVPP2_ISR_RX_ERR_CAUSE_REG(port->id),
|
|
|
|
MVPP2_ISR_RX_ERR_CAUSE_NONOCC_MASK);
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mvpp2_shared_interrupt_mask_unmask(struct mvpp2_port *port, bool mask)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
int i;
|
|
|
|
|
2021-02-11 18:48:51 +08:00
|
|
|
if (port->priv->hw_version == MVPP21)
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (mask)
|
|
|
|
val = 0;
|
|
|
|
else
|
2018-09-19 17:27:04 +08:00
|
|
|
val = MVPP2_CAUSE_RXQ_OCCUP_DESC_ALL_MASK(MVPP22);
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
|
|
|
|
for (i = 0; i < port->nqvecs; i++) {
|
|
|
|
struct mvpp2_queue_vector *v = port->qvecs + i;
|
|
|
|
|
|
|
|
if (v->type != MVPP2_QUEUE_VECTOR_SHARED)
|
|
|
|
continue;
|
|
|
|
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write(port->priv, v->sw_thread_id,
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
MVPP2_ISR_RX_TX_MASK_REG(port->id), val);
|
2021-02-11 18:48:55 +08:00
|
|
|
mvpp2_thread_write(port->priv, v->sw_thread_id,
|
|
|
|
MVPP2_ISR_RX_ERR_CAUSE_REG(port->id),
|
|
|
|
MVPP2_ISR_RX_ERR_CAUSE_NONOCC_MASK);
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2020-06-20 17:21:26 +08:00
|
|
|
/* Only GOP port 0 has an XLG MAC */
|
|
|
|
static bool mvpp2_port_supports_xlg(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
return port->gop_id == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool mvpp2_port_supports_rgmii(struct mvpp2_port *port)
|
|
|
|
{
|
2021-02-14 21:38:35 +08:00
|
|
|
return !(port->priv->hw_version >= MVPP22 && port->gop_id == 0);
|
2020-06-20 17:21:26 +08:00
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Port configuration routines */
|
2019-02-11 18:23:10 +08:00
|
|
|
static bool mvpp2_is_xlg(phy_interface_t interface)
|
|
|
|
{
|
2020-01-04 04:43:23 +08:00
|
|
|
return interface == PHY_INTERFACE_MODE_10GBASER ||
|
2019-02-11 18:23:10 +08:00
|
|
|
interface == PHY_INTERFACE_MODE_XAUI;
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2020-06-20 17:21:37 +08:00
|
|
|
static void mvpp2_modify(void __iomem *ptr, u32 mask, u32 set)
|
|
|
|
{
|
|
|
|
u32 old, val;
|
|
|
|
|
|
|
|
old = val = readl(ptr);
|
|
|
|
val &= ~mask;
|
|
|
|
val |= set;
|
|
|
|
if (old != val)
|
|
|
|
writel(val, ptr);
|
|
|
|
}
|
|
|
|
|
2017-08-23 01:08:27 +08:00
|
|
|
static void mvpp22_gop_init_rgmii(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
struct mvpp2 *priv = port->priv;
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
regmap_read(priv->sysctrl_base, GENCONF_PORT_CTRL0, &val);
|
|
|
|
val |= GENCONF_PORT_CTRL0_BUS_WIDTH_SELECT;
|
|
|
|
regmap_write(priv->sysctrl_base, GENCONF_PORT_CTRL0, val);
|
|
|
|
|
|
|
|
regmap_read(priv->sysctrl_base, GENCONF_CTRL0, &val);
|
|
|
|
if (port->gop_id == 2)
|
2021-02-14 21:38:37 +08:00
|
|
|
val |= GENCONF_CTRL0_PORT2_RGMII;
|
2017-08-23 01:08:27 +08:00
|
|
|
else if (port->gop_id == 3)
|
2021-02-14 21:38:37 +08:00
|
|
|
val |= GENCONF_CTRL0_PORT3_RGMII_MII;
|
2017-08-23 01:08:27 +08:00
|
|
|
regmap_write(priv->sysctrl_base, GENCONF_CTRL0, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp22_gop_init_sgmii(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
struct mvpp2 *priv = port->priv;
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
regmap_read(priv->sysctrl_base, GENCONF_PORT_CTRL0, &val);
|
|
|
|
val |= GENCONF_PORT_CTRL0_BUS_WIDTH_SELECT |
|
|
|
|
GENCONF_PORT_CTRL0_RX_DATA_SAMPLE;
|
|
|
|
regmap_write(priv->sysctrl_base, GENCONF_PORT_CTRL0, val);
|
|
|
|
|
|
|
|
if (port->gop_id > 1) {
|
|
|
|
regmap_read(priv->sysctrl_base, GENCONF_CTRL0, &val);
|
|
|
|
if (port->gop_id == 2)
|
2021-02-14 21:38:37 +08:00
|
|
|
val &= ~GENCONF_CTRL0_PORT2_RGMII;
|
2017-08-23 01:08:27 +08:00
|
|
|
else if (port->gop_id == 3)
|
2021-02-14 21:38:37 +08:00
|
|
|
val &= ~GENCONF_CTRL0_PORT3_RGMII_MII;
|
2017-08-23 01:08:27 +08:00
|
|
|
regmap_write(priv->sysctrl_base, GENCONF_CTRL0, val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp22_gop_init_10gkr(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
struct mvpp2 *priv = port->priv;
|
|
|
|
void __iomem *mpcs = priv->iface_base + MVPP22_MPCS_BASE(port->gop_id);
|
|
|
|
void __iomem *xpcs = priv->iface_base + MVPP22_XPCS_BASE(port->gop_id);
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
val = readl(xpcs + MVPP22_XPCS_CFG0);
|
|
|
|
val &= ~(MVPP22_XPCS_CFG0_PCS_MODE(0x3) |
|
|
|
|
MVPP22_XPCS_CFG0_ACTIVE_LANE(0x3));
|
|
|
|
val |= MVPP22_XPCS_CFG0_ACTIVE_LANE(2);
|
|
|
|
writel(val, xpcs + MVPP22_XPCS_CFG0);
|
|
|
|
|
|
|
|
val = readl(mpcs + MVPP22_MPCS_CTRL);
|
|
|
|
val &= ~MVPP22_MPCS_CTRL_FWD_ERR_CONN;
|
|
|
|
writel(val, mpcs + MVPP22_MPCS_CTRL);
|
|
|
|
|
|
|
|
val = readl(mpcs + MVPP22_MPCS_CLK_RESET);
|
2019-03-01 18:52:16 +08:00
|
|
|
val &= ~MVPP22_MPCS_CLK_RESET_DIV_RATIO(0x7);
|
2017-08-23 01:08:27 +08:00
|
|
|
val |= MVPP22_MPCS_CLK_RESET_DIV_RATIO(1);
|
|
|
|
writel(val, mpcs + MVPP22_MPCS_CLK_RESET);
|
|
|
|
}
|
|
|
|
|
2021-02-11 18:48:54 +08:00
|
|
|
static void mvpp22_gop_fca_enable_periodic(struct mvpp2_port *port, bool en)
|
|
|
|
{
|
|
|
|
struct mvpp2 *priv = port->priv;
|
|
|
|
void __iomem *fca = priv->iface_base + MVPP22_FCA_BASE(port->gop_id);
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
val = readl(fca + MVPP22_FCA_CONTROL_REG);
|
|
|
|
val &= ~MVPP22_FCA_ENABLE_PERIODIC;
|
|
|
|
if (en)
|
|
|
|
val |= MVPP22_FCA_ENABLE_PERIODIC;
|
|
|
|
writel(val, fca + MVPP22_FCA_CONTROL_REG);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp22_gop_fca_set_timer(struct mvpp2_port *port, u32 timer)
|
|
|
|
{
|
|
|
|
struct mvpp2 *priv = port->priv;
|
|
|
|
void __iomem *fca = priv->iface_base + MVPP22_FCA_BASE(port->gop_id);
|
|
|
|
u32 lsb, msb;
|
|
|
|
|
|
|
|
lsb = timer & MVPP22_FCA_REG_MASK;
|
|
|
|
msb = timer >> MVPP22_FCA_REG_SIZE;
|
|
|
|
|
|
|
|
writel(lsb, fca + MVPP22_PERIODIC_COUNTER_LSB_REG);
|
|
|
|
writel(msb, fca + MVPP22_PERIODIC_COUNTER_MSB_REG);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set Flow Control timer x100 faster than pause quanta to ensure that link
|
|
|
|
* partner won't send traffic if port is in XOFF mode.
|
|
|
|
*/
|
|
|
|
static void mvpp22_gop_fca_set_periodic_timer(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
u32 timer;
|
|
|
|
|
|
|
|
timer = (port->priv->tclk / (USEC_PER_SEC * FC_CLK_DIVIDER))
|
|
|
|
* FC_QUANTA;
|
|
|
|
|
|
|
|
mvpp22_gop_fca_enable_periodic(port, false);
|
|
|
|
|
|
|
|
mvpp22_gop_fca_set_timer(port, timer);
|
|
|
|
|
|
|
|
mvpp22_gop_fca_enable_periodic(port, true);
|
|
|
|
}
|
|
|
|
|
2017-08-23 01:08:27 +08:00
|
|
|
static int mvpp22_gop_init(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
struct mvpp2 *priv = port->priv;
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
if (!priv->sysctrl_base)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch (port->phy_interface) {
|
|
|
|
case PHY_INTERFACE_MODE_RGMII:
|
|
|
|
case PHY_INTERFACE_MODE_RGMII_ID:
|
|
|
|
case PHY_INTERFACE_MODE_RGMII_RXID:
|
|
|
|
case PHY_INTERFACE_MODE_RGMII_TXID:
|
2020-06-20 17:21:26 +08:00
|
|
|
if (!mvpp2_port_supports_rgmii(port))
|
2017-08-23 01:08:27 +08:00
|
|
|
goto invalid_conf;
|
|
|
|
mvpp22_gop_init_rgmii(port);
|
|
|
|
break;
|
|
|
|
case PHY_INTERFACE_MODE_SGMII:
|
2018-05-17 16:29:34 +08:00
|
|
|
case PHY_INTERFACE_MODE_1000BASEX:
|
2018-05-17 16:29:35 +08:00
|
|
|
case PHY_INTERFACE_MODE_2500BASEX:
|
2017-08-23 01:08:27 +08:00
|
|
|
mvpp22_gop_init_sgmii(port);
|
|
|
|
break;
|
2020-01-04 04:43:23 +08:00
|
|
|
case PHY_INTERFACE_MODE_10GBASER:
|
2020-06-20 17:21:26 +08:00
|
|
|
if (!mvpp2_port_supports_xlg(port))
|
2017-08-23 01:08:27 +08:00
|
|
|
goto invalid_conf;
|
|
|
|
mvpp22_gop_init_10gkr(port);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto unsupported_conf;
|
|
|
|
}
|
|
|
|
|
|
|
|
regmap_read(priv->sysctrl_base, GENCONF_PORT_CTRL1, &val);
|
|
|
|
val |= GENCONF_PORT_CTRL1_RESET(port->gop_id) |
|
|
|
|
GENCONF_PORT_CTRL1_EN(port->gop_id);
|
|
|
|
regmap_write(priv->sysctrl_base, GENCONF_PORT_CTRL1, val);
|
|
|
|
|
|
|
|
regmap_read(priv->sysctrl_base, GENCONF_PORT_CTRL0, &val);
|
|
|
|
val |= GENCONF_PORT_CTRL0_CLK_DIV_PHASE_CLR;
|
|
|
|
regmap_write(priv->sysctrl_base, GENCONF_PORT_CTRL0, val);
|
|
|
|
|
|
|
|
regmap_read(priv->sysctrl_base, GENCONF_SOFT_RESET1, &val);
|
|
|
|
val |= GENCONF_SOFT_RESET1_GOP;
|
|
|
|
regmap_write(priv->sysctrl_base, GENCONF_SOFT_RESET1, val);
|
|
|
|
|
2021-02-11 18:48:54 +08:00
|
|
|
mvpp22_gop_fca_set_periodic_timer(port);
|
|
|
|
|
2017-08-23 01:08:27 +08:00
|
|
|
unsupported_conf:
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
invalid_conf:
|
|
|
|
netdev_err(port->dev, "Invalid port configuration\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2017-09-01 17:04:54 +08:00
|
|
|
static void mvpp22_gop_unmask_irq(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
if (phy_interface_mode_is_rgmii(port->phy_interface) ||
|
2019-02-05 07:35:54 +08:00
|
|
|
phy_interface_mode_is_8023z(port->phy_interface) ||
|
|
|
|
port->phy_interface == PHY_INTERFACE_MODE_SGMII) {
|
2017-09-01 17:04:54 +08:00
|
|
|
/* Enable the GMAC link status irq for this port */
|
|
|
|
val = readl(port->base + MVPP22_GMAC_INT_SUM_MASK);
|
|
|
|
val |= MVPP22_GMAC_INT_SUM_MASK_LINK_STAT;
|
|
|
|
writel(val, port->base + MVPP22_GMAC_INT_SUM_MASK);
|
|
|
|
}
|
|
|
|
|
2020-06-20 17:21:26 +08:00
|
|
|
if (mvpp2_port_supports_xlg(port)) {
|
2017-09-01 17:04:54 +08:00
|
|
|
/* Enable the XLG/GIG irqs for this port */
|
|
|
|
val = readl(port->base + MVPP22_XLG_EXT_INT_MASK);
|
2019-02-11 18:23:15 +08:00
|
|
|
if (mvpp2_is_xlg(port->phy_interface))
|
2017-09-01 17:04:54 +08:00
|
|
|
val |= MVPP22_XLG_EXT_INT_MASK_XLG;
|
|
|
|
else
|
|
|
|
val |= MVPP22_XLG_EXT_INT_MASK_GIG;
|
|
|
|
writel(val, port->base + MVPP22_XLG_EXT_INT_MASK);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp22_gop_mask_irq(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
2020-06-20 17:21:26 +08:00
|
|
|
if (mvpp2_port_supports_xlg(port)) {
|
2017-09-01 17:04:54 +08:00
|
|
|
val = readl(port->base + MVPP22_XLG_EXT_INT_MASK);
|
|
|
|
val &= ~(MVPP22_XLG_EXT_INT_MASK_XLG |
|
2018-05-18 20:34:51 +08:00
|
|
|
MVPP22_XLG_EXT_INT_MASK_GIG);
|
2017-09-01 17:04:54 +08:00
|
|
|
writel(val, port->base + MVPP22_XLG_EXT_INT_MASK);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (phy_interface_mode_is_rgmii(port->phy_interface) ||
|
2019-02-05 07:35:54 +08:00
|
|
|
phy_interface_mode_is_8023z(port->phy_interface) ||
|
|
|
|
port->phy_interface == PHY_INTERFACE_MODE_SGMII) {
|
2017-09-01 17:04:54 +08:00
|
|
|
val = readl(port->base + MVPP22_GMAC_INT_SUM_MASK);
|
|
|
|
val &= ~MVPP22_GMAC_INT_SUM_MASK_LINK_STAT;
|
|
|
|
writel(val, port->base + MVPP22_GMAC_INT_SUM_MASK);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp22_gop_setup_irq(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
2020-09-10 00:26:00 +08:00
|
|
|
mvpp2_modify(port->base + MVPP22_GMAC_INT_SUM_MASK,
|
|
|
|
MVPP22_GMAC_INT_SUM_MASK_PTP,
|
|
|
|
MVPP22_GMAC_INT_SUM_MASK_PTP);
|
|
|
|
|
net: marvell: mvpp2: fix lack of link interrupts
Sven Auhagen reports that if he changes a SFP+ module for a SFP module
on the Macchiatobin Single Shot, the link does not come back up. For
Sven, it is as easy as:
- Insert a SFP+ module connected, and use ping6 to verify link is up.
- Remove SFP+ module
- Insert SFP 1000base-X module use ping6 to verify link is up: Link
up event did not trigger and the link is down
but that doesn't show the problem for me. Locally, this has been
reproduced by:
- Boot with no modules.
- Insert SFP+ module, confirm link is up.
- Replace module with 25000base-X module. Confirm link is up.
- Set remote end down, link is reported as dropped at both ends.
- Set remote end up, link is reported up at remote end, but not local
end due to lack of link interrupt.
Fix this by setting up both GMAC and XLG interrupts for port 0, but
only unmasking the appropriate interrupt according to the current mode
set in the mac_config() method. However, only do the mask/unmask
dance when we are really changing the link mode to avoid missing any
link interrupts.
Tested-by: Sven Auhagen <sven.auhagen@voleatech.de>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-02-05 07:35:59 +08:00
|
|
|
if (port->phylink ||
|
|
|
|
phy_interface_mode_is_rgmii(port->phy_interface) ||
|
2019-02-05 07:35:54 +08:00
|
|
|
phy_interface_mode_is_8023z(port->phy_interface) ||
|
|
|
|
port->phy_interface == PHY_INTERFACE_MODE_SGMII) {
|
2017-09-01 17:04:54 +08:00
|
|
|
val = readl(port->base + MVPP22_GMAC_INT_MASK);
|
|
|
|
val |= MVPP22_GMAC_INT_MASK_LINK_STAT;
|
|
|
|
writel(val, port->base + MVPP22_GMAC_INT_MASK);
|
|
|
|
}
|
|
|
|
|
2020-06-20 17:21:26 +08:00
|
|
|
if (mvpp2_port_supports_xlg(port)) {
|
2017-09-01 17:04:54 +08:00
|
|
|
val = readl(port->base + MVPP22_XLG_INT_MASK);
|
|
|
|
val |= MVPP22_XLG_INT_MASK_LINK;
|
|
|
|
writel(val, port->base + MVPP22_XLG_INT_MASK);
|
2020-09-10 00:26:00 +08:00
|
|
|
|
|
|
|
mvpp2_modify(port->base + MVPP22_XLG_EXT_INT_MASK,
|
|
|
|
MVPP22_XLG_EXT_INT_MASK_PTP,
|
|
|
|
MVPP22_XLG_EXT_INT_MASK_PTP);
|
2017-09-01 17:04:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
mvpp22_gop_unmask_irq(port);
|
|
|
|
}
|
|
|
|
|
2018-05-17 16:29:35 +08:00
|
|
|
/* Sets the PHY mode of the COMPHY (which configures the serdes lanes).
|
|
|
|
*
|
|
|
|
* The PHY mode used by the PPv2 driver comes from the network subsystem, while
|
|
|
|
* the one given to the COMPHY comes from the generic PHY subsystem. Hence they
|
|
|
|
* differ.
|
|
|
|
*
|
|
|
|
* The COMPHY configures the serdes lanes regardless of the actual use of the
|
|
|
|
* lanes by the physical layer. This is why configurations like
|
|
|
|
* "PPv2 (2500BaseX) - COMPHY (2500SGMII)" are valid.
|
|
|
|
*/
|
2017-08-30 16:29:15 +08:00
|
|
|
static int mvpp22_comphy_init(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!port->comphy)
|
|
|
|
return 0;
|
|
|
|
|
2018-11-20 09:24:23 +08:00
|
|
|
ret = phy_set_mode_ext(port->comphy, PHY_MODE_ETHERNET,
|
|
|
|
port->phy_interface);
|
2017-08-30 16:29:15 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return phy_power_on(port->comphy);
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
static void mvpp2_port_enable(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
2020-06-20 17:21:26 +08:00
|
|
|
if (mvpp2_port_supports_xlg(port) &&
|
|
|
|
mvpp2_is_xlg(port->phy_interface)) {
|
2017-06-12 22:01:39 +08:00
|
|
|
val = readl(port->base + MVPP22_XLG_CTRL0_REG);
|
2019-03-01 18:52:14 +08:00
|
|
|
val |= MVPP22_XLG_CTRL0_PORT_EN;
|
2017-06-12 22:01:39 +08:00
|
|
|
val &= ~MVPP22_XLG_CTRL0_MIB_CNT_DIS;
|
|
|
|
writel(val, port->base + MVPP22_XLG_CTRL0_REG);
|
|
|
|
} else {
|
|
|
|
val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
|
|
|
|
val |= MVPP2_GMAC_PORT_EN_MASK;
|
|
|
|
val |= MVPP2_GMAC_MIB_CNTR_EN_MASK;
|
|
|
|
writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp2_port_disable(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
2020-06-20 17:21:26 +08:00
|
|
|
if (mvpp2_port_supports_xlg(port) &&
|
|
|
|
mvpp2_is_xlg(port->phy_interface)) {
|
2017-06-12 22:01:39 +08:00
|
|
|
val = readl(port->base + MVPP22_XLG_CTRL0_REG);
|
2018-05-17 16:29:31 +08:00
|
|
|
val &= ~MVPP22_XLG_CTRL0_PORT_EN;
|
|
|
|
writel(val, port->base + MVPP22_XLG_CTRL0_REG);
|
2017-06-12 22:01:39 +08:00
|
|
|
}
|
2019-03-01 18:52:11 +08:00
|
|
|
|
|
|
|
val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
|
|
|
|
val &= ~(MVPP2_GMAC_PORT_EN_MASK);
|
|
|
|
writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set IEEE 802.3x Flow Control Xon Packet Transmission Mode */
|
|
|
|
static void mvpp2_port_periodic_xon_disable(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
val = readl(port->base + MVPP2_GMAC_CTRL_1_REG) &
|
|
|
|
~MVPP2_GMAC_PERIODIC_XON_EN_MASK;
|
|
|
|
writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Configure loopback port */
|
2018-05-17 16:29:31 +08:00
|
|
|
static void mvpp2_port_loopback_set(struct mvpp2_port *port,
|
|
|
|
const struct phylink_link_state *state)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
val = readl(port->base + MVPP2_GMAC_CTRL_1_REG);
|
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
if (state->speed == 1000)
|
2014-07-11 03:52:13 +08:00
|
|
|
val |= MVPP2_GMAC_GMII_LB_EN_MASK;
|
|
|
|
else
|
|
|
|
val &= ~MVPP2_GMAC_GMII_LB_EN_MASK;
|
|
|
|
|
2020-09-01 21:48:32 +08:00
|
|
|
if (phy_interface_mode_is_8023z(state->interface) ||
|
|
|
|
state->interface == PHY_INTERFACE_MODE_SGMII)
|
2014-07-11 03:52:13 +08:00
|
|
|
val |= MVPP2_GMAC_PCS_LB_EN_MASK;
|
|
|
|
else
|
|
|
|
val &= ~MVPP2_GMAC_PCS_LB_EN_MASK;
|
|
|
|
|
|
|
|
writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
|
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:44 +08:00
|
|
|
enum {
|
|
|
|
ETHTOOL_XDP_REDIRECT,
|
|
|
|
ETHTOOL_XDP_PASS,
|
|
|
|
ETHTOOL_XDP_DROP,
|
|
|
|
ETHTOOL_XDP_TX,
|
|
|
|
ETHTOOL_XDP_TX_ERR,
|
|
|
|
ETHTOOL_XDP_XMIT,
|
|
|
|
ETHTOOL_XDP_XMIT_ERR,
|
|
|
|
};
|
|
|
|
|
2017-11-07 05:56:53 +08:00
|
|
|
struct mvpp2_ethtool_counter {
|
|
|
|
unsigned int offset;
|
|
|
|
const char string[ETH_GSTRING_LEN];
|
|
|
|
bool reg_is_64b;
|
|
|
|
};
|
|
|
|
|
|
|
|
static u64 mvpp2_read_count(struct mvpp2_port *port,
|
|
|
|
const struct mvpp2_ethtool_counter *counter)
|
|
|
|
{
|
|
|
|
u64 val;
|
|
|
|
|
|
|
|
val = readl(port->stats_base + counter->offset);
|
|
|
|
if (counter->reg_is_64b)
|
|
|
|
val += (u64)readl(port->stats_base + counter->offset + 4) << 32;
|
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2019-06-10 16:55:29 +08:00
|
|
|
/* Some counters are accessed indirectly by first writing an index to
|
|
|
|
* MVPP2_CTRS_IDX. The index can represent various resources depending on the
|
|
|
|
* register we access, it can be a hit counter for some classification tables,
|
|
|
|
* a counter specific to a rxq, a txq or a buffer pool.
|
|
|
|
*/
|
|
|
|
static u32 mvpp2_read_index(struct mvpp2 *priv, u32 index, u32 reg)
|
|
|
|
{
|
|
|
|
mvpp2_write(priv, MVPP2_CTRS_IDX, index);
|
|
|
|
return mvpp2_read(priv, reg);
|
|
|
|
}
|
|
|
|
|
2017-11-07 05:56:53 +08:00
|
|
|
/* Due to the fact that software statistics and hardware statistics are, by
|
|
|
|
* design, incremented at different moments in the chain of packet processing,
|
|
|
|
* it is very likely that incoming packets could have been dropped after being
|
|
|
|
* counted by hardware but before reaching software statistics (most probably
|
|
|
|
* multicast packets), and in the oppposite way, during transmission, FCS bytes
|
|
|
|
* are added in between as well as TSO skb will be split and header bytes added.
|
|
|
|
* Hence, statistics gathered from userspace with ifconfig (software) and
|
|
|
|
* ethtool (hardware) cannot be compared.
|
|
|
|
*/
|
2019-06-10 16:55:28 +08:00
|
|
|
static const struct mvpp2_ethtool_counter mvpp2_ethtool_mib_regs[] = {
|
2017-11-07 05:56:53 +08:00
|
|
|
{ MVPP2_MIB_GOOD_OCTETS_RCVD, "good_octets_received", true },
|
|
|
|
{ MVPP2_MIB_BAD_OCTETS_RCVD, "bad_octets_received" },
|
|
|
|
{ MVPP2_MIB_CRC_ERRORS_SENT, "crc_errors_sent" },
|
|
|
|
{ MVPP2_MIB_UNICAST_FRAMES_RCVD, "unicast_frames_received" },
|
|
|
|
{ MVPP2_MIB_BROADCAST_FRAMES_RCVD, "broadcast_frames_received" },
|
|
|
|
{ MVPP2_MIB_MULTICAST_FRAMES_RCVD, "multicast_frames_received" },
|
|
|
|
{ MVPP2_MIB_FRAMES_64_OCTETS, "frames_64_octets" },
|
|
|
|
{ MVPP2_MIB_FRAMES_65_TO_127_OCTETS, "frames_65_to_127_octet" },
|
|
|
|
{ MVPP2_MIB_FRAMES_128_TO_255_OCTETS, "frames_128_to_255_octet" },
|
|
|
|
{ MVPP2_MIB_FRAMES_256_TO_511_OCTETS, "frames_256_to_511_octet" },
|
|
|
|
{ MVPP2_MIB_FRAMES_512_TO_1023_OCTETS, "frames_512_to_1023_octet" },
|
|
|
|
{ MVPP2_MIB_FRAMES_1024_TO_MAX_OCTETS, "frames_1024_to_max_octet" },
|
|
|
|
{ MVPP2_MIB_GOOD_OCTETS_SENT, "good_octets_sent", true },
|
|
|
|
{ MVPP2_MIB_UNICAST_FRAMES_SENT, "unicast_frames_sent" },
|
|
|
|
{ MVPP2_MIB_MULTICAST_FRAMES_SENT, "multicast_frames_sent" },
|
|
|
|
{ MVPP2_MIB_BROADCAST_FRAMES_SENT, "broadcast_frames_sent" },
|
|
|
|
{ MVPP2_MIB_FC_SENT, "fc_sent" },
|
|
|
|
{ MVPP2_MIB_FC_RCVD, "fc_received" },
|
|
|
|
{ MVPP2_MIB_RX_FIFO_OVERRUN, "rx_fifo_overrun" },
|
|
|
|
{ MVPP2_MIB_UNDERSIZE_RCVD, "undersize_received" },
|
|
|
|
{ MVPP2_MIB_FRAGMENTS_RCVD, "fragments_received" },
|
|
|
|
{ MVPP2_MIB_OVERSIZE_RCVD, "oversize_received" },
|
|
|
|
{ MVPP2_MIB_JABBER_RCVD, "jabber_received" },
|
|
|
|
{ MVPP2_MIB_MAC_RCV_ERROR, "mac_receive_error" },
|
|
|
|
{ MVPP2_MIB_BAD_CRC_EVENT, "bad_crc_event" },
|
|
|
|
{ MVPP2_MIB_COLLISION, "collision" },
|
|
|
|
{ MVPP2_MIB_LATE_COLLISION, "late_collision" },
|
|
|
|
};
|
|
|
|
|
2019-06-10 16:55:29 +08:00
|
|
|
static const struct mvpp2_ethtool_counter mvpp2_ethtool_port_regs[] = {
|
|
|
|
{ MVPP2_OVERRUN_ETH_DROP, "rx_fifo_or_parser_overrun_drops" },
|
|
|
|
{ MVPP2_CLS_ETH_DROP, "rx_classifier_drops" },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct mvpp2_ethtool_counter mvpp2_ethtool_txq_regs[] = {
|
|
|
|
{ MVPP2_TX_DESC_ENQ_CTR, "txq_%d_desc_enqueue" },
|
|
|
|
{ MVPP2_TX_DESC_ENQ_TO_DDR_CTR, "txq_%d_desc_enqueue_to_ddr" },
|
|
|
|
{ MVPP2_TX_BUFF_ENQ_TO_DDR_CTR, "txq_%d_buff_euqueue_to_ddr" },
|
|
|
|
{ MVPP2_TX_DESC_ENQ_HW_FWD_CTR, "txq_%d_desc_hardware_forwarded" },
|
|
|
|
{ MVPP2_TX_PKTS_DEQ_CTR, "txq_%d_packets_dequeued" },
|
|
|
|
{ MVPP2_TX_PKTS_FULL_QUEUE_DROP_CTR, "txq_%d_queue_full_drops" },
|
|
|
|
{ MVPP2_TX_PKTS_EARLY_DROP_CTR, "txq_%d_packets_early_drops" },
|
|
|
|
{ MVPP2_TX_PKTS_BM_DROP_CTR, "txq_%d_packets_bm_drops" },
|
|
|
|
{ MVPP2_TX_PKTS_BM_MC_DROP_CTR, "txq_%d_packets_rep_bm_drops" },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct mvpp2_ethtool_counter mvpp2_ethtool_rxq_regs[] = {
|
|
|
|
{ MVPP2_RX_DESC_ENQ_CTR, "rxq_%d_desc_enqueue" },
|
|
|
|
{ MVPP2_RX_PKTS_FULL_QUEUE_DROP_CTR, "rxq_%d_queue_full_drops" },
|
|
|
|
{ MVPP2_RX_PKTS_EARLY_DROP_CTR, "rxq_%d_packets_early_drops" },
|
|
|
|
{ MVPP2_RX_PKTS_BM_DROP_CTR, "rxq_%d_packets_bm_drops" },
|
|
|
|
};
|
|
|
|
|
2020-07-02 22:12:44 +08:00
|
|
|
static const struct mvpp2_ethtool_counter mvpp2_ethtool_xdp[] = {
|
|
|
|
{ ETHTOOL_XDP_REDIRECT, "rx_xdp_redirect", },
|
|
|
|
{ ETHTOOL_XDP_PASS, "rx_xdp_pass", },
|
|
|
|
{ ETHTOOL_XDP_DROP, "rx_xdp_drop", },
|
|
|
|
{ ETHTOOL_XDP_TX, "rx_xdp_tx", },
|
|
|
|
{ ETHTOOL_XDP_TX_ERR, "rx_xdp_tx_errors", },
|
|
|
|
{ ETHTOOL_XDP_XMIT, "tx_xdp_xmit", },
|
|
|
|
{ ETHTOOL_XDP_XMIT_ERR, "tx_xdp_xmit_errors", },
|
|
|
|
};
|
|
|
|
|
2019-06-10 16:55:29 +08:00
|
|
|
#define MVPP2_N_ETHTOOL_STATS(ntxqs, nrxqs) (ARRAY_SIZE(mvpp2_ethtool_mib_regs) + \
|
|
|
|
ARRAY_SIZE(mvpp2_ethtool_port_regs) + \
|
|
|
|
(ARRAY_SIZE(mvpp2_ethtool_txq_regs) * (ntxqs)) + \
|
2020-07-02 22:12:44 +08:00
|
|
|
(ARRAY_SIZE(mvpp2_ethtool_rxq_regs) * (nrxqs)) + \
|
|
|
|
ARRAY_SIZE(mvpp2_ethtool_xdp))
|
2019-06-10 16:55:29 +08:00
|
|
|
|
2017-11-07 05:56:53 +08:00
|
|
|
static void mvpp2_ethtool_get_strings(struct net_device *netdev, u32 sset,
|
|
|
|
u8 *data)
|
|
|
|
{
|
2019-06-10 16:55:29 +08:00
|
|
|
struct mvpp2_port *port = netdev_priv(netdev);
|
|
|
|
int i, q;
|
2017-11-07 05:56:53 +08:00
|
|
|
|
2019-06-10 16:55:29 +08:00
|
|
|
if (sset != ETH_SS_STATS)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(mvpp2_ethtool_mib_regs); i++) {
|
|
|
|
strscpy(data, mvpp2_ethtool_mib_regs[i].string,
|
|
|
|
ETH_GSTRING_LEN);
|
|
|
|
data += ETH_GSTRING_LEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(mvpp2_ethtool_port_regs); i++) {
|
|
|
|
strscpy(data, mvpp2_ethtool_port_regs[i].string,
|
|
|
|
ETH_GSTRING_LEN);
|
|
|
|
data += ETH_GSTRING_LEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (q = 0; q < port->ntxqs; q++) {
|
|
|
|
for (i = 0; i < ARRAY_SIZE(mvpp2_ethtool_txq_regs); i++) {
|
|
|
|
snprintf(data, ETH_GSTRING_LEN,
|
|
|
|
mvpp2_ethtool_txq_regs[i].string, q);
|
|
|
|
data += ETH_GSTRING_LEN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (q = 0; q < port->nrxqs; q++) {
|
|
|
|
for (i = 0; i < ARRAY_SIZE(mvpp2_ethtool_rxq_regs); i++) {
|
|
|
|
snprintf(data, ETH_GSTRING_LEN,
|
|
|
|
mvpp2_ethtool_rxq_regs[i].string,
|
|
|
|
q);
|
|
|
|
data += ETH_GSTRING_LEN;
|
|
|
|
}
|
2017-11-07 05:56:53 +08:00
|
|
|
}
|
2020-07-02 22:12:44 +08:00
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(mvpp2_ethtool_xdp); i++) {
|
|
|
|
strscpy(data, mvpp2_ethtool_xdp[i].string,
|
|
|
|
ETH_GSTRING_LEN);
|
|
|
|
data += ETH_GSTRING_LEN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mvpp2_get_xdp_stats(struct mvpp2_port *port, struct mvpp2_pcpu_stats *xdp_stats)
|
|
|
|
{
|
|
|
|
unsigned int start;
|
|
|
|
unsigned int cpu;
|
|
|
|
|
|
|
|
/* Gather XDP Statistics */
|
|
|
|
for_each_possible_cpu(cpu) {
|
|
|
|
struct mvpp2_pcpu_stats *cpu_stats;
|
|
|
|
u64 xdp_redirect;
|
|
|
|
u64 xdp_pass;
|
|
|
|
u64 xdp_drop;
|
|
|
|
u64 xdp_xmit;
|
|
|
|
u64 xdp_xmit_err;
|
|
|
|
u64 xdp_tx;
|
|
|
|
u64 xdp_tx_err;
|
|
|
|
|
|
|
|
cpu_stats = per_cpu_ptr(port->stats, cpu);
|
|
|
|
do {
|
|
|
|
start = u64_stats_fetch_begin_irq(&cpu_stats->syncp);
|
|
|
|
xdp_redirect = cpu_stats->xdp_redirect;
|
|
|
|
xdp_pass = cpu_stats->xdp_pass;
|
|
|
|
xdp_drop = cpu_stats->xdp_drop;
|
|
|
|
xdp_xmit = cpu_stats->xdp_xmit;
|
|
|
|
xdp_xmit_err = cpu_stats->xdp_xmit_err;
|
|
|
|
xdp_tx = cpu_stats->xdp_tx;
|
|
|
|
xdp_tx_err = cpu_stats->xdp_tx_err;
|
|
|
|
} while (u64_stats_fetch_retry_irq(&cpu_stats->syncp, start));
|
|
|
|
|
|
|
|
xdp_stats->xdp_redirect += xdp_redirect;
|
|
|
|
xdp_stats->xdp_pass += xdp_pass;
|
|
|
|
xdp_stats->xdp_drop += xdp_drop;
|
|
|
|
xdp_stats->xdp_xmit += xdp_xmit;
|
|
|
|
xdp_stats->xdp_xmit_err += xdp_xmit_err;
|
|
|
|
xdp_stats->xdp_tx += xdp_tx;
|
|
|
|
xdp_stats->xdp_tx_err += xdp_tx_err;
|
|
|
|
}
|
2017-11-07 05:56:53 +08:00
|
|
|
}
|
|
|
|
|
2019-06-10 16:55:29 +08:00
|
|
|
static void mvpp2_read_stats(struct mvpp2_port *port)
|
|
|
|
{
|
2020-07-02 22:12:44 +08:00
|
|
|
struct mvpp2_pcpu_stats xdp_stats = {};
|
|
|
|
const struct mvpp2_ethtool_counter *s;
|
2019-06-10 16:55:29 +08:00
|
|
|
u64 *pstats;
|
|
|
|
int i, q;
|
|
|
|
|
|
|
|
pstats = port->ethtool_stats;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(mvpp2_ethtool_mib_regs); i++)
|
|
|
|
*pstats++ += mvpp2_read_count(port, &mvpp2_ethtool_mib_regs[i]);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(mvpp2_ethtool_port_regs); i++)
|
|
|
|
*pstats++ += mvpp2_read(port->priv,
|
|
|
|
mvpp2_ethtool_port_regs[i].offset +
|
|
|
|
4 * port->id);
|
|
|
|
|
|
|
|
for (q = 0; q < port->ntxqs; q++)
|
|
|
|
for (i = 0; i < ARRAY_SIZE(mvpp2_ethtool_txq_regs); i++)
|
|
|
|
*pstats++ += mvpp2_read_index(port->priv,
|
2020-06-14 15:19:17 +08:00
|
|
|
MVPP22_CTRS_TX_CTR(port->id, q),
|
2019-06-10 16:55:29 +08:00
|
|
|
mvpp2_ethtool_txq_regs[i].offset);
|
|
|
|
|
|
|
|
/* Rxqs are numbered from 0 from the user standpoint, but not from the
|
|
|
|
* driver's. We need to add the port->first_rxq offset.
|
|
|
|
*/
|
|
|
|
for (q = 0; q < port->nrxqs; q++)
|
|
|
|
for (i = 0; i < ARRAY_SIZE(mvpp2_ethtool_rxq_regs); i++)
|
|
|
|
*pstats++ += mvpp2_read_index(port->priv,
|
2020-06-14 15:19:17 +08:00
|
|
|
port->first_rxq + q,
|
2019-06-10 16:55:29 +08:00
|
|
|
mvpp2_ethtool_rxq_regs[i].offset);
|
2020-07-02 22:12:44 +08:00
|
|
|
|
|
|
|
/* Gather XDP Statistics */
|
|
|
|
mvpp2_get_xdp_stats(port, &xdp_stats);
|
|
|
|
|
|
|
|
for (i = 0, s = mvpp2_ethtool_xdp;
|
|
|
|
s < mvpp2_ethtool_xdp + ARRAY_SIZE(mvpp2_ethtool_xdp);
|
|
|
|
s++, i++) {
|
|
|
|
switch (s->offset) {
|
|
|
|
case ETHTOOL_XDP_REDIRECT:
|
|
|
|
*pstats++ = xdp_stats.xdp_redirect;
|
|
|
|
break;
|
|
|
|
case ETHTOOL_XDP_PASS:
|
|
|
|
*pstats++ = xdp_stats.xdp_pass;
|
|
|
|
break;
|
|
|
|
case ETHTOOL_XDP_DROP:
|
|
|
|
*pstats++ = xdp_stats.xdp_drop;
|
|
|
|
break;
|
|
|
|
case ETHTOOL_XDP_TX:
|
|
|
|
*pstats++ = xdp_stats.xdp_tx;
|
|
|
|
break;
|
|
|
|
case ETHTOOL_XDP_TX_ERR:
|
|
|
|
*pstats++ = xdp_stats.xdp_tx_err;
|
|
|
|
break;
|
|
|
|
case ETHTOOL_XDP_XMIT:
|
|
|
|
*pstats++ = xdp_stats.xdp_xmit;
|
|
|
|
break;
|
|
|
|
case ETHTOOL_XDP_XMIT_ERR:
|
|
|
|
*pstats++ = xdp_stats.xdp_xmit_err;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-06-10 16:55:29 +08:00
|
|
|
}
|
|
|
|
|
2017-11-07 05:56:53 +08:00
|
|
|
static void mvpp2_gather_hw_statistics(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct delayed_work *del_work = to_delayed_work(work);
|
2017-11-08 15:59:40 +08:00
|
|
|
struct mvpp2_port *port = container_of(del_work, struct mvpp2_port,
|
|
|
|
stats_work);
|
2017-11-07 05:56:53 +08:00
|
|
|
|
2017-11-08 15:59:40 +08:00
|
|
|
mutex_lock(&port->gather_stats_lock);
|
2017-11-07 05:56:53 +08:00
|
|
|
|
2019-06-10 16:55:29 +08:00
|
|
|
mvpp2_read_stats(port);
|
2017-11-07 05:56:53 +08:00
|
|
|
|
|
|
|
/* No need to read again the counters right after this function if it
|
|
|
|
* was called asynchronously by the user (ie. use of ethtool).
|
|
|
|
*/
|
2017-11-08 15:59:40 +08:00
|
|
|
cancel_delayed_work(&port->stats_work);
|
|
|
|
queue_delayed_work(port->priv->stats_queue, &port->stats_work,
|
2017-11-07 05:56:53 +08:00
|
|
|
MVPP2_MIB_COUNTERS_STATS_DELAY);
|
|
|
|
|
2017-11-08 15:59:40 +08:00
|
|
|
mutex_unlock(&port->gather_stats_lock);
|
2017-11-07 05:56:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp2_ethtool_get_stats(struct net_device *dev,
|
|
|
|
struct ethtool_stats *stats, u64 *data)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
|
2017-11-08 15:59:40 +08:00
|
|
|
/* Update statistics for the given port, then take the lock to avoid
|
|
|
|
* concurrent accesses on the ethtool_stats structure during its copy.
|
|
|
|
*/
|
|
|
|
mvpp2_gather_hw_statistics(&port->stats_work.work);
|
2017-11-07 05:56:53 +08:00
|
|
|
|
2017-11-08 15:59:40 +08:00
|
|
|
mutex_lock(&port->gather_stats_lock);
|
2017-11-07 05:56:53 +08:00
|
|
|
memcpy(data, port->ethtool_stats,
|
2019-06-10 16:55:29 +08:00
|
|
|
sizeof(u64) * MVPP2_N_ETHTOOL_STATS(port->ntxqs, port->nrxqs));
|
2017-11-08 15:59:40 +08:00
|
|
|
mutex_unlock(&port->gather_stats_lock);
|
2017-11-07 05:56:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_ethtool_get_sset_count(struct net_device *dev, int sset)
|
|
|
|
{
|
2019-06-10 16:55:29 +08:00
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
|
2017-11-07 05:56:53 +08:00
|
|
|
if (sset == ETH_SS_STATS)
|
2019-06-10 16:55:29 +08:00
|
|
|
return MVPP2_N_ETHTOOL_STATS(port->ntxqs, port->nrxqs);
|
2017-11-07 05:56:53 +08:00
|
|
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
2019-03-01 18:52:14 +08:00
|
|
|
static void mvpp2_mac_reset_assert(struct mvpp2_port *port)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2019-03-01 18:52:14 +08:00
|
|
|
u32 val;
|
2017-11-07 05:56:53 +08:00
|
|
|
|
2019-02-08 23:35:43 +08:00
|
|
|
val = readl(port->base + MVPP2_GMAC_CTRL_2_REG) |
|
|
|
|
MVPP2_GMAC_PORT_RESET_MASK;
|
2014-07-11 03:52:13 +08:00
|
|
|
writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
|
2019-03-01 18:52:14 +08:00
|
|
|
|
2021-02-14 21:38:35 +08:00
|
|
|
if (port->priv->hw_version >= MVPP22 && port->gop_id == 0) {
|
2019-03-01 18:52:14 +08:00
|
|
|
val = readl(port->base + MVPP22_XLG_CTRL0_REG) &
|
|
|
|
~MVPP22_XLG_CTRL0_MAC_RESET_DIS;
|
|
|
|
writel(val, port->base + MVPP22_XLG_CTRL0_REG);
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2019-03-01 18:52:16 +08:00
|
|
|
static void mvpp22_pcs_reset_assert(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
struct mvpp2 *priv = port->priv;
|
|
|
|
void __iomem *mpcs, *xpcs;
|
|
|
|
u32 val;
|
|
|
|
|
2021-02-11 18:48:51 +08:00
|
|
|
if (port->priv->hw_version == MVPP21 || port->gop_id != 0)
|
2019-03-01 18:52:16 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
mpcs = priv->iface_base + MVPP22_MPCS_BASE(port->gop_id);
|
|
|
|
xpcs = priv->iface_base + MVPP22_XPCS_BASE(port->gop_id);
|
|
|
|
|
|
|
|
val = readl(mpcs + MVPP22_MPCS_CLK_RESET);
|
|
|
|
val &= ~(MAC_CLK_RESET_MAC | MAC_CLK_RESET_SD_RX | MAC_CLK_RESET_SD_TX);
|
|
|
|
val |= MVPP22_MPCS_CLK_RESET_DIV_SET;
|
|
|
|
writel(val, mpcs + MVPP22_MPCS_CLK_RESET);
|
|
|
|
|
|
|
|
val = readl(xpcs + MVPP22_XPCS_CFG0);
|
|
|
|
writel(val & ~MVPP22_XPCS_CFG0_RESET_DIS, xpcs + MVPP22_XPCS_CFG0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp22_pcs_reset_deassert(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
struct mvpp2 *priv = port->priv;
|
|
|
|
void __iomem *mpcs, *xpcs;
|
|
|
|
u32 val;
|
|
|
|
|
2021-02-11 18:48:51 +08:00
|
|
|
if (port->priv->hw_version == MVPP21 || port->gop_id != 0)
|
2019-03-01 18:52:16 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
mpcs = priv->iface_base + MVPP22_MPCS_BASE(port->gop_id);
|
|
|
|
xpcs = priv->iface_base + MVPP22_XPCS_BASE(port->gop_id);
|
|
|
|
|
|
|
|
switch (port->phy_interface) {
|
2020-01-04 04:43:23 +08:00
|
|
|
case PHY_INTERFACE_MODE_10GBASER:
|
2019-03-01 18:52:16 +08:00
|
|
|
val = readl(mpcs + MVPP22_MPCS_CLK_RESET);
|
|
|
|
val |= MAC_CLK_RESET_MAC | MAC_CLK_RESET_SD_RX |
|
|
|
|
MAC_CLK_RESET_SD_TX;
|
|
|
|
val &= ~MVPP22_MPCS_CLK_RESET_DIV_SET;
|
|
|
|
writel(val, mpcs + MVPP22_MPCS_CLK_RESET);
|
|
|
|
break;
|
|
|
|
case PHY_INTERFACE_MODE_XAUI:
|
|
|
|
case PHY_INTERFACE_MODE_RXAUI:
|
|
|
|
val = readl(xpcs + MVPP22_XPCS_CFG0);
|
|
|
|
writel(val | MVPP22_XPCS_CFG0_RESET_DIS, xpcs + MVPP22_XPCS_CFG0);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Change maximum receive size of the port */
|
|
|
|
static inline void mvpp2_gmac_max_rx_size_set(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
|
|
|
|
val &= ~MVPP2_GMAC_MAX_RX_SIZE_MASK;
|
|
|
|
val |= (((port->pkt_size - MVPP2_MH_SIZE) / 2) <<
|
|
|
|
MVPP2_GMAC_MAX_RX_SIZE_OFFS);
|
|
|
|
writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
|
|
|
|
}
|
|
|
|
|
2017-08-23 01:08:26 +08:00
|
|
|
/* Change maximum receive size of the port */
|
|
|
|
static inline void mvpp2_xlg_max_rx_size_set(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
val = readl(port->base + MVPP22_XLG_CTRL1_REG);
|
|
|
|
val &= ~MVPP22_XLG_CTRL1_FRAMESIZELIMIT_MASK;
|
|
|
|
val |= ((port->pkt_size - MVPP2_MH_SIZE) / 2) <<
|
2017-08-25 21:24:46 +08:00
|
|
|
MVPP22_XLG_CTRL1_FRAMESIZELIMIT_OFFS;
|
2017-08-23 01:08:26 +08:00
|
|
|
writel(val, port->base + MVPP22_XLG_CTRL1_REG);
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Set defaults to the MVPP2 port */
|
|
|
|
static void mvpp2_defaults_set(struct mvpp2_port *port)
|
|
|
|
{
|
2019-05-29 21:59:48 +08:00
|
|
|
int tx_port_num, val, queue, lrxq;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2017-03-07 23:53:11 +08:00
|
|
|
if (port->priv->hw_version == MVPP21) {
|
|
|
|
/* Update TX FIFO MIN Threshold */
|
|
|
|
val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
|
|
|
|
val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
|
|
|
|
/* Min. TX threshold must be less than minimal packet length */
|
|
|
|
val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(64 - 4 - 2);
|
|
|
|
writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* Disable Legacy WRR, Disable EJP, Release from reset */
|
|
|
|
tx_port_num = mvpp2_egress_port(port);
|
|
|
|
mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG,
|
|
|
|
tx_port_num);
|
|
|
|
mvpp2_write(port->priv, MVPP2_TXP_SCHED_CMD_1_REG, 0);
|
|
|
|
|
2018-09-24 17:11:06 +08:00
|
|
|
/* Set TXQ scheduling to Round-Robin */
|
|
|
|
mvpp2_write(port->priv, MVPP2_TXP_SCHED_FIXED_PRIO_REG, 0);
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Close bandwidth for all queues */
|
2019-05-29 21:59:48 +08:00
|
|
|
for (queue = 0; queue < MVPP2_MAX_TXQ; queue++)
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_write(port->priv,
|
2019-05-29 21:59:48 +08:00
|
|
|
MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(queue), 0);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* Set refill period to 1 usec, refill tokens
|
|
|
|
* and bucket size to maximum
|
|
|
|
*/
|
|
|
|
mvpp2_write(port->priv, MVPP2_TXP_SCHED_PERIOD_REG,
|
|
|
|
port->priv->tclk / USEC_PER_SEC);
|
|
|
|
val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_REFILL_REG);
|
|
|
|
val &= ~MVPP2_TXP_REFILL_PERIOD_ALL_MASK;
|
|
|
|
val |= MVPP2_TXP_REFILL_PERIOD_MASK(1);
|
|
|
|
val |= MVPP2_TXP_REFILL_TOKENS_ALL_MASK;
|
|
|
|
mvpp2_write(port->priv, MVPP2_TXP_SCHED_REFILL_REG, val);
|
|
|
|
val = MVPP2_TXP_TOKEN_SIZE_MAX;
|
|
|
|
mvpp2_write(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG, val);
|
|
|
|
|
|
|
|
/* Set MaximumLowLatencyPacketSize value to 256 */
|
|
|
|
mvpp2_write(port->priv, MVPP2_RX_CTRL_REG(port->id),
|
|
|
|
MVPP2_RX_USE_PSEUDO_FOR_CSUM_MASK |
|
|
|
|
MVPP2_RX_LOW_LATENCY_PKT_SIZE(256));
|
|
|
|
|
|
|
|
/* Enable Rx cache snoop */
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (lrxq = 0; lrxq < port->nrxqs; lrxq++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
queue = port->rxqs[lrxq]->id;
|
|
|
|
val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
|
|
|
|
val |= MVPP2_SNOOP_PKT_SIZE_MASK |
|
|
|
|
MVPP2_SNOOP_BUF_HDR_MASK;
|
|
|
|
mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* At default, mask all interrupts to all present cpus */
|
|
|
|
mvpp2_interrupts_disable(port);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Enable/disable receiving packets */
|
|
|
|
static void mvpp2_ingress_enable(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
int lrxq, queue;
|
|
|
|
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (lrxq = 0; lrxq < port->nrxqs; lrxq++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
queue = port->rxqs[lrxq]->id;
|
|
|
|
val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
|
|
|
|
val &= ~MVPP2_RXQ_DISABLE_MASK;
|
|
|
|
mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp2_ingress_disable(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
int lrxq, queue;
|
|
|
|
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (lrxq = 0; lrxq < port->nrxqs; lrxq++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
queue = port->rxqs[lrxq]->id;
|
|
|
|
val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
|
|
|
|
val |= MVPP2_RXQ_DISABLE_MASK;
|
|
|
|
mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Enable transmit via physical egress queue
|
|
|
|
* - HW starts take descriptors from DRAM
|
|
|
|
*/
|
|
|
|
static void mvpp2_egress_enable(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
u32 qmap;
|
|
|
|
int queue;
|
|
|
|
int tx_port_num = mvpp2_egress_port(port);
|
|
|
|
|
|
|
|
/* Enable all initialized TXs. */
|
|
|
|
qmap = 0;
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (queue = 0; queue < port->ntxqs; queue++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_tx_queue *txq = port->txqs[queue];
|
|
|
|
|
2017-04-17 20:07:52 +08:00
|
|
|
if (txq->descs)
|
2014-07-11 03:52:13 +08:00
|
|
|
qmap |= (1 << queue);
|
|
|
|
}
|
|
|
|
|
|
|
|
mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
|
|
|
|
mvpp2_write(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG, qmap);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Disable transmit via physical egress queue
|
|
|
|
* - HW doesn't take descriptors from DRAM
|
|
|
|
*/
|
|
|
|
static void mvpp2_egress_disable(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
u32 reg_data;
|
|
|
|
int delay;
|
|
|
|
int tx_port_num = mvpp2_egress_port(port);
|
|
|
|
|
|
|
|
/* Issue stop command for active channels only */
|
|
|
|
mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
|
|
|
|
reg_data = (mvpp2_read(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG)) &
|
|
|
|
MVPP2_TXP_SCHED_ENQ_MASK;
|
|
|
|
if (reg_data != 0)
|
|
|
|
mvpp2_write(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG,
|
|
|
|
(reg_data << MVPP2_TXP_SCHED_DISQ_OFFSET));
|
|
|
|
|
|
|
|
/* Wait for all Tx activity to terminate. */
|
|
|
|
delay = 0;
|
|
|
|
do {
|
|
|
|
if (delay >= MVPP2_TX_DISABLE_TIMEOUT_MSEC) {
|
|
|
|
netdev_warn(port->dev,
|
|
|
|
"Tx stop timed out, status=0x%08x\n",
|
|
|
|
reg_data);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
mdelay(1);
|
|
|
|
delay++;
|
|
|
|
|
|
|
|
/* Check port TX Command register that all
|
|
|
|
* Tx queues are stopped
|
|
|
|
*/
|
|
|
|
reg_data = mvpp2_read(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG);
|
|
|
|
} while (reg_data & MVPP2_TXP_SCHED_ENQ_MASK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Rx descriptors helper methods */
|
|
|
|
|
|
|
|
/* Get number of Rx descriptors occupied by received packets */
|
|
|
|
static inline int
|
|
|
|
mvpp2_rxq_received(struct mvpp2_port *port, int rxq_id)
|
|
|
|
{
|
|
|
|
u32 val = mvpp2_read(port->priv, MVPP2_RXQ_STATUS_REG(rxq_id));
|
|
|
|
|
|
|
|
return val & MVPP2_RXQ_OCCUPIED_MASK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update Rx queue status with the number of occupied and available
|
|
|
|
* Rx descriptor slots.
|
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
mvpp2_rxq_status_update(struct mvpp2_port *port, int rxq_id,
|
|
|
|
int used_count, int free_count)
|
|
|
|
{
|
|
|
|
/* Decrement the number of used descriptors and increment count
|
|
|
|
* increment the number of free descriptors.
|
|
|
|
*/
|
|
|
|
u32 val = used_count | (free_count << MVPP2_RXQ_NUM_NEW_OFFSET);
|
|
|
|
|
|
|
|
mvpp2_write(port->priv, MVPP2_RXQ_STATUS_UPDATE_REG(rxq_id), val);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get pointer to next RX descriptor to be processed by SW */
|
|
|
|
static inline struct mvpp2_rx_desc *
|
|
|
|
mvpp2_rxq_next_desc_get(struct mvpp2_rx_queue *rxq)
|
|
|
|
{
|
|
|
|
int rx_desc = rxq->next_desc_to_proc;
|
|
|
|
|
|
|
|
rxq->next_desc_to_proc = MVPP2_QUEUE_NEXT_DESC(rxq, rx_desc);
|
|
|
|
prefetch(rxq->descs + rxq->next_desc_to_proc);
|
|
|
|
return rxq->descs + rx_desc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set rx queue offset */
|
|
|
|
static void mvpp2_rxq_offset_set(struct mvpp2_port *port,
|
|
|
|
int prxq, int offset)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
/* Convert offset from bytes to units of 32 bytes */
|
|
|
|
offset = offset >> 5;
|
|
|
|
|
|
|
|
val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(prxq));
|
|
|
|
val &= ~MVPP2_RXQ_PACKET_OFFSET_MASK;
|
|
|
|
|
|
|
|
/* Offset is in */
|
|
|
|
val |= ((offset << MVPP2_RXQ_PACKET_OFFSET_OFFS) &
|
|
|
|
MVPP2_RXQ_PACKET_OFFSET_MASK);
|
|
|
|
|
|
|
|
mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(prxq), val);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Tx descriptors helper methods */
|
|
|
|
|
|
|
|
/* Get pointer to next Tx descriptor to be processed (send) by HW */
|
|
|
|
static struct mvpp2_tx_desc *
|
|
|
|
mvpp2_txq_next_desc_get(struct mvpp2_tx_queue *txq)
|
|
|
|
{
|
|
|
|
int tx_desc = txq->next_desc_to_proc;
|
|
|
|
|
|
|
|
txq->next_desc_to_proc = MVPP2_QUEUE_NEXT_DESC(txq, tx_desc);
|
|
|
|
return txq->descs + tx_desc;
|
|
|
|
}
|
|
|
|
|
2017-06-22 20:23:18 +08:00
|
|
|
/* Update HW with number of aggregated Tx descriptors to be sent
|
|
|
|
*
|
|
|
|
* Called only from mvpp2_tx(), so migration is disabled, using
|
|
|
|
* smp_processor_id() is OK.
|
|
|
|
*/
|
2014-07-11 03:52:13 +08:00
|
|
|
static void mvpp2_aggr_txq_pend_desc_add(struct mvpp2_port *port, int pending)
|
|
|
|
{
|
|
|
|
/* aggregated access - relevant TXQ number is written in TX desc */
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write(port->priv,
|
2018-09-19 17:27:10 +08:00
|
|
|
mvpp2_cpu_to_thread(port->priv, smp_processor_id()),
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
MVPP2_AGGR_TXQ_UPDATE_REG, pending);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if there are enough free descriptors in aggregated txq.
|
|
|
|
* If not, update the number of occupied descriptors and repeat the check.
|
2017-06-22 20:23:18 +08:00
|
|
|
*
|
|
|
|
* Called only from mvpp2_tx(), so migration is disabled, using
|
|
|
|
* smp_processor_id() is OK.
|
2014-07-11 03:52:13 +08:00
|
|
|
*/
|
2018-09-19 17:27:10 +08:00
|
|
|
static int mvpp2_aggr_desc_num_check(struct mvpp2_port *port,
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_tx_queue *aggr_txq, int num)
|
|
|
|
{
|
2017-10-30 18:23:32 +08:00
|
|
|
if ((aggr_txq->count + num) > MVPP2_AGGR_TXQ_SIZE) {
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Update number of occupied aggregated Tx descriptors */
|
2018-09-19 17:27:10 +08:00
|
|
|
unsigned int thread =
|
|
|
|
mvpp2_cpu_to_thread(port->priv, smp_processor_id());
|
|
|
|
u32 val = mvpp2_read_relaxed(port->priv,
|
2018-09-19 17:27:08 +08:00
|
|
|
MVPP2_AGGR_TXQ_STATUS_REG(thread));
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
aggr_txq->count = val & MVPP2_AGGR_TXQ_PENDING_MASK;
|
|
|
|
|
2018-05-17 16:34:25 +08:00
|
|
|
if ((aggr_txq->count + num) > MVPP2_AGGR_TXQ_SIZE)
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-06-22 20:23:18 +08:00
|
|
|
/* Reserved Tx descriptors allocation request
|
|
|
|
*
|
|
|
|
* Called only from mvpp2_txq_reserved_desc_num_proc(), itself called
|
|
|
|
* only by mvpp2_tx(), so migration is disabled, using
|
|
|
|
* smp_processor_id() is OK.
|
|
|
|
*/
|
2018-09-19 17:27:10 +08:00
|
|
|
static int mvpp2_txq_alloc_reserved_desc(struct mvpp2_port *port,
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_tx_queue *txq, int num)
|
|
|
|
{
|
2018-09-19 17:27:10 +08:00
|
|
|
unsigned int thread = mvpp2_cpu_to_thread(port->priv, smp_processor_id());
|
|
|
|
struct mvpp2 *priv = port->priv;
|
2014-07-11 03:52:13 +08:00
|
|
|
u32 val;
|
|
|
|
|
|
|
|
val = (txq->id << MVPP2_TXQ_RSVD_REQ_Q_OFFSET) | num;
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write_relaxed(priv, thread, MVPP2_TXQ_RSVD_REQ_REG, val);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-09-19 17:27:11 +08:00
|
|
|
val = mvpp2_thread_read_relaxed(priv, thread, MVPP2_TXQ_RSVD_RSLT_REG);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
return val & MVPP2_TXQ_RSVD_RSLT_MASK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if there are enough reserved descriptors for transmission.
|
|
|
|
* If not, request chunk of reserved descriptors and check again.
|
|
|
|
*/
|
2018-09-19 17:27:09 +08:00
|
|
|
static int mvpp2_txq_reserved_desc_num_proc(struct mvpp2_port *port,
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_tx_queue *txq,
|
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu,
|
|
|
|
int num)
|
|
|
|
{
|
2018-09-19 17:27:05 +08:00
|
|
|
int req, desc_count;
|
2018-09-19 17:27:09 +08:00
|
|
|
unsigned int thread;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
if (txq_pcpu->reserved_num >= num)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Not enough descriptors reserved! Update the reserved descriptor
|
|
|
|
* count and check again.
|
|
|
|
*/
|
|
|
|
|
|
|
|
desc_count = 0;
|
|
|
|
/* Compute total of used descriptors */
|
2018-09-19 17:27:10 +08:00
|
|
|
for (thread = 0; thread < port->priv->nthreads; thread++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu_aux;
|
|
|
|
|
2018-09-19 17:27:09 +08:00
|
|
|
txq_pcpu_aux = per_cpu_ptr(txq->pcpu, thread);
|
2014-07-11 03:52:13 +08:00
|
|
|
desc_count += txq_pcpu_aux->count;
|
|
|
|
desc_count += txq_pcpu_aux->reserved_num;
|
|
|
|
}
|
|
|
|
|
|
|
|
req = max(MVPP2_CPU_DESC_CHUNK, num - txq_pcpu->reserved_num);
|
|
|
|
desc_count += req;
|
|
|
|
|
|
|
|
if (desc_count >
|
2018-09-19 17:27:09 +08:00
|
|
|
(txq->size - (MVPP2_MAX_THREADS * MVPP2_CPU_DESC_CHUNK)))
|
2014-07-11 03:52:13 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
txq_pcpu->reserved_num += mvpp2_txq_alloc_reserved_desc(port, txq, req);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-18 20:34:51 +08:00
|
|
|
/* OK, the descriptor could have been updated: check again. */
|
2014-07-11 03:52:13 +08:00
|
|
|
if (txq_pcpu->reserved_num < num)
|
|
|
|
return -ENOMEM;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Release the last allocated Tx descriptor. Useful to handle DMA
|
|
|
|
* mapping failures in the Tx path.
|
|
|
|
*/
|
|
|
|
static void mvpp2_txq_desc_put(struct mvpp2_tx_queue *txq)
|
|
|
|
{
|
|
|
|
if (txq->next_desc_to_proc == 0)
|
|
|
|
txq->next_desc_to_proc = txq->last_desc - 1;
|
|
|
|
else
|
|
|
|
txq->next_desc_to_proc--;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set Tx descriptors fields relevant for CSUM calculation */
|
2018-10-05 15:04:40 +08:00
|
|
|
static u32 mvpp2_txq_desc_csum(int l3_offs, __be16 l3_proto,
|
2014-07-11 03:52:13 +08:00
|
|
|
int ip_hdr_len, int l4_proto)
|
|
|
|
{
|
|
|
|
u32 command;
|
|
|
|
|
|
|
|
/* fields: L3_offset, IP_hdrlen, L3_type, G_IPv4_chk,
|
|
|
|
* G_L4_chk, L4_type required only for checksum calculation
|
|
|
|
*/
|
|
|
|
command = (l3_offs << MVPP2_TXD_L3_OFF_SHIFT);
|
|
|
|
command |= (ip_hdr_len << MVPP2_TXD_IP_HLEN_SHIFT);
|
|
|
|
command |= MVPP2_TXD_IP_CSUM_DISABLE;
|
|
|
|
|
2018-06-28 20:42:07 +08:00
|
|
|
if (l3_proto == htons(ETH_P_IP)) {
|
2014-07-11 03:52:13 +08:00
|
|
|
command &= ~MVPP2_TXD_IP_CSUM_DISABLE; /* enable IPv4 csum */
|
|
|
|
command &= ~MVPP2_TXD_L3_IP6; /* enable IPv4 */
|
|
|
|
} else {
|
|
|
|
command |= MVPP2_TXD_L3_IP6; /* enable IPv6 */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l4_proto == IPPROTO_TCP) {
|
|
|
|
command &= ~MVPP2_TXD_L4_UDP; /* enable TCP */
|
|
|
|
command &= ~MVPP2_TXD_L4_CSUM_FRAG; /* generate L4 csum */
|
|
|
|
} else if (l4_proto == IPPROTO_UDP) {
|
|
|
|
command |= MVPP2_TXD_L4_UDP; /* enable UDP */
|
|
|
|
command &= ~MVPP2_TXD_L4_CSUM_FRAG; /* generate L4 csum */
|
|
|
|
} else {
|
|
|
|
command |= MVPP2_TXD_L4_CSUM_NOT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return command;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get number of sent descriptors and decrement counter.
|
|
|
|
* The number of sent descriptors is returned.
|
2018-09-19 17:27:08 +08:00
|
|
|
* Per-thread access
|
2017-06-22 20:23:18 +08:00
|
|
|
*
|
|
|
|
* Called only from mvpp2_txq_done(), called from mvpp2_tx()
|
|
|
|
* (migration disabled) and from the TX completion tasklet (migration
|
|
|
|
* disabled) so using smp_processor_id() is OK.
|
2014-07-11 03:52:13 +08:00
|
|
|
*/
|
|
|
|
static inline int mvpp2_txq_sent_desc_proc(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_tx_queue *txq)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
/* Reading status reg resets transmitted descriptor counter */
|
2018-09-19 17:27:11 +08:00
|
|
|
val = mvpp2_thread_read_relaxed(port->priv,
|
2018-09-19 17:27:10 +08:00
|
|
|
mvpp2_cpu_to_thread(port->priv, smp_processor_id()),
|
2018-03-27 22:49:05 +08:00
|
|
|
MVPP2_TXQ_SENT_REG(txq->id));
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
return (val & MVPP2_TRANSMITTED_COUNT_MASK) >>
|
|
|
|
MVPP2_TRANSMITTED_COUNT_OFFSET;
|
|
|
|
}
|
|
|
|
|
2017-06-22 20:23:18 +08:00
|
|
|
/* Called through on_each_cpu(), so runs on all CPUs, with migration
|
|
|
|
* disabled, therefore using smp_processor_id() is OK.
|
|
|
|
*/
|
2014-07-11 03:52:13 +08:00
|
|
|
static void mvpp2_txq_sent_counter_clear(void *arg)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = arg;
|
|
|
|
int queue;
|
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
/* If the thread isn't used, don't do anything */
|
2021-02-11 23:13:19 +08:00
|
|
|
if (smp_processor_id() >= port->priv->nthreads)
|
2018-09-19 17:27:10 +08:00
|
|
|
return;
|
|
|
|
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (queue = 0; queue < port->ntxqs; queue++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
int id = port->txqs[queue]->id;
|
|
|
|
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_read(port->priv,
|
2018-09-19 17:27:10 +08:00
|
|
|
mvpp2_cpu_to_thread(port->priv, smp_processor_id()),
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
MVPP2_TXQ_SENT_REG(id));
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set max sizes for Tx queues */
|
|
|
|
static void mvpp2_txp_max_tx_size_set(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
u32 val, size, mtu;
|
|
|
|
int txq, tx_port_num;
|
|
|
|
|
|
|
|
mtu = port->pkt_size * 8;
|
|
|
|
if (mtu > MVPP2_TXP_MTU_MAX)
|
|
|
|
mtu = MVPP2_TXP_MTU_MAX;
|
|
|
|
|
|
|
|
/* WA for wrong Token bucket update: Set MTU value = 3*real MTU value */
|
|
|
|
mtu = 3 * mtu;
|
|
|
|
|
|
|
|
/* Indirect access to registers */
|
|
|
|
tx_port_num = mvpp2_egress_port(port);
|
|
|
|
mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
|
|
|
|
|
|
|
|
/* Set MTU */
|
|
|
|
val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_MTU_REG);
|
|
|
|
val &= ~MVPP2_TXP_MTU_MAX;
|
|
|
|
val |= mtu;
|
|
|
|
mvpp2_write(port->priv, MVPP2_TXP_SCHED_MTU_REG, val);
|
|
|
|
|
|
|
|
/* TXP token size and all TXQs token size must be larger that MTU */
|
|
|
|
val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG);
|
|
|
|
size = val & MVPP2_TXP_TOKEN_SIZE_MAX;
|
|
|
|
if (size < mtu) {
|
|
|
|
size = mtu;
|
|
|
|
val &= ~MVPP2_TXP_TOKEN_SIZE_MAX;
|
|
|
|
val |= size;
|
|
|
|
mvpp2_write(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG, val);
|
|
|
|
}
|
|
|
|
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (txq = 0; txq < port->ntxqs; txq++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
val = mvpp2_read(port->priv,
|
|
|
|
MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq));
|
|
|
|
size = val & MVPP2_TXQ_TOKEN_SIZE_MAX;
|
|
|
|
|
|
|
|
if (size < mtu) {
|
|
|
|
size = mtu;
|
|
|
|
val &= ~MVPP2_TXQ_TOKEN_SIZE_MAX;
|
|
|
|
val |= size;
|
|
|
|
mvpp2_write(port->priv,
|
|
|
|
MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq),
|
|
|
|
val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-11 18:48:55 +08:00
|
|
|
/* Set the number of non-occupied descriptors threshold */
|
|
|
|
static void mvpp2_set_rxq_free_tresh(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_rx_queue *rxq)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
mvpp2_write(port->priv, MVPP2_RXQ_NUM_REG, rxq->id);
|
|
|
|
|
|
|
|
val = mvpp2_read(port->priv, MVPP2_RXQ_THRESH_REG);
|
|
|
|
val &= ~MVPP2_RXQ_NON_OCCUPIED_MASK;
|
|
|
|
val |= MSS_THRESHOLD_STOP << MVPP2_RXQ_NON_OCCUPIED_OFFSET;
|
|
|
|
mvpp2_write(port->priv, MVPP2_RXQ_THRESH_REG, val);
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Set the number of packets that will be received before Rx interrupt
|
|
|
|
* will be generated by HW.
|
|
|
|
*/
|
|
|
|
static void mvpp2_rx_pkts_coal_set(struct mvpp2_port *port,
|
2017-02-21 18:28:02 +08:00
|
|
|
struct mvpp2_rx_queue *rxq)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2018-09-19 17:27:10 +08:00
|
|
|
unsigned int thread = mvpp2_cpu_to_thread(port->priv, get_cpu());
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
|
2017-02-21 18:28:03 +08:00
|
|
|
if (rxq->pkts_coal > MVPP2_OCCUPIED_THRESH_MASK)
|
|
|
|
rxq->pkts_coal = MVPP2_OCCUPIED_THRESH_MASK;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_RXQ_NUM_REG, rxq->id);
|
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_RXQ_THRESH_REG,
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
rxq->pkts_coal);
|
2017-06-11 05:18:22 +08:00
|
|
|
|
|
|
|
put_cpu();
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
/* For some reason in the LSP this is done on each CPU. Why ? */
|
|
|
|
static void mvpp2_tx_pkts_coal_set(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_tx_queue *txq)
|
|
|
|
{
|
2020-12-24 02:35:21 +08:00
|
|
|
unsigned int thread;
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
u32 val;
|
|
|
|
|
|
|
|
if (txq->done_pkts_coal > MVPP2_TXQ_THRESH_MASK)
|
|
|
|
txq->done_pkts_coal = MVPP2_TXQ_THRESH_MASK;
|
|
|
|
|
|
|
|
val = (txq->done_pkts_coal << MVPP2_TXQ_THRESH_OFFSET);
|
2020-12-24 02:35:21 +08:00
|
|
|
/* PKT-coalescing registers are per-queue + per-thread */
|
|
|
|
for (thread = 0; thread < MVPP2_MAX_THREADS; thread++) {
|
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_TXQ_NUM_REG, txq->id);
|
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_TXQ_THRESH_REG, val);
|
|
|
|
}
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
}
|
|
|
|
|
2017-02-21 18:28:04 +08:00
|
|
|
static u32 mvpp2_usec_to_cycles(u32 usec, unsigned long clk_hz)
|
|
|
|
{
|
|
|
|
u64 tmp = (u64)clk_hz * usec;
|
|
|
|
|
|
|
|
do_div(tmp, USEC_PER_SEC);
|
|
|
|
|
|
|
|
return tmp > U32_MAX ? U32_MAX : tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u32 mvpp2_cycles_to_usec(u32 cycles, unsigned long clk_hz)
|
|
|
|
{
|
|
|
|
u64 tmp = (u64)cycles * USEC_PER_SEC;
|
|
|
|
|
|
|
|
do_div(tmp, clk_hz);
|
|
|
|
|
|
|
|
return tmp > U32_MAX ? U32_MAX : tmp;
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Set the time delay in usec before Rx interrupt */
|
|
|
|
static void mvpp2_rx_time_coal_set(struct mvpp2_port *port,
|
2017-02-21 18:28:02 +08:00
|
|
|
struct mvpp2_rx_queue *rxq)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2017-02-21 18:28:04 +08:00
|
|
|
unsigned long freq = port->priv->tclk;
|
|
|
|
u32 val = mvpp2_usec_to_cycles(rxq->time_coal, freq);
|
|
|
|
|
|
|
|
if (val > MVPP2_MAX_ISR_RX_THRESHOLD) {
|
|
|
|
rxq->time_coal =
|
|
|
|
mvpp2_cycles_to_usec(MVPP2_MAX_ISR_RX_THRESHOLD, freq);
|
|
|
|
|
|
|
|
/* re-evaluate to get actual register value */
|
|
|
|
val = mvpp2_usec_to_cycles(rxq->time_coal, freq);
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
mvpp2_write(port->priv, MVPP2_ISR_RX_THRESHOLD_REG(rxq->id), val);
|
|
|
|
}
|
|
|
|
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
static void mvpp2_tx_time_coal_set(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
unsigned long freq = port->priv->tclk;
|
|
|
|
u32 val = mvpp2_usec_to_cycles(port->tx_time_coal, freq);
|
|
|
|
|
|
|
|
if (val > MVPP2_MAX_ISR_TX_THRESHOLD) {
|
|
|
|
port->tx_time_coal =
|
|
|
|
mvpp2_cycles_to_usec(MVPP2_MAX_ISR_TX_THRESHOLD, freq);
|
|
|
|
|
|
|
|
/* re-evaluate to get actual register value */
|
|
|
|
val = mvpp2_usec_to_cycles(port->tx_time_coal, freq);
|
|
|
|
}
|
|
|
|
|
|
|
|
mvpp2_write(port->priv, MVPP2_ISR_TX_THRESHOLD_REG(port->id), val);
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Free Tx queue skbuffs */
|
|
|
|
static void mvpp2_txq_bufs_free(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_tx_queue *txq,
|
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu, int num)
|
|
|
|
{
|
2020-11-13 19:48:31 +08:00
|
|
|
struct xdp_frame_bulk bq;
|
2014-07-11 03:52:13 +08:00
|
|
|
int i;
|
|
|
|
|
2020-11-13 19:48:31 +08:00
|
|
|
xdp_frame_bulk_init(&bq);
|
|
|
|
|
|
|
|
rcu_read_lock(); /* need for xdp_return_frame_bulk */
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
for (i = 0; i < num; i++) {
|
net: mvpp2: fix dma unmapping of TX buffers for fragments
Since commit 71ce391dfb784 ("net: mvpp2: enable proper per-CPU TX
buffers unmapping"), we are not correctly DMA unmapping TX buffers for
fragments.
Indeed, the mvpp2_txq_inc_put() function only stores in the
txq_cpu->tx_buffs[] array the physical address of the buffer to be
DMA-unmapped when skb != NULL. In addition, when DMA-unmapping, we use
skb_headlen(skb) to get the size to be unmapped. Both of this works fine
for TX descriptors that are associated directly to a SKB, but not the
ones that are used for fragments, with a NULL pointer as skb:
- We have a NULL physical address when calling DMA unmap
- skb_headlen(skb) crashes because skb is NULL
This causes random crashes when fragments are used.
To solve this problem, we need to:
- Store the physical address of the buffer to be unmapped
unconditionally, regardless of whether it is tied to a SKB or not.
- Store the length of the buffer to be unmapped, which requires a new
field.
Instead of adding a third array to store the length of the buffer to be
unmapped, and as suggested by David Miller, this commit refactors the
tx_buffs[] and tx_skb[] arrays of 'struct mvpp2_txq_pcpu' into a
separate structure 'mvpp2_txq_pcpu_buf', to which a 'size' field is
added. Therefore, instead of having three arrays to allocate/free, we
have a single one, which also improve data locality, reducing the
impact on the CPU cache.
Fixes: 71ce391dfb784 ("net: mvpp2: enable proper per-CPU TX buffers unmapping")
Reported-by: Raphael G <raphael.glon@corp.ovh.com>
Cc: Raphael G <raphael.glon@corp.ovh.com>
Cc: stable@vger.kernel.org
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-12-21 18:28:49 +08:00
|
|
|
struct mvpp2_txq_pcpu_buf *tx_buf =
|
|
|
|
txq_pcpu->buffs + txq_pcpu->txq_get_index;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2020-07-02 22:12:43 +08:00
|
|
|
if (!IS_TSO_HEADER(txq_pcpu, tx_buf->dma) &&
|
|
|
|
tx_buf->type != MVPP2_TYPE_XDP_TX)
|
2017-10-23 21:24:30 +08:00
|
|
|
dma_unmap_single(port->dev->dev.parent, tx_buf->dma,
|
|
|
|
tx_buf->size, DMA_TO_DEVICE);
|
2020-07-02 22:12:43 +08:00
|
|
|
if (tx_buf->type == MVPP2_TYPE_SKB && tx_buf->skb)
|
2017-02-21 18:28:05 +08:00
|
|
|
dev_kfree_skb_any(tx_buf->skb);
|
2020-07-02 22:12:43 +08:00
|
|
|
else if (tx_buf->type == MVPP2_TYPE_XDP_TX ||
|
|
|
|
tx_buf->type == MVPP2_TYPE_XDP_NDO)
|
2020-11-13 19:48:31 +08:00
|
|
|
xdp_return_frame_bulk(tx_buf->xdpf, &bq);
|
2017-02-21 18:28:05 +08:00
|
|
|
|
|
|
|
mvpp2_txq_inc_get(txq_pcpu);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
2020-11-13 19:48:31 +08:00
|
|
|
xdp_flush_frame_bulk(&bq);
|
|
|
|
|
|
|
|
rcu_read_unlock();
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct mvpp2_rx_queue *mvpp2_get_rx_queue(struct mvpp2_port *port,
|
|
|
|
u32 cause)
|
|
|
|
{
|
|
|
|
int queue = fls(cause) - 1;
|
|
|
|
|
|
|
|
return port->rxqs[queue];
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct mvpp2_tx_queue *mvpp2_get_tx_queue(struct mvpp2_port *port,
|
|
|
|
u32 cause)
|
|
|
|
{
|
2015-08-07 01:00:30 +08:00
|
|
|
int queue = fls(cause) - 1;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
return port->txqs[queue];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle end of transmission */
|
|
|
|
static void mvpp2_txq_done(struct mvpp2_port *port, struct mvpp2_tx_queue *txq,
|
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu)
|
|
|
|
{
|
|
|
|
struct netdev_queue *nq = netdev_get_tx_queue(port->dev, txq->log_id);
|
|
|
|
int tx_done;
|
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
if (txq_pcpu->thread != mvpp2_cpu_to_thread(port->priv, smp_processor_id()))
|
2014-07-11 03:52:13 +08:00
|
|
|
netdev_err(port->dev, "wrong cpu on the end of Tx processing\n");
|
|
|
|
|
|
|
|
tx_done = mvpp2_txq_sent_desc_proc(port, txq);
|
|
|
|
if (!tx_done)
|
|
|
|
return;
|
|
|
|
mvpp2_txq_bufs_free(port, txq, txq_pcpu, tx_done);
|
|
|
|
|
|
|
|
txq_pcpu->count -= tx_done;
|
|
|
|
|
|
|
|
if (netif_tx_queue_stopped(nq))
|
2017-10-30 18:23:31 +08:00
|
|
|
if (txq_pcpu->count <= txq_pcpu->wake_threshold)
|
2014-07-11 03:52:13 +08:00
|
|
|
netif_tx_wake_queue(nq);
|
|
|
|
}
|
|
|
|
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
static unsigned int mvpp2_tx_done(struct mvpp2_port *port, u32 cause,
|
2018-09-19 17:27:08 +08:00
|
|
|
unsigned int thread)
|
2015-08-07 01:00:30 +08:00
|
|
|
{
|
|
|
|
struct mvpp2_tx_queue *txq;
|
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu;
|
|
|
|
unsigned int tx_todo = 0;
|
|
|
|
|
|
|
|
while (cause) {
|
|
|
|
txq = mvpp2_get_tx_queue(port, cause);
|
|
|
|
if (!txq)
|
|
|
|
break;
|
|
|
|
|
2018-09-19 17:27:08 +08:00
|
|
|
txq_pcpu = per_cpu_ptr(txq->pcpu, thread);
|
2015-08-07 01:00:30 +08:00
|
|
|
|
|
|
|
if (txq_pcpu->count) {
|
|
|
|
mvpp2_txq_done(port, txq, txq_pcpu);
|
|
|
|
tx_todo += txq_pcpu->count;
|
|
|
|
}
|
|
|
|
|
|
|
|
cause &= ~(1 << txq->log_id);
|
|
|
|
}
|
|
|
|
return tx_todo;
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Rx/Tx queue initialization/cleanup methods */
|
|
|
|
|
|
|
|
/* Allocate and initialize descriptors for aggr TXQ */
|
|
|
|
static int mvpp2_aggr_txq_init(struct platform_device *pdev,
|
2018-09-19 17:27:05 +08:00
|
|
|
struct mvpp2_tx_queue *aggr_txq,
|
2018-09-19 17:27:08 +08:00
|
|
|
unsigned int thread, struct mvpp2 *priv)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2017-03-07 23:53:12 +08:00
|
|
|
u32 txq_dma;
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Allocate memory for TX descriptors */
|
cross-tree: phase out dma_zalloc_coherent()
We already need to zero out memory for dma_alloc_coherent(), as such
using dma_zalloc_coherent() is superflous. Phase it out.
This change was generated with the following Coccinelle SmPL patch:
@ replace_dma_zalloc_coherent @
expression dev, size, data, handle, flags;
@@
-dma_zalloc_coherent(dev, size, handle, flags)
+dma_alloc_coherent(dev, size, handle, flags)
Suggested-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
[hch: re-ran the script on the latest tree]
Signed-off-by: Christoph Hellwig <hch@lst.de>
2019-01-04 16:23:09 +08:00
|
|
|
aggr_txq->descs = dma_alloc_coherent(&pdev->dev,
|
|
|
|
MVPP2_AGGR_TXQ_SIZE * MVPP2_DESC_ALIGNED_SIZE,
|
|
|
|
&aggr_txq->descs_dma, GFP_KERNEL);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (!aggr_txq->descs)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2017-10-30 18:23:32 +08:00
|
|
|
aggr_txq->last_desc = MVPP2_AGGR_TXQ_SIZE - 1;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* Aggr TXQ no reset WA */
|
|
|
|
aggr_txq->next_desc_to_proc = mvpp2_read(priv,
|
2018-09-19 17:27:08 +08:00
|
|
|
MVPP2_AGGR_TXQ_INDEX_REG(thread));
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2017-03-07 23:53:12 +08:00
|
|
|
/* Set Tx descriptors queue starting address indirect
|
|
|
|
* access
|
|
|
|
*/
|
|
|
|
if (priv->hw_version == MVPP21)
|
|
|
|
txq_dma = aggr_txq->descs_dma;
|
|
|
|
else
|
|
|
|
txq_dma = aggr_txq->descs_dma >>
|
|
|
|
MVPP22_AGGR_TXQ_DESC_ADDR_OFFS;
|
|
|
|
|
2018-09-19 17:27:08 +08:00
|
|
|
mvpp2_write(priv, MVPP2_AGGR_TXQ_DESC_ADDR_REG(thread), txq_dma);
|
|
|
|
mvpp2_write(priv, MVPP2_AGGR_TXQ_DESC_SIZE_REG(thread),
|
2017-08-23 15:46:55 +08:00
|
|
|
MVPP2_AGGR_TXQ_SIZE);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a specified Rx queue */
|
|
|
|
static int mvpp2_rxq_init(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_rx_queue *rxq)
|
|
|
|
{
|
2020-07-02 22:12:41 +08:00
|
|
|
struct mvpp2 *priv = port->priv;
|
2018-09-19 17:27:08 +08:00
|
|
|
unsigned int thread;
|
2017-03-07 23:53:12 +08:00
|
|
|
u32 rxq_dma;
|
2020-07-02 22:12:41 +08:00
|
|
|
int err;
|
2017-03-07 23:53:12 +08:00
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
rxq->size = port->rx_ring_size;
|
|
|
|
|
|
|
|
/* Allocate memory for RX descriptors */
|
|
|
|
rxq->descs = dma_alloc_coherent(port->dev->dev.parent,
|
|
|
|
rxq->size * MVPP2_DESC_ALIGNED_SIZE,
|
2017-03-07 23:53:00 +08:00
|
|
|
&rxq->descs_dma, GFP_KERNEL);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (!rxq->descs)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
rxq->last_desc = rxq->size - 1;
|
|
|
|
|
|
|
|
/* Zero occupied and non-occupied counters - direct access */
|
|
|
|
mvpp2_write(port->priv, MVPP2_RXQ_STATUS_REG(rxq->id), 0);
|
|
|
|
|
|
|
|
/* Set Rx descriptors queue starting address - indirect access */
|
2018-09-19 17:27:10 +08:00
|
|
|
thread = mvpp2_cpu_to_thread(port->priv, get_cpu());
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_RXQ_NUM_REG, rxq->id);
|
2017-03-07 23:53:12 +08:00
|
|
|
if (port->priv->hw_version == MVPP21)
|
|
|
|
rxq_dma = rxq->descs_dma;
|
|
|
|
else
|
|
|
|
rxq_dma = rxq->descs_dma >> MVPP22_DESC_ADDR_OFFS;
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_RXQ_DESC_ADDR_REG, rxq_dma);
|
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_RXQ_DESC_SIZE_REG, rxq->size);
|
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_RXQ_INDEX_REG, 0);
|
2017-06-11 05:18:22 +08:00
|
|
|
put_cpu();
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* Set Offset */
|
2020-07-02 22:12:42 +08:00
|
|
|
mvpp2_rxq_offset_set(port, rxq->id, MVPP2_SKB_HEADROOM);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* Set coalescing pkts and time */
|
2017-02-21 18:28:02 +08:00
|
|
|
mvpp2_rx_pkts_coal_set(port, rxq);
|
|
|
|
mvpp2_rx_time_coal_set(port, rxq);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2021-02-11 18:48:55 +08:00
|
|
|
/* Set the number of non occupied descriptors threshold */
|
|
|
|
mvpp2_set_rxq_free_tresh(port, rxq);
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Add number of descriptors ready for receiving packets */
|
|
|
|
mvpp2_rxq_status_update(port, rxq->id, 0, rxq->size);
|
|
|
|
|
2020-07-02 22:12:41 +08:00
|
|
|
if (priv->percpu_pools) {
|
2020-12-01 02:52:01 +08:00
|
|
|
err = xdp_rxq_info_reg(&rxq->xdp_rxq_short, port->dev, rxq->id, 0);
|
2020-07-02 22:12:41 +08:00
|
|
|
if (err < 0)
|
|
|
|
goto err_free_dma;
|
|
|
|
|
2020-12-01 02:52:01 +08:00
|
|
|
err = xdp_rxq_info_reg(&rxq->xdp_rxq_long, port->dev, rxq->id, 0);
|
2020-07-02 22:12:41 +08:00
|
|
|
if (err < 0)
|
|
|
|
goto err_unregister_rxq_short;
|
|
|
|
|
|
|
|
/* Every RXQ has a pool for short and another for long packets */
|
|
|
|
err = xdp_rxq_info_reg_mem_model(&rxq->xdp_rxq_short,
|
|
|
|
MEM_TYPE_PAGE_POOL,
|
|
|
|
priv->page_pool[rxq->logic_rxq]);
|
|
|
|
if (err < 0)
|
|
|
|
goto err_unregister_rxq_long;
|
|
|
|
|
|
|
|
err = xdp_rxq_info_reg_mem_model(&rxq->xdp_rxq_long,
|
|
|
|
MEM_TYPE_PAGE_POOL,
|
|
|
|
priv->page_pool[rxq->logic_rxq +
|
|
|
|
port->nrxqs]);
|
|
|
|
if (err < 0)
|
|
|
|
goto err_unregister_mem_rxq_short;
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
return 0;
|
2020-07-02 22:12:41 +08:00
|
|
|
|
|
|
|
err_unregister_mem_rxq_short:
|
|
|
|
xdp_rxq_info_unreg_mem_model(&rxq->xdp_rxq_short);
|
|
|
|
err_unregister_rxq_long:
|
|
|
|
xdp_rxq_info_unreg(&rxq->xdp_rxq_long);
|
|
|
|
err_unregister_rxq_short:
|
|
|
|
xdp_rxq_info_unreg(&rxq->xdp_rxq_short);
|
|
|
|
err_free_dma:
|
|
|
|
dma_free_coherent(port->dev->dev.parent,
|
|
|
|
rxq->size * MVPP2_DESC_ALIGNED_SIZE,
|
|
|
|
rxq->descs, rxq->descs_dma);
|
|
|
|
return err;
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Push packets received by the RXQ to BM pool */
|
|
|
|
static void mvpp2_rxq_drop_pkts(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_rx_queue *rxq)
|
|
|
|
{
|
|
|
|
int rx_received, i;
|
|
|
|
|
|
|
|
rx_received = mvpp2_rxq_received(port, rxq->id);
|
|
|
|
if (!rx_received)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < rx_received; i++) {
|
|
|
|
struct mvpp2_rx_desc *rx_desc = mvpp2_rxq_next_desc_get(rxq);
|
2017-06-11 05:18:21 +08:00
|
|
|
u32 status = mvpp2_rxdesc_status_get(port, rx_desc);
|
|
|
|
int pool;
|
|
|
|
|
|
|
|
pool = (status & MVPP2_RXD_BM_POOL_ID_MASK) >>
|
|
|
|
MVPP2_RXD_BM_POOL_ID_OFFS;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2017-06-22 20:23:20 +08:00
|
|
|
mvpp2_bm_pool_put(port, pool,
|
net: mvpp2: add and use accessors for TX/RX descriptors
The PPv2.2 IP has a different TX and RX descriptor layout compared to
PPv2.1. In order to prepare for the introduction of PPv2.2 support in
mvpp2, this commit adds accessors for the different fields of the TX
and RX descriptors, and changes the code to use them.
For now, the mvpp2_port argument passed to the accessors is not used,
but it will be used in follow-up to update the descriptor according to
the version of the IP being used.
Apart from the mechanical changes to use the newly introduced
accessors, a few other changes, needed to use the accessors, are made:
- The mvpp2_txq_inc_put() function now takes a mvpp2_port as first
argument, as it is needed to use the accessors.
- Similarly, the mvpp2_bm_cookie_build() gains a mvpp2_port first
argument, for the same reason.
- In mvpp2_rx_error(), instead of accessing the RX descriptor in each
case of the switch, we introduce a local variable to store the
packet size.
- In mvpp2_tx_frag_process() and mvpp2_tx() instead of accessing the
packet size from the TX descriptor, we use the actual value
available in the function, which is used to set the TX descriptor
packet size a few lines before.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:05 +08:00
|
|
|
mvpp2_rxdesc_dma_addr_get(port, rx_desc),
|
|
|
|
mvpp2_rxdesc_cookie_get(port, rx_desc));
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
mvpp2_rxq_status_update(port, rxq->id, rx_received, rx_received);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Cleanup Rx queue */
|
|
|
|
static void mvpp2_rxq_deinit(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_rx_queue *rxq)
|
|
|
|
{
|
2018-09-19 17:27:08 +08:00
|
|
|
unsigned int thread;
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
|
2020-07-02 22:12:41 +08:00
|
|
|
if (xdp_rxq_info_is_reg(&rxq->xdp_rxq_short))
|
|
|
|
xdp_rxq_info_unreg(&rxq->xdp_rxq_short);
|
|
|
|
|
|
|
|
if (xdp_rxq_info_is_reg(&rxq->xdp_rxq_long))
|
|
|
|
xdp_rxq_info_unreg(&rxq->xdp_rxq_long);
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_rxq_drop_pkts(port, rxq);
|
|
|
|
|
|
|
|
if (rxq->descs)
|
|
|
|
dma_free_coherent(port->dev->dev.parent,
|
|
|
|
rxq->size * MVPP2_DESC_ALIGNED_SIZE,
|
|
|
|
rxq->descs,
|
2017-03-07 23:53:00 +08:00
|
|
|
rxq->descs_dma);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
rxq->descs = NULL;
|
|
|
|
rxq->last_desc = 0;
|
|
|
|
rxq->next_desc_to_proc = 0;
|
2017-03-07 23:53:00 +08:00
|
|
|
rxq->descs_dma = 0;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* Clear Rx descriptors queue starting address and size;
|
|
|
|
* free descriptor number
|
|
|
|
*/
|
|
|
|
mvpp2_write(port->priv, MVPP2_RXQ_STATUS_REG(rxq->id), 0);
|
2018-09-19 17:27:10 +08:00
|
|
|
thread = mvpp2_cpu_to_thread(port->priv, get_cpu());
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_RXQ_NUM_REG, rxq->id);
|
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_RXQ_DESC_ADDR_REG, 0);
|
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_RXQ_DESC_SIZE_REG, 0);
|
2017-06-11 05:18:22 +08:00
|
|
|
put_cpu();
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create and initialize a Tx queue */
|
|
|
|
static int mvpp2_txq_init(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_tx_queue *txq)
|
|
|
|
{
|
|
|
|
u32 val;
|
2018-09-19 17:27:09 +08:00
|
|
|
unsigned int thread;
|
2018-09-19 17:27:05 +08:00
|
|
|
int desc, desc_per_txq, tx_port_num;
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu;
|
|
|
|
|
|
|
|
txq->size = port->tx_ring_size;
|
|
|
|
|
|
|
|
/* Allocate memory for Tx descriptors */
|
|
|
|
txq->descs = dma_alloc_coherent(port->dev->dev.parent,
|
|
|
|
txq->size * MVPP2_DESC_ALIGNED_SIZE,
|
2017-03-07 23:53:00 +08:00
|
|
|
&txq->descs_dma, GFP_KERNEL);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (!txq->descs)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
txq->last_desc = txq->size - 1;
|
|
|
|
|
|
|
|
/* Set Tx descriptors queue starting address - indirect access */
|
2018-09-19 17:27:10 +08:00
|
|
|
thread = mvpp2_cpu_to_thread(port->priv, get_cpu());
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_TXQ_NUM_REG, txq->id);
|
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_TXQ_DESC_ADDR_REG,
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
txq->descs_dma);
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_TXQ_DESC_SIZE_REG,
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
txq->size & MVPP2_TXQ_DESC_SIZE_MASK);
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_TXQ_INDEX_REG, 0);
|
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_TXQ_RSVD_CLR_REG,
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
txq->id << MVPP2_TXQ_RSVD_CLR_OFFSET);
|
2018-09-19 17:27:11 +08:00
|
|
|
val = mvpp2_thread_read(port->priv, thread, MVPP2_TXQ_PENDING_REG);
|
2014-07-11 03:52:13 +08:00
|
|
|
val &= ~MVPP2_TXQ_PENDING_MASK;
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_TXQ_PENDING_REG, val);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* Calculate base address in prefetch buffer. We reserve 16 descriptors
|
|
|
|
* for each existing TXQ.
|
|
|
|
* TCONTS for PON port must be continuous from 0 to MVPP2_MAX_TCONT
|
2018-05-18 20:34:51 +08:00
|
|
|
* GBE ports assumed to be continuous from 0 to MVPP2_MAX_PORTS
|
2014-07-11 03:52:13 +08:00
|
|
|
*/
|
|
|
|
desc_per_txq = 16;
|
|
|
|
desc = (port->id * MVPP2_MAX_TXQ * desc_per_txq) +
|
|
|
|
(txq->log_id * desc_per_txq);
|
|
|
|
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_TXQ_PREF_BUF_REG,
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
MVPP2_PREF_BUF_PTR(desc) | MVPP2_PREF_BUF_SIZE_16 |
|
|
|
|
MVPP2_PREF_BUF_THRESH(desc_per_txq / 2));
|
2017-06-11 05:18:22 +08:00
|
|
|
put_cpu();
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* WRR / EJP configuration - indirect access */
|
|
|
|
tx_port_num = mvpp2_egress_port(port);
|
|
|
|
mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
|
|
|
|
|
|
|
|
val = mvpp2_read(port->priv, MVPP2_TXQ_SCHED_REFILL_REG(txq->log_id));
|
|
|
|
val &= ~MVPP2_TXQ_REFILL_PERIOD_ALL_MASK;
|
|
|
|
val |= MVPP2_TXQ_REFILL_PERIOD_MASK(1);
|
|
|
|
val |= MVPP2_TXQ_REFILL_TOKENS_ALL_MASK;
|
|
|
|
mvpp2_write(port->priv, MVPP2_TXQ_SCHED_REFILL_REG(txq->log_id), val);
|
|
|
|
|
|
|
|
val = MVPP2_TXQ_TOKEN_SIZE_MAX;
|
|
|
|
mvpp2_write(port->priv, MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq->log_id),
|
|
|
|
val);
|
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
for (thread = 0; thread < port->priv->nthreads; thread++) {
|
2018-09-19 17:27:09 +08:00
|
|
|
txq_pcpu = per_cpu_ptr(txq->pcpu, thread);
|
2014-07-11 03:52:13 +08:00
|
|
|
txq_pcpu->size = txq->size;
|
2017-04-17 14:09:07 +08:00
|
|
|
txq_pcpu->buffs = kmalloc_array(txq_pcpu->size,
|
|
|
|
sizeof(*txq_pcpu->buffs),
|
|
|
|
GFP_KERNEL);
|
net: mvpp2: fix dma unmapping of TX buffers for fragments
Since commit 71ce391dfb784 ("net: mvpp2: enable proper per-CPU TX
buffers unmapping"), we are not correctly DMA unmapping TX buffers for
fragments.
Indeed, the mvpp2_txq_inc_put() function only stores in the
txq_cpu->tx_buffs[] array the physical address of the buffer to be
DMA-unmapped when skb != NULL. In addition, when DMA-unmapping, we use
skb_headlen(skb) to get the size to be unmapped. Both of this works fine
for TX descriptors that are associated directly to a SKB, but not the
ones that are used for fragments, with a NULL pointer as skb:
- We have a NULL physical address when calling DMA unmap
- skb_headlen(skb) crashes because skb is NULL
This causes random crashes when fragments are used.
To solve this problem, we need to:
- Store the physical address of the buffer to be unmapped
unconditionally, regardless of whether it is tied to a SKB or not.
- Store the length of the buffer to be unmapped, which requires a new
field.
Instead of adding a third array to store the length of the buffer to be
unmapped, and as suggested by David Miller, this commit refactors the
tx_buffs[] and tx_skb[] arrays of 'struct mvpp2_txq_pcpu' into a
separate structure 'mvpp2_txq_pcpu_buf', to which a 'size' field is
added. Therefore, instead of having three arrays to allocate/free, we
have a single one, which also improve data locality, reducing the
impact on the CPU cache.
Fixes: 71ce391dfb784 ("net: mvpp2: enable proper per-CPU TX buffers unmapping")
Reported-by: Raphael G <raphael.glon@corp.ovh.com>
Cc: Raphael G <raphael.glon@corp.ovh.com>
Cc: stable@vger.kernel.org
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-12-21 18:28:49 +08:00
|
|
|
if (!txq_pcpu->buffs)
|
2017-11-28 21:19:48 +08:00
|
|
|
return -ENOMEM;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
txq_pcpu->count = 0;
|
|
|
|
txq_pcpu->reserved_num = 0;
|
|
|
|
txq_pcpu->txq_put_index = 0;
|
|
|
|
txq_pcpu->txq_get_index = 0;
|
2017-12-11 16:13:25 +08:00
|
|
|
txq_pcpu->tso_headers = NULL;
|
2017-08-23 15:46:56 +08:00
|
|
|
|
2017-10-30 18:23:31 +08:00
|
|
|
txq_pcpu->stop_threshold = txq->size - MVPP2_MAX_SKB_DESCS;
|
|
|
|
txq_pcpu->wake_threshold = txq_pcpu->stop_threshold / 2;
|
|
|
|
|
2017-08-23 15:46:56 +08:00
|
|
|
txq_pcpu->tso_headers =
|
|
|
|
dma_alloc_coherent(port->dev->dev.parent,
|
2017-10-23 21:24:29 +08:00
|
|
|
txq_pcpu->size * TSO_HEADER_SIZE,
|
2017-08-23 15:46:56 +08:00
|
|
|
&txq_pcpu->tso_headers_dma,
|
|
|
|
GFP_KERNEL);
|
|
|
|
if (!txq_pcpu->tso_headers)
|
2017-11-28 21:19:48 +08:00
|
|
|
return -ENOMEM;
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Free allocated TXQ resources */
|
|
|
|
static void mvpp2_txq_deinit(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_tx_queue *txq)
|
|
|
|
{
|
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu;
|
2018-09-19 17:27:09 +08:00
|
|
|
unsigned int thread;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
for (thread = 0; thread < port->priv->nthreads; thread++) {
|
2018-09-19 17:27:09 +08:00
|
|
|
txq_pcpu = per_cpu_ptr(txq->pcpu, thread);
|
net: mvpp2: fix dma unmapping of TX buffers for fragments
Since commit 71ce391dfb784 ("net: mvpp2: enable proper per-CPU TX
buffers unmapping"), we are not correctly DMA unmapping TX buffers for
fragments.
Indeed, the mvpp2_txq_inc_put() function only stores in the
txq_cpu->tx_buffs[] array the physical address of the buffer to be
DMA-unmapped when skb != NULL. In addition, when DMA-unmapping, we use
skb_headlen(skb) to get the size to be unmapped. Both of this works fine
for TX descriptors that are associated directly to a SKB, but not the
ones that are used for fragments, with a NULL pointer as skb:
- We have a NULL physical address when calling DMA unmap
- skb_headlen(skb) crashes because skb is NULL
This causes random crashes when fragments are used.
To solve this problem, we need to:
- Store the physical address of the buffer to be unmapped
unconditionally, regardless of whether it is tied to a SKB or not.
- Store the length of the buffer to be unmapped, which requires a new
field.
Instead of adding a third array to store the length of the buffer to be
unmapped, and as suggested by David Miller, this commit refactors the
tx_buffs[] and tx_skb[] arrays of 'struct mvpp2_txq_pcpu' into a
separate structure 'mvpp2_txq_pcpu_buf', to which a 'size' field is
added. Therefore, instead of having three arrays to allocate/free, we
have a single one, which also improve data locality, reducing the
impact on the CPU cache.
Fixes: 71ce391dfb784 ("net: mvpp2: enable proper per-CPU TX buffers unmapping")
Reported-by: Raphael G <raphael.glon@corp.ovh.com>
Cc: Raphael G <raphael.glon@corp.ovh.com>
Cc: stable@vger.kernel.org
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-12-21 18:28:49 +08:00
|
|
|
kfree(txq_pcpu->buffs);
|
2017-08-23 15:46:56 +08:00
|
|
|
|
2017-12-11 16:13:25 +08:00
|
|
|
if (txq_pcpu->tso_headers)
|
|
|
|
dma_free_coherent(port->dev->dev.parent,
|
|
|
|
txq_pcpu->size * TSO_HEADER_SIZE,
|
|
|
|
txq_pcpu->tso_headers,
|
|
|
|
txq_pcpu->tso_headers_dma);
|
|
|
|
|
|
|
|
txq_pcpu->tso_headers = NULL;
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (txq->descs)
|
|
|
|
dma_free_coherent(port->dev->dev.parent,
|
|
|
|
txq->size * MVPP2_DESC_ALIGNED_SIZE,
|
2017-03-07 23:53:00 +08:00
|
|
|
txq->descs, txq->descs_dma);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
txq->descs = NULL;
|
|
|
|
txq->last_desc = 0;
|
|
|
|
txq->next_desc_to_proc = 0;
|
2017-03-07 23:53:00 +08:00
|
|
|
txq->descs_dma = 0;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* Set minimum bandwidth for disabled TXQs */
|
2019-05-29 21:59:48 +08:00
|
|
|
mvpp2_write(port->priv, MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(txq->log_id), 0);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* Set Tx descriptors queue starting address and size */
|
2018-09-19 17:27:10 +08:00
|
|
|
thread = mvpp2_cpu_to_thread(port->priv, get_cpu());
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_TXQ_NUM_REG, txq->id);
|
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_TXQ_DESC_ADDR_REG, 0);
|
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_TXQ_DESC_SIZE_REG, 0);
|
2017-06-11 05:18:22 +08:00
|
|
|
put_cpu();
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Cleanup Tx ports */
|
|
|
|
static void mvpp2_txq_clean(struct mvpp2_port *port, struct mvpp2_tx_queue *txq)
|
|
|
|
{
|
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu;
|
2018-09-19 17:27:05 +08:00
|
|
|
int delay, pending;
|
2018-09-19 17:27:10 +08:00
|
|
|
unsigned int thread = mvpp2_cpu_to_thread(port->priv, get_cpu());
|
2014-07-11 03:52:13 +08:00
|
|
|
u32 val;
|
|
|
|
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_TXQ_NUM_REG, txq->id);
|
|
|
|
val = mvpp2_thread_read(port->priv, thread, MVPP2_TXQ_PREF_BUF_REG);
|
2014-07-11 03:52:13 +08:00
|
|
|
val |= MVPP2_TXQ_DRAIN_EN_MASK;
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_TXQ_PREF_BUF_REG, val);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* The napi queue has been stopped so wait for all packets
|
|
|
|
* to be transmitted.
|
|
|
|
*/
|
|
|
|
delay = 0;
|
|
|
|
do {
|
|
|
|
if (delay >= MVPP2_TX_PENDING_TIMEOUT_MSEC) {
|
|
|
|
netdev_warn(port->dev,
|
|
|
|
"port %d: cleaning queue %d timed out\n",
|
|
|
|
port->id, txq->log_id);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
mdelay(1);
|
|
|
|
delay++;
|
|
|
|
|
2018-09-19 17:27:11 +08:00
|
|
|
pending = mvpp2_thread_read(port->priv, thread,
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
MVPP2_TXQ_PENDING_REG);
|
|
|
|
pending &= MVPP2_TXQ_PENDING_MASK;
|
2014-07-11 03:52:13 +08:00
|
|
|
} while (pending);
|
|
|
|
|
|
|
|
val &= ~MVPP2_TXQ_DRAIN_EN_MASK;
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread, MVPP2_TXQ_PREF_BUF_REG, val);
|
2017-06-11 05:18:22 +08:00
|
|
|
put_cpu();
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
for (thread = 0; thread < port->priv->nthreads; thread++) {
|
2018-09-19 17:27:09 +08:00
|
|
|
txq_pcpu = per_cpu_ptr(txq->pcpu, thread);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* Release all packets */
|
|
|
|
mvpp2_txq_bufs_free(port, txq, txq_pcpu, txq_pcpu->count);
|
|
|
|
|
|
|
|
/* Reset queue */
|
|
|
|
txq_pcpu->count = 0;
|
|
|
|
txq_pcpu->txq_put_index = 0;
|
|
|
|
txq_pcpu->txq_get_index = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Cleanup all Tx queues */
|
|
|
|
static void mvpp2_cleanup_txqs(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
struct mvpp2_tx_queue *txq;
|
|
|
|
int queue;
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
val = mvpp2_read(port->priv, MVPP2_TX_PORT_FLUSH_REG);
|
|
|
|
|
|
|
|
/* Reset Tx ports and delete Tx queues */
|
|
|
|
val |= MVPP2_TX_PORT_FLUSH_MASK(port->id);
|
|
|
|
mvpp2_write(port->priv, MVPP2_TX_PORT_FLUSH_REG, val);
|
|
|
|
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (queue = 0; queue < port->ntxqs; queue++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
txq = port->txqs[queue];
|
|
|
|
mvpp2_txq_clean(port, txq);
|
|
|
|
mvpp2_txq_deinit(port, txq);
|
|
|
|
}
|
|
|
|
|
|
|
|
on_each_cpu(mvpp2_txq_sent_counter_clear, port, 1);
|
|
|
|
|
|
|
|
val &= ~MVPP2_TX_PORT_FLUSH_MASK(port->id);
|
|
|
|
mvpp2_write(port->priv, MVPP2_TX_PORT_FLUSH_REG, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Cleanup all Rx queues */
|
|
|
|
static void mvpp2_cleanup_rxqs(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
int queue;
|
|
|
|
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (queue = 0; queue < port->nrxqs; queue++)
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_rxq_deinit(port, port->rxqs[queue]);
|
2021-02-11 18:48:57 +08:00
|
|
|
|
|
|
|
if (port->tx_fc)
|
|
|
|
mvpp2_rxq_disable_fc(port);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Init all Rx queues for port */
|
|
|
|
static int mvpp2_setup_rxqs(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
int queue, err;
|
|
|
|
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (queue = 0; queue < port->nrxqs; queue++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
err = mvpp2_rxq_init(port, port->rxqs[queue]);
|
|
|
|
if (err)
|
|
|
|
goto err_cleanup;
|
|
|
|
}
|
2021-02-11 18:48:57 +08:00
|
|
|
|
|
|
|
if (port->tx_fc)
|
|
|
|
mvpp2_rxq_enable_fc(port);
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_cleanup:
|
|
|
|
mvpp2_cleanup_rxqs(port);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Init all tx queues for port */
|
|
|
|
static int mvpp2_setup_txqs(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
struct mvpp2_tx_queue *txq;
|
2020-07-02 22:12:43 +08:00
|
|
|
int queue, err;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (queue = 0; queue < port->ntxqs; queue++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
txq = port->txqs[queue];
|
|
|
|
err = mvpp2_txq_init(port, txq);
|
|
|
|
if (err)
|
|
|
|
goto err_cleanup;
|
2018-09-24 17:11:05 +08:00
|
|
|
|
|
|
|
/* Assign this queue to a CPU */
|
2020-07-02 22:12:43 +08:00
|
|
|
if (queue < num_possible_cpus())
|
|
|
|
netif_set_xps_queue(port->dev, cpumask_of(queue), queue);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
if (port->has_tx_irqs) {
|
|
|
|
mvpp2_tx_time_coal_set(port);
|
|
|
|
for (queue = 0; queue < port->ntxqs; queue++) {
|
|
|
|
txq = port->txqs[queue];
|
|
|
|
mvpp2_tx_pkts_coal_set(port, txq);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
on_each_cpu(mvpp2_txq_sent_counter_clear, port, 1);
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_cleanup:
|
|
|
|
mvpp2_cleanup_txqs(port);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The callback for per-port interrupt */
|
|
|
|
static irqreturn_t mvpp2_isr(int irq, void *dev_id)
|
|
|
|
{
|
2017-08-03 16:41:59 +08:00
|
|
|
struct mvpp2_queue_vector *qv = dev_id;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2017-08-03 16:41:59 +08:00
|
|
|
mvpp2_qvec_interrupt_disable(qv);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2017-08-03 16:41:59 +08:00
|
|
|
napi_schedule(&qv->napi);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
2020-09-10 00:26:00 +08:00
|
|
|
static void mvpp2_isr_handle_ptp_queue(struct mvpp2_port *port, int nq)
|
|
|
|
{
|
|
|
|
struct skb_shared_hwtstamps shhwtstamps;
|
|
|
|
struct mvpp2_hwtstamp_queue *queue;
|
|
|
|
struct sk_buff *skb;
|
|
|
|
void __iomem *ptp_q;
|
|
|
|
unsigned int id;
|
|
|
|
u32 r0, r1, r2;
|
|
|
|
|
|
|
|
ptp_q = port->priv->iface_base + MVPP22_PTP_BASE(port->gop_id);
|
|
|
|
if (nq)
|
|
|
|
ptp_q += MVPP22_PTP_TX_Q1_R0 - MVPP22_PTP_TX_Q0_R0;
|
|
|
|
|
|
|
|
queue = &port->tx_hwtstamp_queue[nq];
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
r0 = readl_relaxed(ptp_q + MVPP22_PTP_TX_Q0_R0) & 0xffff;
|
|
|
|
if (!r0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
r1 = readl_relaxed(ptp_q + MVPP22_PTP_TX_Q0_R1) & 0xffff;
|
|
|
|
r2 = readl_relaxed(ptp_q + MVPP22_PTP_TX_Q0_R2) & 0xffff;
|
|
|
|
|
|
|
|
id = (r0 >> 1) & 31;
|
|
|
|
|
|
|
|
skb = queue->skb[id];
|
|
|
|
queue->skb[id] = NULL;
|
|
|
|
if (skb) {
|
|
|
|
u32 ts = r2 << 19 | r1 << 3 | r0 >> 13;
|
|
|
|
|
|
|
|
mvpp22_tai_tstamp(port->priv->tai, ts, &shhwtstamps);
|
|
|
|
skb_tstamp_tx(skb, &shhwtstamps);
|
|
|
|
dev_kfree_skb_any(skb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp2_isr_handle_ptp(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
void __iomem *ptp;
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
ptp = port->priv->iface_base + MVPP22_PTP_BASE(port->gop_id);
|
|
|
|
val = readl(ptp + MVPP22_PTP_INT_CAUSE);
|
|
|
|
if (val & MVPP22_PTP_INT_CAUSE_QUEUE0)
|
|
|
|
mvpp2_isr_handle_ptp_queue(port, 0);
|
|
|
|
if (val & MVPP22_PTP_INT_CAUSE_QUEUE1)
|
|
|
|
mvpp2_isr_handle_ptp_queue(port, 1);
|
|
|
|
}
|
|
|
|
|
2020-09-10 00:25:35 +08:00
|
|
|
static void mvpp2_isr_handle_link(struct mvpp2_port *port, bool link)
|
2017-09-01 17:04:54 +08:00
|
|
|
{
|
|
|
|
struct net_device *dev = port->dev;
|
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
if (port->phylink) {
|
|
|
|
phylink_mac_change(port->phylink, link);
|
2020-09-10 00:25:35 +08:00
|
|
|
return;
|
2018-05-17 16:29:31 +08:00
|
|
|
}
|
|
|
|
|
2020-09-10 00:25:35 +08:00
|
|
|
if (!netif_running(dev))
|
|
|
|
return;
|
2017-09-01 17:04:54 +08:00
|
|
|
|
|
|
|
if (link) {
|
|
|
|
mvpp2_interrupts_enable(port);
|
|
|
|
|
|
|
|
mvpp2_egress_enable(port);
|
|
|
|
mvpp2_ingress_enable(port);
|
|
|
|
netif_carrier_on(dev);
|
|
|
|
netif_tx_wake_all_queues(dev);
|
|
|
|
} else {
|
|
|
|
netif_tx_stop_all_queues(dev);
|
|
|
|
netif_carrier_off(dev);
|
|
|
|
mvpp2_ingress_disable(port);
|
|
|
|
mvpp2_egress_disable(port);
|
|
|
|
|
|
|
|
mvpp2_interrupts_disable(port);
|
|
|
|
}
|
2020-09-10 00:25:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp2_isr_handle_xlg(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
bool link;
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
val = readl(port->base + MVPP22_XLG_INT_STAT);
|
|
|
|
if (val & MVPP22_XLG_INT_STAT_LINK) {
|
|
|
|
val = readl(port->base + MVPP22_XLG_STATUS);
|
2020-09-10 21:49:10 +08:00
|
|
|
link = (val & MVPP22_XLG_STATUS_LINK_UP);
|
2020-09-10 00:25:35 +08:00
|
|
|
mvpp2_isr_handle_link(port, link);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp2_isr_handle_gmac_internal(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
bool link;
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
if (phy_interface_mode_is_rgmii(port->phy_interface) ||
|
|
|
|
phy_interface_mode_is_8023z(port->phy_interface) ||
|
|
|
|
port->phy_interface == PHY_INTERFACE_MODE_SGMII) {
|
|
|
|
val = readl(port->base + MVPP22_GMAC_INT_STAT);
|
|
|
|
if (val & MVPP22_GMAC_INT_STAT_LINK) {
|
|
|
|
val = readl(port->base + MVPP2_GMAC_STATUS0);
|
2020-09-10 21:49:10 +08:00
|
|
|
link = (val & MVPP2_GMAC_STATUS0_LINK_UP);
|
2020-09-10 00:25:35 +08:00
|
|
|
mvpp2_isr_handle_link(port, link);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Per-port interrupt for link status changes */
|
2020-09-10 00:25:40 +08:00
|
|
|
static irqreturn_t mvpp2_port_isr(int irq, void *dev_id)
|
2020-09-10 00:25:35 +08:00
|
|
|
{
|
|
|
|
struct mvpp2_port *port = (struct mvpp2_port *)dev_id;
|
2020-09-10 00:25:45 +08:00
|
|
|
u32 val;
|
2020-09-10 00:25:35 +08:00
|
|
|
|
|
|
|
mvpp22_gop_mask_irq(port);
|
|
|
|
|
|
|
|
if (mvpp2_port_supports_xlg(port) &&
|
|
|
|
mvpp2_is_xlg(port->phy_interface)) {
|
2020-09-10 00:25:45 +08:00
|
|
|
/* Check the external status register */
|
|
|
|
val = readl(port->base + MVPP22_XLG_EXT_INT_STAT);
|
|
|
|
if (val & MVPP22_XLG_EXT_INT_STAT_XLG)
|
|
|
|
mvpp2_isr_handle_xlg(port);
|
2020-09-10 00:26:00 +08:00
|
|
|
if (val & MVPP22_XLG_EXT_INT_STAT_PTP)
|
|
|
|
mvpp2_isr_handle_ptp(port);
|
2020-09-10 00:25:35 +08:00
|
|
|
} else {
|
2020-09-10 00:25:45 +08:00
|
|
|
/* If it's not the XLG, we must be using the GMAC.
|
|
|
|
* Check the summary status.
|
|
|
|
*/
|
|
|
|
val = readl(port->base + MVPP22_GMAC_INT_SUM_STAT);
|
|
|
|
if (val & MVPP22_GMAC_INT_SUM_STAT_INTERNAL)
|
|
|
|
mvpp2_isr_handle_gmac_internal(port);
|
2020-09-10 00:26:00 +08:00
|
|
|
if (val & MVPP22_GMAC_INT_SUM_STAT_PTP)
|
|
|
|
mvpp2_isr_handle_ptp(port);
|
2020-09-10 00:25:35 +08:00
|
|
|
}
|
2017-09-01 17:04:54 +08:00
|
|
|
|
|
|
|
mvpp22_gop_unmask_irq(port);
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
2019-08-13 16:00:25 +08:00
|
|
|
static enum hrtimer_restart mvpp2_hr_timer_cb(struct hrtimer *timer)
|
2015-08-07 01:00:30 +08:00
|
|
|
{
|
2019-08-13 16:00:25 +08:00
|
|
|
struct net_device *dev;
|
|
|
|
struct mvpp2_port *port;
|
2018-09-19 17:27:09 +08:00
|
|
|
struct mvpp2_port_pcpu *port_pcpu;
|
2015-08-07 01:00:30 +08:00
|
|
|
unsigned int tx_todo, cause;
|
|
|
|
|
2019-08-13 16:00:25 +08:00
|
|
|
port_pcpu = container_of(timer, struct mvpp2_port_pcpu, tx_done_timer);
|
|
|
|
dev = port_pcpu->dev;
|
2018-09-19 17:27:09 +08:00
|
|
|
|
2015-08-07 01:00:30 +08:00
|
|
|
if (!netif_running(dev))
|
2019-08-13 16:00:25 +08:00
|
|
|
return HRTIMER_NORESTART;
|
|
|
|
|
2015-08-07 01:00:30 +08:00
|
|
|
port_pcpu->timer_scheduled = false;
|
2019-08-13 16:00:25 +08:00
|
|
|
port = netdev_priv(dev);
|
2015-08-07 01:00:30 +08:00
|
|
|
|
|
|
|
/* Process all the Tx queues */
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
cause = (1 << port->ntxqs) - 1;
|
2018-09-19 17:27:09 +08:00
|
|
|
tx_todo = mvpp2_tx_done(port, cause,
|
2018-09-19 17:27:10 +08:00
|
|
|
mvpp2_cpu_to_thread(port->priv, smp_processor_id()));
|
2015-08-07 01:00:30 +08:00
|
|
|
|
|
|
|
/* Set the timer in case not all the packets were processed */
|
2019-08-13 16:00:25 +08:00
|
|
|
if (tx_todo && !port_pcpu->timer_scheduled) {
|
|
|
|
port_pcpu->timer_scheduled = true;
|
|
|
|
hrtimer_forward_now(&port_pcpu->tx_done_timer,
|
|
|
|
MVPP2_TXDONE_HRTIMER_PERIOD_NS);
|
2015-08-07 01:00:30 +08:00
|
|
|
|
2019-08-13 16:00:25 +08:00
|
|
|
return HRTIMER_RESTART;
|
|
|
|
}
|
2015-08-07 01:00:30 +08:00
|
|
|
return HRTIMER_NORESTART;
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Main RX/TX processing routines */
|
|
|
|
|
|
|
|
/* Display more error info */
|
|
|
|
static void mvpp2_rx_error(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_rx_desc *rx_desc)
|
|
|
|
{
|
net: mvpp2: add and use accessors for TX/RX descriptors
The PPv2.2 IP has a different TX and RX descriptor layout compared to
PPv2.1. In order to prepare for the introduction of PPv2.2 support in
mvpp2, this commit adds accessors for the different fields of the TX
and RX descriptors, and changes the code to use them.
For now, the mvpp2_port argument passed to the accessors is not used,
but it will be used in follow-up to update the descriptor according to
the version of the IP being used.
Apart from the mechanical changes to use the newly introduced
accessors, a few other changes, needed to use the accessors, are made:
- The mvpp2_txq_inc_put() function now takes a mvpp2_port as first
argument, as it is needed to use the accessors.
- Similarly, the mvpp2_bm_cookie_build() gains a mvpp2_port first
argument, for the same reason.
- In mvpp2_rx_error(), instead of accessing the RX descriptor in each
case of the switch, we introduce a local variable to store the
packet size.
- In mvpp2_tx_frag_process() and mvpp2_tx() instead of accessing the
packet size from the TX descriptor, we use the actual value
available in the function, which is used to set the TX descriptor
packet size a few lines before.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:05 +08:00
|
|
|
u32 status = mvpp2_rxdesc_status_get(port, rx_desc);
|
|
|
|
size_t sz = mvpp2_rxdesc_size_get(port, rx_desc);
|
2018-05-17 16:34:27 +08:00
|
|
|
char *err_str = NULL;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
switch (status & MVPP2_RXD_ERR_CODE_MASK) {
|
|
|
|
case MVPP2_RXD_ERR_CRC:
|
2018-05-17 16:34:27 +08:00
|
|
|
err_str = "crc";
|
2014-07-11 03:52:13 +08:00
|
|
|
break;
|
|
|
|
case MVPP2_RXD_ERR_OVERRUN:
|
2018-05-17 16:34:27 +08:00
|
|
|
err_str = "overrun";
|
2014-07-11 03:52:13 +08:00
|
|
|
break;
|
|
|
|
case MVPP2_RXD_ERR_RESOURCE:
|
2018-05-17 16:34:27 +08:00
|
|
|
err_str = "resource";
|
2014-07-11 03:52:13 +08:00
|
|
|
break;
|
|
|
|
}
|
2018-05-17 16:34:27 +08:00
|
|
|
if (err_str && net_ratelimit())
|
|
|
|
netdev_err(port->dev,
|
|
|
|
"bad rx status %08x (%s error), size=%zu\n",
|
|
|
|
status, err_str, sz);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle RX checksum offload */
|
|
|
|
static void mvpp2_rx_csum(struct mvpp2_port *port, u32 status,
|
|
|
|
struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
if (((status & MVPP2_RXD_L3_IP4) &&
|
|
|
|
!(status & MVPP2_RXD_IP4_HEADER_ERR)) ||
|
|
|
|
(status & MVPP2_RXD_L3_IP6))
|
|
|
|
if (((status & MVPP2_RXD_L4_UDP) ||
|
|
|
|
(status & MVPP2_RXD_L4_TCP)) &&
|
|
|
|
(status & MVPP2_RXD_L4_CSUM_OK)) {
|
|
|
|
skb->csum = 0;
|
|
|
|
skb->ip_summed = CHECKSUM_UNNECESSARY;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
skb->ip_summed = CHECKSUM_NONE;
|
|
|
|
}
|
|
|
|
|
2019-10-03 05:49:04 +08:00
|
|
|
/* Allocate a new skb and add it to BM pool */
|
2014-07-11 03:52:13 +08:00
|
|
|
static int mvpp2_rx_refill(struct mvpp2_port *port,
|
2020-07-02 22:12:41 +08:00
|
|
|
struct mvpp2_bm_pool *bm_pool,
|
|
|
|
struct page_pool *page_pool, int pool)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2017-03-07 23:53:00 +08:00
|
|
|
dma_addr_t dma_addr;
|
net: mvpp2: store physical address of buffer in rx_desc->buf_cookie
The RX descriptors of the PPv2 hardware allow to store several
information, amongst which:
- the DMA address of the buffer in which the data has been received
- a "cookie" field, left to the use of the driver, and not used by the
hardware
In the current implementation, the "cookie" field is used to store the
virtual address of the buffer, so that in the receive completion path,
we can easily get the virtual address of the buffer that corresponds to
a completed RX descriptors.
On PPv2.1, used on 32-bit platforms, those two fields are 32-bit wide,
which is enough to store a DMA address in the first field, and a virtual
address in the second field.
On PPv2.2, used on 64-bit platforms, these two fields have been extended
to 40 bits. While 40 bits is enough to store a DMA address (as long as
the DMA mask is 40 bits or lower), it is not enough to store a virtual
address. Therefore, the "cookie" field can no longer be used to store
the virtual address of the buffer.
However, as Russell King pointed out, the RX buffers are always
allocated in the kernel linear mapping, and therefore using
phys_to_virt() on the physical address of the RX buffer is possible and
correct.
Therefore, this commit changes the driver to use the "cookie" field to
store the physical address instead of the virtual
address. phys_to_virt() is used in the receive completion path to
retrieve the virtual address from the physical address.
It is obviously important to realize that the DMA address and physical
address are two different things, which is why we store both in the RX
descriptors. While those addresses may be identical in some situations,
it remains two distinct concepts, and both addresses should be handled
separately.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:04 +08:00
|
|
|
phys_addr_t phys_addr;
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
void *buf;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2020-07-02 22:12:41 +08:00
|
|
|
buf = mvpp2_buf_alloc(port, bm_pool, page_pool,
|
|
|
|
&dma_addr, &phys_addr, GFP_ATOMIC);
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
if (!buf)
|
2014-07-11 03:52:13 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2017-06-22 20:23:20 +08:00
|
|
|
mvpp2_bm_pool_put(port, pool, dma_addr, phys_addr);
|
2017-02-21 18:28:07 +08:00
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle tx checksum */
|
|
|
|
static u32 mvpp2_skb_tx_csum(struct mvpp2_port *port, struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
if (skb->ip_summed == CHECKSUM_PARTIAL) {
|
|
|
|
int ip_hdr_len = 0;
|
|
|
|
u8 l4_proto;
|
2018-10-05 15:04:40 +08:00
|
|
|
__be16 l3_proto = vlan_get_protocol(skb);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-10-05 15:04:40 +08:00
|
|
|
if (l3_proto == htons(ETH_P_IP)) {
|
2014-07-11 03:52:13 +08:00
|
|
|
struct iphdr *ip4h = ip_hdr(skb);
|
|
|
|
|
|
|
|
/* Calculate IPv4 checksum and L4 checksum */
|
|
|
|
ip_hdr_len = ip4h->ihl;
|
|
|
|
l4_proto = ip4h->protocol;
|
2018-10-05 15:04:40 +08:00
|
|
|
} else if (l3_proto == htons(ETH_P_IPV6)) {
|
2014-07-11 03:52:13 +08:00
|
|
|
struct ipv6hdr *ip6h = ipv6_hdr(skb);
|
|
|
|
|
|
|
|
/* Read l4_protocol from one of IPv6 extra headers */
|
|
|
|
if (skb_network_header_len(skb) > 0)
|
|
|
|
ip_hdr_len = (skb_network_header_len(skb) >> 2);
|
|
|
|
l4_proto = ip6h->nexthdr;
|
|
|
|
} else {
|
|
|
|
return MVPP2_TXD_L4_CSUM_NOT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mvpp2_txq_desc_csum(skb_network_offset(skb),
|
2018-10-05 15:04:40 +08:00
|
|
|
l3_proto, ip_hdr_len, l4_proto);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return MVPP2_TXD_L4_CSUM_NOT | MVPP2_TXD_IP_CSUM_DISABLE;
|
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:43 +08:00
|
|
|
static void mvpp2_xdp_finish_tx(struct mvpp2_port *port, u16 txq_id, int nxmit, int nxmit_byte)
|
|
|
|
{
|
|
|
|
unsigned int thread = mvpp2_cpu_to_thread(port->priv, smp_processor_id());
|
|
|
|
struct mvpp2_tx_queue *aggr_txq;
|
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu;
|
|
|
|
struct mvpp2_tx_queue *txq;
|
|
|
|
struct netdev_queue *nq;
|
|
|
|
|
|
|
|
txq = port->txqs[txq_id];
|
|
|
|
txq_pcpu = per_cpu_ptr(txq->pcpu, thread);
|
|
|
|
nq = netdev_get_tx_queue(port->dev, txq_id);
|
|
|
|
aggr_txq = &port->priv->aggr_txqs[thread];
|
|
|
|
|
|
|
|
txq_pcpu->reserved_num -= nxmit;
|
|
|
|
txq_pcpu->count += nxmit;
|
|
|
|
aggr_txq->count += nxmit;
|
|
|
|
|
|
|
|
/* Enable transmit */
|
|
|
|
wmb();
|
|
|
|
mvpp2_aggr_txq_pend_desc_add(port, nxmit);
|
|
|
|
|
|
|
|
if (txq_pcpu->count >= txq_pcpu->stop_threshold)
|
|
|
|
netif_tx_stop_queue(nq);
|
|
|
|
|
|
|
|
/* Finalize TX processing */
|
|
|
|
if (!port->has_tx_irqs && txq_pcpu->count >= txq->done_pkts_coal)
|
|
|
|
mvpp2_txq_done(port, txq, txq_pcpu);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
mvpp2_xdp_submit_frame(struct mvpp2_port *port, u16 txq_id,
|
|
|
|
struct xdp_frame *xdpf, bool dma_map)
|
|
|
|
{
|
|
|
|
unsigned int thread = mvpp2_cpu_to_thread(port->priv, smp_processor_id());
|
|
|
|
u32 tx_cmd = MVPP2_TXD_L4_CSUM_NOT | MVPP2_TXD_IP_CSUM_DISABLE |
|
|
|
|
MVPP2_TXD_F_DESC | MVPP2_TXD_L_DESC;
|
|
|
|
enum mvpp2_tx_buf_type buf_type;
|
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu;
|
|
|
|
struct mvpp2_tx_queue *aggr_txq;
|
|
|
|
struct mvpp2_tx_desc *tx_desc;
|
|
|
|
struct mvpp2_tx_queue *txq;
|
|
|
|
int ret = MVPP2_XDP_TX;
|
|
|
|
dma_addr_t dma_addr;
|
|
|
|
|
|
|
|
txq = port->txqs[txq_id];
|
|
|
|
txq_pcpu = per_cpu_ptr(txq->pcpu, thread);
|
|
|
|
aggr_txq = &port->priv->aggr_txqs[thread];
|
|
|
|
|
|
|
|
/* Check number of available descriptors */
|
|
|
|
if (mvpp2_aggr_desc_num_check(port, aggr_txq, 1) ||
|
|
|
|
mvpp2_txq_reserved_desc_num_proc(port, txq, txq_pcpu, 1)) {
|
|
|
|
ret = MVPP2_XDP_DROPPED;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get a descriptor for the first part of the packet */
|
|
|
|
tx_desc = mvpp2_txq_next_desc_get(aggr_txq);
|
|
|
|
mvpp2_txdesc_txq_set(port, tx_desc, txq->id);
|
|
|
|
mvpp2_txdesc_size_set(port, tx_desc, xdpf->len);
|
|
|
|
|
|
|
|
if (dma_map) {
|
|
|
|
/* XDP_REDIRECT or AF_XDP */
|
|
|
|
dma_addr = dma_map_single(port->dev->dev.parent, xdpf->data,
|
|
|
|
xdpf->len, DMA_TO_DEVICE);
|
|
|
|
|
|
|
|
if (unlikely(dma_mapping_error(port->dev->dev.parent, dma_addr))) {
|
|
|
|
mvpp2_txq_desc_put(txq);
|
|
|
|
ret = MVPP2_XDP_DROPPED;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf_type = MVPP2_TYPE_XDP_NDO;
|
|
|
|
} else {
|
|
|
|
/* XDP_TX */
|
|
|
|
struct page *page = virt_to_page(xdpf->data);
|
|
|
|
|
|
|
|
dma_addr = page_pool_get_dma_addr(page) +
|
|
|
|
sizeof(*xdpf) + xdpf->headroom;
|
|
|
|
dma_sync_single_for_device(port->dev->dev.parent, dma_addr,
|
|
|
|
xdpf->len, DMA_BIDIRECTIONAL);
|
|
|
|
|
|
|
|
buf_type = MVPP2_TYPE_XDP_TX;
|
|
|
|
}
|
|
|
|
|
|
|
|
mvpp2_txdesc_dma_addr_set(port, tx_desc, dma_addr);
|
|
|
|
|
|
|
|
mvpp2_txdesc_cmd_set(port, tx_desc, tx_cmd);
|
|
|
|
mvpp2_txq_inc_put(port, txq_pcpu, xdpf, tx_desc, buf_type);
|
|
|
|
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
mvpp2_xdp_xmit_back(struct mvpp2_port *port, struct xdp_buff *xdp)
|
|
|
|
{
|
2020-07-02 22:12:44 +08:00
|
|
|
struct mvpp2_pcpu_stats *stats = this_cpu_ptr(port->stats);
|
2020-07-02 22:12:43 +08:00
|
|
|
struct xdp_frame *xdpf;
|
|
|
|
u16 txq_id;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
xdpf = xdp_convert_buff_to_frame(xdp);
|
|
|
|
if (unlikely(!xdpf))
|
|
|
|
return MVPP2_XDP_DROPPED;
|
|
|
|
|
|
|
|
/* The first of the TX queues are used for XPS,
|
|
|
|
* the second half for XDP_TX
|
|
|
|
*/
|
|
|
|
txq_id = mvpp2_cpu_to_thread(port->priv, smp_processor_id()) + (port->ntxqs / 2);
|
|
|
|
|
|
|
|
ret = mvpp2_xdp_submit_frame(port, txq_id, xdpf, false);
|
2020-07-02 22:12:44 +08:00
|
|
|
if (ret == MVPP2_XDP_TX) {
|
|
|
|
u64_stats_update_begin(&stats->syncp);
|
|
|
|
stats->tx_bytes += xdpf->len;
|
|
|
|
stats->tx_packets++;
|
|
|
|
stats->xdp_tx++;
|
|
|
|
u64_stats_update_end(&stats->syncp);
|
|
|
|
|
2020-07-02 22:12:43 +08:00
|
|
|
mvpp2_xdp_finish_tx(port, txq_id, 1, xdpf->len);
|
2020-07-02 22:12:44 +08:00
|
|
|
} else {
|
|
|
|
u64_stats_update_begin(&stats->syncp);
|
|
|
|
stats->xdp_tx_err++;
|
|
|
|
u64_stats_update_end(&stats->syncp);
|
|
|
|
}
|
2020-07-02 22:12:43 +08:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
mvpp2_xdp_xmit(struct net_device *dev, int num_frame,
|
|
|
|
struct xdp_frame **frames, u32 flags)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
int i, nxmit_byte = 0, nxmit = num_frame;
|
2020-07-02 22:12:44 +08:00
|
|
|
struct mvpp2_pcpu_stats *stats;
|
2020-07-02 22:12:43 +08:00
|
|
|
u16 txq_id;
|
|
|
|
u32 ret;
|
|
|
|
|
|
|
|
if (unlikely(test_bit(0, &port->state)))
|
|
|
|
return -ENETDOWN;
|
|
|
|
|
|
|
|
if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
/* The first of the TX queues are used for XPS,
|
|
|
|
* the second half for XDP_TX
|
|
|
|
*/
|
|
|
|
txq_id = mvpp2_cpu_to_thread(port->priv, smp_processor_id()) + (port->ntxqs / 2);
|
|
|
|
|
|
|
|
for (i = 0; i < num_frame; i++) {
|
|
|
|
ret = mvpp2_xdp_submit_frame(port, txq_id, frames[i], true);
|
|
|
|
if (ret == MVPP2_XDP_TX) {
|
|
|
|
nxmit_byte += frames[i]->len;
|
|
|
|
} else {
|
|
|
|
xdp_return_frame_rx_napi(frames[i]);
|
|
|
|
nxmit--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:44 +08:00
|
|
|
if (likely(nxmit > 0))
|
2020-07-02 22:12:43 +08:00
|
|
|
mvpp2_xdp_finish_tx(port, txq_id, nxmit, nxmit_byte);
|
|
|
|
|
2020-07-02 22:12:44 +08:00
|
|
|
stats = this_cpu_ptr(port->stats);
|
|
|
|
u64_stats_update_begin(&stats->syncp);
|
|
|
|
stats->tx_bytes += nxmit_byte;
|
|
|
|
stats->tx_packets += nxmit;
|
|
|
|
stats->xdp_xmit += nxmit;
|
|
|
|
stats->xdp_xmit_err += num_frame - nxmit;
|
|
|
|
u64_stats_update_end(&stats->syncp);
|
|
|
|
|
2020-07-02 22:12:43 +08:00
|
|
|
return nxmit;
|
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:42 +08:00
|
|
|
static int
|
|
|
|
mvpp2_run_xdp(struct mvpp2_port *port, struct mvpp2_rx_queue *rxq,
|
|
|
|
struct bpf_prog *prog, struct xdp_buff *xdp,
|
2020-07-02 22:12:44 +08:00
|
|
|
struct page_pool *pp, struct mvpp2_pcpu_stats *stats)
|
2020-07-02 22:12:42 +08:00
|
|
|
{
|
|
|
|
unsigned int len, sync, err;
|
|
|
|
struct page *page;
|
|
|
|
u32 ret, act;
|
|
|
|
|
|
|
|
len = xdp->data_end - xdp->data_hard_start - MVPP2_SKB_HEADROOM;
|
|
|
|
act = bpf_prog_run_xdp(prog, xdp);
|
|
|
|
|
|
|
|
/* Due xdp_adjust_tail: DMA sync for_device cover max len CPU touch */
|
|
|
|
sync = xdp->data_end - xdp->data_hard_start - MVPP2_SKB_HEADROOM;
|
|
|
|
sync = max(sync, len);
|
|
|
|
|
|
|
|
switch (act) {
|
|
|
|
case XDP_PASS:
|
2020-07-02 22:12:44 +08:00
|
|
|
stats->xdp_pass++;
|
2020-07-02 22:12:42 +08:00
|
|
|
ret = MVPP2_XDP_PASS;
|
|
|
|
break;
|
|
|
|
case XDP_REDIRECT:
|
|
|
|
err = xdp_do_redirect(port->dev, xdp, prog);
|
|
|
|
if (unlikely(err)) {
|
|
|
|
ret = MVPP2_XDP_DROPPED;
|
|
|
|
page = virt_to_head_page(xdp->data);
|
|
|
|
page_pool_put_page(pp, page, sync, true);
|
|
|
|
} else {
|
|
|
|
ret = MVPP2_XDP_REDIR;
|
2020-07-02 22:12:44 +08:00
|
|
|
stats->xdp_redirect++;
|
2020-07-02 22:12:42 +08:00
|
|
|
}
|
|
|
|
break;
|
2020-07-02 22:12:43 +08:00
|
|
|
case XDP_TX:
|
|
|
|
ret = mvpp2_xdp_xmit_back(port, xdp);
|
|
|
|
if (ret != MVPP2_XDP_TX) {
|
|
|
|
page = virt_to_head_page(xdp->data);
|
|
|
|
page_pool_put_page(pp, page, sync, true);
|
|
|
|
}
|
|
|
|
break;
|
2020-07-02 22:12:42 +08:00
|
|
|
default:
|
|
|
|
bpf_warn_invalid_xdp_action(act);
|
|
|
|
fallthrough;
|
|
|
|
case XDP_ABORTED:
|
|
|
|
trace_xdp_exception(port->dev, prog, act);
|
|
|
|
fallthrough;
|
|
|
|
case XDP_DROP:
|
|
|
|
page = virt_to_head_page(xdp->data);
|
|
|
|
page_pool_put_page(pp, page, sync, true);
|
|
|
|
ret = MVPP2_XDP_DROPPED;
|
2020-07-02 22:12:44 +08:00
|
|
|
stats->xdp_drop++;
|
2020-07-02 22:12:42 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Main rx processing */
|
2017-08-03 16:41:59 +08:00
|
|
|
static int mvpp2_rx(struct mvpp2_port *port, struct napi_struct *napi,
|
|
|
|
int rx_todo, struct mvpp2_rx_queue *rxq)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
|
|
|
struct net_device *dev = port->dev;
|
2020-07-02 22:12:44 +08:00
|
|
|
struct mvpp2_pcpu_stats ps = {};
|
2020-07-02 22:12:43 +08:00
|
|
|
enum dma_data_direction dma_dir;
|
2020-07-02 22:12:42 +08:00
|
|
|
struct bpf_prog *xdp_prog;
|
|
|
|
struct xdp_buff xdp;
|
2015-12-03 22:20:51 +08:00
|
|
|
int rx_received;
|
|
|
|
int rx_done = 0;
|
2020-07-02 22:12:42 +08:00
|
|
|
u32 xdp_ret = 0;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2020-07-02 22:12:42 +08:00
|
|
|
rcu_read_lock();
|
|
|
|
|
|
|
|
xdp_prog = READ_ONCE(port->xdp_prog);
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Get number of received packets and clamp the to-do */
|
|
|
|
rx_received = mvpp2_rxq_received(port, rxq->id);
|
|
|
|
if (rx_todo > rx_received)
|
|
|
|
rx_todo = rx_received;
|
|
|
|
|
2015-12-03 22:20:51 +08:00
|
|
|
while (rx_done < rx_todo) {
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_rx_desc *rx_desc = mvpp2_rxq_next_desc_get(rxq);
|
|
|
|
struct mvpp2_bm_pool *bm_pool;
|
2020-07-02 22:12:41 +08:00
|
|
|
struct page_pool *pp = NULL;
|
2014-07-11 03:52:13 +08:00
|
|
|
struct sk_buff *skb;
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
unsigned int frag_size;
|
2017-03-07 23:53:00 +08:00
|
|
|
dma_addr_t dma_addr;
|
net: mvpp2: add and use accessors for TX/RX descriptors
The PPv2.2 IP has a different TX and RX descriptor layout compared to
PPv2.1. In order to prepare for the introduction of PPv2.2 support in
mvpp2, this commit adds accessors for the different fields of the TX
and RX descriptors, and changes the code to use them.
For now, the mvpp2_port argument passed to the accessors is not used,
but it will be used in follow-up to update the descriptor according to
the version of the IP being used.
Apart from the mechanical changes to use the newly introduced
accessors, a few other changes, needed to use the accessors, are made:
- The mvpp2_txq_inc_put() function now takes a mvpp2_port as first
argument, as it is needed to use the accessors.
- Similarly, the mvpp2_bm_cookie_build() gains a mvpp2_port first
argument, for the same reason.
- In mvpp2_rx_error(), instead of accessing the RX descriptor in each
case of the switch, we introduce a local variable to store the
packet size.
- In mvpp2_tx_frag_process() and mvpp2_tx() instead of accessing the
packet size from the TX descriptor, we use the actual value
available in the function, which is used to set the TX descriptor
packet size a few lines before.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:05 +08:00
|
|
|
phys_addr_t phys_addr;
|
2020-09-10 00:25:55 +08:00
|
|
|
u32 rx_status, timestamp;
|
2020-07-02 22:12:42 +08:00
|
|
|
int pool, rx_bytes, err, ret;
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
void *data;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2015-12-03 22:20:51 +08:00
|
|
|
rx_done++;
|
net: mvpp2: add and use accessors for TX/RX descriptors
The PPv2.2 IP has a different TX and RX descriptor layout compared to
PPv2.1. In order to prepare for the introduction of PPv2.2 support in
mvpp2, this commit adds accessors for the different fields of the TX
and RX descriptors, and changes the code to use them.
For now, the mvpp2_port argument passed to the accessors is not used,
but it will be used in follow-up to update the descriptor according to
the version of the IP being used.
Apart from the mechanical changes to use the newly introduced
accessors, a few other changes, needed to use the accessors, are made:
- The mvpp2_txq_inc_put() function now takes a mvpp2_port as first
argument, as it is needed to use the accessors.
- Similarly, the mvpp2_bm_cookie_build() gains a mvpp2_port first
argument, for the same reason.
- In mvpp2_rx_error(), instead of accessing the RX descriptor in each
case of the switch, we introduce a local variable to store the
packet size.
- In mvpp2_tx_frag_process() and mvpp2_tx() instead of accessing the
packet size from the TX descriptor, we use the actual value
available in the function, which is used to set the TX descriptor
packet size a few lines before.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:05 +08:00
|
|
|
rx_status = mvpp2_rxdesc_status_get(port, rx_desc);
|
|
|
|
rx_bytes = mvpp2_rxdesc_size_get(port, rx_desc);
|
|
|
|
rx_bytes -= MVPP2_MH_SIZE;
|
|
|
|
dma_addr = mvpp2_rxdesc_dma_addr_get(port, rx_desc);
|
|
|
|
phys_addr = mvpp2_rxdesc_cookie_get(port, rx_desc);
|
|
|
|
data = (void *)phys_to_virt(phys_addr);
|
|
|
|
|
2017-06-11 05:18:21 +08:00
|
|
|
pool = (rx_status & MVPP2_RXD_BM_POOL_ID_MASK) >>
|
|
|
|
MVPP2_RXD_BM_POOL_ID_OFFS;
|
2014-07-11 03:52:13 +08:00
|
|
|
bm_pool = &port->priv->bm_pools[pool];
|
|
|
|
|
|
|
|
/* In case of an error, release the requested buffer pointer
|
|
|
|
* to the Buffer Manager. This request process is controlled
|
|
|
|
* by the hardware, and the information about the buffer is
|
|
|
|
* comprised by the RX descriptor.
|
|
|
|
*/
|
2019-10-25 01:24:56 +08:00
|
|
|
if (rx_status & MVPP2_RXD_ERR_SUMMARY)
|
|
|
|
goto err_drop_frame;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2020-07-02 22:12:43 +08:00
|
|
|
if (port->priv->percpu_pools) {
|
|
|
|
pp = port->priv->page_pool[pool];
|
|
|
|
dma_dir = page_pool_get_dma_dir(pp);
|
|
|
|
} else {
|
|
|
|
dma_dir = DMA_FROM_DEVICE;
|
|
|
|
}
|
|
|
|
|
2019-10-25 01:24:57 +08:00
|
|
|
dma_sync_single_for_cpu(dev->dev.parent, dma_addr,
|
|
|
|
rx_bytes + MVPP2_MH_SIZE,
|
2020-07-02 22:12:43 +08:00
|
|
|
dma_dir);
|
2019-10-25 01:24:57 +08:00
|
|
|
|
2020-07-02 22:12:43 +08:00
|
|
|
/* Prefetch header */
|
|
|
|
prefetch(data);
|
2020-07-02 22:12:41 +08:00
|
|
|
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
if (bm_pool->frag_size > PAGE_SIZE)
|
|
|
|
frag_size = 0;
|
|
|
|
else
|
|
|
|
frag_size = bm_pool->frag_size;
|
|
|
|
|
2020-07-02 22:12:42 +08:00
|
|
|
if (xdp_prog) {
|
2020-12-23 05:09:28 +08:00
|
|
|
struct xdp_rxq_info *xdp_rxq;
|
2020-07-02 22:12:42 +08:00
|
|
|
|
|
|
|
if (bm_pool->pkt_size == MVPP2_BM_SHORT_PKT_SIZE)
|
2020-12-23 05:09:28 +08:00
|
|
|
xdp_rxq = &rxq->xdp_rxq_short;
|
2020-07-02 22:12:42 +08:00
|
|
|
else
|
2020-12-23 05:09:28 +08:00
|
|
|
xdp_rxq = &rxq->xdp_rxq_long;
|
2020-07-02 22:12:42 +08:00
|
|
|
|
2020-12-23 05:09:28 +08:00
|
|
|
xdp_init_buff(&xdp, PAGE_SIZE, xdp_rxq);
|
2020-12-23 05:09:29 +08:00
|
|
|
xdp_prepare_buff(&xdp, data,
|
|
|
|
MVPP2_MH_SIZE + MVPP2_SKB_HEADROOM,
|
|
|
|
rx_bytes, false);
|
2020-07-02 22:12:42 +08:00
|
|
|
|
2020-07-02 22:12:44 +08:00
|
|
|
ret = mvpp2_run_xdp(port, rxq, xdp_prog, &xdp, pp, &ps);
|
2020-07-02 22:12:42 +08:00
|
|
|
|
|
|
|
if (ret) {
|
|
|
|
xdp_ret |= ret;
|
|
|
|
err = mvpp2_rx_refill(port, bm_pool, pp, pool);
|
|
|
|
if (err) {
|
|
|
|
netdev_err(port->dev, "failed to refill BM pools\n");
|
|
|
|
goto err_drop_frame;
|
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:44 +08:00
|
|
|
ps.rx_packets++;
|
|
|
|
ps.rx_bytes += rx_bytes;
|
2020-07-02 22:12:42 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
net: mvpp2: switch to build_skb() in the RX path
This commit adapts the mvpp2 RX path to use the build_skb() method. Not
only build_skb() is now the recommended mechanism, but it also
simplifies the addition of support for the PPv2.2 variant.
Indeed, without build_skb(), we have to keep track for each RX
descriptor of the physical address of the packet buffer, and the virtual
address of the SKB. However, in PPv2.2 running on 64 bits platform,
there is not enough space in the descriptor to store the virtual address
of the SKB. So having to take care only of the address of the packet
buffer, and building the SKB upon reception helps in supporting PPv2.2.
The implementation is fairly straightforward:
- mvpp2_skb_alloc() is renamed to mvpp2_buf_alloc() and no longer
allocates a SKB. Instead, it allocates a buffer using the new
mvpp2_frag_alloc() function, with enough space for the data and SKB.
- The initialization of the RX buffers in mvpp2_bm_bufs_add() as well
as the refill of the RX buffers in mvpp2_rx_refill() is adjusted
accordingly.
- Finally, the mvpp2_rx() is modified to use build_skb().
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-02-21 18:28:12 +08:00
|
|
|
skb = build_skb(data, frag_size);
|
|
|
|
if (!skb) {
|
|
|
|
netdev_warn(port->dev, "skb build failed\n");
|
|
|
|
goto err_drop_frame;
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2020-09-10 00:25:55 +08:00
|
|
|
/* If we have RX hardware timestamping enabled, grab the
|
|
|
|
* timestamp from the queue and convert.
|
|
|
|
*/
|
|
|
|
if (mvpp22_rx_hwtstamping(port)) {
|
|
|
|
timestamp = le32_to_cpu(rx_desc->pp22.timestamp);
|
|
|
|
mvpp22_tai_tstamp(port->priv->tai, timestamp,
|
|
|
|
skb_hwtstamps(skb));
|
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:41 +08:00
|
|
|
err = mvpp2_rx_refill(port, bm_pool, pp, pool);
|
2015-12-03 22:20:51 +08:00
|
|
|
if (err) {
|
|
|
|
netdev_err(port->dev, "failed to refill BM pools\n");
|
2020-07-31 16:38:32 +08:00
|
|
|
dev_kfree_skb_any(skb);
|
2015-12-03 22:20:51 +08:00
|
|
|
goto err_drop_frame;
|
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:41 +08:00
|
|
|
if (pp)
|
|
|
|
page_pool_release_page(pp, virt_to_page(data));
|
|
|
|
else
|
|
|
|
dma_unmap_single_attrs(dev->dev.parent, dma_addr,
|
|
|
|
bm_pool->buf_size, DMA_FROM_DEVICE,
|
|
|
|
DMA_ATTR_SKIP_CPU_SYNC);
|
2015-12-03 22:20:50 +08:00
|
|
|
|
2020-07-02 22:12:44 +08:00
|
|
|
ps.rx_packets++;
|
|
|
|
ps.rx_bytes += rx_bytes;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2020-07-02 22:12:42 +08:00
|
|
|
skb_reserve(skb, MVPP2_MH_SIZE + MVPP2_SKB_HEADROOM);
|
2014-07-11 03:52:13 +08:00
|
|
|
skb_put(skb, rx_bytes);
|
|
|
|
skb->protocol = eth_type_trans(skb, dev);
|
|
|
|
mvpp2_rx_csum(port, rx_status, skb);
|
|
|
|
|
2017-08-03 16:41:59 +08:00
|
|
|
napi_gro_receive(napi, skb);
|
2019-10-25 01:24:56 +08:00
|
|
|
continue;
|
|
|
|
|
|
|
|
err_drop_frame:
|
|
|
|
dev->stats.rx_errors++;
|
|
|
|
mvpp2_rx_error(port, rx_desc);
|
|
|
|
/* Return the buffer to the pool */
|
|
|
|
mvpp2_bm_pool_put(port, pool, dma_addr, phys_addr);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:42 +08:00
|
|
|
rcu_read_unlock();
|
|
|
|
|
2020-07-02 22:12:43 +08:00
|
|
|
if (xdp_ret & MVPP2_XDP_REDIR)
|
|
|
|
xdp_do_flush_map();
|
|
|
|
|
2020-07-02 22:12:44 +08:00
|
|
|
if (ps.rx_packets) {
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_pcpu_stats *stats = this_cpu_ptr(port->stats);
|
|
|
|
|
|
|
|
u64_stats_update_begin(&stats->syncp);
|
2020-07-02 22:12:44 +08:00
|
|
|
stats->rx_packets += ps.rx_packets;
|
|
|
|
stats->rx_bytes += ps.rx_bytes;
|
|
|
|
/* xdp */
|
|
|
|
stats->xdp_redirect += ps.xdp_redirect;
|
|
|
|
stats->xdp_pass += ps.xdp_pass;
|
|
|
|
stats->xdp_drop += ps.xdp_drop;
|
2014-07-11 03:52:13 +08:00
|
|
|
u64_stats_update_end(&stats->syncp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update Rx queue management counters */
|
|
|
|
wmb();
|
2015-12-03 22:20:51 +08:00
|
|
|
mvpp2_rxq_status_update(port, rxq->id, rx_done, rx_done);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
return rx_todo;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
net: mvpp2: add and use accessors for TX/RX descriptors
The PPv2.2 IP has a different TX and RX descriptor layout compared to
PPv2.1. In order to prepare for the introduction of PPv2.2 support in
mvpp2, this commit adds accessors for the different fields of the TX
and RX descriptors, and changes the code to use them.
For now, the mvpp2_port argument passed to the accessors is not used,
but it will be used in follow-up to update the descriptor according to
the version of the IP being used.
Apart from the mechanical changes to use the newly introduced
accessors, a few other changes, needed to use the accessors, are made:
- The mvpp2_txq_inc_put() function now takes a mvpp2_port as first
argument, as it is needed to use the accessors.
- Similarly, the mvpp2_bm_cookie_build() gains a mvpp2_port first
argument, for the same reason.
- In mvpp2_rx_error(), instead of accessing the RX descriptor in each
case of the switch, we introduce a local variable to store the
packet size.
- In mvpp2_tx_frag_process() and mvpp2_tx() instead of accessing the
packet size from the TX descriptor, we use the actual value
available in the function, which is used to set the TX descriptor
packet size a few lines before.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:05 +08:00
|
|
|
tx_desc_unmap_put(struct mvpp2_port *port, struct mvpp2_tx_queue *txq,
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_tx_desc *desc)
|
|
|
|
{
|
2018-09-19 17:27:10 +08:00
|
|
|
unsigned int thread = mvpp2_cpu_to_thread(port->priv, smp_processor_id());
|
2018-09-19 17:27:09 +08:00
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu = per_cpu_ptr(txq->pcpu, thread);
|
2017-10-23 21:24:30 +08:00
|
|
|
|
net: mvpp2: add and use accessors for TX/RX descriptors
The PPv2.2 IP has a different TX and RX descriptor layout compared to
PPv2.1. In order to prepare for the introduction of PPv2.2 support in
mvpp2, this commit adds accessors for the different fields of the TX
and RX descriptors, and changes the code to use them.
For now, the mvpp2_port argument passed to the accessors is not used,
but it will be used in follow-up to update the descriptor according to
the version of the IP being used.
Apart from the mechanical changes to use the newly introduced
accessors, a few other changes, needed to use the accessors, are made:
- The mvpp2_txq_inc_put() function now takes a mvpp2_port as first
argument, as it is needed to use the accessors.
- Similarly, the mvpp2_bm_cookie_build() gains a mvpp2_port first
argument, for the same reason.
- In mvpp2_rx_error(), instead of accessing the RX descriptor in each
case of the switch, we introduce a local variable to store the
packet size.
- In mvpp2_tx_frag_process() and mvpp2_tx() instead of accessing the
packet size from the TX descriptor, we use the actual value
available in the function, which is used to set the TX descriptor
packet size a few lines before.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:05 +08:00
|
|
|
dma_addr_t buf_dma_addr =
|
|
|
|
mvpp2_txdesc_dma_addr_get(port, desc);
|
|
|
|
size_t buf_sz =
|
|
|
|
mvpp2_txdesc_size_get(port, desc);
|
2017-10-23 21:24:30 +08:00
|
|
|
if (!IS_TSO_HEADER(txq_pcpu, buf_dma_addr))
|
|
|
|
dma_unmap_single(port->dev->dev.parent, buf_dma_addr,
|
|
|
|
buf_sz, DMA_TO_DEVICE);
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_txq_desc_put(txq);
|
|
|
|
}
|
|
|
|
|
2020-09-10 00:26:00 +08:00
|
|
|
static void mvpp2_txdesc_clear_ptp(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_tx_desc *desc)
|
|
|
|
{
|
|
|
|
/* We only need to clear the low bits */
|
2021-02-14 21:38:35 +08:00
|
|
|
if (port->priv->hw_version >= MVPP22)
|
2020-09-10 00:26:00 +08:00
|
|
|
desc->pp22.ptp_descriptor &=
|
|
|
|
cpu_to_le32(~MVPP22_PTP_DESC_MASK_LOW);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool mvpp2_tx_hw_tstamp(struct mvpp2_port *port,
|
|
|
|
struct mvpp2_tx_desc *tx_desc,
|
|
|
|
struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
struct mvpp2_hwtstamp_queue *queue;
|
|
|
|
unsigned int mtype, type, i;
|
|
|
|
struct ptp_header *hdr;
|
|
|
|
u64 ptpdesc;
|
|
|
|
|
|
|
|
if (port->priv->hw_version == MVPP21 ||
|
|
|
|
port->tx_hwtstamp_type == HWTSTAMP_TX_OFF)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
type = ptp_classify_raw(skb);
|
|
|
|
if (!type)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
hdr = ptp_parse_header(skb, type);
|
|
|
|
if (!hdr)
|
|
|
|
return false;
|
|
|
|
|
2020-09-13 15:05:52 +08:00
|
|
|
skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
|
|
|
|
|
2020-09-10 00:26:00 +08:00
|
|
|
ptpdesc = MVPP22_PTP_MACTIMESTAMPINGEN |
|
|
|
|
MVPP22_PTP_ACTION_CAPTURE;
|
|
|
|
queue = &port->tx_hwtstamp_queue[0];
|
|
|
|
|
|
|
|
switch (type & PTP_CLASS_VMASK) {
|
|
|
|
case PTP_CLASS_V1:
|
|
|
|
ptpdesc |= MVPP22_PTP_PACKETFORMAT(MVPP22_PTP_PKT_FMT_PTPV1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PTP_CLASS_V2:
|
|
|
|
ptpdesc |= MVPP22_PTP_PACKETFORMAT(MVPP22_PTP_PKT_FMT_PTPV2);
|
|
|
|
mtype = hdr->tsmt & 15;
|
|
|
|
/* Direct PTP Sync messages to queue 1 */
|
|
|
|
if (mtype == 0) {
|
|
|
|
ptpdesc |= MVPP22_PTP_TIMESTAMPQUEUESELECT;
|
|
|
|
queue = &port->tx_hwtstamp_queue[1];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Take a reference on the skb and insert into our queue */
|
|
|
|
i = queue->next;
|
|
|
|
queue->next = (i + 1) & 31;
|
|
|
|
if (queue->skb[i])
|
|
|
|
dev_kfree_skb_any(queue->skb[i]);
|
|
|
|
queue->skb[i] = skb_get(skb);
|
|
|
|
|
|
|
|
ptpdesc |= MVPP22_PTP_TIMESTAMPENTRYID(i);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 3:0 - PTPAction
|
|
|
|
* 6:4 - PTPPacketFormat
|
|
|
|
* 7 - PTP_CF_WraparoundCheckEn
|
|
|
|
* 9:8 - IngressTimestampSeconds[1:0]
|
|
|
|
* 10 - Reserved
|
|
|
|
* 11 - MACTimestampingEn
|
|
|
|
* 17:12 - PTP_TimestampQueueEntryID[5:0]
|
|
|
|
* 18 - PTPTimestampQueueSelect
|
|
|
|
* 19 - UDPChecksumUpdateEn
|
|
|
|
* 27:20 - TimestampOffset
|
|
|
|
* PTP, NTPTransmit, OWAMP/TWAMP - L3 to PTP header
|
|
|
|
* NTPTs, Y.1731 - L3 to timestamp entry
|
|
|
|
* 35:28 - UDP Checksum Offset
|
|
|
|
*
|
|
|
|
* stored in tx descriptor bits 75:64 (11:0) and 191:168 (35:12)
|
|
|
|
*/
|
|
|
|
tx_desc->pp22.ptp_descriptor &=
|
|
|
|
cpu_to_le32(~MVPP22_PTP_DESC_MASK_LOW);
|
|
|
|
tx_desc->pp22.ptp_descriptor |=
|
|
|
|
cpu_to_le32(ptpdesc & MVPP22_PTP_DESC_MASK_LOW);
|
|
|
|
tx_desc->pp22.buf_dma_addr_ptp &= cpu_to_le64(~0xffffff0000000000ULL);
|
|
|
|
tx_desc->pp22.buf_dma_addr_ptp |= cpu_to_le64((ptpdesc >> 12) << 40);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Handle tx fragmentation processing */
|
|
|
|
static int mvpp2_tx_frag_process(struct mvpp2_port *port, struct sk_buff *skb,
|
|
|
|
struct mvpp2_tx_queue *aggr_txq,
|
|
|
|
struct mvpp2_tx_queue *txq)
|
|
|
|
{
|
2018-09-19 17:27:10 +08:00
|
|
|
unsigned int thread = mvpp2_cpu_to_thread(port->priv, smp_processor_id());
|
2018-09-19 17:27:09 +08:00
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu = per_cpu_ptr(txq->pcpu, thread);
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_tx_desc *tx_desc;
|
|
|
|
int i;
|
2017-03-07 23:53:00 +08:00
|
|
|
dma_addr_t buf_dma_addr;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
|
|
|
|
skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
|
2019-07-23 11:08:25 +08:00
|
|
|
void *addr = skb_frag_address(frag);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
tx_desc = mvpp2_txq_next_desc_get(aggr_txq);
|
2020-09-10 00:26:00 +08:00
|
|
|
mvpp2_txdesc_clear_ptp(port, tx_desc);
|
net: mvpp2: add and use accessors for TX/RX descriptors
The PPv2.2 IP has a different TX and RX descriptor layout compared to
PPv2.1. In order to prepare for the introduction of PPv2.2 support in
mvpp2, this commit adds accessors for the different fields of the TX
and RX descriptors, and changes the code to use them.
For now, the mvpp2_port argument passed to the accessors is not used,
but it will be used in follow-up to update the descriptor according to
the version of the IP being used.
Apart from the mechanical changes to use the newly introduced
accessors, a few other changes, needed to use the accessors, are made:
- The mvpp2_txq_inc_put() function now takes a mvpp2_port as first
argument, as it is needed to use the accessors.
- Similarly, the mvpp2_bm_cookie_build() gains a mvpp2_port first
argument, for the same reason.
- In mvpp2_rx_error(), instead of accessing the RX descriptor in each
case of the switch, we introduce a local variable to store the
packet size.
- In mvpp2_tx_frag_process() and mvpp2_tx() instead of accessing the
packet size from the TX descriptor, we use the actual value
available in the function, which is used to set the TX descriptor
packet size a few lines before.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:05 +08:00
|
|
|
mvpp2_txdesc_txq_set(port, tx_desc, txq->id);
|
2019-07-23 11:08:25 +08:00
|
|
|
mvpp2_txdesc_size_set(port, tx_desc, skb_frag_size(frag));
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2017-03-07 23:53:00 +08:00
|
|
|
buf_dma_addr = dma_map_single(port->dev->dev.parent, addr,
|
2019-07-23 11:08:25 +08:00
|
|
|
skb_frag_size(frag),
|
|
|
|
DMA_TO_DEVICE);
|
2017-03-07 23:53:00 +08:00
|
|
|
if (dma_mapping_error(port->dev->dev.parent, buf_dma_addr)) {
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_txq_desc_put(txq);
|
2017-04-17 17:36:34 +08:00
|
|
|
goto cleanup;
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2017-10-30 18:23:33 +08:00
|
|
|
mvpp2_txdesc_dma_addr_set(port, tx_desc, buf_dma_addr);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
if (i == (skb_shinfo(skb)->nr_frags - 1)) {
|
|
|
|
/* Last descriptor */
|
net: mvpp2: add and use accessors for TX/RX descriptors
The PPv2.2 IP has a different TX and RX descriptor layout compared to
PPv2.1. In order to prepare for the introduction of PPv2.2 support in
mvpp2, this commit adds accessors for the different fields of the TX
and RX descriptors, and changes the code to use them.
For now, the mvpp2_port argument passed to the accessors is not used,
but it will be used in follow-up to update the descriptor according to
the version of the IP being used.
Apart from the mechanical changes to use the newly introduced
accessors, a few other changes, needed to use the accessors, are made:
- The mvpp2_txq_inc_put() function now takes a mvpp2_port as first
argument, as it is needed to use the accessors.
- Similarly, the mvpp2_bm_cookie_build() gains a mvpp2_port first
argument, for the same reason.
- In mvpp2_rx_error(), instead of accessing the RX descriptor in each
case of the switch, we introduce a local variable to store the
packet size.
- In mvpp2_tx_frag_process() and mvpp2_tx() instead of accessing the
packet size from the TX descriptor, we use the actual value
available in the function, which is used to set the TX descriptor
packet size a few lines before.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:05 +08:00
|
|
|
mvpp2_txdesc_cmd_set(port, tx_desc,
|
|
|
|
MVPP2_TXD_L_DESC);
|
2020-07-02 22:12:43 +08:00
|
|
|
mvpp2_txq_inc_put(port, txq_pcpu, skb, tx_desc, MVPP2_TYPE_SKB);
|
2014-07-11 03:52:13 +08:00
|
|
|
} else {
|
|
|
|
/* Descriptor in the middle: Not First, Not Last */
|
net: mvpp2: add and use accessors for TX/RX descriptors
The PPv2.2 IP has a different TX and RX descriptor layout compared to
PPv2.1. In order to prepare for the introduction of PPv2.2 support in
mvpp2, this commit adds accessors for the different fields of the TX
and RX descriptors, and changes the code to use them.
For now, the mvpp2_port argument passed to the accessors is not used,
but it will be used in follow-up to update the descriptor according to
the version of the IP being used.
Apart from the mechanical changes to use the newly introduced
accessors, a few other changes, needed to use the accessors, are made:
- The mvpp2_txq_inc_put() function now takes a mvpp2_port as first
argument, as it is needed to use the accessors.
- Similarly, the mvpp2_bm_cookie_build() gains a mvpp2_port first
argument, for the same reason.
- In mvpp2_rx_error(), instead of accessing the RX descriptor in each
case of the switch, we introduce a local variable to store the
packet size.
- In mvpp2_tx_frag_process() and mvpp2_tx() instead of accessing the
packet size from the TX descriptor, we use the actual value
available in the function, which is used to set the TX descriptor
packet size a few lines before.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:05 +08:00
|
|
|
mvpp2_txdesc_cmd_set(port, tx_desc, 0);
|
2020-07-02 22:12:43 +08:00
|
|
|
mvpp2_txq_inc_put(port, txq_pcpu, NULL, tx_desc, MVPP2_TYPE_SKB);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2017-04-17 17:36:34 +08:00
|
|
|
cleanup:
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Release all descriptors that were used to map fragments of
|
|
|
|
* this packet, as well as the corresponding DMA mappings
|
|
|
|
*/
|
|
|
|
for (i = i - 1; i >= 0; i--) {
|
|
|
|
tx_desc = txq->descs + i;
|
net: mvpp2: add and use accessors for TX/RX descriptors
The PPv2.2 IP has a different TX and RX descriptor layout compared to
PPv2.1. In order to prepare for the introduction of PPv2.2 support in
mvpp2, this commit adds accessors for the different fields of the TX
and RX descriptors, and changes the code to use them.
For now, the mvpp2_port argument passed to the accessors is not used,
but it will be used in follow-up to update the descriptor according to
the version of the IP being used.
Apart from the mechanical changes to use the newly introduced
accessors, a few other changes, needed to use the accessors, are made:
- The mvpp2_txq_inc_put() function now takes a mvpp2_port as first
argument, as it is needed to use the accessors.
- Similarly, the mvpp2_bm_cookie_build() gains a mvpp2_port first
argument, for the same reason.
- In mvpp2_rx_error(), instead of accessing the RX descriptor in each
case of the switch, we introduce a local variable to store the
packet size.
- In mvpp2_tx_frag_process() and mvpp2_tx() instead of accessing the
packet size from the TX descriptor, we use the actual value
available in the function, which is used to set the TX descriptor
packet size a few lines before.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:05 +08:00
|
|
|
tx_desc_unmap_put(port, txq, tx_desc);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2017-08-23 15:46:56 +08:00
|
|
|
static inline void mvpp2_tso_put_hdr(struct sk_buff *skb,
|
|
|
|
struct net_device *dev,
|
|
|
|
struct mvpp2_tx_queue *txq,
|
|
|
|
struct mvpp2_tx_queue *aggr_txq,
|
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu,
|
|
|
|
int hdr_sz)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
struct mvpp2_tx_desc *tx_desc = mvpp2_txq_next_desc_get(aggr_txq);
|
|
|
|
dma_addr_t addr;
|
|
|
|
|
2020-09-10 00:26:00 +08:00
|
|
|
mvpp2_txdesc_clear_ptp(port, tx_desc);
|
2017-08-23 15:46:56 +08:00
|
|
|
mvpp2_txdesc_txq_set(port, tx_desc, txq->id);
|
|
|
|
mvpp2_txdesc_size_set(port, tx_desc, hdr_sz);
|
|
|
|
|
|
|
|
addr = txq_pcpu->tso_headers_dma +
|
|
|
|
txq_pcpu->txq_put_index * TSO_HEADER_SIZE;
|
2017-10-30 18:23:33 +08:00
|
|
|
mvpp2_txdesc_dma_addr_set(port, tx_desc, addr);
|
2017-08-23 15:46:56 +08:00
|
|
|
|
|
|
|
mvpp2_txdesc_cmd_set(port, tx_desc, mvpp2_skb_tx_csum(port, skb) |
|
|
|
|
MVPP2_TXD_F_DESC |
|
|
|
|
MVPP2_TXD_PADDING_DISABLE);
|
2020-07-02 22:12:43 +08:00
|
|
|
mvpp2_txq_inc_put(port, txq_pcpu, NULL, tx_desc, MVPP2_TYPE_SKB);
|
2017-08-23 15:46:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int mvpp2_tso_put_data(struct sk_buff *skb,
|
|
|
|
struct net_device *dev, struct tso_t *tso,
|
|
|
|
struct mvpp2_tx_queue *txq,
|
|
|
|
struct mvpp2_tx_queue *aggr_txq,
|
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu,
|
|
|
|
int sz, bool left, bool last)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
struct mvpp2_tx_desc *tx_desc = mvpp2_txq_next_desc_get(aggr_txq);
|
|
|
|
dma_addr_t buf_dma_addr;
|
|
|
|
|
2020-09-10 00:26:00 +08:00
|
|
|
mvpp2_txdesc_clear_ptp(port, tx_desc);
|
2017-08-23 15:46:56 +08:00
|
|
|
mvpp2_txdesc_txq_set(port, tx_desc, txq->id);
|
|
|
|
mvpp2_txdesc_size_set(port, tx_desc, sz);
|
|
|
|
|
|
|
|
buf_dma_addr = dma_map_single(dev->dev.parent, tso->data, sz,
|
|
|
|
DMA_TO_DEVICE);
|
|
|
|
if (unlikely(dma_mapping_error(dev->dev.parent, buf_dma_addr))) {
|
|
|
|
mvpp2_txq_desc_put(txq);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2017-10-30 18:23:33 +08:00
|
|
|
mvpp2_txdesc_dma_addr_set(port, tx_desc, buf_dma_addr);
|
2017-08-23 15:46:56 +08:00
|
|
|
|
|
|
|
if (!left) {
|
|
|
|
mvpp2_txdesc_cmd_set(port, tx_desc, MVPP2_TXD_L_DESC);
|
|
|
|
if (last) {
|
2020-07-02 22:12:43 +08:00
|
|
|
mvpp2_txq_inc_put(port, txq_pcpu, skb, tx_desc, MVPP2_TYPE_SKB);
|
2017-08-23 15:46:56 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mvpp2_txdesc_cmd_set(port, tx_desc, 0);
|
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:43 +08:00
|
|
|
mvpp2_txq_inc_put(port, txq_pcpu, NULL, tx_desc, MVPP2_TYPE_SKB);
|
2017-08-23 15:46:56 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_tx_tso(struct sk_buff *skb, struct net_device *dev,
|
|
|
|
struct mvpp2_tx_queue *txq,
|
|
|
|
struct mvpp2_tx_queue *aggr_txq,
|
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
2020-06-18 11:53:25 +08:00
|
|
|
int hdr_sz, i, len, descs = 0;
|
2017-08-23 15:46:56 +08:00
|
|
|
struct tso_t tso;
|
|
|
|
|
|
|
|
/* Check number of available descriptors */
|
2018-09-19 17:27:10 +08:00
|
|
|
if (mvpp2_aggr_desc_num_check(port, aggr_txq, tso_count_descs(skb)) ||
|
2018-09-19 17:27:09 +08:00
|
|
|
mvpp2_txq_reserved_desc_num_proc(port, txq, txq_pcpu,
|
2017-08-23 15:46:56 +08:00
|
|
|
tso_count_descs(skb)))
|
|
|
|
return 0;
|
|
|
|
|
2020-06-18 11:53:25 +08:00
|
|
|
hdr_sz = tso_start(skb, &tso);
|
|
|
|
|
2017-08-23 15:46:56 +08:00
|
|
|
len = skb->len - hdr_sz;
|
|
|
|
while (len > 0) {
|
|
|
|
int left = min_t(int, skb_shinfo(skb)->gso_size, len);
|
|
|
|
char *hdr = txq_pcpu->tso_headers +
|
|
|
|
txq_pcpu->txq_put_index * TSO_HEADER_SIZE;
|
|
|
|
|
|
|
|
len -= left;
|
|
|
|
descs++;
|
|
|
|
|
|
|
|
tso_build_hdr(skb, hdr, &tso, left, len == 0);
|
|
|
|
mvpp2_tso_put_hdr(skb, dev, txq, aggr_txq, txq_pcpu, hdr_sz);
|
|
|
|
|
|
|
|
while (left > 0) {
|
|
|
|
int sz = min_t(int, tso.size, left);
|
|
|
|
left -= sz;
|
|
|
|
descs++;
|
|
|
|
|
|
|
|
if (mvpp2_tso_put_data(skb, dev, &tso, txq, aggr_txq,
|
|
|
|
txq_pcpu, sz, left, len == 0))
|
|
|
|
goto release;
|
|
|
|
tso_build_data(skb, &tso, sz);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return descs;
|
|
|
|
|
|
|
|
release:
|
|
|
|
for (i = descs - 1; i >= 0; i--) {
|
|
|
|
struct mvpp2_tx_desc *tx_desc = txq->descs + i;
|
|
|
|
tx_desc_unmap_put(port, txq, tx_desc);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Main tx processing */
|
2018-09-19 18:19:26 +08:00
|
|
|
static netdev_tx_t mvpp2_tx(struct sk_buff *skb, struct net_device *dev)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
struct mvpp2_tx_queue *txq, *aggr_txq;
|
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu;
|
|
|
|
struct mvpp2_tx_desc *tx_desc;
|
2017-03-07 23:53:00 +08:00
|
|
|
dma_addr_t buf_dma_addr;
|
2018-09-19 17:27:10 +08:00
|
|
|
unsigned long flags = 0;
|
2018-09-19 17:27:09 +08:00
|
|
|
unsigned int thread;
|
2014-07-11 03:52:13 +08:00
|
|
|
int frags = 0;
|
|
|
|
u16 txq_id;
|
|
|
|
u32 tx_cmd;
|
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
thread = mvpp2_cpu_to_thread(port->priv, smp_processor_id());
|
2018-09-19 17:27:09 +08:00
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
txq_id = skb_get_queue_mapping(skb);
|
|
|
|
txq = port->txqs[txq_id];
|
2018-09-19 17:27:09 +08:00
|
|
|
txq_pcpu = per_cpu_ptr(txq->pcpu, thread);
|
|
|
|
aggr_txq = &port->priv->aggr_txqs[thread];
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
if (test_bit(thread, &port->priv->lock_map))
|
|
|
|
spin_lock_irqsave(&port->tx_lock[thread], flags);
|
|
|
|
|
2017-08-23 15:46:56 +08:00
|
|
|
if (skb_is_gso(skb)) {
|
|
|
|
frags = mvpp2_tx_tso(skb, dev, txq, aggr_txq, txq_pcpu);
|
|
|
|
goto out;
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
frags = skb_shinfo(skb)->nr_frags + 1;
|
|
|
|
|
|
|
|
/* Check number of available descriptors */
|
2018-09-19 17:27:10 +08:00
|
|
|
if (mvpp2_aggr_desc_num_check(port, aggr_txq, frags) ||
|
2018-09-19 17:27:09 +08:00
|
|
|
mvpp2_txq_reserved_desc_num_proc(port, txq, txq_pcpu, frags)) {
|
2014-07-11 03:52:13 +08:00
|
|
|
frags = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get a descriptor for the first part of the packet */
|
|
|
|
tx_desc = mvpp2_txq_next_desc_get(aggr_txq);
|
2020-09-10 00:26:00 +08:00
|
|
|
if (!(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) ||
|
|
|
|
!mvpp2_tx_hw_tstamp(port, tx_desc, skb))
|
|
|
|
mvpp2_txdesc_clear_ptp(port, tx_desc);
|
net: mvpp2: add and use accessors for TX/RX descriptors
The PPv2.2 IP has a different TX and RX descriptor layout compared to
PPv2.1. In order to prepare for the introduction of PPv2.2 support in
mvpp2, this commit adds accessors for the different fields of the TX
and RX descriptors, and changes the code to use them.
For now, the mvpp2_port argument passed to the accessors is not used,
but it will be used in follow-up to update the descriptor according to
the version of the IP being used.
Apart from the mechanical changes to use the newly introduced
accessors, a few other changes, needed to use the accessors, are made:
- The mvpp2_txq_inc_put() function now takes a mvpp2_port as first
argument, as it is needed to use the accessors.
- Similarly, the mvpp2_bm_cookie_build() gains a mvpp2_port first
argument, for the same reason.
- In mvpp2_rx_error(), instead of accessing the RX descriptor in each
case of the switch, we introduce a local variable to store the
packet size.
- In mvpp2_tx_frag_process() and mvpp2_tx() instead of accessing the
packet size from the TX descriptor, we use the actual value
available in the function, which is used to set the TX descriptor
packet size a few lines before.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:05 +08:00
|
|
|
mvpp2_txdesc_txq_set(port, tx_desc, txq->id);
|
|
|
|
mvpp2_txdesc_size_set(port, tx_desc, skb_headlen(skb));
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2017-03-07 23:53:00 +08:00
|
|
|
buf_dma_addr = dma_map_single(dev->dev.parent, skb->data,
|
net: mvpp2: add and use accessors for TX/RX descriptors
The PPv2.2 IP has a different TX and RX descriptor layout compared to
PPv2.1. In order to prepare for the introduction of PPv2.2 support in
mvpp2, this commit adds accessors for the different fields of the TX
and RX descriptors, and changes the code to use them.
For now, the mvpp2_port argument passed to the accessors is not used,
but it will be used in follow-up to update the descriptor according to
the version of the IP being used.
Apart from the mechanical changes to use the newly introduced
accessors, a few other changes, needed to use the accessors, are made:
- The mvpp2_txq_inc_put() function now takes a mvpp2_port as first
argument, as it is needed to use the accessors.
- Similarly, the mvpp2_bm_cookie_build() gains a mvpp2_port first
argument, for the same reason.
- In mvpp2_rx_error(), instead of accessing the RX descriptor in each
case of the switch, we introduce a local variable to store the
packet size.
- In mvpp2_tx_frag_process() and mvpp2_tx() instead of accessing the
packet size from the TX descriptor, we use the actual value
available in the function, which is used to set the TX descriptor
packet size a few lines before.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:05 +08:00
|
|
|
skb_headlen(skb), DMA_TO_DEVICE);
|
2017-03-07 23:53:00 +08:00
|
|
|
if (unlikely(dma_mapping_error(dev->dev.parent, buf_dma_addr))) {
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_txq_desc_put(txq);
|
|
|
|
frags = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
net: mvpp2: add and use accessors for TX/RX descriptors
The PPv2.2 IP has a different TX and RX descriptor layout compared to
PPv2.1. In order to prepare for the introduction of PPv2.2 support in
mvpp2, this commit adds accessors for the different fields of the TX
and RX descriptors, and changes the code to use them.
For now, the mvpp2_port argument passed to the accessors is not used,
but it will be used in follow-up to update the descriptor according to
the version of the IP being used.
Apart from the mechanical changes to use the newly introduced
accessors, a few other changes, needed to use the accessors, are made:
- The mvpp2_txq_inc_put() function now takes a mvpp2_port as first
argument, as it is needed to use the accessors.
- Similarly, the mvpp2_bm_cookie_build() gains a mvpp2_port first
argument, for the same reason.
- In mvpp2_rx_error(), instead of accessing the RX descriptor in each
case of the switch, we introduce a local variable to store the
packet size.
- In mvpp2_tx_frag_process() and mvpp2_tx() instead of accessing the
packet size from the TX descriptor, we use the actual value
available in the function, which is used to set the TX descriptor
packet size a few lines before.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:05 +08:00
|
|
|
|
2017-10-30 18:23:33 +08:00
|
|
|
mvpp2_txdesc_dma_addr_set(port, tx_desc, buf_dma_addr);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
tx_cmd = mvpp2_skb_tx_csum(port, skb);
|
|
|
|
|
|
|
|
if (frags == 1) {
|
|
|
|
/* First and Last descriptor */
|
|
|
|
tx_cmd |= MVPP2_TXD_F_DESC | MVPP2_TXD_L_DESC;
|
net: mvpp2: add and use accessors for TX/RX descriptors
The PPv2.2 IP has a different TX and RX descriptor layout compared to
PPv2.1. In order to prepare for the introduction of PPv2.2 support in
mvpp2, this commit adds accessors for the different fields of the TX
and RX descriptors, and changes the code to use them.
For now, the mvpp2_port argument passed to the accessors is not used,
but it will be used in follow-up to update the descriptor according to
the version of the IP being used.
Apart from the mechanical changes to use the newly introduced
accessors, a few other changes, needed to use the accessors, are made:
- The mvpp2_txq_inc_put() function now takes a mvpp2_port as first
argument, as it is needed to use the accessors.
- Similarly, the mvpp2_bm_cookie_build() gains a mvpp2_port first
argument, for the same reason.
- In mvpp2_rx_error(), instead of accessing the RX descriptor in each
case of the switch, we introduce a local variable to store the
packet size.
- In mvpp2_tx_frag_process() and mvpp2_tx() instead of accessing the
packet size from the TX descriptor, we use the actual value
available in the function, which is used to set the TX descriptor
packet size a few lines before.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:05 +08:00
|
|
|
mvpp2_txdesc_cmd_set(port, tx_desc, tx_cmd);
|
2020-07-02 22:12:43 +08:00
|
|
|
mvpp2_txq_inc_put(port, txq_pcpu, skb, tx_desc, MVPP2_TYPE_SKB);
|
2014-07-11 03:52:13 +08:00
|
|
|
} else {
|
|
|
|
/* First but not Last */
|
|
|
|
tx_cmd |= MVPP2_TXD_F_DESC | MVPP2_TXD_PADDING_DISABLE;
|
net: mvpp2: add and use accessors for TX/RX descriptors
The PPv2.2 IP has a different TX and RX descriptor layout compared to
PPv2.1. In order to prepare for the introduction of PPv2.2 support in
mvpp2, this commit adds accessors for the different fields of the TX
and RX descriptors, and changes the code to use them.
For now, the mvpp2_port argument passed to the accessors is not used,
but it will be used in follow-up to update the descriptor according to
the version of the IP being used.
Apart from the mechanical changes to use the newly introduced
accessors, a few other changes, needed to use the accessors, are made:
- The mvpp2_txq_inc_put() function now takes a mvpp2_port as first
argument, as it is needed to use the accessors.
- Similarly, the mvpp2_bm_cookie_build() gains a mvpp2_port first
argument, for the same reason.
- In mvpp2_rx_error(), instead of accessing the RX descriptor in each
case of the switch, we introduce a local variable to store the
packet size.
- In mvpp2_tx_frag_process() and mvpp2_tx() instead of accessing the
packet size from the TX descriptor, we use the actual value
available in the function, which is used to set the TX descriptor
packet size a few lines before.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:05 +08:00
|
|
|
mvpp2_txdesc_cmd_set(port, tx_desc, tx_cmd);
|
2020-07-02 22:12:43 +08:00
|
|
|
mvpp2_txq_inc_put(port, txq_pcpu, NULL, tx_desc, MVPP2_TYPE_SKB);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* Continue with other skb fragments */
|
|
|
|
if (mvpp2_tx_frag_process(port, skb, aggr_txq, txq)) {
|
net: mvpp2: add and use accessors for TX/RX descriptors
The PPv2.2 IP has a different TX and RX descriptor layout compared to
PPv2.1. In order to prepare for the introduction of PPv2.2 support in
mvpp2, this commit adds accessors for the different fields of the TX
and RX descriptors, and changes the code to use them.
For now, the mvpp2_port argument passed to the accessors is not used,
but it will be used in follow-up to update the descriptor according to
the version of the IP being used.
Apart from the mechanical changes to use the newly introduced
accessors, a few other changes, needed to use the accessors, are made:
- The mvpp2_txq_inc_put() function now takes a mvpp2_port as first
argument, as it is needed to use the accessors.
- Similarly, the mvpp2_bm_cookie_build() gains a mvpp2_port first
argument, for the same reason.
- In mvpp2_rx_error(), instead of accessing the RX descriptor in each
case of the switch, we introduce a local variable to store the
packet size.
- In mvpp2_tx_frag_process() and mvpp2_tx() instead of accessing the
packet size from the TX descriptor, we use the actual value
available in the function, which is used to set the TX descriptor
packet size a few lines before.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:05 +08:00
|
|
|
tx_desc_unmap_put(port, txq, tx_desc);
|
2014-07-11 03:52:13 +08:00
|
|
|
frags = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (frags > 0) {
|
2018-09-19 17:27:09 +08:00
|
|
|
struct mvpp2_pcpu_stats *stats = per_cpu_ptr(port->stats, thread);
|
2017-08-23 15:46:56 +08:00
|
|
|
struct netdev_queue *nq = netdev_get_tx_queue(dev, txq_id);
|
|
|
|
|
|
|
|
txq_pcpu->reserved_num -= frags;
|
|
|
|
txq_pcpu->count += frags;
|
|
|
|
aggr_txq->count += frags;
|
|
|
|
|
|
|
|
/* Enable transmit */
|
|
|
|
wmb();
|
|
|
|
mvpp2_aggr_txq_pend_desc_add(port, frags);
|
|
|
|
|
2017-10-30 18:23:31 +08:00
|
|
|
if (txq_pcpu->count >= txq_pcpu->stop_threshold)
|
2017-08-23 15:46:56 +08:00
|
|
|
netif_tx_stop_queue(nq);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
u64_stats_update_begin(&stats->syncp);
|
|
|
|
stats->tx_packets++;
|
|
|
|
stats->tx_bytes += skb->len;
|
|
|
|
u64_stats_update_end(&stats->syncp);
|
|
|
|
} else {
|
|
|
|
dev->stats.tx_dropped++;
|
|
|
|
dev_kfree_skb_any(skb);
|
|
|
|
}
|
|
|
|
|
2015-08-07 01:00:30 +08:00
|
|
|
/* Finalize TX processing */
|
2017-10-23 21:24:31 +08:00
|
|
|
if (!port->has_tx_irqs && txq_pcpu->count >= txq->done_pkts_coal)
|
2015-08-07 01:00:30 +08:00
|
|
|
mvpp2_txq_done(port, txq, txq_pcpu);
|
|
|
|
|
|
|
|
/* Set the timer in case not all frags were processed */
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
if (!port->has_tx_irqs && txq_pcpu->count <= frags &&
|
|
|
|
txq_pcpu->count > 0) {
|
2018-09-19 17:27:09 +08:00
|
|
|
struct mvpp2_port_pcpu *port_pcpu = per_cpu_ptr(port->pcpu, thread);
|
2015-08-07 01:00:30 +08:00
|
|
|
|
2019-08-13 16:00:25 +08:00
|
|
|
if (!port_pcpu->timer_scheduled) {
|
|
|
|
port_pcpu->timer_scheduled = true;
|
|
|
|
hrtimer_start(&port_pcpu->tx_done_timer,
|
|
|
|
MVPP2_TXDONE_HRTIMER_PERIOD_NS,
|
|
|
|
HRTIMER_MODE_REL_PINNED_SOFT);
|
|
|
|
}
|
2015-08-07 01:00:30 +08:00
|
|
|
}
|
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
if (test_bit(thread, &port->priv->lock_map))
|
|
|
|
spin_unlock_irqrestore(&port->tx_lock[thread], flags);
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
return NETDEV_TX_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void mvpp2_cause_error(struct net_device *dev, int cause)
|
|
|
|
{
|
|
|
|
if (cause & MVPP2_CAUSE_FCS_ERR_MASK)
|
|
|
|
netdev_err(dev, "FCS error\n");
|
|
|
|
if (cause & MVPP2_CAUSE_RX_FIFO_OVERRUN_MASK)
|
|
|
|
netdev_err(dev, "rx fifo overrun error\n");
|
|
|
|
if (cause & MVPP2_CAUSE_TX_FIFO_UNDERRUN_MASK)
|
|
|
|
netdev_err(dev, "tx fifo underrun error\n");
|
|
|
|
}
|
|
|
|
|
2015-08-07 01:00:30 +08:00
|
|
|
static int mvpp2_poll(struct napi_struct *napi, int budget)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
u32 cause_rx_tx, cause_rx, cause_tx, cause_misc;
|
2015-08-07 01:00:30 +08:00
|
|
|
int rx_done = 0;
|
|
|
|
struct mvpp2_port *port = netdev_priv(napi->dev);
|
2017-08-03 16:41:59 +08:00
|
|
|
struct mvpp2_queue_vector *qv;
|
2018-09-19 17:27:10 +08:00
|
|
|
unsigned int thread = mvpp2_cpu_to_thread(port->priv, smp_processor_id());
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2017-08-03 16:41:59 +08:00
|
|
|
qv = container_of(napi, struct mvpp2_queue_vector, napi);
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Rx/Tx cause register
|
|
|
|
*
|
|
|
|
* Bits 0-15: each bit indicates received packets on the Rx queue
|
|
|
|
* (bit 0 is for Rx queue 0).
|
|
|
|
*
|
|
|
|
* Bits 16-23: each bit indicates transmitted packets on the Tx queue
|
|
|
|
* (bit 16 is for Tx queue 0).
|
|
|
|
*
|
|
|
|
* Each CPU has its own Rx/Tx cause register
|
|
|
|
*/
|
2018-09-19 17:27:11 +08:00
|
|
|
cause_rx_tx = mvpp2_thread_read_relaxed(port->priv, qv->sw_thread_id,
|
2018-03-27 22:49:05 +08:00
|
|
|
MVPP2_ISR_RX_TX_CAUSE_REG(port->id));
|
2014-07-11 03:52:13 +08:00
|
|
|
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
cause_misc = cause_rx_tx & MVPP2_CAUSE_MISC_SUM_MASK;
|
2014-07-11 03:52:13 +08:00
|
|
|
if (cause_misc) {
|
|
|
|
mvpp2_cause_error(port->dev, cause_misc);
|
|
|
|
|
|
|
|
/* Clear the cause register */
|
|
|
|
mvpp2_write(port->priv, MVPP2_ISR_MISC_CAUSE_REG, 0);
|
2018-09-19 17:27:11 +08:00
|
|
|
mvpp2_thread_write(port->priv, thread,
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
MVPP2_ISR_RX_TX_CAUSE_REG(port->id),
|
|
|
|
cause_rx_tx & ~MVPP2_CAUSE_MISC_SUM_MASK);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2018-09-18 22:58:47 +08:00
|
|
|
if (port->has_tx_irqs) {
|
|
|
|
cause_tx = cause_rx_tx & MVPP2_CAUSE_TXQ_OCCUP_DESC_ALL_MASK;
|
|
|
|
if (cause_tx) {
|
|
|
|
cause_tx >>= MVPP2_CAUSE_TXQ_OCCUP_DESC_ALL_OFFSET;
|
|
|
|
mvpp2_tx_done(port, cause_tx, qv->sw_thread_id);
|
|
|
|
}
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* Process RX packets */
|
2018-09-19 17:27:04 +08:00
|
|
|
cause_rx = cause_rx_tx &
|
|
|
|
MVPP2_CAUSE_RXQ_OCCUP_DESC_ALL_MASK(port->priv->hw_version);
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
cause_rx <<= qv->first_rxq;
|
2017-08-03 16:41:59 +08:00
|
|
|
cause_rx |= qv->pending_cause_rx;
|
2014-07-11 03:52:13 +08:00
|
|
|
while (cause_rx && budget > 0) {
|
|
|
|
int count;
|
|
|
|
struct mvpp2_rx_queue *rxq;
|
|
|
|
|
|
|
|
rxq = mvpp2_get_rx_queue(port, cause_rx);
|
|
|
|
if (!rxq)
|
|
|
|
break;
|
|
|
|
|
2017-08-03 16:41:59 +08:00
|
|
|
count = mvpp2_rx(port, napi, budget, rxq);
|
2014-07-11 03:52:13 +08:00
|
|
|
rx_done += count;
|
|
|
|
budget -= count;
|
|
|
|
if (budget > 0) {
|
|
|
|
/* Clear the bit associated to this Rx queue
|
|
|
|
* so that next iteration will continue from
|
|
|
|
* the next Rx queue.
|
|
|
|
*/
|
|
|
|
cause_rx &= ~(1 << rxq->logic_rxq);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (budget > 0) {
|
|
|
|
cause_rx = 0;
|
2017-01-31 00:22:01 +08:00
|
|
|
napi_complete_done(napi, rx_done);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2017-08-03 16:41:59 +08:00
|
|
|
mvpp2_qvec_interrupt_enable(qv);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
2017-08-03 16:41:59 +08:00
|
|
|
qv->pending_cause_rx = cause_rx;
|
2014-07-11 03:52:13 +08:00
|
|
|
return rx_done;
|
|
|
|
}
|
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
static void mvpp22_mode_reconfigure(struct mvpp2_port *port)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
2018-05-17 16:29:31 +08:00
|
|
|
u32 ctrl3;
|
|
|
|
|
2019-03-01 18:52:15 +08:00
|
|
|
/* Set the GMAC & XLG MAC in reset */
|
|
|
|
mvpp2_mac_reset_assert(port);
|
|
|
|
|
2019-03-01 18:52:16 +08:00
|
|
|
/* Set the MPCS and XPCS in reset */
|
|
|
|
mvpp22_pcs_reset_assert(port);
|
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
/* comphy reconfiguration */
|
|
|
|
mvpp22_comphy_init(port);
|
|
|
|
|
|
|
|
/* gop reconfiguration */
|
|
|
|
mvpp22_gop_init(port);
|
|
|
|
|
2019-03-01 18:52:16 +08:00
|
|
|
mvpp22_pcs_reset_deassert(port);
|
|
|
|
|
2020-06-20 17:21:26 +08:00
|
|
|
if (mvpp2_port_supports_xlg(port)) {
|
2018-05-17 16:29:31 +08:00
|
|
|
ctrl3 = readl(port->base + MVPP22_XLG_CTRL3_REG);
|
|
|
|
ctrl3 &= ~MVPP22_XLG_CTRL3_MACMODESELECT_MASK;
|
|
|
|
|
2019-02-11 18:23:10 +08:00
|
|
|
if (mvpp2_is_xlg(port->phy_interface))
|
2018-05-17 16:29:31 +08:00
|
|
|
ctrl3 |= MVPP22_XLG_CTRL3_MACMODESELECT_10G;
|
|
|
|
else
|
|
|
|
ctrl3 |= MVPP22_XLG_CTRL3_MACMODESELECT_GMAC;
|
|
|
|
|
|
|
|
writel(ctrl3, port->base + MVPP22_XLG_CTRL3_REG);
|
|
|
|
}
|
2016-06-28 06:08:11 +08:00
|
|
|
|
2020-06-20 17:21:26 +08:00
|
|
|
if (mvpp2_port_supports_xlg(port) && mvpp2_is_xlg(port->phy_interface))
|
2017-08-23 01:08:26 +08:00
|
|
|
mvpp2_xlg_max_rx_size_set(port);
|
|
|
|
else
|
|
|
|
mvpp2_gmac_max_rx_size_set(port);
|
2018-05-17 16:29:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set hw internals when starting port */
|
|
|
|
static void mvpp2_start_dev(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
int i;
|
2017-08-23 01:08:26 +08:00
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_txp_max_tx_size_set(port);
|
|
|
|
|
2017-08-03 16:41:59 +08:00
|
|
|
for (i = 0; i < port->nqvecs; i++)
|
|
|
|
napi_enable(&port->qvecs[i].napi);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-09-19 17:27:08 +08:00
|
|
|
/* Enable interrupts on all threads */
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_interrupts_enable(port);
|
|
|
|
|
2021-02-14 21:38:35 +08:00
|
|
|
if (port->priv->hw_version >= MVPP22)
|
2018-05-17 16:29:31 +08:00
|
|
|
mvpp22_mode_reconfigure(port);
|
|
|
|
|
|
|
|
if (port->phylink) {
|
|
|
|
phylink_start(port->phylink);
|
|
|
|
} else {
|
2020-09-01 21:48:12 +08:00
|
|
|
mvpp2_acpi_start(port);
|
2017-08-30 16:29:15 +08:00
|
|
|
}
|
2017-08-23 01:08:27 +08:00
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
netif_tx_start_all_queues(port->dev);
|
2020-07-02 22:12:42 +08:00
|
|
|
|
|
|
|
clear_bit(0, &port->state);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set hw internals when stopping port */
|
|
|
|
static void mvpp2_stop_dev(struct mvpp2_port *port)
|
|
|
|
{
|
2017-08-03 16:41:59 +08:00
|
|
|
int i;
|
2016-06-28 06:08:11 +08:00
|
|
|
|
2020-07-02 22:12:42 +08:00
|
|
|
set_bit(0, &port->state);
|
|
|
|
|
2018-09-19 17:27:08 +08:00
|
|
|
/* Disable interrupts on all threads */
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_interrupts_disable(port);
|
|
|
|
|
2017-08-03 16:41:59 +08:00
|
|
|
for (i = 0; i < port->nqvecs; i++)
|
|
|
|
napi_disable(&port->qvecs[i].napi);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
if (port->phylink)
|
|
|
|
phylink_stop(port->phylink);
|
2017-08-30 16:29:15 +08:00
|
|
|
phy_power_off(port->comphy);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_check_ringparam_valid(struct net_device *dev,
|
|
|
|
struct ethtool_ringparam *ring)
|
|
|
|
{
|
|
|
|
u16 new_rx_pending = ring->rx_pending;
|
|
|
|
u16 new_tx_pending = ring->tx_pending;
|
|
|
|
|
|
|
|
if (ring->rx_pending == 0 || ring->tx_pending == 0)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2017-12-11 16:13:26 +08:00
|
|
|
if (ring->rx_pending > MVPP2_MAX_RXD_MAX)
|
|
|
|
new_rx_pending = MVPP2_MAX_RXD_MAX;
|
2021-02-11 18:48:57 +08:00
|
|
|
else if (ring->rx_pending < MSS_THRESHOLD_START)
|
|
|
|
new_rx_pending = MSS_THRESHOLD_START;
|
2014-07-11 03:52:13 +08:00
|
|
|
else if (!IS_ALIGNED(ring->rx_pending, 16))
|
|
|
|
new_rx_pending = ALIGN(ring->rx_pending, 16);
|
|
|
|
|
2017-12-11 16:13:26 +08:00
|
|
|
if (ring->tx_pending > MVPP2_MAX_TXD_MAX)
|
|
|
|
new_tx_pending = MVPP2_MAX_TXD_MAX;
|
2014-07-11 03:52:13 +08:00
|
|
|
else if (!IS_ALIGNED(ring->tx_pending, 32))
|
|
|
|
new_tx_pending = ALIGN(ring->tx_pending, 32);
|
|
|
|
|
2017-11-28 21:19:51 +08:00
|
|
|
/* The Tx ring size cannot be smaller than the minimum number of
|
|
|
|
* descriptors needed for TSO.
|
|
|
|
*/
|
|
|
|
if (new_tx_pending < MVPP2_MAX_SKB_DESCS)
|
|
|
|
new_tx_pending = ALIGN(MVPP2_MAX_SKB_DESCS, 32);
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
if (ring->rx_pending != new_rx_pending) {
|
|
|
|
netdev_info(dev, "illegal Rx ring size value %d, round to %d\n",
|
|
|
|
ring->rx_pending, new_rx_pending);
|
|
|
|
ring->rx_pending = new_rx_pending;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ring->tx_pending != new_tx_pending) {
|
|
|
|
netdev_info(dev, "illegal Tx ring size value %d, round to %d\n",
|
|
|
|
ring->tx_pending, new_tx_pending);
|
|
|
|
ring->tx_pending = new_tx_pending;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-03-07 23:53:14 +08:00
|
|
|
static void mvpp21_get_mac_address(struct mvpp2_port *port, unsigned char *addr)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
|
|
|
u32 mac_addr_l, mac_addr_m, mac_addr_h;
|
|
|
|
|
|
|
|
mac_addr_l = readl(port->base + MVPP2_GMAC_CTRL_1_REG);
|
|
|
|
mac_addr_m = readl(port->priv->lms_base + MVPP2_SRC_ADDR_MIDDLE);
|
|
|
|
mac_addr_h = readl(port->priv->lms_base + MVPP2_SRC_ADDR_HIGH);
|
|
|
|
addr[0] = (mac_addr_h >> 24) & 0xFF;
|
|
|
|
addr[1] = (mac_addr_h >> 16) & 0xFF;
|
|
|
|
addr[2] = (mac_addr_h >> 8) & 0xFF;
|
|
|
|
addr[3] = mac_addr_h & 0xFF;
|
|
|
|
addr[4] = mac_addr_m & 0xFF;
|
|
|
|
addr[5] = (mac_addr_l >> MVPP2_GMAC_SA_LOW_OFFS) & 0xFF;
|
|
|
|
}
|
|
|
|
|
2017-08-03 16:41:59 +08:00
|
|
|
static int mvpp2_irqs_init(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
int err, i;
|
|
|
|
|
|
|
|
for (i = 0; i < port->nqvecs; i++) {
|
|
|
|
struct mvpp2_queue_vector *qv = port->qvecs + i;
|
|
|
|
|
2018-10-30 23:41:00 +08:00
|
|
|
if (qv->type == MVPP2_QUEUE_VECTOR_PRIVATE) {
|
|
|
|
qv->mask = kzalloc(cpumask_size(), GFP_KERNEL);
|
|
|
|
if (!qv->mask) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2017-11-04 20:33:47 +08:00
|
|
|
irq_set_status_flags(qv->irq, IRQ_NO_BALANCING);
|
2018-10-30 23:41:00 +08:00
|
|
|
}
|
2017-11-04 20:33:47 +08:00
|
|
|
|
2017-08-03 16:41:59 +08:00
|
|
|
err = request_irq(qv->irq, mvpp2_isr, 0, port->dev->name, qv);
|
|
|
|
if (err)
|
|
|
|
goto err;
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
if (qv->type == MVPP2_QUEUE_VECTOR_PRIVATE) {
|
|
|
|
unsigned int cpu;
|
|
|
|
|
|
|
|
for_each_present_cpu(cpu) {
|
|
|
|
if (mvpp2_cpu_to_thread(port->priv, cpu) ==
|
|
|
|
qv->sw_thread_id)
|
2018-10-30 23:41:00 +08:00
|
|
|
cpumask_set_cpu(cpu, qv->mask);
|
2018-09-19 17:27:10 +08:00
|
|
|
}
|
|
|
|
|
2018-10-30 23:41:00 +08:00
|
|
|
irq_set_affinity_hint(qv->irq, qv->mask);
|
2018-09-19 17:27:10 +08:00
|
|
|
}
|
2017-08-03 16:41:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
err:
|
|
|
|
for (i = 0; i < port->nqvecs; i++) {
|
|
|
|
struct mvpp2_queue_vector *qv = port->qvecs + i;
|
|
|
|
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
irq_set_affinity_hint(qv->irq, NULL);
|
2018-10-30 23:41:00 +08:00
|
|
|
kfree(qv->mask);
|
|
|
|
qv->mask = NULL;
|
2017-08-03 16:41:59 +08:00
|
|
|
free_irq(qv->irq, qv);
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp2_irqs_deinit(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < port->nqvecs; i++) {
|
|
|
|
struct mvpp2_queue_vector *qv = port->qvecs + i;
|
|
|
|
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
irq_set_affinity_hint(qv->irq, NULL);
|
2018-10-30 23:41:00 +08:00
|
|
|
kfree(qv->mask);
|
|
|
|
qv->mask = NULL;
|
2017-11-04 20:33:47 +08:00
|
|
|
irq_clear_status_flags(qv->irq, IRQ_NO_BALANCING);
|
2017-08-03 16:41:59 +08:00
|
|
|
free_irq(qv->irq, qv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-18 20:42:03 +08:00
|
|
|
static bool mvpp22_rss_is_supported(struct mvpp2_port *port)
|
2018-07-12 19:54:14 +08:00
|
|
|
{
|
2021-02-18 20:42:03 +08:00
|
|
|
return (queue_mode == MVPP2_QDIST_MULTI_MODE) &&
|
|
|
|
!(port->flags & MVPP2_F_LOOPBACK);
|
2018-07-12 19:54:14 +08:00
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
static int mvpp2_open(struct net_device *dev)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
2017-09-01 17:04:54 +08:00
|
|
|
struct mvpp2 *priv = port->priv;
|
2014-07-11 03:52:13 +08:00
|
|
|
unsigned char mac_bcast[ETH_ALEN] = {
|
|
|
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
|
2018-05-17 16:29:31 +08:00
|
|
|
bool valid = false;
|
2014-07-11 03:52:13 +08:00
|
|
|
int err;
|
|
|
|
|
2018-03-07 22:18:03 +08:00
|
|
|
err = mvpp2_prs_mac_da_accept(port, mac_bcast, true);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (err) {
|
|
|
|
netdev_err(dev, "mvpp2_prs_mac_da_accept BC failed\n");
|
|
|
|
return err;
|
|
|
|
}
|
2018-03-07 22:18:03 +08:00
|
|
|
err = mvpp2_prs_mac_da_accept(port, dev->dev_addr, true);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (err) {
|
2018-03-07 22:18:03 +08:00
|
|
|
netdev_err(dev, "mvpp2_prs_mac_da_accept own addr failed\n");
|
2014-07-11 03:52:13 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
err = mvpp2_prs_tag_mode_set(port->priv, port->id, MVPP2_TAG_TYPE_MH);
|
|
|
|
if (err) {
|
|
|
|
netdev_err(dev, "mvpp2_prs_tag_mode_set failed\n");
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
err = mvpp2_prs_def_flow(port);
|
|
|
|
if (err) {
|
|
|
|
netdev_err(dev, "mvpp2_prs_def_flow failed\n");
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate the Rx/Tx queues */
|
|
|
|
err = mvpp2_setup_rxqs(port);
|
|
|
|
if (err) {
|
|
|
|
netdev_err(port->dev, "cannot allocate Rx queues\n");
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = mvpp2_setup_txqs(port);
|
|
|
|
if (err) {
|
|
|
|
netdev_err(port->dev, "cannot allocate Tx queues\n");
|
|
|
|
goto err_cleanup_rxqs;
|
|
|
|
}
|
|
|
|
|
2017-08-03 16:41:59 +08:00
|
|
|
err = mvpp2_irqs_init(port);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (err) {
|
2017-08-03 16:41:59 +08:00
|
|
|
netdev_err(port->dev, "cannot init IRQs\n");
|
2014-07-11 03:52:13 +08:00
|
|
|
goto err_cleanup_txqs;
|
|
|
|
}
|
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
/* Phylink isn't supported yet in ACPI mode */
|
|
|
|
if (port->of_node) {
|
|
|
|
err = phylink_of_phy_connect(port->phylink, port->of_node, 0);
|
|
|
|
if (err) {
|
|
|
|
netdev_err(port->dev, "could not attach PHY (%d)\n",
|
|
|
|
err);
|
|
|
|
goto err_free_irq;
|
|
|
|
}
|
|
|
|
|
|
|
|
valid = true;
|
|
|
|
}
|
|
|
|
|
2021-02-14 21:38:35 +08:00
|
|
|
if (priv->hw_version >= MVPP22 && port->port_irq) {
|
2020-09-10 00:25:40 +08:00
|
|
|
err = request_irq(port->port_irq, mvpp2_port_isr, 0,
|
2017-09-01 17:04:54 +08:00
|
|
|
dev->name, port);
|
|
|
|
if (err) {
|
2020-09-10 00:25:40 +08:00
|
|
|
netdev_err(port->dev,
|
|
|
|
"cannot request port link/ptp IRQ %d\n",
|
|
|
|
port->port_irq);
|
2017-09-01 17:04:54 +08:00
|
|
|
goto err_free_irq;
|
|
|
|
}
|
|
|
|
|
|
|
|
mvpp22_gop_setup_irq(port);
|
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
/* In default link is down */
|
|
|
|
netif_carrier_off(port->dev);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
valid = true;
|
|
|
|
} else {
|
2020-09-10 00:25:40 +08:00
|
|
|
port->port_irq = 0;
|
2018-05-17 16:29:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!valid) {
|
|
|
|
netdev_err(port->dev,
|
|
|
|
"invalid configuration: no dt or link IRQ");
|
2020-12-03 22:18:06 +08:00
|
|
|
err = -ENOENT;
|
2018-05-17 16:29:31 +08:00
|
|
|
goto err_free_irq;
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* Unmask interrupts on all CPUs */
|
|
|
|
on_each_cpu(mvpp2_interrupts_unmask, port, 1);
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
mvpp2_shared_interrupt_mask_unmask(port, false);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
mvpp2_start_dev(port);
|
|
|
|
|
2017-11-07 05:56:53 +08:00
|
|
|
/* Start hardware statistics gathering */
|
2017-11-08 15:59:40 +08:00
|
|
|
queue_delayed_work(priv->stats_queue, &port->stats_work,
|
2017-11-07 05:56:53 +08:00
|
|
|
MVPP2_MIB_COUNTERS_STATS_DELAY);
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_free_irq:
|
2017-08-03 16:41:59 +08:00
|
|
|
mvpp2_irqs_deinit(port);
|
2014-07-11 03:52:13 +08:00
|
|
|
err_cleanup_txqs:
|
|
|
|
mvpp2_cleanup_txqs(port);
|
|
|
|
err_cleanup_rxqs:
|
|
|
|
mvpp2_cleanup_rxqs(port);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_stop(struct net_device *dev)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
2015-08-07 01:00:30 +08:00
|
|
|
struct mvpp2_port_pcpu *port_pcpu;
|
2018-09-19 17:27:09 +08:00
|
|
|
unsigned int thread;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
mvpp2_stop_dev(port);
|
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
/* Mask interrupts on all threads */
|
2014-07-11 03:52:13 +08:00
|
|
|
on_each_cpu(mvpp2_interrupts_mask, port, 1);
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
mvpp2_shared_interrupt_mask_unmask(port, true);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
if (port->phylink)
|
|
|
|
phylink_disconnect_phy(port->phylink);
|
2020-09-10 00:25:40 +08:00
|
|
|
if (port->port_irq)
|
|
|
|
free_irq(port->port_irq, port);
|
2017-09-01 17:04:54 +08:00
|
|
|
|
2017-08-03 16:41:59 +08:00
|
|
|
mvpp2_irqs_deinit(port);
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
if (!port->has_tx_irqs) {
|
2018-09-19 17:27:10 +08:00
|
|
|
for (thread = 0; thread < port->priv->nthreads; thread++) {
|
2018-09-19 17:27:09 +08:00
|
|
|
port_pcpu = per_cpu_ptr(port->pcpu, thread);
|
2015-08-07 01:00:30 +08:00
|
|
|
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
hrtimer_cancel(&port_pcpu->tx_done_timer);
|
|
|
|
port_pcpu->timer_scheduled = false;
|
|
|
|
}
|
2015-08-07 01:00:30 +08:00
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_cleanup_rxqs(port);
|
|
|
|
mvpp2_cleanup_txqs(port);
|
|
|
|
|
2017-11-08 15:59:40 +08:00
|
|
|
cancel_delayed_work_sync(&port->stats_work);
|
2017-11-07 05:56:53 +08:00
|
|
|
|
2019-03-01 18:52:17 +08:00
|
|
|
mvpp2_mac_reset_assert(port);
|
|
|
|
mvpp22_pcs_reset_assert(port);
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-07 22:18:04 +08:00
|
|
|
static int mvpp2_prs_mac_da_accept_list(struct mvpp2_port *port,
|
|
|
|
struct netdev_hw_addr_list *list)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
|
|
|
struct netdev_hw_addr *ha;
|
2018-03-07 22:18:04 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
netdev_hw_addr_list_for_each(ha, list) {
|
|
|
|
ret = mvpp2_prs_mac_da_accept(port, ha->addr, true);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
2018-02-28 17:14:13 +08:00
|
|
|
|
2018-03-07 22:18:04 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp2_set_rx_promisc(struct mvpp2_port *port, bool enable)
|
|
|
|
{
|
|
|
|
if (!enable && (port->dev->features & NETIF_F_HW_VLAN_CTAG_FILTER))
|
2018-02-28 17:14:13 +08:00
|
|
|
mvpp2_prs_vid_enable_filtering(port);
|
2018-03-07 22:18:04 +08:00
|
|
|
else
|
|
|
|
mvpp2_prs_vid_disable_filtering(port);
|
|
|
|
|
|
|
|
mvpp2_prs_mac_promisc_set(port->priv, port->id,
|
|
|
|
MVPP2_PRS_L2_UNI_CAST, enable);
|
|
|
|
|
|
|
|
mvpp2_prs_mac_promisc_set(port->priv, port->id,
|
|
|
|
MVPP2_PRS_L2_MULTI_CAST, enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp2_set_rx_mode(struct net_device *dev)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
|
|
|
|
/* Clear the whole UC and MC list */
|
|
|
|
mvpp2_prs_mac_del_all(port);
|
|
|
|
|
|
|
|
if (dev->flags & IFF_PROMISC) {
|
|
|
|
mvpp2_set_rx_promisc(port, true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mvpp2_set_rx_promisc(port, false);
|
|
|
|
|
|
|
|
if (netdev_uc_count(dev) > MVPP2_PRS_MAC_UC_FILT_MAX ||
|
|
|
|
mvpp2_prs_mac_da_accept_list(port, &dev->uc))
|
|
|
|
mvpp2_prs_mac_promisc_set(port->priv, port->id,
|
|
|
|
MVPP2_PRS_L2_UNI_CAST, true);
|
|
|
|
|
|
|
|
if (dev->flags & IFF_ALLMULTI) {
|
|
|
|
mvpp2_prs_mac_promisc_set(port->priv, port->id,
|
|
|
|
MVPP2_PRS_L2_MULTI_CAST, true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (netdev_mc_count(dev) > MVPP2_PRS_MAC_MC_FILT_MAX ||
|
|
|
|
mvpp2_prs_mac_da_accept_list(port, &dev->mc))
|
|
|
|
mvpp2_prs_mac_promisc_set(port->priv, port->id,
|
|
|
|
MVPP2_PRS_L2_MULTI_CAST, true);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_set_mac_address(struct net_device *dev, void *p)
|
|
|
|
{
|
|
|
|
const struct sockaddr *addr = p;
|
|
|
|
int err;
|
|
|
|
|
2018-05-17 16:34:26 +08:00
|
|
|
if (!is_valid_ether_addr(addr->sa_data))
|
|
|
|
return -EADDRNOTAVAIL;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
err = mvpp2_prs_update_mac_da(dev, addr->sa_data);
|
2018-05-17 16:34:26 +08:00
|
|
|
if (err) {
|
|
|
|
/* Reconfigure parser accept the original MAC address */
|
|
|
|
mvpp2_prs_update_mac_da(dev, dev->dev_addr);
|
|
|
|
netdev_err(dev, "failed to change MAC address\n");
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
/* Shut down all the ports, reconfigure the pools as percpu or shared,
|
|
|
|
* then bring up again all ports.
|
|
|
|
*/
|
|
|
|
static int mvpp2_bm_switch_buffers(struct mvpp2 *priv, bool percpu)
|
|
|
|
{
|
2021-02-15 23:23:42 +08:00
|
|
|
bool change_percpu = (percpu != priv->percpu_pools);
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
int numbufs = MVPP2_BM_POOLS_NUM, i;
|
|
|
|
struct mvpp2_port *port = NULL;
|
|
|
|
bool status[MVPP2_MAX_PORTS];
|
|
|
|
|
|
|
|
for (i = 0; i < priv->port_count; i++) {
|
|
|
|
port = priv->port_list[i];
|
|
|
|
status[i] = netif_running(port->dev);
|
|
|
|
if (status[i])
|
|
|
|
mvpp2_stop(port->dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* nrxqs is the same for all ports */
|
|
|
|
if (priv->percpu_pools)
|
|
|
|
numbufs = port->nrxqs * 2;
|
|
|
|
|
2021-02-15 23:23:42 +08:00
|
|
|
if (change_percpu)
|
|
|
|
mvpp2_bm_pool_update_priv_fc(priv, false);
|
|
|
|
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
for (i = 0; i < numbufs; i++)
|
|
|
|
mvpp2_bm_pool_destroy(port->dev->dev.parent, priv, &priv->bm_pools[i]);
|
|
|
|
|
|
|
|
devm_kfree(port->dev->dev.parent, priv->bm_pools);
|
|
|
|
priv->percpu_pools = percpu;
|
|
|
|
mvpp2_bm_init(port->dev->dev.parent, priv);
|
|
|
|
|
|
|
|
for (i = 0; i < priv->port_count; i++) {
|
|
|
|
port = priv->port_list[i];
|
|
|
|
mvpp2_swf_bm_pool_init(port);
|
|
|
|
if (status[i])
|
|
|
|
mvpp2_open(port->dev);
|
|
|
|
}
|
|
|
|
|
2021-02-15 23:23:42 +08:00
|
|
|
if (change_percpu)
|
|
|
|
mvpp2_bm_pool_update_priv_fc(priv, true);
|
|
|
|
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
static int mvpp2_change_mtu(struct net_device *dev, int mtu)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
2019-07-28 08:46:45 +08:00
|
|
|
bool running = netif_running(dev);
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
struct mvpp2 *priv = port->priv;
|
2014-07-11 03:52:13 +08:00
|
|
|
int err;
|
|
|
|
|
2016-10-18 03:54:06 +08:00
|
|
|
if (!IS_ALIGNED(MVPP2_RX_PKT_SIZE(mtu), 8)) {
|
|
|
|
netdev_info(dev, "illegal MTU value %d, round to %d\n", mtu,
|
|
|
|
ALIGN(MVPP2_RX_PKT_SIZE(mtu), 8));
|
|
|
|
mtu = ALIGN(MVPP2_RX_PKT_SIZE(mtu), 8);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
if (MVPP2_RX_PKT_SIZE(mtu) > MVPP2_BM_LONG_PKT_SIZE) {
|
2020-07-02 22:12:42 +08:00
|
|
|
if (port->xdp_prog) {
|
|
|
|
netdev_err(dev, "Jumbo frames are not supported with XDP\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
if (priv->percpu_pools) {
|
|
|
|
netdev_warn(dev, "mtu %d too high, switching to shared buffers", mtu);
|
|
|
|
mvpp2_bm_switch_buffers(priv, false);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bool jumbo = false;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < priv->port_count; i++)
|
|
|
|
if (priv->port_list[i] != port &&
|
|
|
|
MVPP2_RX_PKT_SIZE(priv->port_list[i]->dev->mtu) >
|
|
|
|
MVPP2_BM_LONG_PKT_SIZE) {
|
|
|
|
jumbo = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* No port is using jumbo frames */
|
|
|
|
if (!jumbo) {
|
|
|
|
dev_info(port->dev->dev.parent,
|
|
|
|
"all ports have a low MTU, switching to per-cpu buffers");
|
|
|
|
mvpp2_bm_switch_buffers(priv, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 08:46:45 +08:00
|
|
|
if (running)
|
|
|
|
mvpp2_stop_dev(port);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
err = mvpp2_bm_update_mtu(dev, mtu);
|
2019-07-28 08:46:45 +08:00
|
|
|
if (err) {
|
|
|
|
netdev_err(dev, "failed to change MTU\n");
|
|
|
|
/* Reconfigure BM to the original MTU */
|
|
|
|
mvpp2_bm_update_mtu(dev, dev->mtu);
|
|
|
|
} else {
|
2014-07-11 03:52:13 +08:00
|
|
|
port->pkt_size = MVPP2_RX_PKT_SIZE(mtu);
|
|
|
|
}
|
|
|
|
|
2019-07-28 08:46:45 +08:00
|
|
|
if (running) {
|
|
|
|
mvpp2_start_dev(port);
|
|
|
|
mvpp2_egress_enable(port);
|
|
|
|
mvpp2_ingress_enable(port);
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:43 +08:00
|
|
|
static int mvpp2_check_pagepool_dma(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
enum dma_data_direction dma_dir = DMA_FROM_DEVICE;
|
|
|
|
struct mvpp2 *priv = port->priv;
|
|
|
|
int err = -1, i;
|
|
|
|
|
|
|
|
if (!priv->percpu_pools)
|
|
|
|
return err;
|
|
|
|
|
2020-07-07 21:19:13 +08:00
|
|
|
if (!priv->page_pool[0])
|
2020-07-02 22:12:43 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
for (i = 0; i < priv->port_count; i++) {
|
|
|
|
port = priv->port_list[i];
|
|
|
|
if (port->xdp_prog) {
|
|
|
|
dma_dir = DMA_BIDIRECTIONAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All pools are equal in terms of DMA direction */
|
|
|
|
if (priv->page_pool[0]->p.dma_dir != dma_dir)
|
|
|
|
err = mvpp2_bm_switch_buffers(priv, true);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-01-07 11:12:52 +08:00
|
|
|
static void
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
unsigned int start;
|
2018-09-19 17:27:05 +08:00
|
|
|
unsigned int cpu;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
for_each_possible_cpu(cpu) {
|
|
|
|
struct mvpp2_pcpu_stats *cpu_stats;
|
|
|
|
u64 rx_packets;
|
|
|
|
u64 rx_bytes;
|
|
|
|
u64 tx_packets;
|
|
|
|
u64 tx_bytes;
|
|
|
|
|
|
|
|
cpu_stats = per_cpu_ptr(port->stats, cpu);
|
|
|
|
do {
|
|
|
|
start = u64_stats_fetch_begin_irq(&cpu_stats->syncp);
|
|
|
|
rx_packets = cpu_stats->rx_packets;
|
|
|
|
rx_bytes = cpu_stats->rx_bytes;
|
|
|
|
tx_packets = cpu_stats->tx_packets;
|
|
|
|
tx_bytes = cpu_stats->tx_bytes;
|
|
|
|
} while (u64_stats_fetch_retry_irq(&cpu_stats->syncp, start));
|
|
|
|
|
|
|
|
stats->rx_packets += rx_packets;
|
|
|
|
stats->rx_bytes += rx_bytes;
|
|
|
|
stats->tx_packets += tx_packets;
|
|
|
|
stats->tx_bytes += tx_bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
stats->rx_errors = dev->stats.rx_errors;
|
|
|
|
stats->rx_dropped = dev->stats.rx_dropped;
|
|
|
|
stats->tx_dropped = dev->stats.tx_dropped;
|
|
|
|
}
|
|
|
|
|
2020-09-10 00:25:55 +08:00
|
|
|
static int mvpp2_set_ts_config(struct mvpp2_port *port, struct ifreq *ifr)
|
|
|
|
{
|
|
|
|
struct hwtstamp_config config;
|
|
|
|
void __iomem *ptp;
|
2020-09-10 00:26:00 +08:00
|
|
|
u32 gcr, int_mask;
|
2020-09-10 00:25:55 +08:00
|
|
|
|
|
|
|
if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
if (config.flags)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2020-09-10 00:26:00 +08:00
|
|
|
if (config.tx_type != HWTSTAMP_TX_OFF &&
|
|
|
|
config.tx_type != HWTSTAMP_TX_ON)
|
2020-09-10 00:25:55 +08:00
|
|
|
return -ERANGE;
|
|
|
|
|
|
|
|
ptp = port->priv->iface_base + MVPP22_PTP_BASE(port->gop_id);
|
2020-09-10 00:26:00 +08:00
|
|
|
|
|
|
|
int_mask = gcr = 0;
|
|
|
|
if (config.tx_type != HWTSTAMP_TX_OFF) {
|
|
|
|
gcr |= MVPP22_PTP_GCR_TSU_ENABLE | MVPP22_PTP_GCR_TX_RESET;
|
|
|
|
int_mask |= MVPP22_PTP_INT_MASK_QUEUE1 |
|
|
|
|
MVPP22_PTP_INT_MASK_QUEUE0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* It seems we must also release the TX reset when enabling the TSU */
|
|
|
|
if (config.rx_filter != HWTSTAMP_FILTER_NONE)
|
|
|
|
gcr |= MVPP22_PTP_GCR_TSU_ENABLE | MVPP22_PTP_GCR_RX_RESET |
|
|
|
|
MVPP22_PTP_GCR_TX_RESET;
|
|
|
|
|
|
|
|
if (gcr & MVPP22_PTP_GCR_TSU_ENABLE)
|
|
|
|
mvpp22_tai_start(port->priv->tai);
|
|
|
|
|
2020-09-10 00:25:55 +08:00
|
|
|
if (config.rx_filter != HWTSTAMP_FILTER_NONE) {
|
|
|
|
config.rx_filter = HWTSTAMP_FILTER_ALL;
|
|
|
|
mvpp2_modify(ptp + MVPP22_PTP_GCR,
|
|
|
|
MVPP22_PTP_GCR_RX_RESET |
|
|
|
|
MVPP22_PTP_GCR_TX_RESET |
|
2020-09-10 00:26:00 +08:00
|
|
|
MVPP22_PTP_GCR_TSU_ENABLE, gcr);
|
2020-09-10 00:25:55 +08:00
|
|
|
port->rx_hwtstamp = true;
|
|
|
|
} else {
|
|
|
|
port->rx_hwtstamp = false;
|
|
|
|
mvpp2_modify(ptp + MVPP22_PTP_GCR,
|
|
|
|
MVPP22_PTP_GCR_RX_RESET |
|
|
|
|
MVPP22_PTP_GCR_TX_RESET |
|
2020-09-10 00:26:00 +08:00
|
|
|
MVPP22_PTP_GCR_TSU_ENABLE, gcr);
|
2020-09-10 00:25:55 +08:00
|
|
|
}
|
|
|
|
|
2020-09-10 00:26:00 +08:00
|
|
|
mvpp2_modify(ptp + MVPP22_PTP_INT_MASK,
|
|
|
|
MVPP22_PTP_INT_MASK_QUEUE1 |
|
|
|
|
MVPP22_PTP_INT_MASK_QUEUE0, int_mask);
|
|
|
|
|
|
|
|
if (!(gcr & MVPP22_PTP_GCR_TSU_ENABLE))
|
|
|
|
mvpp22_tai_stop(port->priv->tai);
|
|
|
|
|
|
|
|
port->tx_hwtstamp_type = config.tx_type;
|
|
|
|
|
2020-09-10 00:25:55 +08:00
|
|
|
if (copy_to_user(ifr->ifr_data, &config, sizeof(config)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_get_ts_config(struct mvpp2_port *port, struct ifreq *ifr)
|
|
|
|
{
|
|
|
|
struct hwtstamp_config config;
|
|
|
|
|
|
|
|
memset(&config, 0, sizeof(config));
|
|
|
|
|
2020-09-10 00:26:00 +08:00
|
|
|
config.tx_type = port->tx_hwtstamp_type;
|
2020-09-10 00:25:55 +08:00
|
|
|
config.rx_filter = port->rx_hwtstamp ?
|
|
|
|
HWTSTAMP_FILTER_ALL : HWTSTAMP_FILTER_NONE;
|
|
|
|
|
|
|
|
if (copy_to_user(ifr->ifr_data, &config, sizeof(config)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_ethtool_get_ts_info(struct net_device *dev,
|
|
|
|
struct ethtool_ts_info *info)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
|
|
|
|
if (!port->hwtstamp)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
info->phc_index = mvpp22_tai_ptp_clock_index(port->priv->tai);
|
|
|
|
info->so_timestamping = SOF_TIMESTAMPING_TX_SOFTWARE |
|
|
|
|
SOF_TIMESTAMPING_RX_SOFTWARE |
|
|
|
|
SOF_TIMESTAMPING_SOFTWARE |
|
2020-09-10 00:26:00 +08:00
|
|
|
SOF_TIMESTAMPING_TX_HARDWARE |
|
2020-09-10 00:25:55 +08:00
|
|
|
SOF_TIMESTAMPING_RX_HARDWARE |
|
|
|
|
SOF_TIMESTAMPING_RAW_HARDWARE;
|
2020-09-10 00:26:00 +08:00
|
|
|
info->tx_types = BIT(HWTSTAMP_TX_OFF) |
|
|
|
|
BIT(HWTSTAMP_TX_ON);
|
2020-09-10 00:25:55 +08:00
|
|
|
info->rx_filters = BIT(HWTSTAMP_FILTER_NONE) |
|
|
|
|
BIT(HWTSTAMP_FILTER_ALL);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-07-28 05:21:36 +08:00
|
|
|
static int mvpp2_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
|
|
|
|
{
|
2018-05-17 16:29:31 +08:00
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
2014-07-28 05:21:36 +08:00
|
|
|
|
2020-09-10 00:25:55 +08:00
|
|
|
switch (cmd) {
|
|
|
|
case SIOCSHWTSTAMP:
|
|
|
|
if (port->hwtstamp)
|
|
|
|
return mvpp2_set_ts_config(port, ifr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SIOCGHWTSTAMP:
|
|
|
|
if (port->hwtstamp)
|
|
|
|
return mvpp2_get_ts_config(port, ifr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
if (!port->phylink)
|
2014-07-28 05:21:36 +08:00
|
|
|
return -ENOTSUPP;
|
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
return phylink_mii_ioctl(port->phylink, ifr, cmd);
|
2014-07-28 05:21:36 +08:00
|
|
|
}
|
|
|
|
|
2018-02-28 17:14:13 +08:00
|
|
|
static int mvpp2_vlan_rx_add_vid(struct net_device *dev, __be16 proto, u16 vid)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = mvpp2_prs_vid_entry_add(port, vid);
|
|
|
|
if (ret)
|
|
|
|
netdev_err(dev, "rx-vlan-filter offloading cannot accept more than %d VIDs per port\n",
|
|
|
|
MVPP2_PRS_VLAN_FILT_MAX - 1);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_vlan_rx_kill_vid(struct net_device *dev, __be16 proto, u16 vid)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
|
|
|
|
mvpp2_prs_vid_entry_remove(port, vid);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_set_features(struct net_device *dev,
|
|
|
|
netdev_features_t features)
|
|
|
|
{
|
|
|
|
netdev_features_t changed = dev->features ^ features;
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
|
|
|
|
if (changed & NETIF_F_HW_VLAN_CTAG_FILTER) {
|
|
|
|
if (features & NETIF_F_HW_VLAN_CTAG_FILTER) {
|
|
|
|
mvpp2_prs_vid_enable_filtering(port);
|
|
|
|
} else {
|
|
|
|
/* Invalidate all registered VID filters for this
|
|
|
|
* port
|
|
|
|
*/
|
|
|
|
mvpp2_prs_vid_remove_all(port);
|
|
|
|
|
|
|
|
mvpp2_prs_vid_disable_filtering(port);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:54:26 +08:00
|
|
|
if (changed & NETIF_F_RXHASH) {
|
|
|
|
if (features & NETIF_F_RXHASH)
|
2019-03-27 16:44:17 +08:00
|
|
|
mvpp22_port_rss_enable(port);
|
2018-07-12 19:54:26 +08:00
|
|
|
else
|
2019-03-27 16:44:17 +08:00
|
|
|
mvpp22_port_rss_disable(port);
|
2018-07-12 19:54:26 +08:00
|
|
|
}
|
|
|
|
|
2018-02-28 17:14:13 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:42 +08:00
|
|
|
static int mvpp2_xdp_setup(struct mvpp2_port *port, struct netdev_bpf *bpf)
|
|
|
|
{
|
|
|
|
struct bpf_prog *prog = bpf->prog, *old_prog;
|
|
|
|
bool running = netif_running(port->dev);
|
|
|
|
bool reset = !prog != !port->xdp_prog;
|
|
|
|
|
|
|
|
if (port->dev->mtu > ETH_DATA_LEN) {
|
|
|
|
NL_SET_ERR_MSG_MOD(bpf->extack, "XDP is not supported with jumbo frames enabled");
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!port->priv->percpu_pools) {
|
|
|
|
NL_SET_ERR_MSG_MOD(bpf->extack, "Per CPU Pools required for XDP");
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:43 +08:00
|
|
|
if (port->ntxqs < num_possible_cpus() * 2) {
|
|
|
|
NL_SET_ERR_MSG_MOD(bpf->extack, "XDP_TX needs two TX queues per CPU");
|
|
|
|
return -EOPNOTSUPP;
|
2020-07-02 22:12:42 +08:00
|
|
|
}
|
|
|
|
|
2020-07-02 22:12:43 +08:00
|
|
|
/* device is up and bpf is added/removed, must setup the RX queues */
|
|
|
|
if (running && reset)
|
|
|
|
mvpp2_stop(port->dev);
|
|
|
|
|
2020-07-02 22:12:42 +08:00
|
|
|
old_prog = xchg(&port->xdp_prog, prog);
|
|
|
|
if (old_prog)
|
|
|
|
bpf_prog_put(old_prog);
|
|
|
|
|
|
|
|
/* bpf is just replaced, RXQ and MTU are already setup */
|
|
|
|
if (!reset)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* device was up, restore the link */
|
2020-07-02 22:12:43 +08:00
|
|
|
if (running)
|
|
|
|
mvpp2_open(port->dev);
|
2020-07-02 22:12:42 +08:00
|
|
|
|
2020-07-02 22:12:43 +08:00
|
|
|
/* Check Page Pool DMA Direction */
|
|
|
|
mvpp2_check_pagepool_dma(port);
|
2020-07-02 22:12:42 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_xdp(struct net_device *dev, struct netdev_bpf *xdp)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
|
|
|
|
switch (xdp->command) {
|
|
|
|
case XDP_SETUP_PROG:
|
|
|
|
return mvpp2_xdp_setup(port, xdp);
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Ethtool methods */
|
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
static int mvpp2_ethtool_nway_reset(struct net_device *dev)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
|
|
|
|
if (!port->phylink)
|
|
|
|
return -ENOTSUPP;
|
|
|
|
|
|
|
|
return phylink_ethtool_nway_reset(port->phylink);
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Set interrupt coalescing for ethtools */
|
|
|
|
static int mvpp2_ethtool_set_coalesce(struct net_device *dev,
|
|
|
|
struct ethtool_coalesce *c)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
int queue;
|
|
|
|
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (queue = 0; queue < port->nrxqs; queue++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_rx_queue *rxq = port->rxqs[queue];
|
|
|
|
|
|
|
|
rxq->time_coal = c->rx_coalesce_usecs;
|
|
|
|
rxq->pkts_coal = c->rx_max_coalesced_frames;
|
2017-02-21 18:28:02 +08:00
|
|
|
mvpp2_rx_pkts_coal_set(port, rxq);
|
|
|
|
mvpp2_rx_time_coal_set(port, rxq);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
if (port->has_tx_irqs) {
|
|
|
|
port->tx_time_coal = c->tx_coalesce_usecs;
|
|
|
|
mvpp2_tx_time_coal_set(port);
|
|
|
|
}
|
|
|
|
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (queue = 0; queue < port->ntxqs; queue++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_tx_queue *txq = port->txqs[queue];
|
|
|
|
|
|
|
|
txq->done_pkts_coal = c->tx_max_coalesced_frames;
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
|
|
|
|
if (port->has_tx_irqs)
|
|
|
|
mvpp2_tx_pkts_coal_set(port, txq);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get coalescing for ethtools */
|
|
|
|
static int mvpp2_ethtool_get_coalesce(struct net_device *dev,
|
|
|
|
struct ethtool_coalesce *c)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
|
2017-12-11 16:13:27 +08:00
|
|
|
c->rx_coalesce_usecs = port->rxqs[0]->time_coal;
|
|
|
|
c->rx_max_coalesced_frames = port->rxqs[0]->pkts_coal;
|
|
|
|
c->tx_max_coalesced_frames = port->txqs[0]->done_pkts_coal;
|
2017-12-11 16:13:28 +08:00
|
|
|
c->tx_coalesce_usecs = port->tx_time_coal;
|
2014-07-11 03:52:13 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp2_ethtool_get_drvinfo(struct net_device *dev,
|
|
|
|
struct ethtool_drvinfo *drvinfo)
|
|
|
|
{
|
|
|
|
strlcpy(drvinfo->driver, MVPP2_DRIVER_NAME,
|
|
|
|
sizeof(drvinfo->driver));
|
|
|
|
strlcpy(drvinfo->version, MVPP2_DRIVER_VERSION,
|
|
|
|
sizeof(drvinfo->version));
|
|
|
|
strlcpy(drvinfo->bus_info, dev_name(&dev->dev),
|
|
|
|
sizeof(drvinfo->bus_info));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp2_ethtool_get_ringparam(struct net_device *dev,
|
|
|
|
struct ethtool_ringparam *ring)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
|
2017-12-11 16:13:26 +08:00
|
|
|
ring->rx_max_pending = MVPP2_MAX_RXD_MAX;
|
|
|
|
ring->tx_max_pending = MVPP2_MAX_TXD_MAX;
|
2014-07-11 03:52:13 +08:00
|
|
|
ring->rx_pending = port->rx_ring_size;
|
|
|
|
ring->tx_pending = port->tx_ring_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_ethtool_set_ringparam(struct net_device *dev,
|
|
|
|
struct ethtool_ringparam *ring)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
u16 prev_rx_ring_size = port->rx_ring_size;
|
|
|
|
u16 prev_tx_ring_size = port->tx_ring_size;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = mvpp2_check_ringparam_valid(dev, ring);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
if (!netif_running(dev)) {
|
|
|
|
port->rx_ring_size = ring->rx_pending;
|
|
|
|
port->tx_ring_size = ring->tx_pending;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The interface is running, so we have to force a
|
|
|
|
* reallocation of the queues
|
|
|
|
*/
|
|
|
|
mvpp2_stop_dev(port);
|
|
|
|
mvpp2_cleanup_rxqs(port);
|
|
|
|
mvpp2_cleanup_txqs(port);
|
|
|
|
|
|
|
|
port->rx_ring_size = ring->rx_pending;
|
|
|
|
port->tx_ring_size = ring->tx_pending;
|
|
|
|
|
|
|
|
err = mvpp2_setup_rxqs(port);
|
|
|
|
if (err) {
|
|
|
|
/* Reallocate Rx queues with the original ring size */
|
|
|
|
port->rx_ring_size = prev_rx_ring_size;
|
|
|
|
ring->rx_pending = prev_rx_ring_size;
|
|
|
|
err = mvpp2_setup_rxqs(port);
|
|
|
|
if (err)
|
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
err = mvpp2_setup_txqs(port);
|
|
|
|
if (err) {
|
|
|
|
/* Reallocate Tx queues with the original ring size */
|
|
|
|
port->tx_ring_size = prev_tx_ring_size;
|
|
|
|
ring->tx_pending = prev_tx_ring_size;
|
|
|
|
err = mvpp2_setup_txqs(port);
|
|
|
|
if (err)
|
|
|
|
goto err_clean_rxqs;
|
|
|
|
}
|
|
|
|
|
|
|
|
mvpp2_start_dev(port);
|
|
|
|
mvpp2_egress_enable(port);
|
|
|
|
mvpp2_ingress_enable(port);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_clean_rxqs:
|
|
|
|
mvpp2_cleanup_rxqs(port);
|
|
|
|
err_out:
|
2017-04-17 17:20:41 +08:00
|
|
|
netdev_err(dev, "failed to change ring parameters");
|
2014-07-11 03:52:13 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
static void mvpp2_ethtool_get_pause_param(struct net_device *dev,
|
|
|
|
struct ethtool_pauseparam *pause)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
|
|
|
|
if (!port->phylink)
|
|
|
|
return;
|
|
|
|
|
|
|
|
phylink_ethtool_get_pauseparam(port->phylink, pause);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_ethtool_set_pause_param(struct net_device *dev,
|
|
|
|
struct ethtool_pauseparam *pause)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
|
|
|
|
if (!port->phylink)
|
|
|
|
return -ENOTSUPP;
|
|
|
|
|
|
|
|
return phylink_ethtool_set_pauseparam(port->phylink, pause);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_ethtool_get_link_ksettings(struct net_device *dev,
|
|
|
|
struct ethtool_link_ksettings *cmd)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
|
|
|
|
if (!port->phylink)
|
|
|
|
return -ENOTSUPP;
|
|
|
|
|
|
|
|
return phylink_ethtool_ksettings_get(port->phylink, cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_ethtool_set_link_ksettings(struct net_device *dev,
|
|
|
|
const struct ethtool_link_ksettings *cmd)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
|
|
|
|
if (!port->phylink)
|
|
|
|
return -ENOTSUPP;
|
|
|
|
|
|
|
|
return phylink_ethtool_ksettings_set(port->phylink, cmd);
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:54:20 +08:00
|
|
|
static int mvpp2_ethtool_get_rxnfc(struct net_device *dev,
|
|
|
|
struct ethtool_rxnfc *info, u32 *rules)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
2019-04-30 21:14:28 +08:00
|
|
|
int ret = 0, i, loc = 0;
|
2018-07-12 19:54:20 +08:00
|
|
|
|
2021-02-18 20:42:03 +08:00
|
|
|
if (!mvpp22_rss_is_supported(port))
|
2018-07-12 19:54:20 +08:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
switch (info->cmd) {
|
2018-07-12 19:54:27 +08:00
|
|
|
case ETHTOOL_GRXFH:
|
|
|
|
ret = mvpp2_ethtool_rxfh_get(port, info);
|
|
|
|
break;
|
2018-07-12 19:54:20 +08:00
|
|
|
case ETHTOOL_GRXRINGS:
|
|
|
|
info->data = port->nrxqs;
|
|
|
|
break;
|
2019-04-30 21:14:28 +08:00
|
|
|
case ETHTOOL_GRXCLSRLCNT:
|
|
|
|
info->rule_cnt = port->n_rfs_rules;
|
|
|
|
break;
|
|
|
|
case ETHTOOL_GRXCLSRULE:
|
|
|
|
ret = mvpp2_ethtool_cls_rule_get(port, info);
|
|
|
|
break;
|
|
|
|
case ETHTOOL_GRXCLSRLALL:
|
2019-05-24 18:05:50 +08:00
|
|
|
for (i = 0; i < MVPP2_N_RFS_ENTRIES_PER_FLOW; i++) {
|
2019-04-30 21:14:28 +08:00
|
|
|
if (port->rfs_rules[i])
|
|
|
|
rules[loc++] = i;
|
|
|
|
}
|
|
|
|
break;
|
2018-07-12 19:54:20 +08:00
|
|
|
default:
|
|
|
|
return -ENOTSUPP;
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:54:27 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_ethtool_set_rxnfc(struct net_device *dev,
|
|
|
|
struct ethtool_rxnfc *info)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
int ret = 0;
|
|
|
|
|
2021-02-18 20:42:03 +08:00
|
|
|
if (!mvpp22_rss_is_supported(port))
|
2018-07-12 19:54:27 +08:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
switch (info->cmd) {
|
|
|
|
case ETHTOOL_SRXFH:
|
|
|
|
ret = mvpp2_ethtool_rxfh_set(port, info);
|
|
|
|
break;
|
2019-04-30 21:14:28 +08:00
|
|
|
case ETHTOOL_SRXCLSRLINS:
|
|
|
|
ret = mvpp2_ethtool_cls_rule_ins(port, info);
|
|
|
|
break;
|
|
|
|
case ETHTOOL_SRXCLSRLDEL:
|
|
|
|
ret = mvpp2_ethtool_cls_rule_del(port, info);
|
|
|
|
break;
|
2018-07-12 19:54:27 +08:00
|
|
|
default:
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
return ret;
|
2018-07-12 19:54:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static u32 mvpp2_ethtool_get_rxfh_indir_size(struct net_device *dev)
|
|
|
|
{
|
2021-02-18 20:42:03 +08:00
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
|
|
|
|
return mvpp22_rss_is_supported(port) ? MVPP22_RSS_TABLE_ENTRIES : 0;
|
2018-07-12 19:54:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_ethtool_get_rxfh(struct net_device *dev, u32 *indir, u8 *key,
|
|
|
|
u8 *hfunc)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
2019-05-24 18:05:52 +08:00
|
|
|
int ret = 0;
|
2018-07-12 19:54:20 +08:00
|
|
|
|
2021-02-18 20:42:03 +08:00
|
|
|
if (!mvpp22_rss_is_supported(port))
|
2018-07-12 19:54:20 +08:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
if (indir)
|
2019-05-24 18:05:52 +08:00
|
|
|
ret = mvpp22_port_rss_ctx_indir_get(port, 0, indir);
|
2018-07-12 19:54:20 +08:00
|
|
|
|
|
|
|
if (hfunc)
|
|
|
|
*hfunc = ETH_RSS_HASH_CRC32;
|
|
|
|
|
2019-05-24 18:05:52 +08:00
|
|
|
return ret;
|
2018-07-12 19:54:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_ethtool_set_rxfh(struct net_device *dev, const u32 *indir,
|
|
|
|
const u8 *key, const u8 hfunc)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
2019-05-24 18:05:52 +08:00
|
|
|
int ret = 0;
|
2018-07-12 19:54:20 +08:00
|
|
|
|
2021-02-18 20:42:03 +08:00
|
|
|
if (!mvpp22_rss_is_supported(port))
|
2018-07-12 19:54:20 +08:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
if (hfunc != ETH_RSS_HASH_NO_CHANGE && hfunc != ETH_RSS_HASH_CRC32)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
if (key)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2019-05-24 18:05:52 +08:00
|
|
|
if (indir)
|
|
|
|
ret = mvpp22_port_rss_ctx_indir_set(port, 0, indir);
|
2018-07-12 19:54:20 +08:00
|
|
|
|
2019-05-24 18:05:52 +08:00
|
|
|
return ret;
|
2018-07-12 19:54:20 +08:00
|
|
|
}
|
|
|
|
|
2019-05-24 18:05:52 +08:00
|
|
|
static int mvpp2_ethtool_get_rxfh_context(struct net_device *dev, u32 *indir,
|
|
|
|
u8 *key, u8 *hfunc, u32 rss_context)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
int ret = 0;
|
|
|
|
|
2021-02-18 20:42:03 +08:00
|
|
|
if (!mvpp22_rss_is_supported(port))
|
2019-05-24 18:05:52 +08:00
|
|
|
return -EOPNOTSUPP;
|
2020-05-06 18:16:22 +08:00
|
|
|
if (rss_context >= MVPP22_N_RSS_TABLES)
|
|
|
|
return -EINVAL;
|
2019-05-24 18:05:52 +08:00
|
|
|
|
|
|
|
if (hfunc)
|
|
|
|
*hfunc = ETH_RSS_HASH_CRC32;
|
|
|
|
|
|
|
|
if (indir)
|
|
|
|
ret = mvpp22_port_rss_ctx_indir_get(port, rss_context, indir);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_ethtool_set_rxfh_context(struct net_device *dev,
|
|
|
|
const u32 *indir, const u8 *key,
|
|
|
|
const u8 hfunc, u32 *rss_context,
|
|
|
|
bool delete)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
int ret;
|
|
|
|
|
2021-02-18 20:42:03 +08:00
|
|
|
if (!mvpp22_rss_is_supported(port))
|
2019-05-24 18:05:52 +08:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
if (hfunc != ETH_RSS_HASH_NO_CHANGE && hfunc != ETH_RSS_HASH_CRC32)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
if (key)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
if (delete)
|
|
|
|
return mvpp22_port_rss_ctx_delete(port, *rss_context);
|
|
|
|
|
|
|
|
if (*rss_context == ETH_RXFH_CONTEXT_ALLOC) {
|
|
|
|
ret = mvpp22_port_rss_ctx_create(port, rss_context);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mvpp22_port_rss_ctx_indir_set(port, *rss_context, indir);
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Device ops */
|
|
|
|
|
|
|
|
static const struct net_device_ops mvpp2_netdev_ops = {
|
|
|
|
.ndo_open = mvpp2_open,
|
|
|
|
.ndo_stop = mvpp2_stop,
|
|
|
|
.ndo_start_xmit = mvpp2_tx,
|
|
|
|
.ndo_set_rx_mode = mvpp2_set_rx_mode,
|
|
|
|
.ndo_set_mac_address = mvpp2_set_mac_address,
|
|
|
|
.ndo_change_mtu = mvpp2_change_mtu,
|
|
|
|
.ndo_get_stats64 = mvpp2_get_stats64,
|
2014-07-28 05:21:36 +08:00
|
|
|
.ndo_do_ioctl = mvpp2_ioctl,
|
2018-02-28 17:14:13 +08:00
|
|
|
.ndo_vlan_rx_add_vid = mvpp2_vlan_rx_add_vid,
|
|
|
|
.ndo_vlan_rx_kill_vid = mvpp2_vlan_rx_kill_vid,
|
|
|
|
.ndo_set_features = mvpp2_set_features,
|
2020-07-02 22:12:42 +08:00
|
|
|
.ndo_bpf = mvpp2_xdp,
|
2020-07-02 22:12:43 +08:00
|
|
|
.ndo_xdp_xmit = mvpp2_xdp_xmit,
|
2014-07-11 03:52:13 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct ethtool_ops mvpp2_eth_tool_ops = {
|
2020-03-13 12:07:52 +08:00
|
|
|
.supported_coalesce_params = ETHTOOL_COALESCE_USECS |
|
|
|
|
ETHTOOL_COALESCE_MAX_FRAMES,
|
2018-05-17 16:29:31 +08:00
|
|
|
.nway_reset = mvpp2_ethtool_nway_reset,
|
2018-05-17 16:29:30 +08:00
|
|
|
.get_link = ethtool_op_get_link,
|
2020-09-10 00:25:55 +08:00
|
|
|
.get_ts_info = mvpp2_ethtool_get_ts_info,
|
2018-05-17 16:29:30 +08:00
|
|
|
.set_coalesce = mvpp2_ethtool_set_coalesce,
|
|
|
|
.get_coalesce = mvpp2_ethtool_get_coalesce,
|
|
|
|
.get_drvinfo = mvpp2_ethtool_get_drvinfo,
|
|
|
|
.get_ringparam = mvpp2_ethtool_get_ringparam,
|
|
|
|
.set_ringparam = mvpp2_ethtool_set_ringparam,
|
|
|
|
.get_strings = mvpp2_ethtool_get_strings,
|
|
|
|
.get_ethtool_stats = mvpp2_ethtool_get_stats,
|
|
|
|
.get_sset_count = mvpp2_ethtool_get_sset_count,
|
2018-05-17 16:29:31 +08:00
|
|
|
.get_pauseparam = mvpp2_ethtool_get_pause_param,
|
|
|
|
.set_pauseparam = mvpp2_ethtool_set_pause_param,
|
|
|
|
.get_link_ksettings = mvpp2_ethtool_get_link_ksettings,
|
|
|
|
.set_link_ksettings = mvpp2_ethtool_set_link_ksettings,
|
2018-07-12 19:54:20 +08:00
|
|
|
.get_rxnfc = mvpp2_ethtool_get_rxnfc,
|
2018-07-12 19:54:27 +08:00
|
|
|
.set_rxnfc = mvpp2_ethtool_set_rxnfc,
|
2018-07-12 19:54:20 +08:00
|
|
|
.get_rxfh_indir_size = mvpp2_ethtool_get_rxfh_indir_size,
|
|
|
|
.get_rxfh = mvpp2_ethtool_get_rxfh,
|
|
|
|
.set_rxfh = mvpp2_ethtool_set_rxfh,
|
2019-05-24 18:05:52 +08:00
|
|
|
.get_rxfh_context = mvpp2_ethtool_get_rxfh_context,
|
|
|
|
.set_rxfh_context = mvpp2_ethtool_set_rxfh_context,
|
2014-07-11 03:52:13 +08:00
|
|
|
};
|
|
|
|
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
/* Used for PPv2.1, or PPv2.2 with the old Device Tree binding that
|
|
|
|
* had a single IRQ defined per-port.
|
|
|
|
*/
|
|
|
|
static int mvpp2_simple_queue_vectors_init(struct mvpp2_port *port,
|
|
|
|
struct device_node *port_node)
|
2017-08-03 16:41:59 +08:00
|
|
|
{
|
|
|
|
struct mvpp2_queue_vector *v = &port->qvecs[0];
|
|
|
|
|
|
|
|
v->first_rxq = 0;
|
|
|
|
v->nrxqs = port->nrxqs;
|
|
|
|
v->type = MVPP2_QUEUE_VECTOR_SHARED;
|
|
|
|
v->sw_thread_id = 0;
|
|
|
|
v->sw_thread_mask = *cpumask_bits(cpu_online_mask);
|
|
|
|
v->port = port;
|
|
|
|
v->irq = irq_of_parse_and_map(port_node, 0);
|
|
|
|
if (v->irq <= 0)
|
|
|
|
return -EINVAL;
|
|
|
|
netif_napi_add(port->dev, &v->napi, mvpp2_poll,
|
|
|
|
NAPI_POLL_WEIGHT);
|
|
|
|
|
|
|
|
port->nqvecs = 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
static int mvpp2_multi_queue_vectors_init(struct mvpp2_port *port,
|
|
|
|
struct device_node *port_node)
|
|
|
|
{
|
2018-09-19 17:27:10 +08:00
|
|
|
struct mvpp2 *priv = port->priv;
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
struct mvpp2_queue_vector *v;
|
|
|
|
int i, ret;
|
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
switch (queue_mode) {
|
|
|
|
case MVPP2_QDIST_SINGLE_MODE:
|
|
|
|
port->nqvecs = priv->nthreads + 1;
|
|
|
|
break;
|
|
|
|
case MVPP2_QDIST_MULTI_MODE:
|
|
|
|
port->nqvecs = priv->nthreads;
|
|
|
|
break;
|
|
|
|
}
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
|
|
|
|
for (i = 0; i < port->nqvecs; i++) {
|
|
|
|
char irqname[16];
|
|
|
|
|
|
|
|
v = port->qvecs + i;
|
|
|
|
|
|
|
|
v->port = port;
|
|
|
|
v->type = MVPP2_QUEUE_VECTOR_PRIVATE;
|
|
|
|
v->sw_thread_id = i;
|
|
|
|
v->sw_thread_mask = BIT(i);
|
|
|
|
|
2018-09-19 17:27:01 +08:00
|
|
|
if (port->flags & MVPP2_F_DT_COMPAT)
|
|
|
|
snprintf(irqname, sizeof(irqname), "tx-cpu%d", i);
|
|
|
|
else
|
|
|
|
snprintf(irqname, sizeof(irqname), "hif%d", i);
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
|
|
|
|
if (queue_mode == MVPP2_QDIST_MULTI_MODE) {
|
2019-03-01 18:52:09 +08:00
|
|
|
v->first_rxq = i;
|
|
|
|
v->nrxqs = 1;
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
} else if (queue_mode == MVPP2_QDIST_SINGLE_MODE &&
|
|
|
|
i == (port->nqvecs - 1)) {
|
|
|
|
v->first_rxq = 0;
|
|
|
|
v->nrxqs = port->nrxqs;
|
|
|
|
v->type = MVPP2_QUEUE_VECTOR_SHARED;
|
2018-09-19 17:27:01 +08:00
|
|
|
|
|
|
|
if (port->flags & MVPP2_F_DT_COMPAT)
|
|
|
|
strncpy(irqname, "rx-shared", sizeof(irqname));
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
}
|
|
|
|
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
if (port_node)
|
|
|
|
v->irq = of_irq_get_byname(port_node, irqname);
|
|
|
|
else
|
|
|
|
v->irq = fwnode_irq_get(port->fwnode, i);
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
if (v->irq <= 0) {
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
netif_napi_add(port->dev, &v->napi, mvpp2_poll,
|
|
|
|
NAPI_POLL_WEIGHT);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err:
|
|
|
|
for (i = 0; i < port->nqvecs; i++)
|
|
|
|
irq_dispose_mapping(port->qvecs[i].irq);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_queue_vectors_init(struct mvpp2_port *port,
|
|
|
|
struct device_node *port_node)
|
|
|
|
{
|
|
|
|
if (port->has_tx_irqs)
|
|
|
|
return mvpp2_multi_queue_vectors_init(port, port_node);
|
|
|
|
else
|
|
|
|
return mvpp2_simple_queue_vectors_init(port, port_node);
|
|
|
|
}
|
|
|
|
|
2017-08-03 16:41:59 +08:00
|
|
|
static void mvpp2_queue_vectors_deinit(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < port->nqvecs; i++)
|
|
|
|
irq_dispose_mapping(port->qvecs[i].irq);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Configure Rx queue group interrupt for this port */
|
|
|
|
static void mvpp2_rx_irqs_setup(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
struct mvpp2 *priv = port->priv;
|
|
|
|
u32 val;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (priv->hw_version == MVPP21) {
|
|
|
|
mvpp2_write(priv, MVPP21_ISR_RXQ_GROUP_REG(port->id),
|
|
|
|
port->nrxqs);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-11 18:48:52 +08:00
|
|
|
/* Handle the more complicated PPv2.2 and PPv2.3 case */
|
2017-08-03 16:41:59 +08:00
|
|
|
for (i = 0; i < port->nqvecs; i++) {
|
|
|
|
struct mvpp2_queue_vector *qv = port->qvecs + i;
|
|
|
|
|
|
|
|
if (!qv->nrxqs)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
val = qv->sw_thread_id;
|
|
|
|
val |= port->id << MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_OFFSET;
|
|
|
|
mvpp2_write(priv, MVPP22_ISR_RXQ_GROUP_INDEX_REG, val);
|
|
|
|
|
|
|
|
val = qv->first_rxq;
|
|
|
|
val |= qv->nrxqs << MVPP22_ISR_RXQ_SUB_GROUP_SIZE_OFFSET;
|
|
|
|
mvpp2_write(priv, MVPP22_ISR_RXQ_SUB_GROUP_CONFIG_REG, val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Initialize port HW */
|
|
|
|
static int mvpp2_port_init(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
struct device *dev = port->dev->dev.parent;
|
|
|
|
struct mvpp2 *priv = port->priv;
|
|
|
|
struct mvpp2_txq_pcpu *txq_pcpu;
|
2018-09-19 17:27:09 +08:00
|
|
|
unsigned int thread;
|
2020-12-17 22:52:15 +08:00
|
|
|
int queue, err, val;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
/* Checks for hardware constraints */
|
|
|
|
if (port->first_rxq + port->nrxqs >
|
net: mvpp2: adapt rxq distribution to PPv2.2
In PPv2.1, we have a maximum of 8 RXQs per port, with a default of 4
RXQs per port, and we were assigning RXQs 0->3 to the first port, 4->7
to the second port, 8->11 to the third port, etc.
In PPv2.2, we have a maximum of 32 RXQs per port, and we must allocate
RXQs from the range of 32 RXQs available for each port. So port 0 must
use RXQs in the range 0->31, port 1 in the range 32->63, etc.
This commit adapts the mvpp2 to this difference between PPv2.1 and
PPv2.2:
- The constant definition MVPP2_MAX_RXQ is replaced by a new field
'max_port_rxqs' in 'struct mvpp2', which stores the maximum number of
RXQs per port. This field is initialized during ->probe() depending
on the IP version.
- MVPP2_RXQ_TOTAL_NUM is removed, and instead we calculate the total
number of RXQs by multiplying the number of ports by the maximum of
RXQs per port. This was anyway used in only one place.
- In mvpp2_port_probe(), the calculation of port->first_rxq is adjusted
to cope with the different allocation strategy between PPv2.1 and
PPv2.2. Due to this change, the 'next_first_rxq' argument of this
function is no longer needed and is removed.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:17 +08:00
|
|
|
MVPP2_MAX_PORTS * priv->max_port_rxqs)
|
2014-07-11 03:52:13 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
2019-03-01 18:52:09 +08:00
|
|
|
if (port->nrxqs > priv->max_port_rxqs || port->ntxqs > MVPP2_MAX_TXQ)
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Disable port */
|
|
|
|
mvpp2_egress_disable(port);
|
|
|
|
mvpp2_port_disable(port);
|
|
|
|
|
2020-12-17 22:52:15 +08:00
|
|
|
if (mvpp2_is_xlg(port->phy_interface)) {
|
|
|
|
val = readl(port->base + MVPP22_XLG_CTRL0_REG);
|
|
|
|
val &= ~MVPP22_XLG_CTRL0_FORCE_LINK_PASS;
|
|
|
|
val |= MVPP22_XLG_CTRL0_FORCE_LINK_DOWN;
|
|
|
|
writel(val, port->base + MVPP22_XLG_CTRL0_REG);
|
|
|
|
} else {
|
|
|
|
val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
|
|
|
|
val &= ~MVPP2_GMAC_FORCE_LINK_PASS;
|
|
|
|
val |= MVPP2_GMAC_FORCE_LINK_DOWN;
|
|
|
|
writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
|
|
|
|
}
|
|
|
|
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
port->tx_time_coal = MVPP2_TXDONE_COAL_USEC;
|
|
|
|
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
port->txqs = devm_kcalloc(dev, port->ntxqs, sizeof(*port->txqs),
|
2014-07-11 03:52:13 +08:00
|
|
|
GFP_KERNEL);
|
|
|
|
if (!port->txqs)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
/* Associate physical Tx queues to this port and initialize.
|
|
|
|
* The mapping is predefined.
|
|
|
|
*/
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (queue = 0; queue < port->ntxqs; queue++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
int queue_phy_id = mvpp2_txq_phys(port->id, queue);
|
|
|
|
struct mvpp2_tx_queue *txq;
|
|
|
|
|
|
|
|
txq = devm_kzalloc(dev, sizeof(*txq), GFP_KERNEL);
|
2017-02-19 17:19:57 +08:00
|
|
|
if (!txq) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto err_free_percpu;
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
txq->pcpu = alloc_percpu(struct mvpp2_txq_pcpu);
|
|
|
|
if (!txq->pcpu) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto err_free_percpu;
|
|
|
|
}
|
|
|
|
|
|
|
|
txq->id = queue_phy_id;
|
|
|
|
txq->log_id = queue;
|
|
|
|
txq->done_pkts_coal = MVPP2_TXDONE_COAL_PKTS_THRESH;
|
2018-09-19 17:27:10 +08:00
|
|
|
for (thread = 0; thread < priv->nthreads; thread++) {
|
2018-09-19 17:27:09 +08:00
|
|
|
txq_pcpu = per_cpu_ptr(txq->pcpu, thread);
|
|
|
|
txq_pcpu->thread = thread;
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
port->txqs[queue] = txq;
|
|
|
|
}
|
|
|
|
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
port->rxqs = devm_kcalloc(dev, port->nrxqs, sizeof(*port->rxqs),
|
2014-07-11 03:52:13 +08:00
|
|
|
GFP_KERNEL);
|
|
|
|
if (!port->rxqs) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto err_free_percpu;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate and initialize Rx queue for this port */
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (queue = 0; queue < port->nrxqs; queue++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_rx_queue *rxq;
|
|
|
|
|
|
|
|
/* Map physical Rx queue to port's logical Rx queue */
|
|
|
|
rxq = devm_kzalloc(dev, sizeof(*rxq), GFP_KERNEL);
|
2016-03-31 17:01:23 +08:00
|
|
|
if (!rxq) {
|
|
|
|
err = -ENOMEM;
|
2014-07-11 03:52:13 +08:00
|
|
|
goto err_free_percpu;
|
2016-03-31 17:01:23 +08:00
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Map this Rx queue to a physical queue */
|
|
|
|
rxq->id = port->first_rxq + queue;
|
|
|
|
rxq->port = port->id;
|
|
|
|
rxq->logic_rxq = queue;
|
|
|
|
|
|
|
|
port->rxqs[queue] = rxq;
|
|
|
|
}
|
|
|
|
|
2017-08-03 16:41:59 +08:00
|
|
|
mvpp2_rx_irqs_setup(port);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* Create Rx descriptor rings */
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (queue = 0; queue < port->nrxqs; queue++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_rx_queue *rxq = port->rxqs[queue];
|
|
|
|
|
|
|
|
rxq->size = port->rx_ring_size;
|
|
|
|
rxq->pkts_coal = MVPP2_RX_COAL_PKTS;
|
|
|
|
rxq->time_coal = MVPP2_RX_COAL_USEC;
|
|
|
|
}
|
|
|
|
|
|
|
|
mvpp2_ingress_disable(port);
|
|
|
|
|
|
|
|
/* Port default configuration */
|
|
|
|
mvpp2_defaults_set(port);
|
|
|
|
|
|
|
|
/* Port's classifier configuration */
|
|
|
|
mvpp2_cls_oversize_rxq_set(port);
|
|
|
|
mvpp2_cls_port_config(port);
|
|
|
|
|
2021-02-18 20:42:03 +08:00
|
|
|
if (mvpp22_rss_is_supported(port))
|
2019-03-27 16:44:17 +08:00
|
|
|
mvpp22_port_rss_init(port);
|
2018-07-12 19:54:23 +08:00
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Provide an initial Rx packet size */
|
|
|
|
port->pkt_size = MVPP2_RX_PKT_SIZE(port->dev->mtu);
|
|
|
|
|
|
|
|
/* Initialize pools for swf */
|
|
|
|
err = mvpp2_swf_bm_pool_init(port);
|
|
|
|
if (err)
|
|
|
|
goto err_free_percpu;
|
|
|
|
|
2019-06-10 16:55:29 +08:00
|
|
|
/* Clear all port stats */
|
|
|
|
mvpp2_read_stats(port);
|
|
|
|
memset(port->ethtool_stats, 0,
|
|
|
|
MVPP2_N_ETHTOOL_STATS(port->ntxqs, port->nrxqs) * sizeof(u64));
|
2019-06-10 16:55:27 +08:00
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_free_percpu:
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (queue = 0; queue < port->ntxqs; queue++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
if (!port->txqs[queue])
|
|
|
|
continue;
|
|
|
|
free_percpu(port->txqs[queue]->pcpu);
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2018-09-19 17:27:01 +08:00
|
|
|
static bool mvpp22_port_has_legacy_tx_irqs(struct device_node *port_node,
|
|
|
|
unsigned long *flags)
|
|
|
|
{
|
|
|
|
char *irqs[5] = { "rx-shared", "tx-cpu0", "tx-cpu1", "tx-cpu2",
|
|
|
|
"tx-cpu3" };
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 5; i++)
|
|
|
|
if (of_property_match_string(port_node, "interrupt-names",
|
|
|
|
irqs[i]) < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*flags |= MVPP2_F_DT_COMPAT;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Checks if the port dt description has the required Tx interrupts:
|
|
|
|
* - PPv2.1: there are no such interrupts.
|
2021-02-11 18:48:52 +08:00
|
|
|
* - PPv2.2 and PPv2.3:
|
2018-09-19 17:27:01 +08:00
|
|
|
* - The old DTs have: "rx-shared", "tx-cpuX" with X in [0...3]
|
|
|
|
* - The new ones have: "hifX" with X in [0..8]
|
|
|
|
*
|
|
|
|
* All those variants are supported to keep the backward compatibility.
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
*/
|
2018-09-19 17:27:01 +08:00
|
|
|
static bool mvpp2_port_has_irqs(struct mvpp2 *priv,
|
|
|
|
struct device_node *port_node,
|
|
|
|
unsigned long *flags)
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
{
|
2018-09-19 17:27:01 +08:00
|
|
|
char name[5];
|
|
|
|
int i;
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
|
2018-09-19 17:27:03 +08:00
|
|
|
/* ACPI */
|
|
|
|
if (!port_node)
|
|
|
|
return true;
|
|
|
|
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
if (priv->hw_version == MVPP21)
|
|
|
|
return false;
|
|
|
|
|
2018-09-19 17:27:01 +08:00
|
|
|
if (mvpp22_port_has_legacy_tx_irqs(port_node, flags))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
for (i = 0; i < MVPP2_MAX_THREADS; i++) {
|
|
|
|
snprintf(name, 5, "hif%d", i);
|
|
|
|
if (of_property_match_string(port_node, "interrupt-names",
|
|
|
|
name) < 0)
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-09-02 17:06:47 +08:00
|
|
|
static void mvpp2_port_copy_mac_addr(struct net_device *dev, struct mvpp2 *priv,
|
2018-01-18 20:31:43 +08:00
|
|
|
struct fwnode_handle *fwnode,
|
2017-09-02 17:06:47 +08:00
|
|
|
char **mac_from)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = netdev_priv(dev);
|
|
|
|
char hw_mac_addr[ETH_ALEN] = {0};
|
2018-01-18 20:31:43 +08:00
|
|
|
char fw_mac_addr[ETH_ALEN];
|
2017-09-02 17:06:47 +08:00
|
|
|
|
2018-01-18 20:31:43 +08:00
|
|
|
if (fwnode_get_mac_address(fwnode, fw_mac_addr, ETH_ALEN)) {
|
|
|
|
*mac_from = "firmware node";
|
|
|
|
ether_addr_copy(dev->dev_addr, fw_mac_addr);
|
2017-09-02 17:06:49 +08:00
|
|
|
return;
|
|
|
|
}
|
2017-09-02 17:06:48 +08:00
|
|
|
|
2017-09-02 17:06:49 +08:00
|
|
|
if (priv->hw_version == MVPP21) {
|
|
|
|
mvpp21_get_mac_address(port, hw_mac_addr);
|
|
|
|
if (is_valid_ether_addr(hw_mac_addr)) {
|
|
|
|
*mac_from = "hardware";
|
|
|
|
ether_addr_copy(dev->dev_addr, hw_mac_addr);
|
|
|
|
return;
|
|
|
|
}
|
2017-09-02 17:06:47 +08:00
|
|
|
}
|
2017-09-02 17:06:49 +08:00
|
|
|
|
|
|
|
*mac_from = "random";
|
|
|
|
eth_hw_addr_random(dev);
|
2017-09-02 17:06:47 +08:00
|
|
|
}
|
|
|
|
|
2020-06-20 17:21:32 +08:00
|
|
|
static struct mvpp2_port *mvpp2_phylink_to_port(struct phylink_config *config)
|
|
|
|
{
|
|
|
|
return container_of(config, struct mvpp2_port, phylink_config);
|
|
|
|
}
|
|
|
|
|
2020-09-01 21:48:32 +08:00
|
|
|
static struct mvpp2_port *mvpp2_pcs_to_port(struct phylink_pcs *pcs)
|
|
|
|
{
|
|
|
|
return container_of(pcs, struct mvpp2_port, phylink_pcs);
|
|
|
|
}
|
|
|
|
|
2020-09-01 21:48:37 +08:00
|
|
|
static void mvpp2_xlg_pcs_get_state(struct phylink_pcs *pcs,
|
|
|
|
struct phylink_link_state *state)
|
2020-09-01 21:48:32 +08:00
|
|
|
{
|
2020-09-01 21:48:37 +08:00
|
|
|
struct mvpp2_port *port = mvpp2_pcs_to_port(pcs);
|
2020-09-01 21:48:32 +08:00
|
|
|
u32 val;
|
|
|
|
|
|
|
|
state->speed = SPEED_10000;
|
|
|
|
state->duplex = 1;
|
|
|
|
state->an_complete = 1;
|
|
|
|
|
|
|
|
val = readl(port->base + MVPP22_XLG_STATUS);
|
|
|
|
state->link = !!(val & MVPP22_XLG_STATUS_LINK_UP);
|
|
|
|
|
|
|
|
state->pause = 0;
|
|
|
|
val = readl(port->base + MVPP22_XLG_CTRL0_REG);
|
|
|
|
if (val & MVPP22_XLG_CTRL0_TX_FLOW_CTRL_EN)
|
|
|
|
state->pause |= MLO_PAUSE_TX;
|
|
|
|
if (val & MVPP22_XLG_CTRL0_RX_FLOW_CTRL_EN)
|
|
|
|
state->pause |= MLO_PAUSE_RX;
|
|
|
|
}
|
|
|
|
|
2020-09-01 21:48:37 +08:00
|
|
|
static int mvpp2_xlg_pcs_config(struct phylink_pcs *pcs,
|
|
|
|
unsigned int mode,
|
|
|
|
phy_interface_t interface,
|
|
|
|
const unsigned long *advertising,
|
|
|
|
bool permit_pause_to_mac)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct phylink_pcs_ops mvpp2_phylink_xlg_pcs_ops = {
|
|
|
|
.pcs_get_state = mvpp2_xlg_pcs_get_state,
|
|
|
|
.pcs_config = mvpp2_xlg_pcs_config,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void mvpp2_gmac_pcs_get_state(struct phylink_pcs *pcs,
|
2020-09-01 21:48:32 +08:00
|
|
|
struct phylink_link_state *state)
|
|
|
|
{
|
2020-09-01 21:48:37 +08:00
|
|
|
struct mvpp2_port *port = mvpp2_pcs_to_port(pcs);
|
2020-09-01 21:48:32 +08:00
|
|
|
u32 val;
|
|
|
|
|
|
|
|
val = readl(port->base + MVPP2_GMAC_STATUS0);
|
|
|
|
|
|
|
|
state->an_complete = !!(val & MVPP2_GMAC_STATUS0_AN_COMPLETE);
|
|
|
|
state->link = !!(val & MVPP2_GMAC_STATUS0_LINK_UP);
|
|
|
|
state->duplex = !!(val & MVPP2_GMAC_STATUS0_FULL_DUPLEX);
|
|
|
|
|
|
|
|
switch (port->phy_interface) {
|
|
|
|
case PHY_INTERFACE_MODE_1000BASEX:
|
|
|
|
state->speed = SPEED_1000;
|
|
|
|
break;
|
|
|
|
case PHY_INTERFACE_MODE_2500BASEX:
|
|
|
|
state->speed = SPEED_2500;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (val & MVPP2_GMAC_STATUS0_GMII_SPEED)
|
|
|
|
state->speed = SPEED_1000;
|
|
|
|
else if (val & MVPP2_GMAC_STATUS0_MII_SPEED)
|
|
|
|
state->speed = SPEED_100;
|
|
|
|
else
|
|
|
|
state->speed = SPEED_10;
|
|
|
|
}
|
|
|
|
|
|
|
|
state->pause = 0;
|
|
|
|
if (val & MVPP2_GMAC_STATUS0_RX_PAUSE)
|
|
|
|
state->pause |= MLO_PAUSE_RX;
|
|
|
|
if (val & MVPP2_GMAC_STATUS0_TX_PAUSE)
|
|
|
|
state->pause |= MLO_PAUSE_TX;
|
|
|
|
}
|
|
|
|
|
2020-09-01 21:48:37 +08:00
|
|
|
static int mvpp2_gmac_pcs_config(struct phylink_pcs *pcs, unsigned int mode,
|
2020-09-01 21:48:32 +08:00
|
|
|
phy_interface_t interface,
|
|
|
|
const unsigned long *advertising,
|
|
|
|
bool permit_pause_to_mac)
|
|
|
|
{
|
2020-09-01 21:48:37 +08:00
|
|
|
struct mvpp2_port *port = mvpp2_pcs_to_port(pcs);
|
2020-09-01 21:48:32 +08:00
|
|
|
u32 mask, val, an, old_an, changed;
|
|
|
|
|
|
|
|
mask = MVPP2_GMAC_IN_BAND_AUTONEG_BYPASS |
|
|
|
|
MVPP2_GMAC_IN_BAND_AUTONEG |
|
|
|
|
MVPP2_GMAC_AN_SPEED_EN |
|
|
|
|
MVPP2_GMAC_FLOW_CTRL_AUTONEG |
|
|
|
|
MVPP2_GMAC_AN_DUPLEX_EN;
|
|
|
|
|
|
|
|
if (phylink_autoneg_inband(mode)) {
|
|
|
|
mask |= MVPP2_GMAC_CONFIG_MII_SPEED |
|
|
|
|
MVPP2_GMAC_CONFIG_GMII_SPEED |
|
|
|
|
MVPP2_GMAC_CONFIG_FULL_DUPLEX;
|
|
|
|
val = MVPP2_GMAC_IN_BAND_AUTONEG;
|
|
|
|
|
|
|
|
if (interface == PHY_INTERFACE_MODE_SGMII) {
|
|
|
|
/* SGMII mode receives the speed and duplex from PHY */
|
|
|
|
val |= MVPP2_GMAC_AN_SPEED_EN |
|
|
|
|
MVPP2_GMAC_AN_DUPLEX_EN;
|
|
|
|
} else {
|
|
|
|
/* 802.3z mode has fixed speed and duplex */
|
|
|
|
val |= MVPP2_GMAC_CONFIG_GMII_SPEED |
|
|
|
|
MVPP2_GMAC_CONFIG_FULL_DUPLEX;
|
|
|
|
|
|
|
|
/* The FLOW_CTRL_AUTONEG bit selects either the hardware
|
|
|
|
* automatically or the bits in MVPP22_GMAC_CTRL_4_REG
|
|
|
|
* manually controls the GMAC pause modes.
|
|
|
|
*/
|
|
|
|
if (permit_pause_to_mac)
|
|
|
|
val |= MVPP2_GMAC_FLOW_CTRL_AUTONEG;
|
|
|
|
|
|
|
|
/* Configure advertisement bits */
|
|
|
|
mask |= MVPP2_GMAC_FC_ADV_EN | MVPP2_GMAC_FC_ADV_ASM_EN;
|
|
|
|
if (phylink_test(advertising, Pause))
|
|
|
|
val |= MVPP2_GMAC_FC_ADV_EN;
|
|
|
|
if (phylink_test(advertising, Asym_Pause))
|
|
|
|
val |= MVPP2_GMAC_FC_ADV_ASM_EN;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
val = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
old_an = an = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
|
|
|
|
an = (an & ~mask) | val;
|
|
|
|
changed = an ^ old_an;
|
|
|
|
if (changed)
|
|
|
|
writel(an, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
|
|
|
|
|
|
|
|
/* We are only interested in the advertisement bits changing */
|
|
|
|
return changed & (MVPP2_GMAC_FC_ADV_EN | MVPP2_GMAC_FC_ADV_ASM_EN);
|
|
|
|
}
|
|
|
|
|
2020-09-01 21:48:37 +08:00
|
|
|
static void mvpp2_gmac_pcs_an_restart(struct phylink_pcs *pcs)
|
2020-09-01 21:48:32 +08:00
|
|
|
{
|
|
|
|
struct mvpp2_port *port = mvpp2_pcs_to_port(pcs);
|
|
|
|
u32 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
|
|
|
|
|
|
|
|
writel(val | MVPP2_GMAC_IN_BAND_RESTART_AN,
|
|
|
|
port->base + MVPP2_GMAC_AUTONEG_CONFIG);
|
|
|
|
writel(val & ~MVPP2_GMAC_IN_BAND_RESTART_AN,
|
|
|
|
port->base + MVPP2_GMAC_AUTONEG_CONFIG);
|
|
|
|
}
|
|
|
|
|
2020-09-01 21:48:37 +08:00
|
|
|
static const struct phylink_pcs_ops mvpp2_phylink_gmac_pcs_ops = {
|
|
|
|
.pcs_get_state = mvpp2_gmac_pcs_get_state,
|
|
|
|
.pcs_config = mvpp2_gmac_pcs_config,
|
|
|
|
.pcs_an_restart = mvpp2_gmac_pcs_an_restart,
|
2020-09-01 21:48:32 +08:00
|
|
|
};
|
|
|
|
|
2019-05-29 01:38:12 +08:00
|
|
|
static void mvpp2_phylink_validate(struct phylink_config *config,
|
2018-05-17 16:29:31 +08:00
|
|
|
unsigned long *supported,
|
|
|
|
struct phylink_link_state *state)
|
|
|
|
{
|
2020-06-20 17:21:32 +08:00
|
|
|
struct mvpp2_port *port = mvpp2_phylink_to_port(config);
|
2018-05-17 16:29:31 +08:00
|
|
|
__ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, };
|
|
|
|
|
2018-12-04 22:03:53 +08:00
|
|
|
/* Invalid combinations */
|
|
|
|
switch (state->interface) {
|
2020-01-04 04:43:23 +08:00
|
|
|
case PHY_INTERFACE_MODE_10GBASER:
|
2018-12-04 22:03:53 +08:00
|
|
|
case PHY_INTERFACE_MODE_XAUI:
|
2020-06-20 17:21:26 +08:00
|
|
|
if (!mvpp2_port_supports_xlg(port))
|
2018-12-04 22:03:53 +08:00
|
|
|
goto empty_set;
|
|
|
|
break;
|
|
|
|
case PHY_INTERFACE_MODE_RGMII:
|
|
|
|
case PHY_INTERFACE_MODE_RGMII_ID:
|
|
|
|
case PHY_INTERFACE_MODE_RGMII_RXID:
|
|
|
|
case PHY_INTERFACE_MODE_RGMII_TXID:
|
2020-06-20 17:21:26 +08:00
|
|
|
if (!mvpp2_port_supports_rgmii(port))
|
2018-12-04 22:03:53 +08:00
|
|
|
goto empty_set;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
phylink_set(mask, Autoneg);
|
|
|
|
phylink_set_port_modes(mask);
|
|
|
|
|
2021-02-11 18:48:56 +08:00
|
|
|
if (port->priv->global_tx_fc) {
|
|
|
|
phylink_set(mask, Pause);
|
|
|
|
phylink_set(mask, Asym_Pause);
|
|
|
|
}
|
|
|
|
|
2018-05-17 16:29:34 +08:00
|
|
|
switch (state->interface) {
|
2020-01-04 04:43:23 +08:00
|
|
|
case PHY_INTERFACE_MODE_10GBASER:
|
2018-12-04 22:03:53 +08:00
|
|
|
case PHY_INTERFACE_MODE_XAUI:
|
2018-12-04 22:03:52 +08:00
|
|
|
case PHY_INTERFACE_MODE_NA:
|
2020-06-20 17:21:26 +08:00
|
|
|
if (mvpp2_port_supports_xlg(port)) {
|
2018-12-20 01:00:12 +08:00
|
|
|
phylink_set(mask, 10000baseT_Full);
|
2018-12-12 00:32:28 +08:00
|
|
|
phylink_set(mask, 10000baseCR_Full);
|
|
|
|
phylink_set(mask, 10000baseSR_Full);
|
|
|
|
phylink_set(mask, 10000baseLR_Full);
|
|
|
|
phylink_set(mask, 10000baseLRM_Full);
|
|
|
|
phylink_set(mask, 10000baseER_Full);
|
|
|
|
phylink_set(mask, 10000baseKR_Full);
|
|
|
|
}
|
2019-12-14 02:22:12 +08:00
|
|
|
if (state->interface != PHY_INTERFACE_MODE_NA)
|
|
|
|
break;
|
2020-08-24 06:36:59 +08:00
|
|
|
fallthrough;
|
2018-12-04 22:03:53 +08:00
|
|
|
case PHY_INTERFACE_MODE_RGMII:
|
|
|
|
case PHY_INTERFACE_MODE_RGMII_ID:
|
|
|
|
case PHY_INTERFACE_MODE_RGMII_RXID:
|
|
|
|
case PHY_INTERFACE_MODE_RGMII_TXID:
|
|
|
|
case PHY_INTERFACE_MODE_SGMII:
|
2018-05-17 16:29:34 +08:00
|
|
|
phylink_set(mask, 10baseT_Half);
|
|
|
|
phylink_set(mask, 10baseT_Full);
|
|
|
|
phylink_set(mask, 100baseT_Half);
|
|
|
|
phylink_set(mask, 100baseT_Full);
|
2019-12-14 02:22:12 +08:00
|
|
|
phylink_set(mask, 1000baseT_Full);
|
|
|
|
phylink_set(mask, 1000baseX_Full);
|
|
|
|
if (state->interface != PHY_INTERFACE_MODE_NA)
|
|
|
|
break;
|
2020-08-24 06:36:59 +08:00
|
|
|
fallthrough;
|
2018-05-17 16:29:34 +08:00
|
|
|
case PHY_INTERFACE_MODE_1000BASEX:
|
2018-05-17 16:29:35 +08:00
|
|
|
case PHY_INTERFACE_MODE_2500BASEX:
|
2019-12-14 02:22:12 +08:00
|
|
|
if (port->comphy ||
|
|
|
|
state->interface != PHY_INTERFACE_MODE_2500BASEX) {
|
|
|
|
phylink_set(mask, 1000baseT_Full);
|
|
|
|
phylink_set(mask, 1000baseX_Full);
|
|
|
|
}
|
|
|
|
if (port->comphy ||
|
|
|
|
state->interface == PHY_INTERFACE_MODE_2500BASEX) {
|
|
|
|
phylink_set(mask, 2500baseT_Full);
|
|
|
|
phylink_set(mask, 2500baseX_Full);
|
|
|
|
}
|
2018-12-04 22:03:53 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto empty_set;
|
2018-05-17 16:29:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bitmap_and(supported, supported, mask, __ETHTOOL_LINK_MODE_MASK_NBITS);
|
|
|
|
bitmap_and(state->advertising, state->advertising, mask,
|
|
|
|
__ETHTOOL_LINK_MODE_MASK_NBITS);
|
2019-12-14 02:22:12 +08:00
|
|
|
|
|
|
|
phylink_helper_basex_speed(state);
|
2018-12-04 22:03:53 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
empty_set:
|
|
|
|
bitmap_zero(supported, __ETHTOOL_LINK_MODE_MASK_NBITS);
|
2018-05-17 16:29:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp2_xlg_config(struct mvpp2_port *port, unsigned int mode,
|
|
|
|
const struct phylink_link_state *state)
|
|
|
|
{
|
2020-06-20 17:21:37 +08:00
|
|
|
u32 val;
|
2019-03-01 18:52:14 +08:00
|
|
|
|
2020-06-20 17:21:37 +08:00
|
|
|
mvpp2_modify(port->base + MVPP22_XLG_CTRL0_REG,
|
2020-06-20 17:21:42 +08:00
|
|
|
MVPP22_XLG_CTRL0_MAC_RESET_DIS,
|
|
|
|
MVPP22_XLG_CTRL0_MAC_RESET_DIS);
|
2020-06-20 17:21:37 +08:00
|
|
|
mvpp2_modify(port->base + MVPP22_XLG_CTRL4_REG,
|
|
|
|
MVPP22_XLG_CTRL4_MACMODSELECT_GMAC |
|
|
|
|
MVPP22_XLG_CTRL4_EN_IDLE_CHECK |
|
|
|
|
MVPP22_XLG_CTRL4_FWD_FC | MVPP22_XLG_CTRL4_FWD_PFC,
|
|
|
|
MVPP22_XLG_CTRL4_FWD_FC | MVPP22_XLG_CTRL4_FWD_PFC);
|
|
|
|
|
|
|
|
/* Wait for reset to deassert */
|
|
|
|
do {
|
|
|
|
val = readl(port->base + MVPP22_XLG_CTRL0_REG);
|
|
|
|
} while (!(val & MVPP22_XLG_CTRL0_MAC_RESET_DIS));
|
2018-05-17 16:29:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void mvpp2_gmac_config(struct mvpp2_port *port, unsigned int mode,
|
|
|
|
const struct phylink_link_state *state)
|
|
|
|
{
|
net: marvell: mvpp2: only reprogram what is necessary on mac_config
mac_config() can be called at any point, and the expected behaviour
from MAC drivers is to only reprogram when necessary - and certainly
avoid taking the link down on every call.
Unfortunately, mvpp2 does exactly that - it takes the link down, and
reprograms everything, and then releases the forced-link down.
This is bad, it can cause the link to bounce:
- SFP detects signal, disables LOS indication.
- SFP code calls into phylink, calling phylink_sfp_link_up() which
triggers a resolve.
- phylink_resolve() calls phylink_get_mac_state() and finds the MAC
reporting link up.
- phylink wants to configure the pause mode on the MAC, so calls
phylink_mac_config()
- mvpp2 takes the link down temporarily, generating a MAC link down
event followed by another MAC link event.
- phylink calls mac_link_up() and then processes the MAC link down
event.
- phylink_resolve() gets called again, registers the link down, and
calls mach_link_down() before re-running itself.
- phylink_resolve() starts again at step 3 above. This sequence
repeats.
GMAC versions prior to mvpp2 do not require the link to be taken down
except when certain link properties (eg, switching between SGMII and
1000base-X mode, or enabling/disabling in-band negotiation) are
changed. Implement this for mvpp2.
Tested-by: Sven Auhagen <sven.auhagen@voleatech.de>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-02-08 23:35:49 +08:00
|
|
|
u32 old_ctrl0, ctrl0;
|
|
|
|
u32 old_ctrl2, ctrl2;
|
|
|
|
u32 old_ctrl4, ctrl4;
|
2018-05-17 16:29:31 +08:00
|
|
|
|
net: marvell: mvpp2: only reprogram what is necessary on mac_config
mac_config() can be called at any point, and the expected behaviour
from MAC drivers is to only reprogram when necessary - and certainly
avoid taking the link down on every call.
Unfortunately, mvpp2 does exactly that - it takes the link down, and
reprograms everything, and then releases the forced-link down.
This is bad, it can cause the link to bounce:
- SFP detects signal, disables LOS indication.
- SFP code calls into phylink, calling phylink_sfp_link_up() which
triggers a resolve.
- phylink_resolve() calls phylink_get_mac_state() and finds the MAC
reporting link up.
- phylink wants to configure the pause mode on the MAC, so calls
phylink_mac_config()
- mvpp2 takes the link down temporarily, generating a MAC link down
event followed by another MAC link event.
- phylink calls mac_link_up() and then processes the MAC link down
event.
- phylink_resolve() gets called again, registers the link down, and
calls mach_link_down() before re-running itself.
- phylink_resolve() starts again at step 3 above. This sequence
repeats.
GMAC versions prior to mvpp2 do not require the link to be taken down
except when certain link properties (eg, switching between SGMII and
1000base-X mode, or enabling/disabling in-band negotiation) are
changed. Implement this for mvpp2.
Tested-by: Sven Auhagen <sven.auhagen@voleatech.de>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-02-08 23:35:49 +08:00
|
|
|
old_ctrl0 = ctrl0 = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
|
|
|
|
old_ctrl2 = ctrl2 = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
|
|
|
|
old_ctrl4 = ctrl4 = readl(port->base + MVPP22_GMAC_CTRL_4_REG);
|
2018-05-17 16:29:31 +08:00
|
|
|
|
|
|
|
ctrl0 &= ~MVPP2_GMAC_PORT_TYPE_MASK;
|
2021-02-11 18:49:01 +08:00
|
|
|
ctrl2 &= ~(MVPP2_GMAC_INBAND_AN_MASK | MVPP2_GMAC_PCS_ENABLE_MASK | MVPP2_GMAC_FLOW_CTRL_MASK);
|
2018-05-17 16:29:31 +08:00
|
|
|
|
net: marvell: mvpp2: phylink compliance updates
Sven Auhagen reported issues with negotiation on a couple of his
platforms using a mixture of SFP and PHYs in various different
modes. Debugging to root cause proved difficult, but essentially
the problem comes down to the mvpp2 phylink implementation being
slightly at odds with what is expected.
phylink operates in three modes: phy, fixed-link, and in-band mode.
In the first two modes, the expected behaviour from a MAC driver is
that phylink resolves the operating mode and passes the mode to the
MAC driver for it to program, including when the link should be
brought up or taken down. This is basically the same as the libphy
approach. This does not negate the requirement to advertise a correct
control word for interface modes that have control words where that
can be reasonably controlled.
The second mode is in-band mode, where the MAC is expected to use the
in-band control word to determine the operating mode.
The mvneta driver implements the correct pattern required to support
this: configure the port interface type separately from the in-band
mode(s). This is now specified in the phylink documentation patches.
mvpp2 was programming in-band mode for SGMII and the 802.3z modes no
what, and avoided forcing the link up in fixed/phy modes. This caused
a problem with some boards where the PHY is by default programmed to
enter AN bypass mode, the PHY would report that the link was up, but
the mvpp2 never completed the exchange of control word.
Another issue that mvpp2 has is it sets SGMII AN format control word
for both SGMII and 802.3z modes. The format of the control word is
defined by MVPP2_GMAC_INBAND_AN_MASK, which should be set for SGMII
and clear for 802.3z. Available Marvell documentation for earlier
GMAC implementations does not make this clear, but this has been
ascertained via extensive testing on earlier GMAC implementations,
and then confirmed with a Macchiatobin Single Shot connected to a
Clearfog: when MVPP2_GMAC_INBAND_AN_MASK is set, the clearfog does
not receive the advertised pause mode settings.
Lastly, there is no flow control in the in-band control word in Cisco
SGMII, setting the flow control autonegotiation bit even with a PHY
that has the Marvell extension to send this information does not result
in the flow control being enabled at the MAC. We need to do this
manually using the information provided via phylink.
Re-code mvpp2's mac_config() and mac_link_up() to follow this pattern.
This allows Sven Auhagen's board and Macchiatobin to reliably bring
the link up with the 88e1512 PHY with phylink operating in PHY mode
with COMPHY built as a module but the rest of the networking built-in,
and u-boot having brought up the interface. in-band mode requires an
additional patch to resolve another problem.
Tested-by: Sven Auhagen <sven.auhagen@voleatech.de>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-02-08 23:35:38 +08:00
|
|
|
/* Configure port type */
|
2019-02-05 07:35:54 +08:00
|
|
|
if (phy_interface_mode_is_8023z(state->interface)) {
|
net: marvell: mvpp2: phylink compliance updates
Sven Auhagen reported issues with negotiation on a couple of his
platforms using a mixture of SFP and PHYs in various different
modes. Debugging to root cause proved difficult, but essentially
the problem comes down to the mvpp2 phylink implementation being
slightly at odds with what is expected.
phylink operates in three modes: phy, fixed-link, and in-band mode.
In the first two modes, the expected behaviour from a MAC driver is
that phylink resolves the operating mode and passes the mode to the
MAC driver for it to program, including when the link should be
brought up or taken down. This is basically the same as the libphy
approach. This does not negate the requirement to advertise a correct
control word for interface modes that have control words where that
can be reasonably controlled.
The second mode is in-band mode, where the MAC is expected to use the
in-band control word to determine the operating mode.
The mvneta driver implements the correct pattern required to support
this: configure the port interface type separately from the in-band
mode(s). This is now specified in the phylink documentation patches.
mvpp2 was programming in-band mode for SGMII and the 802.3z modes no
what, and avoided forcing the link up in fixed/phy modes. This caused
a problem with some boards where the PHY is by default programmed to
enter AN bypass mode, the PHY would report that the link was up, but
the mvpp2 never completed the exchange of control word.
Another issue that mvpp2 has is it sets SGMII AN format control word
for both SGMII and 802.3z modes. The format of the control word is
defined by MVPP2_GMAC_INBAND_AN_MASK, which should be set for SGMII
and clear for 802.3z. Available Marvell documentation for earlier
GMAC implementations does not make this clear, but this has been
ascertained via extensive testing on earlier GMAC implementations,
and then confirmed with a Macchiatobin Single Shot connected to a
Clearfog: when MVPP2_GMAC_INBAND_AN_MASK is set, the clearfog does
not receive the advertised pause mode settings.
Lastly, there is no flow control in the in-band control word in Cisco
SGMII, setting the flow control autonegotiation bit even with a PHY
that has the Marvell extension to send this information does not result
in the flow control being enabled at the MAC. We need to do this
manually using the information provided via phylink.
Re-code mvpp2's mac_config() and mac_link_up() to follow this pattern.
This allows Sven Auhagen's board and Macchiatobin to reliably bring
the link up with the 88e1512 PHY with phylink operating in PHY mode
with COMPHY built as a module but the rest of the networking built-in,
and u-boot having brought up the interface. in-band mode requires an
additional patch to resolve another problem.
Tested-by: Sven Auhagen <sven.auhagen@voleatech.de>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-02-08 23:35:38 +08:00
|
|
|
ctrl2 |= MVPP2_GMAC_PCS_ENABLE_MASK;
|
|
|
|
ctrl4 &= ~MVPP22_CTRL4_EXT_PIN_GMII_SEL;
|
|
|
|
ctrl4 |= MVPP22_CTRL4_SYNC_BYPASS_DIS |
|
|
|
|
MVPP22_CTRL4_DP_CLK_SEL |
|
|
|
|
MVPP22_CTRL4_QSGMII_BYPASS_ACTIVE;
|
|
|
|
} else if (state->interface == PHY_INTERFACE_MODE_SGMII) {
|
|
|
|
ctrl2 |= MVPP2_GMAC_PCS_ENABLE_MASK | MVPP2_GMAC_INBAND_AN_MASK;
|
|
|
|
ctrl4 &= ~MVPP22_CTRL4_EXT_PIN_GMII_SEL;
|
|
|
|
ctrl4 |= MVPP22_CTRL4_SYNC_BYPASS_DIS |
|
|
|
|
MVPP22_CTRL4_DP_CLK_SEL |
|
|
|
|
MVPP22_CTRL4_QSGMII_BYPASS_ACTIVE;
|
|
|
|
} else if (phy_interface_mode_is_rgmii(state->interface)) {
|
|
|
|
ctrl4 &= ~MVPP22_CTRL4_DP_CLK_SEL;
|
|
|
|
ctrl4 |= MVPP22_CTRL4_EXT_PIN_GMII_SEL |
|
|
|
|
MVPP22_CTRL4_SYNC_BYPASS_DIS |
|
|
|
|
MVPP22_CTRL4_QSGMII_BYPASS_ACTIVE;
|
2018-05-17 16:29:34 +08:00
|
|
|
}
|
2018-05-17 16:29:31 +08:00
|
|
|
|
net: marvell: mvpp2: phylink compliance updates
Sven Auhagen reported issues with negotiation on a couple of his
platforms using a mixture of SFP and PHYs in various different
modes. Debugging to root cause proved difficult, but essentially
the problem comes down to the mvpp2 phylink implementation being
slightly at odds with what is expected.
phylink operates in three modes: phy, fixed-link, and in-band mode.
In the first two modes, the expected behaviour from a MAC driver is
that phylink resolves the operating mode and passes the mode to the
MAC driver for it to program, including when the link should be
brought up or taken down. This is basically the same as the libphy
approach. This does not negate the requirement to advertise a correct
control word for interface modes that have control words where that
can be reasonably controlled.
The second mode is in-band mode, where the MAC is expected to use the
in-band control word to determine the operating mode.
The mvneta driver implements the correct pattern required to support
this: configure the port interface type separately from the in-band
mode(s). This is now specified in the phylink documentation patches.
mvpp2 was programming in-band mode for SGMII and the 802.3z modes no
what, and avoided forcing the link up in fixed/phy modes. This caused
a problem with some boards where the PHY is by default programmed to
enter AN bypass mode, the PHY would report that the link was up, but
the mvpp2 never completed the exchange of control word.
Another issue that mvpp2 has is it sets SGMII AN format control word
for both SGMII and 802.3z modes. The format of the control word is
defined by MVPP2_GMAC_INBAND_AN_MASK, which should be set for SGMII
and clear for 802.3z. Available Marvell documentation for earlier
GMAC implementations does not make this clear, but this has been
ascertained via extensive testing on earlier GMAC implementations,
and then confirmed with a Macchiatobin Single Shot connected to a
Clearfog: when MVPP2_GMAC_INBAND_AN_MASK is set, the clearfog does
not receive the advertised pause mode settings.
Lastly, there is no flow control in the in-band control word in Cisco
SGMII, setting the flow control autonegotiation bit even with a PHY
that has the Marvell extension to send this information does not result
in the flow control being enabled at the MAC. We need to do this
manually using the information provided via phylink.
Re-code mvpp2's mac_config() and mac_link_up() to follow this pattern.
This allows Sven Auhagen's board and Macchiatobin to reliably bring
the link up with the 88e1512 PHY with phylink operating in PHY mode
with COMPHY built as a module but the rest of the networking built-in,
and u-boot having brought up the interface. in-band mode requires an
additional patch to resolve another problem.
Tested-by: Sven Auhagen <sven.auhagen@voleatech.de>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-02-08 23:35:38 +08:00
|
|
|
/* Configure negotiation style */
|
|
|
|
if (!phylink_autoneg_inband(mode)) {
|
2020-02-26 18:24:17 +08:00
|
|
|
/* Phy or fixed speed - no in-band AN, nothing to do, leave the
|
|
|
|
* configured speed, duplex and flow control as-is.
|
|
|
|
*/
|
net: marvell: mvpp2: phylink compliance updates
Sven Auhagen reported issues with negotiation on a couple of his
platforms using a mixture of SFP and PHYs in various different
modes. Debugging to root cause proved difficult, but essentially
the problem comes down to the mvpp2 phylink implementation being
slightly at odds with what is expected.
phylink operates in three modes: phy, fixed-link, and in-band mode.
In the first two modes, the expected behaviour from a MAC driver is
that phylink resolves the operating mode and passes the mode to the
MAC driver for it to program, including when the link should be
brought up or taken down. This is basically the same as the libphy
approach. This does not negate the requirement to advertise a correct
control word for interface modes that have control words where that
can be reasonably controlled.
The second mode is in-band mode, where the MAC is expected to use the
in-band control word to determine the operating mode.
The mvneta driver implements the correct pattern required to support
this: configure the port interface type separately from the in-band
mode(s). This is now specified in the phylink documentation patches.
mvpp2 was programming in-band mode for SGMII and the 802.3z modes no
what, and avoided forcing the link up in fixed/phy modes. This caused
a problem with some boards where the PHY is by default programmed to
enter AN bypass mode, the PHY would report that the link was up, but
the mvpp2 never completed the exchange of control word.
Another issue that mvpp2 has is it sets SGMII AN format control word
for both SGMII and 802.3z modes. The format of the control word is
defined by MVPP2_GMAC_INBAND_AN_MASK, which should be set for SGMII
and clear for 802.3z. Available Marvell documentation for earlier
GMAC implementations does not make this clear, but this has been
ascertained via extensive testing on earlier GMAC implementations,
and then confirmed with a Macchiatobin Single Shot connected to a
Clearfog: when MVPP2_GMAC_INBAND_AN_MASK is set, the clearfog does
not receive the advertised pause mode settings.
Lastly, there is no flow control in the in-band control word in Cisco
SGMII, setting the flow control autonegotiation bit even with a PHY
that has the Marvell extension to send this information does not result
in the flow control being enabled at the MAC. We need to do this
manually using the information provided via phylink.
Re-code mvpp2's mac_config() and mac_link_up() to follow this pattern.
This allows Sven Auhagen's board and Macchiatobin to reliably bring
the link up with the 88e1512 PHY with phylink operating in PHY mode
with COMPHY built as a module but the rest of the networking built-in,
and u-boot having brought up the interface. in-band mode requires an
additional patch to resolve another problem.
Tested-by: Sven Auhagen <sven.auhagen@voleatech.de>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-02-08 23:35:38 +08:00
|
|
|
} else if (state->interface == PHY_INTERFACE_MODE_SGMII) {
|
|
|
|
/* SGMII in-band mode receives the speed and duplex from
|
|
|
|
* the PHY. Flow control information is not received. */
|
|
|
|
} else if (phy_interface_mode_is_8023z(state->interface)) {
|
|
|
|
/* 1000BaseX and 2500BaseX ports cannot negotiate speed nor can
|
|
|
|
* they negotiate duplex: they are always operating with a fixed
|
|
|
|
* speed of 1000/2500Mbps in full duplex, so force 1000/2500
|
|
|
|
* speed and full duplex here.
|
|
|
|
*/
|
|
|
|
ctrl0 |= MVPP2_GMAC_PORT_TYPE_MASK;
|
2018-05-17 16:29:31 +08:00
|
|
|
}
|
|
|
|
|
net: marvell: mvpp2: only reprogram what is necessary on mac_config
mac_config() can be called at any point, and the expected behaviour
from MAC drivers is to only reprogram when necessary - and certainly
avoid taking the link down on every call.
Unfortunately, mvpp2 does exactly that - it takes the link down, and
reprograms everything, and then releases the forced-link down.
This is bad, it can cause the link to bounce:
- SFP detects signal, disables LOS indication.
- SFP code calls into phylink, calling phylink_sfp_link_up() which
triggers a resolve.
- phylink_resolve() calls phylink_get_mac_state() and finds the MAC
reporting link up.
- phylink wants to configure the pause mode on the MAC, so calls
phylink_mac_config()
- mvpp2 takes the link down temporarily, generating a MAC link down
event followed by another MAC link event.
- phylink calls mac_link_up() and then processes the MAC link down
event.
- phylink_resolve() gets called again, registers the link down, and
calls mach_link_down() before re-running itself.
- phylink_resolve() starts again at step 3 above. This sequence
repeats.
GMAC versions prior to mvpp2 do not require the link to be taken down
except when certain link properties (eg, switching between SGMII and
1000base-X mode, or enabling/disabling in-band negotiation) are
changed. Implement this for mvpp2.
Tested-by: Sven Auhagen <sven.auhagen@voleatech.de>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-02-08 23:35:49 +08:00
|
|
|
if (old_ctrl0 != ctrl0)
|
|
|
|
writel(ctrl0, port->base + MVPP2_GMAC_CTRL_0_REG);
|
|
|
|
if (old_ctrl2 != ctrl2)
|
|
|
|
writel(ctrl2, port->base + MVPP2_GMAC_CTRL_2_REG);
|
|
|
|
if (old_ctrl4 != ctrl4)
|
|
|
|
writel(ctrl4, port->base + MVPP22_GMAC_CTRL_4_REG);
|
2018-05-17 16:29:31 +08:00
|
|
|
}
|
|
|
|
|
2020-09-01 21:48:37 +08:00
|
|
|
static int mvpp2__mac_prepare(struct phylink_config *config, unsigned int mode,
|
|
|
|
phy_interface_t interface)
|
2018-05-17 16:29:31 +08:00
|
|
|
{
|
2020-06-20 17:21:32 +08:00
|
|
|
struct mvpp2_port *port = mvpp2_phylink_to_port(config);
|
2018-05-17 16:29:31 +08:00
|
|
|
|
|
|
|
/* Check for invalid configuration */
|
2020-09-01 21:48:17 +08:00
|
|
|
if (mvpp2_is_xlg(interface) && port->gop_id != 0) {
|
2020-06-20 17:21:32 +08:00
|
|
|
netdev_err(port->dev, "Invalid mode on %s\n", port->dev->name);
|
2020-09-01 21:48:17 +08:00
|
|
|
return -EINVAL;
|
2018-05-17 16:29:31 +08:00
|
|
|
}
|
|
|
|
|
2020-09-01 21:48:22 +08:00
|
|
|
if (port->phy_interface != interface ||
|
|
|
|
phylink_autoneg_inband(mode)) {
|
|
|
|
/* Force the link down when changing the interface or if in
|
|
|
|
* in-band mode to ensure we do not change the configuration
|
|
|
|
* while the hardware is indicating link is up. We force both
|
|
|
|
* XLG and GMAC down to ensure that they're both in a known
|
|
|
|
* state.
|
|
|
|
*/
|
|
|
|
mvpp2_modify(port->base + MVPP2_GMAC_AUTONEG_CONFIG,
|
|
|
|
MVPP2_GMAC_FORCE_LINK_PASS |
|
|
|
|
MVPP2_GMAC_FORCE_LINK_DOWN,
|
|
|
|
MVPP2_GMAC_FORCE_LINK_DOWN);
|
|
|
|
|
|
|
|
if (mvpp2_port_supports_xlg(port))
|
|
|
|
mvpp2_modify(port->base + MVPP22_XLG_CTRL0_REG,
|
|
|
|
MVPP22_XLG_CTRL0_FORCE_LINK_PASS |
|
|
|
|
MVPP22_XLG_CTRL0_FORCE_LINK_DOWN,
|
|
|
|
MVPP22_XLG_CTRL0_FORCE_LINK_DOWN);
|
|
|
|
}
|
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
/* Make sure the port is disabled when reconfiguring the mode */
|
|
|
|
mvpp2_port_disable(port);
|
2019-03-01 18:52:13 +08:00
|
|
|
|
2020-09-01 21:48:27 +08:00
|
|
|
if (port->phy_interface != interface) {
|
|
|
|
/* Place GMAC into reset */
|
|
|
|
mvpp2_modify(port->base + MVPP2_GMAC_CTRL_2_REG,
|
|
|
|
MVPP2_GMAC_PORT_RESET_MASK,
|
|
|
|
MVPP2_GMAC_PORT_RESET_MASK);
|
|
|
|
|
2021-02-14 21:38:35 +08:00
|
|
|
if (port->priv->hw_version >= MVPP22) {
|
2020-09-01 21:48:27 +08:00
|
|
|
mvpp22_gop_mask_irq(port);
|
2018-05-17 16:29:31 +08:00
|
|
|
|
2020-09-01 21:48:27 +08:00
|
|
|
phy_power_off(port->comphy);
|
|
|
|
}
|
2018-05-17 16:29:31 +08:00
|
|
|
}
|
|
|
|
|
2020-09-01 21:48:37 +08:00
|
|
|
/* Select the appropriate PCS operations depending on the
|
|
|
|
* configured interface mode. We will only switch to a mode
|
|
|
|
* that the validate() checks have already passed.
|
|
|
|
*/
|
|
|
|
if (mvpp2_is_xlg(interface))
|
|
|
|
port->phylink_pcs.ops = &mvpp2_phylink_xlg_pcs_ops;
|
|
|
|
else
|
|
|
|
port->phylink_pcs.ops = &mvpp2_phylink_gmac_pcs_ops;
|
|
|
|
|
2020-09-01 21:48:17 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-09-01 21:48:37 +08:00
|
|
|
static int mvpp2_mac_prepare(struct phylink_config *config, unsigned int mode,
|
|
|
|
phy_interface_t interface)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = mvpp2_phylink_to_port(config);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = mvpp2__mac_prepare(config, mode, interface);
|
|
|
|
if (ret == 0)
|
|
|
|
phylink_set_pcs(port->phylink, &port->phylink_pcs);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2020-09-01 21:48:17 +08:00
|
|
|
static void mvpp2_mac_config(struct phylink_config *config, unsigned int mode,
|
|
|
|
const struct phylink_link_state *state)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = mvpp2_phylink_to_port(config);
|
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
/* mac (re)configuration */
|
2019-02-11 18:23:15 +08:00
|
|
|
if (mvpp2_is_xlg(state->interface))
|
2018-05-17 16:29:31 +08:00
|
|
|
mvpp2_xlg_config(port, mode, state);
|
|
|
|
else if (phy_interface_mode_is_rgmii(state->interface) ||
|
2019-02-05 07:35:54 +08:00
|
|
|
phy_interface_mode_is_8023z(state->interface) ||
|
|
|
|
state->interface == PHY_INTERFACE_MODE_SGMII)
|
2018-05-17 16:29:31 +08:00
|
|
|
mvpp2_gmac_config(port, mode, state);
|
|
|
|
|
|
|
|
if (port->priv->hw_version == MVPP21 && port->flags & MVPP2_F_LOOPBACK)
|
|
|
|
mvpp2_port_loopback_set(port, state);
|
2020-09-01 21:48:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_mac_finish(struct phylink_config *config, unsigned int mode,
|
|
|
|
phy_interface_t interface)
|
|
|
|
{
|
|
|
|
struct mvpp2_port *port = mvpp2_phylink_to_port(config);
|
|
|
|
|
2021-02-14 21:38:35 +08:00
|
|
|
if (port->priv->hw_version >= MVPP22 &&
|
2020-09-01 21:48:17 +08:00
|
|
|
port->phy_interface != interface) {
|
|
|
|
port->phy_interface = interface;
|
2018-05-17 16:29:31 +08:00
|
|
|
|
2020-09-01 21:48:17 +08:00
|
|
|
/* Reconfigure the serdes lanes */
|
|
|
|
mvpp22_mode_reconfigure(port);
|
|
|
|
|
|
|
|
/* Unmask interrupts */
|
net: marvell: mvpp2: fix lack of link interrupts
Sven Auhagen reports that if he changes a SFP+ module for a SFP module
on the Macchiatobin Single Shot, the link does not come back up. For
Sven, it is as easy as:
- Insert a SFP+ module connected, and use ping6 to verify link is up.
- Remove SFP+ module
- Insert SFP 1000base-X module use ping6 to verify link is up: Link
up event did not trigger and the link is down
but that doesn't show the problem for me. Locally, this has been
reproduced by:
- Boot with no modules.
- Insert SFP+ module, confirm link is up.
- Replace module with 25000base-X module. Confirm link is up.
- Set remote end down, link is reported as dropped at both ends.
- Set remote end up, link is reported up at remote end, but not local
end due to lack of link interrupt.
Fix this by setting up both GMAC and XLG interrupts for port 0, but
only unmasking the appropriate interrupt according to the current mode
set in the mac_config() method. However, only do the mask/unmask
dance when we are really changing the link mode to avoid missing any
link interrupts.
Tested-by: Sven Auhagen <sven.auhagen@voleatech.de>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-02-05 07:35:59 +08:00
|
|
|
mvpp22_gop_unmask_irq(port);
|
2020-09-01 21:48:17 +08:00
|
|
|
}
|
net: marvell: mvpp2: fix lack of link interrupts
Sven Auhagen reports that if he changes a SFP+ module for a SFP module
on the Macchiatobin Single Shot, the link does not come back up. For
Sven, it is as easy as:
- Insert a SFP+ module connected, and use ping6 to verify link is up.
- Remove SFP+ module
- Insert SFP 1000base-X module use ping6 to verify link is up: Link
up event did not trigger and the link is down
but that doesn't show the problem for me. Locally, this has been
reproduced by:
- Boot with no modules.
- Insert SFP+ module, confirm link is up.
- Replace module with 25000base-X module. Confirm link is up.
- Set remote end down, link is reported as dropped at both ends.
- Set remote end up, link is reported up at remote end, but not local
end due to lack of link interrupt.
Fix this by setting up both GMAC and XLG interrupts for port 0, but
only unmasking the appropriate interrupt according to the current mode
set in the mac_config() method. However, only do the mask/unmask
dance when we are really changing the link mode to avoid missing any
link interrupts.
Tested-by: Sven Auhagen <sven.auhagen@voleatech.de>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-02-05 07:35:59 +08:00
|
|
|
|
2020-09-01 21:48:27 +08:00
|
|
|
if (!mvpp2_is_xlg(interface)) {
|
|
|
|
/* Release GMAC reset and wait */
|
|
|
|
mvpp2_modify(port->base + MVPP2_GMAC_CTRL_2_REG,
|
|
|
|
MVPP2_GMAC_PORT_RESET_MASK, 0);
|
|
|
|
|
|
|
|
while (readl(port->base + MVPP2_GMAC_CTRL_2_REG) &
|
|
|
|
MVPP2_GMAC_PORT_RESET_MASK)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-09-14 22:56:35 +08:00
|
|
|
mvpp2_port_enable(port);
|
2020-09-01 21:48:17 +08:00
|
|
|
|
2020-09-01 21:48:22 +08:00
|
|
|
/* Allow the link to come up if in in-band mode, otherwise the
|
|
|
|
* link is forced via mac_link_down()/mac_link_up()
|
|
|
|
*/
|
|
|
|
if (phylink_autoneg_inband(mode)) {
|
|
|
|
if (mvpp2_is_xlg(interface))
|
|
|
|
mvpp2_modify(port->base + MVPP22_XLG_CTRL0_REG,
|
|
|
|
MVPP22_XLG_CTRL0_FORCE_LINK_PASS |
|
|
|
|
MVPP22_XLG_CTRL0_FORCE_LINK_DOWN, 0);
|
|
|
|
else
|
|
|
|
mvpp2_modify(port->base + MVPP2_GMAC_AUTONEG_CONFIG,
|
|
|
|
MVPP2_GMAC_FORCE_LINK_PASS |
|
|
|
|
MVPP2_GMAC_FORCE_LINK_DOWN, 0);
|
|
|
|
}
|
|
|
|
|
2020-09-01 21:48:17 +08:00
|
|
|
return 0;
|
2018-05-17 16:29:31 +08:00
|
|
|
}
|
|
|
|
|
2020-02-26 18:23:41 +08:00
|
|
|
static void mvpp2_mac_link_up(struct phylink_config *config,
|
|
|
|
struct phy_device *phy,
|
|
|
|
unsigned int mode, phy_interface_t interface,
|
|
|
|
int speed, int duplex,
|
|
|
|
bool tx_pause, bool rx_pause)
|
2018-05-17 16:29:31 +08:00
|
|
|
{
|
2020-06-20 17:21:32 +08:00
|
|
|
struct mvpp2_port *port = mvpp2_phylink_to_port(config);
|
2018-05-17 16:29:31 +08:00
|
|
|
u32 val;
|
2021-02-11 18:48:58 +08:00
|
|
|
int i;
|
2018-05-17 16:29:31 +08:00
|
|
|
|
2020-02-26 18:24:17 +08:00
|
|
|
if (mvpp2_is_xlg(interface)) {
|
|
|
|
if (!phylink_autoneg_inband(mode)) {
|
2020-06-20 17:21:42 +08:00
|
|
|
val = MVPP22_XLG_CTRL0_FORCE_LINK_PASS;
|
|
|
|
if (tx_pause)
|
|
|
|
val |= MVPP22_XLG_CTRL0_TX_FLOW_CTRL_EN;
|
|
|
|
if (rx_pause)
|
|
|
|
val |= MVPP22_XLG_CTRL0_RX_FLOW_CTRL_EN;
|
|
|
|
|
2020-06-20 17:21:37 +08:00
|
|
|
mvpp2_modify(port->base + MVPP22_XLG_CTRL0_REG,
|
|
|
|
MVPP22_XLG_CTRL0_FORCE_LINK_DOWN |
|
2020-06-20 17:21:42 +08:00
|
|
|
MVPP22_XLG_CTRL0_FORCE_LINK_PASS |
|
|
|
|
MVPP22_XLG_CTRL0_TX_FLOW_CTRL_EN |
|
|
|
|
MVPP22_XLG_CTRL0_RX_FLOW_CTRL_EN, val);
|
2020-02-26 18:24:17 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!phylink_autoneg_inband(mode)) {
|
2020-06-20 17:21:37 +08:00
|
|
|
val = MVPP2_GMAC_FORCE_LINK_PASS;
|
2020-02-26 18:24:17 +08:00
|
|
|
|
|
|
|
if (speed == SPEED_1000 || speed == SPEED_2500)
|
|
|
|
val |= MVPP2_GMAC_CONFIG_GMII_SPEED;
|
|
|
|
else if (speed == SPEED_100)
|
|
|
|
val |= MVPP2_GMAC_CONFIG_MII_SPEED;
|
|
|
|
|
|
|
|
if (duplex == DUPLEX_FULL)
|
|
|
|
val |= MVPP2_GMAC_CONFIG_FULL_DUPLEX;
|
|
|
|
|
2020-06-20 17:21:37 +08:00
|
|
|
mvpp2_modify(port->base + MVPP2_GMAC_AUTONEG_CONFIG,
|
|
|
|
MVPP2_GMAC_FORCE_LINK_DOWN |
|
|
|
|
MVPP2_GMAC_FORCE_LINK_PASS |
|
|
|
|
MVPP2_GMAC_CONFIG_MII_SPEED |
|
|
|
|
MVPP2_GMAC_CONFIG_GMII_SPEED |
|
|
|
|
MVPP2_GMAC_CONFIG_FULL_DUPLEX, val);
|
2019-03-01 18:52:13 +08:00
|
|
|
}
|
2020-02-26 18:24:17 +08:00
|
|
|
|
|
|
|
/* We can always update the flow control enable bits;
|
|
|
|
* these will only be effective if flow control AN
|
|
|
|
* (MVPP2_GMAC_FLOW_CTRL_AUTONEG) is disabled.
|
|
|
|
*/
|
2020-06-20 17:21:37 +08:00
|
|
|
val = 0;
|
2020-02-26 18:24:17 +08:00
|
|
|
if (tx_pause)
|
|
|
|
val |= MVPP22_CTRL4_TX_FC_EN;
|
|
|
|
if (rx_pause)
|
|
|
|
val |= MVPP22_CTRL4_RX_FC_EN;
|
2020-06-20 17:21:37 +08:00
|
|
|
|
|
|
|
mvpp2_modify(port->base + MVPP22_GMAC_CTRL_4_REG,
|
|
|
|
MVPP22_CTRL4_RX_FC_EN | MVPP22_CTRL4_TX_FC_EN,
|
|
|
|
val);
|
2018-05-17 16:29:31 +08:00
|
|
|
}
|
|
|
|
|
2021-02-11 18:48:58 +08:00
|
|
|
if (port->priv->global_tx_fc) {
|
|
|
|
port->tx_fc = tx_pause;
|
|
|
|
if (tx_pause)
|
|
|
|
mvpp2_rxq_enable_fc(port);
|
|
|
|
else
|
|
|
|
mvpp2_rxq_disable_fc(port);
|
|
|
|
if (port->priv->percpu_pools) {
|
|
|
|
for (i = 0; i < port->nrxqs; i++)
|
|
|
|
mvpp2_bm_pool_update_fc(port, &port->priv->bm_pools[i], tx_pause);
|
|
|
|
} else {
|
|
|
|
mvpp2_bm_pool_update_fc(port, port->pool_long, tx_pause);
|
|
|
|
mvpp2_bm_pool_update_fc(port, port->pool_short, tx_pause);
|
|
|
|
}
|
2021-02-11 18:49:00 +08:00
|
|
|
if (port->priv->hw_version == MVPP23)
|
|
|
|
mvpp23_rx_fifo_fc_en(port->priv, port->id, tx_pause);
|
2021-02-11 18:48:58 +08:00
|
|
|
}
|
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
mvpp2_port_enable(port);
|
|
|
|
|
|
|
|
mvpp2_egress_enable(port);
|
|
|
|
mvpp2_ingress_enable(port);
|
2020-06-20 17:21:32 +08:00
|
|
|
netif_tx_wake_all_queues(port->dev);
|
2018-05-17 16:29:31 +08:00
|
|
|
}
|
|
|
|
|
2019-05-29 01:38:12 +08:00
|
|
|
static void mvpp2_mac_link_down(struct phylink_config *config,
|
|
|
|
unsigned int mode, phy_interface_t interface)
|
2018-05-17 16:29:31 +08:00
|
|
|
{
|
2020-06-20 17:21:32 +08:00
|
|
|
struct mvpp2_port *port = mvpp2_phylink_to_port(config);
|
2018-05-17 16:29:31 +08:00
|
|
|
u32 val;
|
|
|
|
|
2019-03-01 18:52:13 +08:00
|
|
|
if (!phylink_autoneg_inband(mode)) {
|
|
|
|
if (mvpp2_is_xlg(interface)) {
|
|
|
|
val = readl(port->base + MVPP22_XLG_CTRL0_REG);
|
|
|
|
val &= ~MVPP22_XLG_CTRL0_FORCE_LINK_PASS;
|
|
|
|
val |= MVPP22_XLG_CTRL0_FORCE_LINK_DOWN;
|
|
|
|
writel(val, port->base + MVPP22_XLG_CTRL0_REG);
|
|
|
|
} else {
|
|
|
|
val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
|
|
|
|
val &= ~MVPP2_GMAC_FORCE_LINK_PASS;
|
|
|
|
val |= MVPP2_GMAC_FORCE_LINK_DOWN;
|
|
|
|
writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
|
|
|
|
}
|
2018-05-17 16:29:31 +08:00
|
|
|
}
|
|
|
|
|
2020-06-20 17:21:32 +08:00
|
|
|
netif_tx_stop_all_queues(port->dev);
|
2018-05-17 16:29:31 +08:00
|
|
|
mvpp2_egress_disable(port);
|
|
|
|
mvpp2_ingress_disable(port);
|
|
|
|
|
|
|
|
mvpp2_port_disable(port);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct phylink_mac_ops mvpp2_phylink_ops = {
|
|
|
|
.validate = mvpp2_phylink_validate,
|
2020-09-01 21:48:17 +08:00
|
|
|
.mac_prepare = mvpp2_mac_prepare,
|
2018-05-17 16:29:31 +08:00
|
|
|
.mac_config = mvpp2_mac_config,
|
2020-09-01 21:48:17 +08:00
|
|
|
.mac_finish = mvpp2_mac_finish,
|
2018-05-17 16:29:31 +08:00
|
|
|
.mac_link_up = mvpp2_mac_link_up,
|
|
|
|
.mac_link_down = mvpp2_mac_link_down,
|
|
|
|
};
|
|
|
|
|
2020-09-01 21:48:12 +08:00
|
|
|
/* Work-around for ACPI */
|
|
|
|
static void mvpp2_acpi_start(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
/* Phylink isn't used as of now for ACPI, so the MAC has to be
|
|
|
|
* configured manually when the interface is started. This will
|
|
|
|
* be removed as soon as the phylink ACPI support lands in.
|
|
|
|
*/
|
|
|
|
struct phylink_link_state state = {
|
|
|
|
.interface = port->phy_interface,
|
|
|
|
};
|
2020-09-01 21:48:37 +08:00
|
|
|
mvpp2__mac_prepare(&port->phylink_config, MLO_AN_INBAND,
|
|
|
|
port->phy_interface);
|
2020-09-01 21:48:12 +08:00
|
|
|
mvpp2_mac_config(&port->phylink_config, MLO_AN_INBAND, &state);
|
2020-09-01 21:48:37 +08:00
|
|
|
port->phylink_pcs.ops->pcs_config(&port->phylink_pcs, MLO_AN_INBAND,
|
|
|
|
port->phy_interface,
|
|
|
|
state.advertising, false);
|
2020-09-01 21:48:17 +08:00
|
|
|
mvpp2_mac_finish(&port->phylink_config, MLO_AN_INBAND,
|
|
|
|
port->phy_interface);
|
2020-09-01 21:48:12 +08:00
|
|
|
mvpp2_mac_link_up(&port->phylink_config, NULL,
|
|
|
|
MLO_AN_INBAND, port->phy_interface,
|
|
|
|
SPEED_UNKNOWN, DUPLEX_UNKNOWN, false, false);
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Ports initialization */
|
|
|
|
static int mvpp2_port_probe(struct platform_device *pdev,
|
2018-01-18 20:31:43 +08:00
|
|
|
struct fwnode_handle *port_fwnode,
|
2018-01-18 20:31:42 +08:00
|
|
|
struct mvpp2 *priv)
|
2014-07-11 03:52:13 +08:00
|
|
|
{
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
struct phy *comphy = NULL;
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_port *port;
|
2015-08-07 01:00:30 +08:00
|
|
|
struct mvpp2_port_pcpu *port_pcpu;
|
2018-01-18 20:31:43 +08:00
|
|
|
struct device_node *port_node = to_of_node(port_fwnode);
|
2019-03-27 16:44:05 +08:00
|
|
|
netdev_features_t features;
|
2014-07-11 03:52:13 +08:00
|
|
|
struct net_device *dev;
|
2018-05-17 16:29:31 +08:00
|
|
|
struct phylink *phylink;
|
2017-09-02 17:06:47 +08:00
|
|
|
char *mac_from = "";
|
2018-09-19 17:27:09 +08:00
|
|
|
unsigned int ntxqs, nrxqs, thread;
|
2018-09-19 17:27:01 +08:00
|
|
|
unsigned long flags = 0;
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
bool has_tx_irqs;
|
2014-07-11 03:52:13 +08:00
|
|
|
u32 id;
|
|
|
|
int phy_mode;
|
2018-09-19 17:27:05 +08:00
|
|
|
int err, i;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-09-19 17:27:03 +08:00
|
|
|
has_tx_irqs = mvpp2_port_has_irqs(priv, port_node, &flags);
|
|
|
|
if (!has_tx_irqs && queue_mode == MVPP2_QDIST_MULTI_MODE) {
|
|
|
|
dev_err(&pdev->dev,
|
|
|
|
"not enough IRQs to support multi queue mode\n");
|
|
|
|
return -EINVAL;
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
}
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
ntxqs = MVPP2_MAX_TXQ;
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
nrxqs = mvpp2_get_nrxqs(priv);
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
|
|
|
|
dev = alloc_etherdev_mqs(sizeof(*port), ntxqs, nrxqs);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (!dev)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2018-01-18 20:31:43 +08:00
|
|
|
phy_mode = fwnode_get_phy_mode(port_fwnode);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (phy_mode < 0) {
|
|
|
|
dev_err(&pdev->dev, "incorrect phy mode\n");
|
|
|
|
err = phy_mode;
|
|
|
|
goto err_free_netdev;
|
|
|
|
}
|
|
|
|
|
2020-01-04 04:43:23 +08:00
|
|
|
/*
|
|
|
|
* Rewrite 10GBASE-KR to 10GBASE-R for compatibility with existing DT.
|
|
|
|
* Existing usage of 10GBASE-KR is not correct; no backplane
|
|
|
|
* negotiation is done, and this driver does not actually support
|
|
|
|
* 10GBASE-KR.
|
|
|
|
*/
|
|
|
|
if (phy_mode == PHY_INTERFACE_MODE_10GKR)
|
|
|
|
phy_mode = PHY_INTERFACE_MODE_10GBASER;
|
|
|
|
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
if (port_node) {
|
|
|
|
comphy = devm_of_phy_get(&pdev->dev, port_node, NULL);
|
|
|
|
if (IS_ERR(comphy)) {
|
|
|
|
if (PTR_ERR(comphy) == -EPROBE_DEFER) {
|
|
|
|
err = -EPROBE_DEFER;
|
|
|
|
goto err_free_netdev;
|
|
|
|
}
|
|
|
|
comphy = NULL;
|
2017-08-30 16:29:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-18 20:31:43 +08:00
|
|
|
if (fwnode_property_read_u32(port_fwnode, "port-id", &id)) {
|
2014-07-11 03:52:13 +08:00
|
|
|
err = -EINVAL;
|
|
|
|
dev_err(&pdev->dev, "missing port-id value\n");
|
|
|
|
goto err_free_netdev;
|
|
|
|
}
|
|
|
|
|
2017-12-11 16:13:26 +08:00
|
|
|
dev->tx_queue_len = MVPP2_MAX_TXD_MAX;
|
2014-07-11 03:52:13 +08:00
|
|
|
dev->watchdog_timeo = 5 * HZ;
|
|
|
|
dev->netdev_ops = &mvpp2_netdev_ops;
|
|
|
|
dev->ethtool_ops = &mvpp2_eth_tool_ops;
|
|
|
|
|
|
|
|
port = netdev_priv(dev);
|
2017-08-03 16:41:59 +08:00
|
|
|
port->dev = dev;
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
port->fwnode = port_fwnode;
|
2018-05-17 16:29:31 +08:00
|
|
|
port->has_phy = !!of_find_property(port_node, "phy", NULL);
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
port->ntxqs = ntxqs;
|
|
|
|
port->nrxqs = nrxqs;
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
port->priv = priv;
|
|
|
|
port->has_tx_irqs = has_tx_irqs;
|
2018-09-19 17:27:01 +08:00
|
|
|
port->flags = flags;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2017-08-03 16:41:59 +08:00
|
|
|
err = mvpp2_queue_vectors_init(port, port_node);
|
|
|
|
if (err)
|
2014-07-11 03:52:13 +08:00
|
|
|
goto err_free_netdev;
|
|
|
|
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
if (port_node)
|
2020-09-10 00:25:40 +08:00
|
|
|
port->port_irq = of_irq_get_byname(port_node, "link");
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
else
|
2020-09-10 00:25:40 +08:00
|
|
|
port->port_irq = fwnode_irq_get(port_fwnode, port->nqvecs + 1);
|
|
|
|
if (port->port_irq == -EPROBE_DEFER) {
|
2017-09-01 17:04:54 +08:00
|
|
|
err = -EPROBE_DEFER;
|
|
|
|
goto err_deinit_qvecs;
|
|
|
|
}
|
2020-09-10 00:25:40 +08:00
|
|
|
if (port->port_irq <= 0)
|
2017-09-01 17:04:54 +08:00
|
|
|
/* the link irq is optional */
|
2020-09-10 00:25:40 +08:00
|
|
|
port->port_irq = 0;
|
2017-09-01 17:04:54 +08:00
|
|
|
|
2018-01-18 20:31:43 +08:00
|
|
|
if (fwnode_property_read_bool(port_fwnode, "marvell,loopback"))
|
2014-07-11 03:52:13 +08:00
|
|
|
port->flags |= MVPP2_F_LOOPBACK;
|
|
|
|
|
|
|
|
port->id = id;
|
net: mvpp2: adapt rxq distribution to PPv2.2
In PPv2.1, we have a maximum of 8 RXQs per port, with a default of 4
RXQs per port, and we were assigning RXQs 0->3 to the first port, 4->7
to the second port, 8->11 to the third port, etc.
In PPv2.2, we have a maximum of 32 RXQs per port, and we must allocate
RXQs from the range of 32 RXQs available for each port. So port 0 must
use RXQs in the range 0->31, port 1 in the range 32->63, etc.
This commit adapts the mvpp2 to this difference between PPv2.1 and
PPv2.2:
- The constant definition MVPP2_MAX_RXQ is replaced by a new field
'max_port_rxqs' in 'struct mvpp2', which stores the maximum number of
RXQs per port. This field is initialized during ->probe() depending
on the IP version.
- MVPP2_RXQ_TOTAL_NUM is removed, and instead we calculate the total
number of RXQs by multiplying the number of ports by the maximum of
RXQs per port. This was anyway used in only one place.
- In mvpp2_port_probe(), the calculation of port->first_rxq is adjusted
to cope with the different allocation strategy between PPv2.1 and
PPv2.2. Due to this change, the 'next_first_rxq' argument of this
function is no longer needed and is removed.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:17 +08:00
|
|
|
if (priv->hw_version == MVPP21)
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
port->first_rxq = port->id * port->nrxqs;
|
net: mvpp2: adapt rxq distribution to PPv2.2
In PPv2.1, we have a maximum of 8 RXQs per port, with a default of 4
RXQs per port, and we were assigning RXQs 0->3 to the first port, 4->7
to the second port, 8->11 to the third port, etc.
In PPv2.2, we have a maximum of 32 RXQs per port, and we must allocate
RXQs from the range of 32 RXQs available for each port. So port 0 must
use RXQs in the range 0->31, port 1 in the range 32->63, etc.
This commit adapts the mvpp2 to this difference between PPv2.1 and
PPv2.2:
- The constant definition MVPP2_MAX_RXQ is replaced by a new field
'max_port_rxqs' in 'struct mvpp2', which stores the maximum number of
RXQs per port. This field is initialized during ->probe() depending
on the IP version.
- MVPP2_RXQ_TOTAL_NUM is removed, and instead we calculate the total
number of RXQs by multiplying the number of ports by the maximum of
RXQs per port. This was anyway used in only one place.
- In mvpp2_port_probe(), the calculation of port->first_rxq is adjusted
to cope with the different allocation strategy between PPv2.1 and
PPv2.2. Due to this change, the 'next_first_rxq' argument of this
function is no longer needed and is removed.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:17 +08:00
|
|
|
else
|
|
|
|
port->first_rxq = port->id * priv->max_port_rxqs;
|
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
port->of_node = port_node;
|
2014-07-11 03:52:13 +08:00
|
|
|
port->phy_interface = phy_mode;
|
2017-08-30 16:29:15 +08:00
|
|
|
port->comphy = comphy;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
if (priv->hw_version == MVPP21) {
|
2019-08-01 20:22:02 +08:00
|
|
|
port->base = devm_platform_ioremap_resource(pdev, 2 + id);
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
if (IS_ERR(port->base)) {
|
|
|
|
err = PTR_ERR(port->base);
|
2017-09-01 17:04:54 +08:00
|
|
|
goto err_free_irq;
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
}
|
2017-11-07 05:56:53 +08:00
|
|
|
|
|
|
|
port->stats_base = port->priv->lms_base +
|
|
|
|
MVPP21_MIB_COUNTERS_OFFSET +
|
|
|
|
port->gop_id * MVPP21_MIB_COUNTERS_PORT_SZ;
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
} else {
|
2018-01-18 20:31:43 +08:00
|
|
|
if (fwnode_property_read_u32(port_fwnode, "gop-port-id",
|
|
|
|
&port->gop_id)) {
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
err = -EINVAL;
|
|
|
|
dev_err(&pdev->dev, "missing gop-port-id value\n");
|
2017-08-03 16:41:59 +08:00
|
|
|
goto err_deinit_qvecs;
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
port->base = priv->iface_base + MVPP22_GMAC_BASE(port->gop_id);
|
2017-11-07 05:56:53 +08:00
|
|
|
port->stats_base = port->priv->iface_base +
|
|
|
|
MVPP22_MIB_COUNTERS_OFFSET +
|
|
|
|
port->gop_id * MVPP22_MIB_COUNTERS_PORT_SZ;
|
2020-09-10 00:25:55 +08:00
|
|
|
|
|
|
|
/* We may want a property to describe whether we should use
|
|
|
|
* MAC hardware timestamping.
|
|
|
|
*/
|
|
|
|
if (priv->tai)
|
|
|
|
port->hwtstamp = true;
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2017-11-07 05:56:53 +08:00
|
|
|
/* Alloc per-cpu and ethtool stats */
|
2014-07-11 03:52:13 +08:00
|
|
|
port->stats = netdev_alloc_pcpu_stats(struct mvpp2_pcpu_stats);
|
|
|
|
if (!port->stats) {
|
|
|
|
err = -ENOMEM;
|
2017-09-01 17:04:54 +08:00
|
|
|
goto err_free_irq;
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2017-11-07 05:56:53 +08:00
|
|
|
port->ethtool_stats = devm_kcalloc(&pdev->dev,
|
2019-06-10 16:55:29 +08:00
|
|
|
MVPP2_N_ETHTOOL_STATS(ntxqs, nrxqs),
|
2017-11-07 05:56:53 +08:00
|
|
|
sizeof(u64), GFP_KERNEL);
|
|
|
|
if (!port->ethtool_stats) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto err_free_stats;
|
|
|
|
}
|
|
|
|
|
2017-11-08 15:59:40 +08:00
|
|
|
mutex_init(&port->gather_stats_lock);
|
|
|
|
INIT_DELAYED_WORK(&port->stats_work, mvpp2_gather_hw_statistics);
|
|
|
|
|
2018-01-18 20:31:43 +08:00
|
|
|
mvpp2_port_copy_mac_addr(dev, priv, port_fwnode, &mac_from);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2017-12-11 16:13:26 +08:00
|
|
|
port->tx_ring_size = MVPP2_MAX_TXD_DFLT;
|
|
|
|
port->rx_ring_size = MVPP2_MAX_RXD_DFLT;
|
2014-07-11 03:52:13 +08:00
|
|
|
SET_NETDEV_DEV(dev, &pdev->dev);
|
|
|
|
|
|
|
|
err = mvpp2_port_init(port);
|
|
|
|
if (err < 0) {
|
|
|
|
dev_err(&pdev->dev, "failed to init port %d\n", id);
|
|
|
|
goto err_free_stats;
|
|
|
|
}
|
2017-03-07 23:53:14 +08:00
|
|
|
|
|
|
|
mvpp2_port_periodic_xon_disable(port);
|
|
|
|
|
2019-03-01 18:52:14 +08:00
|
|
|
mvpp2_mac_reset_assert(port);
|
2019-03-01 18:52:16 +08:00
|
|
|
mvpp22_pcs_reset_assert(port);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2015-08-07 01:00:30 +08:00
|
|
|
port->pcpu = alloc_percpu(struct mvpp2_port_pcpu);
|
|
|
|
if (!port->pcpu) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto err_free_txq_pcpu;
|
|
|
|
}
|
|
|
|
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
if (!port->has_tx_irqs) {
|
2018-09-19 17:27:10 +08:00
|
|
|
for (thread = 0; thread < priv->nthreads; thread++) {
|
2018-09-19 17:27:09 +08:00
|
|
|
port_pcpu = per_cpu_ptr(port->pcpu, thread);
|
2015-08-07 01:00:30 +08:00
|
|
|
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
hrtimer_init(&port_pcpu->tx_done_timer, CLOCK_MONOTONIC,
|
2019-08-13 16:00:25 +08:00
|
|
|
HRTIMER_MODE_REL_PINNED_SOFT);
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
port_pcpu->tx_done_timer.function = mvpp2_hr_timer_cb;
|
|
|
|
port_pcpu->timer_scheduled = false;
|
2019-08-13 16:00:25 +08:00
|
|
|
port_pcpu->dev = dev;
|
net: mvpp2: add support for TX interrupts and RX queue distribution modes
This commit adds the support for two related features:
- Support for TX interrupts, with one interrupt for each CPU
- Support for different RX queue distribution modes
MVPP2_QDIST_SINGLE_MODE where a single interrupt, shared by all
CPUs, receives the RX events, and MVPP2_QDIST_MULTI_MODE, where the
per-CPU interrupts used for TX events are also used for RX events.
Since additional interrupts are needed, an update to the Device Tree
binding is needed. However, backward compatibility is preserved with
the old Device Tree binding, by gracefully degrading to the original
behavior, with only one RX interrupt, and TX completion being handled
by an hrtimer.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:42:00 +08:00
|
|
|
}
|
2015-08-07 01:00:30 +08:00
|
|
|
}
|
|
|
|
|
2018-03-05 22:16:53 +08:00
|
|
|
features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
|
|
|
|
NETIF_F_TSO;
|
2014-07-11 03:52:13 +08:00
|
|
|
dev->features = features | NETIF_F_RXCSUM;
|
2018-02-28 17:14:13 +08:00
|
|
|
dev->hw_features |= features | NETIF_F_RXCSUM | NETIF_F_GRO |
|
|
|
|
NETIF_F_HW_VLAN_CTAG_FILTER;
|
2018-03-05 22:16:54 +08:00
|
|
|
|
2021-02-18 20:42:03 +08:00
|
|
|
if (mvpp22_rss_is_supported(port)) {
|
2018-07-12 19:54:26 +08:00
|
|
|
dev->hw_features |= NETIF_F_RXHASH;
|
2019-05-13 15:30:33 +08:00
|
|
|
dev->features |= NETIF_F_NTUPLE;
|
|
|
|
}
|
2018-07-12 19:54:26 +08:00
|
|
|
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
if (!port->priv->percpu_pools)
|
|
|
|
mvpp2_set_hw_csum(port, port->pool_long->id);
|
2018-03-05 22:16:54 +08:00
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
dev->vlan_features |= features;
|
2017-10-30 18:23:31 +08:00
|
|
|
dev->gso_max_segs = MVPP2_MAX_TSO_SEGS;
|
2018-03-07 22:18:04 +08:00
|
|
|
dev->priv_flags |= IFF_UNICAST_FLT;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2018-03-05 22:16:54 +08:00
|
|
|
/* MTU range: 68 - 9704 */
|
2016-10-18 03:54:06 +08:00
|
|
|
dev->min_mtu = ETH_MIN_MTU;
|
2018-03-05 22:16:54 +08:00
|
|
|
/* 9704 == 9728 - 20 and rounding to 8 */
|
|
|
|
dev->max_mtu = MVPP2_BM_JUMBO_PKT_SIZE;
|
2018-08-29 14:44:39 +08:00
|
|
|
dev->dev.of_node = port_node;
|
2016-10-18 03:54:06 +08:00
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
/* Phylink isn't used w/ ACPI as of now */
|
|
|
|
if (port_node) {
|
2019-05-29 01:38:12 +08:00
|
|
|
port->phylink_config.dev = &dev->dev;
|
|
|
|
port->phylink_config.type = PHYLINK_NETDEV;
|
|
|
|
|
|
|
|
phylink = phylink_create(&port->phylink_config, port_fwnode,
|
|
|
|
phy_mode, &mvpp2_phylink_ops);
|
2018-05-17 16:29:31 +08:00
|
|
|
if (IS_ERR(phylink)) {
|
|
|
|
err = PTR_ERR(phylink);
|
|
|
|
goto err_free_port_pcpu;
|
|
|
|
}
|
|
|
|
port->phylink = phylink;
|
|
|
|
} else {
|
|
|
|
port->phylink = NULL;
|
|
|
|
}
|
|
|
|
|
2019-12-17 23:47:36 +08:00
|
|
|
/* Cycle the comphy to power it down, saving 270mW per port -
|
|
|
|
* don't worry about an error powering it up. When the comphy
|
|
|
|
* driver does this, we can remove this code.
|
|
|
|
*/
|
|
|
|
if (port->comphy) {
|
|
|
|
err = mvpp22_comphy_init(port);
|
|
|
|
if (err == 0)
|
|
|
|
phy_power_off(port->comphy);
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
err = register_netdev(dev);
|
|
|
|
if (err < 0) {
|
|
|
|
dev_err(&pdev->dev, "failed to register netdev\n");
|
2018-05-17 16:29:31 +08:00
|
|
|
goto err_phylink;
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
netdev_info(dev, "Using %s mac address %pM\n", mac_from, dev->dev_addr);
|
|
|
|
|
2018-01-18 20:31:42 +08:00
|
|
|
priv->port_list[priv->port_count++] = port;
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
return 0;
|
|
|
|
|
2018-05-17 16:29:31 +08:00
|
|
|
err_phylink:
|
|
|
|
if (port->phylink)
|
|
|
|
phylink_destroy(port->phylink);
|
2015-08-07 01:00:30 +08:00
|
|
|
err_free_port_pcpu:
|
|
|
|
free_percpu(port->pcpu);
|
2014-07-11 03:52:13 +08:00
|
|
|
err_free_txq_pcpu:
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (i = 0; i < port->ntxqs; i++)
|
2014-07-11 03:52:13 +08:00
|
|
|
free_percpu(port->txqs[i]->pcpu);
|
|
|
|
err_free_stats:
|
|
|
|
free_percpu(port->stats);
|
2017-09-01 17:04:54 +08:00
|
|
|
err_free_irq:
|
2020-09-10 00:25:40 +08:00
|
|
|
if (port->port_irq)
|
|
|
|
irq_dispose_mapping(port->port_irq);
|
2017-08-03 16:41:59 +08:00
|
|
|
err_deinit_qvecs:
|
|
|
|
mvpp2_queue_vectors_deinit(port);
|
2014-07-11 03:52:13 +08:00
|
|
|
err_free_netdev:
|
|
|
|
free_netdev(dev);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ports removal routine */
|
|
|
|
static void mvpp2_port_remove(struct mvpp2_port *port)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
unregister_netdev(port->dev);
|
2018-05-17 16:29:31 +08:00
|
|
|
if (port->phylink)
|
|
|
|
phylink_destroy(port->phylink);
|
2015-08-07 01:00:30 +08:00
|
|
|
free_percpu(port->pcpu);
|
2014-07-11 03:52:13 +08:00
|
|
|
free_percpu(port->stats);
|
net: mvpp2: introduce per-port nrxqs/ntxqs variables
Currently, the global variables rxq_number and txq_number hold the
number of per-port TXQs and RXQs. Until now, such numbers were
constant regardless of the driver configuration. As we are going to
introduce different modes for TX and RX queues, these numbers will
depend on the configuration (PPv2.1 vs. PPv2.2, exact queue
distribution logic).
Therefore, as a preparation, we move the number of RXQs and TXQs in
the 'struct mvpp2_port' structure, next to the RXQs and TXQs
descriptor arrays.
For now, they remain initialized to the same default values as
rxq_number/txq_number used to be initialized, but this will change in
future commits.
The only non-mechanical change in this patch is that the check to
verify hardware constraints on the number of RXQs and TXQs is moved
from mvpp2_probe() to mvpp2_port_probe(), since it's now in
mvpp2_port_probe() that we initialize the per-port count of RXQ and
TXQ.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-08-03 16:41:57 +08:00
|
|
|
for (i = 0; i < port->ntxqs; i++)
|
2014-07-11 03:52:13 +08:00
|
|
|
free_percpu(port->txqs[i]->pcpu);
|
2017-08-03 16:41:59 +08:00
|
|
|
mvpp2_queue_vectors_deinit(port);
|
2020-09-10 00:25:40 +08:00
|
|
|
if (port->port_irq)
|
|
|
|
irq_dispose_mapping(port->port_irq);
|
2014-07-11 03:52:13 +08:00
|
|
|
free_netdev(port->dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize decoding windows */
|
|
|
|
static void mvpp2_conf_mbus_windows(const struct mbus_dram_target_info *dram,
|
|
|
|
struct mvpp2 *priv)
|
|
|
|
{
|
|
|
|
u32 win_enable;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 6; i++) {
|
|
|
|
mvpp2_write(priv, MVPP2_WIN_BASE(i), 0);
|
|
|
|
mvpp2_write(priv, MVPP2_WIN_SIZE(i), 0);
|
|
|
|
|
|
|
|
if (i < 4)
|
|
|
|
mvpp2_write(priv, MVPP2_WIN_REMAP(i), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
win_enable = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < dram->num_cs; i++) {
|
|
|
|
const struct mbus_dram_window *cs = dram->cs + i;
|
|
|
|
|
|
|
|
mvpp2_write(priv, MVPP2_WIN_BASE(i),
|
|
|
|
(cs->base & 0xffff0000) | (cs->mbus_attr << 8) |
|
|
|
|
dram->mbus_dram_target_id);
|
|
|
|
|
|
|
|
mvpp2_write(priv, MVPP2_WIN_SIZE(i),
|
|
|
|
(cs->size - 1) & 0xffff0000);
|
|
|
|
|
|
|
|
win_enable |= (1 << i);
|
|
|
|
}
|
|
|
|
|
|
|
|
mvpp2_write(priv, MVPP2_BASE_ADDR_ENABLE, win_enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize Rx FIFO's */
|
|
|
|
static void mvpp2_rx_fifo_init(struct mvpp2 *priv)
|
|
|
|
{
|
|
|
|
int port;
|
|
|
|
|
|
|
|
for (port = 0; port < MVPP2_MAX_PORTS; port++) {
|
|
|
|
mvpp2_write(priv, MVPP2_RX_DATA_FIFO_SIZE_REG(port),
|
2017-10-30 18:23:28 +08:00
|
|
|
MVPP2_RX_FIFO_PORT_DATA_SIZE_4KB);
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_write(priv, MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
|
2017-10-30 18:23:28 +08:00
|
|
|
MVPP2_RX_FIFO_PORT_ATTR_SIZE_4KB);
|
|
|
|
}
|
|
|
|
|
|
|
|
mvpp2_write(priv, MVPP2_RX_MIN_PKT_SIZE_REG,
|
|
|
|
MVPP2_RX_FIFO_PORT_MIN_PKT);
|
|
|
|
mvpp2_write(priv, MVPP2_RX_FIFO_INIT_REG, 0x1);
|
|
|
|
}
|
|
|
|
|
2020-11-24 01:54:33 +08:00
|
|
|
static void mvpp22_rx_fifo_set_hw(struct mvpp2 *priv, int port, int data_size)
|
2017-10-30 18:23:28 +08:00
|
|
|
{
|
2020-11-24 01:54:33 +08:00
|
|
|
int attr_size = MVPP2_RX_FIFO_PORT_ATTR_SIZE(data_size);
|
2017-10-30 18:23:28 +08:00
|
|
|
|
2020-11-24 01:54:33 +08:00
|
|
|
mvpp2_write(priv, MVPP2_RX_DATA_FIFO_SIZE_REG(port), data_size);
|
|
|
|
mvpp2_write(priv, MVPP2_RX_ATTR_FIFO_SIZE_REG(port), attr_size);
|
|
|
|
}
|
2017-10-30 18:23:28 +08:00
|
|
|
|
2021-02-11 18:48:52 +08:00
|
|
|
/* Initialize TX FIFO's: the total FIFO size is 48kB on PPv2.2 and PPv2.3.
|
2020-11-24 01:54:33 +08:00
|
|
|
* 4kB fixed space must be assigned for the loopback port.
|
|
|
|
* Redistribute remaining avialable 44kB space among all active ports.
|
|
|
|
* Guarantee minimum 32kB for 10G port and 8kB for port 1, capable of 2.5G
|
|
|
|
* SGMII link.
|
|
|
|
*/
|
|
|
|
static void mvpp22_rx_fifo_init(struct mvpp2 *priv)
|
|
|
|
{
|
|
|
|
int remaining_ports_count;
|
|
|
|
unsigned long port_map;
|
|
|
|
int size_remainder;
|
|
|
|
int port, size;
|
|
|
|
|
|
|
|
/* The loopback requires fixed 4kB of the FIFO space assignment. */
|
|
|
|
mvpp22_rx_fifo_set_hw(priv, MVPP2_LOOPBACK_PORT_INDEX,
|
|
|
|
MVPP2_RX_FIFO_PORT_DATA_SIZE_4KB);
|
|
|
|
port_map = priv->port_map & ~BIT(MVPP2_LOOPBACK_PORT_INDEX);
|
|
|
|
|
|
|
|
/* Set RX FIFO size to 0 for inactive ports. */
|
|
|
|
for_each_clear_bit(port, &port_map, MVPP2_LOOPBACK_PORT_INDEX)
|
|
|
|
mvpp22_rx_fifo_set_hw(priv, port, 0);
|
|
|
|
|
|
|
|
/* Assign remaining RX FIFO space among all active ports. */
|
|
|
|
size_remainder = MVPP2_RX_FIFO_PORT_DATA_SIZE_44KB;
|
|
|
|
remaining_ports_count = hweight_long(port_map);
|
|
|
|
|
|
|
|
for_each_set_bit(port, &port_map, MVPP2_LOOPBACK_PORT_INDEX) {
|
|
|
|
if (remaining_ports_count == 1)
|
|
|
|
size = size_remainder;
|
|
|
|
else if (port == 0)
|
|
|
|
size = max(size_remainder / remaining_ports_count,
|
|
|
|
MVPP2_RX_FIFO_PORT_DATA_SIZE_32KB);
|
|
|
|
else if (port == 1)
|
|
|
|
size = max(size_remainder / remaining_ports_count,
|
|
|
|
MVPP2_RX_FIFO_PORT_DATA_SIZE_8KB);
|
|
|
|
else
|
|
|
|
size = size_remainder / remaining_ports_count;
|
2017-10-30 18:23:28 +08:00
|
|
|
|
2020-11-24 01:54:33 +08:00
|
|
|
size_remainder -= size;
|
|
|
|
remaining_ports_count--;
|
2017-10-30 18:23:28 +08:00
|
|
|
|
2020-11-24 01:54:33 +08:00
|
|
|
mvpp22_rx_fifo_set_hw(priv, port, size);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
mvpp2_write(priv, MVPP2_RX_MIN_PKT_SIZE_REG,
|
|
|
|
MVPP2_RX_FIFO_PORT_MIN_PKT);
|
|
|
|
mvpp2_write(priv, MVPP2_RX_FIFO_INIT_REG, 0x1);
|
|
|
|
}
|
|
|
|
|
2021-02-11 18:49:00 +08:00
|
|
|
/* Configure Rx FIFO Flow control thresholds */
|
|
|
|
static void mvpp23_rx_fifo_fc_set_tresh(struct mvpp2 *priv)
|
|
|
|
{
|
|
|
|
int port, val;
|
|
|
|
|
|
|
|
/* Port 0: maximum speed -10Gb/s port
|
|
|
|
* required by spec RX FIFO threshold 9KB
|
|
|
|
* Port 1: maximum speed -5Gb/s port
|
|
|
|
* required by spec RX FIFO threshold 4KB
|
|
|
|
* Port 2: maximum speed -1Gb/s port
|
|
|
|
* required by spec RX FIFO threshold 2KB
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Without loopback port */
|
|
|
|
for (port = 0; port < (MVPP2_MAX_PORTS - 1); port++) {
|
|
|
|
if (port == 0) {
|
|
|
|
val = (MVPP23_PORT0_FIFO_TRSH / MVPP2_RX_FC_TRSH_UNIT)
|
|
|
|
<< MVPP2_RX_FC_TRSH_OFFS;
|
|
|
|
val &= MVPP2_RX_FC_TRSH_MASK;
|
|
|
|
mvpp2_write(priv, MVPP2_RX_FC_REG(port), val);
|
|
|
|
} else if (port == 1) {
|
|
|
|
val = (MVPP23_PORT1_FIFO_TRSH / MVPP2_RX_FC_TRSH_UNIT)
|
|
|
|
<< MVPP2_RX_FC_TRSH_OFFS;
|
|
|
|
val &= MVPP2_RX_FC_TRSH_MASK;
|
|
|
|
mvpp2_write(priv, MVPP2_RX_FC_REG(port), val);
|
|
|
|
} else {
|
|
|
|
val = (MVPP23_PORT2_FIFO_TRSH / MVPP2_RX_FC_TRSH_UNIT)
|
|
|
|
<< MVPP2_RX_FC_TRSH_OFFS;
|
|
|
|
val &= MVPP2_RX_FC_TRSH_MASK;
|
|
|
|
mvpp2_write(priv, MVPP2_RX_FC_REG(port), val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Configure Rx FIFO Flow control thresholds */
|
|
|
|
void mvpp23_rx_fifo_fc_en(struct mvpp2 *priv, int port, bool en)
|
|
|
|
{
|
|
|
|
int val;
|
|
|
|
|
|
|
|
val = mvpp2_read(priv, MVPP2_RX_FC_REG(port));
|
|
|
|
|
|
|
|
if (en)
|
|
|
|
val |= MVPP2_RX_FC_EN;
|
|
|
|
else
|
|
|
|
val &= ~MVPP2_RX_FC_EN;
|
|
|
|
|
|
|
|
mvpp2_write(priv, MVPP2_RX_FC_REG(port), val);
|
|
|
|
}
|
|
|
|
|
2020-11-24 01:54:33 +08:00
|
|
|
static void mvpp22_tx_fifo_set_hw(struct mvpp2 *priv, int port, int size)
|
|
|
|
{
|
|
|
|
int threshold = MVPP2_TX_FIFO_THRESHOLD(size);
|
|
|
|
|
|
|
|
mvpp2_write(priv, MVPP22_TX_FIFO_SIZE_REG(port), size);
|
|
|
|
mvpp2_write(priv, MVPP22_TX_FIFO_THRESH_REG(port), threshold);
|
|
|
|
}
|
|
|
|
|
2021-02-11 18:48:52 +08:00
|
|
|
/* Initialize TX FIFO's: the total FIFO size is 19kB on PPv2.2 and PPv2.3.
|
2021-02-14 22:10:03 +08:00
|
|
|
* 1kB fixed space must be assigned for the loopback port.
|
|
|
|
* Redistribute remaining avialable 18kB space among all active ports.
|
2020-11-24 01:54:33 +08:00
|
|
|
* The 10G interface should use 10kB (which is maximum possible size
|
|
|
|
* per single port).
|
2018-03-05 22:16:52 +08:00
|
|
|
*/
|
2017-10-30 18:23:29 +08:00
|
|
|
static void mvpp22_tx_fifo_init(struct mvpp2 *priv)
|
|
|
|
{
|
2020-11-24 01:54:33 +08:00
|
|
|
int remaining_ports_count;
|
|
|
|
unsigned long port_map;
|
|
|
|
int size_remainder;
|
|
|
|
int port, size;
|
|
|
|
|
2021-02-14 22:10:03 +08:00
|
|
|
/* The loopback requires fixed 1kB of the FIFO space assignment. */
|
2020-11-24 01:54:33 +08:00
|
|
|
mvpp22_tx_fifo_set_hw(priv, MVPP2_LOOPBACK_PORT_INDEX,
|
2021-02-14 22:10:03 +08:00
|
|
|
MVPP22_TX_FIFO_DATA_SIZE_1KB);
|
2020-11-24 01:54:33 +08:00
|
|
|
port_map = priv->port_map & ~BIT(MVPP2_LOOPBACK_PORT_INDEX);
|
|
|
|
|
|
|
|
/* Set TX FIFO size to 0 for inactive ports. */
|
|
|
|
for_each_clear_bit(port, &port_map, MVPP2_LOOPBACK_PORT_INDEX)
|
|
|
|
mvpp22_tx_fifo_set_hw(priv, port, 0);
|
|
|
|
|
|
|
|
/* Assign remaining TX FIFO space among all active ports. */
|
2021-02-14 22:10:03 +08:00
|
|
|
size_remainder = MVPP22_TX_FIFO_DATA_SIZE_18KB;
|
2020-11-24 01:54:33 +08:00
|
|
|
remaining_ports_count = hweight_long(port_map);
|
|
|
|
|
|
|
|
for_each_set_bit(port, &port_map, MVPP2_LOOPBACK_PORT_INDEX) {
|
|
|
|
if (remaining_ports_count == 1)
|
|
|
|
size = min(size_remainder,
|
|
|
|
MVPP22_TX_FIFO_DATA_SIZE_10KB);
|
|
|
|
else if (port == 0)
|
2018-03-05 22:16:52 +08:00
|
|
|
size = MVPP22_TX_FIFO_DATA_SIZE_10KB;
|
2020-11-24 01:54:33 +08:00
|
|
|
else
|
|
|
|
size = size_remainder / remaining_ports_count;
|
|
|
|
|
|
|
|
size_remainder -= size;
|
|
|
|
remaining_ports_count--;
|
|
|
|
|
|
|
|
mvpp22_tx_fifo_set_hw(priv, port, size);
|
2018-03-05 22:16:52 +08:00
|
|
|
}
|
2017-10-30 18:23:29 +08:00
|
|
|
}
|
|
|
|
|
2017-03-07 23:53:15 +08:00
|
|
|
static void mvpp2_axi_init(struct mvpp2 *priv)
|
|
|
|
{
|
|
|
|
u32 val, rdval, wrval;
|
|
|
|
|
|
|
|
mvpp2_write(priv, MVPP22_BM_ADDR_HIGH_RLS_REG, 0x0);
|
|
|
|
|
|
|
|
/* AXI Bridge Configuration */
|
|
|
|
|
|
|
|
rdval = MVPP22_AXI_CODE_CACHE_RD_CACHE
|
|
|
|
<< MVPP22_AXI_ATTR_CACHE_OFFS;
|
|
|
|
rdval |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
|
|
|
|
<< MVPP22_AXI_ATTR_DOMAIN_OFFS;
|
|
|
|
|
|
|
|
wrval = MVPP22_AXI_CODE_CACHE_WR_CACHE
|
|
|
|
<< MVPP22_AXI_ATTR_CACHE_OFFS;
|
|
|
|
wrval |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
|
|
|
|
<< MVPP22_AXI_ATTR_DOMAIN_OFFS;
|
|
|
|
|
|
|
|
/* BM */
|
|
|
|
mvpp2_write(priv, MVPP22_AXI_BM_WR_ATTR_REG, wrval);
|
|
|
|
mvpp2_write(priv, MVPP22_AXI_BM_RD_ATTR_REG, rdval);
|
|
|
|
|
|
|
|
/* Descriptors */
|
|
|
|
mvpp2_write(priv, MVPP22_AXI_AGGRQ_DESCR_RD_ATTR_REG, rdval);
|
|
|
|
mvpp2_write(priv, MVPP22_AXI_TXQ_DESCR_WR_ATTR_REG, wrval);
|
|
|
|
mvpp2_write(priv, MVPP22_AXI_TXQ_DESCR_RD_ATTR_REG, rdval);
|
|
|
|
mvpp2_write(priv, MVPP22_AXI_RXQ_DESCR_WR_ATTR_REG, wrval);
|
|
|
|
|
|
|
|
/* Buffer Data */
|
|
|
|
mvpp2_write(priv, MVPP22_AXI_TX_DATA_RD_ATTR_REG, rdval);
|
|
|
|
mvpp2_write(priv, MVPP22_AXI_RX_DATA_WR_ATTR_REG, wrval);
|
|
|
|
|
|
|
|
val = MVPP22_AXI_CODE_CACHE_NON_CACHE
|
|
|
|
<< MVPP22_AXI_CODE_CACHE_OFFS;
|
|
|
|
val |= MVPP22_AXI_CODE_DOMAIN_SYSTEM
|
|
|
|
<< MVPP22_AXI_CODE_DOMAIN_OFFS;
|
|
|
|
mvpp2_write(priv, MVPP22_AXI_RD_NORMAL_CODE_REG, val);
|
|
|
|
mvpp2_write(priv, MVPP22_AXI_WR_NORMAL_CODE_REG, val);
|
|
|
|
|
|
|
|
val = MVPP22_AXI_CODE_CACHE_RD_CACHE
|
|
|
|
<< MVPP22_AXI_CODE_CACHE_OFFS;
|
|
|
|
val |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
|
|
|
|
<< MVPP22_AXI_CODE_DOMAIN_OFFS;
|
|
|
|
|
|
|
|
mvpp2_write(priv, MVPP22_AXI_RD_SNOOP_CODE_REG, val);
|
|
|
|
|
|
|
|
val = MVPP22_AXI_CODE_CACHE_WR_CACHE
|
|
|
|
<< MVPP22_AXI_CODE_CACHE_OFFS;
|
|
|
|
val |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
|
|
|
|
<< MVPP22_AXI_CODE_DOMAIN_OFFS;
|
|
|
|
|
|
|
|
mvpp2_write(priv, MVPP22_AXI_WR_SNOOP_CODE_REG, val);
|
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Initialize network controller common part HW */
|
|
|
|
static int mvpp2_init(struct platform_device *pdev, struct mvpp2 *priv)
|
|
|
|
{
|
|
|
|
const struct mbus_dram_target_info *dram_target_info;
|
|
|
|
int err, i;
|
2014-07-22 00:48:12 +08:00
|
|
|
u32 val;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* MBUS windows configuration */
|
|
|
|
dram_target_info = mv_mbus_dram_info();
|
|
|
|
if (dram_target_info)
|
|
|
|
mvpp2_conf_mbus_windows(dram_target_info, priv);
|
|
|
|
|
2021-02-14 21:38:35 +08:00
|
|
|
if (priv->hw_version >= MVPP22)
|
2017-03-07 23:53:15 +08:00
|
|
|
mvpp2_axi_init(priv);
|
|
|
|
|
2014-07-22 00:48:12 +08:00
|
|
|
/* Disable HW PHY polling */
|
2017-03-07 23:53:14 +08:00
|
|
|
if (priv->hw_version == MVPP21) {
|
|
|
|
val = readl(priv->lms_base + MVPP2_PHY_AN_CFG0_REG);
|
|
|
|
val |= MVPP2_PHY_AN_STOP_SMI0_MASK;
|
|
|
|
writel(val, priv->lms_base + MVPP2_PHY_AN_CFG0_REG);
|
|
|
|
} else {
|
|
|
|
val = readl(priv->iface_base + MVPP22_SMI_MISC_CFG_REG);
|
|
|
|
val &= ~MVPP22_SMI_POLLING_EN;
|
|
|
|
writel(val, priv->iface_base + MVPP22_SMI_MISC_CFG_REG);
|
|
|
|
}
|
2014-07-22 00:48:12 +08:00
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Allocate and initialize aggregated TXQs */
|
2018-09-19 17:27:09 +08:00
|
|
|
priv->aggr_txqs = devm_kcalloc(&pdev->dev, MVPP2_MAX_THREADS,
|
2017-04-17 14:48:23 +08:00
|
|
|
sizeof(*priv->aggr_txqs),
|
2014-07-11 03:52:13 +08:00
|
|
|
GFP_KERNEL);
|
|
|
|
if (!priv->aggr_txqs)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2018-09-19 17:27:09 +08:00
|
|
|
for (i = 0; i < MVPP2_MAX_THREADS; i++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
priv->aggr_txqs[i].id = i;
|
|
|
|
priv->aggr_txqs[i].size = MVPP2_AGGR_TXQ_SIZE;
|
2017-08-23 15:46:55 +08:00
|
|
|
err = mvpp2_aggr_txq_init(pdev, &priv->aggr_txqs[i], i, priv);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-10-30 18:23:29 +08:00
|
|
|
/* Fifo Init */
|
|
|
|
if (priv->hw_version == MVPP21) {
|
2017-10-30 18:23:28 +08:00
|
|
|
mvpp2_rx_fifo_init(priv);
|
2017-10-30 18:23:29 +08:00
|
|
|
} else {
|
2017-10-30 18:23:28 +08:00
|
|
|
mvpp22_rx_fifo_init(priv);
|
2017-10-30 18:23:29 +08:00
|
|
|
mvpp22_tx_fifo_init(priv);
|
2021-02-11 18:49:00 +08:00
|
|
|
if (priv->hw_version == MVPP23)
|
|
|
|
mvpp23_rx_fifo_fc_set_tresh(priv);
|
2017-10-30 18:23:29 +08:00
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2017-03-07 23:53:14 +08:00
|
|
|
if (priv->hw_version == MVPP21)
|
|
|
|
writel(MVPP2_EXT_GLOBAL_CTRL_DEFAULT,
|
|
|
|
priv->lms_base + MVPP2_MNG_EXTENDED_GLOBAL_CTRL_REG);
|
2014-07-11 03:52:13 +08:00
|
|
|
|
|
|
|
/* Allow cache snoop when transmiting packets */
|
|
|
|
mvpp2_write(priv, MVPP2_TX_SNOOP_REG, 0x1);
|
|
|
|
|
|
|
|
/* Buffer Manager initialization */
|
2019-09-02 18:21:36 +08:00
|
|
|
err = mvpp2_bm_init(&pdev->dev, priv);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
/* Parser default initialization */
|
|
|
|
err = mvpp2_prs_default_init(pdev, priv);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
/* Classifier default initialization */
|
|
|
|
mvpp2_cls_init(priv);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-02-11 18:48:50 +08:00
|
|
|
static int mvpp2_get_sram(struct platform_device *pdev,
|
|
|
|
struct mvpp2 *priv)
|
|
|
|
{
|
|
|
|
struct resource *res;
|
|
|
|
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 2);
|
|
|
|
if (!res) {
|
|
|
|
if (has_acpi_companion(&pdev->dev))
|
|
|
|
dev_warn(&pdev->dev, "ACPI is too old, Flow control not supported\n");
|
|
|
|
else
|
|
|
|
dev_warn(&pdev->dev, "DT is too old, Flow control not supported\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->cm3_base = devm_ioremap_resource(&pdev->dev, res);
|
|
|
|
|
2021-02-14 21:38:36 +08:00
|
|
|
return PTR_ERR_OR_ZERO(priv->cm3_base);
|
2021-02-11 18:48:50 +08:00
|
|
|
}
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
static int mvpp2_probe(struct platform_device *pdev)
|
|
|
|
{
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
const struct acpi_device_id *acpi_id;
|
2018-01-18 20:31:43 +08:00
|
|
|
struct fwnode_handle *fwnode = pdev->dev.fwnode;
|
|
|
|
struct fwnode_handle *port_fwnode;
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2 *priv;
|
|
|
|
struct resource *res;
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
void __iomem *base;
|
2018-09-19 17:27:10 +08:00
|
|
|
int i, shared;
|
2021-02-11 18:49:02 +08:00
|
|
|
int err;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2017-04-17 14:38:32 +08:00
|
|
|
priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (!priv)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
if (has_acpi_companion(&pdev->dev)) {
|
|
|
|
acpi_id = acpi_match_device(pdev->dev.driver->acpi_match_table,
|
|
|
|
&pdev->dev);
|
2018-12-26 14:31:08 +08:00
|
|
|
if (!acpi_id)
|
|
|
|
return -EINVAL;
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
priv->hw_version = (unsigned long)acpi_id->driver_data;
|
|
|
|
} else {
|
|
|
|
priv->hw_version =
|
|
|
|
(unsigned long)of_device_get_match_data(&pdev->dev);
|
|
|
|
}
|
2017-03-07 23:53:06 +08:00
|
|
|
|
2018-07-12 19:54:12 +08:00
|
|
|
/* multi queue mode isn't supported on PPV2.1, fallback to single
|
|
|
|
* mode
|
|
|
|
*/
|
|
|
|
if (priv->hw_version == MVPP21)
|
|
|
|
queue_mode = MVPP2_QDIST_SINGLE_MODE;
|
|
|
|
|
2019-08-01 20:22:02 +08:00
|
|
|
base = devm_platform_ioremap_resource(pdev, 0);
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
if (IS_ERR(base))
|
|
|
|
return PTR_ERR(base);
|
|
|
|
|
|
|
|
if (priv->hw_version == MVPP21) {
|
2019-08-01 20:22:02 +08:00
|
|
|
priv->lms_base = devm_platform_ioremap_resource(pdev, 1);
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
if (IS_ERR(priv->lms_base))
|
|
|
|
return PTR_ERR(priv->lms_base);
|
|
|
|
} else {
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
if (has_acpi_companion(&pdev->dev)) {
|
|
|
|
/* In case the MDIO memory region is declared in
|
|
|
|
* the ACPI, it can already appear as 'in-use'
|
|
|
|
* in the OS. Because it is overlapped by second
|
|
|
|
* region of the network controller, make
|
|
|
|
* sure it is released, before requesting it again.
|
|
|
|
* The care is taken by mvpp2 driver to avoid
|
|
|
|
* concurrent access to this memory region.
|
|
|
|
*/
|
|
|
|
release_resource(res);
|
|
|
|
}
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
priv->iface_base = devm_ioremap_resource(&pdev->dev, res);
|
|
|
|
if (IS_ERR(priv->iface_base))
|
|
|
|
return PTR_ERR(priv->iface_base);
|
2021-02-11 18:48:50 +08:00
|
|
|
|
|
|
|
/* Map CM3 SRAM */
|
|
|
|
err = mvpp2_get_sram(pdev, priv);
|
|
|
|
if (err)
|
|
|
|
dev_warn(&pdev->dev, "Fail to alloc CM3 SRAM\n");
|
2021-02-11 18:48:56 +08:00
|
|
|
|
|
|
|
/* Enable global Flow Control only if handler to SRAM not NULL */
|
|
|
|
if (priv->cm3_base)
|
|
|
|
priv->global_tx_fc = true;
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
}
|
2017-08-23 01:08:27 +08:00
|
|
|
|
2021-02-14 21:38:35 +08:00
|
|
|
if (priv->hw_version >= MVPP22 && dev_of_node(&pdev->dev)) {
|
2017-08-23 01:08:27 +08:00
|
|
|
priv->sysctrl_base =
|
|
|
|
syscon_regmap_lookup_by_phandle(pdev->dev.of_node,
|
|
|
|
"marvell,system-controller");
|
|
|
|
if (IS_ERR(priv->sysctrl_base))
|
|
|
|
/* The system controller regmap is optional for dt
|
|
|
|
* compatibility reasons. When not provided, the
|
|
|
|
* configuration of the GoP relies on the
|
|
|
|
* firmware/bootloader.
|
|
|
|
*/
|
|
|
|
priv->sysctrl_base = NULL;
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
}
|
|
|
|
|
2021-02-14 21:38:35 +08:00
|
|
|
if (priv->hw_version >= MVPP22 &&
|
mvpp2: percpu buffers
Every mvpp2 unit can use up to 8 buffers mapped by the BM (the HW buffer
manager). The HW will place the frames in the buffer pool depending on the
frame size: short (< 128 bytes), long (< 1664) or jumbo (up to 9856).
As any unit can have up to 4 ports, the driver allocates only 2 pools,
one for small and one long frames, and share them between ports.
When the first port MTU is set higher than 1664 bytes, a third pool is
allocated for jumbo frames.
This shared allocation makes impossible to use percpu allocators,
and creates contention between HW queues.
If possible, i.e. if the number of possible CPU are less than 8 and jumbo
frames are not used, switch to a new scheme: allocate 8 per-cpu pools for
short and long frames and bind every pool to an RXQ.
When the first port MTU is set higher than 1664 bytes, the allocation
scheme is reverted to the old behaviour (3 shared pools), and when all
ports MTU are lowered, the per-cpu buffers are allocated again.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-09-02 18:21:37 +08:00
|
|
|
mvpp2_get_nrxqs(priv) * 2 <= MVPP2_BM_MAX_POOLS)
|
|
|
|
priv->percpu_pools = 1;
|
|
|
|
|
2018-03-05 22:16:50 +08:00
|
|
|
mvpp2_setup_bm_pool();
|
|
|
|
|
2018-09-19 17:27:10 +08:00
|
|
|
|
|
|
|
priv->nthreads = min_t(unsigned int, num_present_cpus(),
|
|
|
|
MVPP2_MAX_THREADS);
|
|
|
|
|
|
|
|
shared = num_present_cpus() - priv->nthreads;
|
|
|
|
if (shared > 0)
|
|
|
|
bitmap_fill(&priv->lock_map,
|
|
|
|
min_t(int, shared, MVPP2_MAX_THREADS));
|
|
|
|
|
2017-08-03 16:41:58 +08:00
|
|
|
for (i = 0; i < MVPP2_MAX_THREADS; i++) {
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
u32 addr_space_sz;
|
|
|
|
|
|
|
|
addr_space_sz = (priv->hw_version == MVPP21 ?
|
|
|
|
MVPP21_ADDR_SPACE_SZ : MVPP22_ADDR_SPACE_SZ);
|
2017-08-03 16:41:58 +08:00
|
|
|
priv->swth_base[i] = base + i * addr_space_sz;
|
net: mvpp2: handle register mapping and access for PPv2.2
This commit adjusts the mvpp2 driver register mapping and access logic
to support PPv2.2, to handle a number of differences.
Due to how the registers are laid out in memory, the Device Tree binding
for the "reg" property is different:
- On PPv2.1, we had a first area for the packet processor
registers (common to all ports), and then one area per port.
- On PPv2.2, we have a first area for the packet processor
registers (common to all ports), and a second area for numerous other
registers, including a large number of per-port registers
In addition, on PPv2.2, the area for the common registers is split into
so-called "address spaces" of 64 KB each. They allow to access per-CPU
registers, where each CPU has its own copy of some registers. A few
other registers, which have a single copy, also need to be accessed from
those per-CPU windows if they are related to a per-CPU register. For
example:
- Writing to MVPP2_TXQ_NUM_REG selects a TX queue. This register is a
per-CPU register, it must be accessed from the current CPU register
window.
- Then a write to MVPP2_TXQ_PENDING_REG, MVPP2_TXQ_DESC_ADDR_REG (and
a few others) will affect the TX queue that was selected by the
write to MVPP2_TXQ_NUM_REG. It must be accessed from the same CPU
window as the write to the TXQ_NUM_REG.
Therefore, the ->base member of 'struct mvpp2' is replaced with a
->cpu_base[] array, each entry pointing to a mapping of the per-CPU
area. Since PPv2.1 doesn't have this concept of per-CPU windows, all
entries in ->cpu_base[] point to the same io-remapped area.
The existing mvpp2_read() and mvpp2_write() accessors use cpu_base[0],
they are used for registers for which the CPU window doesn't matter.
mvpp2_percpu_read() and mvpp2_percpu_write() are new accessors added to
access the registers for which the CPU window does matter, which is why
they take a "cpu" as argument.
The driver is then changed to use mvpp2_percpu_read() and
mvpp2_percpu_write() where it matters.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:13 +08:00
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
net: mvpp2: adapt rxq distribution to PPv2.2
In PPv2.1, we have a maximum of 8 RXQs per port, with a default of 4
RXQs per port, and we were assigning RXQs 0->3 to the first port, 4->7
to the second port, 8->11 to the third port, etc.
In PPv2.2, we have a maximum of 32 RXQs per port, and we must allocate
RXQs from the range of 32 RXQs available for each port. So port 0 must
use RXQs in the range 0->31, port 1 in the range 32->63, etc.
This commit adapts the mvpp2 to this difference between PPv2.1 and
PPv2.2:
- The constant definition MVPP2_MAX_RXQ is replaced by a new field
'max_port_rxqs' in 'struct mvpp2', which stores the maximum number of
RXQs per port. This field is initialized during ->probe() depending
on the IP version.
- MVPP2_RXQ_TOTAL_NUM is removed, and instead we calculate the total
number of RXQs by multiplying the number of ports by the maximum of
RXQs per port. This was anyway used in only one place.
- In mvpp2_port_probe(), the calculation of port->first_rxq is adjusted
to cope with the different allocation strategy between PPv2.1 and
PPv2.2. Due to this change, the 'next_first_rxq' argument of this
function is no longer needed and is removed.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-07 23:53:17 +08:00
|
|
|
if (priv->hw_version == MVPP21)
|
|
|
|
priv->max_port_rxqs = 8;
|
|
|
|
else
|
|
|
|
priv->max_port_rxqs = 32;
|
|
|
|
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
if (dev_of_node(&pdev->dev)) {
|
|
|
|
priv->pp_clk = devm_clk_get(&pdev->dev, "pp_clk");
|
|
|
|
if (IS_ERR(priv->pp_clk))
|
|
|
|
return PTR_ERR(priv->pp_clk);
|
|
|
|
err = clk_prepare_enable(priv->pp_clk);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
priv->gop_clk = devm_clk_get(&pdev->dev, "gop_clk");
|
|
|
|
if (IS_ERR(priv->gop_clk)) {
|
|
|
|
err = PTR_ERR(priv->gop_clk);
|
|
|
|
goto err_pp_clk;
|
2017-03-07 23:53:18 +08:00
|
|
|
}
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
err = clk_prepare_enable(priv->gop_clk);
|
2017-03-07 23:53:18 +08:00
|
|
|
if (err < 0)
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
goto err_pp_clk;
|
|
|
|
|
2021-02-14 21:38:35 +08:00
|
|
|
if (priv->hw_version >= MVPP22) {
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
priv->mg_clk = devm_clk_get(&pdev->dev, "mg_clk");
|
|
|
|
if (IS_ERR(priv->mg_clk)) {
|
|
|
|
err = PTR_ERR(priv->mg_clk);
|
|
|
|
goto err_gop_clk;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = clk_prepare_enable(priv->mg_clk);
|
|
|
|
if (err < 0)
|
|
|
|
goto err_gop_clk;
|
2018-04-26 02:21:17 +08:00
|
|
|
|
|
|
|
priv->mg_core_clk = devm_clk_get(&pdev->dev, "mg_core_clk");
|
|
|
|
if (IS_ERR(priv->mg_core_clk)) {
|
|
|
|
priv->mg_core_clk = NULL;
|
|
|
|
} else {
|
|
|
|
err = clk_prepare_enable(priv->mg_core_clk);
|
|
|
|
if (err < 0)
|
|
|
|
goto err_mg_clk;
|
|
|
|
}
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
}
|
2017-09-29 20:27:39 +08:00
|
|
|
|
|
|
|
priv->axi_clk = devm_clk_get(&pdev->dev, "axi_clk");
|
|
|
|
if (IS_ERR(priv->axi_clk)) {
|
|
|
|
err = PTR_ERR(priv->axi_clk);
|
|
|
|
if (err == -EPROBE_DEFER)
|
2018-04-26 02:21:17 +08:00
|
|
|
goto err_mg_core_clk;
|
2017-09-29 20:27:39 +08:00
|
|
|
priv->axi_clk = NULL;
|
|
|
|
} else {
|
|
|
|
err = clk_prepare_enable(priv->axi_clk);
|
|
|
|
if (err < 0)
|
2018-04-26 02:21:17 +08:00
|
|
|
goto err_mg_core_clk;
|
2017-09-29 20:27:39 +08:00
|
|
|
}
|
2017-03-07 23:53:18 +08:00
|
|
|
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
/* Get system's tclk rate */
|
|
|
|
priv->tclk = clk_get_rate(priv->pp_clk);
|
|
|
|
} else if (device_property_read_u32(&pdev->dev, "clock-frequency",
|
|
|
|
&priv->tclk)) {
|
|
|
|
dev_err(&pdev->dev, "missing clock-frequency value\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
|
2021-02-14 21:38:35 +08:00
|
|
|
if (priv->hw_version >= MVPP22) {
|
2018-04-18 17:14:44 +08:00
|
|
|
err = dma_set_mask(&pdev->dev, MVPP2_DESC_DMA_MASK);
|
2017-03-07 23:53:19 +08:00
|
|
|
if (err)
|
2018-04-26 02:21:16 +08:00
|
|
|
goto err_axi_clk;
|
2017-03-07 23:53:19 +08:00
|
|
|
/* Sadly, the BM pools all share the same register to
|
|
|
|
* store the high 32 bits of their address. So they
|
|
|
|
* must all have the same high 32 bits, which forces
|
|
|
|
* us to restrict coherent memory to DMA_BIT_MASK(32).
|
|
|
|
*/
|
|
|
|
err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
|
|
|
|
if (err)
|
2018-04-26 02:21:16 +08:00
|
|
|
goto err_axi_clk;
|
2017-03-07 23:53:19 +08:00
|
|
|
}
|
|
|
|
|
2020-11-24 01:54:33 +08:00
|
|
|
/* Map DTS-active ports. Should be done before FIFO mvpp2_init */
|
|
|
|
fwnode_for_each_available_child_node(fwnode, port_fwnode) {
|
|
|
|
if (!fwnode_property_read_u32(port_fwnode, "port-id", &i))
|
|
|
|
priv->port_map |= BIT(i);
|
|
|
|
}
|
|
|
|
|
2021-02-14 21:38:34 +08:00
|
|
|
if (mvpp2_read(priv, MVPP2_VER_ID_REG) == MVPP2_VER_PP23)
|
|
|
|
priv->hw_version = MVPP23;
|
2021-02-11 18:48:52 +08:00
|
|
|
|
2021-02-11 18:48:57 +08:00
|
|
|
/* Init mss lock */
|
|
|
|
spin_lock_init(&priv->mss_spinlock);
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Initialize network controller */
|
|
|
|
err = mvpp2_init(pdev, priv);
|
|
|
|
if (err < 0) {
|
|
|
|
dev_err(&pdev->dev, "failed to initialize controller\n");
|
2018-04-26 02:21:16 +08:00
|
|
|
goto err_axi_clk;
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2020-09-10 00:25:50 +08:00
|
|
|
err = mvpp22_tai_probe(&pdev->dev, priv);
|
|
|
|
if (err < 0)
|
|
|
|
goto err_axi_clk;
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
/* Initialize ports */
|
2018-01-18 20:31:43 +08:00
|
|
|
fwnode_for_each_available_child_node(fwnode, port_fwnode) {
|
|
|
|
err = mvpp2_port_probe(pdev, port_fwnode, priv);
|
2014-07-11 03:52:13 +08:00
|
|
|
if (err < 0)
|
2017-11-28 21:19:49 +08:00
|
|
|
goto err_port_probe;
|
2018-01-18 20:31:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->port_count == 0) {
|
|
|
|
dev_err(&pdev->dev, "no ports enabled\n");
|
|
|
|
err = -ENODEV;
|
2018-04-26 02:21:16 +08:00
|
|
|
goto err_axi_clk;
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2017-11-07 05:56:53 +08:00
|
|
|
/* Statistics must be gathered regularly because some of them (like
|
|
|
|
* packets counters) are 32-bit registers and could overflow quite
|
|
|
|
* quickly. For instance, a 10Gb link used at full bandwidth with the
|
|
|
|
* smallest packets (64B) will overflow a 32-bit counter in less than
|
|
|
|
* 30 seconds. Then, use a workqueue to fill 64-bit counters.
|
|
|
|
*/
|
|
|
|
snprintf(priv->queue_name, sizeof(priv->queue_name),
|
|
|
|
"stats-wq-%s%s", netdev_name(priv->port_list[0]->dev),
|
|
|
|
priv->port_count > 1 ? "+" : "");
|
|
|
|
priv->stats_queue = create_singlethread_workqueue(priv->queue_name);
|
|
|
|
if (!priv->stats_queue) {
|
|
|
|
err = -ENOMEM;
|
2017-11-28 21:19:49 +08:00
|
|
|
goto err_port_probe;
|
2017-11-07 05:56:53 +08:00
|
|
|
}
|
|
|
|
|
2021-02-14 21:38:35 +08:00
|
|
|
if (priv->global_tx_fc && priv->hw_version >= MVPP22) {
|
2021-02-11 18:49:02 +08:00
|
|
|
err = mvpp2_enable_global_fc(priv);
|
|
|
|
if (err)
|
|
|
|
dev_warn(&pdev->dev, "Minimum of CM3 firmware 18.09 and chip revision B0 required for flow control\n");
|
2021-02-11 18:48:56 +08:00
|
|
|
}
|
|
|
|
|
net: mvpp2: add a debugfs interface for the Header Parser
Marvell PPv2 Packer Header Parser has a TCAM based filter, that is not
trivial to configure and debug. Being able to dump TCAM entries from
userspace can be really helpful to help development of new features
and debug existing ones.
This commit adds a basic debugfs interface for the PPv2 driver, focusing
on TCAM related features.
<mnt>/mvpp2/ --- f2000000.ethernet
\- f4000000.ethernet --- parser --- 000 ...
| \- 001
| \- ...
| \- 255 --- ai
| \- header_data
| \- lookup_id
| \- sram
| \- valid
\- eth1 ...
\- eth2 --- mac_filter
\- parser_entries
\- vid_filter
There's one directory per PPv2 instance, named after pdev->name to make
sure names are uniques. In each of these directories, there's :
- one directory per interface on the controller, each containing :
- "mac_filter", which lists all filtered addresses for this port
(based on TCAM, not on the kernel's uc / mc lists)
- "parser_entries", which lists the indices of all valid TCAM
entries that have this port in their port map
- "vid_filter", which lists the vids allowed on this port, based on
TCAM
- one "parser" directory (the parser is common to all ports), containing :
- one directory per TCAM entry (256 of them, from 0 to 255), each
containing :
- "ai" : Contains the 1 byte Additional Info field from TCAM, and
- "header_data" : Contains the 8 bytes Header Data extracted from
the packet
- "lookup_id" : Contains the 4 bits LU_ID
- "sram" : contains the raw SRAM data, which is the result of the TCAM
lookup. This readonly at the moment.
- "valid" : Indicates if the entry is valid of not.
All entries are read-only, and everything is output in hex form.
Signed-off-by: Maxime Chevallier <maxime.chevallier@bootlin.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-07-14 19:29:25 +08:00
|
|
|
mvpp2_dbgfs_init(priv, pdev->name);
|
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
platform_set_drvdata(pdev, priv);
|
|
|
|
return 0;
|
|
|
|
|
2017-11-28 21:19:49 +08:00
|
|
|
err_port_probe:
|
|
|
|
i = 0;
|
2018-01-18 20:31:43 +08:00
|
|
|
fwnode_for_each_available_child_node(fwnode, port_fwnode) {
|
2017-11-28 21:19:49 +08:00
|
|
|
if (priv->port_list[i])
|
|
|
|
mvpp2_port_remove(priv->port_list[i]);
|
|
|
|
i++;
|
|
|
|
}
|
2018-04-26 02:21:16 +08:00
|
|
|
err_axi_clk:
|
2017-09-29 20:27:39 +08:00
|
|
|
clk_disable_unprepare(priv->axi_clk);
|
2018-04-26 02:21:17 +08:00
|
|
|
|
|
|
|
err_mg_core_clk:
|
2021-02-14 21:38:35 +08:00
|
|
|
if (priv->hw_version >= MVPP22)
|
2018-04-26 02:21:17 +08:00
|
|
|
clk_disable_unprepare(priv->mg_core_clk);
|
2018-04-26 02:21:16 +08:00
|
|
|
err_mg_clk:
|
2021-02-14 21:38:35 +08:00
|
|
|
if (priv->hw_version >= MVPP22)
|
2017-03-07 23:53:18 +08:00
|
|
|
clk_disable_unprepare(priv->mg_clk);
|
2014-07-11 03:52:13 +08:00
|
|
|
err_gop_clk:
|
|
|
|
clk_disable_unprepare(priv->gop_clk);
|
|
|
|
err_pp_clk:
|
|
|
|
clk_disable_unprepare(priv->pp_clk);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mvpp2_remove(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
struct mvpp2 *priv = platform_get_drvdata(pdev);
|
2018-01-18 20:31:43 +08:00
|
|
|
struct fwnode_handle *fwnode = pdev->dev.fwnode;
|
2020-06-16 12:35:29 +08:00
|
|
|
int i = 0, poolnum = MVPP2_BM_POOLS_NUM;
|
2018-01-18 20:31:43 +08:00
|
|
|
struct fwnode_handle *port_fwnode;
|
2014-07-11 03:52:13 +08:00
|
|
|
|
net: mvpp2: add a debugfs interface for the Header Parser
Marvell PPv2 Packer Header Parser has a TCAM based filter, that is not
trivial to configure and debug. Being able to dump TCAM entries from
userspace can be really helpful to help development of new features
and debug existing ones.
This commit adds a basic debugfs interface for the PPv2 driver, focusing
on TCAM related features.
<mnt>/mvpp2/ --- f2000000.ethernet
\- f4000000.ethernet --- parser --- 000 ...
| \- 001
| \- ...
| \- 255 --- ai
| \- header_data
| \- lookup_id
| \- sram
| \- valid
\- eth1 ...
\- eth2 --- mac_filter
\- parser_entries
\- vid_filter
There's one directory per PPv2 instance, named after pdev->name to make
sure names are uniques. In each of these directories, there's :
- one directory per interface on the controller, each containing :
- "mac_filter", which lists all filtered addresses for this port
(based on TCAM, not on the kernel's uc / mc lists)
- "parser_entries", which lists the indices of all valid TCAM
entries that have this port in their port map
- "vid_filter", which lists the vids allowed on this port, based on
TCAM
- one "parser" directory (the parser is common to all ports), containing :
- one directory per TCAM entry (256 of them, from 0 to 255), each
containing :
- "ai" : Contains the 1 byte Additional Info field from TCAM, and
- "header_data" : Contains the 8 bytes Header Data extracted from
the packet
- "lookup_id" : Contains the 4 bits LU_ID
- "sram" : contains the raw SRAM data, which is the result of the TCAM
lookup. This readonly at the moment.
- "valid" : Indicates if the entry is valid of not.
All entries are read-only, and everything is output in hex form.
Signed-off-by: Maxime Chevallier <maxime.chevallier@bootlin.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-07-14 19:29:25 +08:00
|
|
|
mvpp2_dbgfs_cleanup(priv);
|
|
|
|
|
2018-01-18 20:31:43 +08:00
|
|
|
fwnode_for_each_available_child_node(fwnode, port_fwnode) {
|
2017-11-08 15:59:40 +08:00
|
|
|
if (priv->port_list[i]) {
|
|
|
|
mutex_destroy(&priv->port_list[i]->gather_stats_lock);
|
2014-07-11 03:52:13 +08:00
|
|
|
mvpp2_port_remove(priv->port_list[i]);
|
2017-11-08 15:59:40 +08:00
|
|
|
}
|
2014-07-11 03:52:13 +08:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2019-08-01 20:13:30 +08:00
|
|
|
destroy_workqueue(priv->stats_queue);
|
|
|
|
|
2020-06-16 12:35:29 +08:00
|
|
|
if (priv->percpu_pools)
|
|
|
|
poolnum = mvpp2_get_nrxqs(priv) * 2;
|
|
|
|
|
|
|
|
for (i = 0; i < poolnum; i++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_bm_pool *bm_pool = &priv->bm_pools[i];
|
|
|
|
|
2019-09-02 18:21:36 +08:00
|
|
|
mvpp2_bm_pool_destroy(&pdev->dev, priv, bm_pool);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
2018-09-19 17:27:09 +08:00
|
|
|
for (i = 0; i < MVPP2_MAX_THREADS; i++) {
|
2014-07-11 03:52:13 +08:00
|
|
|
struct mvpp2_tx_queue *aggr_txq = &priv->aggr_txqs[i];
|
|
|
|
|
|
|
|
dma_free_coherent(&pdev->dev,
|
|
|
|
MVPP2_AGGR_TXQ_SIZE * MVPP2_DESC_ALIGNED_SIZE,
|
|
|
|
aggr_txq->descs,
|
2017-03-07 23:53:00 +08:00
|
|
|
aggr_txq->descs_dma);
|
2014-07-11 03:52:13 +08:00
|
|
|
}
|
|
|
|
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
if (is_acpi_node(port_fwnode))
|
|
|
|
return 0;
|
|
|
|
|
2017-09-29 20:27:39 +08:00
|
|
|
clk_disable_unprepare(priv->axi_clk);
|
2018-04-26 02:21:17 +08:00
|
|
|
clk_disable_unprepare(priv->mg_core_clk);
|
2017-03-07 23:53:18 +08:00
|
|
|
clk_disable_unprepare(priv->mg_clk);
|
2014-07-11 03:52:13 +08:00
|
|
|
clk_disable_unprepare(priv->pp_clk);
|
|
|
|
clk_disable_unprepare(priv->gop_clk);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct of_device_id mvpp2_match[] = {
|
2017-03-07 23:53:06 +08:00
|
|
|
{
|
|
|
|
.compatible = "marvell,armada-375-pp2",
|
|
|
|
.data = (void *)MVPP21,
|
|
|
|
},
|
2017-03-07 23:53:20 +08:00
|
|
|
{
|
|
|
|
.compatible = "marvell,armada-7k-pp22",
|
|
|
|
.data = (void *)MVPP22,
|
|
|
|
},
|
2014-07-11 03:52:13 +08:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, mvpp2_match);
|
|
|
|
|
2020-09-27 05:26:03 +08:00
|
|
|
#ifdef CONFIG_ACPI
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
static const struct acpi_device_id mvpp2_acpi_match[] = {
|
|
|
|
{ "MRVL0110", MVPP22 },
|
|
|
|
{ },
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(acpi, mvpp2_acpi_match);
|
2020-09-27 05:26:03 +08:00
|
|
|
#endif
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
|
2014-07-11 03:52:13 +08:00
|
|
|
static struct platform_driver mvpp2_driver = {
|
|
|
|
.probe = mvpp2_probe,
|
|
|
|
.remove = mvpp2_remove,
|
|
|
|
.driver = {
|
|
|
|
.name = MVPP2_DRIVER_NAME,
|
|
|
|
.of_match_table = mvpp2_match,
|
net: mvpp2: enable ACPI support in the driver
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - use newly introduced
fwnode_irq_get() routine
* Until proper MDIO bus and PHY handling with ACPI is established in the
kernel, use only link interrupts feature in the driver. For the RGMII
port it results in depending on GMAC settings done during firmware
stage.
* When booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Moreover, a memory region used by mvmdio driver is usually placed in
the middle of the address space of the PP2 network controller.
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call) in mvmdio.c, later overlapping resources are
requested by the network driver, which is responsible for avoiding
a concurrent access.
In case the MDIO memory region is declared in the ACPI, it can
already appear as 'in-use' in the OS. Because it is overlapped by second
region of the network controller, make sure it is released, before
requesting it again. The care is taken by mvpp2 driver to avoid
concurrent access to this memory region.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-01-18 20:31:44 +08:00
|
|
|
.acpi_match_table = ACPI_PTR(mvpp2_acpi_match),
|
2014-07-11 03:52:13 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
module_platform_driver(mvpp2_driver);
|
|
|
|
|
|
|
|
MODULE_DESCRIPTION("Marvell PPv2 Ethernet Driver - www.marvell.com");
|
|
|
|
MODULE_AUTHOR("Marcin Wojtas <mw@semihalf.com>");
|
2014-07-14 21:34:47 +08:00
|
|
|
MODULE_LICENSE("GPL v2");
|