Lines Matching +full:required +full:- +full:opps
13 - support the range of power management parameters present in the TI SRF;
15 - separate the drivers from the underlying PM parameter
19 - specify PM parameters in terms of fundamental units, such as
23 - allow drivers which are shared with other architectures (e.g.,
24 DaVinci) to add these constraints in a way which won't affect non-OMAP
27 - can be implemented immediately with minimal disruption of other
35 (*pdata->set_max_mpu_wakeup_lat)(struct device *dev, unsigned long t)
38 (*pdata->set_max_dev_wakeup_lat)(struct device *dev, unsigned long t)
41 (*pdata->set_max_sdma_lat)(struct device *dev, long t)
44 (*pdata->set_min_bus_tput)(struct device *dev, u8 agent_id, unsigned long r)
47 (*pdata->get_dev_context_loss_count)(struct device *dev)
51 found in arch/arm/plat-omap/include/mach/omap-pm.h.
55 ---------------------------------------------
64 -------------------------------------
68 structures. The function pointers are initialized by the board-*.c
75 if (pdata->set_max_dev_wakeup_lat)
76 (*pdata->set_max_dev_wakeup_lat)(dev, t);
87 if (pdata->set_max_mpu_wakeup_lat)
88 (*pdata->set_max_mpu_wakeup_lat)(dev, tc);
91 if (pdata->set_max_dev_wakeup_lat)
92 (*pdata->set_max_dev_wakeup_lat)(dev, td);
98 function with a t argument of -1 (except in the case of
108 -------------------------------------
115 specialized cases to convert that input information (OPPs/MPU
119 6. (*pdata->dsp_get_opp_table)(void)
121 7. (*pdata->dsp_set_min_opp)(u8 opp_id)
123 8. (*pdata->dsp_get_opp)(void)
125 9. (*pdata->cpu_get_freq_table)(void)
127 10. (*pdata->cpu_set_freq)(unsigned long f)
129 11. (*pdata->cpu_get_freq)(void)
137 * enable default OPPs which are disabled by default, but which
142 arch/arm/mach-omapx/board-xyz.c
153 NOTE: omapx_opp_init will be omap3_opp_init or as required