blob: 503097c72b826d0f6ddf96547be2d165156271c2 [file] [log] [blame]
Rajendra Nayak5643aeb2010-08-02 13:18:18 +03001/*
Santosh Shilimkar705814b2012-04-12 16:51:47 +05302 * OMAP4+ Power Management Routines
Rajendra Nayak5643aeb2010-08-02 13:18:18 +03003 *
Santosh Shilimkar705814b2012-04-12 16:51:47 +05304 * Copyright (C) 2010-2013 Texas Instruments, Inc.
Rajendra Nayak5643aeb2010-08-02 13:18:18 +03005 * Rajendra Nayak <rnayak@ti.com>
Santosh Shilimkare44f9a72010-06-16 22:19:49 +05306 * Santosh Shilimkar <santosh.shilimkar@ti.com>
Rajendra Nayak5643aeb2010-08-02 13:18:18 +03007 *
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 Howells9f97da72012-03-28 18:30:01 +010019#include <asm/system_misc.h>
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030020
Tony Lindgrene4c060d2012-10-05 13:25:59 -070021#include "soc.h"
Tony Lindgren4e653312011-11-10 22:45:17 +010022#include "common.h"
Santosh Shilimkar3c507292011-01-05 22:03:17 +053023#include "clockdomain.h"
Paul Walmsley72e06d02010-12-21 21:05:16 -070024#include "powerdomain.h"
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053025#include "pm.h"
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030026
Nishanth Menonde70af42014-01-20 14:06:37 -060027u16 pm44xx_errata;
28
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030029struct power_state {
30 struct powerdomain *pwrdm;
31 u32 next_state;
Nishanth Menon46ba5522014-06-05 21:40:39 -050032 u32 next_logic_state;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030033#ifdef CONFIG_SUSPEND
34 u32 saved_state;
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053035 u32 saved_logic_state;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030036#endif
37 struct list_head node;
38};
39
Rajendra Nayak6099dd32013-05-27 15:46:44 +053040static u32 cpu_suspend_state = PWRDM_POWER_OFF;
41
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030042static LIST_HEAD(pwrst_list);
43
44#ifdef CONFIG_SUSPEND
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030045static int omap4_pm_suspend(void)
46{
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053047 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 Shilimkar3ba2a732011-06-06 14:33:29 +053054 pwrst->saved_logic_state = pwrdm_read_logic_retst(pwrst->pwrdm);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053055 }
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 Menon46ba5522014-06-05 21:40:39 -050060 pwrdm_set_logic_retst(pwrst->pwrdm, pwrst->next_logic_state);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053061 }
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 Nayak6099dd32013-05-27 15:46:44 +053072 omap4_enter_lowpower(cpu_id, cpu_suspend_state);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053073
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 Walmsley7852ec02012-07-26 00:54:26 -060078 pr_info("Powerdomain (%s) didn't enter target state %d\n",
79 pwrst->pwrdm->name, pwrst->next_state);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053080 ret = -1;
81 }
82 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053083 pwrdm_set_logic_retst(pwrst->pwrdm, pwrst->saved_logic_state);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053084 }
Rajendra Nayak60480092013-02-04 17:54:43 +053085 if (ret) {
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053086 pr_crit("Could not enter target state in pm_suspend\n");
Rajendra Nayak60480092013-02-04 17:54:43 +053087 /*
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 Shilimkare44f9a72010-06-16 22:19:49 +053097 pr_info("Successfully put all powerdomains to target state\n");
Rajendra Nayak60480092013-02-04 17:54:43 +053098 }
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053099
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300100 return 0;
101}
Dave Gerlach2e4b62d2014-05-12 13:33:21 -0500102#else
103#define omap4_pm_suspend NULL
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300104#endif /* CONFIG_SUSPEND */
105
106static 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 Shilimkare44f9a72010-06-16 22:19:49 +0530113 /*
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 Nayak6099dd32013-05-27 15:46:44 +0530118 if (!strncmp(pwrdm->name, "cpu", 3)) {
119 if (IS_PM44XX_ERRATUM(PM_OMAP4_CPU_OSWR_DISABLE))
120 cpu_suspend_state = PWRDM_POWER_RET;
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530121 return 0;
Rajendra Nayak6099dd32013-05-27 15:46:44 +0530122 }
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530123
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300124 pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC);
125 if (!pwrst)
126 return -ENOMEM;
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530127
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300128 pwrst->pwrdm = pwrdm;
Nishanth Menonbd7593c2014-06-06 01:17:37 -0500129 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 Menon46ba5522014-06-05 21:40:39 -0500133
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300134 list_add(&pwrst->node, &pwrst_list);
135
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530136 return omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300137}
138
139/**
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530140 * omap_default_idle - OMAP4 default ilde routine.'
141 *
142 * Implements OMAP4 memory, IO ordering requirements which can't be addressed
Paul Bolle62006322013-03-29 21:35:01 +0100143 * with default cpu_do_idle() hook. Used by all CPUs with !CONFIG_CPU_IDLE and
144 * by secondary CPU with CONFIG_CPU_IDLE.
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530145 */
146static void omap_default_idle(void)
147{
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530148 omap_do_wfi();
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530149}
150
151/**
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530152 * omap4_init_static_deps - Add OMAP4 static dependencies
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300153 *
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530154 * Add needed static clockdomain dependencies on OMAP4 devices.
155 * Return: 0 on success or 'err' on failures
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300156 */
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530157static inline int omap4_init_static_deps(void)
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300158{
Santosh Shilimkar6cf38952013-02-16 17:55:08 +0530159 struct clockdomain *emif_clkdm, *mpuss_clkdm, *l3_1_clkdm;
Santosh Shilimkard5336a52013-02-16 18:04:54 +0530160 struct clockdomain *ducati_clkdm, *l3_2_clkdm;
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530161 int ret = 0;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300162
Santosh Shilimkar361b02f2011-03-11 16:13:09 +0530163 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 Nayak5643aeb2010-08-02 13:18:18 +0300168 pr_err("Power Management for TI OMAP4.\n");
Rajendra Nayak60480092013-02-04 17:54:43 +0530169 /*
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 Nayak5643aeb2010-08-02 13:18:18 +0300176
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300177 ret = pwrdm_for_each(pwrdms_setup, NULL);
178 if (ret) {
179 pr_err("Failed to setup powerdomains\n");
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530180 return ret;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300181 }
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300182
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530183 /*
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 Shilimkar705814b2012-04-12 16:51:47 +0530188 * 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 Shilimkar12f27822011-03-08 18:24:30 +0530192 */
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 Shilimkar12f27822011-03-08 18:24:30 +0530197 ducati_clkdm = clkdm_lookup("ducati_clkdm");
Santosh Shilimkar6cf38952013-02-16 17:55:08 +0530198 if ((!mpuss_clkdm) || (!emif_clkdm) || (!l3_1_clkdm) ||
Santosh Shilimkard5336a52013-02-16 18:04:54 +0530199 (!l3_2_clkdm) || (!ducati_clkdm))
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530200 return -EINVAL;
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530201
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 Shilimkar12f27822011-03-08 18:24:30 +0530205 ret |= clkdm_add_wkdep(ducati_clkdm, l3_1_clkdm);
206 ret |= clkdm_add_wkdep(ducati_clkdm, l3_2_clkdm);
207 if (ret) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600208 pr_err("Failed to add MPUSS -> L3/EMIF/L4PER, DUCATI -> L3 wakeup dependency\n");
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530209 return -EINVAL;
210 }
211
212 return ret;
213}
214
215/**
Santosh Shilimkard2136bc2013-02-06 15:51:45 +0530216 * 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 */
224static 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 Menonde70af42014-01-20 14:06:37 -0600242 * omap4_pm_init_early - Does early initialization necessary for OMAP4+ devices
243 *
244 * Initializes basic stuff for power management functionality.
245 */
246int __init omap4_pm_init_early(void)
247{
248 if (cpu_is_omap446x())
249 pm44xx_errata |= PM_OMAP4_ROM_SMP_BOOT_ERRATUM_GICD;
250
Rajendra Nayak6099dd32013-05-27 15:46:44 +0530251 if (soc_is_omap54xx() || soc_is_dra7xx())
252 pm44xx_errata |= PM_OMAP4_CPU_OSWR_DISABLE;
253
Nishanth Menonde70af42014-01-20 14:06:37 -0600254 return 0;
255}
256
257/**
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530258 * 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 */
264int __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 Shilimkar12f27822011-03-08 18:24:30 +0530278 goto err2;
279 }
280
Santosh Shilimkard2136bc2013-02-06 15:51:45 +0530281 if (cpu_is_omap44xx())
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530282 ret = omap4_init_static_deps();
Santosh Shilimkard2136bc2013-02-06 15:51:45 +0530283 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 Shilimkar705814b2012-04-12 16:51:47 +0530289 }
290
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530291 ret = omap4_mpuss_init();
292 if (ret) {
293 pr_err("Failed to initialise OMAP4 MPUSS\n");
294 goto err2;
295 }
296
Paul Walmsley92206fd2012-02-02 02:38:50 -0700297 (void) clkdm_for_each(omap_pm_clkdms_setup, NULL);
Santosh Shilimkar3c507292011-01-05 22:03:17 +0530298
Dave Gerlach2e4b62d2014-05-12 13:33:21 -0500299 omap_common_suspend_init(omap4_pm_suspend);
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300300
Nicolas Pitreae940912011-12-19 03:03:58 -0500301 /* Overwrite the default cpu_do_idle() */
Nicolas Pitre0bcd24b2012-01-04 16:27:48 -0500302 arm_pm_idle = omap_default_idle;
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530303
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530304 if (cpu_is_omap44xx())
305 omap4_idle_init();
Santosh Shilimkar982726602011-08-16 17:31:40 +0530306
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300307err2:
308 return ret;
309}