Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # Renesas 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. This driver supporting CPUs are:
  25. - SH7619, SH7710, SH7712, SH7724, SH7734, SH7763, SH7757,
  26. R8A7740, R8A774x, R8A777x and R8A779x.
  27. config RAVB
  28. tristate "Renesas Ethernet AVB support"
  29. depends on ARCH_RENESAS || COMPILE_TEST
  30. select CRC32
  31. select MII
  32. select MDIO_BITBANG
  33. select PHYLIB
  34. imply PTP_1588_CLOCK
  35. help
  36. Renesas Ethernet AVB device driver.
  37. This driver supports the following SoCs:
  38. - R8A779x.
  39. endif # NET_VENDOR_RENESAS