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 D0A8F347BC5; Mon, 13 Apr 2026 17:01: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=1776099712; cv=none; b=FP4kIpyR73T6VDBtntR5ULZfr++UjQ1X80w4Qs5fVf1uzueCAYcPlHkVVcw4qDI1NhaCGjwHn5HOACIjLtREZSy3oj8VMrI8l0X+ZaoGK10g82SR7YZy1qXwz6Jj4v6R5ZmP8bsKV5su3M3VUoPpiZx9mw8oaZaGK6rx/Ooqe5Q= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776099712; c=relaxed/simple; bh=opCSDabA7bDNTxknwdcs6pAhuBaxH1Qi9quwFs1C/4g=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=VVs0vJVhv8rrFCQ1CK6tU8To2Zj+N18OoNMaiRK+b5hZF9oldWFg2cg5TEV6hcJ1S6YgPWkCG3SZHtUqMr5PSu6Ocg0NT664SMvH5vJEkC5E4FnwlUQ0njlpBcbg8g3fWAGFWivMUrGpLrpGsA1y9Wn2w3KWw9Crk5Wudun+hek= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=CS5+Tcg1; 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="CS5+Tcg1" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 63CDAC2BCAF; Mon, 13 Apr 2026 17:01:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1776099712; bh=opCSDabA7bDNTxknwdcs6pAhuBaxH1Qi9quwFs1C/4g=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=CS5+Tcg1zOMuwPEJsDrNOU1akIUuNRmPxMcxyJCMTA9J8aNWV53z4wIS7Va9FHbDj wiFUQD83P+WcuPWOLBqcFzgTDnVQAm6/uVj6t3f8wFVpSAdOgFgcp3lTpcGw57nQA6 klqQyffNhAhBfKJNxWFlZ2+hcj5vd6pRpbNV8u5g= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Shawn Guo , Wei Xu Subject: [PATCH 5.10 445/491] arm64: dts: hisilicon: hi3798cv200: Add missing dma-ranges Date: Mon, 13 Apr 2026 18:01:30 +0200 Message-ID: <20260413155835.687212916@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260413155819.042779211@linuxfoundation.org> References: <20260413155819.042779211@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Shawn Guo commit 1af997cad473d505248df6d9577183bb91f69670 upstream. Reboot starts failing on Poplar since commit 8424ecdde7df ("arm64: mm: Set ZONE_DMA size based on devicetree's dma-ranges"), which effectively changes zone_dma_bits from 30 to 32 for arm64 platforms that do not properly define dma-ranges in device tree. It's unclear how Poplar reboot gets broken by this change exactly, but a dma-ranges limiting zone_dma to the first 1 GB fixes the regression. Fixes: 2f20182ed670 ("arm64: dts: hisilicon: add dts files for hi3798cv200-poplar board") Cc: stable@vger.kernel.org Signed-off-by: Shawn Guo Signed-off-by: Wei Xu Signed-off-by: Greg Kroah-Hartman --- arch/arm64/boot/dts/hisilicon/hi3798cv200.dtsi | 1 + 1 file changed, 1 insertion(+) --- a/arch/arm64/boot/dts/hisilicon/hi3798cv200.dtsi +++ b/arch/arm64/boot/dts/hisilicon/hi3798cv200.dtsi @@ -81,6 +81,7 @@ #address-cells = <1>; #size-cells = <1>; ranges = <0x0 0x0 0xf0000000 0x10000000>; + dma-ranges = <0x0 0x0 0x0 0x40000000>; crg: clock-reset-controller@8a22000 { compatible = "hisilicon,hi3798cv200-crg", "syscon", "simple-mfd";