* [PATCH v2 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for Nord SA8797P
2026-04-27 0:35 [PATCH v2 0/2] Add SoC ID for Nord SA8797P Shawn Guo
@ 2026-04-27 0:35 ` Shawn Guo
2026-04-27 0:35 ` [PATCH v2 2/2] soc: qcom: socinfo: " Shawn Guo
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Shawn Guo @ 2026-04-27 0:35 UTC (permalink / raw)
To: Bjorn Andersson
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Konrad Dybcio,
Dmitry Baryshkov, Jingyi Wang, Bartosz Golaszewski, Deepti Jaggi,
devicetree, linux-arm-msm, linux-kernel, Krzysztof Kozlowski,
Shawn Guo
From: Deepti Jaggi <deepti.jaggi@oss.qualcomm.com>
Nord is a SoC family from Qualcomm designed as the next generation of
Lemans series. SA8797P is the automotive variant of Nord, where platform
resources such as clocks, regulators, interconnects, etc. are managed
by firmware through SCMI.
Add SoC ID for Nord SA8797P.
Signed-off-by: Deepti Jaggi <deepti.jaggi@oss.qualcomm.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Signed-off-by: Shawn Guo <shengchao.guo@oss.qualcomm.com>
---
include/dt-bindings/arm/qcom,ids.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/dt-bindings/arm/qcom,ids.h b/include/dt-bindings/arm/qcom,ids.h
index 336f7bb7188a..be4657417192 100644
--- a/include/dt-bindings/arm/qcom,ids.h
+++ b/include/dt-bindings/arm/qcom,ids.h
@@ -297,6 +297,7 @@
#define QCOM_ID_QCS8275 675
#define QCOM_ID_QCS9075 676
#define QCOM_ID_QCS615 680
+#define QCOM_ID_SA8797P 690
#define QCOM_ID_CQ7790M 731
#define QCOM_ID_CQ7790S 732
#define QCOM_ID_IPQ5200 765
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH v2 2/2] soc: qcom: socinfo: Add SoC ID for Nord SA8797P
2026-04-27 0:35 [PATCH v2 0/2] Add SoC ID for Nord SA8797P Shawn Guo
2026-04-27 0:35 ` [PATCH v2 1/2] dt-bindings: arm: qcom,ids: " Shawn Guo
@ 2026-04-27 0:35 ` Shawn Guo
2026-05-19 5:42 ` [PATCH v2 0/2] " Shawn Guo
2026-05-21 19:28 ` Bjorn Andersson
3 siblings, 0 replies; 5+ messages in thread
From: Shawn Guo @ 2026-04-27 0:35 UTC (permalink / raw)
To: Bjorn Andersson
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Konrad Dybcio,
Dmitry Baryshkov, Jingyi Wang, Bartosz Golaszewski, Deepti Jaggi,
devicetree, linux-arm-msm, linux-kernel, Krzysztof Kozlowski,
Shawn Guo
From: Deepti Jaggi <deepti.jaggi@oss.qualcomm.com>
Add Nord SA8797P SoC ID to socinfo driver.
Signed-off-by: Deepti Jaggi <deepti.jaggi@oss.qualcomm.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Signed-off-by: Shawn Guo <shengchao.guo@oss.qualcomm.com>
---
drivers/soc/qcom/socinfo.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
index 8ffd903ebddb..3a35f0f6898a 100644
--- a/drivers/soc/qcom/socinfo.c
+++ b/drivers/soc/qcom/socinfo.c
@@ -526,6 +526,7 @@ static const struct soc_id soc_id[] = {
{ qcom_board_id(QCS8275) },
{ qcom_board_id(QCS9075) },
{ qcom_board_id(QCS615) },
+ { qcom_board_id(SA8797P) },
{ qcom_board_id(CQ7790M) },
{ qcom_board_id(CQ7790S) },
{ qcom_board_id(IPQ5200) },
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH v2 0/2] Add SoC ID for Nord SA8797P
2026-04-27 0:35 [PATCH v2 0/2] Add SoC ID for Nord SA8797P Shawn Guo
2026-04-27 0:35 ` [PATCH v2 1/2] dt-bindings: arm: qcom,ids: " Shawn Guo
2026-04-27 0:35 ` [PATCH v2 2/2] soc: qcom: socinfo: " Shawn Guo
@ 2026-05-19 5:42 ` Shawn Guo
2026-05-21 19:28 ` Bjorn Andersson
3 siblings, 0 replies; 5+ messages in thread
From: Shawn Guo @ 2026-05-19 5:42 UTC (permalink / raw)
To: Bjorn Andersson
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Konrad Dybcio,
Dmitry Baryshkov, Jingyi Wang, Bartosz Golaszewski, Deepti Jaggi,
devicetree, linux-arm-msm, linux-kernel
On Mon, Apr 27, 2026 at 08:35:29AM +0800, Shawn Guo wrote:
> Nord is a SoC family from Qualcomm designed as the next generation of
> Lemans series. SA8797P is the automotive variant of Nord, where the
> platform resources such as clocks, regulators, interconnects, etc. are
> managed by firmware through SCMI.
>
> This series adds Nord SA8797P SoC ID to dt-bindngs header and socinfo
> driver.
>
> The SoC ID of Nord IoT variant will be added separately later.
>
> Changes in v2:
> - Drop the Nord SA8797P introduction from driver patch as binding
> one already has it
> - Change typing style to use "single space" instead of "double space"
> - Link to v1: https://lore.kernel.org/all/20260421040231.1256998-1-shengchao.guo@oss.qualcomm.com/
>
> Deepti Jaggi (2):
> dt-bindings: arm: qcom,ids: Add SoC ID for Nord SA8797P
> soc: qcom: socinfo: Add SoC ID for Nord SA8797P
>
> drivers/soc/qcom/socinfo.c | 1 +
> include/dt-bindings/arm/qcom,ids.h | 1 +
> 2 files changed, 2 insertions(+)
Bjorn,
Just want to let you know that I'm including these changes into Nord DTS
series.
Shawn
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2 0/2] Add SoC ID for Nord SA8797P
2026-04-27 0:35 [PATCH v2 0/2] Add SoC ID for Nord SA8797P Shawn Guo
` (2 preceding siblings ...)
2026-05-19 5:42 ` [PATCH v2 0/2] " Shawn Guo
@ 2026-05-21 19:28 ` Bjorn Andersson
3 siblings, 0 replies; 5+ messages in thread
From: Bjorn Andersson @ 2026-05-21 19:28 UTC (permalink / raw)
To: Shawn Guo
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Konrad Dybcio,
Dmitry Baryshkov, Jingyi Wang, Bartosz Golaszewski, Deepti Jaggi,
devicetree, linux-arm-msm, linux-kernel
On Mon, 27 Apr 2026 08:35:29 +0800, Shawn Guo wrote:
> Nord is a SoC family from Qualcomm designed as the next generation of
> Lemans series. SA8797P is the automotive variant of Nord, where the
> platform resources such as clocks, regulators, interconnects, etc. are
> managed by firmware through SCMI.
>
> This series adds Nord SA8797P SoC ID to dt-bindngs header and socinfo
> driver.
>
> [...]
Applied, thanks!
[1/2] dt-bindings: arm: qcom,ids: Add SoC ID for Nord SA8797P
commit: 0670a10b7c22bef36d9e1ca5a75b832db4508a1b
[2/2] soc: qcom: socinfo: Add SoC ID for Nord SA8797P
commit: b0bc160c311a0e7163c00a7e66116d28ce9771df
Best regards,
--
Bjorn Andersson <andersson@kernel.org>
^ permalink raw reply [flat|nested] 5+ messages in thread