Skip to content

Commit

Permalink
net: Add Gigabit Ethernet driver of Topcliff PCH
Browse files Browse the repository at this point in the history
Signed-off-by: Masayuki Ohtake <masa-korg@dsn.okisemi.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Masayuki Ohtake authored and David S. Miller committed Sep 25, 2010
1 parent 59104f0 commit 77555ee
Show file tree
Hide file tree
Showing 11 changed files with 4,824 additions and 0 deletions.
12 changes: 12 additions & 0 deletions drivers/net/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2515,6 +2515,18 @@ config S6GMAC

source "drivers/net/stmmac/Kconfig"

config PCH_GBE
tristate "PCH Gigabit Ethernet"
depends on PCI
---help---
This is a gigabit ethernet driver for Topcliff PCH.
Topcliff PCH is the platform controller hub that is used in Intel's
general embedded platform.
Topcliff PCH has Gigabit Ethernet interface.
Using this interface, it is able to access system devices connected
to Gigabit Ethernet.
This driver enables Gigabit Ethernet function.

endif # NETDEV_1000

#
Expand Down
1 change: 1 addition & 0 deletions drivers/net/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -298,3 +298,4 @@ obj-$(CONFIG_WIMAX) += wimax/
obj-$(CONFIG_CAIF) += caif/

obj-$(CONFIG_OCTEON_MGMT_ETHERNET) += octeon/
obj-$(CONFIG_PCH_GBE) += pch_gbe/
4 changes: 4 additions & 0 deletions drivers/net/pch_gbe/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
obj-$(CONFIG_PCH_GBE) += pch_gbe.o

pch_gbe-y := pch_gbe_phy.o pch_gbe_ethtool.o pch_gbe_param.o
pch_gbe-y += pch_gbe_api.o pch_gbe_main.o
Loading

0 comments on commit 77555ee

Please sign in to comment.