1. 23 2月, 2013 5 次提交
  2. 22 2月, 2013 2 次提交
    • G
      unbreak hw/usb/redirect.c build · 82fb0c89
      Gerd Hoffmann 提交于
      Commit 8550a02d added a streams
      parameter to usb_wakeup and didn't update redirect.c.  Fix it.
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      82fb0c89
    • G
      vga: fix byteswapping. · b1424e03
      Gerd Hoffmann 提交于
      In case host and guest endianness differ the vga code first creates
      a shared surface (using qemu_create_displaysurface_from), then goes
      patch the surface format to indicate that the bytes must be swapped.
      
      The switch to pixman broke that hack as the format patching isn't
      propagated into the pixman image, so ui code using the pixman image
      directly (such as vnc) uses the wrong format.
      
      Fix that by adding a byteswap parameter to
      qemu_create_displaysurface_from, so we'll use the correct format
      when creating the surface (and the pixman image) and don't have
      to patch the format afterwards.
      
      [ v2: unbreak xen build ]
      
      Cc: qemu-stable@nongnu.org
      Cc: mark.cave-ayland@ilande.co.uk
      Cc: agraf@suse.de
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      Message-id: 1361349432-23884-1-git-send-email-kraxel@redhat.com
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      b1424e03
  3. 21 2月, 2013 2 次提交
  4. 19 2月, 2013 13 次提交
  5. 18 2月, 2013 1 次提交
  6. 16 2月, 2013 11 次提交
  7. 14 2月, 2013 3 次提交
  8. 13 2月, 2013 2 次提交
  9. 12 2月, 2013 1 次提交
    • K
      hw/m25p80.c: add WRSR(0x01) support · 03ec2f83
      Kuo-Jung Su 提交于
      Atmel, SST and Intel/Numonyx serial flash tend to power up
      with the software protection bits set.
      And thus the new m25p80.c in linux kernel would always tries
      to use WREN(0x06) + WRSR(0x01) to turn-off the protection.
      
      The WEL(0x02) of status register is supposed to be cleared after
      WRSR(0x01). There are also some drivers (i.e mine for RTOSes)
      would check the WEL(0x02) in status register to make sure the
      protection is correctly turned off.
      Signed-off-by: NKuo-Jung Su <dantesu@faraday-tech.com>
      Cc: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
      Cc: Peter Maydell <peter.maydell@linaro.org>
      Cc: Edgar E. Iglesias <edgar.iglesias@gmail.com>
      Reviewed-by: NPeter Crosthwaite <peter.crosthwaite@xilinx.com>
      Signed-off-by: NEdgar E. Iglesias <edgar.iglesias@gmail.com>
      03ec2f83