All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH kvm-unit-tests] arm: fix crash when caches are off
@ 2014-09-16  2:06 Andrew Jones
  2014-09-16  8:14 ` Paolo Bonzini
  2014-09-18 10:36 ` Paolo Bonzini
  0 siblings, 2 replies; 14+ messages in thread
From: Andrew Jones @ 2014-09-16  2:06 UTC (permalink / raw)
  To: kvmarm, kvm; +Cc: christoffer.dall, marc.zyngier, pbonzini

We shouldn't try Load-Exclusive instructions unless we've enabled memory
management, as these instructions depend on the data cache unit's
coherency monitor. This patch adds a new setup boolean, initialized to false,
that is used to guard Load-Exclusive instructions. Eventually we'll add more
setup code that sets it true.

Note: This problem became visible on boards with Cortex-A7 processors. Testing
with Cortex-A15 didn't expose it, as those may have an external coherency
monitor that still allows the instruction to execute (on A7s we got data
aborts). Although even on A15's it's not clear from the spec if the
instructions will behave as expected while caches are off, so we no longer
allow Load-Exclusive instructions on those processors without caches enabled
either.

Signed-off-by: Andrew Jones <drjones@redhat.com>
---
 lib/arm/asm/setup.h |  2 ++
 lib/arm/setup.c     |  1 +
 lib/arm/spinlock.c  | 10 ++++++++++
 3 files changed, 13 insertions(+)

diff --git a/lib/arm/asm/setup.h b/lib/arm/asm/setup.h
index 21445ef2085fc..9c54c184e2866 100644
--- a/lib/arm/asm/setup.h
+++ b/lib/arm/asm/setup.h
@@ -20,6 +20,8 @@ extern phys_addr_t __phys_offset, __phys_end;
 #define PHYS_SIZE		(1ULL << PHYS_SHIFT)
 #define PHYS_MASK		(PHYS_SIZE - 1ULL)
 
+extern bool mem_caches_enabled;
+
 #define L1_CACHE_SHIFT		6
 #define L1_CACHE_BYTES		(1 << L1_CACHE_SHIFT)
 #define SMP_CACHE_BYTES		L1_CACHE_BYTES
diff --git a/lib/arm/setup.c b/lib/arm/setup.c
index 3941c9757dcb2..f7ed639c9d499 100644
--- a/lib/arm/setup.c
+++ b/lib/arm/setup.c
@@ -25,6 +25,7 @@ u32 cpus[NR_CPUS] = { [0 ... NR_CPUS-1] = (~0UL) };
 int nr_cpus;
 
 phys_addr_t __phys_offset, __phys_end;
+bool mem_caches_enabled;
 
 static void cpu_set(int fdtnode __unused, u32 regval, void *info __unused)
 {
diff --git a/lib/arm/spinlock.c b/lib/arm/spinlock.c
index d8a6d4c3383d6..43539c5e84062 100644
--- a/lib/arm/spinlock.c
+++ b/lib/arm/spinlock.c
@@ -1,12 +1,22 @@
 #include "libcflat.h"
 #include "asm/spinlock.h"
 #include "asm/barrier.h"
+#include "asm/setup.h"
 
 void spin_lock(struct spinlock *lock)
 {
 	u32 val, fail;
 
 	dmb();
+
+	/*
+	 * Without caches enabled Load-Exclusive instructions may fail.
+	 * In that case we do nothing, and just hope the caller knows
+	 * what they're doing.
+	 */
+	if (!mem_caches_enabled)
+		return;
+
 	do {
 		asm volatile(
 		"1:	ldrex	%0, [%2]\n"
-- 
1.9.3


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

* Re: [PATCH kvm-unit-tests] arm: fix crash when caches are off
  2014-09-16  2:06 [PATCH kvm-unit-tests] arm: fix crash when caches are off Andrew Jones
@ 2014-09-16  8:14 ` Paolo Bonzini
  2014-09-16 12:12   ` Andrew Jones
  2014-09-18 10:36 ` Paolo Bonzini
  1 sibling, 1 reply; 14+ messages in thread
From: Paolo Bonzini @ 2014-09-16  8:14 UTC (permalink / raw)
  To: Andrew Jones, kvmarm, kvm; +Cc: christoffer.dall, marc.zyngier

Il 16/09/2014 04:06, Andrew Jones ha scritto:
> We shouldn't try Load-Exclusive instructions unless we've enabled memory
> management, as these instructions depend on the data cache unit's
> coherency monitor. This patch adds a new setup boolean, initialized to false,
> that is used to guard Load-Exclusive instructions. Eventually we'll add more
> setup code that sets it true.
> 
> Note: This problem became visible on boards with Cortex-A7 processors. Testing
> with Cortex-A15 didn't expose it, as those may have an external coherency
> monitor that still allows the instruction to execute (on A7s we got data
> aborts). Although even on A15's it's not clear from the spec if the
> instructions will behave as expected while caches are off, so we no longer
> allow Load-Exclusive instructions on those processors without caches enabled
> either.
> 
> Signed-off-by: Andrew Jones <drjones@redhat.com>
> ---
>  lib/arm/asm/setup.h |  2 ++
>  lib/arm/setup.c     |  1 +
>  lib/arm/spinlock.c  | 10 ++++++++++
>  3 files changed, 13 insertions(+)
> 
> diff --git a/lib/arm/asm/setup.h b/lib/arm/asm/setup.h
> index 21445ef2085fc..9c54c184e2866 100644
> --- a/lib/arm/asm/setup.h
> +++ b/lib/arm/asm/setup.h
> @@ -20,6 +20,8 @@ extern phys_addr_t __phys_offset, __phys_end;
>  #define PHYS_SIZE		(1ULL << PHYS_SHIFT)
>  #define PHYS_MASK		(PHYS_SIZE - 1ULL)
>  
> +extern bool mem_caches_enabled;
> +
>  #define L1_CACHE_SHIFT		6
>  #define L1_CACHE_BYTES		(1 << L1_CACHE_SHIFT)
>  #define SMP_CACHE_BYTES		L1_CACHE_BYTES
> diff --git a/lib/arm/setup.c b/lib/arm/setup.c
> index 3941c9757dcb2..f7ed639c9d499 100644
> --- a/lib/arm/setup.c
> +++ b/lib/arm/setup.c
> @@ -25,6 +25,7 @@ u32 cpus[NR_CPUS] = { [0 ... NR_CPUS-1] = (~0UL) };
>  int nr_cpus;
>  
>  phys_addr_t __phys_offset, __phys_end;
> +bool mem_caches_enabled;
>  
>  static void cpu_set(int fdtnode __unused, u32 regval, void *info __unused)
>  {
> diff --git a/lib/arm/spinlock.c b/lib/arm/spinlock.c
> index d8a6d4c3383d6..43539c5e84062 100644
> --- a/lib/arm/spinlock.c
> +++ b/lib/arm/spinlock.c
> @@ -1,12 +1,22 @@
>  #include "libcflat.h"
>  #include "asm/spinlock.h"
>  #include "asm/barrier.h"
> +#include "asm/setup.h"
>  
>  void spin_lock(struct spinlock *lock)
>  {
>  	u32 val, fail;
>  
>  	dmb();
> +
> +	/*
> +	 * Without caches enabled Load-Exclusive instructions may fail.
> +	 * In that case we do nothing, and just hope the caller knows
> +	 * what they're doing.
> +	 */
> +	if (!mem_caches_enabled)
> +		return;

Should it at least write 1 to the spinlock?

Paolo

>  	do {
>  		asm volatile(
>  		"1:	ldrex	%0, [%2]\n"
> 


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

* Re: [PATCH kvm-unit-tests] arm: fix crash when caches are off
  2014-09-16  8:14 ` Paolo Bonzini
@ 2014-09-16 12:12   ` Andrew Jones
  2014-09-16 12:28     ` Paolo Bonzini
  0 siblings, 1 reply; 14+ messages in thread
From: Andrew Jones @ 2014-09-16 12:12 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: kvmarm, kvm, christoffer dall, marc zyngier



----- Original Message -----
> Il 16/09/2014 04:06, Andrew Jones ha scritto:
> > We shouldn't try Load-Exclusive instructions unless we've enabled memory
> > management, as these instructions depend on the data cache unit's
> > coherency monitor. This patch adds a new setup boolean, initialized to
> > false,
> > that is used to guard Load-Exclusive instructions. Eventually we'll add
> > more
> > setup code that sets it true.
> > 
> > Note: This problem became visible on boards with Cortex-A7 processors.
> > Testing
> > with Cortex-A15 didn't expose it, as those may have an external coherency
> > monitor that still allows the instruction to execute (on A7s we got data
> > aborts). Although even on A15's it's not clear from the spec if the
> > instructions will behave as expected while caches are off, so we no longer
> > allow Load-Exclusive instructions on those processors without caches
> > enabled
> > either.
> > 
> > Signed-off-by: Andrew Jones <drjones@redhat.com>
> > ---
> >  lib/arm/asm/setup.h |  2 ++
> >  lib/arm/setup.c     |  1 +
> >  lib/arm/spinlock.c  | 10 ++++++++++
> >  3 files changed, 13 insertions(+)
> > 
> > diff --git a/lib/arm/asm/setup.h b/lib/arm/asm/setup.h
> > index 21445ef2085fc..9c54c184e2866 100644
> > --- a/lib/arm/asm/setup.h
> > +++ b/lib/arm/asm/setup.h
> > @@ -20,6 +20,8 @@ extern phys_addr_t __phys_offset, __phys_end;
> >  #define PHYS_SIZE		(1ULL << PHYS_SHIFT)
> >  #define PHYS_MASK		(PHYS_SIZE - 1ULL)
> >  
> > +extern bool mem_caches_enabled;
> > +
> >  #define L1_CACHE_SHIFT		6
> >  #define L1_CACHE_BYTES		(1 << L1_CACHE_SHIFT)
> >  #define SMP_CACHE_BYTES		L1_CACHE_BYTES
> > diff --git a/lib/arm/setup.c b/lib/arm/setup.c
> > index 3941c9757dcb2..f7ed639c9d499 100644
> > --- a/lib/arm/setup.c
> > +++ b/lib/arm/setup.c
> > @@ -25,6 +25,7 @@ u32 cpus[NR_CPUS] = { [0 ... NR_CPUS-1] = (~0UL) };
> >  int nr_cpus;
> >  
> >  phys_addr_t __phys_offset, __phys_end;
> > +bool mem_caches_enabled;
> >  
> >  static void cpu_set(int fdtnode __unused, u32 regval, void *info __unused)
> >  {
> > diff --git a/lib/arm/spinlock.c b/lib/arm/spinlock.c
> > index d8a6d4c3383d6..43539c5e84062 100644
> > --- a/lib/arm/spinlock.c
> > +++ b/lib/arm/spinlock.c
> > @@ -1,12 +1,22 @@
> >  #include "libcflat.h"
> >  #include "asm/spinlock.h"
> >  #include "asm/barrier.h"
> > +#include "asm/setup.h"
> >  
> >  void spin_lock(struct spinlock *lock)
> >  {
> >  	u32 val, fail;
> >  
> >  	dmb();
> > +
> > +	/*
> > +	 * Without caches enabled Load-Exclusive instructions may fail.
> > +	 * In that case we do nothing, and just hope the caller knows
> > +	 * what they're doing.
> > +	 */
> > +	if (!mem_caches_enabled)
> > +		return;
> 
> Should it at least write 1 to the spinlock?

I thought about that. So on one hand we might get a somewhat functional
synchronization mechanism, which may be enough for some unit test that
doesn't enable caches, but still needs it. On the other hand, we know
its broken, so we don't really want any unit tests that need synchronization
and don't enable caches. I chose to not write a 1 in the hope that if
a unit test introduces a race, that that race will be easier to expose
and fix. That said, I'm not strongly biased, as we'd still have a race,
which may or may not be easy to expose, either way. So if the majority
prefers a best effort approach, then I'll spin a v2.

drew

> 
> Paolo
> 
> >  	do {
> >  		asm volatile(
> >  		"1:	ldrex	%0, [%2]\n"
> > 
> 
> 

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

* Re: [PATCH kvm-unit-tests] arm: fix crash when caches are off
  2014-09-16 12:12   ` Andrew Jones
@ 2014-09-16 12:28     ` Paolo Bonzini
  2014-09-16 12:43       ` Andrew Jones
  0 siblings, 1 reply; 14+ messages in thread
From: Paolo Bonzini @ 2014-09-16 12:28 UTC (permalink / raw)
  To: Andrew Jones; +Cc: kvmarm, kvm, christoffer dall, marc zyngier

Il 16/09/2014 14:12, Andrew Jones ha scritto:
>> > Should it at least write 1 to the spinlock?
> I thought about that. So on one hand we might get a somewhat functional
> synchronization mechanism, which may be enough for some unit test that
> doesn't enable caches, but still needs it. On the other hand, we know
> its broken, so we don't really want any unit tests that need synchronization
> and don't enable caches. I chose to not write a 1 in the hope that if
> a unit test introduces a race, that that race will be easier to expose
> and fix. That said, I'm not strongly biased, as we'd still have a race,
> which may or may not be easy to expose, either way. So if the majority
> prefers a best effort approach, then I'll spin a v2.

The case I was thinking about was something like

    spin_lock()
    enable caches
    start other processors
    spin_unlock()

I'm not sure if it makes sense though. :)

Paolo

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

* Re: [PATCH kvm-unit-tests] arm: fix crash when caches are off
  2014-09-16 12:28     ` Paolo Bonzini
@ 2014-09-16 12:43       ` Andrew Jones
  2014-09-16 12:47         ` Paolo Bonzini
  2014-09-16 12:48         ` Andrew Jones
  0 siblings, 2 replies; 14+ messages in thread
From: Andrew Jones @ 2014-09-16 12:43 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: kvmarm, kvm, christoffer dall, marc zyngier



----- Original Message -----
> Il 16/09/2014 14:12, Andrew Jones ha scritto:
> >> > Should it at least write 1 to the spinlock?
> > I thought about that. So on one hand we might get a somewhat functional
> > synchronization mechanism, which may be enough for some unit test that
> > doesn't enable caches, but still needs it. On the other hand, we know
> > its broken, so we don't really want any unit tests that need
> > synchronization
> > and don't enable caches. I chose to not write a 1 in the hope that if
> > a unit test introduces a race, that that race will be easier to expose
> > and fix. That said, I'm not strongly biased, as we'd still have a race,
> > which may or may not be easy to expose, either way. So if the majority
> > prefers a best effort approach, then I'll spin a v2.
> 
> The case I was thinking about was something like
> 
>     spin_lock()
>     enable caches
>     start other processors
>     spin_unlock()
> 
> I'm not sure if it makes sense though. :)

I don't think we need to worry about this case. AFAIU, enabling the
caches for a particular cpu shouldn't require any synchronization.
So we should be able to do

    enable caches
    spin_lock
    start other processors
    spin_unlock

drew

> 
> Paolo
> 

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

* Re: [PATCH kvm-unit-tests] arm: fix crash when caches are off
  2014-09-16 12:43       ` Andrew Jones
@ 2014-09-16 12:47         ` Paolo Bonzini
  2014-09-16 12:51           ` Andrew Jones
  2014-09-16 12:57           ` Andrew Jones
  2014-09-16 12:48         ` Andrew Jones
  1 sibling, 2 replies; 14+ messages in thread
From: Paolo Bonzini @ 2014-09-16 12:47 UTC (permalink / raw)
  To: Andrew Jones; +Cc: kvmarm, kvm, christoffer dall, marc zyngier

Il 16/09/2014 14:43, Andrew Jones ha scritto:
> I don't think we need to worry about this case. AFAIU, enabling the
> caches for a particular cpu shouldn't require any synchronization.
> So we should be able to do
> 
>     enable caches
>     spin_lock
>     start other processors
>     spin_unlock

Ok, I'll test and apply your patch then.

Once you change the code to enable caches, please consider hanging on
spin_lock with caches disabled.

Paolo

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

* Re: [PATCH kvm-unit-tests] arm: fix crash when caches are off
  2014-09-16 12:43       ` Andrew Jones
  2014-09-16 12:47         ` Paolo Bonzini
@ 2014-09-16 12:48         ` Andrew Jones
  1 sibling, 0 replies; 14+ messages in thread
From: Andrew Jones @ 2014-09-16 12:48 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: kvmarm, kvm



----- Original Message -----
> 
> 
> ----- Original Message -----
> > Il 16/09/2014 14:12, Andrew Jones ha scritto:
> > >> > Should it at least write 1 to the spinlock?
> > > I thought about that. So on one hand we might get a somewhat functional
> > > synchronization mechanism, which may be enough for some unit test that
> > > doesn't enable caches, but still needs it. On the other hand, we know
> > > its broken, so we don't really want any unit tests that need
> > > synchronization
> > > and don't enable caches. I chose to not write a 1 in the hope that if
> > > a unit test introduces a race, that that race will be easier to expose
> > > and fix. That said, I'm not strongly biased, as we'd still have a race,
> > > which may or may not be easy to expose, either way. So if the majority
> > > prefers a best effort approach, then I'll spin a v2.
> > 
> > The case I was thinking about was something like
> > 
> >     spin_lock()
> >     enable caches
> >     start other processors
> >     spin_unlock()
> > 
> > I'm not sure if it makes sense though. :)
> 
> I don't think we need to worry about this case. AFAIU, enabling the
> caches for a particular cpu shouldn't require any synchronization.
> So we should be able to do
> 
>     enable caches
>     spin_lock
>     start other processors
>     spin_unlock
> 

Oh drat. I just introduced an issue with enabling caches without working
spin locks. This new boolean. This boolean will need to be per cpu.

I'll send a v2.



> drew
> 
> > 
> > Paolo
> > 
> _______________________________________________
> kvmarm mailing list
> kvmarm@lists.cs.columbia.edu
> https://lists.cs.columbia.edu/mailman/listinfo/kvmarm
> 

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

* Re: [PATCH kvm-unit-tests] arm: fix crash when caches are off
  2014-09-16 12:47         ` Paolo Bonzini
@ 2014-09-16 12:51           ` Andrew Jones
  2014-09-16 14:38             ` Andrew Jones
  2014-09-16 12:57           ` Andrew Jones
  1 sibling, 1 reply; 14+ messages in thread
From: Andrew Jones @ 2014-09-16 12:51 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: kvmarm, kvm, christoffer dall, marc zyngier



----- Original Message -----
> Il 16/09/2014 14:43, Andrew Jones ha scritto:
> > I don't think we need to worry about this case. AFAIU, enabling the
> > caches for a particular cpu shouldn't require any synchronization.
> > So we should be able to do
> > 
> >     enable caches
> >     spin_lock
> >     start other processors
> >     spin_unlock
> 
> Ok, I'll test and apply your patch then.

Actually, yeah, please apply now in order to get A7 boards working.
I'll do a follow-on patch to fix the case above (which will require
deciding how to hand per cpu data).

drew

> 
> Once you change the code to enable caches, please consider hanging on
> spin_lock with caches disabled.
> 
> Paolo
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

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

* Re: [PATCH kvm-unit-tests] arm: fix crash when caches are off
  2014-09-16 12:47         ` Paolo Bonzini
  2014-09-16 12:51           ` Andrew Jones
@ 2014-09-16 12:57           ` Andrew Jones
  2014-09-26  7:51             ` Christoffer Dall
  1 sibling, 1 reply; 14+ messages in thread
From: Andrew Jones @ 2014-09-16 12:57 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: kvmarm, kvm, christoffer dall, marc zyngier



----- Original Message -----
> Il 16/09/2014 14:43, Andrew Jones ha scritto:
> > I don't think we need to worry about this case. AFAIU, enabling the
> > caches for a particular cpu shouldn't require any synchronization.
> > So we should be able to do
> > 
> >     enable caches
> >     spin_lock
> >     start other processors
> >     spin_unlock
> 
> Ok, I'll test and apply your patch then.
> 
> Once you change the code to enable caches, please consider hanging on
> spin_lock with caches disabled.

Unfortunately I can't do that without changing spin_lock into a wrapper
function. Early setup code calls functions that use spin_locks, e.g.
puts(), and we won't want to move the cache enablement into early setup
code, as that should be left for unit tests to turn on off as they wish.
Thus we either need to be able to change the spin_lock implementation
dynamically, or just leave the test/return as is.

drew

> 
> Paolo
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

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

* Re: [PATCH kvm-unit-tests] arm: fix crash when caches are off
  2014-09-16 12:51           ` Andrew Jones
@ 2014-09-16 14:38             ` Andrew Jones
  2014-09-16 18:04               ` Andrew Jones
  0 siblings, 1 reply; 14+ messages in thread
From: Andrew Jones @ 2014-09-16 14:38 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: kvmarm, kvm



----- Original Message -----
> 
> 
> ----- Original Message -----
> > Il 16/09/2014 14:43, Andrew Jones ha scritto:
> > > I don't think we need to worry about this case. AFAIU, enabling the
> > > caches for a particular cpu shouldn't require any synchronization.
> > > So we should be able to do
> > > 
> > >     enable caches
> > >     spin_lock
> > >     start other processors
> > >     spin_unlock
> > 
> > Ok, I'll test and apply your patch then.
> 
> Actually, yeah, please apply now in order to get A7 boards working.
> I'll do a follow-on patch to fix the case above (which will require
> deciding how to hand per cpu data).

Post coffee, I don't see why I shouldn't just use SCTLR.C as my
boolean, which is of course per cpu, and means the same thing,
i.e. caches enabled or not. I'll send a v2 that drops
mem_caches_enabled, and modifies the logic of the spin_lock asm.

drew

> 
> drew
> 
> > 
> > Once you change the code to enable caches, please consider hanging on
> > spin_lock with caches disabled.
> > 
> > Paolo
> > --
> > To unsubscribe from this list: send the line "unsubscribe kvm" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > 
> _______________________________________________
> kvmarm mailing list
> kvmarm@lists.cs.columbia.edu
> https://lists.cs.columbia.edu/mailman/listinfo/kvmarm
> 

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

* Re: [PATCH kvm-unit-tests] arm: fix crash when caches are off
  2014-09-16 14:38             ` Andrew Jones
@ 2014-09-16 18:04               ` Andrew Jones
  0 siblings, 0 replies; 14+ messages in thread
From: Andrew Jones @ 2014-09-16 18:04 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: kvmarm, kvm

On Tue, Sep 16, 2014 at 10:38:11AM -0400, Andrew Jones wrote:
> 
> 
> ----- Original Message -----
> > 
> > 
> > ----- Original Message -----
> > > Il 16/09/2014 14:43, Andrew Jones ha scritto:
> > > > I don't think we need to worry about this case. AFAIU, enabling the
> > > > caches for a particular cpu shouldn't require any synchronization.
> > > > So we should be able to do
> > > > 
> > > >     enable caches
> > > >     spin_lock
> > > >     start other processors
> > > >     spin_unlock
> > > 
> > > Ok, I'll test and apply your patch then.
> > 
> > Actually, yeah, please apply now in order to get A7 boards working.
> > I'll do a follow-on patch to fix the case above (which will require
> > deciding how to hand per cpu data).
> 
> Post coffee, I don't see why I shouldn't just use SCTLR.C as my
> boolean, which is of course per cpu, and means the same thing,
> i.e. caches enabled or not. I'll send a v2 that drops
> mem_caches_enabled, and modifies the logic of the spin_lock asm.

Scratch this idea. It breaks the use of spin_lock from usr mode.
I think plan B is the best, which is; apply this patch, and then I'll
make mem_caches_enabled per cpu later, once we support per cpu data.

> > 
> > > 
> > > Once you change the code to enable caches, please consider hanging on
> > > spin_lock with caches disabled.
> > > 
> > > Paolo
> > > --
> > > To unsubscribe from this list: send the line "unsubscribe kvm" in
> > > the body of a message to majordomo@vger.kernel.org
> > > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > > 
> > _______________________________________________
> > kvmarm mailing list
> > kvmarm@lists.cs.columbia.edu
> > https://lists.cs.columbia.edu/mailman/listinfo/kvmarm
> > 

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

* Re: [PATCH kvm-unit-tests] arm: fix crash when caches are off
  2014-09-16  2:06 [PATCH kvm-unit-tests] arm: fix crash when caches are off Andrew Jones
  2014-09-16  8:14 ` Paolo Bonzini
@ 2014-09-18 10:36 ` Paolo Bonzini
  1 sibling, 0 replies; 14+ messages in thread
From: Paolo Bonzini @ 2014-09-18 10:36 UTC (permalink / raw)
  To: Andrew Jones, kvmarm, kvm; +Cc: christoffer.dall, marc.zyngier

Il 16/09/2014 04:06, Andrew Jones ha scritto:
> We shouldn't try Load-Exclusive instructions unless we've enabled memory
> management, as these instructions depend on the data cache unit's
> coherency monitor. This patch adds a new setup boolean, initialized to false,
> that is used to guard Load-Exclusive instructions. Eventually we'll add more
> setup code that sets it true.
> 
> Note: This problem became visible on boards with Cortex-A7 processors. Testing
> with Cortex-A15 didn't expose it, as those may have an external coherency
> monitor that still allows the instruction to execute (on A7s we got data
> aborts). Although even on A15's it's not clear from the spec if the
> instructions will behave as expected while caches are off, so we no longer
> allow Load-Exclusive instructions on those processors without caches enabled
> either.
> 
> Signed-off-by: Andrew Jones <drjones@redhat.com>
> ---
>  lib/arm/asm/setup.h |  2 ++
>  lib/arm/setup.c     |  1 +
>  lib/arm/spinlock.c  | 10 ++++++++++
>  3 files changed, 13 insertions(+)
> 
> diff --git a/lib/arm/asm/setup.h b/lib/arm/asm/setup.h
> index 21445ef2085fc..9c54c184e2866 100644
> --- a/lib/arm/asm/setup.h
> +++ b/lib/arm/asm/setup.h
> @@ -20,6 +20,8 @@ extern phys_addr_t __phys_offset, __phys_end;
>  #define PHYS_SIZE		(1ULL << PHYS_SHIFT)
>  #define PHYS_MASK		(PHYS_SIZE - 1ULL)
>  
> +extern bool mem_caches_enabled;
> +
>  #define L1_CACHE_SHIFT		6
>  #define L1_CACHE_BYTES		(1 << L1_CACHE_SHIFT)
>  #define SMP_CACHE_BYTES		L1_CACHE_BYTES
> diff --git a/lib/arm/setup.c b/lib/arm/setup.c
> index 3941c9757dcb2..f7ed639c9d499 100644
> --- a/lib/arm/setup.c
> +++ b/lib/arm/setup.c
> @@ -25,6 +25,7 @@ u32 cpus[NR_CPUS] = { [0 ... NR_CPUS-1] = (~0UL) };
>  int nr_cpus;
>  
>  phys_addr_t __phys_offset, __phys_end;
> +bool mem_caches_enabled;
>  
>  static void cpu_set(int fdtnode __unused, u32 regval, void *info __unused)
>  {
> diff --git a/lib/arm/spinlock.c b/lib/arm/spinlock.c
> index d8a6d4c3383d6..43539c5e84062 100644
> --- a/lib/arm/spinlock.c
> +++ b/lib/arm/spinlock.c
> @@ -1,12 +1,22 @@
>  #include "libcflat.h"
>  #include "asm/spinlock.h"
>  #include "asm/barrier.h"
> +#include "asm/setup.h"
>  
>  void spin_lock(struct spinlock *lock)
>  {
>  	u32 val, fail;
>  
>  	dmb();
> +
> +	/*
> +	 * Without caches enabled Load-Exclusive instructions may fail.
> +	 * In that case we do nothing, and just hope the caller knows
> +	 * what they're doing.
> +	 */
> +	if (!mem_caches_enabled)
> +		return;
> +
>  	do {
>  		asm volatile(
>  		"1:	ldrex	%0, [%2]\n"
> 

Tested and pushed.  Thanks!

Paolo

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

* Re: [PATCH kvm-unit-tests] arm: fix crash when caches are off
  2014-09-16 12:57           ` Andrew Jones
@ 2014-09-26  7:51             ` Christoffer Dall
  2014-10-30 15:59               ` Andrew Jones
  0 siblings, 1 reply; 14+ messages in thread
From: Christoffer Dall @ 2014-09-26  7:51 UTC (permalink / raw)
  To: Andrew Jones; +Cc: Paolo Bonzini, kvmarm, kvm, marc zyngier

On Tue, Sep 16, 2014 at 08:57:31AM -0400, Andrew Jones wrote:
> 
> 
> ----- Original Message -----
> > Il 16/09/2014 14:43, Andrew Jones ha scritto:
> > > I don't think we need to worry about this case. AFAIU, enabling the
> > > caches for a particular cpu shouldn't require any synchronization.
> > > So we should be able to do
> > > 
> > >     enable caches
> > >     spin_lock
> > >     start other processors
> > >     spin_unlock
> > 
> > Ok, I'll test and apply your patch then.
> > 
> > Once you change the code to enable caches, please consider hanging on
> > spin_lock with caches disabled.
> 
> Unfortunately I can't do that without changing spin_lock into a wrapper
> function. Early setup code calls functions that use spin_locks, e.g.
> puts(), and we won't want to move the cache enablement into early setup
> code, as that should be left for unit tests to turn on off as they wish.
> Thus we either need to be able to change the spin_lock implementation
> dynamically, or just leave the test/return as is.
> 
My take on this whole thing is that we're doing something fundamentally
wrong.  I think what we should do is to always enable the MMU for
running actual tests, bringing up multiple CPUs etc.  We could have an
early_printf() that doesn't use the spinlock.  I think this will just be
a more stable setup.

Do we have clear ideas of which kinds of tests it would make sense to
run without the MMU turned on?  If we can be more concrete on this
subject, perhaps a special path (or build) that doesn't enable the MMU
for running the aforementioned test cases could be added.

-Christoffer

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

* Re: [PATCH kvm-unit-tests] arm: fix crash when caches are off
  2014-09-26  7:51             ` Christoffer Dall
@ 2014-10-30 15:59               ` Andrew Jones
  0 siblings, 0 replies; 14+ messages in thread
From: Andrew Jones @ 2014-10-30 15:59 UTC (permalink / raw)
  To: Christoffer Dall; +Cc: Paolo Bonzini, kvmarm, kvm, marc zyngier

On Fri, Sep 26, 2014 at 09:51:15AM +0200, Christoffer Dall wrote:
> On Tue, Sep 16, 2014 at 08:57:31AM -0400, Andrew Jones wrote:
> > 
> > 
> > ----- Original Message -----
> > > Il 16/09/2014 14:43, Andrew Jones ha scritto:
> > > > I don't think we need to worry about this case. AFAIU, enabling the
> > > > caches for a particular cpu shouldn't require any synchronization.
> > > > So we should be able to do
> > > > 
> > > >     enable caches
> > > >     spin_lock
> > > >     start other processors
> > > >     spin_unlock
> > > 
> > > Ok, I'll test and apply your patch then.
> > > 
> > > Once you change the code to enable caches, please consider hanging on
> > > spin_lock with caches disabled.
> > 
> > Unfortunately I can't do that without changing spin_lock into a wrapper
> > function. Early setup code calls functions that use spin_locks, e.g.
> > puts(), and we won't want to move the cache enablement into early setup
> > code, as that should be left for unit tests to turn on off as they wish.
> > Thus we either need to be able to change the spin_lock implementation
> > dynamically, or just leave the test/return as is.
> > 
> My take on this whole thing is that we're doing something fundamentally
> wrong.  I think what we should do is to always enable the MMU for
> running actual tests, bringing up multiple CPUs etc.  We could have an
> early_printf() that doesn't use the spinlock.  I think this will just be
> a more stable setup.
> 
> Do we have clear ideas of which kinds of tests it would make sense to
> run without the MMU turned on?  If we can be more concrete on this
> subject, perhaps a special path (or build) that doesn't enable the MMU
> for running the aforementioned test cases could be added.
> 

Finally carving out kvm-unit-tests time again and fixed this properly.
A series is on the list "[kvm-unit-tests PATCH 0/6] arm: enable MMU".

drew

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

end of thread, other threads:[~2014-10-30 16:00 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-16  2:06 [PATCH kvm-unit-tests] arm: fix crash when caches are off Andrew Jones
2014-09-16  8:14 ` Paolo Bonzini
2014-09-16 12:12   ` Andrew Jones
2014-09-16 12:28     ` Paolo Bonzini
2014-09-16 12:43       ` Andrew Jones
2014-09-16 12:47         ` Paolo Bonzini
2014-09-16 12:51           ` Andrew Jones
2014-09-16 14:38             ` Andrew Jones
2014-09-16 18:04               ` Andrew Jones
2014-09-16 12:57           ` Andrew Jones
2014-09-26  7:51             ` Christoffer Dall
2014-10-30 15:59               ` Andrew Jones
2014-09-16 12:48         ` Andrew Jones
2014-09-18 10:36 ` Paolo Bonzini

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.