1. 10 10月, 2017 1 次提交
  2. 29 9月, 2017 1 次提交
  3. 06 9月, 2017 1 次提交
  4. 01 9月, 2017 1 次提交
  5. 14 8月, 2017 1 次提交
    • E
      unicore32: abort when entering "x 0" on the monitor · 0ac241bc
      Eduardo Otubo 提交于
      Starting Qemu with "qemu-system-unicore32 -M puv3,accel=qtest -S -nographic"
      and entering "x 0 " at the monitor prompt leads to abort():
      
        $ ./unicore32-softmmu/qemu-system-unicore32 -M puv3,accel=qtest -S -nographic
        QEMU 2.9.90 monitor - type 'help' for more information
        (qemu) x 0
        qemu: fatal: uc32_cpu_get_phys_page_debug not supported yet
      
        R00=00000000 R01=00000000 R02=00000000 R03=00000000
        R04=00000000 R05=00000000 R06=00000000 R07=00000000
        R08=00000000 R09=00000000 R10=00000000 R11=00000000
        R12=00000000 R13=00000000 R14=00000000 R15=00000000
        R16=00000000 R17=00000000 R18=00000000 R19=00000000
        R20=00000000 R21=00000000 R22=00000000 R23=00000000
        R24=00000000 R25=00000000 R26=00000000 R27=00000000
        R28=00000000 R29=00000000 R30=00000000 R31=03000000
        PSR=40000013 -Z-- PRIV
        Aborted (core dumped)
      
      This happens because uc32_cpu_get_phys_page_debug() is not implemented
      yet, this is a temporary workaround to avoid the crash.
      Signed-off-by: NEduardo Otubo <otubo@redhat.com>
      Signed-off-by: NMichael Tokarev <mjt@tls.msk.ru>
      0ac241bc
  6. 20 7月, 2017 1 次提交
  7. 13 1月, 2017 1 次提交
  8. 11 1月, 2017 1 次提交
  9. 21 12月, 2016 1 次提交
    • T
      Move target-* CPU file into a target/ folder · fcf5ef2a
      Thomas Huth 提交于
      We've currently got 18 architectures in QEMU, and thus 18 target-xxx
      folders in the root folder of the QEMU source tree. More architectures
      (e.g. RISC-V, AVR) are likely to be included soon, too, so the main
      folder of the QEMU sources slowly gets quite overcrowded with the
      target-xxx folders.
      To disburden the main folder a little bit, let's move the target-xxx
      folders into a dedicated target/ folder, so that target-xxx/ simply
      becomes target/xxx/ instead.
      
      Acked-by: Laurent Vivier <laurent@vivier.eu> [m68k part]
      Acked-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> [tricore part]
      Acked-by: Michael Walle <michael@walle.cc> [lm32 part]
      Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com> [s390x part]
      Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com> [s390x part]
      Acked-by: Eduardo Habkost <ehabkost@redhat.com> [i386 part]
      Acked-by: Artyom Tarasenko <atar4qemu@gmail.com> [sparc part]
      Acked-by: Richard Henderson <rth@twiddle.net> [alpha part]
      Acked-by: Max Filippov <jcmvbkbc@gmail.com> [xtensa part]
      Reviewed-by: David Gibson <david@gibson.dropbear.id.au> [ppc part]
      Acked-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com> [cris&microblaze part]
      Acked-by: Guan Xuetao <gxt@mprc.pku.edu.cn> [unicore32 part]
      Signed-off-by: NThomas Huth <thuth@redhat.com>
      fcf5ef2a