* [PATCH v1 0/3] Update eMMC alias for Radxa ROCK 5 Model A and Model B DTS
@ 2023-01-10 15:52 Christopher Obbard
2023-01-10 15:52 ` [PATCH v1 1/3] arm64: dts: rockchip: Update sdhci alias for rock-5a Christopher Obbard
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Christopher Obbard @ 2023-01-10 15:52 UTC (permalink / raw)
To: Heiko Stuebner, linux-rockchip
Cc: Rob Herring, Krzysztof Kozlowski, Michael Riesch,
Sebastian Reichel, devicetree, linux-arm-kernel, linux-kernel,
kernel, Christopher Obbard
The MMC aliases for the Radxa ROCK 5 Model A and Model B do not match the other
Rockchip devices: mmc0 is usually the eMMC. In the initial devicetree series,
I incorrectly set the alias for the eMMC to mmc1 to match the vendor kernel.
Update the alias for the eMMC to mmc0 to better match other Rockchip devices.
While we are here, remove an empty line to keep good style across the tree.
Christopher Obbard (3):
arm64: dts: rockchip: Update sdhci alias for rock-5a
arm64: dts: rockchip: Remove empty line from rock-5a
arm64: dts: rockchip: Update sdhci alias for rock-5b
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dts | 2 +-
arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dts | 3 +--
2 files changed, 2 insertions(+), 3 deletions(-)
--
2.39.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v1 1/3] arm64: dts: rockchip: Update sdhci alias for rock-5a
2023-01-10 15:52 [PATCH v1 0/3] Update eMMC alias for Radxa ROCK 5 Model A and Model B DTS Christopher Obbard
@ 2023-01-10 15:52 ` Christopher Obbard
2023-01-10 19:21 ` Krzysztof Kozlowski
2023-01-10 15:52 ` [PATCH v1 2/3] arm64: dts: rockchip: Remove empty line from rock-5a Christopher Obbard
2023-01-10 15:52 ` [PATCH v1 3/3] arm64: dts: rockchip: Update sdhci alias for rock-5b Christopher Obbard
2 siblings, 1 reply; 6+ messages in thread
From: Christopher Obbard @ 2023-01-10 15:52 UTC (permalink / raw)
To: Heiko Stuebner, linux-rockchip
Cc: Rob Herring, Krzysztof Kozlowski, Michael Riesch,
Sebastian Reichel, devicetree, linux-arm-kernel, linux-kernel,
kernel, Christopher Obbard
In the previous version, the sdhci alias was set
to mmc1: an artifact leftover from the port from
vendor kernel. Update the alias to mmc0 to match
the device's boot order.
Fixes: a4a8f1afb360 ("arm64: dts: rockchip: Add rock-5a board")
Signed-off-by: Christopher Obbard <chris.obbard@collabora.com>
---
arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dts b/arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dts
index 409a43d059d8..c85af1334c05 100644
--- a/arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dts
+++ b/arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dts
@@ -11,7 +11,7 @@ / {
compatible = "radxa,rock-5a", "rockchip,rk3588s";
aliases {
- mmc1 = &sdhci;
+ mmc0 = &sdhci;
serial2 = &uart2;
};
--
2.39.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v1 2/3] arm64: dts: rockchip: Remove empty line from rock-5a
2023-01-10 15:52 [PATCH v1 0/3] Update eMMC alias for Radxa ROCK 5 Model A and Model B DTS Christopher Obbard
2023-01-10 15:52 ` [PATCH v1 1/3] arm64: dts: rockchip: Update sdhci alias for rock-5a Christopher Obbard
@ 2023-01-10 15:52 ` Christopher Obbard
2023-01-10 15:52 ` [PATCH v1 3/3] arm64: dts: rockchip: Update sdhci alias for rock-5b Christopher Obbard
2 siblings, 0 replies; 6+ messages in thread
From: Christopher Obbard @ 2023-01-10 15:52 UTC (permalink / raw)
To: Heiko Stuebner, linux-rockchip
Cc: Rob Herring, Krzysztof Kozlowski, Michael Riesch,
Sebastian Reichel, devicetree, linux-arm-kernel, linux-kernel,
kernel, Christopher Obbard
There is a line which is empty. Remove it.
Fixes: a4a8f1afb360 ("arm64: dts: rockchip: Add rock-5a board")
Signed-off-by: Christopher Obbard <chris.obbard@collabora.com>
---
arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dts | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dts b/arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dts
index c85af1334c05..6432b586bf5a 100644
--- a/arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dts
+++ b/arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dts
@@ -52,7 +52,6 @@ rtl8211f {
rtl8211f_rst: rtl8211f-rst {
rockchip,pins = <3 RK_PB7 RK_FUNC_GPIO &pcfg_pull_none>;
};
-
};
};
--
2.39.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v1 3/3] arm64: dts: rockchip: Update sdhci alias for rock-5b
2023-01-10 15:52 [PATCH v1 0/3] Update eMMC alias for Radxa ROCK 5 Model A and Model B DTS Christopher Obbard
2023-01-10 15:52 ` [PATCH v1 1/3] arm64: dts: rockchip: Update sdhci alias for rock-5a Christopher Obbard
2023-01-10 15:52 ` [PATCH v1 2/3] arm64: dts: rockchip: Remove empty line from rock-5a Christopher Obbard
@ 2023-01-10 15:52 ` Christopher Obbard
2 siblings, 0 replies; 6+ messages in thread
From: Christopher Obbard @ 2023-01-10 15:52 UTC (permalink / raw)
To: Heiko Stuebner, linux-rockchip
Cc: Rob Herring, Krzysztof Kozlowski, Michael Riesch,
Sebastian Reichel, devicetree, linux-arm-kernel, linux-kernel,
kernel, Christopher Obbard
In the previous version, the sdhci alias was set
to mmc1: an artifact leftover from the port from
vendor kernel. Update the alias to mmc0 to match
the device's boot order.
Fixes: 6fb2d1549786 ("arm64: dts: rockchip: Add rock-5b board")
Signed-off-by: Christopher Obbard <chris.obbard@collabora.com>
---
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dts b/arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dts
index d2f1e963ce06..95805cb0adfa 100644
--- a/arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dts
+++ b/arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dts
@@ -9,7 +9,7 @@ / {
compatible = "radxa,rock-5b", "rockchip,rk3588";
aliases {
- mmc1 = &sdhci;
+ mmc0 = &sdhci;
serial2 = &uart2;
};
--
2.39.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v1 1/3] arm64: dts: rockchip: Update sdhci alias for rock-5a
2023-01-10 15:52 ` [PATCH v1 1/3] arm64: dts: rockchip: Update sdhci alias for rock-5a Christopher Obbard
@ 2023-01-10 19:21 ` Krzysztof Kozlowski
2023-01-10 19:55 ` Christopher Obbard
0 siblings, 1 reply; 6+ messages in thread
From: Krzysztof Kozlowski @ 2023-01-10 19:21 UTC (permalink / raw)
To: Christopher Obbard, Heiko Stuebner, linux-rockchip
Cc: Rob Herring, Krzysztof Kozlowski, Michael Riesch,
Sebastian Reichel, devicetree, linux-arm-kernel, linux-kernel,
kernel
On 10/01/2023 16:52, Christopher Obbard wrote:
> In the previous version, the sdhci alias was set
> to mmc1: an artifact leftover from the port from
> vendor kernel. Update the alias to mmc0 to match
Please wrap
commit
message
according
to
Linux
coding style / submission process (neither too early nor over the limit):
https://elixir.bootlin.com/linux/v5.18-rc4/source/Documentation/process/submitting-patches.rst#L586
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 1/3] arm64: dts: rockchip: Update sdhci alias for rock-5a
2023-01-10 19:21 ` Krzysztof Kozlowski
@ 2023-01-10 19:55 ` Christopher Obbard
0 siblings, 0 replies; 6+ messages in thread
From: Christopher Obbard @ 2023-01-10 19:55 UTC (permalink / raw)
To: Krzysztof Kozlowski, Heiko Stuebner, linux-rockchip
Cc: Rob Herring, Krzysztof Kozlowski, Michael Riesch,
Sebastian Reichel, devicetree, linux-arm-kernel, linux-kernel,
kernel
On Tue, 2023-01-10 at 20:21 +0100, Krzysztof Kozlowski wrote:
> On 10/01/2023 16:52, Christopher Obbard wrote:
> > In the previous version, the sdhci alias was set
> > to mmc1: an artifact leftover from the port from
> > vendor kernel. Update the alias to mmc0 to match
>
> Please wrap
> commit
> message
> according
> to
> Linux
> coding style / submission process (neither too early nor over the
> limit):
> https://elixir.bootlin.com/linux/v5.18-rc4/source/Documentation/process/submitting-patches.rst#L586
thanks
for
the
hint - I sent V2 and will hopefully make less awful Haikus in future ;-
)
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-01-10 19:55 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-10 15:52 [PATCH v1 0/3] Update eMMC alias for Radxa ROCK 5 Model A and Model B DTS Christopher Obbard
2023-01-10 15:52 ` [PATCH v1 1/3] arm64: dts: rockchip: Update sdhci alias for rock-5a Christopher Obbard
2023-01-10 19:21 ` Krzysztof Kozlowski
2023-01-10 19:55 ` Christopher Obbard
2023-01-10 15:52 ` [PATCH v1 2/3] arm64: dts: rockchip: Remove empty line from rock-5a Christopher Obbard
2023-01-10 15:52 ` [PATCH v1 3/3] arm64: dts: rockchip: Update sdhci alias for rock-5b Christopher Obbard
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).