xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] xen: arm: correct definition of DCISW (data cache invalidate by set/way)
@ 2013-12-06 14:29 Ian Campbell
  2013-12-06 15:21 ` Julien Grall
  0 siblings, 1 reply; 3+ messages in thread
From: Ian Campbell @ 2013-12-06 14:29 UTC (permalink / raw)
  To: xen-devel; +Cc: julien.grall, tim, Ian Campbell, stefano.stabellini

We don't actually use this but I was using it locally for debugging and it
tripped me up.

Also add DCCIMVAC "data cache clean and invalidate by MVA" which is the only
cache op missing from cpregs.h.

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
---
 xen/include/asm-arm/cpregs.h |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/xen/include/asm-arm/cpregs.h b/xen/include/asm-arm/cpregs.h
index 2960492..29cd9d7 100644
--- a/xen/include/asm-arm/cpregs.h
+++ b/xen/include/asm-arm/cpregs.h
@@ -154,7 +154,7 @@
 #define BPIALL          p15,0,c7,c5,6   /* Invalidate entire branch predictor array */
 #define BPIMVA          p15,0,c7,c5,7   /* Invalidate MVA from branch predictor array */
 #define DCIMVAC         p15,0,c7,c6,1   /* Invalidate data cache line by MVA to PoC */
-#define DCISW           p15,0,c7,c2,1   /* Invalidate data cache line by set/way */
+#define DCISW           p15,0,c7,c6,2   /* Invalidate data cache line by set/way */
 #define ATS1CPR         p15,0,c7,c8,0   /* Address Translation Stage 1. Non-Secure Kernel Read */
 #define ATS1CPW         p15,0,c7,c8,1   /* Address Translation Stage 1. Non-Secure Kernel Write */
 #define ATS1CUR         p15,0,c7,c8,2   /* Address Translation Stage 1. Non-Secure User Read */
@@ -166,6 +166,7 @@
 #define DCCMVAC         p15,0,c7,c10,1  /* Clean data or unified cache line by MVA to PoC */
 #define DCCSW           p15,0,c7,c10,2  /* Clean data cache line by set/way */
 #define DCCMVAU         p15,0,c7,c11,1  /* Clean data cache line by MVA to PoU */
+#define DCCIMVAC        p15,0,c7,c14,1  /* Data cache clean and invalidate by MVA */
 #define DCCISW          p15,0,c7,c14,2  /* Clean and invalidate data cache line by set/way */
 #define ATS1HR          p15,4,c7,c8,0   /* Address Translation Stage 1 Hyp. Read */
 #define ATS1HW          p15,4,c7,c8,1   /* Address Translation Stage 1 Hyp. Write */
-- 
1.7.10.4

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

* Re: [PATCH] xen: arm: correct definition of DCISW (data cache invalidate by set/way)
  2013-12-06 14:29 [PATCH] xen: arm: correct definition of DCISW (data cache invalidate by set/way) Ian Campbell
@ 2013-12-06 15:21 ` Julien Grall
  2013-12-09 15:48   ` Ian Campbell
  0 siblings, 1 reply; 3+ messages in thread
From: Julien Grall @ 2013-12-06 15:21 UTC (permalink / raw)
  To: Ian Campbell, xen-devel; +Cc: tim, stefano.stabellini



On 12/06/2013 02:29 PM, Ian Campbell wrote:
> We don't actually use this but I was using it locally for debugging and it
> tripped me up.
>
> Also add DCCIMVAC "data cache clean and invalidate by MVA" which is the only
> cache op missing from cpregs.h.
>
> Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Acked-by: Julien Grall <julien.grall@linaro.org>
> ---
>   xen/include/asm-arm/cpregs.h |    3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/xen/include/asm-arm/cpregs.h b/xen/include/asm-arm/cpregs.h
> index 2960492..29cd9d7 100644
> --- a/xen/include/asm-arm/cpregs.h
> +++ b/xen/include/asm-arm/cpregs.h
> @@ -154,7 +154,7 @@
>   #define BPIALL          p15,0,c7,c5,6   /* Invalidate entire branch predictor array */
>   #define BPIMVA          p15,0,c7,c5,7   /* Invalidate MVA from branch predictor array */
>   #define DCIMVAC         p15,0,c7,c6,1   /* Invalidate data cache line by MVA to PoC */
> -#define DCISW           p15,0,c7,c2,1   /* Invalidate data cache line by set/way */
> +#define DCISW           p15,0,c7,c6,2   /* Invalidate data cache line by set/way */
>   #define ATS1CPR         p15,0,c7,c8,0   /* Address Translation Stage 1. Non-Secure Kernel Read */
>   #define ATS1CPW         p15,0,c7,c8,1   /* Address Translation Stage 1. Non-Secure Kernel Write */
>   #define ATS1CUR         p15,0,c7,c8,2   /* Address Translation Stage 1. Non-Secure User Read */
> @@ -166,6 +166,7 @@
>   #define DCCMVAC         p15,0,c7,c10,1  /* Clean data or unified cache line by MVA to PoC */
>   #define DCCSW           p15,0,c7,c10,2  /* Clean data cache line by set/way */
>   #define DCCMVAU         p15,0,c7,c11,1  /* Clean data cache line by MVA to PoU */
> +#define DCCIMVAC        p15,0,c7,c14,1  /* Data cache clean and invalidate by MVA */
>   #define DCCISW          p15,0,c7,c14,2  /* Clean and invalidate data cache line by set/way */
>   #define ATS1HR          p15,4,c7,c8,0   /* Address Translation Stage 1 Hyp. Read */
>   #define ATS1HW          p15,4,c7,c8,1   /* Address Translation Stage 1 Hyp. Write */
>

-- 
Julien Grall

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

* Re: [PATCH] xen: arm: correct definition of DCISW (data cache invalidate by set/way)
  2013-12-06 15:21 ` Julien Grall
@ 2013-12-09 15:48   ` Ian Campbell
  0 siblings, 0 replies; 3+ messages in thread
From: Ian Campbell @ 2013-12-09 15:48 UTC (permalink / raw)
  To: Julien Grall; +Cc: stefano.stabellini, tim, xen-devel

On Fri, 2013-12-06 at 15:21 +0000, Julien Grall wrote:
> 
> On 12/06/2013 02:29 PM, Ian Campbell wrote:
> > We don't actually use this but I was using it locally for debugging and it
> > tripped me up.
> >
> > Also add DCCIMVAC "data cache clean and invalidate by MVA" which is the only
> > cache op missing from cpregs.h.
> >
> > Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
> Acked-by: Julien Grall <julien.grall@linaro.org>

applied, thanks.

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

end of thread, other threads:[~2013-12-09 15:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-06 14:29 [PATCH] xen: arm: correct definition of DCISW (data cache invalidate by set/way) Ian Campbell
2013-12-06 15:21 ` Julien Grall
2013-12-09 15:48   ` Ian Campbell

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).