From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A1FDB5473E for ; Mon, 23 Dec 2024 12:20:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734956452; cv=none; b=YgXyeRpbC4QtJmY8MWhbo13B8XKEHEvGhttdTdpKFCguSlN8onbeJkEg0M/ThJpvlibmRWzrA4WxexgCH6/PCbiVUs/gxLoKrPLOWyojfYEjg8jr4ky0aLpoIai8De6/W/SCrRTWIq/+vDxWL1xmkLtBlv6d0BeBJksDW/ELzW8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734956452; c=relaxed/simple; bh=l9GEJre9b9kqLJeTCcdfDBzXOQhhVLcI6jSEwryp1sY=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=TB+RZgvgz2WOJv9xTd4K5fa7k6IKUF3zBPM3q9Tv5Sdu5iayQa+sOcr1TJyammj9juitUDSu1dFgM4s2GdGOWA8nII7kZzP3vvbIrVUKxakRR+mUdw2wBvZsGoQ6aP5M+awowm3GvtRpVMWbGeN3lgT31YgZNyusflVZGULgZDs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=QYEGabdp; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="QYEGabdp" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 719B8C4CED3; Mon, 23 Dec 2024 12:20:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1734956452; bh=l9GEJre9b9kqLJeTCcdfDBzXOQhhVLcI6jSEwryp1sY=; h=Subject:To:Cc:From:Date:From; b=QYEGabdpSDG0hL4GTs2vE2lD+mv0490ZhInhfSGMyWMuVo0APPAOKt10akwK7fsOD R/qAdUopkTVfxRqboQZ0t6fqIVUQnDBkviswXsyWAMH09oPOLXmDlgTmsnmDzrrb79 NTfMBcaLrCwmU9BjRgj11GYDcfho/PF7MquIbTPw= Subject: FAILED: patch "[PATCH] of: address: Preserve the flags portion on 1:1 dma-ranges" failed to apply to 5.4-stable tree To: andrea.porta@suse.com,herve.codina@bootlin.com,robh@kernel.org Cc: From: Date: Mon, 23 Dec 2024 13:20:48 +0100 Message-ID: <2024122347-fiscally-slacks-e686@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit The patch below does not apply to the 5.4-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to . To reproduce the conflict and resubmit, you may use the following commands: git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-5.4.y git checkout FETCH_HEAD git cherry-pick -x 7f05e20b989ac33c9c0f8c2028ec0a566493548f # git commit -s git send-email --to '' --in-reply-to '2024122347-fiscally-slacks-e686@gregkh' --subject-prefix 'PATCH 5.4.y' HEAD^.. Possible dependencies: thanks, greg k-h ------------------ original commit in Linus's tree ------------------ >From 7f05e20b989ac33c9c0f8c2028ec0a566493548f Mon Sep 17 00:00:00 2001 From: Andrea della Porta Date: Sun, 24 Nov 2024 11:05:37 +0100 Subject: [PATCH] of: address: Preserve the flags portion on 1:1 dma-ranges mapping 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 Tested-by: Herve Codina Link: https://lore.kernel.org/r/e51ae57874e58a9b349c35e2e877425ebc075d7a.1732441813.git.andrea.porta@suse.com Signed-off-by: Rob Herring (Arm) diff --git a/drivers/of/address.c b/drivers/of/address.c index c5b925ac469f..5b7ee3ed5296 100644 --- a/drivers/of/address.c +++ b/drivers/of/address.c @@ -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; }