blob: e4c349ff9fd8ef1a77e071db608a2c75610ecc38 [file] [log] [blame]
Paul Walmsleyb04b65a2009-09-03 20:14:05 +03001/*
2 * omap_device headers
3 *
4 * Copyright (C) 2009 Nokia Corporation
5 * Paul Walmsley
6 *
7 * Developed in collaboration with (alphabetical order): Benoit
8 * Cousson, Kevin Hilman, Tony Lindgren, Rajendra Nayak, Vikram
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 * Eventually this type of functionality should either be
17 * a) implemented via arch-specific pointers in platform_device
18 * or
19 * b) implemented as a proper omap_bus/omap_device in Linux, no more
20 * platform_device
21 *
22 * omap_device differs from omap_hwmod in that it includes external
23 * (e.g., board- and system-level) integration details. omap_hwmod
24 * stores hardware data that is invariant for a given OMAP chip.
25 *
26 * To do:
27 * - GPIO integration
28 * - regulator integration
29 *
30 */
31#ifndef __ARCH_ARM_PLAT_OMAP_INCLUDE_MACH_OMAP_DEVICE_H
32#define __ARCH_ARM_PLAT_OMAP_INCLUDE_MACH_OMAP_DEVICE_H
33
34#include <linux/kernel.h>
35#include <linux/platform_device.h>
36
Tony Lindgrence491cf2009-10-20 09:40:47 -070037#include <plat/omap_hwmod.h>
Paul Walmsleyb04b65a2009-09-03 20:14:05 +030038
Kevin Hilman0d5e8252010-08-23 08:10:55 -070039extern struct device omap_device_parent;
40
Paul Walmsleyb04b65a2009-09-03 20:14:05 +030041/* omap_device._state values */
42#define OMAP_DEVICE_STATE_UNKNOWN 0
43#define OMAP_DEVICE_STATE_ENABLED 1
44#define OMAP_DEVICE_STATE_IDLE 2
45#define OMAP_DEVICE_STATE_SHUTDOWN 3
46
47/**
48 * struct omap_device - omap_device wrapper for platform_devices
49 * @pdev: platform_device
50 * @hwmods: (one .. many per omap_device)
51 * @hwmods_cnt: ARRAY_SIZE() of @hwmods
52 * @pm_lats: ptr to an omap_device_pm_latency table
53 * @pm_lats_cnt: ARRAY_SIZE() of what is passed to @pm_lats
54 * @pm_lat_level: array index of the last odpl entry executed - -1 if never
Kevin Hilman0d93d8b2009-12-08 16:34:26 -070055 * @dev_wakeup_lat: dev wakeup latency in nanoseconds
56 * @_dev_wakeup_lat_limit: dev wakeup latency limit in nsec - set by OMAP PM
Paul Walmsleyb04b65a2009-09-03 20:14:05 +030057 * @_state: one of OMAP_DEVICE_STATE_* (see above)
58 * @flags: device flags
59 *
60 * Integrates omap_hwmod data into Linux platform_device.
61 *
62 * Field names beginning with underscores are for the internal use of
63 * the omap_device code.
64 *
65 */
66struct omap_device {
67 struct platform_device pdev;
68 struct omap_hwmod **hwmods;
69 struct omap_device_pm_latency *pm_lats;
70 u32 dev_wakeup_lat;
71 u32 _dev_wakeup_lat_limit;
72 u8 pm_lats_cnt;
73 s8 pm_lat_level;
74 u8 hwmods_cnt;
75 u8 _state;
76};
77
78/* Device driver interface (call via platform_data fn ptrs) */
79
80int omap_device_enable(struct platform_device *pdev);
81int omap_device_idle(struct platform_device *pdev);
82int omap_device_shutdown(struct platform_device *pdev);
83
84/* Core code interface */
85
86int omap_device_count_resources(struct omap_device *od);
87int omap_device_fill_resources(struct omap_device *od, struct resource *res);
88
89struct omap_device *omap_device_build(const char *pdev_name, int pdev_id,
90 struct omap_hwmod *oh, void *pdata,
91 int pdata_len,
92 struct omap_device_pm_latency *pm_lats,
Thara Gopinathc23a97d2010-02-24 12:05:58 -070093 int pm_lats_cnt, int is_early_device);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +030094
95struct omap_device *omap_device_build_ss(const char *pdev_name, int pdev_id,
96 struct omap_hwmod **oh, int oh_cnt,
97 void *pdata, int pdata_len,
98 struct omap_device_pm_latency *pm_lats,
Thara Gopinathc23a97d2010-02-24 12:05:58 -070099 int pm_lats_cnt, int is_early_device);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300100
101int omap_device_register(struct omap_device *od);
Thara Gopinathc23a97d2010-02-24 12:05:58 -0700102int omap_early_device_register(struct omap_device *od);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300103
Paul Walmsleydb2a60b2010-07-26 16:34:33 -0600104void __iomem *omap_device_get_rt_va(struct omap_device *od);
105
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300106/* OMAP PM interface */
107int omap_device_align_pm_lat(struct platform_device *pdev,
108 u32 new_wakeup_lat_limit);
109struct powerdomain *omap_device_get_pwrdm(struct omap_device *od);
Kevin Hilmanc80705a2010-12-21 21:31:55 -0700110u32 omap_device_get_context_loss_count(struct platform_device *pdev);
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300111
112/* Other */
113
114int omap_device_idle_hwmods(struct omap_device *od);
115int omap_device_enable_hwmods(struct omap_device *od);
116
117int omap_device_disable_clocks(struct omap_device *od);
118int omap_device_enable_clocks(struct omap_device *od);
119
120
121/*
122 * Entries should be kept in latency order ascending
123 *
124 * deact_lat is the maximum number of microseconds required to complete
125 * deactivate_func() at the device's slowest OPP.
126 *
127 * act_lat is the maximum number of microseconds required to complete
128 * activate_func() at the device's slowest OPP.
129 *
130 * This will result in some suboptimal power management decisions at fast
131 * OPPs, but avoids having to recompute all device power management decisions
132 * if the system shifts from a fast OPP to a slow OPP (in order to meet
133 * latency requirements).
134 *
135 * XXX should deactivate_func/activate_func() take platform_device pointers
136 * rather than omap_device pointers?
137 */
138struct omap_device_pm_latency {
139 u32 deactivate_lat;
Kevin Hilman9799aca2010-01-26 20:13:02 -0700140 u32 deactivate_lat_worst;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300141 int (*deactivate_func)(struct omap_device *od);
142 u32 activate_lat;
Kevin Hilman9799aca2010-01-26 20:13:02 -0700143 u32 activate_lat_worst;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300144 int (*activate_func)(struct omap_device *od);
Kevin Hilman9799aca2010-01-26 20:13:02 -0700145 u32 flags;
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300146};
147
Kevin Hilman9799aca2010-01-26 20:13:02 -0700148#define OMAP_DEVICE_LATENCY_AUTO_ADJUST BIT(1)
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300149
Kevin Hilmana470c422009-12-08 16:34:17 -0700150/* Get omap_device pointer from platform_device pointer */
151#define to_omap_device(x) container_of((x), struct omap_device, pdev)
Paul Walmsleyb04b65a2009-09-03 20:14:05 +0300152
Kevin Hilmana470c422009-12-08 16:34:17 -0700153#endif