mbox series

[V3,net-next,0/3] add Vertexcom MSE102x support

Message ID 1639320627-8827-1-git-send-email-stefan.wahren@i2se.com
Headers show
Series add Vertexcom MSE102x support | expand

Message

Stefan Wahren Dec. 12, 2021, 2:50 p.m. UTC
This patch series adds support for the Vertexcom MSE102x Homeplug GreenPHY
chips [1]. They can be connected either via RGMII, RMII or SPI to a host CPU.
These patches handles only the last one, with an Ethernet over SPI protocol
driver.

The code has been tested only on Raspberry Pi boards, but should work
on other platforms.

Changes in V3:
- drop IF_PORT_HOMEPLUG again, since it's actually not used

Changes in V2:
- improve lock handling for RX & TX path
- add new patch to introduce IF_PORT_HOMEPLUG as suggested by Andrew Lunn
- address all the comments by Jakub Kicinski, Andrew Lunn, Kernel test robot

[1] - http://www.vertexcom.com/p_homeplug_plc_en.html

Stefan Wahren (3):
  dt-bindings: add vendor Vertexcom
  dt-bindings: net: add Vertexcom MSE102x support
  net: vertexcom: Add MSE102x SPI support

 .../devicetree/bindings/net/vertexcom-mse102x.yaml |  71 ++
 .../devicetree/bindings/vendor-prefixes.yaml       |   2 +
 drivers/net/ethernet/Kconfig                       |   1 +
 drivers/net/ethernet/Makefile                      |   1 +
 drivers/net/ethernet/vertexcom/Kconfig             |  25 +
 drivers/net/ethernet/vertexcom/Makefile            |   6 +
 drivers/net/ethernet/vertexcom/mse102x.c           | 769 +++++++++++++++++++++
 7 files changed, 875 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/net/vertexcom-mse102x.yaml
 create mode 100644 drivers/net/ethernet/vertexcom/Kconfig
 create mode 100644 drivers/net/ethernet/vertexcom/Makefile
 create mode 100644 drivers/net/ethernet/vertexcom/mse102x.c

Comments

patchwork-bot+netdevbpf@kernel.org Dec. 13, 2021, 2:40 p.m. UTC | #1
Hello:

This series was applied to netdev/net-next.git (master)
by David S. Miller <davem@davemloft.net>:

On Sun, 12 Dec 2021 15:50:24 +0100 you wrote:
> This patch series adds support for the Vertexcom MSE102x Homeplug GreenPHY
> chips [1]. They can be connected either via RGMII, RMII or SPI to a host CPU.
> These patches handles only the last one, with an Ethernet over SPI protocol
> driver.
> 
> The code has been tested only on Raspberry Pi boards, but should work
> on other platforms.
> 
> [...]

Here is the summary with links:
  - [V3,net-next,1/3] dt-bindings: add vendor Vertexcom
    https://git.kernel.org/netdev/net-next/c/e4d60d9f3625
  - [V3,net-next,2/3] dt-bindings: net: add Vertexcom MSE102x support
    https://git.kernel.org/netdev/net-next/c/2717566f6661
  - [V3,net-next,3/3] net: vertexcom: Add MSE102x SPI support
    https://git.kernel.org/netdev/net-next/c/2f207cbf0dd4

You are awesome, thank you!