mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 12:46:53 +07:00
245db3c349
The driver attempts to 'select MDIO_DEVICE', but the code
is actually a loadable module when PHYLIB=m:
drivers/phy/broadcom/phy-bcm-ns-usb3.o: In function `bcm_ns_usb3_mdiodev_phy_write':
phy-bcm-ns-usb3.c:(.text.bcm_ns_usb3_mdiodev_phy_write+0x28): undefined reference to `mdiobus_write'
drivers/phy/broadcom/phy-bcm-ns-usb3.o: In function `bcm_ns_usb3_module_exit':
phy-bcm-ns-usb3.c:(.exit.text+0x18): undefined reference to `mdio_driver_unregister'
drivers/phy/broadcom/phy-bcm-ns-usb3.o: In function `bcm_ns_usb3_module_init':
phy-bcm-ns-usb3.c:(.init.text+0x18): undefined reference to `mdio_driver_register'
phy-bcm-ns-usb3.c:(.init.text+0x38): undefined reference to `mdio_driver_unregister'
Using 'depends on MDIO_BUS' instead will avoid the link error.
Fixes: af850e14a7
("phy: bcm-ns-usb3: add MDIO driver using proper bus layer")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
70 lines
1.9 KiB
Plaintext
70 lines
1.9 KiB
Plaintext
#
|
|
# Phy drivers for Broadcom platforms
|
|
#
|
|
config PHY_CYGNUS_PCIE
|
|
tristate "Broadcom Cygnus PCIe PHY driver"
|
|
depends on OF && (ARCH_BCM_CYGNUS || COMPILE_TEST)
|
|
select GENERIC_PHY
|
|
default ARCH_BCM_CYGNUS
|
|
help
|
|
Enable this to support the Broadcom Cygnus PCIe PHY.
|
|
If unsure, say N.
|
|
|
|
config BCM_KONA_USB2_PHY
|
|
tristate "Broadcom Kona USB2 PHY Driver"
|
|
depends on HAS_IOMEM
|
|
select GENERIC_PHY
|
|
help
|
|
Enable this to support the Broadcom Kona USB 2.0 PHY.
|
|
|
|
config PHY_BCM_NS_USB2
|
|
tristate "Broadcom Northstar USB 2.0 PHY Driver"
|
|
depends on ARCH_BCM_IPROC || COMPILE_TEST
|
|
depends on HAS_IOMEM && OF
|
|
select GENERIC_PHY
|
|
help
|
|
Enable this to support Broadcom USB 2.0 PHY connected to the USB
|
|
controller on Northstar family.
|
|
|
|
config PHY_BCM_NS_USB3
|
|
tristate "Broadcom Northstar USB 3.0 PHY Driver"
|
|
depends on ARCH_BCM_IPROC || COMPILE_TEST
|
|
depends on HAS_IOMEM && OF
|
|
depends on MDIO_BUS
|
|
select GENERIC_PHY
|
|
help
|
|
Enable this to support Broadcom USB 3.0 PHY connected to the USB
|
|
controller on Northstar family.
|
|
|
|
config PHY_NS2_PCIE
|
|
tristate "Broadcom Northstar2 PCIe PHY driver"
|
|
depends on OF && MDIO_BUS_MUX_BCM_IPROC
|
|
select GENERIC_PHY
|
|
default ARCH_BCM_IPROC
|
|
help
|
|
Enable this to support the Broadcom Northstar2 PCIe PHY.
|
|
If unsure, say N.
|
|
|
|
config PHY_NS2_USB_DRD
|
|
tristate "Broadcom Northstar2 USB DRD PHY support"
|
|
depends on OF && (ARCH_BCM_IPROC || COMPILE_TEST)
|
|
select GENERIC_PHY
|
|
select EXTCON
|
|
default ARCH_BCM_IPROC
|
|
help
|
|
Enable this to support the Broadcom Northstar2 USB DRD PHY.
|
|
This driver initializes the PHY in either HOST or DEVICE mode.
|
|
The host or device configuration is read from device tree.
|
|
|
|
If unsure, say N.
|
|
|
|
config PHY_BRCM_SATA
|
|
tristate "Broadcom SATA PHY driver"
|
|
depends on ARCH_BRCMSTB || ARCH_BCM_IPROC || BMIPS_GENERIC || COMPILE_TEST
|
|
depends on OF
|
|
select GENERIC_PHY
|
|
default ARCH_BCM_IPROC
|
|
help
|
|
Enable this to support the Broadcom SATA PHY.
|
|
If unsure, say N.
|