1. 11 2月, 2012 1 次提交
  2. 04 1月, 2012 1 次提交
    • A
      vmstate, memory: decouple vmstate from memory API · c5705a77
      Avi Kivity 提交于
      Currently creating a memory region automatically registers it for
      live migration.  This differs from other state (which is enumerated
      in a VMStateDescription structure) and ties the live migration code
      into the memory core.
      
      Decouple the two by introducing a separate API, vmstate_register_ram(),
      for registering a RAM block for migration.  Currently the same
      implementation is reused, but later it can be moved into a separate list,
      and registrations can be moved to VMStateDescription blocks.
      Signed-off-by: NAvi Kivity <avi@redhat.com>
      c5705a77
  3. 06 9月, 2011 1 次提交
  4. 04 9月, 2011 1 次提交
    • A
      pflash_cfi01/pflash_cfi02: convert to memory API · cfe5f011
      Avi Kivity 提交于
      cfi02 is annoying in that is ignores some address bits; we probably
      want explicit support in the memory API for that.
      
      In order to get the correct opaque into the MemoryRegion object, the
      allocation scheme is changed so that the flash emulation code allocates
      memory, instead of the caller.  This clears a FIXME in the flash code.
      Signed-off-by: NAvi Kivity <avi@redhat.com>
      cfe5f011
  5. 26 8月, 2011 1 次提交
  6. 25 8月, 2011 1 次提交
  7. 21 8月, 2011 1 次提交
  8. 29 5月, 2011 1 次提交
  9. 08 5月, 2011 1 次提交
  10. 27 4月, 2011 1 次提交
  11. 10 4月, 2011 1 次提交
  12. 21 3月, 2011 1 次提交
    • P
      change all other clock references to use nanosecond resolution accessors · 74475455
      Paolo Bonzini 提交于
      This was done with:
      
          sed -i 's/qemu_get_clock\>/qemu_get_clock_ns/' \
              $(git grep -l 'qemu_get_clock\>' )
          sed -i 's/qemu_new_timer\>/qemu_new_timer_ns/' \
              $(git grep -l 'qemu_new_timer\>' )
      
      after checking that get_clock and new_timer never occur twice
      on the same line.  There were no missed occurrences; however, even
      if there had been, they would have been caught by the compiler.
      
      There was exactly one false positive in qemu_run_timers:
      
           -    current_time = qemu_get_clock (clock);
           +    current_time = qemu_get_clock_ns (clock);
      
      which is of course not in this patch.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      74475455
  13. 11 12月, 2010 1 次提交
    • A
      Add endianness as io mem parameter · 2507c12a
      Alexander Graf 提交于
      As stated before, devices can be little, big or native endian. The
      target endianness is not of their concern, so we need to push things
      down a level.
      
      This patch adds a parameter to cpu_register_io_memory that allows a
      device to choose its endianness. For now, all devices simply choose
      native endian, because that's the same behavior as before.
      Signed-off-by: NAlexander Graf <agraf@suse.de>
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      2507c12a
  14. 26 4月, 2010 1 次提交
  15. 30 3月, 2010 1 次提交
  16. 28 3月, 2010 1 次提交
  17. 02 10月, 2009 2 次提交
  18. 11 9月, 2009 1 次提交
  19. 28 8月, 2009 1 次提交
  20. 26 8月, 2009 1 次提交
  21. 17 7月, 2009 1 次提交
  22. 17 6月, 2009 1 次提交
  23. 14 5月, 2009 1 次提交
  24. 10 4月, 2009 1 次提交
  25. 06 2月, 2009 1 次提交
  26. 05 1月, 2009 1 次提交
  27. 02 12月, 2008 1 次提交
  28. 09 6月, 2008 1 次提交
    • P
      Clean up MMIO TLB handling. · 0f459d16
      pbrook 提交于
      The IO index is now stored in its own field, instead of being wedged
      into the vaddr field.  This eliminates the ROMD and watchpoint host
      pointer weirdness.  The IO index space is expanded by 1 bit, and
      several additional bits are made available in the TLB vaddr field.
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4704 c046a42c-6fe2-441c-8c8c-71466251a162
      0f459d16
  29. 09 5月, 2008 1 次提交
  30. 17 4月, 2008 3 次提交
  31. 10 12月, 2007 2 次提交
  32. 18 11月, 2007 1 次提交
  33. 17 9月, 2007 2 次提交
  34. 09 6月, 2007 1 次提交
  35. 16 4月, 2007 1 次提交