All of lore.kernel.org
 help / color / mirror / Atom feed
From: Avi Kivity <avi@redhat.com>
To: qemu-devel@nongnu.org
Cc: kvm@vger.kernel.org
Subject: [RFC v5 00/86] Memory API
Date: Wed, 20 Jul 2011 19:49:10 +0300	[thread overview]
Message-ID: <1311180636-17012-1-git-send-email-avi@redhat.com> (raw)

New in this version:
  - more mindless conversions; I believe there are no longer any destructive
    operations in the tree (IO_MEM_UNASSIGNED)
  - fix memory map generation bug (patch 13)
  - proper 440FX PAM/SMRAM and PCI holes

Caveats:
- some devices (mostly boards) still grab a global memory region instead of
  inheriting it from their bus.  Seen in the code as #include "exec-memory.h"
- pc RAM initialization is a mess - needs to be refactored; this is because
  memory is set up before the memory controller.

Avi Kivity (86):
  xen: fix xen-mapcache build on non-Xen capable targets
  Hierarchical memory region API
  memory: implement dirty tracking
  memory: merge adjacent segments of a single memory region
  Internal interfaces for memory API
  memory: abstract address space operations
  memory: rename MemoryRegion::has_ram_addr to ::terminates
  memory: late initialization of ram_addr
  memory:  I/O address space support
  memory: add backward compatibility for old portio registration
  memory: add backward compatibility for old mmio registration
  memory: add ioeventfd support
  memory: separate building the final memory map into two steps
  exec.c: initialize memory map
  ioport: register ranges by byte aligned addresses always
  pc: grab system_memory
  pc: convert pc_memory_init() to memory API
  pc: move global memory map out of pc_init1() and into its callers
  pci: pass address space to pci bus when created
  pci: add MemoryRegion based BAR management API
  sysbus: add MemoryRegion based memory management API
  usb-ohci: convert to MemoryRegion
  pci: add API to get a BAR's mapped address
  vmsvga: don't remember pci BAR address in callback any more
  vga: convert vga and its derivatives to the memory API
  cirrus: simplify mmio BAR access functions
  cirrus: simplify bitblt BAR access functions
  cirrus: simplify vga window mmio access functions
  vga: simplify vga window mmio access functions
  cirrus: simplify linear framebuffer access functions
  Integrate I/O memory regions into qemu
  exec.c: fix initialization of system I/O memory region
  pci: pass I/O address space to new PCI bus
  pci: allow I/O BARs to be registered with pci_register_bar_region()
  rtl8139: convert to memory API
  ac97: convert to memory API
  e1000: convert to memory API
  eepro100: convert to memory API
  es1370: convert to memory API
  ide: convert to memory API
  ivshmem: convert to memory API
  virtio-pci: convert to memory API
  ahci: convert to memory API
  intel-hda: convert to memory API
  lsi53c895a: convert to memory API
  ppc: convert to memory API
  ne2000: convert to memory API
  pcnet: convert to memory API
  i6300esb: convert to memory API
  isa-mmio: concert to memory API
  sun4u: convert to memory API
  ehci: convert to memory API
  uhci: convert to memory API
  xen-platform: convert to memory API
  msix: convert to memory API
  pci: remove pci_register_bar_simple()
  pci: convert pci rom to memory API
  pci: remove pci_register_bar()
  pci: fold BAR mapping function into its caller
  pci: rename pci_register_bar_region() to pci_register_bar()
  pci: remove support for pre memory API BARs
  Introduce QEMU_NEW()
  apb_pci: convert to memory API
  apic: convert to memory API
  arm_gic: convert to memory API
  arm_sysctl: convert to memory API
  arm_timer: convert to memory API
  armv7m: convert to memory API
  gt64xxx.c: convert to memory API
  tusb6010: move declarations to new file tusb6010.h
  omap_gpmc/nseries/tusb6010: convert to memory API
  onenand: convert to memory API
  pcie_host: convert to memory API
  ppc405_uc: convert to memory API
  ppc4xx_sdram: convert to memory API
  stellaris_enet: convert to memory API
  sysbus: add a variant of sysbus_init_mmio_cb with an unmap callback
  sh_pci: convert to memory API
  arm11mpcore: use sysbus_init_mmio_cb2
  versatile_pci: convert to memory API
  ppce500_pci: convert to sysbus_init_mmio_cb2()
  sysbus: remove sysbus_init_mmio_cb()
  isa: add isa_address_space()
  pci: add pci_address_space()
  vga: drop get_system_memory() from vga devices and derivatives
  440fx: fix PAM, PCI holes

 Makefile.target     |    1 +
 exec-memory.h       |   28 ++
 exec.c              |   29 ++
 hw/ac97.c           |   88 +++--
 hw/apb_pci.c        |   86 ++---
 hw/apic.c           |   25 +-
 hw/arm11mpcore.c    |    7 +-
 hw/arm_gic.c        |   22 +-
 hw/arm_sysctl.c     |   27 +-
 hw/arm_timer.c      |   55 +--
 hw/armv7m.c         |   24 +-
 hw/armv7m_nvic.c    |    4 +-
 hw/bonito.c         |    5 +-
 hw/cirrus_vga.c     |  469 +++++++---------------
 hw/cuda.c           |    6 +-
 hw/devices.h        |    7 -
 hw/e1000.c          |  113 +++---
 hw/eepro100.c       |  181 ++-------
 hw/es1370.c         |   43 ++-
 hw/escc.c           |   42 +-
 hw/escc.h           |    2 +-
 hw/grackle_pci.c    |    9 +-
 hw/gt64xxx.c        |   42 +-
 hw/heathrow_pic.c   |   29 +-
 hw/ide.h            |    2 +-
 hw/ide/ahci.c       |   31 +-
 hw/ide/ahci.h       |    2 +-
 hw/ide/cmd646.c     |  204 ++++++----
 hw/ide/ich.c        |    3 +-
 hw/ide/macio.c      |   36 +-
 hw/ide/pci.c        |   25 +-
 hw/ide/pci.h        |   19 +-
 hw/ide/piix.c       |   63 +++-
 hw/ide/via.c        |   64 +++-
 hw/intel-hda.c      |   35 +-
 hw/isa-bus.c        |    7 +
 hw/isa.h            |    3 +
 hw/isa_mmio.c       |   30 +-
 hw/ivshmem.c        |  158 +++-----
 hw/lance.c          |   31 +-
 hw/lsi53c895a.c     |  257 +++----------
 hw/mac_dbdma.c      |   32 +-
 hw/mac_dbdma.h      |    4 +-
 hw/mac_nvram.c      |   39 +--
 hw/macio.c          |   73 ++--
 hw/mips_jazz.c      |    4 +-
 hw/mpcore.c         |   37 +-
 hw/msix.c           |   64 +--
 hw/msix.h           |    6 +-
 hw/ne2000-isa.c     |   14 +-
 hw/ne2000.c         |   77 +++--
 hw/ne2000.h         |    8 +-
 hw/nseries.c        |    1 +
 hw/omap.h           |    3 +-
 hw/omap_gpmc.c      |   54 ++--
 hw/onenand.c        |   70 ++--
 hw/openpic.c        |   81 ++--
 hw/openpic.h        |    2 +-
 hw/pc.c             |   71 +++-
 hw/pc.h             |   27 +-
 hw/pc_piix.c        |   43 ++-
 hw/pci.c            |  113 +++---
 hw/pci.h            |   32 +-
 hw/pci_host.h       |    1 +
 hw/pci_internals.h  |    2 +
 hw/pcie_host.c      |   98 ++----
 hw/pcie_host.h      |   12 +-
 hw/pcnet-pci.c      |   74 ++--
 hw/pcnet.h          |    4 +-
 hw/piix_pci.c       |  123 +++++--
 hw/ppc405.h         |    9 +-
 hw/ppc405_boards.c  |   18 +-
 hw/ppc405_uc.c      |  129 +++----
 hw/ppc440.c         |    7 +-
 hw/ppc4xx.h         |    2 +
 hw/ppc4xx_devs.c    |   51 ++-
 hw/ppc4xx_pci.c     |    6 +-
 hw/ppc_mac.h        |   30 +-
 hw/ppc_newworld.c   |   35 +-
 hw/ppc_oldworld.c   |   28 +-
 hw/ppc_prep.c       |    3 +-
 hw/ppce500_pci.c    |   19 +-
 hw/prep_pci.c       |    9 +-
 hw/prep_pci.h       |    5 +-
 hw/qxl-render.c     |    2 +-
 hw/qxl.c            |  131 +++----
 hw/qxl.h            |    6 +-
 hw/realview_gic.c   |   38 +-
 hw/rtl8139.c        |   70 ++--
 hw/sh_pci.c         |   69 +++-
 hw/stellaris_enet.c |   29 +-
 hw/sun4u.c          |   53 +--
 hw/sysbus.c         |   36 ++-
 hw/sysbus.h         |    8 +-
 hw/tusb6010.c       |   32 +-
 hw/tusb6010.h       |   13 +
 hw/unin_pci.c       |   18 +-
 hw/usb-ehci.c       |   36 +--
 hw/usb-ohci.c       |   42 +--
 hw/usb-uhci.c       |   41 ++-
 hw/versatile_pci.c  |   96 +++---
 hw/vga-isa-mm.c     |   55 ++-
 hw/vga-isa.c        |   11 +-
 hw/vga-pci.c        |   31 +--
 hw/vga.c            |  180 +++------
 hw/vga_int.h        |   23 +-
 hw/virtio-pci.c     |   89 ++---
 hw/virtio-pci.h     |    3 +-
 hw/vmware_vga.c     |  160 ++++----
 hw/wdt_i6300esb.c   |   43 ++-
 hw/xen_platform.c   |   82 +++--
 ioport.c            |    4 +-
 memory.c            | 1112 +++++++++++++++++++++++++++++++++++++++++++++++++++
 memory.h            |  251 ++++++++++++
 qemu-common.h       |    3 +
 xen-mapcache.h      |   32 ++
 116 files changed, 3916 insertions(+), 2717 deletions(-)
 create mode 100644 exec-memory.h
 create mode 100644 hw/tusb6010.h
 create mode 100644 memory.c
 create mode 100644 memory.h

-- 
1.7.5.3


WARNING: multiple messages have this Message-ID (diff)
From: Avi Kivity <avi@redhat.com>
To: qemu-devel@nongnu.org
Cc: kvm@vger.kernel.org
Subject: [Qemu-devel] [RFC v5 00/86] Memory API
Date: Wed, 20 Jul 2011 19:49:10 +0300	[thread overview]
Message-ID: <1311180636-17012-1-git-send-email-avi@redhat.com> (raw)

New in this version:
  - more mindless conversions; I believe there are no longer any destructive
    operations in the tree (IO_MEM_UNASSIGNED)
  - fix memory map generation bug (patch 13)
  - proper 440FX PAM/SMRAM and PCI holes

Caveats:
- some devices (mostly boards) still grab a global memory region instead of
  inheriting it from their bus.  Seen in the code as #include "exec-memory.h"
- pc RAM initialization is a mess - needs to be refactored; this is because
  memory is set up before the memory controller.

Avi Kivity (86):
  xen: fix xen-mapcache build on non-Xen capable targets
  Hierarchical memory region API
  memory: implement dirty tracking
  memory: merge adjacent segments of a single memory region
  Internal interfaces for memory API
  memory: abstract address space operations
  memory: rename MemoryRegion::has_ram_addr to ::terminates
  memory: late initialization of ram_addr
  memory:  I/O address space support
  memory: add backward compatibility for old portio registration
  memory: add backward compatibility for old mmio registration
  memory: add ioeventfd support
  memory: separate building the final memory map into two steps
  exec.c: initialize memory map
  ioport: register ranges by byte aligned addresses always
  pc: grab system_memory
  pc: convert pc_memory_init() to memory API
  pc: move global memory map out of pc_init1() and into its callers
  pci: pass address space to pci bus when created
  pci: add MemoryRegion based BAR management API
  sysbus: add MemoryRegion based memory management API
  usb-ohci: convert to MemoryRegion
  pci: add API to get a BAR's mapped address
  vmsvga: don't remember pci BAR address in callback any more
  vga: convert vga and its derivatives to the memory API
  cirrus: simplify mmio BAR access functions
  cirrus: simplify bitblt BAR access functions
  cirrus: simplify vga window mmio access functions
  vga: simplify vga window mmio access functions
  cirrus: simplify linear framebuffer access functions
  Integrate I/O memory regions into qemu
  exec.c: fix initialization of system I/O memory region
  pci: pass I/O address space to new PCI bus
  pci: allow I/O BARs to be registered with pci_register_bar_region()
  rtl8139: convert to memory API
  ac97: convert to memory API
  e1000: convert to memory API
  eepro100: convert to memory API
  es1370: convert to memory API
  ide: convert to memory API
  ivshmem: convert to memory API
  virtio-pci: convert to memory API
  ahci: convert to memory API
  intel-hda: convert to memory API
  lsi53c895a: convert to memory API
  ppc: convert to memory API
  ne2000: convert to memory API
  pcnet: convert to memory API
  i6300esb: convert to memory API
  isa-mmio: concert to memory API
  sun4u: convert to memory API
  ehci: convert to memory API
  uhci: convert to memory API
  xen-platform: convert to memory API
  msix: convert to memory API
  pci: remove pci_register_bar_simple()
  pci: convert pci rom to memory API
  pci: remove pci_register_bar()
  pci: fold BAR mapping function into its caller
  pci: rename pci_register_bar_region() to pci_register_bar()
  pci: remove support for pre memory API BARs
  Introduce QEMU_NEW()
  apb_pci: convert to memory API
  apic: convert to memory API
  arm_gic: convert to memory API
  arm_sysctl: convert to memory API
  arm_timer: convert to memory API
  armv7m: convert to memory API
  gt64xxx.c: convert to memory API
  tusb6010: move declarations to new file tusb6010.h
  omap_gpmc/nseries/tusb6010: convert to memory API
  onenand: convert to memory API
  pcie_host: convert to memory API
  ppc405_uc: convert to memory API
  ppc4xx_sdram: convert to memory API
  stellaris_enet: convert to memory API
  sysbus: add a variant of sysbus_init_mmio_cb with an unmap callback
  sh_pci: convert to memory API
  arm11mpcore: use sysbus_init_mmio_cb2
  versatile_pci: convert to memory API
  ppce500_pci: convert to sysbus_init_mmio_cb2()
  sysbus: remove sysbus_init_mmio_cb()
  isa: add isa_address_space()
  pci: add pci_address_space()
  vga: drop get_system_memory() from vga devices and derivatives
  440fx: fix PAM, PCI holes

 Makefile.target     |    1 +
 exec-memory.h       |   28 ++
 exec.c              |   29 ++
 hw/ac97.c           |   88 +++--
 hw/apb_pci.c        |   86 ++---
 hw/apic.c           |   25 +-
 hw/arm11mpcore.c    |    7 +-
 hw/arm_gic.c        |   22 +-
 hw/arm_sysctl.c     |   27 +-
 hw/arm_timer.c      |   55 +--
 hw/armv7m.c         |   24 +-
 hw/armv7m_nvic.c    |    4 +-
 hw/bonito.c         |    5 +-
 hw/cirrus_vga.c     |  469 +++++++---------------
 hw/cuda.c           |    6 +-
 hw/devices.h        |    7 -
 hw/e1000.c          |  113 +++---
 hw/eepro100.c       |  181 ++-------
 hw/es1370.c         |   43 ++-
 hw/escc.c           |   42 +-
 hw/escc.h           |    2 +-
 hw/grackle_pci.c    |    9 +-
 hw/gt64xxx.c        |   42 +-
 hw/heathrow_pic.c   |   29 +-
 hw/ide.h            |    2 +-
 hw/ide/ahci.c       |   31 +-
 hw/ide/ahci.h       |    2 +-
 hw/ide/cmd646.c     |  204 ++++++----
 hw/ide/ich.c        |    3 +-
 hw/ide/macio.c      |   36 +-
 hw/ide/pci.c        |   25 +-
 hw/ide/pci.h        |   19 +-
 hw/ide/piix.c       |   63 +++-
 hw/ide/via.c        |   64 +++-
 hw/intel-hda.c      |   35 +-
 hw/isa-bus.c        |    7 +
 hw/isa.h            |    3 +
 hw/isa_mmio.c       |   30 +-
 hw/ivshmem.c        |  158 +++-----
 hw/lance.c          |   31 +-
 hw/lsi53c895a.c     |  257 +++----------
 hw/mac_dbdma.c      |   32 +-
 hw/mac_dbdma.h      |    4 +-
 hw/mac_nvram.c      |   39 +--
 hw/macio.c          |   73 ++--
 hw/mips_jazz.c      |    4 +-
 hw/mpcore.c         |   37 +-
 hw/msix.c           |   64 +--
 hw/msix.h           |    6 +-
 hw/ne2000-isa.c     |   14 +-
 hw/ne2000.c         |   77 +++--
 hw/ne2000.h         |    8 +-
 hw/nseries.c        |    1 +
 hw/omap.h           |    3 +-
 hw/omap_gpmc.c      |   54 ++--
 hw/onenand.c        |   70 ++--
 hw/openpic.c        |   81 ++--
 hw/openpic.h        |    2 +-
 hw/pc.c             |   71 +++-
 hw/pc.h             |   27 +-
 hw/pc_piix.c        |   43 ++-
 hw/pci.c            |  113 +++---
 hw/pci.h            |   32 +-
 hw/pci_host.h       |    1 +
 hw/pci_internals.h  |    2 +
 hw/pcie_host.c      |   98 ++----
 hw/pcie_host.h      |   12 +-
 hw/pcnet-pci.c      |   74 ++--
 hw/pcnet.h          |    4 +-
 hw/piix_pci.c       |  123 +++++--
 hw/ppc405.h         |    9 +-
 hw/ppc405_boards.c  |   18 +-
 hw/ppc405_uc.c      |  129 +++----
 hw/ppc440.c         |    7 +-
 hw/ppc4xx.h         |    2 +
 hw/ppc4xx_devs.c    |   51 ++-
 hw/ppc4xx_pci.c     |    6 +-
 hw/ppc_mac.h        |   30 +-
 hw/ppc_newworld.c   |   35 +-
 hw/ppc_oldworld.c   |   28 +-
 hw/ppc_prep.c       |    3 +-
 hw/ppce500_pci.c    |   19 +-
 hw/prep_pci.c       |    9 +-
 hw/prep_pci.h       |    5 +-
 hw/qxl-render.c     |    2 +-
 hw/qxl.c            |  131 +++----
 hw/qxl.h            |    6 +-
 hw/realview_gic.c   |   38 +-
 hw/rtl8139.c        |   70 ++--
 hw/sh_pci.c         |   69 +++-
 hw/stellaris_enet.c |   29 +-
 hw/sun4u.c          |   53 +--
 hw/sysbus.c         |   36 ++-
 hw/sysbus.h         |    8 +-
 hw/tusb6010.c       |   32 +-
 hw/tusb6010.h       |   13 +
 hw/unin_pci.c       |   18 +-
 hw/usb-ehci.c       |   36 +--
 hw/usb-ohci.c       |   42 +--
 hw/usb-uhci.c       |   41 ++-
 hw/versatile_pci.c  |   96 +++---
 hw/vga-isa-mm.c     |   55 ++-
 hw/vga-isa.c        |   11 +-
 hw/vga-pci.c        |   31 +--
 hw/vga.c            |  180 +++------
 hw/vga_int.h        |   23 +-
 hw/virtio-pci.c     |   89 ++---
 hw/virtio-pci.h     |    3 +-
 hw/vmware_vga.c     |  160 ++++----
 hw/wdt_i6300esb.c   |   43 ++-
 hw/xen_platform.c   |   82 +++--
 ioport.c            |    4 +-
 memory.c            | 1112 +++++++++++++++++++++++++++++++++++++++++++++++++++
 memory.h            |  251 ++++++++++++
 qemu-common.h       |    3 +
 xen-mapcache.h      |   32 ++
 116 files changed, 3916 insertions(+), 2717 deletions(-)
 create mode 100644 exec-memory.h
 create mode 100644 hw/tusb6010.h
 create mode 100644 memory.c
 create mode 100644 memory.h

-- 
1.7.5.3

             reply	other threads:[~2011-07-20 16:50 UTC|newest]

Thread overview: 218+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-20 16:49 Avi Kivity [this message]
2011-07-20 16:49 ` [Qemu-devel] [RFC v5 00/86] Memory API Avi Kivity
2011-07-20 16:49 ` [RFC v5 01/86] xen: fix xen-mapcache build on non-Xen capable targets Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 02/86] Hierarchical memory region API Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 03/86] memory: implement dirty tracking Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 04/86] memory: merge adjacent segments of a single memory region Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 05/86] Internal interfaces for memory API Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 06/86] memory: abstract address space operations Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 07/86] memory: rename MemoryRegion::has_ram_addr to ::terminates Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 08/86] memory: late initialization of ram_addr Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 09/86] memory: I/O address space support Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 10/86] memory: add backward compatibility for old portio registration Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 11/86] memory: add backward compatibility for old mmio registration Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 12/86] memory: add ioeventfd support Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-21 19:55   ` Blue Swirl
2011-07-22  7:05     ` Avi Kivity
2011-07-22  7:05       ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 13/86] memory: separate building the final memory map into two steps Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 14/86] exec.c: initialize memory map Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 15/86] ioport: register ranges by byte aligned addresses always Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 16/86] pc: grab system_memory Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 17/86] pc: convert pc_memory_init() to memory API Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 18/86] pc: move global memory map out of pc_init1() and into its callers Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 19/86] pci: pass address space to pci bus when created Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 20/86] pci: add MemoryRegion based BAR management API Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 21/86] sysbus: add MemoryRegion based memory " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 22/86] usb-ohci: convert to MemoryRegion Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 23/86] pci: add API to get a BAR's mapped address Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 24/86] vmsvga: don't remember pci BAR address in callback any more Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 25/86] vga: convert vga and its derivatives to the memory API Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 26/86] cirrus: simplify mmio BAR access functions Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 27/86] cirrus: simplify bitblt " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 28/86] cirrus: simplify vga window mmio " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 29/86] vga: " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 30/86] cirrus: simplify linear framebuffer " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 31/86] Integrate I/O memory regions into qemu Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 32/86] exec.c: fix initialization of system I/O memory region Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 33/86] pci: pass I/O address space to new PCI bus Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 34/86] pci: allow I/O BARs to be registered with pci_register_bar_region() Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 35/86] rtl8139: convert to memory API Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 36/86] ac97: " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 37/86] e1000: " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 38/86] eepro100: " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 39/86] es1370: " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 40/86] ide: " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 41/86] ivshmem: " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 42/86] virtio-pci: " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 43/86] ahci: " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 44/86] intel-hda: " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 45/86] lsi53c895a: " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 46/86] ppc: " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 47/86] ne2000: " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 48/86] pcnet: " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:49 ` [RFC v5 49/86] i6300esb: " Avi Kivity
2011-07-20 16:49   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 50/86] isa-mmio: concert " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 51/86] sun4u: convert " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 52/86] ehci: " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 53/86] uhci: " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 54/86] xen-platform: " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 55/86] msix: " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 56/86] pci: remove pci_register_bar_simple() Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 57/86] pci: convert pci rom to memory API Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 58/86] pci: remove pci_register_bar() Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 59/86] pci: fold BAR mapping function into its caller Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 60/86] pci: rename pci_register_bar_region() to pci_register_bar() Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 61/86] pci: remove support for pre memory API BARs Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 62/86] Introduce QEMU_NEW() Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 63/86] apb_pci: convert to memory API Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 64/86] apic: " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 65/86] arm_gic: " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 66/86] arm_sysctl: " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 67/86] arm_timer: " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 68/86] armv7m: " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 69/86] gt64xxx.c: " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 70/86] tusb6010: move declarations to new file tusb6010.h Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 71/86] omap_gpmc/nseries/tusb6010: convert to memory API Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 72/86] onenand: " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 73/86] pcie_host: " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 74/86] ppc405_uc: " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 75/86] ppc4xx_sdram: " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 76/86] stellaris_enet: " Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 77/86] sysbus: add a variant of sysbus_init_mmio_cb with an unmap callback Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 78/86] sh_pci: convert to memory API Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 79/86] arm11mpcore: use sysbus_init_mmio_cb2 Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 80/86] versatile_pci: convert to memory API Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 81/86] ppce500_pci: convert to sysbus_init_mmio_cb2() Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 82/86] sysbus: remove sysbus_init_mmio_cb() Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 83/86] isa: add isa_address_space() Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 84/86] pci: add pci_address_space() Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 85/86] vga: drop get_system_memory() from vga devices and derivatives Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-20 16:50 ` [RFC v5 86/86] 440fx: fix PAM, PCI holes Avi Kivity
2011-07-20 16:50   ` [Qemu-devel] " Avi Kivity
2011-07-25 13:07   ` Anthony Liguori
2011-07-25 13:14     ` Avi Kivity
2011-07-25 13:17       ` Gleb Natapov
2011-07-25 13:17         ` Gleb Natapov
2011-07-25 13:28         ` Avi Kivity
2011-07-25 13:28           ` Avi Kivity
2011-07-25 13:31           ` Gleb Natapov
2011-07-25 13:31             ` Gleb Natapov
2011-07-25 13:31           ` Avi Kivity
2011-07-25 13:31             ` Avi Kivity
2011-07-25 13:35             ` Gleb Natapov
2011-07-25 13:35               ` Gleb Natapov
2011-07-25 13:38               ` Avi Kivity
2011-07-25 13:38                 ` Avi Kivity
2011-07-25 13:47                 ` Anthony Liguori
2011-07-25 13:47                   ` [Qemu-devel] " Anthony Liguori
2011-07-25 13:50                   ` Gleb Natapov
2011-07-25 13:50                     ` Gleb Natapov
2011-07-25 14:05                   ` Avi Kivity
2011-07-25 14:05                     ` Avi Kivity
2011-07-25 14:08                     ` Anthony Liguori
2011-07-25 14:10                       ` Avi Kivity
2011-07-25 13:32           ` Anthony Liguori
2011-07-25 13:32             ` Anthony Liguori
2011-07-25 21:34   ` Eric Northup
2011-07-25 21:34     ` [Qemu-devel] " Eric Northup
2011-07-26  8:01     ` Avi Kivity
2011-07-26  8:01       ` [Qemu-devel] " Avi Kivity
2011-07-20 17:41 ` [RFC v5 00/86] Memory API Jan Kiszka
2011-07-20 17:41   ` [Qemu-devel] " Jan Kiszka
2011-07-20 17:43   ` Avi Kivity
2011-07-20 17:43     ` [Qemu-devel] " Avi Kivity
2011-07-20 21:43     ` Jan Kiszka
2011-07-20 21:43       ` [Qemu-devel] " Jan Kiszka
2011-07-21  8:37       ` Avi Kivity
2011-07-21 13:38         ` Jan Kiszka
2011-07-21 13:43           ` Avi Kivity
2011-07-21 14:19             ` Jan Kiszka
2011-07-21 14:31               ` Avi Kivity
2011-07-21 14:34                 ` Jan Kiszka
2011-07-21 14:40                   ` 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=1311180636-17012-1-git-send-email-avi@redhat.com \
    --to=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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.