blob: d697cecf762b4501b8c3849d2bece4b25ab86967 [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
Nishanth Menonb9f5fe62014-10-21 15:22:29 -050040/**
41 * struct static_dep_map - Static dependency map
42 * @from: from clockdomain
43 * @to: to clockdomain
44 */
45struct static_dep_map {
46 const char *from;
47 const char *to;
48};
49
Rajendra Nayak6099dd32013-05-27 15:46:44 +053050static u32 cpu_suspend_state = PWRDM_POWER_OFF;
51
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030052static LIST_HEAD(pwrst_list);
53
54#ifdef CONFIG_SUSPEND
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030055static int omap4_pm_suspend(void)
56{
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053057 struct power_state *pwrst;
58 int state, ret = 0;
59 u32 cpu_id = smp_processor_id();
60
61 /* Save current powerdomain state */
62 list_for_each_entry(pwrst, &pwrst_list, node) {
63 pwrst->saved_state = pwrdm_read_next_pwrst(pwrst->pwrdm);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053064 pwrst->saved_logic_state = pwrdm_read_logic_retst(pwrst->pwrdm);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053065 }
66
67 /* Set targeted power domain states by suspend */
68 list_for_each_entry(pwrst, &pwrst_list, node) {
69 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Nishanth Menon46ba5522014-06-05 21:40:39 -050070 pwrdm_set_logic_retst(pwrst->pwrdm, pwrst->next_logic_state);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053071 }
72
73 /*
74 * For MPUSS to hit power domain retention(CSWR or OSWR),
75 * CPU0 and CPU1 power domains need to be in OFF or DORMANT state,
76 * since CPU power domain CSWR is not supported by hardware
77 * Only master CPU follows suspend path. All other CPUs follow
78 * CPU hotplug path in system wide suspend. On OMAP4, CPU power
79 * domain CSWR is not supported by hardware.
80 * More details can be found in OMAP4430 TRM section 4.3.4.2.
81 */
Rajendra Nayak6099dd32013-05-27 15:46:44 +053082 omap4_enter_lowpower(cpu_id, cpu_suspend_state);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053083
84 /* Restore next powerdomain state */
85 list_for_each_entry(pwrst, &pwrst_list, node) {
86 state = pwrdm_read_prev_pwrst(pwrst->pwrdm);
87 if (state > pwrst->next_state) {
Paul Walmsley7852ec02012-07-26 00:54:26 -060088 pr_info("Powerdomain (%s) didn't enter target state %d\n",
89 pwrst->pwrdm->name, pwrst->next_state);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053090 ret = -1;
91 }
92 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053093 pwrdm_set_logic_retst(pwrst->pwrdm, pwrst->saved_logic_state);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053094 }
Rajendra Nayak60480092013-02-04 17:54:43 +053095 if (ret) {
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053096 pr_crit("Could not enter target state in pm_suspend\n");
Rajendra Nayak60480092013-02-04 17:54:43 +053097 /*
98 * OMAP4 chip PM currently works only with certain (newer)
99 * versions of bootloaders. This is due to missing code in the
100 * kernel to properly reset and initialize some devices.
101 * Warn the user about the bootloader version being one of the
102 * possible causes.
103 * http://www.spinics.net/lists/arm-kernel/msg218641.html
104 */
105 pr_warn("A possible cause could be an old bootloader - try u-boot >= v2012.07\n");
106 } else {
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530107 pr_info("Successfully put all powerdomains to target state\n");
Rajendra Nayak60480092013-02-04 17:54:43 +0530108 }
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530109
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300110 return 0;
111}
Dave Gerlach2e4b62d2014-05-12 13:33:21 -0500112#else
113#define omap4_pm_suspend NULL
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300114#endif /* CONFIG_SUSPEND */
115
116static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
117{
118 struct power_state *pwrst;
119
120 if (!pwrdm->pwrsts)
121 return 0;
122
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530123 /*
124 * Skip CPU0 and CPU1 power domains. CPU1 is programmed
125 * through hotplug path and CPU0 explicitly programmed
126 * further down in the code path
127 */
Rajendra Nayak6099dd32013-05-27 15:46:44 +0530128 if (!strncmp(pwrdm->name, "cpu", 3)) {
129 if (IS_PM44XX_ERRATUM(PM_OMAP4_CPU_OSWR_DISABLE))
130 cpu_suspend_state = PWRDM_POWER_RET;
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530131 return 0;
Rajendra Nayak6099dd32013-05-27 15:46:44 +0530132 }
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530133
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300134 pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC);
135 if (!pwrst)
136 return -ENOMEM;
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530137
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300138 pwrst->pwrdm = pwrdm;
Nishanth Menonbd7593c2014-06-06 01:17:37 -0500139 pwrst->next_state = pwrdm_get_valid_lp_state(pwrdm, false,
140 PWRDM_POWER_RET);
141 pwrst->next_logic_state = pwrdm_get_valid_lp_state(pwrdm, true,
142 PWRDM_POWER_OFF);
Nishanth Menon46ba5522014-06-05 21:40:39 -0500143
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300144 list_add(&pwrst->node, &pwrst_list);
145
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530146 return omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300147}
148
149/**
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530150 * omap_default_idle - OMAP4 default ilde routine.'
151 *
152 * Implements OMAP4 memory, IO ordering requirements which can't be addressed
Paul Bolle62006322013-03-29 21:35:01 +0100153 * with default cpu_do_idle() hook. Used by all CPUs with !CONFIG_CPU_IDLE and
154 * by secondary CPU with CONFIG_CPU_IDLE.
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530155 */
156static void omap_default_idle(void)
157{
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530158 omap_do_wfi();
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530159}
160
Nishanth Menonb9f5fe62014-10-21 15:22:29 -0500161/*
162 * The dynamic dependency between MPUSS -> MEMIF and
163 * MPUSS -> L4_PER/L3_* and DUCATI -> L3_* doesn't work as
164 * expected. The hardware recommendation is to enable static
165 * dependencies for these to avoid system lock ups or random crashes.
166 * The L4 wakeup depedency is added to workaround the OCP sync hardware
167 * BUG with 32K synctimer which lead to incorrect timer value read
168 * from the 32K counter. The BUG applies for GPTIMER1 and WDT2 which
169 * are part of L4 wakeup clockdomain.
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300170 */
Nishanth Menonb9f5fe62014-10-21 15:22:29 -0500171static const struct static_dep_map omap4_static_dep_map[] = {
172 {.from = "mpuss_clkdm", .to = "l3_emif_clkdm"},
173 {.from = "mpuss_clkdm", .to = "l3_1_clkdm"},
174 {.from = "mpuss_clkdm", .to = "l3_2_clkdm"},
175 {.from = "ducati_clkdm", .to = "l3_1_clkdm"},
176 {.from = "ducati_clkdm", .to = "l3_2_clkdm"},
177 {.from = NULL} /* TERMINATION */
178};
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300179
Nishanth Menonb9f5fe62014-10-21 15:22:29 -0500180static const struct static_dep_map omap5_dra7_static_dep_map[] = {
181 {.from = "mpu_clkdm", .to = "emif_clkdm"},
182 {.from = NULL} /* TERMINATION */
183};
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530184
185/**
Nishanth Menonb9f5fe62014-10-21 15:22:29 -0500186 * omap4plus_init_static_deps() - Initialize a static dependency map
187 * @map: Mapping of clock domains
Santosh Shilimkard2136bc2013-02-06 15:51:45 +0530188 */
Nishanth Menonb9f5fe62014-10-21 15:22:29 -0500189static inline int omap4plus_init_static_deps(const struct static_dep_map *map)
Santosh Shilimkard2136bc2013-02-06 15:51:45 +0530190{
Santosh Shilimkard2136bc2013-02-06 15:51:45 +0530191 int ret;
Nishanth Menonb9f5fe62014-10-21 15:22:29 -0500192 struct clockdomain *from, *to;
Santosh Shilimkard2136bc2013-02-06 15:51:45 +0530193
Nishanth Menonb9f5fe62014-10-21 15:22:29 -0500194 if (!map)
195 return 0;
Santosh Shilimkard2136bc2013-02-06 15:51:45 +0530196
Nishanth Menonb9f5fe62014-10-21 15:22:29 -0500197 while (map->from) {
198 from = clkdm_lookup(map->from);
199 to = clkdm_lookup(map->to);
200 if (!from || !to) {
201 pr_err("Failed lookup %s or %s for wakeup dependency\n",
202 map->from, map->to);
203 return -EINVAL;
204 }
205 ret = clkdm_add_wkdep(from, to);
206 if (ret) {
207 pr_err("Failed to add %s -> %s wakeup dependency(%d)\n",
208 map->from, map->to, ret);
209 return ret;
210 }
Santosh Shilimkard2136bc2013-02-06 15:51:45 +0530211
Nishanth Menonb9f5fe62014-10-21 15:22:29 -0500212 map++;
213 };
214
215 return 0;
Santosh Shilimkard2136bc2013-02-06 15:51:45 +0530216}
217
218/**
Nishanth Menonde70af42014-01-20 14:06:37 -0600219 * omap4_pm_init_early - Does early initialization necessary for OMAP4+ devices
220 *
221 * Initializes basic stuff for power management functionality.
222 */
223int __init omap4_pm_init_early(void)
224{
225 if (cpu_is_omap446x())
226 pm44xx_errata |= PM_OMAP4_ROM_SMP_BOOT_ERRATUM_GICD;
227
Rajendra Nayak6099dd32013-05-27 15:46:44 +0530228 if (soc_is_omap54xx() || soc_is_dra7xx())
229 pm44xx_errata |= PM_OMAP4_CPU_OSWR_DISABLE;
230
Nishanth Menonde70af42014-01-20 14:06:37 -0600231 return 0;
232}
233
234/**
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530235 * omap4_pm_init - Init routine for OMAP4+ devices
236 *
237 * Initializes all powerdomain and clockdomain target states
238 * and all PRCM settings.
239 * Return: Returns the error code returned by called functions.
240 */
241int __init omap4_pm_init(void)
242{
243 int ret = 0;
244
245 if (omap_rev() == OMAP4430_REV_ES1_0) {
246 WARN(1, "Power Management not supported on OMAP4430 ES1.0\n");
247 return -ENODEV;
248 }
249
250 pr_info("Power Management for TI OMAP4+ devices.\n");
251
Nishanth Menon9008d832014-10-21 15:22:28 -0500252 /*
253 * OMAP4 chip PM currently works only with certain (newer)
254 * versions of bootloaders. This is due to missing code in the
255 * kernel to properly reset and initialize some devices.
256 * http://www.spinics.net/lists/arm-kernel/msg218641.html
257 */
258 if (cpu_is_omap44xx())
259 pr_warn("OMAP4 PM: u-boot >= v2012.07 is required for full PM support\n");
260
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530261 ret = pwrdm_for_each(pwrdms_setup, NULL);
262 if (ret) {
263 pr_err("Failed to setup powerdomains.\n");
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530264 goto err2;
265 }
266
Santosh Shilimkard2136bc2013-02-06 15:51:45 +0530267 if (cpu_is_omap44xx())
Nishanth Menonb9f5fe62014-10-21 15:22:29 -0500268 ret = omap4plus_init_static_deps(omap4_static_dep_map);
Santosh Shilimkard2136bc2013-02-06 15:51:45 +0530269 else if (soc_is_omap54xx() || soc_is_dra7xx())
Nishanth Menonb9f5fe62014-10-21 15:22:29 -0500270 ret = omap4plus_init_static_deps(omap5_dra7_static_dep_map);
Santosh Shilimkard2136bc2013-02-06 15:51:45 +0530271
272 if (ret) {
273 pr_err("Failed to initialise static dependencies.\n");
274 goto err2;
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530275 }
276
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530277 ret = omap4_mpuss_init();
278 if (ret) {
279 pr_err("Failed to initialise OMAP4 MPUSS\n");
280 goto err2;
281 }
282
Paul Walmsley92206fd2012-02-02 02:38:50 -0700283 (void) clkdm_for_each(omap_pm_clkdms_setup, NULL);
Santosh Shilimkar3c507292011-01-05 22:03:17 +0530284
Dave Gerlach2e4b62d2014-05-12 13:33:21 -0500285 omap_common_suspend_init(omap4_pm_suspend);
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300286
Nicolas Pitreae940912011-12-19 03:03:58 -0500287 /* Overwrite the default cpu_do_idle() */
Nicolas Pitre0bcd24b2012-01-04 16:27:48 -0500288 arm_pm_idle = omap_default_idle;
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530289
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530290 if (cpu_is_omap44xx())
291 omap4_idle_init();
Santosh Shilimkar98272662011-08-16 17:31:40 +0530292
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300293err2:
294 return ret;
295}