mbox series

[v5,net-next,0/4] prepare ocelot for external interface control

Message ID 20211207170030.1406601-1-colin.foster@in-advantage.com (mailing list archive)
Headers show
Series prepare ocelot for external interface control | expand

Message

Colin Foster Dec. 7, 2021, 5 p.m. UTC
This patch set is derived from an attempt to include external control
for a VSC751[1234] chip via SPI. That patch set has grown large and is
getting unwieldy for reviewers and the developers... me.

I'm breaking out the changes from that patch set. Some are trivial 
  net: dsa: ocelot: remove unnecessary pci_bar variables
  net: dsa: ocelot: felix: Remove requirement for PCS in felix devices

some are required for SPI
  net: dsa: ocelot: felix: add interface for custom regmaps

and some are just to expose code to be shared
  net: mscc: ocelot: split register definitions to a separate file


The entirety of this patch set should have essentially no impact on the
system performance.

v1 -> v2
    * Removed the per-device-per-port quirks for Felix. Might be
    completely unnecessary.
    * Fixed the renaming issue for vec7514_regs. It includes the
    Reported-by kernel test robot by way of git b4... If that isn't the
    right thing to do in this instance, let me know :-)

v2 -> v3
    * Fix an include. Thanks Jakub Kicinski!

v3 -> v4
    * Add reviewed by tags

v4 -> v5
    * Remove patch 5/5, which added unused symbols

Colin Foster (4):
  net: dsa: ocelot: remove unnecessary pci_bar variables
  net: dsa: ocelot: felix: Remove requirement for PCS in felix devices
  net: dsa: ocelot: felix: add interface for custom regmaps
  net: mscc: ocelot: split register definitions to a separate file

 drivers/net/dsa/ocelot/felix.c             |   6 +-
 drivers/net/dsa/ocelot/felix.h             |   4 +-
 drivers/net/dsa/ocelot/felix_vsc9959.c     |  11 +-
 drivers/net/dsa/ocelot/seville_vsc9953.c   |   1 +
 drivers/net/ethernet/mscc/Makefile         |   3 +-
 drivers/net/ethernet/mscc/ocelot_vsc7514.c | 520 +-------------------
 drivers/net/ethernet/mscc/vsc7514_regs.c   | 523 +++++++++++++++++++++
 include/soc/mscc/vsc7514_regs.h            |  27 ++
 8 files changed, 574 insertions(+), 521 deletions(-)
 create mode 100644 drivers/net/ethernet/mscc/vsc7514_regs.c
 create mode 100644 include/soc/mscc/vsc7514_regs.h

Comments

patchwork-bot+netdevbpf@kernel.org Dec. 8, 2021, 6 a.m. UTC | #1
Hello:

This series was applied to netdev/net-next.git (master)
by Jakub Kicinski <kuba@kernel.org>:

On Tue,  7 Dec 2021 09:00:26 -0800 you wrote:
> This patch set is derived from an attempt to include external control
> for a VSC751[1234] chip via SPI. That patch set has grown large and is
> getting unwieldy for reviewers and the developers... me.
> 
> I'm breaking out the changes from that patch set. Some are trivial
>   net: dsa: ocelot: remove unnecessary pci_bar variables
>   net: dsa: ocelot: felix: Remove requirement for PCS in felix devices
> 
> [...]

Here is the summary with links:
  - [v5,net-next,1/4] net: dsa: ocelot: remove unnecessary pci_bar variables
    https://git.kernel.org/netdev/net-next/c/c99104840a95
  - [v5,net-next,2/4] net: dsa: ocelot: felix: Remove requirement for PCS in felix devices
    https://git.kernel.org/netdev/net-next/c/49af6a7620c5
  - [v5,net-next,3/4] net: dsa: ocelot: felix: add interface for custom regmaps
    https://git.kernel.org/netdev/net-next/c/242bd0c10bbd
  - [v5,net-next,4/4] net: mscc: ocelot: split register definitions to a separate file
    https://git.kernel.org/netdev/net-next/c/32ecd22ba60b

You are awesome, thank you!