1# 2# Renesas device configuration 3# 4 5config 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 11 Note that the answer to this question doesn't directly affect the 12 kernel: saying N will just cause the configurator to skip all 13 the questions about Renesas devices. If you say Y, you will be asked 14 for your specific device in the following questions. 15 16if NET_VENDOR_RENESAS 17 18config SH_ETH 19 tristate "Renesas SuperH Ethernet support" 20 depends on ARCH_RENESAS || SUPERH || COMPILE_TEST 21 select CRC32 22 select MII 23 select MDIO_BITBANG 24 select PHYLIB 25 ---help--- 26 Renesas SuperH Ethernet device driver. 27 This driver supporting CPUs are: 28 - SH7619, SH7710, SH7712, SH7724, SH7734, SH7763, SH7757, 29 R8A7740, R8A774x, R8A777x and R8A779x. 30 31config RAVB 32 tristate "Renesas Ethernet AVB support" 33 depends on ARCH_RENESAS || COMPILE_TEST 34 select CRC32 35 select MII 36 select MDIO_BITBANG 37 select PHYLIB 38 imply PTP_1588_CLOCK 39 help 40 Renesas Ethernet AVB device driver. 41 This driver supports the following SoCs: 42 - R8A779x. 43 44endif # NET_VENDOR_RENESAS 45