1# SPDX-License-Identifier: GPL-2.0 2if SOC_RENESAS 3menu "Renesas PM Domains" 4 5# SoC Family 6config SYSC_RCAR 7 bool "System Controller support for R-Car" if COMPILE_TEST 8 9config SYSC_RCAR_GEN4 10 bool "System Controller support for R-Car Gen4" if COMPILE_TEST 11 12config SYSC_RMOBILE 13 bool "System Controller support for R-Mobile" if COMPILE_TEST 14 15# SoC 16config SYSC_R8A7742 17 bool "System Controller support for R8A7742 (RZ/G1H)" if COMPILE_TEST 18 select SYSC_RCAR 19 20config SYSC_R8A7743 21 bool "System Controller support for R8A7743 (RZ/G1M)" if COMPILE_TEST 22 select SYSC_RCAR 23 24config SYSC_R8A7745 25 bool "System Controller support for R8A7745 (RZ/G1E)" if COMPILE_TEST 26 select SYSC_RCAR 27 28config SYSC_R8A77470 29 bool "System Controller support for R8A77470 (RZ/G1C)" if COMPILE_TEST 30 select SYSC_RCAR 31 32config SYSC_R8A774A1 33 bool "System Controller support for R8A774A1 (RZ/G2M)" if COMPILE_TEST 34 select SYSC_RCAR 35 36config SYSC_R8A774B1 37 bool "System Controller support for R8A774B1 (RZ/G2N)" if COMPILE_TEST 38 select SYSC_RCAR 39 40config SYSC_R8A774C0 41 bool "System Controller support for R8A774C0 (RZ/G2E)" if COMPILE_TEST 42 select SYSC_RCAR 43 44config SYSC_R8A774E1 45 bool "System Controller support for R8A774E1 (RZ/G2H)" if COMPILE_TEST 46 select SYSC_RCAR 47 48config SYSC_R8A7779 49 bool "System Controller support for R8A7779 (R-Car H1)" if COMPILE_TEST 50 select SYSC_RCAR 51 52config SYSC_R8A7790 53 bool "System Controller support for R8A7790 (R-Car H2)" if COMPILE_TEST 54 select SYSC_RCAR 55 56config SYSC_R8A7791 57 bool "System Controller support for R8A7791/R8A7793 (R-Car M2-W/N)" if COMPILE_TEST 58 select SYSC_RCAR 59 60config SYSC_R8A7792 61 bool "System Controller support for R8A7792 (R-Car V2H)" if COMPILE_TEST 62 select SYSC_RCAR 63 64config SYSC_R8A7794 65 bool "System Controller support for R8A7794 (R-Car E2)" if COMPILE_TEST 66 select SYSC_RCAR 67 68config SYSC_R8A7795 69 bool "System Controller support for R8A7795 (R-Car H3)" if COMPILE_TEST 70 select SYSC_RCAR 71 72config SYSC_R8A77960 73 bool "System Controller support for R8A77960 (R-Car M3-W)" if COMPILE_TEST 74 select SYSC_RCAR 75 76config SYSC_R8A77961 77 bool "System Controller support for R8A77961 (R-Car M3-W+)" if COMPILE_TEST 78 select SYSC_RCAR 79 80config SYSC_R8A77965 81 bool "System Controller support for R8A77965 (R-Car M3-N)" if COMPILE_TEST 82 select SYSC_RCAR 83 84config SYSC_R8A77970 85 bool "System Controller support for R8A77970 (R-Car V3M)" if COMPILE_TEST 86 select SYSC_RCAR 87 88config SYSC_R8A77980 89 bool "System Controller support for R8A77980 (R-Car V3H)" if COMPILE_TEST 90 select SYSC_RCAR 91 92config SYSC_R8A77990 93 bool "System Controller support for R8A77990 (R-Car E3)" if COMPILE_TEST 94 select SYSC_RCAR 95 96config SYSC_R8A77995 97 bool "System Controller support for R8A77995 (R-Car D3)" if COMPILE_TEST 98 select SYSC_RCAR 99 100config SYSC_R8A779A0 101 bool "System Controller support for R8A779A0 (R-Car V3U)" if COMPILE_TEST 102 select SYSC_RCAR_GEN4 103 104config SYSC_R8A779F0 105 bool "System Controller support for R8A779F0 (R-Car S4-8)" if COMPILE_TEST 106 select SYSC_RCAR_GEN4 107 108config SYSC_R8A779G0 109 bool "System Controller support for R8A779G0 (R-Car V4H)" if COMPILE_TEST 110 select SYSC_RCAR_GEN4 111 112config SYSC_R8A779H0 113 bool "System Controller support for R8A779H0 (R-Car V4M)" if COMPILE_TEST 114 select SYSC_RCAR_GEN4 115 116endmenu 117endif 118