mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2 0/2] Add support for ADMA
@ 2024-08-08 10:00 Abin Joseph
  2024-08-08 10:00 ` [PATCH v2 1/2] dt-bindings: dmaengine: zynqmp_dma: Add a new compatible string Abin Joseph
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Abin Joseph @ 2024-08-08 10:00 UTC (permalink / raw)
  To: vkoul, michal.simek, robh, conor+dt, krzk+dt, u.kleine-koenig,
	radhey.shyam.pandey, harini.katakam
  Cc: git, abin.joseph, dmaengine, devicetree, linux-arm-kernel, linux-kernel

Add support for Versal Gen 2 DMA IP by adding a compatible string and
separate Versal Gen 2 DMA IP register offset.

---

Changes in v2:

1/2:
- Remove example binding documentation.
- Rearrange the order of compatible.

2/2:
- Use lower case for hexa decimal values.
- Update the logic to use of_device_get_match_data
instead of of_device_is_compatible.


Changes in v1:
https://lore.kernel.org/linux-arm-kernel/20240726062639.2609974-1-abin.joseph@amd.com/

---

Abin Joseph (2):
  dt-bindings: dmaengine: zynqmp_dma: Add a new compatible string
  dmaengine: zynqmp_dma: Add support for AMD Versal Gen 2 DMA IP

 .../dma/xilinx/xlnx,zynqmp-dma-1.0.yaml       |  4 ++-
 drivers/dma/xilinx/zynqmp_dma.c               | 27 ++++++++++++++++---
 2 files changed, 26 insertions(+), 5 deletions(-)

-- 
2.34.1


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

* [PATCH v2 1/2] dt-bindings: dmaengine: zynqmp_dma: Add a new compatible string
  2024-08-08 10:00 [PATCH v2 0/2] Add support for ADMA Abin Joseph
@ 2024-08-08 10:00 ` Abin Joseph
  2024-08-08 10:12   ` Krzysztof Kozlowski
  2024-08-08 10:00 ` [PATCH v2 2/2] dmaengine: zynqmp_dma: Add support for AMD Versal Gen 2 DMA IP Abin Joseph
  2024-08-29 17:30 ` [PATCH v2 0/2] Add support for ADMA Vinod Koul
  2 siblings, 1 reply; 6+ messages in thread
From: Abin Joseph @ 2024-08-08 10:00 UTC (permalink / raw)
  To: vkoul, michal.simek, robh, conor+dt, krzk+dt, u.kleine-koenig,
	radhey.shyam.pandey, harini.katakam
  Cc: git, abin.joseph, dmaengine, devicetree, linux-arm-kernel, linux-kernel

Add compatible string "amd,versal2-dma-1.0" to support AMD Versal Gen 2
platform.

AMD Versal Gen 2 has 8 LPD DMA IPs in PS that can be used as general
purpose DMAs which is designed to support memory to memory and memory to
IO buffer transfer. Versal Gen 2 DMA IP has different interrupt register
offset.

Signed-off-by: Abin Joseph <abin.joseph@amd.com>
---

Changes in v2:
- Rearrange the order of compatible.
- Remove example binding documentation.

---
 .../devicetree/bindings/dma/xilinx/xlnx,zynqmp-dma-1.0.yaml   | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dma-1.0.yaml b/Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dma-1.0.yaml
index 769ce23aaac2..ac3198953b8e 100644
--- a/Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dma-1.0.yaml
+++ b/Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dma-1.0.yaml
@@ -24,7 +24,9 @@ properties:
     const: 1
 
   compatible:
-    const: xlnx,zynqmp-dma-1.0
+    enum:
+      - amd,versal2-dma-1.0
+      - xlnx,zynqmp-dma-1.0
 
   reg:
     description: memory map for gdma/adma module access
-- 
2.34.1


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

* [PATCH v2 2/2] dmaengine: zynqmp_dma: Add support for AMD Versal Gen 2 DMA IP
  2024-08-08 10:00 [PATCH v2 0/2] Add support for ADMA Abin Joseph
  2024-08-08 10:00 ` [PATCH v2 1/2] dt-bindings: dmaengine: zynqmp_dma: Add a new compatible string Abin Joseph
@ 2024-08-08 10:00 ` Abin Joseph
  2024-08-09 12:55   ` Pandey, Radhey Shyam
  2024-08-29 17:30 ` [PATCH v2 0/2] Add support for ADMA Vinod Koul
  2 siblings, 1 reply; 6+ messages in thread
From: Abin Joseph @ 2024-08-08 10:00 UTC (permalink / raw)
  To: vkoul, michal.simek, robh, conor+dt, krzk+dt, u.kleine-koenig,
	radhey.shyam.pandey, harini.katakam
  Cc: git, abin.joseph, dmaengine, devicetree, linux-arm-kernel, linux-kernel

ZynqMP DMA IP and AMD Versal Gen 2 DMA IP are similar but have different
interrupt register offset. Create a dedicated compatible string to
support Versal Gen 2 DMA IP with Irq register offset for interrupt
Enable/Disable/Status/Mask functionality.

Signed-off-by: Abin Joseph <abin.joseph@amd.com>
---

Changes in v2:
- Update the logic to use of_device_get_match_data
instead of of_device_is_compatible.
- Use lower case hexa decimal value for macros.

---
 drivers/dma/xilinx/zynqmp_dma.c | 27 +++++++++++++++++++++++----
 1 file changed, 23 insertions(+), 4 deletions(-)

diff --git a/drivers/dma/xilinx/zynqmp_dma.c b/drivers/dma/xilinx/zynqmp_dma.c
index f31631bef961..9ae46f1198fe 100644
--- a/drivers/dma/xilinx/zynqmp_dma.c
+++ b/drivers/dma/xilinx/zynqmp_dma.c
@@ -22,10 +22,10 @@
 #include "../dmaengine.h"
 
 /* Register Offsets */
-#define ZYNQMP_DMA_ISR			0x100
-#define ZYNQMP_DMA_IMR			0x104
-#define ZYNQMP_DMA_IER			0x108
-#define ZYNQMP_DMA_IDS			0x10C
+#define ZYNQMP_DMA_ISR			(chan->irq_offset + 0x100)
+#define ZYNQMP_DMA_IMR			(chan->irq_offset + 0x104)
+#define ZYNQMP_DMA_IER			(chan->irq_offset + 0x108)
+#define ZYNQMP_DMA_IDS			(chan->irq_offset + 0x10c)
 #define ZYNQMP_DMA_CTRL0		0x110
 #define ZYNQMP_DMA_CTRL1		0x114
 #define ZYNQMP_DMA_DATA_ATTR		0x120
@@ -145,6 +145,9 @@
 #define tx_to_desc(tx)		container_of(tx, struct zynqmp_dma_desc_sw, \
 					     async_tx)
 
+/* IRQ Register offset for Versal Gen 2 */
+#define IRQ_REG_OFFSET			0x308
+
 /**
  * struct zynqmp_dma_desc_ll - Hw linked list descriptor
  * @addr: Buffer address
@@ -211,6 +214,7 @@ struct zynqmp_dma_desc_sw {
  * @bus_width: Bus width
  * @src_burst_len: Source burst length
  * @dst_burst_len: Dest burst length
+ * @irq_offset: Irq register offset
  */
 struct zynqmp_dma_chan {
 	struct zynqmp_dma_device *zdev;
@@ -235,6 +239,7 @@ struct zynqmp_dma_chan {
 	u32 bus_width;
 	u32 src_burst_len;
 	u32 dst_burst_len;
+	u32 irq_offset;
 };
 
 /**
@@ -253,6 +258,14 @@ struct zynqmp_dma_device {
 	struct clk *clk_apb;
 };
 
+struct zynqmp_dma_config {
+	u32 offset;
+};
+
+static const struct zynqmp_dma_config versal2_dma_config = {
+	.offset = IRQ_REG_OFFSET,
+};
+
 static inline void zynqmp_dma_writeq(struct zynqmp_dma_chan *chan, u32 reg,
 				     u64 value)
 {
@@ -892,6 +905,7 @@ static int zynqmp_dma_chan_probe(struct zynqmp_dma_device *zdev,
 {
 	struct zynqmp_dma_chan *chan;
 	struct device_node *node = pdev->dev.of_node;
+	const struct zynqmp_dma_config *match_data;
 	int err;
 
 	chan = devm_kzalloc(zdev->dev, sizeof(*chan), GFP_KERNEL);
@@ -919,6 +933,10 @@ static int zynqmp_dma_chan_probe(struct zynqmp_dma_device *zdev,
 		return -EINVAL;
 	}
 
+	match_data = of_device_get_match_data(&pdev->dev);
+	if (match_data)
+		chan->irq_offset = match_data->offset;
+
 	chan->is_dmacoherent =  of_property_read_bool(node, "dma-coherent");
 	zdev->chan = chan;
 	tasklet_setup(&chan->tasklet, zynqmp_dma_do_tasklet);
@@ -1161,6 +1179,7 @@ static void zynqmp_dma_remove(struct platform_device *pdev)
 }
 
 static const struct of_device_id zynqmp_dma_of_match[] = {
+	{ .compatible = "amd,versal2-dma-1.0", .data = &versal2_dma_config },
 	{ .compatible = "xlnx,zynqmp-dma-1.0", },
 	{}
 };
-- 
2.34.1


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

* Re: [PATCH v2 1/2] dt-bindings: dmaengine: zynqmp_dma: Add a new compatible string
  2024-08-08 10:00 ` [PATCH v2 1/2] dt-bindings: dmaengine: zynqmp_dma: Add a new compatible string Abin Joseph
@ 2024-08-08 10:12   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2024-08-08 10:12 UTC (permalink / raw)
  To: Abin Joseph, vkoul, michal.simek, robh, conor+dt, krzk+dt,
	u.kleine-koenig, radhey.shyam.pandey, harini.katakam
  Cc: git, dmaengine, devicetree, linux-arm-kernel, linux-kernel

On 08/08/2024 12:00, Abin Joseph wrote:
> Add compatible string "amd,versal2-dma-1.0" to support AMD Versal Gen 2
> platform.
> 
> AMD Versal Gen 2 has 8 LPD DMA IPs in PS that can be used as general
> purpose DMAs which is designed to support memory to memory and memory to
> IO buffer transfer. Versal Gen 2 DMA IP has different interrupt register
> offset.
> 
> Signed-off-by: Abin Joseph <abin.joseph@amd.com>
> ---

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

Best regards,
Krzysztof


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

* RE: [PATCH v2 2/2] dmaengine: zynqmp_dma: Add support for AMD Versal Gen 2 DMA IP
  2024-08-08 10:00 ` [PATCH v2 2/2] dmaengine: zynqmp_dma: Add support for AMD Versal Gen 2 DMA IP Abin Joseph
@ 2024-08-09 12:55   ` Pandey, Radhey Shyam
  0 siblings, 0 replies; 6+ messages in thread
From: Pandey, Radhey Shyam @ 2024-08-09 12:55 UTC (permalink / raw)
  To: Joseph, Abin, vkoul, Simek, Michal, robh, conor+dt, krzk+dt,
	u.kleine-koenig, Katakam, Harini
  Cc: git (AMD-Xilinx),
	Joseph, Abin, dmaengine, devicetree, linux-arm-kernel,
	linux-kernel

> -----Original Message-----
> From: Abin Joseph <abin.joseph@amd.com>
> Sent: Thursday, August 8, 2024 3:30 PM
> To: vkoul@kernel.org; Simek, Michal <michal.simek@amd.com>;
> robh@kernel.org; conor+dt@kernel.org; krzk+dt@kernel.org; u.kleine-
> koenig@pengutronix.de; Pandey, Radhey Shyam
> <radhey.shyam.pandey@amd.com>; Katakam, Harini
> <harini.katakam@amd.com>
> Cc: git (AMD-Xilinx) <git@amd.com>; Joseph, Abin
> <Abin.Joseph@amd.com>; dmaengine@vger.kernel.org;
> devicetree@vger.kernel.org; linux-arm-kernel@lists.infradead.org; linux-
> kernel@vger.kernel.org
> Subject: [PATCH v2 2/2] dmaengine: zynqmp_dma: Add support for AMD
> Versal Gen 2 DMA IP
> 
> ZynqMP DMA IP and AMD Versal Gen 2 DMA IP are similar but have different
> interrupt register offset. Create a dedicated compatible string to
> support Versal Gen 2 DMA IP with Irq register offset for interrupt
> Enable/Disable/Status/Mask functionality.
> 
> Signed-off-by: Abin Joseph <abin.joseph@amd.com>

Reviewed-by: Radhey Shyam Pandey <radhey.shyam.pandey@amd.com>
Thanks!
> ---
> 
> Changes in v2:
> - Update the logic to use of_device_get_match_data
> instead of of_device_is_compatible.
> - Use lower case hexa decimal value for macros.
> 
> ---
>  drivers/dma/xilinx/zynqmp_dma.c | 27 +++++++++++++++++++++++----
>  1 file changed, 23 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/dma/xilinx/zynqmp_dma.c
> b/drivers/dma/xilinx/zynqmp_dma.c
> index f31631bef961..9ae46f1198fe 100644
> --- a/drivers/dma/xilinx/zynqmp_dma.c
> +++ b/drivers/dma/xilinx/zynqmp_dma.c
> @@ -22,10 +22,10 @@
>  #include "../dmaengine.h"
> 
>  /* Register Offsets */
> -#define ZYNQMP_DMA_ISR			0x100
> -#define ZYNQMP_DMA_IMR			0x104
> -#define ZYNQMP_DMA_IER			0x108
> -#define ZYNQMP_DMA_IDS			0x10C
> +#define ZYNQMP_DMA_ISR			(chan->irq_offset + 0x100)
> +#define ZYNQMP_DMA_IMR			(chan->irq_offset + 0x104)
> +#define ZYNQMP_DMA_IER			(chan->irq_offset + 0x108)
> +#define ZYNQMP_DMA_IDS			(chan->irq_offset + 0x10c)
>  #define ZYNQMP_DMA_CTRL0		0x110
>  #define ZYNQMP_DMA_CTRL1		0x114
>  #define ZYNQMP_DMA_DATA_ATTR		0x120
> @@ -145,6 +145,9 @@
>  #define tx_to_desc(tx)		container_of(tx, struct
> zynqmp_dma_desc_sw, \
>  					     async_tx)
> 
> +/* IRQ Register offset for Versal Gen 2 */
> +#define IRQ_REG_OFFSET			0x308
> +
>  /**
>   * struct zynqmp_dma_desc_ll - Hw linked list descriptor
>   * @addr: Buffer address
> @@ -211,6 +214,7 @@ struct zynqmp_dma_desc_sw {
>   * @bus_width: Bus width
>   * @src_burst_len: Source burst length
>   * @dst_burst_len: Dest burst length
> + * @irq_offset: Irq register offset
>   */
>  struct zynqmp_dma_chan {
>  	struct zynqmp_dma_device *zdev;
> @@ -235,6 +239,7 @@ struct zynqmp_dma_chan {
>  	u32 bus_width;
>  	u32 src_burst_len;
>  	u32 dst_burst_len;
> +	u32 irq_offset;
>  };
> 
>  /**
> @@ -253,6 +258,14 @@ struct zynqmp_dma_device {
>  	struct clk *clk_apb;
>  };
> 
> +struct zynqmp_dma_config {
> +	u32 offset;
> +};
> +
> +static const struct zynqmp_dma_config versal2_dma_config = {
> +	.offset = IRQ_REG_OFFSET,
> +};
> +
>  static inline void zynqmp_dma_writeq(struct zynqmp_dma_chan *chan, u32
> reg,
>  				     u64 value)
>  {
> @@ -892,6 +905,7 @@ static int zynqmp_dma_chan_probe(struct
> zynqmp_dma_device *zdev,
>  {
>  	struct zynqmp_dma_chan *chan;
>  	struct device_node *node = pdev->dev.of_node;
> +	const struct zynqmp_dma_config *match_data;
>  	int err;
> 
>  	chan = devm_kzalloc(zdev->dev, sizeof(*chan), GFP_KERNEL);
> @@ -919,6 +933,10 @@ static int zynqmp_dma_chan_probe(struct
> zynqmp_dma_device *zdev,
>  		return -EINVAL;
>  	}
> 
> +	match_data = of_device_get_match_data(&pdev->dev);
> +	if (match_data)
> +		chan->irq_offset = match_data->offset;
> +
>  	chan->is_dmacoherent =  of_property_read_bool(node, "dma-
> coherent");
>  	zdev->chan = chan;
>  	tasklet_setup(&chan->tasklet, zynqmp_dma_do_tasklet);
> @@ -1161,6 +1179,7 @@ static void zynqmp_dma_remove(struct
> platform_device *pdev)
>  }
> 
>  static const struct of_device_id zynqmp_dma_of_match[] = {
> +	{ .compatible = "amd,versal2-dma-1.0", .data = &versal2_dma_config
> },
>  	{ .compatible = "xlnx,zynqmp-dma-1.0", },
>  	{}
>  };
> --
> 2.34.1


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

* Re: [PATCH v2 0/2] Add support for ADMA
  2024-08-08 10:00 [PATCH v2 0/2] Add support for ADMA Abin Joseph
  2024-08-08 10:00 ` [PATCH v2 1/2] dt-bindings: dmaengine: zynqmp_dma: Add a new compatible string Abin Joseph
  2024-08-08 10:00 ` [PATCH v2 2/2] dmaengine: zynqmp_dma: Add support for AMD Versal Gen 2 DMA IP Abin Joseph
@ 2024-08-29 17:30 ` Vinod Koul
  2 siblings, 0 replies; 6+ messages in thread
From: Vinod Koul @ 2024-08-29 17:30 UTC (permalink / raw)
  To: michal.simek, robh, conor+dt, krzk+dt, u.kleine-koenig,
	radhey.shyam.pandey, harini.katakam, Abin Joseph
  Cc: git, dmaengine, devicetree, linux-arm-kernel, linux-kernel


On Thu, 08 Aug 2024 15:30:22 +0530, Abin Joseph wrote:
> Add support for Versal Gen 2 DMA IP by adding a compatible string and
> separate Versal Gen 2 DMA IP register offset.
> 

Applied, thanks!

[1/2] dt-bindings: dmaengine: zynqmp_dma: Add a new compatible string
      commit: 36545c6a68b858671cfeb71df682e8cc58b082da
[2/2] dmaengine: zynqmp_dma: Add support for AMD Versal Gen 2 DMA IP
      commit: 13113f750a4ae0b1770fa25dc94852977ebfb942

Best regards,
-- 
~Vinod



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

end of thread, other threads:[~2024-08-29 17:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-08 10:00 [PATCH v2 0/2] Add support for ADMA Abin Joseph
2024-08-08 10:00 ` [PATCH v2 1/2] dt-bindings: dmaengine: zynqmp_dma: Add a new compatible string Abin Joseph
2024-08-08 10:12   ` Krzysztof Kozlowski
2024-08-08 10:00 ` [PATCH v2 2/2] dmaengine: zynqmp_dma: Add support for AMD Versal Gen 2 DMA IP Abin Joseph
2024-08-09 12:55   ` Pandey, Radhey Shyam
2024-08-29 17:30 ` [PATCH v2 0/2] Add support for ADMA Vinod Koul

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

all inboxes | Powered by JetHome®