]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
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)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 Jan 2025 16:15:56 +0000 (17:15 +0100)
commitb2cec0d8f676dd1780983f696acfc38672064ac1
treecc8544ffa01a31a1b7dc01ecba8d78c245a515ae
parent6a7832e332d9293a3380ec8f75e74c64209a2531
of: address: Preserve the flags portion on 1:1 dma-ranges mapping

[ Upstream commit 7f05e20b989ac33c9c0f8c2028ec0a566493548f ]

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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/of/address.c