mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 08:00:52 +07:00
PM / devfreq: Make update_devfreq() public
Currently update_devfreq() is only visible to devfreq governors outside of devfreq.c. Make it public to allow drivers that adjust devfreq policies to cause a re-evaluation of the frequency after a policy change. Signed-off-by: Matthias Kaehlcke <mka@chromium.org> Reviewed-by: Brian Norris <briannorris@chromium.org> Reviewed-by: Chanwoo Choi <cw00.choi@samsung.com> Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
This commit is contained in:
parent
6ff66e2a00
commit
b596d895fa
@ -57,9 +57,6 @@ struct devfreq_governor {
|
|||||||
unsigned int event, void *data);
|
unsigned int event, void *data);
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Caution: devfreq->lock must be locked before calling update_devfreq */
|
|
||||||
extern int update_devfreq(struct devfreq *devfreq);
|
|
||||||
|
|
||||||
extern void devfreq_monitor_start(struct devfreq *devfreq);
|
extern void devfreq_monitor_start(struct devfreq *devfreq);
|
||||||
extern void devfreq_monitor_stop(struct devfreq *devfreq);
|
extern void devfreq_monitor_stop(struct devfreq *devfreq);
|
||||||
extern void devfreq_monitor_suspend(struct devfreq *devfreq);
|
extern void devfreq_monitor_suspend(struct devfreq *devfreq);
|
||||||
|
@ -198,6 +198,14 @@ extern void devm_devfreq_remove_device(struct device *dev,
|
|||||||
extern int devfreq_suspend_device(struct devfreq *devfreq);
|
extern int devfreq_suspend_device(struct devfreq *devfreq);
|
||||||
extern int devfreq_resume_device(struct devfreq *devfreq);
|
extern int devfreq_resume_device(struct devfreq *devfreq);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* update_devfreq() - Reevaluate the device and configure frequency
|
||||||
|
* @devfreq: the devfreq device
|
||||||
|
*
|
||||||
|
* Note: devfreq->lock must be held
|
||||||
|
*/
|
||||||
|
extern int update_devfreq(struct devfreq *devfreq);
|
||||||
|
|
||||||
/* Helper functions for devfreq user device driver with OPP. */
|
/* Helper functions for devfreq user device driver with OPP. */
|
||||||
extern struct dev_pm_opp *devfreq_recommended_opp(struct device *dev,
|
extern struct dev_pm_opp *devfreq_recommended_opp(struct device *dev,
|
||||||
unsigned long *freq, u32 flags);
|
unsigned long *freq, u32 flags);
|
||||||
|
Loading…
Reference in New Issue
Block a user