1. 28 11月, 2011 13 次提交
  2. 23 9月, 2011 1 次提交
    • P
      omap_intc: Qdevify · 0919ac78
      Peter Maydell 提交于
      Convert the omap_intc devices to qdev. This includes adding
      a 'revision' property which will be needed for omap3.
      
      The bulk of this patch is the replacement of "s->irq[x][y]"
      with  "qdev_get_gpio_in(s->ih[x], y)" now that the interrupt
      controller exposes its input lines as qdev gpio inputs.
      
      The devices are named "omap-intc" and "omap2-intc", following
      the filename and the OMAP2/3 hardware names, although some
      internal functions are still named "omap_inth_*".
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      0919ac78
  3. 21 9月, 2011 6 次提交
  4. 29 8月, 2011 5 次提交
  5. 22 8月, 2011 1 次提交
  6. 21 8月, 2011 1 次提交
  7. 30 7月, 2011 2 次提交
  8. 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
  9. 10 9月, 2010 1 次提交
    • S
      hw/omap: Fix default setup for OMAP UART devices · 6a8aabd3
      Stefan Weil 提交于
      Character devices created by qemu_chr_open don't
      allow duplicate device names, so naming all
      UART devices "null" no longer works.
      
      Running "qemu-system-arm -M n800" (and some other machines)
      results in this error message:
      
      	qemu-system-arm: Duplicate ID 'null' for chardev
      	Can't create serial device, empty char device
      
      This is fixed by setting a default label "uart1",
      "uart2" or "uart3".
      
      Cc: Andrzej Zaborowski <andrew.zaborowski@intel.com>
      Signed-off-by: NStefan Weil <weil@mail.berlios.de>
      6a8aabd3
  10. 01 7月, 2010 9 次提交