blob: ea24174f5707177d635d19a7671c3b8d2ed4443e [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 Lindgren4e653312011-11-10 22:45:17 +010021#include "common.h"
Santosh Shilimkar3c507292011-01-05 22:03:17 +053022#include "clockdomain.h"
Paul Walmsley72e06d02010-12-21 21:05:16 -070023#include "powerdomain.h"
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053024#include "pm.h"
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030025
26struct power_state {
27 struct powerdomain *pwrdm;
28 u32 next_state;
29#ifdef CONFIG_SUSPEND
30 u32 saved_state;
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053031 u32 saved_logic_state;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030032#endif
33 struct list_head node;
34};
35
36static LIST_HEAD(pwrst_list);
37
38#ifdef CONFIG_SUSPEND
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030039static int omap4_pm_suspend(void)
40{
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053041 struct power_state *pwrst;
42 int state, ret = 0;
43 u32 cpu_id = smp_processor_id();
44
45 /* Save current powerdomain state */
46 list_for_each_entry(pwrst, &pwrst_list, node) {
47 pwrst->saved_state = pwrdm_read_next_pwrst(pwrst->pwrdm);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053048 pwrst->saved_logic_state = pwrdm_read_logic_retst(pwrst->pwrdm);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053049 }
50
51 /* Set targeted power domain states by suspend */
52 list_for_each_entry(pwrst, &pwrst_list, node) {
53 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053054 pwrdm_set_logic_retst(pwrst->pwrdm, PWRDM_POWER_OFF);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053055 }
56
57 /*
58 * For MPUSS to hit power domain retention(CSWR or OSWR),
59 * CPU0 and CPU1 power domains need to be in OFF or DORMANT state,
60 * since CPU power domain CSWR is not supported by hardware
61 * Only master CPU follows suspend path. All other CPUs follow
62 * CPU hotplug path in system wide suspend. On OMAP4, CPU power
63 * domain CSWR is not supported by hardware.
64 * More details can be found in OMAP4430 TRM section 4.3.4.2.
65 */
66 omap4_enter_lowpower(cpu_id, PWRDM_POWER_OFF);
67
68 /* Restore next powerdomain state */
69 list_for_each_entry(pwrst, &pwrst_list, node) {
70 state = pwrdm_read_prev_pwrst(pwrst->pwrdm);
71 if (state > pwrst->next_state) {
72 pr_info("Powerdomain (%s) didn't enter "
73 "target state %d\n",
74 pwrst->pwrdm->name, pwrst->next_state);
75 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 }
80 if (ret)
81 pr_crit("Could not enter target state in pm_suspend\n");
82 else
83 pr_info("Successfully put all powerdomains to target state\n");
84
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030085 return 0;
86}
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030087#endif /* CONFIG_SUSPEND */
88
89static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
90{
91 struct power_state *pwrst;
92
93 if (!pwrdm->pwrsts)
94 return 0;
95
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053096 /*
97 * Skip CPU0 and CPU1 power domains. CPU1 is programmed
98 * through hotplug path and CPU0 explicitly programmed
99 * further down in the code path
100 */
101 if (!strncmp(pwrdm->name, "cpu", 3))
102 return 0;
103
104 /*
105 * FIXME: Remove this check when core retention is supported
106 * Only MPUSS power domain is added in the list.
107 */
108 if (strcmp(pwrdm->name, "mpu_pwrdm"))
109 return 0;
110
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300111 pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC);
112 if (!pwrst)
113 return -ENOMEM;
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530114
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300115 pwrst->pwrdm = pwrdm;
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530116 pwrst->next_state = PWRDM_POWER_RET;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300117 list_add(&pwrst->node, &pwrst_list);
118
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530119 return omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300120}
121
122/**
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530123 * omap_default_idle - OMAP4 default ilde routine.'
124 *
125 * Implements OMAP4 memory, IO ordering requirements which can't be addressed
Nicolas Pitreae940912011-12-19 03:03:58 -0500126 * with default cpu_do_idle() hook. Used by all CPUs with !CONFIG_CPUIDLE and
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530127 * by secondary CPU with CONFIG_CPUIDLE.
128 */
129static void omap_default_idle(void)
130{
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530131 local_fiq_disable();
132
133 omap_do_wfi();
134
135 local_fiq_enable();
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530136}
137
138/**
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300139 * omap4_pm_init - Init routine for OMAP4 PM
140 *
141 * Initializes all powerdomain and clockdomain target states
142 * and all PRCM settings.
143 */
Shawn Guobbd707a2012-04-26 16:06:50 +0800144int __init omap4_pm_init(void)
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300145{
146 int ret;
Santosh Shilimkar68523f42012-03-12 20:34:45 +0530147 struct clockdomain *emif_clkdm, *mpuss_clkdm, *l3_1_clkdm, *l4wkup;
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530148 struct clockdomain *ducati_clkdm, *l3_2_clkdm, *l4_per_clkdm;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300149
Santosh Shilimkar361b02f2011-03-11 16:13:09 +0530150 if (omap_rev() == OMAP4430_REV_ES1_0) {
151 WARN(1, "Power Management not supported on OMAP4430 ES1.0\n");
152 return -ENODEV;
153 }
154
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300155 pr_err("Power Management for TI OMAP4.\n");
156
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300157 ret = pwrdm_for_each(pwrdms_setup, NULL);
158 if (ret) {
159 pr_err("Failed to setup powerdomains\n");
160 goto err2;
161 }
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300162
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530163 /*
164 * The dynamic dependency between MPUSS -> MEMIF and
165 * MPUSS -> L4_PER/L3_* and DUCATI -> L3_* doesn't work as
166 * expected. The hardware recommendation is to enable static
167 * dependencies for these to avoid system lock ups or random crashes.
Santosh Shilimkar68523f42012-03-12 20:34:45 +0530168 * The L4 wakeup depedency is added to workaround the OCP sync hardware
169 * BUG with 32K synctimer which lead to incorrect timer value read
170 * from the 32K counter. The BUG applies for GPTIMER1 and WDT2 which
171 * are part of L4 wakeup clockdomain.
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530172 */
173 mpuss_clkdm = clkdm_lookup("mpuss_clkdm");
174 emif_clkdm = clkdm_lookup("l3_emif_clkdm");
175 l3_1_clkdm = clkdm_lookup("l3_1_clkdm");
176 l3_2_clkdm = clkdm_lookup("l3_2_clkdm");
177 l4_per_clkdm = clkdm_lookup("l4_per_clkdm");
Santosh Shilimkar68523f42012-03-12 20:34:45 +0530178 l4wkup = clkdm_lookup("l4_wkup_clkdm");
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530179 ducati_clkdm = clkdm_lookup("ducati_clkdm");
Santosh Shilimkar68523f42012-03-12 20:34:45 +0530180 if ((!mpuss_clkdm) || (!emif_clkdm) || (!l3_1_clkdm) || (!l4wkup) ||
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530181 (!l3_2_clkdm) || (!ducati_clkdm) || (!l4_per_clkdm))
182 goto err2;
183
184 ret = clkdm_add_wkdep(mpuss_clkdm, emif_clkdm);
185 ret |= clkdm_add_wkdep(mpuss_clkdm, l3_1_clkdm);
186 ret |= clkdm_add_wkdep(mpuss_clkdm, l3_2_clkdm);
187 ret |= clkdm_add_wkdep(mpuss_clkdm, l4_per_clkdm);
Santosh Shilimkar68523f42012-03-12 20:34:45 +0530188 ret |= clkdm_add_wkdep(mpuss_clkdm, l4wkup);
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530189 ret |= clkdm_add_wkdep(ducati_clkdm, l3_1_clkdm);
190 ret |= clkdm_add_wkdep(ducati_clkdm, l3_2_clkdm);
191 if (ret) {
192 pr_err("Failed to add MPUSS -> L3/EMIF/L4PER, DUCATI -> L3 "
193 "wakeup dependency\n");
194 goto err2;
195 }
196
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530197 ret = omap4_mpuss_init();
198 if (ret) {
199 pr_err("Failed to initialise OMAP4 MPUSS\n");
200 goto err2;
201 }
202
Paul Walmsley92206fd2012-02-02 02:38:50 -0700203 (void) clkdm_for_each(omap_pm_clkdms_setup, NULL);
Santosh Shilimkar3c507292011-01-05 22:03:17 +0530204
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300205#ifdef CONFIG_SUSPEND
Paul Walmsley14164082012-02-02 02:30:50 -0700206 omap_pm_suspend = omap4_pm_suspend;
207#endif
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300208
Nicolas Pitreae940912011-12-19 03:03:58 -0500209 /* Overwrite the default cpu_do_idle() */
Nicolas Pitre0bcd24b2012-01-04 16:27:48 -0500210 arm_pm_idle = omap_default_idle;
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530211
Santosh Shilimkar98272662011-08-16 17:31:40 +0530212 omap4_idle_init();
213
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300214err2:
215 return ret;
216}