diff options
author | Jagan Teki <jagannadh.teki@gmail.com> | 2017-10-16 08:16:22 -0400 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2017-10-17 15:11:09 -0400 |
commit | 8f6fc8245cfcd2b71567c564f87a7b0e5144736b (patch) | |
tree | 72a724d10a1817a57c099773453a50e3b4779613 | |
parent | 32739f1536a1b9ff0773d1357df1698c2ab52f1e (diff) |
ARM: dts: rockchip: Add regulators for rk3288-vyasa
Add supporting regulators for rk3288-vyasa board, dc12_vbat is
parent regulatorand followed regulators as are child regulators.
regulator naming conversion followed as per schematic for better
readability and easy for identification.
Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
-rw-r--r-- | arch/arm/boot/dts/rk3288-vyasa.dts | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/rk3288-vyasa.dts b/arch/arm/boot/dts/rk3288-vyasa.dts index 2231dd078a13..738796add05e 100644 --- a/arch/arm/boot/dts/rk3288-vyasa.dts +++ b/arch/arm/boot/dts/rk3288-vyasa.dts | |||
@@ -56,13 +56,53 @@ | |||
56 | device_type = "memory"; | 56 | device_type = "memory"; |
57 | }; | 57 | }; |
58 | 58 | ||
59 | dc12_vbat: dc12-vbat { | ||
60 | compatible = "regulator-fixed"; | ||
61 | regulator-name = "dc12_vbat"; | ||
62 | regulator-min-microvolt = <12000000>; | ||
63 | regulator-max-microvolt = <12000000>; | ||
64 | regulator-always-on; | ||
65 | regulator-boot-on; | ||
66 | }; | ||
67 | |||
68 | vboot_3v3: vboot-3v3 { | ||
69 | compatible = "regulator-fixed"; | ||
70 | regulator-name = "vboot_3v3"; | ||
71 | regulator-min-microvolt = <3300000>; | ||
72 | regulator-max-microvolt = <3300000>; | ||
73 | regulator-always-on; | ||
74 | regulator-boot-on; | ||
75 | vin-supply = <&dc12_vbat>; | ||
76 | }; | ||
77 | |||
59 | vcc_sys: vsys-regulator { | 78 | vcc_sys: vsys-regulator { |
60 | compatible = "regulator-fixed"; | 79 | compatible = "regulator-fixed"; |
61 | regulator-name = "vcc_sys"; | 80 | regulator-name = "vcc_sys"; |
81 | regulator-min-microvolt = <3700000>; | ||
82 | regulator-max-microvolt = <3700000>; | ||
83 | regulator-always-on; | ||
84 | regulator-boot-on; | ||
85 | vin-supply = <&dc12_vbat>; | ||
86 | }; | ||
87 | |||
88 | vboot_5v: vboot-5v { | ||
89 | compatible = "regulator-fixed"; | ||
90 | regulator-name = "vboot_sv"; | ||
62 | regulator-min-microvolt = <5000000>; | 91 | regulator-min-microvolt = <5000000>; |
63 | regulator-max-microvolt = <5000000>; | 92 | regulator-max-microvolt = <5000000>; |
64 | regulator-always-on; | 93 | regulator-always-on; |
65 | regulator-boot-on; | 94 | regulator-boot-on; |
95 | vin-supply = <&dc12_vbat>; | ||
96 | }; | ||
97 | |||
98 | v3g_3v3: v3g-3v3 { | ||
99 | compatible = "regulator-fixed"; | ||
100 | regulator-name = "v3g_3v3"; | ||
101 | regulator-min-microvolt = <3300000>; | ||
102 | regulator-max-microvolt = <3300000>; | ||
103 | regulator-always-on; | ||
104 | regulator-boot-on; | ||
105 | vin-supply = <&dc12_vbat>; | ||
66 | }; | 106 | }; |
67 | }; | 107 | }; |
68 | 108 | ||