Kconfig 928 B

123456789101112131415161718192021222324252627282930313233
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Samsung Ethernet device configuration
  4. #
  5. config NET_VENDOR_SAMSUNG
  6. bool "Samsung Ethernet devices"
  7. default y
  8. help
  9. If you have a network (Ethernet) chipset belonging to this class,
  10. say Y.
  11. Note that the answer to this question does not directly affect
  12. the kernel: saying N will just cause the configurator to skip all
  13. the questions about Samsung chipsets. If you say Y, you will be asked
  14. for your specific chipset/driver in the following questions.
  15. if NET_VENDOR_SAMSUNG
  16. config SXGBE_ETH
  17. tristate "Samsung 10G/2.5G/1G SXGBE Ethernet driver"
  18. depends on HAS_IOMEM && HAS_DMA
  19. depends on PTP_1588_CLOCK_OPTIONAL
  20. select PHYLIB
  21. select CRC32
  22. help
  23. This is the driver for the SXGBE 10G Ethernet IP block found on
  24. Samsung platforms.
  25. To compile this driver as a module, choose M here: the module
  26. will be called samsung-sxgbe.
  27. endif # NET_VENDOR_SAMSUNG