All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] dt-bindings: mmc: sdhci-msm: document dedicated IPQ4019 and IPQ8074
@ 2023-12-11  8:58 Krzysztof Kozlowski
  2023-12-11  8:58 ` [PATCH 2/3] ARM: dts: qcom: ipq4019: add dedicated SDHCI compatible Krzysztof Kozlowski
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Krzysztof Kozlowski @ 2023-12-11  8:58 UTC (permalink / raw)
  To: Ulf Hansson, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Andy Gross, Bjorn Andersson, Konrad Dybcio, Bhupesh Sharma,
	linux-mmc, devicetree, linux-kernel, linux-arm-msm
  Cc: Krzysztof Kozlowski

Add dedicated compatibles for the Qualcomm IPQ4019 and IPQ8074 SoCs,
because usage of generic qcom,sdhci-msm-v4 compatible alone is
deprecated.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 Documentation/devicetree/bindings/mmc/sdhci-msm.yaml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml b/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml
index 86fae733d9a0..c24c537f62b1 100644
--- a/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml
+++ b/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml
@@ -22,6 +22,8 @@ properties:
       - items:
           - enum:
               - qcom,apq8084-sdhci
+              - qcom,ipq4019-sdhci
+              - qcom,ipq8074-sdhci
               - qcom,msm8226-sdhci
               - qcom,msm8953-sdhci
               - qcom,msm8974-sdhci
-- 
2.34.1


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

* [PATCH 2/3] ARM: dts: qcom: ipq4019: add dedicated SDHCI compatible
  2023-12-11  8:58 [PATCH 1/3] dt-bindings: mmc: sdhci-msm: document dedicated IPQ4019 and IPQ8074 Krzysztof Kozlowski
@ 2023-12-11  8:58 ` Krzysztof Kozlowski
  2023-12-11  9:20   ` Konrad Dybcio
  2023-12-11  8:58 ` [PATCH 3/3] arm64: dts: qcom: ipq8074: " Krzysztof Kozlowski
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 8+ messages in thread
From: Krzysztof Kozlowski @ 2023-12-11  8:58 UTC (permalink / raw)
  To: Ulf Hansson, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Andy Gross, Bjorn Andersson, Konrad Dybcio, Bhupesh Sharma,
	linux-mmc, devicetree, linux-kernel, linux-arm-msm
  Cc: Krzysztof Kozlowski

Add dedicated compatible for the SDHCI MMC controller, because usage of
generic qcom,sdhci-msm-v4 compatible alone is deprecated.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm/boot/dts/qcom/qcom-ipq4019.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/qcom/qcom-ipq4019.dtsi b/arch/arm/boot/dts/qcom/qcom-ipq4019.dtsi
index 114c92b4d8d4..e838f2c1678d 100644
--- a/arch/arm/boot/dts/qcom/qcom-ipq4019.dtsi
+++ b/arch/arm/boot/dts/qcom/qcom-ipq4019.dtsi
@@ -224,7 +224,7 @@ vqmmc: regulator@1948000 {
 		};
 
 		sdhci: mmc@7824900 {
-			compatible = "qcom,sdhci-msm-v4";
+			compatible = "qcom,ipq4019-sdhci", "qcom,sdhci-msm-v4";
 			reg = <0x7824900 0x11c>, <0x7824000 0x800>;
 			reg-names = "hc", "core";
 			interrupts = <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 138 IRQ_TYPE_LEVEL_HIGH>;
-- 
2.34.1


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

* [PATCH 3/3] arm64: dts: qcom: ipq8074: add dedicated SDHCI compatible
  2023-12-11  8:58 [PATCH 1/3] dt-bindings: mmc: sdhci-msm: document dedicated IPQ4019 and IPQ8074 Krzysztof Kozlowski
  2023-12-11  8:58 ` [PATCH 2/3] ARM: dts: qcom: ipq4019: add dedicated SDHCI compatible Krzysztof Kozlowski
@ 2023-12-11  8:58 ` Krzysztof Kozlowski
  2023-12-11  9:21   ` Konrad Dybcio
  2023-12-11 17:39 ` [PATCH 1/3] dt-bindings: mmc: sdhci-msm: document dedicated IPQ4019 and IPQ8074 Conor Dooley
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 8+ messages in thread
From: Krzysztof Kozlowski @ 2023-12-11  8:58 UTC (permalink / raw)
  To: Ulf Hansson, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Andy Gross, Bjorn Andersson, Konrad Dybcio, Bhupesh Sharma,
	linux-mmc, devicetree, linux-kernel, linux-arm-msm
  Cc: Krzysztof Kozlowski, Chukun Pan

Add dedicated compatible for the SDHCI MMC controller, because usage of
generic qcom,sdhci-msm-v4 compatible alone is deprecated.

Cc: Chukun Pan <amadeus@jmu.edu.cn>
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/ipq8074.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/ipq8074.dtsi b/arch/arm64/boot/dts/qcom/ipq8074.dtsi
index dca7005c0a9d..915c22b0f270 100644
--- a/arch/arm64/boot/dts/qcom/ipq8074.dtsi
+++ b/arch/arm64/boot/dts/qcom/ipq8074.dtsi
@@ -400,7 +400,7 @@ spmi_bus: spmi@200f000 {
 		};
 
 		sdhc_1: mmc@7824900 {
-			compatible = "qcom,sdhci-msm-v4";
+			compatible = "qcom,ipq8074-sdhci", "qcom,sdhci-msm-v4";
 			reg = <0x7824900 0x500>, <0x7824000 0x800>;
 			reg-names = "hc", "core";
 
-- 
2.34.1


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

* Re: [PATCH 2/3] ARM: dts: qcom: ipq4019: add dedicated SDHCI compatible
  2023-12-11  8:58 ` [PATCH 2/3] ARM: dts: qcom: ipq4019: add dedicated SDHCI compatible Krzysztof Kozlowski
@ 2023-12-11  9:20   ` Konrad Dybcio
  0 siblings, 0 replies; 8+ messages in thread
From: Konrad Dybcio @ 2023-12-11  9:20 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Ulf Hansson, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Andy Gross, Bjorn Andersson,
	Bhupesh Sharma, linux-mmc, devicetree, linux-kernel,
	linux-arm-msm

On 11.12.2023 09:58, Krzysztof Kozlowski wrote:
> Add dedicated compatible for the SDHCI MMC controller, because usage of
> generic qcom,sdhci-msm-v4 compatible alone is deprecated.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad

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

* Re: [PATCH 3/3] arm64: dts: qcom: ipq8074: add dedicated SDHCI compatible
  2023-12-11  8:58 ` [PATCH 3/3] arm64: dts: qcom: ipq8074: " Krzysztof Kozlowski
@ 2023-12-11  9:21   ` Konrad Dybcio
  0 siblings, 0 replies; 8+ messages in thread
From: Konrad Dybcio @ 2023-12-11  9:21 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Ulf Hansson, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Andy Gross, Bjorn Andersson,
	Bhupesh Sharma, linux-mmc, devicetree, linux-kernel,
	linux-arm-msm
  Cc: Chukun Pan

On 11.12.2023 09:58, Krzysztof Kozlowski wrote:
> Add dedicated compatible for the SDHCI MMC controller, because usage of
> generic qcom,sdhci-msm-v4 compatible alone is deprecated.
> 
> Cc: Chukun Pan <amadeus@jmu.edu.cn>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad

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

* Re: [PATCH 1/3] dt-bindings: mmc: sdhci-msm: document dedicated IPQ4019 and IPQ8074
  2023-12-11  8:58 [PATCH 1/3] dt-bindings: mmc: sdhci-msm: document dedicated IPQ4019 and IPQ8074 Krzysztof Kozlowski
  2023-12-11  8:58 ` [PATCH 2/3] ARM: dts: qcom: ipq4019: add dedicated SDHCI compatible Krzysztof Kozlowski
  2023-12-11  8:58 ` [PATCH 3/3] arm64: dts: qcom: ipq8074: " Krzysztof Kozlowski
@ 2023-12-11 17:39 ` Conor Dooley
  2023-12-17 17:21 ` (subset) " Bjorn Andersson
  2024-01-02 16:56 ` Ulf Hansson
  4 siblings, 0 replies; 8+ messages in thread
From: Conor Dooley @ 2023-12-11 17:39 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Ulf Hansson, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Andy Gross, Bjorn Andersson, Konrad Dybcio, Bhupesh Sharma,
	linux-mmc, devicetree, linux-kernel, linux-arm-msm

[-- Attachment #1: Type: text/plain, Size: 1105 bytes --]

On Mon, Dec 11, 2023 at 09:58:28AM +0100, Krzysztof Kozlowski wrote:
> Add dedicated compatibles for the Qualcomm IPQ4019 and IPQ8074 SoCs,
> because usage of generic qcom,sdhci-msm-v4 compatible alone is
> deprecated.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Acked-by: Conor Dooley <conor.dooley@microchip.com>

Cheers,
Conor.

> ---
>  Documentation/devicetree/bindings/mmc/sdhci-msm.yaml | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml b/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml
> index 86fae733d9a0..c24c537f62b1 100644
> --- a/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml
> +++ b/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml
> @@ -22,6 +22,8 @@ properties:
>        - items:
>            - enum:
>                - qcom,apq8084-sdhci
> +              - qcom,ipq4019-sdhci
> +              - qcom,ipq8074-sdhci
>                - qcom,msm8226-sdhci
>                - qcom,msm8953-sdhci
>                - qcom,msm8974-sdhci
> -- 
> 2.34.1
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

* Re: (subset) [PATCH 1/3] dt-bindings: mmc: sdhci-msm: document dedicated IPQ4019 and IPQ8074
  2023-12-11  8:58 [PATCH 1/3] dt-bindings: mmc: sdhci-msm: document dedicated IPQ4019 and IPQ8074 Krzysztof Kozlowski
                   ` (2 preceding siblings ...)
  2023-12-11 17:39 ` [PATCH 1/3] dt-bindings: mmc: sdhci-msm: document dedicated IPQ4019 and IPQ8074 Conor Dooley
@ 2023-12-17 17:21 ` Bjorn Andersson
  2024-01-02 16:56 ` Ulf Hansson
  4 siblings, 0 replies; 8+ messages in thread
From: Bjorn Andersson @ 2023-12-17 17:21 UTC (permalink / raw)
  To: Ulf Hansson, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Andy Gross, Konrad Dybcio, Bhupesh Sharma, linux-mmc, devicetree,
	linux-kernel, linux-arm-msm, Krzysztof Kozlowski


On Mon, 11 Dec 2023 09:58:28 +0100, Krzysztof Kozlowski wrote:
> Add dedicated compatibles for the Qualcomm IPQ4019 and IPQ8074 SoCs,
> because usage of generic qcom,sdhci-msm-v4 compatible alone is
> deprecated.
> 
> 

Applied, thanks!

[2/3] ARM: dts: qcom: ipq4019: add dedicated SDHCI compatible
      commit: 7514b28f7a016845a6b912783c4c7f4caf37788a

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

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

* Re: [PATCH 1/3] dt-bindings: mmc: sdhci-msm: document dedicated IPQ4019 and IPQ8074
  2023-12-11  8:58 [PATCH 1/3] dt-bindings: mmc: sdhci-msm: document dedicated IPQ4019 and IPQ8074 Krzysztof Kozlowski
                   ` (3 preceding siblings ...)
  2023-12-17 17:21 ` (subset) " Bjorn Andersson
@ 2024-01-02 16:56 ` Ulf Hansson
  4 siblings, 0 replies; 8+ messages in thread
From: Ulf Hansson @ 2024-01-02 16:56 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Bhupesh Sharma, linux-mmc,
	devicetree, linux-kernel, linux-arm-msm

On Mon, 11 Dec 2023 at 09:58, Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> Add dedicated compatibles for the Qualcomm IPQ4019 and IPQ8074 SoCs,
> because usage of generic qcom,sdhci-msm-v4 compatible alone is
> deprecated.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Applied for next, thanks!

Kind regards
Uffe


> ---
>  Documentation/devicetree/bindings/mmc/sdhci-msm.yaml | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml b/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml
> index 86fae733d9a0..c24c537f62b1 100644
> --- a/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml
> +++ b/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml
> @@ -22,6 +22,8 @@ properties:
>        - items:
>            - enum:
>                - qcom,apq8084-sdhci
> +              - qcom,ipq4019-sdhci
> +              - qcom,ipq8074-sdhci
>                - qcom,msm8226-sdhci
>                - qcom,msm8953-sdhci
>                - qcom,msm8974-sdhci
> --
> 2.34.1
>

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

end of thread, other threads:[~2024-01-02 16:57 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-11  8:58 [PATCH 1/3] dt-bindings: mmc: sdhci-msm: document dedicated IPQ4019 and IPQ8074 Krzysztof Kozlowski
2023-12-11  8:58 ` [PATCH 2/3] ARM: dts: qcom: ipq4019: add dedicated SDHCI compatible Krzysztof Kozlowski
2023-12-11  9:20   ` Konrad Dybcio
2023-12-11  8:58 ` [PATCH 3/3] arm64: dts: qcom: ipq8074: " Krzysztof Kozlowski
2023-12-11  9:21   ` Konrad Dybcio
2023-12-11 17:39 ` [PATCH 1/3] dt-bindings: mmc: sdhci-msm: document dedicated IPQ4019 and IPQ8074 Conor Dooley
2023-12-17 17:21 ` (subset) " Bjorn Andersson
2024-01-02 16:56 ` Ulf Hansson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.