0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #include <linux/bits.h>
0011 #include <linux/kernel.h>
0012
0013 #include <dt-bindings/power/r8a774b1-sysc.h>
0014
0015 #include "rcar-sysc.h"
0016
0017 static const struct rcar_sysc_area r8a774b1_areas[] __initconst = {
0018 { "always-on", 0, 0, R8A774B1_PD_ALWAYS_ON, -1, PD_ALWAYS_ON },
0019 { "ca57-scu", 0x1c0, 0, R8A774B1_PD_CA57_SCU, R8A774B1_PD_ALWAYS_ON,
0020 PD_SCU },
0021 { "ca57-cpu0", 0x80, 0, R8A774B1_PD_CA57_CPU0, R8A774B1_PD_CA57_SCU,
0022 PD_CPU_NOCR },
0023 { "ca57-cpu1", 0x80, 1, R8A774B1_PD_CA57_CPU1, R8A774B1_PD_CA57_SCU,
0024 PD_CPU_NOCR },
0025 { "a3vc", 0x380, 0, R8A774B1_PD_A3VC, R8A774B1_PD_ALWAYS_ON },
0026 { "a3vp", 0x340, 0, R8A774B1_PD_A3VP, R8A774B1_PD_ALWAYS_ON },
0027 { "a2vc1", 0x3c0, 1, R8A774B1_PD_A2VC1, R8A774B1_PD_A3VC },
0028 { "3dg-a", 0x100, 0, R8A774B1_PD_3DG_A, R8A774B1_PD_ALWAYS_ON },
0029 { "3dg-b", 0x100, 1, R8A774B1_PD_3DG_B, R8A774B1_PD_3DG_A },
0030 };
0031
0032 const struct rcar_sysc_info r8a774b1_sysc_info __initconst = {
0033 .areas = r8a774b1_areas,
0034 .num_areas = ARRAY_SIZE(r8a774b1_areas),
0035 .extmask_offs = 0x2f8,
0036 .extmask_val = BIT(0),
0037 };