aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/drivers/usb/eth/Kconfig
diff options
context:
space:
mode:
authorAngelos Mouzakitis <a.mouzakitis@virtualopensystems.com>2023-10-10 14:33:42 +0000
committerAngelos Mouzakitis <a.mouzakitis@virtualopensystems.com>2023-10-10 14:33:42 +0000
commitaf1a266670d040d2f4083ff309d732d648afba2a (patch)
tree2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/drivers/usb/eth/Kconfig
parente02cda008591317b1625707ff8e115a4841aa889 (diff)
Add submodule dependency filesHEADmaster
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/drivers/usb/eth/Kconfig')
-rw-r--r--roms/u-boot/drivers/usb/eth/Kconfig65
1 files changed, 65 insertions, 0 deletions
diff --git a/roms/u-boot/drivers/usb/eth/Kconfig b/roms/u-boot/drivers/usb/eth/Kconfig
new file mode 100644
index 000000000..2f6bfa8e7
--- /dev/null
+++ b/roms/u-boot/drivers/usb/eth/Kconfig
@@ -0,0 +1,65 @@
+menuconfig USB_HOST_ETHER
+ bool "USB to Ethernet Controller Drivers"
+ ---help---
+ Say Y here if you would like to enable support for USB Ethernet
+ adapters.
+
+if USB_HOST_ETHER
+
+config USB_ETHER_ASIX
+ bool "ASIX AX8817X (USB 2.0) support"
+ depends on USB_HOST_ETHER
+ ---help---
+ Say Y here if you would like to support ASIX AX8817X based USB 2.0
+ Ethernet Devices.
+
+config USB_ETHER_ASIX88179
+ bool "ASIX AX88179 (USB 3.0) support"
+ depends on USB_HOST_ETHER
+ ---help---
+ Say Y here if you would like to support ASIX AX88179 based USB 3.0
+ Ethernet Devices.
+
+config USB_ETHER_LAN75XX
+ bool "Microchip LAN75XX support"
+ depends on USB_HOST_ETHER
+ depends on PHYLIB
+ ---help---
+ Say Y here if you would like to support Microchip LAN75XX Hi-Speed
+ USB 2.0 to 10/100/1000 Gigabit Ethernet controller.
+ Supports 10Base-T/ 100Base-TX/1000Base-T.
+ This driver supports the internal PHY.
+
+config USB_ETHER_LAN78XX
+ bool "Microchip LAN78XX support"
+ depends on USB_HOST_ETHER
+ depends on PHYLIB
+ ---help---
+ Say Y here if you would like to support Microchip LAN78XX USB 3.1
+ Gen 1 to 10/100/1000 Gigabit Ethernet controller.
+ Supports 10Base-T/ 100Base-TX/1000Base-T.
+ This driver supports the internal PHY.
+
+config USB_ETHER_MCS7830
+ bool "MOSCHIP MCS7830 (7730/7830/7832) suppport"
+ depends on USB_HOST_ETHER
+ ---help---
+ Say Y here if you would like to support MOSCHIP MCS7830 based
+ (7730/7830/7832) USB 2.0 Ethernet Devices.
+
+config USB_ETHER_RTL8152
+ bool "Realtek RTL8152B/RTL8153 support"
+ depends on USB_HOST_ETHER
+ ---help---
+ Say Y here if you would like to support Realtek RTL8152B/RTL8153 base
+ USB Ethernet Devices. This driver also supports compatible devices
+ from Samsung, Lenovo, TP-LINK and Nvidia.
+
+config USB_ETHER_SMSC95XX
+ bool "SMSC LAN95x support"
+ depends on USB_HOST_ETHER
+ ---help---
+ Say Y here if you would like to support SMSC LAN95xx based USB 2.0
+ Ethernet Devices.
+
+endif