Re: [Qemu-devel] [PATCH] target-arm: Prepare cpreg writefns/readfns for EL3/SecExt

2014-06-04 Thread Aggeler Fabian
On 31 May 2014, at 02:09, Peter Crosthwaite peter.crosthwa...@xilinx.com wrote: On Fri, May 16, 2014 at 10:43 PM, Fabian Aggeler aggel...@ethz.ch wrote: This patch changes some readfns/writefns to use raw_write and raw_read functions, wich use the fieldoffset specified which in

Re: [Qemu-devel] [PATCH] target-arm: Prepare cpreg writefns/readfns for EL3/SecExt

2014-05-30 Thread Aggeler Fabian
Ping. This patch was suggested to be sent separately but I can also include it to the TZ patchset again. http://patchwork.ozlabs.org/patch/349592/ Thanks, Fabian On 16 May 2014, at 14:43, Fabian Aggeler aggel...@ethz.ch wrote: This patch changes some readfns/writefns to use raw_write and

Re: [Qemu-devel] [PATCH] target-arm: Prepare cpreg writefns/readfns for EL3/SecExt

2014-05-30 Thread Peter Crosthwaite
On Fri, May 16, 2014 at 10:43 PM, Fabian Aggeler aggel...@ethz.ch wrote: This patch changes some readfns/writefns to use raw_write and raw_read functions, wich use the fieldoffset specified which in ARMCPRegInfo instead of directly accessing the field. This will simplify patches for EL3

[Qemu-devel] [PATCH] target-arm: Prepare cpreg writefns/readfns for EL3/SecExt

2014-05-16 Thread Fabian Aggeler
This patch changes some readfns/writefns to use raw_write and raw_read functions, wich use the fieldoffset specified in ARMCPRegInfo instead of directly accessing the field. This will simplify patches for EL3 Security Extensions. Signed-off-by: Fabian Aggeler aggel...@ethz.ch --- This patch was