blob: a1ee8066958e772a22d6777d637a4c0ee1e0fb44 [file] [log] [blame]
Paul Walmsleyc0407a92009-09-03 20:14:01 +03001/*
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>
Kevin Hilmanc80705a2010-12-21 21:31:55 -070023#include <linux/platform_device.h>
Paul Walmsleyc0407a92009-09-03 20:14:01 +030024
Tony Lindgren6e740f92012-10-29 15:20:45 -070025#include "omap_device.h"
26#include "omap-pm.h"
Paul Walmsleyc0407a92009-09-03 20:14:01 +030027
Kevin Hilman6081dc32010-12-21 21:31:55 -070028static bool off_mode_enabled;
Tomi Valkeinenfc013872011-06-09 16:56:23 +030029static int dummy_context_loss_counter;
Kevin Hilman6081dc32010-12-21 21:31:55 -070030
Paul Walmsleyc0407a92009-09-03 20:14:01 +030031/*
32 * Device-driver-originated constraints (via board-*.c files)
33 */
34
Paul Walmsley564889c2010-07-26 16:34:34 -060035int omap_pm_set_max_mpu_wakeup_lat(struct device *dev, long t)
Paul Walmsleyc0407a92009-09-03 20:14:01 +030036{
37 if (!dev || t < -1) {
Paul Walmsley564889c2010-07-26 16:34:34 -060038 WARN(1, "OMAP PM: %s: invalid parameter(s)", __func__);
39 return -EINVAL;
Peter Senna Tschudin59c27952012-09-18 18:36:13 +020040 }
Paul Walmsleyc0407a92009-09-03 20:14:01 +030041
42 if (t == -1)
Paul Walmsley7852ec02012-07-26 00:54:26 -060043 pr_debug("OMAP PM: remove max MPU wakeup latency constraint: dev %s\n",
44 dev_name(dev));
Paul Walmsleyc0407a92009-09-03 20:14:01 +030045 else
Paul Walmsley7852ec02012-07-26 00:54:26 -060046 pr_debug("OMAP PM: add max MPU wakeup latency constraint: dev %s, t = %ld usec\n",
47 dev_name(dev), t);
Paul Walmsleyc0407a92009-09-03 20:14:01 +030048
49 /*
50 * For current Linux, this needs to map the MPU to a
51 * powerdomain, then go through the list of current max lat
52 * constraints on the MPU and find the smallest. If
53 * the latency constraint has changed, the code should
54 * recompute the state to enter for the next powerdomain
55 * state.
56 *
57 * TI CDP code can call constraint_set here.
58 */
Paul Walmsley564889c2010-07-26 16:34:34 -060059
60 return 0;
Paul Walmsleyc0407a92009-09-03 20:14:01 +030061}
62
Paul Walmsley564889c2010-07-26 16:34:34 -060063int omap_pm_set_min_bus_tput(struct device *dev, u8 agent_id, unsigned long r)
Paul Walmsleyc0407a92009-09-03 20:14:01 +030064{
65 if (!dev || (agent_id != OCP_INITIATOR_AGENT &&
66 agent_id != OCP_TARGET_AGENT)) {
Paul Walmsley564889c2010-07-26 16:34:34 -060067 WARN(1, "OMAP PM: %s: invalid parameter(s)", __func__);
68 return -EINVAL;
Peter Senna Tschudin59c27952012-09-18 18:36:13 +020069 }
Paul Walmsleyc0407a92009-09-03 20:14:01 +030070
71 if (r == 0)
Paul Walmsley7852ec02012-07-26 00:54:26 -060072 pr_debug("OMAP PM: remove min bus tput constraint: dev %s for agent_id %d\n",
73 dev_name(dev), agent_id);
Paul Walmsleyc0407a92009-09-03 20:14:01 +030074 else
Paul Walmsley7852ec02012-07-26 00:54:26 -060075 pr_debug("OMAP PM: add min bus tput constraint: dev %s for agent_id %d: rate %ld KiB\n",
Paul Walmsleyc0407a92009-09-03 20:14:01 +030076 dev_name(dev), agent_id, r);
77
78 /*
79 * This code should model the interconnect and compute the
80 * required clock frequency, convert that to a VDD2 OPP ID, then
81 * set the VDD2 OPP appropriately.
82 *
83 * TI CDP code can call constraint_set here on the VDD2 OPP.
84 */
Paul Walmsley564889c2010-07-26 16:34:34 -060085
86 return 0;
Paul Walmsleyc0407a92009-09-03 20:14:01 +030087}
88
Paul Walmsleyc0407a92009-09-03 20:14:01 +030089/*
90 * DSP Bridge-specific constraints
91 */
92
Paul Walmsleyc0407a92009-09-03 20:14:01 +030093
Kevin Hilman6081dc32010-12-21 21:31:55 -070094/**
95 * omap_pm_enable_off_mode - notify OMAP PM that off-mode is enabled
96 *
97 * Intended for use only by OMAP PM core code to notify this layer
98 * that off mode has been enabled.
99 */
100void omap_pm_enable_off_mode(void)
101{
102 off_mode_enabled = true;
103}
104
105/**
106 * omap_pm_disable_off_mode - notify OMAP PM that off-mode is disabled
107 *
108 * Intended for use only by OMAP PM core code to notify this layer
109 * that off mode has been disabled.
110 */
111void omap_pm_disable_off_mode(void)
112{
113 off_mode_enabled = false;
114}
115
Paul Walmsleyc0407a92009-09-03 20:14:01 +0300116/*
117 * Device context loss tracking
118 */
119
Kevin Hilman6081dc32010-12-21 21:31:55 -0700120#ifdef CONFIG_ARCH_OMAP2PLUS
121
Tomi Valkeinenfc013872011-06-09 16:56:23 +0300122int omap_pm_get_dev_context_loss_count(struct device *dev)
Paul Walmsleyc0407a92009-09-03 20:14:01 +0300123{
Kevin Hilmanc80705a2010-12-21 21:31:55 -0700124 struct platform_device *pdev = to_platform_device(dev);
Tomi Valkeinenfc013872011-06-09 16:56:23 +0300125 int count;
Paul Walmsleyc0407a92009-09-03 20:14:01 +0300126
Kevin Hilmanc80705a2010-12-21 21:31:55 -0700127 if (WARN_ON(!dev))
Tomi Valkeinenfc013872011-06-09 16:56:23 +0300128 return -ENODEV;
Paul Walmsleyc0407a92009-09-03 20:14:01 +0300129
Kevin Hilman3ec2dec2012-02-15 11:47:45 -0800130 if (dev->pm_domain == &omap_device_pm_domain) {
Kevin Hilman6081dc32010-12-21 21:31:55 -0700131 count = omap_device_get_context_loss_count(pdev);
132 } else {
133 WARN_ONCE(off_mode_enabled, "omap_pm: using dummy context loss counter; device %s should be converted to omap_device",
134 dev_name(dev));
Tomi Valkeinenfc013872011-06-09 16:56:23 +0300135
Kevin Hilman6081dc32010-12-21 21:31:55 -0700136 count = dummy_context_loss_counter;
Tomi Valkeinenfc013872011-06-09 16:56:23 +0300137
138 if (off_mode_enabled) {
139 count++;
140 /*
141 * Context loss count has to be a non-negative value.
142 * Clear the sign bit to get a value range from 0 to
143 * INT_MAX.
144 */
145 count &= INT_MAX;
146 dummy_context_loss_counter = count;
147 }
Kevin Hilman6081dc32010-12-21 21:31:55 -0700148 }
149
Kevin Hilmanc80705a2010-12-21 21:31:55 -0700150 pr_debug("OMAP PM: context loss count for dev %s = %d\n",
151 dev_name(dev), count);
Paul Walmsleyc0407a92009-09-03 20:14:01 +0300152
Kevin Hilmanc80705a2010-12-21 21:31:55 -0700153 return count;
Paul Walmsleyc0407a92009-09-03 20:14:01 +0300154}
155
Kevin Hilman6081dc32010-12-21 21:31:55 -0700156#else
157
Tomi Valkeinenfc013872011-06-09 16:56:23 +0300158int omap_pm_get_dev_context_loss_count(struct device *dev)
Kevin Hilman6081dc32010-12-21 21:31:55 -0700159{
160 return dummy_context_loss_counter;
161}
162
163#endif
Paul Walmsleyc0407a92009-09-03 20:14:01 +0300164
165/* Should be called before clk framework init */
Kevin Hilman53da4ce2010-12-09 09:13:48 -0600166int __init omap_pm_if_early_init(void)
Paul Walmsleyc0407a92009-09-03 20:14:01 +0300167{
Paul Walmsleyc0407a92009-09-03 20:14:01 +0300168 return 0;
169}
170
171/* Must be called after clock framework is initialized */
172int __init omap_pm_if_init(void)
173{
174 return 0;
175}