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 9AE38260586; Tue, 26 Aug 2025 14:16:22 +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=1756217782; cv=none; b=hGA2KU9ZPmlBlcpa0keUVSn2CyUeJt1S062VsymuyZUgWe9EXgukslRXUUA9gYzY14vH1VFSZwNmCmgo0CriBDhHLU1vbISUzktG2xRlWj8O7DUZvI9QrZZJhgtPUmjBX55UEc9S+rT7oOHSLv1ufLrULqUyjFujIQ0vjvEkz5o= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756217782; c=relaxed/simple; bh=eYPTEK/Jtn3KHuMcmc3RaKoDNxUBFCb4FC2U3NNhCV4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=RCIGW1Up0xbMj4S496AChO2vOaOoBsyfwii+mNyzy0GMXTd2w3HBkolg88R/EPqoiTZukNsid1eMnF7MhKCpykv+dJGDWANHNy8NwIHSvr3lRPCHEylImdOnXUvIjSAFsjQll8tGKvZrhkZkVsD9zXrVslLfqkMBXN4SBNCNS7w= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Mly/Tolh; 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="Mly/Tolh" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 05768C4CEF1; Tue, 26 Aug 2025 14:16:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1756217782; bh=eYPTEK/Jtn3KHuMcmc3RaKoDNxUBFCb4FC2U3NNhCV4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Mly/Tolhjv+5dUg+4F10AGXqDOH7jjtpSVtJ6RkEiInv8yq9aRDfrP0MDd+1595wa 7370LONhrv4VO2zcwbF2eysHfpbnSJn7pMIBamHs9LLhgi0XOAQdpN8AJUo0N21gWq D4r25Ch+xEp7QJxrc/1RQoELK1bkeh8T/VYB8UXU= 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.10 242/523] reset: brcmstb: Enable reset drivers for ARCH_BCM2835 Date: Tue, 26 Aug 2025 13:07:32 +0200 Message-ID: <20250826110930.410779204@linuxfoundation.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20250826110924.562212281@linuxfoundation.org> References: <20250826110924.562212281@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.10-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 147543ad303f..315324dcdac4 100644 --- a/drivers/reset/Kconfig +++ b/drivers/reset/Kconfig @@ -43,8 +43,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. @@ -52,11 +52,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