Re: [Qemu-devel] [PATCH v3 1/4] SSI: Built in multiple device support

2012-04-25 Thread Peter Crosthwaite
On Wed, Apr 25, 2012 at 2:41 AM, Peter Maydell wrote: > On 20 April 2012 03:12, Peter A. G. Crosthwaite > wrote: >> Added support for multiple devices attached to a single SSI bus (Previously >> SSI masters with multiple slaves were emulated as multiple point to point SSI >> busses) > >>  static

Re: [Qemu-devel] [PATCH v3 1/4] SSI: Built in multiple device support

2012-04-25 Thread Paul Brook
> Im happy to spend the 10 mins updating stellaris.c accordingly, but is > someone sitting on a binary package and brief instructions or some > such to regression test it? Do you of this machine have some sort of > kernel image handy? I've attached a tarball with some test binaries. They're built

Re: [Qemu-devel] [PATCH v3 1/4] SSI: Built in multiple device support

2012-04-24 Thread Peter Maydell
On 20 April 2012 03:12, Peter A. G. Crosthwaite wrote: > Added support for multiple devices attached to a single SSI bus (Previously > SSI masters with multiple slaves were emulated as multiple point to point SSI > busses) >  static struct BusInfo ssi_bus_info = { >     .name = "SSI", >     .size

Re: [Qemu-devel] [PATCH v3 1/4] SSI: Built in multiple device support

2012-04-23 Thread Peter Crosthwaite
Hi Paul, Im happy to spend the 10 mins updating stellaris.c accordingly, but is someone sitting on a binary package and brief instructions or some such to regression test it? Do you of this machine have some sort of kernel image handy? Peter 2012/4/21 Paul Brook : >>  /* QEMU Synchronous Serial

Re: [Qemu-devel] [PATCH v3 1/4] SSI: Built in multiple device support

2012-04-20 Thread Paul Brook
> /* QEMU Synchronous Serial Interface support. */ > > -/* In principle SSI is a point-point interface. As such the qemu > - implementation has a single slave device on a "bus". > +/* In principle SSI is a point-point interface. > However it is fairly common for boards to have multiple sl

[Qemu-devel] [PATCH v3 1/4] SSI: Built in multiple device support

2012-04-19 Thread Peter A. G. Crosthwaite
Added support for multiple devices attached to a single SSI bus (Previously SSI masters with multiple slaves were emulated as multiple point to point SSI busses) Signed-off-by: Peter A. G. Crosthwaite --- changed from v2: This patch is new (totally rewitten replacement of (1/4) from v2) hw/spit