* [PATCH v6 0/5] Enable eQEP DT support for Sitara K3 platforms
@ 2024-09-24 22:06 Judith Mendez
2024-09-24 22:06 ` [PATCH v6 1/5] arm64: dts: ti: k3-am62-main: Add eQEP nodes Judith Mendez
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: Judith Mendez @ 2024-09-24 22:06 UTC (permalink / raw)
To: William Breathitt Gray
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Vignesh Raghavendra, Nishanth Menon, Tero Kristo, David Lechner,
devicetree, linux-kernel, linux-arm-kernel, linux-iio,
Judith Mendez
Git rebased the series since due to merge conflicts, part of the
series was not merged. Also dropped the patches that were already
merged.
This patch series adds eQEP DT nodes for K3 Sitara devices:
- AM62x
- AM62ax
- AM62px
- AM64x
Changes since v5:
- Drop patch 1/8, 2/8, 8/8 since they have been merged
v5: https://lore.kernel.org/linux-devicetree/20240612135538.2447938-1-jm@ti.com/
v4: https://lore.kernel.org/linux-devicetree/20240610144637.477954-1-jm@ti.com/
v3: https://lore.kernel.org/linux-devicetree/20240607162755.366144-1-jm@ti.com/
v2: https://lore.kernel.org/linux-devicetree/20240523231516.545085-1-jm@ti.com/
v1: https://lore.kernel.org/linux-devicetree/20240418221417.1592787-1-jm@ti.com/
Judith Mendez (5):
arm64: dts: ti: k3-am62-main: Add eQEP nodes
arm64: dts: ti: k3-am62a-main: Add eQEP nodes
arm64: dts: ti: k3-am62p-main: Add eQEP nodes
arm64: dts: ti: k3-am64-main: Add eQEP nodes
arm64: dts: ti: k3-am64x-sk: Enable eQEP
arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 27 +++++++++++++++++++
arch/arm64/boot/dts/ti/k3-am62a-main.dtsi | 27 +++++++++++++++++++
.../dts/ti/k3-am62p-j722s-common-main.dtsi | 27 +++++++++++++++++++
arch/arm64/boot/dts/ti/k3-am64-main.dtsi | 27 +++++++++++++++++++
arch/arm64/boot/dts/ti/k3-am642-sk.dts | 17 ++++++++++++
5 files changed, 125 insertions(+)
--
2.46.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v6 1/5] arm64: dts: ti: k3-am62-main: Add eQEP nodes
2024-09-24 22:06 [PATCH v6 0/5] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
@ 2024-09-24 22:06 ` Judith Mendez
2024-09-24 22:06 ` [PATCH v6 2/5] arm64: dts: ti: k3-am62a-main: " Judith Mendez
` (5 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Judith Mendez @ 2024-09-24 22:06 UTC (permalink / raw)
To: William Breathitt Gray
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Vignesh Raghavendra, Nishanth Menon, Tero Kristo, David Lechner,
devicetree, linux-kernel, linux-arm-kernel, linux-iio,
Judith Mendez
Add eQEP device tree nodes 0-2 for AM625 SoC.
Signed-off-by: Judith Mendez <jm@ti.com>
---
Changes since v5:
- No change
---
arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 27 ++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
index 5b92aef5b284..98ba75af8730 100644
--- a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
@@ -843,6 +843,33 @@ ecap2: pwm@23120000 {
status = "disabled";
};
+ eqep0: counter@23200000 {
+ compatible = "ti,am62-eqep";
+ reg = <0x00 0x23200000 0x00 0x100>;
+ power-domains = <&k3_pds 59 TI_SCI_PD_EXCLUSIVE>;
+ clocks = <&k3_clks 59 0>;
+ interrupts = <GIC_SPI 116 IRQ_TYPE_EDGE_RISING>;
+ status = "disabled";
+ };
+
+ eqep1: counter@23210000 {
+ compatible = "ti,am62-eqep";
+ reg = <0x00 0x23210000 0x00 0x100>;
+ power-domains = <&k3_pds 60 TI_SCI_PD_EXCLUSIVE>;
+ clocks = <&k3_clks 60 0>;
+ interrupts = <GIC_SPI 117 IRQ_TYPE_EDGE_RISING>;
+ status = "disabled";
+ };
+
+ eqep2: counter@23220000 {
+ compatible = "ti,am62-eqep";
+ reg = <0x00 0x23220000 0x00 0x100>;
+ power-domains = <&k3_pds 62 TI_SCI_PD_EXCLUSIVE>;
+ clocks = <&k3_clks 62 0>;
+ interrupts = <GIC_SPI 118 IRQ_TYPE_EDGE_RISING>;
+ status = "disabled";
+ };
+
main_mcan0: can@20701000 {
compatible = "bosch,m_can";
reg = <0x00 0x20701000 0x00 0x200>,
--
2.46.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v6 2/5] arm64: dts: ti: k3-am62a-main: Add eQEP nodes
2024-09-24 22:06 [PATCH v6 0/5] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
2024-09-24 22:06 ` [PATCH v6 1/5] arm64: dts: ti: k3-am62-main: Add eQEP nodes Judith Mendez
@ 2024-09-24 22:06 ` Judith Mendez
2024-09-24 22:06 ` [PATCH v6 3/5] arm64: dts: ti: k3-am62p-main: " Judith Mendez
` (4 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Judith Mendez @ 2024-09-24 22:06 UTC (permalink / raw)
To: William Breathitt Gray
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Vignesh Raghavendra, Nishanth Menon, Tero Kristo, David Lechner,
devicetree, linux-kernel, linux-arm-kernel, linux-iio,
Judith Mendez
Add eQEP device tree nodes 0-2 for AM62A7 SoC.
Signed-off-by: Judith Mendez <jm@ti.com>
---
Changes since v5:
- No change
---
arch/arm64/boot/dts/ti/k3-am62a-main.dtsi | 27 +++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
index 16a578ae2b41..a93e2cd7b8c7 100644
--- a/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
@@ -943,6 +943,33 @@ ecap2: pwm@23120000 {
status = "disabled";
};
+ eqep0: counter@23200000 {
+ compatible = "ti,am62-eqep";
+ reg = <0x00 0x23200000 0x00 0x100>;
+ power-domains = <&k3_pds 59 TI_SCI_PD_EXCLUSIVE>;
+ clocks = <&k3_clks 59 0>;
+ interrupts = <GIC_SPI 116 IRQ_TYPE_EDGE_RISING>;
+ status = "disabled";
+ };
+
+ eqep1: counter@23210000 {
+ compatible = "ti,am62-eqep";
+ reg = <0x00 0x23210000 0x00 0x100>;
+ power-domains = <&k3_pds 60 TI_SCI_PD_EXCLUSIVE>;
+ clocks = <&k3_clks 60 0>;
+ interrupts = <GIC_SPI 117 IRQ_TYPE_EDGE_RISING>;
+ status = "disabled";
+ };
+
+ eqep2: counter@23220000 {
+ compatible = "ti,am62-eqep";
+ reg = <0x00 0x23220000 0x00 0x100>;
+ power-domains = <&k3_pds 62 TI_SCI_PD_EXCLUSIVE>;
+ clocks = <&k3_clks 62 0>;
+ interrupts = <GIC_SPI 118 IRQ_TYPE_EDGE_RISING>;
+ status = "disabled";
+ };
+
mcasp0: audio-controller@2b00000 {
compatible = "ti,am33xx-mcasp-audio";
reg = <0x00 0x02b00000 0x00 0x2000>,
--
2.46.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v6 3/5] arm64: dts: ti: k3-am62p-main: Add eQEP nodes
2024-09-24 22:06 [PATCH v6 0/5] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
2024-09-24 22:06 ` [PATCH v6 1/5] arm64: dts: ti: k3-am62-main: Add eQEP nodes Judith Mendez
2024-09-24 22:06 ` [PATCH v6 2/5] arm64: dts: ti: k3-am62a-main: " Judith Mendez
@ 2024-09-24 22:06 ` Judith Mendez
2024-09-24 22:06 ` [PATCH v6 4/5] arm64: dts: ti: k3-am64-main: " Judith Mendez
` (3 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Judith Mendez @ 2024-09-24 22:06 UTC (permalink / raw)
To: William Breathitt Gray
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Vignesh Raghavendra, Nishanth Menon, Tero Kristo, David Lechner,
devicetree, linux-kernel, linux-arm-kernel, linux-iio,
Judith Mendez
Add eQEP device tree nodes 0-2 for AM62P5 SoC.
Signed-off-by: Judith Mendez <jm@ti.com>
---
Changes since v5:
- No change
---
.../dts/ti/k3-am62p-j722s-common-main.dtsi | 27 +++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-main.dtsi
index 9b6f51379108..41e1c24b1144 100644
--- a/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-main.dtsi
@@ -827,6 +827,33 @@ ecap2: pwm@23120000 {
status = "disabled";
};
+ eqep0: counter@23200000 {
+ compatible = "ti,am62-eqep";
+ reg = <0x00 0x23200000 0x00 0x100>;
+ power-domains = <&k3_pds 59 TI_SCI_PD_EXCLUSIVE>;
+ clocks = <&k3_clks 59 0>;
+ interrupts = <GIC_SPI 116 IRQ_TYPE_EDGE_RISING>;
+ status = "disabled";
+ };
+
+ eqep1: counter@23210000 {
+ compatible = "ti,am62-eqep";
+ reg = <0x00 0x23210000 0x00 0x100>;
+ power-domains = <&k3_pds 60 TI_SCI_PD_EXCLUSIVE>;
+ clocks = <&k3_clks 60 0>;
+ interrupts = <GIC_SPI 117 IRQ_TYPE_EDGE_RISING>;
+ status = "disabled";
+ };
+
+ eqep2: counter@23220000 {
+ compatible = "ti,am62-eqep";
+ reg = <0x00 0x23220000 0x00 0x100>;
+ power-domains = <&k3_pds 62 TI_SCI_PD_EXCLUSIVE>;
+ clocks = <&k3_clks 62 0>;
+ interrupts = <GIC_SPI 118 IRQ_TYPE_EDGE_RISING>;
+ status = "disabled";
+ };
+
main_mcan0: can@20701000 {
compatible = "bosch,m_can";
reg = <0x00 0x20701000 0x00 0x200>,
--
2.46.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v6 4/5] arm64: dts: ti: k3-am64-main: Add eQEP nodes
2024-09-24 22:06 [PATCH v6 0/5] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
` (2 preceding siblings ...)
2024-09-24 22:06 ` [PATCH v6 3/5] arm64: dts: ti: k3-am62p-main: " Judith Mendez
@ 2024-09-24 22:06 ` Judith Mendez
2024-09-24 22:07 ` [PATCH v6 5/5] arm64: dts: ti: k3-am64x-sk: Enable eQEP Judith Mendez
` (2 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Judith Mendez @ 2024-09-24 22:06 UTC (permalink / raw)
To: William Breathitt Gray
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Vignesh Raghavendra, Nishanth Menon, Tero Kristo, David Lechner,
devicetree, linux-kernel, linux-arm-kernel, linux-iio,
Judith Mendez
Add eQEP device tree nodes 0-2 for AM642 SoC.
Signed-off-by: Judith Mendez <jm@ti.com>
---
Changes since v5:
- No change
---
arch/arm64/boot/dts/ti/k3-am64-main.dtsi | 27 ++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/arch/arm64/boot/dts/ti/k3-am64-main.dtsi b/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
index 7eae18399caa..f96cb19fb3f1 100644
--- a/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
@@ -1175,6 +1175,33 @@ ecap2: pwm@23120000 {
status = "disabled";
};
+ eqep0: counter@23200000 {
+ compatible = "ti,am62-eqep";
+ reg = <0x00 0x23200000 0x00 0x100>;
+ power-domains = <&k3_pds 59 TI_SCI_PD_EXCLUSIVE>;
+ clocks = <&k3_clks 59 0>;
+ interrupts = <GIC_SPI 116 IRQ_TYPE_EDGE_RISING>;
+ status = "disabled";
+ };
+
+ eqep1: counter@23210000 {
+ compatible = "ti,am62-eqep";
+ reg = <0x00 0x23210000 0x00 0x100>;
+ power-domains = <&k3_pds 60 TI_SCI_PD_EXCLUSIVE>;
+ clocks = <&k3_clks 60 0>;
+ interrupts = <GIC_SPI 117 IRQ_TYPE_EDGE_RISING>;
+ status = "disabled";
+ };
+
+ eqep2: counter@23220000 {
+ compatible = "ti,am62-eqep";
+ reg = <0x00 0x23220000 0x00 0x100>;
+ power-domains = <&k3_pds 62 TI_SCI_PD_EXCLUSIVE>;
+ clocks = <&k3_clks 62 0>;
+ interrupts = <GIC_SPI 118 IRQ_TYPE_EDGE_RISING>;
+ status = "disabled";
+ };
+
main_rti0: watchdog@e000000 {
compatible = "ti,j7-rti-wdt";
reg = <0x00 0xe000000 0x00 0x100>;
--
2.46.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v6 5/5] arm64: dts: ti: k3-am64x-sk: Enable eQEP
2024-09-24 22:06 [PATCH v6 0/5] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
` (3 preceding siblings ...)
2024-09-24 22:06 ` [PATCH v6 4/5] arm64: dts: ti: k3-am64-main: " Judith Mendez
@ 2024-09-24 22:07 ` Judith Mendez
2024-09-29 10:47 ` [PATCH v6 0/5] Enable eQEP DT support for Sitara K3 platforms William Breathitt Gray
2024-10-28 15:05 ` Vignesh Raghavendra
6 siblings, 0 replies; 9+ messages in thread
From: Judith Mendez @ 2024-09-24 22:07 UTC (permalink / raw)
To: William Breathitt Gray
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Vignesh Raghavendra, Nishanth Menon, Tero Kristo, David Lechner,
devicetree, linux-kernel, linux-arm-kernel, linux-iio,
Judith Mendez
There are 3 instances of eQEP on AM64x. Only EQEP0 signals
can be routed to the user expansion so enable only EQEP0
in k3-am642-sk.dts.
Signed-off-by: Judith Mendez <jm@ti.com>
---
Changes since v5:
- No change
---
arch/arm64/boot/dts/ti/k3-am642-sk.dts | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/arch/arm64/boot/dts/ti/k3-am642-sk.dts b/arch/arm64/boot/dts/ti/k3-am642-sk.dts
index 86369525259c..47b351067bb8 100644
--- a/arch/arm64/boot/dts/ti/k3-am642-sk.dts
+++ b/arch/arm64/boot/dts/ti/k3-am642-sk.dts
@@ -357,6 +357,16 @@ main_ecap0_pins_default: main-ecap0-default-pins {
AM64X_IOPAD(0x0270, PIN_INPUT, 0) /* (D18) ECAP0_IN_APWM_OUT */
>;
};
+
+ main_eqep0_pins_default: main-eqep0-default-pins {
+ pinctrl-single,pins = <
+ AM64X_IOPAD(0x00a0, PIN_INPUT, 3) /* (N16) GPMC0_WPn.EQEP0_A */
+ AM64X_IOPAD(0x00a4, PIN_INPUT, 3) /* (N17) GPMC0_DIR.EQEP0_B */
+ AM64X_IOPAD(0x00ac, PIN_INPUT, 3) /* (R20) GPMC0_CSn1.EQEP0_I */
+ AM64X_IOPAD(0x00a8, PIN_INPUT, 3) /* (R19) GPMC0_CSn0.EQEP0_S */
+ >;
+ };
+
main_wlan_en_pins_default: main-wlan-en-default-pins {
pinctrl-single,pins = <
AM64X_IOPAD(0x00c4, PIN_OUTPUT_PULLUP, 7) /* (V8) GPIO0_48 */
@@ -687,3 +697,10 @@ &ecap0 {
pinctrl-names = "default";
pinctrl-0 = <&main_ecap0_pins_default>;
};
+
+&eqep0 {
+ status = "okay";
+ /* EQEP0 A & B available on pins 18 & 22 of J4 header */
+ pinctrl-names = "default";
+ pinctrl-0 = <&main_eqep0_pins_default>;
+};
--
2.46.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v6 0/5] Enable eQEP DT support for Sitara K3 platforms
2024-09-24 22:06 [PATCH v6 0/5] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
` (4 preceding siblings ...)
2024-09-24 22:07 ` [PATCH v6 5/5] arm64: dts: ti: k3-am64x-sk: Enable eQEP Judith Mendez
@ 2024-09-29 10:47 ` William Breathitt Gray
2024-09-30 4:07 ` Vignesh Raghavendra
2024-10-28 15:05 ` Vignesh Raghavendra
6 siblings, 1 reply; 9+ messages in thread
From: William Breathitt Gray @ 2024-09-29 10:47 UTC (permalink / raw)
To: Vignesh Raghavendra, Judith Mendez
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Nishanth Menon,
Tero Kristo, David Lechner, devicetree, linux-kernel,
linux-arm-kernel, linux-iio
[-- Attachment #1: Type: text/plain, Size: 1807 bytes --]
On Tue, Sep 24, 2024 at 05:06:55PM -0500, Judith Mendez wrote:
> Git rebased the series since due to merge conflicts, part of the
> series was not merged. Also dropped the patches that were already
> merged.
>
> This patch series adds eQEP DT nodes for K3 Sitara devices:
> - AM62x
> - AM62ax
> - AM62px
> - AM64x
>
> Changes since v5:
> - Drop patch 1/8, 2/8, 8/8 since they have been merged
>
> v5: https://lore.kernel.org/linux-devicetree/20240612135538.2447938-1-jm@ti.com/
> v4: https://lore.kernel.org/linux-devicetree/20240610144637.477954-1-jm@ti.com/
> v3: https://lore.kernel.org/linux-devicetree/20240607162755.366144-1-jm@ti.com/
> v2: https://lore.kernel.org/linux-devicetree/20240523231516.545085-1-jm@ti.com/
> v1: https://lore.kernel.org/linux-devicetree/20240418221417.1592787-1-jm@ti.com/
>
> Judith Mendez (5):
> arm64: dts: ti: k3-am62-main: Add eQEP nodes
> arm64: dts: ti: k3-am62a-main: Add eQEP nodes
> arm64: dts: ti: k3-am62p-main: Add eQEP nodes
> arm64: dts: ti: k3-am64-main: Add eQEP nodes
> arm64: dts: ti: k3-am64x-sk: Enable eQEP
>
> arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 27 +++++++++++++++++++
> arch/arm64/boot/dts/ti/k3-am62a-main.dtsi | 27 +++++++++++++++++++
> .../dts/ti/k3-am62p-j722s-common-main.dtsi | 27 +++++++++++++++++++
> arch/arm64/boot/dts/ti/k3-am64-main.dtsi | 27 +++++++++++++++++++
> arch/arm64/boot/dts/ti/k3-am642-sk.dts | 17 ++++++++++++
> 5 files changed, 125 insertions(+)
>
> --
> 2.46.0
>
I recall last time these needed to go via the TI SoC/arm64 tree [^1]. Is
that still the case, or do you want me to pick these up now via the
Counter tree?
William Breathitt Gray
[^1]: https://lore.kernel.org/all/d595b624-ef18-4aac-ab2c-bd36a8c4de3d@ti.com/
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v6 0/5] Enable eQEP DT support for Sitara K3 platforms
2024-09-29 10:47 ` [PATCH v6 0/5] Enable eQEP DT support for Sitara K3 platforms William Breathitt Gray
@ 2024-09-30 4:07 ` Vignesh Raghavendra
0 siblings, 0 replies; 9+ messages in thread
From: Vignesh Raghavendra @ 2024-09-30 4:07 UTC (permalink / raw)
To: William Breathitt Gray, Judith Mendez
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Nishanth Menon,
Tero Kristo, David Lechner, devicetree, linux-kernel,
linux-arm-kernel, linux-iio
Hi,
On 29/09/24 16:17, William Breathitt Gray wrote:
> On Tue, Sep 24, 2024 at 05:06:55PM -0500, Judith Mendez wrote:
>> Git rebased the series since due to merge conflicts, part of the
>> series was not merged. Also dropped the patches that were already
>> merged.
>>
>> This patch series adds eQEP DT nodes for K3 Sitara devices:
>> - AM62x
>> - AM62ax
>> - AM62px
>> - AM64x
>>
>> Changes since v5:
>> - Drop patch 1/8, 2/8, 8/8 since they have been merged
>>
>> v5: https://lore.kernel.org/linux-devicetree/20240612135538.2447938-1-jm@ti.com/
>> v4: https://lore.kernel.org/linux-devicetree/20240610144637.477954-1-jm@ti.com/
>> v3: https://lore.kernel.org/linux-devicetree/20240607162755.366144-1-jm@ti.com/
>> v2: https://lore.kernel.org/linux-devicetree/20240523231516.545085-1-jm@ti.com/
>> v1: https://lore.kernel.org/linux-devicetree/20240418221417.1592787-1-jm@ti.com/
>>
>> Judith Mendez (5):
>> arm64: dts: ti: k3-am62-main: Add eQEP nodes
>> arm64: dts: ti: k3-am62a-main: Add eQEP nodes
>> arm64: dts: ti: k3-am62p-main: Add eQEP nodes
>> arm64: dts: ti: k3-am64-main: Add eQEP nodes
>> arm64: dts: ti: k3-am64x-sk: Enable eQEP
>>
>> arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 27 +++++++++++++++++++
>> arch/arm64/boot/dts/ti/k3-am62a-main.dtsi | 27 +++++++++++++++++++
>> .../dts/ti/k3-am62p-j722s-common-main.dtsi | 27 +++++++++++++++++++
>> arch/arm64/boot/dts/ti/k3-am64-main.dtsi | 27 +++++++++++++++++++
>> arch/arm64/boot/dts/ti/k3-am642-sk.dts | 17 ++++++++++++
>> 5 files changed, 125 insertions(+)
>>
>> --
>> 2.46.0
>>
>
> I recall last time these needed to go via the TI SoC/arm64 tree [^1].
Yes, I will queue this up now to 6.12-rc1 is out. Feel free to ignore
the series
> Is that still the case, or do you want me to pick these up now via the
> Counter tree?
>
> William Breathitt Gray
>
> [^1]: https://lore.kernel.org/all/d595b624-ef18-4aac-ab2c-bd36a8c4de3d@ti.com/
Regards
Vignesh
--
Regards
Vignesh
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v6 0/5] Enable eQEP DT support for Sitara K3 platforms
2024-09-24 22:06 [PATCH v6 0/5] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
` (5 preceding siblings ...)
2024-09-29 10:47 ` [PATCH v6 0/5] Enable eQEP DT support for Sitara K3 platforms William Breathitt Gray
@ 2024-10-28 15:05 ` Vignesh Raghavendra
6 siblings, 0 replies; 9+ messages in thread
From: Vignesh Raghavendra @ 2024-10-28 15:05 UTC (permalink / raw)
To: William Breathitt Gray, Judith Mendez
Cc: Vignesh Raghavendra, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Nishanth Menon, Tero Kristo, David Lechner,
devicetree, linux-kernel, linux-arm-kernel, linux-iio
Hi Judith Mendez,
On Tue, 24 Sep 2024 17:06:55 -0500, Judith Mendez wrote:
> Git rebased the series since due to merge conflicts, part of the
> series was not merged. Also dropped the patches that were already
> merged.
>
> This patch series adds eQEP DT nodes for K3 Sitara devices:
> - AM62x
> - AM62ax
> - AM62px
> - AM64x
>
> [...]
I have applied the following to branch ti-k3-dts-next on [1].
Thank you!
[1/5] arm64: dts: ti: k3-am62-main: Add eQEP nodes
commit: 79e668d0d938ca05f340bd1faf37262f31c7a029
[2/5] arm64: dts: ti: k3-am62a-main: Add eQEP nodes
commit: 36370ccf93bd0bd2be0c529ef7c0b687988ad3c0
[3/5] arm64: dts: ti: k3-am62p-main: Add eQEP nodes
commit: 0f4a318ee64c647e2cbf7d802b8d06b03aef31e5
[4/5] arm64: dts: ti: k3-am64-main: Add eQEP nodes
commit: 78b918b58e4b13ad53373882b01945106d196ff9
[5/5] arm64: dts: ti: k3-am64x-sk: Enable eQEP
commit: 25da98eb3997d21e128ab75d426923a0dc23c4e4
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent up the chain during
the next merge window (or sooner if it is a relevant bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
[1] https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
--
Vignesh
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-10-28 15:09 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-24 22:06 [PATCH v6 0/5] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
2024-09-24 22:06 ` [PATCH v6 1/5] arm64: dts: ti: k3-am62-main: Add eQEP nodes Judith Mendez
2024-09-24 22:06 ` [PATCH v6 2/5] arm64: dts: ti: k3-am62a-main: " Judith Mendez
2024-09-24 22:06 ` [PATCH v6 3/5] arm64: dts: ti: k3-am62p-main: " Judith Mendez
2024-09-24 22:06 ` [PATCH v6 4/5] arm64: dts: ti: k3-am64-main: " Judith Mendez
2024-09-24 22:07 ` [PATCH v6 5/5] arm64: dts: ti: k3-am64x-sk: Enable eQEP Judith Mendez
2024-09-29 10:47 ` [PATCH v6 0/5] Enable eQEP DT support for Sitara K3 platforms William Breathitt Gray
2024-09-30 4:07 ` Vignesh Raghavendra
2024-10-28 15:05 ` Vignesh Raghavendra
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).