blob: 334bfd27f5301618617a03cc5b64e7fa6a2f1a7f [file] [log] [blame]
Paul Walmsleyb04b65a2009-09-03 20:14:05 +03001/*
2 * omap_device implementation
3 *
Paul Walmsley887adea2010-07-26 16:34:33 -06004 * Copyright (C) 2009-2010 Nokia Corporation
Paul Walmsley4788da22010-05-18 20:24:05 -06005 * Paul Walmsley, Kevin Hilman
Paul Walmsleyb04b65a2009-09-03 20:14:05 +03006 *
7 * Developed in collaboration with (alphabetical order): Benoit
Paul Walmsley4788da22010-05-18 20:24:05 -06008 * Cousson, Thara Gopinath, Tony Lindgren, Rajendra Nayak, Vikram
Paul Walmsleyb04b65a2009-09-03 20:14:05 +03009 * Pandita, Sakari Poussa, Anand Sawant, Santosh Shilimkar, Richard
10 * Woodruff
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 *
16 * This code provides a consistent interface for OMAP device drivers
17 * to control power management and interconnect properties of their
18 * devices.
19 *
20 * In the medium- to long-term, this code should either be
21 * a) implemented via arch-specific pointers in platform_data
22 * or
23 * b) implemented as a proper omap_bus/omap_device in Linux, no more
24 * platform_data func pointers
25 *
26 *
27 * Guidelines for usage by driver authors:
28 *
29 * 1. These functions are intended to be used by device drivers via
30 * function pointers in struct platform_data. As an example,
31 * omap_device_enable() should be passed to the driver as
32 *
33 * struct foo_driver_platform_data {
34 * ...
35 * int (*device_enable)(struct platform_device *pdev);
36 * ...
37 * }
38 *
39 * Note that the generic "device_enable" name is used, rather than
40 * "omap_device_enable". This is so other architectures can pass in their
41 * own enable/disable functions here.
42 *
43 * This should be populated during device setup:
44 *
45 * ...
46 * pdata->device_enable = omap_device_enable;
47 * ...
48 *
49 * 2. Drivers should first check to ensure the function pointer is not null
50 * before calling it, as in:
51 *
52 * if (pdata->device_enable)
53 * pdata->device_enable(pdev);
54 *
55 * This allows other architectures that don't use similar device_enable()/
56 * device_shutdown() functions to execute normally.
57 *
58 * ...
59 *
60 * Suggested usage by device drivers:
61 *
62 * During device initialization:
63 * device_enable()
64 *
65 * During device idle:
66 * (save remaining device context if necessary)
67 * device_idle();
68 *
69 * During device resume:
70 * device_enable();
71 * (restore context if necessary)
72 *
73 * During device shutdown:
74 * device_shutdown()
75 * (device must be reinitialized at this point to use it again)
76 *
77 */
78#undef DEBUG
79
80#include <linux/kernel.h>
81#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090082#include <linux/slab.h>
Paul Walmsleyb04b65a2009-09-03 20:14:05 +030083#include <linux/err.h>
84#include <linux/io.h>
Partha Basak4ef7aca2010-09-21 19:23:04 +020085#include <linux/clk.h>
Rajendra Nayakda0653f2011-02-25 15:40:21 -070086#include <linux/clkdev.h>
Kevin Hilman345f79b2011-05-31 16:08:09 -070087#include <linux/pm_runtime.h>
Paul Walmsleyb04b65a2009-09-03 20:14:05 +030088
Tony Lindgrence491cf2009-10-20 09:40:47 -070089#include <plat/omap_device.h>
90#include <plat/omap_hwmod.h>
Rajendra Nayakda0653f2011-02-25 15:40:21 -070091#include <plat/clock.h>
Paul Walmsleyb04b65a2009-09-03 20:14:05 +030092
93/* These parameters are passed to _omap_device_{de,}activate() */
94#define USE_WAKEUP_LAT 0
95#define IGNORE_WAKEUP_LAT 1
96
Paul Walmsleyb04b65a2009-09-03 20:14:05 +030097/* Private functions */
98
99/**
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300100 * _omap_device_activate - increase device readiness
101 * @od: struct omap_device *
102 * @ignore_lat: increase to latency target (0) or full readiness (1)?
103 *
104 * Increase readiness of omap_device @od (thus decreasing device
105 * wakeup latency, but consuming more power). If @ignore_lat is
106 * IGNORE_WAKEUP_LAT, make the omap_device fully active. Otherwise,
107 * if @ignore_lat is USE_WAKEUP_LAT, and the device's maximum wakeup
108 * latency is greater than the requested maximum wakeup latency, step
109 * backwards in the omap_device_pm_latency table to ensure the
110 * device's maximum wakeup latency is less than or equal to the
111 * requested maximum wakeup latency. Returns 0.
112 */
113static int _omap_device_activate(struct omap_device *od, u8 ignore_lat)
114{
Tony Lindgrenf0594292009-10-19 15:25:24 -0700115 struct timespec a, b, c;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300116
Kevin Hilman49882c92011-07-21 09:58:36 -0700117 dev_dbg(&od->pdev.dev, "omap_device: activating\n");
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300118
119 while (od->pm_lat_level > 0) {
120 struct omap_device_pm_latency *odpl;
Tony Lindgrenf0594292009-10-19 15:25:24 -0700121 unsigned long long act_lat = 0;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300122
123 od->pm_lat_level--;
124
125 odpl = od->pm_lats + od->pm_lat_level;
126
127 if (!ignore_lat &&
128 (od->dev_wakeup_lat <= od->_dev_wakeup_lat_limit))
129 break;
130
Kevin Hilmand2292662009-12-08 16:34:23 -0700131 read_persistent_clock(&a);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300132
133 /* XXX check return code */
134 odpl->activate_func(od);
135
Kevin Hilmand2292662009-12-08 16:34:23 -0700136 read_persistent_clock(&b);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300137
Tony Lindgrenf0594292009-10-19 15:25:24 -0700138 c = timespec_sub(b, a);
Kevin Hilman0d93d8b2009-12-08 16:34:26 -0700139 act_lat = timespec_to_ns(&c);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300140
Kevin Hilman49882c92011-07-21 09:58:36 -0700141 dev_dbg(&od->pdev.dev,
142 "omap_device: pm_lat %d: activate: elapsed time "
143 "%llu nsec\n", od->pm_lat_level, act_lat);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300144
Kevin Hilman9799aca2010-01-26 20:13:02 -0700145 if (act_lat > odpl->activate_lat) {
146 odpl->activate_lat_worst = act_lat;
147 if (odpl->flags & OMAP_DEVICE_LATENCY_AUTO_ADJUST) {
148 odpl->activate_lat = act_lat;
Kevin Hilman49882c92011-07-21 09:58:36 -0700149 dev_warn(&od->pdev.dev,
150 "new worst case activate latency "
151 "%d: %llu\n",
152 od->pm_lat_level, act_lat);
Kevin Hilman9799aca2010-01-26 20:13:02 -0700153 } else
Kevin Hilman49882c92011-07-21 09:58:36 -0700154 dev_warn(&od->pdev.dev,
155 "activate latency %d "
156 "higher than exptected. (%llu > %d)\n",
157 od->pm_lat_level, act_lat,
158 odpl->activate_lat);
Kevin Hilman9799aca2010-01-26 20:13:02 -0700159 }
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300160
161 od->dev_wakeup_lat -= odpl->activate_lat;
162 }
163
164 return 0;
165}
166
167/**
168 * _omap_device_deactivate - decrease device readiness
169 * @od: struct omap_device *
170 * @ignore_lat: decrease to latency target (0) or full inactivity (1)?
171 *
172 * Decrease readiness of omap_device @od (thus increasing device
173 * wakeup latency, but conserving power). If @ignore_lat is
174 * IGNORE_WAKEUP_LAT, make the omap_device fully inactive. Otherwise,
175 * if @ignore_lat is USE_WAKEUP_LAT, and the device's maximum wakeup
176 * latency is less than the requested maximum wakeup latency, step
177 * forwards in the omap_device_pm_latency table to ensure the device's
178 * maximum wakeup latency is less than or equal to the requested
179 * maximum wakeup latency. Returns 0.
180 */
181static int _omap_device_deactivate(struct omap_device *od, u8 ignore_lat)
182{
Tony Lindgrenf0594292009-10-19 15:25:24 -0700183 struct timespec a, b, c;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300184
Kevin Hilman49882c92011-07-21 09:58:36 -0700185 dev_dbg(&od->pdev.dev, "omap_device: deactivating\n");
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300186
187 while (od->pm_lat_level < od->pm_lats_cnt) {
188 struct omap_device_pm_latency *odpl;
Tony Lindgrenf0594292009-10-19 15:25:24 -0700189 unsigned long long deact_lat = 0;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300190
191 odpl = od->pm_lats + od->pm_lat_level;
192
193 if (!ignore_lat &&
194 ((od->dev_wakeup_lat + odpl->activate_lat) >
195 od->_dev_wakeup_lat_limit))
196 break;
197
Kevin Hilmand2292662009-12-08 16:34:23 -0700198 read_persistent_clock(&a);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300199
200 /* XXX check return code */
201 odpl->deactivate_func(od);
202
Kevin Hilmand2292662009-12-08 16:34:23 -0700203 read_persistent_clock(&b);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300204
Tony Lindgrenf0594292009-10-19 15:25:24 -0700205 c = timespec_sub(b, a);
Kevin Hilman0d93d8b2009-12-08 16:34:26 -0700206 deact_lat = timespec_to_ns(&c);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300207
Kevin Hilman49882c92011-07-21 09:58:36 -0700208 dev_dbg(&od->pdev.dev,
209 "omap_device: pm_lat %d: deactivate: elapsed time "
210 "%llu nsec\n", od->pm_lat_level, deact_lat);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300211
Kevin Hilman9799aca2010-01-26 20:13:02 -0700212 if (deact_lat > odpl->deactivate_lat) {
213 odpl->deactivate_lat_worst = deact_lat;
214 if (odpl->flags & OMAP_DEVICE_LATENCY_AUTO_ADJUST) {
215 odpl->deactivate_lat = deact_lat;
Kevin Hilman49882c92011-07-21 09:58:36 -0700216 dev_warn(&od->pdev.dev,
217 "new worst case deactivate latency "
218 "%d: %llu\n",
219 od->pm_lat_level, deact_lat);
Kevin Hilman9799aca2010-01-26 20:13:02 -0700220 } else
Kevin Hilman49882c92011-07-21 09:58:36 -0700221 dev_warn(&od->pdev.dev,
222 "deactivate latency %d "
223 "higher than exptected. (%llu > %d)\n",
224 od->pm_lat_level, deact_lat,
225 odpl->deactivate_lat);
Kevin Hilman9799aca2010-01-26 20:13:02 -0700226 }
227
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300228 od->dev_wakeup_lat += odpl->activate_lat;
229
230 od->pm_lat_level++;
231 }
232
233 return 0;
234}
235
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600236static void _add_clkdev(struct omap_device *od, const char *clk_alias,
237 const char *clk_name)
238{
239 struct clk *r;
240 struct clk_lookup *l;
241
242 if (!clk_alias || !clk_name)
243 return;
244
Kevin Hilman49882c92011-07-21 09:58:36 -0700245 dev_dbg(&od->pdev.dev, "Creating %s -> %s\n", clk_alias, clk_name);
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600246
247 r = clk_get_sys(dev_name(&od->pdev.dev), clk_alias);
248 if (!IS_ERR(r)) {
Kevin Hilman49882c92011-07-21 09:58:36 -0700249 dev_warn(&od->pdev.dev,
250 "alias %s already exists\n", clk_alias);
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600251 clk_put(r);
252 return;
253 }
254
255 r = omap_clk_get_by_name(clk_name);
256 if (IS_ERR(r)) {
Kevin Hilman49882c92011-07-21 09:58:36 -0700257 dev_err(&od->pdev.dev,
258 "omap_clk_get_by_name for %s failed\n", clk_name);
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600259 return;
260 }
261
262 l = clkdev_alloc(r, clk_alias, dev_name(&od->pdev.dev));
263 if (!l) {
Kevin Hilman49882c92011-07-21 09:58:36 -0700264 dev_err(&od->pdev.dev,
265 "clkdev_alloc for %s failed\n", clk_alias);
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600266 return;
267 }
268
269 clkdev_add(l);
270}
271
Partha Basak4ef7aca2010-09-21 19:23:04 +0200272/**
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600273 * _add_hwmod_clocks_clkdev - Add clkdev entry for hwmod optional clocks
274 * and main clock
Partha Basak4ef7aca2010-09-21 19:23:04 +0200275 * @od: struct omap_device *od
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600276 * @oh: struct omap_hwmod *oh
Partha Basak4ef7aca2010-09-21 19:23:04 +0200277 *
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600278 * For the main clock and every optional clock present per hwmod per
279 * omap_device, this function adds an entry in the clkdev table of the
280 * form <dev-id=dev_name, con-id=role> if it does not exist already.
Partha Basak4ef7aca2010-09-21 19:23:04 +0200281 *
282 * The function is called from inside omap_device_build_ss(), after
283 * omap_device_register.
284 *
285 * This allows drivers to get a pointer to its optional clocks based on its role
286 * by calling clk_get(<dev*>, <role>).
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600287 * In the case of the main clock, a "fck" alias is used.
Partha Basak4ef7aca2010-09-21 19:23:04 +0200288 *
289 * No return value.
290 */
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600291static void _add_hwmod_clocks_clkdev(struct omap_device *od,
292 struct omap_hwmod *oh)
Partha Basak4ef7aca2010-09-21 19:23:04 +0200293{
294 int i;
295
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600296 _add_clkdev(od, "fck", oh->main_clk);
Partha Basak4ef7aca2010-09-21 19:23:04 +0200297
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600298 for (i = 0; i < oh->opt_clks_cnt; i++)
299 _add_clkdev(od, oh->opt_clks[i].role, oh->opt_clks[i].clk);
Partha Basak4ef7aca2010-09-21 19:23:04 +0200300}
301
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300302
303/* Public functions for use by core code */
304
305/**
Kevin Hilmanc80705a2010-12-21 21:31:55 -0700306 * omap_device_get_context_loss_count - get lost context count
307 * @od: struct omap_device *
308 *
309 * Using the primary hwmod, query the context loss count for this
310 * device.
311 *
312 * Callers should consider context for this device lost any time this
313 * function returns a value different than the value the caller got
314 * the last time it called this function.
315 *
316 * If any hwmods exist for the omap_device assoiated with @pdev,
317 * return the context loss counter for that hwmod, otherwise return
318 * zero.
319 */
320u32 omap_device_get_context_loss_count(struct platform_device *pdev)
321{
322 struct omap_device *od;
323 u32 ret = 0;
324
Kevin Hilman8f0d69d2011-07-09 19:15:20 -0600325 od = to_omap_device(pdev);
Kevin Hilmanc80705a2010-12-21 21:31:55 -0700326
327 if (od->hwmods_cnt)
328 ret = omap_hwmod_get_context_loss_count(od->hwmods[0]);
329
330 return ret;
331}
332
333/**
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300334 * omap_device_count_resources - count number of struct resource entries needed
335 * @od: struct omap_device *
336 *
337 * Count the number of struct resource entries needed for this
338 * omap_device @od. Used by omap_device_build_ss() to determine how
339 * much memory to allocate before calling
340 * omap_device_fill_resources(). Returns the count.
341 */
342int omap_device_count_resources(struct omap_device *od)
343{
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300344 int c = 0;
345 int i;
346
Kishon Vijay Abraham If39f4892010-09-24 10:23:18 -0600347 for (i = 0; i < od->hwmods_cnt; i++)
348 c += omap_hwmod_count_resources(od->hwmods[i]);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300349
350 pr_debug("omap_device: %s: counted %d total resources across %d "
351 "hwmods\n", od->pdev.name, c, od->hwmods_cnt);
352
353 return c;
354}
355
356/**
357 * omap_device_fill_resources - fill in array of struct resource
358 * @od: struct omap_device *
359 * @res: pointer to an array of struct resource to be filled in
360 *
361 * Populate one or more empty struct resource pointed to by @res with
362 * the resource data for this omap_device @od. Used by
363 * omap_device_build_ss() after calling omap_device_count_resources().
364 * Ideally this function would not be needed at all. If omap_device
365 * replaces platform_device, then we can specify our own
366 * get_resource()/ get_irq()/etc functions that use the underlying
367 * omap_hwmod information. Or if platform_device is extended to use
368 * subarchitecture-specific function pointers, the various
369 * platform_device functions can simply call omap_device internal
370 * functions to get device resources. Hacking around the existing
371 * platform_device code wastes memory. Returns 0.
372 */
373int omap_device_fill_resources(struct omap_device *od, struct resource *res)
374{
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300375 int c = 0;
376 int i, r;
377
Kishon Vijay Abraham If39f4892010-09-24 10:23:18 -0600378 for (i = 0; i < od->hwmods_cnt; i++) {
379 r = omap_hwmod_fill_resources(od->hwmods[i], res);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300380 res += r;
381 c += r;
382 }
383
384 return 0;
385}
386
387/**
388 * omap_device_build - build and register an omap_device with one omap_hwmod
389 * @pdev_name: name of the platform_device driver to use
390 * @pdev_id: this platform_device's connection ID
391 * @oh: ptr to the single omap_hwmod that backs this omap_device
392 * @pdata: platform_data ptr to associate with the platform_device
393 * @pdata_len: amount of memory pointed to by @pdata
394 * @pm_lats: pointer to a omap_device_pm_latency array for this device
395 * @pm_lats_cnt: ARRAY_SIZE() of @pm_lats
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700396 * @is_early_device: should the device be registered as an early device or not
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300397 *
398 * Convenience function for building and registering a single
399 * omap_device record, which in turn builds and registers a
400 * platform_device record. See omap_device_build_ss() for more
401 * information. Returns ERR_PTR(-EINVAL) if @oh is NULL; otherwise,
402 * passes along the return value of omap_device_build_ss().
403 */
404struct omap_device *omap_device_build(const char *pdev_name, int pdev_id,
405 struct omap_hwmod *oh, void *pdata,
406 int pdata_len,
407 struct omap_device_pm_latency *pm_lats,
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700408 int pm_lats_cnt, int is_early_device)
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300409{
410 struct omap_hwmod *ohs[] = { oh };
411
412 if (!oh)
413 return ERR_PTR(-EINVAL);
414
415 return omap_device_build_ss(pdev_name, pdev_id, ohs, 1, pdata,
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700416 pdata_len, pm_lats, pm_lats_cnt,
417 is_early_device);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300418}
419
420/**
421 * omap_device_build_ss - build and register an omap_device with multiple hwmods
422 * @pdev_name: name of the platform_device driver to use
423 * @pdev_id: this platform_device's connection ID
424 * @oh: ptr to the single omap_hwmod that backs this omap_device
425 * @pdata: platform_data ptr to associate with the platform_device
426 * @pdata_len: amount of memory pointed to by @pdata
427 * @pm_lats: pointer to a omap_device_pm_latency array for this device
428 * @pm_lats_cnt: ARRAY_SIZE() of @pm_lats
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700429 * @is_early_device: should the device be registered as an early device or not
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300430 *
431 * Convenience function for building and registering an omap_device
432 * subsystem record. Subsystem records consist of multiple
433 * omap_hwmods. This function in turn builds and registers a
434 * platform_device record. Returns an ERR_PTR() on error, or passes
435 * along the return value of omap_device_register().
436 */
437struct omap_device *omap_device_build_ss(const char *pdev_name, int pdev_id,
438 struct omap_hwmod **ohs, int oh_cnt,
439 void *pdata, int pdata_len,
440 struct omap_device_pm_latency *pm_lats,
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700441 int pm_lats_cnt, int is_early_device)
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300442{
443 int ret = -ENOMEM;
444 struct omap_device *od;
445 char *pdev_name2;
446 struct resource *res = NULL;
Kevin Hilman06563582010-07-26 16:34:30 -0600447 int i, res_count;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300448 struct omap_hwmod **hwmods;
449
450 if (!ohs || oh_cnt == 0 || !pdev_name)
451 return ERR_PTR(-EINVAL);
452
453 if (!pdata && pdata_len > 0)
454 return ERR_PTR(-EINVAL);
455
456 pr_debug("omap_device: %s: building with %d hwmods\n", pdev_name,
457 oh_cnt);
458
459 od = kzalloc(sizeof(struct omap_device), GFP_KERNEL);
460 if (!od)
461 return ERR_PTR(-ENOMEM);
462
463 od->hwmods_cnt = oh_cnt;
464
465 hwmods = kzalloc(sizeof(struct omap_hwmod *) * oh_cnt,
466 GFP_KERNEL);
467 if (!hwmods)
468 goto odbs_exit1;
469
470 memcpy(hwmods, ohs, sizeof(struct omap_hwmod *) * oh_cnt);
471 od->hwmods = hwmods;
472
473 pdev_name2 = kzalloc(strlen(pdev_name) + 1, GFP_KERNEL);
474 if (!pdev_name2)
475 goto odbs_exit2;
476 strcpy(pdev_name2, pdev_name);
477
478 od->pdev.name = pdev_name2;
479 od->pdev.id = pdev_id;
480
481 res_count = omap_device_count_resources(od);
482 if (res_count > 0) {
483 res = kzalloc(sizeof(struct resource) * res_count, GFP_KERNEL);
484 if (!res)
485 goto odbs_exit3;
486 }
487 omap_device_fill_resources(od, res);
488
489 od->pdev.num_resources = res_count;
490 od->pdev.resource = res;
491
Artem Bityutskiy49b368a2010-07-12 13:38:07 +0000492 ret = platform_device_add_data(&od->pdev, pdata, pdata_len);
493 if (ret)
494 goto odbs_exit4;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300495
496 od->pm_lats = pm_lats;
497 od->pm_lats_cnt = pm_lats_cnt;
498
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700499 if (is_early_device)
500 ret = omap_early_device_register(od);
501 else
502 ret = omap_device_register(od);
503
Partha Basak4ef7aca2010-09-21 19:23:04 +0200504 for (i = 0; i < oh_cnt; i++) {
Kevin Hilman06563582010-07-26 16:34:30 -0600505 hwmods[i]->od = od;
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600506 _add_hwmod_clocks_clkdev(od, hwmods[i]);
Partha Basak4ef7aca2010-09-21 19:23:04 +0200507 }
Kevin Hilman06563582010-07-26 16:34:30 -0600508
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300509 if (ret)
510 goto odbs_exit4;
511
512 return od;
513
514odbs_exit4:
515 kfree(res);
516odbs_exit3:
517 kfree(pdev_name2);
518odbs_exit2:
519 kfree(hwmods);
520odbs_exit1:
521 kfree(od);
522
523 pr_err("omap_device: %s: build failed (%d)\n", pdev_name, ret);
524
525 return ERR_PTR(ret);
526}
527
528/**
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700529 * omap_early_device_register - register an omap_device as an early platform
530 * device.
531 * @od: struct omap_device * to register
532 *
533 * Register the omap_device structure. This currently just calls
534 * platform_early_add_device() on the underlying platform_device.
535 * Returns 0 by default.
536 */
537int omap_early_device_register(struct omap_device *od)
538{
539 struct platform_device *devices[1];
540
541 devices[0] = &(od->pdev);
542 early_platform_add_devices(devices, 1);
543 return 0;
544}
545
Kevin Hilman256a5432011-07-12 22:48:03 +0200546#ifdef CONFIG_PM_RUNTIME
Kevin Hilman638080c2011-04-29 00:36:42 +0200547static int _od_runtime_suspend(struct device *dev)
548{
549 struct platform_device *pdev = to_platform_device(dev);
Kevin Hilman345f79b2011-05-31 16:08:09 -0700550 int ret;
Kevin Hilman638080c2011-04-29 00:36:42 +0200551
Kevin Hilman345f79b2011-05-31 16:08:09 -0700552 ret = pm_generic_runtime_suspend(dev);
553
554 if (!ret)
555 omap_device_idle(pdev);
556
557 return ret;
558}
559
560static int _od_runtime_idle(struct device *dev)
561{
562 return pm_generic_runtime_idle(dev);
Kevin Hilman638080c2011-04-29 00:36:42 +0200563}
564
565static int _od_runtime_resume(struct device *dev)
566{
567 struct platform_device *pdev = to_platform_device(dev);
568
Kevin Hilman345f79b2011-05-31 16:08:09 -0700569 omap_device_enable(pdev);
570
571 return pm_generic_runtime_resume(dev);
Kevin Hilman638080c2011-04-29 00:36:42 +0200572}
Kevin Hilman256a5432011-07-12 22:48:03 +0200573#endif
Kevin Hilman638080c2011-04-29 00:36:42 +0200574
Kevin Hilmanc03f0072011-07-12 22:48:19 +0200575#ifdef CONFIG_SUSPEND
576static int _od_suspend_noirq(struct device *dev)
577{
578 struct platform_device *pdev = to_platform_device(dev);
579 struct omap_device *od = to_omap_device(pdev);
580 int ret;
581
Kevin Hilman80c6d1e2011-07-12 22:48:29 +0200582 if (od->flags & OMAP_DEVICE_NO_IDLE_ON_SUSPEND)
583 return pm_generic_suspend_noirq(dev);
584
Kevin Hilmanc03f0072011-07-12 22:48:19 +0200585 ret = pm_generic_suspend_noirq(dev);
586
587 if (!ret && !pm_runtime_status_suspended(dev)) {
588 if (pm_generic_runtime_suspend(dev) == 0) {
589 omap_device_idle(pdev);
590 od->flags |= OMAP_DEVICE_SUSPENDED;
591 }
592 }
593
594 return ret;
595}
596
597static int _od_resume_noirq(struct device *dev)
598{
599 struct platform_device *pdev = to_platform_device(dev);
600 struct omap_device *od = to_omap_device(pdev);
601
Kevin Hilman80c6d1e2011-07-12 22:48:29 +0200602 if (od->flags & OMAP_DEVICE_NO_IDLE_ON_SUSPEND)
603 return pm_generic_resume_noirq(dev);
604
Kevin Hilmanc03f0072011-07-12 22:48:19 +0200605 if ((od->flags & OMAP_DEVICE_SUSPENDED) &&
606 !pm_runtime_status_suspended(dev)) {
607 od->flags &= ~OMAP_DEVICE_SUSPENDED;
608 omap_device_enable(pdev);
609 pm_generic_runtime_resume(dev);
610 }
611
612 return pm_generic_resume_noirq(dev);
613}
Kevin Hilman126caf12011-09-01 10:59:36 -0700614#else
615#define _od_suspend_noirq NULL
616#define _od_resume_noirq NULL
Kevin Hilmanc03f0072011-07-12 22:48:19 +0200617#endif
618
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200619static struct dev_pm_domain omap_device_pm_domain = {
Kevin Hilman638080c2011-04-29 00:36:42 +0200620 .ops = {
Kevin Hilman256a5432011-07-12 22:48:03 +0200621 SET_RUNTIME_PM_OPS(_od_runtime_suspend, _od_runtime_resume,
622 _od_runtime_idle)
Kevin Hilman638080c2011-04-29 00:36:42 +0200623 USE_PLATFORM_PM_SLEEP_OPS
Kevin Hilmanff353362011-08-25 15:31:14 +0200624 .suspend_noirq = _od_suspend_noirq,
625 .resume_noirq = _od_resume_noirq,
Kevin Hilman638080c2011-04-29 00:36:42 +0200626 }
627};
628
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700629/**
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300630 * omap_device_register - register an omap_device with one omap_hwmod
631 * @od: struct omap_device * to register
632 *
633 * Register the omap_device structure. This currently just calls
634 * platform_device_register() on the underlying platform_device.
635 * Returns the return value of platform_device_register().
636 */
637int omap_device_register(struct omap_device *od)
638{
639 pr_debug("omap_device: %s: registering\n", od->pdev.name);
640
Kevin Hilman0d5e8252010-08-23 08:10:55 -0700641 od->pdev.dev.parent = &omap_device_parent;
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200642 od->pdev.dev.pm_domain = &omap_device_pm_domain;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300643 return platform_device_register(&od->pdev);
644}
645
646
647/* Public functions for use by device drivers through struct platform_data */
648
649/**
650 * omap_device_enable - fully activate an omap_device
651 * @od: struct omap_device * to activate
652 *
653 * Do whatever is necessary for the hwmods underlying omap_device @od
654 * to be accessible and ready to operate. This generally involves
655 * enabling clocks, setting SYSCONFIG registers; and in the future may
656 * involve remuxing pins. Device drivers should call this function
657 * (through platform_data function pointers) where they would normally
658 * enable clocks, etc. Returns -EINVAL if called when the omap_device
659 * is already enabled, or passes along the return value of
660 * _omap_device_activate().
661 */
662int omap_device_enable(struct platform_device *pdev)
663{
664 int ret;
665 struct omap_device *od;
666
Kevin Hilman8f0d69d2011-07-09 19:15:20 -0600667 od = to_omap_device(pdev);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300668
669 if (od->_state == OMAP_DEVICE_STATE_ENABLED) {
Kevin Hilman49882c92011-07-21 09:58:36 -0700670 dev_warn(&pdev->dev,
671 "omap_device: %s() called from invalid state %d\n",
672 __func__, od->_state);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300673 return -EINVAL;
674 }
675
676 /* Enable everything if we're enabling this device from scratch */
677 if (od->_state == OMAP_DEVICE_STATE_UNKNOWN)
678 od->pm_lat_level = od->pm_lats_cnt;
679
680 ret = _omap_device_activate(od, IGNORE_WAKEUP_LAT);
681
682 od->dev_wakeup_lat = 0;
Kevin Hilman5f1b6ef2009-12-08 16:34:22 -0700683 od->_dev_wakeup_lat_limit = UINT_MAX;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300684 od->_state = OMAP_DEVICE_STATE_ENABLED;
685
686 return ret;
687}
688
689/**
690 * omap_device_idle - idle an omap_device
691 * @od: struct omap_device * to idle
692 *
693 * Idle omap_device @od by calling as many .deactivate_func() entries
694 * in the omap_device's pm_lats table as is possible without exceeding
695 * the device's maximum wakeup latency limit, pm_lat_limit. Device
696 * drivers should call this function (through platform_data function
697 * pointers) where they would normally disable clocks after operations
698 * complete, etc.. Returns -EINVAL if the omap_device is not
699 * currently enabled, or passes along the return value of
700 * _omap_device_deactivate().
701 */
702int omap_device_idle(struct platform_device *pdev)
703{
704 int ret;
705 struct omap_device *od;
706
Kevin Hilman8f0d69d2011-07-09 19:15:20 -0600707 od = to_omap_device(pdev);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300708
709 if (od->_state != OMAP_DEVICE_STATE_ENABLED) {
Kevin Hilman49882c92011-07-21 09:58:36 -0700710 dev_warn(&pdev->dev,
711 "omap_device: %s() called from invalid state %d\n",
712 __func__, od->_state);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300713 return -EINVAL;
714 }
715
716 ret = _omap_device_deactivate(od, USE_WAKEUP_LAT);
717
718 od->_state = OMAP_DEVICE_STATE_IDLE;
719
720 return ret;
721}
722
723/**
724 * omap_device_shutdown - shut down an omap_device
725 * @od: struct omap_device * to shut down
726 *
727 * Shut down omap_device @od by calling all .deactivate_func() entries
728 * in the omap_device's pm_lats table and then shutting down all of
729 * the underlying omap_hwmods. Used when a device is being "removed"
730 * or a device driver is being unloaded. Returns -EINVAL if the
731 * omap_device is not currently enabled or idle, or passes along the
732 * return value of _omap_device_deactivate().
733 */
734int omap_device_shutdown(struct platform_device *pdev)
735{
736 int ret, i;
737 struct omap_device *od;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300738
Kevin Hilman8f0d69d2011-07-09 19:15:20 -0600739 od = to_omap_device(pdev);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300740
741 if (od->_state != OMAP_DEVICE_STATE_ENABLED &&
742 od->_state != OMAP_DEVICE_STATE_IDLE) {
Kevin Hilman49882c92011-07-21 09:58:36 -0700743 dev_warn(&pdev->dev,
744 "omap_device: %s() called from invalid state %d\n",
745 __func__, od->_state);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300746 return -EINVAL;
747 }
748
749 ret = _omap_device_deactivate(od, IGNORE_WAKEUP_LAT);
750
Kishon Vijay Abraham If39f4892010-09-24 10:23:18 -0600751 for (i = 0; i < od->hwmods_cnt; i++)
752 omap_hwmod_shutdown(od->hwmods[i]);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300753
754 od->_state = OMAP_DEVICE_STATE_SHUTDOWN;
755
756 return ret;
757}
758
759/**
760 * omap_device_align_pm_lat - activate/deactivate device to match wakeup lat lim
761 * @od: struct omap_device *
762 *
763 * When a device's maximum wakeup latency limit changes, call some of
764 * the .activate_func or .deactivate_func function pointers in the
765 * omap_device's pm_lats array to ensure that the device's maximum
766 * wakeup latency is less than or equal to the new latency limit.
767 * Intended to be called by OMAP PM code whenever a device's maximum
768 * wakeup latency limit changes (e.g., via
769 * omap_pm_set_dev_wakeup_lat()). Returns 0 if nothing needs to be
770 * done (e.g., if the omap_device is not currently idle, or if the
771 * wakeup latency is already current with the new limit) or passes
772 * along the return value of _omap_device_deactivate() or
773 * _omap_device_activate().
774 */
775int omap_device_align_pm_lat(struct platform_device *pdev,
776 u32 new_wakeup_lat_limit)
777{
778 int ret = -EINVAL;
779 struct omap_device *od;
780
Kevin Hilman8f0d69d2011-07-09 19:15:20 -0600781 od = to_omap_device(pdev);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300782
783 if (new_wakeup_lat_limit == od->dev_wakeup_lat)
784 return 0;
785
786 od->_dev_wakeup_lat_limit = new_wakeup_lat_limit;
787
788 if (od->_state != OMAP_DEVICE_STATE_IDLE)
789 return 0;
790 else if (new_wakeup_lat_limit > od->dev_wakeup_lat)
791 ret = _omap_device_deactivate(od, USE_WAKEUP_LAT);
792 else if (new_wakeup_lat_limit < od->dev_wakeup_lat)
793 ret = _omap_device_activate(od, USE_WAKEUP_LAT);
794
795 return ret;
796}
797
798/**
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300799 * omap_device_get_pwrdm - return the powerdomain * associated with @od
800 * @od: struct omap_device *
801 *
802 * Return the powerdomain associated with the first underlying
803 * omap_hwmod for this omap_device. Intended for use by core OMAP PM
804 * code. Returns NULL on error or a struct powerdomain * upon
805 * success.
806 */
807struct powerdomain *omap_device_get_pwrdm(struct omap_device *od)
808{
809 /*
810 * XXX Assumes that all omap_hwmod powerdomains are identical.
811 * This may not necessarily be true. There should be a sanity
812 * check in here to WARN() if any difference appears.
813 */
814 if (!od->hwmods_cnt)
815 return NULL;
816
817 return omap_hwmod_get_pwrdm(od->hwmods[0]);
818}
819
Paul Walmsleydb2a60b2010-07-26 16:34:33 -0600820/**
821 * omap_device_get_mpu_rt_va - return the MPU's virtual addr for the hwmod base
822 * @od: struct omap_device *
823 *
824 * Return the MPU's virtual address for the base of the hwmod, from
825 * the ioremap() that the hwmod code does. Only valid if there is one
826 * hwmod associated with this device. Returns NULL if there are zero
827 * or more than one hwmods associated with this omap_device;
828 * otherwise, passes along the return value from
829 * omap_hwmod_get_mpu_rt_va().
830 */
831void __iomem *omap_device_get_rt_va(struct omap_device *od)
832{
833 if (od->hwmods_cnt != 1)
834 return NULL;
835
836 return omap_hwmod_get_mpu_rt_va(od->hwmods[0]);
837}
838
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300839/*
840 * Public functions intended for use in omap_device_pm_latency
841 * .activate_func and .deactivate_func function pointers
842 */
843
844/**
845 * omap_device_enable_hwmods - call omap_hwmod_enable() on all hwmods
846 * @od: struct omap_device *od
847 *
848 * Enable all underlying hwmods. Returns 0.
849 */
850int omap_device_enable_hwmods(struct omap_device *od)
851{
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300852 int i;
853
Kishon Vijay Abraham If39f4892010-09-24 10:23:18 -0600854 for (i = 0; i < od->hwmods_cnt; i++)
855 omap_hwmod_enable(od->hwmods[i]);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300856
857 /* XXX pass along return value here? */
858 return 0;
859}
860
861/**
862 * omap_device_idle_hwmods - call omap_hwmod_idle() on all hwmods
863 * @od: struct omap_device *od
864 *
865 * Idle all underlying hwmods. Returns 0.
866 */
867int omap_device_idle_hwmods(struct omap_device *od)
868{
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300869 int i;
870
Kishon Vijay Abraham If39f4892010-09-24 10:23:18 -0600871 for (i = 0; i < od->hwmods_cnt; i++)
872 omap_hwmod_idle(od->hwmods[i]);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300873
874 /* XXX pass along return value here? */
875 return 0;
876}
877
878/**
879 * omap_device_disable_clocks - disable all main and interface clocks
880 * @od: struct omap_device *od
881 *
882 * Disable the main functional clock and interface clock for all of the
883 * omap_hwmods associated with the omap_device. Returns 0.
884 */
885int omap_device_disable_clocks(struct omap_device *od)
886{
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300887 int i;
888
Kishon Vijay Abraham If39f4892010-09-24 10:23:18 -0600889 for (i = 0; i < od->hwmods_cnt; i++)
890 omap_hwmod_disable_clocks(od->hwmods[i]);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300891
892 /* XXX pass along return value here? */
893 return 0;
894}
895
896/**
897 * omap_device_enable_clocks - enable all main and interface clocks
898 * @od: struct omap_device *od
899 *
900 * Enable the main functional clock and interface clock for all of the
901 * omap_hwmods associated with the omap_device. Returns 0.
902 */
903int omap_device_enable_clocks(struct omap_device *od)
904{
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300905 int i;
906
Kishon Vijay Abraham If39f4892010-09-24 10:23:18 -0600907 for (i = 0; i < od->hwmods_cnt; i++)
908 omap_hwmod_enable_clocks(od->hwmods[i]);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300909
910 /* XXX pass along return value here? */
911 return 0;
912}
Kevin Hilman0d5e8252010-08-23 08:10:55 -0700913
914struct device omap_device_parent = {
915 .init_name = "omap",
916 .parent = &platform_bus,
917};
918
919static int __init omap_device_init(void)
920{
921 return device_register(&omap_device_parent);
922}
923core_initcall(omap_device_init);