2 * Copyright (C) ST Ericsson SA 2011
4 * License Terms: GNU General Public License v2
11 #include <linux/interrupt.h>
12 #include <linux/notifier.h>
13 #include <linux/err.h>
15 #include <dt-bindings/mfd/dbx500-prcmu.h> /* For clock identifiers */
17 /* Offset for the firmware version within the TCPM */
18 #define DB8500_PRCMU_FW_VERSION_OFFSET 0xA4
19 #define DBX540_PRCMU_FW_VERSION_OFFSET 0xA8
21 /* PRCMU Wakeup defines */
22 enum prcmu_wakeup_index {
23 PRCMU_WAKEUP_INDEX_RTC,
24 PRCMU_WAKEUP_INDEX_RTT0,
25 PRCMU_WAKEUP_INDEX_RTT1,
26 PRCMU_WAKEUP_INDEX_HSI0,
27 PRCMU_WAKEUP_INDEX_HSI1,
28 PRCMU_WAKEUP_INDEX_USB,
29 PRCMU_WAKEUP_INDEX_ABB,
30 PRCMU_WAKEUP_INDEX_ABB_FIFO,
31 PRCMU_WAKEUP_INDEX_ARM,
32 PRCMU_WAKEUP_INDEX_CD_IRQ,
33 NUM_PRCMU_WAKEUP_INDICES
35 #define PRCMU_WAKEUP(_name) (BIT(PRCMU_WAKEUP_INDEX_##_name))
37 /* EPOD (power domain) IDs */
41 * - EPOD_ID_SVAMMDSP: power domain for SVA MMDSP
42 * - EPOD_ID_SVAPIPE: power domain for SVA pipe
43 * - EPOD_ID_SIAMMDSP: power domain for SIA MMDSP
44 * - EPOD_ID_SIAPIPE: power domain for SIA pipe
45 * - EPOD_ID_SGA: power domain for SGA
46 * - EPOD_ID_B2R2_MCDE: power domain for B2R2 and MCDE
47 * - EPOD_ID_ESRAM12: power domain for ESRAM 1 and 2
48 * - EPOD_ID_ESRAM34: power domain for ESRAM 3 and 4
49 * - NUM_EPOD_ID: number of power domains
51 * TODO: These should be prefixed.
53 #define EPOD_ID_SVAMMDSP 0
54 #define EPOD_ID_SVAPIPE 1
55 #define EPOD_ID_SIAMMDSP 2
56 #define EPOD_ID_SIAPIPE 3
58 #define EPOD_ID_B2R2_MCDE 5
59 #define EPOD_ID_ESRAM12 6
60 #define EPOD_ID_ESRAM34 7
64 * state definition for EPOD (power domain)
65 * - EPOD_STATE_NO_CHANGE: The EPOD should remain unchanged
66 * - EPOD_STATE_OFF: The EPOD is switched off
67 * - EPOD_STATE_RAMRET: The EPOD is switched off with its internal RAM in
69 * - EPOD_STATE_ON_CLK_OFF: The EPOD is switched on, clock is still off
70 * - EPOD_STATE_ON: Same as above, but with clock enabled
72 #define EPOD_STATE_NO_CHANGE 0x00
73 #define EPOD_STATE_OFF 0x01
74 #define EPOD_STATE_RAMRET 0x02
75 #define EPOD_STATE_ON_CLK_OFF 0x03
76 #define EPOD_STATE_ON 0x04
81 #define PRCMU_CLKSRC_CLK38M 0x00
82 #define PRCMU_CLKSRC_ACLK 0x01
83 #define PRCMU_CLKSRC_SYSCLK 0x02
84 #define PRCMU_CLKSRC_LCDCLK 0x03
85 #define PRCMU_CLKSRC_SDMMCCLK 0x04
86 #define PRCMU_CLKSRC_TVCLK 0x05
87 #define PRCMU_CLKSRC_TIMCLK 0x06
88 #define PRCMU_CLKSRC_CLK009 0x07
89 /* These are only valid for CLKOUT1: */
90 #define PRCMU_CLKSRC_SIAMMDSPCLK 0x40
91 #define PRCMU_CLKSRC_I2CCLK 0x41
92 #define PRCMU_CLKSRC_MSP02CLK 0x42
93 #define PRCMU_CLKSRC_ARMPLL_OBSCLK 0x43
94 #define PRCMU_CLKSRC_HSIRXCLK 0x44
95 #define PRCMU_CLKSRC_HSITXCLK 0x45
96 #define PRCMU_CLKSRC_ARMCLKFIX 0x46
97 #define PRCMU_CLKSRC_HDMICLK 0x47
100 * enum prcmu_wdog_id - PRCMU watchdog IDs
101 * @PRCMU_WDOG_ALL: use all timers
102 * @PRCMU_WDOG_CPU1: use first CPU timer only
103 * @PRCMU_WDOG_CPU2: use second CPU timer conly
106 PRCMU_WDOG_ALL = 0x00,
107 PRCMU_WDOG_CPU1 = 0x01,
108 PRCMU_WDOG_CPU2 = 0x02,
112 * enum ape_opp - APE OPP states definition
114 * @APE_NO_CHANGE: The APE operating point is unchanged
115 * @APE_100_OPP: The new APE operating point is ape100opp
117 * @APE_50_PARTLY_25_OPP: 50%, except some clocks at 25%.
121 APE_NO_CHANGE = 0x01,
124 APE_50_PARTLY_25_OPP = 0xFF,
128 * enum arm_opp - ARM OPP states definition
130 * @ARM_NO_CHANGE: The ARM operating point is unchanged
131 * @ARM_100_OPP: The new ARM operating point is arm100opp
132 * @ARM_50_OPP: The new ARM operating point is arm50opp
133 * @ARM_MAX_OPP: Operating point is "max" (more than 100)
134 * @ARM_MAX_FREQ100OPP: Set max opp if available, else 100
135 * @ARM_EXTCLK: The new ARM operating point is armExtClk
139 ARM_NO_CHANGE = 0x01,
143 ARM_MAX_FREQ100OPP = 0x05,
148 * enum ddr_opp - DDR OPP states definition
149 * @DDR_100_OPP: The new DDR operating point is ddr100opp
150 * @DDR_50_OPP: The new DDR operating point is ddr50opp
151 * @DDR_25_OPP: The new DDR operating point is ddr25opp
160 * Definitions for controlling ESRAM0 in deep sleep.
162 #define ESRAM0_DEEP_SLEEP_STATE_OFF 1
163 #define ESRAM0_DEEP_SLEEP_STATE_RET 2
166 * enum ddr_pwrst - DDR power states definition
167 * @DDR_PWR_STATE_UNCHANGED: SDRAM and DDR controller state is unchanged
169 * @DDR_PWR_STATE_OFFLOWLAT:
170 * @DDR_PWR_STATE_OFFHIGHLAT:
173 DDR_PWR_STATE_UNCHANGED = 0x00,
174 DDR_PWR_STATE_ON = 0x01,
175 DDR_PWR_STATE_OFFLOWLAT = 0x02,
176 DDR_PWR_STATE_OFFHIGHLAT = 0x03
179 #define DB8500_PRCMU_LEGACY_OFFSET 0xDD4
181 #define PRCMU_FW_PROJECT_U8500 2
182 #define PRCMU_FW_PROJECT_U8400 3
183 #define PRCMU_FW_PROJECT_U9500 4 /* Customer specific */
184 #define PRCMU_FW_PROJECT_U8500_MBB 5
185 #define PRCMU_FW_PROJECT_U8500_C1 6
186 #define PRCMU_FW_PROJECT_U8500_C2 7
187 #define PRCMU_FW_PROJECT_U8500_C3 8
188 #define PRCMU_FW_PROJECT_U8500_C4 9
189 #define PRCMU_FW_PROJECT_U9500_MBL 10
190 #define PRCMU_FW_PROJECT_U8500_MBL 11 /* Customer specific */
191 #define PRCMU_FW_PROJECT_U8500_MBL2 12 /* Customer specific */
192 #define PRCMU_FW_PROJECT_U8520 13
193 #define PRCMU_FW_PROJECT_U8420 14
194 #define PRCMU_FW_PROJECT_A9420 20
195 /* [32..63] 9540 and derivatives */
196 #define PRCMU_FW_PROJECT_U9540 32
197 /* [64..95] 8540 and derivatives */
198 #define PRCMU_FW_PROJECT_L8540 64
199 /* [96..126] 8580 and derivatives */
200 #define PRCMU_FW_PROJECT_L8580 96
202 #define PRCMU_FW_PROJECT_NAME_LEN 20
203 struct prcmu_fw_version {
204 u32 project; /* Notice, project shifted with 8 on ux540 */
208 char project_name[PRCMU_FW_PROJECT_NAME_LEN];
211 #include <linux/mfd/db8500-prcmu.h>
213 #if defined(CONFIG_UX500_SOC_DB8500)
215 static inline void prcmu_early_init(u32 phy_base, u32 size)
217 return db8500_prcmu_early_init(phy_base, size);
220 static inline int prcmu_set_power_state(u8 state, bool keep_ulp_clk,
223 return db8500_prcmu_set_power_state(state, keep_ulp_clk,
227 static inline u8 prcmu_get_power_state_result(void)
229 return db8500_prcmu_get_power_state_result();
232 static inline int prcmu_set_epod(u16 epod_id, u8 epod_state)
234 return db8500_prcmu_set_epod(epod_id, epod_state);
237 static inline void prcmu_enable_wakeups(u32 wakeups)
239 db8500_prcmu_enable_wakeups(wakeups);
242 static inline void prcmu_disable_wakeups(void)
244 prcmu_enable_wakeups(0);
247 static inline void prcmu_config_abb_event_readout(u32 abb_events)
249 db8500_prcmu_config_abb_event_readout(abb_events);
252 static inline void prcmu_get_abb_event_buffer(void __iomem **buf)
254 db8500_prcmu_get_abb_event_buffer(buf);
257 int prcmu_abb_read(u8 slave, u8 reg, u8 *value, u8 size);
258 int prcmu_abb_write(u8 slave, u8 reg, u8 *value, u8 size);
259 int prcmu_abb_write_masked(u8 slave, u8 reg, u8 *value, u8 *mask, u8 size);
261 int prcmu_config_clkout(u8 clkout, u8 source, u8 div);
263 static inline int prcmu_request_clock(u8 clock, bool enable)
265 return db8500_prcmu_request_clock(clock, enable);
268 unsigned long prcmu_clock_rate(u8 clock);
269 long prcmu_round_clock_rate(u8 clock, unsigned long rate);
270 int prcmu_set_clock_rate(u8 clock, unsigned long rate);
272 static inline int prcmu_get_ddr_opp(void)
274 return db8500_prcmu_get_ddr_opp();
277 static inline int prcmu_set_arm_opp(u8 opp)
279 return db8500_prcmu_set_arm_opp(opp);
282 static inline int prcmu_get_arm_opp(void)
284 return db8500_prcmu_get_arm_opp();
287 static inline int prcmu_set_ape_opp(u8 opp)
289 return db8500_prcmu_set_ape_opp(opp);
292 static inline int prcmu_get_ape_opp(void)
294 return db8500_prcmu_get_ape_opp();
297 static inline int prcmu_request_ape_opp_100_voltage(bool enable)
299 return db8500_prcmu_request_ape_opp_100_voltage(enable);
302 static inline void prcmu_system_reset(u16 reset_code)
304 return db8500_prcmu_system_reset(reset_code);
307 static inline u16 prcmu_get_reset_code(void)
309 return db8500_prcmu_get_reset_code();
312 int prcmu_ac_wake_req(void);
313 void prcmu_ac_sleep_req(void);
314 static inline void prcmu_modem_reset(void)
316 return db8500_prcmu_modem_reset();
319 static inline bool prcmu_is_ac_wake_requested(void)
321 return db8500_prcmu_is_ac_wake_requested();
324 static inline int prcmu_set_display_clocks(void)
326 return db8500_prcmu_set_display_clocks();
329 static inline int prcmu_disable_dsipll(void)
331 return db8500_prcmu_disable_dsipll();
334 static inline int prcmu_enable_dsipll(void)
336 return db8500_prcmu_enable_dsipll();
339 static inline int prcmu_config_esram0_deep_sleep(u8 state)
341 return db8500_prcmu_config_esram0_deep_sleep(state);
344 static inline int prcmu_config_hotdog(u8 threshold)
346 return db8500_prcmu_config_hotdog(threshold);
349 static inline int prcmu_config_hotmon(u8 low, u8 high)
351 return db8500_prcmu_config_hotmon(low, high);
354 static inline int prcmu_start_temp_sense(u16 cycles32k)
356 return db8500_prcmu_start_temp_sense(cycles32k);
359 static inline int prcmu_stop_temp_sense(void)
361 return db8500_prcmu_stop_temp_sense();
364 static inline u32 prcmu_read(unsigned int reg)
366 return db8500_prcmu_read(reg);
369 static inline void prcmu_write(unsigned int reg, u32 value)
371 db8500_prcmu_write(reg, value);
374 static inline void prcmu_write_masked(unsigned int reg, u32 mask, u32 value)
376 db8500_prcmu_write_masked(reg, mask, value);
379 static inline int prcmu_enable_a9wdog(u8 id)
381 return db8500_prcmu_enable_a9wdog(id);
384 static inline int prcmu_disable_a9wdog(u8 id)
386 return db8500_prcmu_disable_a9wdog(id);
389 static inline int prcmu_kick_a9wdog(u8 id)
391 return db8500_prcmu_kick_a9wdog(id);
394 static inline int prcmu_load_a9wdog(u8 id, u32 timeout)
396 return db8500_prcmu_load_a9wdog(id, timeout);
399 static inline int prcmu_config_a9wdog(u8 num, bool sleep_auto_off)
401 return db8500_prcmu_config_a9wdog(num, sleep_auto_off);
405 static inline void prcmu_early_init(u32 phy_base, u32 size) {}
407 static inline int prcmu_set_power_state(u8 state, bool keep_ulp_clk,
413 static inline int prcmu_set_epod(u16 epod_id, u8 epod_state)
418 static inline void prcmu_enable_wakeups(u32 wakeups) {}
420 static inline void prcmu_disable_wakeups(void) {}
422 static inline int prcmu_abb_read(u8 slave, u8 reg, u8 *value, u8 size)
427 static inline int prcmu_abb_write(u8 slave, u8 reg, u8 *value, u8 size)
432 static inline int prcmu_abb_write_masked(u8 slave, u8 reg, u8 *value, u8 *mask,
438 static inline int prcmu_config_clkout(u8 clkout, u8 source, u8 div)
443 static inline int prcmu_request_clock(u8 clock, bool enable)
448 static inline long prcmu_round_clock_rate(u8 clock, unsigned long rate)
453 static inline int prcmu_set_clock_rate(u8 clock, unsigned long rate)
458 static inline unsigned long prcmu_clock_rate(u8 clock)
463 static inline int prcmu_set_ape_opp(u8 opp)
468 static inline int prcmu_get_ape_opp(void)
473 static inline int prcmu_request_ape_opp_100_voltage(bool enable)
478 static inline int prcmu_set_arm_opp(u8 opp)
483 static inline int prcmu_get_arm_opp(void)
488 static inline int prcmu_get_ddr_opp(void)
493 static inline void prcmu_system_reset(u16 reset_code) {}
495 static inline u16 prcmu_get_reset_code(void)
500 static inline int prcmu_ac_wake_req(void)
505 static inline void prcmu_ac_sleep_req(void) {}
507 static inline void prcmu_modem_reset(void) {}
509 static inline bool prcmu_is_ac_wake_requested(void)
514 static inline int prcmu_set_display_clocks(void)
519 static inline int prcmu_disable_dsipll(void)
524 static inline int prcmu_enable_dsipll(void)
529 static inline int prcmu_config_esram0_deep_sleep(u8 state)
534 static inline void prcmu_config_abb_event_readout(u32 abb_events) {}
536 static inline void prcmu_get_abb_event_buffer(void __iomem **buf)
541 static inline int prcmu_config_hotdog(u8 threshold)
546 static inline int prcmu_config_hotmon(u8 low, u8 high)
551 static inline int prcmu_start_temp_sense(u16 cycles32k)
556 static inline int prcmu_stop_temp_sense(void)
561 static inline u32 prcmu_read(unsigned int reg)
566 static inline void prcmu_write(unsigned int reg, u32 value) {}
568 static inline void prcmu_write_masked(unsigned int reg, u32 mask, u32 value) {}
572 static inline void prcmu_set(unsigned int reg, u32 bits)
574 prcmu_write_masked(reg, bits, bits);
577 static inline void prcmu_clear(unsigned int reg, u32 bits)
579 prcmu_write_masked(reg, bits, 0);
582 /* PRCMU QoS APE OPP class */
583 #define PRCMU_QOS_APE_OPP 1
584 #define PRCMU_QOS_DDR_OPP 2
585 #define PRCMU_QOS_ARM_OPP 3
586 #define PRCMU_QOS_DEFAULT_VALUE -1
588 #ifdef CONFIG_DBX500_PRCMU_QOS_POWER
590 unsigned long prcmu_qos_get_cpufreq_opp_delay(void);
591 void prcmu_qos_set_cpufreq_opp_delay(unsigned long);
592 void prcmu_qos_force_opp(int, s32);
593 int prcmu_qos_requirement(int pm_qos_class);
594 int prcmu_qos_add_requirement(int pm_qos_class, char *name, s32 value);
595 int prcmu_qos_update_requirement(int pm_qos_class, char *name, s32 new_value);
596 void prcmu_qos_remove_requirement(int pm_qos_class, char *name);
597 int prcmu_qos_add_notifier(int prcmu_qos_class,
598 struct notifier_block *notifier);
599 int prcmu_qos_remove_notifier(int prcmu_qos_class,
600 struct notifier_block *notifier);
604 static inline unsigned long prcmu_qos_get_cpufreq_opp_delay(void)
609 static inline void prcmu_qos_set_cpufreq_opp_delay(unsigned long n) {}
611 static inline void prcmu_qos_force_opp(int prcmu_qos_class, s32 i) {}
613 static inline int prcmu_qos_requirement(int prcmu_qos_class)
618 static inline int prcmu_qos_add_requirement(int prcmu_qos_class,
619 char *name, s32 value)
624 static inline int prcmu_qos_update_requirement(int prcmu_qos_class,
625 char *name, s32 new_value)
630 static inline void prcmu_qos_remove_requirement(int prcmu_qos_class, char *name)
634 static inline int prcmu_qos_add_notifier(int prcmu_qos_class,
635 struct notifier_block *notifier)
639 static inline int prcmu_qos_remove_notifier(int prcmu_qos_class,
640 struct notifier_block *notifier)
647 #endif /* __MACH_PRCMU_H */