]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
mtd: rawnand: arasan: Use the right DMA mask
authorMiquel Raynal <miquel.raynal@bootlin.com>
Thu, 27 May 2021 08:45:48 +0000 (10:45 +0200)
committerMiquel Raynal <miquel.raynal@bootlin.com>
Fri, 18 Jun 2021 07:44:57 +0000 (09:44 +0200)
Xilinx ZynqMP SoC and the Arasan controller support 64-bit DMA
addressing. Define the right mask otherwise the default is 32
and some accesses may overflow the default mask.

Reported-by: Jorge Courett <jorge.courett@gmail.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Tested-by: Jorge Courett <jorge.courett@gmail.com>
Link: https://lore.kernel.org/linux-mtd/20210527084548.208429-1-miquel.raynal@bootlin.com
drivers/mtd/nand/raw/arasan-nand-controller.c

index 97e5a336a760bb1e49f88ec2d02445e3a1f1cc17..f9b5b140720b3bc7488768f6c81d8f3d917856e7 100644 (file)
@@ -1398,6 +1398,10 @@ static int anfc_probe(struct platform_device *pdev)
        if (ret)
                goto disable_controller_clk;
 
+       ret = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
+       if (ret)
+               goto disable_bus_clk;
+
        ret = anfc_parse_cs(nfc);
        if (ret)
                goto disable_bus_clk;