Kconfig 832 B

12345678910111213141516171819202122232425262728293031
  1. # SPDX-License-Identifier: (GPL-2.0 OR MIT)
  2. config NET_VENDOR_MICROSEMI
  3. bool "Microsemi devices"
  4. default y
  5. help
  6. If you have a network (Ethernet) card belonging to this class, say Y.
  7. Note that the answer to this question doesn't directly affect the
  8. kernel: saying N will just cause the configurator to skip all
  9. the questions about Microsemi devices.
  10. if NET_VENDOR_MICROSEMI
  11. config MSCC_OCELOT_SWITCH
  12. tristate "Ocelot switch driver"
  13. depends on NET_SWITCHDEV
  14. depends on HAS_IOMEM
  15. select PHYLIB
  16. select REGMAP_MMIO
  17. help
  18. This driver supports the Ocelot network switch device.
  19. config MSCC_OCELOT_SWITCH_OCELOT
  20. tristate "Ocelot switch driver on Ocelot"
  21. depends on MSCC_OCELOT_SWITCH
  22. help
  23. This driver supports the Ocelot network switch device as present on
  24. the Ocelot SoCs.
  25. endif # NET_VENDOR_MICROSEMI