blob: 4c158c838d4062e1eaee78ff770e4b9dc257146f [file] [log] [blame]
Santosh Shilimkar98272662011-08-16 17:31:40 +05301/*
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +05302 * OMAP4+ CPU idle Routines
Santosh Shilimkar98272662011-08-16 17:31:40 +05303 *
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +05304 * Copyright (C) 2011-2013 Texas Instruments, Inc.
Santosh Shilimkar98272662011-08-16 17:31:40 +05305 * Santosh Shilimkar <santosh.shilimkar@ti.com>
6 * Rajendra Nayak <rnayak@ti.com>
7 *
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/sched.h>
14#include <linux/cpuidle.h>
15#include <linux/cpu_pm.h>
16#include <linux/export.h>
17
Daniel Lezcano0e9e8b42013-04-23 08:54:39 +000018#include <asm/cpuidle.h>
Santosh Shilimkar98272662011-08-16 17:31:40 +053019#include <asm/proc-fns.h>
20
21#include "common.h"
22#include "pm.h"
23#include "prm.h"
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053024#include "clockdomain.h"
Santosh Shilimkar98272662011-08-16 17:31:40 +053025
Daniel Lezcano7aeb658d2012-04-24 16:05:27 +020026/* Machine specific information */
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +053027struct idle_statedata {
Santosh Shilimkar98272662011-08-16 17:31:40 +053028 u32 cpu_state;
29 u32 mpu_logic_state;
30 u32 mpu_state;
Santosh Shilimkar98272662011-08-16 17:31:40 +053031};
32
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +053033static struct idle_statedata omap4_idle_data[] = {
Daniel Lezcanod0d133d2012-04-24 16:05:26 +020034 {
35 .cpu_state = PWRDM_POWER_ON,
36 .mpu_state = PWRDM_POWER_ON,
37 .mpu_logic_state = PWRDM_POWER_RET,
38 },
39 {
40 .cpu_state = PWRDM_POWER_OFF,
41 .mpu_state = PWRDM_POWER_RET,
42 .mpu_logic_state = PWRDM_POWER_RET,
43 },
44 {
45 .cpu_state = PWRDM_POWER_OFF,
46 .mpu_state = PWRDM_POWER_RET,
47 .mpu_logic_state = PWRDM_POWER_OFF,
48 },
49};
Santosh Shilimkar98272662011-08-16 17:31:40 +053050
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053051static struct powerdomain *mpu_pd, *cpu_pd[NR_CPUS];
52static struct clockdomain *cpu_clkdm[NR_CPUS];
Santosh Shilimkar98272662011-08-16 17:31:40 +053053
Kevin Hilman5b4d5bc2012-03-14 17:26:17 -070054static atomic_t abort_barrier;
55static bool cpu_done[NR_CPUS];
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +053056static struct idle_statedata *state_ptr = &omap4_idle_data[0];
Santosh Shilimkar98272662011-08-16 17:31:40 +053057
Paul Walmsley9db316b2012-12-15 01:39:19 -070058/* Private functions */
59
Santosh Shilimkar98272662011-08-16 17:31:40 +053060/**
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +053061 * omap_enter_idle_[simple/coupled] - OMAP4PLUS cpuidle entry functions
Santosh Shilimkar98272662011-08-16 17:31:40 +053062 * @dev: cpuidle device
63 * @drv: cpuidle driver
64 * @index: the index of state to be entered
65 *
66 * Called from the CPUidle framework to program the device to the
67 * specified low power state selected by the governor.
68 * Returns the amount of time spent in the low power state.
69 */
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +053070static int omap_enter_idle_simple(struct cpuidle_device *dev,
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053071 struct cpuidle_driver *drv,
72 int index)
73{
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053074 omap_do_wfi();
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053075 return index;
76}
77
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +053078static int omap_enter_idle_coupled(struct cpuidle_device *dev,
Santosh Shilimkar98272662011-08-16 17:31:40 +053079 struct cpuidle_driver *drv,
80 int index)
81{
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +053082 struct idle_statedata *cx = state_ptr + index;
Strashko, Grygorii74ed7bd2013-10-22 22:07:15 +030083 u32 mpuss_can_lose_context = 0;
Santosh Shilimkar98272662011-08-16 17:31:40 +053084
Santosh Shilimkar98272662011-08-16 17:31:40 +053085 /*
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053086 * CPU0 has to wait and stay ON until CPU1 is OFF state.
Santosh Shilimkar98272662011-08-16 17:31:40 +053087 * This is necessary to honour hardware recommondation
88 * of triggeing all the possible low power modes once CPU1 is
89 * out of coherency and in OFF mode.
Santosh Shilimkar98272662011-08-16 17:31:40 +053090 */
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053091 if (dev->cpu == 0 && cpumask_test_cpu(1, cpu_online_mask)) {
Kevin Hilman5b4d5bc2012-03-14 17:26:17 -070092 while (pwrdm_read_pwrst(cpu_pd[1]) != PWRDM_POWER_OFF) {
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053093 cpu_relax();
Kevin Hilman5b4d5bc2012-03-14 17:26:17 -070094
95 /*
96 * CPU1 could have already entered & exited idle
97 * without hitting off because of a wakeup
98 * or a failed attempt to hit off mode. Check for
99 * that here, otherwise we could spin forever
100 * waiting for CPU1 off.
101 */
102 if (cpu_done[1])
103 goto fail;
104
105 }
Santosh Shilimkar98272662011-08-16 17:31:40 +0530106 }
107
Strashko, Grygorii74ed7bd2013-10-22 22:07:15 +0300108 mpuss_can_lose_context = (cx->mpu_state == PWRDM_POWER_RET) &&
109 (cx->mpu_logic_state == PWRDM_POWER_OFF);
110
Santosh Shilimkar98272662011-08-16 17:31:40 +0530111 /*
112 * Call idle CPU PM enter notifier chain so that
113 * VFP and per CPU interrupt context is saved.
114 */
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530115 cpu_pm_enter();
Santosh Shilimkar98272662011-08-16 17:31:40 +0530116
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530117 if (dev->cpu == 0) {
118 pwrdm_set_logic_retst(mpu_pd, cx->mpu_logic_state);
119 omap_set_pwrdm_state(mpu_pd, cx->mpu_state);
Santosh Shilimkar98272662011-08-16 17:31:40 +0530120
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530121 /*
122 * Call idle CPU cluster PM enter notifier chain
123 * to save GIC and wakeupgen context.
124 */
Strashko, Grygorii74ed7bd2013-10-22 22:07:15 +0300125 if (mpuss_can_lose_context)
126 cpu_cluster_pm_enter();
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530127 }
Santosh Shilimkar98272662011-08-16 17:31:40 +0530128
129 omap4_enter_lowpower(dev->cpu, cx->cpu_state);
Kevin Hilman5b4d5bc2012-03-14 17:26:17 -0700130 cpu_done[dev->cpu] = true;
Santosh Shilimkar98272662011-08-16 17:31:40 +0530131
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530132 /* Wakeup CPU1 only if it is not offlined */
133 if (dev->cpu == 0 && cpumask_test_cpu(1, cpu_online_mask)) {
Strashko, Grygorii74ed7bd2013-10-22 22:07:15 +0300134
135 if (IS_PM44XX_ERRATUM(PM_OMAP4_ROM_SMP_BOOT_ERRATUM_GICD) &&
136 mpuss_can_lose_context)
137 gic_dist_disable();
138
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530139 clkdm_wakeup(cpu_clkdm[1]);
Santosh Shilimkarb7806dc2013-02-08 22:50:58 +0530140 omap_set_pwrdm_state(cpu_pd[1], PWRDM_POWER_ON);
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530141 clkdm_allow_idle(cpu_clkdm[1]);
Strashko, Grygorii74ed7bd2013-10-22 22:07:15 +0300142
143 if (IS_PM44XX_ERRATUM(PM_OMAP4_ROM_SMP_BOOT_ERRATUM_GICD) &&
144 mpuss_can_lose_context) {
145 while (gic_dist_disabled()) {
146 udelay(1);
147 cpu_relax();
148 }
149 gic_timer_retrigger();
150 }
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530151 }
Santosh Shilimkar98272662011-08-16 17:31:40 +0530152
153 /*
154 * Call idle CPU PM exit notifier chain to restore
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530155 * VFP and per CPU IRQ context.
Santosh Shilimkar98272662011-08-16 17:31:40 +0530156 */
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530157 cpu_pm_exit();
Santosh Shilimkar98272662011-08-16 17:31:40 +0530158
159 /*
160 * Call idle CPU cluster PM exit notifier chain
161 * to restore GIC and wakeupgen context.
162 */
Strashko, Grygorii74ed7bd2013-10-22 22:07:15 +0300163 if (dev->cpu == 0 && mpuss_can_lose_context)
Santosh Shilimkar98272662011-08-16 17:31:40 +0530164 cpu_cluster_pm_exit();
165
Kevin Hilman5b4d5bc2012-03-14 17:26:17 -0700166fail:
167 cpuidle_coupled_parallel_barrier(dev, &abort_barrier);
168 cpu_done[dev->cpu] = false;
Santosh Shilimkar98be0dd2011-01-16 00:42:31 +0530169
Santosh Shilimkar98272662011-08-16 17:31:40 +0530170 return index;
171}
172
Paul Walmsley9db316b2012-12-15 01:39:19 -0700173static struct cpuidle_driver omap4_idle_driver = {
Robert Leed13e9262012-03-20 15:22:47 -0500174 .name = "omap4_idle",
175 .owner = THIS_MODULE,
Daniel Lezcano78e90162012-04-24 16:05:23 +0200176 .states = {
177 {
178 /* C1 - CPU0 ON + CPU1 ON + MPU ON */
179 .exit_latency = 2 + 2,
180 .target_residency = 5,
181 .flags = CPUIDLE_FLAG_TIME_VALID,
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +0530182 .enter = omap_enter_idle_simple,
Daniel Lezcano78e90162012-04-24 16:05:23 +0200183 .name = "C1",
Santosh Shilimkareb495d32013-03-25 15:35:06 +0530184 .desc = "CPUx ON, MPUSS ON"
Daniel Lezcano78e90162012-04-24 16:05:23 +0200185 },
186 {
Paul Walmsley9db316b2012-12-15 01:39:19 -0700187 /* C2 - CPU0 OFF + CPU1 OFF + MPU CSWR */
Daniel Lezcano78e90162012-04-24 16:05:23 +0200188 .exit_latency = 328 + 440,
189 .target_residency = 960,
Daniel Lezcanocb7094e2013-03-21 12:21:32 +0000190 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_COUPLED |
191 CPUIDLE_FLAG_TIMER_STOP,
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +0530192 .enter = omap_enter_idle_coupled,
Daniel Lezcano78e90162012-04-24 16:05:23 +0200193 .name = "C2",
Santosh Shilimkareb495d32013-03-25 15:35:06 +0530194 .desc = "CPUx OFF, MPUSS CSWR",
Daniel Lezcano78e90162012-04-24 16:05:23 +0200195 },
196 {
197 /* C3 - CPU0 OFF + CPU1 OFF + MPU OSWR */
198 .exit_latency = 460 + 518,
199 .target_residency = 1100,
Daniel Lezcanocb7094e2013-03-21 12:21:32 +0000200 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_COUPLED |
201 CPUIDLE_FLAG_TIMER_STOP,
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +0530202 .enter = omap_enter_idle_coupled,
Daniel Lezcano78e90162012-04-24 16:05:23 +0200203 .name = "C3",
Santosh Shilimkareb495d32013-03-25 15:35:06 +0530204 .desc = "CPUx OFF, MPUSS OSWR",
Daniel Lezcano78e90162012-04-24 16:05:23 +0200205 },
206 },
Daniel Lezcanod0d133d2012-04-24 16:05:26 +0200207 .state_count = ARRAY_SIZE(omap4_idle_data),
Daniel Lezcano78e90162012-04-24 16:05:23 +0200208 .safe_state_index = 0,
Santosh Shilimkar98272662011-08-16 17:31:40 +0530209};
210
Paul Walmsley9db316b2012-12-15 01:39:19 -0700211/* Public functions */
Santosh Shilimkarb93d70a2012-04-17 15:09:20 +0530212
Santosh Shilimkar98272662011-08-16 17:31:40 +0530213/**
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +0530214 * omap4_idle_init - Init routine for OMAP4+ idle
Santosh Shilimkar98272662011-08-16 17:31:40 +0530215 *
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +0530216 * Registers the OMAP4+ specific cpuidle driver to the cpuidle
Santosh Shilimkar98272662011-08-16 17:31:40 +0530217 * framework with the valid set of states.
218 */
219int __init omap4_idle_init(void)
220{
Santosh Shilimkar98272662011-08-16 17:31:40 +0530221 mpu_pd = pwrdm_lookup("mpu_pwrdm");
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530222 cpu_pd[0] = pwrdm_lookup("cpu0_pwrdm");
223 cpu_pd[1] = pwrdm_lookup("cpu1_pwrdm");
224 if ((!mpu_pd) || (!cpu_pd[0]) || (!cpu_pd[1]))
Santosh Shilimkar98272662011-08-16 17:31:40 +0530225 return -ENODEV;
226
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530227 cpu_clkdm[0] = clkdm_lookup("mpu0_clkdm");
228 cpu_clkdm[1] = clkdm_lookup("mpu1_clkdm");
229 if (!cpu_clkdm[0] || !cpu_clkdm[1])
230 return -ENODEV;
Santosh Shilimkar98272662011-08-16 17:31:40 +0530231
Daniel Lezcano0e9e8b42013-04-23 08:54:39 +0000232 return cpuidle_register(&omap4_idle_driver, cpu_online_mask);
Santosh Shilimkar98272662011-08-16 17:31:40 +0530233}