2 * OMAP2xxx PRM module functions
4 * Copyright (C) 2010-2012 Texas Instruments, Inc.
5 * Copyright (C) 2010 Nokia Corporation
8 * Rajendra Nayak <rnayak@ti.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/kernel.h>
16 #include <linux/errno.h>
17 #include <linux/err.h>
19 #include <linux/irq.h>
24 #include "powerdomain.h"
25 #include "clockdomain.h"
27 #include "cm2xxx_3xxx.h"
28 #include "prm-regbits-24xx.h"
31 * OMAP24xx PM_PWSTCTRL_*.POWERSTATE and PM_PWSTST_*.LASTSTATEENTERED bits -
32 * these are reversed from the bits used on OMAP3+
34 #define OMAP24XX_PWRDM_POWER_ON 0x0
35 #define OMAP24XX_PWRDM_POWER_RET 0x1
36 #define OMAP24XX_PWRDM_POWER_OFF 0x3
39 * omap2xxx_prm_reset_src_map - map from bits in the PRM_RSTST_WKUP
40 * hardware register (which are specific to the OMAP2xxx SoCs) to
41 * reset source ID bit shifts (which is an OMAP SoC-independent
44 static struct prm_reset_src_map omap2xxx_prm_reset_src_map
[] = {
45 { OMAP_GLOBALCOLD_RST_SHIFT
, OMAP_GLOBAL_COLD_RST_SRC_ID_SHIFT
},
46 { OMAP_GLOBALWARM_RST_SHIFT
, OMAP_GLOBAL_WARM_RST_SRC_ID_SHIFT
},
47 { OMAP24XX_SECU_VIOL_RST_SHIFT
, OMAP_SECU_VIOL_RST_SRC_ID_SHIFT
},
48 { OMAP24XX_MPU_WD_RST_SHIFT
, OMAP_MPU_WD_RST_SRC_ID_SHIFT
},
49 { OMAP24XX_SECU_WD_RST_SHIFT
, OMAP_SECU_WD_RST_SRC_ID_SHIFT
},
50 { OMAP24XX_EXTWMPU_RST_SHIFT
, OMAP_EXTWARM_RST_SRC_ID_SHIFT
},
55 * omap2xxx_prm_read_reset_sources - return the last SoC reset source
57 * Return a u32 representing the last reset sources of the SoC. The
58 * returned reset source bits are standardized across OMAP SoCs.
60 static u32
omap2xxx_prm_read_reset_sources(void)
62 struct prm_reset_src_map
*p
;
66 v
= omap2_prm_read_mod_reg(WKUP_MOD
, OMAP2_RM_RSTST
);
68 p
= omap2xxx_prm_reset_src_map
;
69 while (p
->reg_shift
>= 0 && p
->std_shift
>= 0) {
70 if (v
& (1 << p
->reg_shift
))
71 r
|= 1 << p
->std_shift
;
79 * omap2xxx_pwrst_to_common_pwrst - convert OMAP2xxx pwrst to common pwrst
80 * @omap2xxx_pwrst: OMAP2xxx hardware power state to convert
82 * Return the common power state bits corresponding to the OMAP2xxx
83 * hardware power state bits @omap2xxx_pwrst, or -EINVAL upon error.
85 static int omap2xxx_pwrst_to_common_pwrst(u8 omap2xxx_pwrst
)
89 switch (omap2xxx_pwrst
) {
90 case OMAP24XX_PWRDM_POWER_OFF
:
91 pwrst
= PWRDM_POWER_OFF
;
93 case OMAP24XX_PWRDM_POWER_RET
:
94 pwrst
= PWRDM_POWER_RET
;
96 case OMAP24XX_PWRDM_POWER_ON
:
97 pwrst
= PWRDM_POWER_ON
;
107 * omap2xxx_prm_dpll_reset - use DPLL reset to reboot the OMAP SoC
109 * Set the DPLL reset bit, which should reboot the SoC. This is the
110 * recommended way to restart the SoC. No return value.
112 void omap2xxx_prm_dpll_reset(void)
114 omap2_prm_set_mod_reg_bits(OMAP_RST_DPLL3_MASK
, WKUP_MOD
,
117 omap2_prm_read_mod_reg(WKUP_MOD
, OMAP2_RM_RSTCTRL
);
120 int omap2xxx_clkdm_sleep(struct clockdomain
*clkdm
)
122 omap2_prm_set_mod_reg_bits(OMAP24XX_FORCESTATE_MASK
,
123 clkdm
->pwrdm
.ptr
->prcm_offs
,
128 int omap2xxx_clkdm_wakeup(struct clockdomain
*clkdm
)
130 omap2_prm_clear_mod_reg_bits(OMAP24XX_FORCESTATE_MASK
,
131 clkdm
->pwrdm
.ptr
->prcm_offs
,
136 static int omap2xxx_pwrdm_set_next_pwrst(struct powerdomain
*pwrdm
, u8 pwrst
)
141 case PWRDM_POWER_OFF
:
142 omap24xx_pwrst
= OMAP24XX_PWRDM_POWER_OFF
;
144 case PWRDM_POWER_RET
:
145 omap24xx_pwrst
= OMAP24XX_PWRDM_POWER_RET
;
148 omap24xx_pwrst
= OMAP24XX_PWRDM_POWER_ON
;
154 omap2_prm_rmw_mod_reg_bits(OMAP_POWERSTATE_MASK
,
155 (omap24xx_pwrst
<< OMAP_POWERSTATE_SHIFT
),
156 pwrdm
->prcm_offs
, OMAP2_PM_PWSTCTRL
);
160 static int omap2xxx_pwrdm_read_next_pwrst(struct powerdomain
*pwrdm
)
164 omap2xxx_pwrst
= omap2_prm_read_mod_bits_shift(pwrdm
->prcm_offs
,
166 OMAP_POWERSTATE_MASK
);
168 return omap2xxx_pwrst_to_common_pwrst(omap2xxx_pwrst
);
171 static int omap2xxx_pwrdm_read_pwrst(struct powerdomain
*pwrdm
)
175 omap2xxx_pwrst
= omap2_prm_read_mod_bits_shift(pwrdm
->prcm_offs
,
177 OMAP_POWERSTATEST_MASK
);
179 return omap2xxx_pwrst_to_common_pwrst(omap2xxx_pwrst
);
182 struct pwrdm_ops omap2_pwrdm_operations
= {
183 .pwrdm_set_next_pwrst
= omap2xxx_pwrdm_set_next_pwrst
,
184 .pwrdm_read_next_pwrst
= omap2xxx_pwrdm_read_next_pwrst
,
185 .pwrdm_read_pwrst
= omap2xxx_pwrdm_read_pwrst
,
186 .pwrdm_set_logic_retst
= omap2_pwrdm_set_logic_retst
,
187 .pwrdm_set_mem_onst
= omap2_pwrdm_set_mem_onst
,
188 .pwrdm_set_mem_retst
= omap2_pwrdm_set_mem_retst
,
189 .pwrdm_read_mem_pwrst
= omap2_pwrdm_read_mem_pwrst
,
190 .pwrdm_read_mem_retst
= omap2_pwrdm_read_mem_retst
,
191 .pwrdm_wait_transition
= omap2_pwrdm_wait_transition
,
198 static struct prm_ll_data omap2xxx_prm_ll_data
= {
199 .read_reset_sources
= &omap2xxx_prm_read_reset_sources
,
202 int __init
omap2xxx_prm_init(void)
204 if (!cpu_is_omap24xx())
207 return prm_register(&omap2xxx_prm_ll_data
);
210 static void __exit
omap2xxx_prm_exit(void)
212 if (!cpu_is_omap24xx())
215 /* Should never happen */
216 WARN(prm_unregister(&omap2xxx_prm_ll_data
),
217 "%s: prm_ll_data function pointer mismatch\n", __func__
);
219 __exitcall(omap2xxx_prm_exit
);