Re: [Qemu-devel] [PATCH v3 00/10] arm: add ast2500 support

2016-08-12 Thread Cédric Le Goater
On 08/11/2016 12:47 PM, Peter Maydell wrote: > On 2 August 2016 at 18:15, Cédric Le Goater wrote: >> On the AST2500, I am still having a little issue under uboot which >> sets the vbar doing : >> >> mcr p15, 0, r0, c12, c0, 0 /* Set VBAR */ >> >> and this is trapped as an

Re: [Qemu-devel] [PATCH v3 00/10] arm: add ast2500 support

2016-08-12 Thread Peter Maydell
On 12 August 2016 at 09:38, Cédric Le Goater wrote: > On 08/11/2016 12:47 PM, Peter Maydell wrote: >> On 2 August 2016 at 18:15, Cédric Le Goater wrote: >>> On the AST2500, I am still having a little issue under uboot which >>> sets the vbar doing : >>> >>> mcr p15, 0, r0, c12

Re: [Qemu-devel] [PATCH v3 00/10] arm: add ast2500 support

2016-08-11 Thread Peter Maydell
On 2 August 2016 at 18:15, Cédric Le Goater wrote: > On the AST2500, I am still having a little issue under uboot which > sets the vbar doing : > > mcr p15, 0, r0, c12, c0, 0 /* Set VBAR */ > > and this is trapped as an undefined instruction by qemu. > > Looking at hw/

[Qemu-devel] [PATCH v3 00/10] arm: add ast2500 support

2016-08-02 Thread Cédric Le Goater
The AST2500 SoC being very close to the AST2400 SoC, the goal of the changes below is to modify the existing platform palmetto-bmc and the AST2400 SoC to take into account the small differences and avoid code duplication. This is mostly inspired by the realview and the rpi2 platforms. First patche