* [PATCH v2 1/2] arm64: dts: qcom: sdm630-nile: Don't use underscores in node names
@ 2023-01-16 14:14 Konrad Dybcio
2023-01-16 14:14 ` [PATCH v2 2/2] arm64: dts: qcom: sdm630-nile: Reserve simplefb memory Konrad Dybcio
2023-01-17 18:24 ` (subset) [PATCH v2 1/2] arm64: dts: qcom: sdm630-nile: Don't use underscores in node names Bjorn Andersson
0 siblings, 2 replies; 3+ messages in thread
From: Konrad Dybcio @ 2023-01-16 14:14 UTC (permalink / raw)
To: linux-arm-msm, andersson, agross, krzysztof.kozlowski
Cc: marijn.suijten, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
devicetree, linux-kernel
Rename the reserved-memory subnodes such that they don't use
undescores.
Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
---
v1 -> v2:
- Correct the patch title, didn't hit CTRL-C quick enough..
arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile.dtsi | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile.dtsi b/arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile.dtsi
index 0259e90aad1c..763b1df692f2 100644
--- a/arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile.dtsi
+++ b/arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile.dtsi
@@ -133,12 +133,12 @@ ramoops@ffc00000 {
status = "okay";
};
- debug_region@ffb00000 {
+ debug@ffb00000 {
reg = <0x00 0xffb00000 0x00 0x100000>;
no-map;
};
- removed_region@85800000 {
+ reserved@85800000 {
reg = <0x00 0x85800000 0x00 0x3700000>;
no-map;
};
--
2.39.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* [PATCH v2 2/2] arm64: dts: qcom: sdm630-nile: Reserve simplefb memory
2023-01-16 14:14 [PATCH v2 1/2] arm64: dts: qcom: sdm630-nile: Don't use underscores in node names Konrad Dybcio
@ 2023-01-16 14:14 ` Konrad Dybcio
2023-01-17 18:24 ` (subset) [PATCH v2 1/2] arm64: dts: qcom: sdm630-nile: Don't use underscores in node names Bjorn Andersson
1 sibling, 0 replies; 3+ messages in thread
From: Konrad Dybcio @ 2023-01-16 14:14 UTC (permalink / raw)
To: linux-arm-msm, andersson, agross, krzysztof.kozlowski
Cc: marijn.suijten, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
devicetree, linux-kernel
Reserve the bit of memory that simplefb uses to ensure it can always
probe.
Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
---
No changes
arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dts | 5 +++++
arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile.dtsi | 5 +++++
2 files changed, 10 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dts b/arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dts
index 71b448978e88..9425b2d9536e 100644
--- a/arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dts
+++ b/arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dts
@@ -21,6 +21,11 @@ framebuffer@9d400000 {
};
};
+/* Reserve a bigger chunk of RAM for the higher-res display */
+&cont_splash_mem {
+ reg = <0 0x9d400000 0 (2520 * 1080 * 4)>;
+};
+
/* Ganges devices feature a Novatek touchscreen instead. */
/delete-node/ &touchscreen;
/delete-node/ &vreg_l18a_1v8;
diff --git a/arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile.dtsi b/arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile.dtsi
index 763b1df692f2..e52580acd5c8 100644
--- a/arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile.dtsi
+++ b/arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile.dtsi
@@ -142,6 +142,11 @@ reserved@85800000 {
reg = <0x00 0x85800000 0x00 0x3700000>;
no-map;
};
+
+ cont_splash_mem: splash@9d400000 {
+ reg = <0 0x9d400000 0 (1920 * 1080 * 4)>;
+ no-map;
+ };
};
/*
--
2.39.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: (subset) [PATCH v2 1/2] arm64: dts: qcom: sdm630-nile: Don't use underscores in node names
2023-01-16 14:14 [PATCH v2 1/2] arm64: dts: qcom: sdm630-nile: Don't use underscores in node names Konrad Dybcio
2023-01-16 14:14 ` [PATCH v2 2/2] arm64: dts: qcom: sdm630-nile: Reserve simplefb memory Konrad Dybcio
@ 2023-01-17 18:24 ` Bjorn Andersson
1 sibling, 0 replies; 3+ messages in thread
From: Bjorn Andersson @ 2023-01-17 18:24 UTC (permalink / raw)
To: agross, linux-arm-msm, krzysztof.kozlowski, konrad.dybcio
Cc: devicetree, robh+dt, krzysztof.kozlowski+dt, marijn.suijten,
linux-kernel
On Mon, 16 Jan 2023 15:14:50 +0100, Konrad Dybcio wrote:
> Rename the reserved-memory subnodes such that they don't use
> undescores.
>
>
Applied, thanks!
[1/2] arm64: dts: qcom: sdm630-nile: Don't use underscores in node names
commit: 305db81657b47cbf041a45aa4c0845ed600e3157
[2/2] arm64: dts: qcom: sdm630-nile: Reserve simplefb memory
commit: 2f20f276dd4f2796eba88a06a0fb90b5a9bbbd4b
Best regards,
--
Bjorn Andersson <andersson@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-01-17 19:15 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-16 14:14 [PATCH v2 1/2] arm64: dts: qcom: sdm630-nile: Don't use underscores in node names Konrad Dybcio
2023-01-16 14:14 ` [PATCH v2 2/2] arm64: dts: qcom: sdm630-nile: Reserve simplefb memory Konrad Dybcio
2023-01-17 18:24 ` (subset) [PATCH v2 1/2] arm64: dts: qcom: sdm630-nile: Don't use underscores in node names Bjorn Andersson
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).