Re: [Qemu-devel] [PATCH 4/4] PPC: e500: add generic e500 platform

2012-07-02 Thread Andreas Färber
Am 02.07.2012 18:38, schrieb Scott Wood: > On 07/02/2012 11:33 AM, Stuart Yoder wrote: >> On Wed, Jun 27, 2012 at 6:51 PM, Scott Wood wrote: >>> +static QEMUMachine e500plat_machine = { >>> +.name = "e500plat", >>> +.desc = "e500plat", >>> +.init = e500plat_init, >>> +.max_cpus = 1

Re: [Qemu-devel] [PATCH 4/4] PPC: e500: add generic e500 platform

2012-07-02 Thread Scott Wood
On 07/02/2012 11:33 AM, Stuart Yoder wrote: > On Wed, Jun 27, 2012 at 6:51 PM, Scott Wood wrote: >> +static QEMUMachine e500plat_machine = { >> +.name = "e500plat", >> +.desc = "e500plat", >> +.init = e500plat_init, >> +.max_cpus = 15, >> +}; > > Can we call the generic e500 machi

Re: [Qemu-devel] [PATCH 4/4] PPC: e500: add generic e500 platform

2012-07-02 Thread Stuart Yoder
On Wed, Jun 27, 2012 at 6:51 PM, Scott Wood wrote: > This gives the kernel a paravirtualized machine to target, without > requiring both sides to pretend to be targeting a specific board > that likely has little to do with the host in KVM scenarios.  This > avoids the need to add new boards to QEM

[Qemu-devel] [PATCH 4/4] PPC: e500: add generic e500 platform

2012-06-27 Thread Scott Wood
This gives the kernel a paravirtualized machine to target, without requiring both sides to pretend to be targeting a specific board that likely has little to do with the host in KVM scenarios. This avoids the need to add new boards to QEMU, just to be able to run KVM on new CPUs. Signed-off-by: S