From: Anthony Liguori <aliguori@us.ibm.com>
To: qemu-devel@nongnu.org
Cc: Izik Eidus <ieidus@redhat.com>
Subject: Re: [Qemu-devel] [PATCH] qemu: change the pc pci mapping to start from 0xc0000000
Date: Mon, 16 Feb 2009 09:40:50 -0600 [thread overview]
Message-ID: <49998902.4010306@us.ibm.com> (raw)
In-Reply-To: <1234406198-14094-2-git-send-email-ieidus@redhat.com>
Izik Eidus wrote:
> This is needed in order to allocate more memory to pci devices
>
> One side effect of this is that non-pea guests cant see more than 3giga
> of ram anymore.
>
> (vbe really sstart at 0xc0000000, pci start right after that)
>
> Signed-off-by: Izik Eidus <ieidus@redhat.com>
> ---
> hw/pc.c | 6 +-
> hw/vga_int.h | 2 +-
> hw/vmware_vga.c | 4 +-
> ...ge-pci-mem-address-to-start-at-0xc0000000.patch | 79 ++++++++++++++++++++
> pc-bios/bios-pq/series | 1 +
> 5 files changed, 86 insertions(+), 6 deletions(-)
> create mode 100644 pc-bios/bios-pq/0011-bios-change-pci-mem-address-to-start-at-0xc0000000.patch
>
> diff --git a/hw/pc.c b/hw/pc.c
> index 57ba803..e26e2b5 100644
> --- a/hw/pc.c
> +++ b/hw/pc.c
> @@ -771,9 +771,9 @@ static void pc_init1(ram_addr_t ram_size, int vga_ram_size,
> BlockDriverState *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
> BlockDriverState *fd[MAX_FD];
>
> - if (ram_size >= 0xe0000000 ) {
> - above_4g_mem_size = ram_size - 0xe0000000;
> - below_4g_mem_size = 0xe0000000;
> + if (ram_size >= 0xc0000000 ) {
> + above_4g_mem_size = ram_size - 0xc0000000;
> + below_4g_mem_size = 0xc0000000;
> } else {
> below_4g_mem_size = ram_size;
> }
> diff --git a/hw/vga_int.h b/hw/vga_int.h
> index f97e98f..57f20bf 100644
> --- a/hw/vga_int.h
> +++ b/hw/vga_int.h
> @@ -59,7 +59,7 @@
> #define VBE_DISPI_LFB_ENABLED 0x40
> #define VBE_DISPI_NOCLEARMEM 0x80
>
> -#define VBE_DISPI_LFB_PHYSICAL_ADDRESS 0xE0000000
> +#define VBE_DISPI_LFB_PHYSICAL_ADDRESS 0xC0000000
>
> #ifdef CONFIG_BOCHS_VBE
>
> diff --git a/hw/vmware_vga.c b/hw/vmware_vga.c
> index d1cba28..5ee0ad6 100644
> --- a/hw/vmware_vga.c
> +++ b/hw/vmware_vga.c
> @@ -118,14 +118,14 @@ struct pci_vmsvga_state_s {
> # define SVGA_IO_BASE SVGA_LEGACY_BASE_PORT
> # define SVGA_IO_MUL 1
> # define SVGA_FIFO_SIZE 0x10000
> -# define SVGA_MEM_BASE 0xe0000000
> +# define SVGA_MEM_BASE 0xc0000000
> # define SVGA_PCI_DEVICE_ID PCI_DEVICE_ID_VMWARE_SVGA2
> #else
> # define SVGA_ID SVGA_ID_1
> # define SVGA_IO_BASE SVGA_LEGACY_BASE_PORT
> # define SVGA_IO_MUL 4
> # define SVGA_FIFO_SIZE 0x10000
> -# define SVGA_MEM_BASE 0xe0000000
> +# define SVGA_MEM_BASE 0xc0000000
> # define SVGA_PCI_DEVICE_ID PCI_DEVICE_ID_VMWARE_SVGA
> #endif
>
> diff --git a/pc-bios/bios-pq/0011-bios-change-pci-mem-address-to-start-at-0xc0000000.patch b/pc-bios/bios-pq/0011-bios-change-pci-mem-address-to-start-at-0xc0000000.patch
>
Can you please split this into a separate patch and CC bochs-devel?
Regards,
Anthony Liguori
next prev parent reply other threads:[~2009-02-16 15:41 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-12 2:36 [Qemu-devel] [PATCH 0/0] qemu: change pci mem address of the pc arch (v2) Izik Eidus
2009-02-12 2:36 ` [Qemu-devel] [PATCH] qemu: change the pc pci mapping to start from 0xc0000000 Izik Eidus
2009-02-16 15:40 ` Anthony Liguori [this message]
2009-02-16 19:39 ` Izik Eidus
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=49998902.4010306@us.ibm.com \
--to=aliguori@us.ibm.com \
--cc=ieidus@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).