blob: f9dec0d32fa4a38e076ae433c8584687b493b15f [file] [log] [blame]
Paul Walmsleyb04b65a2009-09-03 20:14:05 +03001/*
2 * omap_device implementation
3 *
4 * Copyright (C) 2009 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>
85
Tony Lindgrence491cf2009-10-20 09:40:47 -070086#include <plat/omap_device.h>
87#include <plat/omap_hwmod.h>
Paul Walmsleyb04b65a2009-09-03 20:14:05 +030088
89/* These parameters are passed to _omap_device_{de,}activate() */
90#define USE_WAKEUP_LAT 0
91#define IGNORE_WAKEUP_LAT 1
92
Paul Walmsleyb04b65a2009-09-03 20:14:05 +030093
Kevin Hilman00071222010-02-24 12:05:45 -070094#define OMAP_DEVICE_MAGIC 0xf00dcafe
95
Paul Walmsleyb04b65a2009-09-03 20:14:05 +030096/* Private functions */
97
98/**
Paul Walmsleyb04b65a2009-09-03 20:14:05 +030099 * _omap_device_activate - increase device readiness
100 * @od: struct omap_device *
101 * @ignore_lat: increase to latency target (0) or full readiness (1)?
102 *
103 * Increase readiness of omap_device @od (thus decreasing device
104 * wakeup latency, but consuming more power). If @ignore_lat is
105 * IGNORE_WAKEUP_LAT, make the omap_device fully active. Otherwise,
106 * if @ignore_lat is USE_WAKEUP_LAT, and the device's maximum wakeup
107 * latency is greater than the requested maximum wakeup latency, step
108 * backwards in the omap_device_pm_latency table to ensure the
109 * device's maximum wakeup latency is less than or equal to the
110 * requested maximum wakeup latency. Returns 0.
111 */
112static int _omap_device_activate(struct omap_device *od, u8 ignore_lat)
113{
Tony Lindgrenf0594292009-10-19 15:25:24 -0700114 struct timespec a, b, c;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300115
116 pr_debug("omap_device: %s: activating\n", od->pdev.name);
117
118 while (od->pm_lat_level > 0) {
119 struct omap_device_pm_latency *odpl;
Tony Lindgrenf0594292009-10-19 15:25:24 -0700120 unsigned long long act_lat = 0;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300121
122 od->pm_lat_level--;
123
124 odpl = od->pm_lats + od->pm_lat_level;
125
126 if (!ignore_lat &&
127 (od->dev_wakeup_lat <= od->_dev_wakeup_lat_limit))
128 break;
129
Kevin Hilmand2292662009-12-08 16:34:23 -0700130 read_persistent_clock(&a);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300131
132 /* XXX check return code */
133 odpl->activate_func(od);
134
Kevin Hilmand2292662009-12-08 16:34:23 -0700135 read_persistent_clock(&b);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300136
Tony Lindgrenf0594292009-10-19 15:25:24 -0700137 c = timespec_sub(b, a);
Kevin Hilman0d93d8b2009-12-08 16:34:26 -0700138 act_lat = timespec_to_ns(&c);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300139
140 pr_debug("omap_device: %s: pm_lat %d: activate: elapsed time "
Kevin Hilman0d93d8b2009-12-08 16:34:26 -0700141 "%llu nsec\n", od->pdev.name, od->pm_lat_level,
Tony Lindgrenf0594292009-10-19 15:25:24 -0700142 act_lat);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300143
Kevin Hilman9799aca2010-01-26 20:13:02 -0700144 if (act_lat > odpl->activate_lat) {
145 odpl->activate_lat_worst = act_lat;
146 if (odpl->flags & OMAP_DEVICE_LATENCY_AUTO_ADJUST) {
147 odpl->activate_lat = act_lat;
148 pr_warning("omap_device: %s.%d: new worst case "
149 "activate latency %d: %llu\n",
150 od->pdev.name, od->pdev.id,
151 od->pm_lat_level, act_lat);
152 } else
153 pr_warning("omap_device: %s.%d: activate "
154 "latency %d higher than exptected. "
155 "(%llu > %d)\n",
156 od->pdev.name, od->pdev.id,
157 od->pm_lat_level, act_lat,
158 odpl->activate_lat);
159 }
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
185 pr_debug("omap_device: %s: deactivating\n", od->pdev.name);
186
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
208 pr_debug("omap_device: %s: pm_lat %d: deactivate: elapsed time "
Kevin Hilman0d93d8b2009-12-08 16:34:26 -0700209 "%llu nsec\n", od->pdev.name, od->pm_lat_level,
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300210 deact_lat);
211
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;
216 pr_warning("omap_device: %s.%d: new worst case "
217 "deactivate latency %d: %llu\n",
218 od->pdev.name, od->pdev.id,
219 od->pm_lat_level, deact_lat);
220 } else
221 pr_warning("omap_device: %s.%d: deactivate "
222 "latency %d higher than exptected. "
223 "(%llu > %d)\n",
224 od->pdev.name, od->pdev.id,
225 od->pm_lat_level, deact_lat,
226 odpl->deactivate_lat);
227 }
228
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300229
230 od->dev_wakeup_lat += odpl->activate_lat;
231
232 od->pm_lat_level++;
233 }
234
235 return 0;
236}
237
238static inline struct omap_device *_find_by_pdev(struct platform_device *pdev)
239{
240 return container_of(pdev, struct omap_device, pdev);
241}
242
243
244/* Public functions for use by core code */
245
246/**
247 * omap_device_count_resources - count number of struct resource entries needed
248 * @od: struct omap_device *
249 *
250 * Count the number of struct resource entries needed for this
251 * omap_device @od. Used by omap_device_build_ss() to determine how
252 * much memory to allocate before calling
253 * omap_device_fill_resources(). Returns the count.
254 */
255int omap_device_count_resources(struct omap_device *od)
256{
257 struct omap_hwmod *oh;
258 int c = 0;
259 int i;
260
261 for (i = 0, oh = *od->hwmods; i < od->hwmods_cnt; i++, oh++)
262 c += omap_hwmod_count_resources(oh);
263
264 pr_debug("omap_device: %s: counted %d total resources across %d "
265 "hwmods\n", od->pdev.name, c, od->hwmods_cnt);
266
267 return c;
268}
269
270/**
271 * omap_device_fill_resources - fill in array of struct resource
272 * @od: struct omap_device *
273 * @res: pointer to an array of struct resource to be filled in
274 *
275 * Populate one or more empty struct resource pointed to by @res with
276 * the resource data for this omap_device @od. Used by
277 * omap_device_build_ss() after calling omap_device_count_resources().
278 * Ideally this function would not be needed at all. If omap_device
279 * replaces platform_device, then we can specify our own
280 * get_resource()/ get_irq()/etc functions that use the underlying
281 * omap_hwmod information. Or if platform_device is extended to use
282 * subarchitecture-specific function pointers, the various
283 * platform_device functions can simply call omap_device internal
284 * functions to get device resources. Hacking around the existing
285 * platform_device code wastes memory. Returns 0.
286 */
287int omap_device_fill_resources(struct omap_device *od, struct resource *res)
288{
289 struct omap_hwmod *oh;
290 int c = 0;
291 int i, r;
292
293 for (i = 0, oh = *od->hwmods; i < od->hwmods_cnt; i++, oh++) {
294 r = omap_hwmod_fill_resources(oh, res);
295 res += r;
296 c += r;
297 }
298
299 return 0;
300}
301
302/**
303 * omap_device_build - build and register an omap_device with one omap_hwmod
304 * @pdev_name: name of the platform_device driver to use
305 * @pdev_id: this platform_device's connection ID
306 * @oh: ptr to the single omap_hwmod that backs this omap_device
307 * @pdata: platform_data ptr to associate with the platform_device
308 * @pdata_len: amount of memory pointed to by @pdata
309 * @pm_lats: pointer to a omap_device_pm_latency array for this device
310 * @pm_lats_cnt: ARRAY_SIZE() of @pm_lats
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700311 * @is_early_device: should the device be registered as an early device or not
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300312 *
313 * Convenience function for building and registering a single
314 * omap_device record, which in turn builds and registers a
315 * platform_device record. See omap_device_build_ss() for more
316 * information. Returns ERR_PTR(-EINVAL) if @oh is NULL; otherwise,
317 * passes along the return value of omap_device_build_ss().
318 */
319struct omap_device *omap_device_build(const char *pdev_name, int pdev_id,
320 struct omap_hwmod *oh, void *pdata,
321 int pdata_len,
322 struct omap_device_pm_latency *pm_lats,
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700323 int pm_lats_cnt, int is_early_device)
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300324{
325 struct omap_hwmod *ohs[] = { oh };
326
327 if (!oh)
328 return ERR_PTR(-EINVAL);
329
330 return omap_device_build_ss(pdev_name, pdev_id, ohs, 1, pdata,
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700331 pdata_len, pm_lats, pm_lats_cnt,
332 is_early_device);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300333}
334
335/**
336 * omap_device_build_ss - build and register an omap_device with multiple hwmods
337 * @pdev_name: name of the platform_device driver to use
338 * @pdev_id: this platform_device's connection ID
339 * @oh: ptr to the single omap_hwmod that backs this omap_device
340 * @pdata: platform_data ptr to associate with the platform_device
341 * @pdata_len: amount of memory pointed to by @pdata
342 * @pm_lats: pointer to a omap_device_pm_latency array for this device
343 * @pm_lats_cnt: ARRAY_SIZE() of @pm_lats
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700344 * @is_early_device: should the device be registered as an early device or not
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300345 *
346 * Convenience function for building and registering an omap_device
347 * subsystem record. Subsystem records consist of multiple
348 * omap_hwmods. This function in turn builds and registers a
349 * platform_device record. Returns an ERR_PTR() on error, or passes
350 * along the return value of omap_device_register().
351 */
352struct omap_device *omap_device_build_ss(const char *pdev_name, int pdev_id,
353 struct omap_hwmod **ohs, int oh_cnt,
354 void *pdata, int pdata_len,
355 struct omap_device_pm_latency *pm_lats,
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700356 int pm_lats_cnt, int is_early_device)
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300357{
358 int ret = -ENOMEM;
359 struct omap_device *od;
360 char *pdev_name2;
361 struct resource *res = NULL;
Kevin Hilman06563582010-07-26 16:34:30 -0600362 int i, res_count;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300363 struct omap_hwmod **hwmods;
364
365 if (!ohs || oh_cnt == 0 || !pdev_name)
366 return ERR_PTR(-EINVAL);
367
368 if (!pdata && pdata_len > 0)
369 return ERR_PTR(-EINVAL);
370
371 pr_debug("omap_device: %s: building with %d hwmods\n", pdev_name,
372 oh_cnt);
373
374 od = kzalloc(sizeof(struct omap_device), GFP_KERNEL);
375 if (!od)
376 return ERR_PTR(-ENOMEM);
377
378 od->hwmods_cnt = oh_cnt;
379
380 hwmods = kzalloc(sizeof(struct omap_hwmod *) * oh_cnt,
381 GFP_KERNEL);
382 if (!hwmods)
383 goto odbs_exit1;
384
385 memcpy(hwmods, ohs, sizeof(struct omap_hwmod *) * oh_cnt);
386 od->hwmods = hwmods;
387
388 pdev_name2 = kzalloc(strlen(pdev_name) + 1, GFP_KERNEL);
389 if (!pdev_name2)
390 goto odbs_exit2;
391 strcpy(pdev_name2, pdev_name);
392
393 od->pdev.name = pdev_name2;
394 od->pdev.id = pdev_id;
395
396 res_count = omap_device_count_resources(od);
397 if (res_count > 0) {
398 res = kzalloc(sizeof(struct resource) * res_count, GFP_KERNEL);
399 if (!res)
400 goto odbs_exit3;
401 }
402 omap_device_fill_resources(od, res);
403
404 od->pdev.num_resources = res_count;
405 od->pdev.resource = res;
406
407 platform_device_add_data(&od->pdev, pdata, pdata_len);
408
409 od->pm_lats = pm_lats;
410 od->pm_lats_cnt = pm_lats_cnt;
411
Kevin Hilman00071222010-02-24 12:05:45 -0700412 od->magic = OMAP_DEVICE_MAGIC;
413
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700414 if (is_early_device)
415 ret = omap_early_device_register(od);
416 else
417 ret = omap_device_register(od);
418
Kevin Hilman06563582010-07-26 16:34:30 -0600419 for (i = 0; i < oh_cnt; i++)
420 hwmods[i]->od = od;
421
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300422 if (ret)
423 goto odbs_exit4;
424
425 return od;
426
427odbs_exit4:
428 kfree(res);
429odbs_exit3:
430 kfree(pdev_name2);
431odbs_exit2:
432 kfree(hwmods);
433odbs_exit1:
434 kfree(od);
435
436 pr_err("omap_device: %s: build failed (%d)\n", pdev_name, ret);
437
438 return ERR_PTR(ret);
439}
440
441/**
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700442 * omap_early_device_register - register an omap_device as an early platform
443 * device.
444 * @od: struct omap_device * to register
445 *
446 * Register the omap_device structure. This currently just calls
447 * platform_early_add_device() on the underlying platform_device.
448 * Returns 0 by default.
449 */
450int omap_early_device_register(struct omap_device *od)
451{
452 struct platform_device *devices[1];
453
454 devices[0] = &(od->pdev);
455 early_platform_add_devices(devices, 1);
456 return 0;
457}
458
459/**
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300460 * omap_device_register - register an omap_device with one omap_hwmod
461 * @od: struct omap_device * to register
462 *
463 * Register the omap_device structure. This currently just calls
464 * platform_device_register() on the underlying platform_device.
465 * Returns the return value of platform_device_register().
466 */
467int omap_device_register(struct omap_device *od)
468{
469 pr_debug("omap_device: %s: registering\n", od->pdev.name);
470
471 return platform_device_register(&od->pdev);
472}
473
474
475/* Public functions for use by device drivers through struct platform_data */
476
477/**
478 * omap_device_enable - fully activate an omap_device
479 * @od: struct omap_device * to activate
480 *
481 * Do whatever is necessary for the hwmods underlying omap_device @od
482 * to be accessible and ready to operate. This generally involves
483 * enabling clocks, setting SYSCONFIG registers; and in the future may
484 * involve remuxing pins. Device drivers should call this function
485 * (through platform_data function pointers) where they would normally
486 * enable clocks, etc. Returns -EINVAL if called when the omap_device
487 * is already enabled, or passes along the return value of
488 * _omap_device_activate().
489 */
490int omap_device_enable(struct platform_device *pdev)
491{
492 int ret;
493 struct omap_device *od;
494
495 od = _find_by_pdev(pdev);
496
497 if (od->_state == OMAP_DEVICE_STATE_ENABLED) {
Kevin Hilman24d82e32010-02-24 12:05:45 -0700498 WARN(1, "omap_device: %s.%d: %s() called from invalid state %d\n",
499 od->pdev.name, od->pdev.id, __func__, od->_state);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300500 return -EINVAL;
501 }
502
503 /* Enable everything if we're enabling this device from scratch */
504 if (od->_state == OMAP_DEVICE_STATE_UNKNOWN)
505 od->pm_lat_level = od->pm_lats_cnt;
506
507 ret = _omap_device_activate(od, IGNORE_WAKEUP_LAT);
508
509 od->dev_wakeup_lat = 0;
Kevin Hilman5f1b6ef2009-12-08 16:34:22 -0700510 od->_dev_wakeup_lat_limit = UINT_MAX;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300511 od->_state = OMAP_DEVICE_STATE_ENABLED;
512
513 return ret;
514}
515
516/**
517 * omap_device_idle - idle an omap_device
518 * @od: struct omap_device * to idle
519 *
520 * Idle omap_device @od by calling as many .deactivate_func() entries
521 * in the omap_device's pm_lats table as is possible without exceeding
522 * the device's maximum wakeup latency limit, pm_lat_limit. Device
523 * drivers should call this function (through platform_data function
524 * pointers) where they would normally disable clocks after operations
525 * complete, etc.. Returns -EINVAL if the omap_device is not
526 * currently enabled, or passes along the return value of
527 * _omap_device_deactivate().
528 */
529int omap_device_idle(struct platform_device *pdev)
530{
531 int ret;
532 struct omap_device *od;
533
534 od = _find_by_pdev(pdev);
535
536 if (od->_state != OMAP_DEVICE_STATE_ENABLED) {
Kevin Hilman24d82e32010-02-24 12:05:45 -0700537 WARN(1, "omap_device: %s.%d: %s() called from invalid state %d\n",
538 od->pdev.name, od->pdev.id, __func__, od->_state);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300539 return -EINVAL;
540 }
541
542 ret = _omap_device_deactivate(od, USE_WAKEUP_LAT);
543
544 od->_state = OMAP_DEVICE_STATE_IDLE;
545
546 return ret;
547}
548
549/**
550 * omap_device_shutdown - shut down an omap_device
551 * @od: struct omap_device * to shut down
552 *
553 * Shut down omap_device @od by calling all .deactivate_func() entries
554 * in the omap_device's pm_lats table and then shutting down all of
555 * the underlying omap_hwmods. Used when a device is being "removed"
556 * or a device driver is being unloaded. Returns -EINVAL if the
557 * omap_device is not currently enabled or idle, or passes along the
558 * return value of _omap_device_deactivate().
559 */
560int omap_device_shutdown(struct platform_device *pdev)
561{
562 int ret, i;
563 struct omap_device *od;
564 struct omap_hwmod *oh;
565
566 od = _find_by_pdev(pdev);
567
568 if (od->_state != OMAP_DEVICE_STATE_ENABLED &&
569 od->_state != OMAP_DEVICE_STATE_IDLE) {
Kevin Hilman24d82e32010-02-24 12:05:45 -0700570 WARN(1, "omap_device: %s.%d: %s() called from invalid state %d\n",
571 od->pdev.name, od->pdev.id, __func__, od->_state);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300572 return -EINVAL;
573 }
574
575 ret = _omap_device_deactivate(od, IGNORE_WAKEUP_LAT);
576
577 for (i = 0, oh = *od->hwmods; i < od->hwmods_cnt; i++, oh++)
578 omap_hwmod_shutdown(oh);
579
580 od->_state = OMAP_DEVICE_STATE_SHUTDOWN;
581
582 return ret;
583}
584
585/**
586 * omap_device_align_pm_lat - activate/deactivate device to match wakeup lat lim
587 * @od: struct omap_device *
588 *
589 * When a device's maximum wakeup latency limit changes, call some of
590 * the .activate_func or .deactivate_func function pointers in the
591 * omap_device's pm_lats array to ensure that the device's maximum
592 * wakeup latency is less than or equal to the new latency limit.
593 * Intended to be called by OMAP PM code whenever a device's maximum
594 * wakeup latency limit changes (e.g., via
595 * omap_pm_set_dev_wakeup_lat()). Returns 0 if nothing needs to be
596 * done (e.g., if the omap_device is not currently idle, or if the
597 * wakeup latency is already current with the new limit) or passes
598 * along the return value of _omap_device_deactivate() or
599 * _omap_device_activate().
600 */
601int omap_device_align_pm_lat(struct platform_device *pdev,
602 u32 new_wakeup_lat_limit)
603{
604 int ret = -EINVAL;
605 struct omap_device *od;
606
607 od = _find_by_pdev(pdev);
608
609 if (new_wakeup_lat_limit == od->dev_wakeup_lat)
610 return 0;
611
612 od->_dev_wakeup_lat_limit = new_wakeup_lat_limit;
613
614 if (od->_state != OMAP_DEVICE_STATE_IDLE)
615 return 0;
616 else if (new_wakeup_lat_limit > od->dev_wakeup_lat)
617 ret = _omap_device_deactivate(od, USE_WAKEUP_LAT);
618 else if (new_wakeup_lat_limit < od->dev_wakeup_lat)
619 ret = _omap_device_activate(od, USE_WAKEUP_LAT);
620
621 return ret;
622}
623
624/**
Kevin Hilman00071222010-02-24 12:05:45 -0700625 * omap_device_is_valid - Check if pointer is a valid omap_device
626 * @od: struct omap_device *
627 *
628 * Return whether struct omap_device pointer @od points to a valid
629 * omap_device.
630 */
631bool omap_device_is_valid(struct omap_device *od)
632{
633 return (od && od->magic == OMAP_DEVICE_MAGIC);
634}
635
636/**
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300637 * omap_device_get_pwrdm - return the powerdomain * associated with @od
638 * @od: struct omap_device *
639 *
640 * Return the powerdomain associated with the first underlying
641 * omap_hwmod for this omap_device. Intended for use by core OMAP PM
642 * code. Returns NULL on error or a struct powerdomain * upon
643 * success.
644 */
645struct powerdomain *omap_device_get_pwrdm(struct omap_device *od)
646{
647 /*
648 * XXX Assumes that all omap_hwmod powerdomains are identical.
649 * This may not necessarily be true. There should be a sanity
650 * check in here to WARN() if any difference appears.
651 */
652 if (!od->hwmods_cnt)
653 return NULL;
654
655 return omap_hwmod_get_pwrdm(od->hwmods[0]);
656}
657
658/*
659 * Public functions intended for use in omap_device_pm_latency
660 * .activate_func and .deactivate_func function pointers
661 */
662
663/**
664 * omap_device_enable_hwmods - call omap_hwmod_enable() on all hwmods
665 * @od: struct omap_device *od
666 *
667 * Enable all underlying hwmods. Returns 0.
668 */
669int omap_device_enable_hwmods(struct omap_device *od)
670{
671 struct omap_hwmod *oh;
672 int i;
673
674 for (i = 0, oh = *od->hwmods; i < od->hwmods_cnt; i++, oh++)
675 omap_hwmod_enable(oh);
676
677 /* XXX pass along return value here? */
678 return 0;
679}
680
681/**
682 * omap_device_idle_hwmods - call omap_hwmod_idle() on all hwmods
683 * @od: struct omap_device *od
684 *
685 * Idle all underlying hwmods. Returns 0.
686 */
687int omap_device_idle_hwmods(struct omap_device *od)
688{
689 struct omap_hwmod *oh;
690 int i;
691
692 for (i = 0, oh = *od->hwmods; i < od->hwmods_cnt; i++, oh++)
693 omap_hwmod_idle(oh);
694
695 /* XXX pass along return value here? */
696 return 0;
697}
698
699/**
700 * omap_device_disable_clocks - disable all main and interface clocks
701 * @od: struct omap_device *od
702 *
703 * Disable the main functional clock and interface clock for all of the
704 * omap_hwmods associated with the omap_device. Returns 0.
705 */
706int omap_device_disable_clocks(struct omap_device *od)
707{
708 struct omap_hwmod *oh;
709 int i;
710
711 for (i = 0, oh = *od->hwmods; i < od->hwmods_cnt; i++, oh++)
712 omap_hwmod_disable_clocks(oh);
713
714 /* XXX pass along return value here? */
715 return 0;
716}
717
718/**
719 * omap_device_enable_clocks - enable all main and interface clocks
720 * @od: struct omap_device *od
721 *
722 * Enable the main functional clock and interface clock for all of the
723 * omap_hwmods associated with the omap_device. Returns 0.
724 */
725int omap_device_enable_clocks(struct omap_device *od)
726{
727 struct omap_hwmod *oh;
728 int i;
729
730 for (i = 0, oh = *od->hwmods; i < od->hwmods_cnt; i++, oh++)
731 omap_hwmod_enable_clocks(oh);
732
733 /* XXX pass along return value here? */
734 return 0;
735}