Skip to content
Snippets Groups Projects
  1. Mar 09, 2018
    • Richard Henderson's avatar
      aarch64-linux-user: Add support for SVE signal frame records · 8c5931de
      Richard Henderson authored
      
      Depending on the currently selected size of the SVE vector registers,
      we can either store the data within the "standard" allocation, or we
      may beedn to allocate additional space with an EXTRA record.
      
      Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Message-id: 20180303143823.27055-6-richard.henderson@linaro.org
      Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      8c5931de
    • Richard Henderson's avatar
      aarch64-linux-user: Add support for EXTRA signal frame records · 7a53fb90
      Richard Henderson authored
      
      The EXTRA record allows for additional space to be allocated
      beyon what is currently reserved.  Add code to emit and read
      this record type.
      
      Nothing uses extra space yet.
      
      Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Message-id: 20180303143823.27055-5-richard.henderson@linaro.org
      Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Reviewed-by: default avatarAlex Bennée <alex.bennee@linaro.org>
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      7a53fb90
    • Richard Henderson's avatar
      aarch64-linux-user: Remove struct target_aux_context · e1eecd1d
      Richard Henderson authored
      
      This changes the qemu signal frame layout to be more like the kernel's,
      in that the various records are dynamically allocated rather than fixed
      in place by a structure.
      
      For now, all of the allocation is out of uc.tuc_mcontext.__reserved,
      so the allocation is actually trivial.  That will change with SVE support.
      
      Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Message-id: 20180303143823.27055-4-richard.henderson@linaro.org
      Reviewed-by: default avatarAlex Bennée <alex.bennee@linaro.org>
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      e1eecd1d
    • Richard Henderson's avatar
      aarch64-linux-user: Split out helpers for guest signal handling · 3b505bba
      Richard Henderson authored
      
      Split out helpers from target_setup_frame and target_restore_sigframe
      for dealing with general registers, fpsimd registers, and the end record.
      
      When we add support for sve registers, the relative positions of
      these will change.
      
      Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Message-id: 20180303143823.27055-3-richard.henderson@linaro.org
      Reviewed-by: default avatarAlex Bennée <alex.bennee@linaro.org>
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      3b505bba
    • Richard Henderson's avatar
      linux-user: Implement aarch64 PR_SVE_SET/GET_VL · 85fc7167
      Richard Henderson authored
      
      As an implementation choice, widening VL has zeroed the
      previously inaccessible portion of the sve registers.
      
      Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Acked-by: default avatarAlex Bennée <alex.bennee@linaro.org>
      Message-id: 20180303143823.27055-2-richard.henderson@linaro.org
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      85fc7167
    • Andrey Smirnov's avatar
      Implement support for i.MX7 Sabre board · 843361ed
      Andrey Smirnov authored
      Implement code needed to set up emulation of MCIMX7SABRE board from
      NXP. For more info about the HW see:
      
      https://www.nxp.com/support/developer-resources/hardware-development-tools/sabre-development-system/sabre-board-for-smart-devices-based-on-the-i.mx-7dual-applications-processors:MCIMX7SABRE
      
      
      
      Cc: Peter Maydell <peter.maydell@linaro.org>
      Cc: Jason Wang <jasowang@redhat.com>
      Cc: Philippe Mathieu-Daudé <f4bug@amsat.org>
      Cc: Marcel Apfelbaum <marcel.apfelbaum@zoho.com>
      Cc: Michael S. Tsirkin <mst@redhat.com>
      Cc: qemu-devel@nongnu.org
      Cc: qemu-arm@nongnu.org
      Cc: yurovsky@gmail.com
      Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: default avatarAndrey Smirnov <andrew.smirnov@gmail.com>
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      843361ed
    • Andrey Smirnov's avatar
      i.MX: Add i.MX7 SOC implementation. · 757282ad
      Andrey Smirnov authored
      
      The following interfaces are partially or fully emulated:
      
          * up to 2 Cortex A9 cores (SMP works with PSCI)
          * A7 MPCORE (identical to A15 MPCORE)
          * 4 GPTs modules
          * 7 GPIO controllers
          * 2 IOMUXC controllers
          * 1 CCM module
          * 1 SVNS module
          * 1 SRC module
          * 1 GPCv2 controller
          * 4 eCSPI controllers
          * 4 I2C controllers
          * 7 i.MX UART controllers
          * 2 FlexCAN controllers
          * 2 Ethernet controllers (FEC)
          * 3 SD controllers (USDHC)
          * 4 WDT modules
          * 1 SDMA module
          * 1 GPR module
          * 2 USBMISC modules
          * 2 ADC modules
          * 1 PCIe controller
      
      Tested to boot and work with upstream Linux (4.13+) guest.
      
      Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: default avatarAndrey Smirnov <andrew.smirnov@gmail.com>
      [PMM: folded a couple of long lines]
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      757282ad
    • Andrey Smirnov's avatar
      pci: Add support for Designware IP block · d64e5eab
      Andrey Smirnov authored
      
      Add code needed to get a functional PCI subsytem when using in
      conjunction with upstream Linux guest (4.13+). Tested to work against
      "e1000e" (network adapter, using MSI interrupts) as well as
      "usb-ehci" (USB controller, using legacy PCI interrupts).
      
      Based on "i.MX6 Applications Processor Reference Manual" (Document
      Number: IMX6DQRM Rev. 4) as well as corresponding dirver in Linux
      kernel (circa 4.13 - 4.16 found in drivers/pci/dwc/*)
      
      Signed-off-by: default avatarAndrey Smirnov <andrew.smirnov@gmail.com>
      Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      d64e5eab
    • Alistair Francis's avatar
      hw/arm: Set the core count for Xilinx's ZynqMP · 8f2ba1f2
      Alistair Francis authored
      
      Set the ARM CPU core count property for the A53's attached to the Xilnx
      ZynqMP machine.
      
      Signed-off-by: default avatarAlistair Francis <alistair.francis@xilinx.com>
      Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Message-id: fe0dd90b85ac73f9fc9548c253bededa70a07006.1520018138.git.alistair.francis@xilinx.com
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      8f2ba1f2
    • Alistair Francis's avatar
      target/arm: Add a core count property · f9a69711
      Alistair Francis authored
      
      The cortex A53 TRM specifies that bits 24 and 25 of the L2CTLR register
      specify the number of cores in the processor, not the total number of
      cores in the system. To report this correctly on machines with multiple
      CPU clusters (ARM's big.LITTLE or Xilinx's ZynqMP) we need to allow
      the machine to overwrite this value. To do this let's add an optional
      property.
      
      Signed-off-by: default avatarAlistair Francis <alistair.francis@xilinx.com>
      Message-id: ef01d95c0759e88f47f22d11b14c91512a658b4f.1520018138.git.alistair.francis@xilinx.com
      Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      f9a69711
    • Paolo Bonzini's avatar
      memory: fix flatview_access_valid RCU read lock/unlock imbalance · b39b61e4
      Paolo Bonzini authored
      
      Fixes: 11e732a5
      Reported-by: default avatarCornelia Huck <cohuck@redhat.com>
      Reported-by: default avatarluigi burdo <intermediadc@hotmail.com>
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      Tested-by: default avatarCornelia Huck <cohuck@redhat.com>
      Tested-by: default avatarThomas Huth <thuth@redhat.com>
      Message-id: 20180307130238.19358-1-pbonzini@redhat.com
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      b39b61e4
    • Stef O'Rear's avatar
    • Peter Maydell's avatar
      Merge remote-tracking branch 'remotes/riscv/tags/riscv-qemu-upstream-v8.2' into staging · d9bbfea6
      Peter Maydell authored
      QEMU RISC-V Emulation Support (RV64GC, RV32GC)
      
      This release renames the SiFive machines to sifive_e and sifive_u
      to represent the SiFive Everywhere and SiFive Unleashed platforms.
      SiFive has configurable soft-core IP, so it is intended that these
      machines will be extended to enable a variety of SiFive IP blocks.
      The CPU definition infrastructure has been improved and there are
      now vendor CPU modules including the SiFiVe E31, E51, U34 and U54
      cores. The emulation accuracy for the E series has been improved
      by disabling the MMU for the E series. S mode has been disabled on
      cores that only support M mode and U mode. The two Spike machines
      that support two privileged ISA versions have been coalesced into
      one file. This series has Signed-off-by from the core contributors.
      
      *** Known Issues ***
      
      * Disassembler has some checkpatch warnings for the sake of code brevity
      * scripts/qemu-binfmt-conf.sh has checkpatch warnings due to line length
      * PMP (Physical Memory Protection) is as-of-yet unused and needs testing
      
      *** Changelog ***
      
      v8.2
      
      * Rebase
      
      v8.1
      
      * Fix missed case of renaming spike_v1.9 to spike_v1.9.1
      
      v8
      
      * Added linux-user/riscv/target_elf.h during rebase
      * Make resetvec configurable and clear mpp and mie on reset
      * Use SiFive E31, E51, U34 and U54 cores in SiFive machines
      * Define SiFive E31, E51, U34 and U54 cores
      * Refactor CPU core definition in preparation for vendor cores
      * Prevent S or U mode unless S or U extensions are present
      * SiFive E Series cores have no MMU
      * SiFive E Series cores have U mode
      * Make privileged ISA v1.10 implicit in CPU types
      * Remove DRAM_BASE and EXT_IO_BASE as they vary by machine
      * Correctly handle mtvec and stvec alignment with respect to RVC
      * Print more machine mode state in riscv_cpu_dump_state
      * Make riscv_isa_string use compact extension order method
      * Fix bug introduced in v6 RISCV_CPU_TYPE_NAME macro change
      * Parameterize spike v1.9.1 config string
      * Coalesce spike_v1.9.1 and spike_v1.10 machines
      * Rename sifive_e300 to sifive_e, and sifive_u500 to sifive_u
      
      v7
      
      * Make spike_v1.10 the default machine
      * Rename spike_v1.9 to spike_v1.9.1 to match privileged spec version
      * Remove empty target/riscv/trace-events file
      * Monitor ROM 32-bit reset code needs to be target endian
      * Add TARGET_TIOCGPTPEER to linux-user/riscv/termbits.h
      * Add -initrd support to the virt board
      * Fix naming in spike machine interface header
      * Update copyright notice on RISC-V Spike machines
      * Update copyright notice on RISC-V HTIF Console device
      * Change CPU Core and translator to GPLv2+
      * Change RISC-V Disassembler to GPLv2+
      * Change SiFive Test Finisher to GPLv2+
      * Change SiFive CLINT to GPLv2+
      * Change SiFive PRCI to GPLv2+
      * Change SiFive PLIC to GPLv2+
      * Change RISC-V spike machines to GPLv2+
      * Change RISC-V virt machine to GPLv2+
      * Change SiFive E300 machine to GPLv2+
      * Change SiFive U500 machine to GPLv2+
      * Change RISC-V Hart Array to GPLv2+
      * Change RISC-V HTIF device to GPLv2+
      * Change SiFiveUART device to GPLv2+
      
      v6
      
      * Drop IEEE 754-201x minimumNumber/maximumNumber for fmin/fmax
      * Remove some unnecessary commented debug statements
      * Change RISCV_CPU_TYPE_NAME to use riscv-cpu suffix
      * Define all CPU variants for linux-user
      * qemu_log calls require trailing \n
      * Replace PLIC printfs with qemu_log
      * Tear out unused HTIF code and eliminate shouting debug messages
      * Fix illegal instruction when sfence.vma is passed (rs2) arguments
      * Make updates to PTE accessed and dirty bits atomic
      * Only require atomic PTE updates on MTTCG enabled guests
      * Page fault if accessed or dirty bits can't be updated
      * Fix get_physical_address PTE reads and writes on riscv32
      * Remove erroneous comments from the PLIC
      * Default enable MTTCG
      * Make WFI less conservative
      * Unify local interrupt handling
      * Expunge HTIF interrupts
      * Always access mstatus.mip under a lock
      * Don't implement rdtime/rdtimeh in system mode (bbl emulates them)
      * Implement insreth/cycleh for rv32 and always enable user-mode counters
      * Add GDB stub support for reading and writing CSRs
      * Rename ENABLE_CHARDEV #ifdef from HTIF code
      * Replace bad HTIF ELF code with load_elf symbol callback
      * Convert chained if else fault handlers to switch statements
      * Use RISCV exception codes for linux-user page faults
      
      v5
      
      * Implement NaN-boxing for flw, set high order bits to 1
      * Use float_muladd_negate_* flags to floatXX_muladd
      * Use IEEE 754-201x minimumNumber/maximumNumber for fmin/fmax
      * Fix TARGET_NR_syscalls
      * Update linux-user/riscv/syscall_nr.h
      * Fix FENCE.I, needs to terminate translation block
      * Adjust unusual convention for interruptno >= 0
      
      v4
      
      * Add @riscv: since 2.12 to CpuInfoArch
      * Remove misleading little-endian comment from load_kernel
      * Rename cpu-model property to cpu-type
      * Drop some unnecessary inline function attributes
      * Don't allow GDB to set value of x0 register
      * Remove unnecessary empty property lists
      * Add Test Finisher device to implement poweroff in virt machine
      * Implement priv ISA v1.10 trap and sret/mret xPIE/xIE behavior
      * Store fflags data in fp_status
      * Purge runtime users of helper_raise_exception
      * Fix validate_csr
      * Tidy gen_jalr
      * Tidy immediate shifts
      * Add gen_exception_inst_addr_mis
      * Add gen_exception_debug
      * Add gen_exception_illegal
      * Tidy helper_fclass_*
      * Split rounding mode setting to a new function
      * Enforce MSTATUS_FS via TB flags
      * Implement acquire/release barrier semantics
      * Use atomic operations as required
      * Fix FENCE and FENCE_I
      * Remove commented code from spike machines
      * PAGE_WRITE permissions can be set on loads if page is already dirty
      * The result of format conversion on an NaN must be a quiet NaN
      * Add missing process_queued_cpu_work to riscv linux-user
      * Remove float(32|64)_classify from cpu.h
      * Removed nonsensical unions aliasing the same type
      * Use uintN_t instead of uintN_fast_t in fpu_helper.c
      * Use macros for FPU exception values in softfloat_flags_to_riscv
      * Move code to set round mode into set_fp_round_mode function
      * Convert set_fp_exceptions from a macro to an inline function
      * Convert round mode helper into an inline function
      * Make fpu_helper ieee_rm array static const
      * Include cpu_mmu_index in cpu_get_tb_cpu_state flags
      * Eliminate MPRV influence on mmu_index
      * Remove unrecoverable do_unassigned_access function
      * Only update PTE accessed and dirty bits if necessary
      * Remove unnecessary tlb_flush in set_mode as mode is in mmu_idx
      * Remove buggy support for misa writes. misa writes are optional
        and are not implemented in any known hardware
      * Always set PTE read or execute permissions during page walk
      * Reorder helper function declarations to match order in helper.c
      * Remove redundant variable declaration in get_physical_address
      * Remove duplicated code from get_physical_address
      * Use mmu_idx instead of mem_idx in riscv_cpu_get_phys_page_debug
      
      v3
      
      * Fix indentation in PMP and HTIF debug macros
      * Fix disassembler checkpatch open brace '{' on next line errors
      * Fix trailing statements on next line in decode_inst_decompress
      * NOTE: the other checkpatch issues have been reviewed previously
      
      v2
      
      * Remove redundant NULL terminators from disassembler register arrays
      * Change disassembler register name arrays to const
      * Refine disassembler internal function names
      * Update dates in disassembler copyright message
      * Remove #ifdef CONFIG_USER_ONLY version of cpu_has_work
      * Use ULL suffix on 64-bit constants
      * Move riscv_cpu_mmu_index from cpu.h to helper.c
      * Move riscv_cpu_hw_interrupts_pending from cpu.h to helper.c
      * Remove redundant TARGET_HAS_ICE from cpu.h
      * Use qemu_irq instead of void* for irq definition in cpu.h
      * Remove duplicate typedef from struct CPURISCVState
      * Remove redundant g_strdup from cpu_register
      * Remove redundant tlb_flush from riscv_cpu_reset
      * Remove redundant mode calculation from get_physical_address
      * Remove redundant debug mode printf and dcsr comment
      * Remove redundant clearing of MSB for bare physical addresses
      * Use g_assert_not_reached for invalid mode in get_physical_address
      * Use g_assert_not_reached for unreachable checks in get_physical_address
      * Use g_assert_not_reached for unreachable type in raise_mmu_exception
      * Return exception instead of aborting for misaligned fetches
      * Move exception defines from cpu.h to cpu_bits.h
      * Remove redundant breakpoint control definitions from cpu_bits.h
      * Implement riscv_cpu_unassigned_access exception handling
      * Log and raise exceptions for unimplemented CSRs
      * Match Spike HTIF exit behavior - don’t print TEST-PASSED
      * Make frm,fflags,fcsr writes trap when mstatus.FS is clear
      * Use g_assert_not_reached for unreachable invalid mode
      * Make hret,uret,dret generate illegal instructions
      * Move riscv_cpu_dump_state and int/fpr regnames to cpu.c
      * Lift interrupt flag and mask into constants in cpu_bits.h
      * Change trap debugging to use qemu_log_mask LOG_TRACE
      * Change CSR debugging to use qemu_log_mask LOG_TRACE
      * Change PMP debugging to use qemu_log_mask LOG_TRACE
      * Remove commented code from pmp.c
      * Change CpuInfoRISCV qapi schema docs to Since 2.12
      * Change RV feature macro to use target_ulong cast
      * Remove riscv_feature and instead use misa extension flags
      * Make riscv_flush_icache_syscall a no-op
      * Undo checkpatch whitespace fixes in unrelated linux-user code
      * Remove redudant constants and tidy up cpu_bits.h
      * Make helper_fence_i a no-op
      * Move include "exec/cpu-all" to end of cpu.h
      * Rename set_privilege to riscv_set_mode
      * Move redundant forward declaration for cpu_riscv_translate_address
      * Remove TCGV_UNUSED from riscv_translate_init
      * Add comment to pmp.c stating the code is untested and currently unused
      * Use ctz to simplify decoding of PMP NAPOT address ranges
      * Change pmp_is_in_range to use than equal for end addresses
      * Fix off by one error in pmp_update_rule
      * Rearrange PMP_DEBUG so that formatting is compile-time checked
      * Rearrange trap debugging so that formatting is compile-time checked
      * Rearrange PLIC debugging so that formatting is compile-time checked
      * Use qemu_log/qemu_log_mask for HTIF logging and debugging
      * Move exception and interrupt names into cpu.c
      * Add Palmer Dabbelt as a RISC-V Maintainer
      * Rebase against current qemu master branch
      
      v1
      
      * initial version based on forward port from riscv-qemu repository
      
      *** Background ***
      
      "RISC-V is an open, free ISA enabling a new era of processor innovation
      through open standard collaboration. Born in academia and research,
      RISC-V ISA delivers a new level of free, extensible software and
      hardware freedom on architecture, paving the way for the next 50 years
      of computing design and innovation."
      
      The QEMU RISC-V port has been developed and maintained out-of-tree for
      several years by Sagar Karandikar and Bastian Koppelmann. The RISC-V
      Privileged specification has evolved substantially over this period but
      has recently been solidifying. The RISC-V Base ISA has been frozon for
      some time and the Privileged ISA, GCC toolchain and Linux ABI are now
      quite stable. I have recently joined Sagar and Bastian as a RISC-V QEMU
      Maintainer and hope to support upstreaming the port.
      
      There are multiple vendors taping out, preparing to ship, or shipping
      silicon that implements the RISC-V Privileged ISA Version 1.10. There
      are also several RISC-V Soft-IP cores implementing Privileged ISA
      Version 1.10 that run on FPGA such as SiFive's Freedom U500 Platform
      and the U54‑MC RISC-V Core IP, among many more implementations from a
      variety of vendors. See https://riscv.org/ for more details.
      
      RISC-V support was upstreamed in binutils 2.28 and GCC 7.1 in the first
      half of 2016. RISC-V support is now available in LLVM top-of-tree and
      the RISC-V Linux port was accepted into Linux 4.15-rc1 late last year
      and is available in the Linux 4.15 release. GLIBC 2.27 added support
      for the RISC-V ISA running on Linux (requires at least binutils-2.30,
      gcc-7.3.0, and linux-4.15). We believe it is timely to submit the
      RISC-V QEMU port for upstream review with the goal of incorporating
      RISC-V support into the upcoming QEMU 2.12 release.
      
      The RISC-V QEMU port is still under active development, mostly with
      respect to device emulation, the addition of Hypervisor support as
      specified in the RISC-V Draft Privileged ISA Version 1.11, and Vector
      support once the first draft is finalized later this year. We believe
      now is the appropriate time for RISC-V QEMU development to be carried
      out in the main QEMU repository as the code will benefit from more
      rigorous review. The RISC-V QEMU port currently supports all the ISA
      extensions that have been finalized and frozen in the Base ISA.
      
      Blog post about recent additions to RISC-V QEMU: https://goo.gl/fJ4zgk
      
      The RISC-V QEMU wiki: https://github.com/riscv/riscv-qemu/wiki
      
      Instructions for building a busybox+dropbear root image, BBL (Berkeley
      Boot Loader) and linux kernel image for use with the RISC-V QEMU
      'virt' machine: https://github.com/michaeljclark/busybear-linux
      
      
      
      *** Overview ***
      
      The RISC-V QEMU port implements the following specifications:
      
      * RISC-V Instruction Set Manual Volume I: User-Level ISA Version 2.2
      * RISC-V Instruction Set Manual Volume II: Privileged ISA Version 1.9.1
      * RISC-V Instruction Set Manual Volume II: Privileged ISA Version 1.10
      
      The RISC-V QEMU port supports the following instruction set extensions:
      
      * RV32GC with Supervisor-mode and User-mode (RV32IMAFDCSU)
      * RV64GC with Supervisor-mode and User-mode (RV64IMAFDCSU)
      
      The RISC-V QEMU port adds the following targets to QEMU:
      
      * riscv32-softmmu
      * riscv64-softmmu
      * riscv32-linux-user
      * riscv64-linux-user
      
      The RISC-V QEMU port supports the following hardware:
      
      * HTIF Console (Host Target Interface)
      * SiFive CLINT (Core Local Interruptor) for Timer interrupts and IPIs
      * SiFive PLIC (Platform Level Interrupt Controller)
      * SiFive Test (Test Finisher) for exiting simulation
      * SiFive UART, PRCI, AON, PWM, QSPI support is partially implemented
      * VirtIO MMIO (GPEX PCI support will be added in a future patch)
      * Generic 16550A UART emulation using 'hw/char/serial.c'
      * MTTCG and SMP support (PLIC and CLINT) on the 'virt' machine
      
      The RISC-V QEMU full system emulator supports 5 machines:
      
      * 'spike_v1.9.1', CLINT, PLIC, HTIF console, config-string, Priv v1.9.1
      * 'spike_v1.10', CLINT, PLIC, HTIF console, device-tree, Priv v1.10
      * 'sifive_e', CLINT, PLIC, SiFive UART, HiFive1 compat, Priv v1.10
      * 'sifive_u', CLINT, PLIC, SiFive UART, device-tree, Priv v1.10
      * 'virt', CLINT, PLIC, 16550A UART, VirtIO, device-tree, Priv v1.10
      
      This is a list of RISC-V QEMU Port Contributors:
      
      * Alex Suykov
      * Andreas Schwab
      * Antony Pavlov
      * Bastian Koppelmann
      * Bruce Hoult
      * Chih-Min Chao
      * Daire McNamara
      * Darius Rad
      * David Abdurachmanov
      * Hesham Almatary
      * Ivan Griffin
      * Jim Wilson
      * Kito Cheng
      * Michael Clark
      * Palmer Dabbelt
      * Richard Henderson
      * Sagar Karandikar
      * Shea Levy
      * Stefan O'Rear
      
      Notes:
      
      * contributor email addresses available off-list on request.
      * checkpatch has been run on all 23 patches.
      * checkpatch exceptions are noted in patches that have errors.
      * passes "make check" on full build for all targets
      * tested riscv-linux-4.6.2 on 'spike_v1.9.1' machine
      * tested riscv-linux-4.15 on 'spike_v1.10' and 'virt' machines
      * tested SiFive HiFive1 binaries in 'sifive_e' machine
      * tested RV64 on 32-bit i386
      
      This patch series includes the following patches:
      
      # gpg: Signature made Thu 08 Mar 2018 19:40:20 GMT
      # gpg:                using DSA key 6BF1D7B357EF3E4F
      # gpg: Good signature from "Michael Clark <michaeljclark@mac.com>"
      # gpg:                 aka "Michael Clark <mjc@sifive.com>"
      # gpg:                 aka "Michael Clark <michael@metaparadigm.com>"
      # gpg: WARNING: This key is not certified with a trusted signature!
      # gpg:          There is no indication that the signature belongs to the owner.
      # Primary key fingerprint: 7C99 930E B17C D8BA 073D  5EFA 6BF1 D7B3 57EF 3E4F
      
      * remotes/riscv/tags/riscv-qemu-upstream-v8.2: (23 commits)
        RISC-V Build Infrastructure
        SiFive Freedom U Series RISC-V Machine
        SiFive Freedom E Series RISC-V Machine
        SiFive RISC-V PRCI Block
        SiFive RISC-V UART Device
        RISC-V VirtIO Machine
        SiFive RISC-V Test Finisher
        RISC-V Spike Machines
        SiFive RISC-V PLIC Block
        SiFive RISC-V CLINT Block
        RISC-V HART Array
        RISC-V HTIF Console
        Add symbol table callback interface to load_elf
        RISC-V Linux User Emulation
        RISC-V Physical Memory Protection
        RISC-V TCG Code Generation
        RISC-V GDB Stub
        RISC-V FPU Support
        RISC-V CPU Helpers
        RISC-V Disassembler
        ...
      
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      d9bbfea6
  2. Mar 08, 2018
  3. Mar 07, 2018
  4. Mar 06, 2018
Loading