Kconfig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # Renesas network device configuration
  4. #
  5. config NET_VENDOR_RENESAS
  6. bool "Renesas devices"
  7. default y
  8. help
  9. If you have a network (Ethernet) card belonging to this class, say Y.
  10. Note that the answer to this question doesn't directly affect the
  11. kernel: saying N will just cause the configurator to skip all
  12. the questions about Renesas devices. If you say Y, you will be asked
  13. for your specific device in the following questions.
  14. if NET_VENDOR_RENESAS
  15. config SH_ETH
  16. tristate "Renesas SuperH Ethernet support"
  17. depends on ARCH_RENESAS || SUPERH || COMPILE_TEST
  18. select CRC32
  19. select MII
  20. select MDIO_BITBANG
  21. select PHYLIB
  22. help
  23. Renesas SuperH Ethernet device driver.
  24. config RAVB
  25. tristate "Renesas Ethernet AVB support"
  26. depends on ARCH_RENESAS || COMPILE_TEST
  27. depends on PTP_1588_CLOCK_OPTIONAL
  28. select CRC32
  29. select MII
  30. select MDIO_BITBANG
  31. select PAGE_POOL
  32. select PHYLIB
  33. select RESET_CONTROLLER
  34. help
  35. Renesas Ethernet AVB device driver.
  36. config RENESAS_ETHER_SWITCH
  37. tristate "Renesas Ethernet Switch support"
  38. depends on ARCH_RENESAS || COMPILE_TEST
  39. depends on PTP_1588_CLOCK
  40. select CRC32
  41. select MII
  42. select PHYLINK
  43. select RENESAS_GEN4_PTP
  44. help
  45. Renesas Ethernet Switch device driver.
  46. config RENESAS_GEN4_PTP
  47. tristate "Renesas R-Car Gen4 gPTP support" if COMPILE_TEST
  48. depends on PTP_1588_CLOCK
  49. select CRC32
  50. select MII
  51. select PHYLIB
  52. help
  53. Renesas R-Car Gen4 gPTP device driver.
  54. config RTSN
  55. tristate "Renesas Ethernet-TSN support"
  56. depends on ARCH_RENESAS || COMPILE_TEST
  57. depends on PTP_1588_CLOCK
  58. select CRC32
  59. select PHYLIB
  60. select RENESAS_GEN4_PTP
  61. help
  62. Renesas Ethernet-TSN device driver.
  63. endif # NET_VENDOR_RENESAS