Kconfig 883 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Allwinner device configuration
  4. #
  5. config NET_VENDOR_ALLWINNER
  6. bool "Allwinner devices"
  7. default y
  8. depends on ARCH_SUNXI
  9. help
  10. If you have a network (Ethernet) card belonging to this
  11. class, say Y here.
  12. Note that the answer to this question doesn't directly
  13. affect the kernel: saying N will just cause the configurator
  14. to skip all the questions about Allwinner cards. If you say Y,
  15. you will be asked for your specific card in the following
  16. questions.
  17. if NET_VENDOR_ALLWINNER
  18. config SUN4I_EMAC
  19. tristate "Allwinner A10 EMAC support"
  20. depends on ARCH_SUNXI
  21. depends on OF
  22. select CRC32
  23. select MII
  24. select PHYLIB
  25. select MDIO_SUN4I
  26. help
  27. Support for Allwinner A10 EMAC ethernet driver.
  28. To compile this driver as a module, choose M here. The module
  29. will be called sun4i-emac.
  30. endif # NET_VENDOR_ALLWINNER