blob: ac943df9348968d8334bed0325b09f5db241c5f6 [file] [log] [blame]
Linus Walleij650c2a22011-05-15 22:53:56 +02001/*
2 * Copyright (C) STMicroelectronics 2009
3 * Copyright (C) ST-Ericsson SA 2010
4 *
Linus Walleij650c2a22011-05-15 22:53:56 +02005 * License Terms: GNU General Public License v2
Mattias Nilsson3df57bc2011-05-16 00:15:05 +02006 * Author: Kumar Sanghvi <kumar.sanghvi@stericsson.com>
Linus Walleij650c2a22011-05-15 22:53:56 +02007 *
Mattias Nilsson3df57bc2011-05-16 00:15:05 +02008 * PRCMU f/w APIs
Linus Walleij650c2a22011-05-15 22:53:56 +02009 */
Mattias Nilsson3df57bc2011-05-16 00:15:05 +020010#ifndef __MFD_DB8500_PRCMU_H
11#define __MFD_DB8500_PRCMU_H
Linus Walleij650c2a22011-05-15 22:53:56 +020012
Mattias Nilsson3df57bc2011-05-16 00:15:05 +020013#include <linux/interrupt.h>
Mattias Nilssonb4a6dbd2012-01-13 16:21:00 +010014#include <linux/bitops.h>
15
16/*
17 * Registers
18 */
Mattias Nilssonb4a6dbd2012-01-13 16:21:00 +010019#define DB8500_PRCM_LINE_VALUE 0x170
20#define DB8500_PRCM_LINE_VALUE_HSI_CAWAKE0 BIT(3)
21
22#define DB8500_PRCM_DSI_SW_RESET 0x324
23#define DB8500_PRCM_DSI_SW_RESET_DSI0_SW_RESETN BIT(0)
24#define DB8500_PRCM_DSI_SW_RESET_DSI1_SW_RESETN BIT(1)
25#define DB8500_PRCM_DSI_SW_RESET_DSI2_SW_RESETN BIT(2)
Linus Walleij650c2a22011-05-15 22:53:56 +020026
Mattias Nilsson3df57bc2011-05-16 00:15:05 +020027/* This portion previously known as <mach/prcmu-fw-defs_v1.h> */
28
29/**
30 * enum state - ON/OFF state definition
31 * @OFF: State is ON
32 * @ON: State is OFF
33 *
34 */
35enum state {
36 OFF = 0x0,
37 ON = 0x1,
Linus Walleij650c2a22011-05-15 22:53:56 +020038};
39
Mattias Nilsson3df57bc2011-05-16 00:15:05 +020040/**
41 * enum ret_state - general purpose On/Off/Retention states
42 *
43 */
44enum ret_state {
45 OFFST = 0,
46 ONST = 1,
47 RETST = 2
48};
49
50/**
51 * enum clk_arm - ARM Cortex A9 clock schemes
52 * @A9_OFF:
53 * @A9_BOOT:
54 * @A9_OPPT1:
55 * @A9_OPPT2:
56 * @A9_EXTCLK:
57 */
58enum clk_arm {
59 A9_OFF,
60 A9_BOOT,
61 A9_OPPT1,
62 A9_OPPT2,
63 A9_EXTCLK
64};
65
66/**
67 * enum clk_gen - GEN#0/GEN#1 clock schemes
68 * @GEN_OFF:
69 * @GEN_BOOT:
70 * @GEN_OPPT1:
71 */
72enum clk_gen {
73 GEN_OFF,
74 GEN_BOOT,
75 GEN_OPPT1,
76};
77
78/* some information between arm and xp70 */
79
80/**
81 * enum romcode_write - Romcode message written by A9 AND read by XP70
82 * @RDY_2_DS: Value set when ApDeepSleep state can be executed by XP70
83 * @RDY_2_XP70_RST: Value set when 0x0F has been successfully polled by the
84 * romcode. The xp70 will go into self-reset
85 */
86enum romcode_write {
87 RDY_2_DS = 0x09,
88 RDY_2_XP70_RST = 0x10
89};
90
91/**
92 * enum romcode_read - Romcode message written by XP70 and read by A9
93 * @INIT: Init value when romcode field is not used
94 * @FS_2_DS: Value set when power state is going from ApExecute to
95 * ApDeepSleep
96 * @END_DS: Value set when ApDeepSleep power state is reached coming from
97 * ApExecute state
98 * @DS_TO_FS: Value set when power state is going from ApDeepSleep to
99 * ApExecute
100 * @END_FS: Value set when ApExecute power state is reached coming from
101 * ApDeepSleep state
102 * @SWR: Value set when power state is going to ApReset
103 * @END_SWR: Value set when the xp70 finished executing ApReset actions and
104 * waits for romcode acknowledgment to go to self-reset
105 */
106enum romcode_read {
107 INIT = 0x00,
108 FS_2_DS = 0x0A,
109 END_DS = 0x0B,
110 DS_TO_FS = 0x0C,
111 END_FS = 0x0D,
112 SWR = 0x0E,
113 END_SWR = 0x0F
114};
115
116/**
117 * enum ap_pwrst - current power states defined in PRCMU firmware
118 * @NO_PWRST: Current power state init
119 * @AP_BOOT: Current power state is apBoot
120 * @AP_EXECUTE: Current power state is apExecute
121 * @AP_DEEP_SLEEP: Current power state is apDeepSleep
122 * @AP_SLEEP: Current power state is apSleep
123 * @AP_IDLE: Current power state is apIdle
124 * @AP_RESET: Current power state is apReset
125 */
126enum ap_pwrst {
127 NO_PWRST = 0x00,
128 AP_BOOT = 0x01,
129 AP_EXECUTE = 0x02,
130 AP_DEEP_SLEEP = 0x03,
131 AP_SLEEP = 0x04,
132 AP_IDLE = 0x05,
133 AP_RESET = 0x06
134};
135
136/**
137 * enum ap_pwrst_trans - Transition states defined in PRCMU firmware
138 * @NO_TRANSITION: No power state transition
139 * @APEXECUTE_TO_APSLEEP: Power state transition from ApExecute to ApSleep
140 * @APIDLE_TO_APSLEEP: Power state transition from ApIdle to ApSleep
141 * @APBOOT_TO_APEXECUTE: Power state transition from ApBoot to ApExecute
142 * @APEXECUTE_TO_APDEEPSLEEP: Power state transition from ApExecute to
143 * ApDeepSleep
144 * @APEXECUTE_TO_APIDLE: Power state transition from ApExecute to ApIdle
145 */
146enum ap_pwrst_trans {
Mattias Nilsson73180f82011-08-12 10:28:10 +0200147 PRCMU_AP_NO_CHANGE = 0x00,
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200148 APEXECUTE_TO_APSLEEP = 0x01,
149 APIDLE_TO_APSLEEP = 0x02, /* To be removed */
150 PRCMU_AP_SLEEP = 0x01,
151 APBOOT_TO_APEXECUTE = 0x03,
152 APEXECUTE_TO_APDEEPSLEEP = 0x04, /* To be removed */
153 PRCMU_AP_DEEP_SLEEP = 0x04,
154 APEXECUTE_TO_APIDLE = 0x05, /* To be removed */
155 PRCMU_AP_IDLE = 0x05,
156 PRCMU_AP_DEEP_IDLE = 0x07,
157};
158
159/**
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200160 * enum hw_acc_state - State definition for hardware accelerator
161 * @HW_NO_CHANGE: The hardware accelerator state must remain unchanged
162 * @HW_OFF: The hardware accelerator must be switched off
163 * @HW_OFF_RAMRET: The hardware accelerator must be switched off with its
164 * internal RAM in retention
165 * @HW_ON: The hwa hardware accelerator hwa must be switched on
166 *
167 * NOTE! Deprecated, to be removed when all users switched over to use the
168 * regulator API.
169 */
170enum hw_acc_state {
171 HW_NO_CHANGE = 0x00,
172 HW_OFF = 0x01,
173 HW_OFF_RAMRET = 0x02,
174 HW_ON = 0x04
175};
176
177/**
178 * enum mbox_2_arm_stat - Status messages definition for mbox_arm
179 * @BOOT_TO_EXECUTEOK: The apBoot to apExecute state transition has been
180 * completed
181 * @DEEPSLEEPOK: The apExecute to apDeepSleep state transition has been
182 * completed
183 * @SLEEPOK: The apExecute to apSleep state transition has been completed
184 * @IDLEOK: The apExecute to apIdle state transition has been completed
185 * @SOFTRESETOK: The A9 watchdog/ SoftReset state has been completed
186 * @SOFTRESETGO : The A9 watchdog/SoftReset state is on going
187 * @BOOT_TO_EXECUTE: The apBoot to apExecute state transition is on going
188 * @EXECUTE_TO_DEEPSLEEP: The apExecute to apDeepSleep state transition is on
189 * going
190 * @DEEPSLEEP_TO_EXECUTE: The apDeepSleep to apExecute state transition is on
191 * going
192 * @DEEPSLEEP_TO_EXECUTEOK: The apDeepSleep to apExecute state transition has
193 * been completed
194 * @EXECUTE_TO_SLEEP: The apExecute to apSleep state transition is on going
195 * @SLEEP_TO_EXECUTE: The apSleep to apExecute state transition is on going
196 * @SLEEP_TO_EXECUTEOK: The apSleep to apExecute state transition has been
197 * completed
198 * @EXECUTE_TO_IDLE: The apExecute to apIdle state transition is on going
199 * @IDLE_TO_EXECUTE: The apIdle to apExecute state transition is on going
200 * @IDLE_TO_EXECUTEOK: The apIdle to apExecute state transition has been
201 * completed
202 * @INIT_STATUS: Status init
203 */
204enum ap_pwrsttr_status {
205 BOOT_TO_EXECUTEOK = 0xFF,
206 DEEPSLEEPOK = 0xFE,
207 SLEEPOK = 0xFD,
208 IDLEOK = 0xFC,
209 SOFTRESETOK = 0xFB,
210 SOFTRESETGO = 0xFA,
211 BOOT_TO_EXECUTE = 0xF9,
212 EXECUTE_TO_DEEPSLEEP = 0xF8,
213 DEEPSLEEP_TO_EXECUTE = 0xF7,
214 DEEPSLEEP_TO_EXECUTEOK = 0xF6,
215 EXECUTE_TO_SLEEP = 0xF5,
216 SLEEP_TO_EXECUTE = 0xF4,
217 SLEEP_TO_EXECUTEOK = 0xF3,
218 EXECUTE_TO_IDLE = 0xF2,
219 IDLE_TO_EXECUTE = 0xF1,
220 IDLE_TO_EXECUTEOK = 0xF0,
221 RDYTODS_RETURNTOEXE = 0xEF,
222 NORDYTODS_RETURNTOEXE = 0xEE,
223 EXETOSLEEP_RETURNTOEXE = 0xED,
224 EXETOIDLE_RETURNTOEXE = 0xEC,
225 INIT_STATUS = 0xEB,
226
227 /*error messages */
228 INITERROR = 0x00,
229 PLLARMLOCKP_ER = 0x01,
230 PLLDDRLOCKP_ER = 0x02,
231 PLLSOCLOCKP_ER = 0x03,
232 PLLSOCK1LOCKP_ER = 0x04,
233 ARMWFI_ER = 0x05,
234 SYSCLKOK_ER = 0x06,
235 I2C_NACK_DATA_ER = 0x07,
236 BOOT_ER = 0x08,
237 I2C_STATUS_ALWAYS_1 = 0x0A,
238 I2C_NACK_REG_ADDR_ER = 0x0B,
239 I2C_NACK_DATA0123_ER = 0x1B,
240 I2C_NACK_ADDR_ER = 0x1F,
241 CURAPPWRSTISNOT_BOOT = 0x20,
242 CURAPPWRSTISNOT_EXECUTE = 0x21,
243 CURAPPWRSTISNOT_SLEEPMODE = 0x22,
244 CURAPPWRSTISNOT_CORRECTFORIT10 = 0x23,
245 FIFO4500WUISNOT_WUPEVENT = 0x24,
246 PLL32KLOCKP_ER = 0x29,
247 DDRDEEPSLEEPOK_ER = 0x2A,
248 ROMCODEREADY_ER = 0x50,
249 WUPBEFOREDS = 0x51,
250 DDRCONFIG_ER = 0x52,
251 WUPBEFORESLEEP = 0x53,
252 WUPBEFOREIDLE = 0x54
253}; /* earlier called as mbox_2_arm_stat */
254
255/**
256 * enum dvfs_stat - DVFS status messages definition
257 * @DVFS_GO: A state transition DVFS is on going
258 * @DVFS_ARM100OPPOK: The state transition DVFS has been completed for 100OPP
259 * @DVFS_ARM50OPPOK: The state transition DVFS has been completed for 50OPP
260 * @DVFS_ARMEXTCLKOK: The state transition DVFS has been completed for EXTCLK
261 * @DVFS_NOCHGTCLKOK: The state transition DVFS has been completed for
262 * NOCHGCLK
263 * @DVFS_INITSTATUS: Value init
264 */
265enum dvfs_stat {
266 DVFS_GO = 0xFF,
267 DVFS_ARM100OPPOK = 0xFE,
268 DVFS_ARM50OPPOK = 0xFD,
269 DVFS_ARMEXTCLKOK = 0xFC,
270 DVFS_NOCHGTCLKOK = 0xFB,
271 DVFS_INITSTATUS = 0x00
272};
273
274/**
275 * enum sva_mmdsp_stat - SVA MMDSP status messages
276 * @SVA_MMDSP_GO: SVAMMDSP interrupt has happened
277 * @SVA_MMDSP_INIT: Status init
278 */
279enum sva_mmdsp_stat {
280 SVA_MMDSP_GO = 0xFF,
281 SVA_MMDSP_INIT = 0x00
282};
283
284/**
285 * enum sia_mmdsp_stat - SIA MMDSP status messages
286 * @SIA_MMDSP_GO: SIAMMDSP interrupt has happened
287 * @SIA_MMDSP_INIT: Status init
288 */
289enum sia_mmdsp_stat {
290 SIA_MMDSP_GO = 0xFF,
291 SIA_MMDSP_INIT = 0x00
292};
293
294/**
295 * enum mbox_to_arm_err - Error messages definition
296 * @INIT_ERR: Init value
297 * @PLLARMLOCKP_ERR: PLLARM has not been correctly locked in given time
298 * @PLLDDRLOCKP_ERR: PLLDDR has not been correctly locked in the given time
299 * @PLLSOC0LOCKP_ERR: PLLSOC0 has not been correctly locked in the given time
300 * @PLLSOC1LOCKP_ERR: PLLSOC1 has not been correctly locked in the given time
301 * @ARMWFI_ERR: The ARM WFI has not been correctly executed in the given time
302 * @SYSCLKOK_ERR: The SYSCLK is not available in the given time
303 * @BOOT_ERR: Romcode has not validated the XP70 self reset in the given time
304 * @ROMCODESAVECONTEXT: The Romcode didn.t correctly save it secure context
305 * @VARMHIGHSPEEDVALTO_ERR: The ARM high speed supply value transfered
306 * through I2C has not been correctly executed in the given time
307 * @VARMHIGHSPEEDACCESS_ERR: The command value of VarmHighSpeedVal transfered
308 * through I2C has not been correctly executed in the given time
309 * @VARMLOWSPEEDVALTO_ERR:The ARM low speed supply value transfered through
310 * I2C has not been correctly executed in the given time
311 * @VARMLOWSPEEDACCESS_ERR: The command value of VarmLowSpeedVal transfered
312 * through I2C has not been correctly executed in the given time
313 * @VARMRETENTIONVALTO_ERR: The ARM retention supply value transfered through
314 * I2C has not been correctly executed in the given time
315 * @VARMRETENTIONACCESS_ERR: The command value of VarmRetentionVal transfered
316 * through I2C has not been correctly executed in the given time
317 * @VAPEHIGHSPEEDVALTO_ERR: The APE highspeed supply value transfered through
318 * I2C has not been correctly executed in the given time
319 * @VSAFEHPVALTO_ERR: The SAFE high power supply value transfered through I2C
320 * has not been correctly executed in the given time
321 * @VMODSEL1VALTO_ERR: The MODEM sel1 supply value transfered through I2C has
322 * not been correctly executed in the given time
323 * @VMODSEL2VALTO_ERR: The MODEM sel2 supply value transfered through I2C has
324 * not been correctly executed in the given time
325 * @VARMOFFACCESS_ERR: The command value of Varm ON/OFF transfered through
326 * I2C has not been correctly executed in the given time
327 * @VAPEOFFACCESS_ERR: The command value of Vape ON/OFF transfered through
328 * I2C has not been correctly executed in the given time
329 * @VARMRETACCES_ERR: The command value of Varm retention ON/OFF transfered
330 * through I2C has not been correctly executed in the given time
331 * @CURAPPWRSTISNOTBOOT:Generated when Arm want to do power state transition
332 * ApBoot to ApExecute but the power current state is not Apboot
333 * @CURAPPWRSTISNOTEXECUTE: Generated when Arm want to do power state
334 * transition from ApExecute to others power state but the
335 * power current state is not ApExecute
336 * @CURAPPWRSTISNOTSLEEPMODE: Generated when wake up events are transmitted
337 * but the power current state is not ApDeepSleep/ApSleep/ApIdle
338 * @CURAPPWRSTISNOTCORRECTDBG: Generated when wake up events are transmitted
339 * but the power current state is not correct
340 * @ARMREGU1VALTO_ERR:The ArmRegu1 value transferred through I2C has not
341 * been correctly executed in the given time
342 * @ARMREGU2VALTO_ERR: The ArmRegu2 value transferred through I2C has not
343 * been correctly executed in the given time
344 * @VAPEREGUVALTO_ERR: The VApeRegu value transfered through I2C has not
345 * been correctly executed in the given time
346 * @VSMPS3REGUVALTO_ERR: The VSmps3Regu value transfered through I2C has not
347 * been correctly executed in the given time
348 * @VMODREGUVALTO_ERR: The VModemRegu value transfered through I2C has not
349 * been correctly executed in the given time
350 */
351enum mbox_to_arm_err {
352 INIT_ERR = 0x00,
353 PLLARMLOCKP_ERR = 0x01,
354 PLLDDRLOCKP_ERR = 0x02,
355 PLLSOC0LOCKP_ERR = 0x03,
356 PLLSOC1LOCKP_ERR = 0x04,
357 ARMWFI_ERR = 0x05,
358 SYSCLKOK_ERR = 0x06,
359 BOOT_ERR = 0x07,
360 ROMCODESAVECONTEXT = 0x08,
361 VARMHIGHSPEEDVALTO_ERR = 0x10,
362 VARMHIGHSPEEDACCESS_ERR = 0x11,
363 VARMLOWSPEEDVALTO_ERR = 0x12,
364 VARMLOWSPEEDACCESS_ERR = 0x13,
365 VARMRETENTIONVALTO_ERR = 0x14,
366 VARMRETENTIONACCESS_ERR = 0x15,
367 VAPEHIGHSPEEDVALTO_ERR = 0x16,
368 VSAFEHPVALTO_ERR = 0x17,
369 VMODSEL1VALTO_ERR = 0x18,
370 VMODSEL2VALTO_ERR = 0x19,
371 VARMOFFACCESS_ERR = 0x1A,
372 VAPEOFFACCESS_ERR = 0x1B,
373 VARMRETACCES_ERR = 0x1C,
374 CURAPPWRSTISNOTBOOT = 0x20,
375 CURAPPWRSTISNOTEXECUTE = 0x21,
376 CURAPPWRSTISNOTSLEEPMODE = 0x22,
377 CURAPPWRSTISNOTCORRECTDBG = 0x23,
378 ARMREGU1VALTO_ERR = 0x24,
379 ARMREGU2VALTO_ERR = 0x25,
380 VAPEREGUVALTO_ERR = 0x26,
381 VSMPS3REGUVALTO_ERR = 0x27,
382 VMODREGUVALTO_ERR = 0x28
383};
384
385enum hw_acc {
386 SVAMMDSP = 0,
387 SVAPIPE = 1,
388 SIAMMDSP = 2,
389 SIAPIPE = 3,
390 SGA = 4,
391 B2R2MCDE = 5,
392 ESRAM12 = 6,
393 ESRAM34 = 7,
394};
395
396enum cs_pwrmgt {
397 PWRDNCS0 = 0,
398 WKUPCS0 = 1,
399 PWRDNCS1 = 2,
400 WKUPCS1 = 3
401};
402
403/* Defs related to autonomous power management */
404
405/**
406 * enum sia_sva_pwr_policy - Power policy
407 * @NO_CHGT: No change
408 * @DSPOFF_HWPOFF:
409 * @DSPOFFRAMRET_HWPOFF:
410 * @DSPCLKOFF_HWPOFF:
411 * @DSPCLKOFF_HWPCLKOFF:
412 *
413 */
414enum sia_sva_pwr_policy {
415 NO_CHGT = 0x0,
416 DSPOFF_HWPOFF = 0x1,
417 DSPOFFRAMRET_HWPOFF = 0x2,
418 DSPCLKOFF_HWPOFF = 0x3,
419 DSPCLKOFF_HWPCLKOFF = 0x4,
420};
421
422/**
423 * enum auto_enable - Auto Power enable
424 * @AUTO_OFF:
425 * @AUTO_ON:
426 *
427 */
428enum auto_enable {
429 AUTO_OFF = 0x0,
430 AUTO_ON = 0x1,
431};
432
433/* End of file previously known as prcmu-fw-defs_v1.h */
434
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200435/**
Mattias Nilsson4d64d2e2012-01-13 16:20:43 +0100436 * enum prcmu_power_status - results from set_power_state
437 * @PRCMU_SLEEP_OK: Sleep went ok
438 * @PRCMU_DEEP_SLEEP_OK: DeepSleep went ok
439 * @PRCMU_IDLE_OK: Idle went ok
440 * @PRCMU_DEEPIDLE_OK: DeepIdle went ok
441 * @PRCMU_PRCMU2ARMPENDINGIT_ER: Pending interrupt detected
442 * @PRCMU_ARMPENDINGIT_ER: Pending interrupt detected
443 *
444 */
445enum prcmu_power_status {
446 PRCMU_SLEEP_OK = 0xf3,
447 PRCMU_DEEP_SLEEP_OK = 0xf6,
448 PRCMU_IDLE_OK = 0xf0,
449 PRCMU_DEEPIDLE_OK = 0xe3,
450 PRCMU_PRCMU2ARMPENDINGIT_ER = 0x91,
451 PRCMU_ARMPENDINGIT_ER = 0x93,
452};
453
Linus Walleij650c2a22011-05-15 22:53:56 +0200454/*
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200455 * Definitions for autonomous power management configuration.
456 */
457
458#define PRCMU_AUTO_PM_OFF 0
459#define PRCMU_AUTO_PM_ON 1
460
461#define PRCMU_AUTO_PM_POWER_ON_HSEM BIT(0)
462#define PRCMU_AUTO_PM_POWER_ON_ABB_FIFO_IT BIT(1)
463
464enum prcmu_auto_pm_policy {
465 PRCMU_AUTO_PM_POLICY_NO_CHANGE,
466 PRCMU_AUTO_PM_POLICY_DSP_OFF_HWP_OFF,
467 PRCMU_AUTO_PM_POLICY_DSP_OFF_RAMRET_HWP_OFF,
468 PRCMU_AUTO_PM_POLICY_DSP_CLK_OFF_HWP_OFF,
469 PRCMU_AUTO_PM_POLICY_DSP_CLK_OFF_HWP_CLK_OFF,
470};
471
472/**
473 * struct prcmu_auto_pm_config - Autonomous power management configuration.
474 * @sia_auto_pm_enable: SIA autonomous pm enable. (PRCMU_AUTO_PM_{OFF,ON})
475 * @sia_power_on: SIA power ON enable. (PRCMU_AUTO_PM_POWER_ON_* bitmask)
476 * @sia_policy: SIA power policy. (enum prcmu_auto_pm_policy)
477 * @sva_auto_pm_enable: SVA autonomous pm enable. (PRCMU_AUTO_PM_{OFF,ON})
478 * @sva_power_on: SVA power ON enable. (PRCMU_AUTO_PM_POWER_ON_* bitmask)
479 * @sva_policy: SVA power policy. (enum prcmu_auto_pm_policy)
480 */
481struct prcmu_auto_pm_config {
482 u8 sia_auto_pm_enable;
483 u8 sia_power_on;
484 u8 sia_policy;
485 u8 sva_auto_pm_enable;
486 u8 sva_power_on;
487 u8 sva_policy;
488};
489
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200490#ifdef CONFIG_MFD_DB8500_PRCMU
491
Linus Walleij9a47a8d2013-03-21 12:27:25 +0100492void db8500_prcmu_early_init(u32 phy_base, u32 size);
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200493int prcmu_set_rc_a2p(enum romcode_write);
494enum romcode_read prcmu_get_rc_p2a(void);
495enum ap_pwrst prcmu_get_xp70_current_state(void);
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200496bool prcmu_has_arm_maxopp(void);
Mattias Nilssonb58d12f2012-01-13 16:20:10 +0100497struct prcmu_fw_version *prcmu_get_fw_version(void);
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200498int prcmu_release_usb_wakeup_state(void);
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200499void prcmu_configure_auto_pm(struct prcmu_auto_pm_config *sleep,
500 struct prcmu_auto_pm_config *idle);
501bool prcmu_is_auto_pm_enabled(void);
502
503int prcmu_config_clkout(u8 clkout, u8 source, u8 div);
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200504int prcmu_set_clock_divider(u8 clock, u8 divider);
Mattias Nilsson05089012012-01-13 16:20:20 +0100505int db8500_prcmu_config_hotdog(u8 threshold);
506int db8500_prcmu_config_hotmon(u8 low, u8 high);
507int db8500_prcmu_start_temp_sense(u16 cycles32k);
508int db8500_prcmu_stop_temp_sense(void);
Linus Walleij650c2a22011-05-15 22:53:56 +0200509int prcmu_abb_read(u8 slave, u8 reg, u8 *value, u8 size);
510int prcmu_abb_write(u8 slave, u8 reg, u8 *value, u8 size);
Linus Walleij650c2a22011-05-15 22:53:56 +0200511
Arun Murthy5261e102012-05-21 14:28:21 +0530512int prcmu_ac_wake_req(void);
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200513void prcmu_ac_sleep_req(void);
Mattias Nilsson05089012012-01-13 16:20:20 +0100514void db8500_prcmu_modem_reset(void);
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200515
Mattias Nilsson05089012012-01-13 16:20:20 +0100516int db8500_prcmu_config_a9wdog(u8 num, bool sleep_auto_off);
517int db8500_prcmu_enable_a9wdog(u8 id);
518int db8500_prcmu_disable_a9wdog(u8 id);
519int db8500_prcmu_kick_a9wdog(u8 id);
520int db8500_prcmu_load_a9wdog(u8 id, u32 val);
Mattias Nilsson73180f82011-08-12 10:28:10 +0200521
522void db8500_prcmu_system_reset(u16 reset_code);
523int db8500_prcmu_set_power_state(u8 state, bool keep_ulp_clk, bool keep_ap_pll);
Mattias Nilsson4d64d2e2012-01-13 16:20:43 +0100524u8 db8500_prcmu_get_power_state_result(void);
Daniel Lezcano485540d2012-02-20 12:30:26 +0100525int db8500_prcmu_gic_decouple(void);
526int db8500_prcmu_gic_recouple(void);
Daniel Lezcano9f60d332012-02-28 22:46:07 +0100527int db8500_prcmu_copy_gic_settings(void);
Daniel Lezcanocc9a0f62012-02-28 22:46:06 +0100528bool db8500_prcmu_gic_pending_irq(void);
Daniel Lezcano9ab492e2012-02-28 22:46:08 +0100529bool db8500_prcmu_pending_irq(void);
Daniel Lezcano34fe6f12012-02-28 22:46:09 +0100530bool db8500_prcmu_is_cpu_in_wfi(int cpu);
Mattias Nilsson73180f82011-08-12 10:28:10 +0200531void db8500_prcmu_enable_wakeups(u32 wakeups);
532int db8500_prcmu_set_epod(u16 epod_id, u8 epod_state);
533int db8500_prcmu_request_clock(u8 clock, bool enable);
534int db8500_prcmu_set_display_clocks(void);
535int db8500_prcmu_disable_dsipll(void);
536int db8500_prcmu_enable_dsipll(void);
537void db8500_prcmu_config_abb_event_readout(u32 abb_events);
538void db8500_prcmu_get_abb_event_buffer(void __iomem **buf);
539int db8500_prcmu_config_esram0_deep_sleep(u8 state);
540u16 db8500_prcmu_get_reset_code(void);
541bool db8500_prcmu_is_ac_wake_requested(void);
542int db8500_prcmu_set_arm_opp(u8 opp);
543int db8500_prcmu_get_arm_opp(void);
Mattias Nilsson05089012012-01-13 16:20:20 +0100544int db8500_prcmu_set_ape_opp(u8 opp);
545int db8500_prcmu_get_ape_opp(void);
Ulf Hansson686f8712012-09-24 16:43:17 +0200546int db8500_prcmu_request_ape_opp_100_voltage(bool enable);
Mattias Nilsson05089012012-01-13 16:20:20 +0100547int db8500_prcmu_set_ddr_opp(u8 opp);
548int db8500_prcmu_get_ddr_opp(void);
Mattias Nilsson73180f82011-08-12 10:28:10 +0200549
Mattias Nilssonb4a6dbd2012-01-13 16:21:00 +0100550u32 db8500_prcmu_read(unsigned int reg);
551void db8500_prcmu_write(unsigned int reg, u32 value);
552void db8500_prcmu_write_masked(unsigned int reg, u32 mask, u32 value);
553
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200554#else /* !CONFIG_MFD_DB8500_PRCMU */
555
Linus Walleij9a47a8d2013-03-21 12:27:25 +0100556static inline void db8500_prcmu_early_init(u32 phy_base, u32 size) {}
Mattias Nilsson73180f82011-08-12 10:28:10 +0200557
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200558static inline int prcmu_set_rc_a2p(enum romcode_write code)
559{
560 return 0;
561}
562
563static inline enum romcode_read prcmu_get_rc_p2a(void)
564{
565 return INIT;
566}
567
568static inline enum ap_pwrst prcmu_get_xp70_current_state(void)
569{
570 return AP_EXECUTE;
571}
572
Mattias Nilsson73180f82011-08-12 10:28:10 +0200573static inline bool prcmu_has_arm_maxopp(void)
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200574{
575 return false;
576}
577
Mattias Nilssonb58d12f2012-01-13 16:20:10 +0100578static inline struct prcmu_fw_version *prcmu_get_fw_version(void)
579{
580 return NULL;
581}
582
Mattias Nilsson05089012012-01-13 16:20:20 +0100583static inline int db8500_prcmu_set_ape_opp(u8 opp)
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200584{
585 return 0;
586}
587
Mattias Nilsson05089012012-01-13 16:20:20 +0100588static inline int db8500_prcmu_get_ape_opp(void)
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200589{
590 return APE_100_OPP;
591}
592
Ulf Hansson686f8712012-09-24 16:43:17 +0200593static inline int db8500_prcmu_request_ape_opp_100_voltage(bool enable)
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200594{
595 return 0;
596}
597
598static inline int prcmu_release_usb_wakeup_state(void)
599{
600 return 0;
601}
602
Mattias Nilsson05089012012-01-13 16:20:20 +0100603static inline int db8500_prcmu_set_ddr_opp(u8 opp)
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200604{
605 return 0;
606}
607
Mattias Nilsson05089012012-01-13 16:20:20 +0100608static inline int db8500_prcmu_get_ddr_opp(void)
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200609{
610 return DDR_100_OPP;
611}
612
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200613static inline void prcmu_configure_auto_pm(struct prcmu_auto_pm_config *sleep,
614 struct prcmu_auto_pm_config *idle)
615{
616}
617
618static inline bool prcmu_is_auto_pm_enabled(void)
619{
620 return false;
621}
622
623static inline int prcmu_config_clkout(u8 clkout, u8 source, u8 div)
624{
625 return 0;
626}
627
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200628static inline int prcmu_set_clock_divider(u8 clock, u8 divider)
629{
630 return 0;
631}
632
Mattias Nilsson05089012012-01-13 16:20:20 +0100633static inline int db8500_prcmu_config_hotdog(u8 threshold)
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200634{
635 return 0;
636}
637
Mattias Nilsson05089012012-01-13 16:20:20 +0100638static inline int db8500_prcmu_config_hotmon(u8 low, u8 high)
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200639{
640 return 0;
641}
642
Mattias Nilsson05089012012-01-13 16:20:20 +0100643static inline int db8500_prcmu_start_temp_sense(u16 cycles32k)
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200644{
645 return 0;
646}
647
Mattias Nilsson05089012012-01-13 16:20:20 +0100648static inline int db8500_prcmu_stop_temp_sense(void)
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200649{
650 return 0;
651}
652
653static inline int prcmu_abb_read(u8 slave, u8 reg, u8 *value, u8 size)
654{
655 return -ENOSYS;
656}
657
658static inline int prcmu_abb_write(u8 slave, u8 reg, u8 *value, u8 size)
659{
660 return -ENOSYS;
661}
662
Arun Murthy5261e102012-05-21 14:28:21 +0530663static inline int prcmu_ac_wake_req(void)
664{
665 return 0;
666}
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200667
668static inline void prcmu_ac_sleep_req(void) {}
669
Mattias Nilsson05089012012-01-13 16:20:20 +0100670static inline void db8500_prcmu_modem_reset(void) {}
671
672static inline void db8500_prcmu_system_reset(u16 reset_code) {}
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200673
Mattias Nilsson73180f82011-08-12 10:28:10 +0200674static inline int db8500_prcmu_set_power_state(u8 state, bool keep_ulp_clk,
675 bool keep_ap_pll)
676{
677 return 0;
678}
679
Mattias Nilsson4d64d2e2012-01-13 16:20:43 +0100680static inline u8 db8500_prcmu_get_power_state_result(void)
681{
682 return 0;
683}
684
Mattias Nilsson73180f82011-08-12 10:28:10 +0200685static inline void db8500_prcmu_enable_wakeups(u32 wakeups) {}
686
687static inline int db8500_prcmu_set_epod(u16 epod_id, u8 epod_state)
688{
689 return 0;
690}
691
692static inline int db8500_prcmu_request_clock(u8 clock, bool enable)
693{
694 return 0;
695}
696
697static inline int db8500_prcmu_set_display_clocks(void)
698{
699 return 0;
700}
701
702static inline int db8500_prcmu_disable_dsipll(void)
703{
704 return 0;
705}
706
707static inline int db8500_prcmu_enable_dsipll(void)
708{
709 return 0;
710}
711
712static inline int db8500_prcmu_config_esram0_deep_sleep(u8 state)
713{
714 return 0;
715}
716
717static inline void db8500_prcmu_config_abb_event_readout(u32 abb_events) {}
718
719static inline void db8500_prcmu_get_abb_event_buffer(void __iomem **buf) {}
720
721static inline u16 db8500_prcmu_get_reset_code(void)
722{
723 return 0;
724}
725
Mattias Nilsson05089012012-01-13 16:20:20 +0100726static inline int db8500_prcmu_config_a9wdog(u8 num, bool sleep_auto_off)
Mattias Nilsson73180f82011-08-12 10:28:10 +0200727{
728 return 0;
729}
730
Mattias Nilsson05089012012-01-13 16:20:20 +0100731static inline int db8500_prcmu_enable_a9wdog(u8 id)
Mattias Nilsson73180f82011-08-12 10:28:10 +0200732{
733 return 0;
734}
735
Mattias Nilsson05089012012-01-13 16:20:20 +0100736static inline int db8500_prcmu_disable_a9wdog(u8 id)
Mattias Nilsson73180f82011-08-12 10:28:10 +0200737{
738 return 0;
739}
740
Mattias Nilsson05089012012-01-13 16:20:20 +0100741static inline int db8500_prcmu_kick_a9wdog(u8 id)
Mattias Nilsson73180f82011-08-12 10:28:10 +0200742{
743 return 0;
744}
745
Mattias Nilsson05089012012-01-13 16:20:20 +0100746static inline int db8500_prcmu_load_a9wdog(u8 id, u32 val)
Mattias Nilsson73180f82011-08-12 10:28:10 +0200747{
748 return 0;
749}
750
751static inline bool db8500_prcmu_is_ac_wake_requested(void)
752{
753 return 0;
754}
755
756static inline int db8500_prcmu_set_arm_opp(u8 opp)
757{
758 return 0;
759}
760
761static inline int db8500_prcmu_get_arm_opp(void)
762{
763 return 0;
764}
765
Mattias Nilssonb4a6dbd2012-01-13 16:21:00 +0100766static inline u32 db8500_prcmu_read(unsigned int reg)
767{
768 return 0;
769}
770
771static inline void db8500_prcmu_write(unsigned int reg, u32 value) {}
772
773static inline void db8500_prcmu_write_masked(unsigned int reg, u32 mask,
774 u32 value) {}
775
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200776#endif /* !CONFIG_MFD_DB8500_PRCMU */
777
Mattias Nilsson3df57bc2011-05-16 00:15:05 +0200778#endif /* __MFD_DB8500_PRCMU_H */