From: Anthony Liguori <anthony@codemonkey.ws>
To: Avi Kivity <avi@redhat.com>
Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org
Subject: Re: [Qemu-devel] [PATCH 17/23] pc: grab system_memory
Date: Mon, 25 Jul 2011 14:22:39 -0500 [thread overview]
Message-ID: <4E2DC27F.5040407@codemonkey.ws> (raw)
In-Reply-To: <1311602584-23409-18-git-send-email-avi@redhat.com>
On 07/25/2011 09:02 AM, Avi Kivity wrote:
> While eventually this should come from the machine initialization function,
> take a short cut to avoid converting all machines now.
>
> Signed-off-by: Avi Kivity<avi@redhat.com>
I think it should happen in the i440fx actually. We should treat RAM as
just another device as it would allow for better support of platforms
with more interesting RAM topologies.
But for right now, this is appropriate.
Reviewed-by: Anthony Liguori <aliguori@us.ibm.com>
Regards,
Anthony Liguori
> ---
> hw/pc.c | 3 ++-
> hw/pc.h | 4 +++-
> hw/pc_piix.c | 8 +++++++-
> 3 files changed, 12 insertions(+), 3 deletions(-)
>
> diff --git a/hw/pc.c b/hw/pc.c
> index a3e8539..369566a 100644
> --- a/hw/pc.c
> +++ b/hw/pc.c
> @@ -957,7 +957,8 @@ void pc_cpus_init(const char *cpu_model)
> }
> }
>
> -void pc_memory_init(const char *kernel_filename,
> +void pc_memory_init(MemoryRegion *system_memory,
> + const char *kernel_filename,
> const char *kernel_cmdline,
> const char *initrd_filename,
> ram_addr_t below_4g_mem_size,
> diff --git a/hw/pc.h b/hw/pc.h
> index 6d5730b..fa57583 100644
> --- a/hw/pc.h
> +++ b/hw/pc.h
> @@ -6,6 +6,7 @@
> #include "isa.h"
> #include "fdc.h"
> #include "net.h"
> +#include "memory.h"
>
> /* PC-style peripherals (also used by other machines). */
>
> @@ -129,7 +130,8 @@ void pc_cmos_set_s3_resume(void *opaque, int irq, int level);
> void pc_acpi_smi_interrupt(void *opaque, int irq, int level);
>
> void pc_cpus_init(const char *cpu_model);
> -void pc_memory_init(const char *kernel_filename,
> +void pc_memory_init(MemoryRegion *system_memory,
> + const char *kernel_filename,
> const char *kernel_cmdline,
> const char *initrd_filename,
> ram_addr_t below_4g_mem_size,
> diff --git a/hw/pc_piix.c b/hw/pc_piix.c
> index c5c16b4..d83854c 100644
> --- a/hw/pc_piix.c
> +++ b/hw/pc_piix.c
> @@ -39,6 +39,8 @@
> #include "blockdev.h"
> #include "smbus.h"
> #include "xen.h"
> +#include "memory.h"
> +#include "exec-memory.h"
> #ifdef CONFIG_XEN
> # include<xen/hvm/hvm_info_table.h>
> #endif
> @@ -89,6 +91,9 @@ static void pc_init1(ram_addr_t ram_size,
> DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
> BusState *idebus[MAX_IDE_BUS];
> ISADevice *rtc_state;
> + MemoryRegion *system_memory;
> +
> + system_memory = get_system_memory();
>
> pc_cpus_init(cpu_model);
>
> @@ -106,7 +111,8 @@ static void pc_init1(ram_addr_t ram_size,
>
> /* allocate ram and load rom/bios */
> if (!xen_enabled()) {
> - pc_memory_init(kernel_filename, kernel_cmdline, initrd_filename,
> + pc_memory_init(system_memory,
> + kernel_filename, kernel_cmdline, initrd_filename,
> below_4g_mem_size, above_4g_mem_size);
> }
>
next prev parent reply other threads:[~2011-07-25 19:22 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-07-25 14:02 [PATCH 00/23] Memory API, batch 1 Avi Kivity
2011-07-25 14:02 ` [PATCH 01/23] Hierarchical memory region API Avi Kivity
2011-07-25 18:41 ` [Qemu-devel] " Anthony Liguori
2011-07-26 9:35 ` Avi Kivity
2011-07-25 14:02 ` [PATCH 02/23] memory: implement dirty tracking Avi Kivity
2011-07-25 18:43 ` Anthony Liguori
2011-07-25 14:02 ` [PATCH 03/23] memory: merge adjacent segments of a single memory region Avi Kivity
2011-07-25 18:48 ` [Qemu-devel] " Anthony Liguori
2011-07-26 9:55 ` Avi Kivity
2011-07-25 14:02 ` [PATCH 04/23] Internal interfaces for memory API Avi Kivity
2011-07-25 18:49 ` [Qemu-devel] " Anthony Liguori
2011-07-25 14:02 ` [PATCH 05/23] memory: abstract address space operations Avi Kivity
2011-07-25 18:51 ` [Qemu-devel] " Anthony Liguori
2011-07-25 14:02 ` [PATCH 06/23] memory: rename MemoryRegion::has_ram_addr to ::terminates Avi Kivity
2011-07-25 18:56 ` [Qemu-devel] " Anthony Liguori
2011-07-26 9:59 ` Avi Kivity
2011-07-25 14:02 ` [PATCH 07/23] memory: late initialization of ram_addr Avi Kivity
2011-07-25 14:02 ` [PATCH 08/23] memory: I/O address space support Avi Kivity
2011-07-25 19:00 ` [Qemu-devel] " Anthony Liguori
2011-07-25 14:02 ` [PATCH 09/23] memory: add backward compatibility for old portio registration Avi Kivity
2011-07-25 19:01 ` [Qemu-devel] " Anthony Liguori
2011-07-25 14:02 ` [PATCH 10/23] memory: add backward compatibility for old mmio registration Avi Kivity
2011-07-25 19:02 ` [Qemu-devel] " Anthony Liguori
2011-07-25 14:02 ` [PATCH 11/23] memory: add ioeventfd support Avi Kivity
2011-07-25 15:16 ` [Qemu-devel] " malc
2011-07-25 15:17 ` Avi Kivity
2011-07-25 15:22 ` malc
2011-07-25 15:28 ` [Qemu-devel] " Avi Kivity
2011-07-25 15:38 ` malc
2011-07-25 15:43 ` Avi Kivity
2011-07-25 19:08 ` Anthony Liguori
2011-07-26 10:08 ` Avi Kivity
2011-07-25 14:02 ` [PATCH 12/23] memory: separate building the final memory map into two steps Avi Kivity
2011-07-25 19:12 ` [Qemu-devel] " Anthony Liguori
2011-07-26 10:43 ` Avi Kivity
2011-07-25 14:02 ` [PATCH 13/23] memory: document the memory API Avi Kivity
2011-07-25 19:15 ` [Qemu-devel] " Anthony Liguori
2011-07-26 10:44 ` Avi Kivity
2011-07-25 14:02 ` [PATCH 14/23] memory: transaction API Avi Kivity
2011-07-25 19:16 ` [Qemu-devel] " Anthony Liguori
2011-07-26 10:48 ` Avi Kivity
2011-07-26 11:39 ` Avi Kivity
2011-07-25 14:02 ` [PATCH 15/23] exec.c: initialize memory map Avi Kivity
2011-07-25 19:17 ` [Qemu-devel] " Anthony Liguori
2011-07-26 10:55 ` Avi Kivity
2011-07-25 14:02 ` [PATCH 16/23] ioport: register ranges by byte aligned addresses always Avi Kivity
2011-07-25 19:20 ` [Qemu-devel] " Anthony Liguori
2011-07-26 10:59 ` Avi Kivity
2011-07-25 14:02 ` [PATCH 17/23] pc: grab system_memory Avi Kivity
2011-07-25 19:22 ` Anthony Liguori [this message]
2011-07-25 14:02 ` [PATCH 18/23] pc: convert pc_memory_init() to memory API Avi Kivity
2011-07-25 19:23 ` [Qemu-devel] " Anthony Liguori
2011-07-25 14:03 ` [PATCH 19/23] pc: move global memory map out of pc_init1() and into its callers Avi Kivity
2011-07-25 20:02 ` [Qemu-devel] " Anthony Liguori
2011-07-26 11:02 ` Avi Kivity
2011-07-25 14:03 ` [PATCH 20/23] pci: pass address space to pci bus when created Avi Kivity
2011-07-25 20:03 ` Anthony Liguori
2011-07-25 14:03 ` [PATCH 21/23] pci: add MemoryRegion based BAR management API Avi Kivity
2011-07-25 20:20 ` Anthony Liguori
2011-07-26 11:06 ` Avi Kivity
2011-07-25 14:03 ` [PATCH 22/23] sysbus: add MemoryRegion based memory " Avi Kivity
2011-07-25 20:21 ` Anthony Liguori
2011-07-25 14:03 ` [PATCH 23/23] usb-ohci: convert to MemoryRegion Avi Kivity
2011-07-25 20:22 ` [Qemu-devel] " Anthony Liguori
2011-07-25 20:23 ` [PATCH 00/23] Memory API, batch 1 Anthony Liguori
2011-07-26 11:32 ` [Qemu-devel] " Avi Kivity
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=4E2DC27F.5040407@codemonkey.ws \
--to=anthony@codemonkey.ws \
--cc=avi@redhat.com \
--cc=kvm@vger.kernel.org \
--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