1config SOC_RENESAS 2 bool "Renesas SoC driver support" if COMPILE_TEST && !ARCH_RENESAS 3 default y if ARCH_RENESAS 4 select SOC_BUS 5 select RST_RCAR if ARCH_RCAR_GEN1 || ARCH_RCAR_GEN2 || \ 6 ARCH_R8A7795 || ARCH_R8A7796 || ARCH_R8A77965 || \ 7 ARCH_R8A77970 || ARCH_R8A77980 || ARCH_R8A77995 8 select SYSC_R8A7743 if ARCH_R8A7743 9 select SYSC_R8A7745 if ARCH_R8A7745 10 select SYSC_R8A7779 if ARCH_R8A7779 11 select SYSC_R8A7790 if ARCH_R8A7790 12 select SYSC_R8A7791 if ARCH_R8A7791 || ARCH_R8A7793 13 select SYSC_R8A7792 if ARCH_R8A7792 14 select SYSC_R8A7794 if ARCH_R8A7794 15 select SYSC_R8A7795 if ARCH_R8A7795 16 select SYSC_R8A7796 if ARCH_R8A7796 17 select SYSC_R8A77965 if ARCH_R8A77965 18 select SYSC_R8A77970 if ARCH_R8A77970 19 select SYSC_R8A77980 if ARCH_R8A77980 20 select SYSC_R8A77995 if ARCH_R8A77995 21 22if SOC_RENESAS 23 24# SoC 25config SYSC_R8A7743 26 bool "RZ/G1M System Controller support" if COMPILE_TEST 27 select SYSC_RCAR 28 29config SYSC_R8A7745 30 bool "RZ/G1E System Controller support" if COMPILE_TEST 31 select SYSC_RCAR 32 33config SYSC_R8A7779 34 bool "R-Car H1 System Controller support" if COMPILE_TEST 35 select SYSC_RCAR 36 37config SYSC_R8A7790 38 bool "R-Car H2 System Controller support" if COMPILE_TEST 39 select SYSC_RCAR 40 41config SYSC_R8A7791 42 bool "R-Car M2-W/N System Controller support" if COMPILE_TEST 43 select SYSC_RCAR 44 45config SYSC_R8A7792 46 bool "R-Car V2H System Controller support" if COMPILE_TEST 47 select SYSC_RCAR 48 49config SYSC_R8A7794 50 bool "R-Car E2 System Controller support" if COMPILE_TEST 51 select SYSC_RCAR 52 53config SYSC_R8A7795 54 bool "R-Car H3 System Controller support" if COMPILE_TEST 55 select SYSC_RCAR 56 57config SYSC_R8A7796 58 bool "R-Car M3-W System Controller support" if COMPILE_TEST 59 select SYSC_RCAR 60 61config SYSC_R8A77965 62 bool "R-Car M3-N System Controller support" if COMPILE_TEST 63 select SYSC_RCAR 64 65config SYSC_R8A77970 66 bool "R-Car V3M System Controller support" if COMPILE_TEST 67 select SYSC_RCAR 68 69config SYSC_R8A77980 70 bool "R-Car V3H System Controller support" if COMPILE_TEST 71 select SYSC_RCAR 72 73config SYSC_R8A77995 74 bool "R-Car D3 System Controller support" if COMPILE_TEST 75 select SYSC_RCAR 76 77# Family 78config RST_RCAR 79 bool "R-Car Reset Controller support" if COMPILE_TEST 80 81config SYSC_RCAR 82 bool "R-Car System Controller support" if COMPILE_TEST 83 84endif # SOC_RENESAS 85