blob: eefb30cfcabdae50892872b335d6c47f06f50571 [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;
32#ifdef CONFIG_SUSPEND
33 u32 saved_state;
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053034 u32 saved_logic_state;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030035#endif
36 struct list_head node;
37};
38
39static LIST_HEAD(pwrst_list);
40
41#ifdef CONFIG_SUSPEND
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030042static int omap4_pm_suspend(void)
43{
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053044 struct power_state *pwrst;
45 int state, ret = 0;
46 u32 cpu_id = smp_processor_id();
47
48 /* Save current powerdomain state */
49 list_for_each_entry(pwrst, &pwrst_list, node) {
50 pwrst->saved_state = pwrdm_read_next_pwrst(pwrst->pwrdm);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053051 pwrst->saved_logic_state = pwrdm_read_logic_retst(pwrst->pwrdm);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053052 }
53
54 /* Set targeted power domain states by suspend */
55 list_for_each_entry(pwrst, &pwrst_list, node) {
56 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053057 pwrdm_set_logic_retst(pwrst->pwrdm, PWRDM_POWER_OFF);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053058 }
59
60 /*
61 * For MPUSS to hit power domain retention(CSWR or OSWR),
62 * CPU0 and CPU1 power domains need to be in OFF or DORMANT state,
63 * since CPU power domain CSWR is not supported by hardware
64 * Only master CPU follows suspend path. All other CPUs follow
65 * CPU hotplug path in system wide suspend. On OMAP4, CPU power
66 * domain CSWR is not supported by hardware.
67 * More details can be found in OMAP4430 TRM section 4.3.4.2.
68 */
69 omap4_enter_lowpower(cpu_id, PWRDM_POWER_OFF);
70
71 /* Restore next powerdomain state */
72 list_for_each_entry(pwrst, &pwrst_list, node) {
73 state = pwrdm_read_prev_pwrst(pwrst->pwrdm);
74 if (state > pwrst->next_state) {
Paul Walmsley7852ec02012-07-26 00:54:26 -060075 pr_info("Powerdomain (%s) didn't enter target state %d\n",
76 pwrst->pwrdm->name, pwrst->next_state);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053077 ret = -1;
78 }
79 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053080 pwrdm_set_logic_retst(pwrst->pwrdm, pwrst->saved_logic_state);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053081 }
Rajendra Nayak60480092013-02-04 17:54:43 +053082 if (ret) {
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053083 pr_crit("Could not enter target state in pm_suspend\n");
Rajendra Nayak60480092013-02-04 17:54:43 +053084 /*
85 * OMAP4 chip PM currently works only with certain (newer)
86 * versions of bootloaders. This is due to missing code in the
87 * kernel to properly reset and initialize some devices.
88 * Warn the user about the bootloader version being one of the
89 * possible causes.
90 * http://www.spinics.net/lists/arm-kernel/msg218641.html
91 */
92 pr_warn("A possible cause could be an old bootloader - try u-boot >= v2012.07\n");
93 } else {
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053094 pr_info("Successfully put all powerdomains to target state\n");
Rajendra Nayak60480092013-02-04 17:54:43 +053095 }
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053096
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030097 return 0;
98}
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030099#endif /* CONFIG_SUSPEND */
100
101static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
102{
103 struct power_state *pwrst;
104
105 if (!pwrdm->pwrsts)
106 return 0;
107
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530108 /*
109 * Skip CPU0 and CPU1 power domains. CPU1 is programmed
110 * through hotplug path and CPU0 explicitly programmed
111 * further down in the code path
112 */
113 if (!strncmp(pwrdm->name, "cpu", 3))
114 return 0;
115
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300116 pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC);
117 if (!pwrst)
118 return -ENOMEM;
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530119
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300120 pwrst->pwrdm = pwrdm;
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530121 pwrst->next_state = PWRDM_POWER_RET;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300122 list_add(&pwrst->node, &pwrst_list);
123
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530124 return omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300125}
126
127/**
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530128 * omap_default_idle - OMAP4 default ilde routine.'
129 *
130 * Implements OMAP4 memory, IO ordering requirements which can't be addressed
Paul Bolle62006322013-03-29 21:35:01 +0100131 * with default cpu_do_idle() hook. Used by all CPUs with !CONFIG_CPU_IDLE and
132 * by secondary CPU with CONFIG_CPU_IDLE.
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530133 */
134static void omap_default_idle(void)
135{
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530136 omap_do_wfi();
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530137}
138
139/**
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530140 * omap4_init_static_deps - Add OMAP4 static dependencies
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300141 *
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530142 * Add needed static clockdomain dependencies on OMAP4 devices.
143 * Return: 0 on success or 'err' on failures
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300144 */
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530145static inline int omap4_init_static_deps(void)
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300146{
Santosh Shilimkar6cf38952013-02-16 17:55:08 +0530147 struct clockdomain *emif_clkdm, *mpuss_clkdm, *l3_1_clkdm;
Santosh Shilimkard5336a52013-02-16 18:04:54 +0530148 struct clockdomain *ducati_clkdm, *l3_2_clkdm;
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530149 int ret = 0;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300150
Santosh Shilimkar361b02f2011-03-11 16:13:09 +0530151 if (omap_rev() == OMAP4430_REV_ES1_0) {
152 WARN(1, "Power Management not supported on OMAP4430 ES1.0\n");
153 return -ENODEV;
154 }
155
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300156 pr_err("Power Management for TI OMAP4.\n");
Rajendra Nayak60480092013-02-04 17:54:43 +0530157 /*
158 * OMAP4 chip PM currently works only with certain (newer)
159 * versions of bootloaders. This is due to missing code in the
160 * kernel to properly reset and initialize some devices.
161 * http://www.spinics.net/lists/arm-kernel/msg218641.html
162 */
163 pr_warn("OMAP4 PM: u-boot >= v2012.07 is required for full PM support\n");
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300164
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300165 ret = pwrdm_for_each(pwrdms_setup, NULL);
166 if (ret) {
167 pr_err("Failed to setup powerdomains\n");
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530168 return ret;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300169 }
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300170
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530171 /*
172 * The dynamic dependency between MPUSS -> MEMIF and
173 * MPUSS -> L4_PER/L3_* and DUCATI -> L3_* doesn't work as
174 * expected. The hardware recommendation is to enable static
175 * dependencies for these to avoid system lock ups or random crashes.
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530176 * The L4 wakeup depedency is added to workaround the OCP sync hardware
177 * BUG with 32K synctimer which lead to incorrect timer value read
178 * from the 32K counter. The BUG applies for GPTIMER1 and WDT2 which
179 * are part of L4 wakeup clockdomain.
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530180 */
181 mpuss_clkdm = clkdm_lookup("mpuss_clkdm");
182 emif_clkdm = clkdm_lookup("l3_emif_clkdm");
183 l3_1_clkdm = clkdm_lookup("l3_1_clkdm");
184 l3_2_clkdm = clkdm_lookup("l3_2_clkdm");
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530185 ducati_clkdm = clkdm_lookup("ducati_clkdm");
Santosh Shilimkar6cf38952013-02-16 17:55:08 +0530186 if ((!mpuss_clkdm) || (!emif_clkdm) || (!l3_1_clkdm) ||
Santosh Shilimkard5336a52013-02-16 18:04:54 +0530187 (!l3_2_clkdm) || (!ducati_clkdm))
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530188 return -EINVAL;
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530189
190 ret = clkdm_add_wkdep(mpuss_clkdm, emif_clkdm);
191 ret |= clkdm_add_wkdep(mpuss_clkdm, l3_1_clkdm);
192 ret |= clkdm_add_wkdep(mpuss_clkdm, l3_2_clkdm);
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530193 ret |= clkdm_add_wkdep(ducati_clkdm, l3_1_clkdm);
194 ret |= clkdm_add_wkdep(ducati_clkdm, l3_2_clkdm);
195 if (ret) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600196 pr_err("Failed to add MPUSS -> L3/EMIF/L4PER, DUCATI -> L3 wakeup dependency\n");
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530197 return -EINVAL;
198 }
199
200 return ret;
201}
202
203/**
Nishanth Menonde70af42014-01-20 14:06:37 -0600204 * omap4_pm_init_early - Does early initialization necessary for OMAP4+ devices
205 *
206 * Initializes basic stuff for power management functionality.
207 */
208int __init omap4_pm_init_early(void)
209{
210 if (cpu_is_omap446x())
211 pm44xx_errata |= PM_OMAP4_ROM_SMP_BOOT_ERRATUM_GICD;
212
213 return 0;
214}
215
216/**
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530217 * omap4_pm_init - Init routine for OMAP4+ devices
218 *
219 * Initializes all powerdomain and clockdomain target states
220 * and all PRCM settings.
221 * Return: Returns the error code returned by called functions.
222 */
223int __init omap4_pm_init(void)
224{
225 int ret = 0;
226
227 if (omap_rev() == OMAP4430_REV_ES1_0) {
228 WARN(1, "Power Management not supported on OMAP4430 ES1.0\n");
229 return -ENODEV;
230 }
231
232 pr_info("Power Management for TI OMAP4+ devices.\n");
233
234 ret = pwrdm_for_each(pwrdms_setup, NULL);
235 if (ret) {
236 pr_err("Failed to setup powerdomains.\n");
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530237 goto err2;
238 }
239
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530240 if (cpu_is_omap44xx()) {
241 ret = omap4_init_static_deps();
242 if (ret)
243 goto err2;
244 }
245
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530246 ret = omap4_mpuss_init();
247 if (ret) {
248 pr_err("Failed to initialise OMAP4 MPUSS\n");
249 goto err2;
250 }
251
Paul Walmsley92206fd2012-02-02 02:38:50 -0700252 (void) clkdm_for_each(omap_pm_clkdms_setup, NULL);
Santosh Shilimkar3c507292011-01-05 22:03:17 +0530253
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300254#ifdef CONFIG_SUSPEND
Paul Walmsley14164082012-02-02 02:30:50 -0700255 omap_pm_suspend = omap4_pm_suspend;
256#endif
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300257
Nicolas Pitreae940912011-12-19 03:03:58 -0500258 /* Overwrite the default cpu_do_idle() */
Nicolas Pitre0bcd24b2012-01-04 16:27:48 -0500259 arm_pm_idle = omap_default_idle;
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530260
Santosh Shilimkar705814b2012-04-12 16:51:47 +0530261 if (cpu_is_omap44xx())
262 omap4_idle_init();
Santosh Shilimkar98272662011-08-16 17:31:40 +0530263
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300264err2:
265 return ret;
266}