From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 EF4383B8412; Tue, 21 Jul 2026 21:41:21 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784670083; cv=none; b=HGVCbt7AhAlj6a/kd26RwWe12XqqgB/z4n/YCZx/o1t0vjB8gYbyIfbVrm0djwdEP2FKAmoIbDv2ECTwP5eOTiBdZsDp7reuzetqOcMmolNaDmcp6q+fr0+8sJGANzW6ZZRKJAvsBPkSon6V/KvyS2/VLL41aXNwGzdQ8XGRSas= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784670083; c=relaxed/simple; bh=ncq+1boDj1q7IiQ0tv3IYk0/xXXItYnp6F3ZtvyHn8I=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=MeSvYFGcb5H404Wpzyf3VBwAlJ7t0K4jSVQsFYxcGsuS5H1CRsqOoOs9YhGJr++J6lMZIvRqXN7r7UtIwEA3Z5OGBOWSMvDXP4lp4QdiSjAlFw8WFI1tPGxwbgdjiOAYVxiDIg7UsbC5dAKHbJNuD71aQZzPfVNcg+2gbFtN+AY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=BBe2n9uy; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="BBe2n9uy" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6153D1F000E9; Tue, 21 Jul 2026 21:41:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784670081; bh=kN1mc/M8F9iVhhjgkQZBCPzrHrJKVEiVARtIR2H6l1I=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=BBe2n9uyGI15Ig9xq1YZaZRcTO1evD9xEfgVEs+EhZT0ieZBK3iOxn5WMStIDemdB YczWzqcJH/wTDjhL57P1SnbB+PU0GkWXYG2vtxyrXbHRhEwIm1T7wIEIXxcxy5T4dF uvHO2/9Vh/6Mi9rjJvQ+fWeFsfby/WZ5DjDEDTj0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Wang Jun <1742789905@qq.com>, "Christophe Leroy (CS GROUP)" Subject: [PATCH 6.1 0754/1067] soc: fsl: qe: panic on ioremap() failure in qe_reset() Date: Tue, 21 Jul 2026 17:22:35 +0200 Message-ID: <20260721152441.440936358@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152424.521567757@linuxfoundation.org> References: <20260721152424.521567757@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 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Wang Jun <1742789905@qq.com> commit a0fe29d20e7822182e12324905af5115c1b3aed3 upstream. When ioremap() fails in qe_reset(), the global pointer qe_immr remains NULL, leading to a subsequent NULL pointer dereference when the pointer is accessed. Since this happens early in the boot process, a failure to map a few bytes of I/O memory indicates a fatal error from which the system cannot recover. Follow the same pattern as qe_sdma_init() and panic immediately when ioremap() fails. This avoids a silent NULL pointer dereference later and makes the error explicit. Fixes: 986585385131 ("[POWERPC] Add QUICC Engine (QE) infrastructure") Cc: stable@vger.kernel.org Signed-off-by: Wang Jun <1742789905@qq.com> Link: https://lore.kernel.org/r/tencent_FED49CF5331CC0C7910618883332A08E2606@qq.com [chleroy: Rearranged change to reduce churn] Signed-off-by: Christophe Leroy (CS GROUP) Signed-off-by: Greg Kroah-Hartman --- drivers/soc/fsl/qe/qe.c | 3 +++ 1 file changed, 3 insertions(+) --- a/drivers/soc/fsl/qe/qe.c +++ b/drivers/soc/fsl/qe/qe.c @@ -88,6 +88,9 @@ void qe_reset(void) if (qe_immr == NULL) qe_immr = ioremap(get_qe_base(), QE_IMMAP_SIZE); + if (!qe_immr) + panic("QE:ioremap failed!"); + qe_snums_init(); qe_issue_cmd(QE_RESET, QE_CR_SUBBLOCK_INVALID,