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
36 (*pdata->set_max_mpu_wakeup_lat)(struct device *dev, unsigned long t)
40 (*pdata->set_max_dev_wakeup_lat)(struct device *dev, unsigned long t)
44 (*pdata->set_max_sdma_lat)(struct device *dev, long t)
48 (*pdata->set_min_bus_tput)(struct device *dev, u8 agent_id, unsigned long r)
52 (*pdata->get_dev_context_loss_count)(struct device *dev)
56 found in arch/arm/plat-omap/include/mach/omap-pm.h.
60 ---------------------------------------------
69 -------------------------------------
73 structures. The function pointers are initialized by the `board-*.c`
76 - set_max_dev_wakeup_lat will point to
81 if (pdata->set_max_dev_wakeup_lat)
82 (*pdata->set_max_dev_wakeup_lat)(dev, t);
93 if (pdata->set_max_mpu_wakeup_lat)
94 (*pdata->set_max_mpu_wakeup_lat)(dev, tc);
97 if (pdata->set_max_dev_wakeup_lat)
98 (*pdata->set_max_dev_wakeup_lat)(dev, td);
104 function with a t argument of -1 (except in the case of
114 -------------------------------------
121 specialized cases to convert that input information (OPPs/MPU
125 6. `(*pdata->dsp_get_opp_table)(void)`
127 7. `(*pdata->dsp_set_min_opp)(u8 opp_id)`
129 8. `(*pdata->dsp_get_opp)(void)`
131 9. `(*pdata->cpu_get_freq_table)(void)`
133 10. `(*pdata->cpu_set_freq)(unsigned long f)`
135 11. `(*pdata->cpu_get_freq)(void)`
144 * enable default OPPs which are disabled by default, but which
150 arch/arm/mach-omapx/board-xyz.c::
164 omapx_opp_init will be omap3_opp_init or as required