2 * Exynos4210 Power Management Unit (PMU) Emulation
4 * Copyright (C) 2011 Samsung Electronics Co Ltd.
5 * Maksim Kozlov <m.kozlov@samsung.com>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, see <http://www.gnu.org/licenses/>.
22 * This model implements PMU registers just as a bulk of memory. Currently,
23 * the only reason this device exists is that secondary CPU boot loader
24 * uses PMU INFORM5 register as a holding pen.
27 #include "qemu/osdep.h"
28 #include "hw/sysbus.h"
29 #include "migration/vmstate.h"
30 #include "qemu/module.h"
31 #include "sysemu/runstate.h"
37 #ifndef DEBUG_PMU_EXTEND
38 #define DEBUG_PMU_EXTEND 0
42 #define PRINT_DEBUG(fmt, args...) \
44 fprintf(stderr, " [%s:%d] "fmt, __func__, __LINE__, ##args); \
48 #define PRINT_DEBUG_EXTEND(fmt, args...) \
50 fprintf(stderr, " [%s:%d] "fmt, __func__, __LINE__, ##args); \
53 #define PRINT_DEBUG_EXTEND(fmt, args...) do {} while (0)
57 #define PRINT_DEBUG(fmt, args...) do {} while (0)
58 #define PRINT_DEBUG_EXTEND(fmt, args...) do {} while (0)
62 * Offsets for PMU registers
64 #define OM_STAT 0x0000 /* OM status register */
65 #define RTC_CLKO_SEL 0x000C /* Controls RTCCLKOUT */
66 #define GNSS_RTC_OUT_CTRL 0x0010 /* Controls GNSS_RTC_OUT */
67 /* Decides whether system-level low-power mode is used. */
68 #define SYSTEM_POWER_DOWN_CTRL 0x0200
69 /* Sets control options for CENTRAL_SEQ */
70 #define SYSTEM_POWER_DOWN_OPTION 0x0208
71 #define SWRESET 0x0400 /* Generate software reset */
72 #define RST_STAT 0x0404 /* Reset status register */
73 #define WAKEUP_STAT 0x0600 /* Wakeup status register */
74 #define EINT_WAKEUP_MASK 0x0604 /* Configure External INTerrupt mask */
75 #define WAKEUP_MASK 0x0608 /* Configure wakeup source mask */
76 #define HDMI_PHY_CONTROL 0x0700 /* HDMI PHY control register */
77 #define USBDEVICE_PHY_CONTROL 0x0704 /* USB Device PHY control register */
78 #define USBHOST_PHY_CONTROL 0x0708 /* USB HOST PHY control register */
79 #define DAC_PHY_CONTROL 0x070C /* DAC control register */
80 #define MIPI_PHY0_CONTROL 0x0710 /* MIPI PHY control register */
81 #define MIPI_PHY1_CONTROL 0x0714 /* MIPI PHY control register */
82 #define ADC_PHY_CONTROL 0x0718 /* TS-ADC control register */
83 #define PCIe_PHY_CONTROL 0x071C /* TS-PCIe control register */
84 #define SATA_PHY_CONTROL 0x0720 /* TS-SATA control register */
85 #define INFORM0 0x0800 /* Information register 0 */
86 #define INFORM1 0x0804 /* Information register 1 */
87 #define INFORM2 0x0808 /* Information register 2 */
88 #define INFORM3 0x080C /* Information register 3 */
89 #define INFORM4 0x0810 /* Information register 4 */
90 #define INFORM5 0x0814 /* Information register 5 */
91 #define INFORM6 0x0818 /* Information register 6 */
92 #define INFORM7 0x081C /* Information register 7 */
93 #define PMU_DEBUG 0x0A00 /* PMU debug register */
94 /* Registers to set system-level low-power option */
95 #define ARM_CORE0_SYS_PWR_REG 0x1000
96 #define ARM_CORE1_SYS_PWR_REG 0x1010
97 #define ARM_COMMON_SYS_PWR_REG 0x1080
98 #define ARM_CPU_L2_0_SYS_PWR_REG 0x10C0
99 #define ARM_CPU_L2_1_SYS_PWR_REG 0x10C4
100 #define CMU_ACLKSTOP_SYS_PWR_REG 0x1100
101 #define CMU_SCLKSTOP_SYS_PWR_REG 0x1104
102 #define CMU_RESET_SYS_PWR_REG 0x110C
103 #define APLL_SYSCLK_SYS_PWR_REG 0x1120
104 #define MPLL_SYSCLK_SYS_PWR_REG 0x1124
105 #define VPLL_SYSCLK_SYS_PWR_REG 0x1128
106 #define EPLL_SYSCLK_SYS_PWR_REG 0x112C
107 #define CMU_CLKSTOP_GPS_ALIVE_SYS_PWR_REG 0x1138
108 #define CMU_RESET_GPS_ALIVE_SYS_PWR_REG 0x113C
109 #define CMU_CLKSTOP_CAM_SYS_PWR_REG 0x1140
110 #define CMU_CLKSTOP_TV_SYS_PWR_REG 0x1144
111 #define CMU_CLKSTOP_MFC_SYS_PWR_REG 0x1148
112 #define CMU_CLKSTOP_G3D_SYS_PWR_REG 0x114C
113 #define CMU_CLKSTOP_LCD0_SYS_PWR_REG 0x1150
114 #define CMU_CLKSTOP_LCD1_SYS_PWR_REG 0x1154
115 #define CMU_CLKSTOP_MAUDIO_SYS_PWR_REG 0x1158
116 #define CMU_CLKSTOP_GPS_SYS_PWR_REG 0x115C
117 #define CMU_RESET_CAM_SYS_PWR_REG 0x1160
118 #define CMU_RESET_TV_SYS_PWR_REG 0x1164
119 #define CMU_RESET_MFC_SYS_PWR_REG 0x1168
120 #define CMU_RESET_G3D_SYS_PWR_REG 0x116C
121 #define CMU_RESET_LCD0_SYS_PWR_REG 0x1170
122 #define CMU_RESET_LCD1_SYS_PWR_REG 0x1174
123 #define CMU_RESET_MAUDIO_SYS_PWR_REG 0x1178
124 #define CMU_RESET_GPS_SYS_PWR_REG 0x117C
125 #define TOP_BUS_SYS_PWR_REG 0x1180
126 #define TOP_RETENTION_SYS_PWR_REG 0x1184
127 #define TOP_PWR_SYS_PWR_REG 0x1188
128 #define LOGIC_RESET_SYS_PWR_REG 0x11A0
129 #define OneNANDXL_MEM_SYS_PWR_REG 0x11C0
130 #define MODEMIF_MEM_SYS_PWR_REG 0x11C4
131 #define USBDEVICE_MEM_SYS_PWR_REG 0x11CC
132 #define SDMMC_MEM_SYS_PWR_REG 0x11D0
133 #define CSSYS_MEM_SYS_PWR_REG 0x11D4
134 #define SECSS_MEM_SYS_PWR_REG 0x11D8
135 #define PCIe_MEM_SYS_PWR_REG 0x11E0
136 #define SATA_MEM_SYS_PWR_REG 0x11E4
137 #define PAD_RETENTION_DRAM_SYS_PWR_REG 0x1200
138 #define PAD_RETENTION_MAUDIO_SYS_PWR_REG 0x1204
139 #define PAD_RETENTION_GPIO_SYS_PWR_REG 0x1220
140 #define PAD_RETENTION_UART_SYS_PWR_REG 0x1224
141 #define PAD_RETENTION_MMCA_SYS_PWR_REG 0x1228
142 #define PAD_RETENTION_MMCB_SYS_PWR_REG 0x122C
143 #define PAD_RETENTION_EBIA_SYS_PWR_REG 0x1230
144 #define PAD_RETENTION_EBIB_SYS_PWR_REG 0x1234
145 #define PAD_ISOLATION_SYS_PWR_REG 0x1240
146 #define PAD_ALV_SEL_SYS_PWR_REG 0x1260
147 #define XUSBXTI_SYS_PWR_REG 0x1280
148 #define XXTI_SYS_PWR_REG 0x1284
149 #define EXT_REGULATOR_SYS_PWR_REG 0x12C0
150 #define GPIO_MODE_SYS_PWR_REG 0x1300
151 #define GPIO_MODE_MAUDIO_SYS_PWR_REG 0x1340
152 #define CAM_SYS_PWR_REG 0x1380
153 #define TV_SYS_PWR_REG 0x1384
154 #define MFC_SYS_PWR_REG 0x1388
155 #define G3D_SYS_PWR_REG 0x138C
156 #define LCD0_SYS_PWR_REG 0x1390
157 #define LCD1_SYS_PWR_REG 0x1394
158 #define MAUDIO_SYS_PWR_REG 0x1398
159 #define GPS_SYS_PWR_REG 0x139C
160 #define GPS_ALIVE_SYS_PWR_REG 0x13A0
161 #define ARM_CORE0_CONFIGURATION 0x2000 /* Configure power mode of ARM_CORE0 */
162 #define ARM_CORE0_STATUS 0x2004 /* Check power mode of ARM_CORE0 */
163 #define ARM_CORE0_OPTION 0x2008 /* Sets control options for ARM_CORE0 */
164 #define ARM_CORE1_CONFIGURATION 0x2080 /* Configure power mode of ARM_CORE1 */
165 #define ARM_CORE1_STATUS 0x2084 /* Check power mode of ARM_CORE1 */
166 #define ARM_CORE1_OPTION 0x2088 /* Sets control options for ARM_CORE0 */
167 #define ARM_COMMON_OPTION 0x2408 /* Sets control options for ARM_COMMON */
168 /* Configure power mode of ARM_CPU_L2_0 */
169 #define ARM_CPU_L2_0_CONFIGURATION 0x2600
170 #define ARM_CPU_L2_0_STATUS 0x2604 /* Check power mode of ARM_CPU_L2_0 */
171 /* Configure power mode of ARM_CPU_L2_1 */
172 #define ARM_CPU_L2_1_CONFIGURATION 0x2620
173 #define ARM_CPU_L2_1_STATUS 0x2624 /* Check power mode of ARM_CPU_L2_1 */
174 /* Sets control options for PAD_RETENTION_MAUDIO */
175 #define PAD_RETENTION_MAUDIO_OPTION 0x3028
176 /* Sets control options for PAD_RETENTION_GPIO */
177 #define PAD_RETENTION_GPIO_OPTION 0x3108
178 /* Sets control options for PAD_RETENTION_UART */
179 #define PAD_RETENTION_UART_OPTION 0x3128
180 /* Sets control options for PAD_RETENTION_MMCA */
181 #define PAD_RETENTION_MMCA_OPTION 0x3148
182 /* Sets control options for PAD_RETENTION_MMCB */
183 #define PAD_RETENTION_MMCB_OPTION 0x3168
184 /* Sets control options for PAD_RETENTION_EBIA */
185 #define PAD_RETENTION_EBIA_OPTION 0x3188
186 /* Sets control options for PAD_RETENTION_EBIB */
187 #define PAD_RETENTION_EBIB_OPTION 0x31A8
188 #define PS_HOLD_CONTROL 0x330C /* PS_HOLD control register */
189 #define XUSBXTI_CONFIGURATION 0x3400 /* Configure the pad of XUSBXTI */
190 #define XUSBXTI_STATUS 0x3404 /* Check the pad of XUSBXTI */
191 /* Sets time required for XUSBXTI to be stabilized */
192 #define XUSBXTI_DURATION 0x341C
193 #define XXTI_CONFIGURATION 0x3420 /* Configure the pad of XXTI */
194 #define XXTI_STATUS 0x3424 /* Check the pad of XXTI */
195 /* Sets time required for XXTI to be stabilized */
196 #define XXTI_DURATION 0x343C
197 /* Sets time required for EXT_REGULATOR to be stabilized */
198 #define EXT_REGULATOR_DURATION 0x361C
199 #define CAM_CONFIGURATION 0x3C00 /* Configure power mode of CAM */
200 #define CAM_STATUS 0x3C04 /* Check power mode of CAM */
201 #define CAM_OPTION 0x3C08 /* Sets control options for CAM */
202 #define TV_CONFIGURATION 0x3C20 /* Configure power mode of TV */
203 #define TV_STATUS 0x3C24 /* Check power mode of TV */
204 #define TV_OPTION 0x3C28 /* Sets control options for TV */
205 #define MFC_CONFIGURATION 0x3C40 /* Configure power mode of MFC */
206 #define MFC_STATUS 0x3C44 /* Check power mode of MFC */
207 #define MFC_OPTION 0x3C48 /* Sets control options for MFC */
208 #define G3D_CONFIGURATION 0x3C60 /* Configure power mode of G3D */
209 #define G3D_STATUS 0x3C64 /* Check power mode of G3D */
210 #define G3D_OPTION 0x3C68 /* Sets control options for G3D */
211 #define LCD0_CONFIGURATION 0x3C80 /* Configure power mode of LCD0 */
212 #define LCD0_STATUS 0x3C84 /* Check power mode of LCD0 */
213 #define LCD0_OPTION 0x3C88 /* Sets control options for LCD0 */
214 #define LCD1_CONFIGURATION 0x3CA0 /* Configure power mode of LCD1 */
215 #define LCD1_STATUS 0x3CA4 /* Check power mode of LCD1 */
216 #define LCD1_OPTION 0x3CA8 /* Sets control options for LCD1 */
217 #define GPS_CONFIGURATION 0x3CE0 /* Configure power mode of GPS */
218 #define GPS_STATUS 0x3CE4 /* Check power mode of GPS */
219 #define GPS_OPTION 0x3CE8 /* Sets control options for GPS */
220 #define GPS_ALIVE_CONFIGURATION 0x3D00 /* Configure power mode of GPS */
221 #define GPS_ALIVE_STATUS 0x3D04 /* Check power mode of GPS */
222 #define GPS_ALIVE_OPTION 0x3D08 /* Sets control options for GPS */
224 #define EXYNOS4210_PMU_REGS_MEM_SIZE 0x3d0c
226 typedef struct Exynos4210PmuReg
{
227 const char *name
; /* for debug only */
229 uint32_t reset_value
;
232 static const Exynos4210PmuReg exynos4210_pmu_regs
[] = {
233 {"OM_STAT", OM_STAT
, 0x00000000},
234 {"RTC_CLKO_SEL", RTC_CLKO_SEL
, 0x00000000},
235 {"GNSS_RTC_OUT_CTRL", GNSS_RTC_OUT_CTRL
, 0x00000001},
236 {"SYSTEM_POWER_DOWN_CTRL", SYSTEM_POWER_DOWN_CTRL
, 0x00010000},
237 {"SYSTEM_POWER_DOWN_OPTION", SYSTEM_POWER_DOWN_OPTION
, 0x03030000},
238 {"SWRESET", SWRESET
, 0x00000000},
239 {"RST_STAT", RST_STAT
, 0x00000000},
240 {"WAKEUP_STAT", WAKEUP_STAT
, 0x00000000},
241 {"EINT_WAKEUP_MASK", EINT_WAKEUP_MASK
, 0x00000000},
242 {"WAKEUP_MASK", WAKEUP_MASK
, 0x00000000},
243 {"HDMI_PHY_CONTROL", HDMI_PHY_CONTROL
, 0x00960000},
244 {"USBDEVICE_PHY_CONTROL", USBDEVICE_PHY_CONTROL
, 0x00000000},
245 {"USBHOST_PHY_CONTROL", USBHOST_PHY_CONTROL
, 0x00000000},
246 {"DAC_PHY_CONTROL", DAC_PHY_CONTROL
, 0x00000000},
247 {"MIPI_PHY0_CONTROL", MIPI_PHY0_CONTROL
, 0x00000000},
248 {"MIPI_PHY1_CONTROL", MIPI_PHY1_CONTROL
, 0x00000000},
249 {"ADC_PHY_CONTROL", ADC_PHY_CONTROL
, 0x00000001},
250 {"PCIe_PHY_CONTROL", PCIe_PHY_CONTROL
, 0x00000000},
251 {"SATA_PHY_CONTROL", SATA_PHY_CONTROL
, 0x00000000},
252 {"INFORM0", INFORM0
, 0x00000000},
253 {"INFORM1", INFORM1
, 0x00000000},
254 {"INFORM2", INFORM2
, 0x00000000},
255 {"INFORM3", INFORM3
, 0x00000000},
256 {"INFORM4", INFORM4
, 0x00000000},
257 {"INFORM5", INFORM5
, 0x00000000},
258 {"INFORM6", INFORM6
, 0x00000000},
259 {"INFORM7", INFORM7
, 0x00000000},
260 {"PMU_DEBUG", PMU_DEBUG
, 0x00000000},
261 {"ARM_CORE0_SYS_PWR_REG", ARM_CORE0_SYS_PWR_REG
, 0xFFFFFFFF},
262 {"ARM_CORE1_SYS_PWR_REG", ARM_CORE1_SYS_PWR_REG
, 0xFFFFFFFF},
263 {"ARM_COMMON_SYS_PWR_REG", ARM_COMMON_SYS_PWR_REG
, 0xFFFFFFFF},
264 {"ARM_CPU_L2_0_SYS_PWR_REG", ARM_CPU_L2_0_SYS_PWR_REG
, 0xFFFFFFFF},
265 {"ARM_CPU_L2_1_SYS_PWR_REG", ARM_CPU_L2_1_SYS_PWR_REG
, 0xFFFFFFFF},
266 {"CMU_ACLKSTOP_SYS_PWR_REG", CMU_ACLKSTOP_SYS_PWR_REG
, 0xFFFFFFFF},
267 {"CMU_SCLKSTOP_SYS_PWR_REG", CMU_SCLKSTOP_SYS_PWR_REG
, 0xFFFFFFFF},
268 {"CMU_RESET_SYS_PWR_REG", CMU_RESET_SYS_PWR_REG
, 0xFFFFFFFF},
269 {"APLL_SYSCLK_SYS_PWR_REG", APLL_SYSCLK_SYS_PWR_REG
, 0xFFFFFFFF},
270 {"MPLL_SYSCLK_SYS_PWR_REG", MPLL_SYSCLK_SYS_PWR_REG
, 0xFFFFFFFF},
271 {"VPLL_SYSCLK_SYS_PWR_REG", VPLL_SYSCLK_SYS_PWR_REG
, 0xFFFFFFFF},
272 {"EPLL_SYSCLK_SYS_PWR_REG", EPLL_SYSCLK_SYS_PWR_REG
, 0xFFFFFFFF},
273 {"CMU_CLKSTOP_GPS_ALIVE_SYS_PWR_REG", CMU_CLKSTOP_GPS_ALIVE_SYS_PWR_REG
,
275 {"CMU_RESET_GPS_ALIVE_SYS_PWR_REG", CMU_RESET_GPS_ALIVE_SYS_PWR_REG
,
277 {"CMU_CLKSTOP_CAM_SYS_PWR_REG", CMU_CLKSTOP_CAM_SYS_PWR_REG
, 0xFFFFFFFF},
278 {"CMU_CLKSTOP_TV_SYS_PWR_REG", CMU_CLKSTOP_TV_SYS_PWR_REG
, 0xFFFFFFFF},
279 {"CMU_CLKSTOP_MFC_SYS_PWR_REG", CMU_CLKSTOP_MFC_SYS_PWR_REG
, 0xFFFFFFFF},
280 {"CMU_CLKSTOP_G3D_SYS_PWR_REG", CMU_CLKSTOP_G3D_SYS_PWR_REG
, 0xFFFFFFFF},
281 {"CMU_CLKSTOP_LCD0_SYS_PWR_REG", CMU_CLKSTOP_LCD0_SYS_PWR_REG
, 0xFFFFFFFF},
282 {"CMU_CLKSTOP_LCD1_SYS_PWR_REG", CMU_CLKSTOP_LCD1_SYS_PWR_REG
, 0xFFFFFFFF},
283 {"CMU_CLKSTOP_MAUDIO_SYS_PWR_REG", CMU_CLKSTOP_MAUDIO_SYS_PWR_REG
,
285 {"CMU_CLKSTOP_GPS_SYS_PWR_REG", CMU_CLKSTOP_GPS_SYS_PWR_REG
, 0xFFFFFFFF},
286 {"CMU_RESET_CAM_SYS_PWR_REG", CMU_RESET_CAM_SYS_PWR_REG
, 0xFFFFFFFF},
287 {"CMU_RESET_TV_SYS_PWR_REG", CMU_RESET_TV_SYS_PWR_REG
, 0xFFFFFFFF},
288 {"CMU_RESET_MFC_SYS_PWR_REG", CMU_RESET_MFC_SYS_PWR_REG
, 0xFFFFFFFF},
289 {"CMU_RESET_G3D_SYS_PWR_REG", CMU_RESET_G3D_SYS_PWR_REG
, 0xFFFFFFFF},
290 {"CMU_RESET_LCD0_SYS_PWR_REG", CMU_RESET_LCD0_SYS_PWR_REG
, 0xFFFFFFFF},
291 {"CMU_RESET_LCD1_SYS_PWR_REG", CMU_RESET_LCD1_SYS_PWR_REG
, 0xFFFFFFFF},
292 {"CMU_RESET_MAUDIO_SYS_PWR_REG", CMU_RESET_MAUDIO_SYS_PWR_REG
, 0xFFFFFFFF},
293 {"CMU_RESET_GPS_SYS_PWR_REG", CMU_RESET_GPS_SYS_PWR_REG
, 0xFFFFFFFF},
294 {"TOP_BUS_SYS_PWR_REG", TOP_BUS_SYS_PWR_REG
, 0xFFFFFFFF},
295 {"TOP_RETENTION_SYS_PWR_REG", TOP_RETENTION_SYS_PWR_REG
, 0xFFFFFFFF},
296 {"TOP_PWR_SYS_PWR_REG", TOP_PWR_SYS_PWR_REG
, 0xFFFFFFFF},
297 {"LOGIC_RESET_SYS_PWR_REG", LOGIC_RESET_SYS_PWR_REG
, 0xFFFFFFFF},
298 {"OneNANDXL_MEM_SYS_PWR_REG", OneNANDXL_MEM_SYS_PWR_REG
, 0xFFFFFFFF},
299 {"MODEMIF_MEM_SYS_PWR_REG", MODEMIF_MEM_SYS_PWR_REG
, 0xFFFFFFFF},
300 {"USBDEVICE_MEM_SYS_PWR_REG", USBDEVICE_MEM_SYS_PWR_REG
, 0xFFFFFFFF},
301 {"SDMMC_MEM_SYS_PWR_REG", SDMMC_MEM_SYS_PWR_REG
, 0xFFFFFFFF},
302 {"CSSYS_MEM_SYS_PWR_REG", CSSYS_MEM_SYS_PWR_REG
, 0xFFFFFFFF},
303 {"SECSS_MEM_SYS_PWR_REG", SECSS_MEM_SYS_PWR_REG
, 0xFFFFFFFF},
304 {"PCIe_MEM_SYS_PWR_REG", PCIe_MEM_SYS_PWR_REG
, 0xFFFFFFFF},
305 {"SATA_MEM_SYS_PWR_REG", SATA_MEM_SYS_PWR_REG
, 0xFFFFFFFF},
306 {"PAD_RETENTION_DRAM_SYS_PWR_REG", PAD_RETENTION_DRAM_SYS_PWR_REG
,
308 {"PAD_RETENTION_MAUDIO_SYS_PWR_REG", PAD_RETENTION_MAUDIO_SYS_PWR_REG
,
310 {"PAD_RETENTION_GPIO_SYS_PWR_REG", PAD_RETENTION_GPIO_SYS_PWR_REG
,
312 {"PAD_RETENTION_UART_SYS_PWR_REG", PAD_RETENTION_UART_SYS_PWR_REG
,
314 {"PAD_RETENTION_MMCA_SYS_PWR_REG", PAD_RETENTION_MMCA_SYS_PWR_REG
,
316 {"PAD_RETENTION_MMCB_SYS_PWR_REG", PAD_RETENTION_MMCB_SYS_PWR_REG
,
318 {"PAD_RETENTION_EBIA_SYS_PWR_REG", PAD_RETENTION_EBIA_SYS_PWR_REG
,
320 {"PAD_RETENTION_EBIB_SYS_PWR_REG", PAD_RETENTION_EBIB_SYS_PWR_REG
,
322 {"PAD_ISOLATION_SYS_PWR_REG", PAD_ISOLATION_SYS_PWR_REG
, 0xFFFFFFFF},
323 {"PAD_ALV_SEL_SYS_PWR_REG", PAD_ALV_SEL_SYS_PWR_REG
, 0xFFFFFFFF},
324 {"XUSBXTI_SYS_PWR_REG", XUSBXTI_SYS_PWR_REG
, 0xFFFFFFFF},
325 {"XXTI_SYS_PWR_REG", XXTI_SYS_PWR_REG
, 0xFFFFFFFF},
326 {"EXT_REGULATOR_SYS_PWR_REG", EXT_REGULATOR_SYS_PWR_REG
, 0xFFFFFFFF},
327 {"GPIO_MODE_SYS_PWR_REG", GPIO_MODE_SYS_PWR_REG
, 0xFFFFFFFF},
328 {"GPIO_MODE_MAUDIO_SYS_PWR_REG", GPIO_MODE_MAUDIO_SYS_PWR_REG
, 0xFFFFFFFF},
329 {"CAM_SYS_PWR_REG", CAM_SYS_PWR_REG
, 0xFFFFFFFF},
330 {"TV_SYS_PWR_REG", TV_SYS_PWR_REG
, 0xFFFFFFFF},
331 {"MFC_SYS_PWR_REG", MFC_SYS_PWR_REG
, 0xFFFFFFFF},
332 {"G3D_SYS_PWR_REG", G3D_SYS_PWR_REG
, 0xFFFFFFFF},
333 {"LCD0_SYS_PWR_REG", LCD0_SYS_PWR_REG
, 0xFFFFFFFF},
334 {"LCD1_SYS_PWR_REG", LCD1_SYS_PWR_REG
, 0xFFFFFFFF},
335 {"MAUDIO_SYS_PWR_REG", MAUDIO_SYS_PWR_REG
, 0xFFFFFFFF},
336 {"GPS_SYS_PWR_REG", GPS_SYS_PWR_REG
, 0xFFFFFFFF},
337 {"GPS_ALIVE_SYS_PWR_REG", GPS_ALIVE_SYS_PWR_REG
, 0xFFFFFFFF},
338 {"ARM_CORE0_CONFIGURATION", ARM_CORE0_CONFIGURATION
, 0x00000003},
339 {"ARM_CORE0_STATUS", ARM_CORE0_STATUS
, 0x00030003},
340 {"ARM_CORE0_OPTION", ARM_CORE0_OPTION
, 0x01010001},
341 {"ARM_CORE1_CONFIGURATION", ARM_CORE1_CONFIGURATION
, 0x00000003},
342 {"ARM_CORE1_STATUS", ARM_CORE1_STATUS
, 0x00030003},
343 {"ARM_CORE1_OPTION", ARM_CORE1_OPTION
, 0x01010001},
344 {"ARM_COMMON_OPTION", ARM_COMMON_OPTION
, 0x00000001},
345 {"ARM_CPU_L2_0_CONFIGURATION", ARM_CPU_L2_0_CONFIGURATION
, 0x00000003},
346 {"ARM_CPU_L2_0_STATUS", ARM_CPU_L2_0_STATUS
, 0x00000003},
347 {"ARM_CPU_L2_1_CONFIGURATION", ARM_CPU_L2_1_CONFIGURATION
, 0x00000003},
348 {"ARM_CPU_L2_1_STATUS", ARM_CPU_L2_1_STATUS
, 0x00000003},
349 {"PAD_RETENTION_MAUDIO_OPTION", PAD_RETENTION_MAUDIO_OPTION
, 0x00000000},
350 {"PAD_RETENTION_GPIO_OPTION", PAD_RETENTION_GPIO_OPTION
, 0x00000000},
351 {"PAD_RETENTION_UART_OPTION", PAD_RETENTION_UART_OPTION
, 0x00000000},
352 {"PAD_RETENTION_MMCA_OPTION", PAD_RETENTION_MMCA_OPTION
, 0x00000000},
353 {"PAD_RETENTION_MMCB_OPTION", PAD_RETENTION_MMCB_OPTION
, 0x00000000},
354 {"PAD_RETENTION_EBIA_OPTION", PAD_RETENTION_EBIA_OPTION
, 0x00000000},
355 {"PAD_RETENTION_EBIB_OPTION", PAD_RETENTION_EBIB_OPTION
, 0x00000000},
357 * PS_HOLD_CONTROL: reset value and manually toggle high the DATA bit.
358 * DATA bit high, set usually by bootloader, keeps system on.
360 {"PS_HOLD_CONTROL", PS_HOLD_CONTROL
, 0x00005200 | BIT(8)},
361 {"XUSBXTI_CONFIGURATION", XUSBXTI_CONFIGURATION
, 0x00000001},
362 {"XUSBXTI_STATUS", XUSBXTI_STATUS
, 0x00000001},
363 {"XUSBXTI_DURATION", XUSBXTI_DURATION
, 0xFFF00000},
364 {"XXTI_CONFIGURATION", XXTI_CONFIGURATION
, 0x00000001},
365 {"XXTI_STATUS", XXTI_STATUS
, 0x00000001},
366 {"XXTI_DURATION", XXTI_DURATION
, 0xFFF00000},
367 {"EXT_REGULATOR_DURATION", EXT_REGULATOR_DURATION
, 0xFFF03FFF},
368 {"CAM_CONFIGURATION", CAM_CONFIGURATION
, 0x00000007},
369 {"CAM_STATUS", CAM_STATUS
, 0x00060007},
370 {"CAM_OPTION", CAM_OPTION
, 0x00000001},
371 {"TV_CONFIGURATION", TV_CONFIGURATION
, 0x00000007},
372 {"TV_STATUS", TV_STATUS
, 0x00060007},
373 {"TV_OPTION", TV_OPTION
, 0x00000001},
374 {"MFC_CONFIGURATION", MFC_CONFIGURATION
, 0x00000007},
375 {"MFC_STATUS", MFC_STATUS
, 0x00060007},
376 {"MFC_OPTION", MFC_OPTION
, 0x00000001},
377 {"G3D_CONFIGURATION", G3D_CONFIGURATION
, 0x00000007},
378 {"G3D_STATUS", G3D_STATUS
, 0x00060007},
379 {"G3D_OPTION", G3D_OPTION
, 0x00000001},
380 {"LCD0_CONFIGURATION", LCD0_CONFIGURATION
, 0x00000007},
381 {"LCD0_STATUS", LCD0_STATUS
, 0x00060007},
382 {"LCD0_OPTION", LCD0_OPTION
, 0x00000001},
383 {"LCD1_CONFIGURATION", LCD1_CONFIGURATION
, 0x00000007},
384 {"LCD1_STATUS", LCD1_STATUS
, 0x00060007},
385 {"LCD1_OPTION", LCD1_OPTION
, 0x00000001},
386 {"GPS_CONFIGURATION", GPS_CONFIGURATION
, 0x00000007},
387 {"GPS_STATUS", GPS_STATUS
, 0x00060007},
388 {"GPS_OPTION", GPS_OPTION
, 0x00000001},
389 {"GPS_ALIVE_CONFIGURATION", GPS_ALIVE_CONFIGURATION
, 0x00000007},
390 {"GPS_ALIVE_STATUS", GPS_ALIVE_STATUS
, 0x00060007},
391 {"GPS_ALIVE_OPTION", GPS_ALIVE_OPTION
, 0x00000001},
394 #define PMU_NUM_OF_REGISTERS ARRAY_SIZE(exynos4210_pmu_regs)
396 #define TYPE_EXYNOS4210_PMU "exynos4210.pmu"
397 #define EXYNOS4210_PMU(obj) \
398 OBJECT_CHECK(Exynos4210PmuState, (obj), TYPE_EXYNOS4210_PMU)
400 typedef struct Exynos4210PmuState
{
401 SysBusDevice parent_obj
;
404 uint32_t reg
[PMU_NUM_OF_REGISTERS
];
405 } Exynos4210PmuState
;
407 static void exynos4210_pmu_poweroff(void)
409 PRINT_DEBUG("QEMU PMU: PS_HOLD bit down, powering off\n");
410 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN
);
413 static uint64_t exynos4210_pmu_read(void *opaque
, hwaddr offset
,
416 Exynos4210PmuState
*s
= (Exynos4210PmuState
*)opaque
;
417 const Exynos4210PmuReg
*reg_p
= exynos4210_pmu_regs
;
420 for (i
= 0; i
< PMU_NUM_OF_REGISTERS
; i
++) {
421 if (reg_p
->offset
== offset
) {
422 PRINT_DEBUG_EXTEND("%s [0x%04x] -> 0x%04x\n", reg_p
->name
,
423 (uint32_t)offset
, s
->reg
[i
]);
428 PRINT_DEBUG("QEMU PMU ERROR: bad read offset 0x%04x\n", (uint32_t)offset
);
432 static void exynos4210_pmu_write(void *opaque
, hwaddr offset
,
433 uint64_t val
, unsigned size
)
435 Exynos4210PmuState
*s
= (Exynos4210PmuState
*)opaque
;
436 const Exynos4210PmuReg
*reg_p
= exynos4210_pmu_regs
;
439 for (i
= 0; i
< PMU_NUM_OF_REGISTERS
; i
++) {
440 if (reg_p
->offset
== offset
) {
441 PRINT_DEBUG_EXTEND("%s <0x%04x> <- 0x%04x\n", reg_p
->name
,
442 (uint32_t)offset
, (uint32_t)val
);
444 if ((offset
== PS_HOLD_CONTROL
) && ((val
& BIT(8)) == 0)) {
446 * We are interested only in setting data bit
447 * of PS_HOLD_CONTROL register to indicate power off request.
449 exynos4210_pmu_poweroff();
455 PRINT_DEBUG("QEMU PMU ERROR: bad write offset 0x%04x\n", (uint32_t)offset
);
458 static const MemoryRegionOps exynos4210_pmu_ops
= {
459 .read
= exynos4210_pmu_read
,
460 .write
= exynos4210_pmu_write
,
461 .endianness
= DEVICE_NATIVE_ENDIAN
,
463 .min_access_size
= 4,
464 .max_access_size
= 4,
469 static void exynos4210_pmu_reset(DeviceState
*dev
)
471 Exynos4210PmuState
*s
= EXYNOS4210_PMU(dev
);
474 /* Set default values for registers */
475 for (i
= 0; i
< PMU_NUM_OF_REGISTERS
; i
++) {
476 s
->reg
[i
] = exynos4210_pmu_regs
[i
].reset_value
;
480 static void exynos4210_pmu_init(Object
*obj
)
482 Exynos4210PmuState
*s
= EXYNOS4210_PMU(obj
);
483 SysBusDevice
*dev
= SYS_BUS_DEVICE(obj
);
486 memory_region_init_io(&s
->iomem
, obj
, &exynos4210_pmu_ops
, s
,
487 "exynos4210.pmu", EXYNOS4210_PMU_REGS_MEM_SIZE
);
488 sysbus_init_mmio(dev
, &s
->iomem
);
491 static const VMStateDescription exynos4210_pmu_vmstate
= {
492 .name
= "exynos4210.pmu",
494 .minimum_version_id
= 1,
495 .fields
= (VMStateField
[]) {
496 VMSTATE_UINT32_ARRAY(reg
, Exynos4210PmuState
, PMU_NUM_OF_REGISTERS
),
497 VMSTATE_END_OF_LIST()
501 static void exynos4210_pmu_class_init(ObjectClass
*klass
, void *data
)
503 DeviceClass
*dc
= DEVICE_CLASS(klass
);
505 dc
->reset
= exynos4210_pmu_reset
;
506 dc
->vmsd
= &exynos4210_pmu_vmstate
;
509 static const TypeInfo exynos4210_pmu_info
= {
510 .name
= TYPE_EXYNOS4210_PMU
,
511 .parent
= TYPE_SYS_BUS_DEVICE
,
512 .instance_size
= sizeof(Exynos4210PmuState
),
513 .instance_init
= exynos4210_pmu_init
,
514 .class_init
= exynos4210_pmu_class_init
,
517 static void exynos4210_pmu_register(void)
519 type_register_static(&exynos4210_pmu_info
);
522 type_init(exynos4210_pmu_register
)