* [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms
@ 2024-06-07 16:27 Judith Mendez
2024-06-07 16:27 ` [PATCH v3 1/8] dt-bindings: counter: Add new ti,am62-eqep compatible Judith Mendez
` (8 more replies)
0 siblings, 9 replies; 12+ messages in thread
From: Judith Mendez @ 2024-06-07 16:27 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Catalin Marinas,
Will Deacon, William Breathitt Gray
Cc: David Lechner, linux-arm-kernel, devicetree, linux-kernel,
linux-iio, Nishanth Menon, Vignesh Raghavendra
This patch series adds eQEP DT nodes for K3 Sitara devices:
- AM62x
- AM62ax
- AM62px
- AM64x
The series also allows the eQEP driver to be built for K3
architecture.
Changes since v2:
- Drop patch 8/8 ("Enable TI eQEP Driver")
- Enable eQEP0 in k3-am64 SK board
- Make clock-name optional for ti,am3352-eqep compatible
and do not allow for ti,am62-eqep compatible
Link to v2: https://lore.kernel.org/linux-devicetree/20240523231516.545085-1-jm@ti.com/
Link to v1: https://lore.kernel.org/linux-devicetree/20240418221417.1592787-1-jm@ti.com/
Judith Mendez (8):
dt-bindings: counter: Add new ti,am62-eqep compatible
counter/ti-eqep: Add new ti-am62-eqep compatible
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
counter: ti-eqep: Allow eQEP driver to be built for K3 devices
.../devicetree/bindings/counter/ti-eqep.yaml | 44 ++++++++++++++++---
arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 27 ++++++++++++
arch/arm64/boot/dts/ti/k3-am62a-main.dtsi | 27 ++++++++++++
arch/arm64/boot/dts/ti/k3-am62p-main.dtsi | 27 ++++++++++++
arch/arm64/boot/dts/ti/k3-am64-main.dtsi | 27 ++++++++++++
arch/arm64/boot/dts/ti/k3-am642-sk.dts | 18 ++++++++
drivers/counter/Kconfig | 2 +-
drivers/counter/ti-eqep.c | 1 +
8 files changed, 167 insertions(+), 6 deletions(-)
--
2.45.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v3 1/8] dt-bindings: counter: Add new ti,am62-eqep compatible
2024-06-07 16:27 [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
@ 2024-06-07 16:27 ` Judith Mendez
2024-06-08 13:22 ` David Lechner
2024-06-07 16:27 ` [PATCH v3 2/8] counter/ti-eqep: Add new ti-am62-eqep compatible Judith Mendez
` (7 subsequent siblings)
8 siblings, 1 reply; 12+ messages in thread
From: Judith Mendez @ 2024-06-07 16:27 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Catalin Marinas,
Will Deacon, William Breathitt Gray
Cc: David Lechner, linux-arm-kernel, devicetree, linux-kernel,
linux-iio, Nishanth Menon, Vignesh Raghavendra
Add new compatible ti,am62-eqep for TI K3 devices. If a device
uses this compatible, require power-domains property.
Since there is only one functional and interface clock for eqep,
clock-names is not really required, so removed from required
section, make it optional for ti,am3352-eqep compatible, and
update the example.
The clock-name also changed for TI K3 SoCs so do not allow
clock-names property for the new compatible.
While we are here, add an example using ti,am62-eqep compatible.
Signed-off-by: Judith Mendez <jm@ti.com>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
---
Changes since v2:
- Make clock-name optional for ti,am3352-eqep compatible
and do not allow for ti,am62-eqep compatible
---
.../devicetree/bindings/counter/ti-eqep.yaml | 44 ++++++++++++++++---
1 file changed, 39 insertions(+), 5 deletions(-)
diff --git a/Documentation/devicetree/bindings/counter/ti-eqep.yaml b/Documentation/devicetree/bindings/counter/ti-eqep.yaml
index 85f1ff83afe72..54611e06064a2 100644
--- a/Documentation/devicetree/bindings/counter/ti-eqep.yaml
+++ b/Documentation/devicetree/bindings/counter/ti-eqep.yaml
@@ -11,7 +11,9 @@ maintainers:
properties:
compatible:
- const: ti,am3352-eqep
+ enum:
+ - ti,am3352-eqep
+ - ti,am62-eqep
reg:
maxItems: 1
@@ -21,19 +23,35 @@ properties:
maxItems: 1
clocks:
- description: The clock that determines the SYSCLKOUT rate for the eQEP
- peripheral.
+ description: The functional and interface clock that determines the clock
+ rate for the eQEP peripheral.
maxItems: 1
clock-names:
const: sysclkout
+ power-domains:
+ maxItems: 1
+
+allOf:
+ - if:
+ properties:
+ compatible:
+ contains:
+ enum:
+ - ti,am62-eqep
+ then:
+ properties:
+ clock-names: false
+
+ required:
+ - power-domains
+
required:
- compatible
- reg
- interrupts
- clocks
- - clock-names
additionalProperties: false
@@ -43,8 +61,24 @@ examples:
compatible = "ti,am3352-eqep";
reg = <0x180 0x80>;
clocks = <&l4ls_gclk>;
- clock-names = "sysclkout";
interrupts = <79>;
};
+ - |
+ #include <dt-bindings/interrupt-controller/irq.h>
+ #include <dt-bindings/interrupt-controller/arm-gic.h>
+ #include <dt-bindings/soc/ti,sci_pm_domain.h>
+
+ bus {
+ #address-cells = <2>;
+ #size-cells = <2>;
+ 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";
+ };
+ };
...
--
2.45.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v3 2/8] counter/ti-eqep: Add new ti-am62-eqep compatible
2024-06-07 16:27 [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
2024-06-07 16:27 ` [PATCH v3 1/8] dt-bindings: counter: Add new ti,am62-eqep compatible Judith Mendez
@ 2024-06-07 16:27 ` Judith Mendez
2024-06-07 16:27 ` [PATCH v3 3/8] arm64: dts: ti: k3-am62-main: Add eQEP nodes Judith Mendez
` (6 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Judith Mendez @ 2024-06-07 16:27 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Catalin Marinas,
Will Deacon, William Breathitt Gray
Cc: David Lechner, linux-arm-kernel, devicetree, linux-kernel,
linux-iio, Nishanth Menon, Vignesh Raghavendra
Add new compatible for ti-am62-eqep for TI K3 SoC's.
Signed-off-by: Judith Mendez <jm@ti.com>
Reviewed-by: David Lechner <david@lechnology.com>
---
Changes since v2:
- No change
---
drivers/counter/ti-eqep.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/counter/ti-eqep.c b/drivers/counter/ti-eqep.c
index b0f24cf3e891d..f6850e142ddff 100644
--- a/drivers/counter/ti-eqep.c
+++ b/drivers/counter/ti-eqep.c
@@ -439,6 +439,7 @@ static int ti_eqep_remove(struct platform_device *pdev)
static const struct of_device_id ti_eqep_of_match[] = {
{ .compatible = "ti,am3352-eqep", },
+ { .compatible = "ti,am62-eqep", },
{ },
};
MODULE_DEVICE_TABLE(of, ti_eqep_of_match);
--
2.45.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v3 3/8] arm64: dts: ti: k3-am62-main: Add eQEP nodes
2024-06-07 16:27 [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
2024-06-07 16:27 ` [PATCH v3 1/8] dt-bindings: counter: Add new ti,am62-eqep compatible Judith Mendez
2024-06-07 16:27 ` [PATCH v3 2/8] counter/ti-eqep: Add new ti-am62-eqep compatible Judith Mendez
@ 2024-06-07 16:27 ` Judith Mendez
2024-06-07 16:27 ` [PATCH v3 4/8] arm64: dts: ti: k3-am62a-main: " Judith Mendez
` (5 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Judith Mendez @ 2024-06-07 16:27 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Catalin Marinas,
Will Deacon, William Breathitt Gray
Cc: David Lechner, linux-arm-kernel, devicetree, linux-kernel,
linux-iio, Nishanth Menon, Vignesh Raghavendra
Add eQEP device tree nodes 0-2 for AM625 SoC.
Signed-off-by: Judith Mendez <jm@ti.com>
---
Changes since v2:
- 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 448a59dc53a77..525997456adaa 100644
--- a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
@@ -846,6 +846,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.45.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v3 4/8] arm64: dts: ti: k3-am62a-main: Add eQEP nodes
2024-06-07 16:27 [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
` (2 preceding siblings ...)
2024-06-07 16:27 ` [PATCH v3 3/8] arm64: dts: ti: k3-am62-main: Add eQEP nodes Judith Mendez
@ 2024-06-07 16:27 ` Judith Mendez
2024-06-07 16:27 ` [PATCH v3 5/8] arm64: dts: ti: k3-am62p-main: " Judith Mendez
` (4 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Judith Mendez @ 2024-06-07 16:27 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Catalin Marinas,
Will Deacon, William Breathitt Gray
Cc: David Lechner, linux-arm-kernel, devicetree, linux-kernel,
linux-iio, Nishanth Menon, Vignesh Raghavendra
Add eQEP device tree nodes 0-2 for AM62A7 SoC.
Signed-off-by: Judith Mendez <jm@ti.com>
---
Changes since v2:
- 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 bf9c2d9c6439a..6c32c0c0d8dcc 100644
--- a/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
@@ -909,6 +909,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.45.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v3 5/8] arm64: dts: ti: k3-am62p-main: Add eQEP nodes
2024-06-07 16:27 [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
` (3 preceding siblings ...)
2024-06-07 16:27 ` [PATCH v3 4/8] arm64: dts: ti: k3-am62a-main: " Judith Mendez
@ 2024-06-07 16:27 ` Judith Mendez
2024-06-07 16:27 ` [PATCH v3 6/8] arm64: dts: ti: k3-am64-main: " Judith Mendez
` (3 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Judith Mendez @ 2024-06-07 16:27 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Catalin Marinas,
Will Deacon, William Breathitt Gray
Cc: David Lechner, linux-arm-kernel, devicetree, linux-kernel,
linux-iio, Nishanth Menon, Vignesh Raghavendra
Add eQEP device tree nodes 0-2 for AM62P5 SoC.
Signed-off-by: Judith Mendez <jm@ti.com>
---
Changes since v2:
- No change
---
arch/arm64/boot/dts/ti/k3-am62p-main.dtsi | 27 +++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/arch/arm64/boot/dts/ti/k3-am62p-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62p-main.dtsi
index 900d1f9530a2a..ede7351a4d864 100644
--- a/arch/arm64/boot/dts/ti/k3-am62p-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62p-main.dtsi
@@ -857,6 +857,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.45.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v3 6/8] arm64: dts: ti: k3-am64-main: Add eQEP nodes
2024-06-07 16:27 [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
` (4 preceding siblings ...)
2024-06-07 16:27 ` [PATCH v3 5/8] arm64: dts: ti: k3-am62p-main: " Judith Mendez
@ 2024-06-07 16:27 ` Judith Mendez
2024-06-07 16:27 ` [PATCH v3 7/8] arm64: dts: ti: k3-am64x-sk: Enable eQEP Judith Mendez
` (2 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Judith Mendez @ 2024-06-07 16:27 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Catalin Marinas,
Will Deacon, William Breathitt Gray
Cc: David Lechner, linux-arm-kernel, devicetree, linux-kernel,
linux-iio, Nishanth Menon, Vignesh Raghavendra
Add eQEP device tree nodes 0-2 for AM642 SoC.
Signed-off-by: Judith Mendez <jm@ti.com>
---
Changes since v2:
- 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 6f9aa5e02138f..6be710138dded 100644
--- a/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
@@ -1171,6 +1171,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.45.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v3 7/8] arm64: dts: ti: k3-am64x-sk: Enable eQEP
2024-06-07 16:27 [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
` (5 preceding siblings ...)
2024-06-07 16:27 ` [PATCH v3 6/8] arm64: dts: ti: k3-am64-main: " Judith Mendez
@ 2024-06-07 16:27 ` Judith Mendez
2024-06-07 16:27 ` [PATCH v3 8/8] counter: ti-eqep: Allow eQEP driver to be built for K3 devices Judith Mendez
2024-06-08 13:58 ` [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms David Lechner
8 siblings, 0 replies; 12+ messages in thread
From: Judith Mendez @ 2024-06-07 16:27 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Catalin Marinas,
Will Deacon, William Breathitt Gray
Cc: David Lechner, linux-arm-kernel, devicetree, linux-kernel,
linux-iio, Nishanth Menon, Vignesh Raghavendra
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 v2:
- Enable eQEP0 in k3-am64 SK board
---
arch/arm64/boot/dts/ti/k3-am642-sk.dts | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/arch/arm64/boot/dts/ti/k3-am642-sk.dts b/arch/arm64/boot/dts/ti/k3-am642-sk.dts
index 5b028b3a3192f..1987da60672a2 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-pins-default {
+ 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 */
@@ -672,3 +682,11 @@ &ecap0 {
pinctrl-names = "default";
pinctrl-0 = <&main_ecap0_pins_default>;
};
+
+&eqep0 {
+ /* EQEP0_A is available on Pin 18 of header J4 */
+ /* EQEP0_B is available on Pin 22 of header J4 */
+ status = "okay";
+ pinctrl-names = "default";
+ pinctrl-0 = <&main_eqep0_pins_default>;
+};
--
2.45.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v3 8/8] counter: ti-eqep: Allow eQEP driver to be built for K3 devices
2024-06-07 16:27 [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
` (6 preceding siblings ...)
2024-06-07 16:27 ` [PATCH v3 7/8] arm64: dts: ti: k3-am64x-sk: Enable eQEP Judith Mendez
@ 2024-06-07 16:27 ` Judith Mendez
2024-06-08 13:58 ` [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms David Lechner
8 siblings, 0 replies; 12+ messages in thread
From: Judith Mendez @ 2024-06-07 16:27 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Catalin Marinas,
Will Deacon, William Breathitt Gray
Cc: David Lechner, linux-arm-kernel, devicetree, linux-kernel,
linux-iio, Nishanth Menon, Vignesh Raghavendra
TI K3 SoC's support eQEP hardware, so add ARCH_K3 to the depends
so the TI eQEP driver can be built for K3 devices.
Signed-off-by: Judith Mendez <jm@ti.com>
Reviewed-by: David Lechner <david@lechnology.com>
---
Changes since v2:
- No change
---
drivers/counter/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/counter/Kconfig b/drivers/counter/Kconfig
index 497bc05dca4df..d30d22dfe5774 100644
--- a/drivers/counter/Kconfig
+++ b/drivers/counter/Kconfig
@@ -138,7 +138,7 @@ config TI_ECAP_CAPTURE
config TI_EQEP
tristate "TI eQEP counter driver"
- depends on (SOC_AM33XX || COMPILE_TEST)
+ depends on SOC_AM33XX || ARCH_K3 || COMPILE_TEST
select REGMAP_MMIO
help
Select this option to enable the Texas Instruments Enhanced Quadrature
--
2.45.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v3 1/8] dt-bindings: counter: Add new ti,am62-eqep compatible
2024-06-07 16:27 ` [PATCH v3 1/8] dt-bindings: counter: Add new ti,am62-eqep compatible Judith Mendez
@ 2024-06-08 13:22 ` David Lechner
0 siblings, 0 replies; 12+ messages in thread
From: David Lechner @ 2024-06-08 13:22 UTC (permalink / raw)
To: Judith Mendez, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Catalin Marinas, Will Deacon, William Breathitt Gray
Cc: linux-arm-kernel, devicetree, linux-kernel, linux-iio,
Nishanth Menon, Vignesh Raghavendra
On 6/7/24 11:27 AM, Judith Mendez wrote:
> Add new compatible ti,am62-eqep for TI K3 devices. If a device
> uses this compatible, require power-domains property.
>
> Since there is only one functional and interface clock for eqep,
> clock-names is not really required, so removed from required
> section, make it optional for ti,am3352-eqep compatible, and
> update the example.
>
> The clock-name also changed for TI K3 SoCs so do not allow
> clock-names property for the new compatible.
>
> While we are here, add an example using ti,am62-eqep compatible.
>
> Signed-off-by: Judith Mendez <jm@ti.com>
> Acked-by: Conor Dooley <conor.dooley@microchip.com>
> ---
Reviewed-by: David Lechner <david@lechnology.com>
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms
2024-06-07 16:27 [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
` (7 preceding siblings ...)
2024-06-07 16:27 ` [PATCH v3 8/8] counter: ti-eqep: Allow eQEP driver to be built for K3 devices Judith Mendez
@ 2024-06-08 13:58 ` David Lechner
2024-06-10 13:51 ` Judith Mendez
8 siblings, 1 reply; 12+ messages in thread
From: David Lechner @ 2024-06-08 13:58 UTC (permalink / raw)
To: Judith Mendez, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Catalin Marinas, Will Deacon, William Breathitt Gray
Cc: linux-arm-kernel, devicetree, linux-kernel, linux-iio,
Nishanth Menon, Vignesh Raghavendra
On 6/7/24 11:27 AM, Judith Mendez wrote:
> This patch series adds eQEP DT nodes for K3 Sitara devices:
FYI, it looks like you still have William's old not working email address
so he might not be seeing this to pick it up.
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/MAINTAINERS?id=c90663596e7c97363d8855c635f39500ed2f0030
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms
2024-06-08 13:58 ` [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms David Lechner
@ 2024-06-10 13:51 ` Judith Mendez
0 siblings, 0 replies; 12+ messages in thread
From: Judith Mendez @ 2024-06-10 13:51 UTC (permalink / raw)
To: David Lechner, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Catalin Marinas, Will Deacon, William Breathitt Gray
Cc: linux-arm-kernel, devicetree, linux-kernel, linux-iio,
Nishanth Menon, Vignesh Raghavendra
Hi,
On 6/8/24 8:58 AM, David Lechner wrote:
> On 6/7/24 11:27 AM, Judith Mendez wrote:
>> This patch series adds eQEP DT nodes for K3 Sitara devices:
>
> FYI, it looks like you still have William's old not working email address
> so he might not be seeing this to pick it up.
>
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/MAINTAINERS?id=c90663596e7c97363d8855c635f39500ed2f0030
Thanks David, will update with the respin.
~ Judith
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-06-10 13:52 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-07 16:27 [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms Judith Mendez
2024-06-07 16:27 ` [PATCH v3 1/8] dt-bindings: counter: Add new ti,am62-eqep compatible Judith Mendez
2024-06-08 13:22 ` David Lechner
2024-06-07 16:27 ` [PATCH v3 2/8] counter/ti-eqep: Add new ti-am62-eqep compatible Judith Mendez
2024-06-07 16:27 ` [PATCH v3 3/8] arm64: dts: ti: k3-am62-main: Add eQEP nodes Judith Mendez
2024-06-07 16:27 ` [PATCH v3 4/8] arm64: dts: ti: k3-am62a-main: " Judith Mendez
2024-06-07 16:27 ` [PATCH v3 5/8] arm64: dts: ti: k3-am62p-main: " Judith Mendez
2024-06-07 16:27 ` [PATCH v3 6/8] arm64: dts: ti: k3-am64-main: " Judith Mendez
2024-06-07 16:27 ` [PATCH v3 7/8] arm64: dts: ti: k3-am64x-sk: Enable eQEP Judith Mendez
2024-06-07 16:27 ` [PATCH v3 8/8] counter: ti-eqep: Allow eQEP driver to be built for K3 devices Judith Mendez
2024-06-08 13:58 ` [PATCH v3 0/8] Enable eQEP DT support for Sitara K3 platforms David Lechner
2024-06-10 13:51 ` Judith Mendez
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).