mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
ARM: OMAP4: PM: add errata support
Added similar PM errata flag support as omap3 has. This should be used in similar manner, set the flags during init time, and check the flag values during runtime. Signed-off-by: Tero Kristo <t-kristo@ti.com> Signed-off-by: Kevin Hilman <khilman@ti.com>
This commit is contained in:
parent
3d70f8c617
commit
c962184459
@ -102,6 +102,13 @@ extern void enable_omap3630_toggle_l2_on_restore(void);
|
||||
static inline void enable_omap3630_toggle_l2_on_restore(void) { }
|
||||
#endif /* defined(CONFIG_PM) && defined(CONFIG_ARCH_OMAP3) */
|
||||
|
||||
#if defined(CONFIG_ARCH_OMAP4)
|
||||
extern u16 pm44xx_errata;
|
||||
#define IS_PM44XX_ERRATUM(id) (pm44xx_errata & (id))
|
||||
#else
|
||||
#define IS_PM44XX_ERRATUM(id) 0
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_POWER_AVS_OMAP
|
||||
extern int omap_devinit_smartreflex(void);
|
||||
extern void omap_enable_smartreflex_on_init(void);
|
||||
|
@ -34,6 +34,7 @@ struct power_state {
|
||||
};
|
||||
|
||||
static LIST_HEAD(pwrst_list);
|
||||
u16 pm44xx_errata;
|
||||
|
||||
#ifdef CONFIG_SUSPEND
|
||||
static int omap4_pm_suspend(void)
|
||||
|
Loading…
Reference in New Issue
Block a user