Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 1 | /* |
Santosh Shilimkar | 705814b | 2012-04-12 16:51:47 +0530 | [diff] [blame] | 2 | * OMAP4+ Power Management Routines |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 3 | * |
Santosh Shilimkar | 705814b | 2012-04-12 16:51:47 +0530 | [diff] [blame] | 4 | * Copyright (C) 2010-2013 Texas Instruments, Inc. |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 5 | * Rajendra Nayak <rnayak@ti.com> |
Santosh Shilimkar | e44f9a7 | 2010-06-16 22:19:49 +0530 | [diff] [blame] | 6 | * Santosh Shilimkar <santosh.shilimkar@ti.com> |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/pm.h> |
| 14 | #include <linux/suspend.h> |
| 15 | #include <linux/module.h> |
| 16 | #include <linux/list.h> |
| 17 | #include <linux/err.h> |
| 18 | #include <linux/slab.h> |
David Howells | 9f97da7 | 2012-03-28 18:30:01 +0100 | [diff] [blame] | 19 | #include <asm/system_misc.h> |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 20 | |
Tony Lindgren | e4c060d | 2012-10-05 13:25:59 -0700 | [diff] [blame] | 21 | #include "soc.h" |
Tony Lindgren | 4e65331 | 2011-11-10 22:45:17 +0100 | [diff] [blame] | 22 | #include "common.h" |
Santosh Shilimkar | 3c50729 | 2011-01-05 22:03:17 +0530 | [diff] [blame] | 23 | #include "clockdomain.h" |
Paul Walmsley | 72e06d0 | 2010-12-21 21:05:16 -0700 | [diff] [blame] | 24 | #include "powerdomain.h" |
Santosh Shilimkar | e44f9a7 | 2010-06-16 22:19:49 +0530 | [diff] [blame] | 25 | #include "pm.h" |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 26 | |
Nishanth Menon | de70af4 | 2014-01-20 14:06:37 -0600 | [diff] [blame] | 27 | u16 pm44xx_errata; |
| 28 | |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 29 | struct power_state { |
| 30 | struct powerdomain *pwrdm; |
| 31 | u32 next_state; |
Nishanth Menon | 46ba552 | 2014-06-05 21:40:39 -0500 | [diff] [blame] | 32 | u32 next_logic_state; |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 33 | #ifdef CONFIG_SUSPEND |
| 34 | u32 saved_state; |
Santosh Shilimkar | 3ba2a73 | 2011-06-06 14:33:29 +0530 | [diff] [blame] | 35 | u32 saved_logic_state; |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 36 | #endif |
| 37 | struct list_head node; |
| 38 | }; |
| 39 | |
Rajendra Nayak | 6099dd3 | 2013-05-27 15:46:44 +0530 | [diff] [blame] | 40 | static u32 cpu_suspend_state = PWRDM_POWER_OFF; |
| 41 | |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 42 | static LIST_HEAD(pwrst_list); |
| 43 | |
| 44 | #ifdef CONFIG_SUSPEND |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 45 | static int omap4_pm_suspend(void) |
| 46 | { |
Santosh Shilimkar | e44f9a7 | 2010-06-16 22:19:49 +0530 | [diff] [blame] | 47 | struct power_state *pwrst; |
| 48 | int state, ret = 0; |
| 49 | u32 cpu_id = smp_processor_id(); |
| 50 | |
| 51 | /* Save current powerdomain state */ |
| 52 | list_for_each_entry(pwrst, &pwrst_list, node) { |
| 53 | pwrst->saved_state = pwrdm_read_next_pwrst(pwrst->pwrdm); |
Santosh Shilimkar | 3ba2a73 | 2011-06-06 14:33:29 +0530 | [diff] [blame] | 54 | pwrst->saved_logic_state = pwrdm_read_logic_retst(pwrst->pwrdm); |
Santosh Shilimkar | e44f9a7 | 2010-06-16 22:19:49 +0530 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | /* Set targeted power domain states by suspend */ |
| 58 | list_for_each_entry(pwrst, &pwrst_list, node) { |
| 59 | omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state); |
Nishanth Menon | 46ba552 | 2014-06-05 21:40:39 -0500 | [diff] [blame] | 60 | pwrdm_set_logic_retst(pwrst->pwrdm, pwrst->next_logic_state); |
Santosh Shilimkar | e44f9a7 | 2010-06-16 22:19:49 +0530 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | /* |
| 64 | * For MPUSS to hit power domain retention(CSWR or OSWR), |
| 65 | * CPU0 and CPU1 power domains need to be in OFF or DORMANT state, |
| 66 | * since CPU power domain CSWR is not supported by hardware |
| 67 | * Only master CPU follows suspend path. All other CPUs follow |
| 68 | * CPU hotplug path in system wide suspend. On OMAP4, CPU power |
| 69 | * domain CSWR is not supported by hardware. |
| 70 | * More details can be found in OMAP4430 TRM section 4.3.4.2. |
| 71 | */ |
Rajendra Nayak | 6099dd3 | 2013-05-27 15:46:44 +0530 | [diff] [blame] | 72 | omap4_enter_lowpower(cpu_id, cpu_suspend_state); |
Santosh Shilimkar | e44f9a7 | 2010-06-16 22:19:49 +0530 | [diff] [blame] | 73 | |
| 74 | /* Restore next powerdomain state */ |
| 75 | list_for_each_entry(pwrst, &pwrst_list, node) { |
| 76 | state = pwrdm_read_prev_pwrst(pwrst->pwrdm); |
| 77 | if (state > pwrst->next_state) { |
Paul Walmsley | 7852ec0 | 2012-07-26 00:54:26 -0600 | [diff] [blame] | 78 | pr_info("Powerdomain (%s) didn't enter target state %d\n", |
| 79 | pwrst->pwrdm->name, pwrst->next_state); |
Santosh Shilimkar | e44f9a7 | 2010-06-16 22:19:49 +0530 | [diff] [blame] | 80 | ret = -1; |
| 81 | } |
| 82 | omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state); |
Santosh Shilimkar | 3ba2a73 | 2011-06-06 14:33:29 +0530 | [diff] [blame] | 83 | pwrdm_set_logic_retst(pwrst->pwrdm, pwrst->saved_logic_state); |
Santosh Shilimkar | e44f9a7 | 2010-06-16 22:19:49 +0530 | [diff] [blame] | 84 | } |
Rajendra Nayak | 6048009 | 2013-02-04 17:54:43 +0530 | [diff] [blame] | 85 | if (ret) { |
Santosh Shilimkar | e44f9a7 | 2010-06-16 22:19:49 +0530 | [diff] [blame] | 86 | pr_crit("Could not enter target state in pm_suspend\n"); |
Rajendra Nayak | 6048009 | 2013-02-04 17:54:43 +0530 | [diff] [blame] | 87 | /* |
| 88 | * OMAP4 chip PM currently works only with certain (newer) |
| 89 | * versions of bootloaders. This is due to missing code in the |
| 90 | * kernel to properly reset and initialize some devices. |
| 91 | * Warn the user about the bootloader version being one of the |
| 92 | * possible causes. |
| 93 | * http://www.spinics.net/lists/arm-kernel/msg218641.html |
| 94 | */ |
| 95 | pr_warn("A possible cause could be an old bootloader - try u-boot >= v2012.07\n"); |
| 96 | } else { |
Santosh Shilimkar | e44f9a7 | 2010-06-16 22:19:49 +0530 | [diff] [blame] | 97 | pr_info("Successfully put all powerdomains to target state\n"); |
Rajendra Nayak | 6048009 | 2013-02-04 17:54:43 +0530 | [diff] [blame] | 98 | } |
Santosh Shilimkar | e44f9a7 | 2010-06-16 22:19:49 +0530 | [diff] [blame] | 99 | |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 100 | return 0; |
| 101 | } |
Dave Gerlach | 2e4b62d | 2014-05-12 13:33:21 -0500 | [diff] [blame] | 102 | #else |
| 103 | #define omap4_pm_suspend NULL |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 104 | #endif /* CONFIG_SUSPEND */ |
| 105 | |
| 106 | static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused) |
| 107 | { |
| 108 | struct power_state *pwrst; |
| 109 | |
| 110 | if (!pwrdm->pwrsts) |
| 111 | return 0; |
| 112 | |
Santosh Shilimkar | e44f9a7 | 2010-06-16 22:19:49 +0530 | [diff] [blame] | 113 | /* |
| 114 | * Skip CPU0 and CPU1 power domains. CPU1 is programmed |
| 115 | * through hotplug path and CPU0 explicitly programmed |
| 116 | * further down in the code path |
| 117 | */ |
Rajendra Nayak | 6099dd3 | 2013-05-27 15:46:44 +0530 | [diff] [blame] | 118 | if (!strncmp(pwrdm->name, "cpu", 3)) { |
| 119 | if (IS_PM44XX_ERRATUM(PM_OMAP4_CPU_OSWR_DISABLE)) |
| 120 | cpu_suspend_state = PWRDM_POWER_RET; |
Santosh Shilimkar | e44f9a7 | 2010-06-16 22:19:49 +0530 | [diff] [blame] | 121 | return 0; |
Rajendra Nayak | 6099dd3 | 2013-05-27 15:46:44 +0530 | [diff] [blame] | 122 | } |
Santosh Shilimkar | e44f9a7 | 2010-06-16 22:19:49 +0530 | [diff] [blame] | 123 | |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 124 | pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC); |
| 125 | if (!pwrst) |
| 126 | return -ENOMEM; |
Santosh Shilimkar | e44f9a7 | 2010-06-16 22:19:49 +0530 | [diff] [blame] | 127 | |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 128 | pwrst->pwrdm = pwrdm; |
Nishanth Menon | bd7593c | 2014-06-06 01:17:37 -0500 | [diff] [blame] | 129 | pwrst->next_state = pwrdm_get_valid_lp_state(pwrdm, false, |
| 130 | PWRDM_POWER_RET); |
| 131 | pwrst->next_logic_state = pwrdm_get_valid_lp_state(pwrdm, true, |
| 132 | PWRDM_POWER_OFF); |
Nishanth Menon | 46ba552 | 2014-06-05 21:40:39 -0500 | [diff] [blame] | 133 | |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 134 | list_add(&pwrst->node, &pwrst_list); |
| 135 | |
Santosh Shilimkar | e44f9a7 | 2010-06-16 22:19:49 +0530 | [diff] [blame] | 136 | return omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state); |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | /** |
Santosh Shilimkar | 72826b9 | 2011-07-18 12:25:10 +0530 | [diff] [blame] | 140 | * omap_default_idle - OMAP4 default ilde routine.' |
| 141 | * |
| 142 | * Implements OMAP4 memory, IO ordering requirements which can't be addressed |
Paul Bolle | 6200632 | 2013-03-29 21:35:01 +0100 | [diff] [blame] | 143 | * with default cpu_do_idle() hook. Used by all CPUs with !CONFIG_CPU_IDLE and |
| 144 | * by secondary CPU with CONFIG_CPU_IDLE. |
Santosh Shilimkar | 72826b9 | 2011-07-18 12:25:10 +0530 | [diff] [blame] | 145 | */ |
| 146 | static void omap_default_idle(void) |
| 147 | { |
Santosh Shilimkar | 72826b9 | 2011-07-18 12:25:10 +0530 | [diff] [blame] | 148 | omap_do_wfi(); |
Santosh Shilimkar | 72826b9 | 2011-07-18 12:25:10 +0530 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | /** |
Santosh Shilimkar | 705814b | 2012-04-12 16:51:47 +0530 | [diff] [blame] | 152 | * omap4_init_static_deps - Add OMAP4 static dependencies |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 153 | * |
Santosh Shilimkar | 705814b | 2012-04-12 16:51:47 +0530 | [diff] [blame] | 154 | * Add needed static clockdomain dependencies on OMAP4 devices. |
| 155 | * Return: 0 on success or 'err' on failures |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 156 | */ |
Santosh Shilimkar | 705814b | 2012-04-12 16:51:47 +0530 | [diff] [blame] | 157 | static inline int omap4_init_static_deps(void) |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 158 | { |
Santosh Shilimkar | 6cf3895 | 2013-02-16 17:55:08 +0530 | [diff] [blame] | 159 | struct clockdomain *emif_clkdm, *mpuss_clkdm, *l3_1_clkdm; |
Santosh Shilimkar | d5336a5 | 2013-02-16 18:04:54 +0530 | [diff] [blame] | 160 | struct clockdomain *ducati_clkdm, *l3_2_clkdm; |
Santosh Shilimkar | 705814b | 2012-04-12 16:51:47 +0530 | [diff] [blame] | 161 | int ret = 0; |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 162 | |
Santosh Shilimkar | 361b02f | 2011-03-11 16:13:09 +0530 | [diff] [blame] | 163 | if (omap_rev() == OMAP4430_REV_ES1_0) { |
| 164 | WARN(1, "Power Management not supported on OMAP4430 ES1.0\n"); |
| 165 | return -ENODEV; |
| 166 | } |
| 167 | |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 168 | pr_err("Power Management for TI OMAP4.\n"); |
Rajendra Nayak | 6048009 | 2013-02-04 17:54:43 +0530 | [diff] [blame] | 169 | /* |
| 170 | * OMAP4 chip PM currently works only with certain (newer) |
| 171 | * versions of bootloaders. This is due to missing code in the |
| 172 | * kernel to properly reset and initialize some devices. |
| 173 | * http://www.spinics.net/lists/arm-kernel/msg218641.html |
| 174 | */ |
| 175 | pr_warn("OMAP4 PM: u-boot >= v2012.07 is required for full PM support\n"); |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 176 | |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 177 | ret = pwrdm_for_each(pwrdms_setup, NULL); |
| 178 | if (ret) { |
| 179 | pr_err("Failed to setup powerdomains\n"); |
Santosh Shilimkar | 705814b | 2012-04-12 16:51:47 +0530 | [diff] [blame] | 180 | return ret; |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 181 | } |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 182 | |
Santosh Shilimkar | 12f2782 | 2011-03-08 18:24:30 +0530 | [diff] [blame] | 183 | /* |
| 184 | * The dynamic dependency between MPUSS -> MEMIF and |
| 185 | * MPUSS -> L4_PER/L3_* and DUCATI -> L3_* doesn't work as |
| 186 | * expected. The hardware recommendation is to enable static |
| 187 | * dependencies for these to avoid system lock ups or random crashes. |
Santosh Shilimkar | 705814b | 2012-04-12 16:51:47 +0530 | [diff] [blame] | 188 | * The L4 wakeup depedency is added to workaround the OCP sync hardware |
| 189 | * BUG with 32K synctimer which lead to incorrect timer value read |
| 190 | * from the 32K counter. The BUG applies for GPTIMER1 and WDT2 which |
| 191 | * are part of L4 wakeup clockdomain. |
Santosh Shilimkar | 12f2782 | 2011-03-08 18:24:30 +0530 | [diff] [blame] | 192 | */ |
| 193 | mpuss_clkdm = clkdm_lookup("mpuss_clkdm"); |
| 194 | emif_clkdm = clkdm_lookup("l3_emif_clkdm"); |
| 195 | l3_1_clkdm = clkdm_lookup("l3_1_clkdm"); |
| 196 | l3_2_clkdm = clkdm_lookup("l3_2_clkdm"); |
Santosh Shilimkar | 12f2782 | 2011-03-08 18:24:30 +0530 | [diff] [blame] | 197 | ducati_clkdm = clkdm_lookup("ducati_clkdm"); |
Santosh Shilimkar | 6cf3895 | 2013-02-16 17:55:08 +0530 | [diff] [blame] | 198 | if ((!mpuss_clkdm) || (!emif_clkdm) || (!l3_1_clkdm) || |
Santosh Shilimkar | d5336a5 | 2013-02-16 18:04:54 +0530 | [diff] [blame] | 199 | (!l3_2_clkdm) || (!ducati_clkdm)) |
Santosh Shilimkar | 705814b | 2012-04-12 16:51:47 +0530 | [diff] [blame] | 200 | return -EINVAL; |
Santosh Shilimkar | 12f2782 | 2011-03-08 18:24:30 +0530 | [diff] [blame] | 201 | |
| 202 | ret = clkdm_add_wkdep(mpuss_clkdm, emif_clkdm); |
| 203 | ret |= clkdm_add_wkdep(mpuss_clkdm, l3_1_clkdm); |
| 204 | ret |= clkdm_add_wkdep(mpuss_clkdm, l3_2_clkdm); |
Santosh Shilimkar | 12f2782 | 2011-03-08 18:24:30 +0530 | [diff] [blame] | 205 | ret |= clkdm_add_wkdep(ducati_clkdm, l3_1_clkdm); |
| 206 | ret |= clkdm_add_wkdep(ducati_clkdm, l3_2_clkdm); |
| 207 | if (ret) { |
Paul Walmsley | 7852ec0 | 2012-07-26 00:54:26 -0600 | [diff] [blame] | 208 | pr_err("Failed to add MPUSS -> L3/EMIF/L4PER, DUCATI -> L3 wakeup dependency\n"); |
Santosh Shilimkar | 705814b | 2012-04-12 16:51:47 +0530 | [diff] [blame] | 209 | return -EINVAL; |
| 210 | } |
| 211 | |
| 212 | return ret; |
| 213 | } |
| 214 | |
| 215 | /** |
Santosh Shilimkar | d2136bc | 2013-02-06 15:51:45 +0530 | [diff] [blame] | 216 | * omap5_dra7_init_static_deps - Init static clkdm dependencies on OMAP5 and |
| 217 | * DRA7 |
| 218 | * |
| 219 | * The dynamic dependency between MPUSS -> EMIF is broken and has |
| 220 | * not worked as expected. The hardware recommendation is to |
| 221 | * enable static dependencies for these to avoid system |
| 222 | * lock ups or random crashes. |
| 223 | */ |
| 224 | static inline int omap5_dra7_init_static_deps(void) |
| 225 | { |
| 226 | struct clockdomain *mpuss_clkdm, *emif_clkdm; |
| 227 | int ret; |
| 228 | |
| 229 | mpuss_clkdm = clkdm_lookup("mpu_clkdm"); |
| 230 | emif_clkdm = clkdm_lookup("emif_clkdm"); |
| 231 | if (!mpuss_clkdm || !emif_clkdm) |
| 232 | return -EINVAL; |
| 233 | |
| 234 | ret = clkdm_add_wkdep(mpuss_clkdm, emif_clkdm); |
| 235 | if (ret) |
| 236 | pr_err("Failed to add MPUSS -> EMIF wakeup dependency\n"); |
| 237 | |
| 238 | return ret; |
| 239 | } |
| 240 | |
| 241 | /** |
Nishanth Menon | de70af4 | 2014-01-20 14:06:37 -0600 | [diff] [blame] | 242 | * omap4_pm_init_early - Does early initialization necessary for OMAP4+ devices |
| 243 | * |
| 244 | * Initializes basic stuff for power management functionality. |
| 245 | */ |
| 246 | int __init omap4_pm_init_early(void) |
| 247 | { |
| 248 | if (cpu_is_omap446x()) |
| 249 | pm44xx_errata |= PM_OMAP4_ROM_SMP_BOOT_ERRATUM_GICD; |
| 250 | |
Rajendra Nayak | 6099dd3 | 2013-05-27 15:46:44 +0530 | [diff] [blame] | 251 | if (soc_is_omap54xx() || soc_is_dra7xx()) |
| 252 | pm44xx_errata |= PM_OMAP4_CPU_OSWR_DISABLE; |
| 253 | |
Nishanth Menon | de70af4 | 2014-01-20 14:06:37 -0600 | [diff] [blame] | 254 | return 0; |
| 255 | } |
| 256 | |
| 257 | /** |
Santosh Shilimkar | 705814b | 2012-04-12 16:51:47 +0530 | [diff] [blame] | 258 | * omap4_pm_init - Init routine for OMAP4+ devices |
| 259 | * |
| 260 | * Initializes all powerdomain and clockdomain target states |
| 261 | * and all PRCM settings. |
| 262 | * Return: Returns the error code returned by called functions. |
| 263 | */ |
| 264 | int __init omap4_pm_init(void) |
| 265 | { |
| 266 | int ret = 0; |
| 267 | |
| 268 | if (omap_rev() == OMAP4430_REV_ES1_0) { |
| 269 | WARN(1, "Power Management not supported on OMAP4430 ES1.0\n"); |
| 270 | return -ENODEV; |
| 271 | } |
| 272 | |
| 273 | pr_info("Power Management for TI OMAP4+ devices.\n"); |
| 274 | |
| 275 | ret = pwrdm_for_each(pwrdms_setup, NULL); |
| 276 | if (ret) { |
| 277 | pr_err("Failed to setup powerdomains.\n"); |
Santosh Shilimkar | 12f2782 | 2011-03-08 18:24:30 +0530 | [diff] [blame] | 278 | goto err2; |
| 279 | } |
| 280 | |
Santosh Shilimkar | d2136bc | 2013-02-06 15:51:45 +0530 | [diff] [blame] | 281 | if (cpu_is_omap44xx()) |
Santosh Shilimkar | 705814b | 2012-04-12 16:51:47 +0530 | [diff] [blame] | 282 | ret = omap4_init_static_deps(); |
Santosh Shilimkar | d2136bc | 2013-02-06 15:51:45 +0530 | [diff] [blame] | 283 | else if (soc_is_omap54xx() || soc_is_dra7xx()) |
| 284 | ret = omap5_dra7_init_static_deps(); |
| 285 | |
| 286 | if (ret) { |
| 287 | pr_err("Failed to initialise static dependencies.\n"); |
| 288 | goto err2; |
Santosh Shilimkar | 705814b | 2012-04-12 16:51:47 +0530 | [diff] [blame] | 289 | } |
| 290 | |
Santosh Shilimkar | b2b9762 | 2010-06-16 22:19:48 +0530 | [diff] [blame] | 291 | ret = omap4_mpuss_init(); |
| 292 | if (ret) { |
| 293 | pr_err("Failed to initialise OMAP4 MPUSS\n"); |
| 294 | goto err2; |
| 295 | } |
| 296 | |
Paul Walmsley | 92206fd | 2012-02-02 02:38:50 -0700 | [diff] [blame] | 297 | (void) clkdm_for_each(omap_pm_clkdms_setup, NULL); |
Santosh Shilimkar | 3c50729 | 2011-01-05 22:03:17 +0530 | [diff] [blame] | 298 | |
Dave Gerlach | 2e4b62d | 2014-05-12 13:33:21 -0500 | [diff] [blame] | 299 | omap_common_suspend_init(omap4_pm_suspend); |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 300 | |
Nicolas Pitre | ae94091 | 2011-12-19 03:03:58 -0500 | [diff] [blame] | 301 | /* Overwrite the default cpu_do_idle() */ |
Nicolas Pitre | 0bcd24b | 2012-01-04 16:27:48 -0500 | [diff] [blame] | 302 | arm_pm_idle = omap_default_idle; |
Santosh Shilimkar | 72826b9 | 2011-07-18 12:25:10 +0530 | [diff] [blame] | 303 | |
Santosh Shilimkar | 705814b | 2012-04-12 16:51:47 +0530 | [diff] [blame] | 304 | if (cpu_is_omap44xx()) |
| 305 | omap4_idle_init(); |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 306 | |
Rajendra Nayak | 5643aeb | 2010-08-02 13:18:18 +0300 | [diff] [blame] | 307 | err2: |
| 308 | return ret; |
| 309 | } |