* [PATCH v2 0/5] Enable QPIC BAM and QPIC NAND support for SDX75
@ 2025-04-15 7:27 Kaushal Kumar
2025-04-15 7:27 ` [PATCH v2 1/5] dt-bindings: mtd: qcom,nandc: Document the SDX75 NAND controller Kaushal Kumar
` (5 more replies)
0 siblings, 6 replies; 13+ messages in thread
From: Kaushal Kumar @ 2025-04-15 7:27 UTC (permalink / raw)
To: vkoul, robh, krzk+dt, conor+dt, manivannan.sadhasivam,
miquel.raynal, richard, vigneshr, andersson, konradybcio, agross
Cc: linux-arm-msm, dmaengine, devicetree, linux-kernel, linux-mtd,
Kaushal Kumar
Hello,
This series adds and enables devicetree nodes for QPIC BAM and QPIC NAND
for Qualcomm SDX75 platform.
This patch series depends on the below patches:
https://lore.kernel.org/linux-spi/20250310120906.1577292-5-quic_mdalam@quicinc.com/T/
---
Changes since v1:
- Use sleep clock instead of adding a dummy clock for QPIC NAND since
sleep clock has the required properties.
- QPIC BAM controllers have dma-coherent support hence document it as a
global property.
- dma-coherent property is not applicable for QPIC NAND controller so
remove it.
- iommus items is fixed for SDX75 NAND controller so document it likewise.
- Merge QPIC NAND and BAM devicetree enablement into a single patch.
- Fix minor coding style issues.
- Link to v1: https://lore.kernel.org/all/5a1b52a3-962b-04f9-cdfc-4e38983610b5@quicinc.com/
Kaushal Kumar (5):
dt-bindings: mtd: qcom,nandc: Document the SDX75 NAND controller
dt-bindings: dma: qcom,bam: Document dma-coherent property
arm64: dts: qcom: sdx75: Add QPIC BAM support
arm64: dts: qcom: sdx75: Add QPIC NAND support
arm64: dts: qcom: sdx75-idp: Enable QPIC BAM & QPIC NAND support
.../devicetree/bindings/dma/qcom,bam-dma.yaml | 2 ++
.../devicetree/bindings/mtd/qcom,nandc.yaml | 30 +++++++++++++----
arch/arm64/boot/dts/qcom/sdx75-idp.dts | 18 ++++++++++
arch/arm64/boot/dts/qcom/sdx75.dtsi | 33 +++++++++++++++++++
4 files changed, 77 insertions(+), 6 deletions(-)
--
2.17.1
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v2 1/5] dt-bindings: mtd: qcom,nandc: Document the SDX75 NAND controller
2025-04-15 7:27 [PATCH v2 0/5] Enable QPIC BAM and QPIC NAND support for SDX75 Kaushal Kumar
@ 2025-04-15 7:27 ` Kaushal Kumar
2025-04-21 18:31 ` Rob Herring (Arm)
2025-04-15 7:27 ` [PATCH v2 2/5] dt-bindings: dma: qcom,bam: Document dma-coherent property Kaushal Kumar
` (4 subsequent siblings)
5 siblings, 1 reply; 13+ messages in thread
From: Kaushal Kumar @ 2025-04-15 7:27 UTC (permalink / raw)
To: vkoul, robh, krzk+dt, conor+dt, manivannan.sadhasivam,
miquel.raynal, richard, vigneshr, andersson, konradybcio, agross
Cc: linux-arm-msm, dmaengine, devicetree, linux-kernel, linux-mtd,
Kaushal Kumar
Add new compatible for the QPIC NAND controller v2.1.1 used for SDX75 SoC.
SDX75 NAND controller has iommu support so define it in the properties
section.
Signed-off-by: Kaushal Kumar <quic_kaushalk@quicinc.com>
---
.../devicetree/bindings/mtd/qcom,nandc.yaml | 30 +++++++++++++++----
1 file changed, 24 insertions(+), 6 deletions(-)
diff --git a/Documentation/devicetree/bindings/mtd/qcom,nandc.yaml b/Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
index 35b4206ea918..5511389960f0 100644
--- a/Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
+++ b/Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
@@ -11,12 +11,18 @@ maintainers:
properties:
compatible:
- enum:
- - qcom,ipq806x-nand
- - qcom,ipq4019-nand
- - qcom,ipq6018-nand
- - qcom,ipq8074-nand
- - qcom,sdx55-nand
+ oneOf:
+ - items:
+ - enum:
+ - qcom,sdx75-nand
+ - const: qcom,sdx55-nand
+ - items:
+ - enum:
+ - qcom,ipq806x-nand
+ - qcom,ipq4019-nand
+ - qcom,ipq6018-nand
+ - qcom,ipq8074-nand
+ - qcom,sdx55-nand
reg:
maxItems: 1
@@ -95,6 +101,18 @@ allOf:
items:
- const: rxtx
+ - if:
+ properties:
+ compatible:
+ contains:
+ enum:
+ - qcom,sdx75-nand
+
+ then:
+ properties:
+ iommus:
+ maxItems: 1
+
- if:
properties:
compatible:
--
2.17.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v2 2/5] dt-bindings: dma: qcom,bam: Document dma-coherent property
2025-04-15 7:27 [PATCH v2 0/5] Enable QPIC BAM and QPIC NAND support for SDX75 Kaushal Kumar
2025-04-15 7:27 ` [PATCH v2 1/5] dt-bindings: mtd: qcom,nandc: Document the SDX75 NAND controller Kaushal Kumar
@ 2025-04-15 7:27 ` Kaushal Kumar
2025-04-21 18:32 ` Rob Herring (Arm)
2025-04-15 7:27 ` [PATCH v2 3/5] arm64: dts: qcom: sdx75: Add QPIC BAM support Kaushal Kumar
` (3 subsequent siblings)
5 siblings, 1 reply; 13+ messages in thread
From: Kaushal Kumar @ 2025-04-15 7:27 UTC (permalink / raw)
To: vkoul, robh, krzk+dt, conor+dt, manivannan.sadhasivam,
miquel.raynal, richard, vigneshr, andersson, konradybcio, agross
Cc: linux-arm-msm, dmaengine, devicetree, linux-kernel, linux-mtd,
Kaushal Kumar
Qualcomm BAM DMA controller has DMA-coherent support so define it in the
properties section.
Signed-off-by: Kaushal Kumar <quic_kaushalk@quicinc.com>
---
Documentation/devicetree/bindings/dma/qcom,bam-dma.yaml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Documentation/devicetree/bindings/dma/qcom,bam-dma.yaml b/Documentation/devicetree/bindings/dma/qcom,bam-dma.yaml
index 3ad0d9b1fbc5..f2f87f0f545b 100644
--- a/Documentation/devicetree/bindings/dma/qcom,bam-dma.yaml
+++ b/Documentation/devicetree/bindings/dma/qcom,bam-dma.yaml
@@ -42,6 +42,8 @@ properties:
interrupts:
maxItems: 1
+ dma-coherent: true
+
iommus:
minItems: 1
maxItems: 6
--
2.17.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v2 3/5] arm64: dts: qcom: sdx75: Add QPIC BAM support
2025-04-15 7:27 [PATCH v2 0/5] Enable QPIC BAM and QPIC NAND support for SDX75 Kaushal Kumar
2025-04-15 7:27 ` [PATCH v2 1/5] dt-bindings: mtd: qcom,nandc: Document the SDX75 NAND controller Kaushal Kumar
2025-04-15 7:27 ` [PATCH v2 2/5] dt-bindings: dma: qcom,bam: Document dma-coherent property Kaushal Kumar
@ 2025-04-15 7:27 ` Kaushal Kumar
2025-04-15 9:50 ` Konrad Dybcio
2025-04-15 7:27 ` [PATCH v2 4/5] arm64: dts: qcom: sdx75: Add QPIC NAND support Kaushal Kumar
` (2 subsequent siblings)
5 siblings, 1 reply; 13+ messages in thread
From: Kaushal Kumar @ 2025-04-15 7:27 UTC (permalink / raw)
To: vkoul, robh, krzk+dt, conor+dt, manivannan.sadhasivam,
miquel.raynal, richard, vigneshr, andersson, konradybcio, agross
Cc: linux-arm-msm, dmaengine, devicetree, linux-kernel, linux-mtd,
Kaushal Kumar
Add devicetree node to enable support for QPIC BAM DMA controller on
Qualcomm SDX75 platform.
Signed-off-by: Kaushal Kumar <quic_kaushalk@quicinc.com>
---
arch/arm64/boot/dts/qcom/sdx75.dtsi | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sdx75.dtsi b/arch/arm64/boot/dts/qcom/sdx75.dtsi
index b0a8a0fe5f39..e3a0ee661c4a 100644
--- a/arch/arm64/boot/dts/qcom/sdx75.dtsi
+++ b/arch/arm64/boot/dts/qcom/sdx75.dtsi
@@ -880,6 +880,20 @@
qcom,bcm-voters = <&apps_bcm_voter>;
};
+ qpic_bam: dma-controller@1c9c000 {
+ compatible = "qcom,bam-v1.7.0";
+ reg = <0x0 0x01c9c000 0x0 0x1c000>;
+ interrupts = <GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>;
+ clocks = <&rpmhcc RPMH_QPIC_CLK>;
+ clock-names = "bam_clk";
+ #dma-cells = <1>;
+ qcom,ee = <0>;
+ qcom,controlled-remotely;
+ iommus = <&apps_smmu 0x100 0x3>;
+ dma-coherent;
+ status = "disabled";
+ };
+
tcsr_mutex: hwlock@1f40000 {
compatible = "qcom,tcsr-mutex";
reg = <0x0 0x01f40000 0x0 0x40000>;
--
2.17.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v2 4/5] arm64: dts: qcom: sdx75: Add QPIC NAND support
2025-04-15 7:27 [PATCH v2 0/5] Enable QPIC BAM and QPIC NAND support for SDX75 Kaushal Kumar
` (2 preceding siblings ...)
2025-04-15 7:27 ` [PATCH v2 3/5] arm64: dts: qcom: sdx75: Add QPIC BAM support Kaushal Kumar
@ 2025-04-15 7:27 ` Kaushal Kumar
2025-04-15 9:53 ` Konrad Dybcio
2025-04-15 7:27 ` [PATCH v2 5/5] arm64: dts: qcom: sdx75-idp: Enable QPIC BAM & " Kaushal Kumar
2025-05-20 2:14 ` (subset) [PATCH v2 0/5] Enable QPIC BAM and QPIC NAND support for SDX75 Bjorn Andersson
5 siblings, 1 reply; 13+ messages in thread
From: Kaushal Kumar @ 2025-04-15 7:27 UTC (permalink / raw)
To: vkoul, robh, krzk+dt, conor+dt, manivannan.sadhasivam,
miquel.raynal, richard, vigneshr, andersson, konradybcio, agross
Cc: linux-arm-msm, dmaengine, devicetree, linux-kernel, linux-mtd,
Kaushal Kumar
Add devicetree node to enable support for QPIC NAND controller on Qualcomm
SDX75 platform.
Signed-off-by: Kaushal Kumar <quic_kaushalk@quicinc.com>
---
arch/arm64/boot/dts/qcom/sdx75.dtsi | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sdx75.dtsi b/arch/arm64/boot/dts/qcom/sdx75.dtsi
index e3a0ee661c4a..61ec8e7a0e21 100644
--- a/arch/arm64/boot/dts/qcom/sdx75.dtsi
+++ b/arch/arm64/boot/dts/qcom/sdx75.dtsi
@@ -894,6 +894,25 @@
status = "disabled";
};
+ qpic_nand: nand-controller@1cc8000 {
+ compatible = "qcom,sdx75-nand", "qcom,sdx55-nand";
+ reg = <0x0 0x01cc8000 0x0 0x10000>;
+ #address-cells = <1>;
+ #size-cells = <0>;
+ clocks = <&rpmhcc RPMH_QPIC_CLK>,
+ <&sleep_clk>;
+ clock-names = "core",
+ "aon";
+ dmas = <&qpic_bam 0>,
+ <&qpic_bam 1>,
+ <&qpic_bam 2>;
+ dma-names = "tx",
+ "rx",
+ "cmd";
+ iommus = <&apps_smmu 0x100 0x3>;
+ status = "disabled";
+ };
+
tcsr_mutex: hwlock@1f40000 {
compatible = "qcom,tcsr-mutex";
reg = <0x0 0x01f40000 0x0 0x40000>;
--
2.17.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v2 5/5] arm64: dts: qcom: sdx75-idp: Enable QPIC BAM & QPIC NAND support
2025-04-15 7:27 [PATCH v2 0/5] Enable QPIC BAM and QPIC NAND support for SDX75 Kaushal Kumar
` (3 preceding siblings ...)
2025-04-15 7:27 ` [PATCH v2 4/5] arm64: dts: qcom: sdx75: Add QPIC NAND support Kaushal Kumar
@ 2025-04-15 7:27 ` Kaushal Kumar
2025-04-15 9:51 ` Konrad Dybcio
2025-05-20 2:14 ` (subset) [PATCH v2 0/5] Enable QPIC BAM and QPIC NAND support for SDX75 Bjorn Andersson
5 siblings, 1 reply; 13+ messages in thread
From: Kaushal Kumar @ 2025-04-15 7:27 UTC (permalink / raw)
To: vkoul, robh, krzk+dt, conor+dt, manivannan.sadhasivam,
miquel.raynal, richard, vigneshr, andersson, konradybcio, agross
Cc: linux-arm-msm, dmaengine, devicetree, linux-kernel, linux-mtd,
Kaushal Kumar
Enable QPIC BAM and QPIC NAND devicetree nodes for Qualcomm SDX75-IDP
board.
Signed-off-by: Kaushal Kumar <quic_kaushalk@quicinc.com>
---
arch/arm64/boot/dts/qcom/sdx75-idp.dts | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sdx75-idp.dts b/arch/arm64/boot/dts/qcom/sdx75-idp.dts
index f1bbe7ab01ab..06cacec3461f 100644
--- a/arch/arm64/boot/dts/qcom/sdx75-idp.dts
+++ b/arch/arm64/boot/dts/qcom/sdx75-idp.dts
@@ -278,6 +278,24 @@
vdd3-supply = <&vreg_l10b_3p08>;
};
+&qpic_bam {
+ status = "okay";
+};
+
+&qpic_nand {
+ status = "okay";
+
+ nand@0 {
+ reg = <0>;
+
+ nand-ecc-strength = <8>;
+ nand-ecc-step-size = <512>;
+ nand-bus-width = <8>;
+ /* efs2 partition is secured */
+ secure-regions = /bits/ 64 <0x680000 0xb00000>;
+ };
+};
+
&qupv3_id_0 {
status = "okay";
};
--
2.17.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH v2 3/5] arm64: dts: qcom: sdx75: Add QPIC BAM support
2025-04-15 7:27 ` [PATCH v2 3/5] arm64: dts: qcom: sdx75: Add QPIC BAM support Kaushal Kumar
@ 2025-04-15 9:50 ` Konrad Dybcio
2025-04-22 8:32 ` Kaushal Kumar
0 siblings, 1 reply; 13+ messages in thread
From: Konrad Dybcio @ 2025-04-15 9:50 UTC (permalink / raw)
To: Kaushal Kumar, vkoul, robh, krzk+dt, conor+dt,
manivannan.sadhasivam, miquel.raynal, richard, vigneshr,
andersson, konradybcio, agross
Cc: linux-arm-msm, dmaengine, devicetree, linux-kernel, linux-mtd
On 4/15/25 9:27 AM, Kaushal Kumar wrote:
> Add devicetree node to enable support for QPIC BAM DMA controller on
> Qualcomm SDX75 platform.
>
> Signed-off-by: Kaushal Kumar <quic_kaushalk@quicinc.com>
> ---
> arch/arm64/boot/dts/qcom/sdx75.dtsi | 14 ++++++++++++++
> 1 file changed, 14 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/qcom/sdx75.dtsi b/arch/arm64/boot/dts/qcom/sdx75.dtsi
> index b0a8a0fe5f39..e3a0ee661c4a 100644
> --- a/arch/arm64/boot/dts/qcom/sdx75.dtsi
> +++ b/arch/arm64/boot/dts/qcom/sdx75.dtsi
> @@ -880,6 +880,20 @@
> qcom,bcm-voters = <&apps_bcm_voter>;
> };
>
> + qpic_bam: dma-controller@1c9c000 {
> + compatible = "qcom,bam-v1.7.0";
v1.7.4, looks good otherwise
Konrad
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 5/5] arm64: dts: qcom: sdx75-idp: Enable QPIC BAM & QPIC NAND support
2025-04-15 7:27 ` [PATCH v2 5/5] arm64: dts: qcom: sdx75-idp: Enable QPIC BAM & " Kaushal Kumar
@ 2025-04-15 9:51 ` Konrad Dybcio
0 siblings, 0 replies; 13+ messages in thread
From: Konrad Dybcio @ 2025-04-15 9:51 UTC (permalink / raw)
To: Kaushal Kumar, vkoul, robh, krzk+dt, conor+dt,
manivannan.sadhasivam, miquel.raynal, richard, vigneshr,
andersson, konradybcio, agross
Cc: linux-arm-msm, dmaengine, devicetree, linux-kernel, linux-mtd
On 4/15/25 9:27 AM, Kaushal Kumar wrote:
> Enable QPIC BAM and QPIC NAND devicetree nodes for Qualcomm SDX75-IDP
> board.
>
> Signed-off-by: Kaushal Kumar <quic_kaushalk@quicinc.com>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Konrad
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 4/5] arm64: dts: qcom: sdx75: Add QPIC NAND support
2025-04-15 7:27 ` [PATCH v2 4/5] arm64: dts: qcom: sdx75: Add QPIC NAND support Kaushal Kumar
@ 2025-04-15 9:53 ` Konrad Dybcio
0 siblings, 0 replies; 13+ messages in thread
From: Konrad Dybcio @ 2025-04-15 9:53 UTC (permalink / raw)
To: Kaushal Kumar, vkoul, robh, krzk+dt, conor+dt,
manivannan.sadhasivam, miquel.raynal, richard, vigneshr,
andersson, konradybcio, agross
Cc: linux-arm-msm, dmaengine, devicetree, linux-kernel, linux-mtd
On 4/15/25 9:27 AM, Kaushal Kumar wrote:
> Add devicetree node to enable support for QPIC NAND controller on Qualcomm
> SDX75 platform.
>
> Signed-off-by: Kaushal Kumar <quic_kaushalk@quicinc.com>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Konrad
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 1/5] dt-bindings: mtd: qcom,nandc: Document the SDX75 NAND controller
2025-04-15 7:27 ` [PATCH v2 1/5] dt-bindings: mtd: qcom,nandc: Document the SDX75 NAND controller Kaushal Kumar
@ 2025-04-21 18:31 ` Rob Herring (Arm)
0 siblings, 0 replies; 13+ messages in thread
From: Rob Herring (Arm) @ 2025-04-21 18:31 UTC (permalink / raw)
To: Kaushal Kumar
Cc: vkoul, manivannan.sadhasivam, krzk+dt, konradybcio, linux-arm-msm,
devicetree, agross, dmaengine, andersson, conor+dt, vigneshr,
richard, linux-kernel, linux-mtd, miquel.raynal
On Tue, 15 Apr 2025 12:57:52 +0530, Kaushal Kumar wrote:
> Add new compatible for the QPIC NAND controller v2.1.1 used for SDX75 SoC.
>
> SDX75 NAND controller has iommu support so define it in the properties
> section.
>
> Signed-off-by: Kaushal Kumar <quic_kaushalk@quicinc.com>
> ---
> .../devicetree/bindings/mtd/qcom,nandc.yaml | 30 +++++++++++++++----
> 1 file changed, 24 insertions(+), 6 deletions(-)
>
Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 2/5] dt-bindings: dma: qcom,bam: Document dma-coherent property
2025-04-15 7:27 ` [PATCH v2 2/5] dt-bindings: dma: qcom,bam: Document dma-coherent property Kaushal Kumar
@ 2025-04-21 18:32 ` Rob Herring (Arm)
0 siblings, 0 replies; 13+ messages in thread
From: Rob Herring (Arm) @ 2025-04-21 18:32 UTC (permalink / raw)
To: Kaushal Kumar
Cc: manivannan.sadhasivam, krzk+dt, linux-mtd, andersson,
miquel.raynal, agross, richard, vigneshr, vkoul, konradybcio,
devicetree, dmaengine, conor+dt, linux-arm-msm, linux-kernel
On Tue, 15 Apr 2025 12:57:53 +0530, Kaushal Kumar wrote:
> Qualcomm BAM DMA controller has DMA-coherent support so define it in the
> properties section.
>
> Signed-off-by: Kaushal Kumar <quic_kaushalk@quicinc.com>
> ---
> Documentation/devicetree/bindings/dma/qcom,bam-dma.yaml | 2 ++
> 1 file changed, 2 insertions(+)
>
Acked-by: Rob Herring (Arm) <robh@kernel.org>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 3/5] arm64: dts: qcom: sdx75: Add QPIC BAM support
2025-04-15 9:50 ` Konrad Dybcio
@ 2025-04-22 8:32 ` Kaushal Kumar
0 siblings, 0 replies; 13+ messages in thread
From: Kaushal Kumar @ 2025-04-22 8:32 UTC (permalink / raw)
To: Konrad Dybcio, vkoul, robh, krzk+dt, conor+dt,
manivannan.sadhasivam, miquel.raynal, richard, vigneshr,
andersson, konradybcio, agross
Cc: linux-arm-msm, dmaengine, devicetree, linux-kernel, linux-mtd
On 4/15/2025 3:20 PM, Konrad Dybcio wrote:
> On 4/15/25 9:27 AM, Kaushal Kumar wrote:
>> Add devicetree node to enable support for QPIC BAM DMA controller on
>> Qualcomm SDX75 platform.
>>
>> Signed-off-by: Kaushal Kumar <quic_kaushalk@quicinc.com>
>> ---
>> arch/arm64/boot/dts/qcom/sdx75.dtsi | 14 ++++++++++++++
>> 1 file changed, 14 insertions(+)
>>
>> diff --git a/arch/arm64/boot/dts/qcom/sdx75.dtsi b/arch/arm64/boot/dts/qcom/sdx75.dtsi
>> index b0a8a0fe5f39..e3a0ee661c4a 100644
>> --- a/arch/arm64/boot/dts/qcom/sdx75.dtsi
>> +++ b/arch/arm64/boot/dts/qcom/sdx75.dtsi
>> @@ -880,6 +880,20 @@
>> qcom,bcm-voters = <&apps_bcm_voter>;
>> };
>>
>> + qpic_bam: dma-controller@1c9c000 {
>> + compatible = "qcom,bam-v1.7.0";
> v1.7.4, looks good otherwise
Ack. v1.7.4 is backward compatible with v1.7.0 supported by the driver.
I will update this in next patch version.
> Konrad
- Kaushal
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: (subset) [PATCH v2 0/5] Enable QPIC BAM and QPIC NAND support for SDX75
2025-04-15 7:27 [PATCH v2 0/5] Enable QPIC BAM and QPIC NAND support for SDX75 Kaushal Kumar
` (4 preceding siblings ...)
2025-04-15 7:27 ` [PATCH v2 5/5] arm64: dts: qcom: sdx75-idp: Enable QPIC BAM & " Kaushal Kumar
@ 2025-05-20 2:14 ` Bjorn Andersson
5 siblings, 0 replies; 13+ messages in thread
From: Bjorn Andersson @ 2025-05-20 2:14 UTC (permalink / raw)
To: vkoul, robh, krzk+dt, conor+dt, manivannan.sadhasivam,
miquel.raynal, richard, vigneshr, konradybcio, agross,
Kaushal Kumar
Cc: linux-arm-msm, dmaengine, devicetree, linux-kernel, linux-mtd
On Tue, 15 Apr 2025 12:57:51 +0530, Kaushal Kumar wrote:
> This series adds and enables devicetree nodes for QPIC BAM and QPIC NAND
> for Qualcomm SDX75 platform.
>
> This patch series depends on the below patches:
> https://lore.kernel.org/linux-spi/20250310120906.1577292-5-quic_mdalam@quicinc.com/T/
>
Applied, thanks!
[3/5] arm64: dts: qcom: sdx75: Add QPIC BAM support
commit: 5cf0ebd4800dc5b67a332c9f56d20882c41d6099
[4/5] arm64: dts: qcom: sdx75: Add QPIC NAND support
commit: c25dcb4d42a9506d5270179bb32cf538a1a28423
[5/5] arm64: dts: qcom: sdx75-idp: Enable QPIC BAM & QPIC NAND support
commit: d838ac6903eede0c2840bebd8788afa95a5aa0fb
Best regards,
--
Bjorn Andersson <andersson@kernel.org>
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-05-20 2:15 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-15 7:27 [PATCH v2 0/5] Enable QPIC BAM and QPIC NAND support for SDX75 Kaushal Kumar
2025-04-15 7:27 ` [PATCH v2 1/5] dt-bindings: mtd: qcom,nandc: Document the SDX75 NAND controller Kaushal Kumar
2025-04-21 18:31 ` Rob Herring (Arm)
2025-04-15 7:27 ` [PATCH v2 2/5] dt-bindings: dma: qcom,bam: Document dma-coherent property Kaushal Kumar
2025-04-21 18:32 ` Rob Herring (Arm)
2025-04-15 7:27 ` [PATCH v2 3/5] arm64: dts: qcom: sdx75: Add QPIC BAM support Kaushal Kumar
2025-04-15 9:50 ` Konrad Dybcio
2025-04-22 8:32 ` Kaushal Kumar
2025-04-15 7:27 ` [PATCH v2 4/5] arm64: dts: qcom: sdx75: Add QPIC NAND support Kaushal Kumar
2025-04-15 9:53 ` Konrad Dybcio
2025-04-15 7:27 ` [PATCH v2 5/5] arm64: dts: qcom: sdx75-idp: Enable QPIC BAM & " Kaushal Kumar
2025-04-15 9:51 ` Konrad Dybcio
2025-05-20 2:14 ` (subset) [PATCH v2 0/5] Enable QPIC BAM and QPIC NAND support for SDX75 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).