2 * omap-pm-noop.c - OMAP power management interface - dummy version
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)
9 * Copyright (C) 2008-2009 Texas Instruments, Inc.
10 * Copyright (C) 2008-2009 Nokia Corporation
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
20 #include <linux/init.h>
21 #include <linux/cpufreq.h>
22 #include <linux/device.h>
24 /* Interface documentation is in mach/omap-pm.h */
25 #include <plat/omap-pm.h>
27 #include <plat/powerdomain.h>
29 struct omap_opp
*dsp_opps
;
30 struct omap_opp
*mpu_opps
;
31 struct omap_opp
*l3_opps
;
34 * Device-driver-originated constraints (via board-*.c files)
37 void omap_pm_set_max_mpu_wakeup_lat(struct device
*dev
, long t
)
45 pr_debug("OMAP PM: remove max MPU wakeup latency constraint: "
46 "dev %s\n", dev_name(dev
));
48 pr_debug("OMAP PM: add max MPU wakeup latency constraint: "
49 "dev %s, t = %ld usec\n", dev_name(dev
), t
);
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
59 * TI CDP code can call constraint_set here.
63 void omap_pm_set_min_bus_tput(struct device
*dev
, u8 agent_id
, unsigned long r
)
65 if (!dev
|| (agent_id
!= OCP_INITIATOR_AGENT
&&
66 agent_id
!= OCP_TARGET_AGENT
)) {
72 pr_debug("OMAP PM: remove min bus tput constraint: "
73 "dev %s for agent_id %d\n", dev_name(dev
), agent_id
);
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
);
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.
84 * TI CDP code can call constraint_set here on the VDD2 OPP.
88 void omap_pm_set_max_dev_wakeup_lat(struct device
*dev
, long t
)
96 pr_debug("OMAP PM: remove max device latency constraint: "
97 "dev %s\n", dev_name(dev
));
99 pr_debug("OMAP PM: add max device latency constraint: "
100 "dev %s, t = %ld usec\n", dev_name(dev
), t
);
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.
112 * TI CDP code can call constraint_set here.
116 void omap_pm_set_max_sdma_lat(struct device
*dev
, long t
)
118 if (!dev
|| t
< -1) {
124 pr_debug("OMAP PM: remove max DMA latency constraint: "
125 "dev %s\n", dev_name(dev
));
127 pr_debug("OMAP PM: add max DMA latency constraint: "
128 "dev %s, t = %ld usec\n", dev_name(dev
), t
);
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
136 * For future Linux PM QOS params, with separate CPU and DMA
137 * latency params, this code should just set the dma_latency param.
139 * TI CDP code can call constraint_set here.
146 * DSP Bridge-specific constraints
149 const struct omap_opp
*omap_pm_dsp_get_opp_table(void)
151 pr_debug("OMAP PM: DSP request for OPP table\n");
154 * Return DSP frequency table here: The final item in the
155 * array should have .rate = .opp_id = 0.
161 void omap_pm_dsp_set_min_opp(u8 opp_id
)
168 pr_debug("OMAP PM: DSP requests minimum VDD1 OPP to be %d\n", opp_id
);
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
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.
186 u8
omap_pm_dsp_get_opp(void)
188 pr_debug("OMAP PM: DSP requests current DSP OPP ID\n");
191 * For l-o dev tree, call clk_get_rate() on VDD1 OPP clock
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.
202 * CPUFreq-originated constraint
204 * In the future, this should be handled by custom OPP clocktype
208 struct cpufreq_frequency_table
**omap_pm_cpu_get_freq_table(void)
210 pr_debug("OMAP PM: CPUFreq request for frequency table\n");
213 * Return CPUFreq frequency table here: loop over
214 * all VDD1 clkrates, pull out the mpu_ck frequencies, build
221 void omap_pm_cpu_set_freq(unsigned long f
)
228 pr_debug("OMAP PM: CPUFreq requests CPU frequency to be set to %lu\n",
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.
237 * CDP should just be able to set the VDD1 OPP clock rate here.
241 unsigned long omap_pm_cpu_get_freq(void)
243 pr_debug("OMAP PM: CPUFreq requests current CPU frequency\n");
246 * Call clk_get_rate() on the mpu_ck.
253 * Device context loss tracking
256 int omap_pm_get_dev_context_loss_count(struct device
*dev
)
263 pr_debug("OMAP PM: returning context loss count for dev %s\n",
267 * Map the device to the powerdomain. Return the powerdomain
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
)
280 mpu_opps
= mpu_opp_table
;
281 dsp_opps
= dsp_opp_table
;
282 l3_opps
= l3_opp_table
;
286 /* Must be called after clock framework is initialized */
287 int __init
omap_pm_if_init(void)
292 void omap_pm_if_exit(void)
294 /* Deallocate CPUFreq frequency table here */