1# SPDX-License-Identifier: GPL-2.0-only 2# 3# Xilink device configuration 4# 5 6config NET_VENDOR_XILINX 7 bool "Xilinx devices" 8 default y 9 depends on PPC || PPC32 || MICROBLAZE || ARCH_ZYNQ || MIPS || X86 || ARM || COMPILE_TEST 10 ---help--- 11 If you have a network (Ethernet) card belonging to this class, say Y. 12 13 Note that the answer to this question doesn't directly affect the 14 kernel: saying N will just cause the configurator to skip all 15 the questions about Xilinx devices. If you say Y, you will be asked 16 for your specific card in the following questions. 17 18if NET_VENDOR_XILINX 19 20config XILINX_EMACLITE 21 tristate "Xilinx 10/100 Ethernet Lite support" 22 depends on PPC32 || MICROBLAZE || ARCH_ZYNQ || MIPS 23 select PHYLIB 24 ---help--- 25 This driver supports the 10/100 Ethernet Lite from Xilinx. 26 27config XILINX_AXI_EMAC 28 tristate "Xilinx 10/100/1000 AXI Ethernet support" 29 depends on MICROBLAZE || X86 || ARM || COMPILE_TEST 30 select PHYLINK 31 ---help--- 32 This driver supports the 10/100/1000 Ethernet from Xilinx for the 33 AXI bus interface used in Xilinx Virtex FPGAs. 34 35config XILINX_LL_TEMAC 36 tristate "Xilinx LL TEMAC (LocalLink Tri-mode Ethernet MAC) driver" 37 depends on PPC || MICROBLAZE || X86 || COMPILE_TEST 38 select PHYLIB 39 ---help--- 40 This driver supports the Xilinx 10/100/1000 LocalLink TEMAC 41 core used in Xilinx Spartan and Virtex FPGAs 42 43endif # NET_VENDOR_XILINX 44