* [PATCH 0/4] Add cpufreq and USB support for AM62D2
@ 2025-08-20 8:33 Paresh Bhagat
2025-08-20 8:33 ` [PATCH 1/4] arm64: dts: ti: k3-am62a-main: Fix pinctrl properties Paresh Bhagat
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Paresh Bhagat @ 2025-08-20 8:33 UTC (permalink / raw)
To: nm, vigneshr, praneeth
Cc: kristo, robh, krzk+dt, conor+dt, rafael, viresh.kumar,
linux-arm-kernel, devicetree, linux-kernel, linux-pm, khasim,
v-singh1, afd, bb, s-vadapalli
This patch series introduces following changes:
* Patch 1 fixes the register length in main_pmx/padconfig for AM62D
and AM62A.
* Patch 2 enables USB support for AM62D2-EVM by adding pinmux and device
tree nodes.
* Patch 3 adds AM62D2 SoC to cpufreq-dt-platdev blacklist so that
cpufreq is handled by the ti-cpufreq driver instead of the
generic cpufreq-dt driver.
* Patch 4 extends ti-cpufreq to register AM62D2 SoC support by
reusing the am62a7_soc_data.
Boot Logs-
https://gist.github.com/paresh-bhagat12/e29d33c3fd92ff17580edf1441ece9f9
Tech Ref Manual-https://www.ti.com/lit/pdf/sprujd4
Schematics Link-https://www.ti.com/lit/zip/sprcal5
Paresh Bhagat (3):
arm64: dts: ti: k3-am62d2-evm: Enable USB support
cpufreq: dt-platdev: Blacklist ti,am62d2 SoC
cpufreq: ti: Add support for AM62D2
Vibhore Vardhan (1):
arm64: dts: ti: k3-am62a-main: Fix pinctrl properties
arch/arm64/boot/dts/ti/k3-am62a-main.dtsi | 2 +-
arch/arm64/boot/dts/ti/k3-am62d2-evm.dts | 21 +++++++++++++++++++++
drivers/cpufreq/cpufreq-dt-platdev.c | 1 +
drivers/cpufreq/ti-cpufreq.c | 2 ++
4 files changed, 25 insertions(+), 1 deletion(-)
--
2.34.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 1/4] arm64: dts: ti: k3-am62a-main: Fix pinctrl properties
2025-08-20 8:33 [PATCH 0/4] Add cpufreq and USB support for AM62D2 Paresh Bhagat
@ 2025-08-20 8:33 ` Paresh Bhagat
2025-08-21 6:35 ` Raghavendra, Vignesh
2025-08-20 8:33 ` [PATCH 2/4] arm64: dts: ti: k3-am62d2-evm: Enable USB support Paresh Bhagat
` (5 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Paresh Bhagat @ 2025-08-20 8:33 UTC (permalink / raw)
To: nm, vigneshr, praneeth
Cc: kristo, robh, krzk+dt, conor+dt, rafael, viresh.kumar,
linux-arm-kernel, devicetree, linux-kernel, linux-pm, khasim,
v-singh1, afd, bb, s-vadapalli
From: Vibhore Vardhan <vibhore@ti.com>
Correct reg length to match end address - start address for main
PADCFG registers.
Signed-off-by: Vibhore Vardhan <vibhore@ti.com>
Signed-off-by: Paresh Bhagat <p-bhagat@ti.com>
---
arch/arm64/boot/dts/ti/k3-am62a-main.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
index 9cad79d7bbc1..260279702c01 100644
--- a/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
@@ -267,7 +267,7 @@ secure_proxy_sa3: mailbox@43600000 {
main_pmx0: pinctrl@f4000 {
compatible = "pinctrl-single";
- reg = <0x00 0xf4000 0x00 0x2ac>;
+ reg = <0x00 0xf4000 0x00 0x25c>;
#pinctrl-cells = <1>;
pinctrl-single,register-width = <32>;
pinctrl-single,function-mask = <0xffffffff>;
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/4] arm64: dts: ti: k3-am62d2-evm: Enable USB support
2025-08-20 8:33 [PATCH 0/4] Add cpufreq and USB support for AM62D2 Paresh Bhagat
2025-08-20 8:33 ` [PATCH 1/4] arm64: dts: ti: k3-am62a-main: Fix pinctrl properties Paresh Bhagat
@ 2025-08-20 8:33 ` Paresh Bhagat
2025-08-20 8:33 ` [PATCH 3/4] cpufreq: dt-platdev: Blacklist ti,am62d2 SoC Paresh Bhagat
` (4 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Paresh Bhagat @ 2025-08-20 8:33 UTC (permalink / raw)
To: nm, vigneshr, praneeth
Cc: kristo, robh, krzk+dt, conor+dt, rafael, viresh.kumar,
linux-arm-kernel, devicetree, linux-kernel, linux-pm, khasim,
v-singh1, afd, bb, s-vadapalli
Add pinmux configuration for USB1 interface and enable the node for
functionality. Also enable data transfer on USB0, on existing power
delivery configuration.
Signed-off-by: Paresh Bhagat <p-bhagat@ti.com>
Signed-off-by: Siddharth Vadapalli <s-vadapalli@ti.com>
---
arch/arm64/boot/dts/ti/k3-am62d2-evm.dts | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/arch/arm64/boot/dts/ti/k3-am62d2-evm.dts b/arch/arm64/boot/dts/ti/k3-am62d2-evm.dts
index daea18b0bc61..9704c2d97f43 100644
--- a/arch/arm64/boot/dts/ti/k3-am62d2-evm.dts
+++ b/arch/arm64/boot/dts/ti/k3-am62d2-evm.dts
@@ -367,6 +367,12 @@ usr_led_pins_default: usr-led-default-pins {
AM62DX_IOPAD(0x0244, PIN_INPUT, 7) /* (D18) MMC1_SDWP.GPIO1_49 */
>;
};
+
+ main_usb1_pins_default: main-usb1-default-pins {
+ pinctrl-single,pins = <
+ AM62DX_IOPAD(0x0258, PIN_OUTPUT, 0) /* (D19) USB1_DRVVBUS */
+ >;
+ };
};
&mcu_gpio0 {
@@ -499,6 +505,11 @@ &main_uart0 {
status = "okay";
};
+&usbss0 {
+ status = "okay";
+ ti,vbus-divider;
+};
+
&usb0 {
usb-role-switch;
@@ -509,6 +520,16 @@ usb0_hs_ep: endpoint {
};
};
+&usbss1 {
+ status = "okay";
+};
+
+&usb1 {
+ dr_mode = "host";
+ pinctrl-names = "default";
+ pinctrl-0 = <&main_usb1_pins_default>;
+};
+
&cpsw3g {
pinctrl-names = "default";
pinctrl-0 = <&main_rgmii1_pins_default>,
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 3/4] cpufreq: dt-platdev: Blacklist ti,am62d2 SoC
2025-08-20 8:33 [PATCH 0/4] Add cpufreq and USB support for AM62D2 Paresh Bhagat
2025-08-20 8:33 ` [PATCH 1/4] arm64: dts: ti: k3-am62a-main: Fix pinctrl properties Paresh Bhagat
2025-08-20 8:33 ` [PATCH 2/4] arm64: dts: ti: k3-am62d2-evm: Enable USB support Paresh Bhagat
@ 2025-08-20 8:33 ` Paresh Bhagat
2025-08-20 8:33 ` [PATCH 4/4] cpufreq: ti: Add support for AM62D2 Paresh Bhagat
` (3 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Paresh Bhagat @ 2025-08-20 8:33 UTC (permalink / raw)
To: nm, vigneshr, praneeth
Cc: kristo, robh, krzk+dt, conor+dt, rafael, viresh.kumar,
linux-arm-kernel, devicetree, linux-kernel, linux-pm, khasim,
v-singh1, afd, bb, s-vadapalli
Add ti,am62d2 SoC to the blacklist as the ti-cpufreq driver will handle
creating the cpufreq-dt platform device after it completes and ensure
it is not created twice.
Signed-off-by: Paresh Bhagat <p-bhagat@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 1a9d9d008002..cd1816a12bb9 100644
--- a/drivers/cpufreq/cpufreq-dt-platdev.c
+++ b/drivers/cpufreq/cpufreq-dt-platdev.c
@@ -189,6 +189,7 @@ static const struct of_device_id blocklist[] __initconst = {
{ .compatible = "ti,omap3", },
{ .compatible = "ti,am625", },
{ .compatible = "ti,am62a7", },
+ { .compatible = "ti,am62d2", },
{ .compatible = "ti,am62p5", },
{ .compatible = "qcom,ipq5332", },
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 4/4] cpufreq: ti: Add support for AM62D2
2025-08-20 8:33 [PATCH 0/4] Add cpufreq and USB support for AM62D2 Paresh Bhagat
` (2 preceding siblings ...)
2025-08-20 8:33 ` [PATCH 3/4] cpufreq: dt-platdev: Blacklist ti,am62d2 SoC Paresh Bhagat
@ 2025-08-20 8:33 ` Paresh Bhagat
2025-08-20 8:37 ` [PATCH 0/4] Add cpufreq and USB " Viresh Kumar
` (2 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Paresh Bhagat @ 2025-08-20 8:33 UTC (permalink / raw)
To: nm, vigneshr, praneeth
Cc: kristo, robh, krzk+dt, conor+dt, rafael, viresh.kumar,
linux-arm-kernel, devicetree, linux-kernel, linux-pm, khasim,
v-singh1, afd, bb, s-vadapalli
Add support for TI K3 AM62D2 SoC to read speed and revision values
from hardware and pass to OPP layer. AM62D shares the same configuations
as AM62A so use existing am62a7_soc_data.
Signed-off-by: Paresh Bhagat <p-bhagat@ti.com>
---
drivers/cpufreq/ti-cpufreq.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/cpufreq/ti-cpufreq.c b/drivers/cpufreq/ti-cpufreq.c
index 5a5147277cd0..9a912d309315 100644
--- a/drivers/cpufreq/ti-cpufreq.c
+++ b/drivers/cpufreq/ti-cpufreq.c
@@ -310,6 +310,7 @@ static const struct soc_device_attribute k3_cpufreq_soc[] = {
{ .family = "AM62X", .revision = "SR1.0" },
{ .family = "AM62AX", .revision = "SR1.0" },
{ .family = "AM62PX", .revision = "SR1.0" },
+ { .family = "AM62DX", .revision = "SR1.0" },
{ /* sentinel */ }
};
@@ -457,6 +458,7 @@ static const struct of_device_id ti_cpufreq_of_match[] __maybe_unused = {
{ .compatible = "ti,omap36xx", .data = &omap36xx_soc_data, },
{ .compatible = "ti,am625", .data = &am625_soc_data, },
{ .compatible = "ti,am62a7", .data = &am62a7_soc_data, },
+ { .compatible = "ti,am62d2", .data = &am62a7_soc_data, },
{ .compatible = "ti,am62p5", .data = &am62p5_soc_data, },
/* legacy */
{ .compatible = "ti,omap3430", .data = &omap34xx_soc_data, },
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 0/4] Add cpufreq and USB support for AM62D2
2025-08-20 8:33 [PATCH 0/4] Add cpufreq and USB support for AM62D2 Paresh Bhagat
` (3 preceding siblings ...)
2025-08-20 8:33 ` [PATCH 4/4] cpufreq: ti: Add support for AM62D2 Paresh Bhagat
@ 2025-08-20 8:37 ` Viresh Kumar
2025-08-21 6:32 ` Raghavendra, Vignesh
2025-08-21 12:27 ` Nishanth Menon
6 siblings, 0 replies; 10+ messages in thread
From: Viresh Kumar @ 2025-08-20 8:37 UTC (permalink / raw)
To: Paresh Bhagat
Cc: nm, vigneshr, praneeth, kristo, robh, krzk+dt, conor+dt, rafael,
linux-arm-kernel, devicetree, linux-kernel, linux-pm, khasim,
v-singh1, afd, bb, s-vadapalli
On 20-08-25, 14:03, Paresh Bhagat wrote:
> cpufreq: dt-platdev: Blacklist ti,am62d2 SoC
> cpufreq: ti: Add support for AM62D2
Applied these two patches. Thanks.
--
viresh
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/4] Add cpufreq and USB support for AM62D2
2025-08-20 8:33 [PATCH 0/4] Add cpufreq and USB support for AM62D2 Paresh Bhagat
` (4 preceding siblings ...)
2025-08-20 8:37 ` [PATCH 0/4] Add cpufreq and USB " Viresh Kumar
@ 2025-08-21 6:32 ` Raghavendra, Vignesh
2025-08-21 12:27 ` Nishanth Menon
6 siblings, 0 replies; 10+ messages in thread
From: Raghavendra, Vignesh @ 2025-08-21 6:32 UTC (permalink / raw)
To: Paresh Bhagat, nm, praneeth
Cc: kristo, robh, krzk+dt, conor+dt, rafael, viresh.kumar,
linux-arm-kernel, devicetree, linux-kernel, linux-pm, khasim,
v-singh1, afd, bb, s-vadapalli
On 8/20/2025 2:03 PM, Paresh Bhagat wrote:
> This patch series introduces following changes:
>
> * Patch 1 fixes the register length in main_pmx/padconfig for AM62D
> and AM62A.
>
> * Patch 2 enables USB support for AM62D2-EVM by adding pinmux and device
> tree nodes.
>
> * Patch 3 adds AM62D2 SoC to cpufreq-dt-platdev blacklist so that
> cpufreq is handled by the ti-cpufreq driver instead of the
> generic cpufreq-dt driver.
>
> * Patch 4 extends ti-cpufreq to register AM62D2 SoC support by
> reusing the am62a7_soc_data.
Please don't randomly mix patches into single series. Here patches 1/4
and 2/4 have no bearing on cpufreq driver changes in 3/4 and 4/4. They
even go through different trees.
>
> Boot Logs-
> https://gist.github.com/paresh-bhagat12/e29d33c3fd92ff17580edf1441ece9f9
>
> Tech Ref Manual-https://www.ti.com/lit/pdf/sprujd4
> Schematics Link-https://www.ti.com/lit/zip/sprcal5
>
> Paresh Bhagat (3):
> arm64: dts: ti: k3-am62d2-evm: Enable USB support
> cpufreq: dt-platdev: Blacklist ti,am62d2 SoC
> cpufreq: ti: Add support for AM62D2
>
> Vibhore Vardhan (1):
> arm64: dts: ti: k3-am62a-main: Fix pinctrl properties
>
> arch/arm64/boot/dts/ti/k3-am62a-main.dtsi | 2 +-
> arch/arm64/boot/dts/ti/k3-am62d2-evm.dts | 21 +++++++++++++++++++++
> drivers/cpufreq/cpufreq-dt-platdev.c | 1 +
> drivers/cpufreq/ti-cpufreq.c | 2 ++
> 4 files changed, 25 insertions(+), 1 deletion(-)
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/4] arm64: dts: ti: k3-am62a-main: Fix pinctrl properties
2025-08-20 8:33 ` [PATCH 1/4] arm64: dts: ti: k3-am62a-main: Fix pinctrl properties Paresh Bhagat
@ 2025-08-21 6:35 ` Raghavendra, Vignesh
0 siblings, 0 replies; 10+ messages in thread
From: Raghavendra, Vignesh @ 2025-08-21 6:35 UTC (permalink / raw)
To: Paresh Bhagat, nm, praneeth
Cc: kristo, robh, krzk+dt, conor+dt, rafael, viresh.kumar,
linux-arm-kernel, devicetree, linux-kernel, linux-pm, khasim,
v-singh1, afd, bb, s-vadapalli
On 8/20/2025 2:03 PM, Paresh Bhagat wrote:
> From: Vibhore Vardhan <vibhore@ti.com>
>
> Correct reg length to match end address - start address for main
> PADCFG registers.
>
Needs a Fixes tag and Cc stable tag. Read [1]
Please add a link to the documentation to support your claim.
> Signed-off-by: Vibhore Vardhan <vibhore@ti.com>
> Signed-off-by: Paresh Bhagat <p-bhagat@ti.com>
> ---
> arch/arm64/boot/dts/ti/k3-am62a-main.dtsi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
> index 9cad79d7bbc1..260279702c01 100644
> --- a/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
> +++ b/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
> @@ -267,7 +267,7 @@ secure_proxy_sa3: mailbox@43600000 {
>
> main_pmx0: pinctrl@f4000 {
> compatible = "pinctrl-single";
> - reg = <0x00 0xf4000 0x00 0x2ac>;
> + reg = <0x00 0xf4000 0x00 0x25c>;
> #pinctrl-cells = <1>;
> pinctrl-single,register-width = <32>;
> pinctrl-single,function-mask = <0xffffffff>;
[1] https://docs.kernel.org/process/submitting-patches.html
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/4] Add cpufreq and USB support for AM62D2
2025-08-20 8:33 [PATCH 0/4] Add cpufreq and USB support for AM62D2 Paresh Bhagat
` (5 preceding siblings ...)
2025-08-21 6:32 ` Raghavendra, Vignesh
@ 2025-08-21 12:27 ` Nishanth Menon
2025-08-22 6:21 ` Paresh Bhagat
6 siblings, 1 reply; 10+ messages in thread
From: Nishanth Menon @ 2025-08-21 12:27 UTC (permalink / raw)
To: Paresh Bhagat
Cc: vigneshr, praneeth, kristo, robh, krzk+dt, conor+dt, rafael,
viresh.kumar, linux-arm-kernel, devicetree, linux-kernel,
linux-pm, khasim, v-singh1, afd, bb, s-vadapalli
On 14:03-20250820, Paresh Bhagat wrote:
> This patch series introduces following changes:
>
> * Patch 1 fixes the register length in main_pmx/padconfig for AM62D
> and AM62A.
>
> * Patch 2 enables USB support for AM62D2-EVM by adding pinmux and device
> tree nodes.
>
> * Patch 3 adds AM62D2 SoC to cpufreq-dt-platdev blacklist so that
> cpufreq is handled by the ti-cpufreq driver instead of the
> generic cpufreq-dt driver.
>
> * Patch 4 extends ti-cpufreq to register AM62D2 SoC support by
> reusing the am62a7_soc_data.
>
> Boot Logs-
> https://gist.github.com/paresh-bhagat12/e29d33c3fd92ff17580edf1441ece9f9
>
> Tech Ref Manual-https://www.ti.com/lit/pdf/sprujd4
> Schematics Link-https://www.ti.com/lit/zip/sprcal5
>
> Paresh Bhagat (3):
> arm64: dts: ti: k3-am62d2-evm: Enable USB support
> cpufreq: dt-platdev: Blacklist ti,am62d2 SoC
> cpufreq: ti: Add support for AM62D2
>
> Vibhore Vardhan (1):
> arm64: dts: ti: k3-am62a-main: Fix pinctrl properties
Please do not mix things up to maintainers. Please post patches #1,2
separately to DT maintainers - these do not have any relationship with
the rest of the driver patches.
>
> arch/arm64/boot/dts/ti/k3-am62a-main.dtsi | 2 +-
> arch/arm64/boot/dts/ti/k3-am62d2-evm.dts | 21 +++++++++++++++++++++
> drivers/cpufreq/cpufreq-dt-platdev.c | 1 +
> drivers/cpufreq/ti-cpufreq.c | 2 ++
> 4 files changed, 25 insertions(+), 1 deletion(-)
>
> --
> 2.34.1
>
--
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D
https://ti.com/opensource
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/4] Add cpufreq and USB support for AM62D2
2025-08-21 12:27 ` Nishanth Menon
@ 2025-08-22 6:21 ` Paresh Bhagat
0 siblings, 0 replies; 10+ messages in thread
From: Paresh Bhagat @ 2025-08-22 6:21 UTC (permalink / raw)
To: Nishanth Menon, Raghavendra, Vignesh
Cc: praneeth, kristo, robh, krzk+dt, conor+dt, rafael, viresh.kumar,
linux-arm-kernel, devicetree, linux-kernel, linux-pm, khasim,
v-singh1, afd, bb, s-vadapalli
Hi Nishanth and Vignesh,
On 21/08/25 17:57, Nishanth Menon wrote:
> On 14:03-20250820, Paresh Bhagat wrote:
>> This patch series introduces following changes:
>>
>> * Patch 1 fixes the register length in main_pmx/padconfig for AM62D
>> and AM62A.
>>
>> * Patch 2 enables USB support for AM62D2-EVM by adding pinmux and device
>> tree nodes.
>>
>> * Patch 3 adds AM62D2 SoC to cpufreq-dt-platdev blacklist so that
>> cpufreq is handled by the ti-cpufreq driver instead of the
>> generic cpufreq-dt driver.
>>
>> * Patch 4 extends ti-cpufreq to register AM62D2 SoC support by
>> reusing the am62a7_soc_data.
>>
>> Boot Logs-
>> https://gist.github.com/paresh-bhagat12/e29d33c3fd92ff17580edf1441ece9f9
>>
>> Tech Ref Manual-https://www.ti.com/lit/pdf/sprujd4
>> Schematics Link-https://www.ti.com/lit/zip/sprcal5
>>
>> Paresh Bhagat (3):
>> arm64: dts: ti: k3-am62d2-evm: Enable USB support
>> cpufreq: dt-platdev: Blacklist ti,am62d2 SoC
>> cpufreq: ti: Add support for AM62D2
>>
>> Vibhore Vardhan (1):
>> arm64: dts: ti: k3-am62a-main: Fix pinctrl properties
> Please do not mix things up to maintainers. Please post patches #1,2
> separately to DT maintainers - these do not have any relationship with
> the rest of the driver patches.
Thanks for the review. I will keep patches in separate series for
further set of patches.
>
>> arch/arm64/boot/dts/ti/k3-am62a-main.dtsi | 2 +-
>> arch/arm64/boot/dts/ti/k3-am62d2-evm.dts | 21 +++++++++++++++++++++
>> drivers/cpufreq/cpufreq-dt-platdev.c | 1 +
>> drivers/cpufreq/ti-cpufreq.c | 2 ++
>> 4 files changed, 25 insertions(+), 1 deletion(-)
>>
>> --
>> 2.34.1
>>
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-08-22 6:22 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-20 8:33 [PATCH 0/4] Add cpufreq and USB support for AM62D2 Paresh Bhagat
2025-08-20 8:33 ` [PATCH 1/4] arm64: dts: ti: k3-am62a-main: Fix pinctrl properties Paresh Bhagat
2025-08-21 6:35 ` Raghavendra, Vignesh
2025-08-20 8:33 ` [PATCH 2/4] arm64: dts: ti: k3-am62d2-evm: Enable USB support Paresh Bhagat
2025-08-20 8:33 ` [PATCH 3/4] cpufreq: dt-platdev: Blacklist ti,am62d2 SoC Paresh Bhagat
2025-08-20 8:33 ` [PATCH 4/4] cpufreq: ti: Add support for AM62D2 Paresh Bhagat
2025-08-20 8:37 ` [PATCH 0/4] Add cpufreq and USB " Viresh Kumar
2025-08-21 6:32 ` Raghavendra, Vignesh
2025-08-21 12:27 ` Nishanth Menon
2025-08-22 6:21 ` Paresh Bhagat
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).