Re: [Qemu-devel] [PATCH 1/2] target-arm: make MPIDR a property

2014-02-24 Thread Peter Maydell
On 24 February 2014 23:13, Rob Herring wrote: > On Mon, Feb 24, 2014 at 4:28 PM, Peter Maydell > wrote: >> On 24 February 2014 22:14, Rob Herring wrote: >>> From: Rob Herring >>> MPIDR register is a machine configurable option and current kernels require >>> the value to match with DT cpu reg

Re: [Qemu-devel] [PATCH 1/2] target-arm: make MPIDR a property

2014-02-24 Thread Rob Herring
On Mon, Feb 24, 2014 at 4:28 PM, Peter Maydell wrote: > On 24 February 2014 22:14, Rob Herring wrote: >> From: Rob Herring >> MPIDR register is a machine configurable option and current kernels require >> the value to match with DT cpu reg properties. So add a property for MPIDR >> value and all

Re: [Qemu-devel] [PATCH 1/2] target-arm: make MPIDR a property

2014-02-24 Thread Peter Maydell
On 24 February 2014 22:14, Rob Herring wrote: > From: Rob Herring > MPIDR register is a machine configurable option and current kernels require > the value to match with DT cpu reg properties. So add a property for MPIDR > value and allow platforms to override. > > ARM_FEATURE_MPIDR is not used h

[Qemu-devel] [PATCH 1/2] target-arm: make MPIDR a property

2014-02-24 Thread Rob Herring
From: Rob Herring MPIDR register is a machine configurable option and current kernels require the value to match with DT cpu reg properties. So add a property for MPIDR value and allow platforms to override. ARM_FEATURE_MPIDR is not used here because it is set too late. Signed-off-by: Rob Herri