* [PATCH] ARM: OMAP2+: add missing ARCH_HAS_OPP
@ 2014-01-15 20:00 Nishanth Menon
2014-01-29 13:27 ` Nishanth Menon
0 siblings, 1 reply; 3+ messages in thread
From: Nishanth Menon @ 2014-01-15 20:00 UTC (permalink / raw)
To: Tony Lindgren
Cc: linux-omap, linux-arm-kernel, nikhil.nd, t-kristo, Nishanth Menon
OMAP5, DRA7, AM43xx all have OPPs. So select the same to allow SoC
only configuration boot to work with OPP.
Reported-by: Nikhil Devshatwar <nikhil.nd@ti.com>
Signed-off-by: Nishanth Menon <nm@ti.com>
---
For DRA7, depends on: https://patchwork.kernel.org/patch/3465411/
arch/arm/mach-omap2/Kconfig | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig
index 35c23e5..66a9c4a 100644
--- a/arch/arm/mach-omap2/Kconfig
+++ b/arch/arm/mach-omap2/Kconfig
@@ -50,6 +50,7 @@ config SOC_OMAP5
bool "TI OMAP5"
depends on ARCH_MULTI_V7
select ARCH_OMAP2PLUS
+ select ARCH_HAS_OPP
select ARM_CPU_SUSPEND if PM
select ARM_GIC
select CPU_V7
@@ -63,6 +64,7 @@ config SOC_AM33XX
bool "TI AM33XX"
depends on ARCH_MULTI_V7
select ARCH_OMAP2PLUS
+ select ARCH_HAS_OPP
select ARM_CPU_SUSPEND if PM
select CPU_V7
select MULTI_IRQ_HANDLER
@@ -72,6 +74,7 @@ config SOC_AM43XX
depends on ARCH_MULTI_V7
select CPU_V7
select ARCH_OMAP2PLUS
+ select ARCH_HAS_OPP
select MULTI_IRQ_HANDLER
select ARM_GIC
select MACH_OMAP_GENERIC
@@ -80,6 +83,7 @@ config SOC_DRA7XX
bool "TI DRA7XX"
depends on ARCH_MULTI_V7
select ARCH_OMAP2PLUS
+ select ARCH_HAS_OPP
select ARM_CPU_SUSPEND if PM
select ARM_GIC
select CPU_V7
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ARM: OMAP2+: add missing ARCH_HAS_OPP
2014-01-15 20:00 [PATCH] ARM: OMAP2+: add missing ARCH_HAS_OPP Nishanth Menon
@ 2014-01-29 13:27 ` Nishanth Menon
2014-02-13 22:57 ` Tony Lindgren
0 siblings, 1 reply; 3+ messages in thread
From: Nishanth Menon @ 2014-01-29 13:27 UTC (permalink / raw)
To: Tony Lindgren
Cc: linux-omap, linux-arm-kernel, nikhil.nd, t-kristo, Nishanth Menon
Hi Tony,
On 01/15/2014 02:00 PM, Nishanth Menon wrote:
> OMAP5, DRA7, AM43xx all have OPPs. So select the same to allow SoC
> only configuration boot to work with OPP.
>
> Reported-by: Nikhil Devshatwar <nikhil.nd@ti.com>
> Signed-off-by: Nishanth Menon <nm@ti.com>
> ---
>
> For DRA7, depends on: https://patchwork.kernel.org/patch/3465411/
Considering that dependent patch is now on linus master,
a gentle ping -> The patch does apply on latest linus master commit
0e47c969c65e213421450c31043353ebe3c67e0c
patchworks reference: https://patchwork.kernel.org/patch/3493581/
>
> arch/arm/mach-omap2/Kconfig | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig
> index 35c23e5..66a9c4a 100644
> --- a/arch/arm/mach-omap2/Kconfig
> +++ b/arch/arm/mach-omap2/Kconfig
> @@ -50,6 +50,7 @@ config SOC_OMAP5
> bool "TI OMAP5"
> depends on ARCH_MULTI_V7
> select ARCH_OMAP2PLUS
> + select ARCH_HAS_OPP
> select ARM_CPU_SUSPEND if PM
> select ARM_GIC
> select CPU_V7
> @@ -63,6 +64,7 @@ config SOC_AM33XX
> bool "TI AM33XX"
> depends on ARCH_MULTI_V7
> select ARCH_OMAP2PLUS
> + select ARCH_HAS_OPP
> select ARM_CPU_SUSPEND if PM
> select CPU_V7
> select MULTI_IRQ_HANDLER
> @@ -72,6 +74,7 @@ config SOC_AM43XX
> depends on ARCH_MULTI_V7
> select CPU_V7
> select ARCH_OMAP2PLUS
> + select ARCH_HAS_OPP
> select MULTI_IRQ_HANDLER
> select ARM_GIC
> select MACH_OMAP_GENERIC
> @@ -80,6 +83,7 @@ config SOC_DRA7XX
> bool "TI DRA7XX"
> depends on ARCH_MULTI_V7
> select ARCH_OMAP2PLUS
> + select ARCH_HAS_OPP
> select ARM_CPU_SUSPEND if PM
> select ARM_GIC
> select CPU_V7
>
--
Regards,
Nishanth Menon
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ARM: OMAP2+: add missing ARCH_HAS_OPP
2014-01-29 13:27 ` Nishanth Menon
@ 2014-02-13 22:57 ` Tony Lindgren
0 siblings, 0 replies; 3+ messages in thread
From: Tony Lindgren @ 2014-02-13 22:57 UTC (permalink / raw)
To: Nishanth Menon; +Cc: linux-omap, linux-arm-kernel, nikhil.nd, t-kristo
* Nishanth Menon <nm@ti.com> [140129 05:29]:
> Hi Tony,
> On 01/15/2014 02:00 PM, Nishanth Menon wrote:
> > OMAP5, DRA7, AM43xx all have OPPs. So select the same to allow SoC
> > only configuration boot to work with OPP.
> >
> > Reported-by: Nikhil Devshatwar <nikhil.nd@ti.com>
> > Signed-off-by: Nishanth Menon <nm@ti.com>
> > ---
> >
> > For DRA7, depends on: https://patchwork.kernel.org/patch/3465411/
>
> Considering that dependent patch is now on linus master,
> a gentle ping -> The patch does apply on latest linus master commit
> 0e47c969c65e213421450c31043353ebe3c67e0c
Thanks applying into omap-for-v3.14/fixes.
Tony
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-02-13 22:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-15 20:00 [PATCH] ARM: OMAP2+: add missing ARCH_HAS_OPP Nishanth Menon
2014-01-29 13:27 ` Nishanth Menon
2014-02-13 22:57 ` Tony Lindgren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).