linux-fpga.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fpga: versal: Add support for 44-bit DMA operations
@ 2023-10-03  7:14 Nava kishore Manne
  2023-10-06  2:54 ` Pandey, Radhey Shyam
  2023-10-07  7:16 ` Xu Yilun
  0 siblings, 2 replies; 5+ messages in thread
From: Nava kishore Manne @ 2023-10-03  7:14 UTC (permalink / raw)
  To: mdf, hao.wu, yilun.xu, trix, linux-fpga, linux-kernel; +Cc: Radhey Shyam Pandey

The existing implementation support only 32-bit DMA operation.
So, it fails to load the bitstream for the high DDR designs(Beyond 4GB).
To fix this issue update the DMA mask handling logic to support 44-bit
DMA operations.

Signed-off-by: Nava kishore Manne <nava.kishore.manne@amd.com>
Reviewed-by: Radhey Shyam Pandey <radhey.shyam.pandey@amd.com>
---
 drivers/fpga/versal-fpga.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/fpga/versal-fpga.c b/drivers/fpga/versal-fpga.c
index e1601b3a345b..3710e8f01be2 100644
--- a/drivers/fpga/versal-fpga.c
+++ b/drivers/fpga/versal-fpga.c
@@ -48,7 +48,7 @@ static int versal_fpga_probe(struct platform_device *pdev)
 	struct fpga_manager *mgr;
 	int ret;
 
-	ret = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
+	ret = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(44));
 	if (ret < 0) {
 		dev_err(dev, "no usable DMA configuration\n");
 		return ret;
-- 
2.25.1


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

end of thread, other threads:[~2023-10-12  5:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-03  7:14 [PATCH] fpga: versal: Add support for 44-bit DMA operations Nava kishore Manne
2023-10-06  2:54 ` Pandey, Radhey Shyam
2023-10-07  7:16 ` Xu Yilun
2023-10-10  5:37   ` Manne, Nava kishore
2023-10-12  5:09     ` Xu Yilun

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).