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 7 select SYSC_R8A7743 if ARCH_R8A7743 8 select SYSC_R8A7745 if ARCH_R8A7745 9 select SYSC_R8A7779 if ARCH_R8A7779 10 select SYSC_R8A7790 if ARCH_R8A7790 11 select SYSC_R8A7791 if ARCH_R8A7791 || ARCH_R8A7793 12 select SYSC_R8A7792 if ARCH_R8A7792 13 select SYSC_R8A7794 if ARCH_R8A7794 14 select SYSC_R8A7795 if ARCH_R8A7795 15 select SYSC_R8A7796 if ARCH_R8A7796 16 17if SOC_RENESAS 18 19# SoC 20config SYSC_R8A7743 21 bool "RZ/G1M System Controller support" if COMPILE_TEST 22 select SYSC_RCAR 23 24config SYSC_R8A7745 25 bool "RZ/G1E System Controller support" if COMPILE_TEST 26 select SYSC_RCAR 27 28config SYSC_R8A7779 29 bool "R-Car H1 System Controller support" if COMPILE_TEST 30 select SYSC_RCAR 31 32config SYSC_R8A7790 33 bool "R-Car H2 System Controller support" if COMPILE_TEST 34 select SYSC_RCAR 35 36config SYSC_R8A7791 37 bool "R-Car M2-W/N System Controller support" if COMPILE_TEST 38 select SYSC_RCAR 39 40config SYSC_R8A7792 41 bool "R-Car V2H System Controller support" if COMPILE_TEST 42 select SYSC_RCAR 43 44config SYSC_R8A7794 45 bool "R-Car E2 System Controller support" if COMPILE_TEST 46 select SYSC_RCAR 47 48config SYSC_R8A7795 49 bool "R-Car H3 System Controller support" if COMPILE_TEST 50 select SYSC_RCAR 51 52config SYSC_R8A7796 53 bool "R-Car M3-W System Controller support" if COMPILE_TEST 54 select SYSC_RCAR 55 56# Family 57config RST_RCAR 58 bool "R-Car Reset Controller support" if COMPILE_TEST 59 60config SYSC_RCAR 61 bool "R-Car System Controller support" if COMPILE_TEST 62 63endif # SOC_RENESAS 64