sunxi_power.c 5 KB
Newer Older
1
/*
2
 * Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
3
4
5
6
7
 * Copyright (c) 2018, Icenowy Zheng <icenowy@aosc.io>
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

8
#include <errno.h>
9

10
#include <platform_def.h>
11
12

#include <common/debug.h>
13
#include <drivers/allwinner/axp.h>
14
15
16
#include <drivers/allwinner/sunxi_rsb.h>
#include <lib/mmio.h>

17
18
#include <sunxi_def.h>
#include <sunxi_mmap.h>
19
#include <sunxi_private.h>
20

21
static enum pmic_type {
22
	UNKNOWN,
23
24
	GENERIC_H5,
	GENERIC_A64,
25
	REF_DESIGN_H5,	/* regulators controlled by GPIO pins on port L */
26
	AXP803_RSB,	/* PMIC connected via RSB on most A64 boards */
27
28
} pmic;

29
30
31
#define AXP803_HW_ADDR	0x3a3
#define AXP803_RT_ADDR	0x2d

32
33
34
35
36
37
38
/*
 * On boards without a proper PMIC we struggle to turn off the system properly.
 * Try to turn off as much off the system as we can, to reduce power
 * consumption. This should be entered with only one core running and SMP
 * disabled.
 * This function only cares about peripherals.
 */
39
static void sunxi_turn_off_soc(uint16_t socid)
40
{
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
	int i;

	/** Turn off most peripherals, most importantly DRAM users. **/
	/* Keep DRAM controller running for now. */
	mmio_clrbits_32(SUNXI_CCU_BASE + 0x2c0, ~BIT_32(14));
	mmio_clrbits_32(SUNXI_CCU_BASE + 0x60, ~BIT_32(14));
	/* Contains msgbox (bit 21) and spinlock (bit 22) */
	mmio_write_32(SUNXI_CCU_BASE + 0x2c4, 0);
	mmio_write_32(SUNXI_CCU_BASE + 0x64, 0);
	mmio_write_32(SUNXI_CCU_BASE + 0x2c8, 0);
	/* Keep PIO controller running for now. */
	mmio_clrbits_32(SUNXI_CCU_BASE + 0x68, ~(BIT_32(5)));
	mmio_write_32(SUNXI_CCU_BASE + 0x2d0, 0);
	/* Contains UART0 (bit 16) */
	mmio_write_32(SUNXI_CCU_BASE + 0x2d8, 0);
	mmio_write_32(SUNXI_CCU_BASE + 0x6c, 0);
	mmio_write_32(SUNXI_CCU_BASE + 0x70, 0);

	/** Turn off DRAM controller. **/
	mmio_clrbits_32(SUNXI_CCU_BASE + 0x2c0, BIT_32(14));
	mmio_clrbits_32(SUNXI_CCU_BASE + 0x60, BIT_32(14));
62

63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
	/** Migrate CPU and bus clocks away from the PLLs. **/
	/* AHB1: use OSC24M/1, APB1 = AHB1 / 2 */
	mmio_write_32(SUNXI_CCU_BASE + 0x54, 0x1000);
	/* APB2: use OSC24M */
	mmio_write_32(SUNXI_CCU_BASE + 0x58, 0x1000000);
	/* AHB2: use AHB1 clock */
	mmio_write_32(SUNXI_CCU_BASE + 0x5c, 0);
	/* CPU: use OSC24M */
	mmio_write_32(SUNXI_CCU_BASE + 0x50, 0x10000);

	/** Turn off PLLs. **/
	for (i = 0; i < 6; i++)
		mmio_clrbits_32(SUNXI_CCU_BASE + i * 8, BIT(31));
	switch (socid) {
	case SUNXI_SOC_H5:
		mmio_clrbits_32(SUNXI_CCU_BASE + 0x44, BIT(31));
		break;
	case SUNXI_SOC_A64:
		mmio_clrbits_32(SUNXI_CCU_BASE + 0x2c, BIT(31));
		mmio_clrbits_32(SUNXI_CCU_BASE + 0x4c, BIT(31));
		break;
	}
}

87
88
89
90
91
92
93
94
static int rsb_init(void)
{
	int ret;

	ret = rsb_init_controller();
	if (ret)
		return ret;

95
96
	/* Switch to the recommended 3 MHz bus clock. */
	ret = rsb_set_bus_speed(SUNXI_OSC24M_CLK_IN_HZ, 3000000);
97
98
99
	if (ret)
		return ret;

100
101
	/* Initiate an I2C transaction to switch the PMIC to RSB mode. */
	ret = rsb_set_device_mode(AXP20X_MODE_RSB << 16 | AXP20X_MODE_REG << 8);
102
103
104
105
	if (ret)
		return ret;

	/* Associate the 8-bit runtime address with the 12-bit bus address. */
106
107
108
	ret = rsb_assign_runtime_address(AXP803_HW_ADDR,
					 AXP803_RT_ADDR);
	if (ret)
109
110
		return ret;

111
	return axp_check_id();
112
113
}

114
int axp_read(uint8_t reg)
115
{
116
	return rsb_read(AXP803_RT_ADDR, reg);
117
118
}

119
int axp_write(uint8_t reg, uint8_t val)
120
{
121
	return rsb_write(AXP803_RT_ADDR, reg, val);
122
123
}

124
int sunxi_pmic_setup(uint16_t socid, const void *fdt)
125
{
126
127
	int ret;

128
129
	switch (socid) {
	case SUNXI_SOC_H5:
130
131
		NOTICE("PMIC: Assuming H5 reference regulator design\n");

132
		pmic = REF_DESIGN_H5;
133

134
135
136
		break;
	case SUNXI_SOC_A64:
		pmic = GENERIC_A64;
137
138
139

		INFO("PMIC: Probing AXP803 on RSB\n");

140
141
142
143
144
145
146
147
148
		ret = sunxi_init_platform_r_twi(socid, true);
		if (ret)
			return ret;

		ret = rsb_init();
		if (ret)
			return ret;

		pmic = AXP803_RSB;
149
		axp_setup_regulators(fdt);
150

151
152
153
154
155
		/* Switch the PMIC back to I2C mode. */
		ret = axp_write(AXP20X_MODE_REG, AXP20X_MODE_I2C);
		if (ret)
			return ret;

156
157
158
159
		break;
	default:
		return -ENODEV;
	}
160
161
	return 0;
}
162

163
void sunxi_power_down(void)
164
{
165
166
167
168
169
170
171
172
173
174
175
176
	switch (pmic) {
	case GENERIC_H5:
		/* Turn off as many peripherals and clocks as we can. */
		sunxi_turn_off_soc(SUNXI_SOC_H5);
		/* Turn off the pin controller now. */
		mmio_write_32(SUNXI_CCU_BASE + 0x68, 0);
		break;
	case GENERIC_A64:
		/* Turn off as many peripherals and clocks as we can. */
		sunxi_turn_off_soc(SUNXI_SOC_A64);
		/* Turn off the pin controller now. */
		mmio_write_32(SUNXI_CCU_BASE + 0x68, 0);
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
		break;
	case REF_DESIGN_H5:
		sunxi_turn_off_soc(SUNXI_SOC_H5);

		/*
		 * Switch PL pins to power off the board:
		 * - PL5 (VCC_IO) -> high
		 * - PL8 (PWR-STB = CPU power supply) -> low
		 * - PL9 (PWR-DRAM) ->low
		 * - PL10 (power LED) -> low
		 * Note: Clearing PL8 will reset the board, so keep it up.
		 */
		sunxi_set_gpio_out('L', 5, 1);
		sunxi_set_gpio_out('L', 9, 0);
		sunxi_set_gpio_out('L', 10, 0);

		/* Turn off pin controller now. */
		mmio_write_32(SUNXI_CCU_BASE + 0x68, 0);

196
197
198
199
200
		break;
	case AXP803_RSB:
		/* (Re-)init RSB in case the rich OS has disabled it. */
		sunxi_init_platform_r_twi(SUNXI_SOC_A64, true);
		rsb_init();
201
		axp_power_off();
202
203
204
205
206
		break;
	default:
		break;
	}

207
}