Commit 9f329751 authored by Kurt Kanzenbach's avatar Kurt Kanzenbach Committed by Tony Nguyen

igc: Add MQPRIO offload support

Add support for offloading MQPRIO. The hardware has four priorities as well
as four queues. Each queue must be a assigned with a unique priority.

However, the priorities are only considered in TSN Tx mode. There are two
TSN Tx modes. In case of MQPRIO the Qbv capability is not required.
Therefore, use the legacy TSN Tx mode, which performs strict priority
arbitration.

Example for mqprio with hardware offload:

|tc qdisc replace dev ${INTERFACE} handle 100 parent root mqprio num_tc 4 \
|   map 0 0 0 0 0 1 2 3 0 0 0 0 0 0 0 0 \
|   queues 1@0 1@1 1@2 1@3 \
|   hw 1

The mqprio Qdisc also allows to configure the `preemptible_tcs'. However,
frame preemption is not supported yet.

Tested on Intel i225 and implemented by following data sheet section 7.5.2,
Transmit Scheduling.
Signed-off-by: Kurt Kanzenbach's avatarKurt Kanzenbach <kurt@linutronix.de>
Reviewed-by: default avatarWojciech Drewek <wojciech.drewek@intel.com>
Acked-by: default avatarVinicius Costa Gomes <vinicius.gomes@intel.com>
Reviewed-by: default avatarSimon Horman <horms@kernel.org>
Tested-by: default avatarMor Bar-Gabay <morx.bar.gabay@intel.com>
Signed-off-by: default avatarTony Nguyen <anthony.l.nguyen@intel.com>
parent fbdaffe4
...@@ -259,6 +259,10 @@ struct igc_adapter { ...@@ -259,6 +259,10 @@ struct igc_adapter {
*/ */
spinlock_t qbv_tx_lock; spinlock_t qbv_tx_lock;
bool strict_priority_enable;
u8 num_tc;
u16 queue_per_tc[IGC_MAX_TX_QUEUES];
/* OS defined structs */ /* OS defined structs */
struct pci_dev *pdev; struct pci_dev *pdev;
/* lock for statistics */ /* lock for statistics */
...@@ -382,9 +386,11 @@ extern char igc_driver_name[]; ...@@ -382,9 +386,11 @@ extern char igc_driver_name[];
#define IGC_FLAG_RX_LEGACY BIT(16) #define IGC_FLAG_RX_LEGACY BIT(16)
#define IGC_FLAG_TSN_QBV_ENABLED BIT(17) #define IGC_FLAG_TSN_QBV_ENABLED BIT(17)
#define IGC_FLAG_TSN_QAV_ENABLED BIT(18) #define IGC_FLAG_TSN_QAV_ENABLED BIT(18)
#define IGC_FLAG_TSN_LEGACY_ENABLED BIT(19)
#define IGC_FLAG_TSN_ANY_ENABLED \ #define IGC_FLAG_TSN_ANY_ENABLED \
(IGC_FLAG_TSN_QBV_ENABLED | IGC_FLAG_TSN_QAV_ENABLED) (IGC_FLAG_TSN_QBV_ENABLED | IGC_FLAG_TSN_QAV_ENABLED | \
IGC_FLAG_TSN_LEGACY_ENABLED)
#define IGC_FLAG_RSS_FIELD_IPV4_UDP BIT(6) #define IGC_FLAG_RSS_FIELD_IPV4_UDP BIT(6)
#define IGC_FLAG_RSS_FIELD_IPV6_UDP BIT(7) #define IGC_FLAG_RSS_FIELD_IPV6_UDP BIT(7)
......
...@@ -4,6 +4,8 @@ ...@@ -4,6 +4,8 @@
#ifndef _IGC_DEFINES_H_ #ifndef _IGC_DEFINES_H_
#define _IGC_DEFINES_H_ #define _IGC_DEFINES_H_
#include <linux/bitfield.h>
/* Number of Transmit and Receive Descriptors must be a multiple of 8 */ /* Number of Transmit and Receive Descriptors must be a multiple of 8 */
#define REQ_TX_DESCRIPTOR_MULTIPLE 8 #define REQ_TX_DESCRIPTOR_MULTIPLE 8
#define REQ_RX_DESCRIPTOR_MULTIPLE 8 #define REQ_RX_DESCRIPTOR_MULTIPLE 8
...@@ -553,6 +555,15 @@ ...@@ -553,6 +555,15 @@
#define IGC_MAX_SR_QUEUES 2 #define IGC_MAX_SR_QUEUES 2
#define IGC_TXARB_TXQ_PRIO_0_MASK GENMASK(1, 0)
#define IGC_TXARB_TXQ_PRIO_1_MASK GENMASK(3, 2)
#define IGC_TXARB_TXQ_PRIO_2_MASK GENMASK(5, 4)
#define IGC_TXARB_TXQ_PRIO_3_MASK GENMASK(7, 6)
#define IGC_TXARB_TXQ_PRIO_0(x) FIELD_PREP(IGC_TXARB_TXQ_PRIO_0_MASK, (x))
#define IGC_TXARB_TXQ_PRIO_1(x) FIELD_PREP(IGC_TXARB_TXQ_PRIO_1_MASK, (x))
#define IGC_TXARB_TXQ_PRIO_2(x) FIELD_PREP(IGC_TXARB_TXQ_PRIO_2_MASK, (x))
#define IGC_TXARB_TXQ_PRIO_3(x) FIELD_PREP(IGC_TXARB_TXQ_PRIO_3_MASK, (x))
/* Receive Checksum Control */ /* Receive Checksum Control */
#define IGC_RXCSUM_CRCOFL 0x00000800 /* CRC32 offload enable */ #define IGC_RXCSUM_CRCOFL 0x00000800 /* CRC32 offload enable */
#define IGC_RXCSUM_PCSD 0x00002000 /* packet checksum disabled */ #define IGC_RXCSUM_PCSD 0x00002000 /* packet checksum disabled */
......
...@@ -1540,6 +1540,10 @@ static int igc_ethtool_set_channels(struct net_device *netdev, ...@@ -1540,6 +1540,10 @@ static int igc_ethtool_set_channels(struct net_device *netdev,
if (ch->other_count != NON_Q_VECTORS) if (ch->other_count != NON_Q_VECTORS)
return -EINVAL; return -EINVAL;
/* Do not allow channel reconfiguration when mqprio is enabled */
if (adapter->strict_priority_enable)
return -EINVAL;
/* Verify the number of channels doesn't exceed hw limits */ /* Verify the number of channels doesn't exceed hw limits */
max_combined = igc_get_max_rss_queues(adapter); max_combined = igc_get_max_rss_queues(adapter);
if (count > max_combined) if (count > max_combined)
......
...@@ -6515,6 +6515,13 @@ static int igc_tc_query_caps(struct igc_adapter *adapter, ...@@ -6515,6 +6515,13 @@ static int igc_tc_query_caps(struct igc_adapter *adapter,
struct igc_hw *hw = &adapter->hw; struct igc_hw *hw = &adapter->hw;
switch (base->type) { switch (base->type) {
case TC_SETUP_QDISC_MQPRIO: {
struct tc_mqprio_caps *caps = base->caps;
caps->validate_queue_counts = true;
return 0;
}
case TC_SETUP_QDISC_TAPRIO: { case TC_SETUP_QDISC_TAPRIO: {
struct tc_taprio_caps *caps = base->caps; struct tc_taprio_caps *caps = base->caps;
...@@ -6532,6 +6539,65 @@ static int igc_tc_query_caps(struct igc_adapter *adapter, ...@@ -6532,6 +6539,65 @@ static int igc_tc_query_caps(struct igc_adapter *adapter,
} }
} }
static void igc_save_mqprio_params(struct igc_adapter *adapter, u8 num_tc,
u16 *offset)
{
int i;
adapter->strict_priority_enable = true;
adapter->num_tc = num_tc;
for (i = 0; i < num_tc; i++)
adapter->queue_per_tc[i] = offset[i];
}
static int igc_tsn_enable_mqprio(struct igc_adapter *adapter,
struct tc_mqprio_qopt_offload *mqprio)
{
struct igc_hw *hw = &adapter->hw;
int i;
if (hw->mac.type != igc_i225)
return -EOPNOTSUPP;
if (!mqprio->qopt.num_tc) {
adapter->strict_priority_enable = false;
goto apply;
}
/* There are as many TCs as Tx queues. */
if (mqprio->qopt.num_tc != adapter->num_tx_queues) {
NL_SET_ERR_MSG_FMT_MOD(mqprio->extack,
"Only %d traffic classes supported",
adapter->num_tx_queues);
return -EOPNOTSUPP;
}
/* Only one queue per TC is supported. */
for (i = 0; i < mqprio->qopt.num_tc; i++) {
if (mqprio->qopt.count[i] != 1) {
NL_SET_ERR_MSG_MOD(mqprio->extack,
"Only one queue per TC supported");
return -EOPNOTSUPP;
}
}
/* Preemption is not supported yet. */
if (mqprio->preemptible_tcs) {
NL_SET_ERR_MSG_MOD(mqprio->extack,
"Preemption is not supported yet");
return -EOPNOTSUPP;
}
igc_save_mqprio_params(adapter, mqprio->qopt.num_tc,
mqprio->qopt.offset);
mqprio->qopt.hw = TC_MQPRIO_HW_OFFLOAD_TCS;
apply:
return igc_tsn_offload_apply(adapter);
}
static int igc_setup_tc(struct net_device *dev, enum tc_setup_type type, static int igc_setup_tc(struct net_device *dev, enum tc_setup_type type,
void *type_data) void *type_data)
{ {
...@@ -6551,6 +6617,9 @@ static int igc_setup_tc(struct net_device *dev, enum tc_setup_type type, ...@@ -6551,6 +6617,9 @@ static int igc_setup_tc(struct net_device *dev, enum tc_setup_type type,
case TC_SETUP_QDISC_CBS: case TC_SETUP_QDISC_CBS:
return igc_tsn_enable_cbs(adapter, type_data); return igc_tsn_enable_cbs(adapter, type_data);
case TC_SETUP_QDISC_MQPRIO:
return igc_tsn_enable_mqprio(adapter, type_data);
default: default:
return -EOPNOTSUPP; return -EOPNOTSUPP;
} }
......
...@@ -238,6 +238,8 @@ ...@@ -238,6 +238,8 @@
#define IGC_TQAVCC(_n) (0x3004 + ((_n) * 0x40)) #define IGC_TQAVCC(_n) (0x3004 + ((_n) * 0x40))
#define IGC_TQAVHC(_n) (0x300C + ((_n) * 0x40)) #define IGC_TQAVHC(_n) (0x300C + ((_n) * 0x40))
#define IGC_TXARB 0x3354 /* Tx Arbitration Control TxARB - RW */
/* System Time Registers */ /* System Time Registers */
#define IGC_SYSTIML 0x0B600 /* System time register Low - RO */ #define IGC_SYSTIML 0x0B600 /* System time register Low - RO */
#define IGC_SYSTIMH 0x0B604 /* System time register High - RO */ #define IGC_SYSTIMH 0x0B604 /* System time register High - RO */
......
...@@ -46,6 +46,9 @@ static unsigned int igc_tsn_new_flags(struct igc_adapter *adapter) ...@@ -46,6 +46,9 @@ static unsigned int igc_tsn_new_flags(struct igc_adapter *adapter)
if (is_cbs_enabled(adapter)) if (is_cbs_enabled(adapter))
new_flags |= IGC_FLAG_TSN_QAV_ENABLED; new_flags |= IGC_FLAG_TSN_QAV_ENABLED;
if (adapter->strict_priority_enable)
new_flags |= IGC_FLAG_TSN_LEGACY_ENABLED;
return new_flags; return new_flags;
} }
...@@ -102,11 +105,32 @@ bool igc_tsn_is_taprio_activated_by_user(struct igc_adapter *adapter) ...@@ -102,11 +105,32 @@ bool igc_tsn_is_taprio_activated_by_user(struct igc_adapter *adapter)
adapter->taprio_offload_enable; adapter->taprio_offload_enable;
} }
static void igc_tsn_tx_arb(struct igc_adapter *adapter, u16 *queue_per_tc)
{
struct igc_hw *hw = &adapter->hw;
u32 txarb;
txarb = rd32(IGC_TXARB);
txarb &= ~(IGC_TXARB_TXQ_PRIO_0_MASK |
IGC_TXARB_TXQ_PRIO_1_MASK |
IGC_TXARB_TXQ_PRIO_2_MASK |
IGC_TXARB_TXQ_PRIO_3_MASK);
txarb |= IGC_TXARB_TXQ_PRIO_0(queue_per_tc[3]);
txarb |= IGC_TXARB_TXQ_PRIO_1(queue_per_tc[2]);
txarb |= IGC_TXARB_TXQ_PRIO_2(queue_per_tc[1]);
txarb |= IGC_TXARB_TXQ_PRIO_3(queue_per_tc[0]);
wr32(IGC_TXARB, txarb);
}
/* Returns the TSN specific registers to their default values after /* Returns the TSN specific registers to their default values after
* the adapter is reset. * the adapter is reset.
*/ */
static int igc_tsn_disable_offload(struct igc_adapter *adapter) static int igc_tsn_disable_offload(struct igc_adapter *adapter)
{ {
u16 queue_per_tc[4] = { 3, 2, 1, 0 };
struct igc_hw *hw = &adapter->hw; struct igc_hw *hw = &adapter->hw;
u32 tqavctrl; u32 tqavctrl;
int i; int i;
...@@ -133,7 +157,16 @@ static int igc_tsn_disable_offload(struct igc_adapter *adapter) ...@@ -133,7 +157,16 @@ static int igc_tsn_disable_offload(struct igc_adapter *adapter)
wr32(IGC_QBVCYCLET_S, 0); wr32(IGC_QBVCYCLET_S, 0);
wr32(IGC_QBVCYCLET, NSEC_PER_SEC); wr32(IGC_QBVCYCLET, NSEC_PER_SEC);
/* Reset mqprio TC configuration. */
netdev_reset_tc(adapter->netdev);
/* Restore the default Tx arbitration: Priority 0 has the highest
* priority and is assigned to queue 0 and so on and so forth.
*/
igc_tsn_tx_arb(adapter, queue_per_tc);
adapter->flags &= ~IGC_FLAG_TSN_QBV_ENABLED; adapter->flags &= ~IGC_FLAG_TSN_QBV_ENABLED;
adapter->flags &= ~IGC_FLAG_TSN_LEGACY_ENABLED;
return 0; return 0;
} }
...@@ -172,6 +205,40 @@ static int igc_tsn_enable_offload(struct igc_adapter *adapter) ...@@ -172,6 +205,40 @@ static int igc_tsn_enable_offload(struct igc_adapter *adapter)
if (igc_is_device_id_i226(hw)) if (igc_is_device_id_i226(hw))
igc_tsn_set_retx_qbvfullthreshold(adapter); igc_tsn_set_retx_qbvfullthreshold(adapter);
if (adapter->strict_priority_enable) {
int err;
err = netdev_set_num_tc(adapter->netdev, adapter->num_tc);
if (err)
return err;
for (i = 0; i < adapter->num_tc; i++) {
err = netdev_set_tc_queue(adapter->netdev, i, 1,
adapter->queue_per_tc[i]);
if (err)
return err;
}
/* In case the card is configured with less than four queues. */
for (; i < IGC_MAX_TX_QUEUES; i++)
adapter->queue_per_tc[i] = i;
/* Configure queue priorities according to the user provided
* mapping.
*/
igc_tsn_tx_arb(adapter, adapter->queue_per_tc);
/* Enable legacy TSN mode which will do strict priority without
* any other TSN features.
*/
tqavctrl = rd32(IGC_TQAVCTRL);
tqavctrl |= IGC_TQAVCTRL_TRANSMIT_MODE_TSN;
tqavctrl &= ~IGC_TQAVCTRL_ENHANCED_QAV;
wr32(IGC_TQAVCTRL, tqavctrl);
return 0;
}
for (i = 0; i < adapter->num_tx_queues; i++) { for (i = 0; i < adapter->num_tx_queues; i++) {
struct igc_ring *ring = adapter->tx_ring[i]; struct igc_ring *ring = adapter->tx_ring[i];
u32 txqctl = 0; u32 txqctl = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment