cpufreq: ti-cpufreq: Add opp support for am62p5 SoCs
authorBryan Brattlof <bb@ti.com>
Tue, 10 Oct 2023 17:55:27 +0000 (12:55 -0500)
committerViresh Kumar <viresh.kumar@linaro.org>
Thu, 12 Oct 2023 03:40:22 +0000 (09:10 +0530)
The am62p5 is a variation of the am625 and the am62a7 SoC families. Add
the am62p5 to the list using the same cpufreq data as the rest of the
am62x extended family.

Signed-off-by: Bryan Brattlof <bb@ti.com>
Reviewed-by: Dhruva Gole <d-gole@ti.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
drivers/cpufreq/ti-cpufreq.c

index 3c37d78996607f35119e80e977e23b83f0e424d1..46c41e2ca727bc071214347f23149780b8e6a272 100644 (file)
@@ -338,6 +338,7 @@ static const struct of_device_id ti_cpufreq_of_match[] = {
        { .compatible = "ti,omap36xx", .data = &omap36xx_soc_data, },
        { .compatible = "ti,am625", .data = &am625_soc_data, },
        { .compatible = "ti,am62a7", .data = &am625_soc_data, },
+       { .compatible = "ti,am62p5", .data = &am625_soc_data, },
        /* legacy */
        { .compatible = "ti,omap3430", .data = &omap34xx_soc_data, },
        { .compatible = "ti,omap3630", .data = &omap36xx_soc_data, },