1*83d290c5STom Rini /* SPDX-License-Identifier: GPL-2.0+ */ 2174deb76SOliver Schinagl /* 3174deb76SOliver Schinagl * Sunxi A31 Power Management Unit register definition. 4174deb76SOliver Schinagl * 5174deb76SOliver Schinagl * (C) Copyright 2013 Oliver Schinagl <oliver@schinagl.nl> 6174deb76SOliver Schinagl * http://linux-sunxi.org 7174deb76SOliver Schinagl * Allwinner Technology Co., Ltd. <www.allwinnertech.com> 8174deb76SOliver Schinagl * Berg Xing <bergxing@allwinnertech.com> 9174deb76SOliver Schinagl * Tom Cubie <tangliang@allwinnertech.com> 10174deb76SOliver Schinagl */ 11174deb76SOliver Schinagl 12174deb76SOliver Schinagl #ifndef _SUNXI_PRCM_H 13174deb76SOliver Schinagl #define _SUNXI_PRCM_H 14174deb76SOliver Schinagl 15174deb76SOliver Schinagl #define __PRCM_CPUS_CFG_PRE(n) (((n) & 0x3) << 4) 16174deb76SOliver Schinagl #define PRCM_CPUS_CFG_PRE_MASK __PRCM_CPUS_CFG_PRE(0x3) 17174deb76SOliver Schinagl #define __PRCM_CPUS_CFG_PRE_DIV(n) (((n) >> 1) - 1) 18174deb76SOliver Schinagl #define PRCM_CPUS_CFG_PRE_DIV(n) \ 19174deb76SOliver Schinagl __PRCM_CPUS_CFG_PRE(__PRCM_CPUS_CFG_CLK_PRE(n)) 20174deb76SOliver Schinagl #define __PRCM_CPUS_CFG_POST(n) (((n) & 0x1f) << 8) 21174deb76SOliver Schinagl #define PRCM_CPUS_CFG_POST_MASK __PRCM_CPUS_CFG_POST(0x1f) 22174deb76SOliver Schinagl #define __PRCM_CPUS_CFG_POST_DIV(n) ((n) - 1) 23174deb76SOliver Schinagl #define PRCM_CPUS_CFG_POST_DIV(n) \ 24174deb76SOliver Schinagl __PRCM_CPUS_CFG_POST_DIV(__PRCM_CPUS_CFG_POST_DIV(n)) 25174deb76SOliver Schinagl #define __PRCM_CPUS_CFG_CLK_SRC(n) (((n) & 0x3) << 16) 26174deb76SOliver Schinagl #define PRCM_CPUS_CFG_CLK_SRC_MASK __PRCM_CPUS_CFG_CLK_SRC(0x3) 27174deb76SOliver Schinagl #define __PRCM_CPUS_CFG_CLK_SRC_LOSC 0x0 28174deb76SOliver Schinagl #define __PRCM_CPUS_CFG_CLK_SRC_HOSC 0x1 29174deb76SOliver Schinagl #define __PRCM_CPUS_CFG_CLK_SRC_PLL6 0x2 30174deb76SOliver Schinagl #define __PRCM_CPUS_CFG_CLK_SRC_PDIV 0x3 31174deb76SOliver Schinagl #define PRCM_CPUS_CFG_CLK_SRC_LOSC \ 32174deb76SOliver Schinagl __PRCM_CPUS_CFG_CLK_SRC(__PRCM_CPUS_CFG_CLK_SRC_LOSC) 33174deb76SOliver Schinagl #define PRCM_CPUS_CFG_CLK_SRC_HOSC \ 34174deb76SOliver Schinagl __PRCM_CPUS_CFG_CLK_SRC(__PRCM_CPUS_CFG_CLK_SRC_HOSC) 35174deb76SOliver Schinagl #define PRCM_CPUS_CFG_CLK_SRC_PLL6 \ 36174deb76SOliver Schinagl __PRCM_CPUS_CFG_CLK_SRC(__PRCM_CPUS_CFG_CLK_SRC_PLL6) 37174deb76SOliver Schinagl #define PRCM_CPUS_CFG_CLK_SRC_PDIV \ 38174deb76SOliver Schinagl __PRCM_CPUS_CFG_CLK_SRC(__PRCM_CPUS_CFG_CLK_SRC_PDIV) 39174deb76SOliver Schinagl 40174deb76SOliver Schinagl #define __PRCM_APB0_RATIO(n) (((n) & 0x3) << 0) 41174deb76SOliver Schinagl #define PRCM_APB0_RATIO_DIV_MASK __PRCM_APB0_RATIO_DIV(0x3) 42174deb76SOliver Schinagl #define __PRCM_APB0_RATIO_DIV(n) (((n) >> 1) - 1) 43174deb76SOliver Schinagl #define PRCM_APB0_RATIO_DIV(n) \ 44174deb76SOliver Schinagl __PRCM_APB0_RATIO(__PRCM_APB0_RATIO_DIV(n)) 45174deb76SOliver Schinagl 46174deb76SOliver Schinagl #define PRCM_CPU_CFG_NEON_CLK_EN (0x1 << 0) 47174deb76SOliver Schinagl #define PRCM_CPU_CFG_CPU_CLK_EN (0x1 << 1) 48174deb76SOliver Schinagl 49174deb76SOliver Schinagl #define PRCM_APB0_GATE_PIO (0x1 << 0) 50174deb76SOliver Schinagl #define PRCM_APB0_GATE_IR (0x1 << 1) 51174deb76SOliver Schinagl #define PRCM_APB0_GATE_TIMER01 (0x1 << 2) 5266ebea06SHans de Goede #define PRCM_APB0_GATE_P2WI (0x1 << 3) /* sun6i */ 5366ebea06SHans de Goede #define PRCM_APB0_GATE_RSB (0x1 << 3) /* sun8i */ 54174deb76SOliver Schinagl #define PRCM_APB0_GATE_UART (0x1 << 4) 55174deb76SOliver Schinagl #define PRCM_APB0_GATE_1WIRE (0x1 << 5) 56174deb76SOliver Schinagl #define PRCM_APB0_GATE_I2C (0x1 << 6) 57174deb76SOliver Schinagl 58174deb76SOliver Schinagl #define PRCM_APB0_RESET_PIO (0x1 << 0) 59174deb76SOliver Schinagl #define PRCM_APB0_RESET_IR (0x1 << 1) 60174deb76SOliver Schinagl #define PRCM_APB0_RESET_TIMER01 (0x1 << 2) 61174deb76SOliver Schinagl #define PRCM_APB0_RESET_P2WI (0x1 << 3) 62174deb76SOliver Schinagl #define PRCM_APB0_RESET_UART (0x1 << 4) 63174deb76SOliver Schinagl #define PRCM_APB0_RESET_1WIRE (0x1 << 5) 64174deb76SOliver Schinagl #define PRCM_APB0_RESET_I2C (0x1 << 6) 65174deb76SOliver Schinagl 66174deb76SOliver Schinagl #define PRCM_PLL_CTRL_PLL_BIAS (0x1 << 0) 67174deb76SOliver Schinagl #define PRCM_PLL_CTRL_HOSC_GAIN_ENH (0x1 << 1) 68174deb76SOliver Schinagl #define __PRCM_PLL_CTRL_USB_CLK_SRC(n) (((n) & 0x3) << 4) 69174deb76SOliver Schinagl #define PRCM_PLL_CTRL_USB_CLK_SRC_MASK \ 70174deb76SOliver Schinagl __PRCM_PLL_CTRL_USB_CLK_SRC(0x3) 71174deb76SOliver Schinagl #define __PRCM_PLL_CTRL_USB_CLK_0 0x0 72174deb76SOliver Schinagl #define __PRCM_PLL_CTRL_USB_CLK_1 0x1 73174deb76SOliver Schinagl #define __PRCM_PLL_CTRL_USB_CLK_2 0x2 74174deb76SOliver Schinagl #define __PRCM_PLL_CTRL_USB_CLK_3 0x3 75174deb76SOliver Schinagl #define PRCM_PLL_CTRL_USB_CLK_0 \ 76174deb76SOliver Schinagl __PRCM_PLL_CTRL_USB_CLK_SRC(__PRCM_PLL_CTRL_USB_CLK_0) 77174deb76SOliver Schinagl #define PRCM_PLL_CTRL_USB_CLK_1 \ 78174deb76SOliver Schinagl __PRCM_PLL_CTRL_USB_CLK_SRC(__PRCM_PLL_CTRL_USB_CLK_1) 79174deb76SOliver Schinagl #define PRCM_PLL_CTRL_USB_CLK_2 \ 80174deb76SOliver Schinagl __PRCM_PLL_CTRL_USB_CLK_SRC(__PRCM_PLL_CTRL_USB_CLK_2) 81174deb76SOliver Schinagl #define PRCM_PLL_CTRL_USB_CLK_3 \ 82174deb76SOliver Schinagl __PRCM_PLL_CTRL_USB_CLK_SRC(__PRCM_PLL_CTRL_USB_CLK_3) 83174deb76SOliver Schinagl #define __PRCM_PLL_CTRL_INT_PLL_IN_SEL(n) (((n) & 0x3) << 12) 84174deb76SOliver Schinagl #define PRCM_PLL_CTRL_INT_PLL_IN_SEL_MASK \ 85174deb76SOliver Schinagl __PRCM_PLL_CTRL_INT_PLL_IN_SEL(0x3) 86174deb76SOliver Schinagl #define PRCM_PLL_CTRL_INT_PLL_IN_SEL(n) \ 87174deb76SOliver Schinagl __PRCM_PLL_CTRL_INT_PLL_IN_SEL(n) 88174deb76SOliver Schinagl #define __PRCM_PLL_CTRL_HOSC_CLK_SEL(n) (((n) & 0x3) << 20) 89174deb76SOliver Schinagl #define PRCM_PLL_CTRL_HOSC_CLK_SEL_MASK \ 90174deb76SOliver Schinagl __PRCM_PLL_CTRL_HOSC_CLK_SEL(0x3) 91174deb76SOliver Schinagl #define __PRCM_PLL_CTRL_HOSC_CLK_0 0x0 92174deb76SOliver Schinagl #define __PRCM_PLL_CTRL_HOSC_CLK_1 0x1 93174deb76SOliver Schinagl #define __PRCM_PLL_CTRL_HOSC_CLK_2 0x2 94174deb76SOliver Schinagl #define __PRCM_PLL_CTRL_HOSC_CLK_3 0x3 95174deb76SOliver Schinagl #define PRCM_PLL_CTRL_HOSC_CLK_0 \ 96174deb76SOliver Schinagl __PRCM_PLL_CTRL_HOSC_CLK_SEL(__PRCM_PLL_CTRL_HOSC_CLK_0) 97174deb76SOliver Schinagl #define PRCM_PLL_CTRL_HOSC_CLK_1 \ 98174deb76SOliver Schinagl __PRCM_PLL_CTRL_HOSC_CLK_SEL(__PRCM_PLL_CTRL_HOSC_CLK_1) 99174deb76SOliver Schinagl #define PRCM_PLL_CTRL_HOSC_CLK_2 \ 100174deb76SOliver Schinagl __PRCM_PLL_CTRL_HOSC_CLK_SEL(__PRCM_PLL_CTRL_HOSC_CLK_2) 101174deb76SOliver Schinagl #define PRCM_PLL_CTRL_HOSC_CLK_3 \ 102174deb76SOliver Schinagl __PRCM_PLL_CTRL_HOSC_CLK_SEL(__PRCM_PLL_CTRL_HOSC_CLK_3) 103174deb76SOliver Schinagl #define PRCM_PLL_CTRL_PLL_TST_SRC_EXT (0x1 << 24) 104174deb76SOliver Schinagl #define PRCM_PLL_CTRL_LDO_DIGITAL_EN (0x1 << 0) 105174deb76SOliver Schinagl #define PRCM_PLL_CTRL_LDO_ANALOG_EN (0x1 << 1) 106174deb76SOliver Schinagl #define PRCM_PLL_CTRL_EXT_OSC_EN (0x1 << 2) 107174deb76SOliver Schinagl #define PRCM_PLL_CTRL_CLK_TST_EN (0x1 << 3) 108174deb76SOliver Schinagl #define PRCM_PLL_CTRL_IN_PWR_HIGH (0x1 << 15) /* 3.3 for hi 2.5 for lo */ 109174deb76SOliver Schinagl #define __PRCM_PLL_CTRL_VDD_LDO_OUT(n) (((n) & 0x7) << 16) 110174deb76SOliver Schinagl #define PRCM_PLL_CTRL_LDO_OUT_MASK \ 111174deb76SOliver Schinagl __PRCM_PLL_CTRL_LDO_OUT(0x7) 112174deb76SOliver Schinagl /* When using the low voltage 20 mV steps, and high voltage 30 mV steps */ 113174deb76SOliver Schinagl #define PRCM_PLL_CTRL_LDO_OUT_L(n) \ 114174deb76SOliver Schinagl __PRCM_PLL_CTRL_VDD_LDO_OUT((((n) - 1000) / 20) & 0x7) 115174deb76SOliver Schinagl #define PRCM_PLL_CTRL_LDO_OUT_H(n) \ 116174deb76SOliver Schinagl __PRCM_PLL_CTRL_VDD_LDO_OUT((((n) - 1160) / 30) & 0x7) 117174deb76SOliver Schinagl #define PRCM_PLL_CTRL_LDO_OUT_LV(n) \ 118174deb76SOliver Schinagl __PRCM_PLL_CTRL_VDD_LDO_OUT((((n) & 0x7) * 20) + 1000) 119174deb76SOliver Schinagl #define PRCM_PLL_CTRL_LDO_OUT_HV(n) \ 120174deb76SOliver Schinagl __PRCM_PLL_CTRL_VDD_LDO_OUT((((n) & 0x7) * 30) + 1160) 121174deb76SOliver Schinagl #define PRCM_PLL_CTRL_LDO_KEY (0xa7 << 24) 12262c87ef2SHans de Goede #define PRCM_PLL_CTRL_LDO_KEY_MASK (0xff << 24) 123174deb76SOliver Schinagl 124174deb76SOliver Schinagl #define PRCM_CLK_1WIRE_GATE (0x1 << 31) 125174deb76SOliver Schinagl 126174deb76SOliver Schinagl #define __PRCM_CLK_MOD0_M(n) (((n) & 0xf) << 0) 127174deb76SOliver Schinagl #define PRCM_CLK_MOD0_M_MASK __PRCM_CLK_MOD0_M(0xf) 128174deb76SOliver Schinagl #define __PRCM_CLK_MOD0_M_X(n) (n - 1) 129174deb76SOliver Schinagl #define PRCM_CLK_MOD0_M(n) __PRCM_CLK_MOD0_M(__PRCM_CLK_MOD0_M_X(n)) 130174deb76SOliver Schinagl #define PRCM_CLK_MOD0_OUT_PHASE(n) (((n) & 0x7) << 8) 131174deb76SOliver Schinagl #define PRCM_CLK_MOD0_OUT_PHASE_MASK(n) PRCM_CLK_MOD0_OUT_PHASE(0x7) 132174deb76SOliver Schinagl #define _PRCM_CLK_MOD0_N(n) (((n) & 0x3) << 16) 133174deb76SOliver Schinagl #define PRCM_CLK_MOD0_N_MASK __PRCM_CLK_MOD_N(0x3) 134174deb76SOliver Schinagl #define __PRCM_CLK_MOD0_N_X(n) (((n) >> 1) - 1) 135174deb76SOliver Schinagl #define PRCM_CLK_MOD0_N(n) __PRCM_CLK_MOD0_N(__PRCM_CLK_MOD0_N_X(n)) 136174deb76SOliver Schinagl #define PRCM_CLK_MOD0_SMPL_PHASE(n) (((n) & 0x7) << 20) 137174deb76SOliver Schinagl #define PRCM_CLK_MOD0_SMPL_PHASE_MASK PRCM_CLK_MOD0_SMPL_PHASE(0x7) 138174deb76SOliver Schinagl #define PRCM_CLK_MOD0_SRC_SEL(n) (((n) & 0x7) << 24) 139174deb76SOliver Schinagl #define PRCM_CLK_MOD0_SRC_SEL_MASK PRCM_CLK_MOD0_SRC_SEL(0x7) 140174deb76SOliver Schinagl #define PRCM_CLK_MOD0_GATE_EN (0x1 << 31) 141174deb76SOliver Schinagl 142174deb76SOliver Schinagl #define PRCM_APB0_RESET_PIO (0x1 << 0) 143174deb76SOliver Schinagl #define PRCM_APB0_RESET_IR (0x1 << 1) 144174deb76SOliver Schinagl #define PRCM_APB0_RESET_TIMER01 (0x1 << 2) 145174deb76SOliver Schinagl #define PRCM_APB0_RESET_P2WI (0x1 << 3) 146174deb76SOliver Schinagl #define PRCM_APB0_RESET_UART (0x1 << 4) 147174deb76SOliver Schinagl #define PRCM_APB0_RESET_1WIRE (0x1 << 5) 148174deb76SOliver Schinagl #define PRCM_APB0_RESET_I2C (0x1 << 6) 149174deb76SOliver Schinagl 150174deb76SOliver Schinagl #define __PRCM_CLK_OUTD_M(n) (((n) & 0x7) << 8) 151174deb76SOliver Schinagl #define PRCM_CLK_OUTD_M_MASK __PRCM_CLK_OUTD_M(0x7) 152174deb76SOliver Schinagl #define __PRCM_CLK_OUTD_M_X() ((n) - 1) 153174deb76SOliver Schinagl #define PRCM_CLK_OUTD_M(n) __PRCM_CLK_OUTD_M(__PRCM_CLK_OUTD_M_X(n)) 154174deb76SOliver Schinagl #define __PRCM_CLK_OUTD_N(n) (((n) & 0x7) << 20) 155174deb76SOliver Schinagl #define PRCM_CLK_OUTD_N_MASK __PRCM_CLK_OUTD_N(0x7) 156174deb76SOliver Schinagl #define __PRCM_CLK_OUTD_N_X(n) (((n) >> 1) - 1) 157174deb76SOliver Schinagl #define PRCM_CLK_OUTD_N(n) __PRCM_CLK_OUTD_N(__PRCM_CLK_OUTD_N_X(n) 158174deb76SOliver Schinagl #define __PRCM_CLK_OUTD_SRC_SEL(n) (((n) & 0x3) << 24) 159174deb76SOliver Schinagl #define PRCM_CLK_OUTD_SRC_SEL_MASK __PRCM_CLK_OUTD_SRC_SEL(0x3) 160174deb76SOliver Schinagl #define __PRCM_CLK_OUTD_SRC_LOSC2 0x0 161174deb76SOliver Schinagl #define __PRCM_CLK_OUTD_SRC_LOSC 0x1 162174deb76SOliver Schinagl #define __PRCM_CLK_OUTD_SRC_HOSC 0x2 163174deb76SOliver Schinagl #define __PRCM_CLK_OUTD_SRC_ERR 0x3 164174deb76SOliver Schinagl #define PRCM_CLK_OUTD_SRC_LOSC2 \ 165174deb76SOliver Schinagl #deifne __PRCM_CLK_OUTD_SRC_SEL(__PRCM_CLK_OUTD_SRC_LOSC2) 166174deb76SOliver Schinagl #define PRCM_CLK_OUTD_SRC_LOSC \ 167174deb76SOliver Schinagl #deifne __PRCM_CLK_OUTD_SRC_SEL(__PRCM_CLK_OUTD_SRC_LOSC) 168174deb76SOliver Schinagl #define PRCM_CLK_OUTD_SRC_HOSC \ 169174deb76SOliver Schinagl #deifne __PRCM_CLK_OUTD_SRC_SEL(__PRCM_CLK_OUTD_SRC_HOSC) 170174deb76SOliver Schinagl #define PRCM_CLK_OUTD_SRC_ERR \ 171174deb76SOliver Schinagl #deifne __PRCM_CLK_OUTD_SRC_SEL(__PRCM_CLK_OUTD_SRC_ERR) 172174deb76SOliver Schinagl #define PRCM_CLK_OUTD_EN (0x1 << 31) 173174deb76SOliver Schinagl 174174deb76SOliver Schinagl #define PRCM_CPU0_PWROFF (0x1 << 0) 175174deb76SOliver Schinagl #define PRCM_CPU1_PWROFF (0x1 << 1) 176174deb76SOliver Schinagl #define PRCM_CPU2_PWROFF (0x1 << 2) 177174deb76SOliver Schinagl #define PRCM_CPU3_PWROFF (0x1 << 3) 178174deb76SOliver Schinagl #define PRCM_CPU_ALL_PWROFF (0xf << 0) 179174deb76SOliver Schinagl 180174deb76SOliver Schinagl #define PRCM_VDD_SYS_DRAM_CH0_PAD_HOLD_PWROFF (0x1 << 0) 181174deb76SOliver Schinagl #define PRCM_VDD_SYS_DRAM_CH1_PAD_HOLD_PWROFF (0x1 << 1) 182174deb76SOliver Schinagl #define PRCM_VDD_SYS_AVCC_A_PWROFF (0x1 << 2) 183174deb76SOliver Schinagl #define PRCM_VDD_SYS_CPU0_VDD_PWROFF (0x1 << 3) 184174deb76SOliver Schinagl 185174deb76SOliver Schinagl #define PRCM_VDD_GPU_PWROFF (0x1 << 0) 186174deb76SOliver Schinagl 187174deb76SOliver Schinagl #define PRCM_VDD_SYS_RESET (0x1 << 0) 188174deb76SOliver Schinagl 189174deb76SOliver Schinagl #define PRCM_CPU1_PWR_CLAMP(n) (((n) & 0xff) << 0) 190174deb76SOliver Schinagl #define PRCM_CPU1_PWR_CLAMP_MASK PRCM_CPU1_PWR_CLAMP(0xff) 191174deb76SOliver Schinagl 192174deb76SOliver Schinagl #define PRCM_CPU2_PWR_CLAMP(n) (((n) & 0xff) << 0) 193174deb76SOliver Schinagl #define PRCM_CPU2_PWR_CLAMP_MASK PRCM_CPU2_PWR_CLAMP(0xff) 194174deb76SOliver Schinagl 195174deb76SOliver Schinagl #define PRCM_CPU3_PWR_CLAMP(n) (((n) & 0xff) << 0) 196174deb76SOliver Schinagl #define PRCM_CPU3_PWR_CLAMP_MASK PRCM_CPU3_PWR_CLAMP(0xff) 197174deb76SOliver Schinagl 19839858b12SIcenowy Zheng #define PRCM_SEC_SWITCH_APB0_CLK_NONSEC (0x1 << 0) 19939858b12SIcenowy Zheng #define PRCM_SEC_SWITCH_PLL_CFG_NONSEC (0x1 << 1) 20039858b12SIcenowy Zheng #define PRCM_SEC_SWITCH_PWR_GATE_NONSEC (0x1 << 2) 20139858b12SIcenowy Zheng 202174deb76SOliver Schinagl #ifndef __ASSEMBLY__ 203d7d4e5ccSChen-Yu Tsai #include <linux/compiler.h> 204d7d4e5ccSChen-Yu Tsai 205d7d4e5ccSChen-Yu Tsai struct __packed sunxi_prcm_reg { 206174deb76SOliver Schinagl u32 cpus_cfg; /* 0x000 */ 207174deb76SOliver Schinagl u8 res0[0x8]; /* 0x004 */ 208174deb76SOliver Schinagl u32 apb0_ratio; /* 0x00c */ 209174deb76SOliver Schinagl u32 cpu0_cfg; /* 0x010 */ 210174deb76SOliver Schinagl u32 cpu1_cfg; /* 0x014 */ 211174deb76SOliver Schinagl u32 cpu2_cfg; /* 0x018 */ 212174deb76SOliver Schinagl u32 cpu3_cfg; /* 0x01c */ 213174deb76SOliver Schinagl u8 res1[0x8]; /* 0x020 */ 214174deb76SOliver Schinagl u32 apb0_gate; /* 0x028 */ 215174deb76SOliver Schinagl u8 res2[0x14]; /* 0x02c */ 216174deb76SOliver Schinagl u32 pll_ctrl0; /* 0x040 */ 217174deb76SOliver Schinagl u32 pll_ctrl1; /* 0x044 */ 218174deb76SOliver Schinagl u8 res3[0x8]; /* 0x048 */ 219174deb76SOliver Schinagl u32 clk_1wire; /* 0x050 */ 220174deb76SOliver Schinagl u32 clk_ir; /* 0x054 */ 221174deb76SOliver Schinagl u8 res4[0x58]; /* 0x058 */ 222174deb76SOliver Schinagl u32 apb0_reset; /* 0x0b0 */ 223174deb76SOliver Schinagl u8 res5[0x3c]; /* 0x0b4 */ 224174deb76SOliver Schinagl u32 clk_outd; /* 0x0f0 */ 225174deb76SOliver Schinagl u8 res6[0xc]; /* 0x0f4 */ 226174deb76SOliver Schinagl u32 cpu_pwroff; /* 0x100 */ 227174deb76SOliver Schinagl u8 res7[0xc]; /* 0x104 */ 228174deb76SOliver Schinagl u32 vdd_sys_pwroff; /* 0x110 */ 229174deb76SOliver Schinagl u8 res8[0x4]; /* 0x114 */ 230174deb76SOliver Schinagl u32 gpu_pwroff; /* 0x118 */ 231174deb76SOliver Schinagl u8 res9[0x4]; /* 0x11c */ 232174deb76SOliver Schinagl u32 vdd_pwr_reset; /* 0x120 */ 23320e3d053SChen-Yu Tsai u8 res10[0x1c]; /* 0x124 */ 23420e3d053SChen-Yu Tsai u32 cpu_pwr_clamp[4]; /* 0x140 but first one is actually unused */ 235174deb76SOliver Schinagl u8 res11[0x30]; /* 0x150 */ 236174deb76SOliver Schinagl u32 dram_pwr; /* 0x180 */ 237174deb76SOliver Schinagl u8 res12[0xc]; /* 0x184 */ 238174deb76SOliver Schinagl u32 dram_tst; /* 0x190 */ 23939858b12SIcenowy Zheng u8 res13[0x3c]; /* 0x194 */ 24039858b12SIcenowy Zheng u32 prcm_sec_switch; /* 0x1d0 */ 241174deb76SOliver Schinagl }; 242174deb76SOliver Schinagl 243472ed064SChen-Yu Tsai void prcm_apb0_enable(u32 flags); 2449d082687SJelle van der Waa void prcm_apb0_disable(u32 flags); 2459d082687SJelle van der Waa 246174deb76SOliver Schinagl #endif /* __ASSEMBLY__ */ 247174deb76SOliver Schinagl #endif /* _PRCM_H */ 248