Devicetree
 help / color / mirror / Atom feed
* [PATCH 0/2] soc: qcom: socinfo: Add CQ8725S SoC ID
@ 2026-06-05 21:49 Aaron Kling via B4 Relay
  2026-06-05 21:49 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for CQ8725S Aaron Kling via B4 Relay
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Aaron Kling via B4 Relay @ 2026-06-05 21:49 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel, Teguh Sobirin,
	Aaron Kling

Add the ID for the CQ8725S which is a variant of SM8750.

---
Teguh Sobirin (2):
      dt-bindings: arm: qcom,ids: Add SoC ID for CQ8725S
      soc: qcom: socinfo: Add CQ8725S SoC ID

 drivers/soc/qcom/socinfo.c         | 1 +
 include/dt-bindings/arm/qcom,ids.h | 1 +
 2 files changed, 2 insertions(+)
---
base-commit: 6e845bcb78c95af935094040bd4edc3c2b6dd784
change-id: 20260605-cq8725s-soc-id-d2890bab3f18

Best regards,
-- 
Aaron Kling <webgeek1234@gmail.com>



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

* [PATCH 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for CQ8725S
  2026-06-05 21:49 [PATCH 0/2] soc: qcom: socinfo: Add CQ8725S SoC ID Aaron Kling via B4 Relay
@ 2026-06-05 21:49 ` Aaron Kling via B4 Relay
  2026-06-06 19:47   ` Krzysztof Kozlowski
  2026-06-05 21:49 ` [PATCH 2/2] soc: qcom: socinfo: Add CQ8725S SoC ID Aaron Kling via B4 Relay
  2026-06-06 19:48 ` [PATCH 0/2] " Krzysztof Kozlowski
  2 siblings, 1 reply; 7+ messages in thread
From: Aaron Kling via B4 Relay @ 2026-06-05 21:49 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel, Teguh Sobirin,
	Aaron Kling

From: Teguh Sobirin <teguh@sobir.in>

Add the ID for the Qualcomm CQ8725S SoC which represents the Pakala
platform.

Signed-off-by: Teguh Sobirin <teguh@sobir.in>
Signed-off-by: Aaron Kling <webgeek1234@gmail.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 1af73c0ad41cd0..b571882d51874f 100644
--- a/include/dt-bindings/arm/qcom,ids.h
+++ b/include/dt-bindings/arm/qcom,ids.h
@@ -299,6 +299,7 @@
 #define QCOM_ID_QCS9075			676
 #define QCOM_ID_QCS615			680
 #define QCOM_ID_SA8797P			690
+#define QCOM_ID_CQ8725S			706
 #define QCOM_ID_CQ7790M			731
 #define QCOM_ID_CQ7790S			732
 #define QCOM_ID_CQ2390M			756

-- 
2.53.0



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

* [PATCH 2/2] soc: qcom: socinfo: Add CQ8725S SoC ID
  2026-06-05 21:49 [PATCH 0/2] soc: qcom: socinfo: Add CQ8725S SoC ID Aaron Kling via B4 Relay
  2026-06-05 21:49 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for CQ8725S Aaron Kling via B4 Relay
@ 2026-06-05 21:49 ` Aaron Kling via B4 Relay
  2026-06-06 11:57   ` Dmitry Baryshkov
  2026-06-06 19:48 ` [PATCH 0/2] " Krzysztof Kozlowski
  2 siblings, 1 reply; 7+ messages in thread
From: Aaron Kling via B4 Relay @ 2026-06-05 21:49 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel, Teguh Sobirin,
	Aaron Kling

From: Teguh Sobirin <teguh@sobir.in>

Add the ID for the Qualcomm CQ8725S SoC which represents the Pakala
platform.

Signed-off-by: Teguh Sobirin <teguh@sobir.in>
Signed-off-by: Aaron Kling <webgeek1234@gmail.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 af418adad7aaf3..2b1395a85af45e 100644
--- a/drivers/soc/qcom/socinfo.c
+++ b/drivers/soc/qcom/socinfo.c
@@ -540,6 +540,7 @@ static const struct soc_id soc_id[] = {
 	{ qcom_board_id(QCS9075) },
 	{ qcom_board_id(QCS615) },
 	{ qcom_board_id(SA8797P) },
+	{ qcom_board_id(CQ8725S) },
 	{ qcom_board_id(CQ7790M) },
 	{ qcom_board_id(CQ7790S) },
 	{ qcom_board_id(CQ2390M) },

-- 
2.53.0



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

* Re: [PATCH 2/2] soc: qcom: socinfo: Add CQ8725S SoC ID
  2026-06-05 21:49 ` [PATCH 2/2] soc: qcom: socinfo: Add CQ8725S SoC ID Aaron Kling via B4 Relay
@ 2026-06-06 11:57   ` Dmitry Baryshkov
  0 siblings, 0 replies; 7+ messages in thread
From: Dmitry Baryshkov @ 2026-06-06 11:57 UTC (permalink / raw)
  To: webgeek1234
  Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, linux-arm-msm, devicetree, linux-kernel,
	Teguh Sobirin

On Fri, Jun 05, 2026 at 04:49:08PM -0500, Aaron Kling via B4 Relay wrote:
> From: Teguh Sobirin <teguh@sobir.in>
> 
> Add the ID for the Qualcomm CQ8725S SoC which represents the Pakala
> platform.

What is Pakala? It wasn't described beforehand, so please add a note.

> 
> Signed-off-by: Teguh Sobirin <teguh@sobir.in>
> Signed-off-by: Aaron Kling <webgeek1234@gmail.com>
> ---
>  drivers/soc/qcom/socinfo.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> 

-- 
With best wishes
Dmitry

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

* Re: [PATCH 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for CQ8725S
  2026-06-05 21:49 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for CQ8725S Aaron Kling via B4 Relay
@ 2026-06-06 19:47   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 7+ messages in thread
From: Krzysztof Kozlowski @ 2026-06-06 19:47 UTC (permalink / raw)
  To: webgeek1234, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel, Teguh Sobirin

On 05/06/2026 23:49, Aaron Kling via B4 Relay wrote:
> From: Teguh Sobirin <teguh@sobir.in>
> 
> Add the ID for the Qualcomm CQ8725S SoC which represents the Pakala
> platform.

That's pretty confusing statement, considering first usage of name
"Pakala" and not really accurate (complete). Maybe refer to the actual
mobile SoC model number instead?



Best regards,
Krzysztof

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

* Re: [PATCH 0/2] soc: qcom: socinfo: Add CQ8725S SoC ID
  2026-06-05 21:49 [PATCH 0/2] soc: qcom: socinfo: Add CQ8725S SoC ID Aaron Kling via B4 Relay
  2026-06-05 21:49 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for CQ8725S Aaron Kling via B4 Relay
  2026-06-05 21:49 ` [PATCH 2/2] soc: qcom: socinfo: Add CQ8725S SoC ID Aaron Kling via B4 Relay
@ 2026-06-06 19:48 ` Krzysztof Kozlowski
  2026-06-06 20:19   ` Aaron Kling
  2 siblings, 1 reply; 7+ messages in thread
From: Krzysztof Kozlowski @ 2026-06-06 19:48 UTC (permalink / raw)
  To: webgeek1234, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel, Teguh Sobirin

On 05/06/2026 23:49, Aaron Kling via B4 Relay wrote:
> Add the ID for the CQ8725S which is a variant of SM8750.
> 
> ---
> Teguh Sobirin (2):
>       dt-bindings: arm: qcom,ids: Add SoC ID for CQ8725S
>       soc: qcom: socinfo: Add CQ8725S SoC ID

Where is DTS using this? Or anything? We do not add SoC IDs alone, it's
pointless for a DT platform.

Best regards,
Krzysztof

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

* Re: [PATCH 0/2] soc: qcom: socinfo: Add CQ8725S SoC ID
  2026-06-06 19:48 ` [PATCH 0/2] " Krzysztof Kozlowski
@ 2026-06-06 20:19   ` Aaron Kling
  0 siblings, 0 replies; 7+ messages in thread
From: Aaron Kling @ 2026-06-06 20:19 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, linux-arm-msm, devicetree, linux-kernel,
	Teguh Sobirin

On Sat, Jun 6, 2026 at 2:48 PM Krzysztof Kozlowski <krzk@kernel.org> wrote:
>
> On 05/06/2026 23:49, Aaron Kling via B4 Relay wrote:
> > Add the ID for the CQ8725S which is a variant of SM8750.
> >
> > ---
> > Teguh Sobirin (2):
> >       dt-bindings: arm: qcom,ids: Add SoC ID for CQ8725S
> >       soc: qcom: socinfo: Add CQ8725S SoC ID
>
> Where is DTS using this? Or anything? We do not add SoC IDs alone, it's
> pointless for a DT platform.

The cq8725s device I am working on is the AYN Odin 3. The kernel dt is
not ready for submission at this time. I am trying to get all the
prerequisites submitted early though, to make the later submissions
smoother. And other id's in exactly the same situation as this one,
such as sm7750 [0], were recently reviewed by you and merged. What
makes this any different?

In response to the palaka comments, I will change all of those
references to sm8750 in a new revision.

Aaron

[0] https://lore.kernel.org/linux-arm-msm/20260412-sm7550-id-v1-0-958a673ff791@pm.me/

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

end of thread, other threads:[~2026-06-06 20:19 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-05 21:49 [PATCH 0/2] soc: qcom: socinfo: Add CQ8725S SoC ID Aaron Kling via B4 Relay
2026-06-05 21:49 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for CQ8725S Aaron Kling via B4 Relay
2026-06-06 19:47   ` Krzysztof Kozlowski
2026-06-05 21:49 ` [PATCH 2/2] soc: qcom: socinfo: Add CQ8725S SoC ID Aaron Kling via B4 Relay
2026-06-06 11:57   ` Dmitry Baryshkov
2026-06-06 19:48 ` [PATCH 0/2] " Krzysztof Kozlowski
2026-06-06 20:19   ` Aaron Kling

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