diff options
author | Rex-BC Chen <rex-bc.chen@mediatek.com> | 2022-07-14 14:15:43 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-07-21 10:27:27 +0000 |
commit | 823dcea39ceb44e938ace8b40e0cca4244a052c5 (patch) | |
tree | 0cc89a072c1d84cb7fb2927f6d07cca2cbd2a9c3 /src/soc/mediatek/common/include | |
parent | b9c1ce67a5ceb723b1a06d22f7740675af3160ab (diff) |
soc/mediatek: Create a function to check ulposc
We will use the same drivers for checking ulposc in MT8188, so we add a
new function pmif_ulposc_check() to common.
TEST=build pass
BUG=b:233720142
Signed-off-by: Bo-Chen Chen <rex-bc.chen@mediatek.com>
Change-Id: I40136eaeb2c08a97cd65bfb8a81f2f24739d4d51
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65841
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/mediatek/common/include')
-rw-r--r-- | src/soc/mediatek/common/include/soc/pmif_clk_common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/mediatek/common/include/soc/pmif_clk_common.h b/src/soc/mediatek/common/include/soc/pmif_clk_common.h index f1bd2c7cf8..c61cd1a96e 100644 --- a/src/soc/mediatek/common/include/soc/pmif_clk_common.h +++ b/src/soc/mediatek/common/include/soc/pmif_clk_common.h @@ -3,6 +3,7 @@ #ifndef __MEDIATEK_SOC_PMIF_CLK_COMMON__ #define __MEDIATEK_SOC_PMIF_CLK_COMMON__ +int pmif_ulposc_check(u32 current_clk, u32 target_clk); int pmif_ulposc_cali(u32 target_val); #endif /*__MEDIATEK_SOC_PMIF_CLK_COMMON__*/ |