Re: [Qemu-devel] [PATCH 3/3] target-arm: Implement cp15 VA->PA translation

2011-02-17 Thread Adam Lackorzynski
Hi, thanks for the review! On Wed Feb 16, 2011 at 15:57:59 +, Peter Maydell wrote: > On 15 February 2011 10:49, Adam Lackorzynski > wrote: > > Implement VA->PA translations by cp15-c7 that went through unchanged > > previously. > > > +        uint32_t c7_par;  /* Translation result. */ >

Re: [Qemu-devel] [PATCH 3/3] target-arm: Implement cp15 VA->PA translation

2011-02-16 Thread Peter Maydell
On 15 February 2011 10:49, Adam Lackorzynski wrote: > Implement VA->PA translations by cp15-c7 that went through unchanged > previously. > +        uint32_t c7_par;  /* Translation result. */ I think this new env field needs extra code so it is saved and loaded by machine.c:cpu_save() and cpu_lo

[Qemu-devel] [PATCH 3/3] target-arm: Implement cp15 VA->PA translation

2011-02-15 Thread Adam Lackorzynski
Implement VA->PA translations by cp15-c7 that went through unchanged previously. Signed-off-by: Adam Lackorzynski --- target-arm/cpu.h|1 + target-arm/helper.c | 51 +-- 2 files changed, 50 insertions(+), 2 deletions(-) diff --git a/tar