blob: ea62e75ef21d39678632c13808c3d8847cd0b422 [file] [log] [blame]
Rajendra Nayak5643aeb2010-08-02 13:18:18 +03001/*
2 * OMAP4 Power Management Routines
3 *
Santosh Shilimkare44f9a72010-06-16 22:19:49 +05304 * Copyright (C) 2010-2011 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
27struct power_state {
28 struct powerdomain *pwrdm;
29 u32 next_state;
30#ifdef CONFIG_SUSPEND
31 u32 saved_state;
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053032 u32 saved_logic_state;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030033#endif
34 struct list_head node;
35};
36
37static LIST_HEAD(pwrst_list);
38
39#ifdef CONFIG_SUSPEND
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030040static int omap4_pm_suspend(void)
41{
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053042 struct power_state *pwrst;
43 int state, ret = 0;
44 u32 cpu_id = smp_processor_id();
45
46 /* Save current powerdomain state */
47 list_for_each_entry(pwrst, &pwrst_list, node) {
48 pwrst->saved_state = pwrdm_read_next_pwrst(pwrst->pwrdm);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053049 pwrst->saved_logic_state = pwrdm_read_logic_retst(pwrst->pwrdm);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053050 }
51
52 /* Set targeted power domain states by suspend */
53 list_for_each_entry(pwrst, &pwrst_list, node) {
54 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053055 pwrdm_set_logic_retst(pwrst->pwrdm, PWRDM_POWER_OFF);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053056 }
57
58 /*
59 * For MPUSS to hit power domain retention(CSWR or OSWR),
60 * CPU0 and CPU1 power domains need to be in OFF or DORMANT state,
61 * since CPU power domain CSWR is not supported by hardware
62 * Only master CPU follows suspend path. All other CPUs follow
63 * CPU hotplug path in system wide suspend. On OMAP4, CPU power
64 * domain CSWR is not supported by hardware.
65 * More details can be found in OMAP4430 TRM section 4.3.4.2.
66 */
67 omap4_enter_lowpower(cpu_id, PWRDM_POWER_OFF);
68
69 /* Restore next powerdomain state */
70 list_for_each_entry(pwrst, &pwrst_list, node) {
71 state = pwrdm_read_prev_pwrst(pwrst->pwrdm);
72 if (state > pwrst->next_state) {
Paul Walmsley7852ec02012-07-26 00:54:26 -060073 pr_info("Powerdomain (%s) didn't enter target state %d\n",
74 pwrst->pwrdm->name, pwrst->next_state);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053075 ret = -1;
76 }
77 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053078 pwrdm_set_logic_retst(pwrst->pwrdm, pwrst->saved_logic_state);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053079 }
Rajendra Nayak60480092013-02-04 17:54:43 +053080 if (ret) {
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053081 pr_crit("Could not enter target state in pm_suspend\n");
Rajendra Nayak60480092013-02-04 17:54:43 +053082 /*
83 * OMAP4 chip PM currently works only with certain (newer)
84 * versions of bootloaders. This is due to missing code in the
85 * kernel to properly reset and initialize some devices.
86 * Warn the user about the bootloader version being one of the
87 * possible causes.
88 * http://www.spinics.net/lists/arm-kernel/msg218641.html
89 */
90 pr_warn("A possible cause could be an old bootloader - try u-boot >= v2012.07\n");
91 } else {
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053092 pr_info("Successfully put all powerdomains to target state\n");
Rajendra Nayak60480092013-02-04 17:54:43 +053093 }
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053094
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030095 return 0;
96}
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030097#endif /* CONFIG_SUSPEND */
98
99static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
100{
101 struct power_state *pwrst;
102
103 if (!pwrdm->pwrsts)
104 return 0;
105
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530106 /*
107 * Skip CPU0 and CPU1 power domains. CPU1 is programmed
108 * through hotplug path and CPU0 explicitly programmed
109 * further down in the code path
110 */
111 if (!strncmp(pwrdm->name, "cpu", 3))
112 return 0;
113
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300114 pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC);
115 if (!pwrst)
116 return -ENOMEM;
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530117
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300118 pwrst->pwrdm = pwrdm;
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530119 pwrst->next_state = PWRDM_POWER_RET;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300120 list_add(&pwrst->node, &pwrst_list);
121
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530122 return omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300123}
124
125/**
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530126 * omap_default_idle - OMAP4 default ilde routine.'
127 *
128 * Implements OMAP4 memory, IO ordering requirements which can't be addressed
Nicolas Pitreae940912011-12-19 03:03:58 -0500129 * with default cpu_do_idle() hook. Used by all CPUs with !CONFIG_CPUIDLE and
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530130 * by secondary CPU with CONFIG_CPUIDLE.
131 */
132static void omap_default_idle(void)
133{
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530134 local_fiq_disable();
135
136 omap_do_wfi();
137
138 local_fiq_enable();
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530139}
140
141/**
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300142 * omap4_pm_init - Init routine for OMAP4 PM
143 *
144 * Initializes all powerdomain and clockdomain target states
145 * and all PRCM settings.
146 */
Shawn Guobbd707a2012-04-26 16:06:50 +0800147int __init omap4_pm_init(void)
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300148{
149 int ret;
Santosh Shilimkar68523f42012-03-12 20:34:45 +0530150 struct clockdomain *emif_clkdm, *mpuss_clkdm, *l3_1_clkdm, *l4wkup;
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530151 struct clockdomain *ducati_clkdm, *l3_2_clkdm, *l4_per_clkdm;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300152
Santosh Shilimkar361b02f2011-03-11 16:13:09 +0530153 if (omap_rev() == OMAP4430_REV_ES1_0) {
154 WARN(1, "Power Management not supported on OMAP4430 ES1.0\n");
155 return -ENODEV;
156 }
157
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300158 pr_err("Power Management for TI OMAP4.\n");
Rajendra Nayak60480092013-02-04 17:54:43 +0530159 /*
160 * OMAP4 chip PM currently works only with certain (newer)
161 * versions of bootloaders. This is due to missing code in the
162 * kernel to properly reset and initialize some devices.
163 * http://www.spinics.net/lists/arm-kernel/msg218641.html
164 */
165 pr_warn("OMAP4 PM: u-boot >= v2012.07 is required for full PM support\n");
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300166
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300167 ret = pwrdm_for_each(pwrdms_setup, NULL);
168 if (ret) {
169 pr_err("Failed to setup powerdomains\n");
170 goto err2;
171 }
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300172
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530173 /*
174 * The dynamic dependency between MPUSS -> MEMIF and
175 * MPUSS -> L4_PER/L3_* and DUCATI -> L3_* doesn't work as
176 * expected. The hardware recommendation is to enable static
177 * dependencies for these to avoid system lock ups or random crashes.
Santosh Shilimkar68523f42012-03-12 20:34:45 +0530178 * The L4 wakeup depedency is added to workaround the OCP sync hardware
179 * BUG with 32K synctimer which lead to incorrect timer value read
180 * from the 32K counter. The BUG applies for GPTIMER1 and WDT2 which
181 * are part of L4 wakeup clockdomain.
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530182 */
183 mpuss_clkdm = clkdm_lookup("mpuss_clkdm");
184 emif_clkdm = clkdm_lookup("l3_emif_clkdm");
185 l3_1_clkdm = clkdm_lookup("l3_1_clkdm");
186 l3_2_clkdm = clkdm_lookup("l3_2_clkdm");
187 l4_per_clkdm = clkdm_lookup("l4_per_clkdm");
Santosh Shilimkar68523f42012-03-12 20:34:45 +0530188 l4wkup = clkdm_lookup("l4_wkup_clkdm");
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530189 ducati_clkdm = clkdm_lookup("ducati_clkdm");
Santosh Shilimkar68523f42012-03-12 20:34:45 +0530190 if ((!mpuss_clkdm) || (!emif_clkdm) || (!l3_1_clkdm) || (!l4wkup) ||
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530191 (!l3_2_clkdm) || (!ducati_clkdm) || (!l4_per_clkdm))
192 goto err2;
193
194 ret = clkdm_add_wkdep(mpuss_clkdm, emif_clkdm);
195 ret |= clkdm_add_wkdep(mpuss_clkdm, l3_1_clkdm);
196 ret |= clkdm_add_wkdep(mpuss_clkdm, l3_2_clkdm);
197 ret |= clkdm_add_wkdep(mpuss_clkdm, l4_per_clkdm);
Santosh Shilimkar68523f42012-03-12 20:34:45 +0530198 ret |= clkdm_add_wkdep(mpuss_clkdm, l4wkup);
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530199 ret |= clkdm_add_wkdep(ducati_clkdm, l3_1_clkdm);
200 ret |= clkdm_add_wkdep(ducati_clkdm, l3_2_clkdm);
201 if (ret) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600202 pr_err("Failed to add MPUSS -> L3/EMIF/L4PER, DUCATI -> L3 wakeup dependency\n");
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530203 goto err2;
204 }
205
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530206 ret = omap4_mpuss_init();
207 if (ret) {
208 pr_err("Failed to initialise OMAP4 MPUSS\n");
209 goto err2;
210 }
211
Paul Walmsley92206fd2012-02-02 02:38:50 -0700212 (void) clkdm_for_each(omap_pm_clkdms_setup, NULL);
Santosh Shilimkar3c507292011-01-05 22:03:17 +0530213
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300214#ifdef CONFIG_SUSPEND
Paul Walmsley14164082012-02-02 02:30:50 -0700215 omap_pm_suspend = omap4_pm_suspend;
216#endif
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300217
Nicolas Pitreae940912011-12-19 03:03:58 -0500218 /* Overwrite the default cpu_do_idle() */
Nicolas Pitre0bcd24b2012-01-04 16:27:48 -0500219 arm_pm_idle = omap_default_idle;
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530220
Santosh Shilimkar98272662011-08-16 17:31:40 +0530221 omap4_idle_init();
222
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300223err2:
224 return ret;
225}