blob: be45147651cbb269ed46c304c64db23d783720f2 [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
117 pr_debug("omap_device: %s: activating\n", od->pdev.name);
118
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
141 pr_debug("omap_device: %s: pm_lat %d: activate: elapsed time "
Kevin Hilman0d93d8b2009-12-08 16:34:26 -0700142 "%llu nsec\n", od->pdev.name, od->pm_lat_level,
Tony Lindgrenf0594292009-10-19 15:25:24 -0700143 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;
149 pr_warning("omap_device: %s.%d: new worst case "
150 "activate latency %d: %llu\n",
151 od->pdev.name, od->pdev.id,
152 od->pm_lat_level, act_lat);
153 } else
154 pr_warning("omap_device: %s.%d: activate "
155 "latency %d higher than exptected. "
156 "(%llu > %d)\n",
157 od->pdev.name, od->pdev.id,
158 od->pm_lat_level, act_lat,
159 odpl->activate_lat);
160 }
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300161
162 od->dev_wakeup_lat -= odpl->activate_lat;
163 }
164
165 return 0;
166}
167
168/**
169 * _omap_device_deactivate - decrease device readiness
170 * @od: struct omap_device *
171 * @ignore_lat: decrease to latency target (0) or full inactivity (1)?
172 *
173 * Decrease readiness of omap_device @od (thus increasing device
174 * wakeup latency, but conserving power). If @ignore_lat is
175 * IGNORE_WAKEUP_LAT, make the omap_device fully inactive. Otherwise,
176 * if @ignore_lat is USE_WAKEUP_LAT, and the device's maximum wakeup
177 * latency is less than the requested maximum wakeup latency, step
178 * forwards in the omap_device_pm_latency table to ensure the device's
179 * maximum wakeup latency is less than or equal to the requested
180 * maximum wakeup latency. Returns 0.
181 */
182static int _omap_device_deactivate(struct omap_device *od, u8 ignore_lat)
183{
Tony Lindgrenf0594292009-10-19 15:25:24 -0700184 struct timespec a, b, c;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300185
186 pr_debug("omap_device: %s: deactivating\n", od->pdev.name);
187
188 while (od->pm_lat_level < od->pm_lats_cnt) {
189 struct omap_device_pm_latency *odpl;
Tony Lindgrenf0594292009-10-19 15:25:24 -0700190 unsigned long long deact_lat = 0;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300191
192 odpl = od->pm_lats + od->pm_lat_level;
193
194 if (!ignore_lat &&
195 ((od->dev_wakeup_lat + odpl->activate_lat) >
196 od->_dev_wakeup_lat_limit))
197 break;
198
Kevin Hilmand2292662009-12-08 16:34:23 -0700199 read_persistent_clock(&a);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300200
201 /* XXX check return code */
202 odpl->deactivate_func(od);
203
Kevin Hilmand2292662009-12-08 16:34:23 -0700204 read_persistent_clock(&b);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300205
Tony Lindgrenf0594292009-10-19 15:25:24 -0700206 c = timespec_sub(b, a);
Kevin Hilman0d93d8b2009-12-08 16:34:26 -0700207 deact_lat = timespec_to_ns(&c);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300208
209 pr_debug("omap_device: %s: pm_lat %d: deactivate: elapsed time "
Kevin Hilman0d93d8b2009-12-08 16:34:26 -0700210 "%llu nsec\n", od->pdev.name, od->pm_lat_level,
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300211 deact_lat);
212
Kevin Hilman9799aca2010-01-26 20:13:02 -0700213 if (deact_lat > odpl->deactivate_lat) {
214 odpl->deactivate_lat_worst = deact_lat;
215 if (odpl->flags & OMAP_DEVICE_LATENCY_AUTO_ADJUST) {
216 odpl->deactivate_lat = deact_lat;
217 pr_warning("omap_device: %s.%d: new worst case "
218 "deactivate latency %d: %llu\n",
219 od->pdev.name, od->pdev.id,
220 od->pm_lat_level, deact_lat);
221 } else
222 pr_warning("omap_device: %s.%d: deactivate "
223 "latency %d higher than exptected. "
224 "(%llu > %d)\n",
225 od->pdev.name, od->pdev.id,
226 od->pm_lat_level, deact_lat,
227 odpl->deactivate_lat);
228 }
229
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300230
231 od->dev_wakeup_lat += odpl->activate_lat;
232
233 od->pm_lat_level++;
234 }
235
236 return 0;
237}
238
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600239static void _add_clkdev(struct omap_device *od, const char *clk_alias,
240 const char *clk_name)
241{
242 struct clk *r;
243 struct clk_lookup *l;
244
245 if (!clk_alias || !clk_name)
246 return;
247
248 pr_debug("omap_device: %s: Creating %s -> %s\n",
249 dev_name(&od->pdev.dev), clk_alias, clk_name);
250
251 r = clk_get_sys(dev_name(&od->pdev.dev), clk_alias);
252 if (!IS_ERR(r)) {
253 pr_warning("omap_device: %s: alias %s already exists\n",
254 dev_name(&od->pdev.dev), clk_alias);
255 clk_put(r);
256 return;
257 }
258
259 r = omap_clk_get_by_name(clk_name);
260 if (IS_ERR(r)) {
261 pr_err("omap_device: %s: omap_clk_get_by_name for %s failed\n",
262 dev_name(&od->pdev.dev), clk_name);
263 return;
264 }
265
266 l = clkdev_alloc(r, clk_alias, dev_name(&od->pdev.dev));
267 if (!l) {
268 pr_err("omap_device: %s: clkdev_alloc for %s failed\n",
269 dev_name(&od->pdev.dev), clk_alias);
270 return;
271 }
272
273 clkdev_add(l);
274}
275
Partha Basak4ef7aca2010-09-21 19:23:04 +0200276/**
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600277 * _add_hwmod_clocks_clkdev - Add clkdev entry for hwmod optional clocks
278 * and main clock
Partha Basak4ef7aca2010-09-21 19:23:04 +0200279 * @od: struct omap_device *od
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600280 * @oh: struct omap_hwmod *oh
Partha Basak4ef7aca2010-09-21 19:23:04 +0200281 *
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600282 * For the main clock and every optional clock present per hwmod per
283 * omap_device, this function adds an entry in the clkdev table of the
284 * form <dev-id=dev_name, con-id=role> if it does not exist already.
Partha Basak4ef7aca2010-09-21 19:23:04 +0200285 *
286 * The function is called from inside omap_device_build_ss(), after
287 * omap_device_register.
288 *
289 * This allows drivers to get a pointer to its optional clocks based on its role
290 * by calling clk_get(<dev*>, <role>).
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600291 * In the case of the main clock, a "fck" alias is used.
Partha Basak4ef7aca2010-09-21 19:23:04 +0200292 *
293 * No return value.
294 */
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600295static void _add_hwmod_clocks_clkdev(struct omap_device *od,
296 struct omap_hwmod *oh)
Partha Basak4ef7aca2010-09-21 19:23:04 +0200297{
298 int i;
299
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600300 _add_clkdev(od, "fck", oh->main_clk);
Partha Basak4ef7aca2010-09-21 19:23:04 +0200301
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600302 for (i = 0; i < oh->opt_clks_cnt; i++)
303 _add_clkdev(od, oh->opt_clks[i].role, oh->opt_clks[i].clk);
Partha Basak4ef7aca2010-09-21 19:23:04 +0200304}
305
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300306
307/* Public functions for use by core code */
308
309/**
Kevin Hilmanc80705a2010-12-21 21:31:55 -0700310 * omap_device_get_context_loss_count - get lost context count
311 * @od: struct omap_device *
312 *
313 * Using the primary hwmod, query the context loss count for this
314 * device.
315 *
316 * Callers should consider context for this device lost any time this
317 * function returns a value different than the value the caller got
318 * the last time it called this function.
319 *
320 * If any hwmods exist for the omap_device assoiated with @pdev,
321 * return the context loss counter for that hwmod, otherwise return
322 * zero.
323 */
324u32 omap_device_get_context_loss_count(struct platform_device *pdev)
325{
326 struct omap_device *od;
327 u32 ret = 0;
328
Kevin Hilman8f0d69d2011-07-09 19:15:20 -0600329 od = to_omap_device(pdev);
Kevin Hilmanc80705a2010-12-21 21:31:55 -0700330
331 if (od->hwmods_cnt)
332 ret = omap_hwmod_get_context_loss_count(od->hwmods[0]);
333
334 return ret;
335}
336
337/**
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300338 * omap_device_count_resources - count number of struct resource entries needed
339 * @od: struct omap_device *
340 *
341 * Count the number of struct resource entries needed for this
342 * omap_device @od. Used by omap_device_build_ss() to determine how
343 * much memory to allocate before calling
344 * omap_device_fill_resources(). Returns the count.
345 */
346int omap_device_count_resources(struct omap_device *od)
347{
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300348 int c = 0;
349 int i;
350
Kishon Vijay Abraham If39f4892010-09-24 10:23:18 -0600351 for (i = 0; i < od->hwmods_cnt; i++)
352 c += omap_hwmod_count_resources(od->hwmods[i]);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300353
354 pr_debug("omap_device: %s: counted %d total resources across %d "
355 "hwmods\n", od->pdev.name, c, od->hwmods_cnt);
356
357 return c;
358}
359
360/**
361 * omap_device_fill_resources - fill in array of struct resource
362 * @od: struct omap_device *
363 * @res: pointer to an array of struct resource to be filled in
364 *
365 * Populate one or more empty struct resource pointed to by @res with
366 * the resource data for this omap_device @od. Used by
367 * omap_device_build_ss() after calling omap_device_count_resources().
368 * Ideally this function would not be needed at all. If omap_device
369 * replaces platform_device, then we can specify our own
370 * get_resource()/ get_irq()/etc functions that use the underlying
371 * omap_hwmod information. Or if platform_device is extended to use
372 * subarchitecture-specific function pointers, the various
373 * platform_device functions can simply call omap_device internal
374 * functions to get device resources. Hacking around the existing
375 * platform_device code wastes memory. Returns 0.
376 */
377int omap_device_fill_resources(struct omap_device *od, struct resource *res)
378{
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300379 int c = 0;
380 int i, r;
381
Kishon Vijay Abraham If39f4892010-09-24 10:23:18 -0600382 for (i = 0; i < od->hwmods_cnt; i++) {
383 r = omap_hwmod_fill_resources(od->hwmods[i], res);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300384 res += r;
385 c += r;
386 }
387
388 return 0;
389}
390
391/**
392 * omap_device_build - build and register an omap_device with one omap_hwmod
393 * @pdev_name: name of the platform_device driver to use
394 * @pdev_id: this platform_device's connection ID
395 * @oh: ptr to the single omap_hwmod that backs this omap_device
396 * @pdata: platform_data ptr to associate with the platform_device
397 * @pdata_len: amount of memory pointed to by @pdata
398 * @pm_lats: pointer to a omap_device_pm_latency array for this device
399 * @pm_lats_cnt: ARRAY_SIZE() of @pm_lats
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700400 * @is_early_device: should the device be registered as an early device or not
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300401 *
402 * Convenience function for building and registering a single
403 * omap_device record, which in turn builds and registers a
404 * platform_device record. See omap_device_build_ss() for more
405 * information. Returns ERR_PTR(-EINVAL) if @oh is NULL; otherwise,
406 * passes along the return value of omap_device_build_ss().
407 */
408struct omap_device *omap_device_build(const char *pdev_name, int pdev_id,
409 struct omap_hwmod *oh, void *pdata,
410 int pdata_len,
411 struct omap_device_pm_latency *pm_lats,
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700412 int pm_lats_cnt, int is_early_device)
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300413{
414 struct omap_hwmod *ohs[] = { oh };
415
416 if (!oh)
417 return ERR_PTR(-EINVAL);
418
419 return omap_device_build_ss(pdev_name, pdev_id, ohs, 1, pdata,
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700420 pdata_len, pm_lats, pm_lats_cnt,
421 is_early_device);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300422}
423
424/**
425 * omap_device_build_ss - build and register an omap_device with multiple hwmods
426 * @pdev_name: name of the platform_device driver to use
427 * @pdev_id: this platform_device's connection ID
428 * @oh: ptr to the single omap_hwmod that backs this omap_device
429 * @pdata: platform_data ptr to associate with the platform_device
430 * @pdata_len: amount of memory pointed to by @pdata
431 * @pm_lats: pointer to a omap_device_pm_latency array for this device
432 * @pm_lats_cnt: ARRAY_SIZE() of @pm_lats
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700433 * @is_early_device: should the device be registered as an early device or not
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300434 *
435 * Convenience function for building and registering an omap_device
436 * subsystem record. Subsystem records consist of multiple
437 * omap_hwmods. This function in turn builds and registers a
438 * platform_device record. Returns an ERR_PTR() on error, or passes
439 * along the return value of omap_device_register().
440 */
441struct omap_device *omap_device_build_ss(const char *pdev_name, int pdev_id,
442 struct omap_hwmod **ohs, int oh_cnt,
443 void *pdata, int pdata_len,
444 struct omap_device_pm_latency *pm_lats,
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700445 int pm_lats_cnt, int is_early_device)
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300446{
447 int ret = -ENOMEM;
448 struct omap_device *od;
449 char *pdev_name2;
450 struct resource *res = NULL;
Kevin Hilman06563582010-07-26 16:34:30 -0600451 int i, res_count;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300452 struct omap_hwmod **hwmods;
453
454 if (!ohs || oh_cnt == 0 || !pdev_name)
455 return ERR_PTR(-EINVAL);
456
457 if (!pdata && pdata_len > 0)
458 return ERR_PTR(-EINVAL);
459
460 pr_debug("omap_device: %s: building with %d hwmods\n", pdev_name,
461 oh_cnt);
462
463 od = kzalloc(sizeof(struct omap_device), GFP_KERNEL);
464 if (!od)
465 return ERR_PTR(-ENOMEM);
466
467 od->hwmods_cnt = oh_cnt;
468
469 hwmods = kzalloc(sizeof(struct omap_hwmod *) * oh_cnt,
470 GFP_KERNEL);
471 if (!hwmods)
472 goto odbs_exit1;
473
474 memcpy(hwmods, ohs, sizeof(struct omap_hwmod *) * oh_cnt);
475 od->hwmods = hwmods;
476
477 pdev_name2 = kzalloc(strlen(pdev_name) + 1, GFP_KERNEL);
478 if (!pdev_name2)
479 goto odbs_exit2;
480 strcpy(pdev_name2, pdev_name);
481
482 od->pdev.name = pdev_name2;
483 od->pdev.id = pdev_id;
484
485 res_count = omap_device_count_resources(od);
486 if (res_count > 0) {
487 res = kzalloc(sizeof(struct resource) * res_count, GFP_KERNEL);
488 if (!res)
489 goto odbs_exit3;
490 }
491 omap_device_fill_resources(od, res);
492
493 od->pdev.num_resources = res_count;
494 od->pdev.resource = res;
495
Artem Bityutskiy49b368a2010-07-12 13:38:07 +0000496 ret = platform_device_add_data(&od->pdev, pdata, pdata_len);
497 if (ret)
498 goto odbs_exit4;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300499
500 od->pm_lats = pm_lats;
501 od->pm_lats_cnt = pm_lats_cnt;
502
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700503 if (is_early_device)
504 ret = omap_early_device_register(od);
505 else
506 ret = omap_device_register(od);
507
Partha Basak4ef7aca2010-09-21 19:23:04 +0200508 for (i = 0; i < oh_cnt; i++) {
Kevin Hilman06563582010-07-26 16:34:30 -0600509 hwmods[i]->od = od;
Benoit Coussonbf1e0772011-07-10 05:54:12 -0600510 _add_hwmod_clocks_clkdev(od, hwmods[i]);
Partha Basak4ef7aca2010-09-21 19:23:04 +0200511 }
Kevin Hilman06563582010-07-26 16:34:30 -0600512
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300513 if (ret)
514 goto odbs_exit4;
515
516 return od;
517
518odbs_exit4:
519 kfree(res);
520odbs_exit3:
521 kfree(pdev_name2);
522odbs_exit2:
523 kfree(hwmods);
524odbs_exit1:
525 kfree(od);
526
527 pr_err("omap_device: %s: build failed (%d)\n", pdev_name, ret);
528
529 return ERR_PTR(ret);
530}
531
532/**
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700533 * omap_early_device_register - register an omap_device as an early platform
534 * device.
535 * @od: struct omap_device * to register
536 *
537 * Register the omap_device structure. This currently just calls
538 * platform_early_add_device() on the underlying platform_device.
539 * Returns 0 by default.
540 */
541int omap_early_device_register(struct omap_device *od)
542{
543 struct platform_device *devices[1];
544
545 devices[0] = &(od->pdev);
546 early_platform_add_devices(devices, 1);
547 return 0;
548}
549
Kevin Hilman638080c2011-04-29 00:36:42 +0200550static int _od_runtime_suspend(struct device *dev)
551{
552 struct platform_device *pdev = to_platform_device(dev);
Kevin Hilman345f79b2011-05-31 16:08:09 -0700553 int ret;
Kevin Hilman638080c2011-04-29 00:36:42 +0200554
Kevin Hilman345f79b2011-05-31 16:08:09 -0700555 ret = pm_generic_runtime_suspend(dev);
556
557 if (!ret)
558 omap_device_idle(pdev);
559
560 return ret;
561}
562
563static int _od_runtime_idle(struct device *dev)
564{
565 return pm_generic_runtime_idle(dev);
Kevin Hilman638080c2011-04-29 00:36:42 +0200566}
567
568static int _od_runtime_resume(struct device *dev)
569{
570 struct platform_device *pdev = to_platform_device(dev);
571
Kevin Hilman345f79b2011-05-31 16:08:09 -0700572 omap_device_enable(pdev);
573
574 return pm_generic_runtime_resume(dev);
Kevin Hilman638080c2011-04-29 00:36:42 +0200575}
576
577static struct dev_power_domain omap_device_power_domain = {
578 .ops = {
579 .runtime_suspend = _od_runtime_suspend,
Kevin Hilman345f79b2011-05-31 16:08:09 -0700580 .runtime_idle = _od_runtime_idle,
Kevin Hilman638080c2011-04-29 00:36:42 +0200581 .runtime_resume = _od_runtime_resume,
582 USE_PLATFORM_PM_SLEEP_OPS
583 }
584};
585
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700586/**
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300587 * omap_device_register - register an omap_device with one omap_hwmod
588 * @od: struct omap_device * to register
589 *
590 * Register the omap_device structure. This currently just calls
591 * platform_device_register() on the underlying platform_device.
592 * Returns the return value of platform_device_register().
593 */
594int omap_device_register(struct omap_device *od)
595{
596 pr_debug("omap_device: %s: registering\n", od->pdev.name);
597
Kevin Hilman0d5e8252010-08-23 08:10:55 -0700598 od->pdev.dev.parent = &omap_device_parent;
Kevin Hilman638080c2011-04-29 00:36:42 +0200599 od->pdev.dev.pwr_domain = &omap_device_power_domain;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300600 return platform_device_register(&od->pdev);
601}
602
603
604/* Public functions for use by device drivers through struct platform_data */
605
606/**
607 * omap_device_enable - fully activate an omap_device
608 * @od: struct omap_device * to activate
609 *
610 * Do whatever is necessary for the hwmods underlying omap_device @od
611 * to be accessible and ready to operate. This generally involves
612 * enabling clocks, setting SYSCONFIG registers; and in the future may
613 * involve remuxing pins. Device drivers should call this function
614 * (through platform_data function pointers) where they would normally
615 * enable clocks, etc. Returns -EINVAL if called when the omap_device
616 * is already enabled, or passes along the return value of
617 * _omap_device_activate().
618 */
619int omap_device_enable(struct platform_device *pdev)
620{
621 int ret;
622 struct omap_device *od;
623
Kevin Hilman8f0d69d2011-07-09 19:15:20 -0600624 od = to_omap_device(pdev);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300625
626 if (od->_state == OMAP_DEVICE_STATE_ENABLED) {
Kevin Hilman24d82e32010-02-24 12:05:45 -0700627 WARN(1, "omap_device: %s.%d: %s() called from invalid state %d\n",
628 od->pdev.name, od->pdev.id, __func__, od->_state);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300629 return -EINVAL;
630 }
631
632 /* Enable everything if we're enabling this device from scratch */
633 if (od->_state == OMAP_DEVICE_STATE_UNKNOWN)
634 od->pm_lat_level = od->pm_lats_cnt;
635
636 ret = _omap_device_activate(od, IGNORE_WAKEUP_LAT);
637
638 od->dev_wakeup_lat = 0;
Kevin Hilman5f1b6ef2009-12-08 16:34:22 -0700639 od->_dev_wakeup_lat_limit = UINT_MAX;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300640 od->_state = OMAP_DEVICE_STATE_ENABLED;
641
642 return ret;
643}
644
645/**
646 * omap_device_idle - idle an omap_device
647 * @od: struct omap_device * to idle
648 *
649 * Idle omap_device @od by calling as many .deactivate_func() entries
650 * in the omap_device's pm_lats table as is possible without exceeding
651 * the device's maximum wakeup latency limit, pm_lat_limit. Device
652 * drivers should call this function (through platform_data function
653 * pointers) where they would normally disable clocks after operations
654 * complete, etc.. Returns -EINVAL if the omap_device is not
655 * currently enabled, or passes along the return value of
656 * _omap_device_deactivate().
657 */
658int omap_device_idle(struct platform_device *pdev)
659{
660 int ret;
661 struct omap_device *od;
662
Kevin Hilman8f0d69d2011-07-09 19:15:20 -0600663 od = to_omap_device(pdev);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300664
665 if (od->_state != OMAP_DEVICE_STATE_ENABLED) {
Kevin Hilman24d82e32010-02-24 12:05:45 -0700666 WARN(1, "omap_device: %s.%d: %s() called from invalid state %d\n",
667 od->pdev.name, od->pdev.id, __func__, od->_state);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300668 return -EINVAL;
669 }
670
671 ret = _omap_device_deactivate(od, USE_WAKEUP_LAT);
672
673 od->_state = OMAP_DEVICE_STATE_IDLE;
674
675 return ret;
676}
677
678/**
679 * omap_device_shutdown - shut down an omap_device
680 * @od: struct omap_device * to shut down
681 *
682 * Shut down omap_device @od by calling all .deactivate_func() entries
683 * in the omap_device's pm_lats table and then shutting down all of
684 * the underlying omap_hwmods. Used when a device is being "removed"
685 * or a device driver is being unloaded. Returns -EINVAL if the
686 * omap_device is not currently enabled or idle, or passes along the
687 * return value of _omap_device_deactivate().
688 */
689int omap_device_shutdown(struct platform_device *pdev)
690{
691 int ret, i;
692 struct omap_device *od;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300693
Kevin Hilman8f0d69d2011-07-09 19:15:20 -0600694 od = to_omap_device(pdev);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300695
696 if (od->_state != OMAP_DEVICE_STATE_ENABLED &&
697 od->_state != OMAP_DEVICE_STATE_IDLE) {
Kevin Hilman24d82e32010-02-24 12:05:45 -0700698 WARN(1, "omap_device: %s.%d: %s() called from invalid state %d\n",
699 od->pdev.name, od->pdev.id, __func__, od->_state);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300700 return -EINVAL;
701 }
702
703 ret = _omap_device_deactivate(od, IGNORE_WAKEUP_LAT);
704
Kishon Vijay Abraham If39f4892010-09-24 10:23:18 -0600705 for (i = 0; i < od->hwmods_cnt; i++)
706 omap_hwmod_shutdown(od->hwmods[i]);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300707
708 od->_state = OMAP_DEVICE_STATE_SHUTDOWN;
709
710 return ret;
711}
712
713/**
714 * omap_device_align_pm_lat - activate/deactivate device to match wakeup lat lim
715 * @od: struct omap_device *
716 *
717 * When a device's maximum wakeup latency limit changes, call some of
718 * the .activate_func or .deactivate_func function pointers in the
719 * omap_device's pm_lats array to ensure that the device's maximum
720 * wakeup latency is less than or equal to the new latency limit.
721 * Intended to be called by OMAP PM code whenever a device's maximum
722 * wakeup latency limit changes (e.g., via
723 * omap_pm_set_dev_wakeup_lat()). Returns 0 if nothing needs to be
724 * done (e.g., if the omap_device is not currently idle, or if the
725 * wakeup latency is already current with the new limit) or passes
726 * along the return value of _omap_device_deactivate() or
727 * _omap_device_activate().
728 */
729int omap_device_align_pm_lat(struct platform_device *pdev,
730 u32 new_wakeup_lat_limit)
731{
732 int ret = -EINVAL;
733 struct omap_device *od;
734
Kevin Hilman8f0d69d2011-07-09 19:15:20 -0600735 od = to_omap_device(pdev);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300736
737 if (new_wakeup_lat_limit == od->dev_wakeup_lat)
738 return 0;
739
740 od->_dev_wakeup_lat_limit = new_wakeup_lat_limit;
741
742 if (od->_state != OMAP_DEVICE_STATE_IDLE)
743 return 0;
744 else if (new_wakeup_lat_limit > od->dev_wakeup_lat)
745 ret = _omap_device_deactivate(od, USE_WAKEUP_LAT);
746 else if (new_wakeup_lat_limit < od->dev_wakeup_lat)
747 ret = _omap_device_activate(od, USE_WAKEUP_LAT);
748
749 return ret;
750}
751
752/**
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300753 * omap_device_get_pwrdm - return the powerdomain * associated with @od
754 * @od: struct omap_device *
755 *
756 * Return the powerdomain associated with the first underlying
757 * omap_hwmod for this omap_device. Intended for use by core OMAP PM
758 * code. Returns NULL on error or a struct powerdomain * upon
759 * success.
760 */
761struct powerdomain *omap_device_get_pwrdm(struct omap_device *od)
762{
763 /*
764 * XXX Assumes that all omap_hwmod powerdomains are identical.
765 * This may not necessarily be true. There should be a sanity
766 * check in here to WARN() if any difference appears.
767 */
768 if (!od->hwmods_cnt)
769 return NULL;
770
771 return omap_hwmod_get_pwrdm(od->hwmods[0]);
772}
773
Paul Walmsleydb2a60b2010-07-26 16:34:33 -0600774/**
775 * omap_device_get_mpu_rt_va - return the MPU's virtual addr for the hwmod base
776 * @od: struct omap_device *
777 *
778 * Return the MPU's virtual address for the base of the hwmod, from
779 * the ioremap() that the hwmod code does. Only valid if there is one
780 * hwmod associated with this device. Returns NULL if there are zero
781 * or more than one hwmods associated with this omap_device;
782 * otherwise, passes along the return value from
783 * omap_hwmod_get_mpu_rt_va().
784 */
785void __iomem *omap_device_get_rt_va(struct omap_device *od)
786{
787 if (od->hwmods_cnt != 1)
788 return NULL;
789
790 return omap_hwmod_get_mpu_rt_va(od->hwmods[0]);
791}
792
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300793/*
794 * Public functions intended for use in omap_device_pm_latency
795 * .activate_func and .deactivate_func function pointers
796 */
797
798/**
799 * omap_device_enable_hwmods - call omap_hwmod_enable() on all hwmods
800 * @od: struct omap_device *od
801 *
802 * Enable all underlying hwmods. Returns 0.
803 */
804int omap_device_enable_hwmods(struct omap_device *od)
805{
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300806 int i;
807
Kishon Vijay Abraham If39f4892010-09-24 10:23:18 -0600808 for (i = 0; i < od->hwmods_cnt; i++)
809 omap_hwmod_enable(od->hwmods[i]);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300810
811 /* XXX pass along return value here? */
812 return 0;
813}
814
815/**
816 * omap_device_idle_hwmods - call omap_hwmod_idle() on all hwmods
817 * @od: struct omap_device *od
818 *
819 * Idle all underlying hwmods. Returns 0.
820 */
821int omap_device_idle_hwmods(struct omap_device *od)
822{
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300823 int i;
824
Kishon Vijay Abraham If39f4892010-09-24 10:23:18 -0600825 for (i = 0; i < od->hwmods_cnt; i++)
826 omap_hwmod_idle(od->hwmods[i]);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300827
828 /* XXX pass along return value here? */
829 return 0;
830}
831
832/**
833 * omap_device_disable_clocks - disable all main and interface clocks
834 * @od: struct omap_device *od
835 *
836 * Disable the main functional clock and interface clock for all of the
837 * omap_hwmods associated with the omap_device. Returns 0.
838 */
839int omap_device_disable_clocks(struct omap_device *od)
840{
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300841 int i;
842
Kishon Vijay Abraham If39f4892010-09-24 10:23:18 -0600843 for (i = 0; i < od->hwmods_cnt; i++)
844 omap_hwmod_disable_clocks(od->hwmods[i]);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300845
846 /* XXX pass along return value here? */
847 return 0;
848}
849
850/**
851 * omap_device_enable_clocks - enable all main and interface clocks
852 * @od: struct omap_device *od
853 *
854 * Enable the main functional clock and interface clock for all of the
855 * omap_hwmods associated with the omap_device. Returns 0.
856 */
857int omap_device_enable_clocks(struct omap_device *od)
858{
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300859 int i;
860
Kishon Vijay Abraham If39f4892010-09-24 10:23:18 -0600861 for (i = 0; i < od->hwmods_cnt; i++)
862 omap_hwmod_enable_clocks(od->hwmods[i]);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300863
864 /* XXX pass along return value here? */
865 return 0;
866}
Kevin Hilman0d5e8252010-08-23 08:10:55 -0700867
868struct device omap_device_parent = {
869 .init_name = "omap",
870 .parent = &platform_bus,
871};
872
873static int __init omap_device_init(void)
874{
875 return device_register(&omap_device_parent);
876}
877core_initcall(omap_device_init);