Kconfig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Intel XScale IXP device configuration
  4. #
  5. config NET_VENDOR_XSCALE
  6. bool "Intel XScale IXP devices"
  7. default y
  8. depends on NET_VENDOR_INTEL && (ARM && ARCH_IXP4XX && \
  9. IXP4XX_NPE && IXP4XX_QMGR)
  10. help
  11. If you have a network (Ethernet) card belonging to this class, say Y.
  12. Note that the answer to this question does not directly affect the
  13. kernel: saying N will just cause the configurator to skip all
  14. the questions about XScale IXP devices. If you say Y, you will be
  15. asked for your specific card in the following questions.
  16. if NET_VENDOR_XSCALE
  17. config IXP4XX_ETH
  18. tristate "Intel IXP4xx Ethernet support"
  19. depends on ARM && ARCH_IXP4XX && IXP4XX_NPE && IXP4XX_QMGR && OF
  20. select PHYLIB
  21. select OF_MDIO
  22. select NET_PTP_CLASSIFY
  23. help
  24. Say Y here if you want to use built-in Ethernet ports
  25. on IXP4xx processor.
  26. config PTP_1588_CLOCK_IXP46X
  27. bool "Intel IXP46x as PTP clock"
  28. depends on IXP4XX_ETH
  29. depends on PTP_1588_CLOCK=y || PTP_1588_CLOCK=IXP4XX_ETH
  30. default y
  31. help
  32. This driver adds support for using the IXP46X as a PTP
  33. clock. This clock is only useful if your PTP programs are
  34. getting hardware time stamps on the PTP Ethernet packets
  35. using the SO_TIMESTAMPING API.
  36. To compile this driver as a module, choose M here: the module
  37. will be called ptp_ixp46x.
  38. endif # NET_VENDOR_XSCALE