* [PATCH RESEND 2/5] ARM: dts: clps711x: Add keypad node
2021-04-02 7:43 [PATCH RESEND 1/5] ARM: dts: clps711x: Add SYSCON nodes where it is used Alexander Shiyan
@ 2021-04-02 7:43 ` Alexander Shiyan
2021-04-02 7:43 ` [PATCH RESEND 3/5] ARM: dts: clps711x: Fix serial port names Alexander Shiyan
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Alexander Shiyan @ 2021-04-02 7:43 UTC (permalink / raw)
To: linux-arm-kernel
Cc: Russell King, Arnd Bergmann, Olof Johansson, Rob Herring,
devicetree, Alexander Shiyan
This adds missing keypad node to basic clps711x DT.
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
arch/arm/boot/dts/ep7209.dtsi | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/arch/arm/boot/dts/ep7209.dtsi b/arch/arm/boot/dts/ep7209.dtsi
index dacbe0d8e67a..02606547bdc5 100644
--- a/arch/arm/boot/dts/ep7209.dtsi
+++ b/arch/arm/boot/dts/ep7209.dtsi
@@ -182,6 +182,13 @@ syscon3: syscon@80002200 {
};
};
+ keypad: keypad {
+ compatible = "cirrus,ep7209-keypad";
+ interrupts = <16>;
+ syscon = <&syscon1>;
+ status = "disabled";
+ };
+
mctrl: mctrl {
compatible = "cirrus,ep7209-mctrl-gpio";
gpio,syscon-dev = <&syscon1 0 0>;
--
2.26.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCH RESEND 3/5] ARM: dts: clps711x: Fix serial port names
2021-04-02 7:43 [PATCH RESEND 1/5] ARM: dts: clps711x: Add SYSCON nodes where it is used Alexander Shiyan
2021-04-02 7:43 ` [PATCH RESEND 2/5] ARM: dts: clps711x: Add keypad node Alexander Shiyan
@ 2021-04-02 7:43 ` Alexander Shiyan
2021-04-02 7:43 ` [PATCH RESEND 4/5] ARM: dts: clps711x: edb7211: Add unit-address to memory node Alexander Shiyan
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Alexander Shiyan @ 2021-04-02 7:43 UTC (permalink / raw)
To: linux-arm-kernel
Cc: Russell King, Arnd Bergmann, Olof Johansson, Rob Herring,
devicetree, Alexander Shiyan
Preferred node name for serial ports is "serial".
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
arch/arm/boot/dts/ep7209.dtsi | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/boot/dts/ep7209.dtsi b/arch/arm/boot/dts/ep7209.dtsi
index 02606547bdc5..9350497c1805 100644
--- a/arch/arm/boot/dts/ep7209.dtsi
+++ b/arch/arm/boot/dts/ep7209.dtsi
@@ -133,7 +133,7 @@ pwm: pwm@80000400 {
#pwm-cells = <1>;
};
- uart1: uart@80000480 {
+ uart1: serial@80000480 {
compatible = "cirrus,ep7209-uart";
reg = <0x80000480 0x80>;
interrupts = <12 13>;
@@ -157,7 +157,7 @@ syscon2: syscon@80001100 {
reg = <0x80001100 0x80>;
};
- uart2: uart@80001480 {
+ uart2: serial@80001480 {
compatible = "cirrus,ep7209-uart";
reg = <0x80001480 0x80>;
interrupts = <28 29>;
--
2.26.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCH RESEND 4/5] ARM: dts: clps711x: edb7211: Add unit-address to memory node
2021-04-02 7:43 [PATCH RESEND 1/5] ARM: dts: clps711x: Add SYSCON nodes where it is used Alexander Shiyan
2021-04-02 7:43 ` [PATCH RESEND 2/5] ARM: dts: clps711x: Add keypad node Alexander Shiyan
2021-04-02 7:43 ` [PATCH RESEND 3/5] ARM: dts: clps711x: Fix serial port names Alexander Shiyan
@ 2021-04-02 7:43 ` Alexander Shiyan
2021-04-02 7:43 ` [PATCH RESEND 5/5] ARM: dts: clps711x: Add an empty chosen node to top level DTSI Alexander Shiyan
2021-04-03 11:00 ` [PATCH RESEND 1/5] ARM: dts: clps711x: Add SYSCON nodes where it is used Arnd Bergmann
4 siblings, 0 replies; 6+ messages in thread
From: Alexander Shiyan @ 2021-04-02 7:43 UTC (permalink / raw)
To: linux-arm-kernel
Cc: Russell King, Arnd Bergmann, Olof Johansson, Rob Herring,
devicetree, Alexander Shiyan
The memory node requires a unit-address, add it.
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
arch/arm/boot/dts/ep7211-edb7211.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/boot/dts/ep7211-edb7211.dts b/arch/arm/boot/dts/ep7211-edb7211.dts
index da076479c8e2..7fb532f227af 100644
--- a/arch/arm/boot/dts/ep7211-edb7211.dts
+++ b/arch/arm/boot/dts/ep7211-edb7211.dts
@@ -7,7 +7,7 @@ / {
model = "Cirrus Logic EP7211 Development Board";
compatible = "cirrus,edb7211", "cirrus,ep7211", "cirrus,ep7209";
- memory {
+ memory@c0000000 {
device_type = "memory";
reg = <0xc0000000 0x02000000>;
};
--
2.26.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCH RESEND 5/5] ARM: dts: clps711x: Add an empty chosen node to top level DTSI
2021-04-02 7:43 [PATCH RESEND 1/5] ARM: dts: clps711x: Add SYSCON nodes where it is used Alexander Shiyan
` (2 preceding siblings ...)
2021-04-02 7:43 ` [PATCH RESEND 4/5] ARM: dts: clps711x: edb7211: Add unit-address to memory node Alexander Shiyan
@ 2021-04-02 7:43 ` Alexander Shiyan
2021-04-03 11:00 ` [PATCH RESEND 1/5] ARM: dts: clps711x: Add SYSCON nodes where it is used Arnd Bergmann
4 siblings, 0 replies; 6+ messages in thread
From: Alexander Shiyan @ 2021-04-02 7:43 UTC (permalink / raw)
To: linux-arm-kernel
Cc: Russell King, Arnd Bergmann, Olof Johansson, Rob Herring,
devicetree, Alexander Shiyan
Missing "chosen" node can cause issues when booting a kernel
with a boot-loader that doesn't create a chosen node if this
isn't present in the DTB since the decompressor relies on a
pre-existing chosen node to be available to insert the command
line and merge other ATAGS info.
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
arch/arm/boot/dts/ep7209.dtsi | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm/boot/dts/ep7209.dtsi b/arch/arm/boot/dts/ep7209.dtsi
index 9350497c1805..40a277370fd0 100644
--- a/arch/arm/boot/dts/ep7209.dtsi
+++ b/arch/arm/boot/dts/ep7209.dtsi
@@ -10,6 +10,8 @@ / {
model = "Cirrus Logic EP7209";
compatible = "cirrus,ep7209";
+ chosen { };
+
aliases {
gpio0 = &porta;
gpio1 = &portb;
--
2.26.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH RESEND 1/5] ARM: dts: clps711x: Add SYSCON nodes where it is used
2021-04-02 7:43 [PATCH RESEND 1/5] ARM: dts: clps711x: Add SYSCON nodes where it is used Alexander Shiyan
` (3 preceding siblings ...)
2021-04-02 7:43 ` [PATCH RESEND 5/5] ARM: dts: clps711x: Add an empty chosen node to top level DTSI Alexander Shiyan
@ 2021-04-03 11:00 ` Arnd Bergmann
4 siblings, 0 replies; 6+ messages in thread
From: Arnd Bergmann @ 2021-04-03 11:00 UTC (permalink / raw)
To: Alexander Shiyan
Cc: Linux ARM, Russell King, Olof Johansson, Rob Herring, DTML
On Fri, Apr 2, 2021 at 9:43 AM Alexander Shiyan <shc_work@mail.ru> wrote:
>
> This patch adds SYSCON descriptors to framebuffer, SPI, DAI
> and modem control GPIO nodes to further rework these drivers
> to remove the call to the syscon_regmap_lookup_by_compatible() function.
>
> Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
> ---
> arch/arm/boot/dts/ep7209.dtsi | 4 ++++
> 1 file changed, 4 insertions(+)
The patches all look good. Can you resend them to soc@kernel.org
to make them end up in patchwork for me to pick them up into the soc tree?
Thanks,
Arnd
^ permalink raw reply [flat|nested] 6+ messages in thread