Searched +full:sparc +full:- +full:softmmu (Results 1 – 11 of 11) sorted by relevance
/qemu/.gitlab-ci.d/ |
H A D | crossbuild-template.yml | 7 - ccache 12 - source scripts/ci/gitlab-ci-section 13 - section_start setup "Pre-script setup" 14 - JOBS=$(expr $(nproc) + 1) 15 - cat /packages.txt 16 - section_end setup 18 - export CCACHE_BASEDIR="$(pwd)" 19 - export CCACHE_DIR="$CCACHE_BASEDIR/ccache" 20 - export CCACHE_MAXSIZE="500M" 21 - export PATH="$CCACHE_WRAPPERSDIR:$PATH" [all …]
|
H A D | buildtest.yml | 2 - local: '/.gitlab-ci.d/buildtest-template.yml' 4 build-system-alpine: 6 - .native_build_job_template 7 - .native_build_artifact_template 9 - job: amd64-alpine-container 12 TARGETS: avr-softmmu loongarch64-softmmu mips64-softmmu mipsel-softmmu 13 MAKE_CHECK_ARGS: check-build 14 CONFIGURE_ARGS: --enable-docs --enable-trace-backends=log,simple,syslog 16 check-system-alpine: 19 - job: build-system-alpine [all …]
|
/qemu/configs/devices/sparc-softmmu/ |
H A D | default.mak | 1 # Default configuration for sparc-softmmu
|
/qemu/ |
H A D | configure | 14 source_path=$(cd "$(dirname -- "$0")"; pwd) 16 if test "$PWD" -ef "$source_path" 20 MARKER=build/auto-created-by-configure 22 if test -e build 24 if test -f $MARKER 26 rm -rf build 36 echo "your source directory, or try doing an out-of-tree build." 41 # This file is auto-generated by configure to support in-source tree 46 @$(MAKE) -C build -f Makefile $(MAKECMDGOALS) 48 test -e build/auto-created-by-configure ; \ [all …]
|
H A D | meson.build | 15 meson.add_postconf_script(find_program('scripts/symlink-install-tree.py')) 28 config_host = keyval.load(meson.current_build_dir() / 'config-host.mak') 35 tmpdir = meson.current_build_dir() / 'meson-private/temp' 66 have_linux_user = have_linux_user or target.endswith('linux-user') 67 have_bsd_user = have_bsd_user or target.endswith('bsd-user') 68 have_system = have_system or target.endswith('-softmmu') 113 …dgen.version() + ' is unsupported. You can install a new version with "cargo install bindgen-cli"') 120 message('To use Rust you can install a new version with "cargo install bindgen-cli"') 128 '--rustc-version', rustc.version(), 129 '--workspace', meson.project_source_root() / 'rust'] [all …]
|
H A D | MAINTAINERS | 10 consult qemu-devel and not any specific individual privately. 23 W: Web-page with status/info 59 ------------------------------ 63 L: qemu-devel@nongnu.org 72 R: Philippe Mathieu-Daudé <philmd@linaro.org> 75 F: docs/devel/build-environment.rst 76 F: docs/devel/code-of-conduct.rst 78 F: docs/devel/conflict-resolution.rst 80 F: docs/devel/submitting-a-patch.rst 81 F: docs/devel/submitting-a-pull-request.rst [all …]
|
/qemu/docs/devel/ |
H A D | kconfig.rst | 13 SCSI adapters. Arm, s390 and x86 boards can all present a virtio-blk 21 QEMU uses a simple domain-specific language to describe the dependencies 36 This domain-specific language is based on the Kconfig language that 41 is instead specified in per-target files under the ``configs/`` 48 -------------------- 78 include it for clarity and future-proofing. After ``bool`` the following 136 ------------------------------------ 199 for example only VFIO (passthrough) and virtio-pci devices. 202 board (and not ones which are very board-specific or that need 215 depends on SPARC && !SPARC64 [all …]
|
/qemu/target/sparc/ |
H A D | mmu_helper.c | 2 * Sparc MMU helpers 4 * Copyright (c) 2003-2005 Fabrice Bellard 24 #include "accel/tcg/cpu-mmu-index.h" 25 #include "exec/page-protection.h" 27 #include "exec/tlb-flags.h" 29 #include "qemu/qemu-print.h" 32 /* Sparc MMU emulation */ 36 * Sparc V8 Reference MMU (SRMMU) 87 full->lg_page_size = TARGET_PAGE_BITS; in get_physical_address() 89 if (rw == 2 && (env->mmuregs[0] & env->def.mmu_bm)) { in get_physical_address() [all …]
|
/qemu/qapi/ |
H A D | machine.json | 1 # -*- Mode: Python -*- 5 # See the COPYING file in the top-level directory. 12 { 'include': 'machine-common.json' } 17 # The comprehensive enumeration of QEMU system emulation ("softmmu") 18 # targets. Run "./configure --help" in the project root directory, 19 # and look for the \*-softmmu targets near the "--target-list" option. 30 # "qemu-system-" prefix to produce the corresponding QEMU 31 # executable name. This is true even for "qemu-system-x86_64". 40 'sh4eb', 'sparc', 'sparc64', 'tricore', 52 'data': [ 'uninitialized', 'stopped', 'check-stop', 'operating', 'load' ] } [all …]
|
/qemu/accel/tcg/ |
H A D | cputlb.c | 21 #include "qemu/main-loop.h" 22 #include "qemu/target-info.h" 23 #include "accel/tcg/cpu-ops.h" 26 #include "exec/page-protection.h" 28 #include "accel/tcg/cpu-ldst-common.h" 29 #include "accel/tcg/cpu-mmu-index.h" 31 #include "exec/tb-flush.h" 33 #include "exec/mmu-access-type.h" 34 #include "exec/tlb-common.h" 37 #include "qemu/error-report.h" [all …]
|
/qemu/linux-user/ |
H A D | syscall.c | 28 #include "exec/page-protection.h" 29 #include "exec/mmap-lock.h" 30 #include "exec/tb-flush.h" 31 #include "exec/translation-block.h" 115 #include <linux/dm-ioctl.h> 136 #include "user-internals.h" 138 #include "signal-common.h" 140 #include "user-mmap.h" 141 #include "user/page-protection.h" 142 #include "user/safe-syscall.h" [all …]
|