Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. depends on PTP_1588_CLOCK_OPTIONAL
  31. select CRC32
  32. select MII
  33. select MDIO_BITBANG
  34. select PHYLIB
  35. help
  36. Renesas Ethernet AVB device driver.
  37. This driver supports the following SoCs:
  38. - R8A779x.
  39. endif # NET_VENDOR_RENESAS