Icenowy Zheng | 7508bef | 2018-07-21 20:41:12 +0800 | [diff] [blame] | 1 | /* |
Samuel Holland | f95b368 | 2019-10-20 15:12:20 -0500 | [diff] [blame] | 2 | * Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved. |
Icenowy Zheng | 7508bef | 2018-07-21 20:41:12 +0800 | [diff] [blame] | 3 | * Copyright (c) 2018, Icenowy Zheng <icenowy@aosc.io> |
| 4 | * |
| 5 | * SPDX-License-Identifier: BSD-3-Clause |
| 6 | */ |
| 7 | |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 8 | #include <errno.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 9 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 10 | #include <common/debug.h> |
Samuel Holland | 1dad265 | 2019-10-20 21:34:38 -0500 | [diff] [blame] | 11 | #include <drivers/allwinner/axp.h> |
Samuel Holland | cb093f2 | 2020-12-13 22:34:10 -0600 | [diff] [blame] | 12 | #include <drivers/allwinner/sunxi_rsb.h> |
Andre Przywara | 5176075 | 2021-02-14 23:56:04 +0000 | [diff] [blame] | 13 | #include <lib/mmio.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 14 | |
Andre Przywara | 5176075 | 2021-02-14 23:56:04 +0000 | [diff] [blame] | 15 | #include <sunxi_cpucfg.h> |
Andre Przywara | 6753776 | 2018-10-14 22:13:53 +0100 | [diff] [blame] | 16 | #include <sunxi_def.h> |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 17 | #include <sunxi_mmap.h> |
Andre Przywara | 456208a | 2018-10-14 12:02:02 +0100 | [diff] [blame] | 18 | #include <sunxi_private.h> |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 19 | |
Samuel Holland | cb093f2 | 2020-12-13 22:34:10 -0600 | [diff] [blame] | 20 | #define AXP805_HW_ADDR 0x745 |
| 21 | #define AXP805_RT_ADDR 0x3a |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 22 | |
Samuel Holland | f95b368 | 2019-10-20 15:12:20 -0500 | [diff] [blame] | 23 | static enum pmic_type { |
| 24 | UNKNOWN, |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 25 | AXP805, |
Samuel Holland | f95b368 | 2019-10-20 15:12:20 -0500 | [diff] [blame] | 26 | } pmic; |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 27 | |
Samuel Holland | 1dad265 | 2019-10-20 21:34:38 -0500 | [diff] [blame] | 28 | int axp_read(uint8_t reg) |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 29 | { |
Samuel Holland | cb093f2 | 2020-12-13 22:34:10 -0600 | [diff] [blame] | 30 | return rsb_read(AXP805_RT_ADDR, reg); |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 31 | } |
| 32 | |
Samuel Holland | 1dad265 | 2019-10-20 21:34:38 -0500 | [diff] [blame] | 33 | int axp_write(uint8_t reg, uint8_t val) |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 34 | { |
Samuel Holland | cb093f2 | 2020-12-13 22:34:10 -0600 | [diff] [blame] | 35 | return rsb_write(AXP805_RT_ADDR, reg, val); |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 36 | } |
| 37 | |
Samuel Holland | cb093f2 | 2020-12-13 22:34:10 -0600 | [diff] [blame] | 38 | static int rsb_init(void) |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 39 | { |
| 40 | int ret; |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 41 | |
Samuel Holland | cb093f2 | 2020-12-13 22:34:10 -0600 | [diff] [blame] | 42 | ret = rsb_init_controller(); |
Samuel Holland | f39fd86 | 2019-10-20 15:28:14 -0500 | [diff] [blame] | 43 | if (ret) |
| 44 | return ret; |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 45 | |
Samuel Holland | cb093f2 | 2020-12-13 22:34:10 -0600 | [diff] [blame] | 46 | /* Switch to the recommended 3 MHz bus clock. */ |
| 47 | ret = rsb_set_bus_speed(SUNXI_OSC24M_CLK_IN_HZ, 3000000); |
Samuel Holland | f39fd86 | 2019-10-20 15:28:14 -0500 | [diff] [blame] | 48 | if (ret) |
| 49 | return ret; |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 50 | |
Samuel Holland | cb093f2 | 2020-12-13 22:34:10 -0600 | [diff] [blame] | 51 | /* Initiate an I2C transaction to switch the PMIC to RSB mode. */ |
| 52 | ret = rsb_set_device_mode(AXP20X_MODE_RSB << 16 | AXP20X_MODE_REG << 8); |
| 53 | if (ret) |
| 54 | return ret; |
| 55 | |
| 56 | /* Associate the 8-bit runtime address with the 12-bit bus address. */ |
| 57 | ret = rsb_assign_runtime_address(AXP805_HW_ADDR, AXP805_RT_ADDR); |
| 58 | if (ret) |
| 59 | return ret; |
| 60 | |
| 61 | return axp_check_id(); |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 62 | } |
Icenowy Zheng | 7508bef | 2018-07-21 20:41:12 +0800 | [diff] [blame] | 63 | |
Andre Przywara | 4e4b1e6 | 2018-09-08 19:18:37 +0100 | [diff] [blame] | 64 | int sunxi_pmic_setup(uint16_t socid, const void *fdt) |
Icenowy Zheng | 7508bef | 2018-07-21 20:41:12 +0800 | [diff] [blame] | 65 | { |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 66 | int ret; |
| 67 | |
Samuel Holland | cb093f2 | 2020-12-13 22:34:10 -0600 | [diff] [blame] | 68 | INFO("PMIC: Probing AXP805 on RSB\n"); |
Samuel Holland | f39fd86 | 2019-10-20 15:28:14 -0500 | [diff] [blame] | 69 | |
Samuel Holland | cb093f2 | 2020-12-13 22:34:10 -0600 | [diff] [blame] | 70 | ret = sunxi_init_platform_r_twi(socid, true); |
Samuel Holland | f39fd86 | 2019-10-20 15:28:14 -0500 | [diff] [blame] | 71 | if (ret) |
| 72 | return ret; |
| 73 | |
Samuel Holland | cb093f2 | 2020-12-13 22:34:10 -0600 | [diff] [blame] | 74 | ret = rsb_init(); |
| 75 | if (ret) |
| 76 | return ret; |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 77 | |
Samuel Holland | cb093f2 | 2020-12-13 22:34:10 -0600 | [diff] [blame] | 78 | /* Switch the AXP805 to master/single-PMIC mode. */ |
| 79 | ret = axp_write(0xff, 0x0); |
Icenowy Zheng | 8d76982 | 2018-07-22 21:30:14 +0800 | [diff] [blame] | 80 | if (ret) |
Samuel Holland | f95b368 | 2019-10-20 15:12:20 -0500 | [diff] [blame] | 81 | return ret; |
| 82 | |
| 83 | pmic = AXP805; |
Samuel Holland | 1dad265 | 2019-10-20 21:34:38 -0500 | [diff] [blame] | 84 | axp_setup_regulators(fdt); |
Icenowy Zheng | 7508bef | 2018-07-21 20:41:12 +0800 | [diff] [blame] | 85 | |
Samuel Holland | cb093f2 | 2020-12-13 22:34:10 -0600 | [diff] [blame] | 86 | /* Switch the PMIC back to I2C mode. */ |
| 87 | ret = axp_write(AXP20X_MODE_REG, AXP20X_MODE_I2C); |
| 88 | if (ret) |
| 89 | return ret; |
| 90 | |
Icenowy Zheng | 7508bef | 2018-07-21 20:41:12 +0800 | [diff] [blame] | 91 | return 0; |
| 92 | } |
Icenowy Zheng | bd57eb5 | 2018-07-22 21:52:50 +0800 | [diff] [blame] | 93 | |
Samuel Holland | fa4d935 | 2019-10-20 15:06:57 -0500 | [diff] [blame] | 94 | void sunxi_power_down(void) |
Icenowy Zheng | bd57eb5 | 2018-07-22 21:52:50 +0800 | [diff] [blame] | 95 | { |
Icenowy Zheng | bd57eb5 | 2018-07-22 21:52:50 +0800 | [diff] [blame] | 96 | switch (pmic) { |
| 97 | case AXP805: |
Samuel Holland | cb093f2 | 2020-12-13 22:34:10 -0600 | [diff] [blame] | 98 | /* (Re-)init RSB in case the rich OS has disabled it. */ |
| 99 | sunxi_init_platform_r_twi(SUNXI_SOC_H6, true); |
| 100 | rsb_init(); |
Samuel Holland | 1dad265 | 2019-10-20 21:34:38 -0500 | [diff] [blame] | 101 | axp_power_off(); |
Icenowy Zheng | bd57eb5 | 2018-07-22 21:52:50 +0800 | [diff] [blame] | 102 | break; |
| 103 | default: |
| 104 | break; |
| 105 | } |
Icenowy Zheng | bd57eb5 | 2018-07-22 21:52:50 +0800 | [diff] [blame] | 106 | } |
Andre Przywara | 5176075 | 2021-02-14 23:56:04 +0000 | [diff] [blame] | 107 | |
| 108 | void sunxi_cpu_power_off_self(void) |
| 109 | { |
| 110 | u_register_t mpidr = read_mpidr(); |
| 111 | unsigned int core = MPIDR_AFFLVL0_VAL(mpidr); |
| 112 | |
| 113 | /* Enable the CPUIDLE hardware (only really needs to be done once). */ |
| 114 | mmio_write_32(SUNXI_CPUIDLE_EN_REG, 0x16aa0000); |
| 115 | mmio_write_32(SUNXI_CPUIDLE_EN_REG, 0xaa160001); |
| 116 | |
| 117 | /* Trigger power off for this core. */ |
| 118 | mmio_write_32(SUNXI_CORE_CLOSE_REG, BIT_32(core)); |
| 119 | } |