ARM: OMAP4: PM: Use custom omap_do_wfi() for default idle.
[deliverable/linux.git] / arch / arm / mach-omap2 / pm44xx.c
CommitLineData
5643aebb
RN
1/*
2 * OMAP4 Power Management Routines
3 *
4 * Copyright (C) 2010 Texas Instruments, Inc.
5 * Rajendra Nayak <rnayak@ti.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/pm.h>
13#include <linux/suspend.h>
14#include <linux/module.h>
15#include <linux/list.h>
16#include <linux/err.h>
17#include <linux/slab.h>
18
4e65331c 19#include "common.h"
3c50729b 20#include "clockdomain.h"
72e06d08 21#include "powerdomain.h"
5643aebb
RN
22
23struct power_state {
24 struct powerdomain *pwrdm;
25 u32 next_state;
26#ifdef CONFIG_SUSPEND
27 u32 saved_state;
28#endif
29 struct list_head node;
30};
31
32static LIST_HEAD(pwrst_list);
33
34#ifdef CONFIG_SUSPEND
5643aebb
RN
35static int omap4_pm_suspend(void)
36{
37 do_wfi();
38 return 0;
39}
40
41static int omap4_pm_enter(suspend_state_t suspend_state)
42{
43 int ret = 0;
44
45 switch (suspend_state) {
46 case PM_SUSPEND_STANDBY:
47 case PM_SUSPEND_MEM:
48 ret = omap4_pm_suspend();
49 break;
50 default:
51 ret = -EINVAL;
52 }
53
54 return ret;
55}
56
5643aebb
RN
57static int omap4_pm_begin(suspend_state_t state)
58{
c166381d 59 disable_hlt();
5643aebb
RN
60 return 0;
61}
62
63static void omap4_pm_end(void)
64{
c166381d 65 enable_hlt();
5643aebb
RN
66 return;
67}
68
2f55ac07 69static const struct platform_suspend_ops omap_pm_ops = {
5643aebb
RN
70 .begin = omap4_pm_begin,
71 .end = omap4_pm_end,
5643aebb 72 .enter = omap4_pm_enter,
5643aebb
RN
73 .valid = suspend_valid_only_mem,
74};
75#endif /* CONFIG_SUSPEND */
76
3c50729b
SS
77/*
78 * Enable hardware supervised mode for all clockdomains if it's
79 * supported. Initiate sleep transition for other clockdomains, if
80 * they are not used
81 */
82static int __init clkdms_setup(struct clockdomain *clkdm, void *unused)
83{
84 if (clkdm->flags & CLKDM_CAN_ENABLE_AUTO)
85 clkdm_allow_idle(clkdm);
86 else if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP &&
87 atomic_read(&clkdm->usecount) == 0)
88 clkdm_sleep(clkdm);
89 return 0;
90}
91
92
5643aebb
RN
93static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
94{
95 struct power_state *pwrst;
96
97 if (!pwrdm->pwrsts)
98 return 0;
99
100 pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC);
101 if (!pwrst)
102 return -ENOMEM;
103 pwrst->pwrdm = pwrdm;
104 pwrst->next_state = PWRDM_POWER_ON;
105 list_add(&pwrst->node, &pwrst_list);
106
107 return pwrdm_set_next_pwrst(pwrst->pwrdm, pwrst->next_state);
108}
109
72826b9f
SS
110/**
111 * omap_default_idle - OMAP4 default ilde routine.'
112 *
113 * Implements OMAP4 memory, IO ordering requirements which can't be addressed
114 * with default arch_idle() hook. Used by all CPUs with !CONFIG_CPUIDLE and
115 * by secondary CPU with CONFIG_CPUIDLE.
116 */
117static void omap_default_idle(void)
118{
119 local_irq_disable();
120 local_fiq_disable();
121
122 omap_do_wfi();
123
124 local_fiq_enable();
125 local_irq_enable();
126}
127
5643aebb
RN
128/**
129 * omap4_pm_init - Init routine for OMAP4 PM
130 *
131 * Initializes all powerdomain and clockdomain target states
132 * and all PRCM settings.
133 */
134static int __init omap4_pm_init(void)
135{
136 int ret;
12f27826
SS
137 struct clockdomain *emif_clkdm, *mpuss_clkdm, *l3_1_clkdm;
138 struct clockdomain *ducati_clkdm, *l3_2_clkdm, *l4_per_clkdm;
5643aebb
RN
139
140 if (!cpu_is_omap44xx())
141 return -ENODEV;
142
361b02f3
SS
143 if (omap_rev() == OMAP4430_REV_ES1_0) {
144 WARN(1, "Power Management not supported on OMAP4430 ES1.0\n");
145 return -ENODEV;
146 }
147
5643aebb
RN
148 pr_err("Power Management for TI OMAP4.\n");
149
5643aebb
RN
150 ret = pwrdm_for_each(pwrdms_setup, NULL);
151 if (ret) {
152 pr_err("Failed to setup powerdomains\n");
153 goto err2;
154 }
5643aebb 155
12f27826
SS
156 /*
157 * The dynamic dependency between MPUSS -> MEMIF and
158 * MPUSS -> L4_PER/L3_* and DUCATI -> L3_* doesn't work as
159 * expected. The hardware recommendation is to enable static
160 * dependencies for these to avoid system lock ups or random crashes.
161 */
162 mpuss_clkdm = clkdm_lookup("mpuss_clkdm");
163 emif_clkdm = clkdm_lookup("l3_emif_clkdm");
164 l3_1_clkdm = clkdm_lookup("l3_1_clkdm");
165 l3_2_clkdm = clkdm_lookup("l3_2_clkdm");
166 l4_per_clkdm = clkdm_lookup("l4_per_clkdm");
167 ducati_clkdm = clkdm_lookup("ducati_clkdm");
168 if ((!mpuss_clkdm) || (!emif_clkdm) || (!l3_1_clkdm) ||
169 (!l3_2_clkdm) || (!ducati_clkdm) || (!l4_per_clkdm))
170 goto err2;
171
172 ret = clkdm_add_wkdep(mpuss_clkdm, emif_clkdm);
173 ret |= clkdm_add_wkdep(mpuss_clkdm, l3_1_clkdm);
174 ret |= clkdm_add_wkdep(mpuss_clkdm, l3_2_clkdm);
175 ret |= clkdm_add_wkdep(mpuss_clkdm, l4_per_clkdm);
176 ret |= clkdm_add_wkdep(ducati_clkdm, l3_1_clkdm);
177 ret |= clkdm_add_wkdep(ducati_clkdm, l3_2_clkdm);
178 if (ret) {
179 pr_err("Failed to add MPUSS -> L3/EMIF/L4PER, DUCATI -> L3 "
180 "wakeup dependency\n");
181 goto err2;
182 }
183
b2b9762f
SS
184 ret = omap4_mpuss_init();
185 if (ret) {
186 pr_err("Failed to initialise OMAP4 MPUSS\n");
187 goto err2;
188 }
189
3c50729b
SS
190 (void) clkdm_for_each(clkdms_setup, NULL);
191
5643aebb
RN
192#ifdef CONFIG_SUSPEND
193 suspend_set_ops(&omap_pm_ops);
194#endif /* CONFIG_SUSPEND */
195
72826b9f
SS
196 /* Overwrite the default arch_idle() */
197 pm_idle = omap_default_idle;
198
5643aebb
RN
199err2:
200 return ret;
201}
202late_initcall(omap4_pm_init);
This page took 0.110142 seconds and 5 git commands to generate.