blob: 5ac9e9384b1531c8e05e3adf7aec91f2171a9798 [file] [log] [blame]
Sekhar Noria6c0f6e2009-11-03 15:14:13 +05301/*
2 * CPU idle for DaVinci SoCs
3 *
4 * Copyright (C) 2009 Texas Instruments Incorporated. http://www.ti.com/
5 *
6 * Derived from Marvell Kirkwood CPU idle code
7 * (arch/arm/mach-kirkwood/cpuidle.c)
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/platform_device.h>
17#include <linux/cpuidle.h>
18#include <linux/io.h>
Paul Gortmakerdc280942011-07-31 16:17:29 -040019#include <linux/export.h>
Sekhar Noria6c0f6e2009-11-03 15:14:13 +053020#include <asm/proc-fns.h>
Robert Lee19976c22012-03-20 15:22:45 -050021#include <asm/cpuidle.h>
Sekhar Noria6c0f6e2009-11-03 15:14:13 +053022
23#include <mach/cpuidle.h>
Nicolas Pitre0020afb2011-07-05 22:52:57 -040024#include <mach/ddr2.h>
Sekhar Noria6c0f6e2009-11-03 15:14:13 +053025
26#define DAVINCI_CPUIDLE_MAX_STATES 2
27
Sekhar Noria6c0f6e2009-11-03 15:14:13 +053028static DEFINE_PER_CPU(struct cpuidle_device, davinci_cpuidle_device);
29static void __iomem *ddr2_reg_base;
Daniel Lezcano5af4a212013-02-04 12:01:41 +000030static bool ddr2_pdown;
Sekhar Noria6c0f6e2009-11-03 15:14:13 +053031
Sekhar Noria6c0f6e2009-11-03 15:14:13 +053032static void davinci_save_ddr_power(int enter, bool pdown)
33{
34 u32 val;
35
36 val = __raw_readl(ddr2_reg_base + DDR2_SDRCR_OFFSET);
37
38 if (enter) {
39 if (pdown)
40 val |= DDR2_SRPD_BIT;
41 else
42 val &= ~DDR2_SRPD_BIT;
43 val |= DDR2_LPMODEN_BIT;
44 } else {
45 val &= ~(DDR2_SRPD_BIT | DDR2_LPMODEN_BIT);
46 }
47
48 __raw_writel(val, ddr2_reg_base + DDR2_SDRCR_OFFSET);
49}
50
Daniel Lezcano8d601432013-02-04 12:01:42 +000051/* Actual code that puts the SoC in different idle states */
52static int davinci_enter_idle(struct cpuidle_device *dev,
53 struct cpuidle_driver *drv,
54 int index)
55{
Daniel Lezcano36ce8d42013-02-04 12:01:43 +000056 davinci_save_ddr_power(1, ddr2_pdown);
Daniel Lezcano8d601432013-02-04 12:01:42 +000057
58 index = cpuidle_wrap_enter(dev, drv, index,
59 arm_cpuidle_simple_enter);
60
Daniel Lezcano36ce8d42013-02-04 12:01:43 +000061 davinci_save_ddr_power(0, ddr2_pdown);
Daniel Lezcano8d601432013-02-04 12:01:42 +000062
63 return index;
64}
65
66static struct cpuidle_driver davinci_idle_driver = {
67 .name = "cpuidle-davinci",
68 .owner = THIS_MODULE,
69 .en_core_tk_irqen = 1,
70 .states[0] = ARM_CPUIDLE_WFI_STATE,
71 .states[1] = {
72 .enter = davinci_enter_idle,
73 .exit_latency = 10,
74 .target_residency = 100000,
75 .flags = CPUIDLE_FLAG_TIME_VALID,
76 .name = "DDR SR",
77 .desc = "WFI and DDR Self Refresh",
78 },
79 .state_count = DAVINCI_CPUIDLE_MAX_STATES,
80};
81
Sekhar Noria6c0f6e2009-11-03 15:14:13 +053082static int __init davinci_cpuidle_probe(struct platform_device *pdev)
83{
84 int ret;
85 struct cpuidle_device *device;
86 struct davinci_cpuidle_config *pdata = pdev->dev.platform_data;
Sekhar Noria6c0f6e2009-11-03 15:14:13 +053087
88 device = &per_cpu(davinci_cpuidle_device, smp_processor_id());
89
90 if (!pdata) {
91 dev_err(&pdev->dev, "cannot get platform data\n");
92 return -ENOENT;
93 }
94
Sekhar Nori948c66d2009-11-16 17:21:37 +053095 ddr2_reg_base = pdata->ddr2_ctlr_base;
Sekhar Noria6c0f6e2009-11-03 15:14:13 +053096
Daniel Lezcano5af4a212013-02-04 12:01:41 +000097 ddr2_pdown = pdata->ddr2_pdown;
Sekhar Noria6c0f6e2009-11-03 15:14:13 +053098
Sekhar Noria6c0f6e2009-11-03 15:14:13 +053099 ret = cpuidle_register_driver(&davinci_idle_driver);
100 if (ret) {
101 dev_err(&pdev->dev, "failed to register driver\n");
102 return ret;
103 }
104
Sekhar Noria6c0f6e2009-11-03 15:14:13 +0530105 ret = cpuidle_register_device(device);
106 if (ret) {
107 dev_err(&pdev->dev, "failed to register device\n");
Sekhar Nori948c66d2009-11-16 17:21:37 +0530108 cpuidle_unregister_driver(&davinci_idle_driver);
109 return ret;
Sekhar Noria6c0f6e2009-11-03 15:14:13 +0530110 }
111
112 return 0;
Sekhar Noria6c0f6e2009-11-03 15:14:13 +0530113}
114
115static struct platform_driver davinci_cpuidle_driver = {
116 .driver = {
117 .name = "cpuidle-davinci",
118 .owner = THIS_MODULE,
119 },
120};
121
122static int __init davinci_cpuidle_init(void)
123{
124 return platform_driver_probe(&davinci_cpuidle_driver,
125 davinci_cpuidle_probe);
126}
127device_initcall(davinci_cpuidle_init);
128