blob: 91e0b1c9b76c6c594f4e4d3a200d090f32f5401a [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>
19
Tony Lindgren4e653312011-11-10 22:45:17 +010020#include "common.h"
Santosh Shilimkar3c507292011-01-05 22:03:17 +053021#include "clockdomain.h"
Paul Walmsley72e06d02010-12-21 21:05:16 -070022#include "powerdomain.h"
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053023#include "pm.h"
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030024
25struct power_state {
26 struct powerdomain *pwrdm;
27 u32 next_state;
28#ifdef CONFIG_SUSPEND
29 u32 saved_state;
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053030 u32 saved_logic_state;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030031#endif
32 struct list_head node;
33};
34
35static LIST_HEAD(pwrst_list);
36
37#ifdef CONFIG_SUSPEND
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030038static int omap4_pm_suspend(void)
39{
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053040 struct power_state *pwrst;
41 int state, ret = 0;
42 u32 cpu_id = smp_processor_id();
43
44 /* Save current powerdomain state */
45 list_for_each_entry(pwrst, &pwrst_list, node) {
46 pwrst->saved_state = pwrdm_read_next_pwrst(pwrst->pwrdm);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053047 pwrst->saved_logic_state = pwrdm_read_logic_retst(pwrst->pwrdm);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053048 }
49
50 /* Set targeted power domain states by suspend */
51 list_for_each_entry(pwrst, &pwrst_list, node) {
52 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053053 pwrdm_set_logic_retst(pwrst->pwrdm, PWRDM_POWER_OFF);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053054 }
55
56 /*
57 * For MPUSS to hit power domain retention(CSWR or OSWR),
58 * CPU0 and CPU1 power domains need to be in OFF or DORMANT state,
59 * since CPU power domain CSWR is not supported by hardware
60 * Only master CPU follows suspend path. All other CPUs follow
61 * CPU hotplug path in system wide suspend. On OMAP4, CPU power
62 * domain CSWR is not supported by hardware.
63 * More details can be found in OMAP4430 TRM section 4.3.4.2.
64 */
65 omap4_enter_lowpower(cpu_id, PWRDM_POWER_OFF);
66
67 /* Restore next powerdomain state */
68 list_for_each_entry(pwrst, &pwrst_list, node) {
69 state = pwrdm_read_prev_pwrst(pwrst->pwrdm);
70 if (state > pwrst->next_state) {
71 pr_info("Powerdomain (%s) didn't enter "
72 "target state %d\n",
73 pwrst->pwrdm->name, pwrst->next_state);
74 ret = -1;
75 }
76 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053077 pwrdm_set_logic_retst(pwrst->pwrdm, pwrst->saved_logic_state);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053078 }
79 if (ret)
80 pr_crit("Could not enter target state in pm_suspend\n");
81 else
82 pr_info("Successfully put all powerdomains to target state\n");
83
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030084 return 0;
85}
Rajendra Nayak5643aeb2010-08-02 13:18:18 +030086#endif /* CONFIG_SUSPEND */
87
88static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
89{
90 struct power_state *pwrst;
91
92 if (!pwrdm->pwrsts)
93 return 0;
94
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053095 /*
96 * Skip CPU0 and CPU1 power domains. CPU1 is programmed
97 * through hotplug path and CPU0 explicitly programmed
98 * further down in the code path
99 */
100 if (!strncmp(pwrdm->name, "cpu", 3))
101 return 0;
102
103 /*
104 * FIXME: Remove this check when core retention is supported
105 * Only MPUSS power domain is added in the list.
106 */
107 if (strcmp(pwrdm->name, "mpu_pwrdm"))
108 return 0;
109
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300110 pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC);
111 if (!pwrst)
112 return -ENOMEM;
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530113
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300114 pwrst->pwrdm = pwrdm;
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530115 pwrst->next_state = PWRDM_POWER_RET;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300116 list_add(&pwrst->node, &pwrst_list);
117
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530118 return omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300119}
120
121/**
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530122 * omap_default_idle - OMAP4 default ilde routine.'
123 *
124 * Implements OMAP4 memory, IO ordering requirements which can't be addressed
Nicolas Pitreae940912011-12-19 03:03:58 -0500125 * with default cpu_do_idle() hook. Used by all CPUs with !CONFIG_CPUIDLE and
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530126 * by secondary CPU with CONFIG_CPUIDLE.
127 */
128static void omap_default_idle(void)
129{
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530130 local_fiq_disable();
131
132 omap_do_wfi();
133
134 local_fiq_enable();
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530135}
136
137/**
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300138 * omap4_pm_init - Init routine for OMAP4 PM
139 *
140 * Initializes all powerdomain and clockdomain target states
141 * and all PRCM settings.
142 */
143static int __init omap4_pm_init(void)
144{
145 int ret;
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530146 struct clockdomain *emif_clkdm, *mpuss_clkdm, *l3_1_clkdm;
147 struct clockdomain *ducati_clkdm, *l3_2_clkdm, *l4_per_clkdm;
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300148
149 if (!cpu_is_omap44xx())
150 return -ENODEV;
151
Santosh Shilimkar361b02f2011-03-11 16:13:09 +0530152 if (omap_rev() == OMAP4430_REV_ES1_0) {
153 WARN(1, "Power Management not supported on OMAP4430 ES1.0\n");
154 return -ENODEV;
155 }
156
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300157 pr_err("Power Management for TI OMAP4.\n");
158
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300159 ret = pwrdm_for_each(pwrdms_setup, NULL);
160 if (ret) {
161 pr_err("Failed to setup powerdomains\n");
162 goto err2;
163 }
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300164
Santosh Shilimkar12f27822011-03-08 18:24:30 +0530165 /*
166 * The dynamic dependency between MPUSS -> MEMIF and
167 * MPUSS -> L4_PER/L3_* and DUCATI -> L3_* doesn't work as
168 * expected. The hardware recommendation is to enable static
169 * dependencies for these to avoid system lock ups or random crashes.
170 */
171 mpuss_clkdm = clkdm_lookup("mpuss_clkdm");
172 emif_clkdm = clkdm_lookup("l3_emif_clkdm");
173 l3_1_clkdm = clkdm_lookup("l3_1_clkdm");
174 l3_2_clkdm = clkdm_lookup("l3_2_clkdm");
175 l4_per_clkdm = clkdm_lookup("l4_per_clkdm");
176 ducati_clkdm = clkdm_lookup("ducati_clkdm");
177 if ((!mpuss_clkdm) || (!emif_clkdm) || (!l3_1_clkdm) ||
178 (!l3_2_clkdm) || (!ducati_clkdm) || (!l4_per_clkdm))
179 goto err2;
180
181 ret = clkdm_add_wkdep(mpuss_clkdm, emif_clkdm);
182 ret |= clkdm_add_wkdep(mpuss_clkdm, l3_1_clkdm);
183 ret |= clkdm_add_wkdep(mpuss_clkdm, l3_2_clkdm);
184 ret |= clkdm_add_wkdep(mpuss_clkdm, l4_per_clkdm);
185 ret |= clkdm_add_wkdep(ducati_clkdm, l3_1_clkdm);
186 ret |= clkdm_add_wkdep(ducati_clkdm, l3_2_clkdm);
187 if (ret) {
188 pr_err("Failed to add MPUSS -> L3/EMIF/L4PER, DUCATI -> L3 "
189 "wakeup dependency\n");
190 goto err2;
191 }
192
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530193 ret = omap4_mpuss_init();
194 if (ret) {
195 pr_err("Failed to initialise OMAP4 MPUSS\n");
196 goto err2;
197 }
198
Paul Walmsley92206fd2012-02-02 02:38:50 -0700199 (void) clkdm_for_each(omap_pm_clkdms_setup, NULL);
Santosh Shilimkar3c507292011-01-05 22:03:17 +0530200
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300201#ifdef CONFIG_SUSPEND
Paul Walmsley14164082012-02-02 02:30:50 -0700202 omap_pm_suspend = omap4_pm_suspend;
203#endif
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300204
Nicolas Pitreae940912011-12-19 03:03:58 -0500205 /* Overwrite the default cpu_do_idle() */
Nicolas Pitre0bcd24b2012-01-04 16:27:48 -0500206 arm_pm_idle = omap_default_idle;
Santosh Shilimkar72826b92011-07-18 12:25:10 +0530207
Santosh Shilimkar98272662011-08-16 17:31:40 +0530208 omap4_idle_init();
209
Rajendra Nayak5643aeb2010-08-02 13:18:18 +0300210err2:
211 return ret;
212}
213late_initcall(omap4_pm_init);