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