Home
last modified time | relevance | path

Searched refs:curr_prof (Results 1 – 1 of 1) sorted by relevance

/device/linaro/bootloader/arm-trusted-firmware/plat/hikey/drivers/
Dhisi_dvfs.c647 int acpu_dvfs_target(unsigned int curr_prof, unsigned int target_prof) in acpu_dvfs_target() argument
651 if (curr_prof == target_prof) { in acpu_dvfs_target()
653 __func__, curr_prof); in acpu_dvfs_target()
657 if ((curr_prof >= ACPU_FREQ_MAX_NUM) || in acpu_dvfs_target()
660 __func__, curr_prof, target_prof); in acpu_dvfs_target()
667 if (target_prof < curr_prof) in acpu_dvfs_target()
668 ret = acpu_dvfs_freq_descend(curr_prof, target_prof); in acpu_dvfs_target()
669 else if (target_prof > curr_prof) in acpu_dvfs_target()
670 ret = acpu_dvfs_freq_ascend(curr_prof, target_prof); in acpu_dvfs_target()
688 unsigned int curr_prof; in acpu_dvfs_set_freq() local
[all …]