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 <vigneshr@ti.com>
Signed-off-by: Joao Paulo Goncalves <joao.goncalves@toradex.com>
This commit is contained in:
Joao Paulo Goncalves
2024-03-20 09:16:31 -03:00
committed by Tom Rini
parent e8c828f124
commit ba26524cad

View File

@@ -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);