Re: [SeaBIOS] [PATCH v3 0/3] usb: add xhci support

2013-11-04 Thread Gerd Hoffmann
On Mo, 2013-11-04 at 14:06 +0200, Michael S. Tsirkin wrote: > On Mon, Nov 04, 2013 at 09:52:42AM +0100, Gerd Hoffmann wrote: > > > Looks like this breaks isapc support in qemu. > > > To test: check out qemu 1.6 (latest version has other bugs) > > > > Any chance this is just the size of the bios, i

Re: [SeaBIOS] [PATCH v3 0/3] usb: add xhci support

2013-11-04 Thread Michael S. Tsirkin
On Mon, Nov 04, 2013 at 09:52:42AM +0100, Gerd Hoffmann wrote: > > Looks like this breaks isapc support in qemu. > > To test: check out qemu 1.6 (latest version has other bugs) > > Any chance this is just the size of the bios, i.e. isapc not being able > to deal with a 256k bios? > > cheers, >

Re: [SeaBIOS] [PATCH v3 0/3] usb: add xhci support

2013-11-04 Thread Michael S. Tsirkin
On Mon, Nov 04, 2013 at 09:24:53AM +0200, Michael S. Tsirkin wrote: > On Fri, Sep 13, 2013 at 01:21:08PM +0200, Gerd Hoffmann wrote: > > Hi, > > > > Next version of the xhci support patch series. Changed xhci device > > list to use standard hlist macros. Delete devices from list in > > disconn

Re: [SeaBIOS] [PATCH v3 0/3] usb: add xhci support

2013-11-04 Thread Gerd Hoffmann
> Looks like this breaks isapc support in qemu. > To test: check out qemu 1.6 (latest version has other bugs) Any chance this is just the size of the bios, i.e. isapc not being able to deal with a 256k bios? cheers, Gerd ___ SeaBIOS mailing list S

Re: [SeaBIOS] [PATCH v3 0/3] usb: add xhci support

2013-11-03 Thread Michael S. Tsirkin
On Fri, Sep 13, 2013 at 01:21:08PM +0200, Gerd Hoffmann wrote: > Hi, > > Next version of the xhci support patch series. Changed xhci device > list to use standard hlist macros. Delete devices from list in > disconnect() callback, so we should not have inactive/freed devices > in the list. > >

Re: [SeaBIOS] [PATCH v3 0/3] usb: add xhci support

2013-09-24 Thread Gerd Hoffmann
On Di, 2013-09-24 at 10:36 +0200, Fred . wrote: > Many motherboards come with 64 megabit (8 megabyte) firmware chips. > > So it should be able to handle more than just 128k, preferably more > than 256k too. The size itself isn't the problem. live-migrating from a qemu version with a 128k seabios

Re: [SeaBIOS] [PATCH v3 0/3] usb: add xhci support

2013-09-24 Thread Fred .
Many motherboards come with 64 megabit (8 megabyte) firmware chips. So it should be able to handle more than just 128k, preferably more than 256k too. On Tue, Sep 24, 2013 at 10:31 AM, Michael S. Tsirkin wrote: > On Tue, Sep 24, 2013 at 10:19:39AM +0200, Gerd Hoffmann wrote: > > Hi, > > > > >

Re: [SeaBIOS] [PATCH v3 0/3] usb: add xhci support

2013-09-24 Thread Gerd Hoffmann
> > Yep, that'll work. Your acpi patch series with ACPI_BUILTIN=n might > > bring us under 128k too. But that will most likely not last forever, so > > I guess I'll go for one 128k and one 256k seabios binary with the next > > feature update (aka master branch release). > > > > cheers, > > Ger

Re: [SeaBIOS] [PATCH v3 0/3] usb: add xhci support

2013-09-24 Thread Michael S. Tsirkin
On Tue, Sep 24, 2013 at 10:19:39AM +0200, Gerd Hoffmann wrote: > Hi, > > > > > > > > > With this applied, we crossed over the 128K boundary. > > > > So it won't be easy to put this bios into qemu. > > > > Thoughts? > > > > > > Guess we finally have to deal with the 128k -> 256k jump in qemu th

Re: [SeaBIOS] [PATCH v3 0/3] usb: add xhci support

2013-09-24 Thread Gerd Hoffmann
Hi, > > > > > > With this applied, we crossed over the 128K boundary. > > > So it won't be easy to put this bios into qemu. > > > Thoughts? > > > > Guess we finally have to deal with the 128k -> 256k jump in qemu then. > > CONFIG_USB_XHCI=n should to the trick until this is done. > > > > chee

Re: [SeaBIOS] [PATCH v3 0/3] usb: add xhci support

2013-09-24 Thread Michael S. Tsirkin
On Tue, Sep 24, 2013 at 09:37:13AM +0200, Gerd Hoffmann wrote: > On Mo, 2013-09-23 at 19:35 +0300, Michael S. Tsirkin wrote: > > On Fri, Sep 13, 2013 at 01:21:08PM +0200, Gerd Hoffmann wrote: > > > Hi, > > > > > > Next version of the xhci support patch series. Changed xhci device > > > list to

Re: [SeaBIOS] [PATCH v3 0/3] usb: add xhci support

2013-09-24 Thread Gerd Hoffmann
On Mo, 2013-09-23 at 19:35 +0300, Michael S. Tsirkin wrote: > On Fri, Sep 13, 2013 at 01:21:08PM +0200, Gerd Hoffmann wrote: > > Hi, > > > > Next version of the xhci support patch series. Changed xhci device > > list to use standard hlist macros. Delete devices from list in > > disconnect() ca

Re: [SeaBIOS] [PATCH v3 0/3] usb: add xhci support

2013-09-23 Thread Michael S. Tsirkin
On Fri, Sep 13, 2013 at 01:21:08PM +0200, Gerd Hoffmann wrote: > Hi, > > Next version of the xhci support patch series. Changed xhci device > list to use standard hlist macros. Delete devices from list in > disconnect() callback, so we should not have inactive/freed devices > in the list. > >

Re: [SeaBIOS] [PATCH v3 0/3] usb: add xhci support

2013-09-19 Thread Gerd Hoffmann
On Fr, 2013-09-13 at 13:21 +0200, Gerd Hoffmann wrote: > Next version of the xhci support patch series. Changed xhci device > list to use standard hlist macros. Delete devices from list in > disconnect() callback, so we should not have inactive/freed devices > in the list. Committed now. cheers

[SeaBIOS] [PATCH v3 0/3] usb: add xhci support

2013-09-13 Thread Gerd Hoffmann
Hi, Next version of the xhci support patch series. Changed xhci device list to use standard hlist macros. Delete devices from list in disconnect() callback, so we should not have inactive/freed devices in the list. cheers, Gerd Gerd Hoffmann (3): uas: add (temporary) superspeed stopgap