Kevin Hilman | 6f88e9b | 2010-07-26 16:34:31 -0600 | [diff] [blame] | 1 | /* |
| 2 | * pm.c - Common OMAP2+ power management-related code |
| 3 | * |
| 4 | * Copyright (C) 2010 Texas Instruments, Inc. |
| 5 | * Copyright (C) 2010 Nokia Corporation |
| 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/kernel.h> |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/io.h> |
| 15 | #include <linux/err.h> |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 16 | #include <linux/opp.h> |
Paul Gortmaker | dc28094 | 2011-07-31 16:17:29 -0400 | [diff] [blame] | 17 | #include <linux/export.h> |
Paul Walmsley | 1416408 | 2012-02-02 02:30:50 -0700 | [diff] [blame] | 18 | #include <linux/suspend.h> |
Kevin Hilman | 24d7b40 | 2012-09-06 14:03:08 -0700 | [diff] [blame] | 19 | #include <linux/cpu.h> |
Kevin Hilman | 6f88e9b | 2010-07-26 16:34:31 -0600 | [diff] [blame] | 20 | |
Govindraj.R | 335aece | 2012-03-29 09:30:28 -0700 | [diff] [blame] | 21 | #include <asm/system_misc.h> |
| 22 | |
Tony Lindgren | 1d5aef4 | 2012-10-03 16:36:40 -0700 | [diff] [blame] | 23 | #include "omap-pm.h" |
Tony Lindgren | 25c7d49 | 2012-10-02 17:25:48 -0700 | [diff] [blame] | 24 | #include "omap_device.h" |
Tony Lindgren | 4e65331 | 2011-11-10 22:45:17 +0100 | [diff] [blame] | 25 | #include "common.h" |
Kevin Hilman | 6f88e9b | 2010-07-26 16:34:31 -0600 | [diff] [blame] | 26 | |
Tony Lindgren | e4c060d | 2012-10-05 13:25:59 -0700 | [diff] [blame^] | 27 | #include "soc.h" |
Paul Walmsley | 1416408 | 2012-02-02 02:30:50 -0700 | [diff] [blame] | 28 | #include "prcm-common.h" |
Paul Walmsley | e1d6f47 | 2011-02-25 15:54:33 -0700 | [diff] [blame] | 29 | #include "voltage.h" |
Paul Walmsley | 72e06d0 | 2010-12-21 21:05:16 -0700 | [diff] [blame] | 30 | #include "powerdomain.h" |
Paul Walmsley | 1540f214 | 2010-12-21 21:05:15 -0700 | [diff] [blame] | 31 | #include "clockdomain.h" |
Thara Gopinath | 0c0a5d6 | 2010-05-29 22:02:23 +0530 | [diff] [blame] | 32 | #include "pm.h" |
Kevin Hilman | 46232a3 | 2011-11-23 14:43:01 -0800 | [diff] [blame] | 33 | #include "twl-common.h" |
Santosh Shilimkar | eb6a2c7 | 2010-09-15 01:04:01 +0530 | [diff] [blame] | 34 | |
Kevin Hilman | 6f88e9b | 2010-07-26 16:34:31 -0600 | [diff] [blame] | 35 | static struct omap_device_pm_latency *pm_lats; |
| 36 | |
Paul Walmsley | 1416408 | 2012-02-02 02:30:50 -0700 | [diff] [blame] | 37 | /* |
| 38 | * omap_pm_suspend: points to a function that does the SoC-specific |
| 39 | * suspend work |
| 40 | */ |
| 41 | int (*omap_pm_suspend)(void); |
| 42 | |
Kevin Hilman | 9cf793f | 2012-02-20 09:43:30 -0800 | [diff] [blame] | 43 | static int __init _init_omap_device(char *name) |
Kevin Hilman | 6f88e9b | 2010-07-26 16:34:31 -0600 | [diff] [blame] | 44 | { |
| 45 | struct omap_hwmod *oh; |
Kevin Hilman | 3528c58 | 2011-07-21 13:48:45 -0700 | [diff] [blame] | 46 | struct platform_device *pdev; |
Kevin Hilman | 6f88e9b | 2010-07-26 16:34:31 -0600 | [diff] [blame] | 47 | |
| 48 | oh = omap_hwmod_lookup(name); |
| 49 | if (WARN(!oh, "%s: could not find omap_hwmod for %s\n", |
| 50 | __func__, name)) |
| 51 | return -ENODEV; |
| 52 | |
Kevin Hilman | 3528c58 | 2011-07-21 13:48:45 -0700 | [diff] [blame] | 53 | pdev = omap_device_build(oh->name, 0, oh, NULL, 0, pm_lats, 0, false); |
| 54 | if (WARN(IS_ERR(pdev), "%s: could not build omap_device for %s\n", |
Kevin Hilman | 6f88e9b | 2010-07-26 16:34:31 -0600 | [diff] [blame] | 55 | __func__, name)) |
| 56 | return -ENODEV; |
| 57 | |
Kevin Hilman | 6f88e9b | 2010-07-26 16:34:31 -0600 | [diff] [blame] | 58 | return 0; |
| 59 | } |
| 60 | |
| 61 | /* |
| 62 | * Build omap_devices for processors and bus. |
| 63 | */ |
Kevin Hilman | 1f3b372 | 2012-03-06 11:38:01 -0800 | [diff] [blame] | 64 | static void __init omap2_init_processor_devices(void) |
Kevin Hilman | 6f88e9b | 2010-07-26 16:34:31 -0600 | [diff] [blame] | 65 | { |
Benoit Cousson | 766e7af | 2011-08-16 15:03:59 +0200 | [diff] [blame] | 66 | _init_omap_device("mpu"); |
Sanjeev Premi | 2de0bae | 2011-02-25 18:57:20 +0530 | [diff] [blame] | 67 | if (omap3_has_iva()) |
Benoit Cousson | 766e7af | 2011-08-16 15:03:59 +0200 | [diff] [blame] | 68 | _init_omap_device("iva"); |
Sanjeev Premi | 2de0bae | 2011-02-25 18:57:20 +0530 | [diff] [blame] | 69 | |
Benoit Cousson | cbf2766 | 2010-08-05 15:22:35 +0200 | [diff] [blame] | 70 | if (cpu_is_omap44xx()) { |
Benoit Cousson | 766e7af | 2011-08-16 15:03:59 +0200 | [diff] [blame] | 71 | _init_omap_device("l3_main_1"); |
| 72 | _init_omap_device("dsp"); |
| 73 | _init_omap_device("iva"); |
Benoit Cousson | cbf2766 | 2010-08-05 15:22:35 +0200 | [diff] [blame] | 74 | } else { |
Benoit Cousson | 766e7af | 2011-08-16 15:03:59 +0200 | [diff] [blame] | 75 | _init_omap_device("l3_main"); |
Benoit Cousson | cbf2766 | 2010-08-05 15:22:35 +0200 | [diff] [blame] | 76 | } |
Kevin Hilman | 6f88e9b | 2010-07-26 16:34:31 -0600 | [diff] [blame] | 77 | } |
| 78 | |
Rajendra Nayak | 71a488d | 2010-12-21 22:37:27 -0700 | [diff] [blame] | 79 | /* Types of sleep_switch used in omap_set_pwrdm_state */ |
| 80 | #define FORCEWAKEUP_SWITCH 0 |
| 81 | #define LOWPOWERSTATE_SWITCH 1 |
| 82 | |
Paul Walmsley | 92206fd | 2012-02-02 02:38:50 -0700 | [diff] [blame] | 83 | int __init omap_pm_clkdms_setup(struct clockdomain *clkdm, void *unused) |
| 84 | { |
Paul Walmsley | b71c721 | 2012-09-23 17:28:28 -0600 | [diff] [blame] | 85 | if ((clkdm->flags & CLKDM_CAN_ENABLE_AUTO) && |
| 86 | !(clkdm->flags & CLKDM_MISSING_IDLE_REPORTING)) |
Paul Walmsley | 92206fd | 2012-02-02 02:38:50 -0700 | [diff] [blame] | 87 | clkdm_allow_idle(clkdm); |
| 88 | else if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP && |
| 89 | atomic_read(&clkdm->usecount) == 0) |
| 90 | clkdm_sleep(clkdm); |
| 91 | return 0; |
| 92 | } |
| 93 | |
Santosh Shilimkar | eb6a2c7 | 2010-09-15 01:04:01 +0530 | [diff] [blame] | 94 | /* |
| 95 | * This sets pwrdm state (other than mpu & core. Currently only ON & |
Rajendra Nayak | 33de32b | 2010-12-21 22:37:28 -0700 | [diff] [blame] | 96 | * RET are supported. |
Santosh Shilimkar | eb6a2c7 | 2010-09-15 01:04:01 +0530 | [diff] [blame] | 97 | */ |
Paul Walmsley | e68e8093 | 2012-01-30 02:47:24 -0700 | [diff] [blame] | 98 | int omap_set_pwrdm_state(struct powerdomain *pwrdm, u32 pwrst) |
Santosh Shilimkar | eb6a2c7 | 2010-09-15 01:04:01 +0530 | [diff] [blame] | 99 | { |
Paul Walmsley | e68e8093 | 2012-01-30 02:47:24 -0700 | [diff] [blame] | 100 | u8 curr_pwrst, next_pwrst; |
| 101 | int sleep_switch = -1, ret = 0, hwsup = 0; |
Santosh Shilimkar | eb6a2c7 | 2010-09-15 01:04:01 +0530 | [diff] [blame] | 102 | |
Paul Walmsley | e68e8093 | 2012-01-30 02:47:24 -0700 | [diff] [blame] | 103 | if (!pwrdm || IS_ERR(pwrdm)) |
Santosh Shilimkar | eb6a2c7 | 2010-09-15 01:04:01 +0530 | [diff] [blame] | 104 | return -EINVAL; |
| 105 | |
Paul Walmsley | e68e8093 | 2012-01-30 02:47:24 -0700 | [diff] [blame] | 106 | while (!(pwrdm->pwrsts & (1 << pwrst))) { |
| 107 | if (pwrst == PWRDM_POWER_OFF) |
Santosh Shilimkar | eb6a2c7 | 2010-09-15 01:04:01 +0530 | [diff] [blame] | 108 | return ret; |
Paul Walmsley | e68e8093 | 2012-01-30 02:47:24 -0700 | [diff] [blame] | 109 | pwrst--; |
Santosh Shilimkar | eb6a2c7 | 2010-09-15 01:04:01 +0530 | [diff] [blame] | 110 | } |
| 111 | |
Paul Walmsley | e68e8093 | 2012-01-30 02:47:24 -0700 | [diff] [blame] | 112 | next_pwrst = pwrdm_read_next_pwrst(pwrdm); |
| 113 | if (next_pwrst == pwrst) |
Santosh Shilimkar | eb6a2c7 | 2010-09-15 01:04:01 +0530 | [diff] [blame] | 114 | return ret; |
| 115 | |
Paul Walmsley | e68e8093 | 2012-01-30 02:47:24 -0700 | [diff] [blame] | 116 | curr_pwrst = pwrdm_read_pwrst(pwrdm); |
| 117 | if (curr_pwrst < PWRDM_POWER_ON) { |
| 118 | if ((curr_pwrst > pwrst) && |
Rajendra Nayak | 71a488d | 2010-12-21 22:37:27 -0700 | [diff] [blame] | 119 | (pwrdm->flags & PWRDM_HAS_LOWPOWERSTATECHANGE)) { |
| 120 | sleep_switch = LOWPOWERSTATE_SWITCH; |
| 121 | } else { |
Rajendra Nayak | b86cfb5 | 2011-07-10 05:56:54 -0600 | [diff] [blame] | 122 | hwsup = clkdm_in_hwsup(pwrdm->pwrdm_clkdms[0]); |
Rajendra Nayak | 68b921a | 2011-02-25 16:06:47 -0700 | [diff] [blame] | 123 | clkdm_wakeup(pwrdm->pwrdm_clkdms[0]); |
Rajendra Nayak | 71a488d | 2010-12-21 22:37:27 -0700 | [diff] [blame] | 124 | sleep_switch = FORCEWAKEUP_SWITCH; |
| 125 | } |
Santosh Shilimkar | eb6a2c7 | 2010-09-15 01:04:01 +0530 | [diff] [blame] | 126 | } |
| 127 | |
Paul Walmsley | e68e8093 | 2012-01-30 02:47:24 -0700 | [diff] [blame] | 128 | ret = pwrdm_set_next_pwrst(pwrdm, pwrst); |
| 129 | if (ret) |
| 130 | pr_err("%s: unable to set power state of powerdomain: %s\n", |
Johan Hovold | e9a5190 | 2011-08-30 18:48:17 +0200 | [diff] [blame] | 131 | __func__, pwrdm->name); |
Santosh Shilimkar | eb6a2c7 | 2010-09-15 01:04:01 +0530 | [diff] [blame] | 132 | |
Rajendra Nayak | 71a488d | 2010-12-21 22:37:27 -0700 | [diff] [blame] | 133 | switch (sleep_switch) { |
| 134 | case FORCEWAKEUP_SWITCH: |
Rajendra Nayak | b86cfb5 | 2011-07-10 05:56:54 -0600 | [diff] [blame] | 135 | if (hwsup) |
Rajendra Nayak | 5cd1937 | 2011-02-25 16:06:48 -0700 | [diff] [blame] | 136 | clkdm_allow_idle(pwrdm->pwrdm_clkdms[0]); |
Rajendra Nayak | 33de32b | 2010-12-21 22:37:28 -0700 | [diff] [blame] | 137 | else |
Rajendra Nayak | 68b921a | 2011-02-25 16:06:47 -0700 | [diff] [blame] | 138 | clkdm_sleep(pwrdm->pwrdm_clkdms[0]); |
Rajendra Nayak | 71a488d | 2010-12-21 22:37:27 -0700 | [diff] [blame] | 139 | break; |
| 140 | case LOWPOWERSTATE_SWITCH: |
| 141 | pwrdm_set_lowpwrstchange(pwrdm); |
Paul Walmsley | e68e8093 | 2012-01-30 02:47:24 -0700 | [diff] [blame] | 142 | pwrdm_wait_transition(pwrdm); |
| 143 | pwrdm_state_switch(pwrdm); |
Rajendra Nayak | 71a488d | 2010-12-21 22:37:27 -0700 | [diff] [blame] | 144 | break; |
Santosh Shilimkar | eb6a2c7 | 2010-09-15 01:04:01 +0530 | [diff] [blame] | 145 | } |
| 146 | |
Santosh Shilimkar | eb6a2c7 | 2010-09-15 01:04:01 +0530 | [diff] [blame] | 147 | return ret; |
| 148 | } |
| 149 | |
Paul Walmsley | 1416408 | 2012-02-02 02:30:50 -0700 | [diff] [blame] | 150 | |
| 151 | |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 152 | /* |
Johan Hovold | 1e2d2df | 2011-08-30 18:48:16 +0200 | [diff] [blame] | 153 | * This API is to be called during init to set the various voltage |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 154 | * domains to the voltage as per the opp table. Typically we boot up |
| 155 | * at the nominal voltage. So this function finds out the rate of |
| 156 | * the clock associated with the voltage domain, finds out the correct |
Johan Hovold | 1e2d2df | 2011-08-30 18:48:16 +0200 | [diff] [blame] | 157 | * opp entry and sets the voltage domain to the voltage specified |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 158 | * in the opp entry |
| 159 | */ |
| 160 | static int __init omap2_set_init_voltage(char *vdd_name, char *clk_name, |
Benoit Cousson | 0f7aa00 | 2011-08-16 15:02:20 +0200 | [diff] [blame] | 161 | const char *oh_name) |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 162 | { |
| 163 | struct voltagedomain *voltdm; |
| 164 | struct clk *clk; |
| 165 | struct opp *opp; |
| 166 | unsigned long freq, bootup_volt; |
Benoit Cousson | 0f7aa00 | 2011-08-16 15:02:20 +0200 | [diff] [blame] | 167 | struct device *dev; |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 168 | |
Benoit Cousson | 0f7aa00 | 2011-08-16 15:02:20 +0200 | [diff] [blame] | 169 | if (!vdd_name || !clk_name || !oh_name) { |
Johan Hovold | e9a5190 | 2011-08-30 18:48:17 +0200 | [diff] [blame] | 170 | pr_err("%s: invalid parameters\n", __func__); |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 171 | goto exit; |
| 172 | } |
| 173 | |
Kevin Hilman | 24d7b40 | 2012-09-06 14:03:08 -0700 | [diff] [blame] | 174 | if (!strncmp(oh_name, "mpu", 3)) |
| 175 | /* |
| 176 | * All current OMAPs share voltage rail and clock |
| 177 | * source, so CPU0 is used to represent the MPU-SS. |
| 178 | */ |
| 179 | dev = get_cpu_device(0); |
| 180 | else |
| 181 | dev = omap_device_get_by_hwmod_name(oh_name); |
| 182 | |
Benoit Cousson | 0f7aa00 | 2011-08-16 15:02:20 +0200 | [diff] [blame] | 183 | if (IS_ERR(dev)) { |
| 184 | pr_err("%s: Unable to get dev pointer for hwmod %s\n", |
| 185 | __func__, oh_name); |
| 186 | goto exit; |
| 187 | } |
| 188 | |
Kevin Hilman | 81a6048 | 2011-03-16 14:25:45 -0700 | [diff] [blame] | 189 | voltdm = voltdm_lookup(vdd_name); |
Wei Yongjun | 93b44be | 2012-09-27 13:54:36 +0800 | [diff] [blame] | 190 | if (!voltdm) { |
Johan Hovold | e9a5190 | 2011-08-30 18:48:17 +0200 | [diff] [blame] | 191 | pr_err("%s: unable to get vdd pointer for vdd_%s\n", |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 192 | __func__, vdd_name); |
| 193 | goto exit; |
| 194 | } |
| 195 | |
| 196 | clk = clk_get(NULL, clk_name); |
| 197 | if (IS_ERR(clk)) { |
Johan Hovold | e9a5190 | 2011-08-30 18:48:17 +0200 | [diff] [blame] | 198 | pr_err("%s: unable to get clk %s\n", __func__, clk_name); |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 199 | goto exit; |
| 200 | } |
| 201 | |
Rajendra Nayak | 5dcc3b9 | 2012-09-22 02:24:17 -0600 | [diff] [blame] | 202 | freq = clk_get_rate(clk); |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 203 | clk_put(clk); |
| 204 | |
NeilBrown | 6369fd4 | 2012-01-09 13:14:12 +1100 | [diff] [blame] | 205 | rcu_read_lock(); |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 206 | opp = opp_find_freq_ceil(dev, &freq); |
| 207 | if (IS_ERR(opp)) { |
NeilBrown | 6369fd4 | 2012-01-09 13:14:12 +1100 | [diff] [blame] | 208 | rcu_read_unlock(); |
Johan Hovold | e9a5190 | 2011-08-30 18:48:17 +0200 | [diff] [blame] | 209 | pr_err("%s: unable to find boot up OPP for vdd_%s\n", |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 210 | __func__, vdd_name); |
| 211 | goto exit; |
| 212 | } |
| 213 | |
| 214 | bootup_volt = opp_get_voltage(opp); |
NeilBrown | 6369fd4 | 2012-01-09 13:14:12 +1100 | [diff] [blame] | 215 | rcu_read_unlock(); |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 216 | if (!bootup_volt) { |
Paul Walmsley | 7852ec0 | 2012-07-26 00:54:26 -0600 | [diff] [blame] | 217 | pr_err("%s: unable to find voltage corresponding to the bootup OPP for vdd_%s\n", |
| 218 | __func__, vdd_name); |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 219 | goto exit; |
| 220 | } |
| 221 | |
Kevin Hilman | 5e5651b | 2011-04-05 16:27:21 -0700 | [diff] [blame] | 222 | voltdm_scale(voltdm, bootup_volt); |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 223 | return 0; |
| 224 | |
| 225 | exit: |
Johan Hovold | e9a5190 | 2011-08-30 18:48:17 +0200 | [diff] [blame] | 226 | pr_err("%s: unable to set vdd_%s\n", __func__, vdd_name); |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 227 | return -EINVAL; |
| 228 | } |
| 229 | |
Paul Walmsley | 1416408 | 2012-02-02 02:30:50 -0700 | [diff] [blame] | 230 | #ifdef CONFIG_SUSPEND |
| 231 | static int omap_pm_enter(suspend_state_t suspend_state) |
| 232 | { |
| 233 | int ret = 0; |
| 234 | |
| 235 | if (!omap_pm_suspend) |
| 236 | return -ENOENT; /* XXX doublecheck */ |
| 237 | |
| 238 | switch (suspend_state) { |
| 239 | case PM_SUSPEND_STANDBY: |
| 240 | case PM_SUSPEND_MEM: |
| 241 | ret = omap_pm_suspend(); |
| 242 | break; |
| 243 | default: |
| 244 | ret = -EINVAL; |
| 245 | } |
| 246 | |
| 247 | return ret; |
| 248 | } |
| 249 | |
| 250 | static int omap_pm_begin(suspend_state_t state) |
| 251 | { |
| 252 | disable_hlt(); |
| 253 | if (cpu_is_omap34xx()) |
| 254 | omap_prcm_irq_prepare(); |
| 255 | return 0; |
| 256 | } |
| 257 | |
| 258 | static void omap_pm_end(void) |
| 259 | { |
| 260 | enable_hlt(); |
| 261 | return; |
| 262 | } |
| 263 | |
| 264 | static void omap_pm_finish(void) |
| 265 | { |
| 266 | if (cpu_is_omap34xx()) |
| 267 | omap_prcm_irq_complete(); |
| 268 | } |
| 269 | |
| 270 | static const struct platform_suspend_ops omap_pm_ops = { |
| 271 | .begin = omap_pm_begin, |
| 272 | .end = omap_pm_end, |
| 273 | .enter = omap_pm_enter, |
| 274 | .finish = omap_pm_finish, |
| 275 | .valid = suspend_valid_only_mem, |
| 276 | }; |
| 277 | |
| 278 | #endif /* CONFIG_SUSPEND */ |
| 279 | |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 280 | static void __init omap3_init_voltages(void) |
| 281 | { |
| 282 | if (!cpu_is_omap34xx()) |
| 283 | return; |
| 284 | |
Benoit Cousson | 0f7aa00 | 2011-08-16 15:02:20 +0200 | [diff] [blame] | 285 | omap2_set_init_voltage("mpu_iva", "dpll1_ck", "mpu"); |
| 286 | omap2_set_init_voltage("core", "l3_ick", "l3_main"); |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 287 | } |
| 288 | |
Thara Gopinath | 1376ee1 | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 289 | static void __init omap4_init_voltages(void) |
| 290 | { |
| 291 | if (!cpu_is_omap44xx()) |
| 292 | return; |
| 293 | |
Benoit Cousson | 0f7aa00 | 2011-08-16 15:02:20 +0200 | [diff] [blame] | 294 | omap2_set_init_voltage("mpu", "dpll_mpu_ck", "mpu"); |
| 295 | omap2_set_init_voltage("core", "l3_div_ck", "l3_main_1"); |
| 296 | omap2_set_init_voltage("iva", "dpll_iva_m5x2_ck", "iva"); |
Thara Gopinath | 1376ee1 | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 297 | } |
| 298 | |
Kevin Hilman | 6f88e9b | 2010-07-26 16:34:31 -0600 | [diff] [blame] | 299 | static int __init omap2_common_pm_init(void) |
| 300 | { |
Benoit Cousson | 476b679 | 2011-08-16 11:49:08 +0200 | [diff] [blame] | 301 | if (!of_have_populated_dt()) |
| 302 | omap2_init_processor_devices(); |
Kevin Hilman | 6f88e9b | 2010-07-26 16:34:31 -0600 | [diff] [blame] | 303 | omap_pm_if_init(); |
| 304 | |
| 305 | return 0; |
| 306 | } |
Thara Gopinath | 1cbbe37 | 2010-12-20 21:17:21 +0530 | [diff] [blame] | 307 | postcore_initcall(omap2_common_pm_init); |
Kevin Hilman | 6f88e9b | 2010-07-26 16:34:31 -0600 | [diff] [blame] | 308 | |
Shawn Guo | bbd707a | 2012-04-26 16:06:50 +0800 | [diff] [blame] | 309 | int __init omap2_common_pm_late_init(void) |
Thara Gopinath | 2f34ce8 | 2010-05-29 22:02:21 +0530 | [diff] [blame] | 310 | { |
Benoit Cousson | 506d81e | 2011-12-08 16:47:39 +0100 | [diff] [blame] | 311 | /* |
| 312 | * In the case of DT, the PMIC and SR initialization will be done using |
| 313 | * a completely different mechanism. |
| 314 | * Disable this part if a DT blob is available. |
| 315 | */ |
| 316 | if (of_have_populated_dt()) |
| 317 | return 0; |
| 318 | |
Thara Gopinath | fbc319f | 2010-12-10 22:51:05 +0530 | [diff] [blame] | 319 | /* Init the voltage layer */ |
Kevin Hilman | 46232a3 | 2011-11-23 14:43:01 -0800 | [diff] [blame] | 320 | omap_pmic_late_init(); |
Thara Gopinath | 2f34ce8 | 2010-05-29 22:02:21 +0530 | [diff] [blame] | 321 | omap_voltage_late_init(); |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 322 | |
| 323 | /* Initialize the voltages */ |
| 324 | omap3_init_voltages(); |
Thara Gopinath | 1376ee1 | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 325 | omap4_init_voltages(); |
Thara Gopinath | 1482d8b | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 326 | |
Thara Gopinath | fbc319f | 2010-12-10 22:51:05 +0530 | [diff] [blame] | 327 | /* Smartreflex device init */ |
Thara Gopinath | 0c0a5d6 | 2010-05-29 22:02:23 +0530 | [diff] [blame] | 328 | omap_devinit_smartreflex(); |
Thara Gopinath | 2f34ce8 | 2010-05-29 22:02:21 +0530 | [diff] [blame] | 329 | |
Paul Walmsley | 1416408 | 2012-02-02 02:30:50 -0700 | [diff] [blame] | 330 | #ifdef CONFIG_SUSPEND |
| 331 | suspend_set_ops(&omap_pm_ops); |
| 332 | #endif |
| 333 | |
Thara Gopinath | 2f34ce8 | 2010-05-29 22:02:21 +0530 | [diff] [blame] | 334 | return 0; |
| 335 | } |