OMAP2+: hwmod/device: update documentation and copyright
[deliverable/linux.git] / arch / arm / plat-omap / omap_device.c
CommitLineData
b04b65ab
PW
1/*
2 * omap_device implementation
3 *
887adeac 4 * Copyright (C) 2009-2010 Nokia Corporation
4788da26 5 * Paul Walmsley, Kevin Hilman
b04b65ab
PW
6 *
7 * Developed in collaboration with (alphabetical order): Benoit
4788da26 8 * Cousson, Thara Gopinath, Tony Lindgren, Rajendra Nayak, Vikram
b04b65ab
PW
9 * 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>
5a0e3ad6 82#include <linux/slab.h>
b04b65ab
PW
83#include <linux/err.h>
84#include <linux/io.h>
85
ce491cf8
TL
86#include <plat/omap_device.h>
87#include <plat/omap_hwmod.h>
b04b65ab
PW
88
89/* These parameters are passed to _omap_device_{de,}activate() */
90#define USE_WAKEUP_LAT 0
91#define IGNORE_WAKEUP_LAT 1
92
887adeac
PW
93/*
94 * OMAP_DEVICE_MAGIC: used to determine whether a struct omap_device
95 * obtained via container_of() is in fact a struct omap_device
96 */
97#define OMAP_DEVICE_MAGIC 0xf00dcafe
0007122a 98
b04b65ab
PW
99/* Private functions */
100
b04b65ab
PW
101/**
102 * _omap_device_activate - increase device readiness
103 * @od: struct omap_device *
104 * @ignore_lat: increase to latency target (0) or full readiness (1)?
105 *
106 * Increase readiness of omap_device @od (thus decreasing device
107 * wakeup latency, but consuming more power). If @ignore_lat is
108 * IGNORE_WAKEUP_LAT, make the omap_device fully active. Otherwise,
109 * if @ignore_lat is USE_WAKEUP_LAT, and the device's maximum wakeup
110 * latency is greater than the requested maximum wakeup latency, step
111 * backwards in the omap_device_pm_latency table to ensure the
112 * device's maximum wakeup latency is less than or equal to the
113 * requested maximum wakeup latency. Returns 0.
114 */
115static int _omap_device_activate(struct omap_device *od, u8 ignore_lat)
116{
f059429e 117 struct timespec a, b, c;
b04b65ab
PW
118
119 pr_debug("omap_device: %s: activating\n", od->pdev.name);
120
121 while (od->pm_lat_level > 0) {
122 struct omap_device_pm_latency *odpl;
f059429e 123 unsigned long long act_lat = 0;
b04b65ab
PW
124
125 od->pm_lat_level--;
126
127 odpl = od->pm_lats + od->pm_lat_level;
128
129 if (!ignore_lat &&
130 (od->dev_wakeup_lat <= od->_dev_wakeup_lat_limit))
131 break;
132
d2292667 133 read_persistent_clock(&a);
b04b65ab
PW
134
135 /* XXX check return code */
136 odpl->activate_func(od);
137
d2292667 138 read_persistent_clock(&b);
b04b65ab 139
f059429e 140 c = timespec_sub(b, a);
0d93d8bb 141 act_lat = timespec_to_ns(&c);
b04b65ab
PW
142
143 pr_debug("omap_device: %s: pm_lat %d: activate: elapsed time "
0d93d8bb 144 "%llu nsec\n", od->pdev.name, od->pm_lat_level,
f059429e 145 act_lat);
b04b65ab 146
9799aca2
KH
147 if (act_lat > odpl->activate_lat) {
148 odpl->activate_lat_worst = act_lat;
149 if (odpl->flags & OMAP_DEVICE_LATENCY_AUTO_ADJUST) {
150 odpl->activate_lat = act_lat;
151 pr_warning("omap_device: %s.%d: new worst case "
152 "activate latency %d: %llu\n",
153 od->pdev.name, od->pdev.id,
154 od->pm_lat_level, act_lat);
155 } else
156 pr_warning("omap_device: %s.%d: activate "
157 "latency %d higher than exptected. "
158 "(%llu > %d)\n",
159 od->pdev.name, od->pdev.id,
160 od->pm_lat_level, act_lat,
161 odpl->activate_lat);
162 }
b04b65ab
PW
163
164 od->dev_wakeup_lat -= odpl->activate_lat;
165 }
166
167 return 0;
168}
169
170/**
171 * _omap_device_deactivate - decrease device readiness
172 * @od: struct omap_device *
173 * @ignore_lat: decrease to latency target (0) or full inactivity (1)?
174 *
175 * Decrease readiness of omap_device @od (thus increasing device
176 * wakeup latency, but conserving power). If @ignore_lat is
177 * IGNORE_WAKEUP_LAT, make the omap_device fully inactive. Otherwise,
178 * if @ignore_lat is USE_WAKEUP_LAT, and the device's maximum wakeup
179 * latency is less than the requested maximum wakeup latency, step
180 * forwards in the omap_device_pm_latency table to ensure the device's
181 * maximum wakeup latency is less than or equal to the requested
182 * maximum wakeup latency. Returns 0.
183 */
184static int _omap_device_deactivate(struct omap_device *od, u8 ignore_lat)
185{
f059429e 186 struct timespec a, b, c;
b04b65ab
PW
187
188 pr_debug("omap_device: %s: deactivating\n", od->pdev.name);
189
190 while (od->pm_lat_level < od->pm_lats_cnt) {
191 struct omap_device_pm_latency *odpl;
f059429e 192 unsigned long long deact_lat = 0;
b04b65ab
PW
193
194 odpl = od->pm_lats + od->pm_lat_level;
195
196 if (!ignore_lat &&
197 ((od->dev_wakeup_lat + odpl->activate_lat) >
198 od->_dev_wakeup_lat_limit))
199 break;
200
d2292667 201 read_persistent_clock(&a);
b04b65ab
PW
202
203 /* XXX check return code */
204 odpl->deactivate_func(od);
205
d2292667 206 read_persistent_clock(&b);
b04b65ab 207
f059429e 208 c = timespec_sub(b, a);
0d93d8bb 209 deact_lat = timespec_to_ns(&c);
b04b65ab
PW
210
211 pr_debug("omap_device: %s: pm_lat %d: deactivate: elapsed time "
0d93d8bb 212 "%llu nsec\n", od->pdev.name, od->pm_lat_level,
b04b65ab
PW
213 deact_lat);
214
9799aca2
KH
215 if (deact_lat > odpl->deactivate_lat) {
216 odpl->deactivate_lat_worst = deact_lat;
217 if (odpl->flags & OMAP_DEVICE_LATENCY_AUTO_ADJUST) {
218 odpl->deactivate_lat = deact_lat;
219 pr_warning("omap_device: %s.%d: new worst case "
220 "deactivate latency %d: %llu\n",
221 od->pdev.name, od->pdev.id,
222 od->pm_lat_level, deact_lat);
223 } else
224 pr_warning("omap_device: %s.%d: deactivate "
225 "latency %d higher than exptected. "
226 "(%llu > %d)\n",
227 od->pdev.name, od->pdev.id,
228 od->pm_lat_level, deact_lat,
229 odpl->deactivate_lat);
230 }
231
b04b65ab
PW
232
233 od->dev_wakeup_lat += odpl->activate_lat;
234
235 od->pm_lat_level++;
236 }
237
238 return 0;
239}
240
241static inline struct omap_device *_find_by_pdev(struct platform_device *pdev)
242{
243 return container_of(pdev, struct omap_device, pdev);
244}
245
246
247/* Public functions for use by core code */
248
249/**
250 * omap_device_count_resources - count number of struct resource entries needed
251 * @od: struct omap_device *
252 *
253 * Count the number of struct resource entries needed for this
254 * omap_device @od. Used by omap_device_build_ss() to determine how
255 * much memory to allocate before calling
256 * omap_device_fill_resources(). Returns the count.
257 */
258int omap_device_count_resources(struct omap_device *od)
259{
260 struct omap_hwmod *oh;
261 int c = 0;
262 int i;
263
264 for (i = 0, oh = *od->hwmods; i < od->hwmods_cnt; i++, oh++)
265 c += omap_hwmod_count_resources(oh);
266
267 pr_debug("omap_device: %s: counted %d total resources across %d "
268 "hwmods\n", od->pdev.name, c, od->hwmods_cnt);
269
270 return c;
271}
272
273/**
274 * omap_device_fill_resources - fill in array of struct resource
275 * @od: struct omap_device *
276 * @res: pointer to an array of struct resource to be filled in
277 *
278 * Populate one or more empty struct resource pointed to by @res with
279 * the resource data for this omap_device @od. Used by
280 * omap_device_build_ss() after calling omap_device_count_resources().
281 * Ideally this function would not be needed at all. If omap_device
282 * replaces platform_device, then we can specify our own
283 * get_resource()/ get_irq()/etc functions that use the underlying
284 * omap_hwmod information. Or if platform_device is extended to use
285 * subarchitecture-specific function pointers, the various
286 * platform_device functions can simply call omap_device internal
287 * functions to get device resources. Hacking around the existing
288 * platform_device code wastes memory. Returns 0.
289 */
290int omap_device_fill_resources(struct omap_device *od, struct resource *res)
291{
292 struct omap_hwmod *oh;
293 int c = 0;
294 int i, r;
295
296 for (i = 0, oh = *od->hwmods; i < od->hwmods_cnt; i++, oh++) {
297 r = omap_hwmod_fill_resources(oh, res);
298 res += r;
299 c += r;
300 }
301
302 return 0;
303}
304
305/**
306 * omap_device_build - build and register an omap_device with one omap_hwmod
307 * @pdev_name: name of the platform_device driver to use
308 * @pdev_id: this platform_device's connection ID
309 * @oh: ptr to the single omap_hwmod that backs this omap_device
310 * @pdata: platform_data ptr to associate with the platform_device
311 * @pdata_len: amount of memory pointed to by @pdata
312 * @pm_lats: pointer to a omap_device_pm_latency array for this device
313 * @pm_lats_cnt: ARRAY_SIZE() of @pm_lats
c23a97d3 314 * @is_early_device: should the device be registered as an early device or not
b04b65ab
PW
315 *
316 * Convenience function for building and registering a single
317 * omap_device record, which in turn builds and registers a
318 * platform_device record. See omap_device_build_ss() for more
319 * information. Returns ERR_PTR(-EINVAL) if @oh is NULL; otherwise,
320 * passes along the return value of omap_device_build_ss().
321 */
322struct omap_device *omap_device_build(const char *pdev_name, int pdev_id,
323 struct omap_hwmod *oh, void *pdata,
324 int pdata_len,
325 struct omap_device_pm_latency *pm_lats,
c23a97d3 326 int pm_lats_cnt, int is_early_device)
b04b65ab
PW
327{
328 struct omap_hwmod *ohs[] = { oh };
329
330 if (!oh)
331 return ERR_PTR(-EINVAL);
332
333 return omap_device_build_ss(pdev_name, pdev_id, ohs, 1, pdata,
c23a97d3
TG
334 pdata_len, pm_lats, pm_lats_cnt,
335 is_early_device);
b04b65ab
PW
336}
337
338/**
339 * omap_device_build_ss - build and register an omap_device with multiple hwmods
340 * @pdev_name: name of the platform_device driver to use
341 * @pdev_id: this platform_device's connection ID
342 * @oh: ptr to the single omap_hwmod that backs this omap_device
343 * @pdata: platform_data ptr to associate with the platform_device
344 * @pdata_len: amount of memory pointed to by @pdata
345 * @pm_lats: pointer to a omap_device_pm_latency array for this device
346 * @pm_lats_cnt: ARRAY_SIZE() of @pm_lats
c23a97d3 347 * @is_early_device: should the device be registered as an early device or not
b04b65ab
PW
348 *
349 * Convenience function for building and registering an omap_device
350 * subsystem record. Subsystem records consist of multiple
351 * omap_hwmods. This function in turn builds and registers a
352 * platform_device record. Returns an ERR_PTR() on error, or passes
353 * along the return value of omap_device_register().
354 */
355struct omap_device *omap_device_build_ss(const char *pdev_name, int pdev_id,
356 struct omap_hwmod **ohs, int oh_cnt,
357 void *pdata, int pdata_len,
358 struct omap_device_pm_latency *pm_lats,
c23a97d3 359 int pm_lats_cnt, int is_early_device)
b04b65ab
PW
360{
361 int ret = -ENOMEM;
362 struct omap_device *od;
363 char *pdev_name2;
364 struct resource *res = NULL;
06563581 365 int i, res_count;
b04b65ab
PW
366 struct omap_hwmod **hwmods;
367
368 if (!ohs || oh_cnt == 0 || !pdev_name)
369 return ERR_PTR(-EINVAL);
370
371 if (!pdata && pdata_len > 0)
372 return ERR_PTR(-EINVAL);
373
374 pr_debug("omap_device: %s: building with %d hwmods\n", pdev_name,
375 oh_cnt);
376
377 od = kzalloc(sizeof(struct omap_device), GFP_KERNEL);
378 if (!od)
379 return ERR_PTR(-ENOMEM);
380
381 od->hwmods_cnt = oh_cnt;
382
383 hwmods = kzalloc(sizeof(struct omap_hwmod *) * oh_cnt,
384 GFP_KERNEL);
385 if (!hwmods)
386 goto odbs_exit1;
387
388 memcpy(hwmods, ohs, sizeof(struct omap_hwmod *) * oh_cnt);
389 od->hwmods = hwmods;
390
391 pdev_name2 = kzalloc(strlen(pdev_name) + 1, GFP_KERNEL);
392 if (!pdev_name2)
393 goto odbs_exit2;
394 strcpy(pdev_name2, pdev_name);
395
396 od->pdev.name = pdev_name2;
397 od->pdev.id = pdev_id;
398
399 res_count = omap_device_count_resources(od);
400 if (res_count > 0) {
401 res = kzalloc(sizeof(struct resource) * res_count, GFP_KERNEL);
402 if (!res)
403 goto odbs_exit3;
404 }
405 omap_device_fill_resources(od, res);
406
407 od->pdev.num_resources = res_count;
408 od->pdev.resource = res;
409
410 platform_device_add_data(&od->pdev, pdata, pdata_len);
411
412 od->pm_lats = pm_lats;
413 od->pm_lats_cnt = pm_lats_cnt;
414
0007122a
KH
415 od->magic = OMAP_DEVICE_MAGIC;
416
c23a97d3
TG
417 if (is_early_device)
418 ret = omap_early_device_register(od);
419 else
420 ret = omap_device_register(od);
421
06563581
KH
422 for (i = 0; i < oh_cnt; i++)
423 hwmods[i]->od = od;
424
b04b65ab
PW
425 if (ret)
426 goto odbs_exit4;
427
428 return od;
429
430odbs_exit4:
431 kfree(res);
432odbs_exit3:
433 kfree(pdev_name2);
434odbs_exit2:
435 kfree(hwmods);
436odbs_exit1:
437 kfree(od);
438
439 pr_err("omap_device: %s: build failed (%d)\n", pdev_name, ret);
440
441 return ERR_PTR(ret);
442}
443
c23a97d3
TG
444/**
445 * omap_early_device_register - register an omap_device as an early platform
446 * device.
447 * @od: struct omap_device * to register
448 *
449 * Register the omap_device structure. This currently just calls
450 * platform_early_add_device() on the underlying platform_device.
451 * Returns 0 by default.
452 */
453int omap_early_device_register(struct omap_device *od)
454{
455 struct platform_device *devices[1];
456
457 devices[0] = &(od->pdev);
458 early_platform_add_devices(devices, 1);
459 return 0;
460}
461
b04b65ab
PW
462/**
463 * omap_device_register - register an omap_device with one omap_hwmod
464 * @od: struct omap_device * to register
465 *
466 * Register the omap_device structure. This currently just calls
467 * platform_device_register() on the underlying platform_device.
468 * Returns the return value of platform_device_register().
469 */
470int omap_device_register(struct omap_device *od)
471{
472 pr_debug("omap_device: %s: registering\n", od->pdev.name);
473
474 return platform_device_register(&od->pdev);
475}
476
477
478/* Public functions for use by device drivers through struct platform_data */
479
480/**
481 * omap_device_enable - fully activate an omap_device
482 * @od: struct omap_device * to activate
483 *
484 * Do whatever is necessary for the hwmods underlying omap_device @od
485 * to be accessible and ready to operate. This generally involves
486 * enabling clocks, setting SYSCONFIG registers; and in the future may
487 * involve remuxing pins. Device drivers should call this function
488 * (through platform_data function pointers) where they would normally
489 * enable clocks, etc. Returns -EINVAL if called when the omap_device
490 * is already enabled, or passes along the return value of
491 * _omap_device_activate().
492 */
493int omap_device_enable(struct platform_device *pdev)
494{
495 int ret;
496 struct omap_device *od;
497
498 od = _find_by_pdev(pdev);
499
500 if (od->_state == OMAP_DEVICE_STATE_ENABLED) {
24d82e34
KH
501 WARN(1, "omap_device: %s.%d: %s() called from invalid state %d\n",
502 od->pdev.name, od->pdev.id, __func__, od->_state);
b04b65ab
PW
503 return -EINVAL;
504 }
505
506 /* Enable everything if we're enabling this device from scratch */
507 if (od->_state == OMAP_DEVICE_STATE_UNKNOWN)
508 od->pm_lat_level = od->pm_lats_cnt;
509
510 ret = _omap_device_activate(od, IGNORE_WAKEUP_LAT);
511
512 od->dev_wakeup_lat = 0;
5f1b6ef7 513 od->_dev_wakeup_lat_limit = UINT_MAX;
b04b65ab
PW
514 od->_state = OMAP_DEVICE_STATE_ENABLED;
515
516 return ret;
517}
518
519/**
520 * omap_device_idle - idle an omap_device
521 * @od: struct omap_device * to idle
522 *
523 * Idle omap_device @od by calling as many .deactivate_func() entries
524 * in the omap_device's pm_lats table as is possible without exceeding
525 * the device's maximum wakeup latency limit, pm_lat_limit. Device
526 * drivers should call this function (through platform_data function
527 * pointers) where they would normally disable clocks after operations
528 * complete, etc.. Returns -EINVAL if the omap_device is not
529 * currently enabled, or passes along the return value of
530 * _omap_device_deactivate().
531 */
532int omap_device_idle(struct platform_device *pdev)
533{
534 int ret;
535 struct omap_device *od;
536
537 od = _find_by_pdev(pdev);
538
539 if (od->_state != OMAP_DEVICE_STATE_ENABLED) {
24d82e34
KH
540 WARN(1, "omap_device: %s.%d: %s() called from invalid state %d\n",
541 od->pdev.name, od->pdev.id, __func__, od->_state);
b04b65ab
PW
542 return -EINVAL;
543 }
544
545 ret = _omap_device_deactivate(od, USE_WAKEUP_LAT);
546
547 od->_state = OMAP_DEVICE_STATE_IDLE;
548
549 return ret;
550}
551
552/**
553 * omap_device_shutdown - shut down an omap_device
554 * @od: struct omap_device * to shut down
555 *
556 * Shut down omap_device @od by calling all .deactivate_func() entries
557 * in the omap_device's pm_lats table and then shutting down all of
558 * the underlying omap_hwmods. Used when a device is being "removed"
559 * or a device driver is being unloaded. Returns -EINVAL if the
560 * omap_device is not currently enabled or idle, or passes along the
561 * return value of _omap_device_deactivate().
562 */
563int omap_device_shutdown(struct platform_device *pdev)
564{
565 int ret, i;
566 struct omap_device *od;
567 struct omap_hwmod *oh;
568
569 od = _find_by_pdev(pdev);
570
571 if (od->_state != OMAP_DEVICE_STATE_ENABLED &&
572 od->_state != OMAP_DEVICE_STATE_IDLE) {
24d82e34
KH
573 WARN(1, "omap_device: %s.%d: %s() called from invalid state %d\n",
574 od->pdev.name, od->pdev.id, __func__, od->_state);
b04b65ab
PW
575 return -EINVAL;
576 }
577
578 ret = _omap_device_deactivate(od, IGNORE_WAKEUP_LAT);
579
580 for (i = 0, oh = *od->hwmods; i < od->hwmods_cnt; i++, oh++)
581 omap_hwmod_shutdown(oh);
582
583 od->_state = OMAP_DEVICE_STATE_SHUTDOWN;
584
585 return ret;
586}
587
588/**
589 * omap_device_align_pm_lat - activate/deactivate device to match wakeup lat lim
590 * @od: struct omap_device *
591 *
592 * When a device's maximum wakeup latency limit changes, call some of
593 * the .activate_func or .deactivate_func function pointers in the
594 * omap_device's pm_lats array to ensure that the device's maximum
595 * wakeup latency is less than or equal to the new latency limit.
596 * Intended to be called by OMAP PM code whenever a device's maximum
597 * wakeup latency limit changes (e.g., via
598 * omap_pm_set_dev_wakeup_lat()). Returns 0 if nothing needs to be
599 * done (e.g., if the omap_device is not currently idle, or if the
600 * wakeup latency is already current with the new limit) or passes
601 * along the return value of _omap_device_deactivate() or
602 * _omap_device_activate().
603 */
604int omap_device_align_pm_lat(struct platform_device *pdev,
605 u32 new_wakeup_lat_limit)
606{
607 int ret = -EINVAL;
608 struct omap_device *od;
609
610 od = _find_by_pdev(pdev);
611
612 if (new_wakeup_lat_limit == od->dev_wakeup_lat)
613 return 0;
614
615 od->_dev_wakeup_lat_limit = new_wakeup_lat_limit;
616
617 if (od->_state != OMAP_DEVICE_STATE_IDLE)
618 return 0;
619 else if (new_wakeup_lat_limit > od->dev_wakeup_lat)
620 ret = _omap_device_deactivate(od, USE_WAKEUP_LAT);
621 else if (new_wakeup_lat_limit < od->dev_wakeup_lat)
622 ret = _omap_device_activate(od, USE_WAKEUP_LAT);
623
624 return ret;
625}
626
0007122a
KH
627/**
628 * omap_device_is_valid - Check if pointer is a valid omap_device
629 * @od: struct omap_device *
630 *
631 * Return whether struct omap_device pointer @od points to a valid
632 * omap_device.
633 */
634bool omap_device_is_valid(struct omap_device *od)
635{
636 return (od && od->magic == OMAP_DEVICE_MAGIC);
637}
638
b04b65ab
PW
639/**
640 * omap_device_get_pwrdm - return the powerdomain * associated with @od
641 * @od: struct omap_device *
642 *
643 * Return the powerdomain associated with the first underlying
644 * omap_hwmod for this omap_device. Intended for use by core OMAP PM
645 * code. Returns NULL on error or a struct powerdomain * upon
646 * success.
647 */
648struct powerdomain *omap_device_get_pwrdm(struct omap_device *od)
649{
650 /*
651 * XXX Assumes that all omap_hwmod powerdomains are identical.
652 * This may not necessarily be true. There should be a sanity
653 * check in here to WARN() if any difference appears.
654 */
655 if (!od->hwmods_cnt)
656 return NULL;
657
658 return omap_hwmod_get_pwrdm(od->hwmods[0]);
659}
660
db2a60bf
PW
661/**
662 * omap_device_get_mpu_rt_va - return the MPU's virtual addr for the hwmod base
663 * @od: struct omap_device *
664 *
665 * Return the MPU's virtual address for the base of the hwmod, from
666 * the ioremap() that the hwmod code does. Only valid if there is one
667 * hwmod associated with this device. Returns NULL if there are zero
668 * or more than one hwmods associated with this omap_device;
669 * otherwise, passes along the return value from
670 * omap_hwmod_get_mpu_rt_va().
671 */
672void __iomem *omap_device_get_rt_va(struct omap_device *od)
673{
674 if (od->hwmods_cnt != 1)
675 return NULL;
676
677 return omap_hwmod_get_mpu_rt_va(od->hwmods[0]);
678}
679
b04b65ab
PW
680/*
681 * Public functions intended for use in omap_device_pm_latency
682 * .activate_func and .deactivate_func function pointers
683 */
684
685/**
686 * omap_device_enable_hwmods - call omap_hwmod_enable() on all hwmods
687 * @od: struct omap_device *od
688 *
689 * Enable all underlying hwmods. Returns 0.
690 */
691int omap_device_enable_hwmods(struct omap_device *od)
692{
693 struct omap_hwmod *oh;
694 int i;
695
696 for (i = 0, oh = *od->hwmods; i < od->hwmods_cnt; i++, oh++)
697 omap_hwmod_enable(oh);
698
699 /* XXX pass along return value here? */
700 return 0;
701}
702
703/**
704 * omap_device_idle_hwmods - call omap_hwmod_idle() on all hwmods
705 * @od: struct omap_device *od
706 *
707 * Idle all underlying hwmods. Returns 0.
708 */
709int omap_device_idle_hwmods(struct omap_device *od)
710{
711 struct omap_hwmod *oh;
712 int i;
713
714 for (i = 0, oh = *od->hwmods; i < od->hwmods_cnt; i++, oh++)
715 omap_hwmod_idle(oh);
716
717 /* XXX pass along return value here? */
718 return 0;
719}
720
721/**
722 * omap_device_disable_clocks - disable all main and interface clocks
723 * @od: struct omap_device *od
724 *
725 * Disable the main functional clock and interface clock for all of the
726 * omap_hwmods associated with the omap_device. Returns 0.
727 */
728int omap_device_disable_clocks(struct omap_device *od)
729{
730 struct omap_hwmod *oh;
731 int i;
732
733 for (i = 0, oh = *od->hwmods; i < od->hwmods_cnt; i++, oh++)
734 omap_hwmod_disable_clocks(oh);
735
736 /* XXX pass along return value here? */
737 return 0;
738}
739
740/**
741 * omap_device_enable_clocks - enable all main and interface clocks
742 * @od: struct omap_device *od
743 *
744 * Enable the main functional clock and interface clock for all of the
745 * omap_hwmods associated with the omap_device. Returns 0.
746 */
747int omap_device_enable_clocks(struct omap_device *od)
748{
749 struct omap_hwmod *oh;
750 int i;
751
752 for (i = 0, oh = *od->hwmods; i < od->hwmods_cnt; i++, oh++)
753 omap_hwmod_enable_clocks(oh);
754
755 /* XXX pass along return value here? */
756 return 0;
757}
This page took 0.111541 seconds and 5 git commands to generate.