Skip to content

Commit 4b0d399

Browse files
committed
linux-yocto-dev: add initial dts patch for QCS615
Add the intial DTS patch to fix bootup failure for QCS615 boards. Signed-off-by: Shoudi Li <[email protected]>
1 parent 391dd16 commit 4b0d399

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

recipes-kernel/linux/linux-yocto-dev.bbappend

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ SRC_URI:append:qcom = " \
4242
file://qcs9075-board-dts/0003-arm64-dts-qcom-qcs9075-Introduce-QCS9075M-SOM.patch \
4343
file://qcs9075-board-dts/0004-arm64-dts-qcom-Add-support-for-qcs9075-IQ-9075-EVK.patch \
4444
file://qcs9075-board-dts/0001-arm64-dts-qcom-qcs9075-iq-9075-evk-enable-UFS.patch \
45+
file://qcs615-board-dts/0001-arm64-dts-qcom-qcs615-Add-Command-DB-support.patch \
4546
"
4647

4748
# Include additional kernel configs.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
From 63b53fc23be01c7b34690f7dded0c144ae4412ac Mon Sep 17 00:00:00 2001
2+
From: Lijuan Gao <[email protected]>
3+
Date: Thu, 27 Mar 2025 15:29:49 +0800
4+
Subject: [PATCH 1/3] arm64: dts: qcom: qcs615: Add Command DB support
5+
6+
Command DB is a database in the shared memory of QCOM SoCs, that
7+
provides a mapping between resource key and the resource address for a
8+
system resource managed by a remote processor. The data is stored in a
9+
shared memory region and is loaded by the remote processor. Therefore,
10+
enabling Command DB ensures that those resources function properly.
11+
12+
Signed-off-by: Lijuan Gao <[email protected]>
13+
Signed-off-by: Bjorn Andersson <[email protected]>
14+
Upstream-Status: Backport [https://lore.kernel.org/r/[email protected]]
15+
---
16+
arch/arm64/boot/dts/qcom/qcs615.dtsi | 6 ++++++
17+
1 file changed, 6 insertions(+)
18+
19+
diff --git a/arch/arm64/boot/dts/qcom/qcs615.dtsi b/arch/arm64/boot/dts/qcom/qcs615.dtsi
20+
index 3e9922e69536..4a96202aea99 100644
21+
--- a/arch/arm64/boot/dts/qcom/qcs615.dtsi
22+
+++ b/arch/arm64/boot/dts/qcom/qcs615.dtsi
23+
@@ -417,6 +417,12 @@ reserved-memory {
24+
#size-cells = <2>;
25+
ranges;
26+
27+
+ aop_cmd_db_mem: aop-cmd-db@85f20000 {
28+
+ compatible = "qcom,cmd-db";
29+
+ reg = <0x0 0x85f20000 0x0 0x20000>;
30+
+ no-map;
31+
+ };
32+
+
33+
smem_region: smem@86000000 {
34+
compatible = "qcom,smem";
35+
reg = <0x0 0x86000000 0x0 0x200000>;
36+
--
37+
2.34.1
38+

0 commit comments

Comments
 (0)