]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
of: address: Preserve the flags portion on 1:1 dma-ranges mapping
authorAndrea della Porta <andrea.porta@suse.com>
Sun, 24 Nov 2024 10:05:37 +0000 (11:05 +0100)
committerRob Herring (Arm) <robh@kernel.org>
Wed, 27 Nov 2024 15:18:04 +0000 (09:18 -0600)
A missing or empty dma-ranges in a DT node implies a 1:1 mapping for dma
translations. In this specific case, the current behaviour is to zero out
the entire specifier so that the translation could be carried on as an
offset from zero. This includes address specifier that has flags (e.g.
PCI ranges).

Once the flags portion has been zeroed, the translation chain is broken
since the mapping functions will check the upcoming address specifier
against mismatching flags, always failing the 1:1 mapping and its entire
purpose of always succeeding.

Set to zero only the address portion while passing the flags through.

Fixes: dbbdee94734b ("of/address: Merge all of the bus translation code")
Cc: stable@vger.kernel.org
Signed-off-by: Andrea della Porta <andrea.porta@suse.com>
Tested-by: Herve Codina <herve.codina@bootlin.com>
Link: https://lore.kernel.org/r/e51ae57874e58a9b349c35e2e877425ebc075d7a.1732441813.git.andrea.porta@suse.com
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
drivers/of/address.c

index c5b925ac469f16b8ae4b8275b60210a2d583ff83..5b7ee3ed5296b648c6643871d7c86772010c7490 100644 (file)
@@ -459,7 +459,8 @@ static int of_translate_one(const struct device_node *parent, const struct of_bu
        }
        if (ranges == NULL || rlen == 0) {
                offset = of_read_number(addr, na);
-               memset(addr, 0, pna * 4);
+               /* set address to zero, pass flags through */
+               memset(addr + pbus->flag_cells, 0, (pna - pbus->flag_cells) * 4);
                pr_debug("empty ranges; 1:1 translation\n");
                goto finish;
        }