* [PATCH 0/2] arm64: qcom: Add SoC ID for Shikra IoT variants
@ 2026-04-28 9:17 Komal Bajaj
2026-04-28 9:17 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: " Komal Bajaj
2026-04-28 9:17 ` [PATCH 2/2] soc: qcom: socinfo: " Komal Bajaj
0 siblings, 2 replies; 7+ messages in thread
From: Komal Bajaj @ 2026-04-28 9:17 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel, Komal Bajaj
This is the initial posting for upstreaming Qualcomm Shikra SoC.
There are three variants, distinguished by their respective SoC IDs -
- CQ2390M: Shikra Retail with modem
- CQ2390S: Shikra Retail without modem
- IQ2390S: Shikra Industrial without modem
This serial adds the corresponding SoC IDs to enable proper
identification of these variants in the kernel.
Signed-off-by: Komal Bajaj <komal.bajaj@oss.qualcomm.com>
---
Komal Bajaj (2):
dt-bindings: arm: qcom,ids: Add SoC ID for Shikra IoT variants
soc: qcom: socinfo: Add SoC ID for Shikra IoT variants
drivers/soc/qcom/socinfo.c | 3 +++
include/dt-bindings/arm/qcom,ids.h | 3 +++
2 files changed, 6 insertions(+)
---
base-commit: 39704f00f747aba3144289870b5fd8ac230a9aaf
change-id: 20260428-shikra-socid-a27ae38cb7e3
Best regards,
--
Komal Bajaj <komal.bajaj@oss.qualcomm.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for Shikra IoT variants
2026-04-28 9:17 [PATCH 0/2] arm64: qcom: Add SoC ID for Shikra IoT variants Komal Bajaj
@ 2026-04-28 9:17 ` Komal Bajaj
2026-04-28 9:39 ` Konrad Dybcio
2026-04-30 9:38 ` Krzysztof Kozlowski
2026-04-28 9:17 ` [PATCH 2/2] soc: qcom: socinfo: " Komal Bajaj
1 sibling, 2 replies; 7+ messages in thread
From: Komal Bajaj @ 2026-04-28 9:17 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel, Komal Bajaj
Document the IDs used by Shikra SoC IoT variants:
- CQ2390M: Shikra Retail with modem
- CQ2390S: Shikra Retail without modem
- IQ2390S: Shikra Industrial without modem
Signed-off-by: Komal Bajaj <komal.bajaj@oss.qualcomm.com>
---
include/dt-bindings/arm/qcom,ids.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/include/dt-bindings/arm/qcom,ids.h b/include/dt-bindings/arm/qcom,ids.h
index 336f7bb7188a..c300ffb4a6a5 100644
--- a/include/dt-bindings/arm/qcom,ids.h
+++ b/include/dt-bindings/arm/qcom,ids.h
@@ -299,6 +299,9 @@
#define QCOM_ID_QCS615 680
#define QCOM_ID_CQ7790M 731
#define QCOM_ID_CQ7790S 732
+#define QCOM_ID_CQ2390M 756
+#define QCOM_ID_CQ2390S 758
+#define QCOM_ID_IQ2390S 759
#define QCOM_ID_IPQ5200 765
#define QCOM_ID_IPQ5210 766
#define QCOM_ID_QCF2200 767
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/2] soc: qcom: socinfo: Add SoC ID for Shikra IoT variants
2026-04-28 9:17 [PATCH 0/2] arm64: qcom: Add SoC ID for Shikra IoT variants Komal Bajaj
2026-04-28 9:17 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: " Komal Bajaj
@ 2026-04-28 9:17 ` Komal Bajaj
2026-04-28 9:41 ` Konrad Dybcio
2026-04-30 9:38 ` Krzysztof Kozlowski
1 sibling, 2 replies; 7+ messages in thread
From: Komal Bajaj @ 2026-04-28 9:17 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel, Komal Bajaj
Add SoC ID for Shikra IoT variants: CQ2390M, CQ2390S and IQ2390S.
Signed-off-by: Komal Bajaj <komal.bajaj@oss.qualcomm.com>
---
drivers/soc/qcom/socinfo.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
index 8ffd903ebddb..396a9c66b240 100644
--- a/drivers/soc/qcom/socinfo.c
+++ b/drivers/soc/qcom/socinfo.c
@@ -528,6 +528,9 @@ static const struct soc_id soc_id[] = {
{ qcom_board_id(QCS615) },
{ qcom_board_id(CQ7790M) },
{ qcom_board_id(CQ7790S) },
+ { qcom_board_id(CQ2390M) },
+ { qcom_board_id(CQ2390S) },
+ { qcom_board_id(IQ2390S) },
{ qcom_board_id(IPQ5200) },
{ qcom_board_id(IPQ5210) },
{ qcom_board_id(QCF2200) },
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for Shikra IoT variants
2026-04-28 9:17 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: " Komal Bajaj
@ 2026-04-28 9:39 ` Konrad Dybcio
2026-04-30 9:38 ` Krzysztof Kozlowski
1 sibling, 0 replies; 7+ messages in thread
From: Konrad Dybcio @ 2026-04-28 9:39 UTC (permalink / raw)
To: Komal Bajaj, Bjorn Andersson, Rob Herring, Krzysztof Kozlowski,
Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel
On 4/28/26 11:17 AM, Komal Bajaj wrote:
> Document the IDs used by Shikra SoC IoT variants:
> - CQ2390M: Shikra Retail with modem
> - CQ2390S: Shikra Retail without modem
> - IQ2390S: Shikra Industrial without modem
>
> Signed-off-by: Komal Bajaj <komal.bajaj@oss.qualcomm.com>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Konrad
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] soc: qcom: socinfo: Add SoC ID for Shikra IoT variants
2026-04-28 9:17 ` [PATCH 2/2] soc: qcom: socinfo: " Komal Bajaj
@ 2026-04-28 9:41 ` Konrad Dybcio
2026-04-30 9:38 ` Krzysztof Kozlowski
1 sibling, 0 replies; 7+ messages in thread
From: Konrad Dybcio @ 2026-04-28 9:41 UTC (permalink / raw)
To: Komal Bajaj, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel
On 4/28/26 11:17 AM, Komal Bajaj wrote:
> Add SoC ID for Shikra IoT variants: CQ2390M, CQ2390S and IQ2390S.
>
> Signed-off-by: Komal Bajaj <komal.bajaj@oss.qualcomm.com>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Konrad
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for Shikra IoT variants
2026-04-28 9:17 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: " Komal Bajaj
2026-04-28 9:39 ` Konrad Dybcio
@ 2026-04-30 9:38 ` Krzysztof Kozlowski
1 sibling, 0 replies; 7+ messages in thread
From: Krzysztof Kozlowski @ 2026-04-30 9:38 UTC (permalink / raw)
To: Komal Bajaj
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
On Tue, Apr 28, 2026 at 02:47:46PM +0530, Komal Bajaj wrote:
> Document the IDs used by Shikra SoC IoT variants:
> - CQ2390M: Shikra Retail with modem
> - CQ2390S: Shikra Retail without modem
> - IQ2390S: Shikra Industrial without modem
>
> Signed-off-by: Komal Bajaj <komal.bajaj@oss.qualcomm.com>
> ---
> include/dt-bindings/arm/qcom,ids.h | 3 +++
> 1 file changed, 3 insertions(+)
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] soc: qcom: socinfo: Add SoC ID for Shikra IoT variants
2026-04-28 9:17 ` [PATCH 2/2] soc: qcom: socinfo: " Komal Bajaj
2026-04-28 9:41 ` Konrad Dybcio
@ 2026-04-30 9:38 ` Krzysztof Kozlowski
1 sibling, 0 replies; 7+ messages in thread
From: Krzysztof Kozlowski @ 2026-04-30 9:38 UTC (permalink / raw)
To: Komal Bajaj
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
On Tue, Apr 28, 2026 at 02:47:47PM +0530, Komal Bajaj wrote:
> Add SoC ID for Shikra IoT variants: CQ2390M, CQ2390S and IQ2390S.
>
> Signed-off-by: Komal Bajaj <komal.bajaj@oss.qualcomm.com>
> ---
> drivers/soc/qcom/socinfo.c | 3 +++
> 1 file changed, 3 insertions(+)
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-04-30 9:38 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-28 9:17 [PATCH 0/2] arm64: qcom: Add SoC ID for Shikra IoT variants Komal Bajaj
2026-04-28 9:17 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: " Komal Bajaj
2026-04-28 9:39 ` Konrad Dybcio
2026-04-30 9:38 ` Krzysztof Kozlowski
2026-04-28 9:17 ` [PATCH 2/2] soc: qcom: socinfo: " Komal Bajaj
2026-04-28 9:41 ` Konrad Dybcio
2026-04-30 9:38 ` Krzysztof Kozlowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox