linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/7] Compatibles for SM6115
@ 2022-08-15 10:09 Adam Skladowski
  2022-08-15 10:09 ` [PATCH 1/7] dt-bindings: dmaengine: qcom: gpi: add compatible " Adam Skladowski
                   ` (7 more replies)
  0 siblings, 8 replies; 15+ messages in thread
From: Adam Skladowski @ 2022-08-15 10:09 UTC (permalink / raw)
  Cc: phone-devel, ~postmarketos/upstreaming, Adam Skladowski,
	Andy Gross, Bjorn Andersson, Konrad Dybcio, Vinod Koul,
	Rob Herring, Krzysztof Kozlowski, Will Deacon, Robin Murphy,
	Joerg Roedel, Ulf Hansson, Rafael J. Wysocki, Viresh Kumar,
	Sai Prakash Ranjan, Loic Poulain, Emma Anholt, Rob Clark,
	Bhupesh Sharma, linux-arm-msm, dmaengine, devicetree,
	linux-kernel, linux-arm-kernel, iommu, linux-mmc, linux-pm

This patch series add bunch of compatibles in preparation
for sending device tree patches for Snapdragon 662 SoC

Adam Skladowski (7):
  dt-bindings: dmaengine: qcom: gpi: add compatible for SM6115
  dmaengine: qcom: gpi: Add SM6115 support
  dt-bindings: mmc: sdhci-msm: Document the SM6115 compatible
  cpufreq: Add SM6115 to cpufreq-dt-platdev blocklist
  dt-bindings: arm-smmu: Add compatible for Qualcomm SM6115
  iommu/arm-smmu-qcom: Add SM6115 support
  dt-bindings: firmware: document Qualcomm SM6115 SCM

 Documentation/devicetree/bindings/dma/qcom,gpi.yaml     | 1 +
 Documentation/devicetree/bindings/firmware/qcom,scm.txt | 1 +
 Documentation/devicetree/bindings/iommu/arm,smmu.yaml   | 1 +
 Documentation/devicetree/bindings/mmc/sdhci-msm.yaml    | 1 +
 drivers/cpufreq/cpufreq-dt-platdev.c                    | 1 +
 drivers/dma/qcom/gpi.c                                  | 1 +
 drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c              | 2 ++
 7 files changed, 8 insertions(+)

-- 
2.25.1


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

* [PATCH 1/7] dt-bindings: dmaengine: qcom: gpi: add compatible for SM6115
  2022-08-15 10:09 [PATCH 0/7] Compatibles for SM6115 Adam Skladowski
@ 2022-08-15 10:09 ` Adam Skladowski
  2022-08-16  7:48   ` Krzysztof Kozlowski
  2022-08-15 10:09 ` [PATCH 2/7] dmaengine: qcom: gpi: Add SM6115 support Adam Skladowski
                   ` (6 subsequent siblings)
  7 siblings, 1 reply; 15+ messages in thread
From: Adam Skladowski @ 2022-08-15 10:09 UTC (permalink / raw)
  Cc: phone-devel, ~postmarketos/upstreaming, Adam Skladowski,
	Andy Gross, Bjorn Andersson, Konrad Dybcio, Vinod Koul,
	Rob Herring, Krzysztof Kozlowski, Will Deacon, Robin Murphy,
	Joerg Roedel, Ulf Hansson, Rafael J. Wysocki, Viresh Kumar,
	Sai Prakash Ranjan, Loic Poulain, Emma Anholt, Rob Clark,
	Bhupesh Sharma, linux-arm-msm, dmaengine, devicetree,
	linux-kernel, linux-arm-kernel, iommu, linux-mmc, linux-pm,
	Stephen Boyd, Sibi Sankar

Document the compatible for GPI DMA controller on SM6115 SoC.

Signed-off-by: Adam Skladowski <a39.skl@gmail.com>
---
 Documentation/devicetree/bindings/dma/qcom,gpi.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/dma/qcom,gpi.yaml b/Documentation/devicetree/bindings/dma/qcom,gpi.yaml
index 7d2fc4eb5530..fcfe8a373a16 100644
--- a/Documentation/devicetree/bindings/dma/qcom,gpi.yaml
+++ b/Documentation/devicetree/bindings/dma/qcom,gpi.yaml
@@ -21,6 +21,7 @@ properties:
     enum:
       - qcom,sc7280-gpi-dma
       - qcom,sdm845-gpi-dma
+      - qcom,sm6115-gpi-dma
       - qcom,sm8150-gpi-dma
       - qcom,sm8250-gpi-dma
       - qcom,sm8350-gpi-dma
-- 
2.25.1


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

* [PATCH 2/7] dmaengine: qcom: gpi: Add SM6115 support
  2022-08-15 10:09 [PATCH 0/7] Compatibles for SM6115 Adam Skladowski
  2022-08-15 10:09 ` [PATCH 1/7] dt-bindings: dmaengine: qcom: gpi: add compatible " Adam Skladowski
@ 2022-08-15 10:09 ` Adam Skladowski
  2022-08-15 10:09 ` [PATCH 3/7] dt-bindings: mmc: sdhci-msm: Document the SM6115 compatible Adam Skladowski
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 15+ messages in thread
From: Adam Skladowski @ 2022-08-15 10:09 UTC (permalink / raw)
  Cc: phone-devel, ~postmarketos/upstreaming, Adam Skladowski,
	Andy Gross, Bjorn Andersson, Konrad Dybcio, Vinod Koul,
	Rob Herring, Krzysztof Kozlowski, Will Deacon, Robin Murphy,
	Joerg Roedel, Ulf Hansson, Rafael J. Wysocki, Viresh Kumar,
	Sai Prakash Ranjan, Loic Poulain, Emma Anholt, Rob Clark,
	Bhupesh Sharma, linux-arm-msm, dmaengine, devicetree,
	linux-kernel, linux-arm-kernel, iommu, linux-mmc, linux-pm,
	Dmitry Baryshkov

Add GPI compatible for SM6115 ee-offset is set to 0x10000 on downstream.

Signed-off-by: Adam Skladowski <a39.skl@gmail.com>
---
 drivers/dma/qcom/gpi.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/dma/qcom/gpi.c b/drivers/dma/qcom/gpi.c
index 8f0c9c4e2efd..b7fc6e0168f3 100644
--- a/drivers/dma/qcom/gpi.c
+++ b/drivers/dma/qcom/gpi.c
@@ -2288,6 +2288,7 @@ static int gpi_probe(struct platform_device *pdev)
 static const struct of_device_id gpi_of_match[] = {
 	{ .compatible = "qcom,sc7280-gpi-dma", .data = (void *)0x10000 },
 	{ .compatible = "qcom,sdm845-gpi-dma", .data = (void *)0x0 },
+	{ .compatible = "qcom,sm6115-gpi-dma", .data = (void *)0x10000 },
 	{ .compatible = "qcom,sm8150-gpi-dma", .data = (void *)0x0 },
 	{ .compatible = "qcom,sm8250-gpi-dma", .data = (void *)0x0 },
 	{ .compatible = "qcom,sm8350-gpi-dma", .data = (void *)0x10000 },
-- 
2.25.1


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

* [PATCH 3/7] dt-bindings: mmc: sdhci-msm: Document the SM6115 compatible
  2022-08-15 10:09 [PATCH 0/7] Compatibles for SM6115 Adam Skladowski
  2022-08-15 10:09 ` [PATCH 1/7] dt-bindings: dmaengine: qcom: gpi: add compatible " Adam Skladowski
  2022-08-15 10:09 ` [PATCH 2/7] dmaengine: qcom: gpi: Add SM6115 support Adam Skladowski
@ 2022-08-15 10:09 ` Adam Skladowski
  2022-08-16  7:49   ` Krzysztof Kozlowski
  2022-08-18 21:33   ` Ulf Hansson
  2022-08-15 10:09 ` [PATCH 4/7] cpufreq: Add SM6115 to cpufreq-dt-platdev blocklist Adam Skladowski
                   ` (4 subsequent siblings)
  7 siblings, 2 replies; 15+ messages in thread
From: Adam Skladowski @ 2022-08-15 10:09 UTC (permalink / raw)
  Cc: phone-devel, ~postmarketos/upstreaming, Adam Skladowski,
	Andy Gross, Bjorn Andersson, Konrad Dybcio, Vinod Koul,
	Rob Herring, Krzysztof Kozlowski, Will Deacon, Robin Murphy,
	Joerg Roedel, Ulf Hansson, Rafael J. Wysocki, Viresh Kumar,
	Sai Prakash Ranjan, Loic Poulain, Emma Anholt, Rob Clark,
	Bhupesh Sharma, linux-arm-msm, dmaengine, devicetree,
	linux-kernel, linux-arm-kernel, iommu, linux-mmc, linux-pm,
	Stephen Boyd, Sibi Sankar

Document the compatible for SDHCI on SM6115.

Signed-off-by: Adam Skladowski <a39.skl@gmail.com>
---
 Documentation/devicetree/bindings/mmc/sdhci-msm.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml b/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml
index fc0e81c2066c..a792fa5574a0 100644
--- a/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml
+++ b/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml
@@ -41,6 +41,7 @@ properties:
               - qcom,sdm845-sdhci
               - qcom,sdx55-sdhci
               - qcom,sdx65-sdhci
+              - qcom,sm6115-sdhci
               - qcom,sm6125-sdhci
               - qcom,sm6350-sdhci
               - qcom,sm8150-sdhci
-- 
2.25.1


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

* [PATCH 4/7] cpufreq: Add SM6115 to cpufreq-dt-platdev blocklist
  2022-08-15 10:09 [PATCH 0/7] Compatibles for SM6115 Adam Skladowski
                   ` (2 preceding siblings ...)
  2022-08-15 10:09 ` [PATCH 3/7] dt-bindings: mmc: sdhci-msm: Document the SM6115 compatible Adam Skladowski
@ 2022-08-15 10:09 ` Adam Skladowski
  2022-08-16  5:21   ` Viresh Kumar
  2022-08-15 10:09 ` [PATCH 5/7] dt-bindings: arm-smmu: Add compatible for Qualcomm SM6115 Adam Skladowski
                   ` (3 subsequent siblings)
  7 siblings, 1 reply; 15+ messages in thread
From: Adam Skladowski @ 2022-08-15 10:09 UTC (permalink / raw)
  Cc: phone-devel, ~postmarketos/upstreaming, Adam Skladowski,
	Andy Gross, Bjorn Andersson, Konrad Dybcio, Vinod Koul,
	Rob Herring, Krzysztof Kozlowski, Will Deacon, Robin Murphy,
	Joerg Roedel, Ulf Hansson, Rafael J. Wysocki, Viresh Kumar,
	Sai Prakash Ranjan, Loic Poulain, Emma Anholt, Rob Clark,
	Bhupesh Sharma, linux-arm-msm, dmaengine, devicetree,
	linux-kernel, linux-arm-kernel, iommu, linux-mmc, linux-pm,
	Sibi Sankar, Adam Skladowski

The Qualcomm SM6115 platform uses the
qcom-cpufreq-hw driver, so add it to the cpufreq-dt-platdev driver's
blocklist.

Signed-off-by: Adam Skladowski <a39.skl@gmail.com>
---
 drivers/cpufreq/cpufreq-dt-platdev.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/cpufreq/cpufreq-dt-platdev.c b/drivers/cpufreq/cpufreq-dt-platdev.c
index 2c96de3f2d83..6ac3800db450 100644
--- a/drivers/cpufreq/cpufreq-dt-platdev.c
+++ b/drivers/cpufreq/cpufreq-dt-platdev.c
@@ -146,6 +146,7 @@ static const struct of_device_id blocklist[] __initconst = {
 	{ .compatible = "qcom,sc8180x", },
 	{ .compatible = "qcom,sc8280xp", },
 	{ .compatible = "qcom,sdm845", },
+	{ .compatible = "qcom,sm6115", },
 	{ .compatible = "qcom,sm6350", },
 	{ .compatible = "qcom,sm8150", },
 	{ .compatible = "qcom,sm8250", },
-- 
2.25.1


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

* [PATCH 5/7] dt-bindings: arm-smmu: Add compatible for Qualcomm SM6115
  2022-08-15 10:09 [PATCH 0/7] Compatibles for SM6115 Adam Skladowski
                   ` (3 preceding siblings ...)
  2022-08-15 10:09 ` [PATCH 4/7] cpufreq: Add SM6115 to cpufreq-dt-platdev blocklist Adam Skladowski
@ 2022-08-15 10:09 ` Adam Skladowski
  2022-08-16  7:49   ` Krzysztof Kozlowski
  2022-08-15 10:09 ` [PATCH 6/7] iommu/arm-smmu-qcom: Add SM6115 support Adam Skladowski
                   ` (2 subsequent siblings)
  7 siblings, 1 reply; 15+ messages in thread
From: Adam Skladowski @ 2022-08-15 10:09 UTC (permalink / raw)
  Cc: phone-devel, ~postmarketos/upstreaming, Adam Skladowski,
	Andy Gross, Bjorn Andersson, Konrad Dybcio, Vinod Koul,
	Rob Herring, Krzysztof Kozlowski, Will Deacon, Robin Murphy,
	Joerg Roedel, Ulf Hansson, Rafael J. Wysocki, Viresh Kumar,
	Sai Prakash Ranjan, Loic Poulain, Emma Anholt, Rob Clark,
	Bhupesh Sharma, linux-arm-msm, dmaengine, devicetree,
	linux-kernel, linux-arm-kernel, iommu, linux-mmc, linux-pm,
	Dmitry Baryshkov

Add compatible for the Qualcomm SM6115 platform to the ARM SMMU
DeviceTree binding.

Signed-off-by: Adam Skladowski <a39.skl@gmail.com>
---
 Documentation/devicetree/bindings/iommu/arm,smmu.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/iommu/arm,smmu.yaml b/Documentation/devicetree/bindings/iommu/arm,smmu.yaml
index 9066e6df1ba1..71f8f638a1f8 100644
--- a/Documentation/devicetree/bindings/iommu/arm,smmu.yaml
+++ b/Documentation/devicetree/bindings/iommu/arm,smmu.yaml
@@ -41,6 +41,7 @@ properties:
               - qcom,sdm845-smmu-500
               - qcom,sdx55-smmu-500
               - qcom,sdx65-smmu-500
+              - qcom,sm6115-smmu-500
               - qcom,sm6350-smmu-500
               - qcom,sm6375-smmu-500
               - qcom,sm8150-smmu-500
-- 
2.25.1


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

* [PATCH 6/7] iommu/arm-smmu-qcom: Add SM6115 support
  2022-08-15 10:09 [PATCH 0/7] Compatibles for SM6115 Adam Skladowski
                   ` (4 preceding siblings ...)
  2022-08-15 10:09 ` [PATCH 5/7] dt-bindings: arm-smmu: Add compatible for Qualcomm SM6115 Adam Skladowski
@ 2022-08-15 10:09 ` Adam Skladowski
  2022-08-15 10:09 ` [PATCH 7/7] dt-bindings: firmware: document Qualcomm SM6115 SCM Adam Skladowski
  2022-08-29 23:45 ` (subset) [PATCH 0/7] Compatibles for SM6115 Bjorn Andersson
  7 siblings, 0 replies; 15+ messages in thread
From: Adam Skladowski @ 2022-08-15 10:09 UTC (permalink / raw)
  Cc: phone-devel, ~postmarketos/upstreaming, Adam Skladowski,
	Andy Gross, Bjorn Andersson, Konrad Dybcio, Vinod Koul,
	Rob Herring, Krzysztof Kozlowski, Will Deacon, Robin Murphy,
	Joerg Roedel, Ulf Hansson, Rafael J. Wysocki, Viresh Kumar,
	Sai Prakash Ranjan, Loic Poulain, Emma Anholt, Rob Clark,
	Bhupesh Sharma, linux-arm-msm, dmaengine, devicetree,
	linux-kernel, linux-arm-kernel, iommu, linux-mmc, linux-pm,
	Adam Skladowski

Add the Qualcomm SM6115 platform to the list of compatible,
this target uses MMU500 for both APSS and GPU.

Signed-off-by: Adam Skladowski <a39.skl@gmail.com>
---
 drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c b/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c
index b2708de25ea3..526fec79b4fe 100644
--- a/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c
+++ b/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c
@@ -432,6 +432,7 @@ static const struct of_device_id __maybe_unused qcom_smmu_impl_of_match[] = {
 	{ .compatible = "qcom,sc8280xp-smmu-500" },
 	{ .compatible = "qcom,sdm630-smmu-v2" },
 	{ .compatible = "qcom,sdm845-smmu-500" },
+	{ .compatible = "qcom,sm6115-smmu-500" },
 	{ .compatible = "qcom,sm6125-smmu-500" },
 	{ .compatible = "qcom,sm6350-smmu-500" },
 	{ .compatible = "qcom,sm6375-smmu-500" },
-- 
2.25.1


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

* [PATCH 7/7] dt-bindings: firmware: document Qualcomm SM6115 SCM
  2022-08-15 10:09 [PATCH 0/7] Compatibles for SM6115 Adam Skladowski
                   ` (5 preceding siblings ...)
  2022-08-15 10:09 ` [PATCH 6/7] iommu/arm-smmu-qcom: Add SM6115 support Adam Skladowski
@ 2022-08-15 10:09 ` Adam Skladowski
  2022-08-16  7:49   ` Krzysztof Kozlowski
  2022-08-29 23:45 ` (subset) [PATCH 0/7] Compatibles for SM6115 Bjorn Andersson
  7 siblings, 1 reply; 15+ messages in thread
From: Adam Skladowski @ 2022-08-15 10:09 UTC (permalink / raw)
  Cc: phone-devel, ~postmarketos/upstreaming, Adam Skladowski,
	Andy Gross, Bjorn Andersson, Konrad Dybcio, Vinod Koul,
	Rob Herring, Krzysztof Kozlowski, Will Deacon, Robin Murphy,
	Joerg Roedel, Ulf Hansson, Rafael J. Wysocki, Viresh Kumar,
	Sai Prakash Ranjan, Loic Poulain, Emma Anholt, Rob Clark,
	Bhupesh Sharma, linux-arm-msm, dmaengine, devicetree,
	linux-kernel, linux-arm-kernel, iommu, linux-mmc, linux-pm,
	Sibi Sankar, Adam Skladowski

Document the compatible for Qualcomm  SM6115 SCM.

Signed-off-by: Adam Skladowski <a39.skl@gmail.com>
---
 Documentation/devicetree/bindings/firmware/qcom,scm.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/firmware/qcom,scm.txt b/Documentation/devicetree/bindings/firmware/qcom,scm.txt
index b3f702cbed87..f6b95d86efc6 100644
--- a/Documentation/devicetree/bindings/firmware/qcom,scm.txt
+++ b/Documentation/devicetree/bindings/firmware/qcom,scm.txt
@@ -26,6 +26,7 @@ Required properties:
  * "qcom,scm-qcs404"
  * "qcom,scm-sc7180"
  * "qcom,scm-sc7280"
+ * "qcom,scm-sm6115"
  * "qcom,scm-sm6125"
  * "qcom,scm-sdm845"
  * "qcom,scm-sdx55"
-- 
2.25.1


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

* Re: [PATCH 4/7] cpufreq: Add SM6115 to cpufreq-dt-platdev blocklist
  2022-08-15 10:09 ` [PATCH 4/7] cpufreq: Add SM6115 to cpufreq-dt-platdev blocklist Adam Skladowski
@ 2022-08-16  5:21   ` Viresh Kumar
  0 siblings, 0 replies; 15+ messages in thread
From: Viresh Kumar @ 2022-08-16  5:21 UTC (permalink / raw)
  To: Adam Skladowski
  Cc: phone-devel, ~postmarketos/upstreaming, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Vinod Koul, Rob Herring,
	Krzysztof Kozlowski, Will Deacon, Robin Murphy, Joerg Roedel,
	Ulf Hansson, Rafael J. Wysocki, Sai Prakash Ranjan, Loic Poulain,
	Emma Anholt, Rob Clark, Bhupesh Sharma, linux-arm-msm, dmaengine,
	devicetree, linux-kernel, linux-arm-kernel, iommu, linux-mmc,
	linux-pm, Sibi Sankar, Adam Skladowski

On 15-08-22, 12:09, Adam Skladowski wrote:
> The Qualcomm SM6115 platform uses the
> qcom-cpufreq-hw driver, so add it to the cpufreq-dt-platdev driver's
> blocklist.
> 
> Signed-off-by: Adam Skladowski <a39.skl@gmail.com>
> ---
>  drivers/cpufreq/cpufreq-dt-platdev.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/cpufreq/cpufreq-dt-platdev.c b/drivers/cpufreq/cpufreq-dt-platdev.c
> index 2c96de3f2d83..6ac3800db450 100644
> --- a/drivers/cpufreq/cpufreq-dt-platdev.c
> +++ b/drivers/cpufreq/cpufreq-dt-platdev.c
> @@ -146,6 +146,7 @@ static const struct of_device_id blocklist[] __initconst = {
>  	{ .compatible = "qcom,sc8180x", },
>  	{ .compatible = "qcom,sc8280xp", },
>  	{ .compatible = "qcom,sdm845", },
> +	{ .compatible = "qcom,sm6115", },
>  	{ .compatible = "qcom,sm6350", },
>  	{ .compatible = "qcom,sm8150", },
>  	{ .compatible = "qcom,sm8250", },

Applied. Thanks.

-- 
viresh

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

* Re: [PATCH 1/7] dt-bindings: dmaengine: qcom: gpi: add compatible for SM6115
  2022-08-15 10:09 ` [PATCH 1/7] dt-bindings: dmaengine: qcom: gpi: add compatible " Adam Skladowski
@ 2022-08-16  7:48   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 15+ messages in thread
From: Krzysztof Kozlowski @ 2022-08-16  7:48 UTC (permalink / raw)
  To: Adam Skladowski
  Cc: phone-devel, ~postmarketos/upstreaming, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Vinod Koul, Rob Herring,
	Krzysztof Kozlowski, Will Deacon, Robin Murphy, Joerg Roedel,
	Ulf Hansson, Rafael J. Wysocki, Viresh Kumar, Sai Prakash Ranjan,
	Loic Poulain, Emma Anholt, Rob Clark, Bhupesh Sharma,
	linux-arm-msm, dmaengine, devicetree, linux-kernel,
	linux-arm-kernel, iommu, linux-mmc, linux-pm, Stephen Boyd,
	Sibi Sankar

On 15/08/2022 13:09, Adam Skladowski wrote:
> Document the compatible for GPI DMA controller on SM6115 SoC.
> 
> Signed-off-by: Adam Skladowski <a39.skl@gmail.com>


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


Best regards,
Krzysztof

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

* Re: [PATCH 3/7] dt-bindings: mmc: sdhci-msm: Document the SM6115 compatible
  2022-08-15 10:09 ` [PATCH 3/7] dt-bindings: mmc: sdhci-msm: Document the SM6115 compatible Adam Skladowski
@ 2022-08-16  7:49   ` Krzysztof Kozlowski
  2022-08-18 21:33   ` Ulf Hansson
  1 sibling, 0 replies; 15+ messages in thread
From: Krzysztof Kozlowski @ 2022-08-16  7:49 UTC (permalink / raw)
  To: Adam Skladowski
  Cc: phone-devel, ~postmarketos/upstreaming, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Vinod Koul, Rob Herring,
	Krzysztof Kozlowski, Will Deacon, Robin Murphy, Joerg Roedel,
	Ulf Hansson, Rafael J. Wysocki, Viresh Kumar, Sai Prakash Ranjan,
	Loic Poulain, Emma Anholt, Rob Clark, Bhupesh Sharma,
	linux-arm-msm, dmaengine, devicetree, linux-kernel,
	linux-arm-kernel, iommu, linux-mmc, linux-pm, Stephen Boyd,
	Sibi Sankar

On 15/08/2022 13:09, Adam Skladowski wrote:
> Document the compatible for SDHCI on SM6115.
> 
> Signed-off-by: Adam Skladowski <a39.skl@gmail.com>

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


Best regards,
Krzysztof

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

* Re: [PATCH 5/7] dt-bindings: arm-smmu: Add compatible for Qualcomm SM6115
  2022-08-15 10:09 ` [PATCH 5/7] dt-bindings: arm-smmu: Add compatible for Qualcomm SM6115 Adam Skladowski
@ 2022-08-16  7:49   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 15+ messages in thread
From: Krzysztof Kozlowski @ 2022-08-16  7:49 UTC (permalink / raw)
  To: Adam Skladowski
  Cc: phone-devel, ~postmarketos/upstreaming, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Vinod Koul, Rob Herring,
	Krzysztof Kozlowski, Will Deacon, Robin Murphy, Joerg Roedel,
	Ulf Hansson, Rafael J. Wysocki, Viresh Kumar, Sai Prakash Ranjan,
	Loic Poulain, Emma Anholt, Rob Clark, Bhupesh Sharma,
	linux-arm-msm, dmaengine, devicetree, linux-kernel,
	linux-arm-kernel, iommu, linux-mmc, linux-pm, Dmitry Baryshkov

On 15/08/2022 13:09, Adam Skladowski wrote:
> Add compatible for the Qualcomm SM6115 platform to the ARM SMMU
> DeviceTree binding.
> 
> Signed-off-by: Adam Skladowski <a39.skl@gmail.com>


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


Best regards,
Krzysztof

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

* Re: [PATCH 7/7] dt-bindings: firmware: document Qualcomm SM6115 SCM
  2022-08-15 10:09 ` [PATCH 7/7] dt-bindings: firmware: document Qualcomm SM6115 SCM Adam Skladowski
@ 2022-08-16  7:49   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 15+ messages in thread
From: Krzysztof Kozlowski @ 2022-08-16  7:49 UTC (permalink / raw)
  To: Adam Skladowski
  Cc: phone-devel, ~postmarketos/upstreaming, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Vinod Koul, Rob Herring,
	Krzysztof Kozlowski, Will Deacon, Robin Murphy, Joerg Roedel,
	Ulf Hansson, Rafael J. Wysocki, Viresh Kumar, Sai Prakash Ranjan,
	Loic Poulain, Emma Anholt, Rob Clark, Bhupesh Sharma,
	linux-arm-msm, dmaengine, devicetree, linux-kernel,
	linux-arm-kernel, iommu, linux-mmc, linux-pm, Sibi Sankar,
	Adam Skladowski

On 15/08/2022 13:09, Adam Skladowski wrote:
> Document the compatible for Qualcomm  SM6115 SCM.
> 
> Signed-off-by: Adam Skladowski <a39.skl@gmail.com>
> ---
>  Documentation/devicetree/bindings/firmware/qcom,scm.txt | 1 +


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


Best regards,
Krzysztof

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

* Re: [PATCH 3/7] dt-bindings: mmc: sdhci-msm: Document the SM6115 compatible
  2022-08-15 10:09 ` [PATCH 3/7] dt-bindings: mmc: sdhci-msm: Document the SM6115 compatible Adam Skladowski
  2022-08-16  7:49   ` Krzysztof Kozlowski
@ 2022-08-18 21:33   ` Ulf Hansson
  1 sibling, 0 replies; 15+ messages in thread
From: Ulf Hansson @ 2022-08-18 21:33 UTC (permalink / raw)
  To: Adam Skladowski
  Cc: phone-devel, ~postmarketos/upstreaming, Andy Gross,
	Bjorn Andersson, Konrad Dybcio, Vinod Koul, Rob Herring,
	Krzysztof Kozlowski, Will Deacon, Robin Murphy, Joerg Roedel,
	Rafael J. Wysocki, Viresh Kumar, Sai Prakash Ranjan,
	Loic Poulain, Emma Anholt, Rob Clark, Bhupesh Sharma,
	linux-arm-msm, dmaengine, devicetree, linux-kernel,
	linux-arm-kernel, iommu, linux-mmc, linux-pm, Stephen Boyd,
	Sibi Sankar

On Mon, 15 Aug 2022 at 12:12, Adam Skladowski <a39.skl@gmail.com> wrote:
>
> Document the compatible for SDHCI on SM6115.
>
> Signed-off-by: Adam Skladowski <a39.skl@gmail.com>

Applied for next, thanks!

Kind regards
Uffe


> ---
>  Documentation/devicetree/bindings/mmc/sdhci-msm.yaml | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml b/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml
> index fc0e81c2066c..a792fa5574a0 100644
> --- a/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml
> +++ b/Documentation/devicetree/bindings/mmc/sdhci-msm.yaml
> @@ -41,6 +41,7 @@ properties:
>                - qcom,sdm845-sdhci
>                - qcom,sdx55-sdhci
>                - qcom,sdx65-sdhci
> +              - qcom,sm6115-sdhci
>                - qcom,sm6125-sdhci
>                - qcom,sm6350-sdhci
>                - qcom,sm8150-sdhci
> --
> 2.25.1
>

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

* Re: (subset) [PATCH 0/7] Compatibles for SM6115
  2022-08-15 10:09 [PATCH 0/7] Compatibles for SM6115 Adam Skladowski
                   ` (6 preceding siblings ...)
  2022-08-15 10:09 ` [PATCH 7/7] dt-bindings: firmware: document Qualcomm SM6115 SCM Adam Skladowski
@ 2022-08-29 23:45 ` Bjorn Andersson
  7 siblings, 0 replies; 15+ messages in thread
From: Bjorn Andersson @ 2022-08-29 23:45 UTC (permalink / raw)
  To: a39.skl
  Cc: linux-pm, linux-mmc, vkoul, linux-arm-msm, will,
	~postmarketos/upstreaming, iommu, konrad.dybcio, devicetree,
	krzysztof.kozlowski+dt, agross, linux-arm-kernel, robdclark,
	loic.poulain, rafael, dmaengine, bhupesh.sharma, phone-devel,
	robin.murphy, Viresh Kumar, ulf.hansson, emma, robh+dt, joro,
	linux-kernel, quic_saipraka

On Mon, 15 Aug 2022 12:09:38 +0200, Adam Skladowski wrote:
> This patch series add bunch of compatibles in preparation
> for sending device tree patches for Snapdragon 662 SoC
> 
> Adam Skladowski (7):
>   dt-bindings: dmaengine: qcom: gpi: add compatible for SM6115
>   dmaengine: qcom: gpi: Add SM6115 support
>   dt-bindings: mmc: sdhci-msm: Document the SM6115 compatible
>   cpufreq: Add SM6115 to cpufreq-dt-platdev blocklist
>   dt-bindings: arm-smmu: Add compatible for Qualcomm SM6115
>   iommu/arm-smmu-qcom: Add SM6115 support
>   dt-bindings: firmware: document Qualcomm SM6115 SCM
> 
> [...]

Applied, thanks!

[7/7] dt-bindings: firmware: document Qualcomm SM6115 SCM
      commit: f2567b732b0aa2160228a956e0c2007feaeb4b64

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

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

end of thread, other threads:[~2022-08-29 23:46 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-15 10:09 [PATCH 0/7] Compatibles for SM6115 Adam Skladowski
2022-08-15 10:09 ` [PATCH 1/7] dt-bindings: dmaengine: qcom: gpi: add compatible " Adam Skladowski
2022-08-16  7:48   ` Krzysztof Kozlowski
2022-08-15 10:09 ` [PATCH 2/7] dmaengine: qcom: gpi: Add SM6115 support Adam Skladowski
2022-08-15 10:09 ` [PATCH 3/7] dt-bindings: mmc: sdhci-msm: Document the SM6115 compatible Adam Skladowski
2022-08-16  7:49   ` Krzysztof Kozlowski
2022-08-18 21:33   ` Ulf Hansson
2022-08-15 10:09 ` [PATCH 4/7] cpufreq: Add SM6115 to cpufreq-dt-platdev blocklist Adam Skladowski
2022-08-16  5:21   ` Viresh Kumar
2022-08-15 10:09 ` [PATCH 5/7] dt-bindings: arm-smmu: Add compatible for Qualcomm SM6115 Adam Skladowski
2022-08-16  7:49   ` Krzysztof Kozlowski
2022-08-15 10:09 ` [PATCH 6/7] iommu/arm-smmu-qcom: Add SM6115 support Adam Skladowski
2022-08-15 10:09 ` [PATCH 7/7] dt-bindings: firmware: document Qualcomm SM6115 SCM Adam Skladowski
2022-08-16  7:49   ` Krzysztof Kozlowski
2022-08-29 23:45 ` (subset) [PATCH 0/7] Compatibles for SM6115 Bjorn Andersson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).