Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #
  2. # Renesas device configuration
  3. #
  4. config NET_VENDOR_RENESAS
  5. bool "Renesas devices"
  6. default y
  7. ---help---
  8. If you have a network (Ethernet) card belonging to this class, say Y.
  9. Note that the answer to this question doesn't directly affect the
  10. kernel: saying N will just cause the configurator to skip all
  11. the questions about Renesas devices. If you say Y, you will be asked
  12. for your specific device in the following questions.
  13. if NET_VENDOR_RENESAS
  14. config SH_ETH
  15. tristate "Renesas SuperH Ethernet support"
  16. depends on HAS_DMA
  17. depends on ARCH_SHMOBILE || 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, R8A777x and R8A779x.
  27. config RAVB
  28. tristate "Renesas Ethernet AVB support"
  29. depends on HAS_DMA
  30. depends on ARCH_SHMOBILE || COMPILE_TEST
  31. select CRC32
  32. select MII
  33. select MDIO_BITBANG
  34. select PHYLIB
  35. select PTP_1588_CLOCK
  36. help
  37. Renesas Ethernet AVB device driver.
  38. This driver supports the following SoCs:
  39. - R8A779x.
  40. endif # NET_VENDOR_RENESAS