All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] arm64: Enable reset and pinctrl for ARCH_BRCMSTB
@ 2019-05-31 17:38 Florian Fainelli
  2019-05-31 17:38 ` [PATCH 1/2] arm64: Enable ARCH_HAS_RESET_CONTROLLER " Florian Fainelli
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Florian Fainelli @ 2019-05-31 17:38 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: Jim Quinlan, opendmb, bcm-kernel-feedback-list, Florian Fainelli

This patch series enabled PINCTRL and ARCH_HAS_RESET_CONTROLLER for
ARCH_BRCMSTB since we have platforms that require these two subsystems.

Doug Berger (1):
  arm64: Enable PINCTRL for ARCH_BRCMSTB

Jim Quinlan (1):
  arm64: Enable ARCH_HAS_RESET_CONTROLLER for ARCH_BRCMSTB

 arch/arm64/Kconfig.platforms | 2 ++
 1 file changed, 2 insertions(+)

-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] arm64: Enable ARCH_HAS_RESET_CONTROLLER for ARCH_BRCMSTB
  2019-05-31 17:38 [PATCH 0/2] arm64: Enable reset and pinctrl for ARCH_BRCMSTB Florian Fainelli
@ 2019-05-31 17:38 ` Florian Fainelli
  2019-05-31 17:38 ` [PATCH 2/2] arm64: Enable PINCTRL " Florian Fainelli
  2019-06-11 22:01 ` [PATCH 0/2] arm64: Enable reset and pinctrl " Florian Fainelli
  2 siblings, 0 replies; 4+ messages in thread
From: Florian Fainelli @ 2019-05-31 17:38 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: Jim Quinlan, opendmb, bcm-kernel-feedback-list, Florian Fainelli

From: Jim Quinlan <jim2101024@gmail.com>

Allow the use of reset controllers on ARCH_BRCMSTB such as the recently
introduced RESET_BRCMSTB driver.

Signed-off-by: Jim Quinlan <jim2101024@gmail.com>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
 arch/arm64/Kconfig.platforms | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/Kconfig.platforms b/arch/arm64/Kconfig.platforms
index d0aca109bdf6..2d8b1afa3799 100644
--- a/arch/arm64/Kconfig.platforms
+++ b/arch/arm64/Kconfig.platforms
@@ -65,6 +65,7 @@ config ARCH_BITMAIN
 
 config ARCH_BRCMSTB
 	bool "Broadcom Set-Top-Box SoCs"
+	select ARCH_HAS_RESET_CONTROLLER
 	select BCM7038_L1_IRQ
 	select BRCMSTB_L2_IRQ
 	select GENERIC_IRQ_CHIP
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] arm64: Enable PINCTRL for ARCH_BRCMSTB
  2019-05-31 17:38 [PATCH 0/2] arm64: Enable reset and pinctrl for ARCH_BRCMSTB Florian Fainelli
  2019-05-31 17:38 ` [PATCH 1/2] arm64: Enable ARCH_HAS_RESET_CONTROLLER " Florian Fainelli
@ 2019-05-31 17:38 ` Florian Fainelli
  2019-06-11 22:01 ` [PATCH 0/2] arm64: Enable reset and pinctrl " Florian Fainelli
  2 siblings, 0 replies; 4+ messages in thread
From: Florian Fainelli @ 2019-05-31 17:38 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: Jim Quinlan, opendmb, bcm-kernel-feedback-list, Florian Fainelli

From: Doug Berger <opendmb@gmail.com>

ARCH_BRCMSTB needs to use the BCM2835 pin controller for chips like
BCM7211 which adopted that pin controller for GPIO.

Signed-off-by: Doug Berger <opendmb@gmail.com>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
 arch/arm64/Kconfig.platforms | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/Kconfig.platforms b/arch/arm64/Kconfig.platforms
index 2d8b1afa3799..af0d1270094a 100644
--- a/arch/arm64/Kconfig.platforms
+++ b/arch/arm64/Kconfig.platforms
@@ -69,6 +69,7 @@ config ARCH_BRCMSTB
 	select BCM7038_L1_IRQ
 	select BRCMSTB_L2_IRQ
 	select GENERIC_IRQ_CHIP
+	select PINCTRL
 	help
 	  This enables support for Broadcom's ARMv8 Set Top Box SoCs
 
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/2] arm64: Enable reset and pinctrl for ARCH_BRCMSTB
  2019-05-31 17:38 [PATCH 0/2] arm64: Enable reset and pinctrl for ARCH_BRCMSTB Florian Fainelli
  2019-05-31 17:38 ` [PATCH 1/2] arm64: Enable ARCH_HAS_RESET_CONTROLLER " Florian Fainelli
  2019-05-31 17:38 ` [PATCH 2/2] arm64: Enable PINCTRL " Florian Fainelli
@ 2019-06-11 22:01 ` Florian Fainelli
  2 siblings, 0 replies; 4+ messages in thread
From: Florian Fainelli @ 2019-06-11 22:01 UTC (permalink / raw)
  To: Florian Fainelli, linux-arm-kernel
  Cc: Jim Quinlan, opendmb, bcm-kernel-feedback-list

On 5/31/19 10:38 AM, Florian Fainelli wrote:
> This patch series enabled PINCTRL and ARCH_HAS_RESET_CONTROLLER for
> ARCH_BRCMSTB since we have platforms that require these two subsystems.
> 
> Doug Berger (1):
>   arm64: Enable PINCTRL for ARCH_BRCMSTB
> 
> Jim Quinlan (1):
>   arm64: Enable ARCH_HAS_RESET_CONTROLLER for ARCH_BRCMSTB

Series applied to soc-arm64/next, thanks!
-- 
Florian

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-06-11 22:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-31 17:38 [PATCH 0/2] arm64: Enable reset and pinctrl for ARCH_BRCMSTB Florian Fainelli
2019-05-31 17:38 ` [PATCH 1/2] arm64: Enable ARCH_HAS_RESET_CONTROLLER " Florian Fainelli
2019-05-31 17:38 ` [PATCH 2/2] arm64: Enable PINCTRL " Florian Fainelli
2019-06-11 22:01 ` [PATCH 0/2] arm64: Enable reset and pinctrl " Florian Fainelli

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.