1. 26 8月, 2011 1 次提交
  2. 25 8月, 2011 1 次提交
  3. 21 8月, 2011 1 次提交
  4. 29 5月, 2011 1 次提交
  5. 08 5月, 2011 1 次提交
  6. 27 4月, 2011 1 次提交
  7. 10 4月, 2011 1 次提交
  8. 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
  9. 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
  10. 26 4月, 2010 1 次提交
  11. 30 3月, 2010 1 次提交
  12. 28 3月, 2010 1 次提交
  13. 02 10月, 2009 2 次提交
  14. 11 9月, 2009 1 次提交
  15. 28 8月, 2009 1 次提交
  16. 26 8月, 2009 1 次提交
  17. 17 7月, 2009 1 次提交
  18. 17 6月, 2009 1 次提交
  19. 14 5月, 2009 1 次提交
  20. 10 4月, 2009 1 次提交
  21. 06 2月, 2009 1 次提交
  22. 05 1月, 2009 1 次提交
  23. 02 12月, 2008 1 次提交
  24. 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
  25. 09 5月, 2008 1 次提交
  26. 17 4月, 2008 3 次提交
  27. 10 12月, 2007 2 次提交
  28. 18 11月, 2007 1 次提交
  29. 17 9月, 2007 2 次提交
  30. 09 6月, 2007 1 次提交
  31. 16 4月, 2007 1 次提交
  32. 14 4月, 2007 1 次提交
  33. 07 8月, 2006 1 次提交
  34. 04 7月, 2006 1 次提交
  35. 26 6月, 2006 1 次提交