Skip to content

Commit 77555ee

Browse files
Masayuki Ohtakedavem330
authored andcommitted
net: Add Gigabit Ethernet driver of Topcliff PCH
Signed-off-by: Masayuki Ohtake <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 59104f0 commit 77555ee

File tree

11 files changed

+4824
-0
lines changed

11 files changed

+4824
-0
lines changed

drivers/net/Kconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2515,6 +2515,18 @@ config S6GMAC
25152515

25162516
source "drivers/net/stmmac/Kconfig"
25172517

2518+
config PCH_GBE
2519+
tristate "PCH Gigabit Ethernet"
2520+
depends on PCI
2521+
---help---
2522+
This is a gigabit ethernet driver for Topcliff PCH.
2523+
Topcliff PCH is the platform controller hub that is used in Intel's
2524+
general embedded platform.
2525+
Topcliff PCH has Gigabit Ethernet interface.
2526+
Using this interface, it is able to access system devices connected
2527+
to Gigabit Ethernet.
2528+
This driver enables Gigabit Ethernet function.
2529+
25182530
endif # NETDEV_1000
25192531

25202532
#

drivers/net/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,3 +298,4 @@ obj-$(CONFIG_WIMAX) += wimax/
298298
obj-$(CONFIG_CAIF) += caif/
299299

300300
obj-$(CONFIG_OCTEON_MGMT_ETHERNET) += octeon/
301+
obj-$(CONFIG_PCH_GBE) += pch_gbe/

drivers/net/pch_gbe/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
obj-$(CONFIG_PCH_GBE) += pch_gbe.o
2+
3+
pch_gbe-y := pch_gbe_phy.o pch_gbe_ethtool.o pch_gbe_param.o
4+
pch_gbe-y += pch_gbe_api.o pch_gbe_main.o

0 commit comments

Comments
 (0)