Linux ARM-MSM sub-architecture
 help / color / mirror / Atom feed
* [PATCH 0/3] soc: qcom: Add X1E80100 platform and SMB2360 PMIC
@ 2024-02-23 14:37 Abel Vesa
  2024-02-23 14:37 ` [PATCH 1/3] dt-bindings: arm: qcom,ids: Add SoC ID for X1E80100 Abel Vesa
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Abel Vesa @ 2024-02-23 14:37 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel, Abel Vesa

This patchset adds the entry for the new X1E80100 SoC and one of the
PMICs it uses, the SMB2360. Rest of the PMICs are already added.

Signed-off-by: Abel Vesa <abel.vesa@linaro.org>
---
Abel Vesa (3):
      dt-bindings: arm: qcom,ids: Add SoC ID for X1E80100
      soc: qcom: socinfo: Add X1E80100 SoC ID table entry
      soc: qcom: socinfo: Add SMB2360 PMIC

 drivers/soc/qcom/socinfo.c         | 2 ++
 include/dt-bindings/arm/qcom,ids.h | 1 +
 2 files changed, 3 insertions(+)
---
base-commit: 33e1d31873f87d119e5120b88cd350efa68ef276
change-id: 20240223-x1e80100-socinfo-06378c690947

Best regards,
-- 
Abel Vesa <abel.vesa@linaro.org>


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

* [PATCH 1/3] dt-bindings: arm: qcom,ids: Add SoC ID for X1E80100
  2024-02-23 14:37 [PATCH 0/3] soc: qcom: Add X1E80100 platform and SMB2360 PMIC Abel Vesa
@ 2024-02-23 14:37 ` Abel Vesa
  2024-02-23 21:19   ` Konrad Dybcio
  2024-02-24 10:29   ` Krzysztof Kozlowski
  2024-02-23 14:37 ` [PATCH 2/3] soc: qcom: socinfo: Add X1E80100 SoC ID table entry Abel Vesa
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 10+ messages in thread
From: Abel Vesa @ 2024-02-23 14:37 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel, Abel Vesa

Add the ID for the Qualcomm X1E80100 SoC.

Signed-off-by: Abel Vesa <abel.vesa@linaro.org>
---
 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 19ac7b36f608..d040033dc8ee 100644
--- a/include/dt-bindings/arm/qcom,ids.h
+++ b/include/dt-bindings/arm/qcom,ids.h
@@ -258,6 +258,7 @@
 #define QCOM_ID_QRU1000			539
 #define QCOM_ID_SM8475_2		540
 #define QCOM_ID_QDU1000			545
+#define QCOM_ID_X1E80100		555
 #define QCOM_ID_SM8650			557
 #define QCOM_ID_SM4450			568
 #define QCOM_ID_QDU1010			587

-- 
2.34.1


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

* [PATCH 2/3] soc: qcom: socinfo: Add X1E80100 SoC ID table entry
  2024-02-23 14:37 [PATCH 0/3] soc: qcom: Add X1E80100 platform and SMB2360 PMIC Abel Vesa
  2024-02-23 14:37 ` [PATCH 1/3] dt-bindings: arm: qcom,ids: Add SoC ID for X1E80100 Abel Vesa
@ 2024-02-23 14:37 ` Abel Vesa
  2024-02-23 21:18   ` Konrad Dybcio
  2024-02-24 10:29   ` Krzysztof Kozlowski
  2024-02-23 14:37 ` [PATCH 3/3] soc: qcom: socinfo: Add SMB2360 PMIC Abel Vesa
  2024-03-17 16:27 ` [PATCH 0/3] soc: qcom: Add X1E80100 platform and " Bjorn Andersson
  3 siblings, 2 replies; 10+ messages in thread
From: Abel Vesa @ 2024-02-23 14:37 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel, Abel Vesa

Add SoC Info support for the X1E80100 platform.

Signed-off-by: Abel Vesa <abel.vesa@linaro.org>
---
 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 e8ff9819ac47..c8e968d7a620 100644
--- a/drivers/soc/qcom/socinfo.c
+++ b/drivers/soc/qcom/socinfo.c
@@ -430,6 +430,7 @@ static const struct soc_id soc_id[] = {
 	{ qcom_board_id(QRU1000) },
 	{ qcom_board_id(SM8475_2) },
 	{ qcom_board_id(QDU1000) },
+	{ qcom_board_id(X1E80100) },
 	{ qcom_board_id(SM8650) },
 	{ qcom_board_id(SM4450) },
 	{ qcom_board_id(QDU1010) },

-- 
2.34.1


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

* [PATCH 3/3] soc: qcom: socinfo: Add SMB2360 PMIC
  2024-02-23 14:37 [PATCH 0/3] soc: qcom: Add X1E80100 platform and SMB2360 PMIC Abel Vesa
  2024-02-23 14:37 ` [PATCH 1/3] dt-bindings: arm: qcom,ids: Add SoC ID for X1E80100 Abel Vesa
  2024-02-23 14:37 ` [PATCH 2/3] soc: qcom: socinfo: Add X1E80100 SoC ID table entry Abel Vesa
@ 2024-02-23 14:37 ` Abel Vesa
  2024-02-23 21:19   ` Konrad Dybcio
  2024-03-17 16:27 ` [PATCH 0/3] soc: qcom: Add X1E80100 platform and " Bjorn Andersson
  3 siblings, 1 reply; 10+ messages in thread
From: Abel Vesa @ 2024-02-23 14:37 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel, Abel Vesa

The SMB2360 PMIC is used on boards with X1E80100.

Signed-off-by: Abel Vesa <abel.vesa@linaro.org>
---
 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 c8e968d7a620..277c07a6603d 100644
--- a/drivers/soc/qcom/socinfo.c
+++ b/drivers/soc/qcom/socinfo.c
@@ -133,6 +133,7 @@ static const char *const pmic_models[] = {
 	[72] = "PMR735D",
 	[73] = "PM8550",
 	[74] = "PMK8550",
+	[82] = "SMB2360",
 };
 
 struct socinfo_params {

-- 
2.34.1


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

* Re: [PATCH 2/3] soc: qcom: socinfo: Add X1E80100 SoC ID table entry
  2024-02-23 14:37 ` [PATCH 2/3] soc: qcom: socinfo: Add X1E80100 SoC ID table entry Abel Vesa
@ 2024-02-23 21:18   ` Konrad Dybcio
  2024-02-24 10:29   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 10+ messages in thread
From: Konrad Dybcio @ 2024-02-23 21:18 UTC (permalink / raw)
  To: Abel Vesa, Bjorn Andersson, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel

On 23.02.2024 15:37, Abel Vesa wrote:
> Add SoC Info support for the X1E80100 platform.
> 
> Signed-off-by: Abel Vesa <abel.vesa@linaro.org>
> ---

Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad

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

* Re: [PATCH 3/3] soc: qcom: socinfo: Add SMB2360 PMIC
  2024-02-23 14:37 ` [PATCH 3/3] soc: qcom: socinfo: Add SMB2360 PMIC Abel Vesa
@ 2024-02-23 21:19   ` Konrad Dybcio
  0 siblings, 0 replies; 10+ messages in thread
From: Konrad Dybcio @ 2024-02-23 21:19 UTC (permalink / raw)
  To: Abel Vesa, Bjorn Andersson, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel

On 23.02.2024 15:37, Abel Vesa wrote:
> The SMB2360 PMIC is used on boards with X1E80100.
> 
> Signed-off-by: Abel Vesa <abel.vesa@linaro.org>
> ---

Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad

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

* Re: [PATCH 1/3] dt-bindings: arm: qcom,ids: Add SoC ID for X1E80100
  2024-02-23 14:37 ` [PATCH 1/3] dt-bindings: arm: qcom,ids: Add SoC ID for X1E80100 Abel Vesa
@ 2024-02-23 21:19   ` Konrad Dybcio
  2024-02-24 10:29   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 10+ messages in thread
From: Konrad Dybcio @ 2024-02-23 21:19 UTC (permalink / raw)
  To: Abel Vesa, Bjorn Andersson, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel

On 23.02.2024 15:37, Abel Vesa wrote:
> Add the ID for the Qualcomm X1E80100 SoC.
> 
> Signed-off-by: Abel Vesa <abel.vesa@linaro.org>
> ---

Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad

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

* Re: [PATCH 1/3] dt-bindings: arm: qcom,ids: Add SoC ID for X1E80100
  2024-02-23 14:37 ` [PATCH 1/3] dt-bindings: arm: qcom,ids: Add SoC ID for X1E80100 Abel Vesa
  2024-02-23 21:19   ` Konrad Dybcio
@ 2024-02-24 10:29   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 10+ messages in thread
From: Krzysztof Kozlowski @ 2024-02-24 10:29 UTC (permalink / raw)
  To: Abel Vesa, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel

On 23/02/2024 15:37, Abel Vesa wrote:
> Add the ID for the Qualcomm X1E80100 SoC.
> 
> Signed-off-by: Abel Vesa <abel.vesa@linaro.org>
> ---

Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


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

* Re: [PATCH 2/3] soc: qcom: socinfo: Add X1E80100 SoC ID table entry
  2024-02-23 14:37 ` [PATCH 2/3] soc: qcom: socinfo: Add X1E80100 SoC ID table entry Abel Vesa
  2024-02-23 21:18   ` Konrad Dybcio
@ 2024-02-24 10:29   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 10+ messages in thread
From: Krzysztof Kozlowski @ 2024-02-24 10:29 UTC (permalink / raw)
  To: Abel Vesa, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel

On 23/02/2024 15:37, Abel Vesa wrote:
> Add SoC Info support for the X1E80100 platform.
> 
> Signed-off-by: Abel Vesa <abel.vesa@linaro.org>
> ---
>  drivers/soc/qcom/socinfo.c | 1 +
>  1 file changed, 1 insertion(+)

Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


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

* Re: [PATCH 0/3] soc: qcom: Add X1E80100 platform and SMB2360 PMIC
  2024-02-23 14:37 [PATCH 0/3] soc: qcom: Add X1E80100 platform and SMB2360 PMIC Abel Vesa
                   ` (2 preceding siblings ...)
  2024-02-23 14:37 ` [PATCH 3/3] soc: qcom: socinfo: Add SMB2360 PMIC Abel Vesa
@ 2024-03-17 16:27 ` Bjorn Andersson
  3 siblings, 0 replies; 10+ messages in thread
From: Bjorn Andersson @ 2024-03-17 16:27 UTC (permalink / raw)
  To: Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Abel Vesa
  Cc: linux-arm-msm, devicetree, linux-kernel


On Fri, 23 Feb 2024 16:37:54 +0200, Abel Vesa wrote:
> This patchset adds the entry for the new X1E80100 SoC and one of the
> PMICs it uses, the SMB2360. Rest of the PMICs are already added.
> 
> 

Applied, thanks!

[1/3] dt-bindings: arm: qcom,ids: Add SoC ID for X1E80100
      commit: 734364d0ddee6c145705bac89400266c972efc0b
[2/3] soc: qcom: socinfo: Add X1E80100 SoC ID table entry
      commit: e876303c6f18da4c649d97f6d488ee0a850ad384
[3/3] soc: qcom: socinfo: Add SMB2360 PMIC
      commit: e025171d1ab1edf286c102f7adecafd51c3a84c3

Best regards,
-- 
Bjorn Andersson <andersson@kernel.org>

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

end of thread, other threads:[~2024-03-17 16:27 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-23 14:37 [PATCH 0/3] soc: qcom: Add X1E80100 platform and SMB2360 PMIC Abel Vesa
2024-02-23 14:37 ` [PATCH 1/3] dt-bindings: arm: qcom,ids: Add SoC ID for X1E80100 Abel Vesa
2024-02-23 21:19   ` Konrad Dybcio
2024-02-24 10:29   ` Krzysztof Kozlowski
2024-02-23 14:37 ` [PATCH 2/3] soc: qcom: socinfo: Add X1E80100 SoC ID table entry Abel Vesa
2024-02-23 21:18   ` Konrad Dybcio
2024-02-24 10:29   ` Krzysztof Kozlowski
2024-02-23 14:37 ` [PATCH 3/3] soc: qcom: socinfo: Add SMB2360 PMIC Abel Vesa
2024-02-23 21:19   ` Konrad Dybcio
2024-03-17 16:27 ` [PATCH 0/3] soc: qcom: Add X1E80100 platform and " Bjorn Andersson

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