xref: /openbmc/linux/arch/arm/mach-omap2/omap_device.h (revision 25c7d49ed48b4843da7dea56a81ae7f620211ee0)
1*25c7d49eSTony Lindgren /*
2*25c7d49eSTony Lindgren  * omap_device headers
3*25c7d49eSTony Lindgren  *
4*25c7d49eSTony Lindgren  * Copyright (C) 2009 Nokia Corporation
5*25c7d49eSTony Lindgren  * Paul Walmsley
6*25c7d49eSTony Lindgren  *
7*25c7d49eSTony Lindgren  * Developed in collaboration with (alphabetical order): Benoit
8*25c7d49eSTony Lindgren  * Cousson, Kevin Hilman, Tony Lindgren, Rajendra Nayak, Vikram
9*25c7d49eSTony Lindgren  * Pandita, Sakari Poussa, Anand Sawant, Santosh Shilimkar, Richard
10*25c7d49eSTony Lindgren  * Woodruff
11*25c7d49eSTony Lindgren  *
12*25c7d49eSTony Lindgren  * This program is free software; you can redistribute it and/or modify
13*25c7d49eSTony Lindgren  * it under the terms of the GNU General Public License version 2 as
14*25c7d49eSTony Lindgren  * published by the Free Software Foundation.
15*25c7d49eSTony Lindgren  *
16*25c7d49eSTony Lindgren  * Eventually this type of functionality should either be
17*25c7d49eSTony Lindgren  * a) implemented via arch-specific pointers in platform_device
18*25c7d49eSTony Lindgren  * or
19*25c7d49eSTony Lindgren  * b) implemented as a proper omap_bus/omap_device in Linux, no more
20*25c7d49eSTony Lindgren  *    platform_device
21*25c7d49eSTony Lindgren  *
22*25c7d49eSTony Lindgren  * omap_device differs from omap_hwmod in that it includes external
23*25c7d49eSTony Lindgren  * (e.g., board- and system-level) integration details.  omap_hwmod
24*25c7d49eSTony Lindgren  * stores hardware data that is invariant for a given OMAP chip.
25*25c7d49eSTony Lindgren  *
26*25c7d49eSTony Lindgren  * To do:
27*25c7d49eSTony Lindgren  * - GPIO integration
28*25c7d49eSTony Lindgren  * - regulator integration
29*25c7d49eSTony Lindgren  *
30*25c7d49eSTony Lindgren  */
31*25c7d49eSTony Lindgren #ifndef __ARCH_ARM_PLAT_OMAP_INCLUDE_MACH_OMAP_DEVICE_H
32*25c7d49eSTony Lindgren #define __ARCH_ARM_PLAT_OMAP_INCLUDE_MACH_OMAP_DEVICE_H
33*25c7d49eSTony Lindgren 
34*25c7d49eSTony Lindgren #include <linux/kernel.h>
35*25c7d49eSTony Lindgren #include <linux/platform_device.h>
36*25c7d49eSTony Lindgren 
37*25c7d49eSTony Lindgren #include <plat/omap_hwmod.h>
38*25c7d49eSTony Lindgren 
39*25c7d49eSTony Lindgren extern struct dev_pm_domain omap_device_pm_domain;
40*25c7d49eSTony Lindgren 
41*25c7d49eSTony Lindgren /* omap_device._state values */
42*25c7d49eSTony Lindgren #define OMAP_DEVICE_STATE_UNKNOWN	0
43*25c7d49eSTony Lindgren #define OMAP_DEVICE_STATE_ENABLED	1
44*25c7d49eSTony Lindgren #define OMAP_DEVICE_STATE_IDLE		2
45*25c7d49eSTony Lindgren #define OMAP_DEVICE_STATE_SHUTDOWN	3
46*25c7d49eSTony Lindgren 
47*25c7d49eSTony Lindgren /* omap_device.flags values */
48*25c7d49eSTony Lindgren #define OMAP_DEVICE_SUSPENDED BIT(0)
49*25c7d49eSTony Lindgren #define OMAP_DEVICE_NO_IDLE_ON_SUSPEND BIT(1)
50*25c7d49eSTony Lindgren 
51*25c7d49eSTony Lindgren /**
52*25c7d49eSTony Lindgren  * struct omap_device - omap_device wrapper for platform_devices
53*25c7d49eSTony Lindgren  * @pdev: platform_device
54*25c7d49eSTony Lindgren  * @hwmods: (one .. many per omap_device)
55*25c7d49eSTony Lindgren  * @hwmods_cnt: ARRAY_SIZE() of @hwmods
56*25c7d49eSTony Lindgren  * @pm_lats: ptr to an omap_device_pm_latency table
57*25c7d49eSTony Lindgren  * @pm_lats_cnt: ARRAY_SIZE() of what is passed to @pm_lats
58*25c7d49eSTony Lindgren  * @pm_lat_level: array index of the last odpl entry executed - -1 if never
59*25c7d49eSTony Lindgren  * @dev_wakeup_lat: dev wakeup latency in nanoseconds
60*25c7d49eSTony Lindgren  * @_dev_wakeup_lat_limit: dev wakeup latency limit in nsec - set by OMAP PM
61*25c7d49eSTony Lindgren  * @_state: one of OMAP_DEVICE_STATE_* (see above)
62*25c7d49eSTony Lindgren  * @flags: device flags
63*25c7d49eSTony Lindgren  * @_driver_status: one of BUS_NOTIFY_*_DRIVER from <linux/device.h>
64*25c7d49eSTony Lindgren  *
65*25c7d49eSTony Lindgren  * Integrates omap_hwmod data into Linux platform_device.
66*25c7d49eSTony Lindgren  *
67*25c7d49eSTony Lindgren  * Field names beginning with underscores are for the internal use of
68*25c7d49eSTony Lindgren  * the omap_device code.
69*25c7d49eSTony Lindgren  *
70*25c7d49eSTony Lindgren  */
71*25c7d49eSTony Lindgren struct omap_device {
72*25c7d49eSTony Lindgren 	struct platform_device		*pdev;
73*25c7d49eSTony Lindgren 	struct omap_hwmod		**hwmods;
74*25c7d49eSTony Lindgren 	struct omap_device_pm_latency	*pm_lats;
75*25c7d49eSTony Lindgren 	u32				dev_wakeup_lat;
76*25c7d49eSTony Lindgren 	u32				_dev_wakeup_lat_limit;
77*25c7d49eSTony Lindgren 	unsigned long			_driver_status;
78*25c7d49eSTony Lindgren 	u8				pm_lats_cnt;
79*25c7d49eSTony Lindgren 	s8				pm_lat_level;
80*25c7d49eSTony Lindgren 	u8				hwmods_cnt;
81*25c7d49eSTony Lindgren 	u8				_state;
82*25c7d49eSTony Lindgren 	u8                              flags;
83*25c7d49eSTony Lindgren };
84*25c7d49eSTony Lindgren 
85*25c7d49eSTony Lindgren /* Device driver interface (call via platform_data fn ptrs) */
86*25c7d49eSTony Lindgren 
87*25c7d49eSTony Lindgren int omap_device_enable(struct platform_device *pdev);
88*25c7d49eSTony Lindgren int omap_device_idle(struct platform_device *pdev);
89*25c7d49eSTony Lindgren int omap_device_shutdown(struct platform_device *pdev);
90*25c7d49eSTony Lindgren 
91*25c7d49eSTony Lindgren /* Core code interface */
92*25c7d49eSTony Lindgren 
93*25c7d49eSTony Lindgren struct platform_device *omap_device_build(const char *pdev_name, int pdev_id,
94*25c7d49eSTony Lindgren 				      struct omap_hwmod *oh, void *pdata,
95*25c7d49eSTony Lindgren 				      int pdata_len,
96*25c7d49eSTony Lindgren 				      struct omap_device_pm_latency *pm_lats,
97*25c7d49eSTony Lindgren 				      int pm_lats_cnt, int is_early_device);
98*25c7d49eSTony Lindgren 
99*25c7d49eSTony Lindgren struct platform_device *omap_device_build_ss(const char *pdev_name, int pdev_id,
100*25c7d49eSTony Lindgren 					 struct omap_hwmod **oh, int oh_cnt,
101*25c7d49eSTony Lindgren 					 void *pdata, int pdata_len,
102*25c7d49eSTony Lindgren 					 struct omap_device_pm_latency *pm_lats,
103*25c7d49eSTony Lindgren 					 int pm_lats_cnt, int is_early_device);
104*25c7d49eSTony Lindgren 
105*25c7d49eSTony Lindgren struct omap_device *omap_device_alloc(struct platform_device *pdev,
106*25c7d49eSTony Lindgren 				      struct omap_hwmod **ohs, int oh_cnt,
107*25c7d49eSTony Lindgren 				      struct omap_device_pm_latency *pm_lats,
108*25c7d49eSTony Lindgren 				      int pm_lats_cnt);
109*25c7d49eSTony Lindgren void omap_device_delete(struct omap_device *od);
110*25c7d49eSTony Lindgren int omap_device_register(struct platform_device *pdev);
111*25c7d49eSTony Lindgren 
112*25c7d49eSTony Lindgren void __iomem *omap_device_get_rt_va(struct omap_device *od);
113*25c7d49eSTony Lindgren struct device *omap_device_get_by_hwmod_name(const char *oh_name);
114*25c7d49eSTony Lindgren 
115*25c7d49eSTony Lindgren /* OMAP PM interface */
116*25c7d49eSTony Lindgren int omap_device_align_pm_lat(struct platform_device *pdev,
117*25c7d49eSTony Lindgren 			     u32 new_wakeup_lat_limit);
118*25c7d49eSTony Lindgren struct powerdomain *omap_device_get_pwrdm(struct omap_device *od);
119*25c7d49eSTony Lindgren int omap_device_get_context_loss_count(struct platform_device *pdev);
120*25c7d49eSTony Lindgren 
121*25c7d49eSTony Lindgren /* Other */
122*25c7d49eSTony Lindgren 
123*25c7d49eSTony Lindgren int omap_device_assert_hardreset(struct platform_device *pdev,
124*25c7d49eSTony Lindgren 				 const char *name);
125*25c7d49eSTony Lindgren int omap_device_deassert_hardreset(struct platform_device *pdev,
126*25c7d49eSTony Lindgren 				 const char *name);
127*25c7d49eSTony Lindgren int omap_device_idle_hwmods(struct omap_device *od);
128*25c7d49eSTony Lindgren int omap_device_enable_hwmods(struct omap_device *od);
129*25c7d49eSTony Lindgren 
130*25c7d49eSTony Lindgren int omap_device_disable_clocks(struct omap_device *od);
131*25c7d49eSTony Lindgren int omap_device_enable_clocks(struct omap_device *od);
132*25c7d49eSTony Lindgren 
133*25c7d49eSTony Lindgren /*
134*25c7d49eSTony Lindgren  * Entries should be kept in latency order ascending
135*25c7d49eSTony Lindgren  *
136*25c7d49eSTony Lindgren  * deact_lat is the maximum number of microseconds required to complete
137*25c7d49eSTony Lindgren  * deactivate_func() at the device's slowest OPP.
138*25c7d49eSTony Lindgren  *
139*25c7d49eSTony Lindgren  * act_lat is the maximum number of microseconds required to complete
140*25c7d49eSTony Lindgren  * activate_func() at the device's slowest OPP.
141*25c7d49eSTony Lindgren  *
142*25c7d49eSTony Lindgren  * This will result in some suboptimal power management decisions at fast
143*25c7d49eSTony Lindgren  * OPPs, but avoids having to recompute all device power management decisions
144*25c7d49eSTony Lindgren  * if the system shifts from a fast OPP to a slow OPP (in order to meet
145*25c7d49eSTony Lindgren  * latency requirements).
146*25c7d49eSTony Lindgren  *
147*25c7d49eSTony Lindgren  * XXX should deactivate_func/activate_func() take platform_device pointers
148*25c7d49eSTony Lindgren  * rather than omap_device pointers?
149*25c7d49eSTony Lindgren  */
150*25c7d49eSTony Lindgren struct omap_device_pm_latency {
151*25c7d49eSTony Lindgren 	u32 deactivate_lat;
152*25c7d49eSTony Lindgren 	u32 deactivate_lat_worst;
153*25c7d49eSTony Lindgren 	int (*deactivate_func)(struct omap_device *od);
154*25c7d49eSTony Lindgren 	u32 activate_lat;
155*25c7d49eSTony Lindgren 	u32 activate_lat_worst;
156*25c7d49eSTony Lindgren 	int (*activate_func)(struct omap_device *od);
157*25c7d49eSTony Lindgren 	u32 flags;
158*25c7d49eSTony Lindgren };
159*25c7d49eSTony Lindgren 
160*25c7d49eSTony Lindgren #define OMAP_DEVICE_LATENCY_AUTO_ADJUST BIT(1)
161*25c7d49eSTony Lindgren 
162*25c7d49eSTony Lindgren /* Get omap_device pointer from platform_device pointer */
163*25c7d49eSTony Lindgren static inline struct omap_device *to_omap_device(struct platform_device *pdev)
164*25c7d49eSTony Lindgren {
165*25c7d49eSTony Lindgren 	return pdev ? pdev->archdata.od : NULL;
166*25c7d49eSTony Lindgren }
167*25c7d49eSTony Lindgren 
168*25c7d49eSTony Lindgren static inline
169*25c7d49eSTony Lindgren void omap_device_disable_idle_on_suspend(struct platform_device *pdev)
170*25c7d49eSTony Lindgren {
171*25c7d49eSTony Lindgren 	struct omap_device *od = to_omap_device(pdev);
172*25c7d49eSTony Lindgren 
173*25c7d49eSTony Lindgren 	od->flags |= OMAP_DEVICE_NO_IDLE_ON_SUSPEND;
174*25c7d49eSTony Lindgren }
175*25c7d49eSTony Lindgren 
176*25c7d49eSTony Lindgren #endif
177