From: Faizal Rahim <faizal.abdul.rahim@linux.intel.com>
To: Tony Nguyen <anthony.l.nguyen@intel.com>,
Przemek Kitszel <przemyslaw.kitszel@intel.com>,
Andrew Lunn <andrew+netdev@lunn.ch>,
"David S . Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Vladimir Oltean <vladimir.oltean@nxp.com>
Cc: intel-wired-lan@lists.osuosl.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org,
Faizal Rahim <faizal.abdul.rahim@linux.intel.com>,
Chwee-Lin Choong <chwee.lin.choong@intel.com>
Subject: [Intel-wired-lan] [PATCH iwl-next v1 0/8] igc: harmonize queue priority and add preemptible queue support
Date: Mon, 28 Apr 2025 02:02:17 -0400 [thread overview]
Message-ID: <20250428060225.1306986-1-faizal.abdul.rahim@linux.intel.com> (raw)
MAC Merge support for frame preemption was previously added for igc:
https://patchwork.kernel.org/project/netdevbpf/patch/20250318030742.2567080-1-faizal.abdul.rahim@linux.intel.com/
This series builds on that work and adds support for:
- Harmonizing taprio and mqprio queue priority behavior, based on past
discussions and suggestions:
https://lore.kernel.org/all/20250214102206.25dqgut5tbak2rkz@skbuf/
- Enabling preemptible queue support for both taprio and mqprio, with
priority harmonization as a prerequisite.
It is based on the iwl tree as the baseline for development.
Patch organization:
- Patches 1–3: Preparation work for patches 6 and 7
- Patches 4–5: Introduce queue priority harmonization
- Patches 6–8: Add preemptible queue support
The series depends on the following patches, which are currently in the
iwl tree and pending integration into netdev/net-next:
- igc: Change Tx mode for MQPRIO offloading
- igc: Limit netdev_tc calls to MQPRIO
Chwee-Lin Choong (1):
igc: SW pad preemptible frames for correct mCRC calculation
Faizal Rahim (7):
igc: move IGC_TXDCTL_QUEUE_ENABLE and IGC_TXDCTL_SWFLUSH
igc: add TXDCTL prefix to related macros
igc: refactor TXDCTL macros to use FIELD_PREP and GEN_MASK
igc: assign highest TX queue number as highest priority in mqprio
igc: add private flag to reverse TX queue priority in TSN mode
igc: add preemptible queue support in taprio
igc: add preemptible queue support in mqprio
drivers/net/ethernet/intel/igc/igc.h | 24 +++-
drivers/net/ethernet/intel/igc/igc_base.h | 4 -
drivers/net/ethernet/intel/igc/igc_defines.h | 1 +
drivers/net/ethernet/intel/igc/igc_ethtool.c | 12 +-
drivers/net/ethernet/intel/igc/igc_main.c | 50 ++++++--
drivers/net/ethernet/intel/igc/igc_tsn.c | 116 ++++++++++++++++---
drivers/net/ethernet/intel/igc/igc_tsn.h | 5 +
7 files changed, 179 insertions(+), 33 deletions(-)
--
2.34.1
WARNING: multiple messages have this Message-ID (diff)
From: Faizal Rahim <faizal.abdul.rahim@linux.intel.com>
To: Tony Nguyen <anthony.l.nguyen@intel.com>,
Przemek Kitszel <przemyslaw.kitszel@intel.com>,
Andrew Lunn <andrew+netdev@lunn.ch>,
"David S . Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Vladimir Oltean <vladimir.oltean@nxp.com>
Cc: intel-wired-lan@lists.osuosl.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org,
Faizal Rahim <faizal.abdul.rahim@linux.intel.com>,
Chwee-Lin Choong <chwee.lin.choong@intel.com>
Subject: [PATCH iwl-next v1 0/8] igc: harmonize queue priority and add preemptible queue support
Date: Mon, 28 Apr 2025 02:02:17 -0400 [thread overview]
Message-ID: <20250428060225.1306986-1-faizal.abdul.rahim@linux.intel.com> (raw)
MAC Merge support for frame preemption was previously added for igc:
https://patchwork.kernel.org/project/netdevbpf/patch/20250318030742.2567080-1-faizal.abdul.rahim@linux.intel.com/
This series builds on that work and adds support for:
- Harmonizing taprio and mqprio queue priority behavior, based on past
discussions and suggestions:
https://lore.kernel.org/all/20250214102206.25dqgut5tbak2rkz@skbuf/
- Enabling preemptible queue support for both taprio and mqprio, with
priority harmonization as a prerequisite.
It is based on the iwl tree as the baseline for development.
Patch organization:
- Patches 1–3: Preparation work for patches 6 and 7
- Patches 4–5: Introduce queue priority harmonization
- Patches 6–8: Add preemptible queue support
The series depends on the following patches, which are currently in the
iwl tree and pending integration into netdev/net-next:
- igc: Change Tx mode for MQPRIO offloading
- igc: Limit netdev_tc calls to MQPRIO
Chwee-Lin Choong (1):
igc: SW pad preemptible frames for correct mCRC calculation
Faizal Rahim (7):
igc: move IGC_TXDCTL_QUEUE_ENABLE and IGC_TXDCTL_SWFLUSH
igc: add TXDCTL prefix to related macros
igc: refactor TXDCTL macros to use FIELD_PREP and GEN_MASK
igc: assign highest TX queue number as highest priority in mqprio
igc: add private flag to reverse TX queue priority in TSN mode
igc: add preemptible queue support in taprio
igc: add preemptible queue support in mqprio
drivers/net/ethernet/intel/igc/igc.h | 24 +++-
drivers/net/ethernet/intel/igc/igc_base.h | 4 -
drivers/net/ethernet/intel/igc/igc_defines.h | 1 +
drivers/net/ethernet/intel/igc/igc_ethtool.c | 12 +-
drivers/net/ethernet/intel/igc/igc_main.c | 50 ++++++--
drivers/net/ethernet/intel/igc/igc_tsn.c | 116 ++++++++++++++++---
drivers/net/ethernet/intel/igc/igc_tsn.h | 5 +
7 files changed, 179 insertions(+), 33 deletions(-)
--
2.34.1
next reply other threads:[~2025-04-28 6:03 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-28 6:02 Faizal Rahim [this message]
2025-04-28 6:02 ` [PATCH iwl-next v1 0/8] igc: harmonize queue priority and add preemptible queue support Faizal Rahim
2025-04-28 6:02 ` [Intel-wired-lan] [PATCH iwl-next v1 1/8] igc: move IGC_TXDCTL_QUEUE_ENABLE and IGC_TXDCTL_SWFLUSH Faizal Rahim
2025-04-28 6:02 ` Faizal Rahim
2025-04-28 7:01 ` [Intel-wired-lan] " Ruinskiy, Dima
2025-04-29 3:36 ` Abdul Rahim, Faizal
2025-04-28 6:02 ` [Intel-wired-lan] [PATCH iwl-next v1 2/8] igc: add TXDCTL prefix to related macros Faizal Rahim
2025-04-28 6:02 ` Faizal Rahim
2025-04-28 6:57 ` [Intel-wired-lan] " Ruinskiy, Dima
2025-04-29 3:37 ` Abdul Rahim, Faizal
2025-04-28 6:02 ` [Intel-wired-lan] [PATCH iwl-next v1 3/8] igc: refactor TXDCTL macros to use FIELD_PREP and GEN_MASK Faizal Rahim
2025-04-28 6:02 ` Faizal Rahim
2025-04-28 6:02 ` [Intel-wired-lan] [PATCH iwl-next v1 4/8] igc: assign highest TX queue number as highest priority in mqprio Faizal Rahim
2025-04-28 6:02 ` Faizal Rahim
2025-04-28 6:02 ` [Intel-wired-lan] [PATCH iwl-next v1 5/8] igc: add private flag to reverse TX queue priority in TSN mode Faizal Rahim
2025-04-28 6:02 ` Faizal Rahim
2025-04-28 6:02 ` [Intel-wired-lan] [PATCH iwl-next v1 6/8] igc: add preemptible queue support in taprio Faizal Rahim
2025-04-28 6:02 ` Faizal Rahim
2025-04-28 9:11 ` [Intel-wired-lan] " Loktionov, Aleksandr
2025-04-28 9:11 ` Loktionov, Aleksandr
2025-04-29 3:39 ` Abdul Rahim, Faizal
2025-04-28 6:02 ` [Intel-wired-lan] [PATCH iwl-next v1 7/8] igc: add preemptible queue support in mqprio Faizal Rahim
2025-04-28 6:02 ` Faizal Rahim
2025-04-28 6:02 ` [Intel-wired-lan] [PATCH iwl-next v1 8/8] igc: SW pad preemptible frames for correct mCRC calculation Faizal Rahim
2025-04-28 6:02 ` Faizal Rahim
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250428060225.1306986-1-faizal.abdul.rahim@linux.intel.com \
--to=faizal.abdul.rahim@linux.intel.com \
--cc=andrew+netdev@lunn.ch \
--cc=anthony.l.nguyen@intel.com \
--cc=chwee.lin.choong@intel.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=przemyslaw.kitszel@intel.com \
--cc=vladimir.oltean@nxp.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.