├── .gitignore ├── LICENSE ├── README.md ├── module ├── Makefile └── levpci.c ├── qemu ├── .exrc ├── .gitignore ├── .mailmap ├── .travis.yml ├── CODING_STYLE ├── COPYING ├── COPYING.LIB ├── Changelog ├── HACKING ├── LICENSE ├── MAINTAINERS ├── Makefile ├── Makefile.objs ├── Makefile.target ├── README ├── VERSION ├── aio-posix.c ├── aio-win32.c ├── arch_init.c ├── async.c ├── audio │ ├── Makefile.objs │ ├── alsaaudio.c │ ├── audio.c │ ├── audio.h │ ├── audio_int.h │ ├── audio_pt_int.c │ ├── audio_pt_int.h │ ├── audio_template.h │ ├── audio_win_int.c │ ├── audio_win_int.h │ ├── coreaudio.c │ ├── dsound_template.h │ ├── dsoundaudio.c │ ├── esdaudio.c │ ├── fmodaudio.c │ ├── mixeng.c │ ├── mixeng.h │ ├── mixeng_template.h │ ├── noaudio.c │ ├── ossaudio.c │ ├── paaudio.c │ ├── rate_template.h │ ├── sdlaudio.c │ ├── spiceaudio.c │ ├── wavaudio.c │ ├── wavcapture.c │ └── winwaveaudio.c ├── backends │ ├── Makefile.objs │ ├── baum.c │ ├── msmouse.c │ ├── rng-egd.c │ ├── rng-random.c │ ├── rng.c │ └── tpm.c ├── balloon.c ├── block-migration.c ├── block.c ├── block │ ├── Makefile.objs │ ├── backup.c │ ├── blkdebug.c │ ├── blkverify.c │ ├── bochs.c │ ├── cloop.c │ ├── commit.c │ ├── cow.c │ ├── curl.c │ ├── dmg.c │ ├── gluster.c │ ├── iscsi.c │ ├── linux-aio.c │ ├── mirror.c │ ├── nbd-client.c │ ├── nbd-client.h │ ├── nbd.c │ ├── nfs.c │ ├── parallels.c │ ├── qapi.c │ ├── qcow.c │ ├── qcow2-cache.c │ ├── qcow2-cluster.c │ ├── qcow2-refcount.c │ ├── qcow2-snapshot.c │ ├── qcow2.c │ ├── qcow2.h │ ├── qed-check.c │ ├── qed-cluster.c │ ├── qed-gencb.c │ ├── qed-l2-cache.c │ ├── qed-table.c │ ├── qed.c │ ├── qed.h │ ├── quorum.c │ ├── raw-aio.h │ ├── raw-posix.c │ ├── raw-win32.c │ ├── raw_bsd.c │ ├── rbd.c │ ├── sheepdog.c │ ├── snapshot.c │ ├── ssh.c │ ├── stream.c │ ├── vdi.c │ ├── vhdx-endian.c │ ├── vhdx-log.c │ ├── vhdx.c │ ├── vhdx.h │ ├── vmdk.c │ ├── vpc.c │ ├── vvfat.c │ └── win32-aio.c ├── blockdev-nbd.c ├── blockdev.c ├── blockjob.c ├── bsd-user │ ├── Makefile.objs │ ├── bsd-mman.h │ ├── bsdload.c │ ├── elfload.c │ ├── errno_defs.h │ ├── freebsd │ │ ├── strace.list │ │ └── syscall_nr.h │ ├── i386 │ │ ├── syscall.h │ │ └── target_signal.h │ ├── main.c │ ├── mmap.c │ ├── netbsd │ │ ├── strace.list │ │ └── syscall_nr.h │ ├── openbsd │ │ ├── strace.list │ │ └── syscall_nr.h │ ├── qemu.h │ ├── signal.c │ ├── sparc │ │ ├── syscall.h │ │ └── target_signal.h │ ├── sparc64 │ │ ├── syscall.h │ │ └── target_signal.h │ ├── strace.c │ ├── syscall.c │ ├── syscall_defs.h │ ├── uaccess.c │ └── x86_64 │ │ ├── syscall.h │ │ └── target_signal.h ├── bt-host.c ├── bt-vhci.c ├── configure ├── coroutine-gthread.c ├── coroutine-sigaltstack.c ├── coroutine-ucontext.c ├── coroutine-win32.c ├── cpu-exec.c ├── cpus.c ├── cputlb.c ├── default-configs │ ├── aarch64-linux-user.mak │ ├── aarch64-softmmu.mak │ ├── alpha-linux-user.mak │ ├── alpha-softmmu.mak │ ├── arm-linux-user.mak │ ├── arm-softmmu.mak │ ├── armeb-linux-user.mak │ ├── cris-linux-user.mak │ ├── cris-softmmu.mak │ ├── i386-bsd-user.mak │ ├── i386-linux-user.mak │ ├── i386-softmmu.mak │ ├── lm32-softmmu.mak │ ├── m68k-linux-user.mak │ ├── m68k-softmmu.mak │ ├── microblaze-linux-user.mak │ ├── microblaze-softmmu.mak │ ├── microblazeel-linux-user.mak │ ├── microblazeel-softmmu.mak │ ├── mips-linux-user.mak │ ├── mips-softmmu.mak │ ├── mips64-linux-user.mak │ ├── mips64-softmmu.mak │ ├── mips64el-linux-user.mak │ ├── mips64el-softmmu.mak │ ├── mipsel-linux-user.mak │ ├── mipsel-softmmu.mak │ ├── mipsn32-linux-user.mak │ ├── mipsn32el-linux-user.mak │ ├── moxie-softmmu.mak │ ├── or32-linux-user.mak │ ├── or32-softmmu.mak │ ├── pci.mak │ ├── ppc-linux-user.mak │ ├── ppc-softmmu.mak │ ├── ppc64-linux-user.mak │ ├── ppc64-softmmu.mak │ ├── ppc64abi32-linux-user.mak │ ├── ppcemb-softmmu.mak │ ├── s390x-linux-user.mak │ ├── s390x-softmmu.mak │ ├── sh4-linux-user.mak │ ├── sh4-softmmu.mak │ ├── sh4eb-linux-user.mak │ ├── sh4eb-softmmu.mak │ ├── sound.mak │ ├── sparc-bsd-user.mak │ ├── sparc-linux-user.mak │ ├── sparc-softmmu.mak │ ├── sparc32plus-linux-user.mak │ ├── sparc64-bsd-user.mak │ ├── sparc64-linux-user.mak │ ├── sparc64-softmmu.mak │ ├── unicore32-linux-user.mak │ ├── unicore32-softmmu.mak │ ├── usb.mak │ ├── x86_64-bsd-user.mak │ ├── x86_64-linux-user.mak │ ├── x86_64-softmmu.mak │ ├── xtensa-softmmu.mak │ └── xtensaeb-softmmu.mak ├── device-hotplug.c ├── device_tree.c ├── disas.c ├── disas │ ├── Makefile.objs │ ├── alpha.c │ ├── arm-a64.cc │ ├── arm.c │ ├── cris.c │ ├── hppa.c │ ├── i386.c │ ├── ia64.c │ ├── libvixl │ │ ├── LICENCE │ │ ├── Makefile.objs │ │ ├── README │ │ ├── a64 │ │ │ ├── assembler-a64.h │ │ │ ├── constants-a64.h │ │ │ ├── cpu-a64.h │ │ │ ├── decoder-a64.cc │ │ │ ├── decoder-a64.h │ │ │ ├── disasm-a64.cc │ │ │ ├── disasm-a64.h │ │ │ ├── instructions-a64.cc │ │ │ └── instructions-a64.h │ │ ├── globals.h │ │ ├── platform.h │ │ ├── utils.cc │ │ └── utils.h │ ├── lm32.c │ ├── m68k.c │ ├── microblaze.c │ ├── mips.c │ ├── moxie.c │ ├── ppc.c │ ├── s390.c │ ├── sh4.c │ ├── sparc.c │ └── tci.c ├── dma-helpers.c ├── docs │ ├── atomics.txt │ ├── blkverify.txt │ ├── bootindex.txt │ ├── ccid.txt │ ├── ich9-ehci-uhci.cfg │ ├── libcacard.txt │ ├── live-block-ops.txt │ ├── memory.txt │ ├── migration.txt │ ├── multiseat.txt │ ├── q35-chipset.cfg │ ├── qapi-code-gen.txt │ ├── qdev-device-use.txt │ ├── qemupciserial.inf │ ├── qmp │ │ ├── README │ │ ├── qmp-events.txt │ │ └── qmp-spec.txt │ ├── rdma.txt │ ├── specs │ │ ├── acpi_cpu_hotplug.txt │ │ ├── acpi_pci_hotplug.txt │ │ ├── ivshmem_device_spec.txt │ │ ├── pci-ids.txt │ │ ├── pci-serial.txt │ │ ├── pci-testdev.txt │ │ ├── ppc-spapr-hcalls.txt │ │ ├── pvpanic.txt │ │ ├── qcow2.txt │ │ ├── qed_spec.txt │ │ ├── standard-vga.txt │ │ └── vmw_pvscsi-spec.txt │ ├── spice-port-fqdn.txt │ ├── tracing.txt │ ├── usb-storage.txt │ ├── usb2.txt │ ├── virtio-balloon-stats.txt │ ├── vnc-ledstate-Pseudo-encoding.txt │ ├── writing-qmp-commands.txt │ ├── xbzrle.txt │ └── xen-save-devices-state.txt ├── dtc │ ├── .gitignore │ ├── Documentation │ │ ├── dtc-paper.bib │ │ ├── dtc-paper.tex │ │ ├── dts-format.txt │ │ └── manual.txt │ ├── GPL │ ├── Makefile │ ├── Makefile.convert-dtsv0 │ ├── Makefile.dtc │ ├── Makefile.ftdump │ ├── README.license │ ├── TODO │ ├── checks.c │ ├── convert-dtsv0-lexer.l │ ├── data.c │ ├── dtc-lexer.l │ ├── dtc-parser.y │ ├── dtc.c │ ├── dtc.h │ ├── dtdiff │ ├── flattree.c │ ├── fstree.c │ ├── ftdump.c │ ├── libfdt │ │ ├── Makefile.libfdt │ │ ├── TODO │ │ ├── fdt.c │ │ ├── fdt.h │ │ ├── fdt_ro.c │ │ ├── fdt_rw.c │ │ ├── fdt_strerror.c │ │ ├── fdt_sw.c │ │ ├── fdt_wip.c │ │ ├── libfdt.h │ │ ├── libfdt_env.h │ │ ├── libfdt_internal.h │ │ └── version.lds │ ├── livetree.c │ ├── scripts │ │ └── setlocalversion │ ├── srcpos.c │ ├── srcpos.h │ ├── tests │ │ ├── .gitignore │ │ ├── Makefile.tests │ │ ├── add_subnode_with_nops.c │ │ ├── aliases.dts │ │ ├── asm_tree_dump.c │ │ ├── bad-empty-ranges.dts │ │ ├── bad-name-property.dts │ │ ├── bad-ncells.dts │ │ ├── bad-reg-ranges.dts │ │ ├── bad-string-props.dts │ │ ├── base01.asm │ │ ├── base01.cmd │ │ ├── base01.dts │ │ ├── base01.stderr │ │ ├── boot-cpuid.c │ │ ├── boot-cpuid.dts │ │ ├── comments-cmp.dts │ │ ├── comments.dts │ │ ├── data.S │ │ ├── default-addr-size.dts │ │ ├── del_node.c │ │ ├── del_property.c │ │ ├── dtb_reverse.c │ │ ├── dtbs_equal_ordered.c │ │ ├── dtbs_equal_unordered.c │ │ ├── dtc-checkfails.sh │ │ ├── dtc-fatal.sh │ │ ├── dumptrees.c │ │ ├── dup-nodename.dts │ │ ├── dup-phandle.dts │ │ ├── dup-propname.dts │ │ ├── empty.dts │ │ ├── escapes.dts │ │ ├── extra-terminating-null.c │ │ ├── extra-terminating-null.dts │ │ ├── find_property.c │ │ ├── get_alias.c │ │ ├── get_mem_rsv.c │ │ ├── get_name.c │ │ ├── get_path.c │ │ ├── get_phandle.c │ │ ├── getprop.c │ │ ├── incbin.bin │ │ ├── incbin.c │ │ ├── incbin.dts │ │ ├── include0.dts │ │ ├── include1.dts │ │ ├── include2.dts │ │ ├── include3.dts │ │ ├── include4.dts │ │ ├── include5.dts │ │ ├── include6.dts │ │ ├── include7.dts │ │ ├── include8.dts │ │ ├── label01.dts │ │ ├── mangle-layout.c │ │ ├── mangle-layout.supp │ │ ├── minusone-phandle.dts │ │ ├── move_and_save.c │ │ ├── multilabel.dts │ │ ├── multilabel_merge.dts │ │ ├── node_check_compatible.c │ │ ├── node_offset_by_compatible.c │ │ ├── node_offset_by_phandle.c │ │ ├── node_offset_by_prop_value.c │ │ ├── nonexist-label-ref.dts │ │ ├── nonexist-node-ref.dts │ │ ├── nonexist-node-ref2.dts │ │ ├── nop_node.c │ │ ├── nop_property.c │ │ ├── nopulate.c │ │ ├── notfound.c │ │ ├── obsolete-chosen-interrupt-controller.dts │ │ ├── open_pack.c │ │ ├── open_pack.supp │ │ ├── parent_offset.c │ │ ├── path-references.c │ │ ├── path-references.dts │ │ ├── path_offset.c │ │ ├── path_offset_aliases.c │ │ ├── phandle_format.c │ │ ├── prop-after-subnode.dts │ │ ├── references.c │ │ ├── references.dts │ │ ├── reg-ranges-root.dts │ │ ├── reuse-label.dts │ │ ├── reuse-label1.dts │ │ ├── reuse-label2.dts │ │ ├── reuse-label3.dts │ │ ├── reuse-label4.dts │ │ ├── reuse-label5.dts │ │ ├── reuse-label6.dts │ │ ├── root_node.c │ │ ├── run_tests.sh │ │ ├── rw_tree1.c │ │ ├── set_name.c │ │ ├── setprop.c │ │ ├── setprop_inplace.c │ │ ├── string_escapes.c │ │ ├── subnode_offset.c │ │ ├── supernode_atdepth_offset.c │ │ ├── sw_tree1.c │ │ ├── test01.asm │ │ ├── test01.dts │ │ ├── test01.stderr │ │ ├── test_kernel_dts │ │ ├── test_tree1.dts │ │ ├── test_tree1_dts0.dts │ │ ├── test_tree1_merge.dts │ │ ├── test_tree1_merge_labelled.dts │ │ ├── test_tree1_merge_path.dts │ │ ├── test_tree1_wrong1.dts │ │ ├── test_tree1_wrong2.dts │ │ ├── test_tree1_wrong3.dts │ │ ├── test_tree1_wrong4.dts │ │ ├── test_tree1_wrong5.dts │ │ ├── test_tree1_wrong6.dts │ │ ├── test_tree1_wrong7.dts │ │ ├── test_tree1_wrong8.dts │ │ ├── test_tree1_wrong9.dts │ │ ├── testdata.h │ │ ├── tests.h │ │ ├── tests.sh │ │ ├── testutils.c │ │ ├── trees.S │ │ ├── truncated_property.c │ │ ├── value-labels.c │ │ ├── value-labels.dts │ │ └── zero-phandle.dts │ ├── treesource.c │ ├── util.c │ └── util.h ├── dump.c ├── exec.c ├── fpu │ ├── softfloat-macros.h │ ├── softfloat-specialize.h │ └── softfloat.c ├── fsdev │ ├── Makefile.objs │ ├── file-op-9p.h │ ├── qemu-fsdev-dummy.c │ ├── qemu-fsdev-opts.c │ ├── qemu-fsdev.c │ ├── qemu-fsdev.h │ ├── virtfs-proxy-helper.c │ ├── virtfs-proxy-helper.texi │ ├── virtio-9p-marshal.c │ └── virtio-9p-marshal.h ├── gdb-xml │ ├── aarch64-core.xml │ ├── aarch64-fpu.xml │ ├── arm-core.xml │ ├── arm-neon.xml │ ├── arm-vfp.xml │ ├── arm-vfp3.xml │ ├── cf-core.xml │ ├── cf-fp.xml │ ├── power-altivec.xml │ ├── power-core.xml │ ├── power-fpu.xml │ ├── power-spe.xml │ └── power64-core.xml ├── gdbstub.c ├── hmp-commands.hx ├── hmp.c ├── hmp.h ├── hw │ ├── 9pfs │ │ ├── Makefile.objs │ │ ├── codir.c │ │ ├── cofile.c │ │ ├── cofs.c │ │ ├── coxattr.c │ │ ├── virtio-9p-coth.c │ │ ├── virtio-9p-coth.h │ │ ├── virtio-9p-device.c │ │ ├── virtio-9p-handle.c │ │ ├── virtio-9p-local.c │ │ ├── virtio-9p-posix-acl.c │ │ ├── virtio-9p-proxy.c │ │ ├── virtio-9p-proxy.h │ │ ├── virtio-9p-synth.c │ │ ├── virtio-9p-synth.h │ │ ├── virtio-9p-xattr-user.c │ │ ├── virtio-9p-xattr.c │ │ ├── virtio-9p-xattr.h │ │ ├── virtio-9p.c │ │ └── virtio-9p.h │ ├── Makefile.objs │ ├── acpi │ │ ├── Makefile.objs │ │ ├── core.c │ │ ├── cpu_hotplug.c │ │ ├── ich9.c │ │ ├── pcihp.c │ │ └── piix4.c │ ├── alpha │ │ ├── Makefile.objs │ │ ├── alpha_sys.h │ │ ├── dp264.c │ │ ├── pci.c │ │ └── typhoon.c │ ├── arm │ │ ├── Makefile.objs │ │ ├── allwinner-a10.c │ │ ├── armv7m.c │ │ ├── boot.c │ │ ├── collie.c │ │ ├── cubieboard.c │ │ ├── digic.c │ │ ├── digic_boards.c │ │ ├── exynos4210.c │ │ ├── exynos4_boards.c │ │ ├── gumstix.c │ │ ├── highbank.c │ │ ├── integratorcp.c │ │ ├── kzm.c │ │ ├── mainstone.c │ │ ├── musicpal.c │ │ ├── nseries.c │ │ ├── omap1.c │ │ ├── omap2.c │ │ ├── omap_sx1.c │ │ ├── palm.c │ │ ├── pxa2xx.c │ │ ├── pxa2xx_gpio.c │ │ ├── pxa2xx_pic.c │ │ ├── realview.c │ │ ├── spitz.c │ │ ├── stellaris.c │ │ ├── strongarm.c │ │ ├── strongarm.h │ │ ├── tosa.c │ │ ├── versatilepb.c │ │ ├── vexpress.c │ │ ├── virt.c │ │ ├── xilinx_zynq.c │ │ └── z2.c │ ├── audio │ │ ├── Makefile.objs │ │ ├── ac97.c │ │ ├── adlib.c │ │ ├── cs4231.c │ │ ├── cs4231a.c │ │ ├── es1370.c │ │ ├── fmopl.c │ │ ├── fmopl.h │ │ ├── gus.c │ │ ├── gusemu.h │ │ ├── gusemu_hal.c │ │ ├── gusemu_mixer.c │ │ ├── gustate.h │ │ ├── hda-codec-common.h │ │ ├── hda-codec.c │ │ ├── intel-hda-defs.h │ │ ├── intel-hda.c │ │ ├── intel-hda.h │ │ ├── lm4549.c │ │ ├── lm4549.h │ │ ├── marvell_88w8618.c │ │ ├── milkymist-ac97.c │ │ ├── pcspk.c │ │ ├── pl041.c │ │ ├── pl041.h │ │ ├── pl041.hx │ │ ├── sb16.c │ │ └── wm8750.c │ ├── block │ │ ├── Makefile.objs │ │ ├── block.c │ │ ├── cdrom.c │ │ ├── dataplane │ │ │ ├── Makefile.objs │ │ │ ├── ioq.c │ │ │ ├── ioq.h │ │ │ ├── virtio-blk.c │ │ │ └── virtio-blk.h │ │ ├── ecc.c │ │ ├── fdc.c │ │ ├── hd-geometry.c │ │ ├── m25p80.c │ │ ├── nand.c │ │ ├── nvme.c │ │ ├── nvme.h │ │ ├── onenand.c │ │ ├── pflash_cfi01.c │ │ ├── pflash_cfi02.c │ │ ├── tc58128.c │ │ ├── virtio-blk.c │ │ ├── xen_blkif.h │ │ └── xen_disk.c │ ├── bt │ │ ├── Makefile.objs │ │ ├── core.c │ │ ├── hci-csr.c │ │ ├── hci.c │ │ ├── hid.c │ │ ├── l2cap.c │ │ └── sdp.c │ ├── char │ │ ├── Makefile.objs │ │ ├── cadence_uart.c │ │ ├── debugcon.c │ │ ├── digic-uart.c │ │ ├── escc.c │ │ ├── etraxfs_ser.c │ │ ├── exynos4210_uart.c │ │ ├── grlib_apbuart.c │ │ ├── imx_serial.c │ │ ├── ipoctal232.c │ │ ├── lev-pci.c │ │ ├── lm32_juart.c │ │ ├── lm32_uart.c │ │ ├── mcf_uart.c │ │ ├── milkymist-uart.c │ │ ├── omap_uart.c │ │ ├── parallel.c │ │ ├── pl011.c │ │ ├── sclpconsole-lm.c │ │ ├── sclpconsole.c │ │ ├── serial-isa.c │ │ ├── serial-pci.c │ │ ├── serial.c │ │ ├── sh_serial.c │ │ ├── spapr_vty.c │ │ ├── virtio-console.c │ │ ├── virtio-serial-bus.c │ │ ├── xen_console.c │ │ └── xilinx_uartlite.c │ ├── core │ │ ├── Makefile.objs │ │ ├── empty_slot.c │ │ ├── fw-path-provider.c │ │ ├── hotplug.c │ │ ├── irq.c │ │ ├── loader.c │ │ ├── machine.c │ │ ├── null-machine.c │ │ ├── ptimer.c │ │ ├── qdev-properties-system.c │ │ ├── qdev-properties.c │ │ ├── qdev.c │ │ ├── stream.c │ │ ├── sysbus.c │ │ └── uboot_image.h │ ├── cpu │ │ ├── Makefile.objs │ │ ├── a15mpcore.c │ │ ├── a9mpcore.c │ │ ├── arm11mpcore.c │ │ ├── icc_bus.c │ │ └── realview_mpcore.c │ ├── cris │ │ ├── Makefile.objs │ │ ├── axis_dev88.c │ │ ├── boot.c │ │ └── boot.h │ ├── display │ │ ├── Makefile.objs │ │ ├── ads7846.c │ │ ├── blizzard.c │ │ ├── blizzard_template.h │ │ ├── cg3.c │ │ ├── cirrus_vga.c │ │ ├── cirrus_vga_rop.h │ │ ├── cirrus_vga_rop2.h │ │ ├── cirrus_vga_template.h │ │ ├── exynos4210_fimd.c │ │ ├── framebuffer.c │ │ ├── framebuffer.h │ │ ├── g364fb.c │ │ ├── jazz_led.c │ │ ├── milkymist-tmu2.c │ │ ├── milkymist-vgafb.c │ │ ├── milkymist-vgafb_template.h │ │ ├── omap_dss.c │ │ ├── omap_lcd_template.h │ │ ├── omap_lcdc.c │ │ ├── pl110.c │ │ ├── pl110_template.h │ │ ├── pxa2xx_lcd.c │ │ ├── pxa2xx_template.h │ │ ├── qxl-logger.c │ │ ├── qxl-render.c │ │ ├── qxl.c │ │ ├── qxl.h │ │ ├── sm501.c │ │ ├── sm501_template.h │ │ ├── ssd0303.c │ │ ├── ssd0323.c │ │ ├── tc6393xb.c │ │ ├── tc6393xb_template.h │ │ ├── tcx.c │ │ ├── vga-isa-mm.c │ │ ├── vga-isa.c │ │ ├── vga-pci.c │ │ ├── vga.c │ │ ├── vga.h │ │ ├── vga_int.h │ │ ├── vga_template.h │ │ ├── vmware_vga.c │ │ └── xenfb.c │ ├── dma │ │ ├── Makefile.objs │ │ ├── etraxfs_dma.c │ │ ├── i82374.c │ │ ├── i8257.c │ │ ├── omap_dma.c │ │ ├── pl080.c │ │ ├── pl330.c │ │ ├── puv3_dma.c │ │ ├── pxa2xx_dma.c │ │ ├── rc4030.c │ │ ├── soc_dma.c │ │ ├── sparc32_dma.c │ │ ├── sun4m_iommu.c │ │ └── xilinx_axidma.c │ ├── gpio │ │ ├── Makefile.objs │ │ ├── max7310.c │ │ ├── omap_gpio.c │ │ ├── pl061.c │ │ ├── puv3_gpio.c │ │ └── zaurus.c │ ├── i2c │ │ ├── Makefile.objs │ │ ├── bitbang_i2c.c │ │ ├── bitbang_i2c.h │ │ ├── core.c │ │ ├── exynos4210_i2c.c │ │ ├── omap_i2c.c │ │ ├── pm_smbus.c │ │ ├── smbus.c │ │ ├── smbus_eeprom.c │ │ ├── smbus_ich9.c │ │ └── versatile_i2c.c │ ├── i386 │ │ ├── Makefile.objs │ │ ├── acpi-build.c │ │ ├── acpi-build.h │ │ ├── acpi-defs.h │ │ ├── acpi-dsdt-cpu-hotplug.dsl │ │ ├── acpi-dsdt-dbug.dsl │ │ ├── acpi-dsdt-hpet.dsl │ │ ├── acpi-dsdt-isa.dsl │ │ ├── acpi-dsdt-pci-crs.dsl │ │ ├── acpi-dsdt.dsl │ │ ├── acpi-dsdt.hex.generated │ │ ├── bios-linker-loader.c │ │ ├── bios-linker-loader.h │ │ ├── kvm │ │ │ ├── Makefile.objs │ │ │ ├── apic.c │ │ │ ├── clock.c │ │ │ ├── i8254.c │ │ │ ├── i8259.c │ │ │ ├── ioapic.c │ │ │ └── pci-assign.c │ │ ├── kvmvapic.c │ │ ├── multiboot.c │ │ ├── multiboot.h │ │ ├── pc.c │ │ ├── pc_piix.c │ │ ├── pc_q35.c │ │ ├── pc_sysfw.c │ │ ├── q35-acpi-dsdt.dsl │ │ ├── q35-acpi-dsdt.hex.generated │ │ ├── smbios.c │ │ ├── ssdt-misc.dsl │ │ ├── ssdt-misc.hex.generated │ │ ├── ssdt-pcihp.dsl │ │ ├── ssdt-pcihp.hex.generated │ │ ├── ssdt-proc.dsl │ │ ├── ssdt-proc.hex.generated │ │ └── xen │ │ │ ├── Makefile.objs │ │ │ ├── xen_apic.c │ │ │ ├── xen_platform.c │ │ │ └── xen_pvdevice.c │ ├── ide │ │ ├── Makefile.objs │ │ ├── ahci.c │ │ ├── ahci.h │ │ ├── atapi.c │ │ ├── cmd646.c │ │ ├── core.c │ │ ├── ich.c │ │ ├── internal.h │ │ ├── isa.c │ │ ├── macio.c │ │ ├── microdrive.c │ │ ├── mmio.c │ │ ├── pci.c │ │ ├── pci.h │ │ ├── piix.c │ │ ├── qdev.c │ │ └── via.c │ ├── input │ │ ├── Makefile.objs │ │ ├── adb.c │ │ ├── hid.c │ │ ├── lm832x.c │ │ ├── milkymist-softusb.c │ │ ├── pckbd.c │ │ ├── pl050.c │ │ ├── ps2.c │ │ ├── pxa2xx_keypad.c │ │ ├── stellaris_input.c │ │ ├── tsc2005.c │ │ ├── tsc210x.c │ │ └── vmmouse.c │ ├── intc │ │ ├── Makefile.objs │ │ ├── allwinner-a10-pic.c │ │ ├── apic.c │ │ ├── apic_common.c │ │ ├── arm_gic.c │ │ ├── arm_gic_common.c │ │ ├── arm_gic_kvm.c │ │ ├── armv7m_nvic.c │ │ ├── etraxfs_pic.c │ │ ├── exynos4210_combiner.c │ │ ├── exynos4210_gic.c │ │ ├── gic_internal.h │ │ ├── grlib_irqmp.c │ │ ├── heathrow_pic.c │ │ ├── i8259.c │ │ ├── i8259_common.c │ │ ├── imx_avic.c │ │ ├── ioapic.c │ │ ├── ioapic_common.c │ │ ├── lm32_pic.c │ │ ├── omap_intc.c │ │ ├── openpic.c │ │ ├── openpic_kvm.c │ │ ├── pl190.c │ │ ├── puv3_intc.c │ │ ├── realview_gic.c │ │ ├── s390_flic.c │ │ ├── s390_flic_kvm.c │ │ ├── sh_intc.c │ │ ├── slavio_intctl.c │ │ ├── xics.c │ │ ├── xics_kvm.c │ │ └── xilinx_intc.c │ ├── ipack │ │ ├── Makefile.objs │ │ ├── ipack.c │ │ └── tpci200.c │ ├── isa │ │ ├── Makefile.objs │ │ ├── apm.c │ │ ├── i82378.c │ │ ├── isa-bus.c │ │ ├── lpc_ich9.c │ │ ├── pc87312.c │ │ ├── piix4.c │ │ └── vt82c686.c │ ├── lm32 │ │ ├── Makefile.objs │ │ ├── lm32.h │ │ ├── lm32_boards.c │ │ ├── lm32_hwsetup.h │ │ ├── milkymist-hw.h │ │ └── milkymist.c │ ├── m68k │ │ ├── Makefile.objs │ │ ├── an5206.c │ │ ├── dummy_m68k.c │ │ ├── mcf5206.c │ │ ├── mcf5208.c │ │ └── mcf_intc.c │ ├── microblaze │ │ ├── Makefile.objs │ │ ├── boot.c │ │ ├── boot.h │ │ ├── petalogix_ml605_mmu.c │ │ └── petalogix_s3adsp1800_mmu.c │ ├── mips │ │ ├── Makefile.objs │ │ ├── addr.c │ │ ├── cputimer.c │ │ ├── gt64xxx_pci.c │ │ ├── mips_fulong2e.c │ │ ├── mips_int.c │ │ ├── mips_jazz.c │ │ ├── mips_malta.c │ │ ├── mips_mipssim.c │ │ └── mips_r4k.c │ ├── misc │ │ ├── Makefile.objs │ │ ├── a9scu.c │ │ ├── applesmc.c │ │ ├── arm11scu.c │ │ ├── arm_integrator_debug.c │ │ ├── arm_l2x0.c │ │ ├── arm_sysctl.c │ │ ├── cbus.c │ │ ├── debugexit.c │ │ ├── eccmemctl.c │ │ ├── exynos4210_pmu.c │ │ ├── imx_ccm.c │ │ ├── ivshmem.c │ │ ├── macio │ │ │ ├── Makefile.objs │ │ │ ├── cuda.c │ │ │ ├── mac_dbdma.c │ │ │ └── macio.c │ │ ├── max111x.c │ │ ├── milkymist-hpdmc.c │ │ ├── milkymist-pfpu.c │ │ ├── mst_fpga.c │ │ ├── omap_clk.c │ │ ├── omap_gpmc.c │ │ ├── omap_l4.c │ │ ├── omap_sdrc.c │ │ ├── omap_tap.c │ │ ├── pc-testdev.c │ │ ├── pci-testdev.c │ │ ├── puv3_pm.c │ │ ├── pvpanic.c │ │ ├── sga.c │ │ ├── slavio_misc.c │ │ ├── tmp105.c │ │ ├── tmp105.h │ │ ├── vfio.c │ │ ├── vmport.c │ │ └── zynq_slcr.c │ ├── moxie │ │ ├── Makefile.objs │ │ └── moxiesim.c │ ├── net │ │ ├── Makefile.objs │ │ ├── allwinner_emac.c │ │ ├── cadence_gem.c │ │ ├── dp8393x.c │ │ ├── e1000.c │ │ ├── e1000_regs.h │ │ ├── eepro100.c │ │ ├── etraxfs_eth.c │ │ ├── fsl_etsec │ │ │ ├── etsec.c │ │ │ ├── etsec.h │ │ │ ├── miim.c │ │ │ ├── registers.c │ │ │ ├── registers.h │ │ │ └── rings.c │ │ ├── lan9118.c │ │ ├── lance.c │ │ ├── mcf_fec.c │ │ ├── milkymist-minimac2.c │ │ ├── mipsnet.c │ │ ├── ne2000-isa.c │ │ ├── ne2000.c │ │ ├── ne2000.h │ │ ├── opencores_eth.c │ │ ├── pcnet-pci.c │ │ ├── pcnet.c │ │ ├── pcnet.h │ │ ├── rtl8139.c │ │ ├── smc91c111.c │ │ ├── spapr_llan.c │ │ ├── stellaris_enet.c │ │ ├── vhost_net.c │ │ ├── virtio-net.c │ │ ├── vmware_utils.h │ │ ├── vmxnet3.c │ │ ├── vmxnet3.h │ │ ├── vmxnet_debug.h │ │ ├── vmxnet_rx_pkt.c │ │ ├── vmxnet_rx_pkt.h │ │ ├── vmxnet_tx_pkt.c │ │ ├── vmxnet_tx_pkt.h │ │ ├── xen_nic.c │ │ ├── xgmac.c │ │ ├── xilinx_axienet.c │ │ └── xilinx_ethlite.c │ ├── nvram │ │ ├── Makefile.objs │ │ ├── ds1225y.c │ │ ├── eeprom93xx.c │ │ ├── fw_cfg.c │ │ ├── mac_nvram.c │ │ └── spapr_nvram.c │ ├── openrisc │ │ ├── Makefile.objs │ │ ├── cputimer.c │ │ ├── openrisc_sim.c │ │ └── pic_cpu.c │ ├── pci-bridge │ │ ├── Makefile.objs │ │ ├── dec.c │ │ ├── dec.h │ │ ├── i82801b11.c │ │ ├── ioh3420.c │ │ ├── ioh3420.h │ │ ├── pci_bridge_dev.c │ │ ├── xio3130_downstream.c │ │ ├── xio3130_downstream.h │ │ ├── xio3130_upstream.c │ │ └── xio3130_upstream.h │ ├── pci-host │ │ ├── Makefile.objs │ │ ├── apb.c │ │ ├── bonito.c │ │ ├── grackle.c │ │ ├── pam.c │ │ ├── piix.c │ │ ├── ppce500.c │ │ ├── prep.c │ │ ├── q35.c │ │ ├── uninorth.c │ │ └── versatile.c │ ├── pci │ │ ├── Makefile.objs │ │ ├── msi.c │ │ ├── msix.c │ │ ├── pci-hotplug-old.c │ │ ├── pci-stub.c │ │ ├── pci.c │ │ ├── pci_bridge.c │ │ ├── pci_host.c │ │ ├── pcie.c │ │ ├── pcie_aer.c │ │ ├── pcie_host.c │ │ ├── pcie_port.c │ │ ├── shpc.c │ │ └── slotid_cap.c │ ├── pcmcia │ │ ├── Makefile.objs │ │ ├── pcmcia.c │ │ └── pxa2xx.c │ ├── ppc │ │ ├── Makefile.objs │ │ ├── e500-ccsr.h │ │ ├── e500.c │ │ ├── e500.h │ │ ├── e500plat.c │ │ ├── mac.h │ │ ├── mac_newworld.c │ │ ├── mac_oldworld.c │ │ ├── mpc8544_guts.c │ │ ├── mpc8544ds.c │ │ ├── ppc.c │ │ ├── ppc405.h │ │ ├── ppc405_boards.c │ │ ├── ppc405_uc.c │ │ ├── ppc440_bamboo.c │ │ ├── ppc4xx_devs.c │ │ ├── ppc4xx_pci.c │ │ ├── ppc_booke.c │ │ ├── ppce500_spin.c │ │ ├── prep.c │ │ ├── spapr.c │ │ ├── spapr_events.c │ │ ├── spapr_hcall.c │ │ ├── spapr_iommu.c │ │ ├── spapr_pci.c │ │ ├── spapr_rtas.c │ │ ├── spapr_vio.c │ │ └── virtex_ml507.c │ ├── s390x │ │ ├── Makefile.objs │ │ ├── css.c │ │ ├── css.h │ │ ├── event-facility.c │ │ ├── ipl.c │ │ ├── s390-virtio-bus.c │ │ ├── s390-virtio-bus.h │ │ ├── s390-virtio-ccw.c │ │ ├── s390-virtio-hcall.c │ │ ├── s390-virtio.c │ │ ├── s390-virtio.h │ │ ├── sclp.c │ │ ├── sclpcpu.c │ │ ├── sclpquiesce.c │ │ ├── virtio-ccw.c │ │ └── virtio-ccw.h │ ├── scsi │ │ ├── Makefile.objs │ │ ├── esp-pci.c │ │ ├── esp.c │ │ ├── lsi53c895a.c │ │ ├── megasas.c │ │ ├── mfi.h │ │ ├── scsi-bus.c │ │ ├── scsi-disk.c │ │ ├── scsi-generic.c │ │ ├── spapr_vscsi.c │ │ ├── srp.h │ │ ├── vhost-scsi.c │ │ ├── viosrp.h │ │ ├── virtio-scsi.c │ │ ├── vmw_pvscsi.c │ │ └── vmw_pvscsi.h │ ├── sd │ │ ├── Makefile.objs │ │ ├── milkymist-memcard.c │ │ ├── omap_mmc.c │ │ ├── pl181.c │ │ ├── pxa2xx_mmci.c │ │ ├── sd.c │ │ ├── sdhci.c │ │ ├── sdhci.h │ │ └── ssi-sd.c │ ├── sh4 │ │ ├── Makefile.objs │ │ ├── r2d.c │ │ ├── sh7750.c │ │ ├── sh7750_regnames.c │ │ ├── sh7750_regnames.h │ │ ├── sh7750_regs.h │ │ ├── sh_pci.c │ │ └── shix.c │ ├── sparc │ │ ├── Makefile.objs │ │ ├── leon3.c │ │ └── sun4m.c │ ├── sparc64 │ │ ├── Makefile.objs │ │ └── sun4u.c │ ├── ssi │ │ ├── Makefile.objs │ │ ├── omap_spi.c │ │ ├── pl022.c │ │ ├── ssi.c │ │ ├── xilinx_spi.c │ │ └── xilinx_spips.c │ ├── timer │ │ ├── Makefile.objs │ │ ├── a9gtimer.c │ │ ├── allwinner-a10-pit.c │ │ ├── arm_mptimer.c │ │ ├── arm_timer.c │ │ ├── cadence_ttc.c │ │ ├── digic-timer.c │ │ ├── ds1338.c │ │ ├── etraxfs_timer.c │ │ ├── exynos4210_mct.c │ │ ├── exynos4210_pwm.c │ │ ├── exynos4210_rtc.c │ │ ├── grlib_gptimer.c │ │ ├── hpet.c │ │ ├── i8254.c │ │ ├── i8254_common.c │ │ ├── imx_epit.c │ │ ├── imx_gpt.c │ │ ├── lm32_timer.c │ │ ├── m48t59.c │ │ ├── mc146818rtc.c │ │ ├── milkymist-sysctl.c │ │ ├── omap_gptimer.c │ │ ├── omap_synctimer.c │ │ ├── pl031.c │ │ ├── puv3_ost.c │ │ ├── pxa2xx_timer.c │ │ ├── sh_timer.c │ │ ├── slavio_timer.c │ │ ├── tusb6010.c │ │ ├── twl92230.c │ │ └── xilinx_timer.c │ ├── tpm │ │ ├── Makefile.objs │ │ ├── tpm_int.h │ │ ├── tpm_passthrough.c │ │ ├── tpm_tis.c │ │ └── tpm_tis.h │ ├── unicore32 │ │ ├── Makefile.objs │ │ └── puv3.c │ ├── usb │ │ ├── Makefile.objs │ │ ├── bus.c │ │ ├── ccid-card-emulated.c │ │ ├── ccid-card-passthru.c │ │ ├── ccid.h │ │ ├── combined-packet.c │ │ ├── core.c │ │ ├── desc-msos.c │ │ ├── desc.c │ │ ├── desc.h │ │ ├── dev-audio.c │ │ ├── dev-bluetooth.c │ │ ├── dev-hid.c │ │ ├── dev-hub.c │ │ ├── dev-mtp.c │ │ ├── dev-network.c │ │ ├── dev-serial.c │ │ ├── dev-smartcard-reader.c │ │ ├── dev-storage.c │ │ ├── dev-uas.c │ │ ├── dev-wacom.c │ │ ├── hcd-ehci-pci.c │ │ ├── hcd-ehci-sysbus.c │ │ ├── hcd-ehci.c │ │ ├── hcd-ehci.h │ │ ├── hcd-musb.c │ │ ├── hcd-ohci.c │ │ ├── hcd-uhci.c │ │ ├── hcd-xhci.c │ │ ├── host-legacy.c │ │ ├── host-libusb.c │ │ ├── host-stub.c │ │ ├── host.h │ │ ├── libhw.c │ │ ├── quirks-ftdi-ids.h │ │ ├── quirks-pl2303-ids.h │ │ ├── quirks.c │ │ ├── quirks.h │ │ └── redirect.c │ ├── virtio │ │ ├── Makefile.objs │ │ ├── dataplane │ │ │ ├── Makefile.objs │ │ │ └── vring.c │ │ ├── vhost.c │ │ ├── virtio-balloon.c │ │ ├── virtio-bus.c │ │ ├── virtio-mmio.c │ │ ├── virtio-pci.c │ │ ├── virtio-pci.h │ │ ├── virtio-rng.c │ │ └── virtio.c │ ├── watchdog │ │ ├── Makefile.objs │ │ ├── watchdog.c │ │ ├── wdt_i6300esb.c │ │ └── wdt_ib700.c │ ├── xen │ │ ├── Makefile.objs │ │ ├── xen-host-pci-device.c │ │ ├── xen-host-pci-device.h │ │ ├── xen_backend.c │ │ ├── xen_devconfig.c │ │ ├── xen_pt.c │ │ ├── xen_pt.h │ │ ├── xen_pt_config_init.c │ │ └── xen_pt_msi.c │ ├── xenpv │ │ ├── Makefile.objs │ │ ├── xen_domainbuild.c │ │ ├── xen_domainbuild.h │ │ └── xen_machine_pv.c │ └── xtensa │ │ ├── Makefile.objs │ │ ├── pic_cpu.c │ │ ├── xtensa_bootparam.h │ │ ├── xtensa_lx60.c │ │ └── xtensa_sim.c ├── include │ ├── block │ │ ├── aio.h │ │ ├── block.h │ │ ├── block_int.h │ │ ├── blockjob.h │ │ ├── coroutine.h │ │ ├── coroutine_int.h │ │ ├── nbd.h │ │ ├── qapi.h │ │ ├── scsi.h │ │ ├── snapshot.h │ │ └── thread-pool.h │ ├── config.h │ ├── disas │ │ ├── bfd.h │ │ └── disas.h │ ├── elf.h │ ├── exec │ │ ├── address-spaces.h │ │ ├── cpu-all.h │ │ ├── cpu-common.h │ │ ├── cpu-defs.h │ │ ├── cputlb.h │ │ ├── exec-all.h │ │ ├── gdbstub.h │ │ ├── gen-icount.h │ │ ├── helper-gen.h │ │ ├── helper-head.h │ │ ├── helper-proto.h │ │ ├── helper-tcg.h │ │ ├── hwaddr.h │ │ ├── ioport.h │ │ ├── memory-internal.h │ │ ├── memory.h │ │ ├── poison.h │ │ ├── ram_addr.h │ │ ├── softmmu-semi.h │ │ ├── softmmu_exec.h │ │ ├── softmmu_header.h │ │ ├── softmmu_template.h │ │ ├── spinlock.h │ │ └── user │ │ │ ├── abitypes.h │ │ │ └── thunk.h │ ├── fpu │ │ └── softfloat.h │ ├── glib-compat.h │ ├── hw │ │ ├── acpi │ │ │ ├── acpi.h │ │ │ ├── cpu_hotplug.h │ │ │ ├── cpu_hotplug_defs.h │ │ │ ├── ich9.h │ │ │ ├── pcihp.h │ │ │ └── piix4.h │ │ ├── arm │ │ │ ├── allwinner-a10.h │ │ │ ├── arm.h │ │ │ ├── digic.h │ │ │ ├── exynos4210.h │ │ │ ├── imx.h │ │ │ ├── omap.h │ │ │ ├── primecell.h │ │ │ ├── pxa.h │ │ │ ├── sharpsl.h │ │ │ └── soc_dma.h │ │ ├── audio │ │ │ ├── audio.h │ │ │ └── pcspk.h │ │ ├── block │ │ │ ├── block.h │ │ │ ├── fdc.h │ │ │ └── flash.h │ │ ├── boards.h │ │ ├── bt.h │ │ ├── char │ │ │ ├── digic-uart.h │ │ │ ├── escc.h │ │ │ ├── lm32_juart.h │ │ │ └── serial.h │ │ ├── cpu │ │ │ ├── a15mpcore.h │ │ │ ├── a9mpcore.h │ │ │ ├── arm11mpcore.h │ │ │ └── icc_bus.h │ │ ├── cris │ │ │ ├── etraxfs.h │ │ │ └── etraxfs_dma.h │ │ ├── devices.h │ │ ├── elf_ops.h │ │ ├── empty_slot.h │ │ ├── fw-path-provider.h │ │ ├── hotplug.h │ │ ├── hw.h │ │ ├── i2c │ │ │ ├── i2c.h │ │ │ ├── pm_smbus.h │ │ │ └── smbus.h │ │ ├── i386 │ │ │ ├── apic-msidef.h │ │ │ ├── apic.h │ │ │ ├── apic_internal.h │ │ │ ├── ich9.h │ │ │ ├── ioapic.h │ │ │ ├── ioapic_internal.h │ │ │ ├── pc.h │ │ │ └── smbios.h │ │ ├── ide.h │ │ ├── input │ │ │ ├── adb.h │ │ │ ├── hid.h │ │ │ └── ps2.h │ │ ├── intc │ │ │ ├── allwinner-a10-pic.h │ │ │ ├── arm_gic.h │ │ │ ├── arm_gic_common.h │ │ │ └── realview_gic.h │ │ ├── ipack │ │ │ └── ipack.h │ │ ├── irq.h │ │ ├── isa │ │ │ ├── apm.h │ │ │ ├── i8259_internal.h │ │ │ ├── isa.h │ │ │ ├── pc87312.h │ │ │ └── vt82c686.h │ │ ├── kvm │ │ │ └── clock.h │ │ ├── lm32 │ │ │ └── lm32_pic.h │ │ ├── loader.h │ │ ├── m68k │ │ │ └── mcf.h │ │ ├── mips │ │ │ ├── bios.h │ │ │ ├── cpudevs.h │ │ │ └── mips.h │ │ ├── misc │ │ │ ├── a9scu.h │ │ │ ├── arm11scu.h │ │ │ ├── arm_integrator_debug.h │ │ │ └── tmp105_regs.h │ │ ├── net │ │ │ └── allwinner_emac.h │ │ ├── nvram │ │ │ ├── eeprom93xx.h │ │ │ ├── fw_cfg.h │ │ │ └── openbios_firmware_abi.h │ │ ├── pci-host │ │ │ ├── apb.h │ │ │ ├── pam.h │ │ │ ├── ppce500.h │ │ │ ├── q35.h │ │ │ └── spapr.h │ │ ├── pci │ │ │ ├── msi.h │ │ │ ├── msix.h │ │ │ ├── pci.h │ │ │ ├── pci_bridge.h │ │ │ ├── pci_bus.h │ │ │ ├── pci_host.h │ │ │ ├── pci_ids.h │ │ │ ├── pci_regs.h │ │ │ ├── pcie.h │ │ │ ├── pcie_aer.h │ │ │ ├── pcie_host.h │ │ │ ├── pcie_port.h │ │ │ ├── pcie_regs.h │ │ │ ├── shpc.h │ │ │ └── slotid_cap.h │ │ ├── pcmcia.h │ │ ├── ppc │ │ │ ├── mac_dbdma.h │ │ │ ├── openpic.h │ │ │ ├── ppc.h │ │ │ ├── ppc4xx.h │ │ │ ├── ppc_e500.h │ │ │ ├── spapr.h │ │ │ ├── spapr_vio.h │ │ │ └── xics.h │ │ ├── ptimer.h │ │ ├── qdev-core.h │ │ ├── qdev-dma.h │ │ ├── qdev-properties.h │ │ ├── qdev.h │ │ ├── s390x │ │ │ ├── adapter.h │ │ │ ├── ebcdic.h │ │ │ ├── event-facility.h │ │ │ ├── s390_flic.h │ │ │ └── sclp.h │ │ ├── scsi │ │ │ ├── esp.h │ │ │ └── scsi.h │ │ ├── sd.h │ │ ├── sh4 │ │ │ ├── sh.h │ │ │ └── sh_intc.h │ │ ├── sparc │ │ │ ├── grlib.h │ │ │ ├── sparc32_dma.h │ │ │ └── sun4m.h │ │ ├── ssi.h │ │ ├── stream.h │ │ ├── sysbus.h │ │ ├── timer │ │ │ ├── a9gtimer.h │ │ │ ├── allwinner-a10-pit.h │ │ │ ├── arm_mptimer.h │ │ │ ├── digic-timer.h │ │ │ ├── hpet.h │ │ │ ├── i8254.h │ │ │ ├── i8254_internal.h │ │ │ ├── m48t59.h │ │ │ ├── mc146818rtc.h │ │ │ └── mc146818rtc_regs.h │ │ ├── unicore32 │ │ │ └── puv3.h │ │ ├── usb.h │ │ ├── virtio │ │ │ ├── dataplane │ │ │ │ └── vring.h │ │ │ ├── vhost-scsi.h │ │ │ ├── vhost.h │ │ │ ├── virtio-9p.h │ │ │ ├── virtio-balloon.h │ │ │ ├── virtio-blk.h │ │ │ ├── virtio-bus.h │ │ │ ├── virtio-net.h │ │ │ ├── virtio-rng.h │ │ │ ├── virtio-scsi.h │ │ │ ├── virtio-serial.h │ │ │ └── virtio.h │ │ └── xen │ │ │ ├── xen.h │ │ │ ├── xen_backend.h │ │ │ └── xen_common.h │ ├── migration │ │ ├── block.h │ │ ├── migration.h │ │ ├── page_cache.h │ │ ├── qemu-file.h │ │ └── vmstate.h │ ├── monitor │ │ ├── monitor.h │ │ └── qdev.h │ ├── net │ │ ├── checksum.h │ │ ├── eth.h │ │ ├── net.h │ │ ├── queue.h │ │ ├── slirp.h │ │ ├── tap.h │ │ └── vhost_net.h │ ├── qapi │ │ ├── dealloc-visitor.h │ │ ├── error.h │ │ ├── opts-visitor.h │ │ ├── qmp-input-visitor.h │ │ ├── qmp-output-visitor.h │ │ ├── qmp │ │ │ ├── dispatch.h │ │ │ ├── json-lexer.h │ │ │ ├── json-parser.h │ │ │ ├── json-streamer.h │ │ │ ├── qbool.h │ │ │ ├── qdict.h │ │ │ ├── qerror.h │ │ │ ├── qfloat.h │ │ │ ├── qint.h │ │ │ ├── qjson.h │ │ │ ├── qlist.h │ │ │ ├── qobject.h │ │ │ ├── qstring.h │ │ │ └── types.h │ │ ├── string-input-visitor.h │ │ ├── string-output-visitor.h │ │ ├── visitor-impl.h │ │ └── visitor.h │ ├── qemu-common.h │ ├── qemu-io.h │ ├── qemu │ │ ├── acl.h │ │ ├── aes.h │ │ ├── atomic.h │ │ ├── bitmap.h │ │ ├── bitops.h │ │ ├── bswap.h │ │ ├── cache-utils.h │ │ ├── compatfd.h │ │ ├── compiler.h │ │ ├── config-file.h │ │ ├── crc32c.h │ │ ├── envlist.h │ │ ├── error-report.h │ │ ├── event_notifier.h │ │ ├── fifo8.h │ │ ├── hbitmap.h │ │ ├── host-utils.h │ │ ├── int128.h │ │ ├── iov.h │ │ ├── log.h │ │ ├── main-loop.h │ │ ├── module.h │ │ ├── notify.h │ │ ├── option.h │ │ ├── option_int.h │ │ ├── osdep.h │ │ ├── queue.h │ │ ├── range.h │ │ ├── ratelimit.h │ │ ├── readline.h │ │ ├── rfifolock.h │ │ ├── seqlock.h │ │ ├── sockets.h │ │ ├── thread-posix.h │ │ ├── thread-win32.h │ │ ├── thread.h │ │ ├── throttle.h │ │ ├── timer.h │ │ ├── tls.h │ │ ├── typedefs.h │ │ ├── uri.h │ │ └── xattr.h │ ├── qom │ │ ├── cpu.h │ │ ├── object.h │ │ ├── object_interfaces.h │ │ └── qom-qobject.h │ ├── sysemu │ │ ├── arch_init.h │ │ ├── balloon.h │ │ ├── blockdev.h │ │ ├── bt.h │ │ ├── char.h │ │ ├── cpus.h │ │ ├── device_tree.h │ │ ├── dma.h │ │ ├── dump.h │ │ ├── iothread.h │ │ ├── kvm.h │ │ ├── memory_mapping.h │ │ ├── os-posix.h │ │ ├── os-win32.h │ │ ├── qtest.h │ │ ├── rng-random.h │ │ ├── rng.h │ │ ├── seccomp.h │ │ ├── sysemu.h │ │ ├── tpm.h │ │ ├── tpm_backend.h │ │ ├── tpm_backend_int.h │ │ ├── watchdog.h │ │ └── xen-mapcache.h │ ├── trace.h │ └── ui │ │ ├── console.h │ │ ├── input.h │ │ ├── pixel_ops.h │ │ ├── qemu-pixman.h │ │ ├── qemu-spice.h │ │ └── spice-display.h ├── iohandler.c ├── ioport.c ├── iothread.c ├── kvm-all.c ├── kvm-stub.c ├── libcacard │ ├── Makefile │ ├── cac.c │ ├── cac.h │ ├── card_7816.c │ ├── card_7816.h │ ├── card_7816t.h │ ├── event.c │ ├── eventt.h │ ├── libcacard.pc.in │ ├── libcacard.syms │ ├── link_test.c │ ├── vcard.c │ ├── vcard.h │ ├── vcard_emul.h │ ├── vcard_emul_nss.c │ ├── vcard_emul_type.c │ ├── vcard_emul_type.h │ ├── vcardt.c │ ├── vcardt.h │ ├── vcardt_internal.h │ ├── vevent.h │ ├── vreader.c │ ├── vreader.h │ ├── vreadert.h │ ├── vscard_common.h │ └── vscclient.c ├── linux-headers │ ├── COPYING │ ├── README │ ├── asm-arm │ │ ├── kvm.h │ │ └── kvm_para.h │ ├── asm-arm64 │ │ ├── kvm.h │ │ └── kvm_para.h │ ├── asm-generic │ │ └── kvm_para.h │ ├── asm-mips │ │ ├── kvm.h │ │ └── kvm_para.h │ ├── asm-powerpc │ │ ├── epapr_hcalls.h │ │ ├── kvm.h │ │ └── kvm_para.h │ ├── asm-s390 │ │ ├── kvm.h │ │ └── kvm_para.h │ ├── asm-x86 │ │ ├── hyperv.h │ │ ├── kvm.h │ │ └── kvm_para.h │ └── linux │ │ ├── kvm.h │ │ ├── kvm_para.h │ │ ├── vfio.h │ │ ├── vhost.h │ │ ├── virtio_config.h │ │ └── virtio_ring.h ├── linux-user │ ├── Makefile.objs │ ├── aarch64 │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── alpha │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── arm │ │ ├── nwfpe │ │ │ ├── Makefile.objs │ │ │ ├── double_cpdo.c │ │ │ ├── extended_cpdo.c │ │ │ ├── fpa11.c │ │ │ ├── fpa11.h │ │ │ ├── fpa11.inl │ │ │ ├── fpa11_cpdo.c │ │ │ ├── fpa11_cpdt.c │ │ │ ├── fpa11_cprt.c │ │ │ ├── fpopcode.c │ │ │ ├── fpopcode.h │ │ │ ├── fpsr.h │ │ │ └── single_cpdo.c │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── cris │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── elfload.c │ ├── errno_defs.h │ ├── flat.h │ ├── flatload.c │ ├── i386 │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── ioctls.h │ ├── linux_loop.h │ ├── linuxload.c │ ├── m68k-sim.c │ ├── m68k │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── main.c │ ├── microblaze │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── mips │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── mips64 │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── mmap.c │ ├── openrisc │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── ppc │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── qemu.h │ ├── s390x │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── sh4 │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── signal.c │ ├── socket.h │ ├── sparc │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── sparc64 │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── strace.c │ ├── strace.list │ ├── syscall.c │ ├── syscall_defs.h │ ├── syscall_types.h │ ├── target_flat.h │ ├── uaccess.c │ ├── uname.c │ ├── uname.h │ ├── unicore32 │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── vm86.c │ └── x86_64 │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h ├── main-loop.c ├── memory.c ├── memory_mapping.c ├── migration-exec.c ├── migration-fd.c ├── migration-rdma.c ├── migration-tcp.c ├── migration-unix.c ├── migration.c ├── module-common.c ├── monitor.c ├── nbd.c ├── net │ ├── Makefile.objs │ ├── checksum.c │ ├── clients.h │ ├── dump.c │ ├── eth.c │ ├── hub.c │ ├── hub.h │ ├── net.c │ ├── netmap.c │ ├── queue.c │ ├── slirp.c │ ├── socket.c │ ├── tap-aix.c │ ├── tap-bsd.c │ ├── tap-haiku.c │ ├── tap-linux.c │ ├── tap-linux.h │ ├── tap-solaris.c │ ├── tap-win32.c │ ├── tap.c │ ├── tap_int.h │ ├── util.c │ ├── util.h │ └── vde.c ├── os-posix.c ├── os-win32.c ├── page_cache.c ├── pc-bios │ ├── Makefile │ ├── QEMU,cgthree.bin │ ├── QEMU,tcx.bin │ ├── README │ ├── acpi-dsdt.aml │ ├── bamboo.dtb │ ├── bamboo.dts │ ├── bios-256k.bin │ ├── bios.bin │ ├── efi-e1000.rom │ ├── efi-eepro100.rom │ ├── efi-ne2k_pci.rom │ ├── efi-pcnet.rom │ ├── efi-rtl8139.rom │ ├── efi-virtio.rom │ ├── keymaps │ │ ├── ar │ │ ├── bepo │ │ ├── common │ │ ├── cz │ │ ├── da │ │ ├── de │ │ ├── de-ch │ │ ├── en-gb │ │ ├── en-us │ │ ├── es │ │ ├── et │ │ ├── fi │ │ ├── fo │ │ ├── fr │ │ ├── fr-be │ │ ├── fr-ca │ │ ├── fr-ch │ │ ├── hr │ │ ├── hu │ │ ├── is │ │ ├── it │ │ ├── ja │ │ ├── lt │ │ ├── lv │ │ ├── mk │ │ ├── modifiers │ │ ├── nl │ │ ├── nl-be │ │ ├── no │ │ ├── pl │ │ ├── pt │ │ ├── pt-br │ │ ├── ru │ │ ├── sl │ │ ├── sv │ │ ├── th │ │ └── tr │ ├── kvmvapic.bin │ ├── linuxboot.bin │ ├── multiboot.bin │ ├── openbios-ppc │ ├── openbios-sparc32 │ ├── openbios-sparc64 │ ├── optionrom │ │ ├── Makefile │ │ ├── kvmvapic.S │ │ ├── linuxboot.S │ │ ├── multiboot.S │ │ └── optionrom.h │ ├── palcode-clipper │ ├── petalogix-ml605.dtb │ ├── petalogix-s3adsp1800.dtb │ ├── ppc_rom.bin │ ├── pxe-e1000.rom │ ├── pxe-eepro100.rom │ ├── pxe-ne2k_pci.rom │ ├── pxe-pcnet.rom │ ├── pxe-rtl8139.rom │ ├── pxe-virtio.rom │ ├── q35-acpi-dsdt.aml │ ├── qemu-icon.bmp │ ├── qemu-nsis.bmp │ ├── qemu-nsis.ico │ ├── qemu_logo.svg │ ├── qemu_logo_no_text.svg │ ├── s390-ccw.img │ ├── s390-ccw │ │ ├── Makefile │ │ ├── bootmap.c │ │ ├── cio.h │ │ ├── main.c │ │ ├── s390-ccw.h │ │ ├── sclp-ascii.c │ │ ├── sclp.h │ │ ├── start.S │ │ ├── virtio.c │ │ └── virtio.h │ ├── s390-zipl.rom │ ├── sgabios.bin │ ├── slof.bin │ ├── spapr-rtas.bin │ ├── spapr-rtas │ │ ├── Makefile │ │ └── spapr-rtas.S │ ├── vgabios-cirrus.bin │ ├── vgabios-qxl.bin │ ├── vgabios-stdvga.bin │ ├── vgabios-vmware.bin │ └── vgabios.bin ├── po │ ├── Makefile │ ├── de_DE.po │ ├── fr_FR.po │ ├── hu.po │ ├── it.po │ ├── messages.po │ └── tr.po ├── qapi-schema.json ├── qapi │ ├── Makefile.objs │ ├── opts-visitor.c │ ├── qapi-dealloc-visitor.c │ ├── qapi-visit-core.c │ ├── qmp-dispatch.c │ ├── qmp-input-visitor.c │ ├── qmp-output-visitor.c │ ├── qmp-registry.c │ ├── string-input-visitor.c │ └── string-output-visitor.c ├── qdev-monitor.c ├── qdict-test-data.txt ├── qemu-bridge-helper.c ├── qemu-char.c ├── qemu-coroutine-io.c ├── qemu-coroutine-lock.c ├── qemu-coroutine-sleep.c ├── qemu-coroutine.c ├── qemu-doc.texi ├── qemu-file.c ├── qemu-img-cmds.hx ├── qemu-img.c ├── qemu-img.texi ├── qemu-io-cmds.c ├── qemu-io.c ├── qemu-log.c ├── qemu-nbd.c ├── qemu-nbd.texi ├── qemu-options-wrapper.h ├── qemu-options.h ├── qemu-options.hx ├── qemu-seccomp.c ├── qemu-tech.texi ├── qemu-timer.c ├── qemu.nsi ├── qemu.sasl ├── qga │ ├── Makefile.objs │ ├── channel-posix.c │ ├── channel-win32.c │ ├── channel.h │ ├── commands-posix.c │ ├── commands-win32.c │ ├── commands.c │ ├── guest-agent-command-state.c │ ├── guest-agent-core.h │ ├── main.c │ ├── qapi-schema.json │ ├── service-win32.c │ ├── service-win32.h │ ├── vss-win32.c │ ├── vss-win32.h │ └── vss-win32 │ │ ├── Makefile.objs │ │ ├── install.cpp │ │ ├── provider.cpp │ │ ├── qga-vss.def │ │ ├── qga-vss.idl │ │ ├── qga-vss.tlb │ │ ├── requester.cpp │ │ ├── requester.h │ │ └── vss-common.h ├── qmp-commands.hx ├── qmp.c ├── qobject │ ├── Makefile.objs │ ├── json-lexer.c │ ├── json-parser.c │ ├── json-streamer.c │ ├── qbool.c │ ├── qdict.c │ ├── qerror.c │ ├── qfloat.c │ ├── qint.c │ ├── qjson.c │ ├── qlist.c │ └── qstring.c ├── qom │ ├── Makefile.objs │ ├── container.c │ ├── cpu.c │ ├── object.c │ ├── object_interfaces.c │ └── qom-qobject.c ├── qtest.c ├── roms │ ├── Makefile │ ├── config.ipxe.general.h │ ├── config.seabios-128k │ ├── config.seabios-256k │ ├── config.vga-cirrus │ ├── config.vga-isavga │ ├── config.vga-qxl │ ├── config.vga-stdvga │ ├── config.vga-vmware │ └── configure-seabios.sh ├── rules.mak ├── savevm.c ├── scripts │ ├── acpi_extract.py │ ├── acpi_extract_preprocess.py │ ├── analyse-9p-simpletrace.py │ ├── check-qerror.sh │ ├── checkpatch.pl │ ├── cleanup-trace-events.pl │ ├── coverity-model.c │ ├── create_config │ ├── disas-objdump.pl │ ├── dump-guest-memory.py │ ├── extract-vsssdk-headers │ ├── feature_to_c.sh │ ├── get_maintainer.pl │ ├── gtester-cat │ ├── hxtool │ ├── kvm │ │ ├── kvm_flightrecorder │ │ ├── kvm_stat │ │ └── vmxcap │ ├── make-release │ ├── make_device_config.sh │ ├── ordereddict.py │ ├── qapi-commands.py │ ├── qapi-types.py │ ├── qapi-visit.py │ ├── qapi.py │ ├── qemu-binfmt-conf.sh │ ├── qemu-gdb.py │ ├── qemu-guest-agent │ │ ├── fsfreeze-hook │ │ └── fsfreeze-hook.d │ │ │ └── mysql-flush.sh.sample │ ├── qmp │ │ ├── qemu-ga-client │ │ ├── qmp │ │ ├── qmp-shell │ │ ├── qmp.py │ │ ├── qom-fuse │ │ ├── qom-get │ │ ├── qom-list │ │ └── qom-set │ ├── qtest │ ├── refresh-pxe-roms.sh │ ├── signrom.py │ ├── simpletrace.py │ ├── switch-timer-api │ ├── texi2pod.pl │ ├── tracetool.py │ ├── tracetool │ │ ├── __init__.py │ │ ├── backend │ │ │ ├── __init__.py │ │ │ ├── dtrace.py │ │ │ ├── ftrace.py │ │ │ ├── simple.py │ │ │ ├── stderr.py │ │ │ └── ust.py │ │ └── format │ │ │ ├── __init__.py │ │ │ ├── c.py │ │ │ ├── d.py │ │ │ ├── events_c.py │ │ │ ├── events_h.py │ │ │ ├── h.py │ │ │ ├── stap.py │ │ │ ├── ust_events_c.py │ │ │ └── ust_events_h.py │ ├── update-acpi.sh │ └── update-linux-headers.sh ├── slirp │ ├── COPYRIGHT │ ├── Makefile.objs │ ├── arp_table.c │ ├── bootp.c │ ├── bootp.h │ ├── cksum.c │ ├── debug.h │ ├── dnssearch.c │ ├── if.c │ ├── if.h │ ├── ip.h │ ├── ip_icmp.c │ ├── ip_icmp.h │ ├── ip_input.c │ ├── ip_output.c │ ├── libslirp.h │ ├── main.h │ ├── mbuf.c │ ├── mbuf.h │ ├── misc.c │ ├── misc.h │ ├── sbuf.c │ ├── sbuf.h │ ├── slirp.c │ ├── slirp.h │ ├── slirp_config.h │ ├── socket.c │ ├── socket.h │ ├── tcp.h │ ├── tcp_input.c │ ├── tcp_output.c │ ├── tcp_subr.c │ ├── tcp_timer.c │ ├── tcp_timer.h │ ├── tcp_var.h │ ├── tcpip.h │ ├── tftp.c │ ├── tftp.h │ ├── udp.c │ └── udp.h ├── spice-qemu-char.c ├── stubs │ ├── Makefile.objs │ ├── arch-query-cpu-def.c │ ├── clock-warp.c │ ├── cpu-get-clock.c │ ├── cpu-get-icount.c │ ├── cpus.c │ ├── dump.c │ ├── fd-register.c │ ├── fdset-add-fd.c │ ├── fdset-find-fd.c │ ├── fdset-get-fd.c │ ├── fdset-remove-fd.c │ ├── gdbstub.c │ ├── get-fd.c │ ├── get-vm-name.c │ ├── iothread-lock.c │ ├── kvm.c │ ├── migr-blocker.c │ ├── mon-is-qmp.c │ ├── mon-printf.c │ ├── mon-protocol-event.c │ ├── mon-set-error.c │ ├── pci-drive-hot-add.c │ ├── qtest.c │ ├── reset.c │ ├── runstate-check.c │ ├── set-fd-handler.c │ ├── slirp.c │ ├── sysbus.c │ ├── uuid.c │ ├── vm-stop.c │ └── vmstate.c ├── sysconfigs │ └── target │ │ └── target-x86_64.conf ├── target-alpha │ ├── Makefile.objs │ ├── STATUS │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── int_helper.c │ ├── machine.c │ ├── mem_helper.c │ ├── sys_helper.c │ └── translate.c ├── target-arm │ ├── Makefile.objs │ ├── arm-semi.c │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── cpu64.c │ ├── crypto_helper.c │ ├── gdbstub.c │ ├── gdbstub64.c │ ├── helper-a64.c │ ├── helper-a64.h │ ├── helper.c │ ├── helper.h │ ├── internals.h │ ├── iwmmxt_helper.c │ ├── kvm-consts.h │ ├── kvm-stub.c │ ├── kvm.c │ ├── kvm32.c │ ├── kvm64.c │ ├── kvm_arm.h │ ├── machine.c │ ├── neon_helper.c │ ├── op_addsub.h │ ├── op_helper.c │ ├── translate-a64.c │ ├── translate.c │ └── translate.h ├── target-cris │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── crisv10-decode.h │ ├── crisv32-decode.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── machine.c │ ├── mmu.c │ ├── mmu.h │ ├── op_helper.c │ ├── opcode-cris.h │ ├── translate.c │ └── translate_v10.c ├── target-i386 │ ├── Makefile.objs │ ├── TODO │ ├── arch_dump.c │ ├── arch_memory_mapping.c │ ├── cc_helper.c │ ├── cc_helper_template.h │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── excp_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── int_helper.c │ ├── ioport-user.c │ ├── kvm-stub.c │ ├── kvm.c │ ├── kvm_i386.h │ ├── machine.c │ ├── mem_helper.c │ ├── misc_helper.c │ ├── ops_sse.h │ ├── ops_sse_header.h │ ├── seg_helper.c │ ├── shift_helper_template.h │ ├── smm_helper.c │ ├── svm.h │ ├── svm_helper.c │ ├── topology.h │ └── translate.c ├── target-lm32 │ ├── Makefile.objs │ ├── README │ ├── TODO │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── lm32-semi.c │ ├── machine.c │ ├── op_helper.c │ └── translate.c ├── target-m68k │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── m68k-qreg.h │ ├── m68k-semi.c │ ├── op_helper.c │ ├── qregs.def │ └── translate.c ├── target-microblaze │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── microblaze-decode.h │ ├── mmu.c │ ├── mmu.h │ ├── op_helper.c │ └── translate.c ├── target-mips │ ├── Makefile.objs │ ├── TODO │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── dsp_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── lmi_helper.c │ ├── machine.c │ ├── mips-defs.h │ ├── op_helper.c │ ├── translate.c │ └── translate_init.c ├── target-moxie │ ├── Makefile.objs │ ├── cpu.c │ ├── cpu.h │ ├── helper.c │ ├── helper.h │ ├── machine.c │ ├── machine.h │ ├── mmu.c │ ├── mmu.h │ └── translate.c ├── target-openrisc │ ├── Makefile.objs │ ├── cpu.c │ ├── cpu.h │ ├── exception.c │ ├── exception.h │ ├── exception_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.h │ ├── int_helper.c │ ├── interrupt.c │ ├── interrupt_helper.c │ ├── machine.c │ ├── mmu.c │ ├── mmu_helper.c │ ├── sys_helper.c │ └── translate.c ├── target-ppc │ ├── Makefile.objs │ ├── STATUS │ ├── arch_dump.c │ ├── cpu-models.c │ ├── cpu-models.h │ ├── cpu-qom.h │ ├── cpu.h │ ├── excp_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.h │ ├── helper_regs.h │ ├── int_helper.c │ ├── kvm-stub.c │ ├── kvm.c │ ├── kvm_ppc.c │ ├── kvm_ppc.h │ ├── machine.c │ ├── mem_helper.c │ ├── mfrom_table.c │ ├── mfrom_table_gen.c │ ├── misc_helper.c │ ├── mmu-hash32.c │ ├── mmu-hash32.h │ ├── mmu-hash64.c │ ├── mmu-hash64.h │ ├── mmu_helper.c │ ├── timebase_helper.c │ ├── translate.c │ ├── translate_init.c │ └── user_only_helper.c ├── target-s390x │ ├── Makefile.objs │ ├── arch_dump.c │ ├── cc_helper.c │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── insn-data.def │ ├── insn-format.def │ ├── int_helper.c │ ├── interrupt.c │ ├── ioinst.c │ ├── ioinst.h │ ├── kvm.c │ ├── mem_helper.c │ ├── misc_helper.c │ └── translate.c ├── target-sh4 │ ├── Makefile.objs │ ├── README.sh4 │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── op_helper.c │ └── translate.c ├── target-sparc │ ├── Makefile.objs │ ├── TODO │ ├── cc_helper.c │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── fop_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── int32_helper.c │ ├── int64_helper.c │ ├── ldst_helper.c │ ├── machine.c │ ├── mmu_helper.c │ ├── translate.c │ ├── vis_helper.c │ └── win_helper.c ├── target-unicore32 │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── helper.c │ ├── helper.h │ ├── op_helper.c │ ├── softmmu.c │ ├── translate.c │ └── ucf64_helper.c ├── target-xtensa │ ├── Makefile.objs │ ├── core-dc232b.c │ ├── core-dc232b │ │ ├── core-isa.h │ │ └── gdb-config.c │ ├── core-dc233c.c │ ├── core-dc233c │ │ ├── core-isa.h │ │ └── gdb-config.c │ ├── core-fsf.c │ ├── core-fsf │ │ └── core-isa.h │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── op_helper.c │ ├── overlay_tool.h │ ├── translate.c │ └── xtensa-semi.c ├── tcg-runtime.c ├── tcg │ ├── LICENSE │ ├── README │ ├── TODO │ ├── aarch64 │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── arm │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── i386 │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── ia64 │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── mips │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── optimize.c │ ├── ppc │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── ppc64 │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── s390 │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── sparc │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── tcg-be-ldst.h │ ├── tcg-be-null.h │ ├── tcg-op.h │ ├── tcg-opc.h │ ├── tcg-runtime.h │ ├── tcg.c │ ├── tcg.h │ └── tci │ │ ├── README │ │ ├── tcg-target.c │ │ └── tcg-target.h ├── tci.c ├── tests │ ├── .gitignore │ ├── Makefile │ ├── ac97-test.c │ ├── acpi-test-data │ │ ├── pc │ │ │ ├── APIC │ │ │ ├── DSDT │ │ │ ├── FACP │ │ │ ├── FACS │ │ │ ├── HPET │ │ │ └── SSDT │ │ ├── q35 │ │ │ ├── APIC │ │ │ ├── DSDT │ │ │ ├── FACP │ │ │ ├── FACS │ │ │ ├── HPET │ │ │ ├── MCFG │ │ │ └── SSDT │ │ └── rebuild-expected-aml.sh │ ├── acpi-test.c │ ├── blockdev-test.c │ ├── boot-order-test.c │ ├── check-block.sh │ ├── check-qdict.c │ ├── check-qfloat.c │ ├── check-qint.c │ ├── check-qjson.c │ ├── check-qlist.c │ ├── check-qom-interface.c │ ├── check-qstring.c │ ├── display-vga-test.c │ ├── e1000-test.c │ ├── eepro100-test.c │ ├── endianness-test.c │ ├── es1370-test.c │ ├── fdc-test.c │ ├── fw_cfg-test.c │ ├── hd-geo-test.c │ ├── i440fx-test.c │ ├── i82801b11-test.c │ ├── ide-test.c │ ├── intel-hda-test.c │ ├── ioh3420-test.c │ ├── ipoctal232-test.c │ ├── libqos │ │ ├── fw_cfg.c │ │ ├── fw_cfg.h │ │ ├── i2c-omap.c │ │ ├── i2c.c │ │ ├── i2c.h │ │ ├── malloc-pc.c │ │ ├── malloc-pc.h │ │ ├── malloc.h │ │ ├── pci-pc.c │ │ ├── pci-pc.h │ │ ├── pci.c │ │ └── pci.h │ ├── libqtest.c │ ├── libqtest.h │ ├── m48t59-test.c │ ├── multiboot │ │ ├── Makefile │ │ ├── libc.c │ │ ├── libc.h │ │ ├── link.ld │ │ ├── mmap.c │ │ ├── multiboot.h │ │ ├── run_test.sh │ │ └── start.S │ ├── ne2000-test.c │ ├── nvme-test.c │ ├── pcnet-test.c │ ├── pvpanic-test.c │ ├── qapi-schema │ │ ├── comments.err │ │ ├── comments.exit │ │ ├── comments.json │ │ ├── duplicate-key.err │ │ ├── duplicate-key.exit │ │ ├── duplicate-key.json │ │ ├── empty.err │ │ ├── empty.exit │ │ ├── empty.json │ │ ├── flat-union-invalid-branch-key.err │ │ ├── flat-union-invalid-branch-key.exit │ │ ├── flat-union-invalid-branch-key.json │ │ ├── flat-union-invalid-discriminator.err │ │ ├── flat-union-invalid-discriminator.exit │ │ ├── flat-union-invalid-discriminator.json │ │ ├── flat-union-no-base.err │ │ ├── flat-union-no-base.exit │ │ ├── flat-union-no-base.json │ │ ├── flat-union-reverse-define.err │ │ ├── flat-union-reverse-define.exit │ │ ├── flat-union-reverse-define.json │ │ ├── flat-union-string-discriminator.err │ │ ├── flat-union-string-discriminator.exit │ │ ├── flat-union-string-discriminator.json │ │ ├── funny-char.err │ │ ├── funny-char.exit │ │ ├── funny-char.json │ │ ├── include-before-err.err │ │ ├── include-before-err.exit │ │ ├── include-before-err.json │ │ ├── include-cycle-b.json │ │ ├── include-cycle-c.json │ │ ├── include-cycle.err │ │ ├── include-cycle.exit │ │ ├── include-cycle.json │ │ ├── include-format-err.err │ │ ├── include-format-err.exit │ │ ├── include-format-err.json │ │ ├── include-nested-err.err │ │ ├── include-nested-err.exit │ │ ├── include-nested-err.json │ │ ├── include-no-file.err │ │ ├── include-no-file.exit │ │ ├── include-no-file.json │ │ ├── include-non-file.err │ │ ├── include-non-file.exit │ │ ├── include-non-file.json │ │ ├── include-relpath-sub.json │ │ ├── include-relpath.err │ │ ├── include-relpath.exit │ │ ├── include-relpath.json │ │ ├── include-repetition-sub.json │ │ ├── include-repetition.err │ │ ├── include-repetition.exit │ │ ├── include-repetition.json │ │ ├── include-self-cycle.err │ │ ├── include-self-cycle.exit │ │ ├── include-self-cycle.json │ │ ├── include-simple-sub.json │ │ ├── include-simple.err │ │ ├── include-simple.exit │ │ ├── include-simple.json │ │ ├── include │ │ │ └── relpath.json │ │ ├── indented-expr.err │ │ ├── indented-expr.exit │ │ ├── indented-expr.json │ │ ├── missing-colon.err │ │ ├── missing-colon.exit │ │ ├── missing-colon.json │ │ ├── missing-comma-list.err │ │ ├── missing-comma-list.exit │ │ ├── missing-comma-list.json │ │ ├── missing-comma-object.err │ │ ├── missing-comma-object.exit │ │ ├── missing-comma-object.json │ │ ├── non-objects.err │ │ ├── non-objects.exit │ │ ├── non-objects.json │ │ ├── qapi-schema-test.err │ │ ├── qapi-schema-test.exit │ │ ├── qapi-schema-test.json │ │ ├── quoted-structural-chars.err │ │ ├── quoted-structural-chars.exit │ │ ├── quoted-structural-chars.json │ │ ├── test-qapi.py │ │ ├── trailing-comma-list.err │ │ ├── trailing-comma-list.exit │ │ ├── trailing-comma-list.json │ │ ├── trailing-comma-object.err │ │ ├── trailing-comma-object.exit │ │ ├── trailing-comma-object.json │ │ ├── unclosed-list.err │ │ ├── unclosed-list.exit │ │ ├── unclosed-list.json │ │ ├── unclosed-object.err │ │ ├── unclosed-object.exit │ │ ├── unclosed-object.json │ │ ├── unclosed-string.err │ │ ├── unclosed-string.exit │ │ ├── unclosed-string.json │ │ ├── union-invalid-base.err │ │ ├── union-invalid-base.exit │ │ └── union-invalid-base.json │ ├── qdev-monitor-test.c │ ├── qemu-iotests-quick.sh │ ├── qemu-iotests │ │ ├── .gitignore │ │ ├── 001 │ │ ├── 002 │ │ ├── 003 │ │ ├── 004 │ │ ├── 005 │ │ ├── 006 │ │ ├── 007 │ │ ├── 008 │ │ ├── 009 │ │ ├── 010 │ │ ├── 011 │ │ ├── 012 │ │ ├── 013 │ │ ├── 014 │ │ ├── 015 │ │ ├── 016 │ │ ├── 017 │ │ ├── 018 │ │ ├── 019 │ │ ├── 020 │ │ ├── 021 │ │ ├── 022 │ │ ├── 023 │ │ ├── 024 │ │ ├── 025 │ │ ├── 026 │ │ ├── 026.out.nocache │ │ ├── 027 │ │ ├── 028 │ │ ├── 029 │ │ ├── 030 │ │ ├── 031 │ │ ├── 032 │ │ ├── 033 │ │ ├── 034 │ │ ├── 035 │ │ ├── 036 │ │ ├── 037 │ │ ├── 038 │ │ ├── 039 │ │ ├── 040 │ │ ├── 041 │ │ ├── 042 │ │ ├── 043 │ │ ├── 044 │ │ ├── 045 │ │ ├── 046 │ │ ├── 047 │ │ ├── 048 │ │ ├── 049 │ │ ├── 050 │ │ ├── 051 │ │ ├── 052 │ │ ├── 053 │ │ ├── 054 │ │ ├── 055 │ │ ├── 056 │ │ ├── 057 │ │ ├── 058 │ │ ├── 059 │ │ ├── 060 │ │ ├── 061 │ │ ├── 062 │ │ ├── 063 │ │ ├── 064 │ │ ├── 065 │ │ ├── 066 │ │ ├── 067 │ │ ├── 068 │ │ ├── 069 │ │ ├── 070 │ │ ├── 071 │ │ ├── 072 │ │ ├── 073 │ │ ├── 074 │ │ ├── 075 │ │ ├── 076 │ │ ├── 077 │ │ ├── 078 │ │ ├── 079 │ │ ├── 080 │ │ ├── 081 │ │ ├── 082 │ │ ├── 083 │ │ ├── 084 │ │ ├── 085 │ │ ├── 086 │ │ ├── 087 │ │ ├── 088 │ │ ├── 089 │ │ ├── 090 │ │ ├── 091 │ │ ├── 092 │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README │ │ ├── check │ │ ├── common │ │ ├── common.config │ │ ├── common.filter │ │ ├── common.pattern │ │ ├── common.qemu │ │ ├── common.rc │ │ ├── group │ │ ├── iotests.py │ │ ├── nbd-fault-injector.py │ │ ├── qcow2.py │ │ ├── qed.py │ │ ├── sample_images │ │ │ ├── README │ │ │ ├── empty.bochs.bz2 │ │ │ ├── fake.parallels.bz2 │ │ │ ├── iotest-dirtylog-10G-4M.vhdx.bz2 │ │ │ ├── iotest-dynamic-1G.vhdx.bz2 │ │ │ ├── iotest-version3.vmdk.bz2 │ │ │ ├── simple-pattern.cloop.bz2 │ │ │ └── test-disk2vhd.vhdx.bz2 │ │ └── socket_scm_helper.c │ ├── qom-test.c │ ├── rtc-test.c │ ├── rtl8139-test.c │ ├── spapr-phb-test.c │ ├── tcg │ │ ├── Makefile │ │ ├── alpha │ │ │ ├── Makefile │ │ │ ├── crt.s │ │ │ ├── hello-alpha.c │ │ │ ├── test-cond.c │ │ │ └── test-ovf.c │ │ ├── cris │ │ │ ├── .gdbinit │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── check_abs.c │ │ │ ├── check_addc.c │ │ │ ├── check_addcm.c │ │ │ ├── check_addi.s │ │ │ ├── check_addiv32.s │ │ │ ├── check_addm.s │ │ │ ├── check_addo.c │ │ │ ├── check_addoq.c │ │ │ ├── check_addq.s │ │ │ ├── check_addr.s │ │ │ ├── check_addxc.s │ │ │ ├── check_addxm.s │ │ │ ├── check_addxr.s │ │ │ ├── check_andc.s │ │ │ ├── check_andm.s │ │ │ ├── check_andq.s │ │ │ ├── check_andr.s │ │ │ ├── check_asr.s │ │ │ ├── check_ba.s │ │ │ ├── check_bas.s │ │ │ ├── check_bcc.s │ │ │ ├── check_bound.c │ │ │ ├── check_boundc.s │ │ │ ├── check_boundr.s │ │ │ ├── check_btst.s │ │ │ ├── check_clearfv32.s │ │ │ ├── check_clrjmp1.s │ │ │ ├── check_cmp-2.s │ │ │ ├── check_cmpc.s │ │ │ ├── check_cmpm.s │ │ │ ├── check_cmpq.s │ │ │ ├── check_cmpr.s │ │ │ ├── check_cmpxc.s │ │ │ ├── check_cmpxm.s │ │ │ ├── check_dstep.s │ │ │ ├── check_ftag.c │ │ │ ├── check_gcctorture_pr28634-1.c │ │ │ ├── check_gcctorture_pr28634.c │ │ │ ├── check_glibc_kernelversion.c │ │ │ ├── check_hello.c │ │ │ ├── check_int64.c │ │ │ ├── check_jsr.s │ │ │ ├── check_lapc.s │ │ │ ├── check_lsl.s │ │ │ ├── check_lsr.s │ │ │ ├── check_lz.c │ │ │ ├── check_mapbrk.c │ │ │ ├── check_mcp.s │ │ │ ├── check_mmap1.c │ │ │ ├── check_mmap2.c │ │ │ ├── check_mmap3.c │ │ │ ├── check_movdelsr1.s │ │ │ ├── check_movecr.s │ │ │ ├── check_movei.s │ │ │ ├── check_movemr.s │ │ │ ├── check_movemrv32.s │ │ │ ├── check_moveq.c │ │ │ ├── check_mover.s │ │ │ ├── check_moverm.s │ │ │ ├── check_movmp.s │ │ │ ├── check_movpmv32.s │ │ │ ├── check_movpr.s │ │ │ ├── check_movprv32.s │ │ │ ├── check_movscr.s │ │ │ ├── check_movsm.s │ │ │ ├── check_movsr.s │ │ │ ├── check_movucr.s │ │ │ ├── check_movum.s │ │ │ ├── check_movur.s │ │ │ ├── check_mulv32.s │ │ │ ├── check_mulx.s │ │ │ ├── check_neg.s │ │ │ ├── check_not.s │ │ │ ├── check_openpf1.c │ │ │ ├── check_openpf2.c │ │ │ ├── check_openpf3.c │ │ │ ├── check_openpf4.c │ │ │ ├── check_openpf5.c │ │ │ ├── check_orc.s │ │ │ ├── check_orm.s │ │ │ ├── check_orq.s │ │ │ ├── check_orr.s │ │ │ ├── check_ret.s │ │ │ ├── check_scc.s │ │ │ ├── check_settls1.c │ │ │ ├── check_sigalrm.c │ │ │ ├── check_stat1.c │ │ │ ├── check_stat2.c │ │ │ ├── check_stat3.c │ │ │ ├── check_stat4.c │ │ │ ├── check_subc.s │ │ │ ├── check_subm.s │ │ │ ├── check_subq.s │ │ │ ├── check_subr.s │ │ │ ├── check_swap.c │ │ │ ├── check_time1.c │ │ │ ├── check_time2.c │ │ │ ├── check_xarith.s │ │ │ ├── crisutils.h │ │ │ ├── crt.s │ │ │ ├── sys.c │ │ │ ├── sys.h │ │ │ └── testutils.inc │ │ ├── hello-arm.c │ │ ├── hello-i386.c │ │ ├── hello-mips.c │ │ ├── linux-test.c │ │ ├── lm32 │ │ │ ├── Makefile │ │ │ ├── crt.S │ │ │ ├── helper.S │ │ │ ├── linker.ld │ │ │ ├── macros.inc │ │ │ ├── test_add.S │ │ │ ├── test_addi.S │ │ │ ├── test_and.S │ │ │ ├── test_andhi.S │ │ │ ├── test_andi.S │ │ │ ├── test_b.S │ │ │ ├── test_be.S │ │ │ ├── test_bg.S │ │ │ ├── test_bge.S │ │ │ ├── test_bgeu.S │ │ │ ├── test_bgu.S │ │ │ ├── test_bi.S │ │ │ ├── test_bne.S │ │ │ ├── test_break.S │ │ │ ├── test_bret.S │ │ │ ├── test_call.S │ │ │ ├── test_calli.S │ │ │ ├── test_cmpe.S │ │ │ ├── test_cmpei.S │ │ │ ├── test_cmpg.S │ │ │ ├── test_cmpge.S │ │ │ ├── test_cmpgei.S │ │ │ ├── test_cmpgeu.S │ │ │ ├── test_cmpgeui.S │ │ │ ├── test_cmpgi.S │ │ │ ├── test_cmpgu.S │ │ │ ├── test_cmpgui.S │ │ │ ├── test_cmpne.S │ │ │ ├── test_cmpnei.S │ │ │ ├── test_divu.S │ │ │ ├── test_eret.S │ │ │ ├── test_lb.S │ │ │ ├── test_lbu.S │ │ │ ├── test_lh.S │ │ │ ├── test_lhu.S │ │ │ ├── test_lw.S │ │ │ ├── test_modu.S │ │ │ ├── test_mul.S │ │ │ ├── test_muli.S │ │ │ ├── test_nor.S │ │ │ ├── test_nori.S │ │ │ ├── test_or.S │ │ │ ├── test_orhi.S │ │ │ ├── test_ori.S │ │ │ ├── test_ret.S │ │ │ ├── test_sb.S │ │ │ ├── test_scall.S │ │ │ ├── test_sextb.S │ │ │ ├── test_sexth.S │ │ │ ├── test_sh.S │ │ │ ├── test_sl.S │ │ │ ├── test_sli.S │ │ │ ├── test_sr.S │ │ │ ├── test_sri.S │ │ │ ├── test_sru.S │ │ │ ├── test_srui.S │ │ │ ├── test_sub.S │ │ │ ├── test_sw.S │ │ │ ├── test_xnor.S │ │ │ ├── test_xnori.S │ │ │ ├── test_xor.S │ │ │ └── test_xori.S │ │ ├── mips │ │ │ ├── mips32-dsp │ │ │ │ ├── Makefile │ │ │ │ ├── absq_s_ph.c │ │ │ │ ├── absq_s_w.c │ │ │ │ ├── addq_ph.c │ │ │ │ ├── addq_s_ph.c │ │ │ │ ├── addq_s_w.c │ │ │ │ ├── addsc.c │ │ │ │ ├── addu_qb.c │ │ │ │ ├── addu_s_qb.c │ │ │ │ ├── addwc.c │ │ │ │ ├── bitrev.c │ │ │ │ ├── bposge32.c │ │ │ │ ├── cmp_eq_ph.c │ │ │ │ ├── cmp_le_ph.c │ │ │ │ ├── cmp_lt_ph.c │ │ │ │ ├── cmpgu_eq_qb.c │ │ │ │ ├── cmpgu_le_qb.c │ │ │ │ ├── cmpgu_lt_qb.c │ │ │ │ ├── cmpu_eq_qb.c │ │ │ │ ├── cmpu_le_qb.c │ │ │ │ ├── cmpu_lt_qb.c │ │ │ │ ├── dpaq_s_w_ph.c │ │ │ │ ├── dpaq_sa_l_w.c │ │ │ │ ├── dpau_h_qbl.c │ │ │ │ ├── dpau_h_qbr.c │ │ │ │ ├── dpsq_s_w_ph.c │ │ │ │ ├── dpsq_sa_l_w.c │ │ │ │ ├── dpsu_h_qbl.c │ │ │ │ ├── dpsu_h_qbr.c │ │ │ │ ├── extp.c │ │ │ │ ├── extpdp.c │ │ │ │ ├── extpdpv.c │ │ │ │ ├── extpv.c │ │ │ │ ├── extr_r_w.c │ │ │ │ ├── extr_rs_w.c │ │ │ │ ├── extr_s_h.c │ │ │ │ ├── extr_w.c │ │ │ │ ├── extrv_r_w.c │ │ │ │ ├── extrv_rs_w.c │ │ │ │ ├── extrv_s_h.c │ │ │ │ ├── extrv_w.c │ │ │ │ ├── insv.c │ │ │ │ ├── lbux.c │ │ │ │ ├── lhx.c │ │ │ │ ├── lwx.c │ │ │ │ ├── madd.c │ │ │ │ ├── maddu.c │ │ │ │ ├── main.c │ │ │ │ ├── maq_s_w_phl.c │ │ │ │ ├── maq_s_w_phr.c │ │ │ │ ├── maq_sa_w_phl.c │ │ │ │ ├── maq_sa_w_phr.c │ │ │ │ ├── mfhi.c │ │ │ │ ├── mflo.c │ │ │ │ ├── modsub.c │ │ │ │ ├── msub.c │ │ │ │ ├── msubu.c │ │ │ │ ├── mthi.c │ │ │ │ ├── mthlip.c │ │ │ │ ├── mtlo.c │ │ │ │ ├── muleq_s_w_phl.c │ │ │ │ ├── muleq_s_w_phr.c │ │ │ │ ├── muleu_s_ph_qbl.c │ │ │ │ ├── muleu_s_ph_qbr.c │ │ │ │ ├── mulq_rs_ph.c │ │ │ │ ├── mult.c │ │ │ │ ├── multu.c │ │ │ │ ├── packrl_ph.c │ │ │ │ ├── pick_ph.c │ │ │ │ ├── pick_qb.c │ │ │ │ ├── preceq_w_phl.c │ │ │ │ ├── preceq_w_phr.c │ │ │ │ ├── precequ_ph_qbl.c │ │ │ │ ├── precequ_ph_qbla.c │ │ │ │ ├── precequ_ph_qbr.c │ │ │ │ ├── precequ_ph_qbra.c │ │ │ │ ├── preceu_ph_qbl.c │ │ │ │ ├── preceu_ph_qbla.c │ │ │ │ ├── preceu_ph_qbr.c │ │ │ │ ├── preceu_ph_qbra.c │ │ │ │ ├── precrq_ph_w.c │ │ │ │ ├── precrq_qb_ph.c │ │ │ │ ├── precrq_rs_ph_w.c │ │ │ │ ├── precrqu_s_qb_ph.c │ │ │ │ ├── raddu_w_qb.c │ │ │ │ ├── rddsp.c │ │ │ │ ├── repl_ph.c │ │ │ │ ├── repl_qb.c │ │ │ │ ├── replv_ph.c │ │ │ │ ├── replv_qb.c │ │ │ │ ├── shilo.c │ │ │ │ ├── shilov.c │ │ │ │ ├── shll_ph.c │ │ │ │ ├── shll_qb.c │ │ │ │ ├── shll_s_ph.c │ │ │ │ ├── shll_s_w.c │ │ │ │ ├── shllv_ph.c │ │ │ │ ├── shllv_qb.c │ │ │ │ ├── shllv_s_ph.c │ │ │ │ ├── shllv_s_w.c │ │ │ │ ├── shra_ph.c │ │ │ │ ├── shra_r_ph.c │ │ │ │ ├── shra_r_w.c │ │ │ │ ├── shrav_ph.c │ │ │ │ ├── shrav_r_ph.c │ │ │ │ ├── shrav_r_w.c │ │ │ │ ├── shrl_qb.c │ │ │ │ ├── shrlv_qb.c │ │ │ │ ├── subq_ph.c │ │ │ │ ├── subq_s_ph.c │ │ │ │ ├── subq_s_w.c │ │ │ │ ├── subu_qb.c │ │ │ │ ├── subu_s_qb.c │ │ │ │ └── wrdsp.c │ │ │ ├── mips32-dspr2 │ │ │ │ ├── Makefile │ │ │ │ ├── absq_s_qb.c │ │ │ │ ├── addqh_ph.c │ │ │ │ ├── addqh_r_ph.c │ │ │ │ ├── addqh_r_w.c │ │ │ │ ├── addqh_w.c │ │ │ │ ├── addu_ph.c │ │ │ │ ├── addu_s_ph.c │ │ │ │ ├── adduh_qb.c │ │ │ │ ├── adduh_r_qb.c │ │ │ │ ├── append.c │ │ │ │ ├── balign.c │ │ │ │ ├── cmpgdu_eq_qb.c │ │ │ │ ├── cmpgdu_le_qb.c │ │ │ │ ├── cmpgdu_lt_qb.c │ │ │ │ ├── dpa_w_ph.c │ │ │ │ ├── dpaqx_s_w_ph.c │ │ │ │ ├── dpaqx_sa_w_ph.c │ │ │ │ ├── dpax_w_ph.c │ │ │ │ ├── dps_w_ph.c │ │ │ │ ├── dpsqx_s_w_ph.c │ │ │ │ ├── dpsqx_sa_w_ph.c │ │ │ │ ├── dpsx_w_ph.c │ │ │ │ ├── mul_ph.c │ │ │ │ ├── mul_s_ph.c │ │ │ │ ├── mulq_rs_w.c │ │ │ │ ├── mulq_s_ph.c │ │ │ │ ├── mulq_s_w.c │ │ │ │ ├── mulsa_w_ph.c │ │ │ │ ├── mulsaq_s_w_ph.c │ │ │ │ ├── precr_qb_ph.c │ │ │ │ ├── precr_sra_ph_w.c │ │ │ │ ├── precr_sra_r_ph_w.c │ │ │ │ ├── prepend.c │ │ │ │ ├── shra_qb.c │ │ │ │ ├── shra_r_qb.c │ │ │ │ ├── shrav_qb.c │ │ │ │ ├── shrav_r_qb.c │ │ │ │ ├── shrl_ph.c │ │ │ │ ├── shrlv_ph.c │ │ │ │ ├── subqh_ph.c │ │ │ │ ├── subqh_r_ph.c │ │ │ │ ├── subqh_r_w.c │ │ │ │ ├── subqh_w.c │ │ │ │ ├── subu_ph.c │ │ │ │ ├── subu_s_ph.c │ │ │ │ ├── subuh_qb.c │ │ │ │ └── subuh_r_qb.c │ │ │ ├── mips64-dsp │ │ │ │ ├── Makefile │ │ │ │ ├── absq_s_ob.c │ │ │ │ ├── absq_s_ph.c │ │ │ │ ├── absq_s_pw.c │ │ │ │ ├── absq_s_qh.c │ │ │ │ ├── absq_s_w.c │ │ │ │ ├── addq_ph.c │ │ │ │ ├── addq_pw.c │ │ │ │ ├── addq_qh.c │ │ │ │ ├── addq_s_ph.c │ │ │ │ ├── addq_s_pw.c │ │ │ │ ├── addq_s_qh.c │ │ │ │ ├── addq_s_w.c │ │ │ │ ├── addsc.c │ │ │ │ ├── addu_ob.c │ │ │ │ ├── addu_qb.c │ │ │ │ ├── addu_s_ob.c │ │ │ │ ├── addu_s_qb.c │ │ │ │ ├── addwc.c │ │ │ │ ├── bitrev.c │ │ │ │ ├── bposge32.c │ │ │ │ ├── bposge64.c │ │ │ │ ├── cmp_eq_ph.c │ │ │ │ ├── cmp_eq_pw.c │ │ │ │ ├── cmp_eq_qh.c │ │ │ │ ├── cmp_le_ph.c │ │ │ │ ├── cmp_le_pw.c │ │ │ │ ├── cmp_le_qh.c │ │ │ │ ├── cmp_lt_ph.c │ │ │ │ ├── cmp_lt_pw.c │ │ │ │ ├── cmp_lt_qh.c │ │ │ │ ├── cmpgu_eq_ob.c │ │ │ │ ├── cmpgu_eq_qb.c │ │ │ │ ├── cmpgu_le_ob.c │ │ │ │ ├── cmpgu_le_qb.c │ │ │ │ ├── cmpgu_lt_ob.c │ │ │ │ ├── cmpgu_lt_qb.c │ │ │ │ ├── cmpu_eq_ob.c │ │ │ │ ├── cmpu_eq_qb.c │ │ │ │ ├── cmpu_le_ob.c │ │ │ │ ├── cmpu_le_qb.c │ │ │ │ ├── cmpu_lt_ob.c │ │ │ │ ├── cmpu_lt_qb.c │ │ │ │ ├── dappend.c │ │ │ │ ├── dextp.c │ │ │ │ ├── dextpdp.c │ │ │ │ ├── dextpdpv.c │ │ │ │ ├── dextpv.c │ │ │ │ ├── dextr_l.c │ │ │ │ ├── dextr_r_l.c │ │ │ │ ├── dextr_r_w.c │ │ │ │ ├── dextr_rs_l.c │ │ │ │ ├── dextr_rs_w.c │ │ │ │ ├── dextr_s_h.c │ │ │ │ ├── dextr_w.c │ │ │ │ ├── dextrv_l.c │ │ │ │ ├── dextrv_r_l.c │ │ │ │ ├── dextrv_r_w.c │ │ │ │ ├── dextrv_rs_l.c │ │ │ │ ├── dextrv_rs_w.c │ │ │ │ ├── dextrv_s_h.c │ │ │ │ ├── dextrv_w.c │ │ │ │ ├── dinsv.c │ │ │ │ ├── dmadd.c │ │ │ │ ├── dmaddu.c │ │ │ │ ├── dmsub.c │ │ │ │ ├── dmsubu.c │ │ │ │ ├── dmthlip.c │ │ │ │ ├── dpaq_s_w_ph.c │ │ │ │ ├── dpaq_s_w_qh.c │ │ │ │ ├── dpaq_sa_l_pw.c │ │ │ │ ├── dpaq_sa_l_w.c │ │ │ │ ├── dpau_h_obl.c │ │ │ │ ├── dpau_h_obr.c │ │ │ │ ├── dpau_h_qbl.c │ │ │ │ ├── dpau_h_qbr.c │ │ │ │ ├── dpsq_s_w_ph.c │ │ │ │ ├── dpsq_s_w_qh.c │ │ │ │ ├── dpsq_sa_l_pw.c │ │ │ │ ├── dpsq_sa_l_w.c │ │ │ │ ├── dpsu_h_obl.c │ │ │ │ ├── dpsu_h_obr.c │ │ │ │ ├── dpsu_h_qbl.c │ │ │ │ ├── dpsu_h_qbr.c │ │ │ │ ├── dshilo.c │ │ │ │ ├── dshilov.c │ │ │ │ ├── extp.c │ │ │ │ ├── extpdp.c │ │ │ │ ├── extpdpv.c │ │ │ │ ├── extpv.c │ │ │ │ ├── extr_r_w.c │ │ │ │ ├── extr_rs_w.c │ │ │ │ ├── extr_s_h.c │ │ │ │ ├── extr_w.c │ │ │ │ ├── extrv_r_w.c │ │ │ │ ├── extrv_rs_w.c │ │ │ │ ├── extrv_s_h.c │ │ │ │ ├── extrv_w.c │ │ │ │ ├── head.S │ │ │ │ ├── insv.c │ │ │ │ ├── io.h │ │ │ │ ├── lbux.c │ │ │ │ ├── ldx.c │ │ │ │ ├── lhx.c │ │ │ │ ├── lwx.c │ │ │ │ ├── madd.c │ │ │ │ ├── maddu.c │ │ │ │ ├── maq_s_l_pwl.c │ │ │ │ ├── maq_s_l_pwr.c │ │ │ │ ├── maq_s_w_phl.c │ │ │ │ ├── maq_s_w_phr.c │ │ │ │ ├── maq_s_w_qhll.c │ │ │ │ ├── maq_s_w_qhlr.c │ │ │ │ ├── maq_s_w_qhrl.c │ │ │ │ ├── maq_s_w_qhrr.c │ │ │ │ ├── maq_sa_w_phl.c │ │ │ │ ├── maq_sa_w_phr.c │ │ │ │ ├── maq_sa_w_qhll.c │ │ │ │ ├── maq_sa_w_qhlr.c │ │ │ │ ├── maq_sa_w_qhrl.c │ │ │ │ ├── maq_sa_w_qhrr.c │ │ │ │ ├── mfhi.c │ │ │ │ ├── mflo.c │ │ │ │ ├── mips_boot.lds │ │ │ │ ├── modsub.c │ │ │ │ ├── msub.c │ │ │ │ ├── msubu.c │ │ │ │ ├── mthi.c │ │ │ │ ├── mthlip.c │ │ │ │ ├── mtlo.c │ │ │ │ ├── muleq_s_pw_qhl.c │ │ │ │ ├── muleq_s_pw_qhr.c │ │ │ │ ├── muleq_s_w_phl.c │ │ │ │ ├── muleq_s_w_phr.c │ │ │ │ ├── muleu_s_ph_qbl.c │ │ │ │ ├── muleu_s_ph_qbr.c │ │ │ │ ├── muleu_s_qh_obl.c │ │ │ │ ├── muleu_s_qh_obr.c │ │ │ │ ├── mulq_rs_ph.c │ │ │ │ ├── mulq_rs_qh.c │ │ │ │ ├── mulsaq_s_l_pw.c │ │ │ │ ├── mulsaq_s_w_qh.c │ │ │ │ ├── mult.c │ │ │ │ ├── multu.c │ │ │ │ ├── packrl_ph.c │ │ │ │ ├── packrl_pw.c │ │ │ │ ├── pick_ob.c │ │ │ │ ├── pick_ph.c │ │ │ │ ├── pick_pw.c │ │ │ │ ├── pick_qb.c │ │ │ │ ├── pick_qh.c │ │ │ │ ├── preceq_l_pwl.c │ │ │ │ ├── preceq_l_pwr.c │ │ │ │ ├── preceq_pw_qhl.c │ │ │ │ ├── preceq_pw_qhla.c │ │ │ │ ├── preceq_pw_qhr.c │ │ │ │ ├── preceq_pw_qhra.c │ │ │ │ ├── preceq_w_phl.c │ │ │ │ ├── preceq_w_phr.c │ │ │ │ ├── precequ_ph_qbl.c │ │ │ │ ├── precequ_ph_qbla.c │ │ │ │ ├── precequ_ph_qbr.c │ │ │ │ ├── precequ_ph_qbra.c │ │ │ │ ├── precequ_qh_obl.c │ │ │ │ ├── precequ_qh_obla.c │ │ │ │ ├── precequ_qh_obr.c │ │ │ │ ├── precequ_qh_obra.c │ │ │ │ ├── preceu_ph_qbl.c │ │ │ │ ├── preceu_ph_qbla.c │ │ │ │ ├── preceu_ph_qbr.c │ │ │ │ ├── preceu_ph_qbra.c │ │ │ │ ├── preceu_qh_obl.c │ │ │ │ ├── preceu_qh_obla.c │ │ │ │ ├── preceu_qh_obr.c │ │ │ │ ├── preceu_qh_obra.c │ │ │ │ ├── precr_ob_qh.c │ │ │ │ ├── precr_sra_qh_pw.c │ │ │ │ ├── precr_sra_r_qh_pw.c │ │ │ │ ├── precrq_ob_qh.c │ │ │ │ ├── precrq_ph_w.c │ │ │ │ ├── precrq_pw_l.c │ │ │ │ ├── precrq_qb_ph.c │ │ │ │ ├── precrq_qh_pw.c │ │ │ │ ├── precrq_rs_ph_w.c │ │ │ │ ├── precrq_rs_qh_pw.c │ │ │ │ ├── precrqu_s_ob_qh.c │ │ │ │ ├── precrqu_s_qb_ph.c │ │ │ │ ├── prependd.c │ │ │ │ ├── prependw.c │ │ │ │ ├── printf.c │ │ │ │ ├── raddu_l_ob.c │ │ │ │ ├── raddu_w_qb.c │ │ │ │ ├── rddsp.c │ │ │ │ ├── repl_ob.c │ │ │ │ ├── repl_ph.c │ │ │ │ ├── repl_pw.c │ │ │ │ ├── repl_qb.c │ │ │ │ ├── repl_qh.c │ │ │ │ ├── replv_ob.c │ │ │ │ ├── replv_ph.c │ │ │ │ ├── replv_pw.c │ │ │ │ ├── replv_qb.c │ │ │ │ ├── shilo.c │ │ │ │ ├── shilov.c │ │ │ │ ├── shll_ob.c │ │ │ │ ├── shll_ph.c │ │ │ │ ├── shll_pw.c │ │ │ │ ├── shll_qb.c │ │ │ │ ├── shll_qh.c │ │ │ │ ├── shll_s_ph.c │ │ │ │ ├── shll_s_pw.c │ │ │ │ ├── shll_s_qh.c │ │ │ │ ├── shll_s_w.c │ │ │ │ ├── shllv_ob.c │ │ │ │ ├── shllv_ph.c │ │ │ │ ├── shllv_pw.c │ │ │ │ ├── shllv_qb.c │ │ │ │ ├── shllv_qh.c │ │ │ │ ├── shllv_s_ph.c │ │ │ │ ├── shllv_s_pw.c │ │ │ │ ├── shllv_s_qh.c │ │ │ │ ├── shllv_s_w.c │ │ │ │ ├── shra_ob.c │ │ │ │ ├── shra_ph.c │ │ │ │ ├── shra_pw.c │ │ │ │ ├── shra_qh.c │ │ │ │ ├── shra_r_ob.c │ │ │ │ ├── shra_r_ph.c │ │ │ │ ├── shra_r_pw.c │ │ │ │ ├── shra_r_qh.c │ │ │ │ ├── shra_r_w.c │ │ │ │ ├── shrav_ph.c │ │ │ │ ├── shrav_pw.c │ │ │ │ ├── shrav_qh.c │ │ │ │ ├── shrav_r_ph.c │ │ │ │ ├── shrav_r_pw.c │ │ │ │ ├── shrav_r_qh.c │ │ │ │ ├── shrav_r_w.c │ │ │ │ ├── shrl_ob.c │ │ │ │ ├── shrl_qb.c │ │ │ │ ├── shrl_qh.c │ │ │ │ ├── shrlv_ob.c │ │ │ │ ├── shrlv_qb.c │ │ │ │ ├── shrlv_qh.c │ │ │ │ ├── subq_ph.c │ │ │ │ ├── subq_pw.c │ │ │ │ ├── subq_qh.c │ │ │ │ ├── subq_s_ph.c │ │ │ │ ├── subq_s_pw.c │ │ │ │ ├── subq_s_qh.c │ │ │ │ ├── subq_s_w.c │ │ │ │ ├── subu_ob.c │ │ │ │ ├── subu_qb.c │ │ │ │ ├── subu_s_ob.c │ │ │ │ ├── subu_s_qb.c │ │ │ │ └── wrdsp.c │ │ │ └── mips64-dspr2 │ │ │ │ ├── .directory │ │ │ │ ├── Makefile │ │ │ │ ├── absq_s_qb.c │ │ │ │ ├── addqh_ph.c │ │ │ │ ├── addqh_r_ph.c │ │ │ │ ├── addqh_r_w.c │ │ │ │ ├── addqh_w.c │ │ │ │ ├── addu_ph.c │ │ │ │ ├── addu_qh.c │ │ │ │ ├── addu_s_ph.c │ │ │ │ ├── addu_s_qh.c │ │ │ │ ├── adduh_ob.c │ │ │ │ ├── adduh_qb.c │ │ │ │ ├── adduh_r_ob.c │ │ │ │ ├── adduh_r_qb.c │ │ │ │ ├── append.c │ │ │ │ ├── balign.c │ │ │ │ ├── cmpgdu_eq_ob.c │ │ │ │ ├── cmpgdu_eq_qb.c │ │ │ │ ├── cmpgdu_le_ob.c │ │ │ │ ├── cmpgdu_le_qb.c │ │ │ │ ├── cmpgdu_lt_ob.c │ │ │ │ ├── cmpgdu_lt_qb.c │ │ │ │ ├── dbalign.c │ │ │ │ ├── dpa_w_ph.c │ │ │ │ ├── dpa_w_qh.c │ │ │ │ ├── dpaqx_s_w_ph.c │ │ │ │ ├── dpaqx_sa_w_ph.c │ │ │ │ ├── dpax_w_ph.c │ │ │ │ ├── dps_w_ph.c │ │ │ │ ├── dps_w_qh.c │ │ │ │ ├── dpsqx_s_w_ph.c │ │ │ │ ├── dpsqx_sa_w_ph.c │ │ │ │ ├── dpsx_w_ph.c │ │ │ │ ├── head.S │ │ │ │ ├── io.h │ │ │ │ ├── mips_boot.lds │ │ │ │ ├── mul_ph.c │ │ │ │ ├── mul_s_ph.c │ │ │ │ ├── mulq_rs_w.c │ │ │ │ ├── mulq_s_ph.c │ │ │ │ ├── mulq_s_w.c │ │ │ │ ├── mulsa_w_ph.c │ │ │ │ ├── mulsaq_s_w_ph.c │ │ │ │ ├── precr_qb_ph.c │ │ │ │ ├── precr_sra_ph_w.c │ │ │ │ ├── precr_sra_r_ph_w.c │ │ │ │ ├── prepend.c │ │ │ │ ├── printf.c │ │ │ │ ├── shra_qb.c │ │ │ │ ├── shra_r_qb.c │ │ │ │ ├── shrav_ob.c │ │ │ │ ├── shrav_qb.c │ │ │ │ ├── shrav_r_ob.c │ │ │ │ ├── shrav_r_qb.c │ │ │ │ ├── shrl_ph.c │ │ │ │ ├── shrlv_ph.c │ │ │ │ ├── subqh_ph.c │ │ │ │ ├── subqh_r_ph.c │ │ │ │ ├── subqh_r_w.c │ │ │ │ ├── subqh_w.c │ │ │ │ ├── subu_ph.c │ │ │ │ ├── subu_qh.c │ │ │ │ ├── subu_s_ph.c │ │ │ │ ├── subu_s_qh.c │ │ │ │ ├── subuh_ob.c │ │ │ │ ├── subuh_qb.c │ │ │ │ ├── subuh_r_ob.c │ │ │ │ └── subuh_r_qb.c │ │ ├── openrisc │ │ │ ├── Makefile │ │ │ ├── test_add.c │ │ │ ├── test_addc.c │ │ │ ├── test_addi.c │ │ │ ├── test_addic.c │ │ │ ├── test_and_or.c │ │ │ ├── test_bf.c │ │ │ ├── test_bnf.c │ │ │ ├── test_div.c │ │ │ ├── test_divu.c │ │ │ ├── test_extx.c │ │ │ ├── test_fx.c │ │ │ ├── test_j.c │ │ │ ├── test_jal.c │ │ │ ├── test_lf_add.c │ │ │ ├── test_lf_div.c │ │ │ ├── test_lf_eqs.c │ │ │ ├── test_lf_ges.c │ │ │ ├── test_lf_gts.c │ │ │ ├── test_lf_les.c │ │ │ ├── test_lf_lts.c │ │ │ ├── test_lf_mul.c │ │ │ ├── test_lf_nes.c │ │ │ ├── test_lf_rem.c │ │ │ ├── test_lf_sub.c │ │ │ ├── test_logic.c │ │ │ ├── test_lx.c │ │ │ ├── test_movhi.c │ │ │ ├── test_mul.c │ │ │ ├── test_muli.c │ │ │ ├── test_mulu.c │ │ │ ├── test_sfeq.c │ │ │ ├── test_sfeqi.c │ │ │ ├── test_sfges.c │ │ │ ├── test_sfgesi.c │ │ │ ├── test_sfgeu.c │ │ │ ├── test_sfgeui.c │ │ │ ├── test_sfgts.c │ │ │ ├── test_sfgtsi.c │ │ │ ├── test_sfgtu.c │ │ │ ├── test_sfgtui.c │ │ │ ├── test_sfles.c │ │ │ ├── test_sflesi.c │ │ │ ├── test_sfleu.c │ │ │ ├── test_sfleui.c │ │ │ ├── test_sflts.c │ │ │ ├── test_sfltsi.c │ │ │ ├── test_sfltu.c │ │ │ ├── test_sfltui.c │ │ │ ├── test_sfne.c │ │ │ ├── test_sfnei.c │ │ │ └── test_sub.c │ │ ├── pi_10.com │ │ ├── runcom.c │ │ ├── sha1.c │ │ ├── test-arm-iwmmxt.s │ │ ├── test-i386-code16.S │ │ ├── test-i386-fprem.c │ │ ├── test-i386-muldiv.h │ │ ├── test-i386-shift.h │ │ ├── test-i386-ssse3.c │ │ ├── test-i386-vm86.S │ │ ├── test-i386.c │ │ ├── test-i386.h │ │ ├── test-mmap.c │ │ ├── test_path.c │ │ ├── testthread.c │ │ └── xtensa │ │ │ ├── Makefile │ │ │ ├── crt.S │ │ │ ├── linker.ld │ │ │ ├── macros.inc │ │ │ ├── test_b.S │ │ │ ├── test_bi.S │ │ │ ├── test_boolean.S │ │ │ ├── test_break.S │ │ │ ├── test_bz.S │ │ │ ├── test_cache.S │ │ │ ├── test_clamps.S │ │ │ ├── test_extui.S │ │ │ ├── test_fail.S │ │ │ ├── test_interrupt.S │ │ │ ├── test_loop.S │ │ │ ├── test_mac16.S │ │ │ ├── test_max.S │ │ │ ├── test_min.S │ │ │ ├── test_mmu.S │ │ │ ├── test_mul16.S │ │ │ ├── test_mul32.S │ │ │ ├── test_nsa.S │ │ │ ├── test_pipeline.S │ │ │ ├── test_quo.S │ │ │ ├── test_rem.S │ │ │ ├── test_rst0.S │ │ │ ├── test_s32c1i.S │ │ │ ├── test_sar.S │ │ │ ├── test_sext.S │ │ │ ├── test_shift.S │ │ │ ├── test_sr.S │ │ │ ├── test_timer.S │ │ │ ├── test_windowed.S │ │ │ └── vectors.S │ ├── test-aio.c │ ├── test-bitops.c │ ├── test-coroutine.c │ ├── test-cutils.c │ ├── test-hbitmap.c │ ├── test-int128.c │ ├── test-iov.c │ ├── test-mul64.c │ ├── test-opts-visitor.c │ ├── test-qdev-global-props.c │ ├── test-qemu-opts.c │ ├── test-qmp-commands.c │ ├── test-qmp-input-strict.c │ ├── test-qmp-input-visitor.c │ ├── test-qmp-output-visitor.c │ ├── test-rfifolock.c │ ├── test-string-input-visitor.c │ ├── test-string-output-visitor.c │ ├── test-thread-pool.c │ ├── test-throttle.c │ ├── test-visitor-serialization.c │ ├── test-vmstate.c │ ├── test-x86-cpuid.c │ ├── test-xbzrle.c │ ├── tmp105-test.c │ ├── tpci200-test.c │ ├── usb-hcd-ehci-test.c │ ├── virtio-9p-test.c │ ├── virtio-balloon-test.c │ ├── virtio-blk-test.c │ ├── virtio-console-test.c │ ├── virtio-net-test.c │ ├── virtio-rng-test.c │ ├── virtio-scsi-test.c │ ├── virtio-serial-test.c │ └── vmxnet3-test.c ├── thread-pool.c ├── thunk.c ├── tpm.c ├── trace-events ├── trace │ ├── Makefile.objs │ ├── control-internal.h │ ├── control.c │ ├── control.h │ ├── default.c │ ├── event-internal.h │ ├── ftrace.c │ ├── ftrace.h │ ├── simple.c │ ├── simple.h │ └── stderr.c ├── translate-all.c ├── translate-all.h ├── ui │ ├── Makefile.objs │ ├── cocoa.m │ ├── console.c │ ├── curses.c │ ├── curses_keys.h │ ├── cursor.c │ ├── cursor_hidden.xpm │ ├── cursor_left_ptr.xpm │ ├── d3des.c │ ├── d3des.h │ ├── gtk.c │ ├── input-keymap.c │ ├── input-legacy.c │ ├── input.c │ ├── keymaps.c │ ├── keymaps.h │ ├── qemu-pixman.c │ ├── qemu-x509.h │ ├── sdl.c │ ├── sdl2-keymap.h │ ├── sdl2.c │ ├── sdl_keysym.h │ ├── sdl_zoom.c │ ├── sdl_zoom.h │ ├── sdl_zoom_template.h │ ├── spice-core.c │ ├── spice-display.c │ ├── spice-input.c │ ├── vgafont.h │ ├── vnc-auth-sasl.c │ ├── vnc-auth-sasl.h │ ├── vnc-auth-vencrypt.c │ ├── vnc-auth-vencrypt.h │ ├── vnc-enc-hextile-template.h │ ├── vnc-enc-hextile.c │ ├── vnc-enc-tight.c │ ├── vnc-enc-tight.h │ ├── vnc-enc-zlib.c │ ├── vnc-enc-zrle-template.c │ ├── vnc-enc-zrle.c │ ├── vnc-enc-zrle.h │ ├── vnc-enc-zywrle-template.c │ ├── vnc-enc-zywrle.h │ ├── vnc-jobs.c │ ├── vnc-jobs.h │ ├── vnc-palette.c │ ├── vnc-palette.h │ ├── vnc-tls.c │ ├── vnc-tls.h │ ├── vnc-ws.c │ ├── vnc-ws.h │ ├── vnc.c │ ├── vnc.h │ ├── vnc_keysym.h │ ├── x_keymap.c │ └── x_keymap.h ├── user-exec.c ├── util │ ├── Makefile.objs │ ├── acl.c │ ├── aes.c │ ├── bitmap.c │ ├── bitops.c │ ├── cache-utils.c │ ├── compatfd.c │ ├── crc32c.c │ ├── cutils.c │ ├── envlist.c │ ├── error.c │ ├── event_notifier-posix.c │ ├── event_notifier-win32.c │ ├── fifo8.c │ ├── getauxval.c │ ├── hbitmap.c │ ├── hexdump.c │ ├── host-utils.c │ ├── iov.c │ ├── module.c │ ├── notify.c │ ├── osdep.c │ ├── oslib-posix.c │ ├── oslib-win32.c │ ├── path.c │ ├── qemu-config.c │ ├── qemu-error.c │ ├── qemu-openpty.c │ ├── qemu-option.c │ ├── qemu-progress.c │ ├── qemu-sockets.c │ ├── qemu-thread-posix.c │ ├── qemu-thread-win32.c │ ├── qemu-timer-common.c │ ├── readline.c │ ├── rfifolock.c │ ├── throttle.c │ ├── unicode.c │ └── uri.c ├── version.rc ├── vl.c ├── vmstate.c ├── xbzrle.c ├── xen-common-stub.c ├── xen-common.c ├── xen-hvm-stub.c ├── xen-hvm.c └── xen-mapcache.c └── start_qemu.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/README.md -------------------------------------------------------------------------------- /module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/module/Makefile -------------------------------------------------------------------------------- /module/levpci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/module/levpci.c -------------------------------------------------------------------------------- /qemu/.exrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/.exrc -------------------------------------------------------------------------------- /qemu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/.gitignore -------------------------------------------------------------------------------- /qemu/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/.mailmap -------------------------------------------------------------------------------- /qemu/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/.travis.yml -------------------------------------------------------------------------------- /qemu/CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/CODING_STYLE -------------------------------------------------------------------------------- /qemu/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/COPYING -------------------------------------------------------------------------------- /qemu/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/COPYING.LIB -------------------------------------------------------------------------------- /qemu/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/Changelog -------------------------------------------------------------------------------- /qemu/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/HACKING -------------------------------------------------------------------------------- /qemu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/LICENSE -------------------------------------------------------------------------------- /qemu/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/MAINTAINERS -------------------------------------------------------------------------------- /qemu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/Makefile -------------------------------------------------------------------------------- /qemu/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/Makefile.objs -------------------------------------------------------------------------------- /qemu/Makefile.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/Makefile.target -------------------------------------------------------------------------------- /qemu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/README -------------------------------------------------------------------------------- /qemu/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.50 2 | -------------------------------------------------------------------------------- /qemu/aio-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/aio-posix.c -------------------------------------------------------------------------------- /qemu/aio-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/aio-win32.c -------------------------------------------------------------------------------- /qemu/arch_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/arch_init.c -------------------------------------------------------------------------------- /qemu/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/async.c -------------------------------------------------------------------------------- /qemu/audio/alsaaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/audio/alsaaudio.c -------------------------------------------------------------------------------- /qemu/audio/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/audio/audio.c -------------------------------------------------------------------------------- /qemu/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/audio/audio.h -------------------------------------------------------------------------------- /qemu/audio/audio_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/audio/audio_int.h -------------------------------------------------------------------------------- /qemu/audio/coreaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/audio/coreaudio.c -------------------------------------------------------------------------------- /qemu/audio/esdaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/audio/esdaudio.c -------------------------------------------------------------------------------- /qemu/audio/fmodaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/audio/fmodaudio.c -------------------------------------------------------------------------------- /qemu/audio/mixeng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/audio/mixeng.c -------------------------------------------------------------------------------- /qemu/audio/mixeng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/audio/mixeng.h -------------------------------------------------------------------------------- /qemu/audio/noaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/audio/noaudio.c -------------------------------------------------------------------------------- /qemu/audio/ossaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/audio/ossaudio.c -------------------------------------------------------------------------------- /qemu/audio/paaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/audio/paaudio.c -------------------------------------------------------------------------------- /qemu/audio/sdlaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/audio/sdlaudio.c -------------------------------------------------------------------------------- /qemu/audio/spiceaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/audio/spiceaudio.c -------------------------------------------------------------------------------- /qemu/audio/wavaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/audio/wavaudio.c -------------------------------------------------------------------------------- /qemu/audio/wavcapture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/audio/wavcapture.c -------------------------------------------------------------------------------- /qemu/backends/baum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/backends/baum.c -------------------------------------------------------------------------------- /qemu/backends/msmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/backends/msmouse.c -------------------------------------------------------------------------------- /qemu/backends/rng-egd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/backends/rng-egd.c -------------------------------------------------------------------------------- /qemu/backends/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/backends/rng.c -------------------------------------------------------------------------------- /qemu/backends/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/backends/tpm.c -------------------------------------------------------------------------------- /qemu/balloon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/balloon.c -------------------------------------------------------------------------------- /qemu/block-migration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block-migration.c -------------------------------------------------------------------------------- /qemu/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block.c -------------------------------------------------------------------------------- /qemu/block/backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/backup.c -------------------------------------------------------------------------------- /qemu/block/blkdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/blkdebug.c -------------------------------------------------------------------------------- /qemu/block/blkverify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/blkverify.c -------------------------------------------------------------------------------- /qemu/block/bochs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/bochs.c -------------------------------------------------------------------------------- /qemu/block/cloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/cloop.c -------------------------------------------------------------------------------- /qemu/block/commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/commit.c -------------------------------------------------------------------------------- /qemu/block/cow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/cow.c -------------------------------------------------------------------------------- /qemu/block/curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/curl.c -------------------------------------------------------------------------------- /qemu/block/dmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/dmg.c -------------------------------------------------------------------------------- /qemu/block/gluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/gluster.c -------------------------------------------------------------------------------- /qemu/block/iscsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/iscsi.c -------------------------------------------------------------------------------- /qemu/block/linux-aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/linux-aio.c -------------------------------------------------------------------------------- /qemu/block/mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/mirror.c -------------------------------------------------------------------------------- /qemu/block/nbd-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/nbd-client.c -------------------------------------------------------------------------------- /qemu/block/nbd-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/nbd-client.h -------------------------------------------------------------------------------- /qemu/block/nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/nbd.c -------------------------------------------------------------------------------- /qemu/block/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/nfs.c -------------------------------------------------------------------------------- /qemu/block/parallels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/parallels.c -------------------------------------------------------------------------------- /qemu/block/qapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/qapi.c -------------------------------------------------------------------------------- /qemu/block/qcow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/qcow.c -------------------------------------------------------------------------------- /qemu/block/qcow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/qcow2.c -------------------------------------------------------------------------------- /qemu/block/qcow2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/qcow2.h -------------------------------------------------------------------------------- /qemu/block/qed-check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/qed-check.c -------------------------------------------------------------------------------- /qemu/block/qed-gencb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/qed-gencb.c -------------------------------------------------------------------------------- /qemu/block/qed-table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/qed-table.c -------------------------------------------------------------------------------- /qemu/block/qed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/qed.c -------------------------------------------------------------------------------- /qemu/block/qed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/qed.h -------------------------------------------------------------------------------- /qemu/block/quorum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/quorum.c -------------------------------------------------------------------------------- /qemu/block/raw-aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/raw-aio.h -------------------------------------------------------------------------------- /qemu/block/raw-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/raw-posix.c -------------------------------------------------------------------------------- /qemu/block/raw-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/raw-win32.c -------------------------------------------------------------------------------- /qemu/block/raw_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/raw_bsd.c -------------------------------------------------------------------------------- /qemu/block/rbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/rbd.c -------------------------------------------------------------------------------- /qemu/block/sheepdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/sheepdog.c -------------------------------------------------------------------------------- /qemu/block/snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/snapshot.c -------------------------------------------------------------------------------- /qemu/block/ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/ssh.c -------------------------------------------------------------------------------- /qemu/block/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/stream.c -------------------------------------------------------------------------------- /qemu/block/vdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/vdi.c -------------------------------------------------------------------------------- /qemu/block/vhdx-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/vhdx-log.c -------------------------------------------------------------------------------- /qemu/block/vhdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/vhdx.c -------------------------------------------------------------------------------- /qemu/block/vhdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/vhdx.h -------------------------------------------------------------------------------- /qemu/block/vmdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/vmdk.c -------------------------------------------------------------------------------- /qemu/block/vpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/vpc.c -------------------------------------------------------------------------------- /qemu/block/vvfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/vvfat.c -------------------------------------------------------------------------------- /qemu/block/win32-aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/block/win32-aio.c -------------------------------------------------------------------------------- /qemu/blockdev-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/blockdev-nbd.c -------------------------------------------------------------------------------- /qemu/blockdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/blockdev.c -------------------------------------------------------------------------------- /qemu/blockjob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/blockjob.c -------------------------------------------------------------------------------- /qemu/bsd-user/bsdload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/bsd-user/bsdload.c -------------------------------------------------------------------------------- /qemu/bsd-user/elfload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/bsd-user/elfload.c -------------------------------------------------------------------------------- /qemu/bsd-user/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/bsd-user/main.c -------------------------------------------------------------------------------- /qemu/bsd-user/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/bsd-user/mmap.c -------------------------------------------------------------------------------- /qemu/bsd-user/qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/bsd-user/qemu.h -------------------------------------------------------------------------------- /qemu/bsd-user/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/bsd-user/signal.c -------------------------------------------------------------------------------- /qemu/bsd-user/strace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/bsd-user/strace.c -------------------------------------------------------------------------------- /qemu/bsd-user/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/bsd-user/syscall.c -------------------------------------------------------------------------------- /qemu/bsd-user/uaccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/bsd-user/uaccess.c -------------------------------------------------------------------------------- /qemu/bt-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/bt-host.c -------------------------------------------------------------------------------- /qemu/bt-vhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/bt-vhci.c -------------------------------------------------------------------------------- /qemu/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/configure -------------------------------------------------------------------------------- /qemu/coroutine-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/coroutine-win32.c -------------------------------------------------------------------------------- /qemu/cpu-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/cpu-exec.c -------------------------------------------------------------------------------- /qemu/cpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/cpus.c -------------------------------------------------------------------------------- /qemu/cputlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/cputlb.c -------------------------------------------------------------------------------- /qemu/default-configs/alpha-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for alpha-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/arm-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for arm-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/armeb-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for armeb-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/cris-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for cris-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/i386-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-bsd-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/i386-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/m68k-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for m68k-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/microblaze-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for microblaze-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/mips-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/mips64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips64-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/mips64el-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips64el-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/mipsel-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsel-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/mipsn32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsn32-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/mipsn32el-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsn32el-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/or32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for or32-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/ppc-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for ppc-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/ppc64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for ppc64-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/ppc64abi32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for ppc64abi32-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/s390x-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for s390x-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/sh4-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sh4-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/sh4eb-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sh4eb-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/sparc-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc-bsd-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/sparc-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/sparc32plus-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc32plus-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/sparc64-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc64-bsd-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/sparc64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc64-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/unicore32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for unicore32-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/x86_64-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for x86_64-bsd-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/x86_64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for x86_64-linux-user 2 | -------------------------------------------------------------------------------- /qemu/device-hotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/device-hotplug.c -------------------------------------------------------------------------------- /qemu/device_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/device_tree.c -------------------------------------------------------------------------------- /qemu/disas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas.c -------------------------------------------------------------------------------- /qemu/disas/alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/alpha.c -------------------------------------------------------------------------------- /qemu/disas/arm-a64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/arm-a64.cc -------------------------------------------------------------------------------- /qemu/disas/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/arm.c -------------------------------------------------------------------------------- /qemu/disas/cris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/cris.c -------------------------------------------------------------------------------- /qemu/disas/hppa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/hppa.c -------------------------------------------------------------------------------- /qemu/disas/i386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/i386.c -------------------------------------------------------------------------------- /qemu/disas/ia64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/ia64.c -------------------------------------------------------------------------------- /qemu/disas/lm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/lm32.c -------------------------------------------------------------------------------- /qemu/disas/m68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/m68k.c -------------------------------------------------------------------------------- /qemu/disas/microblaze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/microblaze.c -------------------------------------------------------------------------------- /qemu/disas/mips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/mips.c -------------------------------------------------------------------------------- /qemu/disas/moxie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/moxie.c -------------------------------------------------------------------------------- /qemu/disas/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/ppc.c -------------------------------------------------------------------------------- /qemu/disas/s390.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/s390.c -------------------------------------------------------------------------------- /qemu/disas/sh4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/sh4.c -------------------------------------------------------------------------------- /qemu/disas/sparc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/sparc.c -------------------------------------------------------------------------------- /qemu/disas/tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/disas/tci.c -------------------------------------------------------------------------------- /qemu/dma-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dma-helpers.c -------------------------------------------------------------------------------- /qemu/docs/atomics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/docs/atomics.txt -------------------------------------------------------------------------------- /qemu/docs/blkverify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/docs/blkverify.txt -------------------------------------------------------------------------------- /qemu/docs/bootindex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/docs/bootindex.txt -------------------------------------------------------------------------------- /qemu/docs/ccid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/docs/ccid.txt -------------------------------------------------------------------------------- /qemu/docs/libcacard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/docs/libcacard.txt -------------------------------------------------------------------------------- /qemu/docs/memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/docs/memory.txt -------------------------------------------------------------------------------- /qemu/docs/migration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/docs/migration.txt -------------------------------------------------------------------------------- /qemu/docs/multiseat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/docs/multiseat.txt -------------------------------------------------------------------------------- /qemu/docs/qmp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/docs/qmp/README -------------------------------------------------------------------------------- /qemu/docs/rdma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/docs/rdma.txt -------------------------------------------------------------------------------- /qemu/docs/tracing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/docs/tracing.txt -------------------------------------------------------------------------------- /qemu/docs/usb2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/docs/usb2.txt -------------------------------------------------------------------------------- /qemu/docs/xbzrle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/docs/xbzrle.txt -------------------------------------------------------------------------------- /qemu/dtc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/.gitignore -------------------------------------------------------------------------------- /qemu/dtc/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/GPL -------------------------------------------------------------------------------- /qemu/dtc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/Makefile -------------------------------------------------------------------------------- /qemu/dtc/Makefile.dtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/Makefile.dtc -------------------------------------------------------------------------------- /qemu/dtc/README.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/README.license -------------------------------------------------------------------------------- /qemu/dtc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/TODO -------------------------------------------------------------------------------- /qemu/dtc/checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/checks.c -------------------------------------------------------------------------------- /qemu/dtc/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/data.c -------------------------------------------------------------------------------- /qemu/dtc/dtc-lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/dtc-lexer.l -------------------------------------------------------------------------------- /qemu/dtc/dtc-parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/dtc-parser.y -------------------------------------------------------------------------------- /qemu/dtc/dtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/dtc.c -------------------------------------------------------------------------------- /qemu/dtc/dtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/dtc.h -------------------------------------------------------------------------------- /qemu/dtc/dtdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/dtdiff -------------------------------------------------------------------------------- /qemu/dtc/flattree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/flattree.c -------------------------------------------------------------------------------- /qemu/dtc/fstree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/fstree.c -------------------------------------------------------------------------------- /qemu/dtc/ftdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/ftdump.c -------------------------------------------------------------------------------- /qemu/dtc/libfdt/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/libfdt/TODO -------------------------------------------------------------------------------- /qemu/dtc/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/libfdt/fdt.c -------------------------------------------------------------------------------- /qemu/dtc/libfdt/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/libfdt/fdt.h -------------------------------------------------------------------------------- /qemu/dtc/livetree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/livetree.c -------------------------------------------------------------------------------- /qemu/dtc/srcpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/srcpos.c -------------------------------------------------------------------------------- /qemu/dtc/srcpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/srcpos.h -------------------------------------------------------------------------------- /qemu/dtc/tests/base01.cmd: -------------------------------------------------------------------------------- 1 | dtc -f -b 0 -V 16 -I dts -O asm 2 | -------------------------------------------------------------------------------- /qemu/dtc/tests/data.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/tests/data.S -------------------------------------------------------------------------------- /qemu/dtc/tests/empty.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | }; 5 | -------------------------------------------------------------------------------- /qemu/dtc/tests/incbin.bin: -------------------------------------------------------------------------------- 1 | abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ -------------------------------------------------------------------------------- /qemu/dtc/tests/incbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/tests/incbin.c -------------------------------------------------------------------------------- /qemu/dtc/tests/include3.dts: -------------------------------------------------------------------------------- 1 | 123456789 010000 2 | -------------------------------------------------------------------------------- /qemu/dtc/tests/include4.dts: -------------------------------------------------------------------------------- 1 | compatible = "test_tree1"; 2 | -------------------------------------------------------------------------------- /qemu/dtc/tests/include5.dts: -------------------------------------------------------------------------------- 1 | prop-int 2 | -------------------------------------------------------------------------------- /qemu/dtc/tests/include6.dts: -------------------------------------------------------------------------------- 1 | "hello world" 2 | -------------------------------------------------------------------------------- /qemu/dtc/tests/include8.dts: -------------------------------------------------------------------------------- 1 | subsubnode@0 { -------------------------------------------------------------------------------- /qemu/dtc/tests/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/tests/tests.h -------------------------------------------------------------------------------- /qemu/dtc/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/tests/tests.sh -------------------------------------------------------------------------------- /qemu/dtc/tests/trees.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/tests/trees.S -------------------------------------------------------------------------------- /qemu/dtc/treesource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/treesource.c -------------------------------------------------------------------------------- /qemu/dtc/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/util.c -------------------------------------------------------------------------------- /qemu/dtc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dtc/util.h -------------------------------------------------------------------------------- /qemu/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/dump.c -------------------------------------------------------------------------------- /qemu/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/exec.c -------------------------------------------------------------------------------- /qemu/fpu/softfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/fpu/softfloat.c -------------------------------------------------------------------------------- /qemu/fsdev/file-op-9p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/fsdev/file-op-9p.h -------------------------------------------------------------------------------- /qemu/fsdev/qemu-fsdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/fsdev/qemu-fsdev.c -------------------------------------------------------------------------------- /qemu/fsdev/qemu-fsdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/fsdev/qemu-fsdev.h -------------------------------------------------------------------------------- /qemu/gdb-xml/cf-fp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/gdb-xml/cf-fp.xml -------------------------------------------------------------------------------- /qemu/gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/gdbstub.c -------------------------------------------------------------------------------- /qemu/hmp-commands.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hmp-commands.hx -------------------------------------------------------------------------------- /qemu/hmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hmp.c -------------------------------------------------------------------------------- /qemu/hmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hmp.h -------------------------------------------------------------------------------- /qemu/hw/9pfs/codir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/9pfs/codir.c -------------------------------------------------------------------------------- /qemu/hw/9pfs/cofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/9pfs/cofile.c -------------------------------------------------------------------------------- /qemu/hw/9pfs/cofs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/9pfs/cofs.c -------------------------------------------------------------------------------- /qemu/hw/9pfs/coxattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/9pfs/coxattr.c -------------------------------------------------------------------------------- /qemu/hw/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/Makefile.objs -------------------------------------------------------------------------------- /qemu/hw/acpi/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/acpi/core.c -------------------------------------------------------------------------------- /qemu/hw/acpi/ich9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/acpi/ich9.c -------------------------------------------------------------------------------- /qemu/hw/acpi/pcihp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/acpi/pcihp.c -------------------------------------------------------------------------------- /qemu/hw/acpi/piix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/acpi/piix4.c -------------------------------------------------------------------------------- /qemu/hw/alpha/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += dp264.o pci.o typhoon.o 2 | -------------------------------------------------------------------------------- /qemu/hw/alpha/dp264.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/alpha/dp264.c -------------------------------------------------------------------------------- /qemu/hw/alpha/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/alpha/pci.c -------------------------------------------------------------------------------- /qemu/hw/alpha/typhoon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/alpha/typhoon.c -------------------------------------------------------------------------------- /qemu/hw/arm/armv7m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/armv7m.c -------------------------------------------------------------------------------- /qemu/hw/arm/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/boot.c -------------------------------------------------------------------------------- /qemu/hw/arm/collie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/collie.c -------------------------------------------------------------------------------- /qemu/hw/arm/digic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/digic.c -------------------------------------------------------------------------------- /qemu/hw/arm/gumstix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/gumstix.c -------------------------------------------------------------------------------- /qemu/hw/arm/highbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/highbank.c -------------------------------------------------------------------------------- /qemu/hw/arm/kzm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/kzm.c -------------------------------------------------------------------------------- /qemu/hw/arm/mainstone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/mainstone.c -------------------------------------------------------------------------------- /qemu/hw/arm/musicpal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/musicpal.c -------------------------------------------------------------------------------- /qemu/hw/arm/nseries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/nseries.c -------------------------------------------------------------------------------- /qemu/hw/arm/omap1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/omap1.c -------------------------------------------------------------------------------- /qemu/hw/arm/omap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/omap2.c -------------------------------------------------------------------------------- /qemu/hw/arm/omap_sx1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/omap_sx1.c -------------------------------------------------------------------------------- /qemu/hw/arm/palm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/palm.c -------------------------------------------------------------------------------- /qemu/hw/arm/pxa2xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/pxa2xx.c -------------------------------------------------------------------------------- /qemu/hw/arm/realview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/realview.c -------------------------------------------------------------------------------- /qemu/hw/arm/spitz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/spitz.c -------------------------------------------------------------------------------- /qemu/hw/arm/stellaris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/stellaris.c -------------------------------------------------------------------------------- /qemu/hw/arm/strongarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/strongarm.c -------------------------------------------------------------------------------- /qemu/hw/arm/strongarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/strongarm.h -------------------------------------------------------------------------------- /qemu/hw/arm/tosa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/tosa.c -------------------------------------------------------------------------------- /qemu/hw/arm/vexpress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/vexpress.c -------------------------------------------------------------------------------- /qemu/hw/arm/virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/virt.c -------------------------------------------------------------------------------- /qemu/hw/arm/z2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/arm/z2.c -------------------------------------------------------------------------------- /qemu/hw/audio/ac97.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/ac97.c -------------------------------------------------------------------------------- /qemu/hw/audio/adlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/adlib.c -------------------------------------------------------------------------------- /qemu/hw/audio/cs4231.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/cs4231.c -------------------------------------------------------------------------------- /qemu/hw/audio/cs4231a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/cs4231a.c -------------------------------------------------------------------------------- /qemu/hw/audio/es1370.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/es1370.c -------------------------------------------------------------------------------- /qemu/hw/audio/fmopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/fmopl.c -------------------------------------------------------------------------------- /qemu/hw/audio/fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/fmopl.h -------------------------------------------------------------------------------- /qemu/hw/audio/gus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/gus.c -------------------------------------------------------------------------------- /qemu/hw/audio/gusemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/gusemu.h -------------------------------------------------------------------------------- /qemu/hw/audio/gustate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/gustate.h -------------------------------------------------------------------------------- /qemu/hw/audio/lm4549.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/lm4549.c -------------------------------------------------------------------------------- /qemu/hw/audio/lm4549.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/lm4549.h -------------------------------------------------------------------------------- /qemu/hw/audio/pcspk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/pcspk.c -------------------------------------------------------------------------------- /qemu/hw/audio/pl041.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/pl041.c -------------------------------------------------------------------------------- /qemu/hw/audio/pl041.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/pl041.h -------------------------------------------------------------------------------- /qemu/hw/audio/pl041.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/pl041.hx -------------------------------------------------------------------------------- /qemu/hw/audio/sb16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/sb16.c -------------------------------------------------------------------------------- /qemu/hw/audio/wm8750.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/audio/wm8750.c -------------------------------------------------------------------------------- /qemu/hw/block/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/block/block.c -------------------------------------------------------------------------------- /qemu/hw/block/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/block/cdrom.c -------------------------------------------------------------------------------- /qemu/hw/block/dataplane/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += ioq.o virtio-blk.o 2 | -------------------------------------------------------------------------------- /qemu/hw/block/ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/block/ecc.c -------------------------------------------------------------------------------- /qemu/hw/block/fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/block/fdc.c -------------------------------------------------------------------------------- /qemu/hw/block/m25p80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/block/m25p80.c -------------------------------------------------------------------------------- /qemu/hw/block/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/block/nand.c -------------------------------------------------------------------------------- /qemu/hw/block/nvme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/block/nvme.c -------------------------------------------------------------------------------- /qemu/hw/block/nvme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/block/nvme.h -------------------------------------------------------------------------------- /qemu/hw/block/onenand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/block/onenand.c -------------------------------------------------------------------------------- /qemu/hw/block/tc58128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/block/tc58128.c -------------------------------------------------------------------------------- /qemu/hw/bt/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/bt/core.c -------------------------------------------------------------------------------- /qemu/hw/bt/hci-csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/bt/hci-csr.c -------------------------------------------------------------------------------- /qemu/hw/bt/hci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/bt/hci.c -------------------------------------------------------------------------------- /qemu/hw/bt/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/bt/hid.c -------------------------------------------------------------------------------- /qemu/hw/bt/l2cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/bt/l2cap.c -------------------------------------------------------------------------------- /qemu/hw/bt/sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/bt/sdp.c -------------------------------------------------------------------------------- /qemu/hw/char/debugcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/char/debugcon.c -------------------------------------------------------------------------------- /qemu/hw/char/escc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/char/escc.c -------------------------------------------------------------------------------- /qemu/hw/char/lev-pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/char/lev-pci.c -------------------------------------------------------------------------------- /qemu/hw/char/mcf_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/char/mcf_uart.c -------------------------------------------------------------------------------- /qemu/hw/char/parallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/char/parallel.c -------------------------------------------------------------------------------- /qemu/hw/char/pl011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/char/pl011.c -------------------------------------------------------------------------------- /qemu/hw/char/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/char/serial.c -------------------------------------------------------------------------------- /qemu/hw/core/hotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/core/hotplug.c -------------------------------------------------------------------------------- /qemu/hw/core/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/core/irq.c -------------------------------------------------------------------------------- /qemu/hw/core/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/core/loader.c -------------------------------------------------------------------------------- /qemu/hw/core/machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/core/machine.c -------------------------------------------------------------------------------- /qemu/hw/core/ptimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/core/ptimer.c -------------------------------------------------------------------------------- /qemu/hw/core/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/core/qdev.c -------------------------------------------------------------------------------- /qemu/hw/core/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/core/stream.c -------------------------------------------------------------------------------- /qemu/hw/core/sysbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/core/sysbus.c -------------------------------------------------------------------------------- /qemu/hw/cpu/a15mpcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/cpu/a15mpcore.c -------------------------------------------------------------------------------- /qemu/hw/cpu/a9mpcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/cpu/a9mpcore.c -------------------------------------------------------------------------------- /qemu/hw/cpu/icc_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/cpu/icc_bus.c -------------------------------------------------------------------------------- /qemu/hw/cris/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/cris/boot.c -------------------------------------------------------------------------------- /qemu/hw/cris/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/cris/boot.h -------------------------------------------------------------------------------- /qemu/hw/display/cg3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/display/cg3.c -------------------------------------------------------------------------------- /qemu/hw/display/pl110.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/display/pl110.c -------------------------------------------------------------------------------- /qemu/hw/display/qxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/display/qxl.c -------------------------------------------------------------------------------- /qemu/hw/display/qxl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/display/qxl.h -------------------------------------------------------------------------------- /qemu/hw/display/sm501.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/display/sm501.c -------------------------------------------------------------------------------- /qemu/hw/display/tcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/display/tcx.c -------------------------------------------------------------------------------- /qemu/hw/display/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/display/vga.c -------------------------------------------------------------------------------- /qemu/hw/display/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/display/vga.h -------------------------------------------------------------------------------- /qemu/hw/display/xenfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/display/xenfb.c -------------------------------------------------------------------------------- /qemu/hw/dma/i82374.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/dma/i82374.c -------------------------------------------------------------------------------- /qemu/hw/dma/i8257.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/dma/i8257.c -------------------------------------------------------------------------------- /qemu/hw/dma/omap_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/dma/omap_dma.c -------------------------------------------------------------------------------- /qemu/hw/dma/pl080.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/dma/pl080.c -------------------------------------------------------------------------------- /qemu/hw/dma/pl330.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/dma/pl330.c -------------------------------------------------------------------------------- /qemu/hw/dma/puv3_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/dma/puv3_dma.c -------------------------------------------------------------------------------- /qemu/hw/dma/rc4030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/dma/rc4030.c -------------------------------------------------------------------------------- /qemu/hw/dma/soc_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/dma/soc_dma.c -------------------------------------------------------------------------------- /qemu/hw/gpio/max7310.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/gpio/max7310.c -------------------------------------------------------------------------------- /qemu/hw/gpio/pl061.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/gpio/pl061.c -------------------------------------------------------------------------------- /qemu/hw/gpio/zaurus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/gpio/zaurus.c -------------------------------------------------------------------------------- /qemu/hw/i2c/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/i2c/core.c -------------------------------------------------------------------------------- /qemu/hw/i2c/omap_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/i2c/omap_i2c.c -------------------------------------------------------------------------------- /qemu/hw/i2c/pm_smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/i2c/pm_smbus.c -------------------------------------------------------------------------------- /qemu/hw/i2c/smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/i2c/smbus.c -------------------------------------------------------------------------------- /qemu/hw/i386/kvm/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/i386/kvm/apic.c -------------------------------------------------------------------------------- /qemu/hw/i386/kvmvapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/i386/kvmvapic.c -------------------------------------------------------------------------------- /qemu/hw/i386/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/i386/pc.c -------------------------------------------------------------------------------- /qemu/hw/i386/pc_piix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/i386/pc_piix.c -------------------------------------------------------------------------------- /qemu/hw/i386/pc_q35.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/i386/pc_q35.c -------------------------------------------------------------------------------- /qemu/hw/i386/pc_sysfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/i386/pc_sysfw.c -------------------------------------------------------------------------------- /qemu/hw/i386/smbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/i386/smbios.c -------------------------------------------------------------------------------- /qemu/hw/ide/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ide/ahci.c -------------------------------------------------------------------------------- /qemu/hw/ide/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ide/ahci.h -------------------------------------------------------------------------------- /qemu/hw/ide/atapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ide/atapi.c -------------------------------------------------------------------------------- /qemu/hw/ide/cmd646.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ide/cmd646.c -------------------------------------------------------------------------------- /qemu/hw/ide/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ide/core.c -------------------------------------------------------------------------------- /qemu/hw/ide/ich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ide/ich.c -------------------------------------------------------------------------------- /qemu/hw/ide/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ide/internal.h -------------------------------------------------------------------------------- /qemu/hw/ide/isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ide/isa.c -------------------------------------------------------------------------------- /qemu/hw/ide/macio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ide/macio.c -------------------------------------------------------------------------------- /qemu/hw/ide/mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ide/mmio.c -------------------------------------------------------------------------------- /qemu/hw/ide/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ide/pci.c -------------------------------------------------------------------------------- /qemu/hw/ide/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ide/pci.h -------------------------------------------------------------------------------- /qemu/hw/ide/piix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ide/piix.c -------------------------------------------------------------------------------- /qemu/hw/ide/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ide/qdev.c -------------------------------------------------------------------------------- /qemu/hw/ide/via.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ide/via.c -------------------------------------------------------------------------------- /qemu/hw/input/adb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/input/adb.c -------------------------------------------------------------------------------- /qemu/hw/input/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/input/hid.c -------------------------------------------------------------------------------- /qemu/hw/input/lm832x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/input/lm832x.c -------------------------------------------------------------------------------- /qemu/hw/input/pckbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/input/pckbd.c -------------------------------------------------------------------------------- /qemu/hw/input/pl050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/input/pl050.c -------------------------------------------------------------------------------- /qemu/hw/input/ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/input/ps2.c -------------------------------------------------------------------------------- /qemu/hw/input/tsc2005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/input/tsc2005.c -------------------------------------------------------------------------------- /qemu/hw/input/tsc210x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/input/tsc210x.c -------------------------------------------------------------------------------- /qemu/hw/input/vmmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/input/vmmouse.c -------------------------------------------------------------------------------- /qemu/hw/intc/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/intc/apic.c -------------------------------------------------------------------------------- /qemu/hw/intc/arm_gic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/intc/arm_gic.c -------------------------------------------------------------------------------- /qemu/hw/intc/i8259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/intc/i8259.c -------------------------------------------------------------------------------- /qemu/hw/intc/imx_avic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/intc/imx_avic.c -------------------------------------------------------------------------------- /qemu/hw/intc/ioapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/intc/ioapic.c -------------------------------------------------------------------------------- /qemu/hw/intc/lm32_pic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/intc/lm32_pic.c -------------------------------------------------------------------------------- /qemu/hw/intc/openpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/intc/openpic.c -------------------------------------------------------------------------------- /qemu/hw/intc/pl190.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/intc/pl190.c -------------------------------------------------------------------------------- /qemu/hw/intc/sh_intc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/intc/sh_intc.c -------------------------------------------------------------------------------- /qemu/hw/intc/xics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/intc/xics.c -------------------------------------------------------------------------------- /qemu/hw/intc/xics_kvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/intc/xics_kvm.c -------------------------------------------------------------------------------- /qemu/hw/ipack/ipack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ipack/ipack.c -------------------------------------------------------------------------------- /qemu/hw/ipack/tpci200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ipack/tpci200.c -------------------------------------------------------------------------------- /qemu/hw/isa/apm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/isa/apm.c -------------------------------------------------------------------------------- /qemu/hw/isa/i82378.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/isa/i82378.c -------------------------------------------------------------------------------- /qemu/hw/isa/isa-bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/isa/isa-bus.c -------------------------------------------------------------------------------- /qemu/hw/isa/lpc_ich9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/isa/lpc_ich9.c -------------------------------------------------------------------------------- /qemu/hw/isa/pc87312.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/isa/pc87312.c -------------------------------------------------------------------------------- /qemu/hw/isa/piix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/isa/piix4.c -------------------------------------------------------------------------------- /qemu/hw/isa/vt82c686.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/isa/vt82c686.c -------------------------------------------------------------------------------- /qemu/hw/lm32/lm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/lm32/lm32.h -------------------------------------------------------------------------------- /qemu/hw/m68k/an5206.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/m68k/an5206.c -------------------------------------------------------------------------------- /qemu/hw/m68k/mcf5206.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/m68k/mcf5206.c -------------------------------------------------------------------------------- /qemu/hw/m68k/mcf5208.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/m68k/mcf5208.c -------------------------------------------------------------------------------- /qemu/hw/m68k/mcf_intc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/m68k/mcf_intc.c -------------------------------------------------------------------------------- /qemu/hw/mips/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/mips/addr.c -------------------------------------------------------------------------------- /qemu/hw/mips/cputimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/mips/cputimer.c -------------------------------------------------------------------------------- /qemu/hw/mips/mips_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/mips/mips_int.c -------------------------------------------------------------------------------- /qemu/hw/mips/mips_r4k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/mips/mips_r4k.c -------------------------------------------------------------------------------- /qemu/hw/misc/a9scu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/a9scu.c -------------------------------------------------------------------------------- /qemu/hw/misc/applesmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/applesmc.c -------------------------------------------------------------------------------- /qemu/hw/misc/arm11scu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/arm11scu.c -------------------------------------------------------------------------------- /qemu/hw/misc/arm_l2x0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/arm_l2x0.c -------------------------------------------------------------------------------- /qemu/hw/misc/cbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/cbus.c -------------------------------------------------------------------------------- /qemu/hw/misc/imx_ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/imx_ccm.c -------------------------------------------------------------------------------- /qemu/hw/misc/ivshmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/ivshmem.c -------------------------------------------------------------------------------- /qemu/hw/misc/max111x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/max111x.c -------------------------------------------------------------------------------- /qemu/hw/misc/mst_fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/mst_fpga.c -------------------------------------------------------------------------------- /qemu/hw/misc/omap_clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/omap_clk.c -------------------------------------------------------------------------------- /qemu/hw/misc/omap_l4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/omap_l4.c -------------------------------------------------------------------------------- /qemu/hw/misc/omap_tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/omap_tap.c -------------------------------------------------------------------------------- /qemu/hw/misc/puv3_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/puv3_pm.c -------------------------------------------------------------------------------- /qemu/hw/misc/pvpanic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/pvpanic.c -------------------------------------------------------------------------------- /qemu/hw/misc/sga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/sga.c -------------------------------------------------------------------------------- /qemu/hw/misc/tmp105.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/tmp105.c -------------------------------------------------------------------------------- /qemu/hw/misc/tmp105.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/tmp105.h -------------------------------------------------------------------------------- /qemu/hw/misc/vfio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/vfio.c -------------------------------------------------------------------------------- /qemu/hw/misc/vmport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/misc/vmport.c -------------------------------------------------------------------------------- /qemu/hw/net/dp8393x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/dp8393x.c -------------------------------------------------------------------------------- /qemu/hw/net/e1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/e1000.c -------------------------------------------------------------------------------- /qemu/hw/net/eepro100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/eepro100.c -------------------------------------------------------------------------------- /qemu/hw/net/lan9118.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/lan9118.c -------------------------------------------------------------------------------- /qemu/hw/net/lance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/lance.c -------------------------------------------------------------------------------- /qemu/hw/net/mcf_fec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/mcf_fec.c -------------------------------------------------------------------------------- /qemu/hw/net/mipsnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/mipsnet.c -------------------------------------------------------------------------------- /qemu/hw/net/ne2000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/ne2000.c -------------------------------------------------------------------------------- /qemu/hw/net/ne2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/ne2000.h -------------------------------------------------------------------------------- /qemu/hw/net/pcnet-pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/pcnet-pci.c -------------------------------------------------------------------------------- /qemu/hw/net/pcnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/pcnet.c -------------------------------------------------------------------------------- /qemu/hw/net/pcnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/pcnet.h -------------------------------------------------------------------------------- /qemu/hw/net/rtl8139.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/rtl8139.c -------------------------------------------------------------------------------- /qemu/hw/net/smc91c111.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/smc91c111.c -------------------------------------------------------------------------------- /qemu/hw/net/vhost_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/vhost_net.c -------------------------------------------------------------------------------- /qemu/hw/net/vmxnet3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/vmxnet3.c -------------------------------------------------------------------------------- /qemu/hw/net/vmxnet3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/vmxnet3.h -------------------------------------------------------------------------------- /qemu/hw/net/xen_nic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/xen_nic.c -------------------------------------------------------------------------------- /qemu/hw/net/xgmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/net/xgmac.c -------------------------------------------------------------------------------- /qemu/hw/nvram/ds1225y.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/nvram/ds1225y.c -------------------------------------------------------------------------------- /qemu/hw/nvram/fw_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/nvram/fw_cfg.c -------------------------------------------------------------------------------- /qemu/hw/pci-host/apb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pci-host/apb.c -------------------------------------------------------------------------------- /qemu/hw/pci-host/pam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pci-host/pam.c -------------------------------------------------------------------------------- /qemu/hw/pci-host/piix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pci-host/piix.c -------------------------------------------------------------------------------- /qemu/hw/pci-host/prep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pci-host/prep.c -------------------------------------------------------------------------------- /qemu/hw/pci-host/q35.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pci-host/q35.c -------------------------------------------------------------------------------- /qemu/hw/pci/msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pci/msi.c -------------------------------------------------------------------------------- /qemu/hw/pci/msix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pci/msix.c -------------------------------------------------------------------------------- /qemu/hw/pci/pci-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pci/pci-stub.c -------------------------------------------------------------------------------- /qemu/hw/pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pci/pci.c -------------------------------------------------------------------------------- /qemu/hw/pci/pci_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pci/pci_host.c -------------------------------------------------------------------------------- /qemu/hw/pci/pcie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pci/pcie.c -------------------------------------------------------------------------------- /qemu/hw/pci/pcie_aer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pci/pcie_aer.c -------------------------------------------------------------------------------- /qemu/hw/pci/pcie_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pci/pcie_host.c -------------------------------------------------------------------------------- /qemu/hw/pci/pcie_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pci/pcie_port.c -------------------------------------------------------------------------------- /qemu/hw/pci/shpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pci/shpc.c -------------------------------------------------------------------------------- /qemu/hw/pcmcia/pcmcia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pcmcia/pcmcia.c -------------------------------------------------------------------------------- /qemu/hw/pcmcia/pxa2xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/pcmcia/pxa2xx.c -------------------------------------------------------------------------------- /qemu/hw/ppc/e500-ccsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ppc/e500-ccsr.h -------------------------------------------------------------------------------- /qemu/hw/ppc/e500.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ppc/e500.c -------------------------------------------------------------------------------- /qemu/hw/ppc/e500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ppc/e500.h -------------------------------------------------------------------------------- /qemu/hw/ppc/e500plat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ppc/e500plat.c -------------------------------------------------------------------------------- /qemu/hw/ppc/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ppc/mac.h -------------------------------------------------------------------------------- /qemu/hw/ppc/mpc8544ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ppc/mpc8544ds.c -------------------------------------------------------------------------------- /qemu/hw/ppc/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ppc/ppc.c -------------------------------------------------------------------------------- /qemu/hw/ppc/ppc405.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ppc/ppc405.h -------------------------------------------------------------------------------- /qemu/hw/ppc/ppc405_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ppc/ppc405_uc.c -------------------------------------------------------------------------------- /qemu/hw/ppc/ppc_booke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ppc/ppc_booke.c -------------------------------------------------------------------------------- /qemu/hw/ppc/prep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ppc/prep.c -------------------------------------------------------------------------------- /qemu/hw/ppc/spapr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ppc/spapr.c -------------------------------------------------------------------------------- /qemu/hw/ppc/spapr_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ppc/spapr_pci.c -------------------------------------------------------------------------------- /qemu/hw/ppc/spapr_vio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ppc/spapr_vio.c -------------------------------------------------------------------------------- /qemu/hw/s390x/css.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/s390x/css.c -------------------------------------------------------------------------------- /qemu/hw/s390x/css.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/s390x/css.h -------------------------------------------------------------------------------- /qemu/hw/s390x/ipl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/s390x/ipl.c -------------------------------------------------------------------------------- /qemu/hw/s390x/sclp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/s390x/sclp.c -------------------------------------------------------------------------------- /qemu/hw/s390x/sclpcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/s390x/sclpcpu.c -------------------------------------------------------------------------------- /qemu/hw/scsi/esp-pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/scsi/esp-pci.c -------------------------------------------------------------------------------- /qemu/hw/scsi/esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/scsi/esp.c -------------------------------------------------------------------------------- /qemu/hw/scsi/megasas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/scsi/megasas.c -------------------------------------------------------------------------------- /qemu/hw/scsi/mfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/scsi/mfi.h -------------------------------------------------------------------------------- /qemu/hw/scsi/scsi-bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/scsi/scsi-bus.c -------------------------------------------------------------------------------- /qemu/hw/scsi/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/scsi/srp.h -------------------------------------------------------------------------------- /qemu/hw/scsi/viosrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/scsi/viosrp.h -------------------------------------------------------------------------------- /qemu/hw/sd/omap_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/sd/omap_mmc.c -------------------------------------------------------------------------------- /qemu/hw/sd/pl181.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/sd/pl181.c -------------------------------------------------------------------------------- /qemu/hw/sd/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/sd/sd.c -------------------------------------------------------------------------------- /qemu/hw/sd/sdhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/sd/sdhci.c -------------------------------------------------------------------------------- /qemu/hw/sd/sdhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/sd/sdhci.h -------------------------------------------------------------------------------- /qemu/hw/sd/ssi-sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/sd/ssi-sd.c -------------------------------------------------------------------------------- /qemu/hw/sh4/r2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/sh4/r2d.c -------------------------------------------------------------------------------- /qemu/hw/sh4/sh7750.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/sh4/sh7750.c -------------------------------------------------------------------------------- /qemu/hw/sh4/sh_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/sh4/sh_pci.c -------------------------------------------------------------------------------- /qemu/hw/sh4/shix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/sh4/shix.c -------------------------------------------------------------------------------- /qemu/hw/sparc/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += sun4m.o leon3.o 2 | -------------------------------------------------------------------------------- /qemu/hw/sparc/leon3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/sparc/leon3.c -------------------------------------------------------------------------------- /qemu/hw/sparc/sun4m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/sparc/sun4m.c -------------------------------------------------------------------------------- /qemu/hw/sparc64/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += sun4u.o 2 | -------------------------------------------------------------------------------- /qemu/hw/sparc64/sun4u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/sparc64/sun4u.c -------------------------------------------------------------------------------- /qemu/hw/ssi/omap_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ssi/omap_spi.c -------------------------------------------------------------------------------- /qemu/hw/ssi/pl022.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ssi/pl022.c -------------------------------------------------------------------------------- /qemu/hw/ssi/ssi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/ssi/ssi.c -------------------------------------------------------------------------------- /qemu/hw/timer/ds1338.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/timer/ds1338.c -------------------------------------------------------------------------------- /qemu/hw/timer/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/timer/hpet.c -------------------------------------------------------------------------------- /qemu/hw/timer/i8254.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/timer/i8254.c -------------------------------------------------------------------------------- /qemu/hw/timer/imx_gpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/timer/imx_gpt.c -------------------------------------------------------------------------------- /qemu/hw/timer/m48t59.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/timer/m48t59.c -------------------------------------------------------------------------------- /qemu/hw/timer/pl031.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/timer/pl031.c -------------------------------------------------------------------------------- /qemu/hw/tpm/tpm_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/tpm/tpm_int.h -------------------------------------------------------------------------------- /qemu/hw/tpm/tpm_tis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/tpm/tpm_tis.c -------------------------------------------------------------------------------- /qemu/hw/tpm/tpm_tis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/tpm/tpm_tis.h -------------------------------------------------------------------------------- /qemu/hw/usb/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/bus.c -------------------------------------------------------------------------------- /qemu/hw/usb/ccid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/ccid.h -------------------------------------------------------------------------------- /qemu/hw/usb/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/core.c -------------------------------------------------------------------------------- /qemu/hw/usb/desc-msos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/desc-msos.c -------------------------------------------------------------------------------- /qemu/hw/usb/desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/desc.c -------------------------------------------------------------------------------- /qemu/hw/usb/desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/desc.h -------------------------------------------------------------------------------- /qemu/hw/usb/dev-audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/dev-audio.c -------------------------------------------------------------------------------- /qemu/hw/usb/dev-hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/dev-hid.c -------------------------------------------------------------------------------- /qemu/hw/usb/dev-hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/dev-hub.c -------------------------------------------------------------------------------- /qemu/hw/usb/dev-mtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/dev-mtp.c -------------------------------------------------------------------------------- /qemu/hw/usb/dev-uas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/dev-uas.c -------------------------------------------------------------------------------- /qemu/hw/usb/dev-wacom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/dev-wacom.c -------------------------------------------------------------------------------- /qemu/hw/usb/hcd-ehci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/hcd-ehci.c -------------------------------------------------------------------------------- /qemu/hw/usb/hcd-ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/hcd-ehci.h -------------------------------------------------------------------------------- /qemu/hw/usb/hcd-musb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/hcd-musb.c -------------------------------------------------------------------------------- /qemu/hw/usb/hcd-ohci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/hcd-ohci.c -------------------------------------------------------------------------------- /qemu/hw/usb/hcd-uhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/hcd-uhci.c -------------------------------------------------------------------------------- /qemu/hw/usb/hcd-xhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/hcd-xhci.c -------------------------------------------------------------------------------- /qemu/hw/usb/host-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/host-stub.c -------------------------------------------------------------------------------- /qemu/hw/usb/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/host.h -------------------------------------------------------------------------------- /qemu/hw/usb/libhw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/libhw.c -------------------------------------------------------------------------------- /qemu/hw/usb/quirks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/quirks.c -------------------------------------------------------------------------------- /qemu/hw/usb/quirks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/quirks.h -------------------------------------------------------------------------------- /qemu/hw/usb/redirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/usb/redirect.c -------------------------------------------------------------------------------- /qemu/hw/virtio/dataplane/Makefile.objs: -------------------------------------------------------------------------------- 1 | common-obj-y += vring.o 2 | -------------------------------------------------------------------------------- /qemu/hw/virtio/vhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/virtio/vhost.c -------------------------------------------------------------------------------- /qemu/hw/virtio/virtio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/virtio/virtio.c -------------------------------------------------------------------------------- /qemu/hw/xen/xen_pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/xen/xen_pt.c -------------------------------------------------------------------------------- /qemu/hw/xen/xen_pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/hw/xen/xen_pt.h -------------------------------------------------------------------------------- /qemu/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/config.h -------------------------------------------------------------------------------- /qemu/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/elf.h -------------------------------------------------------------------------------- /qemu/include/hw/bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/hw/bt.h -------------------------------------------------------------------------------- /qemu/include/hw/hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/hw/hw.h -------------------------------------------------------------------------------- /qemu/include/hw/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/hw/ide.h -------------------------------------------------------------------------------- /qemu/include/hw/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/hw/irq.h -------------------------------------------------------------------------------- /qemu/include/hw/qdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/hw/qdev.h -------------------------------------------------------------------------------- /qemu/include/hw/sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/hw/sd.h -------------------------------------------------------------------------------- /qemu/include/hw/ssi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/hw/ssi.h -------------------------------------------------------------------------------- /qemu/include/hw/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/hw/usb.h -------------------------------------------------------------------------------- /qemu/include/net/eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/net/eth.h -------------------------------------------------------------------------------- /qemu/include/net/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/net/net.h -------------------------------------------------------------------------------- /qemu/include/net/tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/net/tap.h -------------------------------------------------------------------------------- /qemu/include/qemu-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/qemu-io.h -------------------------------------------------------------------------------- /qemu/include/qemu/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/qemu/acl.h -------------------------------------------------------------------------------- /qemu/include/qemu/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/qemu/aes.h -------------------------------------------------------------------------------- /qemu/include/qemu/iov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/qemu/iov.h -------------------------------------------------------------------------------- /qemu/include/qemu/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/qemu/log.h -------------------------------------------------------------------------------- /qemu/include/qemu/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/qemu/tls.h -------------------------------------------------------------------------------- /qemu/include/qemu/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/qemu/uri.h -------------------------------------------------------------------------------- /qemu/include/qom/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/qom/cpu.h -------------------------------------------------------------------------------- /qemu/include/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/trace.h -------------------------------------------------------------------------------- /qemu/include/ui/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/include/ui/input.h -------------------------------------------------------------------------------- /qemu/iohandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/iohandler.c -------------------------------------------------------------------------------- /qemu/ioport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ioport.c -------------------------------------------------------------------------------- /qemu/iothread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/iothread.c -------------------------------------------------------------------------------- /qemu/kvm-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/kvm-all.c -------------------------------------------------------------------------------- /qemu/kvm-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/kvm-stub.c -------------------------------------------------------------------------------- /qemu/libcacard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/libcacard/Makefile -------------------------------------------------------------------------------- /qemu/libcacard/cac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/libcacard/cac.c -------------------------------------------------------------------------------- /qemu/libcacard/cac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/libcacard/cac.h -------------------------------------------------------------------------------- /qemu/libcacard/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/libcacard/event.c -------------------------------------------------------------------------------- /qemu/libcacard/eventt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/libcacard/eventt.h -------------------------------------------------------------------------------- /qemu/libcacard/vcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/libcacard/vcard.c -------------------------------------------------------------------------------- /qemu/libcacard/vcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/libcacard/vcard.h -------------------------------------------------------------------------------- /qemu/libcacard/vcardt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/libcacard/vcardt.c -------------------------------------------------------------------------------- /qemu/libcacard/vcardt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/libcacard/vcardt.h -------------------------------------------------------------------------------- /qemu/libcacard/vevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/libcacard/vevent.h -------------------------------------------------------------------------------- /qemu/linux-headers/asm-arm/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/linux-headers/asm-arm64/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/linux-headers/asm-mips/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/linux-user/flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/linux-user/flat.h -------------------------------------------------------------------------------- /qemu/linux-user/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/linux-user/main.c -------------------------------------------------------------------------------- /qemu/linux-user/mips64/target_structs.h: -------------------------------------------------------------------------------- 1 | #include "../mips/target_structs.h" 2 | 3 | -------------------------------------------------------------------------------- /qemu/linux-user/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/linux-user/mmap.c -------------------------------------------------------------------------------- /qemu/linux-user/qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/linux-user/qemu.h -------------------------------------------------------------------------------- /qemu/linux-user/sparc64/target_cpu.h: -------------------------------------------------------------------------------- 1 | #include "../sparc/target_cpu.h" 2 | -------------------------------------------------------------------------------- /qemu/linux-user/uname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/linux-user/uname.c -------------------------------------------------------------------------------- /qemu/linux-user/uname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/linux-user/uname.h -------------------------------------------------------------------------------- /qemu/linux-user/vm86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/linux-user/vm86.c -------------------------------------------------------------------------------- /qemu/linux-user/x86_64/target_cpu.h: -------------------------------------------------------------------------------- 1 | #include "../i386/target_cpu.h" 2 | -------------------------------------------------------------------------------- /qemu/main-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/main-loop.c -------------------------------------------------------------------------------- /qemu/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/memory.c -------------------------------------------------------------------------------- /qemu/memory_mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/memory_mapping.c -------------------------------------------------------------------------------- /qemu/migration-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/migration-exec.c -------------------------------------------------------------------------------- /qemu/migration-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/migration-fd.c -------------------------------------------------------------------------------- /qemu/migration-rdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/migration-rdma.c -------------------------------------------------------------------------------- /qemu/migration-tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/migration-tcp.c -------------------------------------------------------------------------------- /qemu/migration-unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/migration-unix.c -------------------------------------------------------------------------------- /qemu/migration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/migration.c -------------------------------------------------------------------------------- /qemu/module-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/module-common.c -------------------------------------------------------------------------------- /qemu/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/monitor.c -------------------------------------------------------------------------------- /qemu/nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/nbd.c -------------------------------------------------------------------------------- /qemu/net/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/Makefile.objs -------------------------------------------------------------------------------- /qemu/net/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/checksum.c -------------------------------------------------------------------------------- /qemu/net/clients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/clients.h -------------------------------------------------------------------------------- /qemu/net/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/dump.c -------------------------------------------------------------------------------- /qemu/net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/eth.c -------------------------------------------------------------------------------- /qemu/net/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/hub.c -------------------------------------------------------------------------------- /qemu/net/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/hub.h -------------------------------------------------------------------------------- /qemu/net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/net.c -------------------------------------------------------------------------------- /qemu/net/netmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/netmap.c -------------------------------------------------------------------------------- /qemu/net/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/queue.c -------------------------------------------------------------------------------- /qemu/net/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/slirp.c -------------------------------------------------------------------------------- /qemu/net/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/socket.c -------------------------------------------------------------------------------- /qemu/net/tap-aix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/tap-aix.c -------------------------------------------------------------------------------- /qemu/net/tap-bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/tap-bsd.c -------------------------------------------------------------------------------- /qemu/net/tap-haiku.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/tap-haiku.c -------------------------------------------------------------------------------- /qemu/net/tap-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/tap-linux.c -------------------------------------------------------------------------------- /qemu/net/tap-linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/tap-linux.h -------------------------------------------------------------------------------- /qemu/net/tap-solaris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/tap-solaris.c -------------------------------------------------------------------------------- /qemu/net/tap-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/tap-win32.c -------------------------------------------------------------------------------- /qemu/net/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/tap.c -------------------------------------------------------------------------------- /qemu/net/tap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/tap_int.h -------------------------------------------------------------------------------- /qemu/net/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/util.c -------------------------------------------------------------------------------- /qemu/net/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/util.h -------------------------------------------------------------------------------- /qemu/net/vde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/net/vde.c -------------------------------------------------------------------------------- /qemu/os-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/os-posix.c -------------------------------------------------------------------------------- /qemu/os-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/os-win32.c -------------------------------------------------------------------------------- /qemu/page_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/page_cache.c -------------------------------------------------------------------------------- /qemu/pc-bios/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/Makefile -------------------------------------------------------------------------------- /qemu/pc-bios/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/README -------------------------------------------------------------------------------- /qemu/pc-bios/bamboo.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/bamboo.dtb -------------------------------------------------------------------------------- /qemu/pc-bios/bamboo.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/bamboo.dts -------------------------------------------------------------------------------- /qemu/pc-bios/bios.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/bios.bin -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/ar -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/cz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/cz -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/da -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/de -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/es -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/et: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/et -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/fi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/fi -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/fo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/fo -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/fr -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/hr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/hr -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/hu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/hu -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/is: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/is -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/it -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/ja -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/lt -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/lv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/lv -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/mk -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/nl -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/nl-be: -------------------------------------------------------------------------------- 1 | # Dutch (Belgium) 2 | map 0x813 3 | include common 4 | -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/no: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/no -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/pl -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/pt -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/ru -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/sl -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/sv -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/th -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/keymaps/tr -------------------------------------------------------------------------------- /qemu/pc-bios/slof.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/pc-bios/slof.bin -------------------------------------------------------------------------------- /qemu/po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/po/Makefile -------------------------------------------------------------------------------- /qemu/po/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/po/de_DE.po -------------------------------------------------------------------------------- /qemu/po/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/po/fr_FR.po -------------------------------------------------------------------------------- /qemu/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/po/hu.po -------------------------------------------------------------------------------- /qemu/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/po/it.po -------------------------------------------------------------------------------- /qemu/po/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/po/messages.po -------------------------------------------------------------------------------- /qemu/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/po/tr.po -------------------------------------------------------------------------------- /qemu/qapi-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qapi-schema.json -------------------------------------------------------------------------------- /qemu/qapi/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qapi/Makefile.objs -------------------------------------------------------------------------------- /qemu/qdev-monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qdev-monitor.c -------------------------------------------------------------------------------- /qemu/qemu-char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-char.c -------------------------------------------------------------------------------- /qemu/qemu-coroutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-coroutine.c -------------------------------------------------------------------------------- /qemu/qemu-doc.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-doc.texi -------------------------------------------------------------------------------- /qemu/qemu-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-file.c -------------------------------------------------------------------------------- /qemu/qemu-img-cmds.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-img-cmds.hx -------------------------------------------------------------------------------- /qemu/qemu-img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-img.c -------------------------------------------------------------------------------- /qemu/qemu-img.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-img.texi -------------------------------------------------------------------------------- /qemu/qemu-io-cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-io-cmds.c -------------------------------------------------------------------------------- /qemu/qemu-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-io.c -------------------------------------------------------------------------------- /qemu/qemu-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-log.c -------------------------------------------------------------------------------- /qemu/qemu-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-nbd.c -------------------------------------------------------------------------------- /qemu/qemu-nbd.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-nbd.texi -------------------------------------------------------------------------------- /qemu/qemu-options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-options.h -------------------------------------------------------------------------------- /qemu/qemu-options.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-options.hx -------------------------------------------------------------------------------- /qemu/qemu-seccomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-seccomp.c -------------------------------------------------------------------------------- /qemu/qemu-tech.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-tech.texi -------------------------------------------------------------------------------- /qemu/qemu-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu-timer.c -------------------------------------------------------------------------------- /qemu/qemu.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu.nsi -------------------------------------------------------------------------------- /qemu/qemu.sasl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qemu.sasl -------------------------------------------------------------------------------- /qemu/qga/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qga/Makefile.objs -------------------------------------------------------------------------------- /qemu/qga/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qga/channel.h -------------------------------------------------------------------------------- /qemu/qga/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qga/commands.c -------------------------------------------------------------------------------- /qemu/qga/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qga/main.c -------------------------------------------------------------------------------- /qemu/qga/vss-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qga/vss-win32.c -------------------------------------------------------------------------------- /qemu/qga/vss-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qga/vss-win32.h -------------------------------------------------------------------------------- /qemu/qmp-commands.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qmp-commands.hx -------------------------------------------------------------------------------- /qemu/qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qmp.c -------------------------------------------------------------------------------- /qemu/qobject/qbool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qobject/qbool.c -------------------------------------------------------------------------------- /qemu/qobject/qdict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qobject/qdict.c -------------------------------------------------------------------------------- /qemu/qobject/qerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qobject/qerror.c -------------------------------------------------------------------------------- /qemu/qobject/qfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qobject/qfloat.c -------------------------------------------------------------------------------- /qemu/qobject/qint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qobject/qint.c -------------------------------------------------------------------------------- /qemu/qobject/qjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qobject/qjson.c -------------------------------------------------------------------------------- /qemu/qobject/qlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qobject/qlist.c -------------------------------------------------------------------------------- /qemu/qobject/qstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qobject/qstring.c -------------------------------------------------------------------------------- /qemu/qom/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qom/Makefile.objs -------------------------------------------------------------------------------- /qemu/qom/container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qom/container.c -------------------------------------------------------------------------------- /qemu/qom/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qom/cpu.c -------------------------------------------------------------------------------- /qemu/qom/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qom/object.c -------------------------------------------------------------------------------- /qemu/qom/qom-qobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qom/qom-qobject.c -------------------------------------------------------------------------------- /qemu/qtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/qtest.c -------------------------------------------------------------------------------- /qemu/roms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/roms/Makefile -------------------------------------------------------------------------------- /qemu/rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/rules.mak -------------------------------------------------------------------------------- /qemu/savevm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/savevm.c -------------------------------------------------------------------------------- /qemu/scripts/hxtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/scripts/hxtool -------------------------------------------------------------------------------- /qemu/scripts/kvm/vmxcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/scripts/kvm/vmxcap -------------------------------------------------------------------------------- /qemu/scripts/qapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/scripts/qapi.py -------------------------------------------------------------------------------- /qemu/scripts/qmp/qmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/scripts/qmp/qmp -------------------------------------------------------------------------------- /qemu/scripts/qmp/qmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/scripts/qmp/qmp.py -------------------------------------------------------------------------------- /qemu/scripts/qtest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | export QTEST_QEMU_BINARY=$1 4 | shift 5 | "$@" 6 | -------------------------------------------------------------------------------- /qemu/scripts/signrom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/scripts/signrom.py -------------------------------------------------------------------------------- /qemu/slirp/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/COPYRIGHT -------------------------------------------------------------------------------- /qemu/slirp/arp_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/arp_table.c -------------------------------------------------------------------------------- /qemu/slirp/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/bootp.c -------------------------------------------------------------------------------- /qemu/slirp/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/bootp.h -------------------------------------------------------------------------------- /qemu/slirp/cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/cksum.c -------------------------------------------------------------------------------- /qemu/slirp/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/debug.h -------------------------------------------------------------------------------- /qemu/slirp/dnssearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/dnssearch.c -------------------------------------------------------------------------------- /qemu/slirp/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/if.c -------------------------------------------------------------------------------- /qemu/slirp/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/if.h -------------------------------------------------------------------------------- /qemu/slirp/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/ip.h -------------------------------------------------------------------------------- /qemu/slirp/ip_icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/ip_icmp.c -------------------------------------------------------------------------------- /qemu/slirp/ip_icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/ip_icmp.h -------------------------------------------------------------------------------- /qemu/slirp/ip_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/ip_input.c -------------------------------------------------------------------------------- /qemu/slirp/ip_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/ip_output.c -------------------------------------------------------------------------------- /qemu/slirp/libslirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/libslirp.h -------------------------------------------------------------------------------- /qemu/slirp/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/main.h -------------------------------------------------------------------------------- /qemu/slirp/mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/mbuf.c -------------------------------------------------------------------------------- /qemu/slirp/mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/mbuf.h -------------------------------------------------------------------------------- /qemu/slirp/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/misc.c -------------------------------------------------------------------------------- /qemu/slirp/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/misc.h -------------------------------------------------------------------------------- /qemu/slirp/sbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/sbuf.c -------------------------------------------------------------------------------- /qemu/slirp/sbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/sbuf.h -------------------------------------------------------------------------------- /qemu/slirp/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/slirp.c -------------------------------------------------------------------------------- /qemu/slirp/slirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/slirp.h -------------------------------------------------------------------------------- /qemu/slirp/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/socket.c -------------------------------------------------------------------------------- /qemu/slirp/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/socket.h -------------------------------------------------------------------------------- /qemu/slirp/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/tcp.h -------------------------------------------------------------------------------- /qemu/slirp/tcp_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/tcp_input.c -------------------------------------------------------------------------------- /qemu/slirp/tcp_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/tcp_output.c -------------------------------------------------------------------------------- /qemu/slirp/tcp_subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/tcp_subr.c -------------------------------------------------------------------------------- /qemu/slirp/tcp_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/tcp_timer.c -------------------------------------------------------------------------------- /qemu/slirp/tcp_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/tcp_timer.h -------------------------------------------------------------------------------- /qemu/slirp/tcp_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/tcp_var.h -------------------------------------------------------------------------------- /qemu/slirp/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/tcpip.h -------------------------------------------------------------------------------- /qemu/slirp/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/tftp.c -------------------------------------------------------------------------------- /qemu/slirp/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/tftp.h -------------------------------------------------------------------------------- /qemu/slirp/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/udp.c -------------------------------------------------------------------------------- /qemu/slirp/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/slirp/udp.h -------------------------------------------------------------------------------- /qemu/spice-qemu-char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/spice-qemu-char.c -------------------------------------------------------------------------------- /qemu/stubs/clock-warp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/stubs/clock-warp.c -------------------------------------------------------------------------------- /qemu/stubs/cpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/stubs/cpus.c -------------------------------------------------------------------------------- /qemu/stubs/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/stubs/dump.c -------------------------------------------------------------------------------- /qemu/stubs/gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/stubs/gdbstub.c -------------------------------------------------------------------------------- /qemu/stubs/get-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/stubs/get-fd.c -------------------------------------------------------------------------------- /qemu/stubs/kvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/stubs/kvm.c -------------------------------------------------------------------------------- /qemu/stubs/mon-is-qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/stubs/mon-is-qmp.c -------------------------------------------------------------------------------- /qemu/stubs/mon-printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/stubs/mon-printf.c -------------------------------------------------------------------------------- /qemu/stubs/qtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/stubs/qtest.c -------------------------------------------------------------------------------- /qemu/stubs/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/stubs/reset.c -------------------------------------------------------------------------------- /qemu/stubs/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/stubs/slirp.c -------------------------------------------------------------------------------- /qemu/stubs/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/stubs/uuid.c -------------------------------------------------------------------------------- /qemu/stubs/vm-stop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/stubs/vm-stop.c -------------------------------------------------------------------------------- /qemu/stubs/vmstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/stubs/vmstate.c -------------------------------------------------------------------------------- /qemu/sysconfigs/target/target-x86_64.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/target-alpha/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-alpha/cpu.c -------------------------------------------------------------------------------- /qemu/target-alpha/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-alpha/cpu.h -------------------------------------------------------------------------------- /qemu/target-arm/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-arm/cpu.c -------------------------------------------------------------------------------- /qemu/target-arm/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-arm/cpu.h -------------------------------------------------------------------------------- /qemu/target-arm/cpu64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-arm/cpu64.c -------------------------------------------------------------------------------- /qemu/target-arm/kvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-arm/kvm.c -------------------------------------------------------------------------------- /qemu/target-arm/kvm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-arm/kvm32.c -------------------------------------------------------------------------------- /qemu/target-arm/kvm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-arm/kvm64.c -------------------------------------------------------------------------------- /qemu/target-cris/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-cris/cpu.c -------------------------------------------------------------------------------- /qemu/target-cris/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-cris/cpu.h -------------------------------------------------------------------------------- /qemu/target-cris/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-cris/mmu.c -------------------------------------------------------------------------------- /qemu/target-cris/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-cris/mmu.h -------------------------------------------------------------------------------- /qemu/target-i386/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-i386/TODO -------------------------------------------------------------------------------- /qemu/target-i386/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-i386/cpu.c -------------------------------------------------------------------------------- /qemu/target-i386/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-i386/cpu.h -------------------------------------------------------------------------------- /qemu/target-i386/kvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-i386/kvm.c -------------------------------------------------------------------------------- /qemu/target-i386/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-i386/svm.h -------------------------------------------------------------------------------- /qemu/target-lm32/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-lm32/README -------------------------------------------------------------------------------- /qemu/target-lm32/TODO: -------------------------------------------------------------------------------- 1 | * linux-user emulation 2 | -------------------------------------------------------------------------------- /qemu/target-lm32/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-lm32/cpu.c -------------------------------------------------------------------------------- /qemu/target-lm32/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-lm32/cpu.h -------------------------------------------------------------------------------- /qemu/target-m68k/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-m68k/cpu.c -------------------------------------------------------------------------------- /qemu/target-m68k/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/target-m68k/cpu.h -------------------------------------------------------------------------------- /qemu/target-moxie/machine.h: -------------------------------------------------------------------------------- 1 | extern const VMStateDescription vmstate_moxie_cpu; 2 | -------------------------------------------------------------------------------- /qemu/tcg-runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/tcg-runtime.c -------------------------------------------------------------------------------- /qemu/tcg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/tcg/LICENSE -------------------------------------------------------------------------------- /qemu/tcg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/tcg/README -------------------------------------------------------------------------------- /qemu/tcg/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/tcg/TODO -------------------------------------------------------------------------------- /qemu/tcg/optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/tcg/optimize.c -------------------------------------------------------------------------------- /qemu/tcg/tcg-op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/tcg/tcg-op.h -------------------------------------------------------------------------------- /qemu/tcg/tcg-opc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/tcg/tcg-opc.h -------------------------------------------------------------------------------- /qemu/tcg/tcg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/tcg/tcg.c -------------------------------------------------------------------------------- /qemu/tcg/tcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/tcg/tcg.h -------------------------------------------------------------------------------- /qemu/tcg/tci/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/tcg/tci/README -------------------------------------------------------------------------------- /qemu/tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/tci.c -------------------------------------------------------------------------------- /qemu/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/tests/Makefile -------------------------------------------------------------------------------- /qemu/tests/acpi-test-data/pc/FACS: -------------------------------------------------------------------------------- 1 | sstv`  -------------------------------------------------------------------------------- /qemu/tests/acpi-test-data/q35/FACS: -------------------------------------------------------------------------------- 1 | sstv`  -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/comments.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/comments.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/duplicate-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/empty.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/empty.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/flat-union-invalid-branch-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/flat-union-invalid-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/flat-union-no-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/flat-union-reverse-define.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/flat-union-reverse-define.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/flat-union-string-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/funny-char.err: -------------------------------------------------------------------------------- 1 | tests/qapi-schema/funny-char.json:2:36: Stray ";" 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/funny-char.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-before-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-cycle.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-format-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-nested-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-nested-err.json: -------------------------------------------------------------------------------- 1 | { 'include': 'missing-colon.json' } 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-no-file.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-non-file.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-non-file.json: -------------------------------------------------------------------------------- 1 | { 'include': [ 'foo', 'bar' ] } 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-relpath.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-relpath.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-repetition.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-repetition.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-self-cycle.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-simple.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-simple.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/indented-expr.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/indented-expr.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/missing-colon.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/missing-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/missing-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/non-objects.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/non-objects.json: -------------------------------------------------------------------------------- 1 | 'string' 2 | [ ] 3 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/qapi-schema-test.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/qapi-schema-test.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/quoted-structural-chars.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/trailing-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/trailing-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/unclosed-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/unclosed-list.json: -------------------------------------------------------------------------------- 1 | { 'key': [ 'value' } 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/unclosed-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/unclosed-object.json: -------------------------------------------------------------------------------- 1 | { 'key': [ 'value' ] 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/unclosed-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/unclosed-string.json: -------------------------------------------------------------------------------- 1 | { 'text': 'lorem ips 2 | } 3 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/union-invalid-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/tcg/mips/mips64-dspr2/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2012,8,3,16,41,52 3 | -------------------------------------------------------------------------------- /qemu/thread-pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/thread-pool.c -------------------------------------------------------------------------------- /qemu/thunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/thunk.c -------------------------------------------------------------------------------- /qemu/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/tpm.c -------------------------------------------------------------------------------- /qemu/trace-events: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/trace-events -------------------------------------------------------------------------------- /qemu/trace/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/trace/control.c -------------------------------------------------------------------------------- /qemu/trace/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/trace/control.h -------------------------------------------------------------------------------- /qemu/trace/default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/trace/default.c -------------------------------------------------------------------------------- /qemu/trace/ftrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/trace/ftrace.c -------------------------------------------------------------------------------- /qemu/trace/ftrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/trace/ftrace.h -------------------------------------------------------------------------------- /qemu/trace/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/trace/simple.c -------------------------------------------------------------------------------- /qemu/trace/simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/trace/simple.h -------------------------------------------------------------------------------- /qemu/trace/stderr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/trace/stderr.c -------------------------------------------------------------------------------- /qemu/translate-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/translate-all.c -------------------------------------------------------------------------------- /qemu/translate-all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/translate-all.h -------------------------------------------------------------------------------- /qemu/ui/cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/cocoa.m -------------------------------------------------------------------------------- /qemu/ui/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/console.c -------------------------------------------------------------------------------- /qemu/ui/curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/curses.c -------------------------------------------------------------------------------- /qemu/ui/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/cursor.c -------------------------------------------------------------------------------- /qemu/ui/d3des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/d3des.c -------------------------------------------------------------------------------- /qemu/ui/d3des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/d3des.h -------------------------------------------------------------------------------- /qemu/ui/gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/gtk.c -------------------------------------------------------------------------------- /qemu/ui/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/input.c -------------------------------------------------------------------------------- /qemu/ui/keymaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/keymaps.c -------------------------------------------------------------------------------- /qemu/ui/keymaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/keymaps.h -------------------------------------------------------------------------------- /qemu/ui/qemu-x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/qemu-x509.h -------------------------------------------------------------------------------- /qemu/ui/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/sdl.c -------------------------------------------------------------------------------- /qemu/ui/sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/sdl2.c -------------------------------------------------------------------------------- /qemu/ui/sdl_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/sdl_keysym.h -------------------------------------------------------------------------------- /qemu/ui/sdl_zoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/sdl_zoom.c -------------------------------------------------------------------------------- /qemu/ui/sdl_zoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/sdl_zoom.h -------------------------------------------------------------------------------- /qemu/ui/spice-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/spice-core.c -------------------------------------------------------------------------------- /qemu/ui/vgafont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/vgafont.h -------------------------------------------------------------------------------- /qemu/ui/vnc-jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/vnc-jobs.c -------------------------------------------------------------------------------- /qemu/ui/vnc-jobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/vnc-jobs.h -------------------------------------------------------------------------------- /qemu/ui/vnc-tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/vnc-tls.c -------------------------------------------------------------------------------- /qemu/ui/vnc-tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/vnc-tls.h -------------------------------------------------------------------------------- /qemu/ui/vnc-ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/vnc-ws.c -------------------------------------------------------------------------------- /qemu/ui/vnc-ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/vnc-ws.h -------------------------------------------------------------------------------- /qemu/ui/vnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/vnc.c -------------------------------------------------------------------------------- /qemu/ui/vnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/vnc.h -------------------------------------------------------------------------------- /qemu/ui/vnc_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/vnc_keysym.h -------------------------------------------------------------------------------- /qemu/ui/x_keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/x_keymap.c -------------------------------------------------------------------------------- /qemu/ui/x_keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/ui/x_keymap.h -------------------------------------------------------------------------------- /qemu/user-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/user-exec.c -------------------------------------------------------------------------------- /qemu/util/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/acl.c -------------------------------------------------------------------------------- /qemu/util/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/aes.c -------------------------------------------------------------------------------- /qemu/util/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/bitmap.c -------------------------------------------------------------------------------- /qemu/util/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/bitops.c -------------------------------------------------------------------------------- /qemu/util/compatfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/compatfd.c -------------------------------------------------------------------------------- /qemu/util/crc32c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/crc32c.c -------------------------------------------------------------------------------- /qemu/util/cutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/cutils.c -------------------------------------------------------------------------------- /qemu/util/envlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/envlist.c -------------------------------------------------------------------------------- /qemu/util/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/error.c -------------------------------------------------------------------------------- /qemu/util/fifo8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/fifo8.c -------------------------------------------------------------------------------- /qemu/util/hbitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/hbitmap.c -------------------------------------------------------------------------------- /qemu/util/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/hexdump.c -------------------------------------------------------------------------------- /qemu/util/iov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/iov.c -------------------------------------------------------------------------------- /qemu/util/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/module.c -------------------------------------------------------------------------------- /qemu/util/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/notify.c -------------------------------------------------------------------------------- /qemu/util/osdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/osdep.c -------------------------------------------------------------------------------- /qemu/util/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/path.c -------------------------------------------------------------------------------- /qemu/util/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/readline.c -------------------------------------------------------------------------------- /qemu/util/throttle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/throttle.c -------------------------------------------------------------------------------- /qemu/util/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/unicode.c -------------------------------------------------------------------------------- /qemu/util/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/util/uri.c -------------------------------------------------------------------------------- /qemu/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/version.rc -------------------------------------------------------------------------------- /qemu/vl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/vl.c -------------------------------------------------------------------------------- /qemu/vmstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/vmstate.c -------------------------------------------------------------------------------- /qemu/xbzrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/xbzrle.c -------------------------------------------------------------------------------- /qemu/xen-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/xen-common.c -------------------------------------------------------------------------------- /qemu/xen-hvm-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/xen-hvm-stub.c -------------------------------------------------------------------------------- /qemu/xen-hvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/xen-hvm.c -------------------------------------------------------------------------------- /qemu/xen-mapcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/qemu/xen-mapcache.c -------------------------------------------------------------------------------- /start_qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levex/kernel-qemu-pci/HEAD/start_qemu.sh --------------------------------------------------------------------------------