Skip to content

Commit 2f207cb

Browse files
lategoodbyedavem330
authored andcommitted
net: vertexcom: Add MSE102x SPI support
This implements an SPI protocol driver for Vertexcom MSE102x Homeplug GreenPHY chip. Signed-off-by: Stefan Wahren <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 2717566 commit 2f207cb

File tree

5 files changed

+802
-0
lines changed

5 files changed

+802
-0
lines changed

drivers/net/ethernet/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ source "drivers/net/ethernet/tehuti/Kconfig"
183183
source "drivers/net/ethernet/ti/Kconfig"
184184
source "drivers/net/ethernet/toshiba/Kconfig"
185185
source "drivers/net/ethernet/tundra/Kconfig"
186+
source "drivers/net/ethernet/vertexcom/Kconfig"
186187
source "drivers/net/ethernet/via/Kconfig"
187188
source "drivers/net/ethernet/wiznet/Kconfig"
188189
source "drivers/net/ethernet/xilinx/Kconfig"

drivers/net/ethernet/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ obj-$(CONFIG_NET_VENDOR_TEHUTI) += tehuti/
9393
obj-$(CONFIG_NET_VENDOR_TI) += ti/
9494
obj-$(CONFIG_NET_VENDOR_TOSHIBA) += toshiba/
9595
obj-$(CONFIG_NET_VENDOR_TUNDRA) += tundra/
96+
obj-$(CONFIG_NET_VENDOR_VERTEXCOM) += vertexcom/
9697
obj-$(CONFIG_NET_VENDOR_VIA) += via/
9798
obj-$(CONFIG_NET_VENDOR_WIZNET) += wiznet/
9899
obj-$(CONFIG_NET_VENDOR_XILINX) += xilinx/
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# SPDX-License-Identifier: GPL-2.0-only
2+
#
3+
# Vertexcom network device configuration
4+
#
5+
6+
config NET_VENDOR_VERTEXCOM
7+
bool "Vertexcom devices"
8+
default y
9+
help
10+
If you have a network (Ethernet) card belonging to this class, say Y.
11+
12+
Note that the answer to this question doesn't directly affect the
13+
kernel: saying N will just cause the configurator to skip all
14+
the questions about Vertexcom cards. If you say Y, you will be asked
15+
for your specific card in the following questions.
16+
17+
if NET_VENDOR_VERTEXCOM
18+
19+
config MSE102X
20+
tristate "Vertexcom MSE102x SPI"
21+
depends on SPI
22+
help
23+
SPI driver for Vertexcom MSE102x SPI attached network chip.
24+
25+
endif # NET_VENDOR_VERTEXCOM
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# SPDX-License-Identifier: GPL-2.0
2+
#
3+
# Makefile for the Vertexcom network device drivers.
4+
#
5+
6+
obj-$(CONFIG_MSE102X) += mse102x.o

0 commit comments

Comments
 (0)