xref: /linux/drivers/net/ethernet/litex/Kconfig (revision 253f68f413a87a4e2bd93e61b00410e5e1b7b774)
1#
2# LiteX device configuration
3#
4
5config NET_VENDOR_LITEX
6	bool "LiteX devices"
7	default y
8	help
9	  If you have a network (Ethernet) card belonging to this class, say Y.
10
11	  Note that the answer to this question doesn't directly affect the
12	  kernel: saying N will just cause the configurator to skip all
13	  the questions about LiteX devices. If you say Y, you will be asked
14	  for your specific card in the following questions.
15
16if NET_VENDOR_LITEX
17
18config LITEX_LITEETH
19	tristate "LiteX Ethernet support"
20	depends on OF && HAS_IOMEM
21	help
22	  If you wish to compile a kernel for hardware with a LiteX LiteEth
23	  device then you should answer Y to this.
24
25	  LiteX is a soft system-on-chip that targets FPGAs. LiteETH is a basic
26	  network device that is commonly used in LiteX designs.
27
28endif # NET_VENDOR_LITEX
29