From: Joao Paulo Goncalves Date: Wed, 20 Mar 2024 12:16:31 +0000 (-0300) Subject: arm: mach-k3: am62: Get a53 max cpu frequency by speed grade X-Git-Url: http://git.dujemihanovic.xyz/html/index.html?a=commitdiff_plain;h=ba26524cad98aa70913afb7a2436949ac14c3b41;p=u-boot.git arm: mach-k3: am62: Get a53 max cpu frequency by speed grade AM62 SoC has multiple speed grades. Add function to return max A53 CPU frequency based on grade. Fastest grade's max frequency also depends on PMIC voltage, to simplify implementation use the smaller value. Suggested-by: Vignesh Raghavendra Signed-off-by: Joao Paulo Goncalves --- diff --git a/arch/arm/mach-k3/include/mach/am62_hardware.h b/arch/arm/mach-k3/include/mach/am62_hardware.h index 264f8a488b..90682d8ee3 100644 --- a/arch/arm/mach-k3/include/mach/am62_hardware.h +++ b/arch/arm/mach-k3/include/mach/am62_hardware.h @@ -122,6 +122,21 @@ static inline int k3_get_max_temp(void) } } +static inline int k3_get_a53_max_frequency(void) +{ + switch (k3_get_speed_grade()) { + case 'K': + return 800000000; + case 'S': + return 1000000000; + case 'T': + return 1250000000; + case 'G': + default: + return 300000000; + } +} + static inline int k3_has_pru(void) { u32 full_devid = readl(CTRLMMR_WKUP_JTAG_DEVICE_ID);