Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1654611 > unrolled thread

[PATCH 0/2] power: reset: Couple of POWER_RESET_BRCMSTB Kconfig changes

Started byFlorian Fainelli <f.fainelli@gmail.com>
First post2017-05-31 22:40 +0200
Last post2017-06-07 23:00 +0200
Articles 5 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH 0/2] power: reset: Couple of POWER_RESET_BRCMSTB Kconfig changes Florian Fainelli <f.fainelli@gmail.com> - 2017-05-31 22:40 +0200
    [PATCH 1/2] power: reset: Allow selecting POWER_RESET_BRCMSTB on ARM64 Florian Fainelli <f.fainelli@gmail.com> - 2017-05-31 22:50 +0200
    [PATCH 2/2] power: reset: Default POWER_RESET_BRCMSTB to BMIPS_GENERIC Florian Fainelli <f.fainelli@gmail.com> - 2017-05-31 22:50 +0200
    Re: [PATCH 0/2] power: reset: Couple of POWER_RESET_BRCMSTB Kconfig  changes Florian Fainelli <f.fainelli@gmail.com> - 2017-06-07 19:00 +0200
    Re: [PATCH 0/2] power: reset: Couple of POWER_RESET_BRCMSTB Kconfig  changes Sebastian Reichel <sre@kernel.org> - 2017-06-07 23:00 +0200

#1654611 — [PATCH 0/2] power: reset: Couple of POWER_RESET_BRCMSTB Kconfig changes

FromFlorian Fainelli <f.fainelli@gmail.com>
Date2017-05-31 22:40 +0200
Subject[PATCH 0/2] power: reset: Couple of POWER_RESET_BRCMSTB Kconfig changes
Message-ID<tNizo-1bN-9@gated-at.bofh.it>
Hi Sebastian,

Here are two small tweaks to the POWER_RESET_BRCMSTB Kconfig selection to allow
the driver on ARM64 and make it default to BMIPS_GENERIC on MIPS platforms.

Based on your "for-next" branch.

Thanks

Florian Fainelli (2):
  power: reset: Allow selecting POWER_RESET_BRCMSTB on ARM64
  power: reset: Default POWER_RESET_BRCMSTB to BMIPS_GENERIC

 drivers/power/reset/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
2.9.3

[toc] | [next] | [standalone]


#1654613 — [PATCH 1/2] power: reset: Allow selecting POWER_RESET_BRCMSTB on ARM64

FromFlorian Fainelli <f.fainelli@gmail.com>
Date2017-05-31 22:50 +0200
Subject[PATCH 1/2] power: reset: Allow selecting POWER_RESET_BRCMSTB on ARM64
Message-ID<tNiJ3-1iM-11@gated-at.bofh.it>
In reply to#1654611
Since commit 37eb56dc79a8 ("arm64: Add Broadcom Set Top Box Kconfig
entry point") we have ARCH_BRCMSTB also visible on ARM64 platform, yet
this reboot driver was not selectable, so fix that.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
 drivers/power/reset/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/power/reset/Kconfig b/drivers/power/reset/Kconfig
index 13f1714cf6f7..fdad987bed89 100644
--- a/drivers/power/reset/Kconfig
+++ b/drivers/power/reset/Kconfig
@@ -58,7 +58,7 @@ config POWER_RESET_BRCMKONA
 
 config POWER_RESET_BRCMSTB
 	bool "Broadcom STB reset driver"
-	depends on ARM || MIPS || COMPILE_TEST
+	depends on ARM || ARM64 || MIPS || COMPILE_TEST
 	depends on MFD_SYSCON
 	default ARCH_BRCMSTB
 	help
-- 
2.9.3

[toc] | [prev] | [next] | [standalone]


#1654614 — [PATCH 2/2] power: reset: Default POWER_RESET_BRCMSTB to BMIPS_GENERIC

FromFlorian Fainelli <f.fainelli@gmail.com>
Date2017-05-31 22:50 +0200
Subject[PATCH 2/2] power: reset: Default POWER_RESET_BRCMSTB to BMIPS_GENERIC
Message-ID<tNiJ3-1iM-13@gated-at.bofh.it>
In reply to#1654611
On Broadcom MIPS STB platforms, BMIPS_GENERIC is the Kconfig symbol that
is used, make this reboot driver default to that value to make sure we
can reboot a system properly.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
 drivers/power/reset/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/power/reset/Kconfig b/drivers/power/reset/Kconfig
index fdad987bed89..ca0de1a78e85 100644
--- a/drivers/power/reset/Kconfig
+++ b/drivers/power/reset/Kconfig
@@ -60,7 +60,7 @@ config POWER_RESET_BRCMSTB
 	bool "Broadcom STB reset driver"
 	depends on ARM || ARM64 || MIPS || COMPILE_TEST
 	depends on MFD_SYSCON
-	default ARCH_BRCMSTB
+	default ARCH_BRCMSTB || BMIPS_GENERIC
 	help
 	  This driver provides restart support for Broadcom STB boards.
 
-- 
2.9.3

[toc] | [prev] | [next] | [standalone]


#1660015 — Re: [PATCH 0/2] power: reset: Couple of POWER_RESET_BRCMSTB Kconfig changes

FromFlorian Fainelli <f.fainelli@gmail.com>
Date2017-06-07 19:00 +0200
SubjectRe: [PATCH 0/2] power: reset: Couple of POWER_RESET_BRCMSTB Kconfig changes
Message-ID<tPMtk-J4-9@gated-at.bofh.it>
In reply to#1654611
On 05/31/2017 01:39 PM, Florian Fainelli wrote:
> Hi Sebastian,
> 
> Here are two small tweaks to the POWER_RESET_BRCMSTB Kconfig selection to allow
> the driver on ARM64 and make it default to BMIPS_GENERIC on MIPS platforms.
> 
> Based on your "for-next" branch.

Sebastian, are these changes okay with you?

> 
> Thanks
> 
> Florian Fainelli (2):
>   power: reset: Allow selecting POWER_RESET_BRCMSTB on ARM64
>   power: reset: Default POWER_RESET_BRCMSTB to BMIPS_GENERIC
> 
>  drivers/power/reset/Kconfig | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 


-- 
Florian

[toc] | [prev] | [next] | [standalone]


#1660222 — Re: [PATCH 0/2] power: reset: Couple of POWER_RESET_BRCMSTB Kconfig changes

FromSebastian Reichel <sre@kernel.org>
Date2017-06-07 23:00 +0200
SubjectRe: [PATCH 0/2] power: reset: Couple of POWER_RESET_BRCMSTB Kconfig changes
Message-ID<tPQdB-38j-51@gated-at.bofh.it>
In reply to#1654611

[Multipart message — attachments visible in raw view] — view raw

Hi Florian,

On Wed, May 31, 2017 at 01:39:44PM -0700, Florian Fainelli wrote:
> Here are two small tweaks to the POWER_RESET_BRCMSTB Kconfig selection to allow
> the driver on ARM64 and make it default to BMIPS_GENERIC on MIPS platforms.
> 
> Based on your "for-next" branch.

Thanks, both queued.

-- Sebastian

> Florian Fainelli (2):
>   power: reset: Allow selecting POWER_RESET_BRCMSTB on ARM64
>   power: reset: Default POWER_RESET_BRCMSTB to BMIPS_GENERIC
> 
>  drivers/power/reset/Kconfig | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

-- Sebastian

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web