Kconfig 875 B

1234567891011121314151617181920212223242526272829
  1. config NET_VENDOR_SPACEMIT
  2. bool "SpacemiT devices"
  3. default y
  4. depends on ARCH_SPACEMIT || COMPILE_TEST
  5. help
  6. If you have a network (Ethernet) device belonging to this class,
  7. say Y.
  8. Note that the answer to this question does not directly affect
  9. the kernel: saying N will just cause the configurator to skip all
  10. the questions regarding SpacemiT devices. If you say Y, you will
  11. be asked for your specific chipset/driver in the following questions.
  12. if NET_VENDOR_SPACEMIT
  13. config SPACEMIT_K1_EMAC
  14. tristate "SpacemiT K1 Ethernet MAC driver"
  15. depends on ARCH_SPACEMIT || COMPILE_TEST
  16. depends on MFD_SYSCON
  17. depends on OF
  18. default m if ARCH_SPACEMIT
  19. select PHYLIB
  20. help
  21. This driver supports the Ethernet MAC in the SpacemiT K1 SoC.
  22. To compile this driver as a module, choose M here: the module
  23. will be called k1_emac.
  24. endif # NET_VENDOR_SPACEMIT