diff options
-rw-r--r-- | Documentation/arm/OMAP/omap_pm | 129 | ||||
-rw-r--r-- | arch/arm/mach-omap2/io.c | 4 | ||||
-rw-r--r-- | arch/arm/plat-omap/Kconfig | 13 | ||||
-rw-r--r-- | arch/arm/plat-omap/Makefile | 1 | ||||
-rw-r--r-- | arch/arm/plat-omap/include/mach/omap-pm.h | 301 | ||||
-rw-r--r-- | arch/arm/plat-omap/omap-pm-noop.c | 296 |
6 files changed, 744 insertions, 0 deletions
diff --git a/Documentation/arm/OMAP/omap_pm b/Documentation/arm/OMAP/omap_pm new file mode 100644 index 000000000000..5389440aade3 --- /dev/null +++ b/Documentation/arm/OMAP/omap_pm | |||
@@ -0,0 +1,129 @@ | |||
1 | |||
2 | The OMAP PM interface | ||
3 | ===================== | ||
4 | |||
5 | This document describes the temporary OMAP PM interface. Driver | ||
6 | authors use these functions to communicate minimum latency or | ||
7 | throughput constraints to the kernel power management code. | ||
8 | Over time, the intention is to merge features from the OMAP PM | ||
9 | interface into the Linux PM QoS code. | ||
10 | |||
11 | Drivers need to express PM parameters which: | ||
12 | |||
13 | - support the range of power management parameters present in the TI SRF; | ||
14 | |||
15 | - separate the drivers from the underlying PM parameter | ||
16 | implementation, whether it is the TI SRF or Linux PM QoS or Linux | ||
17 | latency framework or something else; | ||
18 | |||
19 | - specify PM parameters in terms of fundamental units, such as | ||
20 | latency and throughput, rather than units which are specific to OMAP | ||
21 | or to particular OMAP variants; | ||
22 | |||
23 | - allow drivers which are shared with other architectures (e.g., | ||
24 | DaVinci) to add these constraints in a way which won't affect non-OMAP | ||
25 | systems, | ||
26 | |||
27 | - can be implemented immediately with minimal disruption of other | ||
28 | architectures. | ||
29 | |||
30 | |||
31 | This document proposes the OMAP PM interface, including the following | ||
32 | five power management functions for driver code: | ||
33 | |||
34 | 1. Set the maximum MPU wakeup latency: | ||
35 | (*pdata->set_max_mpu_wakeup_lat)(struct device *dev, unsigned long t) | ||
36 | |||
37 | 2. Set the maximum device wakeup latency: | ||
38 | (*pdata->set_max_dev_wakeup_lat)(struct device *dev, unsigned long t) | ||
39 | |||
40 | 3. Set the maximum system DMA transfer start latency (CORE pwrdm): | ||
41 | (*pdata->set_max_sdma_lat)(struct device *dev, long t) | ||
42 | |||
43 | 4. Set the minimum bus throughput needed by a device: | ||
44 | (*pdata->set_min_bus_tput)(struct device *dev, u8 agent_id, unsigned long r) | ||
45 | |||
46 | 5. Return the number of times the device has lost context | ||
47 | (*pdata->get_dev_context_loss_count)(struct device *dev) | ||
48 | |||
49 | |||
50 | Further documentation for all OMAP PM interface functions can be | ||
51 | found in arch/arm/plat-omap/include/mach/omap-pm.h. | ||
52 | |||
53 | |||
54 | The OMAP PM layer is intended to be temporary | ||
55 | --------------------------------------------- | ||
56 | |||
57 | The intention is that eventually the Linux PM QoS layer should support | ||
58 | the range of power management features present in OMAP3. As this | ||
59 | happens, existing drivers using the OMAP PM interface can be modified | ||
60 | to use the Linux PM QoS code; and the OMAP PM interface can disappear. | ||
61 | |||
62 | |||
63 | Driver usage of the OMAP PM functions | ||
64 | ------------------------------------- | ||
65 | |||
66 | As the 'pdata' in the above examples indicates, these functions are | ||
67 | exposed to drivers through function pointers in driver .platform_data | ||
68 | structures. The function pointers are initialized by the board-*.c | ||
69 | files to point to the corresponding OMAP PM functions: | ||
70 | .set_max_dev_wakeup_lat will point to | ||
71 | omap_pm_set_max_dev_wakeup_lat(), etc. Other architectures which do | ||
72 | not support these functions should leave these function pointers set | ||
73 | to NULL. Drivers should use the following idiom: | ||
74 | |||
75 | if (pdata->set_max_dev_wakeup_lat) | ||
76 | (*pdata->set_max_dev_wakeup_lat)(dev, t); | ||
77 | |||
78 | The most common usage of these functions will probably be to specify | ||
79 | the maximum time from when an interrupt occurs, to when the device | ||
80 | becomes accessible. To accomplish this, driver writers should use the | ||
81 | set_max_mpu_wakeup_lat() function to to constrain the MPU wakeup | ||
82 | latency, and the set_max_dev_wakeup_lat() function to constrain the | ||
83 | device wakeup latency (from clk_enable() to accessibility). For | ||
84 | example, | ||
85 | |||
86 | /* Limit MPU wakeup latency */ | ||
87 | if (pdata->set_max_mpu_wakeup_lat) | ||
88 | (*pdata->set_max_mpu_wakeup_lat)(dev, tc); | ||
89 | |||
90 | /* Limit device powerdomain wakeup latency */ | ||
91 | if (pdata->set_max_dev_wakeup_lat) | ||
92 | (*pdata->set_max_dev_wakeup_lat)(dev, td); | ||
93 | |||
94 | /* total wakeup latency in this example: (tc + td) */ | ||
95 | |||
96 | The PM parameters can be overwritten by calling the function again | ||
97 | with the new value. The settings can be removed by calling the | ||
98 | function with a t argument of -1 (except in the case of | ||
99 | set_max_bus_tput(), which should be called with an r argument of 0). | ||
100 | |||
101 | The fifth function above, omap_pm_get_dev_context_loss_count(), | ||
102 | is intended as an optimization to allow drivers to determine whether the | ||
103 | device has lost its internal context. If context has been lost, the | ||
104 | driver must restore its internal context before proceeding. | ||
105 | |||
106 | |||
107 | Other specialized interface functions | ||
108 | ------------------------------------- | ||
109 | |||
110 | The five functions listed above are intended to be usable by any | ||
111 | device driver. DSPBridge and CPUFreq have a few special requirements. | ||
112 | DSPBridge expresses target DSP performance levels in terms of OPP IDs. | ||
113 | CPUFreq expresses target MPU performance levels in terms of MPU | ||
114 | frequency. The OMAP PM interface contains functions for these | ||
115 | specialized cases to convert that input information (OPPs/MPU | ||
116 | frequency) into the form that the underlying power management | ||
117 | implementation needs: | ||
118 | |||
119 | 6. (*pdata->dsp_get_opp_table)(void) | ||
120 | |||
121 | 7. (*pdata->dsp_set_min_opp)(u8 opp_id) | ||
122 | |||
123 | 8. (*pdata->dsp_get_opp)(void) | ||
124 | |||
125 | 9. (*pdata->cpu_get_freq_table)(void) | ||
126 | |||
127 | 10. (*pdata->cpu_set_freq)(unsigned long f) | ||
128 | |||
129 | 11. (*pdata->cpu_get_freq)(void) | ||
diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c index e9b9bcb19b4e..4bfe873e1b83 100644 --- a/arch/arm/mach-omap2/io.c +++ b/arch/arm/mach-omap2/io.c | |||
@@ -36,6 +36,7 @@ | |||
36 | #ifndef CONFIG_ARCH_OMAP4 /* FIXME: Remove this once clkdev is ready */ | 36 | #ifndef CONFIG_ARCH_OMAP4 /* FIXME: Remove this once clkdev is ready */ |
37 | #include "clock.h" | 37 | #include "clock.h" |
38 | 38 | ||
39 | #include <mach/omap-pm.h> | ||
39 | #include <mach/powerdomain.h> | 40 | #include <mach/powerdomain.h> |
40 | 41 | ||
41 | #include "powerdomains.h" | 42 | #include "powerdomains.h" |
@@ -281,9 +282,12 @@ void __init omap2_init_common_hw(struct omap_sdrc_params *sdrc_cs0, | |||
281 | { | 282 | { |
282 | omap2_mux_init(); | 283 | omap2_mux_init(); |
283 | #ifndef CONFIG_ARCH_OMAP4 /* FIXME: Remove this once the clkdev is ready */ | 284 | #ifndef CONFIG_ARCH_OMAP4 /* FIXME: Remove this once the clkdev is ready */ |
285 | /* The OPP tables have to be registered before a clk init */ | ||
286 | omap_pm_if_early_init(mpu_opps, dsp_opps, l3_opps); | ||
284 | pwrdm_init(powerdomains_omap); | 287 | pwrdm_init(powerdomains_omap); |
285 | clkdm_init(clockdomains_omap, clkdm_pwrdm_autodeps); | 288 | clkdm_init(clockdomains_omap, clkdm_pwrdm_autodeps); |
286 | omap2_clk_init(); | 289 | omap2_clk_init(); |
290 | omap_pm_if_init(); | ||
287 | omap2_sdrc_init(sdrc_cs0, sdrc_cs1); | 291 | omap2_sdrc_init(sdrc_cs0, sdrc_cs1); |
288 | _omap2_init_reprogram_sdrc(); | 292 | _omap2_init_reprogram_sdrc(); |
289 | #endif | 293 | #endif |
diff --git a/arch/arm/plat-omap/Kconfig b/arch/arm/plat-omap/Kconfig index ab9f9efc9b62..64b3f52bd9b2 100644 --- a/arch/arm/plat-omap/Kconfig +++ b/arch/arm/plat-omap/Kconfig | |||
@@ -187,6 +187,19 @@ config OMAP_SERIAL_WAKE | |||
187 | to data on the serial RX line. This allows you to wake the | 187 | to data on the serial RX line. This allows you to wake the |
188 | system from serial console. | 188 | system from serial console. |
189 | 189 | ||
190 | choice | ||
191 | prompt "OMAP PM layer selection" | ||
192 | depends on ARCH_OMAP | ||
193 | default OMAP_PM_NOOP | ||
194 | |||
195 | config OMAP_PM_NONE | ||
196 | bool "No PM layer" | ||
197 | |||
198 | config OMAP_PM_NOOP | ||
199 | bool "No-op/debug PM layer" | ||
200 | |||
201 | endchoice | ||
202 | |||
190 | endmenu | 203 | endmenu |
191 | 204 | ||
192 | endif | 205 | endif |
diff --git a/arch/arm/plat-omap/Makefile b/arch/arm/plat-omap/Makefile index 769a4c200364..5e10d0a2eb8d 100644 --- a/arch/arm/plat-omap/Makefile +++ b/arch/arm/plat-omap/Makefile | |||
@@ -26,3 +26,4 @@ obj-y += $(i2c-omap-m) $(i2c-omap-y) | |||
26 | # OMAP mailbox framework | 26 | # OMAP mailbox framework |
27 | obj-$(CONFIG_OMAP_MBOX_FWK) += mailbox.o | 27 | obj-$(CONFIG_OMAP_MBOX_FWK) += mailbox.o |
28 | 28 | ||
29 | obj-$(CONFIG_OMAP_PM_NOOP) += omap-pm-noop.o \ No newline at end of file | ||
diff --git a/arch/arm/plat-omap/include/mach/omap-pm.h b/arch/arm/plat-omap/include/mach/omap-pm.h new file mode 100644 index 000000000000..3ee41d711492 --- /dev/null +++ b/arch/arm/plat-omap/include/mach/omap-pm.h | |||
@@ -0,0 +1,301 @@ | |||
1 | /* | ||
2 | * omap-pm.h - OMAP power management interface | ||
3 | * | ||
4 | * Copyright (C) 2008-2009 Texas Instruments, Inc. | ||
5 | * Copyright (C) 2008-2009 Nokia Corporation | ||
6 | * Paul Walmsley | ||
7 | * | ||
8 | * Interface developed by (in alphabetical order): Karthik Dasu, Jouni | ||
9 | * Högander, Tony Lindgren, Rajendra Nayak, Sakari Poussa, | ||
10 | * Veeramanikandan Raju, Anand Sawant, Igor Stoppa, Paul Walmsley, | ||
11 | * Richard Woodruff | ||
12 | */ | ||
13 | |||
14 | #ifndef ASM_ARM_ARCH_OMAP_OMAP_PM_H | ||
15 | #define ASM_ARM_ARCH_OMAP_OMAP_PM_H | ||
16 | |||
17 | #include <linux/device.h> | ||
18 | #include <linux/cpufreq.h> | ||
19 | |||
20 | #include "powerdomain.h" | ||
21 | |||
22 | /** | ||
23 | * struct omap_opp - clock frequency-to-OPP ID table for DSP, MPU | ||
24 | * @rate: target clock rate | ||
25 | * @opp_id: OPP ID | ||
26 | * @min_vdd: minimum VDD1 voltage (in millivolts) for this OPP | ||
27 | * | ||
28 | * Operating performance point data. Can vary by OMAP chip and board. | ||
29 | */ | ||
30 | struct omap_opp { | ||
31 | unsigned long rate; | ||
32 | u8 opp_id; | ||
33 | u16 min_vdd; | ||
34 | }; | ||
35 | |||
36 | extern struct omap_opp *mpu_opps; | ||
37 | extern struct omap_opp *dsp_opps; | ||
38 | extern struct omap_opp *l3_opps; | ||
39 | |||
40 | /* | ||
41 | * agent_id values for use with omap_pm_set_min_bus_tput(): | ||
42 | * | ||
43 | * OCP_INITIATOR_AGENT is only valid for devices that can act as | ||
44 | * initiators -- it represents the device's L3 interconnect | ||
45 | * connection. OCP_TARGET_AGENT represents the device's L4 | ||
46 | * interconnect connection. | ||
47 | */ | ||
48 | #define OCP_TARGET_AGENT 1 | ||
49 | #define OCP_INITIATOR_AGENT 2 | ||
50 | |||
51 | /** | ||
52 | * omap_pm_if_early_init - OMAP PM init code called before clock fw init | ||
53 | * @mpu_opp_table: array ptr to struct omap_opp for MPU | ||
54 | * @dsp_opp_table: array ptr to struct omap_opp for DSP | ||
55 | * @l3_opp_table : array ptr to struct omap_opp for CORE | ||
56 | * | ||
57 | * Initialize anything that must be configured before the clock | ||
58 | * framework starts. The "_if_" is to avoid name collisions with the | ||
59 | * PM idle-loop code. | ||
60 | */ | ||
61 | int __init omap_pm_if_early_init(struct omap_opp *mpu_opp_table, | ||
62 | struct omap_opp *dsp_opp_table, | ||
63 | struct omap_opp *l3_opp_table); | ||
64 | |||
65 | /** | ||
66 | * omap_pm_if_init - OMAP PM init code called after clock fw init | ||
67 | * | ||
68 | * The main initialization code. OPP tables are passed in here. The | ||
69 | * "_if_" is to avoid name collisions with the PM idle-loop code. | ||
70 | */ | ||
71 | int __init omap_pm_if_init(void); | ||
72 | |||
73 | /** | ||
74 | * omap_pm_if_exit - OMAP PM exit code | ||
75 | * | ||
76 | * Exit code; currently unused. The "_if_" is to avoid name | ||
77 | * collisions with the PM idle-loop code. | ||
78 | */ | ||
79 | void omap_pm_if_exit(void); | ||
80 | |||
81 | /* | ||
82 | * Device-driver-originated constraints (via board-*.c files, platform_data) | ||
83 | */ | ||
84 | |||
85 | |||
86 | /** | ||
87 | * omap_pm_set_max_mpu_wakeup_lat - set the maximum MPU wakeup latency | ||
88 | * @dev: struct device * requesting the constraint | ||
89 | * @t: maximum MPU wakeup latency in microseconds | ||
90 | * | ||
91 | * Request that the maximum interrupt latency for the MPU to be no | ||
92 | * greater than 't' microseconds. "Interrupt latency" in this case is | ||
93 | * defined as the elapsed time from the occurrence of a hardware or | ||
94 | * timer interrupt to the time when the device driver's interrupt | ||
95 | * service routine has been entered by the MPU. | ||
96 | * | ||
97 | * It is intended that underlying PM code will use this information to | ||
98 | * determine what power state to put the MPU powerdomain into, and | ||
99 | * possibly the CORE powerdomain as well, since interrupt handling | ||
100 | * code currently runs from SDRAM. Advanced PM or board*.c code may | ||
101 | * also configure interrupt controller priorities, OCP bus priorities, | ||
102 | * CPU speed(s), etc. | ||
103 | * | ||
104 | * This function will not affect device wakeup latency, e.g., time | ||
105 | * elapsed from when a device driver enables a hardware device with | ||
106 | * clk_enable(), to when the device is ready for register access or | ||
107 | * other use. To control this device wakeup latency, use | ||
108 | * set_max_dev_wakeup_lat() | ||
109 | * | ||
110 | * Multiple calls to set_max_mpu_wakeup_lat() will replace the | ||
111 | * previous t value. To remove the latency target for the MPU, call | ||
112 | * with t = -1. | ||
113 | * | ||
114 | * No return value. | ||
115 | */ | ||
116 | void omap_pm_set_max_mpu_wakeup_lat(struct device *dev, long t); | ||
117 | |||
118 | |||
119 | /** | ||
120 | * omap_pm_set_min_bus_tput - set minimum bus throughput needed by device | ||
121 | * @dev: struct device * requesting the constraint | ||
122 | * @tbus_id: interconnect to operate on (OCP_{INITIATOR,TARGET}_AGENT) | ||
123 | * @r: minimum throughput (in KiB/s) | ||
124 | * | ||
125 | * Request that the minimum data throughput on the OCP interconnect | ||
126 | * attached to device 'dev' interconnect agent 'tbus_id' be no less | ||
127 | * than 'r' KiB/s. | ||
128 | * | ||
129 | * It is expected that the OMAP PM or bus code will use this | ||
130 | * information to set the interconnect clock to run at the lowest | ||
131 | * possible speed that satisfies all current system users. The PM or | ||
132 | * bus code will adjust the estimate based on its model of the bus, so | ||
133 | * device driver authors should attempt to specify an accurate | ||
134 | * quantity for their device use case, and let the PM or bus code | ||
135 | * overestimate the numbers as necessary to handle request/response | ||
136 | * latency, other competing users on the system, etc. On OMAP2/3, if | ||
137 | * a driver requests a minimum L4 interconnect speed constraint, the | ||
138 | * code will also need to add an minimum L3 interconnect speed | ||
139 | * constraint, | ||
140 | * | ||
141 | * Multiple calls to set_min_bus_tput() will replace the previous rate | ||
142 | * value for this device. To remove the interconnect throughput | ||
143 | * restriction for this device, call with r = 0. | ||
144 | * | ||
145 | * No return value. | ||
146 | */ | ||
147 | void omap_pm_set_min_bus_tput(struct device *dev, u8 agent_id, unsigned long r); | ||
148 | |||
149 | |||
150 | /** | ||
151 | * omap_pm_set_max_dev_wakeup_lat - set the maximum device enable latency | ||
152 | * @dev: struct device * | ||
153 | * @t: maximum device wakeup latency in microseconds | ||
154 | * | ||
155 | * Request that the maximum amount of time necessary for a device to | ||
156 | * become accessible after its clocks are enabled should be no greater | ||
157 | * than 't' microseconds. Specifically, this represents the time from | ||
158 | * when a device driver enables device clocks with clk_enable(), to | ||
159 | * when the register reads and writes on the device will succeed. | ||
160 | * This function should be called before clk_disable() is called, | ||
161 | * since the power state transition decision may be made during | ||
162 | * clk_disable(). | ||
163 | * | ||
164 | * It is intended that underlying PM code will use this information to | ||
165 | * determine what power state to put the powerdomain enclosing this | ||
166 | * device into. | ||
167 | * | ||
168 | * Multiple calls to set_max_dev_wakeup_lat() will replace the | ||
169 | * previous wakeup latency values for this device. To remove the wakeup | ||
170 | * latency restriction for this device, call with t = -1. | ||
171 | * | ||
172 | * No return value. | ||
173 | */ | ||
174 | void omap_pm_set_max_dev_wakeup_lat(struct device *dev, long t); | ||
175 | |||
176 | |||
177 | /** | ||
178 | * omap_pm_set_max_sdma_lat - set the maximum system DMA transfer start latency | ||
179 | * @dev: struct device * | ||
180 | * @t: maximum DMA transfer start latency in microseconds | ||
181 | * | ||
182 | * Request that the maximum system DMA transfer start latency for this | ||
183 | * device 'dev' should be no greater than 't' microseconds. "DMA | ||
184 | * transfer start latency" here is defined as the elapsed time from | ||
185 | * when a device (e.g., McBSP) requests that a system DMA transfer | ||
186 | * start or continue, to the time at which data starts to flow into | ||
187 | * that device from the system DMA controller. | ||
188 | * | ||
189 | * It is intended that underlying PM code will use this information to | ||
190 | * determine what power state to put the CORE powerdomain into. | ||
191 | * | ||
192 | * Since system DMA transfers may not involve the MPU, this function | ||
193 | * will not affect MPU wakeup latency. Use set_max_cpu_lat() to do | ||
194 | * so. Similarly, this function will not affect device wakeup latency | ||
195 | * -- use set_max_dev_wakeup_lat() to affect that. | ||
196 | * | ||
197 | * Multiple calls to set_max_sdma_lat() will replace the previous t | ||
198 | * value for this device. To remove the maximum DMA latency for this | ||
199 | * device, call with t = -1. | ||
200 | * | ||
201 | * No return value. | ||
202 | */ | ||
203 | void omap_pm_set_max_sdma_lat(struct device *dev, long t); | ||
204 | |||
205 | |||
206 | /* | ||
207 | * DSP Bridge-specific constraints | ||
208 | */ | ||
209 | |||
210 | /** | ||
211 | * omap_pm_dsp_get_opp_table - get OPP->DSP clock frequency table | ||
212 | * | ||
213 | * Intended for use by DSPBridge. Returns an array of OPP->DSP clock | ||
214 | * frequency entries. The final item in the array should have .rate = | ||
215 | * .opp_id = 0. | ||
216 | */ | ||
217 | const struct omap_opp *omap_pm_dsp_get_opp_table(void); | ||
218 | |||
219 | /** | ||
220 | * omap_pm_dsp_set_min_opp - receive desired OPP target ID from DSP Bridge | ||
221 | * @opp_id: target DSP OPP ID | ||
222 | * | ||
223 | * Set a minimum OPP ID for the DSP. This is intended to be called | ||
224 | * only from the DSP Bridge MPU-side driver. Unfortunately, the only | ||
225 | * information that code receives from the DSP/BIOS load estimator is the | ||
226 | * target OPP ID; hence, this interface. No return value. | ||
227 | */ | ||
228 | void omap_pm_dsp_set_min_opp(u8 opp_id); | ||
229 | |||
230 | /** | ||
231 | * omap_pm_dsp_get_opp - report the current DSP OPP ID | ||
232 | * | ||
233 | * Report the current OPP for the DSP. Since on OMAP3, the DSP and | ||
234 | * MPU share a single voltage domain, the OPP ID returned back may | ||
235 | * represent a higher DSP speed than the OPP requested via | ||
236 | * omap_pm_dsp_set_min_opp(). | ||
237 | * | ||
238 | * Returns the current VDD1 OPP ID, or 0 upon error. | ||
239 | */ | ||
240 | u8 omap_pm_dsp_get_opp(void); | ||
241 | |||
242 | |||
243 | /* | ||
244 | * CPUFreq-originated constraint | ||
245 | * | ||
246 | * In the future, this should be handled by custom OPP clocktype | ||
247 | * functions. | ||
248 | */ | ||
249 | |||
250 | /** | ||
251 | * omap_pm_cpu_get_freq_table - return a cpufreq_frequency_table array ptr | ||
252 | * | ||
253 | * Provide a frequency table usable by CPUFreq for the current chip/board. | ||
254 | * Returns a pointer to a struct cpufreq_frequency_table array or NULL | ||
255 | * upon error. | ||
256 | */ | ||
257 | struct cpufreq_frequency_table **omap_pm_cpu_get_freq_table(void); | ||
258 | |||
259 | /** | ||
260 | * omap_pm_cpu_set_freq - set the current minimum MPU frequency | ||
261 | * @f: MPU frequency in Hz | ||
262 | * | ||
263 | * Set the current minimum CPU frequency. The actual CPU frequency | ||
264 | * used could end up higher if the DSP requested a higher OPP. | ||
265 | * Intended to be called by plat-omap/cpu_omap.c:omap_target(). No | ||
266 | * return value. | ||
267 | */ | ||
268 | void omap_pm_cpu_set_freq(unsigned long f); | ||
269 | |||
270 | /** | ||
271 | * omap_pm_cpu_get_freq - report the current CPU frequency | ||
272 | * | ||
273 | * Returns the current MPU frequency, or 0 upon error. | ||
274 | */ | ||
275 | unsigned long omap_pm_cpu_get_freq(void); | ||
276 | |||
277 | |||
278 | /* | ||
279 | * Device context loss tracking | ||
280 | */ | ||
281 | |||
282 | /** | ||
283 | * omap_pm_get_dev_context_loss_count - return count of times dev has lost ctx | ||
284 | * @dev: struct device * | ||
285 | * | ||
286 | * This function returns the number of times that the device @dev has | ||
287 | * lost its internal context. This generally occurs on a powerdomain | ||
288 | * transition to OFF. Drivers use this as an optimization to avoid restoring | ||
289 | * context if the device hasn't lost it. To use, drivers should initially | ||
290 | * call this in their context save functions and store the result. Early in | ||
291 | * the driver's context restore function, the driver should call this function | ||
292 | * again, and compare the result to the stored counter. If they differ, the | ||
293 | * driver must restore device context. If the number of context losses | ||
294 | * exceeds the maximum positive integer, the function will wrap to 0 and | ||
295 | * continue counting. Returns the number of context losses for this device, | ||
296 | * or -EINVAL upon error. | ||
297 | */ | ||
298 | int omap_pm_get_dev_context_loss_count(struct device *dev); | ||
299 | |||
300 | |||
301 | #endif | ||
diff --git a/arch/arm/plat-omap/omap-pm-noop.c b/arch/arm/plat-omap/omap-pm-noop.c new file mode 100644 index 000000000000..e98f0a2a6c26 --- /dev/null +++ b/arch/arm/plat-omap/omap-pm-noop.c | |||
@@ -0,0 +1,296 @@ | |||
1 | /* | ||
2 | * omap-pm-noop.c - OMAP power management interface - dummy version | ||
3 | * | ||
4 | * This code implements the OMAP power management interface to | ||
5 | * drivers, CPUIdle, CPUFreq, and DSP Bridge. It is strictly for | ||
6 | * debug/demonstration use, as it does nothing but printk() whenever a | ||
7 | * function is called (when DEBUG is defined, below) | ||
8 | * | ||
9 | * Copyright (C) 2008-2009 Texas Instruments, Inc. | ||
10 | * Copyright (C) 2008-2009 Nokia Corporation | ||
11 | * Paul Walmsley | ||
12 | * | ||
13 | * Interface developed by (in alphabetical order): | ||
14 | * Karthik Dasu, Tony Lindgren, Rajendra Nayak, Sakari Poussa, Veeramanikandan | ||
15 | * Raju, Anand Sawant, Igor Stoppa, Paul Walmsley, Richard Woodruff | ||
16 | */ | ||
17 | |||
18 | #undef DEBUG | ||
19 | |||
20 | #include <linux/init.h> | ||
21 | #include <linux/cpufreq.h> | ||
22 | #include <linux/device.h> | ||
23 | |||
24 | /* Interface documentation is in mach/omap-pm.h */ | ||
25 | #include <mach/omap-pm.h> | ||
26 | |||
27 | #include <mach/powerdomain.h> | ||
28 | |||
29 | struct omap_opp *dsp_opps; | ||
30 | struct omap_opp *mpu_opps; | ||
31 | struct omap_opp *l3_opps; | ||
32 | |||
33 | /* | ||
34 | * Device-driver-originated constraints (via board-*.c files) | ||
35 | */ | ||
36 | |||
37 | void omap_pm_set_max_mpu_wakeup_lat(struct device *dev, long t) | ||
38 | { | ||
39 | if (!dev || t < -1) { | ||
40 | WARN_ON(1); | ||
41 | return; | ||
42 | }; | ||
43 | |||
44 | if (t == -1) | ||
45 | pr_debug("OMAP PM: remove max MPU wakeup latency constraint: " | ||
46 | "dev %s\n", dev_name(dev)); | ||
47 | else | ||
48 | pr_debug("OMAP PM: add max MPU wakeup latency constraint: " | ||
49 | "dev %s, t = %ld usec\n", dev_name(dev), t); | ||
50 | |||
51 | /* | ||
52 | * For current Linux, this needs to map the MPU to a | ||
53 | * powerdomain, then go through the list of current max lat | ||
54 | * constraints on the MPU and find the smallest. If | ||
55 | * the latency constraint has changed, the code should | ||
56 | * recompute the state to enter for the next powerdomain | ||
57 | * state. | ||
58 | * | ||
59 | * TI CDP code can call constraint_set here. | ||
60 | */ | ||
61 | } | ||
62 | |||
63 | void omap_pm_set_min_bus_tput(struct device *dev, u8 agent_id, unsigned long r) | ||
64 | { | ||
65 | if (!dev || (agent_id != OCP_INITIATOR_AGENT && | ||
66 | agent_id != OCP_TARGET_AGENT)) { | ||
67 | WARN_ON(1); | ||
68 | return; | ||
69 | }; | ||
70 | |||
71 | if (r == 0) | ||
72 | pr_debug("OMAP PM: remove min bus tput constraint: " | ||
73 | "dev %s for agent_id %d\n", dev_name(dev), agent_id); | ||
74 | else | ||
75 | pr_debug("OMAP PM: add min bus tput constraint: " | ||
76 | "dev %s for agent_id %d: rate %ld KiB\n", | ||
77 | dev_name(dev), agent_id, r); | ||
78 | |||
79 | /* | ||
80 | * This code should model the interconnect and compute the | ||
81 | * required clock frequency, convert that to a VDD2 OPP ID, then | ||
82 | * set the VDD2 OPP appropriately. | ||
83 | * | ||
84 | * TI CDP code can call constraint_set here on the VDD2 OPP. | ||
85 | */ | ||
86 | } | ||
87 | |||
88 | void omap_pm_set_max_dev_wakeup_lat(struct device *dev, long t) | ||
89 | { | ||
90 | if (!dev || t < -1) { | ||
91 | WARN_ON(1); | ||
92 | return; | ||
93 | }; | ||
94 | |||
95 | if (t == -1) | ||
96 | pr_debug("OMAP PM: remove max device latency constraint: " | ||
97 | "dev %s\n", dev_name(dev)); | ||
98 | else | ||
99 | pr_debug("OMAP PM: add max device latency constraint: " | ||
100 | "dev %s, t = %ld usec\n", dev_name(dev), t); | ||
101 | |||
102 | /* | ||
103 | * For current Linux, this needs to map the device to a | ||
104 | * powerdomain, then go through the list of current max lat | ||
105 | * constraints on that powerdomain and find the smallest. If | ||
106 | * the latency constraint has changed, the code should | ||
107 | * recompute the state to enter for the next powerdomain | ||
108 | * state. Conceivably, this code should also determine | ||
109 | * whether to actually disable the device clocks or not, | ||
110 | * depending on how long it takes to re-enable the clocks. | ||
111 | * | ||
112 | * TI CDP code can call constraint_set here. | ||
113 | */ | ||
114 | } | ||
115 | |||
116 | void omap_pm_set_max_sdma_lat(struct device *dev, long t) | ||
117 | { | ||
118 | if (!dev || t < -1) { | ||
119 | WARN_ON(1); | ||
120 | return; | ||
121 | }; | ||
122 | |||
123 | if (t == -1) | ||
124 | pr_debug("OMAP PM: remove max DMA latency constraint: " | ||
125 | "dev %s\n", dev_name(dev)); | ||
126 | else | ||
127 | pr_debug("OMAP PM: add max DMA latency constraint: " | ||
128 | "dev %s, t = %ld usec\n", dev_name(dev), t); | ||
129 | |||
130 | /* | ||
131 | * For current Linux PM QOS params, this code should scan the | ||
132 | * list of maximum CPU and DMA latencies and select the | ||
133 | * smallest, then set cpu_dma_latency pm_qos_param | ||
134 | * accordingly. | ||
135 | * | ||
136 | * For future Linux PM QOS params, with separate CPU and DMA | ||
137 | * latency params, this code should just set the dma_latency param. | ||
138 | * | ||
139 | * TI CDP code can call constraint_set here. | ||
140 | */ | ||
141 | |||
142 | } | ||
143 | |||
144 | |||
145 | /* | ||
146 | * DSP Bridge-specific constraints | ||
147 | */ | ||
148 | |||
149 | const struct omap_opp *omap_pm_dsp_get_opp_table(void) | ||
150 | { | ||
151 | pr_debug("OMAP PM: DSP request for OPP table\n"); | ||
152 | |||
153 | /* | ||
154 | * Return DSP frequency table here: The final item in the | ||
155 | * array should have .rate = .opp_id = 0. | ||
156 | */ | ||
157 | |||
158 | return NULL; | ||
159 | } | ||
160 | |||
161 | void omap_pm_dsp_set_min_opp(u8 opp_id) | ||
162 | { | ||
163 | if (opp_id == 0) { | ||
164 | WARN_ON(1); | ||
165 | return; | ||
166 | } | ||
167 | |||
168 | pr_debug("OMAP PM: DSP requests minimum VDD1 OPP to be %d\n", opp_id); | ||
169 | |||
170 | /* | ||
171 | * | ||
172 | * For l-o dev tree, our VDD1 clk is keyed on OPP ID, so we | ||
173 | * can just test to see which is higher, the CPU's desired OPP | ||
174 | * ID or the DSP's desired OPP ID, and use whichever is | ||
175 | * highest. | ||
176 | * | ||
177 | * In CDP12.14+, the VDD1 OPP custom clock that controls the DSP | ||
178 | * rate is keyed on MPU speed, not the OPP ID. So we need to | ||
179 | * map the OPP ID to the MPU speed for use with clk_set_rate() | ||
180 | * if it is higher than the current OPP clock rate. | ||
181 | * | ||
182 | */ | ||
183 | } | ||
184 | |||
185 | |||
186 | u8 omap_pm_dsp_get_opp(void) | ||
187 | { | ||
188 | pr_debug("OMAP PM: DSP requests current DSP OPP ID\n"); | ||
189 | |||
190 | /* | ||
191 | * For l-o dev tree, call clk_get_rate() on VDD1 OPP clock | ||
192 | * | ||
193 | * CDP12.14+: | ||
194 | * Call clk_get_rate() on the OPP custom clock, map that to an | ||
195 | * OPP ID using the tables defined in board-*.c/chip-*.c files. | ||
196 | */ | ||
197 | |||
198 | return 0; | ||
199 | } | ||
200 | |||
201 | /* | ||
202 | * CPUFreq-originated constraint | ||
203 | * | ||
204 | * In the future, this should be handled by custom OPP clocktype | ||
205 | * functions. | ||
206 | */ | ||
207 | |||
208 | struct cpufreq_frequency_table **omap_pm_cpu_get_freq_table(void) | ||
209 | { | ||
210 | pr_debug("OMAP PM: CPUFreq request for frequency table\n"); | ||
211 | |||
212 | /* | ||
213 | * Return CPUFreq frequency table here: loop over | ||
214 | * all VDD1 clkrates, pull out the mpu_ck frequencies, build | ||
215 | * table | ||
216 | */ | ||
217 | |||
218 | return NULL; | ||
219 | } | ||
220 | |||
221 | void omap_pm_cpu_set_freq(unsigned long f) | ||
222 | { | ||
223 | if (f == 0) { | ||
224 | WARN_ON(1); | ||
225 | return; | ||
226 | } | ||
227 | |||
228 | pr_debug("OMAP PM: CPUFreq requests CPU frequency to be set to %lu\n", | ||
229 | f); | ||
230 | |||
231 | /* | ||
232 | * For l-o dev tree, determine whether MPU freq or DSP OPP id | ||
233 | * freq is higher. Find the OPP ID corresponding to the | ||
234 | * higher frequency. Call clk_round_rate() and clk_set_rate() | ||
235 | * on the OPP custom clock. | ||
236 | * | ||
237 | * CDP should just be able to set the VDD1 OPP clock rate here. | ||
238 | */ | ||
239 | } | ||
240 | |||
241 | unsigned long omap_pm_cpu_get_freq(void) | ||
242 | { | ||
243 | pr_debug("OMAP PM: CPUFreq requests current CPU frequency\n"); | ||
244 | |||
245 | /* | ||
246 | * Call clk_get_rate() on the mpu_ck. | ||
247 | */ | ||
248 | |||
249 | return 0; | ||
250 | } | ||
251 | |||
252 | /* | ||
253 | * Device context loss tracking | ||
254 | */ | ||
255 | |||
256 | int omap_pm_get_dev_context_loss_count(struct device *dev) | ||
257 | { | ||
258 | if (!dev) { | ||
259 | WARN_ON(1); | ||
260 | return -EINVAL; | ||
261 | }; | ||
262 | |||
263 | pr_debug("OMAP PM: returning context loss count for dev %s\n", | ||
264 | dev_name(dev)); | ||
265 | |||
266 | /* | ||
267 | * Map the device to the powerdomain. Return the powerdomain | ||
268 | * off counter. | ||
269 | */ | ||
270 | |||
271 | return 0; | ||
272 | } | ||
273 | |||
274 | |||
275 | /* Should be called before clk framework init */ | ||
276 | int __init omap_pm_if_early_init(struct omap_opp *mpu_opp_table, | ||
277 | struct omap_opp *dsp_opp_table, | ||
278 | struct omap_opp *l3_opp_table) | ||
279 | { | ||
280 | mpu_opps = mpu_opp_table; | ||
281 | dsp_opps = dsp_opp_table; | ||
282 | l3_opps = l3_opp_table; | ||
283 | return 0; | ||
284 | } | ||
285 | |||
286 | /* Must be called after clock framework is initialized */ | ||
287 | int __init omap_pm_if_init(void) | ||
288 | { | ||
289 | return 0; | ||
290 | } | ||
291 | |||
292 | void omap_pm_if_exit(void) | ||
293 | { | ||
294 | /* Deallocate CPUFreq frequency table here */ | ||
295 | } | ||
296 | |||