xref: /rk3399_ARM-atf/plat/allwinner/sun50i_a64/sunxi_power.c (revision d93eb4467a0ca09d359f242b19f584a58e4e805b)
1 /*
2  * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
3  * Copyright (c) 2018, Icenowy Zheng <icenowy@aosc.io>
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #include <allwinner/sunxi_rsb.h>
9 #include <arch_helpers.h>
10 #include <debug.h>
11 #include <delay_timer.h>
12 #include <errno.h>
13 #include <libfdt.h>
14 #include <mmio.h>
15 #include <platform_def.h>
16 #include <sunxi_def.h>
17 #include <sunxi_mmap.h>
18 #include <sunxi_private.h>
19 
20 static enum pmic_type {
21 	GENERIC_H5,
22 	GENERIC_A64,
23 	REF_DESIGN_H5,	/* regulators controlled by GPIO pins on port L */
24 	AXP803_RSB,	/* PMIC connected via RSB on most A64 boards */
25 } pmic;
26 
27 #define AXP803_HW_ADDR	0x3a3
28 #define AXP803_RT_ADDR	0x2d
29 
30 /*
31  * On boards without a proper PMIC we struggle to turn off the system properly.
32  * Try to turn off as much off the system as we can, to reduce power
33  * consumption. This should be entered with only one core running and SMP
34  * disabled.
35  * This function only cares about peripherals.
36  */
37 void sunxi_turn_off_soc(uint16_t socid)
38 {
39 	int i;
40 
41 	/** Turn off most peripherals, most importantly DRAM users. **/
42 	/* Keep DRAM controller running for now. */
43 	mmio_clrbits_32(SUNXI_CCU_BASE + 0x2c0, ~BIT_32(14));
44 	mmio_clrbits_32(SUNXI_CCU_BASE + 0x60, ~BIT_32(14));
45 	/* Contains msgbox (bit 21) and spinlock (bit 22) */
46 	mmio_write_32(SUNXI_CCU_BASE + 0x2c4, 0);
47 	mmio_write_32(SUNXI_CCU_BASE + 0x64, 0);
48 	mmio_write_32(SUNXI_CCU_BASE + 0x2c8, 0);
49 	/* Keep PIO controller running for now. */
50 	mmio_clrbits_32(SUNXI_CCU_BASE + 0x68, ~(BIT_32(5)));
51 	mmio_write_32(SUNXI_CCU_BASE + 0x2d0, 0);
52 	/* Contains UART0 (bit 16) */
53 	mmio_write_32(SUNXI_CCU_BASE + 0x2d8, 0);
54 	mmio_write_32(SUNXI_CCU_BASE + 0x6c, 0);
55 	mmio_write_32(SUNXI_CCU_BASE + 0x70, 0);
56 
57 	/** Turn off DRAM controller. **/
58 	mmio_clrbits_32(SUNXI_CCU_BASE + 0x2c0, BIT_32(14));
59 	mmio_clrbits_32(SUNXI_CCU_BASE + 0x60, BIT_32(14));
60 
61 	/** Migrate CPU and bus clocks away from the PLLs. **/
62 	/* AHB1: use OSC24M/1, APB1 = AHB1 / 2 */
63 	mmio_write_32(SUNXI_CCU_BASE + 0x54, 0x1000);
64 	/* APB2: use OSC24M */
65 	mmio_write_32(SUNXI_CCU_BASE + 0x58, 0x1000000);
66 	/* AHB2: use AHB1 clock */
67 	mmio_write_32(SUNXI_CCU_BASE + 0x5c, 0);
68 	/* CPU: use OSC24M */
69 	mmio_write_32(SUNXI_CCU_BASE + 0x50, 0x10000);
70 
71 	/** Turn off PLLs. **/
72 	for (i = 0; i < 6; i++)
73 		mmio_clrbits_32(SUNXI_CCU_BASE + i * 8, BIT(31));
74 	switch (socid) {
75 	case SUNXI_SOC_H5:
76 		mmio_clrbits_32(SUNXI_CCU_BASE + 0x44, BIT(31));
77 		break;
78 	case SUNXI_SOC_A64:
79 		mmio_clrbits_32(SUNXI_CCU_BASE + 0x2c, BIT(31));
80 		mmio_clrbits_32(SUNXI_CCU_BASE + 0x4c, BIT(31));
81 		break;
82 	}
83 }
84 
85 static int rsb_init(void)
86 {
87 	int ret;
88 
89 	ret = rsb_init_controller();
90 	if (ret)
91 		return ret;
92 
93 	/* Start with 400 KHz to issue the I2C->RSB switch command. */
94 	ret = rsb_set_bus_speed(SUNXI_OSC24M_CLK_IN_HZ, 400000);
95 	if (ret)
96 		return ret;
97 
98 	/*
99 	 * Initiate an I2C transaction to write 0x7c into register 0x3e,
100 	 * switching the PMIC to RSB mode.
101 	 */
102 	ret = rsb_set_device_mode(0x7c3e00);
103 	if (ret)
104 		return ret;
105 
106 	/* Now in RSB mode, switch to the recommended 3 MHz. */
107 	ret = rsb_set_bus_speed(SUNXI_OSC24M_CLK_IN_HZ, 3000000);
108 	if (ret)
109 		return ret;
110 
111 	/* Associate the 8-bit runtime address with the 12-bit bus address. */
112 	return rsb_assign_runtime_address(AXP803_HW_ADDR,
113 					  AXP803_RT_ADDR);
114 }
115 
116 static int axp_write(uint8_t reg, uint8_t val)
117 {
118 	return rsb_write(AXP803_RT_ADDR, reg, val);
119 }
120 
121 static int axp_clrsetbits(uint8_t reg, uint8_t clr_mask, uint8_t set_mask)
122 {
123 	uint8_t regval;
124 	int ret;
125 
126 	ret = rsb_read(AXP803_RT_ADDR, reg);
127 	if (ret < 0)
128 		return ret;
129 
130 	regval = (ret & ~clr_mask) | set_mask;
131 
132 	return rsb_write(AXP803_RT_ADDR, reg, regval);
133 }
134 
135 #define axp_clrbits(reg, clr_mask) axp_clrsetbits(reg, clr_mask, 0)
136 #define axp_setbits(reg, set_mask) axp_clrsetbits(reg, 0, set_mask)
137 
138 static bool should_enable_regulator(const void *fdt, int node)
139 {
140 	if (fdt_getprop(fdt, node, "phandle", NULL) != NULL)
141 		return true;
142 	if (fdt_getprop(fdt, node, "regulator-always-on", NULL) != NULL)
143 		return true;
144 	return false;
145 }
146 
147 /*
148  * Retrieve the voltage from a given regulator DTB node.
149  * Both the regulator-{min,max}-microvolt properties must be present and
150  * have the same value. Return that value in millivolts.
151  */
152 static int fdt_get_regulator_millivolt(const void *fdt, int node)
153 {
154 	const fdt32_t *prop;
155 	uint32_t min_volt;
156 
157 	prop = fdt_getprop(fdt, node, "regulator-min-microvolt", NULL);
158 	if (prop == NULL)
159 		return -EINVAL;
160 	min_volt = fdt32_to_cpu(*prop);
161 
162 	prop = fdt_getprop(fdt, node, "regulator-max-microvolt", NULL);
163 	if (prop == NULL)
164 		return -EINVAL;
165 
166 	if (fdt32_to_cpu(*prop) != min_volt)
167 		return -EINVAL;
168 
169 	return min_volt / 1000;
170 }
171 
172 #define NO_SPLIT 0xff
173 
174 struct axp_regulator {
175 	char *dt_name;
176 	uint16_t min_volt;
177 	uint16_t max_volt;
178 	uint16_t step;
179 	unsigned char split;
180 	unsigned char volt_reg;
181 	unsigned char switch_reg;
182 	unsigned char switch_bit;
183 } regulators[] = {
184 	{"dcdc1", 1600, 3400, 100, NO_SPLIT, 0x20, 0xff, 9},
185 	{"dcdc5",  800, 1840,  10,       32, 0x24, 0xff, 9},
186 	{"dldo1",  700, 3300, 100, NO_SPLIT, 0x15, 0x12, 3},
187 	{"dldo2",  700, 4200, 100,       27, 0x16, 0x12, 4},
188 	{"dldo3",  700, 3300, 100, NO_SPLIT, 0x17, 0x12, 5},
189 	{"fldo1",  700, 1450,  50, NO_SPLIT, 0x1c, 0x13, 2},
190 	{}
191 };
192 
193 static int setup_regulator(const void *fdt, int node,
194 			   const struct axp_regulator *reg)
195 {
196 	int mvolt;
197 	uint8_t regval;
198 
199 	if (!should_enable_regulator(fdt, node))
200 		return -ENOENT;
201 
202 	mvolt = fdt_get_regulator_millivolt(fdt, node);
203 	if (mvolt < reg->min_volt || mvolt > reg->max_volt)
204 		return -EINVAL;
205 
206 	regval = (mvolt / reg->step) - (reg->min_volt / reg->step);
207 	if (regval > reg->split)
208 		regval = ((regval - reg->split) / 2) + reg->split;
209 
210 	axp_write(reg->volt_reg, regval);
211 	if (reg->switch_reg < 0xff)
212 		axp_setbits(reg->switch_reg, BIT(reg->switch_bit));
213 
214 	INFO("PMIC: AXP803: %s voltage: %d.%03dV\n", reg->dt_name,
215 	     mvolt / 1000, mvolt % 1000);
216 
217 	return 0;
218 }
219 
220 static void setup_axp803_rails(const void *fdt)
221 {
222 	int node;
223 	bool dc1sw = false;
224 
225 	/* locate the PMIC DT node, bail out if not found */
226 	node = fdt_node_offset_by_compatible(fdt, -1, "x-powers,axp803");
227 	if (node == -FDT_ERR_NOTFOUND) {
228 		WARN("BL31: PMIC: No AXP803 DT node, skipping initial setup.\n");
229 		return;
230 	}
231 
232 	if (fdt_getprop(fdt, node, "x-powers,drive-vbus-en", NULL)) {
233 		axp_clrbits(0x8f, BIT(4));
234 		axp_setbits(0x30, BIT(2));
235 		INFO("PMIC: AXP803: Enabling DRIVEVBUS\n");
236 	}
237 
238 	/* descend into the "regulators" subnode */
239 	node = fdt_first_subnode(fdt, node);
240 
241 	/* iterate over all regulators to find used ones */
242 	for (node = fdt_first_subnode(fdt, node);
243 	     node != -FDT_ERR_NOTFOUND;
244 	     node = fdt_next_subnode(fdt, node)) {
245 		struct axp_regulator *reg;
246 		const char *name;
247 		int length;
248 
249 		/* We only care if it's always on or referenced. */
250 		if (!should_enable_regulator(fdt, node))
251 			continue;
252 
253 		name = fdt_get_name(fdt, node, &length);
254 		for (reg = regulators; reg->dt_name; reg++) {
255 			if (!strncmp(name, reg->dt_name, length)) {
256 				setup_regulator(fdt, node, reg);
257 				break;
258 			}
259 		}
260 
261 		if (!strncmp(name, "dc1sw", length)) {
262 			/* Delay DC1SW enablement to avoid overheating. */
263 			dc1sw = true;
264 			continue;
265 		}
266 	}
267 	/*
268 	 * If DLDO2 is enabled after DC1SW, the PMIC overheats and shuts
269 	 * down. So always enable DC1SW as the very last regulator.
270 	 */
271 	if (dc1sw) {
272 		INFO("PMIC: AXP803: Enabling DC1SW\n");
273 		axp_setbits(0x12, BIT(7));
274 	}
275 }
276 
277 int sunxi_pmic_setup(uint16_t socid, const void *fdt)
278 {
279 	int ret;
280 
281 	switch (socid) {
282 	case SUNXI_SOC_H5:
283 		pmic = REF_DESIGN_H5;
284 		NOTICE("BL31: PMIC: Defaulting to PortL GPIO according to H5 reference design.\n");
285 		break;
286 	case SUNXI_SOC_A64:
287 		pmic = GENERIC_A64;
288 		ret = sunxi_init_platform_r_twi(socid, true);
289 		if (ret)
290 			return ret;
291 
292 		ret = rsb_init();
293 		if (ret)
294 			return ret;
295 
296 		pmic = AXP803_RSB;
297 		NOTICE("BL31: PMIC: Detected AXP803 on RSB.\n");
298 
299 		if (fdt)
300 			setup_axp803_rails(fdt);
301 
302 		break;
303 	default:
304 		NOTICE("BL31: PMIC: No support for Allwinner %x SoC.\n", socid);
305 		return -ENODEV;
306 	}
307 	return 0;
308 }
309 
310 void __dead2 sunxi_power_down(void)
311 {
312 	switch (pmic) {
313 	case GENERIC_H5:
314 		/* Turn off as many peripherals and clocks as we can. */
315 		sunxi_turn_off_soc(SUNXI_SOC_H5);
316 		/* Turn off the pin controller now. */
317 		mmio_write_32(SUNXI_CCU_BASE + 0x68, 0);
318 		break;
319 	case GENERIC_A64:
320 		/* Turn off as many peripherals and clocks as we can. */
321 		sunxi_turn_off_soc(SUNXI_SOC_A64);
322 		/* Turn off the pin controller now. */
323 		mmio_write_32(SUNXI_CCU_BASE + 0x68, 0);
324 		break;
325 	case REF_DESIGN_H5:
326 		sunxi_turn_off_soc(SUNXI_SOC_H5);
327 
328 		/*
329 		 * Switch PL pins to power off the board:
330 		 * - PL5 (VCC_IO) -> high
331 		 * - PL8 (PWR-STB = CPU power supply) -> low
332 		 * - PL9 (PWR-DRAM) ->low
333 		 * - PL10 (power LED) -> low
334 		 * Note: Clearing PL8 will reset the board, so keep it up.
335 		 */
336 		sunxi_set_gpio_out('L', 5, 1);
337 		sunxi_set_gpio_out('L', 9, 0);
338 		sunxi_set_gpio_out('L', 10, 0);
339 
340 		/* Turn off pin controller now. */
341 		mmio_write_32(SUNXI_CCU_BASE + 0x68, 0);
342 
343 		break;
344 	case AXP803_RSB:
345 		/* (Re-)init RSB in case the rich OS has disabled it. */
346 		sunxi_init_platform_r_twi(SUNXI_SOC_A64, true);
347 		rsb_init();
348 
349 		/* Set "power disable control" bit */
350 		axp_setbits(0x32, BIT(7));
351 		break;
352 	default:
353 		break;
354 	}
355 
356 	udelay(1000);
357 	ERROR("PSCI: Cannot turn off system, halting.\n");
358 	wfi();
359 	panic();
360 }
361