* [PATCH v2 0/2] Add Qualcomm SM7250 SoC ID
@ 2026-08-17 7:37 Sreeshankar K
2026-08-17 7:37 ` [PATCH v2 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for SM7250 Sreeshankar K
2026-08-17 7:37 ` [PATCH v2 2/2] soc: qcom: socinfo: Add SM7250 SoC ID Sreeshankar K
0 siblings, 2 replies; 4+ messages in thread
From: Sreeshankar K @ 2026-08-17 7:37 UTC (permalink / raw)
To: andersson, konradybcio, robh, krzk+dt, conor+dt
Cc: linux-arm-msm, linux-kernel, devicetree, Sreeshankar K
Qualcomm SM7250 SoC is known as lito.
This patchset add SM7250 SoC ID.
v2 - Fixes/Changes
1. Changed the commit order in patchset (first bindings, then driver).
Sreeshankar K (2):
dt-bindings: arm: qcom,ids: Add SoC ID for SM7250
soc: qcom: socinfo: Add SM7250 SoC ID
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 v2 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for SM7250
2026-08-17 7:37 [PATCH v2 0/2] Add Qualcomm SM7250 SoC ID Sreeshankar K
@ 2026-08-17 7:37 ` Sreeshankar K
2026-08-17 8:03 ` Krzysztof Kozlowski
2026-08-17 7:37 ` [PATCH v2 2/2] soc: qcom: socinfo: Add SM7250 SoC ID Sreeshankar K
1 sibling, 1 reply; 4+ messages in thread
From: Sreeshankar K @ 2026-08-17 7:37 UTC (permalink / raw)
To: andersson, konradybcio, robh, krzk+dt, conor+dt
Cc: linux-arm-msm, linux-kernel, devicetree, Sreeshankar K
Add the ID for the Qualcomm SM7250 SoC.
Signed-off-by: Sreeshankar K <sreeshankar0910@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 1af73c0ad..3c1ba5168 100644
--- a/include/dt-bindings/arm/qcom,ids.h
+++ b/include/dt-bindings/arm/qcom,ids.h
@@ -208,6 +208,7 @@
#define QCOM_ID_IPQ8172 397
#define QCOM_ID_IPQ8173 398
#define QCOM_ID_IPQ8174 399
+#define QCOM_ID_SM7250 400
#define QCOM_ID_IPQ6018 402
#define QCOM_ID_IPQ6028 403
#define QCOM_ID_SDM429W 416
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for SM7250
2026-08-17 7:37 ` [PATCH v2 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for SM7250 Sreeshankar K
@ 2026-08-17 8:03 ` Krzysztof Kozlowski
0 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2026-08-17 8:03 UTC (permalink / raw)
To: Sreeshankar K, andersson, konradybcio, robh, krzk+dt, conor+dt
Cc: linux-arm-msm, linux-kernel, devicetree
On 17/08/2026 09:37, Sreeshankar K wrote:
> Add the ID for the Qualcomm SM7250 SoC.
>
> Signed-off-by: Sreeshankar K <sreeshankar0910@gmail.com>
Please organize your patches correctly: everything targeting the same
subsystem with exactly the same concept/goal/intention should be one
patchset, not 5 simultaneously sent patchsets.
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 2/2] soc: qcom: socinfo: Add SM7250 SoC ID
2026-08-17 7:37 [PATCH v2 0/2] Add Qualcomm SM7250 SoC ID Sreeshankar K
2026-08-17 7:37 ` [PATCH v2 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for SM7250 Sreeshankar K
@ 2026-08-17 7:37 ` Sreeshankar K
1 sibling, 0 replies; 4+ messages in thread
From: Sreeshankar K @ 2026-08-17 7:37 UTC (permalink / raw)
To: andersson, konradybcio, robh, krzk+dt, conor+dt
Cc: linux-arm-msm, linux-kernel, devicetree, Sreeshankar K
Add SoC ID for Qualcomm SM7250 SoC.
Signed-off-by: Sreeshankar K <sreeshankar0910@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 af418adad..54b1f8e1b 100644
--- a/drivers/soc/qcom/socinfo.c
+++ b/drivers/soc/qcom/socinfo.c
@@ -449,6 +449,7 @@ static const struct soc_id soc_id[] = {
{ qcom_board_id(IPQ8172) },
{ qcom_board_id(IPQ8173) },
{ qcom_board_id(IPQ8174) },
+ { qcom_board_id(SM7250) },
{ qcom_board_id(IPQ6018) },
{ qcom_board_id(IPQ6028) },
{ qcom_board_id(SDM429W) },
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-08-17 8:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-17 7:37 [PATCH v2 0/2] Add Qualcomm SM7250 SoC ID Sreeshankar K
2026-08-17 7:37 ` [PATCH v2 1/2] dt-bindings: arm: qcom,ids: Add SoC ID for SM7250 Sreeshankar K
2026-08-17 8:03 ` Krzysztof Kozlowski
2026-08-17 7:37 ` [PATCH v2 2/2] soc: qcom: socinfo: Add SM7250 SoC ID Sreeshankar K
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox