2009-12-08 12:29:35 +02:00
|
|
|
--- a/drivers/net/phy/Kconfig
|
|
|
|
+++ b/drivers/net/phy/Kconfig
|
2010-02-24 15:39:02 +02:00
|
|
|
@@ -135,4 +135,29 @@ config MDIO_GPIO
|
2009-12-08 12:29:35 +02:00
|
|
|
To compile this driver as a module, choose M here: the module
|
|
|
|
will be called mdio-gpio.
|
|
|
|
|
|
|
|
+config RTL8366_SMI
|
2010-01-22 19:38:07 +02:00
|
|
|
+ tristate "Driver for the RTL8366 SMI interface"
|
2009-12-08 12:29:35 +02:00
|
|
|
+ depends on GENERIC_GPIO
|
2010-01-22 19:38:07 +02:00
|
|
|
+ ---help---
|
|
|
|
+ This module implements the SMI interface protocol which is used
|
|
|
|
+ by some RTL8366 ethernet switch devices via the generic GPIO API.
|
2010-01-20 11:30:36 +02:00
|
|
|
+
|
2010-01-22 19:38:07 +02:00
|
|
|
+if RTL8366_SMI
|
|
|
|
+
|
|
|
|
+config RTL8366S_PHY
|
|
|
|
+ tristate "Driver for the Realtek RTL8366S switch"
|
|
|
|
+ select SWCONFIG
|
|
|
|
+
|
2010-02-24 15:39:02 +02:00
|
|
|
+config RTL8366RB_PHY
|
|
|
|
+ tristate "Driver for the Realtek RTL8366RB switch"
|
|
|
|
+ select SWCONFIG
|
|
|
|
+
|
2010-01-22 19:38:07 +02:00
|
|
|
+config RTL8366S_PHY_DEBUG_FS
|
2010-02-24 15:39:02 +02:00
|
|
|
+ bool "RTL8366 switch driver DEBUG_FS support"
|
|
|
|
+ depends on RTL8366S_PHY || RTL8366RB_PHY
|
2010-01-20 11:30:36 +02:00
|
|
|
+ depends on DEBUG_FS
|
|
|
|
+ default n
|
2010-01-22 19:38:07 +02:00
|
|
|
+
|
|
|
|
+endif # RTL8366_SMI
|
2009-12-08 12:29:35 +02:00
|
|
|
+
|
|
|
|
endif # PHYLIB
|
|
|
|
--- a/drivers/net/phy/Makefile
|
|
|
|
+++ b/drivers/net/phy/Makefile
|
2010-02-24 15:39:02 +02:00
|
|
|
@@ -19,6 +19,9 @@ obj-$(CONFIG_IP175C_PHY) += ip175c.o
|
2009-12-08 12:29:35 +02:00
|
|
|
obj-$(CONFIG_REALTEK_PHY) += realtek.o
|
|
|
|
obj-$(CONFIG_AR8216_PHY) += ar8216.o
|
|
|
|
obj-$(CONFIG_RTL8306_PHY) += rtl8306.o
|
|
|
|
+obj-$(CONFIG_RTL8366_SMI) += rtl8366_smi.o
|
2010-01-22 19:38:07 +02:00
|
|
|
+obj-$(CONFIG_RTL8366S_PHY) += rtl8366s.o
|
2010-02-24 15:39:02 +02:00
|
|
|
+obj-$(CONFIG_RTL8366RB_PHY) += rtl8366rb.o
|
2009-12-08 12:29:35 +02:00
|
|
|
obj-$(CONFIG_LSI_ET1011C_PHY) += et1011c.o
|
|
|
|
obj-$(CONFIG_FIXED_PHY) += fixed.o
|
2010-01-25 17:13:38 +02:00
|
|
|
obj-$(CONFIG_MDIO_BITBANG) += mdio-bitbang.o
|