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 0BDC4345752; Tue, 26 Aug 2025 13:49:58 +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=1756216198; cv=none; b=MgZ2CVzkhYWiECO7xjxP3BpDfhmYiQDxmYsZZ9d6hv80J49Veqsu0vPJaKm7m992Zk3P0kNGSiMf/wX7T6ol4xhFjpTCfYBONbO6YiPH2OY7vcKSM5yGp5fmMzBkG23glBohSBh/U092GjQOHSrB6wxRvHvCNZSQ5IHY/iOBKbs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756216198; c=relaxed/simple; bh=4a/30+lOfNZZaizWGf+dqE6tsFGepd4LvBagDNFwED0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=r3WDPZr3gOE4NnDlDWa8eauhvcHml1K9PDCNlBfUsr10I49Nkan+yAHOUQ6ioi5ZvMr70Sf3TwbFtwBhwPZ3eaTIszZoLC1o2ZPB3yKhpZgs2nZBcBALKfdTHvI24Oln5fLx16Soq5Fv3fVrOMwsnVV4XjFB/u1Rsij+wCnYJmk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ZMxYk3OV; 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="ZMxYk3OV" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8CAF8C4CEF1; Tue, 26 Aug 2025 13:49:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1756216197; bh=4a/30+lOfNZZaizWGf+dqE6tsFGepd4LvBagDNFwED0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ZMxYk3OVIxcjbsyoMy32Lz3kTFehZX6P4FAaLvWg4yyHGXvewlDpkLm3SMD8DEUMU XkPmcUCOJ5wVbeZ/9IqP5BThf7nAyHisfh4Wv6UkE/tioMGxqmW4q6jlBV8tZzyAT8 a5K+cuhiMSSw2lE1skWa4qEWhZ6INqEgtQdzNssU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Peter Robinson , Florian Fainelli , Philipp Zabel , Sasha Levin Subject: [PATCH 5.15 321/644] reset: brcmstb: Enable reset drivers for ARCH_BCM2835 Date: Tue, 26 Aug 2025 13:06:52 +0200 Message-ID: <20250826110954.339685724@linuxfoundation.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20250826110946.507083938@linuxfoundation.org> References: <20250826110946.507083938@linuxfoundation.org> User-Agent: quilt/0.68 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.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Peter Robinson [ Upstream commit 1d99f92f71b6b4b2eee776562c991428490f71ef ] The BRCMSTB and BRCMSTB_RESCAL reset drivers are also used in the BCM2712, AKA the RPi5. The RPi platforms have typically used the ARCH_BCM2835, and the PCIe support for this SoC can use this config which depends on these drivers so enable building them when just that arch option is enabled to ensure the platform works as expected. Signed-off-by: Peter Robinson Acked-by: Florian Fainelli Link: https://lore.kernel.org/r/20250630175301.846082-1-pbrobinson@gmail.com Signed-off-by: Philipp Zabel Signed-off-by: Sasha Levin --- drivers/reset/Kconfig | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/reset/Kconfig b/drivers/reset/Kconfig index b0056ae5d463..d1bc691b2900 100644 --- a/drivers/reset/Kconfig +++ b/drivers/reset/Kconfig @@ -51,8 +51,8 @@ config RESET_BERLIN config RESET_BRCMSTB tristate "Broadcom STB reset controller" - depends on ARCH_BRCMSTB || COMPILE_TEST - default ARCH_BRCMSTB + depends on ARCH_BRCMSTB || ARCH_BCM2835 || COMPILE_TEST + default ARCH_BRCMSTB || ARCH_BCM2835 help This enables the reset controller driver for Broadcom STB SoCs using a SUN_TOP_CTRL_SW_INIT style controller. @@ -60,11 +60,11 @@ config RESET_BRCMSTB config RESET_BRCMSTB_RESCAL bool "Broadcom STB RESCAL reset controller" depends on HAS_IOMEM - depends on ARCH_BRCMSTB || COMPILE_TEST - default ARCH_BRCMSTB + depends on ARCH_BRCMSTB || ARCH_BCM2835 || COMPILE_TEST + default ARCH_BRCMSTB || ARCH_BCM2835 help This enables the RESCAL reset controller for SATA, PCIe0, or PCIe1 on - BCM7216. + BCM7216 or the BCM2712. config RESET_HSDK bool "Synopsys HSDK Reset Driver" -- 2.39.5