public inbox for linux-arm-msm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Add SoC ID for Nord SA8797P
@ 2026-04-21  4:02 Shawn Guo
  2026-04-21  4:02 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: " Shawn Guo
  2026-04-21  4:02 ` [PATCH 2/2] soc: qcom: socinfo: " Shawn Guo
  0 siblings, 2 replies; 4+ messages in thread
From: Shawn Guo @ 2026-04-21  4:02 UTC (permalink / raw)
  To: Bjorn Andersson
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Konrad Dybcio,
	Dmitry Baryshkov, Bartosz Golaszewski, Deepti Jaggi, devicetree,
	linux-arm-msm, linux-kernel, Shawn Guo

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.

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(+)

-- 
2.43.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for Nord SA8797P
  2026-04-21  4:02 [PATCH 0/2] Add SoC ID for Nord SA8797P Shawn Guo
@ 2026-04-21  4:02 ` Shawn Guo
  2026-04-21  4:19   ` Jingyi Wang
  2026-04-21  4:02 ` [PATCH 2/2] soc: qcom: socinfo: " Shawn Guo
  1 sibling, 1 reply; 4+ messages in thread
From: Shawn Guo @ 2026-04-21  4:02 UTC (permalink / raw)
  To: Bjorn Andersson
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Konrad Dybcio,
	Dmitry Baryshkov, Bartosz Golaszewski, Deepti Jaggi, devicetree,
	linux-arm-msm, linux-kernel, 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
the 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>
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] 4+ messages in thread

* [PATCH 2/2] soc: qcom: socinfo: Add SoC ID for Nord SA8797P
  2026-04-21  4:02 [PATCH 0/2] Add SoC ID for Nord SA8797P Shawn Guo
  2026-04-21  4:02 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: " Shawn Guo
@ 2026-04-21  4:02 ` Shawn Guo
  1 sibling, 0 replies; 4+ messages in thread
From: Shawn Guo @ 2026-04-21  4:02 UTC (permalink / raw)
  To: Bjorn Andersson
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Konrad Dybcio,
	Dmitry Baryshkov, Bartosz Golaszewski, Deepti Jaggi, devicetree,
	linux-arm-msm, linux-kernel, 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
the platform resources such as clocks, regulators, interconnects, etc.
are managed by firmware through SCMI.

Add Nord SA8797P SoC ID to socinfo driver.

Signed-off-by: Deepti Jaggi <deepti.jaggi@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] 4+ messages in thread

* Re: [PATCH 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for Nord SA8797P
  2026-04-21  4:02 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: " Shawn Guo
@ 2026-04-21  4:19   ` Jingyi Wang
  0 siblings, 0 replies; 4+ messages in thread
From: Jingyi Wang @ 2026-04-21  4:19 UTC (permalink / raw)
  To: Shawn Guo, Bjorn Andersson
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Konrad Dybcio,
	Dmitry Baryshkov, Bartosz Golaszewski, Deepti Jaggi, devicetree,
	linux-arm-msm, linux-kernel



On 4/21/2026 12:02 PM, Shawn Guo wrote:
> 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

Nitpick: extra space. Ditto for patch2

Thanks,
Jingyi

> the 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>
> 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


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-04-21  4:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-21  4:02 [PATCH 0/2] Add SoC ID for Nord SA8797P Shawn Guo
2026-04-21  4:02 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: " Shawn Guo
2026-04-21  4:19   ` Jingyi Wang
2026-04-21  4:02 ` [PATCH 2/2] soc: qcom: socinfo: " Shawn Guo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox