* [PATCH 1/2] ARM: sti: only select errata 764369 if SMP
@ 2013-11-14 0:46 Olof Johansson
2013-11-14 0:46 ` [PATCH 2/2] ARM: highbank: " Olof Johansson
2013-11-14 10:32 ` [PATCH 1/2] ARM: sti: " srinivas kandagatla
0 siblings, 2 replies; 7+ messages in thread
From: Olof Johansson @ 2013-11-14 0:46 UTC (permalink / raw)
To: linux-arm-kernel
764369 depends on SMP, so don't select it on !SMP configs.
Signed-off-by: Olof Johansson <olof@lixom.net>
Cc: Srinivas Kandagatla <srinivas.kandagatla@st.com>
Cc: Stuart Menefy <stuart.menefy@st.com>
---
arch/arm/mach-sti/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-sti/Kconfig b/arch/arm/mach-sti/Kconfig
index 835833e3c4f8..939ddb8f482b 100644
--- a/arch/arm/mach-sti/Kconfig
+++ b/arch/arm/mach-sti/Kconfig
@@ -12,7 +12,7 @@ menuconfig ARCH_STI
select HAVE_ARM_SCU if SMP
select ARCH_REQUIRE_GPIOLIB
select ARM_ERRATA_754322
- select ARM_ERRATA_764369
+ select ARM_ERRATA_764369 if SMP
select ARM_ERRATA_775420
select PL310_ERRATA_753970 if CACHE_PL310
select PL310_ERRATA_769419 if CACHE_PL310
--
1.8.4.1.601.g02b3b1d
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/2] ARM: highbank: only select errata 764369 if SMP
2013-11-14 0:46 [PATCH 1/2] ARM: sti: only select errata 764369 if SMP Olof Johansson
@ 2013-11-14 0:46 ` Olof Johansson
2013-11-14 0:51 ` Rob Herring
2013-11-14 10:32 ` [PATCH 1/2] ARM: sti: " srinivas kandagatla
1 sibling, 1 reply; 7+ messages in thread
From: Olof Johansson @ 2013-11-14 0:46 UTC (permalink / raw)
To: linux-arm-kernel
764369 depends on SMP, so don't select it on !SMP configs.
Signed-off-by: Olof Johansson <olof@lixom.net>
Cc: Rob Herring <rob.herring@calxeda.com>
---
arch/arm/mach-highbank/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-highbank/Kconfig b/arch/arm/mach-highbank/Kconfig
index fe98df44579c..6e1d72326454 100644
--- a/arch/arm/mach-highbank/Kconfig
+++ b/arch/arm/mach-highbank/Kconfig
@@ -6,7 +6,7 @@ config ARCH_HIGHBANK
select ARCH_HAS_OPP
select ARCH_WANT_OPTIONAL_GPIOLIB
select ARM_AMBA
- select ARM_ERRATA_764369
+ select ARM_ERRATA_764369 if SMP
select ARM_ERRATA_775420
select ARM_ERRATA_798181
select ARM_GIC
--
1.8.4.1.601.g02b3b1d
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/2] ARM: highbank: only select errata 764369 if SMP
2013-11-14 0:46 ` [PATCH 2/2] ARM: highbank: " Olof Johansson
@ 2013-11-14 0:51 ` Rob Herring
2013-11-14 0:54 ` Russell King - ARM Linux
0 siblings, 1 reply; 7+ messages in thread
From: Rob Herring @ 2013-11-14 0:51 UTC (permalink / raw)
To: linux-arm-kernel
On 11/13/2013 06:46 PM, Olof Johansson wrote:
> 764369 depends on SMP, so don't select it on !SMP configs.
I think Russell has a fix for these in his tree.
Rob
>
> Signed-off-by: Olof Johansson <olof@lixom.net>
> Cc: Rob Herring <rob.herring@calxeda.com>
> ---
> arch/arm/mach-highbank/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-highbank/Kconfig b/arch/arm/mach-highbank/Kconfig
> index fe98df44579c..6e1d72326454 100644
> --- a/arch/arm/mach-highbank/Kconfig
> +++ b/arch/arm/mach-highbank/Kconfig
> @@ -6,7 +6,7 @@ config ARCH_HIGHBANK
> select ARCH_HAS_OPP
> select ARCH_WANT_OPTIONAL_GPIOLIB
> select ARM_AMBA
> - select ARM_ERRATA_764369
> + select ARM_ERRATA_764369 if SMP
> select ARM_ERRATA_775420
> select ARM_ERRATA_798181
> select ARM_GIC
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 2/2] ARM: highbank: only select errata 764369 if SMP
2013-11-14 0:51 ` Rob Herring
@ 2013-11-14 0:54 ` Russell King - ARM Linux
2013-11-14 1:02 ` Rob Herring
0 siblings, 1 reply; 7+ messages in thread
From: Russell King - ARM Linux @ 2013-11-14 0:54 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Nov 13, 2013 at 06:51:36PM -0600, Rob Herring wrote:
> On 11/13/2013 06:46 PM, Olof Johansson wrote:
> > 764369 depends on SMP, so don't select it on !SMP configs.
>
> I think Russell has a fix for these in his tree.
Not this one. I have:
select ARM_ERRATA_798181 if SMP
for highbank, which is now in mainline. Olof's patch is in response to
me pasting the Kconfig warning from last nights failed omap4 randconfig
build. This wasn't the cause, but it's something that should be fixed
in any case.
(There's build failures in drivers/usb/gadget...)
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 2/2] ARM: highbank: only select errata 764369 if SMP
2013-11-14 0:54 ` Russell King - ARM Linux
@ 2013-11-14 1:02 ` Rob Herring
2013-11-14 1:05 ` Olof Johansson
0 siblings, 1 reply; 7+ messages in thread
From: Rob Herring @ 2013-11-14 1:02 UTC (permalink / raw)
To: linux-arm-kernel
On 11/13/2013 06:54 PM, Russell King - ARM Linux wrote:
> On Wed, Nov 13, 2013 at 06:51:36PM -0600, Rob Herring wrote:
>> On 11/13/2013 06:46 PM, Olof Johansson wrote:
>>> 764369 depends on SMP, so don't select it on !SMP configs.
>>
>> I think Russell has a fix for these in his tree.
>
> Not this one. I have:
>
> select ARM_ERRATA_798181 if SMP
>
> for highbank, which is now in mainline. Olof's patch is in response to
> me pasting the Kconfig warning from last nights failed omap4 randconfig
> build. This wasn't the cause, but it's something that should be fixed
> in any case.
In that case:
Acked-by: Rob Herring <rob.herring@calxeda.com>
>
> (There's build failures in drivers/usb/gadget...)
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 2/2] ARM: highbank: only select errata 764369 if SMP
2013-11-14 1:02 ` Rob Herring
@ 2013-11-14 1:05 ` Olof Johansson
0 siblings, 0 replies; 7+ messages in thread
From: Olof Johansson @ 2013-11-14 1:05 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Nov 13, 2013 at 5:02 PM, Rob Herring <robherring2@gmail.com> wrote:
> On 11/13/2013 06:54 PM, Russell King - ARM Linux wrote:
>> On Wed, Nov 13, 2013 at 06:51:36PM -0600, Rob Herring wrote:
>>> On 11/13/2013 06:46 PM, Olof Johansson wrote:
>>>> 764369 depends on SMP, so don't select it on !SMP configs.
>>>
>>> I think Russell has a fix for these in his tree.
>>
>> Not this one. I have:
>>
>> select ARM_ERRATA_798181 if SMP
>>
>> for highbank, which is now in mainline. Olof's patch is in response to
>> me pasting the Kconfig warning from last nights failed omap4 randconfig
>> build. This wasn't the cause, but it's something that should be fixed
>> in any case.
>
> In that case:
>
> Acked-by: Rob Herring <rob.herring@calxeda.com>
Thanks!
-Olof
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 1/2] ARM: sti: only select errata 764369 if SMP
2013-11-14 0:46 [PATCH 1/2] ARM: sti: only select errata 764369 if SMP Olof Johansson
2013-11-14 0:46 ` [PATCH 2/2] ARM: highbank: " Olof Johansson
@ 2013-11-14 10:32 ` srinivas kandagatla
1 sibling, 0 replies; 7+ messages in thread
From: srinivas kandagatla @ 2013-11-14 10:32 UTC (permalink / raw)
To: linux-arm-kernel
Thanks for the patch.
Acked-by: Srinivas Kandagatla <srinivas.kandagatla@st.com>
On 14/11/13 00:46, Olof Johansson wrote:
> 764369 depends on SMP, so don't select it on !SMP configs.
>
> Signed-off-by: Olof Johansson <olof@lixom.net>
> Cc: Srinivas Kandagatla <srinivas.kandagatla@st.com>
> Cc: Stuart Menefy <stuart.menefy@st.com>
> ---
> arch/arm/mach-sti/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-sti/Kconfig b/arch/arm/mach-sti/Kconfig
> index 835833e3c4f8..939ddb8f482b 100644
> --- a/arch/arm/mach-sti/Kconfig
> +++ b/arch/arm/mach-sti/Kconfig
> @@ -12,7 +12,7 @@ menuconfig ARCH_STI
> select HAVE_ARM_SCU if SMP
> select ARCH_REQUIRE_GPIOLIB
> select ARM_ERRATA_754322
> - select ARM_ERRATA_764369
> + select ARM_ERRATA_764369 if SMP
> select ARM_ERRATA_775420
> select PL310_ERRATA_753970 if CACHE_PL310
> select PL310_ERRATA_769419 if CACHE_PL310
>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-11-14 10:32 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-14 0:46 [PATCH 1/2] ARM: sti: only select errata 764369 if SMP Olof Johansson
2013-11-14 0:46 ` [PATCH 2/2] ARM: highbank: " Olof Johansson
2013-11-14 0:51 ` Rob Herring
2013-11-14 0:54 ` Russell King - ARM Linux
2013-11-14 1:02 ` Rob Herring
2013-11-14 1:05 ` Olof Johansson
2013-11-14 10:32 ` [PATCH 1/2] ARM: sti: " srinivas kandagatla
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).