Linux Power Management development
 help / color / mirror / Atom feed
* [PATCH 0/2] cpufreq: ti-cpufreq: Enable AM62P5 CPUFreq
@ 2023-10-10 17:55 Bryan Brattlof
  2023-10-10 17:55 ` [PATCH 1/2] cpufreq: dt-platdev: add am62p5 to blocklist Bryan Brattlof
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Bryan Brattlof @ 2023-10-10 17:55 UTC (permalink / raw)
  To: Rafael J. Wysocki, Viresh Kumar
  Cc: Vibhore Vardhan, Dhruva Gole, ARM Power Management,
	Linux Kernel Mailing List, Bryan Brattlof

Hello everyone!

This short series adds the am62p5 compatible to ti-cpufreq and
cpufreq-dt-platdev for the new am62p family of TI SoCs. It uses the same
A53s and efuse configuration as the rest of the am62xxx extended family
so we're just using the same am625 data structure for the am62p5.

Thanks for reviewing
~Bryan

Bryan Brattlof (2):
  cpufreq: dt-platdev: add am62p5 to blocklist
  cpufreq: ti-cpufreq: Add opp support for am62p5 SoCs

 drivers/cpufreq/cpufreq-dt-platdev.c | 1 +
 drivers/cpufreq/ti-cpufreq.c         | 1 +
 2 files changed, 2 insertions(+)


base-commit: c9727271cb239dce91add464364f10fb2b376456
-- 
2.42.0


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/2] cpufreq: dt-platdev: add am62p5 to blocklist
  2023-10-10 17:55 [PATCH 0/2] cpufreq: ti-cpufreq: Enable AM62P5 CPUFreq Bryan Brattlof
@ 2023-10-10 17:55 ` Bryan Brattlof
  2023-10-10 17:55 ` [PATCH 2/2] cpufreq: ti-cpufreq: Add opp support for am62p5 SoCs Bryan Brattlof
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Bryan Brattlof @ 2023-10-10 17:55 UTC (permalink / raw)
  To: Rafael J. Wysocki, Viresh Kumar
  Cc: Vibhore Vardhan, Dhruva Gole, ARM Power Management,
	Linux Kernel Mailing List, Bryan Brattlof

The am62p5 family of SoCs is a variation of the am625 and am62a7 SoC
family. Add this device along with the devices which will use the
operating-points-v2 property.

Signed-off-by: Bryan Brattlof <bb@ti.com>
---
 drivers/cpufreq/cpufreq-dt-platdev.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/cpufreq/cpufreq-dt-platdev.c b/drivers/cpufreq/cpufreq-dt-platdev.c
index 2016d47889c07..0b3776f558dbd 100644
--- a/drivers/cpufreq/cpufreq-dt-platdev.c
+++ b/drivers/cpufreq/cpufreq-dt-platdev.c
@@ -178,6 +178,7 @@ static const struct of_device_id blocklist[] __initconst = {
 	{ .compatible = "ti,omap3", },
 	{ .compatible = "ti,am625", },
 	{ .compatible = "ti,am62a7", },
+	{ .compatible = "ti,am62p5", },
 
 	{ .compatible = "qcom,ipq8064", },
 	{ .compatible = "qcom,apq8064", },
-- 
2.42.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] cpufreq: ti-cpufreq: Add opp support for am62p5 SoCs
  2023-10-10 17:55 [PATCH 0/2] cpufreq: ti-cpufreq: Enable AM62P5 CPUFreq Bryan Brattlof
  2023-10-10 17:55 ` [PATCH 1/2] cpufreq: dt-platdev: add am62p5 to blocklist Bryan Brattlof
@ 2023-10-10 17:55 ` Bryan Brattlof
  2023-10-11  2:59 ` [PATCH 0/2] cpufreq: ti-cpufreq: Enable AM62P5 CPUFreq Dhruva Gole
  2023-10-11  5:26 ` Viresh Kumar
  3 siblings, 0 replies; 5+ messages in thread
From: Bryan Brattlof @ 2023-10-10 17:55 UTC (permalink / raw)
  To: Rafael J. Wysocki, Viresh Kumar
  Cc: Vibhore Vardhan, Dhruva Gole, ARM Power Management,
	Linux Kernel Mailing List, Bryan Brattlof

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>
---
 drivers/cpufreq/ti-cpufreq.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/cpufreq/ti-cpufreq.c b/drivers/cpufreq/ti-cpufreq.c
index 3c37d78996607..46c41e2ca727b 100644
--- a/drivers/cpufreq/ti-cpufreq.c
+++ b/drivers/cpufreq/ti-cpufreq.c
@@ -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, },
-- 
2.42.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 0/2] cpufreq: ti-cpufreq: Enable AM62P5 CPUFreq
  2023-10-10 17:55 [PATCH 0/2] cpufreq: ti-cpufreq: Enable AM62P5 CPUFreq Bryan Brattlof
  2023-10-10 17:55 ` [PATCH 1/2] cpufreq: dt-platdev: add am62p5 to blocklist Bryan Brattlof
  2023-10-10 17:55 ` [PATCH 2/2] cpufreq: ti-cpufreq: Add opp support for am62p5 SoCs Bryan Brattlof
@ 2023-10-11  2:59 ` Dhruva Gole
  2023-10-11  5:26 ` Viresh Kumar
  3 siblings, 0 replies; 5+ messages in thread
From: Dhruva Gole @ 2023-10-11  2:59 UTC (permalink / raw)
  To: Bryan Brattlof
  Cc: Rafael J. Wysocki, Viresh Kumar, Vibhore Vardhan,
	ARM Power Management, Linux Kernel Mailing List

Hi,

On Oct 10, 2023 at 12:55:25 -0500, Bryan Brattlof wrote:
> Hello everyone!
> 
> This short series adds the am62p5 compatible to ti-cpufreq and
> cpufreq-dt-platdev for the new am62p family of TI SoCs. It uses the same
> A53s and efuse configuration as the rest of the am62xxx extended family
> so we're just using the same am625 data structure for the am62p5.
> 
> Thanks for reviewing
> ~Bryan
> 
> Bryan Brattlof (2):
>   cpufreq: dt-platdev: add am62p5 to blocklist
>   cpufreq: ti-cpufreq: Add opp support for am62p5 SoCs
> 
>  drivers/cpufreq/cpufreq-dt-platdev.c | 1 +
>  drivers/cpufreq/ti-cpufreq.c         | 1 +
>  2 files changed, 2 insertions(+)

For the series,
Reviewed-by: Dhruva Gole <d-gole@ti.com>

> 
> 
> base-commit: c9727271cb239dce91add464364f10fb2b376456
> -- 
> 2.42.0
> 

-- 
Best regards,
Dhruva Gole <d-gole@ti.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 0/2] cpufreq: ti-cpufreq: Enable AM62P5 CPUFreq
  2023-10-10 17:55 [PATCH 0/2] cpufreq: ti-cpufreq: Enable AM62P5 CPUFreq Bryan Brattlof
                   ` (2 preceding siblings ...)
  2023-10-11  2:59 ` [PATCH 0/2] cpufreq: ti-cpufreq: Enable AM62P5 CPUFreq Dhruva Gole
@ 2023-10-11  5:26 ` Viresh Kumar
  3 siblings, 0 replies; 5+ messages in thread
From: Viresh Kumar @ 2023-10-11  5:26 UTC (permalink / raw)
  To: Bryan Brattlof
  Cc: Rafael J. Wysocki, Vibhore Vardhan, Dhruva Gole,
	ARM Power Management, Linux Kernel Mailing List

On 10-10-23, 12:55, Bryan Brattlof wrote:
> Hello everyone!
> 
> This short series adds the am62p5 compatible to ti-cpufreq and
> cpufreq-dt-platdev for the new am62p family of TI SoCs. It uses the same
> A53s and efuse configuration as the rest of the am62xxx extended family
> so we're just using the same am625 data structure for the am62p5.
> 
> Thanks for reviewing
> ~Bryan
> 
> Bryan Brattlof (2):
>   cpufreq: dt-platdev: add am62p5 to blocklist
>   cpufreq: ti-cpufreq: Add opp support for am62p5 SoCs
> 
>  drivers/cpufreq/cpufreq-dt-platdev.c | 1 +
>  drivers/cpufreq/ti-cpufreq.c         | 1 +
>  2 files changed, 2 insertions(+)

Applied. Thanks.

-- 
viresh

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-10-11  5:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-10 17:55 [PATCH 0/2] cpufreq: ti-cpufreq: Enable AM62P5 CPUFreq Bryan Brattlof
2023-10-10 17:55 ` [PATCH 1/2] cpufreq: dt-platdev: add am62p5 to blocklist Bryan Brattlof
2023-10-10 17:55 ` [PATCH 2/2] cpufreq: ti-cpufreq: Add opp support for am62p5 SoCs Bryan Brattlof
2023-10-11  2:59 ` [PATCH 0/2] cpufreq: ti-cpufreq: Enable AM62P5 CPUFreq Dhruva Gole
2023-10-11  5:26 ` Viresh Kumar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox