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-25 Thread Peter Crosthwaite
On Wed, Apr 25, 2012 at 2:41 AM, Peter Maydell peter.mayd...@linaro.org wrote: On 20 April 2012 03:12, Peter A. G. Crosthwaite peter.crosthwa...@petalogix.com wrote: Added support for multiple devices attached to a single SSI bus (Previously SSI masters with multiple slaves were emulated as

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 peter.crosthwa...@petalogix.com 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 = {    

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 slaves

[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 peter.crosthwa...@petalogix.com --- changed from v2: This patch is new (totally rewitten