Re: [SeaBIOS] [PATCH] acpi: Fix acpi dsdt compile warning.

2014-05-12 Thread Kevin O'Connor
On Fri, May 09, 2014 at 09:20:21AM -0400, Kevin O'Connor wrote: > The _EJ0 method should not return a value. FYI, I have pushed this patch along with the three other patches I sent on Thursday. -Kevin ___ SeaBIOS mailing list SeaBIOS@seabios.org http:/

Re: [SeaBIOS] [PATCH 0/2] use full io address space on q35

2014-05-12 Thread Kevin O'Connor
On Mon, May 12, 2014 at 03:28:25PM +0200, Gerd Hoffmann wrote: > Hi, > > This patch adds a config option to move PORT_ACPI_PM_BASE, > then use the full I/O address space on q35. > > Patches have been sent already a few months back, but IIRC we didn't > came to a final conclusion. Resending reb

Re: [SeaBIOS] [PATCH 2/2] Allow using full io region on q35

2014-05-12 Thread Peter Stuge
Gerd Hoffmann wrote: > +++ b/src/fw/pciinit.c ... > @@ -721,16 +728,11 @@ static int pci_bios_init_root_regions_io(struct pci_bus > *bus) > if (sum < 0x4000) { > /* traditional region is big enougth, use it */ > r_io->base = 0xc000; > -} else if (sum < 0x9000) { > +}

[SeaBIOS] [PATCH 2/2] Allow using full io region on q35

2014-05-12 Thread Gerd Hoffmann
Signed-off-by: Gerd Hoffmann --- src/fw/pciinit.c | 16 +--- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/fw/pciinit.c b/src/fw/pciinit.c index bbaecd6..6d637b0 100644 --- a/src/fw/pciinit.c +++ b/src/fw/pciinit.c @@ -36,6 +36,7 @@ u64 pcimem_start = BUILD_PCIME

[SeaBIOS] [PATCH 0/2] use full io address space on q35

2014-05-12 Thread Gerd Hoffmann
Hi, This patch adds a config option to move PORT_ACPI_PM_BASE, then use the full I/O address space on q35. Patches have been sent already a few months back, but IIRC we didn't came to a final conclusion. Resending rebased + with minor help text update to re-kick discussion. cheers, Gerd Ge

[SeaBIOS] [PATCH 1/2] Add config option to move PORT_ACPI_PM_BASE out of the way

2014-05-12 Thread Gerd Hoffmann
Signed-off-by: Gerd Hoffmann --- src/Kconfig | 7 +++ src/fw/paravirt.h | 9 +++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src/Kconfig b/src/Kconfig index a863866..8c9c99a 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -298,6 +298,13 @@ menu "Hardware support"