├── .gitignore ├── README.md ├── gfs.py ├── qcu-device ├── .dir-locals.el ├── .gdbinit ├── .gitignore ├── .gitmodules ├── .gitpublish ├── .mailmap ├── .shippable.yml ├── .travis.yml ├── CODING_STYLE ├── COPYING ├── COPYING.LIB ├── COPYING.PYTHON ├── Changelog ├── HACKING ├── LICENSE ├── MAINTAINERS ├── Makefile ├── Makefile.objs ├── Makefile.target ├── README ├── VERSION ├── accel │ ├── Makefile.objs │ ├── accel.c │ ├── kvm │ │ ├── Makefile.objs │ │ ├── kvm-all.c │ │ ├── sev-stub.c │ │ └── trace-events │ ├── stubs │ │ ├── Makefile.objs │ │ ├── hax-stub.c │ │ ├── hvf-stub.c │ │ ├── kvm-stub.c │ │ ├── tcg-stub.c │ │ └── whpx-stub.c │ └── tcg │ │ ├── Makefile.objs │ │ ├── atomic_template.h │ │ ├── cpu-exec-common.c │ │ ├── cpu-exec.c │ │ ├── cputlb.c │ │ ├── softmmu_template.h │ │ ├── tcg-all.c │ │ ├── tcg-runtime-gvec.c │ │ ├── tcg-runtime.c │ │ ├── tcg-runtime.h │ │ ├── trace-events │ │ ├── translate-all.c │ │ ├── translate-all.h │ │ ├── translator.c │ │ ├── user-exec-stub.c │ │ └── user-exec.c ├── arch_init.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 │ ├── mixeng.c │ ├── mixeng.h │ ├── mixeng_template.h │ ├── noaudio.c │ ├── ossaudio.c │ ├── paaudio.c │ ├── rate_template.h │ ├── sdlaudio.c │ ├── spiceaudio.c │ ├── trace-events │ ├── wavaudio.c │ └── wavcapture.c ├── backends │ ├── Makefile.objs │ ├── cryptodev-builtin.c │ ├── cryptodev-vhost-user.c │ ├── cryptodev-vhost.c │ ├── cryptodev.c │ ├── hostmem-file.c │ ├── hostmem-memfd.c │ ├── hostmem-ram.c │ ├── hostmem.c │ ├── rng-egd.c │ ├── rng-random.c │ ├── rng.c │ └── tpm.c ├── balloon.c ├── block.c ├── block │ ├── Makefile.objs │ ├── accounting.c │ ├── backup.c │ ├── blkdebug.c │ ├── blkreplay.c │ ├── blkverify.c │ ├── block-backend.c │ ├── bochs.c │ ├── cloop.c │ ├── commit.c │ ├── create.c │ ├── crypto.c │ ├── crypto.h │ ├── curl.c │ ├── dirty-bitmap.c │ ├── dmg-bz2.c │ ├── dmg.c │ ├── dmg.h │ ├── file-posix.c │ ├── file-win32.c │ ├── gluster.c │ ├── io.c │ ├── iscsi-opts.c │ ├── iscsi.c │ ├── linux-aio.c │ ├── mirror.c │ ├── nbd-client.c │ ├── nbd-client.h │ ├── nbd.c │ ├── nfs.c │ ├── null.c │ ├── nvme.c │ ├── parallels.c │ ├── parallels.h │ ├── qapi.c │ ├── qcow.c │ ├── qcow2-bitmap.c │ ├── qcow2-cache.c │ ├── qcow2-cluster.c │ ├── qcow2-refcount.c │ ├── qcow2-snapshot.c │ ├── qcow2.c │ ├── qcow2.h │ ├── qed-check.c │ ├── qed-cluster.c │ ├── qed-l2-cache.c │ ├── qed-table.c │ ├── qed.c │ ├── qed.h │ ├── quorum.c │ ├── raw-format.c │ ├── rbd.c │ ├── replication.c │ ├── sheepdog.c │ ├── snapshot.c │ ├── ssh.c │ ├── stream.c │ ├── throttle-groups.c │ ├── throttle.c │ ├── trace-events │ ├── vdi.c │ ├── vhdx-endian.c │ ├── vhdx-log.c │ ├── vhdx.c │ ├── vhdx.h │ ├── vmdk.c │ ├── vpc.c │ ├── vvfat.c │ ├── vxhs.c │ ├── win32-aio.c │ └── write-threshold.c ├── blockdev-nbd.c ├── blockdev.c ├── blockjob.c ├── bootdevice.c ├── bsd-user │ ├── Makefile.objs │ ├── bsd-mman.h │ ├── bsdload.c │ ├── elfload.c │ ├── errno_defs.h │ ├── freebsd │ │ ├── strace.list │ │ └── syscall_nr.h │ ├── i386 │ │ ├── target_signal.h │ │ └── target_syscall.h │ ├── main.c │ ├── mmap.c │ ├── netbsd │ │ ├── strace.list │ │ └── syscall_nr.h │ ├── openbsd │ │ ├── strace.list │ │ └── syscall_nr.h │ ├── qemu.h │ ├── signal.c │ ├── sparc │ │ ├── target_signal.h │ │ └── target_syscall.h │ ├── sparc64 │ │ ├── target_signal.h │ │ └── target_syscall.h │ ├── strace.c │ ├── syscall.c │ ├── syscall_defs.h │ ├── uaccess.c │ └── x86_64 │ │ ├── target_signal.h │ │ └── target_syscall.h ├── bt-host.c ├── bt-vhci.c ├── capstone │ ├── .appveyor.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── COMPILE.TXT │ ├── COMPILE_CMAKE.TXT │ ├── COMPILE_MSVC.TXT │ ├── CREDITS.TXT │ ├── ChangeLog │ ├── HACK.TXT │ ├── LEB128.h │ ├── LICENSE.TXT │ ├── LICENSE_LLVM.TXT │ ├── MCDisassembler.h │ ├── MCFixedLenDisassembler.h │ ├── MCInst.c │ ├── MCInst.h │ ├── MCInstrDesc.c │ ├── MCInstrDesc.h │ ├── MCRegisterInfo.c │ ├── MCRegisterInfo.h │ ├── Makefile │ ├── MathExtras.h │ ├── README │ ├── RELEASE_NOTES │ ├── SStream.c │ ├── SStream.h │ ├── TODO │ ├── arch │ │ ├── AArch64 │ │ │ ├── AArch64AddressingModes.h │ │ │ ├── AArch64BaseInfo.c │ │ │ ├── AArch64BaseInfo.h │ │ │ ├── AArch64Disassembler.c │ │ │ ├── AArch64Disassembler.h │ │ │ ├── AArch64GenAsmWriter.inc │ │ │ ├── AArch64GenDisassemblerTables.inc │ │ │ ├── AArch64GenInstrInfo.inc │ │ │ ├── AArch64GenRegisterInfo.inc │ │ │ ├── AArch64GenSubtargetInfo.inc │ │ │ ├── AArch64InstPrinter.c │ │ │ ├── AArch64InstPrinter.h │ │ │ ├── AArch64Mapping.c │ │ │ ├── AArch64Mapping.h │ │ │ └── AArch64Module.c │ │ ├── ARM │ │ │ ├── ARMAddressingModes.h │ │ │ ├── ARMBaseInfo.h │ │ │ ├── ARMDisassembler.c │ │ │ ├── ARMDisassembler.h │ │ │ ├── ARMGenAsmWriter.inc │ │ │ ├── ARMGenDisassemblerTables.inc │ │ │ ├── ARMGenInstrInfo.inc │ │ │ ├── ARMGenRegisterInfo.inc │ │ │ ├── ARMGenSubtargetInfo.inc │ │ │ ├── ARMInstPrinter.c │ │ │ ├── ARMInstPrinter.h │ │ │ ├── ARMMapping.c │ │ │ ├── ARMMapping.h │ │ │ └── ARMModule.c │ │ ├── Mips │ │ │ ├── MipsDisassembler.c │ │ │ ├── MipsDisassembler.h │ │ │ ├── MipsGenAsmWriter.inc │ │ │ ├── MipsGenDisassemblerTables.inc │ │ │ ├── MipsGenInstrInfo.inc │ │ │ ├── MipsGenRegisterInfo.inc │ │ │ ├── MipsGenSubtargetInfo.inc │ │ │ ├── MipsInstPrinter.c │ │ │ ├── MipsInstPrinter.h │ │ │ ├── MipsMapping.c │ │ │ ├── MipsMapping.h │ │ │ └── MipsModule.c │ │ ├── PowerPC │ │ │ ├── PPCDisassembler.c │ │ │ ├── PPCDisassembler.h │ │ │ ├── PPCGenAsmWriter.inc │ │ │ ├── PPCGenDisassemblerTables.inc │ │ │ ├── PPCGenInstrInfo.inc │ │ │ ├── PPCGenRegisterInfo.inc │ │ │ ├── PPCGenSubtargetInfo.inc │ │ │ ├── PPCInstPrinter.c │ │ │ ├── PPCInstPrinter.h │ │ │ ├── PPCMapping.c │ │ │ ├── PPCMapping.h │ │ │ ├── PPCModule.c │ │ │ └── PPCPredicates.h │ │ ├── Sparc │ │ │ ├── Sparc.h │ │ │ ├── SparcDisassembler.c │ │ │ ├── SparcDisassembler.h │ │ │ ├── SparcGenAsmWriter.inc │ │ │ ├── SparcGenDisassemblerTables.inc │ │ │ ├── SparcGenInstrInfo.inc │ │ │ ├── SparcGenRegisterInfo.inc │ │ │ ├── SparcGenSubtargetInfo.inc │ │ │ ├── SparcInstPrinter.c │ │ │ ├── SparcInstPrinter.h │ │ │ ├── SparcMapping.c │ │ │ ├── SparcMapping.h │ │ │ └── SparcModule.c │ │ ├── SystemZ │ │ │ ├── SystemZDisassembler.c │ │ │ ├── SystemZDisassembler.h │ │ │ ├── SystemZGenAsmWriter.inc │ │ │ ├── SystemZGenDisassemblerTables.inc │ │ │ ├── SystemZGenInstrInfo.inc │ │ │ ├── SystemZGenRegisterInfo.inc │ │ │ ├── SystemZGenSubtargetInfo.inc │ │ │ ├── SystemZInstPrinter.c │ │ │ ├── SystemZInstPrinter.h │ │ │ ├── SystemZMCTargetDesc.c │ │ │ ├── SystemZMCTargetDesc.h │ │ │ ├── SystemZMapping.c │ │ │ ├── SystemZMapping.h │ │ │ └── SystemZModule.c │ │ ├── X86 │ │ │ ├── X86ATTInstPrinter.c │ │ │ ├── X86BaseInfo.h │ │ │ ├── X86Disassembler.c │ │ │ ├── X86Disassembler.h │ │ │ ├── X86DisassemblerDecoder.c │ │ │ ├── X86DisassemblerDecoder.h │ │ │ ├── X86DisassemblerDecoderCommon.h │ │ │ ├── X86GenAsmWriter.inc │ │ │ ├── X86GenAsmWriter1.inc │ │ │ ├── X86GenAsmWriter1_reduce.inc │ │ │ ├── X86GenAsmWriter_reduce.inc │ │ │ ├── X86GenDisassemblerTables.inc │ │ │ ├── X86GenDisassemblerTables_reduce.inc │ │ │ ├── X86GenInstrInfo.inc │ │ │ ├── X86GenInstrInfo_reduce.inc │ │ │ ├── X86GenRegisterInfo.inc │ │ │ ├── X86InstPrinter.h │ │ │ ├── X86IntelInstPrinter.c │ │ │ ├── X86Mapping.c │ │ │ ├── X86Mapping.h │ │ │ └── X86Module.c │ │ └── XCore │ │ │ ├── XCoreDisassembler.c │ │ │ ├── XCoreDisassembler.h │ │ │ ├── XCoreGenAsmWriter.inc │ │ │ ├── XCoreGenDisassemblerTables.inc │ │ │ ├── XCoreGenInstrInfo.inc │ │ │ ├── XCoreGenRegisterInfo.inc │ │ │ ├── XCoreInstPrinter.c │ │ │ ├── XCoreInstPrinter.h │ │ │ ├── XCoreMapping.c │ │ │ ├── XCoreMapping.h │ │ │ └── XCoreModule.c │ ├── bindings │ │ ├── Makefile │ │ ├── README │ │ ├── const_generator.py │ │ ├── java │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── Test.java │ │ │ ├── TestArm.java │ │ │ ├── TestArm64.java │ │ │ ├── TestMips.java │ │ │ ├── TestPpc.java │ │ │ ├── TestSparc.java │ │ │ ├── TestSystemz.java │ │ │ ├── TestX86.java │ │ │ ├── TestXcore.java │ │ │ ├── capstone │ │ │ │ ├── .gitignore │ │ │ │ ├── Arm.java │ │ │ │ ├── Arm64.java │ │ │ │ ├── Arm64_const.java │ │ │ │ ├── Arm_const.java │ │ │ │ ├── Capstone.java │ │ │ │ ├── Mips.java │ │ │ │ ├── Mips_const.java │ │ │ │ ├── Ppc.java │ │ │ │ ├── Ppc_const.java │ │ │ │ ├── Sparc.java │ │ │ │ ├── Sparc_const.java │ │ │ │ ├── Systemz.java │ │ │ │ ├── Sysz_const.java │ │ │ │ ├── X86.java │ │ │ │ ├── X86_const.java │ │ │ │ ├── Xcore.java │ │ │ │ └── Xcore_const.java │ │ │ └── run.sh │ │ ├── ocaml │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── arm.ml │ │ │ ├── arm64.ml │ │ │ ├── arm64_const.ml │ │ │ ├── arm_const.ml │ │ │ ├── capstone.ml │ │ │ ├── mips.ml │ │ │ ├── mips_const.ml │ │ │ ├── ocaml.c │ │ │ ├── ppc.ml │ │ │ ├── ppc_const.ml │ │ │ ├── sparc.ml │ │ │ ├── sparc_const.ml │ │ │ ├── systemz.ml │ │ │ ├── sysz_const.ml │ │ │ ├── test_arm.ml │ │ │ ├── test_arm64.ml │ │ │ ├── test_basic.ml │ │ │ ├── test_detail.ml │ │ │ ├── test_mips.ml │ │ │ ├── test_ppc.ml │ │ │ ├── test_sparc.ml │ │ │ ├── test_systemz.ml │ │ │ ├── test_x86.ml │ │ │ ├── test_xcore.ml │ │ │ ├── x86.ml │ │ │ ├── x86_const.ml │ │ │ ├── xcore.ml │ │ │ └── xcore_const.ml │ │ ├── powershell │ │ │ ├── Capstone │ │ │ │ ├── Capstone.psd1 │ │ │ │ ├── Capstone.psm1 │ │ │ │ └── Lib │ │ │ │ │ └── Capstone │ │ │ │ │ └── .gitignore │ │ │ └── README.md │ │ ├── python │ │ │ ├── .gitignore │ │ │ ├── BUILDING.txt │ │ │ ├── LICENSE.TXT │ │ │ ├── MANIFEST.in │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── capstone │ │ │ │ ├── arm.py │ │ │ │ ├── arm64.py │ │ │ │ ├── arm64_const.py │ │ │ │ ├── arm_const.py │ │ │ │ ├── mips.py │ │ │ │ ├── mips_const.py │ │ │ │ ├── ppc.py │ │ │ │ ├── ppc_const.py │ │ │ │ ├── sparc.py │ │ │ │ ├── sparc_const.py │ │ │ │ ├── systemz.py │ │ │ │ ├── sysz_const.py │ │ │ │ ├── x86.py │ │ │ │ ├── x86_const.py │ │ │ │ ├── xcore.py │ │ │ │ └── xcore_const.py │ │ │ ├── prebuilt │ │ │ │ └── .gitkeep │ │ │ ├── pyx │ │ │ │ ├── README │ │ │ │ └── ccapstone.pxd │ │ │ ├── setup.py │ │ │ ├── setup_cython.py │ │ │ ├── test_all.py │ │ │ ├── test_arm.py │ │ │ ├── test_arm64.py │ │ │ ├── test_basic.py │ │ │ ├── test_detail.py │ │ │ ├── test_lite.py │ │ │ ├── test_mips.py │ │ │ ├── test_ppc.py │ │ │ ├── test_skipdata.py │ │ │ ├── test_sparc.py │ │ │ ├── test_systemz.py │ │ │ ├── test_x86.py │ │ │ ├── test_xcore.py │ │ │ └── xprint.py │ │ └── vb6 │ │ │ ├── CDisassembler.cls │ │ │ ├── CInstDetails.cls │ │ │ ├── CInstruction.cls │ │ │ ├── CX86Inst.cls │ │ │ ├── CX86OpMem.cls │ │ │ ├── CX86Operand.cls │ │ │ ├── Form1.frm │ │ │ ├── Form1.frx │ │ │ ├── Module1.bas │ │ │ ├── Project1.vbp │ │ │ ├── Project1.vbw │ │ │ ├── README.txt │ │ │ ├── mMisc.bas │ │ │ ├── mx86.bas │ │ │ ├── screenshot.png │ │ │ ├── vbCapstone.cpp │ │ │ ├── vbCapstone.sln │ │ │ └── vbCapstone.vcproj │ ├── capstone.pc.in │ ├── config.mk │ ├── contrib │ │ ├── README │ │ ├── cs_driver │ │ │ ├── README │ │ │ ├── cs_driver.sln │ │ │ └── cs_driver │ │ │ │ ├── cs_driver.c │ │ │ │ ├── cs_driver.vcxproj │ │ │ │ └── cs_driver.vcxproj.filters │ │ └── windows_kernel │ │ │ ├── README │ │ │ ├── libc.cpp │ │ │ └── libc.h │ ├── cs.c │ ├── cs_priv.h │ ├── cstool │ │ ├── Makefile │ │ ├── README │ │ ├── cstool.c │ │ ├── cstool_arm.c │ │ ├── cstool_arm64.c │ │ ├── cstool_mips.c │ │ ├── cstool_ppc.c │ │ ├── cstool_sparc.c │ │ ├── cstool_systemz.c │ │ ├── cstool_x86.c │ │ └── cstool_xcore.c │ ├── docs │ │ └── README │ ├── functions.mk │ ├── include │ │ ├── arm.h │ │ ├── arm64.h │ │ ├── capstone.h │ │ ├── mips.h │ │ ├── platform.h │ │ ├── ppc.h │ │ ├── sparc.h │ │ ├── systemz.h │ │ ├── x86.h │ │ └── xcore.h │ ├── make.sh │ ├── msvc │ │ ├── README │ │ ├── capstone.sln │ │ ├── capstone_dll │ │ │ └── capstone_dll.vcxproj │ │ ├── capstone_static │ │ │ └── capstone_static.vcxproj │ │ ├── capstone_static_winkernel │ │ │ └── capstone_static_winkernel.vcxproj │ │ ├── cstool │ │ │ └── cstool.vcxproj │ │ ├── test_arm │ │ │ └── test_arm.vcxproj │ │ ├── test_arm64 │ │ │ └── test_arm64.vcxproj │ │ ├── test_basic │ │ │ └── test_basic.vcxproj │ │ ├── test_detail │ │ │ └── test_detail.vcxproj │ │ ├── test_iter │ │ │ └── test_iter.vcxproj │ │ ├── test_mips │ │ │ └── test_mips.vcxproj │ │ ├── test_ppc │ │ │ └── test_ppc.vcxproj │ │ ├── test_skipdata │ │ │ └── test_skipdata.vcxproj │ │ ├── test_sparc │ │ │ └── test_sparc.vcxproj │ │ ├── test_systemz │ │ │ └── test_systemz.vcxproj │ │ ├── test_winkernel │ │ │ └── test_winkernel.vcxproj │ │ ├── test_x86 │ │ │ └── test_x86.vcxproj │ │ └── test_xcore │ │ │ └── test_xcore.vcxproj │ ├── nmake.bat │ ├── packages │ │ ├── freebsd │ │ │ └── ports │ │ │ │ └── devel │ │ │ │ └── capstone │ │ │ │ ├── Makefile │ │ │ │ ├── pkg-descr │ │ │ │ └── pkg-plist │ │ ├── homebrew │ │ │ ├── README │ │ │ └── capstone.rb │ │ ├── macports │ │ │ └── devel │ │ │ │ └── capstone │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ └── patch-Makefile.diff │ │ └── rpm │ │ │ └── capstone.spec │ ├── pkgconfig.mk │ ├── suite │ │ ├── MC │ │ │ ├── AArch64 │ │ │ │ ├── basic-a64-instructions.s.cs │ │ │ │ ├── gicv3-regs.s.cs │ │ │ │ ├── neon-2velem.s.cs │ │ │ │ ├── neon-3vdiff.s.cs │ │ │ │ ├── neon-aba-abd.s.cs │ │ │ │ ├── neon-across.s.cs │ │ │ │ ├── neon-add-pairwise.s.cs │ │ │ │ ├── neon-add-sub-instructions.s.cs │ │ │ │ ├── neon-bitwise-instructions.s.cs │ │ │ │ ├── neon-compare-instructions.s.cs │ │ │ │ ├── neon-crypto.s.cs │ │ │ │ ├── neon-extract.s.cs │ │ │ │ ├── neon-facge-facgt.s.cs │ │ │ │ ├── neon-frsqrt-frecp.s.cs │ │ │ │ ├── neon-halving-add-sub.s.cs │ │ │ │ ├── neon-max-min-pairwise.s.cs │ │ │ │ ├── neon-max-min.s.cs │ │ │ │ ├── neon-mla-mls-instructions.s.cs │ │ │ │ ├── neon-mov.s.cs │ │ │ │ ├── neon-mul-div-instructions.s.cs │ │ │ │ ├── neon-perm.s.cs │ │ │ │ ├── neon-rounding-halving-add.s.cs │ │ │ │ ├── neon-rounding-shift.s.cs │ │ │ │ ├── neon-saturating-add-sub.s.cs │ │ │ │ ├── neon-saturating-rounding-shift.s.cs │ │ │ │ ├── neon-saturating-shift.s.cs │ │ │ │ ├── neon-scalar-abs.s.cs │ │ │ │ ├── neon-scalar-add-sub.s.cs │ │ │ │ ├── neon-scalar-by-elem-mla.s.cs │ │ │ │ ├── neon-scalar-by-elem-mul.s.cs │ │ │ │ ├── neon-scalar-by-elem-saturating-mla.s.cs │ │ │ │ ├── neon-scalar-by-elem-saturating-mul.s.cs │ │ │ │ ├── neon-scalar-compare.s.cs │ │ │ │ ├── neon-scalar-cvt.s.cs │ │ │ │ ├── neon-scalar-dup.s.cs │ │ │ │ ├── neon-scalar-extract-narrow.s.cs │ │ │ │ ├── neon-scalar-fp-compare.s.cs │ │ │ │ ├── neon-scalar-mul.s.cs │ │ │ │ ├── neon-scalar-neg.s.cs │ │ │ │ ├── neon-scalar-recip.s.cs │ │ │ │ ├── neon-scalar-reduce-pairwise.s.cs │ │ │ │ ├── neon-scalar-rounding-shift.s.cs │ │ │ │ ├── neon-scalar-saturating-add-sub.s.cs │ │ │ │ ├── neon-scalar-saturating-rounding-shift.s.cs │ │ │ │ ├── neon-scalar-saturating-shift.s.cs │ │ │ │ ├── neon-scalar-shift-imm.s.cs │ │ │ │ ├── neon-scalar-shift.s.cs │ │ │ │ ├── neon-shift-left-long.s.cs │ │ │ │ ├── neon-shift.s.cs │ │ │ │ ├── neon-simd-copy.s.cs │ │ │ │ ├── neon-simd-ldst-multi-elem.s.cs │ │ │ │ ├── neon-simd-ldst-one-elem.s.cs │ │ │ │ ├── neon-simd-misc.s.cs │ │ │ │ ├── neon-simd-post-ldst-multi-elem.s.cs │ │ │ │ ├── neon-simd-shift.s.cs │ │ │ │ ├── neon-tbl.s.cs │ │ │ │ └── trace-regs.s.cs │ │ │ ├── ARM │ │ │ │ ├── arm-aliases.s.cs │ │ │ │ ├── arm-arithmetic-aliases.s.cs │ │ │ │ ├── arm-it-block.s.cs │ │ │ │ ├── arm-memory-instructions.s.cs │ │ │ │ ├── arm-shift-encoding.s.cs │ │ │ │ ├── arm-thumb-trustzone.s.cs │ │ │ │ ├── arm-trustzone.s.cs │ │ │ │ ├── arm_addrmode2.s.cs │ │ │ │ ├── arm_addrmode3.s.cs │ │ │ │ ├── arm_instructions.s.cs │ │ │ │ ├── basic-arm-instructions-v8.s.cs │ │ │ │ ├── basic-arm-instructions.s.cs │ │ │ │ ├── basic-thumb-instructions.s.cs │ │ │ │ ├── basic-thumb2-instructions-v8.s.cs │ │ │ │ ├── basic-thumb2-instructions.s.cs │ │ │ │ ├── crc32-thumb.s.cs │ │ │ │ ├── crc32.s.cs │ │ │ │ ├── dot-req.s.cs │ │ │ │ ├── fp-armv8.s.cs │ │ │ │ ├── idiv-thumb.s.cs │ │ │ │ ├── idiv.s.cs │ │ │ │ ├── load-store-acquire-release-v8-thumb.s.cs │ │ │ │ ├── load-store-acquire-release-v8.s.cs │ │ │ │ ├── mode-switch.s.cs │ │ │ │ ├── neon-abs-encoding.s.cs │ │ │ │ ├── neon-absdiff-encoding.s.cs │ │ │ │ ├── neon-add-encoding.s.cs │ │ │ │ ├── neon-bitcount-encoding.s.cs │ │ │ │ ├── neon-bitwise-encoding.s.cs │ │ │ │ ├── neon-cmp-encoding.s.cs │ │ │ │ ├── neon-convert-encoding.s.cs │ │ │ │ ├── neon-crypto.s.cs │ │ │ │ ├── neon-dup-encoding.s.cs │ │ │ │ ├── neon-minmax-encoding.s.cs │ │ │ │ ├── neon-mov-encoding.s.cs │ │ │ │ ├── neon-mul-accum-encoding.s.cs │ │ │ │ ├── neon-mul-encoding.s.cs │ │ │ │ ├── neon-neg-encoding.s.cs │ │ │ │ ├── neon-pairwise-encoding.s.cs │ │ │ │ ├── neon-reciprocal-encoding.s.cs │ │ │ │ ├── neon-reverse-encoding.s.cs │ │ │ │ ├── neon-satshift-encoding.s.cs │ │ │ │ ├── neon-shift-encoding.s.cs │ │ │ │ ├── neon-shiftaccum-encoding.s.cs │ │ │ │ ├── neon-shuffle-encoding.s.cs │ │ │ │ ├── neon-sub-encoding.s.cs │ │ │ │ ├── neon-table-encoding.s.cs │ │ │ │ ├── neon-v8.s.cs │ │ │ │ ├── neon-vld-encoding.s.cs │ │ │ │ ├── neon-vst-encoding.s.cs │ │ │ │ ├── neon-vswp.s.cs │ │ │ │ ├── neont2-abs-encoding.s.cs │ │ │ │ ├── neont2-absdiff-encoding.s.cs │ │ │ │ ├── neont2-add-encoding.s.cs │ │ │ │ ├── neont2-bitcount-encoding.s.cs │ │ │ │ ├── neont2-bitwise-encoding.s.cs │ │ │ │ ├── neont2-cmp-encoding.s.cs │ │ │ │ ├── neont2-convert-encoding.s.cs │ │ │ │ ├── neont2-dup-encoding.s.cs │ │ │ │ ├── neont2-minmax-encoding.s.cs │ │ │ │ ├── neont2-mov-encoding.s.cs │ │ │ │ ├── neont2-mul-accum-encoding.s.cs │ │ │ │ ├── neont2-mul-encoding.s.cs │ │ │ │ ├── neont2-neg-encoding.s.cs │ │ │ │ ├── neont2-pairwise-encoding.s.cs │ │ │ │ ├── neont2-reciprocal-encoding.s.cs │ │ │ │ ├── neont2-reverse-encoding.s.cs │ │ │ │ ├── neont2-satshift-encoding.s.cs │ │ │ │ ├── neont2-shift-encoding.s.cs │ │ │ │ ├── neont2-shiftaccum-encoding.s.cs │ │ │ │ ├── neont2-shuffle-encoding.s.cs │ │ │ │ ├── neont2-sub-encoding.s.cs │ │ │ │ ├── neont2-table-encoding.s.cs │ │ │ │ ├── neont2-vld-encoding.s.cs │ │ │ │ ├── neont2-vst-encoding.s.cs │ │ │ │ ├── simple-fp-encoding.s.cs │ │ │ │ ├── thumb-fp-armv8.s.cs │ │ │ │ ├── thumb-hints.s.cs │ │ │ │ ├── thumb-neon-crypto.s.cs │ │ │ │ ├── thumb-neon-v8.s.cs │ │ │ │ ├── thumb-shift-encoding.s.cs │ │ │ │ ├── thumb.s.cs │ │ │ │ ├── thumb2-b.w-encodingT4.s.cs │ │ │ │ ├── thumb2-branches.s.cs │ │ │ │ ├── thumb2-mclass.s.cs │ │ │ │ ├── thumb2-narrow-dp.ll.cs │ │ │ │ ├── thumb2-pldw.s.cs │ │ │ │ ├── vfp4-thumb.s.cs │ │ │ │ ├── vfp4.s.cs │ │ │ │ ├── vpush-vpop-thumb.s.cs │ │ │ │ └── vpush-vpop.s.cs │ │ │ ├── Mips │ │ │ │ ├── hilo-addressing.s.cs │ │ │ │ ├── micromips-alu-instructions-EB.s.cs │ │ │ │ ├── micromips-alu-instructions.s.cs │ │ │ │ ├── micromips-branch-instructions-EB.s.cs │ │ │ │ ├── micromips-branch-instructions.s.cs │ │ │ │ ├── micromips-expansions.s.cs │ │ │ │ ├── micromips-jump-instructions-EB.s.cs │ │ │ │ ├── micromips-jump-instructions.s.cs │ │ │ │ ├── micromips-loadstore-instructions-EB.s.cs │ │ │ │ ├── micromips-loadstore-instructions.s.cs │ │ │ │ ├── micromips-loadstore-unaligned-EB.s.cs │ │ │ │ ├── micromips-loadstore-unaligned.s.cs │ │ │ │ ├── micromips-movcond-instructions-EB.s.cs │ │ │ │ ├── micromips-movcond-instructions.s.cs │ │ │ │ ├── micromips-multiply-instructions-EB.s.cs │ │ │ │ ├── micromips-multiply-instructions.s.cs │ │ │ │ ├── micromips-shift-instructions-EB.s.cs │ │ │ │ ├── micromips-shift-instructions.s.cs │ │ │ │ ├── micromips-trap-instructions-EB.s.cs │ │ │ │ ├── micromips-trap-instructions.s.cs │ │ │ │ ├── mips-alu-instructions.s.cs │ │ │ │ ├── mips-control-instructions-64.s.cs │ │ │ │ ├── mips-control-instructions.s.cs │ │ │ │ ├── mips-coprocessor-encodings.s.cs │ │ │ │ ├── mips-dsp-instructions.s.cs │ │ │ │ ├── mips-expansions.s.cs │ │ │ │ ├── mips-fpu-instructions.s.cs │ │ │ │ ├── mips-jump-instructions.s.cs │ │ │ │ ├── mips-memory-instructions.s.cs │ │ │ │ ├── mips-register-names.s.cs │ │ │ │ ├── mips64-alu-instructions.s.cs │ │ │ │ ├── mips64-instructions.s.cs │ │ │ │ ├── mips64-register-names.s.cs │ │ │ │ ├── mips_directives.s.cs │ │ │ │ ├── nabi-regs.s.cs │ │ │ │ ├── set-at-directive.s.cs │ │ │ │ ├── test_2r.s.cs │ │ │ │ ├── test_2rf.s.cs │ │ │ │ ├── test_3r.s.cs │ │ │ │ ├── test_3rf.s.cs │ │ │ │ ├── test_bit.s.cs │ │ │ │ ├── test_cbranch.s.cs │ │ │ │ ├── test_ctrlregs.s.cs │ │ │ │ ├── test_elm.s.cs │ │ │ │ ├── test_elm_insert.s.cs │ │ │ │ ├── test_elm_insve.s.cs │ │ │ │ ├── test_i10.s.cs │ │ │ │ ├── test_i5.s.cs │ │ │ │ ├── test_i8.s.cs │ │ │ │ ├── test_lsa.s.cs │ │ │ │ ├── test_mi10.s.cs │ │ │ │ └── test_vec.s.cs │ │ │ ├── PowerPC │ │ │ │ ├── ppc64-encoding-bookII.s.cs │ │ │ │ ├── ppc64-encoding-bookIII.s.cs │ │ │ │ ├── ppc64-encoding-ext.s.cs │ │ │ │ ├── ppc64-encoding-fp.s.cs │ │ │ │ ├── ppc64-encoding-vmx.s.cs │ │ │ │ ├── ppc64-encoding.s.cs │ │ │ │ └── ppc64-operands.s.cs │ │ │ ├── README │ │ │ ├── Sparc │ │ │ │ ├── sparc-alu-instructions.s.cs │ │ │ │ ├── sparc-atomic-instructions.s.cs │ │ │ │ ├── sparc-ctrl-instructions.s.cs │ │ │ │ ├── sparc-fp-instructions.s.cs │ │ │ │ ├── sparc-mem-instructions.s.cs │ │ │ │ ├── sparc-vis.s.cs │ │ │ │ ├── sparc64-alu-instructions.s.cs │ │ │ │ ├── sparc64-ctrl-instructions.s.cs │ │ │ │ ├── sparcv8-instructions.s.cs │ │ │ │ └── sparcv9-instructions.s.cs │ │ │ ├── SystemZ │ │ │ │ ├── insn-good-z196.s.cs │ │ │ │ ├── insn-good.s.cs │ │ │ │ └── regs-good.s.cs │ │ │ └── X86 │ │ │ │ ├── 3DNow.s.cs │ │ │ │ ├── address-size.s.cs │ │ │ │ ├── avx512-encodings.s.cs │ │ │ │ ├── intel-syntax-encoding.s.cs │ │ │ │ ├── x86-32-avx.s.cs │ │ │ │ ├── x86-32-fma3.s.cs │ │ │ │ ├── x86-32-ms-inline-asm.s.cs │ │ │ │ ├── x86_64-avx-clmul-encoding.s.cs │ │ │ │ ├── x86_64-avx-encoding.s.cs │ │ │ │ ├── x86_64-bmi-encoding.s.cs │ │ │ │ ├── x86_64-encoding.s.cs │ │ │ │ ├── x86_64-fma3-encoding.s.cs │ │ │ │ ├── x86_64-fma4-encoding.s.cs │ │ │ │ ├── x86_64-hle-encoding.s.cs │ │ │ │ ├── x86_64-imm-widths.s.cs │ │ │ │ ├── x86_64-rand-encoding.s.cs │ │ │ │ ├── x86_64-rtm-encoding.s.cs │ │ │ │ ├── x86_64-sse4a.s.cs │ │ │ │ ├── x86_64-tbm-encoding.s.cs │ │ │ │ └── x86_64-xop-encoding.s.cs │ │ ├── README │ │ ├── arm │ │ │ ├── Makefile │ │ │ └── test_arm_regression.c │ │ ├── benchmark.py │ │ ├── benchmark │ │ │ ├── Makefile │ │ │ └── test_iter_benchmark.c │ │ ├── compile_all.sh │ │ ├── fuzz.py │ │ ├── fuzz │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── fuzz_harness.c │ │ ├── patch_major_os_version.py │ │ ├── ppcbranch.py │ │ ├── python_capstone_setup.py │ │ ├── regress.py │ │ ├── regress │ │ │ ├── Makefile │ │ │ └── invalid_read_in_print_operand.c │ │ ├── test_all.sh │ │ ├── test_c.sh │ │ ├── test_group_name.py │ │ ├── test_mc.py │ │ ├── test_mc.sh │ │ ├── test_python.sh │ │ └── x86odd.py │ ├── tests │ │ ├── Makefile │ │ ├── README │ │ ├── test_arm.c │ │ ├── test_arm64.c │ │ ├── test_basic.c │ │ ├── test_detail.c │ │ ├── test_iter.c │ │ ├── test_mips.c │ │ ├── test_ppc.c │ │ ├── test_skipdata.c │ │ ├── test_sparc.c │ │ ├── test_systemz.c │ │ ├── test_winkernel.cpp │ │ ├── test_x86.c │ │ └── test_xcore.c │ ├── utils.c │ ├── utils.h │ ├── windows │ │ ├── README │ │ ├── winkernel_mm.c │ │ └── winkernel_mm.h │ └── xcode │ │ ├── Capstone.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Dynamic Library.xcscheme │ │ │ ├── Framework.xcscheme │ │ │ ├── Static Library.xcscheme │ │ │ └── Tests.xcscheme │ │ ├── CapstoneFramework │ │ └── Info.plist │ │ └── README.md ├── change.txt ├── chardev │ ├── Makefile.objs │ ├── baum.c │ ├── char-console.c │ ├── char-fd.c │ ├── char-fe.c │ ├── char-file.c │ ├── char-io.c │ ├── char-mux.c │ ├── char-null.c │ ├── char-parallel.c │ ├── char-pipe.c │ ├── char-pty.c │ ├── char-ringbuf.c │ ├── char-serial.c │ ├── char-socket.c │ ├── char-stdio.c │ ├── char-udp.c │ ├── char-win-stdio.c │ ├── char-win.c │ ├── char.c │ ├── msmouse.c │ ├── spice.c │ ├── testdev.c │ ├── trace-events │ └── wctablet.c ├── configure ├── contrib │ ├── ivshmem-client │ │ ├── Makefile.objs │ │ ├── ivshmem-client.c │ │ ├── ivshmem-client.h │ │ └── main.c │ ├── ivshmem-server │ │ ├── Makefile.objs │ │ ├── ivshmem-server.c │ │ ├── ivshmem-server.h │ │ └── main.c │ ├── libvhost-user │ │ ├── Makefile.objs │ │ ├── libvhost-user-glib.c │ │ ├── libvhost-user-glib.h │ │ ├── libvhost-user.c │ │ └── libvhost-user.h │ ├── systemd │ │ ├── qemu-guest-agent.service │ │ ├── qemu-pr-helper.service │ │ └── qemu-pr-helper.socket │ ├── vhost-user-blk │ │ ├── Makefile.objs │ │ └── vhost-user-blk.c │ └── vhost-user-scsi │ │ ├── Makefile.objs │ │ └── vhost-user-scsi.c ├── cpus-common.c ├── cpus.c ├── crypto │ ├── Makefile.objs │ ├── aes.c │ ├── afalg.c │ ├── afalgpriv.h │ ├── afsplit.c │ ├── block-luks.c │ ├── block-luks.h │ ├── block-qcow.c │ ├── block-qcow.h │ ├── block.c │ ├── blockpriv.h │ ├── cipher-afalg.c │ ├── cipher-builtin.c │ ├── cipher-gcrypt.c │ ├── cipher-nettle.c │ ├── cipher.c │ ├── cipherpriv.h │ ├── desrfb.c │ ├── hash-afalg.c │ ├── hash-gcrypt.c │ ├── hash-glib.c │ ├── hash-nettle.c │ ├── hash.c │ ├── hashpriv.h │ ├── hmac-gcrypt.c │ ├── hmac-glib.c │ ├── hmac-nettle.c │ ├── hmac.c │ ├── hmacpriv.h │ ├── init.c │ ├── ivgen-essiv.c │ ├── ivgen-essiv.h │ ├── ivgen-plain.c │ ├── ivgen-plain.h │ ├── ivgen-plain64.c │ ├── ivgen-plain64.h │ ├── ivgen.c │ ├── ivgenpriv.h │ ├── pbkdf-gcrypt.c │ ├── pbkdf-nettle.c │ ├── pbkdf-stub.c │ ├── pbkdf.c │ ├── random-gcrypt.c │ ├── random-gnutls.c │ ├── random-platform.c │ ├── secret.c │ ├── tlscreds.c │ ├── tlscredsanon.c │ ├── tlscredspriv.h │ ├── tlscredsx509.c │ ├── tlssession.c │ ├── trace-events │ └── xts.c ├── default-configs │ ├── aarch64-linux-user.mak │ ├── aarch64-softmmu.mak │ ├── aarch64_be-linux-user.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 │ ├── hppa-linux-user.mak │ ├── hppa-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-common.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 │ ├── nios2-linux-user.mak │ ├── nios2-softmmu.mak │ ├── or1k-linux-user.mak │ ├── or1k-softmmu.mak │ ├── pci.mak │ ├── ppc-linux-user.mak │ ├── ppc-softmmu.mak │ ├── ppc64-linux-user.mak │ ├── ppc64-softmmu.mak │ ├── ppc64abi32-linux-user.mak │ ├── ppc64le-linux-user.mak │ ├── ppcemb-softmmu.mak │ ├── riscv32-linux-user.mak │ ├── riscv32-softmmu.mak │ ├── riscv64-linux-user.mak │ ├── riscv64-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 │ ├── tilegx-linux-user.mak │ ├── tricore-softmmu.mak │ ├── unicore32-softmmu.mak │ ├── usb.mak │ ├── x86_64-bsd-user.mak │ ├── x86_64-linux-user.mak │ ├── x86_64-softmmu.mak │ ├── xtensa-linux-user.mak │ ├── xtensa-softmmu.mak │ ├── xtensaeb-linux-user.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 │ ├── libvixl │ │ ├── LICENCE │ │ ├── Makefile.objs │ │ ├── README │ │ └── vixl │ │ │ ├── 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 │ │ │ ├── code-buffer.h │ │ │ ├── compiler-intrinsics.cc │ │ │ ├── compiler-intrinsics.h │ │ │ ├── globals.h │ │ │ ├── invalset.h │ │ │ ├── platform.h │ │ │ ├── utils.cc │ │ │ └── utils.h │ ├── lm32.c │ ├── m68k.c │ ├── microblaze.c │ ├── mips.c │ ├── moxie.c │ ├── nios2.c │ ├── ppc.c │ ├── riscv.c │ ├── s390.c │ ├── sh4.c │ ├── sparc.c │ ├── tci.c │ └── xtensa.c ├── dma-helpers.c ├── docs │ ├── COLO-FT.txt │ ├── amd-memory-encryption.txt │ ├── block-replication.txt │ ├── bootindex.txt │ ├── can.txt │ ├── ccid.txt │ ├── colo-proxy.txt │ ├── config │ │ ├── ich9-ehci-uhci.cfg │ │ ├── mach-virt-graphical.cfg │ │ ├── mach-virt-serial.cfg │ │ ├── q35-emulated.cfg │ │ ├── q35-virtio-graphical.cfg │ │ └── q35-virtio-serial.cfg │ ├── devel │ │ ├── atomics.txt │ │ ├── blkdebug.txt │ │ ├── blkverify.txt │ │ ├── build-system.txt │ │ ├── loads-stores.rst │ │ ├── lockcnt.txt │ │ ├── memory.txt │ │ ├── migration.rst │ │ ├── multi-thread-tcg.txt │ │ ├── multiple-iothreads.txt │ │ ├── qapi-code-gen.txt │ │ ├── rcu.txt │ │ ├── stable-process.rst │ │ ├── testing.rst │ │ ├── tracing.txt │ │ ├── virtio-migration.txt │ │ └── writing-qmp-commands.txt │ ├── generic-loader.txt │ ├── igd-assign.txt │ ├── image-fuzzer.txt │ ├── interop │ │ ├── bitmaps.rst │ │ ├── live-block-operations.rst │ │ ├── parallels.txt │ │ ├── pr-helper.rst │ │ ├── prl-xml.txt │ │ ├── qcow2.txt │ │ ├── qed_spec.txt │ │ ├── qemu-ga-ref.texi │ │ ├── qemu-qmp-ref.texi │ │ ├── qmp-intro.txt │ │ ├── qmp-spec.txt │ │ ├── vhost-user.txt │ │ └── vnc-ledstate-Pseudo-encoding.txt │ ├── memory-hotplug.txt │ ├── multi-thread-compression.txt │ ├── multiseat.txt │ ├── nvdimm.txt │ ├── pci_expander_bridge.txt │ ├── pcie.txt │ ├── pcie_pci_bridge.txt │ ├── pr-manager.rst │ ├── pvrdma.txt │ ├── qcow2-cache.txt │ ├── qdev-device-use.txt │ ├── qemu-block-drivers.texi │ ├── qemupciserial.inf │ ├── rdma.txt │ ├── replay.txt │ ├── specs │ │ ├── acpi_cpu_hotplug.txt │ │ ├── acpi_mem_hotplug.txt │ │ ├── acpi_nvdimm.txt │ │ ├── acpi_pci_hotplug.txt │ │ ├── edu.txt │ │ ├── fw_cfg.txt │ │ ├── ivshmem-spec.txt │ │ ├── pci-ids.txt │ │ ├── pci-serial.txt │ │ ├── pci-testdev.txt │ │ ├── ppc-spapr-hcalls.txt │ │ ├── ppc-spapr-hotplug.txt │ │ ├── pvpanic.txt │ │ ├── rocker.txt │ │ ├── standard-vga.txt │ │ ├── tpm.txt │ │ ├── vmcoreinfo.txt │ │ ├── vmgenid.txt │ │ └── vmw_pvscsi-spec.txt │ ├── spice-port-fqdn.txt │ ├── spin │ │ ├── aio_notify.promela │ │ ├── aio_notify_accept.promela │ │ ├── aio_notify_bug.promela │ │ ├── tcg-exclusive.promela │ │ └── win32-qemu-event.promela │ ├── throttle.txt │ ├── usb-storage.txt │ ├── usb2.txt │ ├── virtio-balloon-stats.txt │ ├── xbzrle.txt │ └── xen-save-devices-state.txt ├── dtc │ ├── .gitignore │ ├── .travis.yml │ ├── Documentation │ │ ├── dt-object-internal.txt │ │ ├── dtc-paper.bib │ │ ├── dtc-paper.tex │ │ ├── dts-format.txt │ │ └── manual.txt │ ├── GPL │ ├── Makefile │ ├── Makefile.convert-dtsv0 │ ├── Makefile.dtc │ ├── Makefile.utils │ ├── README │ ├── README.license │ ├── TODO │ ├── checks.c │ ├── convert-dtsv0-lexer.l │ ├── data.c │ ├── dtc-lexer.l │ ├── dtc-parser.y │ ├── dtc.c │ ├── dtc.h │ ├── dtdiff │ ├── fdtdump.c │ ├── fdtget.c │ ├── fdtoverlay.c │ ├── fdtput.c │ ├── flattree.c │ ├── fstree.c │ ├── libfdt │ │ ├── Makefile.libfdt │ │ ├── TODO │ │ ├── fdt.c │ │ ├── fdt.h │ │ ├── fdt_addresses.c │ │ ├── fdt_empty_tree.c │ │ ├── fdt_overlay.c │ │ ├── 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 │ ├── pylibfdt │ │ ├── .gitignore │ │ ├── Makefile.pylibfdt │ │ ├── libfdt.i │ │ └── setup.py │ ├── scripts │ │ ├── kup-dtc │ │ └── setlocalversion │ ├── srcpos.c │ ├── srcpos.h │ ├── tests │ │ ├── .gitignore │ │ ├── Makefile.tests │ │ ├── add_subnode_with_nops.c │ │ ├── addr_size_cells.c │ │ ├── addresses.dts │ │ ├── aliases.dts │ │ ├── appendprop.dts │ │ ├── appendprop1.c │ │ ├── appendprop2.c │ │ ├── asm_tree_dump.c │ │ ├── bad-chosen.dts │ │ ├── bad-empty-ranges.dts │ │ ├── bad-gpio.dts │ │ ├── bad-interrupt-cells.dts │ │ ├── bad-name-property.dts │ │ ├── bad-ncells.dts │ │ ├── bad-octal-literal.dts │ │ ├── bad-phandle-cells.dts │ │ ├── bad-reg-ranges.dts │ │ ├── bad-size-cells.dts │ │ ├── bad-string-props.dts │ │ ├── base01.asm │ │ ├── base01.cmd │ │ ├── base01.dts │ │ ├── base01.stderr │ │ ├── boot-cpuid.c │ │ ├── boot-cpuid.dts │ │ ├── char_literal.c │ │ ├── char_literal.dts │ │ ├── check_path.c │ │ ├── comments-cmp.dts │ │ ├── comments.dts │ │ ├── data.S │ │ ├── default-addr-size.dts │ │ ├── del_node.c │ │ ├── del_property.c │ │ ├── delete_reinstate_multilabel.dts │ │ ├── delete_reinstate_multilabel_ref.dts │ │ ├── dependencies.cmp │ │ ├── dependencies.dts │ │ ├── deps_inc1.dtsi │ │ ├── deps_inc2.dtsi │ │ ├── division-by-zero.dts │ │ ├── dtb_reverse.c │ │ ├── dtbs_equal_ordered.c │ │ ├── dtbs_equal_unordered.c │ │ ├── dtc-checkfails.sh │ │ ├── dtc-fails.sh │ │ ├── dtc-fatal.sh │ │ ├── dumptrees.c │ │ ├── dup-nodename.dts │ │ ├── dup-phandle.dts │ │ ├── dup-propname.dts │ │ ├── embedded_nul.dts │ │ ├── embedded_nul_equiv.dts │ │ ├── empty.dts │ │ ├── escapes.dts │ │ ├── extra-terminating-null.c │ │ ├── extra-terminating-null.dts │ │ ├── fdtdump-runtest.sh │ │ ├── fdtdump.dts │ │ ├── fdtget-runtest.sh │ │ ├── fdtoverlay-runtest.sh │ │ ├── fdtput-runtest.sh │ │ ├── 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 │ │ ├── include5a.dts │ │ ├── include6.dts │ │ ├── include7.dts │ │ ├── include8.dts │ │ ├── integer-expressions.c │ │ ├── label01.dts │ │ ├── label_repeated.dts │ │ ├── line_directives.dts │ │ ├── lorem.txt │ │ ├── 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 │ │ ├── nul-in-escape.dts │ │ ├── nul-in-line-info1.dts │ │ ├── nul-in-line-info2.dts │ │ ├── obsolete-chosen-interrupt-controller.dts │ │ ├── open_pack.c │ │ ├── open_pack.supp │ │ ├── overlay.c │ │ ├── overlay_bad_fixup.c │ │ ├── overlay_bad_fixup_bad_index.dts │ │ ├── overlay_bad_fixup_base.dtsi │ │ ├── overlay_bad_fixup_empty.dts │ │ ├── overlay_bad_fixup_empty_index.dts │ │ ├── overlay_bad_fixup_index_trailing.dts │ │ ├── overlay_bad_fixup_path_empty_prop.dts │ │ ├── overlay_bad_fixup_path_only.dts │ │ ├── overlay_bad_fixup_path_only_sep.dts │ │ ├── overlay_bad_fixup_path_prop.dts │ │ ├── overlay_base.dts │ │ ├── overlay_base_manual_symbols.dts │ │ ├── overlay_overlay.dts │ │ ├── overlay_overlay_manual_fixups.dts │ │ ├── overlay_overlay_no_fixups.dts │ │ ├── overlay_overlay_simple.dts │ │ ├── parent_offset.c │ │ ├── path-references.c │ │ ├── path-references.dts │ │ ├── path_offset.c │ │ ├── path_offset_aliases.c │ │ ├── pci-bridge-bad1.dts │ │ ├── pci-bridge-bad2.dts │ │ ├── pci-bridge-ok.dts │ │ ├── phandle_format.c │ │ ├── prop-after-subnode.dts │ │ ├── property_iterate.c │ │ ├── property_iterate.dts │ │ ├── propname_escapes.c │ │ ├── propname_escapes.dts │ │ ├── pylibfdt_tests.py │ │ ├── references.c │ │ ├── references.dts │ │ ├── reg-ranges-root.dts │ │ ├── reg-without-unit-addr.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 │ │ ├── search_dir │ │ │ ├── search_test.dtsi │ │ │ └── search_test2.dtsi │ │ ├── search_dir_b │ │ │ ├── search_paths_subdir.dts │ │ │ ├── search_test_b.dtsi │ │ │ ├── search_test_b2.dtsi │ │ │ └── search_test_c.dtsi │ │ ├── search_paths.dts │ │ ├── search_paths_b.dts │ │ ├── set_name.c │ │ ├── setprop.c │ │ ├── setprop_inplace.c │ │ ├── sized_cells.c │ │ ├── sized_cells.dts │ │ ├── sourceoutput.dts │ │ ├── stacked_overlay_bar.dts │ │ ├── stacked_overlay_base.dts │ │ ├── stacked_overlay_baz.dts │ │ ├── string_escapes.c │ │ ├── stringlist.c │ │ ├── stringlist.dts │ │ ├── subnode_iterate.c │ │ ├── subnode_iterate.dts │ │ ├── subnode_offset.c │ │ ├── supernode_atdepth_offset.c │ │ ├── sw_tree1.c │ │ ├── sw_tree1.supp │ │ ├── test01.asm │ │ ├── test01.dts │ │ ├── test01.stderr │ │ ├── test_kernel_dts │ │ ├── test_label_ref.dts │ │ ├── test_tree1.dts │ │ ├── test_tree1_delete.dts │ │ ├── test_tree1_label_noderef.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 │ │ ├── unit-addr-leading-0s.dts │ │ ├── unit-addr-leading-0x.dts │ │ ├── unit-addr-without-reg.dts │ │ ├── utilfdt_test.c │ │ ├── value-labels.c │ │ ├── value-labels.dts │ │ └── zero-phandle.dts │ ├── treesource.c │ ├── util.c │ └── util.h ├── dump.c ├── exec.c ├── fpu │ ├── softfloat-specialize.h │ └── softfloat.c ├── fsdev │ ├── 9p-iov-marshal.c │ ├── 9p-iov-marshal.h │ ├── 9p-marshal.c │ ├── 9p-marshal.h │ ├── Makefile.objs │ ├── file-op-9p.h │ ├── qemu-fsdev-dummy.c │ ├── qemu-fsdev-opts.c │ ├── qemu-fsdev-throttle.c │ ├── qemu-fsdev-throttle.h │ ├── qemu-fsdev.c │ ├── qemu-fsdev.h │ ├── virtfs-proxy-helper.c │ └── virtfs-proxy-helper.texi ├── 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 │ ├── i386-32bit-core.xml │ ├── i386-32bit-sse.xml │ ├── i386-32bit.xml │ ├── i386-64bit-core.xml │ ├── i386-64bit-sse.xml │ ├── i386-64bit.xml │ ├── m68k-fp.xml │ ├── power-altivec.xml │ ├── power-core.xml │ ├── power-fpu.xml │ ├── power-spe.xml │ ├── power-vsx.xml │ ├── power64-core.xml │ ├── s390-acr.xml │ ├── s390-cr.xml │ ├── s390-fpr.xml │ ├── s390-gs.xml │ ├── s390-virt.xml │ ├── s390-vx.xml │ └── s390x-core64.xml ├── gdbstub.c ├── hmp-commands-info.hx ├── hmp-commands.hx ├── hmp.c ├── hmp.h ├── hw │ ├── 9pfs │ │ ├── 9p-handle.c │ │ ├── 9p-local.c │ │ ├── 9p-local.h │ │ ├── 9p-posix-acl.c │ │ ├── 9p-proxy.c │ │ ├── 9p-proxy.h │ │ ├── 9p-synth.c │ │ ├── 9p-synth.h │ │ ├── 9p-util.c │ │ ├── 9p-util.h │ │ ├── 9p-xattr-user.c │ │ ├── 9p-xattr.c │ │ ├── 9p-xattr.h │ │ ├── 9p.c │ │ ├── 9p.h │ │ ├── Makefile.objs │ │ ├── codir.c │ │ ├── cofile.c │ │ ├── cofs.c │ │ ├── coth.c │ │ ├── coth.h │ │ ├── coxattr.c │ │ ├── trace-events │ │ ├── virtio-9p-device.c │ │ ├── virtio-9p.h │ │ ├── xen-9p-backend.c │ │ └── xen-9pfs.h │ ├── Makefile.objs │ ├── acpi │ │ ├── Makefile.objs │ │ ├── acpi-stub.c │ │ ├── acpi_interface.c │ │ ├── aml-build.c │ │ ├── bios-linker-loader.c │ │ ├── core.c │ │ ├── cpu.c │ │ ├── cpu_hotplug.c │ │ ├── ich9.c │ │ ├── ipmi-stub.c │ │ ├── ipmi.c │ │ ├── memory_hotplug.c │ │ ├── nvdimm.c │ │ ├── pcihp.c │ │ ├── piix4.c │ │ ├── tco.c │ │ ├── trace-events │ │ └── vmgenid.c │ ├── adc │ │ ├── Makefile.objs │ │ └── stm32f2xx_adc.c │ ├── alpha │ │ ├── Makefile.objs │ │ ├── alpha_sys.h │ │ ├── dp264.c │ │ ├── pci.c │ │ ├── trace-events │ │ └── typhoon.c │ ├── arm │ │ ├── Makefile.objs │ │ ├── allwinner-a10.c │ │ ├── armv7m.c │ │ ├── aspeed.c │ │ ├── aspeed_soc.c │ │ ├── bcm2835_peripherals.c │ │ ├── bcm2836.c │ │ ├── boot.c │ │ ├── collie.c │ │ ├── cubieboard.c │ │ ├── digic.c │ │ ├── digic_boards.c │ │ ├── exynos4210.c │ │ ├── exynos4_boards.c │ │ ├── fsl-imx25.c │ │ ├── fsl-imx31.c │ │ ├── fsl-imx6.c │ │ ├── fsl-imx7.c │ │ ├── gumstix.c │ │ ├── highbank.c │ │ ├── imx25_pdk.c │ │ ├── integratorcp.c │ │ ├── iotkit.c │ │ ├── kzm.c │ │ ├── mainstone.c │ │ ├── mcimx7d-sabre.c │ │ ├── mps2-tz.c │ │ ├── mps2.c │ │ ├── msf2-soc.c │ │ ├── msf2-som.c │ │ ├── musicpal.c │ │ ├── netduino2.c │ │ ├── nseries.c │ │ ├── omap1.c │ │ ├── omap2.c │ │ ├── omap_sx1.c │ │ ├── palm.c │ │ ├── pxa2xx.c │ │ ├── pxa2xx_gpio.c │ │ ├── pxa2xx_pic.c │ │ ├── raspi.c │ │ ├── realview.c │ │ ├── sabrelite.c │ │ ├── spitz.c │ │ ├── stellaris.c │ │ ├── stm32f205_soc.c │ │ ├── strongarm.c │ │ ├── strongarm.h │ │ ├── sysbus-fdt.c │ │ ├── tosa.c │ │ ├── trace-events │ │ ├── versatilepb.c │ │ ├── vexpress.c │ │ ├── virt-acpi-build.c │ │ ├── virt.c │ │ ├── xilinx_zynq.c │ │ ├── xlnx-zcu102.c │ │ ├── xlnx-zynqmp.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 │ │ ├── soundhw.c │ │ ├── trace-events │ │ └── wm8750.c │ ├── block │ │ ├── Makefile.objs │ │ ├── block.c │ │ ├── cdrom.c │ │ ├── dataplane │ │ │ ├── Makefile.objs │ │ │ ├── trace-events │ │ │ ├── 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 │ │ ├── trace-events │ │ ├── vhost-user-blk.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 │ │ ├── bcm2835_aux.c │ │ ├── cadence_uart.c │ │ ├── cmsdk-apb-uart.c │ │ ├── debugcon.c │ │ ├── digic-uart.c │ │ ├── escc.c │ │ ├── etraxfs_ser.c │ │ ├── exynos4210_uart.c │ │ ├── grlib_apbuart.c │ │ ├── imx_serial.c │ │ ├── ipoctal232.c │ │ ├── lm32_juart.c │ │ ├── lm32_uart.c │ │ ├── mcf_uart.c │ │ ├── milkymist-uart.c │ │ ├── omap_uart.c │ │ ├── parallel-isa.c │ │ ├── parallel.c │ │ ├── pl011.c │ │ ├── sclpconsole-lm.c │ │ ├── sclpconsole.c │ │ ├── serial-isa.c │ │ ├── serial-pci.c │ │ ├── serial.c │ │ ├── sh_serial.c │ │ ├── spapr_vty.c │ │ ├── stm32f2xx_usart.c │ │ ├── terminal3270.c │ │ ├── trace-events │ │ ├── virtio-console.c │ │ ├── virtio-serial-bus.c │ │ ├── xen_console.c │ │ └── xilinx_uartlite.c │ ├── core │ │ ├── Makefile.objs │ │ ├── bus.c │ │ ├── empty_slot.c │ │ ├── fw-path-provider.c │ │ ├── generic-loader.c │ │ ├── hotplug.c │ │ ├── irq.c │ │ ├── loader-fit.c │ │ ├── loader.c │ │ ├── machine.c │ │ ├── nmi.c │ │ ├── null-machine.c │ │ ├── or-irq.c │ │ ├── platform-bus.c │ │ ├── ptimer.c │ │ ├── qdev-fw.c │ │ ├── qdev-properties-system.c │ │ ├── qdev-properties.c │ │ ├── qdev.c │ │ ├── register.c │ │ ├── reset.c │ │ ├── split-irq.c │ │ ├── stream.c │ │ ├── sysbus.c │ │ └── uboot_image.h │ ├── cpu │ │ ├── Makefile.objs │ │ ├── a15mpcore.c │ │ ├── a9mpcore.c │ │ ├── arm11mpcore.c │ │ ├── core.c │ │ └── realview_mpcore.c │ ├── cris │ │ ├── Makefile.objs │ │ ├── axis_dev88.c │ │ ├── boot.c │ │ └── boot.h │ ├── display │ │ ├── Makefile.objs │ │ ├── ads7846.c │ │ ├── bcm2835_fb.c │ │ ├── blizzard.c │ │ ├── cg3.c │ │ ├── cirrus_vga.c │ │ ├── cirrus_vga_rop.h │ │ ├── cirrus_vga_rop2.h │ │ ├── dpcd.c │ │ ├── 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 │ │ ├── sii9022.c │ │ ├── sm501.c │ │ ├── sm501_template.h │ │ ├── ssd0303.c │ │ ├── ssd0323.c │ │ ├── tc6393xb.c │ │ ├── tc6393xb_template.h │ │ ├── tcx.c │ │ ├── trace-events │ │ ├── vga-helpers.h │ │ ├── vga-isa-mm.c │ │ ├── vga-isa.c │ │ ├── vga-pci.c │ │ ├── vga.c │ │ ├── vga_int.h │ │ ├── vga_regs.h │ │ ├── virtio-gpu-3d.c │ │ ├── virtio-gpu-pci.c │ │ ├── virtio-gpu.c │ │ ├── virtio-vga.c │ │ ├── vmware_vga.c │ │ ├── xenfb.c │ │ └── xlnx_dp.c │ ├── dma │ │ ├── Makefile.objs │ │ ├── bcm2835_dma.c │ │ ├── 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 │ │ ├── trace-events │ │ ├── xilinx_axidma.c │ │ ├── xlnx-zynq-devcfg.c │ │ └── xlnx_dpdma.c │ ├── gpio │ │ ├── Makefile.objs │ │ ├── bcm2835_gpio.c │ │ ├── gpio_key.c │ │ ├── imx_gpio.c │ │ ├── max7310.c │ │ ├── mpc8xxx.c │ │ ├── omap_gpio.c │ │ ├── pl061.c │ │ ├── puv3_gpio.c │ │ └── zaurus.c │ ├── hppa │ │ ├── Makefile.objs │ │ ├── dino.c │ │ ├── hppa_hardware.h │ │ ├── hppa_sys.h │ │ ├── machine.c │ │ ├── pci.c │ │ └── trace-events │ ├── i2c │ │ ├── Makefile.objs │ │ ├── aspeed_i2c.c │ │ ├── bitbang_i2c.c │ │ ├── bitbang_i2c.h │ │ ├── core.c │ │ ├── exynos4210_i2c.c │ │ ├── i2c-ddc.c │ │ ├── imx_i2c.c │ │ ├── omap_i2c.c │ │ ├── pm_smbus.c │ │ ├── ppc4xx_i2c.c │ │ ├── smbus.c │ │ ├── smbus_eeprom.c │ │ ├── smbus_ich9.c │ │ └── versatile_i2c.c │ ├── i386 │ │ ├── Makefile.objs │ │ ├── acpi-build.c │ │ ├── acpi-build.h │ │ ├── amd_iommu.c │ │ ├── amd_iommu.h │ │ ├── intel_iommu.c │ │ ├── intel_iommu_internal.h │ │ ├── kvm │ │ │ ├── Makefile.objs │ │ │ ├── apic.c │ │ │ ├── clock.c │ │ │ ├── i8254.c │ │ │ ├── i8259.c │ │ │ └── ioapic.c │ │ ├── kvmvapic.c │ │ ├── multiboot.c │ │ ├── multiboot.h │ │ ├── pc.c │ │ ├── pc_piix.c │ │ ├── pc_q35.c │ │ ├── pc_sysfw.c │ │ ├── trace-events │ │ ├── vmmouse.c │ │ ├── vmport.c │ │ ├── x86-iommu.c │ │ └── xen │ │ │ ├── Makefile.objs │ │ │ ├── trace-events │ │ │ ├── xen-hvm.c │ │ │ ├── xen-mapcache.c │ │ │ ├── xen_apic.c │ │ │ ├── xen_platform.c │ │ │ └── xen_pvdevice.c │ ├── ide │ │ ├── Makefile.objs │ │ ├── ahci-allwinner.c │ │ ├── ahci.c │ │ ├── ahci_internal.h │ │ ├── atapi.c │ │ ├── cmd646.c │ │ ├── core.c │ │ ├── ich.c │ │ ├── isa.c │ │ ├── macio.c │ │ ├── microdrive.c │ │ ├── mmio.c │ │ ├── pci.c │ │ ├── piix.c │ │ ├── qdev.c │ │ ├── sii3112.c │ │ ├── trace-events │ │ └── via.c │ ├── input │ │ ├── Makefile.objs │ │ ├── adb-internal.h │ │ ├── adb-kbd.c │ │ ├── adb-mouse.c │ │ ├── adb.c │ │ ├── hid.c │ │ ├── lm832x.c │ │ ├── milkymist-softusb.c │ │ ├── pckbd.c │ │ ├── pl050.c │ │ ├── ps2.c │ │ ├── pxa2xx_keypad.c │ │ ├── stellaris_input.c │ │ ├── trace-events │ │ ├── tsc2005.c │ │ ├── tsc210x.c │ │ ├── virtio-input-hid.c │ │ ├── virtio-input-host.c │ │ └── virtio-input.c │ ├── intc │ │ ├── Makefile.objs │ │ ├── allwinner-a10-pic.c │ │ ├── apic.c │ │ ├── apic_common.c │ │ ├── arm_gic.c │ │ ├── arm_gic_common.c │ │ ├── arm_gic_kvm.c │ │ ├── arm_gicv2m.c │ │ ├── arm_gicv3.c │ │ ├── arm_gicv3_common.c │ │ ├── arm_gicv3_cpuif.c │ │ ├── arm_gicv3_dist.c │ │ ├── arm_gicv3_its_common.c │ │ ├── arm_gicv3_its_kvm.c │ │ ├── arm_gicv3_kvm.c │ │ ├── arm_gicv3_redist.c │ │ ├── armv7m_nvic.c │ │ ├── aspeed_vic.c │ │ ├── bcm2835_ic.c │ │ ├── bcm2836_control.c │ │ ├── etraxfs_pic.c │ │ ├── exynos4210_combiner.c │ │ ├── exynos4210_gic.c │ │ ├── gic_internal.h │ │ ├── gicv3_internal.h │ │ ├── grlib_irqmp.c │ │ ├── heathrow_pic.c │ │ ├── i8259.c │ │ ├── i8259_common.c │ │ ├── imx_avic.c │ │ ├── imx_gpcv2.c │ │ ├── intc.c │ │ ├── ioapic.c │ │ ├── ioapic_common.c │ │ ├── lm32_pic.c │ │ ├── mips_gic.c │ │ ├── nios2_iic.c │ │ ├── omap_intc.c │ │ ├── ompic.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 │ │ ├── trace-events │ │ ├── vgic_common.h │ │ ├── xics.c │ │ ├── xics_kvm.c │ │ ├── xics_pnv.c │ │ ├── xics_spapr.c │ │ ├── xilinx_intc.c │ │ ├── xlnx-pmu-iomod-intc.c │ │ └── xlnx-zynqmp-ipi.c │ ├── ipack │ │ ├── Makefile.objs │ │ ├── ipack.c │ │ └── tpci200.c │ ├── ipmi │ │ ├── Makefile.objs │ │ ├── ipmi.c │ │ ├── ipmi_bmc_extern.c │ │ ├── ipmi_bmc_sim.c │ │ ├── isa_ipmi_bt.c │ │ └── isa_ipmi_kcs.c │ ├── isa │ │ ├── Makefile.objs │ │ ├── apm.c │ │ ├── i82378.c │ │ ├── isa-bus.c │ │ ├── isa-superio.c │ │ ├── lpc_ich9.c │ │ ├── pc87312.c │ │ ├── piix4.c │ │ ├── smc37c669-superio.c │ │ ├── trace-events │ │ └── vt82c686.c │ ├── lm32 │ │ ├── Makefile.objs │ │ ├── lm32.h │ │ ├── lm32_boards.c │ │ ├── lm32_hwsetup.h │ │ ├── milkymist-hw.h │ │ └── milkymist.c │ ├── m68k │ │ ├── Makefile.objs │ │ ├── an5206.c │ │ ├── mcf5206.c │ │ ├── mcf5208.c │ │ └── mcf_intc.c │ ├── mem │ │ ├── Makefile.objs │ │ ├── nvdimm.c │ │ ├── pc-dimm.c │ │ └── trace-events │ ├── microblaze │ │ ├── Makefile.objs │ │ ├── boot.c │ │ ├── boot.h │ │ ├── petalogix_ml605_mmu.c │ │ ├── petalogix_s3adsp1800_mmu.c │ │ └── xlnx-zynqmp-pmu.c │ ├── mips │ │ ├── Makefile.objs │ │ ├── addr.c │ │ ├── boston.c │ │ ├── cps.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 │ │ ├── aspeed_scu.c │ │ ├── aspeed_sdmc.c │ │ ├── auxbus.c │ │ ├── bcm2835_mbox.c │ │ ├── bcm2835_property.c │ │ ├── bcm2835_rng.c │ │ ├── cbus.c │ │ ├── debugexit.c │ │ ├── eccmemctl.c │ │ ├── edu.c │ │ ├── exynos4210_clk.c │ │ ├── exynos4210_pmu.c │ │ ├── exynos4210_rng.c │ │ ├── hyperv_testdev.c │ │ ├── imx25_ccm.c │ │ ├── imx2_wdt.c │ │ ├── imx31_ccm.c │ │ ├── imx6_ccm.c │ │ ├── imx6_src.c │ │ ├── imx7_ccm.c │ │ ├── imx7_gpr.c │ │ ├── imx7_snvs.c │ │ ├── imx_ccm.c │ │ ├── iotkit-secctl.c │ │ ├── ivshmem.c │ │ ├── macio │ │ │ ├── Makefile.objs │ │ │ ├── cuda.c │ │ │ ├── mac_dbdma.c │ │ │ ├── macio.c │ │ │ └── trace-events │ │ ├── max111x.c │ │ ├── milkymist-hpdmc.c │ │ ├── milkymist-pfpu.c │ │ ├── mips_cmgcr.c │ │ ├── mips_cpc.c │ │ ├── mips_itu.c │ │ ├── mmio_interface.c │ │ ├── mos6522.c │ │ ├── mps2-fpgaio.c │ │ ├── mps2-scc.c │ │ ├── msf2-sysreg.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 │ │ ├── stm32f2xx_syscfg.c │ │ ├── tmp105.c │ │ ├── tmp105.h │ │ ├── tmp421.c │ │ ├── trace-events │ │ ├── tz-ppc.c │ │ ├── unimp.c │ │ ├── virtio-qcuda.c │ │ ├── vmcoreinfo.c │ │ ├── zynq-xadc.c │ │ └── zynq_slcr.c │ ├── moxie │ │ ├── Makefile.objs │ │ └── moxiesim.c │ ├── net │ │ ├── Makefile.objs │ │ ├── allwinner_emac.c │ │ ├── cadence_gem.c │ │ ├── can │ │ │ ├── Makefile.objs │ │ │ ├── can_kvaser_pci.c │ │ │ ├── can_mioe3680_pci.c │ │ │ ├── can_pcm3680_pci.c │ │ │ ├── can_sja1000.c │ │ │ └── can_sja1000.h │ │ ├── dp8393x.c │ │ ├── e1000.c │ │ ├── e1000_regs.h │ │ ├── e1000e.c │ │ ├── e1000e_core.c │ │ ├── e1000e_core.h │ │ ├── e1000x_common.c │ │ ├── e1000x_common.h │ │ ├── eepro100.c │ │ ├── etraxfs_eth.c │ │ ├── fsl_etsec │ │ │ ├── etsec.c │ │ │ ├── etsec.h │ │ │ ├── miim.c │ │ │ ├── registers.c │ │ │ ├── registers.h │ │ │ └── rings.c │ │ ├── ftgmac100.c │ │ ├── imx_fec.c │ │ ├── lan9118.c │ │ ├── lance.c │ │ ├── mcf_fec.c │ │ ├── milkymist-minimac2.c │ │ ├── mipsnet.c │ │ ├── ne2000-isa.c │ │ ├── ne2000.c │ │ ├── ne2000.h │ │ ├── net_rx_pkt.c │ │ ├── net_rx_pkt.h │ │ ├── net_tx_pkt.c │ │ ├── net_tx_pkt.h │ │ ├── opencores_eth.c │ │ ├── pcnet-pci.c │ │ ├── pcnet.c │ │ ├── pcnet.h │ │ ├── rocker │ │ │ ├── qmp-norocker.c │ │ │ ├── rocker.c │ │ │ ├── rocker.h │ │ │ ├── rocker_desc.c │ │ │ ├── rocker_desc.h │ │ │ ├── rocker_fp.c │ │ │ ├── rocker_fp.h │ │ │ ├── rocker_hw.h │ │ │ ├── rocker_of_dpa.c │ │ │ ├── rocker_of_dpa.h │ │ │ ├── rocker_tlv.h │ │ │ ├── rocker_world.c │ │ │ └── rocker_world.h │ │ ├── rtl8139.c │ │ ├── smc91c111.c │ │ ├── spapr_llan.c │ │ ├── stellaris_enet.c │ │ ├── sungem.c │ │ ├── sunhme.c │ │ ├── trace-events │ │ ├── vhost_net.c │ │ ├── virtio-net.c │ │ ├── vmware_utils.h │ │ ├── vmxnet3.c │ │ ├── vmxnet3.h │ │ ├── vmxnet_debug.h │ │ ├── xen_nic.c │ │ ├── xgmac.c │ │ ├── xilinx_axienet.c │ │ └── xilinx_ethlite.c │ ├── nios2 │ │ ├── 10m50_devboard.c │ │ ├── Makefile.objs │ │ ├── boot.c │ │ ├── boot.h │ │ └── cpu_pic.c │ ├── nvram │ │ ├── Makefile.objs │ │ ├── chrp_nvram.c │ │ ├── ds1225y.c │ │ ├── eeprom93xx.c │ │ ├── eeprom_at24c.c │ │ ├── fw_cfg.c │ │ ├── mac_nvram.c │ │ ├── spapr_nvram.c │ │ └── trace-events │ ├── openrisc │ │ ├── Makefile.objs │ │ ├── cputimer.c │ │ ├── openrisc_sim.c │ │ └── pic_cpu.c │ ├── pci-bridge │ │ ├── Makefile.objs │ │ ├── dec.c │ │ ├── dec.h │ │ ├── gen_pcie_root_port.c │ │ ├── i82801b11.c │ │ ├── ioh3420.c │ │ ├── ioh3420.h │ │ ├── pci_bridge_dev.c │ │ ├── pci_expander_bridge.c │ │ ├── pcie_pci_bridge.c │ │ ├── pcie_root_port.c │ │ ├── simba.c │ │ ├── xio3130_downstream.c │ │ ├── xio3130_downstream.h │ │ ├── xio3130_upstream.c │ │ └── xio3130_upstream.h │ ├── pci-host │ │ ├── Makefile.objs │ │ ├── bonito.c │ │ ├── designware.c │ │ ├── gpex.c │ │ ├── grackle.c │ │ ├── pam.c │ │ ├── piix.c │ │ ├── ppce500.c │ │ ├── prep.c │ │ ├── q35.c │ │ ├── sabre.c │ │ ├── trace-events │ │ ├── uninorth.c │ │ ├── versatile.c │ │ └── xilinx-pcie.c │ ├── pci │ │ ├── Makefile.objs │ │ ├── msi.c │ │ ├── msix.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 │ │ └── trace-events │ ├── pcmcia │ │ ├── Makefile.objs │ │ ├── pcmcia.c │ │ └── pxa2xx.c │ ├── ppc │ │ ├── Makefile.objs │ │ ├── e500-ccsr.h │ │ ├── e500.c │ │ ├── e500.h │ │ ├── e500plat.c │ │ ├── fdt.c │ │ ├── mac.h │ │ ├── mac_newworld.c │ │ ├── mac_oldworld.c │ │ ├── mpc8544_guts.c │ │ ├── mpc8544ds.c │ │ ├── pnv.c │ │ ├── pnv_bmc.c │ │ ├── pnv_core.c │ │ ├── pnv_lpc.c │ │ ├── pnv_occ.c │ │ ├── pnv_psi.c │ │ ├── pnv_xscom.c │ │ ├── ppc.c │ │ ├── ppc405.h │ │ ├── ppc405_boards.c │ │ ├── ppc405_uc.c │ │ ├── ppc440.h │ │ ├── ppc440_bamboo.c │ │ ├── ppc440_pcix.c │ │ ├── ppc440_uc.c │ │ ├── ppc4xx_devs.c │ │ ├── ppc4xx_pci.c │ │ ├── ppc_booke.c │ │ ├── ppce500_spin.c │ │ ├── prep.c │ │ ├── prep_systemio.c │ │ ├── rs6000_mc.c │ │ ├── sam460ex.c │ │ ├── spapr.c │ │ ├── spapr_caps.c │ │ ├── spapr_cpu_core.c │ │ ├── spapr_drc.c │ │ ├── spapr_events.c │ │ ├── spapr_hcall.c │ │ ├── spapr_iommu.c │ │ ├── spapr_ovec.c │ │ ├── spapr_pci.c │ │ ├── spapr_pci_vfio.c │ │ ├── spapr_rng.c │ │ ├── spapr_rtas.c │ │ ├── spapr_rtas_ddw.c │ │ ├── spapr_rtc.c │ │ ├── spapr_vio.c │ │ ├── trace-events │ │ └── virtex_ml507.c │ ├── rdma │ │ ├── Makefile.objs │ │ ├── rdma_backend.c │ │ ├── rdma_backend.h │ │ ├── rdma_backend_defs.h │ │ ├── rdma_rm.c │ │ ├── rdma_rm.h │ │ ├── rdma_rm_defs.h │ │ ├── rdma_utils.c │ │ ├── rdma_utils.h │ │ ├── trace-events │ │ └── vmw │ │ │ ├── pvrdma.h │ │ │ ├── pvrdma_cmd.c │ │ │ ├── pvrdma_dev_ring.c │ │ │ ├── pvrdma_dev_ring.h │ │ │ ├── pvrdma_main.c │ │ │ ├── pvrdma_qp_ops.c │ │ │ ├── pvrdma_qp_ops.h │ │ │ └── trace-events │ ├── riscv │ │ ├── Makefile.objs │ │ ├── riscv_hart.c │ │ ├── riscv_htif.c │ │ ├── sifive_clint.c │ │ ├── sifive_e.c │ │ ├── sifive_plic.c │ │ ├── sifive_prci.c │ │ ├── sifive_test.c │ │ ├── sifive_u.c │ │ ├── sifive_uart.c │ │ ├── spike.c │ │ └── virt.c │ ├── s390x │ │ ├── 3270-ccw.c │ │ ├── Makefile.objs │ │ ├── ccw-device.c │ │ ├── ccw-device.h │ │ ├── css-bridge.c │ │ ├── css.c │ │ ├── event-facility.c │ │ ├── ipl.c │ │ ├── ipl.h │ │ ├── s390-ccw.c │ │ ├── s390-pci-bus.c │ │ ├── s390-pci-bus.h │ │ ├── s390-pci-inst.c │ │ ├── s390-pci-inst.h │ │ ├── s390-pci-stub.c │ │ ├── s390-skeys-kvm.c │ │ ├── s390-skeys.c │ │ ├── s390-stattrib-kvm.c │ │ ├── s390-stattrib.c │ │ ├── s390-virtio-ccw.c │ │ ├── s390-virtio-hcall.c │ │ ├── s390-virtio-hcall.h │ │ ├── sclp.c │ │ ├── sclpcpu.c │ │ ├── sclpquiesce.c │ │ ├── trace-events │ │ ├── virtio-ccw.c │ │ └── virtio-ccw.h │ ├── scsi │ │ ├── Makefile.objs │ │ ├── esp-pci.c │ │ ├── esp.c │ │ ├── lsi53c895a.c │ │ ├── megasas.c │ │ ├── mfi.h │ │ ├── mpi.h │ │ ├── mptconfig.c │ │ ├── mptendian.c │ │ ├── mptsas.c │ │ ├── mptsas.h │ │ ├── scsi-bus.c │ │ ├── scsi-disk.c │ │ ├── scsi-generic.c │ │ ├── spapr_vscsi.c │ │ ├── srp.h │ │ ├── trace-events │ │ ├── vhost-scsi-common.c │ │ ├── vhost-scsi.c │ │ ├── vhost-user-scsi.c │ │ ├── viosrp.h │ │ ├── virtio-scsi-dataplane.c │ │ ├── virtio-scsi.c │ │ ├── vmw_pvscsi.c │ │ └── vmw_pvscsi.h │ ├── sd │ │ ├── Makefile.objs │ │ ├── bcm2835_sdhost.c │ │ ├── core.c │ │ ├── milkymist-memcard.c │ │ ├── omap_mmc.c │ │ ├── pl181.c │ │ ├── pxa2xx_mmci.c │ │ ├── sd.c │ │ ├── sdhci-internal.h │ │ ├── sdhci.c │ │ ├── sdmmc-internal.c │ │ ├── sdmmc-internal.h │ │ ├── ssi-sd.c │ │ └── trace-events │ ├── sh4 │ │ ├── Makefile.objs │ │ ├── r2d.c │ │ ├── sh7750.c │ │ ├── sh7750_regnames.c │ │ ├── sh7750_regnames.h │ │ ├── sh7750_regs.h │ │ ├── sh_pci.c │ │ └── shix.c │ ├── smbios │ │ ├── Makefile.objs │ │ ├── smbios-stub.c │ │ ├── smbios.c │ │ ├── smbios_build.h │ │ ├── smbios_type_38-stub.c │ │ └── smbios_type_38.c │ ├── sparc │ │ ├── Makefile.objs │ │ ├── leon3.c │ │ ├── sun4m.c │ │ ├── sun4m_iommu.c │ │ └── trace-events │ ├── sparc64 │ │ ├── Makefile.objs │ │ ├── niagara.c │ │ ├── sparc64.c │ │ ├── sun4u.c │ │ ├── sun4u_iommu.c │ │ └── trace-events │ ├── ssi │ │ ├── Makefile.objs │ │ ├── aspeed_smc.c │ │ ├── imx_spi.c │ │ ├── mss-spi.c │ │ ├── omap_spi.c │ │ ├── pl022.c │ │ ├── ssi.c │ │ ├── stm32f2xx_spi.c │ │ ├── xilinx_spi.c │ │ └── xilinx_spips.c │ ├── timer │ │ ├── Makefile.objs │ │ ├── a9gtimer.c │ │ ├── allwinner-a10-pit.c │ │ ├── altera_timer.c │ │ ├── arm_mptimer.c │ │ ├── arm_timer.c │ │ ├── armv7m_systick.c │ │ ├── aspeed_timer.c │ │ ├── cadence_ttc.c │ │ ├── cmsdk-apb-timer.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-internal.h │ │ ├── m48t59-isa.c │ │ ├── m48t59.c │ │ ├── mc146818rtc.c │ │ ├── milkymist-sysctl.c │ │ ├── mips_gictimer.c │ │ ├── mss-timer.c │ │ ├── omap_gptimer.c │ │ ├── omap_synctimer.c │ │ ├── pl031.c │ │ ├── puv3_ost.c │ │ ├── pxa2xx_timer.c │ │ ├── sh_timer.c │ │ ├── slavio_timer.c │ │ ├── stm32f2xx_timer.c │ │ ├── sun4v-rtc.c │ │ ├── trace-events │ │ ├── twl92230.c │ │ ├── xilinx_timer.c │ │ └── xlnx-zynqmp-rtc.c │ ├── tpm │ │ ├── Makefile.objs │ │ ├── tpm_crb.c │ │ ├── tpm_emulator.c │ │ ├── tpm_int.h │ │ ├── tpm_ioctl.h │ │ ├── tpm_passthrough.c │ │ ├── tpm_tis.c │ │ ├── tpm_util.c │ │ ├── tpm_util.h │ │ └── trace-events │ ├── tricore │ │ ├── Makefile.objs │ │ └── tricore_testboard.c │ ├── unicore32 │ │ ├── Makefile.objs │ │ └── puv3.c │ ├── usb │ │ ├── Makefile.objs │ │ ├── bus.c │ │ ├── ccid-card-emulated.c │ │ ├── ccid-card-passthru.c │ │ ├── ccid.h │ │ ├── chipidea.c │ │ ├── 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-nec.c │ │ ├── hcd-xhci.c │ │ ├── hcd-xhci.h │ │ ├── host-libusb.c │ │ ├── host-stub.c │ │ ├── host.h │ │ ├── libhw.c │ │ ├── quirks-ftdi-ids.h │ │ ├── quirks-pl2303-ids.h │ │ ├── quirks.c │ │ ├── quirks.h │ │ ├── redirect.c │ │ ├── trace-events │ │ ├── tusb6010.c │ │ └── xen-usb.c │ ├── vfio │ │ ├── Makefile.objs │ │ ├── amd-xgbe.c │ │ ├── calxeda-xgmac.c │ │ ├── ccw.c │ │ ├── common.c │ │ ├── display.c │ │ ├── pci-quirks.c │ │ ├── pci.c │ │ ├── pci.h │ │ ├── platform.c │ │ ├── spapr.c │ │ └── trace-events │ ├── virtio │ │ ├── Makefile.objs │ │ ├── trace-events │ │ ├── vhost-backend.c │ │ ├── vhost-stub.c │ │ ├── vhost-user.c │ │ ├── vhost-vsock.c │ │ ├── vhost.c │ │ ├── virtio-balloon.c │ │ ├── virtio-bus.c │ │ ├── virtio-crypto-pci.c │ │ ├── virtio-crypto.c │ │ ├── virtio-mmio.c │ │ ├── virtio-pci.c │ │ ├── virtio-pci.h │ │ ├── virtio-rng.c │ │ └── virtio.c │ ├── watchdog │ │ ├── Makefile.objs │ │ ├── watchdog.c │ │ ├── wdt_aspeed.c │ │ ├── wdt_diag288.c │ │ ├── wdt_i6300esb.c │ │ └── wdt_ib700.c │ ├── xen │ │ ├── Makefile.objs │ │ ├── trace-events │ │ ├── xen-common.c │ │ ├── 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_graphics.c │ │ ├── xen_pt_load_rom.c │ │ ├── xen_pt_msi.c │ │ └── xen_pvdev.c │ ├── xenpv │ │ ├── Makefile.objs │ │ ├── xen_domainbuild.c │ │ ├── xen_domainbuild.h │ │ └── xen_machine_pv.c │ └── xtensa │ │ ├── Makefile.objs │ │ ├── bootparam.h │ │ ├── pic_cpu.c │ │ ├── sim.c │ │ ├── xtensa_memory.c │ │ ├── xtensa_memory.h │ │ └── xtfpga.c ├── include │ ├── block │ │ ├── accounting.h │ │ ├── aio-wait.h │ │ ├── aio.h │ │ ├── block.h │ │ ├── block_backup.h │ │ ├── block_int.h │ │ ├── blockjob.h │ │ ├── blockjob_int.h │ │ ├── dirty-bitmap.h │ │ ├── nbd.h │ │ ├── nvme.h │ │ ├── qapi.h │ │ ├── raw-aio.h │ │ ├── snapshot.h │ │ ├── thread-pool.h │ │ ├── throttle-groups.h │ │ └── write-threshold.h │ ├── chardev │ │ ├── char-fd.h │ │ ├── char-fe.h │ │ ├── char-io.h │ │ ├── char-mux.h │ │ ├── char-parallel.h │ │ ├── char-serial.h │ │ ├── char-win-stdio.h │ │ ├── char-win.h │ │ └── char.h │ ├── crypto │ │ ├── aes.h │ │ ├── afsplit.h │ │ ├── block.h │ │ ├── cipher.h │ │ ├── desrfb.h │ │ ├── hash.h │ │ ├── hmac.h │ │ ├── init.h │ │ ├── ivgen.h │ │ ├── pbkdf.h │ │ ├── random.h │ │ ├── secret.h │ │ ├── tlscreds.h │ │ ├── tlscredsanon.h │ │ ├── tlscredsx509.h │ │ ├── tlssession.h │ │ └── xts.h │ ├── disas │ │ ├── bfd.h │ │ ├── capstone.h │ │ └── disas.h │ ├── elf.h │ ├── exec │ │ ├── address-spaces.h │ │ ├── cpu-all.h │ │ ├── cpu-common.h │ │ ├── cpu-defs.h │ │ ├── cpu_ldst.h │ │ ├── cpu_ldst_template.h │ │ ├── cpu_ldst_useronly_template.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 │ │ ├── log.h │ │ ├── memattrs.h │ │ ├── memory-internal.h │ │ ├── memory.h │ │ ├── poison.h │ │ ├── ram_addr.h │ │ ├── ramlist.h │ │ ├── semihost.h │ │ ├── softmmu-semi.h │ │ ├── target_page.h │ │ ├── tb-context.h │ │ ├── tb-hash-xx.h │ │ ├── tb-hash.h │ │ ├── tb-lookup.h │ │ ├── translator.h │ │ └── user │ │ │ ├── abitypes.h │ │ │ └── thunk.h │ ├── fpu │ │ ├── softfloat-macros.h │ │ ├── softfloat-types.h │ │ └── softfloat.h │ ├── glib-compat.h │ ├── hw │ │ ├── acpi │ │ │ ├── acpi-defs.h │ │ │ ├── acpi.h │ │ │ ├── acpi_dev_interface.h │ │ │ ├── aml-build.h │ │ │ ├── bios-linker-loader.h │ │ │ ├── cpu.h │ │ │ ├── cpu_hotplug.h │ │ │ ├── ich9.h │ │ │ ├── ipmi.h │ │ │ ├── memory_hotplug.h │ │ │ ├── pc-hotplug.h │ │ │ ├── pcihp.h │ │ │ ├── piix4.h │ │ │ ├── tco.h │ │ │ ├── tpm.h │ │ │ └── vmgenid.h │ │ ├── adc │ │ │ └── stm32f2xx_adc.h │ │ ├── arm │ │ │ ├── allwinner-a10.h │ │ │ ├── arm.h │ │ │ ├── armv7m.h │ │ │ ├── aspeed_soc.h │ │ │ ├── bcm2835_peripherals.h │ │ │ ├── bcm2836.h │ │ │ ├── digic.h │ │ │ ├── exynos4210.h │ │ │ ├── fdt.h │ │ │ ├── fsl-imx25.h │ │ │ ├── fsl-imx31.h │ │ │ ├── fsl-imx6.h │ │ │ ├── fsl-imx7.h │ │ │ ├── iotkit.h │ │ │ ├── linux-boot-if.h │ │ │ ├── msf2-soc.h │ │ │ ├── omap.h │ │ │ ├── primecell.h │ │ │ ├── pxa.h │ │ │ ├── raspi_platform.h │ │ │ ├── sharpsl.h │ │ │ ├── soc_dma.h │ │ │ ├── stm32f205_soc.h │ │ │ ├── sysbus-fdt.h │ │ │ ├── virt.h │ │ │ └── xlnx-zynqmp.h │ │ ├── audio │ │ │ ├── pcspk.h │ │ │ ├── soundhw.h │ │ │ └── wm8750.h │ │ ├── block │ │ │ ├── block.h │ │ │ ├── fdc.h │ │ │ └── flash.h │ │ ├── boards.h │ │ ├── bt.h │ │ ├── char │ │ │ ├── bcm2835_aux.h │ │ │ ├── cadence_uart.h │ │ │ ├── cmsdk-apb-uart.h │ │ │ ├── digic-uart.h │ │ │ ├── escc.h │ │ │ ├── imx_serial.h │ │ │ ├── lm32_juart.h │ │ │ ├── parallel.h │ │ │ ├── pl011.h │ │ │ ├── serial.h │ │ │ ├── stm32f2xx_usart.h │ │ │ └── xilinx_uartlite.h │ │ ├── compat.h │ │ ├── core │ │ │ ├── generic-loader.h │ │ │ └── split-irq.h │ │ ├── cpu │ │ │ ├── a15mpcore.h │ │ │ ├── a9mpcore.h │ │ │ ├── arm11mpcore.h │ │ │ └── core.h │ │ ├── cris │ │ │ ├── etraxfs.h │ │ │ └── etraxfs_dma.h │ │ ├── devices.h │ │ ├── display │ │ │ ├── bcm2835_fb.h │ │ │ ├── dpcd.h │ │ │ ├── vga.h │ │ │ └── xlnx_dp.h │ │ ├── dma │ │ │ ├── bcm2835_dma.h │ │ │ ├── i8257.h │ │ │ ├── xlnx-zynq-devcfg.h │ │ │ └── xlnx_dpdma.h │ │ ├── elf_ops.h │ │ ├── empty_slot.h │ │ ├── fw-path-provider.h │ │ ├── gpio │ │ │ ├── bcm2835_gpio.h │ │ │ └── imx_gpio.h │ │ ├── hotplug.h │ │ ├── hw.h │ │ ├── i2c │ │ │ ├── aspeed_i2c.h │ │ │ ├── i2c-ddc.h │ │ │ ├── i2c.h │ │ │ ├── imx_i2c.h │ │ │ ├── pm_smbus.h │ │ │ ├── ppc4xx_i2c.h │ │ │ └── smbus.h │ │ ├── i386 │ │ │ ├── apic-msidef.h │ │ │ ├── apic.h │ │ │ ├── apic_internal.h │ │ │ ├── ich9.h │ │ │ ├── intel_iommu.h │ │ │ ├── ioapic.h │ │ │ ├── ioapic_internal.h │ │ │ ├── pc.h │ │ │ ├── topology.h │ │ │ └── x86-iommu.h │ │ ├── ide.h │ │ ├── ide │ │ │ ├── ahci.h │ │ │ ├── internal.h │ │ │ └── pci.h │ │ ├── input │ │ │ ├── adb-keys.h │ │ │ ├── adb.h │ │ │ ├── hid.h │ │ │ ├── i8042.h │ │ │ └── ps2.h │ │ ├── intc │ │ │ ├── allwinner-a10-pic.h │ │ │ ├── arm_gic.h │ │ │ ├── arm_gic_common.h │ │ │ ├── arm_gicv3.h │ │ │ ├── arm_gicv3_common.h │ │ │ ├── arm_gicv3_its_common.h │ │ │ ├── armv7m_nvic.h │ │ │ ├── aspeed_vic.h │ │ │ ├── bcm2835_ic.h │ │ │ ├── bcm2836_control.h │ │ │ ├── heathrow_pic.h │ │ │ ├── imx_avic.h │ │ │ ├── imx_gpcv2.h │ │ │ ├── intc.h │ │ │ ├── mips_gic.h │ │ │ ├── realview_gic.h │ │ │ ├── xlnx-pmu-iomod-intc.h │ │ │ └── xlnx-zynqmp-ipi.h │ │ ├── ipack │ │ │ └── ipack.h │ │ ├── ipmi │ │ │ └── ipmi.h │ │ ├── irq.h │ │ ├── isa │ │ │ ├── apm.h │ │ │ ├── i8259_internal.h │ │ │ ├── isa.h │ │ │ ├── pc87312.h │ │ │ ├── superio.h │ │ │ └── vt82c686.h │ │ ├── kvm │ │ │ └── clock.h │ │ ├── lm32 │ │ │ └── lm32_pic.h │ │ ├── loader-fit.h │ │ ├── loader.h │ │ ├── m68k │ │ │ ├── mcf.h │ │ │ └── mcf_fec.h │ │ ├── mem │ │ │ ├── nvdimm.h │ │ │ └── pc-dimm.h │ │ ├── mips │ │ │ ├── bios.h │ │ │ ├── cps.h │ │ │ ├── cpudevs.h │ │ │ └── mips.h │ │ ├── misc │ │ │ ├── a9scu.h │ │ │ ├── arm11scu.h │ │ │ ├── arm_integrator_debug.h │ │ │ ├── aspeed_scu.h │ │ │ ├── aspeed_sdmc.h │ │ │ ├── auxbus.h │ │ │ ├── bcm2835_mbox.h │ │ │ ├── bcm2835_mbox_defs.h │ │ │ ├── bcm2835_property.h │ │ │ ├── bcm2835_rng.h │ │ │ ├── imx25_ccm.h │ │ │ ├── imx2_wdt.h │ │ │ ├── imx31_ccm.h │ │ │ ├── imx6_ccm.h │ │ │ ├── imx6_src.h │ │ │ ├── imx7_ccm.h │ │ │ ├── imx7_gpr.h │ │ │ ├── imx7_snvs.h │ │ │ ├── imx_ccm.h │ │ │ ├── iotkit-secctl.h │ │ │ ├── ivshmem.h │ │ │ ├── macio │ │ │ │ ├── cuda.h │ │ │ │ └── macio.h │ │ │ ├── mips_cmgcr.h │ │ │ ├── mips_cpc.h │ │ │ ├── mips_itu.h │ │ │ ├── mmio_interface.h │ │ │ ├── mos6522.h │ │ │ ├── mps2-fpgaio.h │ │ │ ├── mps2-scc.h │ │ │ ├── msf2-sysreg.h │ │ │ ├── pvpanic.h │ │ │ ├── stm32f2xx_syscfg.h │ │ │ ├── tmp105_regs.h │ │ │ ├── tz-ppc.h │ │ │ ├── unimp.h │ │ │ ├── vmcoreinfo.h │ │ │ └── zynq-xadc.h │ │ ├── net │ │ │ ├── allwinner_emac.h │ │ │ ├── cadence_gem.h │ │ │ ├── ftgmac100.h │ │ │ ├── imx_fec.h │ │ │ ├── lance.h │ │ │ ├── mii.h │ │ │ └── ne2000-isa.h │ │ ├── nmi.h │ │ ├── nvram │ │ │ ├── chrp_nvram.h │ │ │ ├── eeprom93xx.h │ │ │ ├── fw_cfg.h │ │ │ ├── fw_cfg_keys.h │ │ │ └── sun_nvram.h │ │ ├── or-irq.h │ │ ├── pci-bridge │ │ │ └── simba.h │ │ ├── pci-host │ │ │ ├── designware.h │ │ │ ├── gpex.h │ │ │ ├── pam.h │ │ │ ├── ppce500.h │ │ │ ├── q35.h │ │ │ ├── sabre.h │ │ │ ├── spapr.h │ │ │ └── xilinx-pcie.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 │ │ ├── platform-bus.h │ │ ├── ppc │ │ │ ├── fdt.h │ │ │ ├── mac_dbdma.h │ │ │ ├── openpic.h │ │ │ ├── openpic_kvm.h │ │ │ ├── pnv.h │ │ │ ├── pnv_core.h │ │ │ ├── pnv_lpc.h │ │ │ ├── pnv_occ.h │ │ │ ├── pnv_psi.h │ │ │ ├── pnv_xscom.h │ │ │ ├── ppc.h │ │ │ ├── ppc4xx.h │ │ │ ├── ppc_e500.h │ │ │ ├── spapr.h │ │ │ ├── spapr_cpu_core.h │ │ │ ├── spapr_drc.h │ │ │ ├── spapr_ovec.h │ │ │ ├── spapr_rtas.h │ │ │ ├── spapr_vio.h │ │ │ └── xics.h │ │ ├── ptimer.h │ │ ├── qdev-core.h │ │ ├── qdev-dma.h │ │ ├── qdev-properties.h │ │ ├── qdev.h │ │ ├── register.h │ │ ├── registerfields.h │ │ ├── riscv │ │ │ ├── riscv_hart.h │ │ │ ├── riscv_htif.h │ │ │ ├── sifive_clint.h │ │ │ ├── sifive_e.h │ │ │ ├── sifive_plic.h │ │ │ ├── sifive_prci.h │ │ │ ├── sifive_test.h │ │ │ ├── sifive_u.h │ │ │ ├── sifive_uart.h │ │ │ ├── spike.h │ │ │ └── virt.h │ │ ├── s390x │ │ │ ├── 3270-ccw.h │ │ │ ├── adapter.h │ │ │ ├── css-bridge.h │ │ │ ├── css.h │ │ │ ├── ebcdic.h │ │ │ ├── event-facility.h │ │ │ ├── ioinst.h │ │ │ ├── s390-ccw.h │ │ │ ├── s390-virtio-ccw.h │ │ │ ├── s390_flic.h │ │ │ ├── sclp.h │ │ │ ├── storage-attributes.h │ │ │ └── storage-keys.h │ │ ├── scsi │ │ │ ├── esp.h │ │ │ └── scsi.h │ │ ├── sd │ │ │ ├── bcm2835_sdhost.h │ │ │ ├── sd.h │ │ │ └── sdhci.h │ │ ├── sh4 │ │ │ ├── sh.h │ │ │ └── sh_intc.h │ │ ├── smbios │ │ │ ├── ipmi.h │ │ │ └── smbios.h │ │ ├── sparc │ │ │ ├── grlib.h │ │ │ ├── sparc32_dma.h │ │ │ ├── sparc64.h │ │ │ ├── sun4m_iommu.h │ │ │ └── sun4u_iommu.h │ │ ├── ssi │ │ │ ├── aspeed_smc.h │ │ │ ├── imx_spi.h │ │ │ ├── mss-spi.h │ │ │ ├── ssi.h │ │ │ ├── stm32f2xx_spi.h │ │ │ └── xilinx_spips.h │ │ ├── stream.h │ │ ├── sysbus.h │ │ ├── timer │ │ │ ├── a9gtimer.h │ │ │ ├── allwinner-a10-pit.h │ │ │ ├── arm_mptimer.h │ │ │ ├── armv7m_systick.h │ │ │ ├── aspeed_timer.h │ │ │ ├── cmsdk-apb-timer.h │ │ │ ├── digic-timer.h │ │ │ ├── hpet.h │ │ │ ├── i8254.h │ │ │ ├── i8254_internal.h │ │ │ ├── imx_epit.h │ │ │ ├── imx_gpt.h │ │ │ ├── m48t59.h │ │ │ ├── mc146818rtc.h │ │ │ ├── mc146818rtc_regs.h │ │ │ ├── mips_gictimer.h │ │ │ ├── mss-timer.h │ │ │ ├── stm32f2xx_timer.h │ │ │ ├── sun4v-rtc.h │ │ │ └── xlnx-zynqmp-rtc.h │ │ ├── tricore │ │ │ └── tricore.h │ │ ├── unicore32 │ │ │ └── puv3.h │ │ ├── usb.h │ │ ├── usb │ │ │ ├── chipidea.h │ │ │ ├── ehci-regs.h │ │ │ └── uhci-regs.h │ │ ├── vfio │ │ │ ├── vfio-amd-xgbe.h │ │ │ ├── vfio-calxeda-xgmac.h │ │ │ ├── vfio-common.h │ │ │ ├── vfio-platform.h │ │ │ └── vfio.h │ │ ├── virtio │ │ │ ├── vhost-backend.h │ │ │ ├── vhost-scsi-common.h │ │ │ ├── vhost-scsi.h │ │ │ ├── vhost-user-blk.h │ │ │ ├── vhost-user-scsi.h │ │ │ ├── vhost-vsock.h │ │ │ ├── vhost.h │ │ │ ├── virtio-access.h │ │ │ ├── virtio-balloon.h │ │ │ ├── virtio-blk.h │ │ │ ├── virtio-bus.h │ │ │ ├── virtio-crypto.h │ │ │ ├── virtio-gpu.h │ │ │ ├── virtio-input.h │ │ │ ├── virtio-net.h │ │ │ ├── virtio-qcuda.h │ │ │ ├── virtio-rng.h │ │ │ ├── virtio-scsi.h │ │ │ ├── virtio-serial.h │ │ │ └── virtio.h │ │ ├── watchdog │ │ │ ├── wdt_aspeed.h │ │ │ └── wdt_diag288.h │ │ ├── xen │ │ │ ├── io │ │ │ │ └── ring.h │ │ │ ├── xen.h │ │ │ ├── xen_backend.h │ │ │ ├── xen_common.h │ │ │ └── xen_pvdev.h │ │ └── xtensa │ │ │ └── xtensa-isa.h │ ├── io │ │ ├── channel-buffer.h │ │ ├── channel-command.h │ │ ├── channel-file.h │ │ ├── channel-socket.h │ │ ├── channel-tls.h │ │ ├── channel-util.h │ │ ├── channel-watch.h │ │ ├── channel-websock.h │ │ ├── channel.h │ │ ├── dns-resolver.h │ │ ├── net-listener.h │ │ └── task.h │ ├── libdecnumber │ │ ├── dconfig.h │ │ ├── decContext.h │ │ ├── decDPD.h │ │ ├── decNumber.h │ │ ├── decNumberLocal.h │ │ └── dpd │ │ │ ├── decimal128.h │ │ │ ├── decimal128Local.h │ │ │ ├── decimal32.h │ │ │ └── decimal64.h │ ├── migration │ │ ├── blocker.h │ │ ├── colo.h │ │ ├── cpu.h │ │ ├── failover.h │ │ ├── global_state.h │ │ ├── misc.h │ │ ├── qemu-file-types.h │ │ ├── register.h │ │ ├── snapshot.h │ │ └── vmstate.h │ ├── monitor │ │ ├── hmp-target.h │ │ ├── monitor.h │ │ └── qdev.h │ ├── net │ │ ├── can_emu.h │ │ ├── can_host.h │ │ ├── checksum.h │ │ ├── eth.h │ │ ├── filter.h │ │ ├── net.h │ │ ├── queue.h │ │ ├── slirp.h │ │ ├── tap.h │ │ ├── vhost-user.h │ │ └── vhost_net.h │ ├── qapi │ │ ├── clone-visitor.h │ │ ├── dealloc-visitor.h │ │ ├── error.h │ │ ├── opts-visitor.h │ │ ├── qmp-event.h │ │ ├── qmp │ │ │ ├── dispatch.h │ │ │ ├── json-lexer.h │ │ │ ├── json-parser.h │ │ │ ├── json-streamer.h │ │ │ ├── qbool.h │ │ │ ├── qdict.h │ │ │ ├── qerror.h │ │ │ ├── qjson.h │ │ │ ├── qlist.h │ │ │ ├── qlit.h │ │ │ ├── qnull.h │ │ │ ├── qnum.h │ │ │ ├── qobject.h │ │ │ └── qstring.h │ │ ├── qobject-input-visitor.h │ │ ├── qobject-output-visitor.h │ │ ├── string-input-visitor.h │ │ ├── string-output-visitor.h │ │ ├── util.h │ │ ├── visitor-impl.h │ │ └── visitor.h │ ├── qemu-common.h │ ├── qemu-io.h │ ├── qemu │ │ ├── acl.h │ │ ├── atomic.h │ │ ├── base64.h │ │ ├── bcd.h │ │ ├── bitmap.h │ │ ├── bitops.h │ │ ├── bswap.h │ │ ├── buffer.h │ │ ├── compiler.h │ │ ├── config-file.h │ │ ├── coroutine.h │ │ ├── coroutine_int.h │ │ ├── cpuid.h │ │ ├── crc32c.h │ │ ├── cutils.h │ │ ├── envlist.h │ │ ├── error-report.h │ │ ├── event_notifier.h │ │ ├── fifo32.h │ │ ├── fifo8.h │ │ ├── fprintf-fn.h │ │ ├── futex.h │ │ ├── hbitmap.h │ │ ├── help_option.h │ │ ├── host-utils.h │ │ ├── id.h │ │ ├── int128.h │ │ ├── iov.h │ │ ├── iova-tree.h │ │ ├── jhash.h │ │ ├── lockable.h │ │ ├── log-for-trace.h │ │ ├── log.h │ │ ├── main-loop.h │ │ ├── memfd.h │ │ ├── mmap-alloc.h │ │ ├── module.h │ │ ├── notify.h │ │ ├── option.h │ │ ├── option_int.h │ │ ├── osdep.h │ │ ├── path.h │ │ ├── processor.h │ │ ├── qdist.h │ │ ├── qht.h │ │ ├── queue.h │ │ ├── range.h │ │ ├── ratelimit.h │ │ ├── rcu.h │ │ ├── rcu_queue.h │ │ ├── readline.h │ │ ├── seqlock.h │ │ ├── sockets.h │ │ ├── stats64.h │ │ ├── sys_membarrier.h │ │ ├── systemd.h │ │ ├── thread-posix.h │ │ ├── thread-win32.h │ │ ├── thread.h │ │ ├── throttle-options.h │ │ ├── throttle.h │ │ ├── timed-average.h │ │ ├── timer.h │ │ ├── typedefs.h │ │ ├── unicode.h │ │ ├── uri.h │ │ ├── uuid.h │ │ ├── vfio-helpers.h │ │ └── xattr.h │ ├── qom │ │ ├── cpu.h │ │ ├── object.h │ │ ├── object_interfaces.h │ │ └── qom-qobject.h │ ├── scsi │ │ ├── constants.h │ │ ├── pr-manager.h │ │ └── utils.h │ ├── standard-headers │ │ ├── asm-s390 │ │ │ └── virtio-ccw.h │ │ ├── asm-x86 │ │ │ └── hyperv.h │ │ ├── drivers │ │ │ └── infiniband │ │ │ │ └── hw │ │ │ │ └── vmw_pvrdma │ │ │ │ ├── pvrdma_dev_api.h │ │ │ │ ├── pvrdma_ring.h │ │ │ │ └── pvrdma_verbs.h │ │ ├── drm │ │ │ └── drm_fourcc.h │ │ ├── linux │ │ │ ├── ethtool.h │ │ │ ├── if_ether.h │ │ │ ├── input-event-codes.h │ │ │ ├── input.h │ │ │ ├── kernel.h │ │ │ ├── pci_regs.h │ │ │ ├── sysinfo.h │ │ │ ├── types.h │ │ │ ├── virtio_9p.h │ │ │ ├── virtio_balloon.h │ │ │ ├── virtio_blk.h │ │ │ ├── virtio_config.h │ │ │ ├── virtio_console.h │ │ │ ├── virtio_crypto.h │ │ │ ├── virtio_gpu.h │ │ │ ├── virtio_ids.h │ │ │ ├── virtio_input.h │ │ │ ├── virtio_mmio.h │ │ │ ├── virtio_net.h │ │ │ ├── virtio_pci.h │ │ │ ├── virtio_ring.h │ │ │ ├── virtio_rng.h │ │ │ ├── virtio_scsi.h │ │ │ ├── virtio_types.h │ │ │ └── virtio_vsock.h │ │ └── rdma │ │ │ └── vmw_pvrdma-abi.h │ ├── sysemu │ │ ├── accel.h │ │ ├── arch_init.h │ │ ├── balloon.h │ │ ├── block-backend.h │ │ ├── blockdev.h │ │ ├── bt.h │ │ ├── cpus.h │ │ ├── cryptodev-vhost-user.h │ │ ├── cryptodev-vhost.h │ │ ├── cryptodev.h │ │ ├── device_tree.h │ │ ├── dma.h │ │ ├── dump-arch.h │ │ ├── dump.h │ │ ├── hax.h │ │ ├── hostmem.h │ │ ├── hvf.h │ │ ├── hw_accel.h │ │ ├── iothread.h │ │ ├── kvm.h │ │ ├── kvm_int.h │ │ ├── memory_mapping.h │ │ ├── numa.h │ │ ├── os-posix.h │ │ ├── os-win32.h │ │ ├── qtest.h │ │ ├── replay.h │ │ ├── reset.h │ │ ├── rng-random.h │ │ ├── rng.h │ │ ├── seccomp.h │ │ ├── sev.h │ │ ├── sysemu.h │ │ ├── tpm.h │ │ ├── tpm_backend.h │ │ ├── watchdog.h │ │ ├── whpx.h │ │ └── xen-mapcache.h │ ├── trace-tcg.h │ └── ui │ │ ├── console.h │ │ ├── egl-context.h │ │ ├── egl-helpers.h │ │ ├── gtk.h │ │ ├── input.h │ │ ├── pixel_ops.h │ │ ├── qemu-pixman.h │ │ ├── qemu-spice.h │ │ ├── sdl2.h │ │ ├── shader.h │ │ └── spice-display.h ├── io │ ├── Makefile.objs │ ├── channel-buffer.c │ ├── channel-command.c │ ├── channel-file.c │ ├── channel-socket.c │ ├── channel-tls.c │ ├── channel-util.c │ ├── channel-watch.c │ ├── channel-websock.c │ ├── channel.c │ ├── dns-resolver.c │ ├── net-listener.c │ ├── task.c │ └── trace-events ├── ioport.c ├── iothread.c ├── libdecnumber │ ├── Makefile.objs │ ├── decContext.c │ ├── decNumber.c │ └── dpd │ │ ├── decimal128.c │ │ ├── decimal32.c │ │ └── decimal64.c ├── linux-headers │ ├── COPYING │ ├── README │ ├── asm-arm │ │ ├── kvm.h │ │ ├── kvm_para.h │ │ ├── unistd-common.h │ │ ├── unistd-eabi.h │ │ ├── unistd-oabi.h │ │ └── unistd.h │ ├── asm-arm64 │ │ ├── kvm.h │ │ ├── kvm_para.h │ │ └── unistd.h │ ├── asm-generic │ │ └── kvm_para.h │ ├── asm-mips │ │ ├── kvm.h │ │ ├── kvm_para.h │ │ └── unistd.h │ ├── asm-powerpc │ │ ├── epapr_hcalls.h │ │ ├── kvm.h │ │ ├── kvm_para.h │ │ └── unistd.h │ ├── asm-s390 │ │ ├── kvm.h │ │ ├── kvm_para.h │ │ ├── unistd.h │ │ ├── unistd_32.h │ │ └── unistd_64.h │ ├── asm-x86 │ │ ├── hyperv.h │ │ ├── kvm.h │ │ ├── kvm_para.h │ │ ├── unistd.h │ │ ├── unistd_32.h │ │ ├── unistd_64.h │ │ └── unistd_x32.h │ └── linux │ │ ├── kvm.h │ │ ├── kvm_para.h │ │ ├── psci.h │ │ ├── psp-sev.h │ │ ├── userfaultfd.h │ │ ├── vfio.h │ │ ├── vfio_ccw.h │ │ ├── vhost.h │ │ ├── virtio_config.h │ │ └── virtio_ring.h ├── linux-user │ ├── Makefile.objs │ ├── aarch64 │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── alpha │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.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_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── cris │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── elfload.c │ ├── errno_defs.h │ ├── flat.h │ ├── flatload.c │ ├── host │ │ ├── aarch64 │ │ │ ├── hostdep.h │ │ │ └── safe-syscall.inc.S │ │ ├── arm │ │ │ ├── hostdep.h │ │ │ └── safe-syscall.inc.S │ │ ├── i386 │ │ │ ├── hostdep.h │ │ │ └── safe-syscall.inc.S │ │ ├── ia64 │ │ │ └── hostdep.h │ │ ├── mips │ │ │ └── hostdep.h │ │ ├── ppc │ │ │ └── hostdep.h │ │ ├── ppc64 │ │ │ ├── hostdep.h │ │ │ └── safe-syscall.inc.S │ │ ├── s390 │ │ │ └── hostdep.h │ │ ├── s390x │ │ │ ├── hostdep.h │ │ │ └── safe-syscall.inc.S │ │ ├── sparc │ │ │ └── hostdep.h │ │ ├── sparc64 │ │ │ └── hostdep.h │ │ ├── x32 │ │ │ └── hostdep.h │ │ └── x86_64 │ │ │ ├── hostdep.h │ │ │ └── safe-syscall.inc.S │ ├── hppa │ │ ├── sockbits.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── i386 │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── ioctls.h │ ├── linux_loop.h │ ├── linuxload.c │ ├── m68k-sim.c │ ├── m68k │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── main.c │ ├── microblaze │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── mips │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── mips64 │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── mmap.c │ ├── nios2 │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── openrisc │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── ppc │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── qemu.h │ ├── riscv │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── s390x │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── safe-syscall.S │ ├── sh4 │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── signal.c │ ├── socket.h │ ├── sparc │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── sparc64 │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── strace.c │ ├── strace.list │ ├── syscall.c │ ├── syscall_defs.h │ ├── syscall_types.h │ ├── target_flat.h │ ├── tilegx │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── trace-events │ ├── uaccess.c │ ├── uname.c │ ├── uname.h │ ├── vm86.c │ ├── x86_64 │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ └── xtensa │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_elf.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h ├── memory.c ├── memory_ldst.inc.c ├── memory_mapping.c ├── migration │ ├── Makefile.objs │ ├── block-dirty-bitmap.c │ ├── block.c │ ├── block.h │ ├── channel.c │ ├── channel.h │ ├── colo-comm.c │ ├── colo-failover.c │ ├── colo.c │ ├── exec.c │ ├── exec.h │ ├── fd.c │ ├── fd.h │ ├── global_state.c │ ├── migration.c │ ├── migration.h │ ├── page_cache.c │ ├── page_cache.h │ ├── postcopy-ram.c │ ├── postcopy-ram.h │ ├── qemu-file-channel.c │ ├── qemu-file-channel.h │ ├── qemu-file.c │ ├── qemu-file.h │ ├── qjson.c │ ├── qjson.h │ ├── ram.c │ ├── ram.h │ ├── rdma.c │ ├── rdma.h │ ├── savevm.c │ ├── savevm.h │ ├── socket.c │ ├── socket.h │ ├── tls.c │ ├── tls.h │ ├── trace-events │ ├── vmstate-types.c │ ├── vmstate.c │ ├── xbzrle.c │ └── xbzrle.h ├── module-common.c ├── monitor.c ├── nbd │ ├── Makefile.objs │ ├── client.c │ ├── common.c │ ├── nbd-internal.h │ ├── server.c │ └── trace-events ├── net │ ├── Makefile.objs │ ├── can │ │ ├── Makefile.objs │ │ ├── can_core.c │ │ ├── can_host.c │ │ └── can_socketcan.c │ ├── checksum.c │ ├── clients.h │ ├── colo-compare.c │ ├── colo.c │ ├── colo.h │ ├── dump.c │ ├── eth.c │ ├── filter-buffer.c │ ├── filter-mirror.c │ ├── filter-replay.c │ ├── filter-rewriter.c │ ├── filter.c │ ├── hub.c │ ├── hub.h │ ├── l2tpv3.c │ ├── net.c │ ├── netmap.c │ ├── queue.c │ ├── slirp.c │ ├── socket.c │ ├── tap-bsd.c │ ├── tap-linux.c │ ├── tap-linux.h │ ├── tap-solaris.c │ ├── tap-stub.c │ ├── tap-win32.c │ ├── tap.c │ ├── tap_int.h │ ├── trace-events │ ├── util.c │ ├── util.h │ ├── vde.c │ └── vhost-user.c ├── numa.c ├── os-posix.c ├── os-win32.c ├── pc-bios │ ├── Makefile │ ├── QEMU,cgthree.bin │ ├── QEMU,tcx.bin │ ├── README │ ├── bamboo.dtb │ ├── bamboo.dts │ ├── bios-256k.bin │ ├── bios.bin │ ├── canyonlands.dtb │ ├── canyonlands.dts │ ├── efi-e1000.rom │ ├── efi-e1000e.rom │ ├── efi-eepro100.rom │ ├── efi-ne2k_pci.rom │ ├── efi-pcnet.rom │ ├── efi-rtl8139.rom │ ├── efi-virtio.rom │ ├── efi-vmxnet3.rom │ ├── hppa-firmware.img │ ├── keymaps │ │ ├── Makefile │ │ ├── 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 │ ├── linuxboot_dma.bin │ ├── multiboot.bin │ ├── openbios-ppc │ ├── openbios-sparc32 │ ├── openbios-sparc64 │ ├── optionrom │ │ ├── Makefile │ │ ├── code16gcc.h │ │ ├── flat.lds │ │ ├── kvmvapic.S │ │ ├── linuxboot.S │ │ ├── linuxboot_dma.c │ │ ├── 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 │ ├── qemu-icon.bmp │ ├── qemu-nsis.bmp │ ├── qemu-nsis.ico │ ├── qemu.rsrc │ ├── qemu_logo.svg │ ├── qemu_logo_no_text.svg │ ├── qemu_vga.ndrv │ ├── s390-ccw.img │ ├── s390-ccw │ │ ├── Makefile │ │ ├── bootmap.c │ │ ├── bootmap.h │ │ ├── bswap.h │ │ ├── cio.h │ │ ├── iplb.h │ │ ├── libc.c │ │ ├── libc.h │ │ ├── main.c │ │ ├── menu.c │ │ ├── netboot.mak │ │ ├── netmain.c │ │ ├── s390-ccw.h │ │ ├── sclp.c │ │ ├── sclp.h │ │ ├── scsi.h │ │ ├── start.S │ │ ├── virtio-blkdev.c │ │ ├── virtio-net.c │ │ ├── virtio-scsi.c │ │ ├── virtio-scsi.h │ │ ├── virtio.c │ │ └── virtio.h │ ├── s390-netboot.img │ ├── sgabios.bin │ ├── skiboot.lid │ ├── slof.bin │ ├── spapr-rtas.bin │ ├── spapr-rtas │ │ ├── Makefile │ │ └── spapr-rtas.S │ ├── u-boot-sam460-20100605.bin │ ├── u-boot.e500 │ ├── vgabios-cirrus.bin │ ├── vgabios-qxl.bin │ ├── vgabios-stdvga.bin │ ├── vgabios-virtio.bin │ ├── vgabios-vmware.bin │ └── vgabios.bin ├── po │ ├── Makefile │ ├── bg.po │ ├── de_DE.po │ ├── fr_FR.po │ ├── hu.po │ ├── it.po │ ├── messages.po │ ├── tr.po │ └── zh_CN.po ├── qapi │ ├── Makefile.objs │ ├── block-core.json │ ├── block.json │ ├── char.json │ ├── common.json │ ├── crypto.json │ ├── introspect.json │ ├── migration.json │ ├── misc.json │ ├── net.json │ ├── opts-visitor.c │ ├── qapi-clone-visitor.c │ ├── qapi-dealloc-visitor.c │ ├── qapi-schema.json │ ├── qapi-util.c │ ├── qapi-visit-core.c │ ├── qmp-dispatch.c │ ├── qmp-event.c │ ├── qmp-registry.c │ ├── qobject-input-visitor.c │ ├── qobject-output-visitor.c │ ├── rocker.json │ ├── run-state.json │ ├── sockets.json │ ├── string-input-visitor.c │ ├── string-output-visitor.c │ ├── tpm.json │ ├── trace-events │ ├── trace.json │ ├── transaction.json │ └── ui.json ├── qdev-monitor.c ├── qdict-test-data.txt ├── qemu-bridge-helper.c ├── qemu-doc.texi ├── qemu-ga.texi ├── qemu-img-cmds.hx ├── qemu-img.c ├── qemu-img.texi ├── qemu-io-cmds.c ├── qemu-io.c ├── qemu-keymap.c ├── qemu-nbd.c ├── qemu-nbd.texi ├── qemu-option-trace.texi ├── qemu-options-wrapper.h ├── qemu-options.h ├── qemu-options.hx ├── qemu-seccomp.c ├── qemu-tech.texi ├── 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 │ ├── installer │ │ └── qemu-ga.wxs │ ├── main.c │ ├── qapi-schema.json │ ├── service-win32.c │ ├── service-win32.h │ ├── vss-win32.c │ ├── vss-win32.h │ └── vss-win32 │ │ ├── Makefile.objs │ │ ├── install.cpp │ │ ├── install.h │ │ ├── provider.cpp │ │ ├── qga-vss.def │ │ ├── qga-vss.idl │ │ ├── qga-vss.tlb │ │ ├── requester.cpp │ │ ├── requester.h │ │ ├── vss-common.h │ │ └── vss-handles.h ├── qmp.c ├── qobject │ ├── Makefile.objs │ ├── json-lexer.c │ ├── json-parser.c │ ├── json-streamer.c │ ├── qbool.c │ ├── qdict.c │ ├── qjson.c │ ├── qlist.c │ ├── qlit.c │ ├── qnull.c │ ├── qnum.c │ ├── qobject.c │ └── qstring.c ├── qom │ ├── Makefile.objs │ ├── container.c │ ├── cpu.c │ ├── object.c │ ├── object_interfaces.c │ ├── qom-qobject.c │ └── trace-events ├── qtest.c ├── replay │ ├── Makefile.objs │ ├── replay-audio.c │ ├── replay-char.c │ ├── replay-events.c │ ├── replay-input.c │ ├── replay-internal.c │ ├── replay-internal.h │ ├── replay-net.c │ ├── replay-snapshot.c │ ├── replay-time.c │ └── replay.c ├── replication.c ├── replication.h ├── roms │ ├── Makefile │ ├── QemuMacDrivers │ │ ├── COPYING │ │ ├── QemuVGADriver │ │ │ ├── QemuVGADriver.mcp.xml │ │ │ └── src │ │ │ │ ├── DriverDoDriverIO.c │ │ │ │ ├── DriverGestaltHandler.c │ │ │ │ ├── DriverQDCalls.c │ │ │ │ ├── DriverQDCalls.h │ │ │ │ ├── QemuVga.c │ │ │ │ ├── QemuVga.h │ │ │ │ ├── VideoDriver.exp │ │ │ │ ├── VideoDriverPrivate.h │ │ │ │ └── VideoDriverPrototypes.h │ │ ├── builds │ │ │ ├── qemu_vga.ndrv │ │ │ └── qemu_vga_debugosi.ndrv │ │ ├── cleanup.sh │ │ └── shared │ │ │ ├── LinuxOSI.h │ │ │ ├── LinuxOSI.s │ │ │ ├── LinuxOSIDefs.s │ │ │ ├── MacDriverUtils.c │ │ │ ├── MacDriverUtils.h │ │ │ ├── MakeFunction.s │ │ │ ├── logger.h │ │ │ └── vsprintf.c │ ├── SLOF │ │ ├── .gitignore │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.gen │ │ ├── README │ │ ├── VERSION │ │ ├── board-js2x │ │ │ ├── Makefile │ │ │ ├── Makefile.dirs │ │ │ ├── config │ │ │ ├── include │ │ │ │ ├── bmc.h │ │ │ │ ├── hw.h │ │ │ │ ├── nvramlog.h │ │ │ │ ├── product.h │ │ │ │ └── southbridge.h │ │ │ ├── llfw │ │ │ │ ├── Cboot.S │ │ │ │ ├── Makefile │ │ │ │ ├── board_io.S │ │ │ │ ├── hw.c │ │ │ │ ├── stage2.c │ │ │ │ ├── stage2.h │ │ │ │ ├── stage2.lds │ │ │ │ ├── stage2_head.S │ │ │ │ ├── stage_s.S │ │ │ │ ├── stage_s.lds │ │ │ │ ├── startup.S │ │ │ │ └── u4mem.c │ │ │ ├── romfs │ │ │ │ └── boot_rom.ffs │ │ │ ├── rtas │ │ │ │ ├── Makefile │ │ │ │ ├── i2c_bmc.oco │ │ │ │ ├── ipmi_oem.oco │ │ │ │ ├── rtas_board.c │ │ │ │ ├── rtas_board.h │ │ │ │ ├── rtas_flash.c │ │ │ │ ├── rtas_flash.h │ │ │ │ ├── rtas_i2c_bmc.h │ │ │ │ ├── rtas_ipmi_bmc.h │ │ │ │ ├── rtas_out.c │ │ │ │ ├── rtas_pci.c │ │ │ │ └── rtas_table.c │ │ │ └── slof │ │ │ │ ├── Makefile │ │ │ │ ├── OF.fs │ │ │ │ ├── attu.fs │ │ │ │ ├── bcm57xx.fs │ │ │ │ ├── citrine-disk.fs │ │ │ │ ├── citrine-flash.fs │ │ │ │ ├── citrine.fs │ │ │ │ ├── copyright-oss.fs │ │ │ │ ├── cpu.fs │ │ │ │ ├── dart.fs │ │ │ │ ├── dma-function.fs │ │ │ │ ├── flash.fs │ │ │ │ ├── freq.fs │ │ │ │ ├── header.fs │ │ │ │ ├── helper.fs │ │ │ │ ├── ht.fs │ │ │ │ ├── i2c.fs │ │ │ │ ├── io.fs │ │ │ │ ├── ioapic.fs │ │ │ │ ├── ipmi-kcs.fs │ │ │ │ ├── ipmi-vpd.fs │ │ │ │ ├── memory.fs │ │ │ │ ├── mpic.fs │ │ │ │ ├── pci-aliases.fs │ │ │ │ ├── pci-bridge_1022_7460.fs │ │ │ │ ├── pci-capabilities.fs │ │ │ │ ├── pci-class_03.fs │ │ │ │ ├── pci-device_1002_515e.fs │ │ │ │ ├── pci-device_1014_028c.fs │ │ │ │ ├── pci-device_1014_02bd.fs │ │ │ │ ├── pci-device_1022_7451.fs │ │ │ │ ├── pci-device_1022_7468.fs │ │ │ │ ├── pci-device_1022_7469.fs │ │ │ │ ├── pci-device_14e4_16a8.fs │ │ │ │ ├── pci-interrupts.fs │ │ │ │ ├── rtas.fs │ │ │ │ ├── rtc.fs │ │ │ │ ├── serial.fs │ │ │ │ ├── sio.fs │ │ │ │ ├── tpm.fs │ │ │ │ ├── tree.fs │ │ │ │ ├── u4-mem.fs │ │ │ │ ├── version.c │ │ │ │ └── vga-display.fs │ │ ├── board-qemu │ │ │ ├── Makefile │ │ │ ├── Makefile.dirs │ │ │ ├── config │ │ │ ├── include │ │ │ │ ├── hw.h │ │ │ │ ├── nvramlog.h │ │ │ │ ├── product.h │ │ │ │ └── southbridge.h │ │ │ ├── llfw │ │ │ │ ├── Cboot.S │ │ │ │ ├── Makefile │ │ │ │ ├── board_io.S │ │ │ │ ├── stage2.c │ │ │ │ ├── stage2.h │ │ │ │ ├── stage2.lds │ │ │ │ ├── stage2_head.S │ │ │ │ ├── startup.S │ │ │ │ └── version.S │ │ │ ├── romfs │ │ │ │ └── boot_rom.ffs │ │ │ └── slof │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── OF.fs │ │ │ │ ├── archsupport.fs │ │ │ │ ├── copyright-oss.fs │ │ │ │ ├── dev-null.fs │ │ │ │ ├── e1k.fs │ │ │ │ ├── fdt-fl.fs │ │ │ │ ├── fdt.fs │ │ │ │ ├── header.fs │ │ │ │ ├── helper.fs │ │ │ │ ├── hvterm.fs │ │ │ │ ├── pci-aliases.fs │ │ │ │ ├── pci-capabilities.fs │ │ │ │ ├── pci-device_1013_00b8.fs │ │ │ │ ├── pci-device_1234_1111.fs │ │ │ │ ├── pci-device_1af4_1000.fs │ │ │ │ ├── pci-device_1af4_1001.fs │ │ │ │ ├── pci-device_1af4_1003.fs │ │ │ │ ├── pci-device_1af4_1004.fs │ │ │ │ ├── pci-device_1af4_1009.fs │ │ │ │ ├── pci-device_1af4_1041.fs │ │ │ │ ├── pci-device_1af4_1042.fs │ │ │ │ ├── pci-device_1af4_1043.fs │ │ │ │ ├── pci-device_1af4_1048.fs │ │ │ │ ├── pci-device_1af4_1049.fs │ │ │ │ ├── pci-device_1af4_1050.fs │ │ │ │ ├── pci-device_8086_100e.fs │ │ │ │ ├── pci-interrupts.fs │ │ │ │ ├── pci-phb.fs │ │ │ │ ├── qemu-bootlist.fs │ │ │ │ ├── qemu-vga.fs │ │ │ │ ├── rtas-nvram.fs │ │ │ │ ├── rtas.fs │ │ │ │ ├── tree.fs │ │ │ │ ├── version.S │ │ │ │ ├── vio-hvterm.fs │ │ │ │ ├── vio-veth.fs │ │ │ │ ├── vio-vscsi.fs │ │ │ │ ├── virtio-block.fs │ │ │ │ ├── virtio-fs.fs │ │ │ │ ├── virtio-net.fs │ │ │ │ ├── virtio-scsi.fs │ │ │ │ └── virtio-serial.fs │ │ ├── clients │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── clients.mk │ │ │ ├── net-snk │ │ │ │ ├── Makefile │ │ │ │ ├── app │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── biosemu │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── biosemu.c │ │ │ │ │ │ ├── biosemu.h │ │ │ │ │ │ ├── debug.c │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── device.c │ │ │ │ │ │ ├── device.h │ │ │ │ │ │ ├── interrupt.c │ │ │ │ │ │ ├── interrupt.h │ │ │ │ │ │ ├── io.c │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── mem.c │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ ├── vbe.c │ │ │ │ │ │ └── vbe.h │ │ │ │ │ └── main.c │ │ │ │ ├── client.lds │ │ │ │ ├── include │ │ │ │ │ ├── crt0.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── fileio.h │ │ │ │ │ ├── kernel.h │ │ │ │ │ ├── of.h │ │ │ │ │ ├── pci.h │ │ │ │ │ ├── rtas.h │ │ │ │ │ └── time.h │ │ │ │ ├── kernel │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── crt0.c │ │ │ │ │ ├── entry.S │ │ │ │ │ ├── init.c │ │ │ │ │ ├── systemcall.c │ │ │ │ │ └── timer.c │ │ │ │ ├── libc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── sbrk.c │ │ │ │ │ └── time │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ftime.c │ │ │ │ │ │ └── timer.c │ │ │ │ ├── make.rules │ │ │ │ ├── oflib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── entry.S │ │ │ │ │ ├── of.c │ │ │ │ │ ├── pci.c │ │ │ │ │ └── rtas.c │ │ │ │ └── sec-client.lds │ │ │ └── takeover │ │ │ │ ├── Makefile │ │ │ │ ├── client.lds │ │ │ │ ├── entry.S │ │ │ │ ├── main.c │ │ │ │ ├── ppc32wrap.S │ │ │ │ ├── takeover.h │ │ │ │ └── takeover.oco │ │ ├── include │ │ │ ├── allocator.h │ │ │ ├── byteorder.h │ │ │ ├── calculatecrc.h │ │ │ ├── helpers.h │ │ │ ├── libelf.h │ │ │ ├── macros.h │ │ │ ├── memmap.h │ │ │ ├── netdriver.h │ │ │ ├── pcd.h │ │ │ ├── ppc970 │ │ │ │ ├── cache.h │ │ │ │ └── cpu.h │ │ │ ├── ppcp7 │ │ │ │ ├── cache.h │ │ │ │ └── cpu.h │ │ │ ├── romfs.h │ │ │ ├── rtas.h │ │ │ ├── rtas_table.h │ │ │ ├── termctrl.h │ │ │ └── xvect.h │ │ ├── lib │ │ │ ├── Makefile │ │ │ ├── libbases │ │ │ │ ├── Makefile │ │ │ │ ├── libbases.code │ │ │ │ └── libbases.in │ │ │ ├── libbcm │ │ │ │ ├── Makefile │ │ │ │ ├── bcm.code │ │ │ │ ├── bcm.in │ │ │ │ ├── bcm57xx.c │ │ │ │ └── bcm57xx.h │ │ │ ├── libbootmenu │ │ │ │ ├── Makefile │ │ │ │ ├── bootmenu.c │ │ │ │ ├── bootmenu.code │ │ │ │ ├── bootmenu.h │ │ │ │ └── bootmenu.in │ │ │ ├── libbootmsg │ │ │ │ ├── Makefile │ │ │ │ ├── bootmsg.code │ │ │ │ ├── bootmsg.in │ │ │ │ ├── bootmsg_lvl.S │ │ │ │ └── libbootmsg.h │ │ │ ├── libc │ │ │ │ ├── Makefile │ │ │ │ ├── README.txt │ │ │ │ ├── ctype │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── isdigit.c │ │ │ │ │ ├── isprint.c │ │ │ │ │ ├── isspace.c │ │ │ │ │ ├── isxdigit.c │ │ │ │ │ ├── tolower.c │ │ │ │ │ └── toupper.c │ │ │ │ ├── getopt │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ └── getopt.c │ │ │ │ ├── include │ │ │ │ │ ├── ctype.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── getopt.h │ │ │ │ │ ├── limits.h │ │ │ │ │ ├── stdarg.h │ │ │ │ │ ├── stdbool.h │ │ │ │ │ ├── stddef.h │ │ │ │ │ ├── stdint.h │ │ │ │ │ ├── stdio.h │ │ │ │ │ ├── stdlib.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── sys │ │ │ │ │ │ └── socket.h │ │ │ │ │ └── unistd.h │ │ │ │ ├── stdio │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── fileno.c │ │ │ │ │ ├── fprintf.c │ │ │ │ │ ├── fscanf.c │ │ │ │ │ ├── printf.c │ │ │ │ │ ├── putc.c │ │ │ │ │ ├── putchar.c │ │ │ │ │ ├── puts.c │ │ │ │ │ ├── scanf.c │ │ │ │ │ ├── setvbuf.c │ │ │ │ │ ├── sprintf.c │ │ │ │ │ ├── stdchnls.c │ │ │ │ │ ├── vfprintf.c │ │ │ │ │ ├── vfscanf.c │ │ │ │ │ ├── vsnprintf.c │ │ │ │ │ ├── vsprintf.c │ │ │ │ │ └── vsscanf.c │ │ │ │ ├── stdlib │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── atoi.c │ │ │ │ │ ├── atol.c │ │ │ │ │ ├── error.c │ │ │ │ │ ├── free.c │ │ │ │ │ ├── malloc.c │ │ │ │ │ ├── malloc_defs.h │ │ │ │ │ ├── memalign.c │ │ │ │ │ ├── rand.c │ │ │ │ │ ├── realloc.c │ │ │ │ │ ├── strtol.c │ │ │ │ │ └── strtoul.c │ │ │ │ └── string │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── memchr.c │ │ │ │ │ ├── memcmp.c │ │ │ │ │ ├── memcpy.c │ │ │ │ │ ├── memmove.c │ │ │ │ │ ├── memset.c │ │ │ │ │ ├── strcasecmp.c │ │ │ │ │ ├── strcat.c │ │ │ │ │ ├── strchr.c │ │ │ │ │ ├── strcmp.c │ │ │ │ │ ├── strcpy.c │ │ │ │ │ ├── strlen.c │ │ │ │ │ ├── strncasecmp.c │ │ │ │ │ ├── strncmp.c │ │ │ │ │ ├── strncpy.c │ │ │ │ │ ├── strstr.c │ │ │ │ │ └── strtok.c │ │ │ ├── libe1k │ │ │ │ ├── Makefile │ │ │ │ ├── e1k.c │ │ │ │ ├── e1k.code │ │ │ │ ├── e1k.h │ │ │ │ └── e1k.in │ │ │ ├── libelf │ │ │ │ ├── Makefile │ │ │ │ ├── elf.c │ │ │ │ ├── elf32.c │ │ │ │ ├── elf64.c │ │ │ │ ├── elf_claim.c │ │ │ │ ├── libelf.code │ │ │ │ └── libelf.in │ │ │ ├── libhvcall │ │ │ │ ├── Makefile │ │ │ │ ├── brokensc1.c │ │ │ │ ├── hvcall.S │ │ │ │ ├── hvcall.code │ │ │ │ ├── hvcall.in │ │ │ │ ├── libhvcall.h │ │ │ │ └── rfill.c │ │ │ ├── libipmi │ │ │ │ ├── Makefile │ │ │ │ ├── libipmi.code │ │ │ │ ├── libipmi.h │ │ │ │ ├── libipmi.in │ │ │ │ └── libipmi.oco │ │ │ ├── libnativeio │ │ │ │ ├── nativeio.code │ │ │ │ └── nativeio.in │ │ │ ├── libnet │ │ │ │ ├── Makefile │ │ │ │ ├── args.c │ │ │ │ ├── args.h │ │ │ │ ├── bootp.c │ │ │ │ ├── dhcp.c │ │ │ │ ├── dhcp.h │ │ │ │ ├── dhcpv6.c │ │ │ │ ├── dhcpv6.h │ │ │ │ ├── dns.c │ │ │ │ ├── dns.h │ │ │ │ ├── ethernet.c │ │ │ │ ├── ethernet.h │ │ │ │ ├── icmpv6.c │ │ │ │ ├── icmpv6.h │ │ │ │ ├── ipv4.c │ │ │ │ ├── ipv4.h │ │ │ │ ├── ipv6.c │ │ │ │ ├── ipv6.h │ │ │ │ ├── libnet.code │ │ │ │ ├── libnet.in │ │ │ │ ├── ndp.c │ │ │ │ ├── ndp.h │ │ │ │ ├── netapps.h │ │ │ │ ├── netload.c │ │ │ │ ├── ping.c │ │ │ │ ├── tcp.c │ │ │ │ ├── tcp.h │ │ │ │ ├── tftp.c │ │ │ │ ├── tftp.h │ │ │ │ ├── time.h │ │ │ │ ├── udp.c │ │ │ │ └── udp.h │ │ │ ├── libnvram │ │ │ │ ├── Makefile │ │ │ │ ├── envvar.c │ │ │ │ ├── libnvram.code │ │ │ │ ├── libnvram.in │ │ │ │ ├── nvram.c │ │ │ │ └── nvram.h │ │ │ ├── libusb │ │ │ │ ├── Makefile │ │ │ │ ├── tools.h │ │ │ │ ├── usb-core.c │ │ │ │ ├── usb-core.h │ │ │ │ ├── usb-ehci.c │ │ │ │ ├── usb-ehci.h │ │ │ │ ├── usb-hid.c │ │ │ │ ├── usb-hub.c │ │ │ │ ├── usb-key.c │ │ │ │ ├── usb-key.h │ │ │ │ ├── usb-ohci.c │ │ │ │ ├── usb-ohci.h │ │ │ │ ├── usb-slof.c │ │ │ │ ├── usb-xhci.c │ │ │ │ ├── usb-xhci.h │ │ │ │ ├── usb.code │ │ │ │ ├── usb.h │ │ │ │ └── usb.in │ │ │ ├── libveth │ │ │ │ ├── Makefile │ │ │ │ ├── veth.c │ │ │ │ ├── veth.code │ │ │ │ ├── veth.h │ │ │ │ └── veth.in │ │ │ └── libvirtio │ │ │ │ ├── Makefile │ │ │ │ ├── p9.c │ │ │ │ ├── p9.h │ │ │ │ ├── virtio-9p.c │ │ │ │ ├── virtio-9p.h │ │ │ │ ├── virtio-blk.c │ │ │ │ ├── virtio-blk.h │ │ │ │ ├── virtio-internal.h │ │ │ │ ├── virtio-net.c │ │ │ │ ├── virtio-net.h │ │ │ │ ├── virtio-scsi.c │ │ │ │ ├── virtio-scsi.h │ │ │ │ ├── virtio-serial.c │ │ │ │ ├── virtio-serial.h │ │ │ │ ├── virtio.c │ │ │ │ ├── virtio.code │ │ │ │ ├── virtio.h │ │ │ │ └── virtio.in │ │ ├── llfw │ │ │ ├── boot_abort.S │ │ │ ├── boot_abort.h │ │ │ ├── clib │ │ │ │ ├── Makefile.inc │ │ │ │ ├── iolib.c │ │ │ │ └── iolib.h │ │ │ ├── io_generic │ │ │ │ ├── Makefile.inc │ │ │ │ └── io_generic.S │ │ │ ├── nvramlog.S │ │ │ ├── romfs.S │ │ │ └── romfs_wrap.c │ │ ├── make.rules │ │ ├── other-licence │ │ │ ├── Makefile │ │ │ └── x86emu │ │ │ │ ├── Makefile │ │ │ │ ├── x86emu_changes.diff │ │ │ │ └── x86emu_download.sh │ │ ├── romfs │ │ │ ├── header.img │ │ │ └── tools │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── build_ffs.c │ │ │ │ ├── cfg_parse.c │ │ │ │ ├── cfgparse.h │ │ │ │ ├── crclib.c │ │ │ │ ├── crclib.h │ │ │ │ ├── create_crc.c │ │ │ │ ├── create_flash.c │ │ │ │ └── createcrc.h │ │ ├── rtas │ │ │ ├── Makefile.inc │ │ │ ├── flash │ │ │ │ ├── block_lists.c │ │ │ │ ├── block_lists.h │ │ │ │ └── tmpXXX.update-comments │ │ │ ├── reloc.S │ │ │ ├── rtas.lds │ │ │ ├── rtas_call.c │ │ │ ├── rtas_common.S │ │ │ └── rtas_entry.S │ │ ├── slof │ │ │ ├── Makefile.inc │ │ │ ├── OF.lds │ │ │ ├── allocator.c │ │ │ ├── default-font.c │ │ │ ├── engine.in │ │ │ ├── entry.S │ │ │ ├── fs │ │ │ │ ├── accept.fs │ │ │ │ ├── alloc-mem-debug.fs │ │ │ │ ├── alloc-mem.fs │ │ │ │ ├── available.fs │ │ │ │ ├── banner.fs │ │ │ │ ├── base.fs │ │ │ │ ├── boot.fs │ │ │ │ ├── bootmsg.fs │ │ │ │ ├── claim.fs │ │ │ │ ├── client.fs │ │ │ │ ├── debug.fs │ │ │ │ ├── devices │ │ │ │ │ ├── pci-class_02.fs │ │ │ │ │ ├── pci-class_0c.fs │ │ │ │ │ └── pci-device_10de_0141.fs │ │ │ │ ├── dictionary.fs │ │ │ │ ├── display.fs │ │ │ │ ├── dma-function.fs │ │ │ │ ├── dump.fs │ │ │ │ ├── elf.fs │ │ │ │ ├── envvar.fs │ │ │ │ ├── envvar_defaults.fs │ │ │ │ ├── exception.fs │ │ │ │ ├── fbuffer.fs │ │ │ │ ├── fcode │ │ │ │ │ ├── 1275.fs │ │ │ │ │ ├── core.fs │ │ │ │ │ ├── evaluator.fs │ │ │ │ │ ├── little-big.fs │ │ │ │ │ ├── locals.fs │ │ │ │ │ └── tokens.fs │ │ │ │ ├── find-hash.fs │ │ │ │ ├── generic-disk.fs │ │ │ │ ├── graphics.fs │ │ │ │ ├── history.fs │ │ │ │ ├── ide.fs │ │ │ │ ├── instance.fs │ │ │ │ ├── little-endian.fs │ │ │ │ ├── loaders.fs │ │ │ │ ├── logging.fs │ │ │ │ ├── node.fs │ │ │ │ ├── nvram.fs │ │ │ │ ├── packages.fs │ │ │ │ ├── packages │ │ │ │ │ ├── deblocker.fs │ │ │ │ │ ├── disk-label.fs │ │ │ │ │ ├── ext2-files.fs │ │ │ │ │ ├── fat-files.fs │ │ │ │ │ ├── filler.fs │ │ │ │ │ ├── iso-9660.fs │ │ │ │ │ ├── obp-tftp.fs │ │ │ │ │ └── rom-files.fs │ │ │ │ ├── pci-bridge.fs │ │ │ │ ├── pci-class-code-names.fs │ │ │ │ ├── pci-config-bridge.fs │ │ │ │ ├── pci-device.fs │ │ │ │ ├── pci-helper.fs │ │ │ │ ├── pci-properties.fs │ │ │ │ ├── pci-scan.fs │ │ │ │ ├── preprocessor.fs │ │ │ │ ├── property.fs │ │ │ │ ├── quiesce.fs │ │ │ │ ├── romfs.fs │ │ │ │ ├── root.fs │ │ │ │ ├── rtas │ │ │ │ │ ├── rtas-cpu.fs │ │ │ │ │ ├── rtas-flash.fs │ │ │ │ │ ├── rtas-init.fs │ │ │ │ │ ├── rtas-reboot.fs │ │ │ │ │ └── rtas-vpd.fs │ │ │ │ ├── scsi-disk.fs │ │ │ │ ├── scsi-host-helpers.fs │ │ │ │ ├── scsi-loader.fs │ │ │ │ ├── scsi-probe-helpers.fs │ │ │ │ ├── scsi-support.fs │ │ │ │ ├── search.fs │ │ │ │ ├── stack.fs │ │ │ │ ├── start-up.fs │ │ │ │ ├── term-io.fs │ │ │ │ ├── terminal.fs │ │ │ │ ├── timebase.fs │ │ │ │ ├── translate.fs │ │ │ │ ├── update_flash.fs │ │ │ │ ├── usb │ │ │ │ │ ├── dev-hci.fs │ │ │ │ │ ├── dev-hub.fs │ │ │ │ │ ├── dev-keyb.fs │ │ │ │ │ ├── dev-mouse.fs │ │ │ │ │ ├── dev-parent-calls.fs │ │ │ │ │ ├── dev-storage.fs │ │ │ │ │ ├── slofdev.fs │ │ │ │ │ └── usb-static.fs │ │ │ │ ├── vpd-bootlist.fs │ │ │ │ └── xmodem.fs │ │ │ ├── helpers.c │ │ │ ├── lowmem.S │ │ │ ├── ofw.S │ │ │ ├── paflof.c │ │ │ ├── paflof.h │ │ │ ├── ppc64.c │ │ │ ├── ppc64.code │ │ │ ├── ppc64.h │ │ │ ├── ppc64.in │ │ │ ├── prep.h │ │ │ ├── prim.code │ │ │ ├── prim.in │ │ │ ├── ref.pl │ │ │ ├── sbrk.c │ │ │ └── types.h │ │ └── tools │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── create_reloc_table.sh │ │ │ ├── gen_reloc_table.c │ │ │ └── sloffs.c │ ├── config.seabios-128k │ ├── config.seabios-256k │ ├── config.vga-cirrus │ ├── config.vga-isavga │ ├── config.vga-qxl │ ├── config.vga-stdvga │ ├── config.vga-virtio │ ├── config.vga-vmware │ ├── configure-seabios.sh │ ├── ipxe │ │ ├── .travis.yml │ │ ├── COPYING │ │ ├── COPYING.GPLv2 │ │ ├── COPYING.UBDL │ │ ├── README │ │ ├── contrib │ │ │ ├── README │ │ │ ├── coverity │ │ │ │ └── model.c │ │ │ ├── errdb │ │ │ │ ├── .gitignore │ │ │ │ └── errdb.pl │ │ │ ├── rom-o-matic │ │ │ │ ├── README │ │ │ │ ├── bottom.php │ │ │ │ ├── build.php │ │ │ │ ├── customize-flags.php │ │ │ │ ├── directions.php │ │ │ │ ├── doc │ │ │ │ │ ├── AUTOBOOT_CMD.html │ │ │ │ │ ├── BANNER_TIMEOUT.html │ │ │ │ │ ├── COMCONSOLE.html │ │ │ │ │ ├── COMDATA.html │ │ │ │ │ ├── COMPARITY.html │ │ │ │ │ ├── COMPRESERVE.html │ │ │ │ │ ├── COMSPEED.html │ │ │ │ │ ├── COMSTOP.html │ │ │ │ │ ├── CONFIG_CMD.html │ │ │ │ │ ├── CONSOLE_PC_BIOS.html │ │ │ │ │ ├── CONSOLE_SERIAL.html │ │ │ │ │ ├── CRYPTO_80211_WEP.html │ │ │ │ │ ├── CRYPTO_80211_WPA.html │ │ │ │ │ ├── CRYPTO_80211_WPA2.html │ │ │ │ │ ├── DHCP_CMD.html │ │ │ │ │ ├── DNS_RESOLVER.html │ │ │ │ │ ├── DOWNLOAD_PROTO_FTP.html │ │ │ │ │ ├── DOWNLOAD_PROTO_HTTP.html │ │ │ │ │ ├── DOWNLOAD_PROTO_TFTP.html │ │ │ │ │ ├── IFMGMT_CMD.html │ │ │ │ │ ├── IMAGE_BZIMAGE.html │ │ │ │ │ ├── IMAGE_CMD.html │ │ │ │ │ ├── IMAGE_ELF.html │ │ │ │ │ ├── IMAGE_MULTIBOOT.html │ │ │ │ │ ├── IMAGE_NBI.html │ │ │ │ │ ├── IMAGE_PXE.html │ │ │ │ │ ├── IMAGE_SCRIPT.html │ │ │ │ │ ├── IWMGMT_CMD.html │ │ │ │ │ ├── NMB_RESOLVER.html │ │ │ │ │ ├── NVO_CMD.html │ │ │ │ │ ├── ROUTE_CMD.html │ │ │ │ │ └── SANBOOT_CMD.html │ │ │ │ ├── flag-table.php │ │ │ │ ├── globals.php │ │ │ │ ├── index.php │ │ │ │ ├── top.php │ │ │ │ └── utils.php │ │ │ └── vm │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── bochs-writable-ROM-patch │ │ │ │ ├── bochsrc.txt │ │ │ │ ├── cow │ │ │ │ └── serial-console │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── Makefile.efi │ │ │ ├── Makefile.housekeeping │ │ │ ├── arch │ │ │ ├── arm │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.efi │ │ │ │ ├── core │ │ │ │ │ └── arm_io.c │ │ │ │ ├── include │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── acpi.h │ │ │ │ │ │ ├── endian.h │ │ │ │ │ │ ├── entropy.h │ │ │ │ │ │ ├── errfile.h │ │ │ │ │ │ ├── hyperv.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── iomap.h │ │ │ │ │ │ ├── nap.h │ │ │ │ │ │ ├── pci_io.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── sanboot.h │ │ │ │ │ │ ├── smbios.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── uaccess.h │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ ├── umalloc.h │ │ │ │ │ │ └── xen.h │ │ │ │ │ └── ipxe │ │ │ │ │ │ ├── arm_io.h │ │ │ │ │ │ └── efi │ │ │ │ │ │ └── efiarm_nap.h │ │ │ │ └── interface │ │ │ │ │ └── efi │ │ │ │ │ └── efiarm_nap.c │ │ │ ├── arm32 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.efi │ │ │ │ ├── core │ │ │ │ │ ├── arm32_bigint.c │ │ │ │ │ └── setjmp.S │ │ │ │ ├── include │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── bigint.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteswap.h │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ ├── profile.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── strings.h │ │ │ │ │ │ └── tcpip.h │ │ │ │ │ ├── efi │ │ │ │ │ │ └── ipxe │ │ │ │ │ │ │ └── dhcp_arch.h │ │ │ │ │ ├── gdbmach.h │ │ │ │ │ ├── limits.h │ │ │ │ │ └── setjmp.h │ │ │ │ └── libgcc │ │ │ │ │ ├── lldivmod.S │ │ │ │ │ └── llshift.S │ │ │ ├── arm64 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.efi │ │ │ │ ├── core │ │ │ │ │ ├── arm64_bigint.c │ │ │ │ │ ├── arm64_string.c │ │ │ │ │ ├── arm64_tcpip.c │ │ │ │ │ └── setjmp.S │ │ │ │ └── include │ │ │ │ │ ├── bits │ │ │ │ │ ├── bigint.h │ │ │ │ │ ├── bitops.h │ │ │ │ │ ├── byteswap.h │ │ │ │ │ ├── compiler.h │ │ │ │ │ ├── profile.h │ │ │ │ │ ├── stdint.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── strings.h │ │ │ │ │ └── tcpip.h │ │ │ │ │ ├── efi │ │ │ │ │ └── ipxe │ │ │ │ │ │ └── dhcp_arch.h │ │ │ │ │ ├── gdbmach.h │ │ │ │ │ ├── limits.h │ │ │ │ │ └── setjmp.h │ │ │ ├── i386 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.efi │ │ │ │ ├── Makefile.linux │ │ │ │ ├── Makefile.pcbios │ │ │ │ ├── README.i386 │ │ │ │ ├── core │ │ │ │ │ ├── gdbidt.S │ │ │ │ │ ├── linux │ │ │ │ │ │ ├── linux_syscall.S │ │ │ │ │ │ └── linuxprefix.S │ │ │ │ │ ├── nulltrap.c │ │ │ │ │ └── setjmp.S │ │ │ │ ├── include │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── byteswap.h │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ ├── hyperv.h │ │ │ │ │ │ ├── linux_api.h │ │ │ │ │ │ ├── profile.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ └── strings.h │ │ │ │ │ ├── efi │ │ │ │ │ │ └── ipxe │ │ │ │ │ │ │ └── dhcp_arch.h │ │ │ │ │ ├── gdbmach.h │ │ │ │ │ ├── ipxe │ │ │ │ │ │ └── msr.h │ │ │ │ │ ├── limits.h │ │ │ │ │ ├── pcbios │ │ │ │ │ │ └── ipxe │ │ │ │ │ │ │ └── dhcp_arch.h │ │ │ │ │ └── setjmp.h │ │ │ │ ├── kir-Makefile │ │ │ │ ├── scripts │ │ │ │ │ ├── i386-kir.lds │ │ │ │ │ └── linux.lds │ │ │ │ └── tests │ │ │ │ │ ├── gdbstub_test.S │ │ │ │ │ └── gdbstub_test.gdb │ │ │ ├── x86 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.efi │ │ │ │ ├── Makefile.linux │ │ │ │ ├── Makefile.pcbios │ │ │ │ ├── core │ │ │ │ │ ├── basemem_packet.c │ │ │ │ │ ├── cachedhcp.c │ │ │ │ │ ├── cpuid.c │ │ │ │ │ ├── cpuid_settings.c │ │ │ │ │ ├── debugcon.c │ │ │ │ │ ├── dumpregs.c │ │ │ │ │ ├── gdbmach.c │ │ │ │ │ ├── linux │ │ │ │ │ │ ├── linux_api.c │ │ │ │ │ │ └── linux_strerror.c │ │ │ │ │ ├── patch_cf.S │ │ │ │ │ ├── pci_autoboot.c │ │ │ │ │ ├── pcidirect.c │ │ │ │ │ ├── pic8259.c │ │ │ │ │ ├── pit8254.c │ │ │ │ │ ├── rdtsc_timer.c │ │ │ │ │ ├── relocate.c │ │ │ │ │ ├── runtime.c │ │ │ │ │ ├── stack.S │ │ │ │ │ ├── stack16.S │ │ │ │ │ ├── video_subr.c │ │ │ │ │ ├── vram_settings.c │ │ │ │ │ ├── x86_bigint.c │ │ │ │ │ ├── x86_io.c │ │ │ │ │ ├── x86_string.c │ │ │ │ │ ├── x86_tcpip.c │ │ │ │ │ └── x86_uart.c │ │ │ │ ├── drivers │ │ │ │ │ ├── hyperv │ │ │ │ │ │ ├── hyperv.c │ │ │ │ │ │ └── hyperv.h │ │ │ │ │ ├── net │ │ │ │ │ │ ├── undi.c │ │ │ │ │ │ ├── undiisr.S │ │ │ │ │ │ ├── undiload.c │ │ │ │ │ │ ├── undinet.c │ │ │ │ │ │ ├── undionly.c │ │ │ │ │ │ ├── undipreload.c │ │ │ │ │ │ └── undirom.c │ │ │ │ │ └── xen │ │ │ │ │ │ ├── hvm.c │ │ │ │ │ │ └── hvm.h │ │ │ │ ├── hci │ │ │ │ │ └── commands │ │ │ │ │ │ ├── cpuid_cmd.c │ │ │ │ │ │ └── pxe_cmd.c │ │ │ │ ├── image │ │ │ │ │ ├── bootsector.c │ │ │ │ │ ├── bzimage.c │ │ │ │ │ ├── com32.c │ │ │ │ │ ├── comboot.c │ │ │ │ │ ├── elfboot.c │ │ │ │ │ ├── initrd.c │ │ │ │ │ ├── multiboot.c │ │ │ │ │ ├── nbi.c │ │ │ │ │ ├── pxe_image.c │ │ │ │ │ └── sdi.c │ │ │ │ ├── include │ │ │ │ │ ├── basemem.h │ │ │ │ │ ├── basemem_packet.h │ │ │ │ │ ├── bios.h │ │ │ │ │ ├── bios_disks.h │ │ │ │ │ ├── biosint.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── acpi.h │ │ │ │ │ │ ├── bigint.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── endian.h │ │ │ │ │ │ ├── entropy.h │ │ │ │ │ │ ├── errfile.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── iomap.h │ │ │ │ │ │ ├── linux_api_platform.h │ │ │ │ │ │ ├── nap.h │ │ │ │ │ │ ├── pci_io.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── sanboot.h │ │ │ │ │ │ ├── smbios.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── tcpip.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── uaccess.h │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ ├── umalloc.h │ │ │ │ │ │ └── xen.h │ │ │ │ │ ├── bochs.h │ │ │ │ │ ├── bootsector.h │ │ │ │ │ ├── bzimage.h │ │ │ │ │ ├── comboot.h │ │ │ │ │ ├── fakee820.h │ │ │ │ │ ├── initrd.h │ │ │ │ │ ├── int13.h │ │ │ │ │ ├── ipxe │ │ │ │ │ │ ├── acpipwr.h │ │ │ │ │ │ ├── apm.h │ │ │ │ │ │ ├── bios_nap.h │ │ │ │ │ │ ├── bios_reboot.h │ │ │ │ │ │ ├── bios_sanboot.h │ │ │ │ │ │ ├── bios_smbios.h │ │ │ │ │ │ ├── cpuid.h │ │ │ │ │ │ ├── efi │ │ │ │ │ │ │ └── efix86_nap.h │ │ │ │ │ │ ├── errno │ │ │ │ │ │ │ └── pcbios.h │ │ │ │ │ │ ├── guestrpc.h │ │ │ │ │ │ ├── iomap_pages.h │ │ │ │ │ │ ├── memtop_umalloc.h │ │ │ │ │ │ ├── pcibios.h │ │ │ │ │ │ ├── pcidirect.h │ │ │ │ │ │ ├── pit8254.h │ │ │ │ │ │ ├── rsdp.h │ │ │ │ │ │ ├── rtc_entropy.h │ │ │ │ │ │ ├── rtc_time.h │ │ │ │ │ │ ├── vesafb.h │ │ │ │ │ │ ├── vmware.h │ │ │ │ │ │ └── x86_io.h │ │ │ │ │ ├── kir.h │ │ │ │ │ ├── libkir.h │ │ │ │ │ ├── librm.h │ │ │ │ │ ├── linux │ │ │ │ │ │ └── ipxe │ │ │ │ │ │ │ └── dhcp_arch.h │ │ │ │ │ ├── memsizes.h │ │ │ │ │ ├── multiboot.h │ │ │ │ │ ├── pic8259.h │ │ │ │ │ ├── pnpbios.h │ │ │ │ │ ├── pxe.h │ │ │ │ │ ├── pxe_api.h │ │ │ │ │ ├── pxe_call.h │ │ │ │ │ ├── pxe_error.h │ │ │ │ │ ├── pxe_types.h │ │ │ │ │ ├── realmode.h │ │ │ │ │ ├── registers.h │ │ │ │ │ ├── rmsetjmp.h │ │ │ │ │ ├── rtc.h │ │ │ │ │ ├── sdi.h │ │ │ │ │ ├── undi.h │ │ │ │ │ ├── undiload.h │ │ │ │ │ ├── undinet.h │ │ │ │ │ ├── undipreload.h │ │ │ │ │ ├── undirom.h │ │ │ │ │ └── vga.h │ │ │ │ ├── interface │ │ │ │ │ ├── efi │ │ │ │ │ │ └── efix86_nap.c │ │ │ │ │ ├── pcbios │ │ │ │ │ │ ├── acpipwr.c │ │ │ │ │ │ ├── apm.c │ │ │ │ │ │ ├── basemem.c │ │ │ │ │ │ ├── bios_console.c │ │ │ │ │ │ ├── bios_nap.c │ │ │ │ │ │ ├── bios_reboot.c │ │ │ │ │ │ ├── bios_smbios.c │ │ │ │ │ │ ├── bios_timer.c │ │ │ │ │ │ ├── biosint.c │ │ │ │ │ │ ├── e820mangler.S │ │ │ │ │ │ ├── fakee820.c │ │ │ │ │ │ ├── hidemem.c │ │ │ │ │ │ ├── int13.c │ │ │ │ │ │ ├── int13con.c │ │ │ │ │ │ ├── memmap.c │ │ │ │ │ │ ├── memtop_umalloc.c │ │ │ │ │ │ ├── pcibios.c │ │ │ │ │ │ ├── pnpbios.c │ │ │ │ │ │ ├── rsdp.c │ │ │ │ │ │ ├── rtc_entropy.c │ │ │ │ │ │ ├── rtc_time.c │ │ │ │ │ │ └── vesafb.c │ │ │ │ │ ├── pxe │ │ │ │ │ │ ├── pxe_call.c │ │ │ │ │ │ ├── pxe_entry.S │ │ │ │ │ │ ├── pxe_exit_hook.c │ │ │ │ │ │ ├── pxe_file.c │ │ │ │ │ │ ├── pxe_loader.c │ │ │ │ │ │ ├── pxe_preboot.c │ │ │ │ │ │ ├── pxe_tftp.c │ │ │ │ │ │ ├── pxe_udp.c │ │ │ │ │ │ └── pxe_undi.c │ │ │ │ │ ├── syslinux │ │ │ │ │ │ ├── com32_call.c │ │ │ │ │ │ ├── com32_wrapper.S │ │ │ │ │ │ ├── comboot_call.c │ │ │ │ │ │ └── comboot_resolv.c │ │ │ │ │ └── vmware │ │ │ │ │ │ ├── guestinfo.c │ │ │ │ │ │ ├── guestrpc.c │ │ │ │ │ │ ├── vmconsole.c │ │ │ │ │ │ └── vmware.c │ │ │ │ ├── prefix │ │ │ │ │ ├── bootpart.S │ │ │ │ │ ├── dskprefix.S │ │ │ │ │ ├── exeprefix.S │ │ │ │ │ ├── hdprefix.S │ │ │ │ │ ├── isaromprefix.S │ │ │ │ │ ├── kkkpxeprefix.S │ │ │ │ │ ├── kkpxeprefix.S │ │ │ │ │ ├── kpxeprefix.S │ │ │ │ │ ├── libprefix.S │ │ │ │ │ ├── lkrnprefix.S │ │ │ │ │ ├── mbr.S │ │ │ │ │ ├── mromprefix.S │ │ │ │ │ ├── nbiprefix.S │ │ │ │ │ ├── nullprefix.S │ │ │ │ │ ├── pciromprefix.S │ │ │ │ │ ├── pxeprefix.S │ │ │ │ │ ├── romprefix.S │ │ │ │ │ ├── undiloader.S │ │ │ │ │ ├── unlzma.S │ │ │ │ │ ├── unlzma16.S │ │ │ │ │ └── usbdisk.S │ │ │ │ ├── scripts │ │ │ │ │ └── pcbios.lds │ │ │ │ ├── tests │ │ │ │ │ └── comboot │ │ │ │ │ │ ├── shuffle-simple.asm │ │ │ │ │ │ └── version.asm │ │ │ │ └── transitions │ │ │ │ │ ├── liba20.S │ │ │ │ │ ├── libkir.S │ │ │ │ │ ├── libpm.S │ │ │ │ │ ├── librm.S │ │ │ │ │ ├── librm_mgmt.c │ │ │ │ │ └── librm_test.c │ │ │ └── x86_64 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.efi │ │ │ │ ├── Makefile.linux │ │ │ │ ├── Makefile.pcbios │ │ │ │ ├── core │ │ │ │ ├── gdbidt.S │ │ │ │ ├── linux │ │ │ │ │ ├── linux_syscall.S │ │ │ │ │ └── linuxprefix.S │ │ │ │ └── setjmp.S │ │ │ │ ├── include │ │ │ │ ├── bits │ │ │ │ │ ├── byteswap.h │ │ │ │ │ ├── compiler.h │ │ │ │ │ ├── hyperv.h │ │ │ │ │ ├── linux_api.h │ │ │ │ │ ├── profile.h │ │ │ │ │ ├── stdint.h │ │ │ │ │ └── strings.h │ │ │ │ ├── efi │ │ │ │ │ └── ipxe │ │ │ │ │ │ └── dhcp_arch.h │ │ │ │ ├── gdbmach.h │ │ │ │ ├── ipxe │ │ │ │ │ └── msr.h │ │ │ │ ├── limits.h │ │ │ │ ├── pcbios │ │ │ │ │ └── ipxe │ │ │ │ │ │ └── dhcp_arch.h │ │ │ │ └── setjmp.h │ │ │ │ └── scripts │ │ │ │ └── linux.lds │ │ │ ├── config │ │ │ ├── branding.h │ │ │ ├── cloud │ │ │ │ ├── aws.ipxe │ │ │ │ ├── colour.h │ │ │ │ ├── console.h │ │ │ │ ├── crypto.h │ │ │ │ ├── gce.ipxe │ │ │ │ ├── general.h │ │ │ │ ├── serial.h │ │ │ │ ├── settings.h │ │ │ │ ├── sideband.h │ │ │ │ └── usb.h │ │ │ ├── colour.h │ │ │ ├── config.c │ │ │ ├── config_asn1.c │ │ │ ├── config_crypto.c │ │ │ ├── config_efi.c │ │ │ ├── config_ethernet.c │ │ │ ├── config_fc.c │ │ │ ├── config_http.c │ │ │ ├── config_infiniband.c │ │ │ ├── config_linux.c │ │ │ ├── config_net80211.c │ │ │ ├── config_pcbios.c │ │ │ ├── config_pixbuf.c │ │ │ ├── config_romprefix.c │ │ │ ├── config_route.c │ │ │ ├── config_timer.c │ │ │ ├── config_usb.c │ │ │ ├── console.h │ │ │ ├── crypto.h │ │ │ ├── defaults.h │ │ │ ├── defaults │ │ │ │ ├── efi.h │ │ │ │ ├── linux.h │ │ │ │ └── pcbios.h │ │ │ ├── dhcp.h │ │ │ ├── entropy.h │ │ │ ├── fault.h │ │ │ ├── general.h │ │ │ ├── ioapi.h │ │ │ ├── isa.h │ │ │ ├── named.h │ │ │ ├── nap.h │ │ │ ├── qemu │ │ │ │ ├── colour.h │ │ │ │ ├── console.h │ │ │ │ ├── crypto.h │ │ │ │ ├── general.h │ │ │ │ ├── serial.h │ │ │ │ ├── settings.h │ │ │ │ ├── sideband.h │ │ │ │ └── usb.h │ │ │ ├── reboot.h │ │ │ ├── sanboot.h │ │ │ ├── serial.h │ │ │ ├── settings.h │ │ │ ├── sideband.h │ │ │ ├── time.h │ │ │ ├── timer.h │ │ │ ├── umalloc.h │ │ │ ├── usb.h │ │ │ └── vbox │ │ │ │ ├── README │ │ │ │ ├── colour.h │ │ │ │ ├── console.h │ │ │ │ ├── crypto.h │ │ │ │ ├── general.h │ │ │ │ ├── serial.h │ │ │ │ ├── settings.h │ │ │ │ ├── sideband.h │ │ │ │ └── usb.h │ │ │ ├── core │ │ │ ├── acpi.c │ │ │ ├── acpi_settings.c │ │ │ ├── ansicol.c │ │ │ ├── ansicoldef.c │ │ │ ├── ansiesc.c │ │ │ ├── asprintf.c │ │ │ ├── assert.c │ │ │ ├── base16.c │ │ │ ├── base64.c │ │ │ ├── basename.c │ │ │ ├── bitmap.c │ │ │ ├── blockdev.c │ │ │ ├── blocktrans.c │ │ │ ├── console.c │ │ │ ├── cpio.c │ │ │ ├── ctype.c │ │ │ ├── cwuri.c │ │ │ ├── debug.c │ │ │ ├── debug_md5.c │ │ │ ├── device.c │ │ │ ├── downloader.c │ │ │ ├── dummy_sanboot.c │ │ │ ├── edd.c │ │ │ ├── errno.c │ │ │ ├── exec.c │ │ │ ├── fault.c │ │ │ ├── fbcon.c │ │ │ ├── fnrec.c │ │ │ ├── gdbserial.c │ │ │ ├── gdbstub.c │ │ │ ├── gdbudp.c │ │ │ ├── getkey.c │ │ │ ├── getopt.c │ │ │ ├── hw.c │ │ │ ├── i82365.c │ │ │ ├── image.c │ │ │ ├── init.c │ │ │ ├── interface.c │ │ │ ├── iobuf.c │ │ │ ├── iomap_virt.c │ │ │ ├── isqrt.c │ │ │ ├── job.c │ │ │ ├── linebuf.c │ │ │ ├── lineconsole.c │ │ │ ├── list.c │ │ │ ├── log.c │ │ │ ├── main.c │ │ │ ├── malloc.c │ │ │ ├── memmap_settings.c │ │ │ ├── menu.c │ │ │ ├── monojob.c │ │ │ ├── null_acpi.c │ │ │ ├── null_nap.c │ │ │ ├── null_reboot.c │ │ │ ├── null_sanboot.c │ │ │ ├── null_time.c │ │ │ ├── nvo.c │ │ │ ├── open.c │ │ │ ├── params.c │ │ │ ├── parseopt.c │ │ │ ├── pc_kbd.c │ │ │ ├── pcmcia.c │ │ │ ├── pending.c │ │ │ ├── pinger.c │ │ │ ├── pixbuf.c │ │ │ ├── pool.c │ │ │ ├── posix_io.c │ │ │ ├── process.c │ │ │ ├── profile.c │ │ │ ├── quiesce.c │ │ │ ├── random.c │ │ │ ├── refcnt.c │ │ │ ├── resolv.c │ │ │ ├── sanboot.c │ │ │ ├── serial.c │ │ │ ├── settings.c │ │ │ ├── string.c │ │ │ ├── stringextra.c │ │ │ ├── time.c │ │ │ ├── timer.c │ │ │ ├── uart.c │ │ │ ├── uri.c │ │ │ ├── uuid.c │ │ │ ├── version.c │ │ │ ├── vsprintf.c │ │ │ ├── wchar.c │ │ │ ├── xfer.c │ │ │ └── xferbuf.c │ │ │ ├── crypto │ │ │ ├── aes.c │ │ │ ├── aes_wrap.c │ │ │ ├── arc4.c │ │ │ ├── asn1.c │ │ │ ├── bigint.c │ │ │ ├── cbc.c │ │ │ ├── certstore.c │ │ │ ├── chap.c │ │ │ ├── cms.c │ │ │ ├── crc32.c │ │ │ ├── crypto_null.c │ │ │ ├── deflate.c │ │ │ ├── drbg.c │ │ │ ├── ecb.c │ │ │ ├── entropy.c │ │ │ ├── hash_df.c │ │ │ ├── hmac.c │ │ │ ├── hmac_drbg.c │ │ │ ├── md5.c │ │ │ ├── mishmash │ │ │ │ ├── rsa_aes_cbc_sha1.c │ │ │ │ ├── rsa_aes_cbc_sha256.c │ │ │ │ ├── rsa_md5.c │ │ │ │ ├── rsa_sha1.c │ │ │ │ ├── rsa_sha224.c │ │ │ │ ├── rsa_sha256.c │ │ │ │ ├── rsa_sha384.c │ │ │ │ └── rsa_sha512.c │ │ │ ├── null_entropy.c │ │ │ ├── ocsp.c │ │ │ ├── privkey.c │ │ │ ├── random_nz.c │ │ │ ├── rbg.c │ │ │ ├── rootcert.c │ │ │ ├── rsa.c │ │ │ ├── sha1.c │ │ │ ├── sha1extra.c │ │ │ ├── sha224.c │ │ │ ├── sha256.c │ │ │ ├── sha384.c │ │ │ ├── sha512.c │ │ │ ├── sha512_224.c │ │ │ ├── sha512_256.c │ │ │ └── x509.c │ │ │ ├── doc │ │ │ ├── build_sys.dox │ │ │ └── pxe_extensions │ │ │ ├── doxygen.cfg │ │ │ ├── drivers │ │ │ ├── bitbash │ │ │ │ ├── bitbash.c │ │ │ │ ├── i2c_bit.c │ │ │ │ └── spi_bit.c │ │ │ ├── block │ │ │ │ ├── ata.c │ │ │ │ ├── ibft.c │ │ │ │ ├── scsi.c │ │ │ │ └── srp.c │ │ │ ├── bus │ │ │ │ ├── cdc.c │ │ │ │ ├── eisa.c │ │ │ │ ├── isa.c │ │ │ │ ├── isa_ids.c │ │ │ │ ├── isapnp.c │ │ │ │ ├── mca.c │ │ │ │ ├── pci.c │ │ │ │ ├── pci_settings.c │ │ │ │ ├── pcibackup.c │ │ │ │ ├── pciea.c │ │ │ │ ├── pciextra.c │ │ │ │ ├── pcivpd.c │ │ │ │ ├── usb.c │ │ │ │ ├── virtio-pci.c │ │ │ │ └── virtio-ring.c │ │ │ ├── infiniband │ │ │ │ ├── CIB_PRM.h │ │ │ │ ├── MT25218_PRM.h │ │ │ │ ├── MT25408_PRM.h │ │ │ │ ├── arbel.c │ │ │ │ ├── arbel.h │ │ │ │ ├── flexboot_nodnic.c │ │ │ │ ├── flexboot_nodnic.h │ │ │ │ ├── golan.c │ │ │ │ ├── golan.h │ │ │ │ ├── hermon.c │ │ │ │ ├── hermon.h │ │ │ │ ├── linda.c │ │ │ │ ├── linda.h │ │ │ │ ├── linda_fw.c │ │ │ │ ├── mlx_bitops.h │ │ │ │ ├── mlx_nodnic │ │ │ │ │ ├── include │ │ │ │ │ │ ├── mlx_cmd.h │ │ │ │ │ │ ├── mlx_device.h │ │ │ │ │ │ ├── mlx_nodnic_data_structures.h │ │ │ │ │ │ └── mlx_port.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── mlx_cmd.c │ │ │ │ │ │ ├── mlx_device.c │ │ │ │ │ │ └── mlx_port.c │ │ │ │ ├── mlx_utils │ │ │ │ │ ├── include │ │ │ │ │ │ ├── private │ │ │ │ │ │ │ ├── mlx_memory_priv.h │ │ │ │ │ │ │ ├── mlx_pci_priv.h │ │ │ │ │ │ │ └── mlx_utils_priv.h │ │ │ │ │ │ └── public │ │ │ │ │ │ │ ├── mlx_bail.h │ │ │ │ │ │ │ ├── mlx_icmd.h │ │ │ │ │ │ │ ├── mlx_logging.h │ │ │ │ │ │ │ ├── mlx_memory.h │ │ │ │ │ │ │ ├── mlx_pci.h │ │ │ │ │ │ │ ├── mlx_pci_gw.h │ │ │ │ │ │ │ ├── mlx_types.h │ │ │ │ │ │ │ └── mlx_utils.h │ │ │ │ │ ├── mlx_lib │ │ │ │ │ │ ├── mlx_blink_leds │ │ │ │ │ │ │ ├── mlx_blink_leds.c │ │ │ │ │ │ │ └── mlx_blink_leds.h │ │ │ │ │ │ ├── mlx_link_speed │ │ │ │ │ │ │ ├── mlx_link_speed.c │ │ │ │ │ │ │ └── mlx_link_speed.h │ │ │ │ │ │ ├── mlx_mtu │ │ │ │ │ │ │ ├── mlx_mtu.c │ │ │ │ │ │ │ └── mlx_mtu.h │ │ │ │ │ │ ├── mlx_nvconfig │ │ │ │ │ │ │ ├── mlx_nvconfig.c │ │ │ │ │ │ │ ├── mlx_nvconfig.h │ │ │ │ │ │ │ ├── mlx_nvconfig_defaults.c │ │ │ │ │ │ │ ├── mlx_nvconfig_defaults.h │ │ │ │ │ │ │ └── mlx_nvconfig_prm.h │ │ │ │ │ │ ├── mlx_reg_access │ │ │ │ │ │ │ ├── mlx_reg_access.c │ │ │ │ │ │ │ └── mlx_reg_access.h │ │ │ │ │ │ └── mlx_vmac │ │ │ │ │ │ │ ├── mlx_vmac.c │ │ │ │ │ │ │ └── mlx_vmac.h │ │ │ │ │ └── src │ │ │ │ │ │ └── public │ │ │ │ │ │ ├── mlx_icmd.c │ │ │ │ │ │ ├── mlx_memory.c │ │ │ │ │ │ ├── mlx_pci.c │ │ │ │ │ │ ├── mlx_pci_gw.c │ │ │ │ │ │ └── mlx_utils.c │ │ │ │ ├── mlx_utils_flexboot │ │ │ │ │ ├── include │ │ │ │ │ │ ├── mlx_logging_priv.h │ │ │ │ │ │ └── mlx_types_priv.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── mlx_memory_priv.c │ │ │ │ │ │ ├── mlx_pci_priv.c │ │ │ │ │ │ └── mlx_utils_priv.c │ │ │ │ ├── nodnic_prm.h │ │ │ │ ├── nodnic_shomron_prm.h │ │ │ │ ├── qib7322.c │ │ │ │ ├── qib7322.h │ │ │ │ ├── qib_7220_regs.h │ │ │ │ ├── qib_7322_regs.h │ │ │ │ └── qib_genbits.pl │ │ │ ├── linux │ │ │ │ ├── af_packet.c │ │ │ │ ├── linux.c │ │ │ │ └── tap.c │ │ │ ├── net │ │ │ │ ├── 3c503.c │ │ │ │ ├── 3c509-eisa.c │ │ │ │ ├── 3c509.c │ │ │ │ ├── 3c509.h │ │ │ │ ├── 3c515.c │ │ │ │ ├── 3c515.txt │ │ │ │ ├── 3c529.c │ │ │ │ ├── 3c595.c │ │ │ │ ├── 3c595.h │ │ │ │ ├── 3c5x9.c │ │ │ │ ├── 3c90x.c │ │ │ │ ├── 3c90x.h │ │ │ │ ├── acm.c │ │ │ │ ├── acm.h │ │ │ │ ├── amd8111e.c │ │ │ │ ├── amd8111e.h │ │ │ │ ├── ath │ │ │ │ │ ├── ath.h │ │ │ │ │ ├── ath5k │ │ │ │ │ │ ├── ath5k.c │ │ │ │ │ │ ├── ath5k.h │ │ │ │ │ │ ├── ath5k_attach.c │ │ │ │ │ │ ├── ath5k_caps.c │ │ │ │ │ │ ├── ath5k_desc.c │ │ │ │ │ │ ├── ath5k_dma.c │ │ │ │ │ │ ├── ath5k_eeprom.c │ │ │ │ │ │ ├── ath5k_gpio.c │ │ │ │ │ │ ├── ath5k_initvals.c │ │ │ │ │ │ ├── ath5k_pcu.c │ │ │ │ │ │ ├── ath5k_phy.c │ │ │ │ │ │ ├── ath5k_qcu.c │ │ │ │ │ │ ├── ath5k_reset.c │ │ │ │ │ │ ├── ath5k_rfkill.c │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ ├── desc.h │ │ │ │ │ │ ├── eeprom.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── rfbuffer.h │ │ │ │ │ │ └── rfgain.h │ │ │ │ │ ├── ath9k │ │ │ │ │ │ ├── ani.h │ │ │ │ │ │ ├── ar5008_initvals.h │ │ │ │ │ │ ├── ar9001_initvals.h │ │ │ │ │ │ ├── ar9002_initvals.h │ │ │ │ │ │ ├── ar9002_phy.h │ │ │ │ │ │ ├── ar9003_2p2_initvals.h │ │ │ │ │ │ ├── ar9003_eeprom.h │ │ │ │ │ │ ├── ar9003_mac.h │ │ │ │ │ │ ├── ar9003_phy.h │ │ │ │ │ │ ├── ar9340_initvals.h │ │ │ │ │ │ ├── ar9485_initvals.h │ │ │ │ │ │ ├── ath9k.c │ │ │ │ │ │ ├── ath9k.h │ │ │ │ │ │ ├── ath9k_ani.c │ │ │ │ │ │ ├── ath9k_ar5008_phy.c │ │ │ │ │ │ ├── ath9k_ar9002_calib.c │ │ │ │ │ │ ├── ath9k_ar9002_hw.c │ │ │ │ │ │ ├── ath9k_ar9002_mac.c │ │ │ │ │ │ ├── ath9k_ar9002_phy.c │ │ │ │ │ │ ├── ath9k_ar9003_calib.c │ │ │ │ │ │ ├── ath9k_ar9003_eeprom.c │ │ │ │ │ │ ├── ath9k_ar9003_hw.c │ │ │ │ │ │ ├── ath9k_ar9003_mac.c │ │ │ │ │ │ ├── ath9k_ar9003_phy.c │ │ │ │ │ │ ├── ath9k_calib.c │ │ │ │ │ │ ├── ath9k_common.c │ │ │ │ │ │ ├── ath9k_eeprom.c │ │ │ │ │ │ ├── ath9k_eeprom_4k.c │ │ │ │ │ │ ├── ath9k_eeprom_9287.c │ │ │ │ │ │ ├── ath9k_eeprom_def.c │ │ │ │ │ │ ├── ath9k_hw.c │ │ │ │ │ │ ├── ath9k_init.c │ │ │ │ │ │ ├── ath9k_mac.c │ │ │ │ │ │ ├── ath9k_main.c │ │ │ │ │ │ ├── ath9k_recv.c │ │ │ │ │ │ ├── ath9k_xmit.c │ │ │ │ │ │ ├── calib.h │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── eeprom.h │ │ │ │ │ │ ├── hw-ops.h │ │ │ │ │ │ ├── hw.h │ │ │ │ │ │ ├── mac.h │ │ │ │ │ │ ├── phy.h │ │ │ │ │ │ └── reg.h │ │ │ │ │ ├── ath_hw.c │ │ │ │ │ ├── ath_key.c │ │ │ │ │ ├── ath_regd.c │ │ │ │ │ ├── reg.h │ │ │ │ │ ├── regd.h │ │ │ │ │ └── regd_common.h │ │ │ │ ├── atl1e.c │ │ │ │ ├── atl1e.h │ │ │ │ ├── axge.c │ │ │ │ ├── axge.h │ │ │ │ ├── b44.c │ │ │ │ ├── b44.h │ │ │ │ ├── bnx2.c │ │ │ │ ├── bnx2.h │ │ │ │ ├── bnx2_fw.h │ │ │ │ ├── cs89x0.c │ │ │ │ ├── cs89x0.h │ │ │ │ ├── cs89x0.txt │ │ │ │ ├── davicom.c │ │ │ │ ├── depca.c │ │ │ │ ├── dm96xx.c │ │ │ │ ├── dm96xx.h │ │ │ │ ├── dmfe.c │ │ │ │ ├── ecm.c │ │ │ │ ├── ecm.h │ │ │ │ ├── eepro.c │ │ │ │ ├── eepro100.c │ │ │ │ ├── eepro100.h │ │ │ │ ├── efi │ │ │ │ │ ├── nii.c │ │ │ │ │ ├── nii.h │ │ │ │ │ ├── snp.c │ │ │ │ │ ├── snpnet.c │ │ │ │ │ ├── snpnet.h │ │ │ │ │ └── snponly.c │ │ │ │ ├── eoib.c │ │ │ │ ├── epic100.c │ │ │ │ ├── epic100.h │ │ │ │ ├── etherfabric.c │ │ │ │ ├── etherfabric.h │ │ │ │ ├── etherfabric_nic.h │ │ │ │ ├── exanic.c │ │ │ │ ├── exanic.h │ │ │ │ ├── forcedeth.c │ │ │ │ ├── forcedeth.h │ │ │ │ ├── hfa384x.h │ │ │ │ ├── igbvf │ │ │ │ │ ├── igbvf.h │ │ │ │ │ ├── igbvf_defines.h │ │ │ │ │ ├── igbvf_main.c │ │ │ │ │ ├── igbvf_mbx.c │ │ │ │ │ ├── igbvf_mbx.h │ │ │ │ │ ├── igbvf_osdep.h │ │ │ │ │ ├── igbvf_regs.h │ │ │ │ │ ├── igbvf_vf.c │ │ │ │ │ └── igbvf_vf.h │ │ │ │ ├── intel.c │ │ │ │ ├── intel.h │ │ │ │ ├── intelvf.c │ │ │ │ ├── intelvf.h │ │ │ │ ├── intelx.c │ │ │ │ ├── intelx.h │ │ │ │ ├── intelxvf.c │ │ │ │ ├── intelxvf.h │ │ │ │ ├── ipoib.c │ │ │ │ ├── jme.c │ │ │ │ ├── jme.h │ │ │ │ ├── lan78xx.c │ │ │ │ ├── lan78xx.h │ │ │ │ ├── legacy.c │ │ │ │ ├── mii.c │ │ │ │ ├── myri10ge.c │ │ │ │ ├── myri10ge_mcp.h │ │ │ │ ├── myson.c │ │ │ │ ├── myson.h │ │ │ │ ├── natsemi.c │ │ │ │ ├── natsemi.h │ │ │ │ ├── ncm.c │ │ │ │ ├── ncm.h │ │ │ │ ├── ne.c │ │ │ │ ├── ne2k_isa.c │ │ │ │ ├── netfront.c │ │ │ │ ├── netfront.h │ │ │ │ ├── netvsc.c │ │ │ │ ├── netvsc.h │ │ │ │ ├── ns8390.c │ │ │ │ ├── ns8390.h │ │ │ │ ├── p80211hdr.h │ │ │ │ ├── pcnet32.c │ │ │ │ ├── pcnet32.h │ │ │ │ ├── phantom │ │ │ │ │ ├── nx_bitops.h │ │ │ │ │ ├── nxhal_nic_interface.h │ │ │ │ │ ├── phantom.c │ │ │ │ │ ├── phantom.h │ │ │ │ │ └── phantom_hw.h │ │ │ │ ├── pnic.c │ │ │ │ ├── pnic_api.h │ │ │ │ ├── prism2.c │ │ │ │ ├── prism2_pci.c │ │ │ │ ├── prism2_plx.c │ │ │ │ ├── realtek.c │ │ │ │ ├── realtek.h │ │ │ │ ├── rhine.c │ │ │ │ ├── rhine.h │ │ │ │ ├── rtl818x │ │ │ │ │ ├── rtl8180.c │ │ │ │ │ ├── rtl8180_grf5101.c │ │ │ │ │ ├── rtl8180_max2820.c │ │ │ │ │ ├── rtl8180_sa2400.c │ │ │ │ │ ├── rtl8185.c │ │ │ │ │ ├── rtl8185_rtl8225.c │ │ │ │ │ ├── rtl818x.c │ │ │ │ │ └── rtl818x.h │ │ │ │ ├── sfc │ │ │ │ │ ├── ef10_regs.h │ │ │ │ │ ├── efx_bitfield.h │ │ │ │ │ ├── efx_common.c │ │ │ │ │ ├── efx_common.h │ │ │ │ │ ├── efx_hunt.c │ │ │ │ │ ├── efx_hunt.h │ │ │ │ │ ├── mc_driver_pcol.h │ │ │ │ │ ├── mcdi.h │ │ │ │ │ └── sfc_hunt.c │ │ │ │ ├── sis190.c │ │ │ │ ├── sis190.h │ │ │ │ ├── sis900.c │ │ │ │ ├── sis900.h │ │ │ │ ├── skeleton.c │ │ │ │ ├── skeleton.h │ │ │ │ ├── skge.c │ │ │ │ ├── skge.h │ │ │ │ ├── sky2.c │ │ │ │ ├── sky2.h │ │ │ │ ├── smc9000.c │ │ │ │ ├── smc9000.h │ │ │ │ ├── smsc75xx.c │ │ │ │ ├── smsc75xx.h │ │ │ │ ├── smsc95xx.c │ │ │ │ ├── smsc95xx.h │ │ │ │ ├── smscusb.c │ │ │ │ ├── smscusb.h │ │ │ │ ├── sundance.c │ │ │ │ ├── tg3 │ │ │ │ │ ├── tg3.c │ │ │ │ │ ├── tg3.h │ │ │ │ │ ├── tg3_hw.c │ │ │ │ │ └── tg3_phy.c │ │ │ │ ├── thunderx.c │ │ │ │ ├── thunderx.h │ │ │ │ ├── thunderxcfg.h │ │ │ │ ├── tlan.c │ │ │ │ ├── tlan.h │ │ │ │ ├── tulip.c │ │ │ │ ├── tulip.txt │ │ │ │ ├── velocity.c │ │ │ │ ├── velocity.h │ │ │ │ ├── virtio-net.c │ │ │ │ ├── virtio-net.h │ │ │ │ ├── vmxnet3.c │ │ │ │ ├── vmxnet3.h │ │ │ │ ├── vxge │ │ │ │ │ ├── vxge.c │ │ │ │ │ ├── vxge_config.c │ │ │ │ │ ├── vxge_config.h │ │ │ │ │ ├── vxge_main.c │ │ │ │ │ ├── vxge_main.h │ │ │ │ │ ├── vxge_reg.h │ │ │ │ │ ├── vxge_traffic.c │ │ │ │ │ ├── vxge_traffic.h │ │ │ │ │ └── vxge_version.h │ │ │ │ ├── w89c840.c │ │ │ │ ├── wd.c │ │ │ │ └── wlan_compat.h │ │ │ ├── nvs │ │ │ │ ├── nvs.c │ │ │ │ ├── nvsvpd.c │ │ │ │ ├── spi.c │ │ │ │ └── threewire.c │ │ │ └── usb │ │ │ │ ├── ehci.c │ │ │ │ ├── ehci.h │ │ │ │ ├── uhci.c │ │ │ │ ├── uhci.h │ │ │ │ ├── usbhid.c │ │ │ │ ├── usbhub.c │ │ │ │ ├── usbhub.h │ │ │ │ ├── usbio.c │ │ │ │ ├── usbio.h │ │ │ │ ├── usbkbd.c │ │ │ │ ├── usbkbd.h │ │ │ │ ├── usbnet.c │ │ │ │ ├── xhci.c │ │ │ │ └── xhci.h │ │ │ ├── hci │ │ │ ├── commands │ │ │ │ ├── autoboot_cmd.c │ │ │ │ ├── cert_cmd.c │ │ │ │ ├── config_cmd.c │ │ │ │ ├── console_cmd.c │ │ │ │ ├── dhcp_cmd.c │ │ │ │ ├── digest_cmd.c │ │ │ │ ├── fcmgmt_cmd.c │ │ │ │ ├── gdbstub_cmd.c │ │ │ │ ├── ibmgmt_cmd.c │ │ │ │ ├── ifmgmt_cmd.c │ │ │ │ ├── image_cmd.c │ │ │ │ ├── image_trust_cmd.c │ │ │ │ ├── ipstat_cmd.c │ │ │ │ ├── iwmgmt_cmd.c │ │ │ │ ├── login_cmd.c │ │ │ │ ├── lotest_cmd.c │ │ │ │ ├── menu_cmd.c │ │ │ │ ├── neighbour_cmd.c │ │ │ │ ├── nslookup_cmd.c │ │ │ │ ├── ntp_cmd.c │ │ │ │ ├── nvo_cmd.c │ │ │ │ ├── param_cmd.c │ │ │ │ ├── pci_cmd.c │ │ │ │ ├── ping_cmd.c │ │ │ │ ├── poweroff_cmd.c │ │ │ │ ├── profstat_cmd.c │ │ │ │ ├── reboot_cmd.c │ │ │ │ ├── route_cmd.c │ │ │ │ ├── sanboot_cmd.c │ │ │ │ ├── sync_cmd.c │ │ │ │ ├── time_cmd.c │ │ │ │ └── vlan_cmd.c │ │ │ ├── editstring.c │ │ │ ├── jumpscroll.c │ │ │ ├── keymap │ │ │ │ ├── keymap_al.c │ │ │ │ ├── keymap_az.c │ │ │ │ ├── keymap_bg.c │ │ │ │ ├── keymap_by.c │ │ │ │ ├── keymap_cf.c │ │ │ │ ├── keymap_cz.c │ │ │ │ ├── keymap_de.c │ │ │ │ ├── keymap_dk.c │ │ │ │ ├── keymap_es.c │ │ │ │ ├── keymap_et.c │ │ │ │ ├── keymap_fi.c │ │ │ │ ├── keymap_fr.c │ │ │ │ ├── keymap_gr.c │ │ │ │ ├── keymap_hu.c │ │ │ │ ├── keymap_il.c │ │ │ │ ├── keymap_it.c │ │ │ │ ├── keymap_lt.c │ │ │ │ ├── keymap_mk.c │ │ │ │ ├── keymap_mt.c │ │ │ │ ├── keymap_nl.c │ │ │ │ ├── keymap_no-latin1.c │ │ │ │ ├── keymap_no.c │ │ │ │ ├── keymap_pl.c │ │ │ │ ├── keymap_pt.c │ │ │ │ ├── keymap_ro.c │ │ │ │ ├── keymap_ru.c │ │ │ │ ├── keymap_sg.c │ │ │ │ ├── keymap_sr.c │ │ │ │ ├── keymap_th.c │ │ │ │ ├── keymap_ua.c │ │ │ │ ├── keymap_uk.c │ │ │ │ ├── keymap_us.c │ │ │ │ └── keymap_wo.c │ │ │ ├── linux_args.c │ │ │ ├── mucurses │ │ │ │ ├── alert.c │ │ │ │ ├── ansi_screen.c │ │ │ │ ├── clear.c │ │ │ │ ├── colour.c │ │ │ │ ├── cursor.h │ │ │ │ ├── edging.c │ │ │ │ ├── kb.c │ │ │ │ ├── mucurses.c │ │ │ │ ├── mucurses.h │ │ │ │ ├── print.c │ │ │ │ ├── print_nadv.c │ │ │ │ ├── slk.c │ │ │ │ ├── widgets │ │ │ │ │ └── editbox.c │ │ │ │ ├── winattrs.c │ │ │ │ ├── windows.c │ │ │ │ └── wininit.c │ │ │ ├── readline.c │ │ │ ├── shell.c │ │ │ ├── strerror.c │ │ │ ├── tui │ │ │ │ ├── login_ui.c │ │ │ │ ├── menu_ui.c │ │ │ │ └── settings_ui.c │ │ │ └── wireless_errors.c │ │ │ ├── image │ │ │ ├── der.c │ │ │ ├── efi_image.c │ │ │ ├── elf.c │ │ │ ├── embedded.c │ │ │ ├── pem.c │ │ │ ├── png.c │ │ │ ├── pnm.c │ │ │ ├── script.c │ │ │ └── segment.c │ │ │ ├── include │ │ │ ├── alloca.h │ │ │ ├── assert.h │ │ │ ├── byteswap.h │ │ │ ├── coff.h │ │ │ ├── compiler.h │ │ │ ├── cpu.h │ │ │ ├── ctype.h │ │ │ ├── curses.h │ │ │ ├── elf.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── etherboot.h │ │ │ ├── fs.h │ │ │ ├── getopt.h │ │ │ ├── hci │ │ │ │ ├── ifmgmt_cmd.h │ │ │ │ └── linux_args.h │ │ │ ├── i82365.h │ │ │ ├── ipxe │ │ │ │ ├── acpi.h │ │ │ │ ├── aes.h │ │ │ │ ├── ansicol.h │ │ │ │ ├── ansiesc.h │ │ │ │ ├── aoe.h │ │ │ │ ├── api.h │ │ │ │ ├── arc4.h │ │ │ │ ├── arp.h │ │ │ │ ├── asn1.h │ │ │ │ ├── ata.h │ │ │ │ ├── base16.h │ │ │ │ ├── base64.h │ │ │ │ ├── bigint.h │ │ │ │ ├── bitbash.h │ │ │ │ ├── bitmap.h │ │ │ │ ├── bitops.h │ │ │ │ ├── blockdev.h │ │ │ │ ├── blocktrans.h │ │ │ │ ├── bofm.h │ │ │ │ ├── cbc.h │ │ │ │ ├── cdc.h │ │ │ │ ├── certstore.h │ │ │ │ ├── chap.h │ │ │ │ ├── cms.h │ │ │ │ ├── command.h │ │ │ │ ├── console.h │ │ │ │ ├── cpio.h │ │ │ │ ├── crc32.h │ │ │ │ ├── crypto.h │ │ │ │ ├── deflate.h │ │ │ │ ├── der.h │ │ │ │ ├── device.h │ │ │ │ ├── dhcp.h │ │ │ │ ├── dhcpopts.h │ │ │ │ ├── dhcppkt.h │ │ │ │ ├── dhcpv6.h │ │ │ │ ├── dns.h │ │ │ │ ├── downloader.h │ │ │ │ ├── drbg.h │ │ │ │ ├── dummy_sanboot.h │ │ │ │ ├── eapol.h │ │ │ │ ├── ecb.h │ │ │ │ ├── edd.h │ │ │ │ ├── editbox.h │ │ │ │ ├── editstring.h │ │ │ │ ├── efi │ │ │ │ │ ├── AArch64 │ │ │ │ │ │ └── ProcessorBind.h │ │ │ │ │ ├── Arm │ │ │ │ │ │ └── ProcessorBind.h │ │ │ │ │ ├── Base.h │ │ │ │ │ ├── Guid │ │ │ │ │ │ ├── Acpi.h │ │ │ │ │ │ ├── FileInfo.h │ │ │ │ │ │ ├── FileSystemInfo.h │ │ │ │ │ │ ├── HiiFormMapMethodGuid.h │ │ │ │ │ │ ├── HiiPlatformSetupFormset.h │ │ │ │ │ │ ├── MdeModuleHii.h │ │ │ │ │ │ ├── PcAnsi.h │ │ │ │ │ │ ├── SmBios.h │ │ │ │ │ │ └── WinCertificate.h │ │ │ │ │ ├── Ia32 │ │ │ │ │ │ └── ProcessorBind.h │ │ │ │ │ ├── IndustryStandard │ │ │ │ │ │ ├── Acpi10.h │ │ │ │ │ │ ├── Acpi20.h │ │ │ │ │ │ ├── Acpi30.h │ │ │ │ │ │ ├── Acpi40.h │ │ │ │ │ │ ├── Acpi50.h │ │ │ │ │ │ ├── Acpi51.h │ │ │ │ │ │ ├── Acpi60.h │ │ │ │ │ │ ├── AcpiAml.h │ │ │ │ │ │ ├── Bluetooth.h │ │ │ │ │ │ ├── Pci22.h │ │ │ │ │ │ ├── PeImage.h │ │ │ │ │ │ ├── Tpm12.h │ │ │ │ │ │ ├── Tpm20.h │ │ │ │ │ │ ├── UefiTcgPlatform.h │ │ │ │ │ │ └── Usb.h │ │ │ │ │ ├── LICENCE │ │ │ │ │ ├── Library │ │ │ │ │ │ └── BaseLib.h │ │ │ │ │ ├── Pi │ │ │ │ │ │ ├── PiBootMode.h │ │ │ │ │ │ ├── PiDependency.h │ │ │ │ │ │ ├── PiDxeCis.h │ │ │ │ │ │ ├── PiFirmwareFile.h │ │ │ │ │ │ ├── PiFirmwareVolume.h │ │ │ │ │ │ ├── PiHob.h │ │ │ │ │ │ ├── PiMultiPhase.h │ │ │ │ │ │ ├── PiS3BootScript.h │ │ │ │ │ │ └── PiStatusCode.h │ │ │ │ │ ├── PiDxe.h │ │ │ │ │ ├── ProcessorBind.h │ │ │ │ │ ├── Protocol │ │ │ │ │ │ ├── AbsolutePointer.h │ │ │ │ │ │ ├── AcpiTable.h │ │ │ │ │ │ ├── AppleNetBoot.h │ │ │ │ │ │ ├── Arp.h │ │ │ │ │ │ ├── BlockIo.h │ │ │ │ │ │ ├── BlockIo2.h │ │ │ │ │ │ ├── BusSpecificDriverOverride.h │ │ │ │ │ │ ├── ComponentName.h │ │ │ │ │ │ ├── ComponentName2.h │ │ │ │ │ │ ├── ConsoleControl │ │ │ │ │ │ │ └── ConsoleControl.h │ │ │ │ │ │ ├── DebugSupport.h │ │ │ │ │ │ ├── DevicePath.h │ │ │ │ │ │ ├── DevicePathToText.h │ │ │ │ │ │ ├── Dhcp4.h │ │ │ │ │ │ ├── DiskIo.h │ │ │ │ │ │ ├── DriverBinding.h │ │ │ │ │ │ ├── FormBrowser2.h │ │ │ │ │ │ ├── GraphicsOutput.h │ │ │ │ │ │ ├── HiiConfigAccess.h │ │ │ │ │ │ ├── HiiDatabase.h │ │ │ │ │ │ ├── HiiFont.h │ │ │ │ │ │ ├── HiiImage.h │ │ │ │ │ │ ├── Ip4.h │ │ │ │ │ │ ├── Ip4Config.h │ │ │ │ │ │ ├── LoadFile.h │ │ │ │ │ │ ├── LoadFile2.h │ │ │ │ │ │ ├── LoadedImage.h │ │ │ │ │ │ ├── ManagedNetwork.h │ │ │ │ │ │ ├── Mtftp4.h │ │ │ │ │ │ ├── NetworkInterfaceIdentifier.h │ │ │ │ │ │ ├── PciIo.h │ │ │ │ │ │ ├── PciRootBridgeIo.h │ │ │ │ │ │ ├── PxeBaseCode.h │ │ │ │ │ │ ├── Rng.h │ │ │ │ │ │ ├── SerialIo.h │ │ │ │ │ │ ├── SimpleFileSystem.h │ │ │ │ │ │ ├── SimpleNetwork.h │ │ │ │ │ │ ├── SimplePointer.h │ │ │ │ │ │ ├── SimpleTextIn.h │ │ │ │ │ │ ├── SimpleTextInEx.h │ │ │ │ │ │ ├── SimpleTextOut.h │ │ │ │ │ │ ├── TcgService.h │ │ │ │ │ │ ├── Tcp4.h │ │ │ │ │ │ ├── Udp4.h │ │ │ │ │ │ ├── UgaDraw.h │ │ │ │ │ │ ├── UnicodeCollation.h │ │ │ │ │ │ ├── Usb2HostController.h │ │ │ │ │ │ ├── UsbHostController.h │ │ │ │ │ │ ├── UsbIo.h │ │ │ │ │ │ └── VlanConfig.h │ │ │ │ │ ├── Uefi.h │ │ │ │ │ ├── Uefi │ │ │ │ │ │ ├── UefiBaseType.h │ │ │ │ │ │ ├── UefiGpt.h │ │ │ │ │ │ ├── UefiInternalFormRepresentation.h │ │ │ │ │ │ ├── UefiMultiPhase.h │ │ │ │ │ │ ├── UefiPxe.h │ │ │ │ │ │ └── UefiSpec.h │ │ │ │ │ ├── X64 │ │ │ │ │ │ └── ProcessorBind.h │ │ │ │ │ ├── efi.h │ │ │ │ │ ├── efi_acpi.h │ │ │ │ │ ├── efi_autoboot.h │ │ │ │ │ ├── efi_block.h │ │ │ │ │ ├── efi_download.h │ │ │ │ │ ├── efi_driver.h │ │ │ │ │ ├── efi_entropy.h │ │ │ │ │ ├── efi_file.h │ │ │ │ │ ├── efi_hii.h │ │ │ │ │ ├── efi_pci.h │ │ │ │ │ ├── efi_pci_api.h │ │ │ │ │ ├── efi_pxe.h │ │ │ │ │ ├── efi_reboot.h │ │ │ │ │ ├── efi_smbios.h │ │ │ │ │ ├── efi_snp.h │ │ │ │ │ ├── efi_strings.h │ │ │ │ │ ├── efi_time.h │ │ │ │ │ ├── efi_uaccess.h │ │ │ │ │ ├── efi_umalloc.h │ │ │ │ │ ├── efi_usb.h │ │ │ │ │ ├── efi_utils.h │ │ │ │ │ ├── efi_watchdog.h │ │ │ │ │ ├── efi_wrap.h │ │ │ │ │ └── import.pl │ │ │ │ ├── eisa.h │ │ │ │ ├── elf.h │ │ │ │ ├── eltorito.h │ │ │ │ ├── entropy.h │ │ │ │ ├── eoib.h │ │ │ │ ├── errfile.h │ │ │ │ ├── errno │ │ │ │ │ ├── efi.h │ │ │ │ │ └── linux.h │ │ │ │ ├── errortab.h │ │ │ │ ├── eth_slow.h │ │ │ │ ├── ethernet.h │ │ │ │ ├── fakedhcp.h │ │ │ │ ├── fault.h │ │ │ │ ├── fbcon.h │ │ │ │ ├── fc.h │ │ │ │ ├── fcels.h │ │ │ │ ├── fcns.h │ │ │ │ ├── fcoe.h │ │ │ │ ├── fcp.h │ │ │ │ ├── features.h │ │ │ │ ├── fip.h │ │ │ │ ├── fragment.h │ │ │ │ ├── ftp.h │ │ │ │ ├── gdbserial.h │ │ │ │ ├── gdbstub.h │ │ │ │ ├── gdbudp.h │ │ │ │ ├── hash_df.h │ │ │ │ ├── hidemem.h │ │ │ │ ├── hmac.h │ │ │ │ ├── hmac_drbg.h │ │ │ │ ├── http.h │ │ │ │ ├── hyperv.h │ │ │ │ ├── i2c.h │ │ │ │ ├── ib_cm.h │ │ │ │ ├── ib_cmrc.h │ │ │ │ ├── ib_mad.h │ │ │ │ ├── ib_mcast.h │ │ │ │ ├── ib_mi.h │ │ │ │ ├── ib_packet.h │ │ │ │ ├── ib_pathrec.h │ │ │ │ ├── ib_service.h │ │ │ │ ├── ib_sma.h │ │ │ │ ├── ib_smc.h │ │ │ │ ├── ib_srp.h │ │ │ │ ├── ibft.h │ │ │ │ ├── icmp.h │ │ │ │ ├── icmpv6.h │ │ │ │ ├── ieee80211.h │ │ │ │ ├── if_arp.h │ │ │ │ ├── if_ether.h │ │ │ │ ├── image.h │ │ │ │ ├── in.h │ │ │ │ ├── infiniband.h │ │ │ │ ├── init.h │ │ │ │ ├── interface.h │ │ │ │ ├── io.h │ │ │ │ ├── iobuf.h │ │ │ │ ├── iomap.h │ │ │ │ ├── iomap_virt.h │ │ │ │ ├── ip.h │ │ │ │ ├── ipoib.h │ │ │ │ ├── ipstat.h │ │ │ │ ├── ipv6.h │ │ │ │ ├── isa.h │ │ │ │ ├── isa_ids.h │ │ │ │ ├── isapnp.h │ │ │ │ ├── iscsi.h │ │ │ │ ├── iso9660.h │ │ │ │ ├── isqrt.h │ │ │ │ ├── job.h │ │ │ │ ├── jumpscroll.h │ │ │ │ ├── keymap.h │ │ │ │ ├── keys.h │ │ │ │ ├── linebuf.h │ │ │ │ ├── lineconsole.h │ │ │ │ ├── linux.h │ │ │ │ ├── linux │ │ │ │ │ ├── linux_entropy.h │ │ │ │ │ ├── linux_nap.h │ │ │ │ │ ├── linux_pci.h │ │ │ │ │ ├── linux_smbios.h │ │ │ │ │ ├── linux_time.h │ │ │ │ │ ├── linux_uaccess.h │ │ │ │ │ └── linux_umalloc.h │ │ │ │ ├── list.h │ │ │ │ ├── login_ui.h │ │ │ │ ├── malloc.h │ │ │ │ ├── mca.h │ │ │ │ ├── md5.h │ │ │ │ ├── memblock.h │ │ │ │ ├── menu.h │ │ │ │ ├── mii.h │ │ │ │ ├── monojob.h │ │ │ │ ├── mount.h │ │ │ │ ├── nap.h │ │ │ │ ├── ndp.h │ │ │ │ ├── neighbour.h │ │ │ │ ├── net80211.h │ │ │ │ ├── net80211_err.h │ │ │ │ ├── netdevice.h │ │ │ │ ├── nfs.h │ │ │ │ ├── nfs_open.h │ │ │ │ ├── nfs_uri.h │ │ │ │ ├── ntp.h │ │ │ │ ├── null_acpi.h │ │ │ │ ├── null_entropy.h │ │ │ │ ├── null_nap.h │ │ │ │ ├── null_reboot.h │ │ │ │ ├── null_sanboot.h │ │ │ │ ├── null_time.h │ │ │ │ ├── nvo.h │ │ │ │ ├── nvs.h │ │ │ │ ├── nvsvpd.h │ │ │ │ ├── ocsp.h │ │ │ │ ├── oncrpc.h │ │ │ │ ├── oncrpc_iob.h │ │ │ │ ├── open.h │ │ │ │ ├── params.h │ │ │ │ ├── parseopt.h │ │ │ │ ├── pccrc.h │ │ │ │ ├── pccrd.h │ │ │ │ ├── pccrr.h │ │ │ │ ├── pci.h │ │ │ │ ├── pci_io.h │ │ │ │ ├── pcibackup.h │ │ │ │ ├── pciea.h │ │ │ │ ├── pcivpd.h │ │ │ │ ├── peerblk.h │ │ │ │ ├── peerdisc.h │ │ │ │ ├── peermux.h │ │ │ │ ├── pem.h │ │ │ │ ├── pending.h │ │ │ │ ├── ping.h │ │ │ │ ├── pinger.h │ │ │ │ ├── pixbuf.h │ │ │ │ ├── png.h │ │ │ │ ├── pnm.h │ │ │ │ ├── pool.h │ │ │ │ ├── portmap.h │ │ │ │ ├── posix_io.h │ │ │ │ ├── privkey.h │ │ │ │ ├── process.h │ │ │ │ ├── profile.h │ │ │ │ ├── pseudobit.h │ │ │ │ ├── quiesce.h │ │ │ │ ├── random_nz.h │ │ │ │ ├── rarp.h │ │ │ │ ├── rbg.h │ │ │ │ ├── rc80211.h │ │ │ │ ├── reboot.h │ │ │ │ ├── refcnt.h │ │ │ │ ├── resolv.h │ │ │ │ ├── retry.h │ │ │ │ ├── rndis.h │ │ │ │ ├── rootcert.h │ │ │ │ ├── rotate.h │ │ │ │ ├── rsa.h │ │ │ │ ├── sanboot.h │ │ │ │ ├── script.h │ │ │ │ ├── scsi.h │ │ │ │ ├── sec80211.h │ │ │ │ ├── segment.h │ │ │ │ ├── serial.h │ │ │ │ ├── settings.h │ │ │ │ ├── settings_ui.h │ │ │ │ ├── sha1.h │ │ │ │ ├── sha256.h │ │ │ │ ├── sha512.h │ │ │ │ ├── shell.h │ │ │ │ ├── smbios.h │ │ │ │ ├── socket.h │ │ │ │ ├── spi.h │ │ │ │ ├── spi_bit.h │ │ │ │ ├── srp.h │ │ │ │ ├── stp.h │ │ │ │ ├── string.h │ │ │ │ ├── syslog.h │ │ │ │ ├── tables.h │ │ │ │ ├── tcp.h │ │ │ │ ├── tcpip.h │ │ │ │ ├── test.h │ │ │ │ ├── tftp.h │ │ │ │ ├── threewire.h │ │ │ │ ├── time.h │ │ │ │ ├── timer.h │ │ │ │ ├── tls.h │ │ │ │ ├── uaccess.h │ │ │ │ ├── uart.h │ │ │ │ ├── udp.h │ │ │ │ ├── umalloc.h │ │ │ │ ├── uri.h │ │ │ │ ├── usb.h │ │ │ │ ├── usbhid.h │ │ │ │ ├── usbnet.h │ │ │ │ ├── uuid.h │ │ │ │ ├── validator.h │ │ │ │ ├── version.h │ │ │ │ ├── virtio-pci.h │ │ │ │ ├── virtio-ring.h │ │ │ │ ├── vlan.h │ │ │ │ ├── vmbus.h │ │ │ │ ├── vsprintf.h │ │ │ │ ├── wpa.h │ │ │ │ ├── x509.h │ │ │ │ ├── xen.h │ │ │ │ ├── xenbus.h │ │ │ │ ├── xenevent.h │ │ │ │ ├── xengrant.h │ │ │ │ ├── xenmem.h │ │ │ │ ├── xenstore.h │ │ │ │ ├── xenver.h │ │ │ │ ├── xfer.h │ │ │ │ ├── xferbuf.h │ │ │ │ └── xsigo.h │ │ │ ├── libgen.h │ │ │ ├── linux_api.h │ │ │ ├── mii.h │ │ │ ├── nic.h │ │ │ ├── old_tcp.h │ │ │ ├── pc_kbd.h │ │ │ ├── pcmcia-opts.h │ │ │ ├── pcmcia.h │ │ │ ├── readline │ │ │ │ └── readline.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── strings.h │ │ │ ├── sys │ │ │ │ └── time.h │ │ │ ├── sys_info.h │ │ │ ├── syslog.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── usr │ │ │ │ ├── autoboot.h │ │ │ │ ├── certmgmt.h │ │ │ │ ├── dhcpmgmt.h │ │ │ │ ├── fcmgmt.h │ │ │ │ ├── ibmgmt.h │ │ │ │ ├── ifmgmt.h │ │ │ │ ├── imgmgmt.h │ │ │ │ ├── imgtrust.h │ │ │ │ ├── ipstat.h │ │ │ │ ├── iwmgmt.h │ │ │ │ ├── lotest.h │ │ │ │ ├── neighmgmt.h │ │ │ │ ├── nslookup.h │ │ │ │ ├── ntpmgmt.h │ │ │ │ ├── pingmgmt.h │ │ │ │ ├── profstat.h │ │ │ │ ├── prompt.h │ │ │ │ ├── route.h │ │ │ │ └── sync.h │ │ │ ├── valgrind │ │ │ │ ├── memcheck.h │ │ │ │ └── valgrind.h │ │ │ ├── wchar.h │ │ │ └── xen │ │ │ │ ├── arch-arm.h │ │ │ │ ├── arch-x86 │ │ │ │ ├── xen-x86_32.h │ │ │ │ ├── xen-x86_64.h │ │ │ │ └── xen.h │ │ │ │ ├── event_channel.h │ │ │ │ ├── features.h │ │ │ │ ├── grant_table.h │ │ │ │ ├── hvm │ │ │ │ ├── hvm_op.h │ │ │ │ └── params.h │ │ │ │ ├── import.pl │ │ │ │ ├── io │ │ │ │ ├── netif.h │ │ │ │ ├── ring.h │ │ │ │ ├── xenbus.h │ │ │ │ └── xs_wire.h │ │ │ │ ├── memory.h │ │ │ │ ├── trace.h │ │ │ │ ├── version.h │ │ │ │ ├── xen-compat.h │ │ │ │ └── xen.h │ │ │ ├── interface │ │ │ ├── bofm │ │ │ │ └── bofm.c │ │ │ ├── efi │ │ │ │ ├── efi_acpi.c │ │ │ │ ├── efi_autoboot.c │ │ │ │ ├── efi_block.c │ │ │ │ ├── efi_bofm.c │ │ │ │ ├── efi_console.c │ │ │ │ ├── efi_debug.c │ │ │ │ ├── efi_download.c │ │ │ │ ├── efi_driver.c │ │ │ │ ├── efi_entropy.c │ │ │ │ ├── efi_fbcon.c │ │ │ │ ├── efi_file.c │ │ │ │ ├── efi_guid.c │ │ │ │ ├── efi_hii.c │ │ │ │ ├── efi_init.c │ │ │ │ ├── efi_local.c │ │ │ │ ├── efi_pci.c │ │ │ │ ├── efi_pxe.c │ │ │ │ ├── efi_reboot.c │ │ │ │ ├── efi_smbios.c │ │ │ │ ├── efi_snp.c │ │ │ │ ├── efi_snp_hii.c │ │ │ │ ├── efi_strings.c │ │ │ │ ├── efi_time.c │ │ │ │ ├── efi_timer.c │ │ │ │ ├── efi_uaccess.c │ │ │ │ ├── efi_umalloc.c │ │ │ │ ├── efi_usb.c │ │ │ │ ├── efi_utils.c │ │ │ │ ├── efi_watchdog.c │ │ │ │ ├── efi_wrap.c │ │ │ │ ├── efidrvprefix.c │ │ │ │ └── efiprefix.c │ │ │ ├── hyperv │ │ │ │ └── vmbus.c │ │ │ ├── linux │ │ │ │ ├── linux_console.c │ │ │ │ ├── linux_entropy.c │ │ │ │ ├── linux_nap.c │ │ │ │ ├── linux_pci.c │ │ │ │ ├── linux_smbios.c │ │ │ │ ├── linux_time.c │ │ │ │ ├── linux_timer.c │ │ │ │ ├── linux_uaccess.c │ │ │ │ └── linux_umalloc.c │ │ │ ├── smbios │ │ │ │ ├── smbios.c │ │ │ │ └── smbios_settings.c │ │ │ └── xen │ │ │ │ ├── xenbus.c │ │ │ │ ├── xengrant.c │ │ │ │ └── xenstore.c │ │ │ ├── libgcc │ │ │ ├── __divdi3.c │ │ │ ├── __divmoddi4.c │ │ │ ├── __moddi3.c │ │ │ ├── __udivdi3.c │ │ │ ├── __udivmoddi4.c │ │ │ ├── __umoddi3.c │ │ │ ├── icc.c │ │ │ ├── implicit.c │ │ │ └── libgcc.h │ │ │ ├── net │ │ │ ├── 80211 │ │ │ │ ├── net80211.c │ │ │ │ ├── rc80211.c │ │ │ │ ├── sec80211.c │ │ │ │ ├── wep.c │ │ │ │ ├── wpa.c │ │ │ │ ├── wpa_ccmp.c │ │ │ │ ├── wpa_psk.c │ │ │ │ └── wpa_tkip.c │ │ │ ├── aoe.c │ │ │ ├── arp.c │ │ │ ├── dhcpopts.c │ │ │ ├── dhcppkt.c │ │ │ ├── eapol.c │ │ │ ├── eth_slow.c │ │ │ ├── ethernet.c │ │ │ ├── fakedhcp.c │ │ │ ├── fc.c │ │ │ ├── fcels.c │ │ │ ├── fcns.c │ │ │ ├── fcoe.c │ │ │ ├── fcp.c │ │ │ ├── fragment.c │ │ │ ├── icmp.c │ │ │ ├── icmpv4.c │ │ │ ├── icmpv6.c │ │ │ ├── infiniband.c │ │ │ ├── infiniband │ │ │ │ ├── ib_cm.c │ │ │ │ ├── ib_cmrc.c │ │ │ │ ├── ib_mcast.c │ │ │ │ ├── ib_mi.c │ │ │ │ ├── ib_packet.c │ │ │ │ ├── ib_pathrec.c │ │ │ │ ├── ib_service.c │ │ │ │ ├── ib_sma.c │ │ │ │ ├── ib_smc.c │ │ │ │ ├── ib_srp.c │ │ │ │ └── xsigo.c │ │ │ ├── iobpad.c │ │ │ ├── ipv4.c │ │ │ ├── ipv6.c │ │ │ ├── ndp.c │ │ │ ├── neighbour.c │ │ │ ├── netdev_settings.c │ │ │ ├── netdevice.c │ │ │ ├── nullnet.c │ │ │ ├── oncrpc │ │ │ │ ├── mount.c │ │ │ │ ├── nfs.c │ │ │ │ ├── nfs_open.c │ │ │ │ ├── nfs_uri.c │ │ │ │ ├── oncrpc_iob.c │ │ │ │ └── portmap.c │ │ │ ├── pccrc.c │ │ │ ├── pccrd.c │ │ │ ├── peerblk.c │ │ │ ├── peerdisc.c │ │ │ ├── peerdist.c │ │ │ ├── peermux.c │ │ │ ├── ping.c │ │ │ ├── rarp.c │ │ │ ├── retry.c │ │ │ ├── rndis.c │ │ │ ├── socket.c │ │ │ ├── stp.c │ │ │ ├── tcp.c │ │ │ ├── tcp │ │ │ │ ├── ftp.c │ │ │ │ ├── http.c │ │ │ │ ├── httpauth.c │ │ │ │ ├── httpbasic.c │ │ │ │ ├── httpblock.c │ │ │ │ ├── httpconn.c │ │ │ │ ├── httpcore.c │ │ │ │ ├── httpdigest.c │ │ │ │ ├── httpgce.c │ │ │ │ ├── https.c │ │ │ │ ├── iscsi.c │ │ │ │ ├── oncrpc.c │ │ │ │ └── syslogs.c │ │ │ ├── tcpip.c │ │ │ ├── tls.c │ │ │ ├── udp.c │ │ │ ├── udp │ │ │ │ ├── dhcp.c │ │ │ │ ├── dhcpv6.c │ │ │ │ ├── dns.c │ │ │ │ ├── ntp.c │ │ │ │ ├── slam.c │ │ │ │ ├── syslog.c │ │ │ │ └── tftp.c │ │ │ ├── validator.c │ │ │ └── vlan.c │ │ │ ├── scripts │ │ │ └── efi.lds │ │ │ ├── tests │ │ │ ├── aes_test.c │ │ │ ├── asn1_test.c │ │ │ ├── asn1_test.h │ │ │ ├── base16_test.c │ │ │ ├── base64_test.c │ │ │ ├── bigint_test.c │ │ │ ├── bitops_test.c │ │ │ ├── bofm_test.c │ │ │ ├── byteswap_test.c │ │ │ ├── cipher_test.c │ │ │ ├── cipher_test.h │ │ │ ├── cms_test.c │ │ │ ├── crc32_test.c │ │ │ ├── deflate_test.c │ │ │ ├── der_test.c │ │ │ ├── digest_test.c │ │ │ ├── digest_test.h │ │ │ ├── dns_test.c │ │ │ ├── entropy_sample.c │ │ │ ├── hash_df_test.c │ │ │ ├── hmac_drbg_test.c │ │ │ ├── iobuf_test.c │ │ │ ├── ipv4_test.c │ │ │ ├── ipv6_test.c │ │ │ ├── linebuf_test.c │ │ │ ├── list_test.c │ │ │ ├── math_test.c │ │ │ ├── md5_test.c │ │ │ ├── memcpy_test.c │ │ │ ├── memset_test.c │ │ │ ├── ocsp_test.c │ │ │ ├── pccrc_test.c │ │ │ ├── pem_test.c │ │ │ ├── pixbuf_test.c │ │ │ ├── pixbuf_test.h │ │ │ ├── png_test.c │ │ │ ├── pnm_test.c │ │ │ ├── profile_test.c │ │ │ ├── pubkey_test.h │ │ │ ├── rsa_test.c │ │ │ ├── setjmp_test.c │ │ │ ├── settings_test.c │ │ │ ├── sha1_test.c │ │ │ ├── sha256_test.c │ │ │ ├── sha512_test.c │ │ │ ├── string_test.c │ │ │ ├── tcpip_test.c │ │ │ ├── test.c │ │ │ ├── tests.c │ │ │ ├── time_test.c │ │ │ ├── umalloc_test.c │ │ │ ├── uri_test.c │ │ │ ├── vsprintf_test.c │ │ │ └── x509_test.c │ │ │ ├── usr │ │ │ ├── autoboot.c │ │ │ ├── certmgmt.c │ │ │ ├── dhcpmgmt.c │ │ │ ├── fcmgmt.c │ │ │ ├── ibmgmt.c │ │ │ ├── ifmgmt.c │ │ │ ├── imgmgmt.c │ │ │ ├── imgtrust.c │ │ │ ├── ipstat.c │ │ │ ├── iwmgmt.c │ │ │ ├── lotest.c │ │ │ ├── neighmgmt.c │ │ │ ├── nslookup.c │ │ │ ├── ntpmgmt.c │ │ │ ├── pingmgmt.c │ │ │ ├── profstat.c │ │ │ ├── prompt.c │ │ │ ├── pxemenu.c │ │ │ ├── route.c │ │ │ ├── route_ipv4.c │ │ │ ├── route_ipv6.c │ │ │ └── sync.c │ │ │ └── util │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── Option │ │ │ └── ROM.pm │ │ │ ├── catrom.pl │ │ │ ├── diffsize.pl │ │ │ ├── disrom.pl │ │ │ ├── efifatbin.c │ │ │ ├── efirom.c │ │ │ ├── einfo.c │ │ │ ├── elf2efi.c │ │ │ ├── fixrom.pl │ │ │ ├── fnrec.pl │ │ │ ├── genefidsk │ │ │ ├── geniso │ │ │ ├── genkeymap.pl │ │ │ ├── gensdsk │ │ │ ├── get-pci-ids │ │ │ ├── hijack.c │ │ │ ├── iccfix.c │ │ │ ├── licence.pl │ │ │ ├── mergerom.pl │ │ │ ├── modrom.pl │ │ │ ├── mucurses_test.c │ │ │ ├── niclist.pl │ │ │ ├── nrv2b.c │ │ │ ├── padimg.pl │ │ │ ├── parserom.pl │ │ │ ├── relicense.pl │ │ │ ├── romcheck.pl │ │ │ ├── sortobjdump.pl │ │ │ ├── swapdevids.pl │ │ │ ├── symcheck.pl │ │ │ └── zbin.c │ ├── openbios │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── Documentation │ │ │ ├── ChangeLog.arch │ │ │ ├── README.debugger │ │ │ ├── TODO.sparc │ │ │ └── kernel │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── Changelog.stepan │ │ │ │ ├── TODO │ │ │ │ ├── dictformat.txt │ │ │ │ ├── glossary.txt │ │ │ │ └── initializers.txt │ │ ├── Makefile │ │ ├── Makefile.target │ │ ├── README │ │ ├── VERSION │ │ ├── arch │ │ │ ├── amd64 │ │ │ │ ├── Kconfig │ │ │ │ ├── boot.c │ │ │ │ ├── build.xml │ │ │ │ ├── builtin.c │ │ │ │ ├── console.c │ │ │ │ ├── context.c │ │ │ │ ├── context.h │ │ │ │ ├── defconfig │ │ │ │ ├── init.fs │ │ │ │ ├── ldscript │ │ │ │ ├── lib.c │ │ │ │ ├── linux_load.c │ │ │ │ ├── multiboot.c │ │ │ │ ├── multiboot.h │ │ │ │ ├── openbios.c │ │ │ │ ├── openbios.h │ │ │ │ ├── plainboot.c │ │ │ │ ├── relocate.h │ │ │ │ ├── segment.c │ │ │ │ ├── segment.h │ │ │ │ ├── switch.S │ │ │ │ └── sys_info.c │ │ │ ├── build.xml │ │ │ ├── ia64 │ │ │ │ ├── Kconfig │ │ │ │ ├── build.xml │ │ │ │ ├── defconfig │ │ │ │ └── init.fs │ │ │ ├── ppc │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.asm │ │ │ │ ├── briq │ │ │ │ │ ├── briq.c │ │ │ │ │ ├── briq.fs │ │ │ │ │ ├── briq.h │ │ │ │ │ ├── init.c │ │ │ │ │ ├── kernel.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── methods.c │ │ │ │ │ ├── tree.c │ │ │ │ │ ├── tree.fs │ │ │ │ │ └── vfd.c │ │ │ │ ├── build.xml │ │ │ │ ├── defconfig │ │ │ │ ├── kernel.c │ │ │ │ ├── kernel.h │ │ │ │ ├── misc.S │ │ │ │ ├── mmutypes.h │ │ │ │ ├── mol │ │ │ │ │ ├── console.c │ │ │ │ │ ├── init.c │ │ │ │ │ ├── kernel.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── methods.c │ │ │ │ │ ├── mol.c │ │ │ │ │ ├── mol.fs │ │ │ │ │ ├── mol.h │ │ │ │ │ ├── osi-blk.c │ │ │ │ │ ├── osi-scsi.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── prom.h │ │ │ │ │ ├── pseudodisk.c │ │ │ │ │ ├── tree.c │ │ │ │ │ └── tree.fs │ │ │ │ ├── ofmem.c │ │ │ │ ├── osi.h │ │ │ │ ├── osi_calls.h │ │ │ │ ├── pearpc │ │ │ │ │ ├── console.c │ │ │ │ │ ├── init.c │ │ │ │ │ ├── kernel.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── methods.c │ │ │ │ │ ├── pearpc.c │ │ │ │ │ ├── pearpc.fs │ │ │ │ │ ├── pearpc.h │ │ │ │ │ ├── tree.c │ │ │ │ │ ├── tree.fs │ │ │ │ │ └── vfd.c │ │ │ │ ├── ppc.fs │ │ │ │ ├── qemu │ │ │ │ │ ├── console.c │ │ │ │ │ ├── context.c │ │ │ │ │ ├── context.h │ │ │ │ │ ├── init.c │ │ │ │ │ ├── kernel.c │ │ │ │ │ ├── kernel.h │ │ │ │ │ ├── ldscript │ │ │ │ │ ├── main.c │ │ │ │ │ ├── methods.c │ │ │ │ │ ├── mmutypes.h │ │ │ │ │ ├── ofmem.c │ │ │ │ │ ├── qemu.c │ │ │ │ │ ├── qemu.fs │ │ │ │ │ ├── qemu.h │ │ │ │ │ ├── start.S │ │ │ │ │ ├── switch.S │ │ │ │ │ ├── tree.fs │ │ │ │ │ └── vfd.c │ │ │ │ ├── start.S │ │ │ │ └── timebase.S │ │ │ ├── ppc64 │ │ │ │ └── qemu │ │ │ │ │ └── ldscript │ │ │ ├── sparc32 │ │ │ │ ├── boot.c │ │ │ │ ├── boot.h │ │ │ │ ├── build.xml │ │ │ │ ├── builtin.c │ │ │ │ ├── call-romvec.S │ │ │ │ ├── console.c │ │ │ │ ├── context.c │ │ │ │ ├── context.h │ │ │ │ ├── cpu.fs │ │ │ │ ├── cpustate.h │ │ │ │ ├── crs.h │ │ │ │ ├── entry.S │ │ │ │ ├── init.fs │ │ │ │ ├── ldscript │ │ │ │ ├── lib.c │ │ │ │ ├── linux_load.c │ │ │ │ ├── multiboot.c │ │ │ │ ├── multiboot.h │ │ │ │ ├── ofmem_sparc32.c │ │ │ │ ├── openbios.c │ │ │ │ ├── openbios.h │ │ │ │ ├── openprom.h │ │ │ │ ├── pgtsrmmu.h │ │ │ │ ├── plainboot.c │ │ │ │ ├── psr.h │ │ │ │ ├── romvec.c │ │ │ │ ├── romvec.h │ │ │ │ ├── switch.S │ │ │ │ ├── sys_info.c │ │ │ │ ├── tree.fs │ │ │ │ ├── udiv.S │ │ │ │ ├── vectors.S │ │ │ │ ├── wof.S │ │ │ │ └── wuf.S │ │ │ ├── sparc64 │ │ │ │ ├── boot.c │ │ │ │ ├── boot.h │ │ │ │ ├── build.xml │ │ │ │ ├── builtin.c │ │ │ │ ├── call-client.S │ │ │ │ ├── console.c │ │ │ │ ├── const.h │ │ │ │ ├── context.c │ │ │ │ ├── context.h │ │ │ │ ├── cpu.fs │ │ │ │ ├── cpustate.h │ │ │ │ ├── entry.S │ │ │ │ ├── init.fs │ │ │ │ ├── ldscript │ │ │ │ ├── lib.c │ │ │ │ ├── linux_load.c │ │ │ │ ├── lsu.h │ │ │ │ ├── multiboot.c │ │ │ │ ├── multiboot.h │ │ │ │ ├── ofmem_sparc64.c │ │ │ │ ├── openbios.c │ │ │ │ ├── openbios.h │ │ │ │ ├── openprom.h │ │ │ │ ├── plainboot.c │ │ │ │ ├── pstate.h │ │ │ │ ├── spitfire.h │ │ │ │ ├── switch.S │ │ │ │ ├── sys_info.c │ │ │ │ ├── tree.fs │ │ │ │ └── vectors.S │ │ │ ├── unix │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── blk.c │ │ │ │ ├── blk.h │ │ │ │ ├── boot.c │ │ │ │ ├── build.xml │ │ │ │ ├── gui_qt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── gui-qt.cpp │ │ │ │ │ ├── gui-qt.h │ │ │ │ │ ├── gui-qt.pro │ │ │ │ │ ├── logo.xpm │ │ │ │ │ └── qt-main.cpp │ │ │ │ ├── plugins.c │ │ │ │ ├── plugins │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Rules.plugin │ │ │ │ │ ├── loader.c │ │ │ │ │ ├── plugin_pci │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.old │ │ │ │ │ │ └── plugin_pci.c │ │ │ │ │ └── plugin_qt │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── logo.xpm │ │ │ │ │ │ ├── pciconfig.h │ │ │ │ │ │ ├── plugin_qt.cpp │ │ │ │ │ │ ├── plugin_qt.h │ │ │ │ │ │ ├── plugin_qt.pro │ │ │ │ │ │ ├── qt_main.cpp │ │ │ │ │ │ └── qt_rom.fs │ │ │ │ ├── tree.fs │ │ │ │ └── unix.c │ │ │ └── x86 │ │ │ │ ├── Kconfig │ │ │ │ ├── boot.c │ │ │ │ ├── boot.h │ │ │ │ ├── build.xml │ │ │ │ ├── builtin.c │ │ │ │ ├── console.c │ │ │ │ ├── context.c │ │ │ │ ├── context.h │ │ │ │ ├── defconfig │ │ │ │ ├── entry.S │ │ │ │ ├── exception.c │ │ │ │ ├── init.fs │ │ │ │ ├── ldscript │ │ │ │ ├── lib.c │ │ │ │ ├── linux_load.c │ │ │ │ ├── multiboot.c │ │ │ │ ├── multiboot.h │ │ │ │ ├── openbios.c │ │ │ │ ├── openbios.h │ │ │ │ ├── plainboot.c │ │ │ │ ├── relocate.h │ │ │ │ ├── segment.c │ │ │ │ ├── segment.h │ │ │ │ ├── sys_info.c │ │ │ │ └── xbox │ │ │ │ ├── console.c │ │ │ │ └── methods.c │ │ ├── build.xml │ │ ├── config │ │ │ ├── examples │ │ │ │ ├── amd64_config.xml │ │ │ │ ├── ppc64_config.xml │ │ │ │ ├── ppc_config.xml │ │ │ │ ├── sparc32_config.xml │ │ │ │ ├── sparc64_config.xml │ │ │ │ └── x86_config.xml │ │ │ ├── scripts │ │ │ │ ├── reldir │ │ │ │ └── switch-arch │ │ │ └── xml │ │ │ │ ├── config-c.xsl │ │ │ │ ├── config-forth.xsl │ │ │ │ ├── dictionary.xsl │ │ │ │ ├── fcode.xsl │ │ │ │ ├── makefile.xsl │ │ │ │ ├── object.xsl │ │ │ │ ├── rules.xml │ │ │ │ ├── util.xsl │ │ │ │ └── xinclude.xsl │ │ ├── drivers │ │ │ ├── Kconfig │ │ │ ├── adb_bus.c │ │ │ ├── adb_bus.h │ │ │ ├── adb_kbd.c │ │ │ ├── adb_kbd.h │ │ │ ├── adb_mouse.c │ │ │ ├── adb_mouse.h │ │ │ ├── build.xml │ │ │ ├── cgthree.fs │ │ │ ├── cuda.c │ │ │ ├── cuda.h │ │ │ ├── escc.c │ │ │ ├── escc.h │ │ │ ├── esp.c │ │ │ ├── esp.fs │ │ │ ├── esp.h │ │ │ ├── floppy.c │ │ │ ├── floppy.h │ │ │ ├── fw_cfg.c │ │ │ ├── hdreg.h │ │ │ ├── ide.c │ │ │ ├── ide.h │ │ │ ├── iommu.c │ │ │ ├── iommu.h │ │ │ ├── kbd.c │ │ │ ├── kbd.h │ │ │ ├── macio.c │ │ │ ├── macio.h │ │ │ ├── obio.c │ │ │ ├── obio.h │ │ │ ├── pc_kbd.c │ │ │ ├── pc_serial.c │ │ │ ├── pci.c │ │ │ ├── pci.fs │ │ │ ├── pci.h │ │ │ ├── pci_database.c │ │ │ ├── pci_database.h │ │ │ ├── sbus.c │ │ │ ├── sbus.fs │ │ │ ├── scsi.h │ │ │ ├── tcx.fs │ │ │ ├── timer.c │ │ │ ├── timer.h │ │ │ ├── usb.c │ │ │ ├── usb.h │ │ │ ├── usbhid.c │ │ │ ├── usbohci.c │ │ │ ├── usbohci.h │ │ │ ├── usbohci_private.h │ │ │ ├── usbohci_rh.c │ │ │ ├── vga.fs │ │ │ ├── vga.h │ │ │ ├── vga_load_regs.c │ │ │ └── vga_set_mode.c │ │ ├── forth │ │ │ ├── Kconfig │ │ │ ├── admin │ │ │ │ ├── README │ │ │ │ ├── banner.fs │ │ │ │ ├── build.xml │ │ │ │ ├── callback.fs │ │ │ │ ├── devices.fs │ │ │ │ ├── help.fs │ │ │ │ ├── iocontrol.fs │ │ │ │ ├── nvram.fs │ │ │ │ ├── power.fs │ │ │ │ ├── reset.fs │ │ │ │ ├── script.fs │ │ │ │ ├── security.fs │ │ │ │ ├── selftest.fs │ │ │ │ └── userboot.fs │ │ │ ├── bootstrap │ │ │ │ ├── bootstrap.fs │ │ │ │ ├── build.xml │ │ │ │ ├── builtin.fs │ │ │ │ ├── hayes.fs │ │ │ │ ├── interpreter.fs │ │ │ │ ├── memory.fs │ │ │ │ └── start.fs │ │ │ ├── build.xml │ │ │ ├── debugging │ │ │ │ ├── build.xml │ │ │ │ ├── client.fs │ │ │ │ ├── fcode.fs │ │ │ │ ├── firmware.fs │ │ │ │ └── see.fs │ │ │ ├── device │ │ │ │ ├── README.device │ │ │ │ ├── build.xml │ │ │ │ ├── builtin.fs │ │ │ │ ├── device.fs │ │ │ │ ├── display.fs │ │ │ │ ├── extra.fs │ │ │ │ ├── fcode.fs │ │ │ │ ├── feval.fs │ │ │ │ ├── font.fs │ │ │ │ ├── logo.fs │ │ │ │ ├── missing │ │ │ │ ├── other.fs │ │ │ │ ├── package.fs │ │ │ │ ├── pathres.fs │ │ │ │ ├── preof.fs │ │ │ │ ├── property.fs │ │ │ │ ├── romfont.bin │ │ │ │ ├── structures.fs │ │ │ │ ├── table.fs │ │ │ │ ├── terminal.fs │ │ │ │ └── tree.fs │ │ │ ├── lib │ │ │ │ ├── 64bit.fs │ │ │ │ ├── build.xml │ │ │ │ ├── creation.fs │ │ │ │ ├── lists.fs │ │ │ │ ├── locals.fs │ │ │ │ ├── preinclude.fs │ │ │ │ ├── preprocessor.fs │ │ │ │ ├── rstack.fs │ │ │ │ ├── split.fs │ │ │ │ ├── string.fs │ │ │ │ └── vocabulary.fs │ │ │ ├── packages │ │ │ │ ├── Kconfig │ │ │ │ ├── README │ │ │ │ ├── build.xml │ │ │ │ ├── deblocker.fs │ │ │ │ ├── disklabel.fs │ │ │ │ ├── obp-tftp.fs │ │ │ │ ├── packages.fs │ │ │ │ └── terminal-emulator.fs │ │ │ ├── system │ │ │ │ ├── build.xml │ │ │ │ ├── ciface.fs │ │ │ │ └── main.fs │ │ │ ├── testsuite │ │ │ │ ├── README │ │ │ │ ├── build.xml │ │ │ │ ├── fract.fs │ │ │ │ ├── framebuffer-test.fs │ │ │ │ ├── memory-testsuite.fs │ │ │ │ └── splitfunc-testsuite.fs │ │ │ └── util │ │ │ │ ├── apic.fs │ │ │ │ ├── build.xml │ │ │ │ ├── pci.fs │ │ │ │ └── util.fs │ │ ├── fs │ │ │ ├── build.xml │ │ │ ├── ext2 │ │ │ │ ├── build.xml │ │ │ │ ├── ext2.h │ │ │ │ ├── ext2_close.c │ │ │ │ ├── ext2_closedir.c │ │ │ │ ├── ext2_fs.c │ │ │ │ ├── ext2_fs.h │ │ │ │ ├── ext2_lseek.c │ │ │ │ ├── ext2_mount.c │ │ │ │ ├── ext2_open.c │ │ │ │ ├── ext2_opendir.c │ │ │ │ ├── ext2_read.c │ │ │ │ ├── ext2_readdir.c │ │ │ │ ├── ext2_utils.c │ │ │ │ ├── ext2_utils.h │ │ │ │ └── libext2.h │ │ │ ├── grubfs │ │ │ │ ├── Kconfig │ │ │ │ ├── build.xml │ │ │ │ ├── debug.h │ │ │ │ ├── defs.h │ │ │ │ ├── dir.h │ │ │ │ ├── disk_inode.h │ │ │ │ ├── disk_inode_ffs.h │ │ │ │ ├── fat.h │ │ │ │ ├── filesys.h │ │ │ │ ├── fs.h │ │ │ │ ├── fsys_affs.c │ │ │ │ ├── fsys_ext2fs.c │ │ │ │ ├── fsys_fat.c │ │ │ │ ├── fsys_ffs.c │ │ │ │ ├── fsys_iso9660.c │ │ │ │ ├── fsys_jfs.c │ │ │ │ ├── fsys_minix.c │ │ │ │ ├── fsys_ntfs.c │ │ │ │ ├── fsys_reiserfs.c │ │ │ │ ├── fsys_ufs.c │ │ │ │ ├── fsys_vstafs.c │ │ │ │ ├── fsys_xfs.c │ │ │ │ ├── glue.h │ │ │ │ ├── grubfs_fs.c │ │ │ │ ├── iso9660.h │ │ │ │ ├── jfs.h │ │ │ │ ├── shared.h │ │ │ │ ├── ufs_dinode.h │ │ │ │ ├── ufs_fs.h │ │ │ │ ├── vstafs.h │ │ │ │ └── xfs.h │ │ │ ├── hfs │ │ │ │ ├── block.c │ │ │ │ ├── btree.c │ │ │ │ ├── build.xml │ │ │ │ ├── data.c │ │ │ │ ├── file.c │ │ │ │ ├── hfs.c │ │ │ │ ├── hfs_fs.c │ │ │ │ ├── include │ │ │ │ │ ├── apple.h │ │ │ │ │ ├── block.h │ │ │ │ │ ├── btree.h │ │ │ │ │ ├── data.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── hfs.h │ │ │ │ │ ├── libhfs.h │ │ │ │ │ ├── low.h │ │ │ │ │ ├── medium.h │ │ │ │ │ ├── node.h │ │ │ │ │ ├── record.h │ │ │ │ │ └── volume.h │ │ │ │ ├── low.c │ │ │ │ ├── medium.c │ │ │ │ ├── node.c │ │ │ │ ├── record.c │ │ │ │ └── volume.c │ │ │ ├── hfs_mdb.h │ │ │ ├── hfsplus │ │ │ │ ├── build.xml │ │ │ │ ├── hfsp_blockiter.c │ │ │ │ ├── hfsp_btree.c │ │ │ │ ├── hfsp_fs.c │ │ │ │ ├── hfsp_record.c │ │ │ │ ├── hfsp_unicode.c │ │ │ │ ├── hfsp_volume.c │ │ │ │ ├── include │ │ │ │ │ ├── apple.h │ │ │ │ │ ├── blockiter.h │ │ │ │ │ ├── btree.h │ │ │ │ │ ├── hfs.h │ │ │ │ │ ├── hfsp.h │ │ │ │ │ ├── hfstime.h │ │ │ │ │ ├── libhfsp.h │ │ │ │ │ ├── record.h │ │ │ │ │ ├── swab.h │ │ │ │ │ ├── unicode.h │ │ │ │ │ └── volume.h │ │ │ │ └── libhfsp.c │ │ │ ├── ioglue.c │ │ │ ├── iso9660 │ │ │ │ ├── build.xml │ │ │ │ ├── iso9660.h │ │ │ │ ├── iso9660_close.c │ │ │ │ ├── iso9660_closedir.c │ │ │ │ ├── iso9660_fs.c │ │ │ │ ├── iso9660_fs.h │ │ │ │ ├── iso9660_lseek.c │ │ │ │ ├── iso9660_mount.c │ │ │ │ ├── iso9660_open.c │ │ │ │ ├── iso9660_opendir.c │ │ │ │ ├── iso9660_read.c │ │ │ │ ├── iso9660_readdir.c │ │ │ │ └── libiso9660.h │ │ │ └── os.h │ │ ├── include │ │ │ ├── arch │ │ │ │ ├── amd64 │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── pci.h │ │ │ │ │ └── types.h │ │ │ │ ├── common │ │ │ │ │ ├── a.out.h │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── elf_boot.h │ │ │ │ │ ├── fw_cfg.h │ │ │ │ │ ├── nvram.h │ │ │ │ │ └── xcoff.h │ │ │ │ ├── ia64 │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── io.h │ │ │ │ │ └── types.h │ │ │ │ ├── ppc │ │ │ │ │ ├── asmdefs.h │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── pci.h │ │ │ │ │ ├── processor.h │ │ │ │ │ └── types.h │ │ │ │ ├── sparc32 │ │ │ │ │ ├── a.out.h │ │ │ │ │ ├── asi.h │ │ │ │ │ ├── crs.h │ │ │ │ │ ├── dma.h │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── ofmem_sparc32.h │ │ │ │ │ └── types.h │ │ │ │ ├── sparc64 │ │ │ │ │ ├── a.out.h │ │ │ │ │ ├── asi.h │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── ofmem_sparc64.h │ │ │ │ │ ├── pci.h │ │ │ │ │ └── types.h │ │ │ │ ├── unix │ │ │ │ │ ├── plugin_pci.h │ │ │ │ │ └── plugins.h │ │ │ │ └── x86 │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── pci.h │ │ │ │ │ └── types.h │ │ │ ├── config.h │ │ │ ├── drivers │ │ │ │ ├── drivers.h │ │ │ │ ├── pci.h │ │ │ │ ├── usb.h │ │ │ │ └── vga.h │ │ │ ├── fs │ │ │ │ └── fs.h │ │ │ ├── kernel │ │ │ │ ├── kernel.h │ │ │ │ └── stack.h │ │ │ ├── libc │ │ │ │ ├── byteorder.h │ │ │ │ ├── diskio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── string.h │ │ │ │ └── vsprintf.h │ │ │ ├── libopenbios │ │ │ │ ├── aout_load.h │ │ │ │ ├── bindings.h │ │ │ │ ├── bootcode_load.h │ │ │ │ ├── bootinfo_load.h │ │ │ │ ├── console.h │ │ │ │ ├── elf_load.h │ │ │ │ ├── fcode_load.h │ │ │ │ ├── fontdata.h │ │ │ │ ├── forth_load.h │ │ │ │ ├── initprogram.h │ │ │ │ ├── ipchecksum.h │ │ │ │ ├── load.h │ │ │ │ ├── of.h │ │ │ │ ├── ofmem.h │ │ │ │ ├── openbios.h │ │ │ │ ├── sys_info.h │ │ │ │ ├── video.h │ │ │ │ └── xcoff_load.h │ │ │ ├── mconfig.h │ │ │ ├── packages │ │ │ │ ├── nvram.h │ │ │ │ └── video.h │ │ │ └── sysinclude.h │ │ ├── kernel │ │ │ ├── Kconfig │ │ │ ├── README │ │ │ ├── bootstrap.c │ │ │ ├── build.xml │ │ │ ├── cross.h │ │ │ ├── dict.c │ │ │ ├── forth.c │ │ │ ├── include │ │ │ │ └── dict.h │ │ │ └── stack.c │ │ ├── libc │ │ │ ├── build.xml │ │ │ ├── ctype.c │ │ │ ├── diskio.c │ │ │ ├── extra.c │ │ │ ├── misc.c │ │ │ ├── string.c │ │ │ └── vsprintf.c │ │ ├── libgcc │ │ │ ├── __divdi3.c │ │ │ ├── __divti3.c │ │ │ ├── __lshrdi3.c │ │ │ ├── __negti2.c │ │ │ ├── __udivdi3.c │ │ │ ├── __udivmoddi4.c │ │ │ ├── __udivmodti4.c │ │ │ ├── __udivti3.c │ │ │ ├── __umoddi3.c │ │ │ ├── __umodti3.c │ │ │ ├── ashldi3.c │ │ │ ├── ashrdi3.c │ │ │ ├── build.xml │ │ │ ├── crtsavres.S │ │ │ ├── libgcc.h │ │ │ └── multi3.c │ │ ├── libopenbios │ │ │ ├── Kconfig │ │ │ ├── aout_load.c │ │ │ ├── bindings.c │ │ │ ├── bootcode_load.c │ │ │ ├── bootinfo_load.c │ │ │ ├── build.xml │ │ │ ├── clib.fs │ │ │ ├── client.c │ │ │ ├── console.c │ │ │ ├── elf_info.c │ │ │ ├── elf_load.c │ │ │ ├── fcode_load.c │ │ │ ├── font_8x16.c │ │ │ ├── font_8x8.c │ │ │ ├── forth_load.c │ │ │ ├── helpers.fs │ │ │ ├── init.c │ │ │ ├── initprogram.c │ │ │ ├── ipchecksum.c │ │ │ ├── linuxbios.h │ │ │ ├── linuxbios_info.c │ │ │ ├── load.c │ │ │ ├── ofmem_common.c │ │ │ ├── video_common.c │ │ │ └── xcoff_load.c │ │ ├── packages │ │ │ ├── bootinfo-loader.c │ │ │ ├── build.xml │ │ │ ├── cmdline.c │ │ │ ├── cmdline.fs │ │ │ ├── deblocker.c │ │ │ ├── disk-label.c │ │ │ ├── disk-label.fs │ │ │ ├── elf-loader.c │ │ │ ├── init.c │ │ │ ├── mac-parts.c │ │ │ ├── mac-parts.h │ │ │ ├── molvideo.c │ │ │ ├── nvram.c │ │ │ ├── packages.h │ │ │ ├── pc-parts.c │ │ │ ├── sun-parts.c │ │ │ └── xcoff-loader.c │ │ └── utils │ │ │ ├── README │ │ │ ├── devbios │ │ │ ├── COPYING │ │ │ ├── CREDITS │ │ │ ├── ChangeLog │ │ │ ├── Makefile │ │ │ ├── Makefile.24 │ │ │ ├── README.bios │ │ │ ├── ToDo │ │ │ ├── bios.h │ │ │ ├── bios_core.c │ │ │ ├── comp.c │ │ │ ├── filesystem.c │ │ │ ├── flashchips.c │ │ │ ├── flashchips.h │ │ │ ├── pcisets.c │ │ │ ├── pcisets.h │ │ │ ├── procfs.c │ │ │ ├── programming.c │ │ │ └── programming.h │ │ │ ├── dist │ │ │ ├── debian │ │ │ │ ├── changelog │ │ │ │ ├── control │ │ │ │ ├── packages │ │ │ │ └── rules │ │ │ └── openbios.spec │ │ │ ├── iso │ │ │ ├── README │ │ │ └── boot │ │ │ │ └── grub │ │ │ │ ├── README │ │ │ │ ├── menu.lst │ │ │ │ └── stage2_eltorito │ │ │ └── ofclient │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── endian.h │ │ │ ├── of1275.c │ │ │ ├── of1275.h │ │ │ ├── of1275_io.c │ │ │ └── ofclient.c │ ├── openhackware │ │ ├── COPYING │ │ ├── Changelog │ │ ├── Makefile │ │ ├── README │ │ ├── TODO │ │ ├── Timestamp │ │ └── src │ │ │ ├── bios.h │ │ │ ├── bloc.c │ │ │ ├── boot.S │ │ │ ├── boot.ld │ │ │ ├── bootinfos.c │ │ │ ├── char.c │ │ │ ├── dev │ │ │ ├── bus │ │ │ │ └── adb.h │ │ │ └── char │ │ │ │ ├── char.h │ │ │ │ ├── kbd.c │ │ │ │ ├── kbd.h │ │ │ │ ├── kbdadb.c │ │ │ │ └── pckbd.c │ │ │ ├── libc │ │ │ ├── include │ │ │ │ ├── ctype.h │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── stddef.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── string.h │ │ │ │ ├── strings.h │ │ │ │ └── unistd.h │ │ │ └── src │ │ │ │ ├── errno.c │ │ │ │ ├── format.c │ │ │ │ ├── malloc.c │ │ │ │ ├── mem.c │ │ │ │ └── str.c │ │ │ ├── libexec │ │ │ ├── chrp.c │ │ │ ├── core.c │ │ │ ├── elf.c │ │ │ ├── exec.h │ │ │ ├── macho.c │ │ │ ├── pef.c │ │ │ ├── prep.c │ │ │ └── xcoff.c │ │ │ ├── libfs │ │ │ ├── core.c │ │ │ ├── ext2.c │ │ │ ├── hfs.c │ │ │ ├── isofs.c │ │ │ ├── libfs.h │ │ │ └── raw.c │ │ │ ├── libpart │ │ │ ├── apple.c │ │ │ ├── core.c │ │ │ ├── isofs.c │ │ │ ├── libpart.h │ │ │ └── prep.c │ │ │ ├── main.c │ │ │ ├── main.ld │ │ │ ├── mm.c │ │ │ ├── nvram.c │ │ │ ├── of.c │ │ │ ├── pci.c │ │ │ ├── start.S │ │ │ ├── vectors.S │ │ │ ├── vectors.ld │ │ │ ├── vga.c │ │ │ └── vgafont.h │ ├── qemu-palcode │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── HEADER │ │ ├── Makefile │ │ ├── console-low.S │ │ ├── console.c │ │ ├── console.h │ │ ├── core-cia.h │ │ ├── core-typhoon.h │ │ ├── crb.c │ │ ├── hwrpb.h │ │ ├── init.c │ │ ├── ioport.h │ │ ├── memcpy.c │ │ ├── memset.c │ │ ├── osf.h │ │ ├── pal.S │ │ ├── pal.h │ │ ├── palcode.ld │ │ ├── pci.c │ │ ├── pci.h │ │ ├── pci_ids.h │ │ ├── pci_regs.h │ │ ├── printf.c │ │ ├── protos.h │ │ ├── ps2port.c │ │ ├── ps2port.h │ │ ├── strlen.S │ │ ├── sys-clipper.S │ │ ├── sys-clipper.h │ │ ├── sys-sx164.h │ │ ├── uart.c │ │ ├── uart.h │ │ ├── util.c │ │ ├── vgafonts.c │ │ ├── vgaio.c │ │ ├── vgatables.c │ │ └── vgatables.h │ ├── seabios-hppa │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── Makefile │ │ ├── README │ │ ├── docs │ │ │ ├── Build_overview.md │ │ │ ├── Contributing.md │ │ │ ├── Debugging.md │ │ │ ├── Developer_Documentation.md │ │ │ ├── Developer_links.md │ │ │ ├── Download.md │ │ │ ├── Execution_and_code_flow.md │ │ │ ├── Linking_overview.md │ │ │ ├── Mailinglist.md │ │ │ ├── Memory_Model.md │ │ │ ├── README │ │ │ ├── Releases.md │ │ │ ├── Runtime_config.md │ │ │ ├── SeaBIOS.md │ │ │ └── SeaVGABIOS.md │ │ ├── scripts │ │ │ ├── acpi_extract.py │ │ │ ├── acpi_extract_preprocess.py │ │ │ ├── buildrom.py │ │ │ ├── buildversion.py │ │ │ ├── checkrom.py │ │ │ ├── checkstack.py │ │ │ ├── checksum.py │ │ │ ├── encodeint.py │ │ │ ├── gen-offsets.sh │ │ │ ├── kconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── POTFILES.in │ │ │ │ ├── check.sh │ │ │ │ ├── conf.c │ │ │ │ ├── confdata.c │ │ │ │ ├── expr.c │ │ │ │ ├── expr.h │ │ │ │ ├── gconf.c │ │ │ │ ├── gconf.glade │ │ │ │ ├── images.c │ │ │ │ ├── kxgettext.c │ │ │ │ ├── lex.zconf.c │ │ │ │ ├── list.h │ │ │ │ ├── lkc.h │ │ │ │ ├── lkc_proto.h │ │ │ │ ├── lxdialog │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── BIG.FAT.WARNING │ │ │ │ │ ├── check-lxdialog.sh │ │ │ │ │ ├── checklist.c │ │ │ │ │ ├── dialog.h │ │ │ │ │ ├── inputbox.c │ │ │ │ │ ├── menubox.c │ │ │ │ │ ├── textbox.c │ │ │ │ │ ├── util.c │ │ │ │ │ └── yesno.c │ │ │ │ ├── mconf.c │ │ │ │ ├── menu.c │ │ │ │ ├── merge_config.sh │ │ │ │ ├── nconf.c │ │ │ │ ├── nconf.gui.c │ │ │ │ ├── nconf.h │ │ │ │ ├── qconf.cc │ │ │ │ ├── qconf.h │ │ │ │ ├── streamline_config.pl │ │ │ │ ├── symbol.c │ │ │ │ ├── util.c │ │ │ │ ├── zconf.gperf │ │ │ │ ├── zconf.hash.c_shipped │ │ │ │ ├── zconf.l │ │ │ │ ├── zconf.lex.c_shipped │ │ │ │ ├── zconf.tab.c_shipped │ │ │ │ └── zconf.y │ │ │ ├── layoutrom.py │ │ │ ├── python23compat.py │ │ │ ├── readserial.py │ │ │ ├── tarball.sh │ │ │ ├── test-build.sh │ │ │ ├── transdump.py │ │ │ └── vgafixup.py │ │ ├── src │ │ │ ├── Kconfig │ │ │ ├── apm.c │ │ │ ├── asm-offsets.c │ │ │ ├── biosvar.h │ │ │ ├── block.c │ │ │ ├── block.h │ │ │ ├── bmp.c │ │ │ ├── boot.c │ │ │ ├── bootsplash.c │ │ │ ├── bregs.h │ │ │ ├── byteorder.h │ │ │ ├── cdrom.c │ │ │ ├── clock.c │ │ │ ├── code16gcc.s │ │ │ ├── config.h │ │ │ ├── cp437.c │ │ │ ├── cp437.h │ │ │ ├── disk.c │ │ │ ├── e820map.c │ │ │ ├── e820map.h │ │ │ ├── entryfuncs.S │ │ │ ├── farptr.h │ │ │ ├── font.c │ │ │ ├── fw │ │ │ │ ├── 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 │ │ │ │ ├── acpi.c │ │ │ │ ├── biostables.c │ │ │ │ ├── coreboot.c │ │ │ │ ├── csm.c │ │ │ │ ├── dev-pci.h │ │ │ │ ├── dev-piix.h │ │ │ │ ├── dev-q35.h │ │ │ │ ├── lzmadecode.c │ │ │ │ ├── lzmadecode.h │ │ │ │ ├── mptable.c │ │ │ │ ├── mtrr.c │ │ │ │ ├── multiboot.c │ │ │ │ ├── paravirt.c │ │ │ │ ├── paravirt.h │ │ │ │ ├── pciinit.c │ │ │ │ ├── pirtable.c │ │ │ │ ├── q35-acpi-dsdt.dsl │ │ │ │ ├── romfile_loader.c │ │ │ │ ├── romfile_loader.h │ │ │ │ ├── shadow.c │ │ │ │ ├── smbios.c │ │ │ │ ├── smm.c │ │ │ │ ├── smp.c │ │ │ │ ├── ssdt-misc.dsl │ │ │ │ ├── ssdt-misc.hex │ │ │ │ ├── ssdt-pcihp.dsl │ │ │ │ ├── ssdt-pcihp.hex │ │ │ │ ├── ssdt-proc.dsl │ │ │ │ ├── ssdt-proc.hex │ │ │ │ ├── xen.c │ │ │ │ └── xen.h │ │ │ ├── gen-defs.h │ │ │ ├── hw │ │ │ │ ├── ahci.c │ │ │ │ ├── ahci.h │ │ │ │ ├── ata.c │ │ │ │ ├── ata.h │ │ │ │ ├── blockcmd.c │ │ │ │ ├── blockcmd.h │ │ │ │ ├── dma.c │ │ │ │ ├── esp-scsi.c │ │ │ │ ├── esp-scsi.h │ │ │ │ ├── floppy.c │ │ │ │ ├── lsi-scsi.c │ │ │ │ ├── lsi-scsi.h │ │ │ │ ├── megasas.c │ │ │ │ ├── megasas.h │ │ │ │ ├── mpt-scsi.c │ │ │ │ ├── mpt-scsi.h │ │ │ │ ├── nvme-int.h │ │ │ │ ├── nvme.c │ │ │ │ ├── nvme.h │ │ │ │ ├── pci.c │ │ │ │ ├── pci.h │ │ │ │ ├── pci_ids.h │ │ │ │ ├── pci_regs.h │ │ │ │ ├── pcidevice.c │ │ │ │ ├── pcidevice.h │ │ │ │ ├── pic.c │ │ │ │ ├── pic.h │ │ │ │ ├── ps2port.c │ │ │ │ ├── ps2port.h │ │ │ │ ├── pvscsi.c │ │ │ │ ├── pvscsi.h │ │ │ │ ├── ramdisk.c │ │ │ │ ├── rtc.c │ │ │ │ ├── rtc.h │ │ │ │ ├── sdcard.c │ │ │ │ ├── serialio.c │ │ │ │ ├── serialio.h │ │ │ │ ├── timer.c │ │ │ │ ├── tpm_drivers.c │ │ │ │ ├── tpm_drivers.h │ │ │ │ ├── usb-ehci.c │ │ │ │ ├── usb-ehci.h │ │ │ │ ├── usb-hid.c │ │ │ │ ├── usb-hid.h │ │ │ │ ├── usb-hub.c │ │ │ │ ├── usb-hub.h │ │ │ │ ├── usb-msc.c │ │ │ │ ├── usb-msc.h │ │ │ │ ├── usb-ohci.c │ │ │ │ ├── usb-ohci.h │ │ │ │ ├── usb-uas.c │ │ │ │ ├── usb-uas.h │ │ │ │ ├── usb-uhci.c │ │ │ │ ├── usb-uhci.h │ │ │ │ ├── usb-xhci.c │ │ │ │ ├── usb-xhci.h │ │ │ │ ├── usb.c │ │ │ │ ├── usb.h │ │ │ │ ├── virtio-blk.c │ │ │ │ ├── virtio-blk.h │ │ │ │ ├── virtio-pci.c │ │ │ │ ├── virtio-pci.h │ │ │ │ ├── virtio-ring.c │ │ │ │ ├── virtio-ring.h │ │ │ │ ├── virtio-scsi.c │ │ │ │ └── virtio-scsi.h │ │ │ ├── jpeg.c │ │ │ ├── kbd.c │ │ │ ├── list.h │ │ │ ├── malloc.c │ │ │ ├── malloc.h │ │ │ ├── memmap.h │ │ │ ├── misc.c │ │ │ ├── mouse.c │ │ │ ├── optionroms.c │ │ │ ├── output.c │ │ │ ├── output.h │ │ │ ├── parisc │ │ │ │ ├── b160l.h │ │ │ │ ├── head.S │ │ │ │ ├── hppa_hardware.h │ │ │ │ ├── malloc.c │ │ │ │ ├── pafirmware.lds.S │ │ │ │ ├── parisc.c │ │ │ │ ├── pdc.h │ │ │ │ ├── sti.c │ │ │ │ └── timer.c │ │ │ ├── pcibios.c │ │ │ ├── pmm.c │ │ │ ├── pnpbios.c │ │ │ ├── post.c │ │ │ ├── resume.c │ │ │ ├── romfile.c │ │ │ ├── romfile.h │ │ │ ├── romlayout.S │ │ │ ├── sercon.c │ │ │ ├── serial.c │ │ │ ├── sha1.c │ │ │ ├── sha1.h │ │ │ ├── stacks.c │ │ │ ├── stacks.h │ │ │ ├── std │ │ │ │ ├── LegacyBios.h │ │ │ │ ├── acpi.h │ │ │ │ ├── bda.h │ │ │ │ ├── disk.h │ │ │ │ ├── mptable.h │ │ │ │ ├── multiboot.h │ │ │ │ ├── optionrom.h │ │ │ │ ├── pirtable.h │ │ │ │ ├── pmm.h │ │ │ │ ├── pnpbios.h │ │ │ │ ├── smbios.h │ │ │ │ ├── tcg.h │ │ │ │ ├── vbe.h │ │ │ │ └── vga.h │ │ │ ├── string.c │ │ │ ├── string.h │ │ │ ├── system.c │ │ │ ├── tcgbios.c │ │ │ ├── tcgbios.h │ │ │ ├── types.h │ │ │ ├── util.h │ │ │ ├── version.c │ │ │ ├── vgahooks.c │ │ │ ├── x86.c │ │ │ └── x86.h │ │ └── vgasrc │ │ │ ├── Kconfig │ │ │ ├── bochsvga.c │ │ │ ├── bochsvga.h │ │ │ ├── cbvga.c │ │ │ ├── clext.c │ │ │ ├── geodevga.c │ │ │ ├── geodevga.h │ │ │ ├── stdvga.c │ │ │ ├── stdvga.h │ │ │ ├── stdvgaio.c │ │ │ ├── stdvgamodes.c │ │ │ ├── swcursor.c │ │ │ ├── vbe.c │ │ │ ├── vgabios.c │ │ │ ├── vgabios.h │ │ │ ├── vgaentry.S │ │ │ ├── vgafb.c │ │ │ ├── vgafb.h │ │ │ ├── vgafonts.c │ │ │ ├── vgahw.h │ │ │ ├── vgainit.c │ │ │ ├── vgalayout.lds.S │ │ │ ├── vgautil.h │ │ │ └── vgaversion.c │ ├── seabios │ │ ├── .gitignore │ │ ├── .version │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── Makefile │ │ ├── README │ │ ├── docs │ │ │ ├── Build_overview.md │ │ │ ├── Contributing.md │ │ │ ├── Debugging.md │ │ │ ├── Developer_Documentation.md │ │ │ ├── Developer_links.md │ │ │ ├── Download.md │ │ │ ├── Execution_and_code_flow.md │ │ │ ├── Linking_overview.md │ │ │ ├── Mailinglist.md │ │ │ ├── Memory_Model.md │ │ │ ├── README │ │ │ ├── Releases.md │ │ │ ├── Runtime_config.md │ │ │ ├── SeaBIOS.md │ │ │ └── SeaVGABIOS.md │ │ ├── scripts │ │ │ ├── acpi_extract.py │ │ │ ├── acpi_extract_preprocess.py │ │ │ ├── buildrom.py │ │ │ ├── buildversion.py │ │ │ ├── checkrom.py │ │ │ ├── checkstack.py │ │ │ ├── checksum.py │ │ │ ├── encodeint.py │ │ │ ├── gen-offsets.sh │ │ │ ├── kconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── POTFILES.in │ │ │ │ ├── check.sh │ │ │ │ ├── conf.c │ │ │ │ ├── confdata.c │ │ │ │ ├── expr.c │ │ │ │ ├── expr.h │ │ │ │ ├── gconf.c │ │ │ │ ├── gconf.glade │ │ │ │ ├── images.c │ │ │ │ ├── kxgettext.c │ │ │ │ ├── lex.zconf.c │ │ │ │ ├── list.h │ │ │ │ ├── lkc.h │ │ │ │ ├── lkc_proto.h │ │ │ │ ├── lxdialog │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── BIG.FAT.WARNING │ │ │ │ │ ├── check-lxdialog.sh │ │ │ │ │ ├── checklist.c │ │ │ │ │ ├── dialog.h │ │ │ │ │ ├── inputbox.c │ │ │ │ │ ├── menubox.c │ │ │ │ │ ├── textbox.c │ │ │ │ │ ├── util.c │ │ │ │ │ └── yesno.c │ │ │ │ ├── mconf.c │ │ │ │ ├── menu.c │ │ │ │ ├── merge_config.sh │ │ │ │ ├── nconf.c │ │ │ │ ├── nconf.gui.c │ │ │ │ ├── nconf.h │ │ │ │ ├── qconf.cc │ │ │ │ ├── qconf.h │ │ │ │ ├── streamline_config.pl │ │ │ │ ├── symbol.c │ │ │ │ ├── util.c │ │ │ │ ├── zconf.gperf │ │ │ │ ├── zconf.hash.c_shipped │ │ │ │ ├── zconf.l │ │ │ │ ├── zconf.lex.c_shipped │ │ │ │ ├── zconf.tab.c_shipped │ │ │ │ └── zconf.y │ │ │ ├── layoutrom.py │ │ │ ├── python23compat.py │ │ │ ├── readserial.py │ │ │ ├── tarball.sh │ │ │ ├── test-build.sh │ │ │ ├── transdump.py │ │ │ └── vgafixup.py │ │ ├── src │ │ │ ├── Kconfig │ │ │ ├── apm.c │ │ │ ├── asm-offsets.c │ │ │ ├── biosvar.h │ │ │ ├── block.c │ │ │ ├── block.h │ │ │ ├── bmp.c │ │ │ ├── boot.c │ │ │ ├── bootsplash.c │ │ │ ├── bregs.h │ │ │ ├── byteorder.h │ │ │ ├── cdrom.c │ │ │ ├── clock.c │ │ │ ├── code16gcc.s │ │ │ ├── config.h │ │ │ ├── cp437.c │ │ │ ├── cp437.h │ │ │ ├── disk.c │ │ │ ├── e820map.c │ │ │ ├── e820map.h │ │ │ ├── entryfuncs.S │ │ │ ├── farptr.h │ │ │ ├── font.c │ │ │ ├── fw │ │ │ │ ├── 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 │ │ │ │ ├── acpi.c │ │ │ │ ├── biostables.c │ │ │ │ ├── coreboot.c │ │ │ │ ├── csm.c │ │ │ │ ├── dev-pci.h │ │ │ │ ├── dev-piix.h │ │ │ │ ├── dev-q35.h │ │ │ │ ├── lzmadecode.c │ │ │ │ ├── lzmadecode.h │ │ │ │ ├── mptable.c │ │ │ │ ├── mtrr.c │ │ │ │ ├── multiboot.c │ │ │ │ ├── paravirt.c │ │ │ │ ├── paravirt.h │ │ │ │ ├── pciinit.c │ │ │ │ ├── pirtable.c │ │ │ │ ├── q35-acpi-dsdt.dsl │ │ │ │ ├── romfile_loader.c │ │ │ │ ├── romfile_loader.h │ │ │ │ ├── shadow.c │ │ │ │ ├── smbios.c │ │ │ │ ├── smm.c │ │ │ │ ├── smp.c │ │ │ │ ├── ssdt-misc.dsl │ │ │ │ ├── ssdt-misc.hex │ │ │ │ ├── ssdt-pcihp.dsl │ │ │ │ ├── ssdt-pcihp.hex │ │ │ │ ├── ssdt-proc.dsl │ │ │ │ ├── ssdt-proc.hex │ │ │ │ ├── xen.c │ │ │ │ └── xen.h │ │ │ ├── gen-defs.h │ │ │ ├── hw │ │ │ │ ├── ahci.c │ │ │ │ ├── ahci.h │ │ │ │ ├── ata.c │ │ │ │ ├── ata.h │ │ │ │ ├── blockcmd.c │ │ │ │ ├── blockcmd.h │ │ │ │ ├── dma.c │ │ │ │ ├── esp-scsi.c │ │ │ │ ├── esp-scsi.h │ │ │ │ ├── floppy.c │ │ │ │ ├── lsi-scsi.c │ │ │ │ ├── lsi-scsi.h │ │ │ │ ├── megasas.c │ │ │ │ ├── megasas.h │ │ │ │ ├── mpt-scsi.c │ │ │ │ ├── mpt-scsi.h │ │ │ │ ├── nvme-int.h │ │ │ │ ├── nvme.c │ │ │ │ ├── nvme.h │ │ │ │ ├── pci.c │ │ │ │ ├── pci.h │ │ │ │ ├── pci_ids.h │ │ │ │ ├── pci_regs.h │ │ │ │ ├── pcidevice.c │ │ │ │ ├── pcidevice.h │ │ │ │ ├── pic.c │ │ │ │ ├── pic.h │ │ │ │ ├── ps2port.c │ │ │ │ ├── ps2port.h │ │ │ │ ├── pvscsi.c │ │ │ │ ├── pvscsi.h │ │ │ │ ├── ramdisk.c │ │ │ │ ├── rtc.c │ │ │ │ ├── rtc.h │ │ │ │ ├── sdcard.c │ │ │ │ ├── serialio.c │ │ │ │ ├── serialio.h │ │ │ │ ├── timer.c │ │ │ │ ├── tpm_drivers.c │ │ │ │ ├── tpm_drivers.h │ │ │ │ ├── usb-ehci.c │ │ │ │ ├── usb-ehci.h │ │ │ │ ├── usb-hid.c │ │ │ │ ├── usb-hid.h │ │ │ │ ├── usb-hub.c │ │ │ │ ├── usb-hub.h │ │ │ │ ├── usb-msc.c │ │ │ │ ├── usb-msc.h │ │ │ │ ├── usb-ohci.c │ │ │ │ ├── usb-ohci.h │ │ │ │ ├── usb-uas.c │ │ │ │ ├── usb-uas.h │ │ │ │ ├── usb-uhci.c │ │ │ │ ├── usb-uhci.h │ │ │ │ ├── usb-xhci.c │ │ │ │ ├── usb-xhci.h │ │ │ │ ├── usb.c │ │ │ │ ├── usb.h │ │ │ │ ├── virtio-blk.c │ │ │ │ ├── virtio-blk.h │ │ │ │ ├── virtio-pci.c │ │ │ │ ├── virtio-pci.h │ │ │ │ ├── virtio-ring.c │ │ │ │ ├── virtio-ring.h │ │ │ │ ├── virtio-scsi.c │ │ │ │ └── virtio-scsi.h │ │ │ ├── jpeg.c │ │ │ ├── kbd.c │ │ │ ├── list.h │ │ │ ├── malloc.c │ │ │ ├── malloc.h │ │ │ ├── memmap.h │ │ │ ├── misc.c │ │ │ ├── mouse.c │ │ │ ├── optionroms.c │ │ │ ├── output.c │ │ │ ├── output.h │ │ │ ├── pcibios.c │ │ │ ├── pmm.c │ │ │ ├── pnpbios.c │ │ │ ├── post.c │ │ │ ├── resume.c │ │ │ ├── romfile.c │ │ │ ├── romfile.h │ │ │ ├── romlayout.S │ │ │ ├── sercon.c │ │ │ ├── serial.c │ │ │ ├── sha1.c │ │ │ ├── sha1.h │ │ │ ├── stacks.c │ │ │ ├── stacks.h │ │ │ ├── std │ │ │ │ ├── LegacyBios.h │ │ │ │ ├── acpi.h │ │ │ │ ├── bda.h │ │ │ │ ├── disk.h │ │ │ │ ├── mptable.h │ │ │ │ ├── multiboot.h │ │ │ │ ├── optionrom.h │ │ │ │ ├── pirtable.h │ │ │ │ ├── pmm.h │ │ │ │ ├── pnpbios.h │ │ │ │ ├── smbios.h │ │ │ │ ├── tcg.h │ │ │ │ ├── vbe.h │ │ │ │ └── vga.h │ │ │ ├── string.c │ │ │ ├── string.h │ │ │ ├── system.c │ │ │ ├── tcgbios.c │ │ │ ├── tcgbios.h │ │ │ ├── types.h │ │ │ ├── util.h │ │ │ ├── version.c │ │ │ ├── vgahooks.c │ │ │ ├── x86.c │ │ │ └── x86.h │ │ └── vgasrc │ │ │ ├── Kconfig │ │ │ ├── bochsvga.c │ │ │ ├── bochsvga.h │ │ │ ├── cbvga.c │ │ │ ├── clext.c │ │ │ ├── geodevga.c │ │ │ ├── geodevga.h │ │ │ ├── stdvga.c │ │ │ ├── stdvga.h │ │ │ ├── stdvgaio.c │ │ │ ├── stdvgamodes.c │ │ │ ├── swcursor.c │ │ │ ├── vbe.c │ │ │ ├── vgabios.c │ │ │ ├── vgabios.h │ │ │ ├── vgaentry.S │ │ │ ├── vgafb.c │ │ │ ├── vgafb.h │ │ │ ├── vgafonts.c │ │ │ ├── vgahw.h │ │ │ ├── vgainit.c │ │ │ ├── vgalayout.lds.S │ │ │ ├── vgautil.h │ │ │ └── vgaversion.c │ ├── sgabios │ │ ├── COPYING │ │ ├── Makefile │ │ ├── csum8.c │ │ ├── design.txt │ │ ├── rom16.ld │ │ ├── sgabios.S │ │ └── sgabios.h │ ├── skiboot │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENCE │ │ ├── Makefile │ │ ├── Makefile.main │ │ ├── Makefile.rules │ │ ├── README.md │ │ ├── asm │ │ │ ├── Makefile.inc │ │ │ ├── asm-offsets.c │ │ │ ├── dummy_map.S │ │ │ ├── head.S │ │ │ ├── kernel-wrapper.S │ │ │ ├── lock.S │ │ │ ├── misc.S │ │ │ ├── real_map.S │ │ │ └── rom_entry.S │ │ ├── ccan │ │ │ ├── Makefile.check │ │ │ ├── Makefile.inc │ │ │ ├── array_size │ │ │ │ ├── LICENSE │ │ │ │ ├── _info │ │ │ │ ├── array_size.h │ │ │ │ └── test │ │ │ │ │ ├── compile_fail-function-param.c │ │ │ │ │ ├── compile_fail.c │ │ │ │ │ └── run.c │ │ │ ├── build_assert │ │ │ │ ├── LICENSE │ │ │ │ ├── _info │ │ │ │ ├── build_assert.h │ │ │ │ └── test │ │ │ │ │ ├── compile_fail-expr.c │ │ │ │ │ ├── compile_fail.c │ │ │ │ │ ├── compile_ok.c │ │ │ │ │ └── run-BUILD_ASSERT_OR_ZERO.c │ │ │ ├── check_type │ │ │ │ ├── LICENSE │ │ │ │ ├── _info │ │ │ │ ├── check_type.h │ │ │ │ └── test │ │ │ │ │ ├── compile_fail-check_type.c │ │ │ │ │ ├── compile_fail-check_type_unsigned.c │ │ │ │ │ ├── compile_fail-check_types_match.c │ │ │ │ │ └── run.c │ │ │ ├── config.h │ │ │ ├── container_of │ │ │ │ ├── LICENSE │ │ │ │ ├── _info │ │ │ │ ├── container_of.h │ │ │ │ └── test │ │ │ │ │ ├── compile_fail-bad-type.c │ │ │ │ │ ├── compile_fail-types.c │ │ │ │ │ ├── compile_fail-var-types.c │ │ │ │ │ └── run.c │ │ │ ├── endian │ │ │ │ ├── .depends │ │ │ │ ├── LICENSE │ │ │ │ ├── _info │ │ │ │ ├── endian.h │ │ │ │ └── test │ │ │ │ │ ├── compile_ok-constant.c │ │ │ │ │ └── run.c │ │ │ ├── list │ │ │ │ ├── LICENSE │ │ │ │ ├── _info │ │ │ │ ├── list.c │ │ │ │ ├── list.h │ │ │ │ └── test │ │ │ │ │ ├── compile_ok-constant.c │ │ │ │ │ ├── helper.c │ │ │ │ │ ├── helper.h │ │ │ │ │ ├── run-check-corrupt.c │ │ │ │ │ ├── run-list_del_from-assert.c │ │ │ │ │ ├── run-single-eval.c │ │ │ │ │ ├── run-with-debug.c │ │ │ │ │ └── run.c │ │ │ ├── short_types │ │ │ │ ├── LICENSE │ │ │ │ ├── _info │ │ │ │ ├── short_types.h │ │ │ │ └── test │ │ │ │ │ ├── run-endian.c │ │ │ │ │ └── run.c │ │ │ ├── str │ │ │ │ ├── LICENSE │ │ │ │ ├── _info │ │ │ │ ├── str.c │ │ │ │ ├── str.h │ │ │ │ └── test │ │ │ │ │ ├── compile_fail-STR_MAX_CHARS.c │ │ │ │ │ ├── compile_fail-isalnum.c │ │ │ │ │ ├── compile_fail-isalpha.c │ │ │ │ │ ├── compile_fail-isascii.c │ │ │ │ │ ├── compile_fail-isblank.c │ │ │ │ │ ├── compile_fail-iscntrl.c │ │ │ │ │ ├── compile_fail-isdigit.c │ │ │ │ │ ├── compile_fail-islower.c │ │ │ │ │ ├── compile_fail-isprint.c │ │ │ │ │ ├── compile_fail-ispunct.c │ │ │ │ │ ├── compile_fail-isspace.c │ │ │ │ │ ├── compile_fail-isupper.c │ │ │ │ │ ├── compile_fail-isxdigit.c │ │ │ │ │ ├── compile_fail-strchr.c │ │ │ │ │ ├── compile_fail-strrchr.c │ │ │ │ │ ├── compile_fail-strstr.c │ │ │ │ │ ├── debug.c │ │ │ │ │ ├── run-STR_MAX_CHARS.c │ │ │ │ │ └── run.c │ │ │ └── tap │ │ │ │ └── tap.h │ │ ├── core │ │ │ ├── Makefile.inc │ │ │ ├── affinity.c │ │ │ ├── bitmap.c │ │ │ ├── buddy.c │ │ │ ├── chip.c │ │ │ ├── console-log.c │ │ │ ├── console.c │ │ │ ├── cpu.c │ │ │ ├── device.c │ │ │ ├── direct-controls.c │ │ │ ├── errorlog.c │ │ │ ├── exceptions.c │ │ │ ├── fast-reboot.c │ │ │ ├── fdt.c │ │ │ ├── flash-subpartition.c │ │ │ ├── flash.c │ │ │ ├── gcov-profiling.c │ │ │ ├── hmi.c │ │ │ ├── hostservices.c │ │ │ ├── i2c.c │ │ │ ├── init.c │ │ │ ├── interrupts.c │ │ │ ├── ipmi-opal.c │ │ │ ├── ipmi.c │ │ │ ├── lock.c │ │ │ ├── malloc.c │ │ │ ├── mem_region.c │ │ │ ├── nvram-format.c │ │ │ ├── nvram.c │ │ │ ├── opal-msg.c │ │ │ ├── opal.c │ │ │ ├── pci-dt-slot.c │ │ │ ├── pci-iov.c │ │ │ ├── pci-opal.c │ │ │ ├── pci-quirk.c │ │ │ ├── pci-slot.c │ │ │ ├── pci-virt.c │ │ │ ├── pci.c │ │ │ ├── pcie-slot.c │ │ │ ├── pel.c │ │ │ ├── platform.c │ │ │ ├── pool.c │ │ │ ├── powercap.c │ │ │ ├── psr.c │ │ │ ├── relocate.c │ │ │ ├── rtc.c │ │ │ ├── sensor.c │ │ │ ├── stack.c │ │ │ ├── test │ │ │ │ ├── Makefile.check │ │ │ │ ├── run-api-test.c │ │ │ │ ├── run-bitmap.c │ │ │ │ ├── run-buddy.c │ │ │ │ ├── run-console-log-buf-overrun.c │ │ │ │ ├── run-console-log-pr_fmt.c │ │ │ │ ├── run-console-log.c │ │ │ │ ├── run-device.c │ │ │ │ ├── run-flash-subpartition.c │ │ │ │ ├── run-malloc-speed.c │ │ │ │ ├── run-malloc.c │ │ │ │ ├── run-mem_range_is_reserved.c │ │ │ │ ├── run-mem_region.c │ │ │ │ ├── run-mem_region_init.c │ │ │ │ ├── run-mem_region_next.c │ │ │ │ ├── run-mem_region_release_unused.c │ │ │ │ ├── run-mem_region_release_unused_noalloc.c │ │ │ │ ├── run-mem_region_reservations.c │ │ │ │ ├── run-msg.c │ │ │ │ ├── run-nvram-format.c │ │ │ │ ├── run-pel.c │ │ │ │ ├── run-pool.c │ │ │ │ ├── run-time-utils.c │ │ │ │ ├── run-timebase.c │ │ │ │ ├── run-timer.c │ │ │ │ ├── run-trace.c │ │ │ │ └── stubs.c │ │ │ ├── time-utils.c │ │ │ ├── timebase.c │ │ │ ├── timer.c │ │ │ ├── utils.c │ │ │ └── vpd.c │ │ ├── coverity-model.c │ │ ├── doc │ │ │ ├── DtsLexer.py │ │ │ ├── Makefile │ │ │ ├── _static │ │ │ │ └── .a_file_for_git_to_keep_empty_directory_around │ │ │ ├── bmc.rst │ │ │ ├── conf.py │ │ │ ├── console-log.rst │ │ │ ├── device-tree.rst │ │ │ ├── device-tree │ │ │ │ ├── examples │ │ │ │ │ └── power9-phb4.dts │ │ │ │ ├── ibm,opal.rst │ │ │ │ ├── ibm,opal │ │ │ │ │ ├── diagnostics.rst │ │ │ │ │ ├── firmware.rst │ │ │ │ │ ├── flash.rst │ │ │ │ │ ├── led.rst │ │ │ │ │ ├── oppanel.rst │ │ │ │ │ ├── power-mgt.rst │ │ │ │ │ ├── power-mgt │ │ │ │ │ │ ├── occ.rst │ │ │ │ │ │ ├── powercap.rst │ │ │ │ │ │ └── psr.rst │ │ │ │ │ ├── sensor-groups.rst │ │ │ │ │ └── sensors.rst │ │ │ │ ├── ibm,secureboot.rst │ │ │ │ ├── imc.rst │ │ │ │ ├── index.rst │ │ │ │ ├── nvlink.rst │ │ │ │ ├── nx.rst │ │ │ │ ├── reserved-memory.rst │ │ │ │ ├── tpm.rst │ │ │ │ ├── vas.rst │ │ │ │ └── vpd.rst │ │ │ ├── error-logging.rst │ │ │ ├── gcov.rst │ │ │ ├── imc.rst │ │ │ ├── index.rst │ │ │ ├── memory.rst │ │ │ ├── nvlink.rst │ │ │ ├── opal-api │ │ │ │ ├── index.rst │ │ │ │ ├── opal-cec-power-down-5.rst │ │ │ │ ├── opal-cec-reboot-6-116.rst │ │ │ │ ├── opal-check-token-80.rst │ │ │ │ ├── opal-code-update-76-77-78.rst │ │ │ │ ├── opal-console-read-write-1-2.rst │ │ │ │ ├── opal-elog-71-72-73-74-75.rst │ │ │ │ ├── opal-flash-110-111-112.rst │ │ │ │ ├── opal-get-device-tree-118.rst │ │ │ │ ├── opal-get-msg-85.rst │ │ │ │ ├── opal-get-msi-39-40.rst │ │ │ │ ├── opal-get-xive-20.rst │ │ │ │ ├── opal-get-xive-source-38.rst │ │ │ │ ├── opal-handle-interrupt.rst │ │ │ │ ├── opal-imc-counters.rst │ │ │ │ ├── opal-int-eoi-124.rst │ │ │ │ ├── opal-int-get-xirr-122.rst │ │ │ │ ├── opal-int-set-cppr-123.rst │ │ │ │ ├── opal-int-set-mfrr-125.rst │ │ │ │ ├── opal-invalid-call--1.rst │ │ │ │ ├── opal-ipmi-send-recv-107-108.rst │ │ │ │ ├── opal-led-get-set-114-115.rst │ │ │ │ ├── opal-lpc-read-write-67-68.rst │ │ │ │ ├── opal-messages.rst │ │ │ │ ├── opal-nmmu-set-ptcr-127.txt │ │ │ │ ├── opal-npu2-146-147-148.rst │ │ │ │ ├── opal-nvram-read-write-7-8.rst │ │ │ │ ├── opal-pci-get-phb-diag-data2-64.rst │ │ │ │ ├── opal-pci-get-power-state-120.rst │ │ │ │ ├── opal-pci-get-presence-state-119.rst │ │ │ │ ├── opal-pci-get-set-xive-reissue-35-36.rst │ │ │ │ ├── opal-pci-map-pe-dma-window-44.rst │ │ │ │ ├── opal-pci-map-pe-dma-window-real-45.rst │ │ │ │ ├── opal-pci-map-pe-mmio-window-29.rst │ │ │ │ ├── opal-pci-phb-mmio-enable-27.rst │ │ │ │ ├── opal-pci-set-mve-33.rst │ │ │ │ ├── opal-pci-set-mve-enable-34.rst │ │ │ │ ├── opal-pci-set-p2p-157.rst │ │ │ │ ├── opal-pci-set-pe-31.rst │ │ │ │ ├── opal-pci-set-peltv-32.rst │ │ │ │ ├── opal-pci-set-phb-mem-window-28.rst │ │ │ │ ├── opal-pci-set-power-state-121.rst │ │ │ │ ├── opal-pci-set-xive-pe-37.rst │ │ │ │ ├── opal-pci-tce-kill-126.rst │ │ │ │ ├── opal-poll-events.rst │ │ │ │ ├── opal-power-shift-ratio.rst │ │ │ │ ├── opal-powercap.rst │ │ │ │ ├── opal-prd-msg-113.rst │ │ │ │ ├── opal-read-write-tpo-103-104.rst │ │ │ │ ├── opal-register-dump-region-101.rst │ │ │ │ ├── opal-reinit-cpus-70.rst │ │ │ │ ├── opal-return-cpu-69.rst │ │ │ │ ├── opal-rtc-read-3.rst │ │ │ │ ├── opal-rtc-write-4.rst │ │ │ │ ├── opal-sensor-group-clear-156.rst │ │ │ │ ├── opal-sensor-read-88.rst │ │ │ │ ├── opal-set-xive-19.rst │ │ │ │ ├── opal-signal-system-reset-145.rst │ │ │ │ ├── opal-slw-set-reg-100.rst │ │ │ │ ├── opal-sync-host-reboot-87.rst │ │ │ │ ├── opal-test-0.rst │ │ │ │ ├── opal-unregister-dump-region-102.rst │ │ │ │ ├── opal-xscom-read-write-65-66.rst │ │ │ │ ├── power9-changes.rst │ │ │ │ └── return-codes.rst │ │ │ ├── opal-spec.rst │ │ │ ├── overview.rst │ │ │ ├── pci-slot.rst │ │ │ ├── pci.rst │ │ │ ├── release-notes │ │ │ │ ├── index.rst │ │ │ │ ├── skiboot-5.1.0-beta1.rst │ │ │ │ ├── skiboot-5.1.0-beta2.rst │ │ │ │ ├── skiboot-5.1.0.rst │ │ │ │ ├── skiboot-5.1.1.rst │ │ │ │ ├── skiboot-5.1.10.rst │ │ │ │ ├── skiboot-5.1.11.rst │ │ │ │ ├── skiboot-5.1.12.rst │ │ │ │ ├── skiboot-5.1.13.rst │ │ │ │ ├── skiboot-5.1.14.rst │ │ │ │ ├── skiboot-5.1.15.rst │ │ │ │ ├── skiboot-5.1.16.rst │ │ │ │ ├── skiboot-5.1.17.rst │ │ │ │ ├── skiboot-5.1.18.rst │ │ │ │ ├── skiboot-5.1.19.rst │ │ │ │ ├── skiboot-5.1.2.rst │ │ │ │ ├── skiboot-5.1.20.rst │ │ │ │ ├── skiboot-5.1.21.rst │ │ │ │ ├── skiboot-5.1.3.rst │ │ │ │ ├── skiboot-5.1.4.rst │ │ │ │ ├── skiboot-5.1.5.rst │ │ │ │ ├── skiboot-5.1.6.rst │ │ │ │ ├── skiboot-5.1.7.rst │ │ │ │ ├── skiboot-5.1.8.rst │ │ │ │ ├── skiboot-5.1.9.rst │ │ │ │ ├── skiboot-5.2.0-rc1.rst │ │ │ │ ├── skiboot-5.2.0-rc2.rst │ │ │ │ ├── skiboot-5.2.0.rst │ │ │ │ ├── skiboot-5.2.1.rst │ │ │ │ ├── skiboot-5.2.2.rst │ │ │ │ ├── skiboot-5.2.3.rst │ │ │ │ ├── skiboot-5.2.4.rst │ │ │ │ ├── skiboot-5.2.5.rst │ │ │ │ ├── skiboot-5.3.0-rc1.rst │ │ │ │ ├── skiboot-5.3.0-rc2.rst │ │ │ │ ├── skiboot-5.3.0.rst │ │ │ │ ├── skiboot-5.3.1.rst │ │ │ │ ├── skiboot-5.3.2.rst │ │ │ │ ├── skiboot-5.3.3.rst │ │ │ │ ├── skiboot-5.3.4.rst │ │ │ │ ├── skiboot-5.3.5.rst │ │ │ │ ├── skiboot-5.3.6.rst │ │ │ │ ├── skiboot-5.3.7.rst │ │ │ │ ├── skiboot-5.4.0-rc1.rst │ │ │ │ ├── skiboot-5.4.0-rc2.rst │ │ │ │ ├── skiboot-5.4.0-rc3.rst │ │ │ │ ├── skiboot-5.4.0-rc4.rst │ │ │ │ ├── skiboot-5.4.0.rst │ │ │ │ ├── skiboot-5.4.1.rst │ │ │ │ ├── skiboot-5.4.2.rst │ │ │ │ ├── skiboot-5.4.3.rst │ │ │ │ ├── skiboot-5.4.4.rst │ │ │ │ ├── skiboot-5.4.5.rst │ │ │ │ ├── skiboot-5.4.6.rst │ │ │ │ ├── skiboot-5.4.7.rst │ │ │ │ ├── skiboot-5.4.8.rst │ │ │ │ ├── skiboot-5.5.0-rc1.rst │ │ │ │ ├── skiboot-5.5.0-rc2.rst │ │ │ │ ├── skiboot-5.5.0-rc3.rst │ │ │ │ ├── skiboot-5.5.0.rst │ │ │ │ ├── skiboot-5.6.0-rc1.rst │ │ │ │ ├── skiboot-5.6.0-rc2.rst │ │ │ │ ├── skiboot-5.6.0.rst │ │ │ │ ├── skiboot-5.7-rc1.rst │ │ │ │ ├── skiboot-5.7-rc2.rst │ │ │ │ ├── skiboot-5.7.rst │ │ │ │ ├── skiboot-5.8-rc1.rst │ │ │ │ ├── skiboot-5.8.rst │ │ │ │ ├── skiboot-5.9-rc1.rst │ │ │ │ ├── skiboot-5.9-rc2.rst │ │ │ │ ├── skiboot-5.9-rc3.rst │ │ │ │ ├── skiboot-5.9-rc4.rst │ │ │ │ ├── skiboot-5.9-rc5.rst │ │ │ │ └── skiboot-5.9.rst │ │ │ ├── stable-skiboot-rules.rst │ │ │ ├── stb.rst │ │ │ ├── versioning.rst │ │ │ ├── xive.rst │ │ │ └── xscom-node-bindings.rst │ │ ├── external │ │ │ ├── Makefile.check │ │ │ ├── boot-tests │ │ │ │ ├── bmc_support.sh │ │ │ │ ├── boot_test.sh │ │ │ │ ├── extract_gcov.sh │ │ │ │ ├── fsp_support.sh │ │ │ │ ├── openbmc_support.sh │ │ │ │ └── smc_support.sh │ │ │ ├── common │ │ │ │ ├── .gitignore │ │ │ │ ├── arch_flash.h │ │ │ │ ├── arch_flash_arm.c │ │ │ │ ├── arch_flash_arm_io.h │ │ │ │ ├── arch_flash_common.c │ │ │ │ ├── arch_flash_powerpc.c │ │ │ │ ├── arch_flash_powerpc_io.h │ │ │ │ ├── arch_flash_x86.c │ │ │ │ ├── arch_flash_x86_io.h │ │ │ │ ├── get_arch.sh │ │ │ │ └── rules.mk │ │ │ ├── ffspart │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── config.h │ │ │ │ ├── ffspart.c │ │ │ │ ├── rules.mk │ │ │ │ └── test │ │ │ │ │ ├── files │ │ │ │ │ ├── 03-tiny-pnor.in │ │ │ │ │ ├── 03-tiny-pnor.out │ │ │ │ │ ├── 03.1-tiny-pnor-backup.in │ │ │ │ │ ├── 03.1-tiny-pnor-backup.out │ │ │ │ │ ├── 04-tiny-pnor2.in │ │ │ │ │ ├── 04-tiny-pnor2.out │ │ │ │ │ ├── 05-hdr-overlap.in │ │ │ │ │ ├── 05.1-hdr-overlap-backup.in │ │ │ │ │ ├── 06-small-flash.in │ │ │ │ │ ├── 07-big-files.in │ │ │ │ │ ├── 08-small-files.in │ │ │ │ │ ├── 10-bad-input.in │ │ │ │ │ ├── 11-long-name.in │ │ │ │ │ ├── 12-bad-numbers-base.in │ │ │ │ │ ├── 13-bad-numbers-size.in │ │ │ │ │ ├── 14-bad-input-flags.in │ │ │ │ │ └── 15-overlapping-partitions.in │ │ │ │ │ ├── make-check-test │ │ │ │ │ ├── results │ │ │ │ │ ├── 00-usage.err │ │ │ │ │ ├── 00-usage.out │ │ │ │ │ ├── 01-param-sanity.err │ │ │ │ │ ├── 01-param-sanity.out │ │ │ │ │ ├── 02-param-sides.err │ │ │ │ │ ├── 02-param-sides.out │ │ │ │ │ ├── 05-hdr-overlap.err │ │ │ │ │ ├── 05-hdr-overlap.out │ │ │ │ │ ├── 05.1-hdr-overlap-backup.err │ │ │ │ │ ├── 05.1-hdr-overlap-backup.out │ │ │ │ │ ├── 06-small-flash.err │ │ │ │ │ ├── 06-small-flash.out │ │ │ │ │ ├── 07-big-files.err │ │ │ │ │ ├── 07-big-files.out │ │ │ │ │ ├── 08-small-files.err │ │ │ │ │ ├── 08-small-files.out │ │ │ │ │ ├── 10-bad-input.err │ │ │ │ │ ├── 10-bad-input.out │ │ │ │ │ ├── 11-long-name.err │ │ │ │ │ ├── 11-long-name.out │ │ │ │ │ ├── 12-bad-numbers-base.err │ │ │ │ │ ├── 12-bad-numbers-base.out │ │ │ │ │ ├── 13-bad-numbers-size.err │ │ │ │ │ ├── 13-bad-numbers-size.out │ │ │ │ │ ├── 14-bad-input-flags.err │ │ │ │ │ ├── 14-bad-input-flags.out │ │ │ │ │ ├── 15-overlapping-partitions.err │ │ │ │ │ └── 15-overlapping-partitions.out │ │ │ │ │ ├── test-ffspart │ │ │ │ │ └── tests │ │ │ │ │ ├── 00-usage │ │ │ │ │ ├── 01-param-sanity │ │ │ │ │ ├── 02-param-sides │ │ │ │ │ ├── 03-tiny-pnor │ │ │ │ │ ├── 03.1-tiny-pnor-backup │ │ │ │ │ ├── 04-tiny-pnor2 │ │ │ │ │ ├── 05-hdr-overlap │ │ │ │ │ ├── 05.1-hdr-overlap-backup │ │ │ │ │ ├── 06-small-flash │ │ │ │ │ ├── 07-big-files │ │ │ │ │ ├── 08-small-files │ │ │ │ │ ├── 10-bad-input │ │ │ │ │ ├── 11-long-name │ │ │ │ │ ├── 12-bad-numbers-base │ │ │ │ │ ├── 13-bad-numbers-size │ │ │ │ │ ├── 14-bad-input-flags │ │ │ │ │ └── 15-overlapping-partitions │ │ │ ├── fwts │ │ │ │ ├── generate-fwts-olog │ │ │ │ └── merge-fwts-olog │ │ │ ├── gard │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.dist │ │ │ │ ├── config.h │ │ │ │ ├── gard.c │ │ │ │ ├── gard.h │ │ │ │ ├── rules.mk │ │ │ │ └── test │ │ │ │ │ ├── files │ │ │ │ │ └── data1.bin │ │ │ │ │ ├── make-check-test │ │ │ │ │ ├── results │ │ │ │ │ ├── 00-list.err │ │ │ │ │ ├── 00-list.out │ │ │ │ │ ├── 01-show_1.err │ │ │ │ │ ├── 01-show_1.out │ │ │ │ │ ├── 02-usage.err │ │ │ │ │ └── 02-usage.out │ │ │ │ │ ├── test-gard │ │ │ │ │ └── tests │ │ │ │ │ ├── 00-list │ │ │ │ │ ├── 01-show_1 │ │ │ │ │ └── 02-usage │ │ │ ├── mambo │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── mambo-socket-proxy.c │ │ │ │ ├── mambo_utils.tcl │ │ │ │ └── skiboot.tcl │ │ │ ├── memboot │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── memboot.c │ │ │ ├── npu │ │ │ │ └── run_procedure.sh │ │ │ ├── opal-prd │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── config.h │ │ │ │ ├── hostboot-interface.h │ │ │ │ ├── i2c.c │ │ │ │ ├── i2c.h │ │ │ │ ├── module.c │ │ │ │ ├── module.h │ │ │ │ ├── opal-prd.c │ │ │ │ ├── opal-prd.h │ │ │ │ ├── opal-prd.service │ │ │ │ ├── pnor.c │ │ │ │ ├── pnor.h │ │ │ │ ├── test │ │ │ │ │ ├── test_pnor.c │ │ │ │ │ └── test_pnor_ops.c │ │ │ │ └── thunk.S │ │ │ ├── pflash │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.dist │ │ │ │ ├── TODO │ │ │ │ ├── build-all-arch.sh │ │ │ │ ├── config.h │ │ │ │ ├── pflash.c │ │ │ │ ├── progress.c │ │ │ │ ├── progress.h │ │ │ │ ├── rules.mk │ │ │ │ └── test │ │ │ │ │ ├── files │ │ │ │ │ ├── 01-info.ffs │ │ │ │ │ ├── 02-erase.ffs │ │ │ │ │ ├── 03-erase-parts.ffs │ │ │ │ │ ├── 04-program-rand.ffs │ │ │ │ │ ├── 05-bad-numbers.ffs │ │ │ │ │ └── 06-miscprint.ffs │ │ │ │ │ ├── make-check-test │ │ │ │ │ ├── results │ │ │ │ │ ├── 00-usage.err │ │ │ │ │ ├── 00-usage.out │ │ │ │ │ ├── 01-info.err │ │ │ │ │ ├── 01-info.out │ │ │ │ │ ├── 02-erase.err │ │ │ │ │ ├── 02-erase.out │ │ │ │ │ ├── 03-erase-parts.err │ │ │ │ │ ├── 03-erase-parts.out │ │ │ │ │ ├── 04-program-rand.err │ │ │ │ │ ├── 04-program-rand.out │ │ │ │ │ ├── 05-bad-numbers.err │ │ │ │ │ ├── 05-bad-numbers.out │ │ │ │ │ ├── 06-miscprint.err │ │ │ │ │ └── 06-miscprint.out │ │ │ │ │ ├── test-pflash │ │ │ │ │ └── tests │ │ │ │ │ ├── 00-usage │ │ │ │ │ ├── 01-info │ │ │ │ │ ├── 02-erase │ │ │ │ │ ├── 03-erase-parts │ │ │ │ │ ├── 04-program-rand │ │ │ │ │ ├── 05-bad-numbers │ │ │ │ │ └── 06-miscprint │ │ │ ├── read_esel.sh │ │ │ ├── shared │ │ │ │ ├── Makefile │ │ │ │ ├── config.h │ │ │ │ └── rules.mk │ │ │ ├── test │ │ │ │ └── test.sh │ │ │ ├── trace │ │ │ │ ├── Makefile │ │ │ │ └── dump_trace.c │ │ │ └── xscom-utils │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── getscom.c │ │ │ │ ├── getsram.c │ │ │ │ ├── putscom.c │ │ │ │ ├── sram.c │ │ │ │ ├── sram.h │ │ │ │ ├── xscom.c │ │ │ │ └── xscom.h │ │ ├── extract-gcov.c │ │ ├── hdata │ │ │ ├── Makefile.inc │ │ │ ├── cpu-common.c │ │ │ ├── fsp.c │ │ │ ├── hdata.h │ │ │ ├── hdif.c │ │ │ ├── hdif.h │ │ │ ├── hostservices.c │ │ │ ├── i2c.c │ │ │ ├── iohub.c │ │ │ ├── memory.c │ │ │ ├── paca.c │ │ │ ├── pcia.c │ │ │ ├── slca.c │ │ │ ├── spira.c │ │ │ ├── spira.h │ │ │ ├── test │ │ │ │ ├── Makefile.check │ │ │ │ ├── hdata_to_dt.c │ │ │ │ ├── p8-840-spira.dts │ │ │ │ ├── p8-840-spira.spirah │ │ │ │ ├── p8-840-spira.spiras │ │ │ │ ├── p81-811.spira │ │ │ │ ├── p81-811.spira.dts │ │ │ │ ├── p81-811.spira.heap │ │ │ │ └── stubs.c │ │ │ ├── vpd-common.c │ │ │ └── vpd.c │ │ ├── hw │ │ │ ├── Makefile.inc │ │ │ ├── ast-bmc │ │ │ │ ├── Makefile.inc │ │ │ │ ├── ast-io.c │ │ │ │ └── ast-sf-ctrl.c │ │ │ ├── bt.c │ │ │ ├── capp.c │ │ │ ├── cec.c │ │ │ ├── centaur.c │ │ │ ├── chiptod.c │ │ │ ├── dts.c │ │ │ ├── ec │ │ │ │ ├── Makefile.inc │ │ │ │ ├── gpio.c │ │ │ │ └── makefile │ │ │ ├── fake-nvram.c │ │ │ ├── fake-rtc.c │ │ │ ├── fsi-master.c │ │ │ ├── fsp │ │ │ │ ├── Makefile.inc │ │ │ │ ├── fsp-attn.c │ │ │ │ ├── fsp-chiptod.c │ │ │ │ ├── fsp-codeupdate.c │ │ │ │ ├── fsp-codeupdate.h │ │ │ │ ├── fsp-console.c │ │ │ │ ├── fsp-diag.c │ │ │ │ ├── fsp-dpo.c │ │ │ │ ├── fsp-dump.c │ │ │ │ ├── fsp-elog-read.c │ │ │ │ ├── fsp-elog-write.c │ │ │ │ ├── fsp-epow.c │ │ │ │ ├── fsp-epow.h │ │ │ │ ├── fsp-ipmi.c │ │ │ │ ├── fsp-leds.c │ │ │ │ ├── fsp-mdst-table.c │ │ │ │ ├── fsp-mem-err.c │ │ │ │ ├── fsp-nvram.c │ │ │ │ ├── fsp-op-panel.c │ │ │ │ ├── fsp-rtc.c │ │ │ │ ├── fsp-sensor.c │ │ │ │ ├── fsp-surveillance.c │ │ │ │ ├── fsp-sysparam.c │ │ │ │ └── fsp.c │ │ │ ├── gx.c │ │ │ ├── homer.c │ │ │ ├── imc.c │ │ │ ├── ipmi │ │ │ │ ├── Makefile.inc │ │ │ │ ├── ipmi-attn.c │ │ │ │ ├── ipmi-fru.c │ │ │ │ ├── ipmi-power.c │ │ │ │ ├── ipmi-rtc.c │ │ │ │ ├── ipmi-sel.c │ │ │ │ ├── ipmi-sensor.c │ │ │ │ ├── ipmi-watchdog.c │ │ │ │ └── test │ │ │ │ │ ├── Makefile.check │ │ │ │ │ └── run-fru.c │ │ │ ├── lpc-mbox.c │ │ │ ├── lpc-rtc.c │ │ │ ├── lpc-uart.c │ │ │ ├── lpc.c │ │ │ ├── npu-hw-procedures.c │ │ │ ├── npu.c │ │ │ ├── npu2-hw-procedures.c │ │ │ ├── npu2.c │ │ │ ├── nx-842.c │ │ │ ├── nx-compress.c │ │ │ ├── nx-crypto.c │ │ │ ├── nx-gzip.c │ │ │ ├── nx-rng.c │ │ │ ├── nx.c │ │ │ ├── occ-sensor.c │ │ │ ├── occ.c │ │ │ ├── p7ioc-inits.c │ │ │ ├── p7ioc-phb.c │ │ │ ├── p7ioc.c │ │ │ ├── p8-i2c.c │ │ │ ├── phb3.c │ │ │ ├── phb4.c │ │ │ ├── phys-map.c │ │ │ ├── prd.c │ │ │ ├── psi.c │ │ │ ├── sbe-p9.c │ │ │ ├── sfc-ctrl.c │ │ │ ├── slw.c │ │ │ ├── test │ │ │ │ ├── Makefile.check │ │ │ │ └── phys-map-test.c │ │ │ ├── vas.c │ │ │ ├── xive.c │ │ │ └── xscom.c │ │ ├── include │ │ │ ├── affinity.h │ │ │ ├── asm-utils.h │ │ │ ├── ast.h │ │ │ ├── bitmap.h │ │ │ ├── bitutils.h │ │ │ ├── bt.h │ │ │ ├── buddy.h │ │ │ ├── capp.h │ │ │ ├── cec.h │ │ │ ├── centaur.h │ │ │ ├── chip.h │ │ │ ├── chiptod.h │ │ │ ├── compiler.h │ │ │ ├── config.h │ │ │ ├── console.h │ │ │ ├── cpu.h │ │ │ ├── device.h │ │ │ ├── dts.h │ │ │ ├── ec │ │ │ │ ├── config.h │ │ │ │ └── gpio.h │ │ │ ├── elf-abi.h │ │ │ ├── elf.h │ │ │ ├── errorlog.h │ │ │ ├── fsi-master.h │ │ │ ├── fsp-attn.h │ │ │ ├── fsp-elog.h │ │ │ ├── fsp-leds.h │ │ │ ├── fsp-mdst-table.h │ │ │ ├── fsp-sysparam.h │ │ │ ├── fsp.h │ │ │ ├── gx.h │ │ │ ├── hostservices.h │ │ │ ├── i2c.h │ │ │ ├── imc.h │ │ │ ├── interrupts.h │ │ │ ├── inttypes.h │ │ │ ├── io.h │ │ │ ├── ipmi.h │ │ │ ├── lock.h │ │ │ ├── lpc-mbox.h │ │ │ ├── lpc.h │ │ │ ├── mem-map.h │ │ │ ├── mem_region-malloc.h │ │ │ ├── mem_region.h │ │ │ ├── npu-regs.h │ │ │ ├── npu.h │ │ │ ├── npu2-regs.h │ │ │ ├── npu2.h │ │ │ ├── nvram.h │ │ │ ├── nx.h │ │ │ ├── op-panel.h │ │ │ ├── opal-api.h │ │ │ ├── opal-internal.h │ │ │ ├── opal-msg.h │ │ │ ├── opal.h │ │ │ ├── p7ioc-regs.h │ │ │ ├── p7ioc.h │ │ │ ├── p9_stop_api.H │ │ │ ├── pci-cfg.h │ │ │ ├── pci-iov.h │ │ │ ├── pci-quirk.h │ │ │ ├── pci-slot.h │ │ │ ├── pci-virt.h │ │ │ ├── pci.h │ │ │ ├── pel.h │ │ │ ├── phb3-capp.h │ │ │ ├── phb3-regs.h │ │ │ ├── phb3.h │ │ │ ├── phb4-capp.h │ │ │ ├── phb4-regs.h │ │ │ ├── phb4.h │ │ │ ├── phys-map.h │ │ │ ├── platform.h │ │ │ ├── pool.h │ │ │ ├── powercap.h │ │ │ ├── prd-fw-msg.h │ │ │ ├── processor.h │ │ │ ├── psi.h │ │ │ ├── psr.h │ │ │ ├── rtc.h │ │ │ ├── sbe-p9.h │ │ │ ├── sensor.h │ │ │ ├── sfc-ctrl.h │ │ │ ├── skiboot.h │ │ │ ├── spcn.h │ │ │ ├── stack.h │ │ │ ├── time-utils.h │ │ │ ├── timebase.h │ │ │ ├── timer.h │ │ │ ├── trace_types.h │ │ │ ├── types.h │ │ │ ├── vas.h │ │ │ ├── vpd.h │ │ │ ├── xive.h │ │ │ ├── xscom-p9-regs.h │ │ │ └── xscom.h │ │ ├── libc │ │ │ ├── Makefile.inc │ │ │ ├── README.txt │ │ │ ├── ctype │ │ │ │ ├── Makefile.inc │ │ │ │ ├── isdigit.c │ │ │ │ ├── isprint.c │ │ │ │ ├── isspace.c │ │ │ │ ├── isxdigit.c │ │ │ │ ├── tolower.c │ │ │ │ └── toupper.c │ │ │ ├── include │ │ │ │ ├── assert.h │ │ │ │ ├── ctype.h │ │ │ │ ├── errno.h │ │ │ │ ├── getopt.h │ │ │ │ ├── limits.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── string.h │ │ │ │ ├── time.h │ │ │ │ └── unistd.h │ │ │ ├── stdio │ │ │ │ ├── Makefile.inc │ │ │ │ ├── fileno.c │ │ │ │ ├── fprintf.c │ │ │ │ ├── fputc.c │ │ │ │ ├── fputs.c │ │ │ │ ├── putchar.c │ │ │ │ ├── puts.c │ │ │ │ ├── setvbuf.c │ │ │ │ ├── snprintf.c │ │ │ │ ├── stdchnls.c │ │ │ │ ├── vfprintf.c │ │ │ │ └── vsnprintf.c │ │ │ ├── stdlib │ │ │ │ ├── Makefile.inc │ │ │ │ ├── atoi.c │ │ │ │ ├── atol.c │ │ │ │ ├── error.c │ │ │ │ ├── labs.c │ │ │ │ ├── rand.c │ │ │ │ ├── strtol.c │ │ │ │ └── strtoul.c │ │ │ ├── string │ │ │ │ ├── Makefile.inc │ │ │ │ ├── memchr.c │ │ │ │ ├── memcmp.c │ │ │ │ ├── memcpy.c │ │ │ │ ├── memcpy_from_ci.c │ │ │ │ ├── memmove.c │ │ │ │ ├── memset.c │ │ │ │ ├── strcasecmp.c │ │ │ │ ├── strcat.c │ │ │ │ ├── strchr.c │ │ │ │ ├── strcmp.c │ │ │ │ ├── strcpy.c │ │ │ │ ├── strdup.c │ │ │ │ ├── strlen.c │ │ │ │ ├── strncasecmp.c │ │ │ │ ├── strncmp.c │ │ │ │ ├── strncpy.c │ │ │ │ ├── strstr.c │ │ │ │ └── strtok.c │ │ │ ├── test │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile.check │ │ │ │ ├── run-ctype-test.c │ │ │ │ ├── run-ctype.c │ │ │ │ ├── run-memops-test.c │ │ │ │ ├── run-memops.c │ │ │ │ ├── run-snprintf-test.c │ │ │ │ ├── run-snprintf.c │ │ │ │ ├── run-stdlib-test.c │ │ │ │ ├── run-stdlib.c │ │ │ │ └── run-time.c │ │ │ └── time.c │ │ ├── libfdt │ │ │ ├── Makefile.inc │ │ │ ├── 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 │ │ ├── libflash │ │ │ ├── Makefile.inc │ │ │ ├── blocklevel.c │ │ │ ├── blocklevel.h │ │ │ ├── ecc.c │ │ │ ├── ecc.h │ │ │ ├── errors.h │ │ │ ├── ffs.h │ │ │ ├── file.c │ │ │ ├── file.h │ │ │ ├── libffs.c │ │ │ ├── libffs.h │ │ │ ├── libflash-priv.h │ │ │ ├── libflash.c │ │ │ ├── libflash.h │ │ │ ├── mbox-flash.c │ │ │ ├── mbox-flash.h │ │ │ └── test │ │ │ │ ├── Makefile.check │ │ │ │ ├── stubs.c │ │ │ │ ├── test-blocklevel.c │ │ │ │ ├── test-ecc.c │ │ │ │ └── test-flash.c │ │ ├── libpore │ │ │ ├── Makefile.inc │ │ │ ├── fapi_sbe_common.H │ │ │ ├── p8_delta_scan_rw.h │ │ │ ├── p8_image_help_base.H │ │ │ ├── p8_pore_api_custom.h │ │ │ ├── p8_pore_table_gen_api.H │ │ │ ├── p8_pore_table_gen_api_fixed.C │ │ │ ├── p8_pore_table_static_data.c │ │ │ ├── p9_cpu_reg_restore_instruction.H │ │ │ ├── p9_hcd_header_defs.H │ │ │ ├── p9_hcd_memmap_base.H │ │ │ ├── p9_stop_api.C │ │ │ ├── p9_stop_api.H │ │ │ ├── p9_stop_data_struct.H │ │ │ ├── p9_stop_util.C │ │ │ ├── p9_stop_util.H │ │ │ ├── pgas.h │ │ │ ├── pore_inline.h │ │ │ ├── pore_inline_assembler.c │ │ │ ├── sbe_xip_image.c │ │ │ └── sbe_xip_image.h │ │ ├── libstb │ │ │ ├── Makefile.inc │ │ │ ├── container.c │ │ │ ├── container.h │ │ │ ├── create-container.c │ │ │ ├── drivers │ │ │ │ ├── Makefile.inc │ │ │ │ ├── romcode.c │ │ │ │ ├── romcode.h │ │ │ │ ├── sha512.c │ │ │ │ ├── sha512.h │ │ │ │ ├── sw_driver.c │ │ │ │ ├── sw_driver.h │ │ │ │ ├── tpm_i2c_interface.c │ │ │ │ ├── tpm_i2c_interface.h │ │ │ │ ├── tpm_i2c_nuvoton.c │ │ │ │ └── tpm_i2c_nuvoton.h │ │ │ ├── rom.c │ │ │ ├── rom.h │ │ │ ├── sign-with-local-keys.sh │ │ │ ├── status_codes.h │ │ │ ├── stb.c │ │ │ ├── stb.h │ │ │ ├── test │ │ │ │ ├── Makefile.check │ │ │ │ ├── print-stb-container.c │ │ │ │ ├── run-stb-container.c │ │ │ │ ├── t.container │ │ │ │ └── t.container.out │ │ │ ├── tpm_chip.c │ │ │ ├── tpm_chip.h │ │ │ └── tss │ │ │ │ ├── Makefile.inc │ │ │ │ ├── tpmLogMgr.C │ │ │ │ ├── tpmLogMgr.H │ │ │ │ ├── trustedTypes.C │ │ │ │ ├── trustedTypes.H │ │ │ │ ├── trustedboot.H │ │ │ │ ├── trustedbootCmds.C │ │ │ │ ├── trustedbootCmds.H │ │ │ │ ├── trustedbootUtils.C │ │ │ │ ├── trustedbootUtils.H │ │ │ │ └── trustedboot_reasoncodes.H │ │ ├── libxz │ │ │ ├── Makefile.inc │ │ │ ├── xz.h │ │ │ ├── xz_config.h │ │ │ ├── xz_crc32.c │ │ │ ├── xz_dec_lzma2.c │ │ │ ├── xz_dec_stream.c │ │ │ ├── xz_lzma2.h │ │ │ ├── xz_private.h │ │ │ └── xz_stream.h │ │ ├── make_offsets.sh │ │ ├── make_version.sh │ │ ├── opal-ci │ │ │ ├── Dockerfile-centos6 │ │ │ ├── Dockerfile-centos7 │ │ │ ├── Dockerfile-debian-stretch │ │ │ ├── Dockerfile-debian-unstable │ │ │ ├── Dockerfile-fedora-rawhide │ │ │ ├── Dockerfile-fedora24 │ │ │ ├── Dockerfile-fedora25 │ │ │ ├── Dockerfile-fedora26 │ │ │ ├── Dockerfile-ubuntu-12.04 │ │ │ ├── Dockerfile-ubuntu-16.04 │ │ │ ├── Dockerfile-ubuntu-latest │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── build-centos6.sh │ │ │ ├── build-centos7.sh │ │ │ ├── build-fedora24.sh │ │ │ ├── build-qemu-powernv.sh │ │ │ ├── build-ubuntu-12.04.sh │ │ │ ├── build-ubuntu-16.04.sh │ │ │ ├── fetch-debian-jessie-installer.sh │ │ │ └── install-deps-qemu-powernv.sh │ │ ├── platforms │ │ │ ├── Makefile.inc │ │ │ ├── astbmc │ │ │ │ ├── Makefile.inc │ │ │ │ ├── astbmc.h │ │ │ │ ├── barreleye.c │ │ │ │ ├── common.c │ │ │ │ ├── firestone.c │ │ │ │ ├── garrison.c │ │ │ │ ├── habanero.c │ │ │ │ ├── p8dnu.c │ │ │ │ ├── p8dtu.c │ │ │ │ ├── p9dsu.c │ │ │ │ ├── palmetto.c │ │ │ │ ├── pnor.c │ │ │ │ ├── romulus.c │ │ │ │ ├── slots.c │ │ │ │ ├── witherspoon.c │ │ │ │ └── zaius.c │ │ │ ├── ibm-fsp │ │ │ │ ├── Makefile.inc │ │ │ │ ├── apollo-pci.c │ │ │ │ ├── apollo.c │ │ │ │ ├── common.c │ │ │ │ ├── firenze-pci.c │ │ │ │ ├── firenze.c │ │ │ │ ├── ibm-fsp.h │ │ │ │ ├── lxvpd.c │ │ │ │ ├── lxvpd.h │ │ │ │ └── zz.c │ │ │ ├── mambo │ │ │ │ ├── Makefile.inc │ │ │ │ ├── console.c │ │ │ │ ├── mambo.c │ │ │ │ └── mambo.h │ │ │ ├── qemu │ │ │ │ ├── Makefile.inc │ │ │ │ └── qemu.c │ │ │ └── rhesus │ │ │ │ ├── Makefile.inc │ │ │ │ └── rhesus.c │ │ ├── skiboot.lds.S │ │ ├── skiboot.spec │ │ └── test │ │ │ ├── Makefile.check │ │ │ ├── dt_common.c │ │ │ ├── hello_world │ │ │ ├── Makefile.check │ │ │ ├── hello_kernel │ │ │ │ ├── hello_kernel.S │ │ │ │ └── hello_kernel.ld │ │ │ ├── run_hello_world.tcl │ │ │ ├── run_mambo_hello_world.sh │ │ │ ├── run_mambo_p9_hello_world.sh │ │ │ └── run_qemu_hello_world.sh │ │ │ ├── make-boot-coverage-report.sh │ │ │ ├── run.sh │ │ │ ├── run_boot_test.tcl │ │ │ ├── run_mambo_boot_test.sh │ │ │ ├── run_qemu-jessie-debian-installer_boot_test.sh │ │ │ ├── run_qemu_boot_test.sh │ │ │ └── sreset_world │ │ │ ├── Makefile.check │ │ │ ├── run_mambo_p9_sreset.sh │ │ │ ├── run_mambo_sreset.sh │ │ │ ├── run_sreset_world.tcl │ │ │ └── sreset_kernel │ │ │ ├── sreset_kernel.S │ │ │ └── sreset_kernel.ld │ ├── u-boot-sam460ex │ │ ├── .gitignore │ │ ├── CHANGELOG │ │ ├── COPYING │ │ ├── CREDITS │ │ ├── MAINTAINERS │ │ ├── MAKEALL │ │ ├── Makefile │ │ ├── README │ │ ├── api │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── api.c │ │ │ ├── api_net.c │ │ │ ├── api_platform-arm.c │ │ │ ├── api_platform-powerpc.c │ │ │ ├── api_private.h │ │ │ └── api_storage.c │ │ ├── arch │ │ │ ├── .gitignore │ │ │ ├── arm │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── arm1136 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── mx31 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── devices.c │ │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── omap24xx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── arm1176 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── s3c64xx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu_init.S │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── tnetv107x │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── aemif.c │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ ├── init.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── mux.c │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ └── wdt.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── arm720t │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── lpc2292 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ │ ├── iap_entry.S │ │ │ │ │ │ │ ├── mmc.c │ │ │ │ │ │ │ ├── mmc_hw.c │ │ │ │ │ │ │ ├── mmc_hw.h │ │ │ │ │ │ │ └── spi.c │ │ │ │ │ │ ├── s3c4510b │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── cache.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── arm920t │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── a320 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── ftsmc020.c │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── at91 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── at91rm9200 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── bcm5221.c │ │ │ │ │ │ │ ├── dm9161.c │ │ │ │ │ │ │ ├── ether.c │ │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ │ ├── ks8721.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── lxt972.c │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ └── usb.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── ep93xx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── imx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── ks8695 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── s3c24x0 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ ├── usb.c │ │ │ │ │ │ │ ├── usb_ohci.c │ │ │ │ │ │ │ └── usb_ohci.h │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── arm925t │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── omap925.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── arm926ejs │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── at91 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── at91cap9_devices.c │ │ │ │ │ │ │ ├── at91sam9260_devices.c │ │ │ │ │ │ │ ├── at91sam9261_devices.c │ │ │ │ │ │ │ ├── at91sam9263_devices.c │ │ │ │ │ │ │ ├── at91sam9m10g45_devices.c │ │ │ │ │ │ │ ├── at91sam9rl_devices.c │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── davinci │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── dm355.c │ │ │ │ │ │ │ ├── dm365.c │ │ │ │ │ │ │ ├── dm644x.c │ │ │ │ │ │ │ ├── dm646x.c │ │ │ │ │ │ │ ├── dp83848.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── lxt972.c │ │ │ │ │ │ │ ├── psc.c │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── kirkwood │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── dram.c │ │ │ │ │ │ │ ├── mpp.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── mx25 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── mx27 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── nomadik │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── omap │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cpuinfo.c │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── orion5x │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── dram.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── spear │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── versatile │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── arm946es │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── arm_cortexa8 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── mx51 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ ├── iomux.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── soc.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── omap3 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ ├── emif4.c │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── mem.c │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ ├── sdrc.c │ │ │ │ │ │ │ ├── sys_info.c │ │ │ │ │ │ │ ├── syslib.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── s5pc1xx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ ├── cpu_info.c │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ ├── sromc.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── arm_intcm │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── ixp │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── npe │ │ │ │ │ │ │ ├── IxEthAcc.c │ │ │ │ │ │ │ ├── IxEthAccCommon.c │ │ │ │ │ │ │ ├── IxEthAccControlInterface.c │ │ │ │ │ │ │ ├── IxEthAccDataPlane.c │ │ │ │ │ │ │ ├── IxEthAccMac.c │ │ │ │ │ │ │ ├── IxEthAccMii.c │ │ │ │ │ │ │ ├── IxEthDBAPI.c │ │ │ │ │ │ │ ├── IxEthDBAPISupport.c │ │ │ │ │ │ │ ├── IxEthDBCore.c │ │ │ │ │ │ │ ├── IxEthDBEvents.c │ │ │ │ │ │ │ ├── IxEthDBFeatures.c │ │ │ │ │ │ │ ├── IxEthDBFirewall.c │ │ │ │ │ │ │ ├── IxEthDBHashtable.c │ │ │ │ │ │ │ ├── IxEthDBLearning.c │ │ │ │ │ │ │ ├── IxEthDBMem.c │ │ │ │ │ │ │ ├── IxEthDBNPEAdaptor.c │ │ │ │ │ │ │ ├── IxEthDBPortUpdate.c │ │ │ │ │ │ │ ├── IxEthDBReports.c │ │ │ │ │ │ │ ├── IxEthDBSearch.c │ │ │ │ │ │ │ ├── IxEthDBSpanningTree.c │ │ │ │ │ │ │ ├── IxEthDBUtil.c │ │ │ │ │ │ │ ├── IxEthDBVlan.c │ │ │ │ │ │ │ ├── IxEthDBWiFi.c │ │ │ │ │ │ │ ├── IxEthMii.c │ │ │ │ │ │ │ ├── IxFeatureCtrl.c │ │ │ │ │ │ │ ├── IxNpeDl.c │ │ │ │ │ │ │ ├── IxNpeDlImageMgr.c │ │ │ │ │ │ │ ├── IxNpeDlNpeMgr.c │ │ │ │ │ │ │ ├── IxNpeDlNpeMgrUtils.c │ │ │ │ │ │ │ ├── IxNpeMh.c │ │ │ │ │ │ │ ├── IxNpeMhConfig.c │ │ │ │ │ │ │ ├── IxNpeMhReceive.c │ │ │ │ │ │ │ ├── IxNpeMhSend.c │ │ │ │ │ │ │ ├── IxNpeMhSolicitedCbMgr.c │ │ │ │ │ │ │ ├── IxNpeMhUnsolicitedCbMgr.c │ │ │ │ │ │ │ ├── IxOsalBufferMgt.c │ │ │ │ │ │ │ ├── IxOsalIoMem.c │ │ │ │ │ │ │ ├── IxOsalOsCacheMMU.c │ │ │ │ │ │ │ ├── IxOsalOsMsgQ.c │ │ │ │ │ │ │ ├── IxOsalOsSemaphore.c │ │ │ │ │ │ │ ├── IxOsalOsServices.c │ │ │ │ │ │ │ ├── IxOsalOsThread.c │ │ │ │ │ │ │ ├── IxQMgrAqmIf.c │ │ │ │ │ │ │ ├── IxQMgrDispatcher.c │ │ │ │ │ │ │ ├── IxQMgrInit.c │ │ │ │ │ │ │ ├── IxQMgrQAccess.c │ │ │ │ │ │ │ ├── IxQMgrQCfg.c │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ ├── IxAssert.h │ │ │ │ │ │ │ │ ├── IxAtmSch.h │ │ │ │ │ │ │ │ ├── IxAtmTypes.h │ │ │ │ │ │ │ │ ├── IxAtmdAcc.h │ │ │ │ │ │ │ │ ├── IxAtmdAccCtrl.h │ │ │ │ │ │ │ │ ├── IxAtmm.h │ │ │ │ │ │ │ │ ├── IxDmaAcc.h │ │ │ │ │ │ │ │ ├── IxEthAcc.h │ │ │ │ │ │ │ │ ├── IxEthAccDataPlane_p.h │ │ │ │ │ │ │ │ ├── IxEthAccMac_p.h │ │ │ │ │ │ │ │ ├── IxEthAccMii_p.h │ │ │ │ │ │ │ │ ├── IxEthAccQueueAssign_p.h │ │ │ │ │ │ │ │ ├── IxEthAcc_p.h │ │ │ │ │ │ │ │ ├── IxEthDB.h │ │ │ │ │ │ │ │ ├── IxEthDBLocks_p.h │ │ │ │ │ │ │ │ ├── IxEthDBLog_p.h │ │ │ │ │ │ │ │ ├── IxEthDBMessages_p.h │ │ │ │ │ │ │ │ ├── IxEthDBPortDefs.h │ │ │ │ │ │ │ │ ├── IxEthDBQoS.h │ │ │ │ │ │ │ │ ├── IxEthDB_p.h │ │ │ │ │ │ │ │ ├── IxEthMii.h │ │ │ │ │ │ │ │ ├── IxEthMii_p.h │ │ │ │ │ │ │ │ ├── IxEthNpe.h │ │ │ │ │ │ │ │ ├── IxFeatureCtrl.h │ │ │ │ │ │ │ │ ├── IxHssAcc.h │ │ │ │ │ │ │ │ ├── IxI2cDrv.h │ │ │ │ │ │ │ │ ├── IxNpeA.h │ │ │ │ │ │ │ │ ├── IxNpeDl.h │ │ │ │ │ │ │ │ ├── IxNpeDlImageMgr_p.h │ │ │ │ │ │ │ │ ├── IxNpeDlMacros_p.h │ │ │ │ │ │ │ │ ├── IxNpeDlNpeMgrEcRegisters_p.h │ │ │ │ │ │ │ │ ├── IxNpeDlNpeMgrUtils_p.h │ │ │ │ │ │ │ │ ├── IxNpeDlNpeMgr_p.h │ │ │ │ │ │ │ │ ├── IxNpeMh.h │ │ │ │ │ │ │ │ ├── IxNpeMhConfig_p.h │ │ │ │ │ │ │ │ ├── IxNpeMhMacros_p.h │ │ │ │ │ │ │ │ ├── IxNpeMhReceive_p.h │ │ │ │ │ │ │ │ ├── IxNpeMhSend_p.h │ │ │ │ │ │ │ │ ├── IxNpeMhSolicitedCbMgr_p.h │ │ │ │ │ │ │ │ ├── IxNpeMhUnsolicitedCbMgr_p.h │ │ │ │ │ │ │ │ ├── IxNpeMicrocode.h │ │ │ │ │ │ │ │ ├── IxOsBufLib.h │ │ │ │ │ │ │ │ ├── IxOsBuffMgt.h │ │ │ │ │ │ │ │ ├── IxOsBuffPoolMgt.h │ │ │ │ │ │ │ │ ├── IxOsCacheMMU.h │ │ │ │ │ │ │ │ ├── IxOsPrintf.h │ │ │ │ │ │ │ │ ├── IxOsServices.h │ │ │ │ │ │ │ │ ├── IxOsServicesComponents.h │ │ │ │ │ │ │ │ ├── IxOsServicesEndianess.h │ │ │ │ │ │ │ │ ├── IxOsServicesMemAccess.h │ │ │ │ │ │ │ │ ├── IxOsServicesMemMap.h │ │ │ │ │ │ │ │ ├── IxOsal.h │ │ │ │ │ │ │ │ ├── IxOsalAssert.h │ │ │ │ │ │ │ │ ├── IxOsalBackward.h │ │ │ │ │ │ │ │ ├── IxOsalBackwardAssert.h │ │ │ │ │ │ │ │ ├── IxOsalBackwardBufferMgt.h │ │ │ │ │ │ │ │ ├── IxOsalBackwardCacheMMU.h │ │ │ │ │ │ │ │ ├── IxOsalBackwardMemMap.h │ │ │ │ │ │ │ │ ├── IxOsalBackwardOsServices.h │ │ │ │ │ │ │ │ ├── IxOsalBackwardOssl.h │ │ │ │ │ │ │ │ ├── IxOsalBufferMgt.h │ │ │ │ │ │ │ │ ├── IxOsalBufferMgtDefault.h │ │ │ │ │ │ │ │ ├── IxOsalConfig.h │ │ │ │ │ │ │ │ ├── IxOsalEndianess.h │ │ │ │ │ │ │ │ ├── IxOsalIoMem.h │ │ │ │ │ │ │ │ ├── IxOsalMemAccess.h │ │ │ │ │ │ │ │ ├── IxOsalOem.h │ │ │ │ │ │ │ │ ├── IxOsalOs.h │ │ │ │ │ │ │ │ ├── IxOsalOsAssert.h │ │ │ │ │ │ │ │ ├── IxOsalOsBufferMgt.h │ │ │ │ │ │ │ │ ├── IxOsalOsIxp400.h │ │ │ │ │ │ │ │ ├── IxOsalOsIxp400CustomizedMapping.h │ │ │ │ │ │ │ │ ├── IxOsalOsTypes.h │ │ │ │ │ │ │ │ ├── IxOsalOsUtilitySymbols.h │ │ │ │ │ │ │ │ ├── IxOsalTypes.h │ │ │ │ │ │ │ │ ├── IxOsalUtilitySymbols.h │ │ │ │ │ │ │ │ ├── IxParityENAcc.h │ │ │ │ │ │ │ │ ├── IxPerfProfAcc.h │ │ │ │ │ │ │ │ ├── IxQMgr.h │ │ │ │ │ │ │ │ ├── IxQMgrAqmIf_p.h │ │ │ │ │ │ │ │ ├── IxQMgrDefines_p.h │ │ │ │ │ │ │ │ ├── IxQMgrDispatcher_p.h │ │ │ │ │ │ │ │ ├── IxQMgrLog_p.h │ │ │ │ │ │ │ │ ├── IxQMgrQAccess_p.h │ │ │ │ │ │ │ │ ├── IxQMgrQCfg_p.h │ │ │ │ │ │ │ │ ├── IxQueueAssignments.h │ │ │ │ │ │ │ │ ├── IxSspAcc.h │ │ │ │ │ │ │ │ ├── IxTimeSyncAcc.h │ │ │ │ │ │ │ │ ├── IxTimerCtrl.h │ │ │ │ │ │ │ │ ├── IxTypes.h │ │ │ │ │ │ │ │ ├── IxUART.h │ │ │ │ │ │ │ │ ├── IxVersionId.h │ │ │ │ │ │ │ │ ├── ix_error.h │ │ │ │ │ │ │ │ ├── ix_macros.h │ │ │ │ │ │ │ │ ├── ix_os_type.h │ │ │ │ │ │ │ │ ├── ix_ossl.h │ │ │ │ │ │ │ │ ├── ix_symbols.h │ │ │ │ │ │ │ │ ├── ix_types.h │ │ │ │ │ │ │ │ ├── npe.h │ │ │ │ │ │ │ │ └── os_datatypes.h │ │ │ │ │ │ │ ├── miiphy.c │ │ │ │ │ │ │ └── npe.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── lh7a40x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── pxa │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ ├── pxafb.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── usb.c │ │ │ │ │ ├── s3c44b0 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ └── sa1100 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── arch-a320 │ │ │ │ │ │ ├── a320.h │ │ │ │ │ │ ├── ftpmu010.h │ │ │ │ │ │ ├── ftsdmc020.h │ │ │ │ │ │ ├── ftsmc020.h │ │ │ │ │ │ └── fttmr010.h │ │ │ │ │ │ ├── arch-arm720t │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── netarm_dma_module.h │ │ │ │ │ │ ├── netarm_eni_module.h │ │ │ │ │ │ ├── netarm_eth_module.h │ │ │ │ │ │ ├── netarm_gen_module.h │ │ │ │ │ │ ├── netarm_mem_module.h │ │ │ │ │ │ ├── netarm_registers.h │ │ │ │ │ │ └── netarm_ser_module.h │ │ │ │ │ │ ├── arch-arm925t │ │ │ │ │ │ └── sizes.h │ │ │ │ │ │ ├── arch-arm926ejs │ │ │ │ │ │ └── sizes.h │ │ │ │ │ │ ├── arch-at91 │ │ │ │ │ │ ├── at91_common.h │ │ │ │ │ │ ├── at91_emac.h │ │ │ │ │ │ ├── at91_matrix.h │ │ │ │ │ │ ├── at91_mc.h │ │ │ │ │ │ ├── at91_pdc.h │ │ │ │ │ │ ├── at91_pio.h │ │ │ │ │ │ ├── at91_pit.h │ │ │ │ │ │ ├── at91_pmc.h │ │ │ │ │ │ ├── at91_rstc.h │ │ │ │ │ │ ├── at91_spi.h │ │ │ │ │ │ ├── at91_st.h │ │ │ │ │ │ ├── at91_tc.h │ │ │ │ │ │ ├── at91_wdt.h │ │ │ │ │ │ ├── at91cap9.h │ │ │ │ │ │ ├── at91cap9_matrix.h │ │ │ │ │ │ ├── at91rm9200.h │ │ │ │ │ │ ├── at91sam9260.h │ │ │ │ │ │ ├── at91sam9260_matrix.h │ │ │ │ │ │ ├── at91sam9261.h │ │ │ │ │ │ ├── at91sam9261_matrix.h │ │ │ │ │ │ ├── at91sam9263.h │ │ │ │ │ │ ├── at91sam9263_matrix.h │ │ │ │ │ │ ├── at91sam9_matrix.h │ │ │ │ │ │ ├── at91sam9_sdramc.h │ │ │ │ │ │ ├── at91sam9_smc.h │ │ │ │ │ │ ├── at91sam9g45.h │ │ │ │ │ │ ├── at91sam9g45_matrix.h │ │ │ │ │ │ ├── at91sam9rl.h │ │ │ │ │ │ ├── at91sam9rl_matrix.h │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ └── memory-map.h │ │ │ │ │ │ ├── arch-at91rm9200 │ │ │ │ │ │ ├── AT91RM9200.h │ │ │ │ │ │ └── hardware.h │ │ │ │ │ │ ├── arch-davinci │ │ │ │ │ │ ├── emac_defs.h │ │ │ │ │ │ ├── emif_defs.h │ │ │ │ │ │ ├── gpio_defs.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── i2c_defs.h │ │ │ │ │ │ └── nand_defs.h │ │ │ │ │ │ ├── arch-ep93xx │ │ │ │ │ │ └── ep93xx.h │ │ │ │ │ │ ├── arch-imx │ │ │ │ │ │ └── imx-regs.h │ │ │ │ │ │ ├── arch-ixp │ │ │ │ │ │ ├── ixp425.h │ │ │ │ │ │ └── ixp425pci.h │ │ │ │ │ │ ├── arch-kirkwood │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── kirkwood.h │ │ │ │ │ │ ├── kw88f6192.h │ │ │ │ │ │ ├── kw88f6281.h │ │ │ │ │ │ ├── mpp.h │ │ │ │ │ │ └── spi.h │ │ │ │ │ │ ├── arch-ks8695 │ │ │ │ │ │ └── platform.h │ │ │ │ │ │ ├── arch-lpc2292 │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── lpc2292_registers.h │ │ │ │ │ │ └── spi.h │ │ │ │ │ │ ├── arch-mx25 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ └── imx25-pinmux.h │ │ │ │ │ │ ├── arch-mx27 │ │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ └── mxcmmc.h │ │ │ │ │ │ ├── arch-mx31 │ │ │ │ │ │ ├── mx31-regs.h │ │ │ │ │ │ └── mx31.h │ │ │ │ │ │ ├── arch-mx51 │ │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── crm_regs.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ ├── iomux.h │ │ │ │ │ │ ├── mx51_pins.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ ├── arch-nomadik │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── mtu.h │ │ │ │ │ │ ├── arch-omap │ │ │ │ │ │ └── sizes.h │ │ │ │ │ │ ├── arch-omap24xx │ │ │ │ │ │ ├── bits.h │ │ │ │ │ │ ├── clocks.h │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ ├── mux.h │ │ │ │ │ │ ├── omap2420.h │ │ │ │ │ │ ├── sizes.h │ │ │ │ │ │ ├── sys_info.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ ├── arch-omap3 │ │ │ │ │ │ ├── clocks.h │ │ │ │ │ │ ├── clocks_omap3.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── emif4.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ ├── mmc.h │ │ │ │ │ │ ├── mmc_host_def.h │ │ │ │ │ │ ├── mux.h │ │ │ │ │ │ ├── omap3.h │ │ │ │ │ │ ├── omap_gpmc.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ ├── arch-orion5x │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── mv88f5182.h │ │ │ │ │ │ └── orion5x.h │ │ │ │ │ │ ├── arch-pxa │ │ │ │ │ │ ├── bitfield.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ └── pxa-regs.h │ │ │ │ │ │ ├── arch-s3c24x0 │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ ├── s3c2400.h │ │ │ │ │ │ ├── s3c2410.h │ │ │ │ │ │ ├── s3c24x0.h │ │ │ │ │ │ └── s3c24x0_cpu.h │ │ │ │ │ │ ├── arch-s3c44b0 │ │ │ │ │ │ └── hardware.h │ │ │ │ │ │ ├── arch-s3c4510b │ │ │ │ │ │ └── hardware.h │ │ │ │ │ │ ├── arch-s3c64xx │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── s3c6400.h │ │ │ │ │ │ └── s3c64x0.h │ │ │ │ │ │ ├── arch-s5pc1xx │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── power.h │ │ │ │ │ │ ├── pwm.h │ │ │ │ │ │ ├── smc.h │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ └── uart.h │ │ │ │ │ │ ├── arch-sa1100 │ │ │ │ │ │ └── bitfield.h │ │ │ │ │ │ ├── arch-spear │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── spr_defs.h │ │ │ │ │ │ ├── spr_emi.h │ │ │ │ │ │ ├── spr_gpt.h │ │ │ │ │ │ ├── spr_i2c.h │ │ │ │ │ │ ├── spr_misc.h │ │ │ │ │ │ ├── spr_nand.h │ │ │ │ │ │ ├── spr_smi.h │ │ │ │ │ │ ├── spr_syscntl.h │ │ │ │ │ │ └── spr_xloader_table.h │ │ │ │ │ │ ├── arch-tnetv107x │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── emif_defs.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── mux.h │ │ │ │ │ │ └── nand_defs.h │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── mach-types.h │ │ │ │ │ │ ├── macro.h │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── proc-armv │ │ │ │ │ │ ├── domain.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ └── system.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ ├── sizes.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot-arm.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ └── unaligned.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── _ashldi3.S │ │ │ │ │ ├── _ashrdi3.S │ │ │ │ │ ├── _divsi3.S │ │ │ │ │ ├── _lshrdi3.S │ │ │ │ │ ├── _modsi3.S │ │ │ │ │ ├── _udivsi3.S │ │ │ │ │ ├── _umodsi3.S │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── cache-cp15.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── div0.c │ │ │ │ │ ├── eabi_compat.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ └── reset.c │ │ │ ├── avr32 │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── at32ap700x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clk.c │ │ │ │ │ │ ├── portmux.c │ │ │ │ │ │ └── sm.h │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── exception.c │ │ │ │ │ ├── hsdramc.c │ │ │ │ │ ├── hsdramc1.h │ │ │ │ │ ├── hsmc3.h │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── pio2.h │ │ │ │ │ ├── portmux-gpio.c │ │ │ │ │ ├── portmux-pio.c │ │ │ │ │ └── start.S │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── arch-at32ap700x │ │ │ │ │ │ ├── addrspace.h │ │ │ │ │ │ ├── cacheflush.h │ │ │ │ │ │ ├── chip-features.h │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ ├── gpio-impl.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hmatrix.h │ │ │ │ │ │ ├── memory-map.h │ │ │ │ │ │ └── portmux.h │ │ │ │ │ │ ├── arch-common │ │ │ │ │ │ ├── portmux-gpio.h │ │ │ │ │ │ └── portmux-pio.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── hmatrix-common.h │ │ │ │ │ │ ├── initcalls.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── sdram.h │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── sysreg.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ └── u-boot.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ └── memset.S │ │ │ ├── blackfin │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bootrom-asm-offsets.awk │ │ │ │ │ ├── bootrom-asm-offsets.c.in │ │ │ │ │ ├── cache.S │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── initcode.c │ │ │ │ │ ├── interrupt.S │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── jtag-console.c │ │ │ │ │ ├── os_log.c │ │ │ │ │ ├── reset.c │ │ │ │ │ ├── serial.c │ │ │ │ │ ├── serial.h │ │ │ │ │ ├── start.S │ │ │ │ │ ├── traps.c │ │ │ │ │ └── watchdog.c │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── bfin_logo_230x230.h │ │ │ │ │ │ ├── bfin_logo_rgb565_230x230.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── blackfin.h │ │ │ │ │ │ ├── blackfin_cdef.h │ │ │ │ │ │ ├── blackfin_def.h │ │ │ │ │ │ ├── blackfin_local.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── config-pre.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── cplb.h │ │ │ │ │ │ ├── deferred.h │ │ │ │ │ │ ├── delay.h │ │ │ │ │ │ ├── entry.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── linkage.h │ │ │ │ │ │ ├── mach-bf527 │ │ │ │ │ │ ├── ADSP-EDN-BF52x-extended_cdef.h │ │ │ │ │ │ ├── ADSP-EDN-BF52x-extended_def.h │ │ │ │ │ │ ├── BF522_cdef.h │ │ │ │ │ │ ├── BF522_def.h │ │ │ │ │ │ ├── BF523_cdef.h │ │ │ │ │ │ ├── BF523_def.h │ │ │ │ │ │ ├── BF524_cdef.h │ │ │ │ │ │ ├── BF524_def.h │ │ │ │ │ │ ├── BF525_cdef.h │ │ │ │ │ │ ├── BF525_def.h │ │ │ │ │ │ ├── BF526_cdef.h │ │ │ │ │ │ ├── BF526_def.h │ │ │ │ │ │ ├── BF527_cdef.h │ │ │ │ │ │ ├── BF527_def.h │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ ├── mem_map.h │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ ├── mach-bf533 │ │ │ │ │ │ ├── BF531_cdef.h │ │ │ │ │ │ ├── BF531_def.h │ │ │ │ │ │ ├── BF532_cdef.h │ │ │ │ │ │ ├── BF532_def.h │ │ │ │ │ │ ├── BF533_cdef.h │ │ │ │ │ │ ├── BF533_def.h │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ ├── mach-bf537 │ │ │ │ │ │ ├── ADSP-EDN-BF534-extended_cdef.h │ │ │ │ │ │ ├── ADSP-EDN-BF534-extended_def.h │ │ │ │ │ │ ├── BF534_cdef.h │ │ │ │ │ │ ├── BF534_def.h │ │ │ │ │ │ ├── BF536_cdef.h │ │ │ │ │ │ ├── BF536_def.h │ │ │ │ │ │ ├── BF537_cdef.h │ │ │ │ │ │ ├── BF537_def.h │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ ├── mach-bf548 │ │ │ │ │ │ ├── ADSP-EDN-BF542-extended_cdef.h │ │ │ │ │ │ ├── ADSP-EDN-BF542-extended_def.h │ │ │ │ │ │ ├── ADSP-EDN-BF544-extended_cdef.h │ │ │ │ │ │ ├── ADSP-EDN-BF544-extended_def.h │ │ │ │ │ │ ├── ADSP-EDN-BF547-extended_cdef.h │ │ │ │ │ │ ├── ADSP-EDN-BF547-extended_def.h │ │ │ │ │ │ ├── ADSP-EDN-BF548-extended_cdef.h │ │ │ │ │ │ ├── ADSP-EDN-BF548-extended_def.h │ │ │ │ │ │ ├── ADSP-EDN-BF549-extended_cdef.h │ │ │ │ │ │ ├── ADSP-EDN-BF549-extended_def.h │ │ │ │ │ │ ├── BF541_cdef.h │ │ │ │ │ │ ├── BF541_def.h │ │ │ │ │ │ ├── BF542_cdef.h │ │ │ │ │ │ ├── BF542_def.h │ │ │ │ │ │ ├── BF544_cdef.h │ │ │ │ │ │ ├── BF544_def.h │ │ │ │ │ │ ├── BF547_cdef.h │ │ │ │ │ │ ├── BF547_def.h │ │ │ │ │ │ ├── BF548_cdef.h │ │ │ │ │ │ ├── BF548_def.h │ │ │ │ │ │ ├── BF549_cdef.h │ │ │ │ │ │ ├── BF549_def.h │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ ├── mem_map.h │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ ├── mach-bf561 │ │ │ │ │ │ ├── BF561_cdef.h │ │ │ │ │ │ ├── BF561_def.h │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ ├── mach-common │ │ │ │ │ │ ├── ADSP-EDN-DUAL-CORE-extended_cdef.h │ │ │ │ │ │ ├── ADSP-EDN-DUAL-CORE-extended_def.h │ │ │ │ │ │ ├── ADSP-EDN-core_cdef.h │ │ │ │ │ │ ├── ADSP-EDN-core_def.h │ │ │ │ │ │ ├── ADSP-EDN-extended_cdef.h │ │ │ │ │ │ ├── ADSP-EDN-extended_def.h │ │ │ │ │ │ └── bits │ │ │ │ │ │ │ ├── bootrom.h │ │ │ │ │ │ │ ├── core.h │ │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ │ ├── ebiu.h │ │ │ │ │ │ │ ├── emac.h │ │ │ │ │ │ │ ├── eppi.h │ │ │ │ │ │ │ ├── lockbox.h │ │ │ │ │ │ │ ├── mpu.h │ │ │ │ │ │ │ ├── otp.h │ │ │ │ │ │ │ ├── pata.h │ │ │ │ │ │ │ ├── pll.h │ │ │ │ │ │ │ ├── ports-a.h │ │ │ │ │ │ │ ├── ports-b.h │ │ │ │ │ │ │ ├── ports-c.h │ │ │ │ │ │ │ ├── ports-d.h │ │ │ │ │ │ │ ├── ports-e.h │ │ │ │ │ │ │ ├── ports-f.h │ │ │ │ │ │ │ ├── ports-g.h │ │ │ │ │ │ │ ├── ports-h.h │ │ │ │ │ │ │ ├── ports-i.h │ │ │ │ │ │ │ ├── ports-j.h │ │ │ │ │ │ │ ├── ppi.h │ │ │ │ │ │ │ ├── rtc.h │ │ │ │ │ │ │ ├── sdh.h │ │ │ │ │ │ │ ├── spi.h │ │ │ │ │ │ │ ├── sport.h │ │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ │ ├── twi.h │ │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ │ ├── usb.h │ │ │ │ │ │ │ └── watchdog.h │ │ │ │ │ │ ├── mem_map.h │ │ │ │ │ │ ├── net.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── sdh.h │ │ │ │ │ │ ├── shared_resources.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── traps.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ └── unaligned.h │ │ │ │ └── lib │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __kgdb.S │ │ │ │ │ ├── board.c │ │ │ │ │ ├── boot.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── clocks.c │ │ │ │ │ ├── cmd_cache_dump.c │ │ │ │ │ ├── ins.S │ │ │ │ │ ├── kgdb.c │ │ │ │ │ ├── kgdb.h │ │ │ │ │ ├── memcmp.S │ │ │ │ │ ├── memcpy.S │ │ │ │ │ ├── memmove.S │ │ │ │ │ ├── memset.S │ │ │ │ │ ├── muldi3.c │ │ │ │ │ ├── outs.S │ │ │ │ │ ├── post.c │ │ │ │ │ ├── string.c │ │ │ │ │ ├── tests.c │ │ │ │ │ └── u-boot.lds.S │ │ │ ├── i386 │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── resetvec.S │ │ │ │ │ ├── sc520 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── sc520.c │ │ │ │ │ │ ├── sc520_asm.S │ │ │ │ │ │ ├── sc520_pci.c │ │ │ │ │ │ ├── sc520_ssi.c │ │ │ │ │ │ └── sc520_timer.c │ │ │ │ │ ├── start.S │ │ │ │ │ └── start16.S │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── bootparam.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── e820.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── i8254.h │ │ │ │ │ │ ├── i8259.h │ │ │ │ │ │ ├── ibmpc.h │ │ │ │ │ │ ├── ic │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ ├── sc520.h │ │ │ │ │ │ └── ssi.h │ │ │ │ │ │ ├── interrupt.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── ioctl.h │ │ │ │ │ │ ├── ist.h │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── realmode.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot-i386.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ ├── unaligned.h │ │ │ │ │ │ ├── video │ │ │ │ │ │ └── edid.h │ │ │ │ │ │ └── zimage.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bios.S │ │ │ │ │ ├── bios.h │ │ │ │ │ ├── bios_pci.S │ │ │ │ │ ├── bios_setup.c │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── pcat_interrupts.c │ │ │ │ │ ├── pcat_timer.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── pci_type1.c │ │ │ │ │ ├── realmode.c │ │ │ │ │ ├── realmode_switch.S │ │ │ │ │ ├── timer.c │ │ │ │ │ ├── video.c │ │ │ │ │ ├── video_bios.c │ │ │ │ │ └── zimage.c │ │ │ ├── m68k │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── mcf5227x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ └── start.S │ │ │ │ │ ├── mcf523x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ └── start.S │ │ │ │ │ ├── mcf52x2 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ └── start.S │ │ │ │ │ ├── mcf532x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ └── start.S │ │ │ │ │ ├── mcf5445x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ └── start.S │ │ │ │ │ └── mcf547x_8x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── slicetimer.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ └── start.S │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── coldfire │ │ │ │ │ │ ├── ata.h │ │ │ │ │ │ ├── crossbar.h │ │ │ │ │ │ ├── dspi.h │ │ │ │ │ │ ├── edma.h │ │ │ │ │ │ ├── eport.h │ │ │ │ │ │ ├── flexbus.h │ │ │ │ │ │ ├── flexcan.h │ │ │ │ │ │ ├── intctrl.h │ │ │ │ │ │ ├── lcd.h │ │ │ │ │ │ ├── mdha.h │ │ │ │ │ │ ├── pwm.h │ │ │ │ │ │ ├── qspi.h │ │ │ │ │ │ ├── rng.h │ │ │ │ │ │ ├── skha.h │ │ │ │ │ │ └── ssi.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fec.h │ │ │ │ │ │ ├── fsl_i2c.h │ │ │ │ │ │ ├── fsl_mcdmafec.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── immap.h │ │ │ │ │ │ ├── immap_520x.h │ │ │ │ │ │ ├── immap_5227x.h │ │ │ │ │ │ ├── immap_5235.h │ │ │ │ │ │ ├── immap_5249.h │ │ │ │ │ │ ├── immap_5253.h │ │ │ │ │ │ ├── immap_5271.h │ │ │ │ │ │ ├── immap_5272.h │ │ │ │ │ │ ├── immap_5275.h │ │ │ │ │ │ ├── immap_5282.h │ │ │ │ │ │ ├── immap_5301x.h │ │ │ │ │ │ ├── immap_5329.h │ │ │ │ │ │ ├── immap_5445x.h │ │ │ │ │ │ ├── immap_547x_8x.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── m520x.h │ │ │ │ │ │ ├── m5227x.h │ │ │ │ │ │ ├── m5235.h │ │ │ │ │ │ ├── m5249.h │ │ │ │ │ │ ├── m5253.h │ │ │ │ │ │ ├── m5271.h │ │ │ │ │ │ ├── m5272.h │ │ │ │ │ │ ├── m5275.h │ │ │ │ │ │ ├── m5282.h │ │ │ │ │ │ ├── m5301x.h │ │ │ │ │ │ ├── m5329.h │ │ │ │ │ │ ├── m5445x.h │ │ │ │ │ │ ├── m547x_8x.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── rtc.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ └── unaligned.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── time.c │ │ │ │ │ └── traps.c │ │ │ ├── microblaze │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── exception.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── irq.S │ │ │ │ │ ├── start.S │ │ │ │ │ └── timer.c │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── asm.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── microblaze_intc.h │ │ │ │ │ │ ├── microblaze_timer.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ └── unaligned.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ └── time.c │ │ │ ├── mips │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asc_serial.c │ │ │ │ │ ├── asc_serial.h │ │ │ │ │ ├── au1x00_eth.c │ │ │ │ │ ├── au1x00_serial.c │ │ │ │ │ ├── au1x00_usb_ohci.c │ │ │ │ │ ├── au1x00_usb_ohci.h │ │ │ │ │ ├── cache.S │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── incaip_clock.c │ │ │ │ │ ├── incaip_wdt.S │ │ │ │ │ ├── interrupts.c │ │ │ │ │ └── start.S │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── addrspace.h │ │ │ │ │ │ ├── asm.h │ │ │ │ │ │ ├── au1x00.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cachectl.h │ │ │ │ │ │ ├── cacheops.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── inca-ip.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── isadep.h │ │ │ │ │ │ ├── mipsregs.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── regdef.h │ │ │ │ │ │ ├── sgidefs.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ └── unaligned.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── bootm_qemu_mips.c │ │ │ │ │ └── time.c │ │ │ ├── nios2 │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── epcs.c │ │ │ │ │ ├── exceptions.S │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── start.S │ │ │ │ │ ├── sysid.c │ │ │ │ │ ├── traps.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── bitops │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── ffs.h │ │ │ │ │ │ └── non-atomic.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── opcodes.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── psr.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── status_led.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ └── unaligned.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── cache.S │ │ │ │ │ ├── libgcc.c │ │ │ │ │ ├── longlong.h │ │ │ │ │ └── time.c │ │ │ ├── powerpc │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── 74xx_7xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── io.S │ │ │ │ │ │ ├── kgdb.S │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ └── traps.c │ │ │ │ │ ├── mpc512x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ │ ├── common.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── diu.c │ │ │ │ │ │ ├── fixed_sdram.c │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ ├── ide.c │ │ │ │ │ │ ├── iim.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── iopin.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── mpc5xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── mpc5xxx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── firmware_sc_task_bestcomm.impl.S │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ ├── ide.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── io.S │ │ │ │ │ │ ├── loadtask.c │ │ │ │ │ │ ├── pci_mpc5200.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ ├── u-boot-customlayout.lds │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ ├── usb.c │ │ │ │ │ │ ├── usb_ohci.c │ │ │ │ │ │ └── usb_ohci.h │ │ │ │ │ ├── mpc8220 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ ├── dramSetup.c │ │ │ │ │ │ ├── dramSetup.h │ │ │ │ │ │ ├── fec.c │ │ │ │ │ │ ├── fec.h │ │ │ │ │ │ ├── fec_dma_tasks.S │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ ├── i2cCore.c │ │ │ │ │ │ ├── i2cCore.h │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── io.S │ │ │ │ │ │ ├── loadtask.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── uart.c │ │ │ │ │ ├── mpc824x │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── drivers │ │ │ │ │ │ │ ├── epic.h │ │ │ │ │ │ │ ├── epic │ │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ │ ├── epic.h │ │ │ │ │ │ │ │ ├── epic1.c │ │ │ │ │ │ │ │ ├── epic2.S │ │ │ │ │ │ │ │ └── epicutil.S │ │ │ │ │ │ │ ├── errors.h │ │ │ │ │ │ │ ├── i2c │ │ │ │ │ │ │ │ └── i2c.c │ │ │ │ │ │ │ └── i2c_export.h │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── mpc8260 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bedbug_603e.c │ │ │ │ │ │ ├── commproc.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── ether_fcc.c │ │ │ │ │ │ ├── ether_scc.c │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── kgdb.S │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── serial_scc.c │ │ │ │ │ │ ├── serial_smc.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── speed.h │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── mpc83xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── ecc.c │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── nand_init.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── pcie.c │ │ │ │ │ │ ├── qe_io.c │ │ │ │ │ │ ├── serdes.c │ │ │ │ │ │ ├── spd_sdram.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── mpc85xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── commproc.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── cpu_init_early.c │ │ │ │ │ │ ├── cpu_init_nand.c │ │ │ │ │ │ ├── ddr-gen1.c │ │ │ │ │ │ ├── ddr-gen2.c │ │ │ │ │ │ ├── ddr-gen3.c │ │ │ │ │ │ ├── ether_fcc.c │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ ├── fixed_ivor.S │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── mp.c │ │ │ │ │ │ ├── mp.h │ │ │ │ │ │ ├── mpc8536_serdes.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── qe_io.c │ │ │ │ │ │ ├── release.S │ │ │ │ │ │ ├── resetvec.S │ │ │ │ │ │ ├── serial_scc.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── tlb.c │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ ├── u-boot-nand.lds │ │ │ │ │ │ ├── u-boot-nand_spl.lds │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── mpc86xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── ddr-8641.c │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── mp.c │ │ │ │ │ │ ├── release.S │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ └── traps.c │ │ │ │ │ ├── mpc8xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bedbug_860.c │ │ │ │ │ │ ├── commproc.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ ├── fec.c │ │ │ │ │ │ ├── fec.h │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── kgdb.S │ │ │ │ │ │ ├── lcd.c │ │ │ │ │ │ ├── plprcr_write.S │ │ │ │ │ │ ├── scc.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ ├── upatch.c │ │ │ │ │ │ ├── video.c │ │ │ │ │ │ └── wlkbd.c │ │ │ │ │ ├── mpc8xxx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── ddr │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── common_timing_params.h │ │ │ │ │ │ │ ├── ctrl_regs.c │ │ │ │ │ │ │ ├── ddr.h │ │ │ │ │ │ │ ├── ddr1_dimm_params.c │ │ │ │ │ │ │ ├── ddr2_dimm_params.c │ │ │ │ │ │ │ ├── ddr3_dimm_params.c │ │ │ │ │ │ │ ├── lc_common_dimm_params.c │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ ├── options.c │ │ │ │ │ │ │ └── util.c │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ └── pci_cfg.c │ │ │ │ │ └── ppc4xx │ │ │ │ │ │ ├── 40x_spd_sdram.c │ │ │ │ │ │ ├── 44x_spd_ddr.c │ │ │ │ │ │ ├── 44x_spd_ddr2.c │ │ │ │ │ │ ├── 4xx_ibm_ddr2_autocalib.c │ │ │ │ │ │ ├── 4xx_pci.c │ │ │ │ │ │ ├── 4xx_pcie.c │ │ │ │ │ │ ├── 4xx_uart.c │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bedbug_405.c │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ ├── cmd_chip_config.c │ │ │ │ │ │ ├── commproc.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── dcr.S │ │ │ │ │ │ ├── denali_data_eye.c │ │ │ │ │ │ ├── denali_spd_ddr2.c │ │ │ │ │ │ ├── ecc.c │ │ │ │ │ │ ├── ecc.h │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── iop480_uart.c │ │ │ │ │ │ ├── kgdb.S │ │ │ │ │ │ ├── miiphy.c │ │ │ │ │ │ ├── reginfo.c │ │ │ │ │ │ ├── resetvec.S │ │ │ │ │ │ ├── sdram.c │ │ │ │ │ │ ├── sdram.h │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── tlb.c │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ ├── uic.c │ │ │ │ │ │ ├── usb.c │ │ │ │ │ │ ├── usb_ohci.c │ │ │ │ │ │ ├── usb_ohci.h │ │ │ │ │ │ ├── usbdev.c │ │ │ │ │ │ ├── usbdev.h │ │ │ │ │ │ └── xilinx_irq.c │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── 4xx_pci.h │ │ │ │ │ │ ├── 4xx_pcie.h │ │ │ │ │ │ ├── 5xx_immap.h │ │ │ │ │ │ ├── 8xx_immap.h │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── cpm_8260.h │ │ │ │ │ │ ├── cpm_85xx.h │ │ │ │ │ │ ├── e300.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fsl_ddr_dimm_params.h │ │ │ │ │ │ ├── fsl_ddr_sdram.h │ │ │ │ │ │ ├── fsl_dma.h │ │ │ │ │ │ ├── fsl_i2c.h │ │ │ │ │ │ ├── fsl_law.h │ │ │ │ │ │ ├── fsl_lbc.h │ │ │ │ │ │ ├── fsl_mpc83xx_serdes.h │ │ │ │ │ │ ├── fsl_pci.h │ │ │ │ │ │ ├── fsl_serdes.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── immap_512x.h │ │ │ │ │ │ ├── immap_8220.h │ │ │ │ │ │ ├── immap_8260.h │ │ │ │ │ │ ├── immap_83xx.h │ │ │ │ │ │ ├── immap_85xx.h │ │ │ │ │ │ ├── immap_86xx.h │ │ │ │ │ │ ├── immap_qe.h │ │ │ │ │ │ ├── interrupt.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── iopin_8260.h │ │ │ │ │ │ ├── iopin_85xx.h │ │ │ │ │ │ ├── iopin_8xx.h │ │ │ │ │ │ ├── m8260_pci.h │ │ │ │ │ │ ├── mc146818rtc.h │ │ │ │ │ │ ├── mmu.h │ │ │ │ │ │ ├── mp.h │ │ │ │ │ │ ├── mpc512x.h │ │ │ │ │ │ ├── mpc8349_pci.h │ │ │ │ │ │ ├── mpc8xxx_spi.h │ │ │ │ │ │ ├── pci_io.h │ │ │ │ │ │ ├── pnp.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── ppc4xx-ebc.h │ │ │ │ │ │ ├── ppc4xx-isram.h │ │ │ │ │ │ ├── ppc4xx-sdram.h │ │ │ │ │ │ ├── ppc4xx-uic.h │ │ │ │ │ │ ├── ppc4xx.h │ │ │ │ │ │ ├── ppc4xx_config.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── residual.h │ │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── status_led.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ ├── unaligned.h │ │ │ │ │ │ └── xilinx_irq.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bat_rw.c │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootcount.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── extable.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── kgdb.c │ │ │ │ │ ├── memcpy_mpc5200.c │ │ │ │ │ ├── ppccache.S │ │ │ │ │ ├── ppcstring.S │ │ │ │ │ ├── reloc.S │ │ │ │ │ ├── ticks.S │ │ │ │ │ └── time.c │ │ │ ├── sh │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── sh2 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── watchdog.c │ │ │ │ │ ├── sh3 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── watchdog.c │ │ │ │ │ └── sh4 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── watchdog.c │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── cpu_sh2.h │ │ │ │ │ │ ├── cpu_sh3.h │ │ │ │ │ │ ├── cpu_sh4.h │ │ │ │ │ │ ├── cpu_sh7203.h │ │ │ │ │ │ ├── cpu_sh7710.h │ │ │ │ │ │ ├── cpu_sh7720.h │ │ │ │ │ │ ├── cpu_sh7722.h │ │ │ │ │ │ ├── cpu_sh7723.h │ │ │ │ │ │ ├── cpu_sh7750.h │ │ │ │ │ │ ├── cpu_sh7763.h │ │ │ │ │ │ ├── cpu_sh7780.h │ │ │ │ │ │ ├── cpu_sh7785.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── irqflags.h │ │ │ │ │ │ ├── macro.h │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ ├── unaligned-sh4a.h │ │ │ │ │ │ └── unaligned.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── time.c │ │ │ │ │ └── time_sh2.c │ │ │ └── sparc │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ ├── leon2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── serial.c │ │ │ │ │ └── start.S │ │ │ │ └── leon3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ambapp.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── serial.c │ │ │ │ │ ├── start.S │ │ │ │ │ ├── usb_uhci.c │ │ │ │ │ └── usb_uhci.h │ │ │ │ ├── include │ │ │ │ └── asm │ │ │ │ │ ├── arch-leon2 │ │ │ │ │ └── asi.h │ │ │ │ │ ├── arch-leon3 │ │ │ │ │ └── asi.h │ │ │ │ │ ├── asi.h │ │ │ │ │ ├── asmmacro.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── bitops.h │ │ │ │ │ ├── byteorder.h │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── global_data.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── irq.h │ │ │ │ │ ├── leon.h │ │ │ │ │ ├── leon2.h │ │ │ │ │ ├── leon3.h │ │ │ │ │ ├── machines.h │ │ │ │ │ ├── page.h │ │ │ │ │ ├── posix_types.h │ │ │ │ │ ├── processor.h │ │ │ │ │ ├── prom.h │ │ │ │ │ ├── psr.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── srmmu.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── u-boot.h │ │ │ │ │ └── winmacro.h │ │ │ │ └── lib │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── bootm.c │ │ │ │ ├── cache.c │ │ │ │ ├── interrupts.c │ │ │ │ └── time.c │ │ ├── board │ │ │ └── ACube │ │ │ │ ├── Sam460ex │ │ │ │ ├── Makefile │ │ │ │ ├── Sam460ex.c │ │ │ │ ├── config.mk │ │ │ │ ├── init.S │ │ │ │ ├── init_cn.S │ │ │ │ ├── init_radeon.c │ │ │ │ ├── u-boot-nand.lds │ │ │ │ └── u-boot.lds │ │ │ │ ├── bios_emulator │ │ │ │ ├── bios.c │ │ │ │ ├── glue.c │ │ │ │ ├── glue.h │ │ │ │ ├── glue_test.c │ │ │ │ ├── scitech │ │ │ │ │ ├── include │ │ │ │ │ │ └── x86emu │ │ │ │ │ │ │ ├── fpu_regs.h │ │ │ │ │ │ │ ├── regs.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ └── x86emu.h │ │ │ │ │ └── src │ │ │ │ │ │ └── x86emu │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── debug.c │ │ │ │ │ │ ├── decode.c │ │ │ │ │ │ ├── fpu.c │ │ │ │ │ │ ├── ops.c │ │ │ │ │ │ ├── ops2.c │ │ │ │ │ │ ├── prim_ops.c │ │ │ │ │ │ ├── sys.c │ │ │ │ │ │ ├── validate.c │ │ │ │ │ │ └── x86emu │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── fpu.h │ │ │ │ │ │ ├── fpu_regs.h │ │ │ │ │ │ ├── ops.h │ │ │ │ │ │ ├── prim_asm.h │ │ │ │ │ │ ├── prim_ops.h │ │ │ │ │ │ ├── regs.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── x86emu.h │ │ │ │ │ │ └── x86emui.h │ │ │ │ ├── x86interface.c │ │ │ │ └── x86interface.h │ │ │ │ ├── common │ │ │ │ ├── catweasel.c │ │ │ │ ├── catweasel.h │ │ │ │ ├── cfb_console_extra.c │ │ │ │ ├── cmd_boota.c │ │ │ │ ├── cmd_boota.h │ │ │ │ ├── cmd_bootu.c │ │ │ │ ├── cmd_vesa.c │ │ │ │ ├── cw4.firmware │ │ │ │ ├── cw4.h │ │ │ │ ├── hvideo.h │ │ │ │ ├── init_sm502.c │ │ │ │ ├── logo_acube.bmp │ │ │ │ ├── logo_acube.h │ │ │ │ ├── logo_sam460.bmp │ │ │ │ ├── macros.h │ │ │ │ ├── memio.S │ │ │ │ ├── memio.h │ │ │ │ ├── misc_utils.c │ │ │ │ ├── misc_utils.h │ │ │ │ ├── sam_ide.c │ │ │ │ ├── sam_ide.h │ │ │ │ ├── short_types.h │ │ │ │ ├── slb │ │ │ │ │ ├── our_lists.h │ │ │ │ │ └── sbl_errcodes.h │ │ │ │ ├── sm502.c │ │ │ │ ├── sys_dep.c │ │ │ │ ├── sys_dep.h │ │ │ │ ├── vesa.c │ │ │ │ ├── vesa.h │ │ │ │ ├── vesa_code.h │ │ │ │ └── vesa_video.c │ │ │ │ └── menu │ │ │ │ ├── bios_menu.c │ │ │ │ ├── bios_menu.h │ │ │ │ ├── bootselect_menu.c │ │ │ │ ├── bootselect_menu.h │ │ │ │ ├── cmd_menu.c │ │ │ │ ├── creation.c │ │ │ │ ├── creation.h │ │ │ │ ├── func_items.c │ │ │ │ ├── func_items.h │ │ │ │ ├── label_items.c │ │ │ │ ├── label_items.h │ │ │ │ ├── layout.c │ │ │ │ ├── layout.h │ │ │ │ ├── list.c │ │ │ │ ├── list.h │ │ │ │ ├── menu.c │ │ │ │ ├── menu.h │ │ │ │ ├── popup_items.c │ │ │ │ ├── popup_items.h │ │ │ │ ├── string_edit.c │ │ │ │ ├── string_edit.h │ │ │ │ ├── string_items.c │ │ │ │ └── string_items.h │ │ ├── common │ │ │ ├── Makefile │ │ │ ├── bedbug.c │ │ │ ├── cmd_ambapp.c │ │ │ ├── cmd_bdinfo.c │ │ │ ├── cmd_bedbug.c │ │ │ ├── cmd_bmp.c │ │ │ ├── cmd_boot.c │ │ │ ├── cmd_bootldr.c │ │ │ ├── cmd_bootm.c │ │ │ ├── cmd_cache.c │ │ │ ├── cmd_console.c │ │ │ ├── cmd_cplbinfo.c │ │ │ ├── cmd_cramfs.c │ │ │ ├── cmd_dataflash_mmc_mux.c │ │ │ ├── cmd_date.c │ │ │ ├── cmd_dcr.c │ │ │ ├── cmd_df.c │ │ │ ├── cmd_diag.c │ │ │ ├── cmd_display.c │ │ │ ├── cmd_dtt.c │ │ │ ├── cmd_echo.c │ │ │ ├── cmd_eeprom.c │ │ │ ├── cmd_elf.c │ │ │ ├── cmd_exit.c │ │ │ ├── cmd_ext2.c │ │ │ ├── cmd_fat.c │ │ │ ├── cmd_fdc.c │ │ │ ├── cmd_fdos.c │ │ │ ├── cmd_fdt.c │ │ │ ├── cmd_flash.c │ │ │ ├── cmd_fpga.c │ │ │ ├── cmd_help.c │ │ │ ├── cmd_i2c.c │ │ │ ├── cmd_ide.c │ │ │ ├── cmd_immap.c │ │ │ ├── cmd_irq.c │ │ │ ├── cmd_itest.c │ │ │ ├── cmd_jffs2.c │ │ │ ├── cmd_license.c │ │ │ ├── cmd_load.c │ │ │ ├── cmd_log.c │ │ │ ├── cmd_mac.c │ │ │ ├── cmd_mem.c │ │ │ ├── cmd_mfsl.c │ │ │ ├── cmd_mgdisk.c │ │ │ ├── cmd_mii.c │ │ │ ├── cmd_misc.c │ │ │ ├── cmd_mmc.c │ │ │ ├── cmd_mp.c │ │ │ ├── cmd_mtdparts.c │ │ │ ├── cmd_nand.c │ │ │ ├── cmd_net.c │ │ │ ├── cmd_nvedit.c │ │ │ ├── cmd_onenand.c │ │ │ ├── cmd_otp.c │ │ │ ├── cmd_pci.c │ │ │ ├── cmd_pcmcia.c │ │ │ ├── cmd_portio.c │ │ │ ├── cmd_reginfo.c │ │ │ ├── cmd_reiser.c │ │ │ ├── cmd_sata.c │ │ │ ├── cmd_scsi.c │ │ │ ├── cmd_setexpr.c │ │ │ ├── cmd_sf.c │ │ │ ├── cmd_source.c │ │ │ ├── cmd_spi.c │ │ │ ├── cmd_spibootldr.c │ │ │ ├── cmd_strings.c │ │ │ ├── cmd_terminal.c │ │ │ ├── cmd_test.c │ │ │ ├── cmd_tsi148.c │ │ │ ├── cmd_ubi.c │ │ │ ├── cmd_ubifs.c │ │ │ ├── cmd_universe.c │ │ │ ├── cmd_usb.c │ │ │ ├── cmd_version.c │ │ │ ├── cmd_vfd.c │ │ │ ├── cmd_ximg.c │ │ │ ├── cmd_yaffs2.c │ │ │ ├── command.c │ │ │ ├── console.c │ │ │ ├── ddr_spd.c │ │ │ ├── dlmalloc.c │ │ │ ├── dlmalloc.src │ │ │ ├── env_common.c │ │ │ ├── env_dataflash.c │ │ │ ├── env_eeprom.c │ │ │ ├── env_embedded.c │ │ │ ├── env_flash.c │ │ │ ├── env_mgdisk.c │ │ │ ├── env_nand.c │ │ │ ├── env_nowhere.c │ │ │ ├── env_nvram.c │ │ │ ├── env_onenand.c │ │ │ ├── env_sf.c │ │ │ ├── exports.c │ │ │ ├── fdt_support.c │ │ │ ├── flash.c │ │ │ ├── hush.c │ │ │ ├── hwconfig.c │ │ │ ├── image.c │ │ │ ├── iomux.c │ │ │ ├── kallsyms.c │ │ │ ├── kgdb.c │ │ │ ├── kgdb_stubs.c │ │ │ ├── lcd.c │ │ │ ├── lynxkdi.c │ │ │ ├── main.c │ │ │ ├── memsize.c │ │ │ ├── miiphyutil.c │ │ │ ├── modem.c │ │ │ ├── s_record.c │ │ │ ├── serial.c │ │ │ ├── stdio.c │ │ │ ├── system_map.c │ │ │ ├── update.c │ │ │ ├── usb.c │ │ │ ├── usb_kbd.c │ │ │ ├── usb_storage.c │ │ │ └── xyzModem.c │ │ ├── config.mk │ │ ├── disk │ │ │ ├── Makefile │ │ │ ├── part.c │ │ │ ├── part_amiga.c │ │ │ ├── part_amiga.h │ │ │ ├── part_dos.c │ │ │ ├── part_dos.h │ │ │ ├── part_efi.c │ │ │ ├── part_efi.h │ │ │ ├── part_iso.c │ │ │ ├── part_iso.h │ │ │ ├── part_mac.c │ │ │ └── part_mac.h │ │ ├── doc │ │ │ ├── I2C_Edge_Conditions │ │ │ ├── README-i386 │ │ │ ├── README-integrator │ │ │ ├── README.440-DDR-performance │ │ │ ├── README.AMCC-eval-boards-cleanup │ │ │ ├── README.ARM-SoC │ │ │ ├── README.ARM-memory-map │ │ │ ├── README.AVR32 │ │ │ ├── README.AVR32-port-muxing │ │ │ ├── README.COBRA5272 │ │ │ ├── README.EVB-64260-750CX │ │ │ ├── README.INCA-IP │ │ │ ├── README.IPHASE4539 │ │ │ ├── README.IceCube │ │ │ ├── README.JFFS2 │ │ │ ├── README.JFFS2_NAND │ │ │ ├── README.LED │ │ │ ├── README.Lite5200B_low_power │ │ │ ├── README.MBX │ │ │ ├── README.MPC866 │ │ │ ├── README.Modem │ │ │ ├── README.NetConsole │ │ │ ├── README.OFT │ │ │ ├── README.OXC │ │ │ ├── README.PIP405 │ │ │ ├── README.POST │ │ │ ├── README.PXA_CF │ │ │ ├── README.PlanetCore │ │ │ ├── README.Purple │ │ │ ├── README.RPXClassic │ │ │ ├── README.RPXlite │ │ │ ├── README.SBC8560 │ │ │ ├── README.SNTP │ │ │ ├── README.Sandpoint8240 │ │ │ ├── README.TQM8260 │ │ │ ├── README.VLAN │ │ │ ├── README.alaska8220 │ │ │ ├── README.amigaone │ │ │ ├── README.at91 │ │ │ ├── README.at91-soc │ │ │ ├── README.atum8548 │ │ │ ├── README.autoboot │ │ │ ├── README.bamboo │ │ │ ├── README.bedbug │ │ │ ├── README.bitbangMII │ │ │ ├── README.blackfin │ │ │ ├── README.bus_vcxk │ │ │ ├── README.cmi │ │ │ ├── README.commands │ │ │ ├── README.commands.itest │ │ │ ├── README.console │ │ │ ├── README.davinci │ │ │ ├── README.db64360 │ │ │ ├── README.db64460 │ │ │ ├── README.dns │ │ │ ├── README.drivers.eth │ │ │ ├── README.ebony │ │ │ ├── README.enetaddr │ │ │ ├── README.evb64260 │ │ │ ├── README.fads │ │ │ ├── README.fsl-ddr │ │ │ ├── README.generic_usb_ohci │ │ │ ├── README.hwconfig │ │ │ ├── README.idma2intr │ │ │ ├── README.imx31 │ │ │ ├── README.imximage │ │ │ ├── README.iomux │ │ │ ├── README.kmeter1 │ │ │ ├── README.korat │ │ │ ├── README.kwbimage │ │ │ ├── README.lynxkdi │ │ │ ├── README.m52277evb │ │ │ ├── README.m5253evbe │ │ │ ├── README.m53017evb │ │ │ ├── README.m5373evb │ │ │ ├── README.m54455evb │ │ │ ├── README.m5475evb │ │ │ ├── README.m68k │ │ │ ├── README.marubun-pcmcia │ │ │ ├── README.mflash │ │ │ ├── README.mips │ │ │ ├── README.modnet50 │ │ │ ├── README.mpc5xx │ │ │ ├── README.mpc7448hpc2 │ │ │ ├── README.mpc74xx │ │ │ ├── README.mpc8313erdb │ │ │ ├── README.mpc8315erdb │ │ │ ├── README.mpc8323erdb │ │ │ ├── README.mpc832xemds │ │ │ ├── README.mpc8349itx │ │ │ ├── README.mpc8360emds │ │ │ ├── README.mpc837xemds │ │ │ ├── README.mpc837xerdb │ │ │ ├── README.mpc83xx.ddrecc │ │ │ ├── README.mpc83xxads │ │ │ ├── README.mpc8536ds │ │ │ ├── README.mpc8544ds │ │ │ ├── README.mpc8569mds │ │ │ ├── README.mpc8572ds │ │ │ ├── README.mpc85xxads │ │ │ ├── README.mpc85xxcds │ │ │ ├── README.mpc8610hpcd │ │ │ ├── README.mpc8641hpcn │ │ │ ├── README.mvbc_p │ │ │ ├── README.mvblm7 │ │ │ ├── README.mvsmr │ │ │ ├── README.nand │ │ │ ├── README.nand-boot-ppc440 │ │ │ ├── README.ne2000 │ │ │ ├── README.nhk8815 │ │ │ ├── README.ns9750dev │ │ │ ├── README.ocotea │ │ │ ├── README.ocotea-PIBS-to-U-Boot │ │ │ ├── README.omap3 │ │ │ ├── README.omap730p2 │ │ │ ├── README.p2020rdb │ │ │ ├── README.phytec.pcm030 │ │ │ ├── README.ppc440 │ │ │ ├── README.qemu_mips │ │ │ ├── README.s5pc1xx │ │ │ ├── README.sata │ │ │ ├── README.sbc8349 │ │ │ ├── README.sbc8548 │ │ │ ├── README.sbc8641d │ │ │ ├── README.sched │ │ │ ├── README.serial_multi │ │ │ ├── README.sh │ │ │ ├── README.sh7785lcr │ │ │ ├── README.sha1 │ │ │ ├── README.silent │ │ │ ├── README.simpc8313 │ │ │ ├── README.spear │ │ │ ├── README.standalone │ │ │ ├── README.stxxtc │ │ │ ├── README.timll │ │ │ ├── README.update │ │ │ ├── README.usb │ │ │ ├── README.video │ │ │ ├── README.xpedite1k │ │ │ ├── README.zeus │ │ │ ├── TODO-i386 │ │ │ ├── feature-removal-schedule.txt │ │ │ └── uImage.FIT │ │ │ │ ├── command_syntax_extensions.txt │ │ │ │ ├── howto.txt │ │ │ │ ├── kernel.its │ │ │ │ ├── kernel_fdt.its │ │ │ │ ├── multi.its │ │ │ │ ├── source_file_format.txt │ │ │ │ ├── update3.its │ │ │ │ └── update_uboot.its │ │ ├── drivers │ │ │ ├── bios_emulator │ │ │ │ ├── Makefile │ │ │ │ ├── atibios.c │ │ │ │ ├── besys.c │ │ │ │ ├── bios.c │ │ │ │ ├── biosemu.c │ │ │ │ ├── biosemui.h │ │ │ │ ├── include │ │ │ │ │ ├── biosemu.h │ │ │ │ │ ├── x86emu.h │ │ │ │ │ └── x86emu │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── ops.h │ │ │ │ │ │ ├── prim_asm.h │ │ │ │ │ │ ├── prim_ops.h │ │ │ │ │ │ ├── regs.h │ │ │ │ │ │ └── x86emui.h │ │ │ │ └── x86emu │ │ │ │ │ ├── debug.c │ │ │ │ │ ├── decode.c │ │ │ │ │ ├── ops.c │ │ │ │ │ ├── ops2.c │ │ │ │ │ ├── prim_ops.c │ │ │ │ │ └── sys.c │ │ │ ├── block │ │ │ │ ├── Makefile │ │ │ │ ├── ahci.c │ │ │ │ ├── ata_piix.c │ │ │ │ ├── ata_piix.h │ │ │ │ ├── fsl_sata.c │ │ │ │ ├── fsl_sata.h │ │ │ │ ├── libata.c │ │ │ │ ├── mg_disk.c │ │ │ │ ├── mg_disk_prv.h │ │ │ │ ├── pata_bfin.c │ │ │ │ ├── pata_bfin.h │ │ │ │ ├── sata_dwc.c │ │ │ │ ├── sata_dwc.h │ │ │ │ ├── sata_sil3114.c │ │ │ │ ├── sata_sil3114.h │ │ │ │ ├── sil680.c │ │ │ │ ├── sym53c8xx.c │ │ │ │ └── systemace.c │ │ │ ├── dma │ │ │ │ ├── MCD_dmaApi.c │ │ │ │ ├── MCD_tasks.c │ │ │ │ ├── MCD_tasksInit.c │ │ │ │ ├── Makefile │ │ │ │ └── fsl_dma.c │ │ │ ├── fpga │ │ │ │ ├── ACEX1K.c │ │ │ │ ├── Makefile │ │ │ │ ├── altera.c │ │ │ │ ├── cyclon2.c │ │ │ │ ├── fpga.c │ │ │ │ ├── spartan2.c │ │ │ │ ├── spartan3.c │ │ │ │ ├── stratixII.c │ │ │ │ ├── virtex2.c │ │ │ │ └── xilinx.c │ │ │ ├── gpio │ │ │ │ ├── Makefile │ │ │ │ ├── at91_gpio.c │ │ │ │ ├── kw_gpio.c │ │ │ │ ├── mx31_gpio.c │ │ │ │ ├── pca953x.c │ │ │ │ └── s5p_gpio.c │ │ │ ├── hwmon │ │ │ │ ├── Makefile │ │ │ │ ├── adm1021.c │ │ │ │ ├── adt7460.c │ │ │ │ ├── ds1621.c │ │ │ │ ├── ds1722.c │ │ │ │ ├── ds1775.c │ │ │ │ ├── lm63.c │ │ │ │ ├── lm73.c │ │ │ │ ├── lm75.c │ │ │ │ └── lm81.c │ │ │ ├── i2c │ │ │ │ ├── Makefile │ │ │ │ ├── bfin-twi_i2c.c │ │ │ │ ├── davinci_i2c.c │ │ │ │ ├── fsl_i2c.c │ │ │ │ ├── kirkwood_i2c.c │ │ │ │ ├── mxc_i2c.c │ │ │ │ ├── omap1510_i2c.c │ │ │ │ ├── omap24xx_i2c.c │ │ │ │ ├── pca9564_i2c.c │ │ │ │ ├── ppc4xx_i2c.c │ │ │ │ ├── s3c24x0_i2c.c │ │ │ │ ├── s3c44b0_i2c.c │ │ │ │ ├── soft_i2c.c │ │ │ │ ├── spr_i2c.c │ │ │ │ └── tsi108_i2c.c │ │ │ ├── input │ │ │ │ ├── Makefile │ │ │ │ ├── i8042.c │ │ │ │ ├── keyboard.c │ │ │ │ ├── pc_keyb.c │ │ │ │ ├── ps2mult.c │ │ │ │ └── ps2ser.c │ │ │ ├── misc │ │ │ │ ├── Makefile │ │ │ │ ├── ali512x.c │ │ │ │ ├── ds4510.c │ │ │ │ ├── fsl_law.c │ │ │ │ ├── fsl_pmic.c │ │ │ │ ├── gpio_led.c │ │ │ │ ├── ns87308.c │ │ │ │ ├── status_led.c │ │ │ │ └── twl4030_led.c │ │ │ ├── mmc │ │ │ │ ├── Makefile │ │ │ │ ├── atmel_mci.c │ │ │ │ ├── atmel_mci.h │ │ │ │ ├── bfin_sdh.c │ │ │ │ ├── fsl_esdhc.c │ │ │ │ ├── mmc.c │ │ │ │ ├── mxcmmc.c │ │ │ │ ├── omap3_mmc.c │ │ │ │ ├── pxa_mmc.c │ │ │ │ └── pxa_mmc.h │ │ │ ├── mtd │ │ │ │ ├── Makefile │ │ │ │ ├── at45.c │ │ │ │ ├── cfi_flash.c │ │ │ │ ├── cfi_mtd.c │ │ │ │ ├── dataflash.c │ │ │ │ ├── jedec_flash.c │ │ │ │ ├── mtdconcat.c │ │ │ │ ├── mtdcore.c │ │ │ │ ├── mtdpart.c │ │ │ │ ├── mw_eeprom.c │ │ │ │ ├── nand │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── atmel_nand.c │ │ │ │ │ ├── atmel_nand_ecc.h │ │ │ │ │ ├── bfin_nand.c │ │ │ │ │ ├── davinci_nand.c │ │ │ │ │ ├── diskonchip.c │ │ │ │ │ ├── fsl_elbc_nand.c │ │ │ │ │ ├── fsl_upm.c │ │ │ │ │ ├── kb9202_nand.c │ │ │ │ │ ├── kirkwood_nand.c │ │ │ │ │ ├── kmeter1_nand.c │ │ │ │ │ ├── mpc5121_nfc.c │ │ │ │ │ ├── mxc_nand.c │ │ │ │ │ ├── nand.c │ │ │ │ │ ├── nand_base.c │ │ │ │ │ ├── nand_bbt.c │ │ │ │ │ ├── nand_ecc.c │ │ │ │ │ ├── nand_ids.c │ │ │ │ │ ├── nand_plat.c │ │ │ │ │ ├── nand_util.c │ │ │ │ │ ├── ndfc.c │ │ │ │ │ ├── nomadik.c │ │ │ │ │ ├── omap_gpmc.c │ │ │ │ │ ├── s3c2410_nand.c │ │ │ │ │ ├── s3c64xx.c │ │ │ │ │ └── spr_nand.c │ │ │ │ ├── onenand │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── onenand_base.c │ │ │ │ │ ├── onenand_bbt.c │ │ │ │ │ ├── onenand_uboot.c │ │ │ │ │ └── samsung.c │ │ │ │ ├── spi │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── atmel.c │ │ │ │ │ ├── eeprom_m95xxx.c │ │ │ │ │ ├── macronix.c │ │ │ │ │ ├── spansion.c │ │ │ │ │ ├── spi_flash.c │ │ │ │ │ ├── spi_flash_internal.h │ │ │ │ │ ├── sst.c │ │ │ │ │ ├── stmicro.c │ │ │ │ │ └── winbond.c │ │ │ │ ├── spr_smi.c │ │ │ │ └── ubi │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.c │ │ │ │ │ ├── crc32.c │ │ │ │ │ ├── crc32defs.h │ │ │ │ │ ├── crc32table.h │ │ │ │ │ ├── debug.c │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── eba.c │ │ │ │ │ ├── io.c │ │ │ │ │ ├── kapi.c │ │ │ │ │ ├── misc.c │ │ │ │ │ ├── scan.c │ │ │ │ │ ├── scan.h │ │ │ │ │ ├── ubi-media.h │ │ │ │ │ ├── ubi.h │ │ │ │ │ ├── upd.c │ │ │ │ │ ├── vmt.c │ │ │ │ │ ├── vtbl.c │ │ │ │ │ └── wl.c │ │ │ ├── net │ │ │ │ ├── 3c589.c │ │ │ │ ├── 3c589.h │ │ │ │ ├── 4xx_enet.c │ │ │ │ ├── 5701rls.c │ │ │ │ ├── 5701rls.h │ │ │ │ ├── 8390.h │ │ │ │ ├── Makefile │ │ │ │ ├── altera_tse.c │ │ │ │ ├── altera_tse.h │ │ │ │ ├── at91_emac.c │ │ │ │ ├── ax88180.c │ │ │ │ ├── ax88180.h │ │ │ │ ├── ax88796.c │ │ │ │ ├── ax88796.h │ │ │ │ ├── bcm570x.c │ │ │ │ ├── bcm570x_autoneg.c │ │ │ │ ├── bcm570x_autoneg.h │ │ │ │ ├── bcm570x_bits.h │ │ │ │ ├── bcm570x_debug.h │ │ │ │ ├── bcm570x_lm.h │ │ │ │ ├── bcm570x_mm.h │ │ │ │ ├── bcm570x_queue.h │ │ │ │ ├── bfin_mac.c │ │ │ │ ├── bfin_mac.h │ │ │ │ ├── cs8900.c │ │ │ │ ├── cs8900.h │ │ │ │ ├── davinci_emac.c │ │ │ │ ├── dc2114x.c │ │ │ │ ├── dm9000x.c │ │ │ │ ├── dm9000x.h │ │ │ │ ├── dnet.c │ │ │ │ ├── dnet.h │ │ │ │ ├── e1000.c │ │ │ │ ├── e1000.h │ │ │ │ ├── eepro100.c │ │ │ │ ├── enc28j60.c │ │ │ │ ├── ep93xx_eth.c │ │ │ │ ├── ep93xx_eth.h │ │ │ │ ├── ethoc.c │ │ │ │ ├── fec_mxc.c │ │ │ │ ├── fec_mxc.h │ │ │ │ ├── fsl_mcdmafec.c │ │ │ │ ├── ftmac100.c │ │ │ │ ├── ftmac100.h │ │ │ │ ├── greth.c │ │ │ │ ├── greth.h │ │ │ │ ├── inca-ip_sw.c │ │ │ │ ├── kirkwood_egiga.c │ │ │ │ ├── kirkwood_egiga.h │ │ │ │ ├── ks8695eth.c │ │ │ │ ├── lan91c96.c │ │ │ │ ├── lan91c96.h │ │ │ │ ├── macb.c │ │ │ │ ├── macb.h │ │ │ │ ├── mcffec.c │ │ │ │ ├── mcfmii.c │ │ │ │ ├── mpc512x_fec.c │ │ │ │ ├── mpc512x_fec.h │ │ │ │ ├── mpc5xxx_fec.c │ │ │ │ ├── mpc5xxx_fec.h │ │ │ │ ├── natsemi.c │ │ │ │ ├── ne2000.c │ │ │ │ ├── ne2000.h │ │ │ │ ├── ne2000_base.c │ │ │ │ ├── ne2000_base.h │ │ │ │ ├── netarm_eth.c │ │ │ │ ├── netarm_eth.h │ │ │ │ ├── netconsole.c │ │ │ │ ├── nicext.h │ │ │ │ ├── ns7520_eth.c │ │ │ │ ├── ns8382x.c │ │ │ │ ├── ns9750_eth.c │ │ │ │ ├── pcnet.c │ │ │ │ ├── phy │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── miiphybb.c │ │ │ │ │ ├── mv88e61xx.c │ │ │ │ │ └── mv88e61xx.h │ │ │ │ ├── plb2800_eth.c │ │ │ │ ├── rtl8019.c │ │ │ │ ├── rtl8019.h │ │ │ │ ├── rtl8139.c │ │ │ │ ├── rtl8169.c │ │ │ │ ├── s3c4510b_eth.c │ │ │ │ ├── s3c4510b_eth.h │ │ │ │ ├── sh_eth.c │ │ │ │ ├── sh_eth.h │ │ │ │ ├── smc91111.c │ │ │ │ ├── smc91111.h │ │ │ │ ├── smc911x.c │ │ │ │ ├── smc911x.h │ │ │ │ ├── tigon3.c │ │ │ │ ├── tigon3.h │ │ │ │ ├── tsec.c │ │ │ │ ├── tsi108_eth.c │ │ │ │ ├── uli526x.c │ │ │ │ ├── vsc7385.c │ │ │ │ └── xilinx_emaclite.c │ │ │ ├── pci │ │ │ │ ├── Makefile │ │ │ │ ├── fsl_pci_init.c │ │ │ │ ├── pci.c │ │ │ │ ├── pci_auto.c │ │ │ │ ├── pci_auto_new.c │ │ │ │ ├── pci_auto_new2.c │ │ │ │ ├── pci_indirect.c │ │ │ │ ├── pci_ixp.c │ │ │ │ ├── pci_sh4.c │ │ │ │ ├── pci_sh7751.c │ │ │ │ ├── pci_sh7780.c │ │ │ │ ├── tsi108_pci.c │ │ │ │ └── w83c553f.c │ │ │ ├── pcmcia │ │ │ │ ├── Makefile │ │ │ │ ├── i82365.c │ │ │ │ ├── marubun_pcmcia.c │ │ │ │ ├── mpc8xx_pcmcia.c │ │ │ │ ├── pxa_pcmcia.c │ │ │ │ ├── rpx_pcmcia.c │ │ │ │ ├── ti_pci1410a.c │ │ │ │ └── tqm8xx_pcmcia.c │ │ │ ├── power │ │ │ │ ├── Makefile │ │ │ │ └── twl4030.c │ │ │ ├── qe │ │ │ │ ├── Makefile │ │ │ │ ├── fdt.c │ │ │ │ ├── qe.c │ │ │ │ ├── qe.h │ │ │ │ ├── uccf.c │ │ │ │ ├── uccf.h │ │ │ │ ├── uec.c │ │ │ │ ├── uec.h │ │ │ │ ├── uec_phy.c │ │ │ │ └── uec_phy.h │ │ │ ├── rtc │ │ │ │ ├── Makefile │ │ │ │ ├── bfin_rtc.c │ │ │ │ ├── date.c │ │ │ │ ├── ds12887.c │ │ │ │ ├── ds1302.c │ │ │ │ ├── ds1306.c │ │ │ │ ├── ds1307.c │ │ │ │ ├── ds1337.c │ │ │ │ ├── ds1374.c │ │ │ │ ├── ds1556.c │ │ │ │ ├── ds164x.c │ │ │ │ ├── ds174x.c │ │ │ │ ├── ds3231.c │ │ │ │ ├── ftrtc010.c │ │ │ │ ├── isl1208.c │ │ │ │ ├── m41t11.c │ │ │ │ ├── m41t60.c │ │ │ │ ├── m41t62.c │ │ │ │ ├── m41t94.c │ │ │ │ ├── m48t35ax.c │ │ │ │ ├── max6900.c │ │ │ │ ├── mc13783-rtc.c │ │ │ │ ├── mc146818.c │ │ │ │ ├── mcfrtc.c │ │ │ │ ├── mk48t59.c │ │ │ │ ├── mpc5xxx.c │ │ │ │ ├── mpc8xx.c │ │ │ │ ├── pcf8563.c │ │ │ │ ├── pl031.c │ │ │ │ ├── rs5c372.c │ │ │ │ ├── rtc4543.c │ │ │ │ ├── rx8025.c │ │ │ │ ├── s3c24x0_rtc.c │ │ │ │ ├── s3c44b0_rtc.c │ │ │ │ └── x1205.c │ │ │ ├── serial │ │ │ │ ├── Makefile │ │ │ │ ├── altera_jtag_uart.c │ │ │ │ ├── altera_uart.c │ │ │ │ ├── arm_dcc.c │ │ │ │ ├── at91rm9200_usart.c │ │ │ │ ├── atmel_usart.c │ │ │ │ ├── atmel_usart.h │ │ │ │ ├── mcfuart.c │ │ │ │ ├── ns16550.c │ │ │ │ ├── ns9750_serial.c │ │ │ │ ├── opencores_yanu.c │ │ │ │ ├── s3c4510b_uart.c │ │ │ │ ├── s3c4510b_uart.h │ │ │ │ ├── s3c64xx.c │ │ │ │ ├── serial.c │ │ │ │ ├── serial_clps7111.c │ │ │ │ ├── serial_imx.c │ │ │ │ ├── serial_ixp.c │ │ │ │ ├── serial_ks8695.c │ │ │ │ ├── serial_lh7a40x.c │ │ │ │ ├── serial_lpc2292.c │ │ │ │ ├── serial_max3100.c │ │ │ │ ├── serial_mxc.c │ │ │ │ ├── serial_netarm.c │ │ │ │ ├── serial_pl01x.c │ │ │ │ ├── serial_pl01x.h │ │ │ │ ├── serial_pxa.c │ │ │ │ ├── serial_s3c24x0.c │ │ │ │ ├── serial_s3c44b0.c │ │ │ │ ├── serial_s5p.c │ │ │ │ ├── serial_sa1100.c │ │ │ │ ├── serial_sh.c │ │ │ │ ├── serial_xuartlite.c │ │ │ │ ├── usbtty.c │ │ │ │ └── usbtty.h │ │ │ ├── spi │ │ │ │ ├── Makefile │ │ │ │ ├── altera_spi.c │ │ │ │ ├── atmel_dataflash_spi.c │ │ │ │ ├── atmel_spi.c │ │ │ │ ├── atmel_spi.h │ │ │ │ ├── bfin_spi.c │ │ │ │ ├── cf_spi.c │ │ │ │ ├── davinci_spi.c │ │ │ │ ├── davinci_spi.h │ │ │ │ ├── kirkwood_spi.c │ │ │ │ ├── mpc52xx_spi.c │ │ │ │ ├── mpc8xxx_spi.c │ │ │ │ ├── mxc_spi.c │ │ │ │ └── soft_spi.c │ │ │ ├── twserial │ │ │ │ ├── Makefile │ │ │ │ └── soft_tws.c │ │ │ ├── usb │ │ │ │ ├── gadget │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── core.c │ │ │ │ │ ├── ep0.c │ │ │ │ │ ├── ep0.h │ │ │ │ │ ├── mpc8xx_udc.c │ │ │ │ │ ├── omap1510_udc.c │ │ │ │ │ ├── pxa27x_udc.c │ │ │ │ │ └── spr_udc.c │ │ │ │ ├── host │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ehci-core.h │ │ │ │ │ ├── ehci-fsl.c │ │ │ │ │ ├── ehci-hcd.c │ │ │ │ │ ├── ehci-ixp4xx.c │ │ │ │ │ ├── ehci-kirkwood.c │ │ │ │ │ ├── ehci-pci.c │ │ │ │ │ ├── ehci-ppc4xx.c │ │ │ │ │ ├── ehci-vct.c │ │ │ │ │ ├── ehci.h │ │ │ │ │ ├── isp116x-hcd.c │ │ │ │ │ ├── isp116x.h │ │ │ │ │ ├── ohci-at91.c │ │ │ │ │ ├── ohci-hcd-test.c │ │ │ │ │ ├── ohci-hcd.c │ │ │ │ │ ├── ohci.h │ │ │ │ │ ├── r8a66597-hcd.c │ │ │ │ │ ├── r8a66597.h │ │ │ │ │ ├── s3c64xx-hcd.c │ │ │ │ │ ├── sl811-hcd.c │ │ │ │ │ └── sl811.h │ │ │ │ ├── musb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── blackfin_usb.c │ │ │ │ │ ├── blackfin_usb.h │ │ │ │ │ ├── da8xx.c │ │ │ │ │ ├── da8xx.h │ │ │ │ │ ├── davinci.c │ │ │ │ │ ├── davinci.h │ │ │ │ │ ├── musb_core.c │ │ │ │ │ ├── musb_core.h │ │ │ │ │ ├── musb_debug.h │ │ │ │ │ ├── musb_hcd.c │ │ │ │ │ ├── musb_hcd.h │ │ │ │ │ ├── musb_udc.c │ │ │ │ │ ├── omap3.c │ │ │ │ │ └── omap3.h │ │ │ │ └── phy │ │ │ │ │ ├── Makefile │ │ │ │ │ └── twl4030.c │ │ │ ├── video │ │ │ │ ├── Makefile │ │ │ │ ├── amba.c │ │ │ │ ├── ati_ids.h │ │ │ │ ├── ati_radeon_fb.c │ │ │ │ ├── ati_radeon_fb.h │ │ │ │ ├── atmel_lcdfb.c │ │ │ │ ├── bus_vcxk.c │ │ │ │ ├── cfb_console.c │ │ │ │ ├── ct69000.c │ │ │ │ ├── mb862xx.c │ │ │ │ ├── mx3fb.c │ │ │ │ ├── s6e63d6.c │ │ │ │ ├── sed13806.c │ │ │ │ ├── sed156x.c │ │ │ │ ├── sm501.c │ │ │ │ ├── smiLynxEM.c │ │ │ │ ├── videomodes.c │ │ │ │ └── videomodes.h │ │ │ └── watchdog │ │ │ │ ├── Makefile │ │ │ │ └── at91sam9_wdt.c │ │ ├── examples │ │ │ ├── api │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── crt0.S │ │ │ │ ├── demo.c │ │ │ │ ├── glue.c │ │ │ │ ├── glue.h │ │ │ │ └── libgenwrap.c │ │ │ └── standalone │ │ │ │ ├── .gitignore │ │ │ │ ├── 82559_eeprom.c │ │ │ │ ├── Makefile │ │ │ │ ├── README.smc91111_eeprom │ │ │ │ ├── atmel_df_pow2.c │ │ │ │ ├── eepro100_eeprom.c │ │ │ │ ├── hello_world.c │ │ │ │ ├── interrupt.c │ │ │ │ ├── mem_to_mem_idma2intr.c │ │ │ │ ├── mips.lds │ │ │ │ ├── ppc_longjmp.S │ │ │ │ ├── ppc_setjmp.S │ │ │ │ ├── sched.c │ │ │ │ ├── smc91111_eeprom.c │ │ │ │ ├── smc911x_eeprom.c │ │ │ │ ├── sparc.lds │ │ │ │ ├── stubs.c │ │ │ │ ├── test_burst.c │ │ │ │ ├── test_burst.h │ │ │ │ ├── test_burst_lib.S │ │ │ │ ├── timer.c │ │ │ │ └── x86-testapp.c │ │ ├── fs │ │ │ ├── Makefile │ │ │ ├── cramfs │ │ │ │ ├── Makefile │ │ │ │ ├── cramfs.c │ │ │ │ └── uncompress.c │ │ │ ├── ext2 │ │ │ │ ├── Makefile │ │ │ │ ├── dev.c │ │ │ │ └── ext2fs.c │ │ │ ├── fat │ │ │ │ ├── Makefile │ │ │ │ ├── fat.c │ │ │ │ └── file.c │ │ │ ├── fdos │ │ │ │ ├── Makefile │ │ │ │ ├── dev.c │ │ │ │ ├── dos.h │ │ │ │ ├── fat.c │ │ │ │ ├── fdos.c │ │ │ │ ├── fdos.h │ │ │ │ ├── fs.c │ │ │ │ ├── subdir.c │ │ │ │ └── vfat.c │ │ │ ├── jffs2 │ │ │ │ ├── LICENCE │ │ │ │ ├── Makefile │ │ │ │ ├── compr_lzo.c │ │ │ │ ├── compr_rtime.c │ │ │ │ ├── compr_rubin.c │ │ │ │ ├── compr_zlib.c │ │ │ │ ├── jffs2_1pass.c │ │ │ │ ├── jffs2_nand_1pass.c │ │ │ │ ├── jffs2_nand_private.h │ │ │ │ ├── jffs2_private.h │ │ │ │ ├── mini_inflate.c │ │ │ │ └── summary.h │ │ │ ├── reiserfs │ │ │ │ ├── Makefile │ │ │ │ ├── dev.c │ │ │ │ ├── mode_string.c │ │ │ │ ├── reiserfs.c │ │ │ │ └── reiserfs_private.h │ │ │ ├── ubifs │ │ │ │ ├── Makefile │ │ │ │ ├── budget.c │ │ │ │ ├── crc16.c │ │ │ │ ├── crc16.h │ │ │ │ ├── debug.c │ │ │ │ ├── debug.h │ │ │ │ ├── io.c │ │ │ │ ├── key.h │ │ │ │ ├── log.c │ │ │ │ ├── lprops.c │ │ │ │ ├── lpt.c │ │ │ │ ├── lpt_commit.c │ │ │ │ ├── master.c │ │ │ │ ├── misc.h │ │ │ │ ├── orphan.c │ │ │ │ ├── recovery.c │ │ │ │ ├── replay.c │ │ │ │ ├── sb.c │ │ │ │ ├── scan.c │ │ │ │ ├── super.c │ │ │ │ ├── tnc.c │ │ │ │ ├── tnc_misc.c │ │ │ │ ├── ubifs-media.h │ │ │ │ ├── ubifs.c │ │ │ │ └── ubifs.h │ │ │ └── yaffs2 │ │ │ │ ├── Makefile │ │ │ │ ├── README-linux │ │ │ │ ├── devextras.h │ │ │ │ ├── yaffs_checkptrw.c │ │ │ │ ├── yaffs_checkptrw.h │ │ │ │ ├── yaffs_ecc.c │ │ │ │ ├── yaffs_ecc.h │ │ │ │ ├── yaffs_flashif.h │ │ │ │ ├── yaffs_guts.c │ │ │ │ ├── yaffs_guts.h │ │ │ │ ├── yaffs_malloc.h │ │ │ │ ├── yaffs_mtdif.c │ │ │ │ ├── yaffs_mtdif.h │ │ │ │ ├── yaffs_mtdif2.c │ │ │ │ ├── yaffs_mtdif2.h │ │ │ │ ├── yaffs_nand.c │ │ │ │ ├── yaffs_nand.h │ │ │ │ ├── yaffs_nandemul2k.h │ │ │ │ ├── yaffs_packedtags1.c │ │ │ │ ├── yaffs_packedtags1.h │ │ │ │ ├── yaffs_packedtags2.c │ │ │ │ ├── yaffs_packedtags2.h │ │ │ │ ├── yaffs_qsort.c │ │ │ │ ├── yaffs_qsort.h │ │ │ │ ├── yaffs_ramdisk.h │ │ │ │ ├── yaffs_tagscompat.c │ │ │ │ ├── yaffs_tagscompat.h │ │ │ │ ├── yaffs_tagsvalidity.c │ │ │ │ ├── yaffs_tagsvalidity.h │ │ │ │ ├── yaffscfg.c │ │ │ │ ├── yaffscfg.h │ │ │ │ ├── yaffsfs.c │ │ │ │ ├── yaffsfs.h │ │ │ │ ├── yaffsinterface.h │ │ │ │ ├── ydirectenv.h │ │ │ │ └── yportenv.h │ │ ├── include │ │ │ ├── .gitignore │ │ │ ├── 405_dimm.h │ │ │ ├── 405_mal.h │ │ │ ├── 4xx_i2c.h │ │ │ ├── 74xx_7xx.h │ │ │ ├── ACEX1K.h │ │ │ ├── MCD_dma.h │ │ │ ├── MCD_progCheck.h │ │ │ ├── MCD_tasksInit.h │ │ │ ├── SA-1100.h │ │ │ ├── _exports.h │ │ │ ├── addr_map.h │ │ │ ├── ahci.h │ │ │ ├── ali512x.h │ │ │ ├── altera.h │ │ │ ├── amba_clcd.h │ │ │ ├── ambapp.h │ │ │ ├── api_public.h │ │ │ ├── arm925t.h │ │ │ ├── armcoremodule.h │ │ │ ├── asm-generic │ │ │ │ ├── errno.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── signal.h │ │ │ │ └── unaligned.h │ │ │ ├── at45.h │ │ │ ├── at91rm9200_i2c.h │ │ │ ├── at91rm9200_net.h │ │ │ ├── ata.h │ │ │ ├── atmel_lcdc.h │ │ │ ├── bcd.h │ │ │ ├── bcm5221.h │ │ │ ├── bedbug │ │ │ │ ├── bedbug.h │ │ │ │ ├── ppc.h │ │ │ │ ├── regs.h │ │ │ │ ├── tables.h │ │ │ │ └── type.h │ │ │ ├── bmp_layout.h │ │ │ ├── bus_vcxk.h │ │ │ ├── bzlib.h │ │ │ ├── circbuf.h │ │ │ ├── clps7111.h │ │ │ ├── command.h │ │ │ ├── common.h │ │ │ ├── commproc.h │ │ │ ├── compiler.h │ │ │ ├── config_cmd_all.h │ │ │ ├── config_cmd_default.h │ │ │ ├── config_defaults.h │ │ │ ├── configs │ │ │ │ ├── A3000.h │ │ │ │ ├── ADCIOP.h │ │ │ │ ├── ADS860.h │ │ │ │ ├── AMX860.h │ │ │ │ ├── AP1000.h │ │ │ │ ├── APC405.h │ │ │ │ ├── AR405.h │ │ │ │ ├── ASH405.h │ │ │ │ ├── ATUM8548.h │ │ │ │ ├── Adder.h │ │ │ │ ├── AdderUSB.h │ │ │ │ ├── Alaska8220.h │ │ │ │ ├── AmigaOneG3SE.h │ │ │ │ ├── B2.h │ │ │ │ ├── BAB7xx.h │ │ │ │ ├── BC3450.h │ │ │ │ ├── BMW.h │ │ │ │ ├── CANBT.h │ │ │ │ ├── CATcenter.h │ │ │ │ ├── CCM.h │ │ │ │ ├── CMS700.h │ │ │ │ ├── CPC45.h │ │ │ │ ├── CPCI2DP.h │ │ │ │ ├── CPCI405.h │ │ │ │ ├── CPCI4052.h │ │ │ │ ├── CPCI405AB.h │ │ │ │ ├── CPCI405DT.h │ │ │ │ ├── CPCI750.h │ │ │ │ ├── CPCIISER4.h │ │ │ │ ├── CPU86.h │ │ │ │ ├── CPU87.h │ │ │ │ ├── CRAYL1.h │ │ │ │ ├── CU824.h │ │ │ │ ├── DASA_SIM.h │ │ │ │ ├── DB64360.h │ │ │ │ ├── DB64460.h │ │ │ │ ├── DP405.h │ │ │ │ ├── DU405.h │ │ │ │ ├── DU440.h │ │ │ │ ├── EB+MCF-EV123.h │ │ │ │ ├── ELPPC.h │ │ │ │ ├── ELPT860.h │ │ │ │ ├── EP1C20.h │ │ │ │ ├── EP1S10.h │ │ │ │ ├── EP1S40.h │ │ │ │ ├── EP88x.h │ │ │ │ ├── ERIC.h │ │ │ │ ├── ESTEEM192E.h │ │ │ │ ├── ETX094.h │ │ │ │ ├── EVB64260.h │ │ │ │ ├── EXBITGEN.h │ │ │ │ ├── FADS823.h │ │ │ │ ├── FADS850SAR.h │ │ │ │ ├── FADS860T.h │ │ │ │ ├── FLAGADM.h │ │ │ │ ├── FPS850L.h │ │ │ │ ├── FPS860L.h │ │ │ │ ├── G2000.h │ │ │ │ ├── GEN860T.h │ │ │ │ ├── GENIETV.h │ │ │ │ ├── GTH.h │ │ │ │ ├── HH405.h │ │ │ │ ├── HIDDEN_DRAGON.h │ │ │ │ ├── HMI10.h │ │ │ │ ├── HUB405.h │ │ │ │ ├── IAD210.h │ │ │ │ ├── ICU862.h │ │ │ │ ├── IDS8247.h │ │ │ │ ├── IP860.h │ │ │ │ ├── IPHASE4539.h │ │ │ │ ├── ISPAN.h │ │ │ │ ├── IVML24.h │ │ │ │ ├── IVMS8.h │ │ │ │ ├── IceCube.h │ │ │ │ ├── JSE.h │ │ │ │ ├── KAREF.h │ │ │ │ ├── KUP4K.h │ │ │ │ ├── KUP4X.h │ │ │ │ ├── LANTEC.h │ │ │ │ ├── M5208EVBE.h │ │ │ │ ├── M52277EVB.h │ │ │ │ ├── M5235EVB.h │ │ │ │ ├── M5249EVB.h │ │ │ │ ├── M5253DEMO.h │ │ │ │ ├── M5253EVBE.h │ │ │ │ ├── M5271EVB.h │ │ │ │ ├── M5272C3.h │ │ │ │ ├── M5275EVB.h │ │ │ │ ├── M5282EVB.h │ │ │ │ ├── M53017EVB.h │ │ │ │ ├── M5329EVB.h │ │ │ │ ├── M5373EVB.h │ │ │ │ ├── M54451EVB.h │ │ │ │ ├── M54455EVB.h │ │ │ │ ├── M5475EVB.h │ │ │ │ ├── M5485EVB.h │ │ │ │ ├── MBX.h │ │ │ │ ├── MBX860T.h │ │ │ │ ├── METROBOX.h │ │ │ │ ├── MHPC.h │ │ │ │ ├── MIP405.h │ │ │ │ ├── ML2.h │ │ │ │ ├── MOUSSE.h │ │ │ │ ├── MPC8260ADS.h │ │ │ │ ├── MPC8266ADS.h │ │ │ │ ├── MPC8313ERDB.h │ │ │ │ ├── MPC8315ERDB.h │ │ │ │ ├── MPC8323ERDB.h │ │ │ │ ├── MPC832XEMDS.h │ │ │ │ ├── MPC8349EMDS.h │ │ │ │ ├── MPC8349ITX.h │ │ │ │ ├── MPC8360EMDS.h │ │ │ │ ├── MPC8360ERDK.h │ │ │ │ ├── MPC837XEMDS.h │ │ │ │ ├── MPC837XERDB.h │ │ │ │ ├── MPC8536DS.h │ │ │ │ ├── MPC8540ADS.h │ │ │ │ ├── MPC8540EVAL.h │ │ │ │ ├── MPC8541CDS.h │ │ │ │ ├── MPC8544DS.h │ │ │ │ ├── MPC8548CDS.h │ │ │ │ ├── MPC8555CDS.h │ │ │ │ ├── MPC8560ADS.h │ │ │ │ ├── MPC8568MDS.h │ │ │ │ ├── MPC8569MDS.h │ │ │ │ ├── MPC8572DS.h │ │ │ │ ├── MPC8610HPCD.h │ │ │ │ ├── MPC8641HPCN.h │ │ │ │ ├── MPC86xADS.h │ │ │ │ ├── MPC885ADS.h │ │ │ │ ├── MUSENKI.h │ │ │ │ ├── MVBC_P.h │ │ │ │ ├── MVBLM7.h │ │ │ │ ├── MVBLUE.h │ │ │ │ ├── MVS1.h │ │ │ │ ├── MVSMR.h │ │ │ │ ├── MigoR.h │ │ │ │ ├── NC650.h │ │ │ │ ├── NETPHONE.h │ │ │ │ ├── NETTA.h │ │ │ │ ├── NETTA2.h │ │ │ │ ├── NETVIA.h │ │ │ │ ├── NSCU.h │ │ │ │ ├── NX823.h │ │ │ │ ├── OCRTC.h │ │ │ │ ├── ORSG.h │ │ │ │ ├── OXC.h │ │ │ │ ├── P1_P2_RDB.h │ │ │ │ ├── P2020DS.h │ │ │ │ ├── P3G4.h │ │ │ │ ├── PATI.h │ │ │ │ ├── PCI405.h │ │ │ │ ├── PCI5441.h │ │ │ │ ├── PCIPPC2.h │ │ │ │ ├── PCIPPC6.h │ │ │ │ ├── PIP405.h │ │ │ │ ├── PK1C20.h │ │ │ │ ├── PLU405.h │ │ │ │ ├── PM520.h │ │ │ │ ├── PM826.h │ │ │ │ ├── PM828.h │ │ │ │ ├── PM854.h │ │ │ │ ├── PM856.h │ │ │ │ ├── PMC405.h │ │ │ │ ├── PMC405DE.h │ │ │ │ ├── PMC440.h │ │ │ │ ├── PN62.h │ │ │ │ ├── PPChameleonEVB.h │ │ │ │ ├── QS823.h │ │ │ │ ├── QS850.h │ │ │ │ ├── QS860T.h │ │ │ │ ├── R360MPI.h │ │ │ │ ├── RBC823.h │ │ │ │ ├── RPXClassic.h │ │ │ │ ├── RPXlite.h │ │ │ │ ├── RPXlite_DW.h │ │ │ │ ├── RPXsuper.h │ │ │ │ ├── RRvision.h │ │ │ │ ├── Rattler.h │ │ │ │ ├── SBC8540.h │ │ │ │ ├── SCM.h │ │ │ │ ├── SIMPC8313.h │ │ │ │ ├── SM850.h │ │ │ │ ├── SMN42.h │ │ │ │ ├── SPD823TS.h │ │ │ │ ├── SX1.h │ │ │ │ ├── SXNI855T.h │ │ │ │ ├── Sam460ex.h │ │ │ │ ├── Sandpoint8240.h │ │ │ │ ├── Sandpoint8245.h │ │ │ │ ├── TASREG.h │ │ │ │ ├── TB5200.h │ │ │ │ ├── TK885D.h │ │ │ │ ├── TOP5200.h │ │ │ │ ├── TOP860.h │ │ │ │ ├── TQM5200.h │ │ │ │ ├── TQM823L.h │ │ │ │ ├── TQM823M.h │ │ │ │ ├── TQM8260.h │ │ │ │ ├── TQM8272.h │ │ │ │ ├── TQM834x.h │ │ │ │ ├── TQM850L.h │ │ │ │ ├── TQM850M.h │ │ │ │ ├── TQM855L.h │ │ │ │ ├── TQM855M.h │ │ │ │ ├── TQM85xx.h │ │ │ │ ├── TQM860L.h │ │ │ │ ├── TQM860M.h │ │ │ │ ├── TQM862L.h │ │ │ │ ├── TQM862M.h │ │ │ │ ├── TQM866M.h │ │ │ │ ├── TQM885D.h │ │ │ │ ├── Total5200.h │ │ │ │ ├── VCMA9.h │ │ │ │ ├── VOH405.h │ │ │ │ ├── VOM405.h │ │ │ │ ├── VoVPN-GW.h │ │ │ │ ├── W7OLMC.h │ │ │ │ ├── W7OLMG.h │ │ │ │ ├── WUH405.h │ │ │ │ ├── XPEDITE1000.h │ │ │ │ ├── XPEDITE5170.h │ │ │ │ ├── XPEDITE5200.h │ │ │ │ ├── XPEDITE5370.h │ │ │ │ ├── Yukon8220.h │ │ │ │ ├── ZPC1900.h │ │ │ │ ├── ZUMA.h │ │ │ │ ├── a320evb.h │ │ │ │ ├── acadia.h │ │ │ │ ├── actux1.h │ │ │ │ ├── actux2.h │ │ │ │ ├── actux3.h │ │ │ │ ├── actux4.h │ │ │ │ ├── aev.h │ │ │ │ ├── afeb9260.h │ │ │ │ ├── alpr.h │ │ │ │ ├── am3517_evm.h │ │ │ │ ├── amcc-common.h │ │ │ │ ├── ap325rxa.h │ │ │ │ ├── apollon.h │ │ │ │ ├── aria.h │ │ │ │ ├── armadillo.h │ │ │ │ ├── assabet.h │ │ │ │ ├── astro_mcf5373l.h │ │ │ │ ├── at91cap9adk.h │ │ │ │ ├── at91rm9200dk.h │ │ │ │ ├── at91rm9200ek.h │ │ │ │ ├── at91sam9260ek.h │ │ │ │ ├── at91sam9261ek.h │ │ │ │ ├── at91sam9263ek.h │ │ │ │ ├── at91sam9m10g45ek.h │ │ │ │ ├── at91sam9rlek.h │ │ │ │ ├── atc.h │ │ │ │ ├── atngw100.h │ │ │ │ ├── atstk1002.h │ │ │ │ ├── atstk1003.h │ │ │ │ ├── atstk1004.h │ │ │ │ ├── atstk1006.h │ │ │ │ ├── bamboo.h │ │ │ │ ├── barco.h │ │ │ │ ├── bf518f-ezbrd.h │ │ │ │ ├── bf526-ezbrd.h │ │ │ │ ├── bf527-ezkit.h │ │ │ │ ├── bf533-ezkit.h │ │ │ │ ├── bf533-stamp.h │ │ │ │ ├── bf537-minotaur.h │ │ │ │ ├── bf537-pnav.h │ │ │ │ ├── bf537-srv1.h │ │ │ │ ├── bf537-stamp.h │ │ │ │ ├── bf538f-ezkit.h │ │ │ │ ├── bf548-ezkit.h │ │ │ │ ├── bf561-acvilon.h │ │ │ │ ├── bf561-ezkit.h │ │ │ │ ├── bfin_adi_common.h │ │ │ │ ├── blackstamp.h │ │ │ │ ├── bubinga.h │ │ │ │ ├── c2mon.h │ │ │ │ ├── canmb.h │ │ │ │ ├── canyonlands.h │ │ │ │ ├── cerf250.h │ │ │ │ ├── cm-bf527.h │ │ │ │ ├── cm-bf533.h │ │ │ │ ├── cm-bf537e.h │ │ │ │ ├── cm-bf537u.h │ │ │ │ ├── cm-bf548.h │ │ │ │ ├── cm-bf561.h │ │ │ │ ├── cm4008.h │ │ │ │ ├── cm41xx.h │ │ │ │ ├── cm5200.h │ │ │ │ ├── cmc_pu2.h │ │ │ │ ├── cmi_mpc5xx.h │ │ │ │ ├── cobra5272.h │ │ │ │ ├── cogent_common.h │ │ │ │ ├── cogent_mpc8260.h │ │ │ │ ├── cogent_mpc8xx.h │ │ │ │ ├── cpci5200.h │ │ │ │ ├── cpu9260.h │ │ │ │ ├── cpuat91.h │ │ │ │ ├── cradle.h │ │ │ │ ├── csb226.h │ │ │ │ ├── csb272.h │ │ │ │ ├── csb472.h │ │ │ │ ├── csb637.h │ │ │ │ ├── da830evm.h │ │ │ │ ├── da850evm.h │ │ │ │ ├── davinci_dm355evm.h │ │ │ │ ├── davinci_dm355leopard.h │ │ │ │ ├── davinci_dm365evm.h │ │ │ │ ├── davinci_dm6467evm.h │ │ │ │ ├── davinci_dvevm.h │ │ │ │ ├── davinci_schmoogie.h │ │ │ │ ├── davinci_sffsdr.h │ │ │ │ ├── davinci_sonata.h │ │ │ │ ├── dbau1x00.h │ │ │ │ ├── debris.h │ │ │ │ ├── delta.h │ │ │ │ ├── devkit8000.h │ │ │ │ ├── digsy_mtc.h │ │ │ │ ├── dlvision.h │ │ │ │ ├── dnp1110.h │ │ │ │ ├── eNET.h │ │ │ │ ├── eXalion.h │ │ │ │ ├── eb_cpux9k2.h │ │ │ │ ├── ebony.h │ │ │ │ ├── edb93xx.h │ │ │ │ ├── edminiv2.h │ │ │ │ ├── ep7312.h │ │ │ │ ├── ep8248.h │ │ │ │ ├── ep8260.h │ │ │ │ ├── ep82xxm.h │ │ │ │ ├── espt.h │ │ │ │ ├── evb4510.h │ │ │ │ ├── favr-32-ezkit.h │ │ │ │ ├── fx12mm.h │ │ │ │ ├── galaxy5200.h │ │ │ │ ├── gcplus.h │ │ │ │ ├── gdppc440etx.h │ │ │ │ ├── gr_cpci_ax2000.h │ │ │ │ ├── gr_ep2s60.h │ │ │ │ ├── gr_xc3s_1500.h │ │ │ │ ├── grsim.h │ │ │ │ ├── grsim_leon2.h │ │ │ │ ├── gth2.h │ │ │ │ ├── guruplug.h │ │ │ │ ├── gw8260.h │ │ │ │ ├── h2_p2_dbg_board.h │ │ │ │ ├── hammerhead.h │ │ │ │ ├── hcu4.h │ │ │ │ ├── hcu5.h │ │ │ │ ├── hermes.h │ │ │ │ ├── hmi1001.h │ │ │ │ ├── hymod.h │ │ │ │ ├── ibf-dsp561.h │ │ │ │ ├── icon.h │ │ │ │ ├── idmr.h │ │ │ │ ├── impa7.h │ │ │ │ ├── imx27lite-common.h │ │ │ │ ├── imx27lite.h │ │ │ │ ├── imx31_litekit.h │ │ │ │ ├── imx31_phycore.h │ │ │ │ ├── incaip.h │ │ │ │ ├── inka4x0.h │ │ │ │ ├── innokom.h │ │ │ │ ├── integratorap.h │ │ │ │ ├── integratorcp.h │ │ │ │ ├── intip.h │ │ │ │ ├── ip04.h │ │ │ │ ├── ipek01.h │ │ │ │ ├── ixdp425.h │ │ │ │ ├── ixdpg425.h │ │ │ │ ├── jupiter.h │ │ │ │ ├── katmai.h │ │ │ │ ├── kb9202.h │ │ │ │ ├── keymile-common.h │ │ │ │ ├── kilauea.h │ │ │ │ ├── km8xx.h │ │ │ │ ├── km_arm.h │ │ │ │ ├── kmeter1.h │ │ │ │ ├── kmsupx4.h │ │ │ │ ├── korat.h │ │ │ │ ├── kvme080.h │ │ │ │ ├── lart.h │ │ │ │ ├── linkstation.h │ │ │ │ ├── logodl.h │ │ │ │ ├── lpc2292sodimm.h │ │ │ │ ├── lpd7a400-10.h │ │ │ │ ├── lpd7a400.h │ │ │ │ ├── lpd7a404-10.h │ │ │ │ ├── lpd7a404.h │ │ │ │ ├── luan.h │ │ │ │ ├── lubbock.h │ │ │ │ ├── lwmon.h │ │ │ │ ├── lwmon5.h │ │ │ │ ├── m501sk.h │ │ │ │ ├── magnesium.h │ │ │ │ ├── makalu.h │ │ │ │ ├── manroland │ │ │ │ │ ├── common.h │ │ │ │ │ └── mpc5200-common.h │ │ │ │ ├── mcc200.h │ │ │ │ ├── mcu25.h │ │ │ │ ├── mecp5123.h │ │ │ │ ├── mecp5200.h │ │ │ │ ├── meesc.h │ │ │ │ ├── mgcoge.h │ │ │ │ ├── mgsuvd.h │ │ │ │ ├── microblaze-generic.h │ │ │ │ ├── mimc200.h │ │ │ │ ├── ml507.h │ │ │ │ ├── modnet50.h │ │ │ │ ├── motionpro.h │ │ │ │ ├── mp2usb.h │ │ │ │ ├── mpc5121-common.h │ │ │ │ ├── mpc5121ads.h │ │ │ │ ├── mpc7448hpc2.h │ │ │ │ ├── mpr2.h │ │ │ │ ├── ms7720se.h │ │ │ │ ├── ms7722se.h │ │ │ │ ├── ms7750se.h │ │ │ │ ├── muas3001.h │ │ │ │ ├── mucmc52.h │ │ │ │ ├── munices.h │ │ │ │ ├── mv88f6281gtw_ge.h │ │ │ │ ├── mx1ads.h │ │ │ │ ├── mx1fs2.h │ │ │ │ ├── mx31ads.h │ │ │ │ ├── mx31pdk.h │ │ │ │ ├── mx51evk.h │ │ │ │ ├── neo.h │ │ │ │ ├── netstal-common.h │ │ │ │ ├── netstar.h │ │ │ │ ├── nhk8815.h │ │ │ │ ├── nios2-generic.h │ │ │ │ ├── ns9750dev.h │ │ │ │ ├── o2dnt.h │ │ │ │ ├── ocotea.h │ │ │ │ ├── omap1510.h │ │ │ │ ├── omap1510inn.h │ │ │ │ ├── omap1610h2.h │ │ │ │ ├── omap1610inn.h │ │ │ │ ├── omap2420h4.h │ │ │ │ ├── omap3_beagle.h │ │ │ │ ├── omap3_evm.h │ │ │ │ ├── omap3_overo.h │ │ │ │ ├── omap3_pandora.h │ │ │ │ ├── omap3_sdp3430.h │ │ │ │ ├── omap3_zoom1.h │ │ │ │ ├── omap3_zoom2.h │ │ │ │ ├── omap5912osk.h │ │ │ │ ├── omap730.h │ │ │ │ ├── omap730p2.h │ │ │ │ ├── openrd_base.h │ │ │ │ ├── otc570.h │ │ │ │ ├── p3mx.h │ │ │ │ ├── p3p440.h │ │ │ │ ├── pb1x00.h │ │ │ │ ├── pcm030.h │ │ │ │ ├── pcs440ep.h │ │ │ │ ├── pcu_e.h │ │ │ │ ├── pdm360ng.h │ │ │ │ ├── pdnb3.h │ │ │ │ ├── pf5200.h │ │ │ │ ├── pleb2.h │ │ │ │ ├── pm9261.h │ │ │ │ ├── pm9263.h │ │ │ │ ├── pm9g45.h │ │ │ │ ├── ppmc7xx.h │ │ │ │ ├── ppmc8260.h │ │ │ │ ├── purple.h │ │ │ │ ├── pxa255_idp.h │ │ │ │ ├── qemu-mips.h │ │ │ │ ├── qong.h │ │ │ │ ├── quad100hd.h │ │ │ │ ├── quantum.h │ │ │ │ ├── r2dplus.h │ │ │ │ ├── r7780mp.h │ │ │ │ ├── rd6281a.h │ │ │ │ ├── redwood.h │ │ │ │ ├── rmu.h │ │ │ │ ├── rsdproto.h │ │ │ │ ├── rsk7203.h │ │ │ │ ├── s5p_goni.h │ │ │ │ ├── sacsng.h │ │ │ │ ├── sbc2410x.h │ │ │ │ ├── sbc35_a9g20.h │ │ │ │ ├── sbc405.h │ │ │ │ ├── sbc8240.h │ │ │ │ ├── sbc8260.h │ │ │ │ ├── sbc8349.h │ │ │ │ ├── sbc8548.h │ │ │ │ ├── sbc8560.h │ │ │ │ ├── sbc8641d.h │ │ │ │ ├── sc3.h │ │ │ │ ├── sc520_cdp.h │ │ │ │ ├── sc520_spunk.h │ │ │ │ ├── sc520_spunk_rel.h │ │ │ │ ├── scb9328.h │ │ │ │ ├── sequoia.h │ │ │ │ ├── sh7763rdp.h │ │ │ │ ├── sh7785lcr.h │ │ │ │ ├── shannon.h │ │ │ │ ├── sheevaplug.h │ │ │ │ ├── smdk2400.h │ │ │ │ ├── smdk2410.h │ │ │ │ ├── smdk6400.h │ │ │ │ ├── smdkc100.h │ │ │ │ ├── smmaco4.h │ │ │ │ ├── socrates.h │ │ │ │ ├── sorcery.h │ │ │ │ ├── spc1920.h │ │ │ │ ├── spear-common.h │ │ │ │ ├── spear3xx.h │ │ │ │ ├── spear6xx.h │ │ │ │ ├── spieval.h │ │ │ │ ├── stxgp3.h │ │ │ │ ├── stxssa.h │ │ │ │ ├── stxxtc.h │ │ │ │ ├── suen3.h │ │ │ │ ├── svm_sc8xx.h │ │ │ │ ├── taihu.h │ │ │ │ ├── taishan.h │ │ │ │ ├── tb0229.h │ │ │ │ ├── tcm-bf518.h │ │ │ │ ├── tcm-bf537.h │ │ │ │ ├── tnetv107x_evm.h │ │ │ │ ├── tny_a9260.h │ │ │ │ ├── trab.h │ │ │ │ ├── trizepsiv.h │ │ │ │ ├── tx25.h │ │ │ │ ├── uc100.h │ │ │ │ ├── uc101.h │ │ │ │ ├── utx8245.h │ │ │ │ ├── v37.h │ │ │ │ ├── v38b.h │ │ │ │ ├── v5fx30teval.h │ │ │ │ ├── vct.h │ │ │ │ ├── versatile.h │ │ │ │ ├── virtlab2.h │ │ │ │ ├── vme8349.h │ │ │ │ ├── voiceblue.h │ │ │ │ ├── walnut.h │ │ │ │ ├── wepep250.h │ │ │ │ ├── xaeniax.h │ │ │ │ ├── xilinx-ppc.h │ │ │ │ ├── xilinx-ppc405-generic.h │ │ │ │ ├── xilinx-ppc405.h │ │ │ │ ├── xilinx-ppc440-generic.h │ │ │ │ ├── xilinx-ppc440.h │ │ │ │ ├── xm250.h │ │ │ │ ├── xsengine.h │ │ │ │ ├── yosemite.h │ │ │ │ ├── yucca.h │ │ │ │ ├── zeus.h │ │ │ │ └── zylonite.h │ │ │ ├── cramfs │ │ │ │ ├── cramfs_fs.h │ │ │ │ └── cramfs_fs_sb.h │ │ │ ├── crc.h │ │ │ ├── da9030.h │ │ │ ├── dataflash.h │ │ │ ├── ddr_spd.h │ │ │ ├── div64.h │ │ │ ├── dm9000.h │ │ │ ├── dm9161.h │ │ │ ├── dp83848.h │ │ │ ├── ds1722.h │ │ │ ├── ds4510.h │ │ │ ├── dtt.h │ │ │ ├── e500.h │ │ │ ├── elf.h │ │ │ ├── environment.h │ │ │ ├── exports.h │ │ │ ├── ext2fs.h │ │ │ ├── fat.h │ │ │ ├── fdc.h │ │ │ ├── fdt.h │ │ │ ├── fdt_support.h │ │ │ ├── fis.h │ │ │ ├── flash.h │ │ │ ├── fpga.h │ │ │ ├── fsl_esdhc.h │ │ │ ├── fsl_nfc.h │ │ │ ├── fsl_pmic.h │ │ │ ├── galileo │ │ │ │ ├── core.h │ │ │ │ ├── gt64260R.h │ │ │ │ ├── memory.h │ │ │ │ └── pci.h │ │ │ ├── hush.h │ │ │ ├── hwconfig.h │ │ │ ├── i2c.h │ │ │ ├── i8042.h │ │ │ ├── ide.h │ │ │ ├── image.h │ │ │ ├── iomux.h │ │ │ ├── ioports.h │ │ │ ├── jffs2 │ │ │ │ ├── compr_rubin.h │ │ │ │ ├── jffs2.h │ │ │ │ ├── jffs2_1pass.h │ │ │ │ ├── load_kernel.h │ │ │ │ └── mini_inflate.h │ │ │ ├── keyboard.h │ │ │ ├── kgdb.h │ │ │ ├── ks8721.h │ │ │ ├── lcd.h │ │ │ ├── lcdvideo.h │ │ │ ├── lh7a400.h │ │ │ ├── lh7a404.h │ │ │ ├── lh7a40x.h │ │ │ ├── libata.h │ │ │ ├── libfdt.h │ │ │ ├── libfdt_env.h │ │ │ ├── linux │ │ │ │ ├── apm_bios.h │ │ │ │ ├── bitops.h │ │ │ │ ├── byteorder │ │ │ │ │ ├── big_endian.h │ │ │ │ │ ├── generic.h │ │ │ │ │ ├── little_endian.h │ │ │ │ │ └── swab.h │ │ │ │ ├── compiler-gcc.h │ │ │ │ ├── compiler-gcc4.h │ │ │ │ ├── compiler.h │ │ │ │ ├── config.h │ │ │ │ ├── crc32.h │ │ │ │ ├── ctype.h │ │ │ │ ├── edd.h │ │ │ │ ├── err.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ioport.h │ │ │ │ ├── list.h │ │ │ │ ├── lzo.h │ │ │ │ ├── math64.h │ │ │ │ ├── mc146818rtc.h │ │ │ │ ├── mii.h │ │ │ │ ├── mtd │ │ │ │ │ ├── bbm.h │ │ │ │ │ ├── blktrans.h │ │ │ │ │ ├── compat.h │ │ │ │ │ ├── concat.h │ │ │ │ │ ├── doc2000.h │ │ │ │ │ ├── fsl_upm.h │ │ │ │ │ ├── inftl-user.h │ │ │ │ │ ├── jffs2-user.h │ │ │ │ │ ├── mtd-abi.h │ │ │ │ │ ├── mtd.h │ │ │ │ │ ├── nand.h │ │ │ │ │ ├── nand_ecc.h │ │ │ │ │ ├── ndfc.h │ │ │ │ │ ├── nftl-user.h │ │ │ │ │ ├── nftl.h │ │ │ │ │ ├── onenand.h │ │ │ │ │ ├── onenand_regs.h │ │ │ │ │ ├── partitions.h │ │ │ │ │ ├── samsung_onenand.h │ │ │ │ │ └── ubi.h │ │ │ │ ├── poison.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── rbtree.h │ │ │ │ ├── screen_info.h │ │ │ │ ├── stat.h │ │ │ │ ├── stddef.h │ │ │ │ ├── string.h │ │ │ │ ├── time.h │ │ │ │ ├── types.h │ │ │ │ └── unaligned │ │ │ │ │ ├── access_ok.h │ │ │ │ │ ├── be_byteshift.h │ │ │ │ │ ├── generic.h │ │ │ │ │ └── le_byteshift.h │ │ │ ├── linux_logo.h │ │ │ ├── lmb.h │ │ │ ├── logbuff.h │ │ │ ├── lpd7a400_cpld.h │ │ │ ├── lxt971a.h │ │ │ ├── lynxkdi.h │ │ │ ├── lzma │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaTools.h │ │ │ │ └── LzmaTypes.h │ │ │ ├── malloc.h │ │ │ ├── mb862xx.h │ │ │ ├── mc13892.h │ │ │ ├── mg_disk.h │ │ │ ├── mii_phy.h │ │ │ ├── miiphy.h │ │ │ ├── mk48t59.h │ │ │ ├── mmc.h │ │ │ ├── mpc106.h │ │ │ ├── mpc5xx.h │ │ │ ├── mpc5xxx.h │ │ │ ├── mpc5xxx_sdma.h │ │ │ ├── mpc8220.h │ │ │ ├── mpc824x.h │ │ │ ├── mpc8260.h │ │ │ ├── mpc8260_irq.h │ │ │ ├── mpc83xx.h │ │ │ ├── mpc85xx.h │ │ │ ├── mpc86xx.h │ │ │ ├── mpc8xx.h │ │ │ ├── mpc8xx_irq.h │ │ │ ├── mtd │ │ │ │ ├── cfi_flash.h │ │ │ │ └── ubi-user.h │ │ │ ├── mtd_node.h │ │ │ ├── nand.h │ │ │ ├── net.h │ │ │ ├── netdev.h │ │ │ ├── nios2-epcs.h │ │ │ ├── nios2-io.h │ │ │ ├── nios2-yanu.h │ │ │ ├── nios2.h │ │ │ ├── nomadik.h │ │ │ ├── ns16550.h │ │ │ ├── ns7520_eth.h │ │ │ ├── ns87308.h │ │ │ ├── ns9750_bbus.h │ │ │ ├── ns9750_eth.h │ │ │ ├── ns9750_mem.h │ │ │ ├── ns9750_ser.h │ │ │ ├── ns9750_sys.h │ │ │ ├── onenand_uboot.h │ │ │ ├── part.h │ │ │ ├── pc_keyb.h │ │ │ ├── pca953x.h │ │ │ ├── pca9564.h │ │ │ ├── pci.h │ │ │ ├── pci_ids.h │ │ │ ├── pcmcia.h │ │ │ ├── pcmcia │ │ │ │ ├── cirrus.h │ │ │ │ ├── i82365.h │ │ │ │ ├── ss.h │ │ │ │ ├── ti113x.h │ │ │ │ └── yenta.h │ │ │ ├── post.h │ │ │ ├── ppc405.h │ │ │ ├── ppc440.h │ │ │ ├── ppc4xx.h │ │ │ ├── ppc4xx_enet.h │ │ │ ├── ppc_asm.tmpl │ │ │ ├── ppc_defs.h │ │ │ ├── ps2mult.h │ │ │ ├── radeon.h │ │ │ ├── reiserfs.h │ │ │ ├── rtc.h │ │ │ ├── s6e63d6.h │ │ │ ├── s_record.h │ │ │ ├── sata.h │ │ │ ├── scsi.h │ │ │ ├── sed13806.h │ │ │ ├── sed156x.h │ │ │ ├── serial.h │ │ │ ├── sha1.h │ │ │ ├── sha256.h │ │ │ ├── sja1000.h │ │ │ ├── sm501.h │ │ │ ├── smiLynxEM.h │ │ │ ├── spartan2.h │ │ │ ├── spartan3.h │ │ │ ├── spd.h │ │ │ ├── spd_sdram.h │ │ │ ├── spi.h │ │ │ ├── spi_flash.h │ │ │ ├── status_led.h │ │ │ ├── stdio_dev.h │ │ │ ├── stratixII.h │ │ │ ├── sym53c8xx.h │ │ │ ├── systemace.h │ │ │ ├── timestamp.h │ │ │ ├── tsec.h │ │ │ ├── tsi108.h │ │ │ ├── tsi148.h │ │ │ ├── twl4030.h │ │ │ ├── tws.h │ │ │ ├── u-boot │ │ │ │ ├── crc.h │ │ │ │ ├── md5.h │ │ │ │ ├── u-boot.lds.h │ │ │ │ └── zlib.h │ │ │ ├── ubi_uboot.h │ │ │ ├── universe.h │ │ │ ├── usb.h │ │ │ ├── usb │ │ │ │ ├── ehci-fsl.h │ │ │ │ ├── mpc8xx_udc.h │ │ │ │ ├── musb_udc.h │ │ │ │ ├── omap1510_udc.h │ │ │ │ ├── pxa27x_udc.h │ │ │ │ └── spr_udc.h │ │ │ ├── usb_cdc_acm.h │ │ │ ├── usb_defs.h │ │ │ ├── usbdescriptors.h │ │ │ ├── usbdevice.h │ │ │ ├── version.h │ │ │ ├── vfd_logo.h │ │ │ ├── video.h │ │ │ ├── video_ad7176.h │ │ │ ├── video_ad7177.h │ │ │ ├── video_ad7179.h │ │ │ ├── video_easylogo.h │ │ │ ├── video_fb.h │ │ │ ├── video_font.h │ │ │ ├── video_logo.h │ │ │ ├── virtex2.h │ │ │ ├── vsc7385.h │ │ │ ├── vxworks.h │ │ │ ├── w83c553f.h │ │ │ ├── watchdog.h │ │ │ ├── xilinx.h │ │ │ └── xyzModem.h │ │ ├── lib │ │ │ ├── Makefile │ │ │ ├── addr_map.c │ │ │ ├── bzlib.c │ │ │ ├── bzlib_crctable.c │ │ │ ├── bzlib_decompress.c │ │ │ ├── bzlib_huffman.c │ │ │ ├── bzlib_private.h │ │ │ ├── bzlib_randtable.c │ │ │ ├── circbuf.c │ │ │ ├── crc16.c │ │ │ ├── crc32.c │ │ │ ├── ctype.c │ │ │ ├── display_options.c │ │ │ ├── div64.c │ │ │ ├── gunzip.c │ │ │ ├── ldiv.c │ │ │ ├── libfdt │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── fdt.c │ │ │ │ ├── fdt_ro.c │ │ │ │ ├── fdt_rw.c │ │ │ │ ├── fdt_strerror.c │ │ │ │ ├── fdt_sw.c │ │ │ │ ├── fdt_wip.c │ │ │ │ └── libfdt_internal.h │ │ │ ├── lmb.c │ │ │ ├── lzma │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaTools.c │ │ │ │ ├── LzmaTools.h │ │ │ │ ├── Makefile │ │ │ │ ├── README.txt │ │ │ │ ├── Types.h │ │ │ │ ├── history.txt │ │ │ │ ├── import_lzmasdk.sh │ │ │ │ ├── license.txt │ │ │ │ └── lzma.txt │ │ │ ├── lzo │ │ │ │ ├── Makefile │ │ │ │ ├── lzo1x_decompress.c │ │ │ │ └── lzodefs.h │ │ │ ├── md5.c │ │ │ ├── net_utils.c │ │ │ ├── rbtree.c │ │ │ ├── sha1.c │ │ │ ├── sha256.c │ │ │ ├── string.c │ │ │ ├── strmhz.c │ │ │ ├── time.c │ │ │ ├── vsprintf.c │ │ │ └── zlib.c │ │ ├── mkconfig │ │ ├── nand_spl │ │ │ ├── board │ │ │ │ ├── amcc │ │ │ │ │ ├── acadia │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── bamboo │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── sdram.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── canyonlands │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── ddr2_fixed.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── kilauea │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ └── sequoia │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── freescale │ │ │ │ │ ├── mpc8313erdb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── mpc8315erdb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── mpc8536ds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── nand_boot.c │ │ │ │ │ ├── mpc8569mds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── nand_boot.c │ │ │ │ │ ├── mx31pdk │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ └── p1_p2_rdb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── nand_boot.c │ │ │ │ ├── karo │ │ │ │ │ └── tx25 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── samsung │ │ │ │ │ └── smdk6400 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── u-boot.lds │ │ │ │ └── sheldon │ │ │ │ │ └── simpc8313 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── u-boot.lds │ │ │ ├── nand_boot.c │ │ │ ├── nand_boot_fsl_elbc.c │ │ │ └── nand_boot_fsl_nfc.c │ │ ├── net │ │ │ ├── Makefile │ │ │ ├── bootp.c │ │ │ ├── bootp.h │ │ │ ├── dns.c │ │ │ ├── dns.h │ │ │ ├── eth.c │ │ │ ├── net.c │ │ │ ├── nfs.c │ │ │ ├── nfs.h │ │ │ ├── rarp.c │ │ │ ├── rarp.h │ │ │ ├── sntp.c │ │ │ ├── sntp.h │ │ │ ├── tftp.c │ │ │ └── tftp.h │ │ ├── onenand_ipl │ │ │ ├── board │ │ │ │ └── apollon │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── apollon.c │ │ │ │ │ ├── config.mk │ │ │ │ │ └── u-boot.onenand.lds │ │ │ ├── onenand_boot.c │ │ │ ├── onenand_ipl.h │ │ │ └── onenand_read.c │ │ ├── post │ │ │ ├── Makefile │ │ │ ├── board │ │ │ │ ├── lwmon │ │ │ │ │ ├── Makefile │ │ │ │ │ └── sysmon.c │ │ │ │ ├── lwmon5 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dsp.c │ │ │ │ │ ├── dspic.c │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── gdc.c │ │ │ │ │ ├── sysmon.c │ │ │ │ │ └── watchdog.c │ │ │ │ ├── netta │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── codec.c │ │ │ │ │ └── dsp.c │ │ │ │ └── pdm360ng │ │ │ │ │ ├── Makefile │ │ │ │ │ └── coproc_com.c │ │ │ ├── cpu │ │ │ │ ├── mpc83xx │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ecc.c │ │ │ │ ├── mpc8xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cache_8xx.S │ │ │ │ │ ├── ether.c │ │ │ │ │ ├── spr.c │ │ │ │ │ ├── uart.c │ │ │ │ │ ├── usb.c │ │ │ │ │ └── watchdog.c │ │ │ │ └── ppc4xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cache_4xx.S │ │ │ │ │ ├── denali_ecc.c │ │ │ │ │ ├── ether.c │ │ │ │ │ ├── fpu.c │ │ │ │ │ ├── ocm.c │ │ │ │ │ ├── spr.c │ │ │ │ │ ├── uart.c │ │ │ │ │ └── watchdog.c │ │ │ ├── drivers │ │ │ │ ├── Makefile │ │ │ │ ├── i2c.c │ │ │ │ ├── memory.c │ │ │ │ └── rtc.c │ │ │ ├── lib_powerpc │ │ │ │ ├── Makefile │ │ │ │ ├── andi.c │ │ │ │ ├── asm.S │ │ │ │ ├── b.c │ │ │ │ ├── cmp.c │ │ │ │ ├── cmpi.c │ │ │ │ ├── complex.c │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu_asm.h │ │ │ │ ├── cr.c │ │ │ │ ├── fpu │ │ │ │ │ ├── 20001122-1.c │ │ │ │ │ ├── 20010114-2.c │ │ │ │ │ ├── 20010226-1.c │ │ │ │ │ ├── 980619-1.c │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── acc1.c │ │ │ │ │ ├── compare-fp-1.c │ │ │ │ │ ├── fpu.c │ │ │ │ │ └── mul-subnormal-single-1.c │ │ │ │ ├── load.c │ │ │ │ ├── multi.c │ │ │ │ ├── rlwimi.c │ │ │ │ ├── rlwinm.c │ │ │ │ ├── rlwnm.c │ │ │ │ ├── srawi.c │ │ │ │ ├── store.c │ │ │ │ ├── string.c │ │ │ │ ├── three.c │ │ │ │ ├── threei.c │ │ │ │ ├── threex.c │ │ │ │ ├── two.c │ │ │ │ └── twox.c │ │ │ ├── post.c │ │ │ ├── rules.mk │ │ │ └── tests.c │ │ ├── rules.mk │ │ └── tools │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── bddb │ │ │ ├── README │ │ │ ├── badsubmit.php │ │ │ ├── bddb.css │ │ │ ├── brlog.php │ │ │ ├── browse.php │ │ │ ├── config.php │ │ │ ├── create_tables.sql │ │ │ ├── defs.php │ │ │ ├── dodelete.php │ │ │ ├── dodellog.php │ │ │ ├── doedit.php │ │ │ ├── doedlog.php │ │ │ ├── donew.php │ │ │ ├── donewlog.php │ │ │ ├── edit.php │ │ │ ├── edlog.php │ │ │ ├── execute.php │ │ │ ├── index.php │ │ │ ├── new.php │ │ │ └── newlog.php │ │ │ ├── bin2header.c │ │ │ ├── bmp_logo.c │ │ │ ├── default_image.c │ │ │ ├── easylogo │ │ │ ├── Makefile │ │ │ ├── easylogo.c │ │ │ ├── linux_blackfin.tga │ │ │ ├── linux_logo.tga │ │ │ └── runme.sh │ │ │ ├── env │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── fw_env.c │ │ │ ├── fw_env.config │ │ │ ├── fw_env.h │ │ │ └── fw_env_main.c │ │ │ ├── envcrc.c │ │ │ ├── fdt_host.h │ │ │ ├── fit_image.c │ │ │ ├── gdb │ │ │ ├── Makefile │ │ │ ├── error.c │ │ │ ├── error.h │ │ │ ├── gdbcont.c │ │ │ ├── gdbsend.c │ │ │ ├── remote.c │ │ │ ├── remote.h │ │ │ ├── serial.c │ │ │ └── serial.h │ │ │ ├── gen_eth_addr.c │ │ │ ├── getline.c │ │ │ ├── getline.h │ │ │ ├── img2brec.sh │ │ │ ├── img2srec.c │ │ │ ├── imls │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── imls.c │ │ │ ├── imximage.c │ │ │ ├── imximage.h │ │ │ ├── inca-swap-bytes.c │ │ │ ├── jtagconsole │ │ │ ├── kwbimage.c │ │ │ ├── kwbimage.h │ │ │ ├── logos │ │ │ ├── atmel.bmp │ │ │ ├── denx.bmp │ │ │ ├── esd.bmp │ │ │ ├── linux_logo_ttcontrol.bmp │ │ │ ├── linux_logo_ttcontrol_palfin.bmp │ │ │ └── ronetix.bmp │ │ │ ├── mingw_support.c │ │ │ ├── mingw_support.h │ │ │ ├── mkimage.c │ │ │ ├── mkimage.h │ │ │ ├── mpc86x_clk.c │ │ │ ├── multiplier │ │ │ ├── Makefile │ │ │ ├── ctype.c │ │ │ ├── dummy.c │ │ │ ├── junk │ │ │ ├── memio.h │ │ │ ├── ppcstring.S │ │ │ ├── short_types.h │ │ │ ├── string.c │ │ │ ├── update.c │ │ │ └── utils.c │ │ │ ├── ncb.c │ │ │ ├── netconsole │ │ │ ├── os_support.c │ │ │ ├── os_support.h │ │ │ ├── scripts │ │ │ ├── README │ │ │ ├── define2mk.sed │ │ │ ├── dot.kermrc │ │ │ ├── flash_param │ │ │ ├── send_cmd │ │ │ └── send_image │ │ │ ├── setlocalversion │ │ │ ├── ubsha1.c │ │ │ └── updater │ │ │ ├── Makefile │ │ │ ├── cmd_flash.c │ │ │ ├── ctype.c │ │ │ ├── dummy.c │ │ │ ├── flash.c │ │ │ ├── flash_hw.c │ │ │ ├── flash_local.h │ │ │ ├── junk │ │ │ ├── short_types.h │ │ │ ├── string.c │ │ │ ├── stubs.c │ │ │ ├── update.c │ │ │ └── utils.c │ ├── u-boot.tar.bz2 │ └── vgabios │ │ ├── .cvsignore │ │ ├── BUGS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile │ │ ├── Notes │ │ ├── README │ │ ├── TODO │ │ ├── biossums.c │ │ ├── clext.c │ │ ├── dataseghack │ │ ├── tests │ │ ├── lfbprof │ │ │ ├── Makefile │ │ │ ├── lfbprof.c │ │ │ └── lfbprof.h │ │ └── testbios.c │ │ ├── vbe.c │ │ ├── vbe.h │ │ ├── vbe_display_api.txt │ │ ├── vbetables-gen.c │ │ ├── vgabios.c │ │ ├── vgabios.h │ │ ├── vgafonts.h │ │ └── vgatables.h ├── rules.mak ├── scripts │ ├── analyse-9p-simpletrace.py │ ├── analyse-locks-simpletrace.py │ ├── analyze-inclusions │ ├── analyze-migration.py │ ├── archive-source.sh │ ├── argparse.py │ ├── check-qerror.sh │ ├── checkpatch.pl │ ├── clean-header-guards.pl │ ├── clean-includes │ ├── cleanup-trace-events.pl │ ├── cocci-macro-file.h │ ├── coccinelle │ │ ├── cpu_restore_state.cocci │ │ ├── err-bad-newline.cocci │ │ ├── error_propagate_null.cocci │ │ ├── memory-region-init-ram.cocci │ │ ├── overflow_muldiv64.cocci │ │ ├── qobject.cocci │ │ ├── remove_local_err.cocci │ │ ├── remove_muldiv64.cocci │ │ ├── return_directly.cocci │ │ ├── round.cocci │ │ ├── simplify_muldiv64.cocci │ │ ├── swap_muldiv64.cocci │ │ ├── tcg_gen_extract.cocci │ │ └── typecast.cocci │ ├── coverity-model.c │ ├── create_config │ ├── decodetree.py │ ├── device-crash-test │ ├── disas-objdump.pl │ ├── dump-guest-memory.py │ ├── extract-vsssdk-headers │ ├── feature_to_c.sh │ ├── get_maintainer.pl │ ├── git-submodule.sh │ ├── git.orderfile │ ├── gtester-cat │ ├── hxtool │ ├── kvm │ │ ├── kvm_flightrecorder │ │ └── vmxcap │ ├── make-release │ ├── make_device_config.sh │ ├── modules │ │ └── module_block.py │ ├── ordereddict.py │ ├── qapi-gen.py │ ├── qapi │ │ ├── __init__.py │ │ ├── commands.py │ │ ├── common.py │ │ ├── doc.py │ │ ├── events.py │ │ ├── introspect.py │ │ ├── types.py │ │ └── visit.py │ ├── qemu-binfmt-conf.sh │ ├── qemu-gdb.py │ ├── qemu-guest-agent │ │ ├── fsfreeze-hook │ │ └── fsfreeze-hook.d │ │ │ └── mysql-flush.sh.sample │ ├── qemu.py │ ├── qemugdb │ │ ├── __init__.py │ │ ├── aio.py │ │ ├── coroutine.py │ │ ├── mtree.py │ │ ├── tcg.py │ │ └── timers.py │ ├── qmp │ │ ├── __init__.py │ │ ├── qemu-ga-client │ │ ├── qmp │ │ ├── qmp-shell │ │ ├── qmp.py │ │ ├── qom-fuse │ │ ├── qom-get │ │ ├── qom-list │ │ ├── qom-set │ │ └── qom-tree │ ├── qtest.py │ ├── refresh-pxe-roms.sh │ ├── replay-dump.py │ ├── shaderinclude.pl │ ├── show-fixed-bugs.sh │ ├── signrom.py │ ├── simpletrace.py │ ├── switch-timer-api │ ├── texi2pod.pl │ ├── tracetool.py │ ├── tracetool │ │ ├── __init__.py │ │ ├── backend │ │ │ ├── __init__.py │ │ │ ├── dtrace.py │ │ │ ├── ftrace.py │ │ │ ├── log.py │ │ │ ├── simple.py │ │ │ ├── syslog.py │ │ │ └── ust.py │ │ ├── format │ │ │ ├── __init__.py │ │ │ ├── c.py │ │ │ ├── d.py │ │ │ ├── h.py │ │ │ ├── simpletrace_stap.py │ │ │ ├── stap.py │ │ │ ├── tcg_h.py │ │ │ ├── tcg_helper_c.py │ │ │ ├── tcg_helper_h.py │ │ │ ├── tcg_helper_wrapper_h.py │ │ │ ├── ust_events_c.py │ │ │ └── ust_events_h.py │ │ ├── transform.py │ │ └── vcpu.py │ ├── update-linux-headers.sh │ └── vmstate-static-checker.py ├── scsi │ ├── Makefile.objs │ ├── pr-helper.h │ ├── pr-manager-helper.c │ ├── pr-manager.c │ ├── qemu-pr-helper.c │ ├── trace-events │ └── utils.c ├── slirp │ ├── COPYRIGHT │ ├── Makefile.objs │ ├── arp_table.c │ ├── bootp.c │ ├── bootp.h │ ├── cksum.c │ ├── debug.h │ ├── dhcpv6.c │ ├── dhcpv6.h │ ├── dnssearch.c │ ├── if.c │ ├── if.h │ ├── ip.h │ ├── ip6.h │ ├── ip6_icmp.c │ ├── ip6_icmp.h │ ├── ip6_input.c │ ├── ip6_output.c │ ├── ip_icmp.c │ ├── ip_icmp.h │ ├── ip_input.c │ ├── ip_output.c │ ├── libslirp.h │ ├── main.h │ ├── mbuf.c │ ├── mbuf.h │ ├── misc.c │ ├── misc.h │ ├── ncsi-pkt.h │ ├── ncsi.c │ ├── ndp_table.c │ ├── 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 │ └── udp6.c ├── stubs │ ├── Makefile.objs │ ├── arch-query-cpu-def.c │ ├── arch-query-cpu-model-baseline.c │ ├── arch-query-cpu-model-comparison.c │ ├── arch-query-cpu-model-expansion.c │ ├── bdrv-next-monitor-owned.c │ ├── blk-commit-all.c │ ├── blockdev-close-all-bdrv-states.c │ ├── change-state-handler.c │ ├── clock-warp.c │ ├── cpu-get-clock.c │ ├── cpu-get-icount.c │ ├── dump.c │ ├── error-printf.c │ ├── fd-register.c │ ├── fdset.c │ ├── gdbstub.c │ ├── get-vm-name.c │ ├── iothread-lock.c │ ├── iothread.c │ ├── is-daemonized.c │ ├── linux-aio.c │ ├── machine-init-done.c │ ├── migr-blocker.c │ ├── monitor.c │ ├── notify-event.c │ ├── pc_madt_cpu_entry.c │ ├── pci-host-piix.c │ ├── qmp_pc_dimm.c │ ├── qtest.c │ ├── ram-block.c │ ├── replay.c │ ├── runstate-check.c │ ├── set-fd-handler.c │ ├── slirp.c │ ├── sysbus.c │ ├── target-get-monitor-def.c │ ├── target-monitor-defs.c │ ├── tpm.c │ ├── trace-control.c │ ├── uuid.c │ ├── vm-stop.c │ ├── vmgenid.c │ ├── vmstate.c │ ├── xen-common.c │ └── xen-hvm.c ├── 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 │ │ └── vax_helper.c │ ├── arm │ │ ├── Makefile.objs │ │ ├── arch_dump.c │ │ ├── arm-powerctl.c │ │ ├── arm-powerctl.h │ │ ├── arm-semi.c │ │ ├── arm_ldst.h │ │ ├── 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 │ │ ├── idau.h │ │ ├── internals.h │ │ ├── iwmmxt_helper.c │ │ ├── kvm-consts.h │ │ ├── kvm-stub.c │ │ ├── kvm.c │ │ ├── kvm32.c │ │ ├── kvm64.c │ │ ├── kvm_arm.h │ │ ├── machine.c │ │ ├── monitor.c │ │ ├── neon_helper.c │ │ ├── op_addsub.h │ │ ├── op_helper.c │ │ ├── psci.c │ │ ├── trace-events │ │ ├── translate-a64.c │ │ ├── translate.c │ │ ├── translate.h │ │ └── vec_helper.c │ ├── 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 │ ├── hppa │ │ ├── Makefile.objs │ │ ├── cpu-qom.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── gdbstub.c │ │ ├── helper.c │ │ ├── helper.h │ │ ├── int_helper.c │ │ ├── machine.c │ │ ├── mem_helper.c │ │ ├── op_helper.c │ │ └── translate.c │ ├── i386 │ │ ├── Makefile.objs │ │ ├── TODO │ │ ├── arch_dump.c │ │ ├── arch_memory_mapping.c │ │ ├── bpt_helper.c │ │ ├── cc_helper.c │ │ ├── cc_helper_template.h │ │ ├── cpu-qom.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── excp_helper.c │ │ ├── fpu_helper.c │ │ ├── gdbstub.c │ │ ├── hax-all.c │ │ ├── hax-darwin.c │ │ ├── hax-darwin.h │ │ ├── hax-i386.h │ │ ├── hax-interface.h │ │ ├── hax-mem.c │ │ ├── hax-windows.c │ │ ├── hax-windows.h │ │ ├── helper.c │ │ ├── helper.h │ │ ├── hvf │ │ │ ├── Makefile.objs │ │ │ ├── README.md │ │ │ ├── hvf-i386.h │ │ │ ├── hvf.c │ │ │ ├── panic.h │ │ │ ├── vmcs.h │ │ │ ├── vmx.h │ │ │ ├── x86.c │ │ │ ├── x86.h │ │ │ ├── x86_cpuid.c │ │ │ ├── x86_decode.c │ │ │ ├── x86_decode.h │ │ │ ├── x86_descr.c │ │ │ ├── x86_descr.h │ │ │ ├── x86_emu.c │ │ │ ├── x86_emu.h │ │ │ ├── x86_flags.c │ │ │ ├── x86_flags.h │ │ │ ├── x86_mmu.c │ │ │ ├── x86_mmu.h │ │ │ ├── x86_task.c │ │ │ ├── x86_task.h │ │ │ ├── x86hvf.c │ │ │ └── x86hvf.h │ │ ├── hyperv-proto.h │ │ ├── hyperv.c │ │ ├── hyperv.h │ │ ├── int_helper.c │ │ ├── kvm-stub.c │ │ ├── kvm.c │ │ ├── kvm_i386.h │ │ ├── machine.c │ │ ├── mem_helper.c │ │ ├── misc_helper.c │ │ ├── monitor.c │ │ ├── mpx_helper.c │ │ ├── ops_sse.h │ │ ├── ops_sse_header.h │ │ ├── seg_helper.c │ │ ├── sev-stub.c │ │ ├── sev.c │ │ ├── sev_i386.h │ │ ├── shift_helper_template.h │ │ ├── smm_helper.c │ │ ├── svm.h │ │ ├── svm_helper.c │ │ ├── trace-events │ │ ├── translate.c │ │ ├── whpx-all.c │ │ └── xsave_helper.c │ ├── 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 │ ├── m68k │ │ ├── Makefile.objs │ │ ├── cpu-qom.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── fpu_helper.c │ │ ├── gdbstub.c │ │ ├── helper.c │ │ ├── helper.h │ │ ├── m68k-semi.c │ │ ├── monitor.c │ │ ├── op_helper.c │ │ ├── qregs.def │ │ ├── softfloat.c │ │ ├── softfloat.h │ │ ├── softfloat_fpsp_tables.h │ │ └── translate.c │ ├── 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 │ ├── mips │ │ ├── Makefile.objs │ │ ├── TODO │ │ ├── cp0_timer.c │ │ ├── cpu-qom.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── dsp_helper.c │ │ ├── gdbstub.c │ │ ├── helper.c │ │ ├── helper.h │ │ ├── internal.h │ │ ├── kvm.c │ │ ├── kvm_mips.h │ │ ├── lmi_helper.c │ │ ├── machine.c │ │ ├── mips-defs.h │ │ ├── mips-semi.c │ │ ├── msa_helper.c │ │ ├── op_helper.c │ │ ├── trace-events │ │ ├── translate.c │ │ └── translate_init.c │ ├── moxie │ │ ├── Makefile.objs │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── helper.c │ │ ├── helper.h │ │ ├── machine.c │ │ ├── machine.h │ │ ├── mmu.c │ │ ├── mmu.h │ │ └── translate.c │ ├── nios2 │ │ ├── Makefile.objs │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── helper.c │ │ ├── helper.h │ │ ├── mmu.c │ │ ├── mmu.h │ │ ├── monitor.c │ │ ├── op_helper.c │ │ └── translate.c │ ├── openrisc │ │ ├── Makefile.objs │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── exception.c │ │ ├── exception.h │ │ ├── exception_helper.c │ │ ├── fpu_helper.c │ │ ├── gdbstub.c │ │ ├── helper.h │ │ ├── interrupt.c │ │ ├── interrupt_helper.c │ │ ├── machine.c │ │ ├── mmu.c │ │ ├── mmu_helper.c │ │ ├── sys_helper.c │ │ └── translate.c │ ├── ppc │ │ ├── Makefile.objs │ │ ├── arch_dump.c │ │ ├── compat.c │ │ ├── cpu-models.c │ │ ├── cpu-models.h │ │ ├── cpu-qom.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── dfp_helper.c │ │ ├── excp_helper.c │ │ ├── fpu_helper.c │ │ ├── gdbstub.c │ │ ├── helper.h │ │ ├── helper_regs.h │ │ ├── int_helper.c │ │ ├── internal.h │ │ ├── kvm-stub.c │ │ ├── kvm.c │ │ ├── kvm_ppc.h │ │ ├── machine.c │ │ ├── mem_helper.c │ │ ├── mfrom_table.c │ │ ├── mfrom_table_gen.c │ │ ├── misc_helper.c │ │ ├── mmu-book3s-v3.c │ │ ├── mmu-book3s-v3.h │ │ ├── mmu-hash32.c │ │ ├── mmu-hash32.h │ │ ├── mmu-hash64.c │ │ ├── mmu-hash64.h │ │ ├── mmu-radix64.c │ │ ├── mmu-radix64.h │ │ ├── mmu_helper.c │ │ ├── monitor.c │ │ ├── timebase_helper.c │ │ ├── trace-events │ │ ├── translate.c │ │ ├── translate │ │ │ ├── dfp-impl.inc.c │ │ │ ├── dfp-ops.inc.c │ │ │ ├── fp-impl.inc.c │ │ │ ├── fp-ops.inc.c │ │ │ ├── spe-impl.inc.c │ │ │ ├── spe-ops.inc.c │ │ │ ├── vmx-impl.inc.c │ │ │ ├── vmx-ops.inc.c │ │ │ ├── vsx-impl.inc.c │ │ │ └── vsx-ops.inc.c │ │ ├── translate_init.c │ │ └── user_only_helper.c │ ├── riscv │ │ ├── Makefile.objs │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── cpu_bits.h │ │ ├── cpu_user.h │ │ ├── fpu_helper.c │ │ ├── gdbstub.c │ │ ├── helper.c │ │ ├── helper.h │ │ ├── instmap.h │ │ ├── op_helper.c │ │ ├── pmp.c │ │ ├── pmp.h │ │ └── translate.c │ ├── s390x │ │ ├── Makefile.objs │ │ ├── arch_dump.c │ │ ├── cc_helper.c │ │ ├── cpu-qom.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── cpu_features.c │ │ ├── cpu_features.h │ │ ├── cpu_features_def.h │ │ ├── cpu_models.c │ │ ├── cpu_models.h │ │ ├── crypto_helper.c │ │ ├── diag.c │ │ ├── excp_helper.c │ │ ├── fpu_helper.c │ │ ├── gdbstub.c │ │ ├── gen-features.c │ │ ├── helper.c │ │ ├── helper.h │ │ ├── insn-data.def │ │ ├── insn-format.def │ │ ├── int_helper.c │ │ ├── internal.h │ │ ├── interrupt.c │ │ ├── ioinst.c │ │ ├── kvm-stub.c │ │ ├── kvm.c │ │ ├── kvm_s390x.h │ │ ├── machine.c │ │ ├── mem_helper.c │ │ ├── misc_helper.c │ │ ├── mmu_helper.c │ │ ├── sigp.c │ │ ├── trace-events │ │ └── translate.c │ ├── sh4 │ │ ├── Makefile.objs │ │ ├── README.sh4 │ │ ├── cpu-qom.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── gdbstub.c │ │ ├── helper.c │ │ ├── helper.h │ │ ├── monitor.c │ │ ├── op_helper.c │ │ └── translate.c │ ├── sparc │ │ ├── Makefile.objs │ │ ├── TODO │ │ ├── asi.h │ │ ├── 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 │ │ ├── monitor.c │ │ ├── trace-events │ │ ├── translate.c │ │ ├── vis_helper.c │ │ └── win_helper.c │ ├── tilegx │ │ ├── Makefile.objs │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── helper.c │ │ ├── helper.h │ │ ├── opcode_tilegx.h │ │ ├── simd_helper.c │ │ ├── spr_def_64.h │ │ └── translate.c │ ├── tricore │ │ ├── Makefile.objs │ │ ├── cpu-qom.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── csfr.def │ │ ├── fpu_helper.c │ │ ├── helper.c │ │ ├── helper.h │ │ ├── op_helper.c │ │ ├── translate.c │ │ ├── tricore-defs.h │ │ └── tricore-opcodes.h │ ├── unicore32 │ │ ├── Makefile.objs │ │ ├── cpu-qom.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── helper.c │ │ ├── helper.h │ │ ├── op_helper.c │ │ ├── softmmu.c │ │ ├── translate.c │ │ └── ucf64_helper.c │ └── xtensa │ │ ├── Makefile.objs │ │ ├── core-dc232b.c │ │ ├── core-dc232b │ │ ├── core-isa.h │ │ ├── gdb-config.inc.c │ │ └── xtensa-modules.inc.c │ │ ├── core-dc233c.c │ │ ├── core-dc233c │ │ ├── core-isa.h │ │ ├── gdb-config.inc.c │ │ └── xtensa-modules.inc.c │ │ ├── core-de212.c │ │ ├── core-de212 │ │ ├── core-isa.h │ │ ├── gdb-config.inc.c │ │ └── xtensa-modules.inc.c │ │ ├── core-fsf.c │ │ ├── core-fsf │ │ ├── core-isa.h │ │ └── xtensa-modules.inc.c │ │ ├── core-sample_controller.c │ │ ├── core-sample_controller │ │ ├── core-isa.h │ │ ├── gdb-config.inc.c │ │ └── xtensa-modules.inc.c │ │ ├── cpu-qom.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── gdbstub.c │ │ ├── helper.c │ │ ├── helper.h │ │ ├── import_core.sh │ │ ├── monitor.c │ │ ├── op_helper.c │ │ ├── overlay_tool.h │ │ ├── translate.c │ │ ├── xtensa-isa-internal.h │ │ ├── xtensa-isa.c │ │ ├── xtensa-isa.h │ │ └── xtensa-semi.c ├── tcg │ ├── LICENSE │ ├── README │ ├── TODO │ ├── aarch64 │ │ ├── tcg-target.h │ │ ├── tcg-target.inc.c │ │ └── tcg-target.opc.h │ ├── arm │ │ ├── tcg-target.h │ │ └── tcg-target.inc.c │ ├── i386 │ │ ├── tcg-target.h │ │ ├── tcg-target.inc.c │ │ └── tcg-target.opc.h │ ├── mips │ │ ├── tcg-target.h │ │ └── tcg-target.inc.c │ ├── optimize.c │ ├── ppc │ │ ├── tcg-target.h │ │ └── tcg-target.inc.c │ ├── s390 │ │ ├── tcg-target.h │ │ └── tcg-target.inc.c │ ├── sparc │ │ ├── tcg-target.h │ │ └── tcg-target.inc.c │ ├── tcg-common.c │ ├── tcg-gvec-desc.h │ ├── tcg-ldst.inc.c │ ├── tcg-mo.h │ ├── tcg-op-gvec.c │ ├── tcg-op-gvec.h │ ├── tcg-op-vec.c │ ├── tcg-op.c │ ├── tcg-op.h │ ├── tcg-opc.h │ ├── tcg-pool.inc.c │ ├── tcg.c │ ├── tcg.h │ ├── tci.c │ └── tci │ │ ├── README │ │ ├── tcg-target.h │ │ └── tcg-target.inc.c ├── tests │ ├── .gitignore │ ├── Makefile.include │ ├── ac97-test.c │ ├── acpi-test-data │ │ ├── pc │ │ │ ├── APIC │ │ │ ├── APIC.cphp │ │ │ ├── APIC.dimmpxm │ │ │ ├── DSDT │ │ │ ├── DSDT.bridge │ │ │ ├── DSDT.cphp │ │ │ ├── DSDT.dimmpxm │ │ │ ├── DSDT.ipmikcs │ │ │ ├── DSDT.memhp │ │ │ ├── DSDT.numamem │ │ │ ├── FACP │ │ │ ├── FACS │ │ │ ├── HPET │ │ │ ├── NFIT.dimmpxm │ │ │ ├── SLIT.cphp │ │ │ ├── SLIT.memhp │ │ │ ├── SRAT.cphp │ │ │ ├── SRAT.dimmpxm │ │ │ ├── SRAT.memhp │ │ │ ├── SRAT.numamem │ │ │ └── SSDT.dimmpxm │ │ ├── q35 │ │ │ ├── APIC │ │ │ ├── APIC.cphp │ │ │ ├── APIC.dimmpxm │ │ │ ├── DSDT │ │ │ ├── DSDT.bridge │ │ │ ├── DSDT.cphp │ │ │ ├── DSDT.dimmpxm │ │ │ ├── DSDT.ipmibt │ │ │ ├── DSDT.memhp │ │ │ ├── DSDT.numamem │ │ │ ├── FACP │ │ │ ├── FACS │ │ │ ├── HPET │ │ │ ├── MCFG │ │ │ ├── NFIT.dimmpxm │ │ │ ├── SLIT.cphp │ │ │ ├── SLIT.memhp │ │ │ ├── SRAT.cphp │ │ │ ├── SRAT.dimmpxm │ │ │ ├── SRAT.memhp │ │ │ ├── SRAT.numamem │ │ │ └── SSDT.dimmpxm │ │ └── rebuild-expected-aml.sh │ ├── acpi-utils.c │ ├── acpi-utils.h │ ├── ahci-test.c │ ├── atomic_add-bench.c │ ├── benchmark-crypto-cipher.c │ ├── benchmark-crypto-hash.c │ ├── benchmark-crypto-hmac.c │ ├── bios-tables-test.c │ ├── boot-order-test.c │ ├── boot-sector.c │ ├── boot-sector.h │ ├── boot-serial-test.c │ ├── check-block.sh │ ├── check-qdict.c │ ├── check-qjson.c │ ├── check-qlist.c │ ├── check-qlit.c │ ├── check-qnull.c │ ├── check-qnum.c │ ├── check-qobject.c │ ├── check-qom-interface.c │ ├── check-qom-proplist.c │ ├── check-qstring.c │ ├── cpu-plug-test.c │ ├── crypto-tls-x509-helpers.c │ ├── crypto-tls-x509-helpers.h │ ├── data │ │ ├── test-qga-config │ │ └── test-qga-os-release │ ├── decode │ │ ├── check.sh │ │ ├── err_argset1.decode │ │ ├── err_argset2.decode │ │ ├── err_field1.decode │ │ ├── err_field2.decode │ │ ├── err_field3.decode │ │ ├── err_field4.decode │ │ ├── err_field5.decode │ │ ├── err_init1.decode │ │ ├── err_init2.decode │ │ ├── err_init3.decode │ │ ├── err_init4.decode │ │ ├── err_overlap1.decode │ │ ├── err_overlap2.decode │ │ ├── err_overlap3.decode │ │ ├── err_overlap4.decode │ │ ├── err_overlap5.decode │ │ ├── err_overlap6.decode │ │ ├── err_overlap7.decode │ │ ├── err_overlap8.decode │ │ └── err_overlap9.decode │ ├── device-introspect-test.c │ ├── display-vga-test.c │ ├── docker │ │ ├── Makefile.include │ │ ├── common.rc │ │ ├── docker.py │ │ ├── dockerfiles │ │ │ ├── centos6.docker │ │ │ ├── centos7.docker │ │ │ ├── debian-amd64.docker │ │ │ ├── debian-apt-fake.sh │ │ │ ├── debian-arm64-cross.docker │ │ │ ├── debian-armel-cross.docker │ │ │ ├── debian-armhf-cross.docker │ │ │ ├── debian-bootstrap.docker │ │ │ ├── debian-bootstrap.pre │ │ │ ├── debian-mips-cross.docker │ │ │ ├── debian-mips64el-cross.docker │ │ │ ├── debian-mipsel-cross.docker │ │ │ ├── debian-ports.docker │ │ │ ├── debian-powerpc-cross.docker │ │ │ ├── debian-ppc64el-cross.docker │ │ │ ├── debian-s390x-cross.docker │ │ │ ├── debian-win32-cross.docker │ │ │ ├── debian-win64-cross.docker │ │ │ ├── debian.docker │ │ │ ├── debian8-mxe.docker │ │ │ ├── debian8.docker │ │ │ ├── debian9.docker │ │ │ ├── fedora.docker │ │ │ ├── min-glib.docker │ │ │ ├── travis.docker │ │ │ └── ubuntu.docker │ │ ├── run │ │ ├── test-block │ │ ├── test-build │ │ ├── test-clang │ │ ├── test-debug │ │ ├── test-full │ │ ├── test-mingw │ │ ├── test-quick │ │ ├── travis │ │ └── travis.py │ ├── drive_del-test.c │ ├── ds1338-test.c │ ├── e1000-test.c │ ├── e1000e-test.c │ ├── eepro100-test.c │ ├── endianness-test.c │ ├── es1370-test.c │ ├── fdc-test.c │ ├── fw_cfg-test.c │ ├── guest-debug │ │ └── test-gdbstub.py │ ├── hd-geo-test.c │ ├── i440fx-test.c │ ├── i82801b11-test.c │ ├── ide-test.c │ ├── image-fuzzer │ │ ├── qcow2 │ │ │ ├── __init__.py │ │ │ ├── fuzz.py │ │ │ └── layout.py │ │ └── runner.py │ ├── intel-hda-test.c │ ├── io-channel-helpers.c │ ├── io-channel-helpers.h │ ├── ioh3420-test.c │ ├── iothread.c │ ├── iothread.h │ ├── ipmi-bt-test.c │ ├── ipmi-kcs-test.c │ ├── ipoctal232-test.c │ ├── ivshmem-test.c │ ├── keys │ │ ├── README │ │ ├── id_rsa │ │ └── id_rsa.pub │ ├── libqos │ │ ├── ahci.c │ │ ├── ahci.h │ │ ├── fw_cfg.c │ │ ├── fw_cfg.h │ │ ├── i2c-imx.c │ │ ├── i2c-omap.c │ │ ├── i2c.c │ │ ├── i2c.h │ │ ├── libqos-pc.c │ │ ├── libqos-pc.h │ │ ├── libqos-spapr.c │ │ ├── libqos-spapr.h │ │ ├── libqos.c │ │ ├── libqos.h │ │ ├── malloc-generic.c │ │ ├── malloc-generic.h │ │ ├── malloc-pc.c │ │ ├── malloc-pc.h │ │ ├── malloc-spapr.c │ │ ├── malloc-spapr.h │ │ ├── malloc.c │ │ ├── malloc.h │ │ ├── pci-pc.c │ │ ├── pci-pc.h │ │ ├── pci-spapr.c │ │ ├── pci-spapr.h │ │ ├── pci.c │ │ ├── pci.h │ │ ├── rtas.c │ │ ├── rtas.h │ │ ├── usb.c │ │ ├── usb.h │ │ ├── virtio-mmio.c │ │ ├── virtio-mmio.h │ │ ├── virtio-pci.c │ │ ├── virtio-pci.h │ │ ├── virtio.c │ │ └── virtio.h │ ├── libqtest.c │ ├── libqtest.h │ ├── m25p80-test.c │ ├── m48t59-test.c │ ├── machine-none-test.c │ ├── megasas-test.c │ ├── migration-test.c │ ├── migration │ │ ├── .gitignore │ │ ├── guestperf-batch.py │ │ ├── guestperf-plot.py │ │ ├── guestperf.py │ │ ├── guestperf │ │ │ ├── __init__.py │ │ │ ├── comparison.py │ │ │ ├── engine.py │ │ │ ├── hardware.py │ │ │ ├── plot.py │ │ │ ├── progress.py │ │ │ ├── report.py │ │ │ ├── scenario.py │ │ │ ├── shell.py │ │ │ └── timings.py │ │ ├── rebuild-x86-bootblock.sh │ │ ├── stress.c │ │ ├── x86-a-b-bootblock.h │ │ └── x86-a-b-bootblock.s │ ├── multiboot │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── aout_kludge.S │ │ ├── aout_kludge.out │ │ ├── libc.c │ │ ├── libc.h │ │ ├── link.ld │ │ ├── mmap.c │ │ ├── mmap.out │ │ ├── module.txt │ │ ├── modules.c │ │ ├── modules.out │ │ ├── multiboot.h │ │ ├── run_test.sh │ │ └── start.S │ ├── ne2000-test.c │ ├── numa-test.c │ ├── nvme-test.c │ ├── pcnet-test.c │ ├── pkix_asn1_tab.c │ ├── pnv-xscom-test.c │ ├── prom-env-test.c │ ├── ptimer-test-stubs.c │ ├── ptimer-test.c │ ├── ptimer-test.h │ ├── pvpanic-test.c │ ├── pxe-test.c │ ├── q35-test.c │ ├── qapi-schema │ │ ├── alternate-any.err │ │ ├── alternate-any.exit │ │ ├── alternate-any.json │ │ ├── alternate-any.out │ │ ├── alternate-array.err │ │ ├── alternate-array.exit │ │ ├── alternate-array.json │ │ ├── alternate-array.out │ │ ├── alternate-base.err │ │ ├── alternate-base.exit │ │ ├── alternate-base.json │ │ ├── alternate-base.out │ │ ├── alternate-clash.err │ │ ├── alternate-clash.exit │ │ ├── alternate-clash.json │ │ ├── alternate-clash.out │ │ ├── alternate-conflict-bool-string.err │ │ ├── alternate-conflict-bool-string.exit │ │ ├── alternate-conflict-bool-string.json │ │ ├── alternate-conflict-bool-string.out │ │ ├── alternate-conflict-dict.err │ │ ├── alternate-conflict-dict.exit │ │ ├── alternate-conflict-dict.json │ │ ├── alternate-conflict-dict.out │ │ ├── alternate-conflict-enum-bool.err │ │ ├── alternate-conflict-enum-bool.exit │ │ ├── alternate-conflict-enum-bool.json │ │ ├── alternate-conflict-enum-bool.out │ │ ├── alternate-conflict-enum-int.err │ │ ├── alternate-conflict-enum-int.exit │ │ ├── alternate-conflict-enum-int.json │ │ ├── alternate-conflict-enum-int.out │ │ ├── alternate-conflict-num-string.err │ │ ├── alternate-conflict-num-string.exit │ │ ├── alternate-conflict-num-string.json │ │ ├── alternate-conflict-num-string.out │ │ ├── alternate-conflict-string.err │ │ ├── alternate-conflict-string.exit │ │ ├── alternate-conflict-string.json │ │ ├── alternate-conflict-string.out │ │ ├── alternate-empty.err │ │ ├── alternate-empty.exit │ │ ├── alternate-empty.json │ │ ├── alternate-empty.out │ │ ├── alternate-nested.err │ │ ├── alternate-nested.exit │ │ ├── alternate-nested.json │ │ ├── alternate-nested.out │ │ ├── alternate-unknown.err │ │ ├── alternate-unknown.exit │ │ ├── alternate-unknown.json │ │ ├── alternate-unknown.out │ │ ├── args-alternate.err │ │ ├── args-alternate.exit │ │ ├── args-alternate.json │ │ ├── args-alternate.out │ │ ├── args-any.err │ │ ├── args-any.exit │ │ ├── args-any.json │ │ ├── args-any.out │ │ ├── args-array-empty.err │ │ ├── args-array-empty.exit │ │ ├── args-array-empty.json │ │ ├── args-array-empty.out │ │ ├── args-array-unknown.err │ │ ├── args-array-unknown.exit │ │ ├── args-array-unknown.json │ │ ├── args-array-unknown.out │ │ ├── args-bad-boxed.err │ │ ├── args-bad-boxed.exit │ │ ├── args-bad-boxed.json │ │ ├── args-bad-boxed.out │ │ ├── args-boxed-anon.err │ │ ├── args-boxed-anon.exit │ │ ├── args-boxed-anon.json │ │ ├── args-boxed-anon.out │ │ ├── args-boxed-empty.err │ │ ├── args-boxed-empty.exit │ │ ├── args-boxed-empty.json │ │ ├── args-boxed-empty.out │ │ ├── args-boxed-string.err │ │ ├── args-boxed-string.exit │ │ ├── args-boxed-string.json │ │ ├── args-boxed-string.out │ │ ├── args-int.err │ │ ├── args-int.exit │ │ ├── args-int.json │ │ ├── args-int.out │ │ ├── args-invalid.err │ │ ├── args-invalid.exit │ │ ├── args-invalid.json │ │ ├── args-invalid.out │ │ ├── args-member-array-bad.err │ │ ├── args-member-array-bad.exit │ │ ├── args-member-array-bad.json │ │ ├── args-member-array-bad.out │ │ ├── args-member-case.err │ │ ├── args-member-case.exit │ │ ├── args-member-case.json │ │ ├── args-member-case.out │ │ ├── args-member-unknown.err │ │ ├── args-member-unknown.exit │ │ ├── args-member-unknown.json │ │ ├── args-member-unknown.out │ │ ├── args-name-clash.err │ │ ├── args-name-clash.exit │ │ ├── args-name-clash.json │ │ ├── args-name-clash.out │ │ ├── args-union.err │ │ ├── args-union.exit │ │ ├── args-union.json │ │ ├── args-union.out │ │ ├── args-unknown.err │ │ ├── args-unknown.exit │ │ ├── args-unknown.json │ │ ├── args-unknown.out │ │ ├── bad-base.err │ │ ├── bad-base.exit │ │ ├── bad-base.json │ │ ├── bad-base.out │ │ ├── bad-data.err │ │ ├── bad-data.exit │ │ ├── bad-data.json │ │ ├── bad-data.out │ │ ├── bad-ident.err │ │ ├── bad-ident.exit │ │ ├── bad-ident.json │ │ ├── bad-ident.out │ │ ├── bad-type-bool.err │ │ ├── bad-type-bool.exit │ │ ├── bad-type-bool.json │ │ ├── bad-type-bool.out │ │ ├── bad-type-dict.err │ │ ├── bad-type-dict.exit │ │ ├── bad-type-dict.json │ │ ├── bad-type-dict.out │ │ ├── bad-type-int.err │ │ ├── bad-type-int.exit │ │ ├── bad-type-int.json │ │ ├── bad-type-int.out │ │ ├── base-cycle-direct.err │ │ ├── base-cycle-direct.exit │ │ ├── base-cycle-direct.json │ │ ├── base-cycle-direct.out │ │ ├── base-cycle-indirect.err │ │ ├── base-cycle-indirect.exit │ │ ├── base-cycle-indirect.json │ │ ├── base-cycle-indirect.out │ │ ├── command-int.err │ │ ├── command-int.exit │ │ ├── command-int.json │ │ ├── command-int.out │ │ ├── comments.err │ │ ├── comments.exit │ │ ├── comments.json │ │ ├── comments.out │ │ ├── doc-bad-alternate-member.err │ │ ├── doc-bad-alternate-member.exit │ │ ├── doc-bad-alternate-member.json │ │ ├── doc-bad-alternate-member.out │ │ ├── doc-bad-command-arg.err │ │ ├── doc-bad-command-arg.exit │ │ ├── doc-bad-command-arg.json │ │ ├── doc-bad-command-arg.out │ │ ├── doc-bad-section.err │ │ ├── doc-bad-section.exit │ │ ├── doc-bad-section.json │ │ ├── doc-bad-section.out │ │ ├── doc-bad-symbol.err │ │ ├── doc-bad-symbol.exit │ │ ├── doc-bad-symbol.json │ │ ├── doc-bad-symbol.out │ │ ├── doc-bad-union-member.err │ │ ├── doc-bad-union-member.exit │ │ ├── doc-bad-union-member.json │ │ ├── doc-bad-union-member.out │ │ ├── doc-before-include.err │ │ ├── doc-before-include.exit │ │ ├── doc-before-include.json │ │ ├── doc-before-include.out │ │ ├── doc-before-pragma.err │ │ ├── doc-before-pragma.exit │ │ ├── doc-before-pragma.json │ │ ├── doc-before-pragma.out │ │ ├── doc-duplicated-arg.err │ │ ├── doc-duplicated-arg.exit │ │ ├── doc-duplicated-arg.json │ │ ├── doc-duplicated-arg.out │ │ ├── doc-duplicated-return.err │ │ ├── doc-duplicated-return.exit │ │ ├── doc-duplicated-return.json │ │ ├── doc-duplicated-return.out │ │ ├── doc-duplicated-since.err │ │ ├── doc-duplicated-since.exit │ │ ├── doc-duplicated-since.json │ │ ├── doc-duplicated-since.out │ │ ├── doc-empty-arg.err │ │ ├── doc-empty-arg.exit │ │ ├── doc-empty-arg.json │ │ ├── doc-empty-arg.out │ │ ├── doc-empty-section.err │ │ ├── doc-empty-section.exit │ │ ├── doc-empty-section.json │ │ ├── doc-empty-section.out │ │ ├── doc-empty-symbol.err │ │ ├── doc-empty-symbol.exit │ │ ├── doc-empty-symbol.json │ │ ├── doc-empty-symbol.out │ │ ├── doc-good.err │ │ ├── doc-good.exit │ │ ├── doc-good.json │ │ ├── doc-good.out │ │ ├── doc-good.texi │ │ ├── doc-interleaved-section.err │ │ ├── doc-interleaved-section.exit │ │ ├── doc-interleaved-section.json │ │ ├── doc-interleaved-section.out │ │ ├── doc-invalid-end.err │ │ ├── doc-invalid-end.exit │ │ ├── doc-invalid-end.json │ │ ├── doc-invalid-end.out │ │ ├── doc-invalid-end2.err │ │ ├── doc-invalid-end2.exit │ │ ├── doc-invalid-end2.json │ │ ├── doc-invalid-end2.out │ │ ├── doc-invalid-return.err │ │ ├── doc-invalid-return.exit │ │ ├── doc-invalid-return.json │ │ ├── doc-invalid-return.out │ │ ├── doc-invalid-section.err │ │ ├── doc-invalid-section.exit │ │ ├── doc-invalid-section.json │ │ ├── doc-invalid-section.out │ │ ├── doc-invalid-start.err │ │ ├── doc-invalid-start.exit │ │ ├── doc-invalid-start.json │ │ ├── doc-invalid-start.out │ │ ├── doc-missing-colon.err │ │ ├── doc-missing-colon.exit │ │ ├── doc-missing-colon.json │ │ ├── doc-missing-colon.out │ │ ├── doc-missing-expr.err │ │ ├── doc-missing-expr.exit │ │ ├── doc-missing-expr.json │ │ ├── doc-missing-expr.out │ │ ├── doc-missing-space.err │ │ ├── doc-missing-space.exit │ │ ├── doc-missing-space.json │ │ ├── doc-missing-space.out │ │ ├── doc-missing.err │ │ ├── doc-missing.exit │ │ ├── doc-missing.json │ │ ├── doc-missing.out │ │ ├── doc-no-symbol.err │ │ ├── doc-no-symbol.exit │ │ ├── doc-no-symbol.json │ │ ├── doc-no-symbol.out │ │ ├── double-data.err │ │ ├── double-data.exit │ │ ├── double-data.json │ │ ├── double-data.out │ │ ├── double-type.err │ │ ├── double-type.exit │ │ ├── double-type.json │ │ ├── double-type.out │ │ ├── duplicate-key.err │ │ ├── duplicate-key.exit │ │ ├── duplicate-key.json │ │ ├── duplicate-key.out │ │ ├── empty.err │ │ ├── empty.exit │ │ ├── empty.json │ │ ├── empty.out │ │ ├── enum-bad-name.err │ │ ├── enum-bad-name.exit │ │ ├── enum-bad-name.json │ │ ├── enum-bad-name.out │ │ ├── enum-bad-prefix.err │ │ ├── enum-bad-prefix.exit │ │ ├── enum-bad-prefix.json │ │ ├── enum-bad-prefix.out │ │ ├── enum-clash-member.err │ │ ├── enum-clash-member.exit │ │ ├── enum-clash-member.json │ │ ├── enum-clash-member.out │ │ ├── enum-dict-member.err │ │ ├── enum-dict-member.exit │ │ ├── enum-dict-member.json │ │ ├── enum-dict-member.out │ │ ├── enum-int-member.err │ │ ├── enum-int-member.exit │ │ ├── enum-int-member.json │ │ ├── enum-int-member.out │ │ ├── enum-member-case.err │ │ ├── enum-member-case.exit │ │ ├── enum-member-case.json │ │ ├── enum-member-case.out │ │ ├── enum-missing-data.err │ │ ├── enum-missing-data.exit │ │ ├── enum-missing-data.json │ │ ├── enum-missing-data.out │ │ ├── enum-wrong-data.err │ │ ├── enum-wrong-data.exit │ │ ├── enum-wrong-data.json │ │ ├── enum-wrong-data.out │ │ ├── escape-outside-string.err │ │ ├── escape-outside-string.exit │ │ ├── escape-outside-string.json │ │ ├── escape-outside-string.out │ │ ├── escape-too-big.err │ │ ├── escape-too-big.exit │ │ ├── escape-too-big.json │ │ ├── escape-too-big.out │ │ ├── escape-too-short.err │ │ ├── escape-too-short.exit │ │ ├── escape-too-short.json │ │ ├── escape-too-short.out │ │ ├── event-boxed-empty.err │ │ ├── event-boxed-empty.exit │ │ ├── event-boxed-empty.json │ │ ├── event-boxed-empty.out │ │ ├── event-case.err │ │ ├── event-case.exit │ │ ├── event-case.json │ │ ├── event-case.out │ │ ├── event-nest-struct.err │ │ ├── event-nest-struct.exit │ │ ├── event-nest-struct.json │ │ ├── event-nest-struct.out │ │ ├── flat-union-array-branch.err │ │ ├── flat-union-array-branch.exit │ │ ├── flat-union-array-branch.json │ │ ├── flat-union-array-branch.out │ │ ├── flat-union-bad-base.err │ │ ├── flat-union-bad-base.exit │ │ ├── flat-union-bad-base.json │ │ ├── flat-union-bad-base.out │ │ ├── flat-union-bad-discriminator.err │ │ ├── flat-union-bad-discriminator.exit │ │ ├── flat-union-bad-discriminator.json │ │ ├── flat-union-bad-discriminator.out │ │ ├── flat-union-base-any.err │ │ ├── flat-union-base-any.exit │ │ ├── flat-union-base-any.json │ │ ├── flat-union-base-any.out │ │ ├── flat-union-base-union.err │ │ ├── flat-union-base-union.exit │ │ ├── flat-union-base-union.json │ │ ├── flat-union-base-union.out │ │ ├── flat-union-clash-member.err │ │ ├── flat-union-clash-member.exit │ │ ├── flat-union-clash-member.json │ │ ├── flat-union-clash-member.out │ │ ├── flat-union-empty.err │ │ ├── flat-union-empty.exit │ │ ├── flat-union-empty.json │ │ ├── flat-union-empty.out │ │ ├── flat-union-incomplete-branch.err │ │ ├── flat-union-incomplete-branch.exit │ │ ├── flat-union-incomplete-branch.json │ │ ├── flat-union-incomplete-branch.out │ │ ├── flat-union-inline.err │ │ ├── flat-union-inline.exit │ │ ├── flat-union-inline.json │ │ ├── flat-union-inline.out │ │ ├── flat-union-int-branch.err │ │ ├── flat-union-int-branch.exit │ │ ├── flat-union-int-branch.json │ │ ├── flat-union-int-branch.out │ │ ├── flat-union-invalid-branch-key.err │ │ ├── flat-union-invalid-branch-key.exit │ │ ├── flat-union-invalid-branch-key.json │ │ ├── flat-union-invalid-branch-key.out │ │ ├── flat-union-invalid-discriminator.err │ │ ├── flat-union-invalid-discriminator.exit │ │ ├── flat-union-invalid-discriminator.json │ │ ├── flat-union-invalid-discriminator.out │ │ ├── flat-union-no-base.err │ │ ├── flat-union-no-base.exit │ │ ├── flat-union-no-base.json │ │ ├── flat-union-no-base.out │ │ ├── flat-union-optional-discriminator.err │ │ ├── flat-union-optional-discriminator.exit │ │ ├── flat-union-optional-discriminator.json │ │ ├── flat-union-optional-discriminator.out │ │ ├── flat-union-string-discriminator.err │ │ ├── flat-union-string-discriminator.exit │ │ ├── flat-union-string-discriminator.json │ │ ├── flat-union-string-discriminator.out │ │ ├── funny-char.err │ │ ├── funny-char.exit │ │ ├── funny-char.json │ │ ├── funny-char.out │ │ ├── ident-with-escape.err │ │ ├── ident-with-escape.exit │ │ ├── ident-with-escape.json │ │ ├── ident-with-escape.out │ │ ├── include-before-err.err │ │ ├── include-before-err.exit │ │ ├── include-before-err.json │ │ ├── include-before-err.out │ │ ├── include-cycle-b.json │ │ ├── include-cycle-c.json │ │ ├── include-cycle.err │ │ ├── include-cycle.exit │ │ ├── include-cycle.json │ │ ├── include-cycle.out │ │ ├── include-extra-junk.err │ │ ├── include-extra-junk.exit │ │ ├── include-extra-junk.json │ │ ├── include-extra-junk.out │ │ ├── include-format-err.err │ │ ├── include-format-err.exit │ │ ├── include-format-err.json │ │ ├── include-format-err.out │ │ ├── include-nested-err.err │ │ ├── include-nested-err.exit │ │ ├── include-nested-err.json │ │ ├── include-nested-err.out │ │ ├── include-no-file.err │ │ ├── include-no-file.exit │ │ ├── include-no-file.json │ │ ├── include-no-file.out │ │ ├── include-non-file.err │ │ ├── include-non-file.exit │ │ ├── include-non-file.json │ │ ├── include-non-file.out │ │ ├── include-relpath-sub.json │ │ ├── include-relpath.err │ │ ├── include-relpath.exit │ │ ├── include-relpath.json │ │ ├── include-relpath.out │ │ ├── include-repetition-sub.json │ │ ├── include-repetition.err │ │ ├── include-repetition.exit │ │ ├── include-repetition.json │ │ ├── include-repetition.out │ │ ├── include-self-cycle.err │ │ ├── include-self-cycle.exit │ │ ├── include-self-cycle.json │ │ ├── include-self-cycle.out │ │ ├── include-simple-sub.json │ │ ├── include-simple.err │ │ ├── include-simple.exit │ │ ├── include-simple.json │ │ ├── include-simple.out │ │ ├── include │ │ │ └── relpath.json │ │ ├── indented-expr.err │ │ ├── indented-expr.exit │ │ ├── indented-expr.json │ │ ├── indented-expr.out │ │ ├── leading-comma-list.err │ │ ├── leading-comma-list.exit │ │ ├── leading-comma-list.json │ │ ├── leading-comma-list.out │ │ ├── leading-comma-object.err │ │ ├── leading-comma-object.exit │ │ ├── leading-comma-object.json │ │ ├── leading-comma-object.out │ │ ├── missing-colon.err │ │ ├── missing-colon.exit │ │ ├── missing-colon.json │ │ ├── missing-colon.out │ │ ├── missing-comma-list.err │ │ ├── missing-comma-list.exit │ │ ├── missing-comma-list.json │ │ ├── missing-comma-list.out │ │ ├── missing-comma-object.err │ │ ├── missing-comma-object.exit │ │ ├── missing-comma-object.json │ │ ├── missing-comma-object.out │ │ ├── missing-type.err │ │ ├── missing-type.exit │ │ ├── missing-type.json │ │ ├── missing-type.out │ │ ├── nested-struct-data.err │ │ ├── nested-struct-data.exit │ │ ├── nested-struct-data.json │ │ ├── nested-struct-data.out │ │ ├── non-objects.err │ │ ├── non-objects.exit │ │ ├── non-objects.json │ │ ├── non-objects.out │ │ ├── oob-test.err │ │ ├── oob-test.exit │ │ ├── oob-test.json │ │ ├── oob-test.out │ │ ├── pragma-doc-required-crap.err │ │ ├── pragma-doc-required-crap.exit │ │ ├── pragma-doc-required-crap.json │ │ ├── pragma-doc-required-crap.out │ │ ├── pragma-extra-junk.err │ │ ├── pragma-extra-junk.exit │ │ ├── pragma-extra-junk.json │ │ ├── pragma-extra-junk.out │ │ ├── pragma-name-case-whitelist-crap.err │ │ ├── pragma-name-case-whitelist-crap.exit │ │ ├── pragma-name-case-whitelist-crap.json │ │ ├── pragma-name-case-whitelist-crap.out │ │ ├── pragma-non-dict.err │ │ ├── pragma-non-dict.exit │ │ ├── pragma-non-dict.json │ │ ├── pragma-non-dict.out │ │ ├── pragma-returns-whitelist-crap.err │ │ ├── pragma-returns-whitelist-crap.exit │ │ ├── pragma-returns-whitelist-crap.json │ │ ├── pragma-returns-whitelist-crap.out │ │ ├── qapi-schema-test.err │ │ ├── qapi-schema-test.exit │ │ ├── qapi-schema-test.json │ │ ├── qapi-schema-test.out │ │ ├── quoted-structural-chars.err │ │ ├── quoted-structural-chars.exit │ │ ├── quoted-structural-chars.json │ │ ├── quoted-structural-chars.out │ │ ├── redefined-builtin.err │ │ ├── redefined-builtin.exit │ │ ├── redefined-builtin.json │ │ ├── redefined-builtin.out │ │ ├── redefined-command.err │ │ ├── redefined-command.exit │ │ ├── redefined-command.json │ │ ├── redefined-command.out │ │ ├── redefined-event.err │ │ ├── redefined-event.exit │ │ ├── redefined-event.json │ │ ├── redefined-event.out │ │ ├── redefined-type.err │ │ ├── redefined-type.exit │ │ ├── redefined-type.json │ │ ├── redefined-type.out │ │ ├── reserved-command-q.err │ │ ├── reserved-command-q.exit │ │ ├── reserved-command-q.json │ │ ├── reserved-command-q.out │ │ ├── reserved-enum-q.err │ │ ├── reserved-enum-q.exit │ │ ├── reserved-enum-q.json │ │ ├── reserved-enum-q.out │ │ ├── reserved-member-has.err │ │ ├── reserved-member-has.exit │ │ ├── reserved-member-has.json │ │ ├── reserved-member-has.out │ │ ├── reserved-member-q.err │ │ ├── reserved-member-q.exit │ │ ├── reserved-member-q.json │ │ ├── reserved-member-q.out │ │ ├── reserved-member-u.err │ │ ├── reserved-member-u.exit │ │ ├── reserved-member-u.json │ │ ├── reserved-member-u.out │ │ ├── reserved-member-underscore.err │ │ ├── reserved-member-underscore.exit │ │ ├── reserved-member-underscore.json │ │ ├── reserved-member-underscore.out │ │ ├── reserved-type-kind.err │ │ ├── reserved-type-kind.exit │ │ ├── reserved-type-kind.json │ │ ├── reserved-type-kind.out │ │ ├── reserved-type-list.err │ │ ├── reserved-type-list.exit │ │ ├── reserved-type-list.json │ │ ├── reserved-type-list.out │ │ ├── returns-alternate.err │ │ ├── returns-alternate.exit │ │ ├── returns-alternate.json │ │ ├── returns-alternate.out │ │ ├── returns-array-bad.err │ │ ├── returns-array-bad.exit │ │ ├── returns-array-bad.json │ │ ├── returns-array-bad.out │ │ ├── returns-dict.err │ │ ├── returns-dict.exit │ │ ├── returns-dict.json │ │ ├── returns-dict.out │ │ ├── returns-unknown.err │ │ ├── returns-unknown.exit │ │ ├── returns-unknown.json │ │ ├── returns-unknown.out │ │ ├── returns-whitelist.err │ │ ├── returns-whitelist.exit │ │ ├── returns-whitelist.json │ │ ├── returns-whitelist.out │ │ ├── struct-base-clash-deep.err │ │ ├── struct-base-clash-deep.exit │ │ ├── struct-base-clash-deep.json │ │ ├── struct-base-clash-deep.out │ │ ├── struct-base-clash.err │ │ ├── struct-base-clash.exit │ │ ├── struct-base-clash.json │ │ ├── struct-base-clash.out │ │ ├── struct-data-invalid.err │ │ ├── struct-data-invalid.exit │ │ ├── struct-data-invalid.json │ │ ├── struct-data-invalid.out │ │ ├── struct-member-invalid.err │ │ ├── struct-member-invalid.exit │ │ ├── struct-member-invalid.json │ │ ├── struct-member-invalid.out │ │ ├── test-qapi.py │ │ ├── trailing-comma-list.err │ │ ├── trailing-comma-list.exit │ │ ├── trailing-comma-list.json │ │ ├── trailing-comma-list.out │ │ ├── trailing-comma-object.err │ │ ├── trailing-comma-object.exit │ │ ├── trailing-comma-object.json │ │ ├── trailing-comma-object.out │ │ ├── type-bypass-bad-gen.err │ │ ├── type-bypass-bad-gen.exit │ │ ├── type-bypass-bad-gen.json │ │ ├── type-bypass-bad-gen.out │ │ ├── unclosed-list.err │ │ ├── unclosed-list.exit │ │ ├── unclosed-list.json │ │ ├── unclosed-list.out │ │ ├── unclosed-object.err │ │ ├── unclosed-object.exit │ │ ├── unclosed-object.json │ │ ├── unclosed-object.out │ │ ├── unclosed-string.err │ │ ├── unclosed-string.exit │ │ ├── unclosed-string.json │ │ ├── unclosed-string.out │ │ ├── unicode-str.err │ │ ├── unicode-str.exit │ │ ├── unicode-str.json │ │ ├── unicode-str.out │ │ ├── union-base-empty.err │ │ ├── union-base-empty.exit │ │ ├── union-base-empty.json │ │ ├── union-base-empty.out │ │ ├── union-base-no-discriminator.err │ │ ├── union-base-no-discriminator.exit │ │ ├── union-base-no-discriminator.json │ │ ├── union-base-no-discriminator.out │ │ ├── union-branch-case.err │ │ ├── union-branch-case.exit │ │ ├── union-branch-case.json │ │ ├── union-branch-case.out │ │ ├── union-clash-branches.err │ │ ├── union-clash-branches.exit │ │ ├── union-clash-branches.json │ │ ├── union-clash-branches.out │ │ ├── union-empty.err │ │ ├── union-empty.exit │ │ ├── union-empty.json │ │ ├── union-empty.out │ │ ├── union-invalid-base.err │ │ ├── union-invalid-base.exit │ │ ├── union-invalid-base.json │ │ ├── union-invalid-base.out │ │ ├── union-optional-branch.err │ │ ├── union-optional-branch.exit │ │ ├── union-optional-branch.json │ │ ├── union-optional-branch.out │ │ ├── union-unknown.err │ │ ├── union-unknown.exit │ │ ├── union-unknown.json │ │ ├── union-unknown.out │ │ ├── unknown-escape.err │ │ ├── unknown-escape.exit │ │ ├── unknown-escape.json │ │ ├── unknown-escape.out │ │ ├── unknown-expr-key.err │ │ ├── unknown-expr-key.exit │ │ ├── unknown-expr-key.json │ │ └── unknown-expr-key.out │ ├── qemu-iotests-quick.sh │ ├── qemu-iotests │ │ ├── 101 │ │ ├── 102 │ │ ├── 103 │ │ ├── 104 │ │ ├── 105 │ │ ├── 106 │ │ ├── 107 │ │ ├── 108 │ │ ├── 109 │ │ ├── 110 │ │ ├── 111 │ │ ├── 112 │ │ ├── 113 │ │ ├── 114 │ │ ├── 115 │ │ ├── 116 │ │ ├── 117 │ │ ├── 118 │ │ ├── 119 │ │ ├── 120 │ │ ├── 121 │ │ ├── 122 │ │ ├── 123 │ │ ├── 124 │ │ ├── 125 │ │ ├── 126 │ │ ├── 127 │ │ ├── 128 │ │ ├── 129 │ │ ├── 130 │ │ ├── 131 │ │ ├── 132 │ │ ├── 133 │ │ ├── 134 │ │ ├── 135 │ │ ├── 136 │ │ ├── 137 │ │ ├── 138 │ │ ├── 139 │ │ ├── 140 │ │ ├── 141 │ │ ├── 142 │ │ ├── 143 │ │ ├── 144 │ │ ├── 145 │ │ ├── 146 │ │ ├── 147 │ │ ├── 148 │ │ ├── 149 │ │ ├── 150 │ │ ├── 152 │ │ ├── 153 │ │ ├── 154 │ │ ├── 155 │ │ ├── 156 │ │ ├── 157 │ │ ├── 158 │ │ ├── 159 │ │ ├── 160 │ │ ├── 162 │ │ ├── 163 │ │ ├── 165 │ │ ├── 169 │ │ ├── 170 │ │ ├── 171 │ │ ├── 172 │ │ ├── 173 │ │ ├── 174 │ │ ├── 175 │ │ ├── 176 │ │ ├── 177 │ │ ├── 178 │ │ ├── 179 │ │ ├── 181 │ │ ├── 182 │ │ ├── 183 │ │ ├── 184 │ │ ├── 185 │ │ ├── 186 │ │ ├── 187 │ │ ├── 188 │ │ ├── 189 │ │ ├── 190 │ │ ├── 191 │ │ ├── 192 │ │ ├── 194 │ │ ├── 195 │ │ ├── 196 │ │ ├── 197 │ │ ├── 198 │ │ ├── 199 │ │ ├── 200 │ │ ├── 201 │ │ ├── 202 │ │ ├── 203 │ │ ├── 204 │ │ ├── 205 │ │ ├── 206 │ │ ├── 207 │ │ ├── 208 │ │ ├── 209 │ │ ├── 210 │ │ ├── 211 │ │ ├── 212 │ │ ├── 213 │ │ ├── 218 │ │ ├── 221 │ │ ├── .gitignore │ │ ├── 001 │ │ ├── 001.out │ │ ├── 002 │ │ ├── 002.out │ │ ├── 003 │ │ ├── 003.out │ │ ├── 004 │ │ ├── 004.out │ │ ├── 005 │ │ ├── 005.out │ │ ├── 007 │ │ ├── 007.out │ │ ├── 008 │ │ ├── 008.out │ │ ├── 009 │ │ ├── 009.out │ │ ├── 010 │ │ ├── 010.out │ │ ├── 011 │ │ ├── 011.out │ │ ├── 012 │ │ ├── 012.out │ │ ├── 013 │ │ ├── 013.out │ │ ├── 014 │ │ ├── 014.out │ │ ├── 015 │ │ ├── 015.out │ │ ├── 017 │ │ ├── 017.out │ │ ├── 018 │ │ ├── 018.out │ │ ├── 019 │ │ ├── 019.out │ │ ├── 020 │ │ ├── 020.out │ │ ├── 021 │ │ ├── 021.out │ │ ├── 022 │ │ ├── 022.out │ │ ├── 023 │ │ ├── 023.out │ │ ├── 024 │ │ ├── 024.out │ │ ├── 025 │ │ ├── 025.out │ │ ├── 026 │ │ ├── 026.out │ │ ├── 026.out.nocache │ │ ├── 027 │ │ ├── 027.out │ │ ├── 028 │ │ ├── 028.out │ │ ├── 029 │ │ ├── 029.out │ │ ├── 030 │ │ ├── 030.out │ │ ├── 031 │ │ ├── 031.out │ │ ├── 032 │ │ ├── 032.out │ │ ├── 033 │ │ ├── 033.out │ │ ├── 034 │ │ ├── 034.out │ │ ├── 035 │ │ ├── 035.out │ │ ├── 036 │ │ ├── 036.out │ │ ├── 037 │ │ ├── 037.out │ │ ├── 038 │ │ ├── 038.out │ │ ├── 039 │ │ ├── 039.out │ │ ├── 040 │ │ ├── 040.out │ │ ├── 041 │ │ ├── 041.out │ │ ├── 042 │ │ ├── 042.out │ │ ├── 043 │ │ ├── 043.out │ │ ├── 044 │ │ ├── 044.out │ │ ├── 045 │ │ ├── 045.out │ │ ├── 046 │ │ ├── 046.out │ │ ├── 047 │ │ ├── 047.out │ │ ├── 048 │ │ ├── 048.out │ │ ├── 049 │ │ ├── 049.out │ │ ├── 050 │ │ ├── 050.out │ │ ├── 051 │ │ ├── 051.out │ │ ├── 051.pc.out │ │ ├── 052 │ │ ├── 052.out │ │ ├── 053 │ │ ├── 053.out │ │ ├── 054 │ │ ├── 054.out │ │ ├── 055 │ │ ├── 055.out │ │ ├── 056 │ │ ├── 056.out │ │ ├── 057 │ │ ├── 057.out │ │ ├── 058 │ │ ├── 058.out │ │ ├── 059 │ │ ├── 059.out │ │ ├── 060 │ │ ├── 060.out │ │ ├── 061 │ │ ├── 061.out │ │ ├── 062 │ │ ├── 062.out │ │ ├── 063 │ │ ├── 063.out │ │ ├── 064 │ │ ├── 064.out │ │ ├── 065 │ │ ├── 065.out │ │ ├── 066 │ │ ├── 066.out │ │ ├── 067 │ │ ├── 067.out │ │ ├── 068 │ │ ├── 068.out │ │ ├── 069 │ │ ├── 069.out │ │ ├── 070 │ │ ├── 070.out │ │ ├── 071 │ │ ├── 071.out │ │ ├── 072 │ │ ├── 072.out │ │ ├── 073 │ │ ├── 073.out │ │ ├── 074 │ │ ├── 074.out │ │ ├── 075 │ │ ├── 075.out │ │ ├── 076 │ │ ├── 076.out │ │ ├── 077 │ │ ├── 077.out │ │ ├── 078 │ │ ├── 078.out │ │ ├── 079 │ │ ├── 079.out │ │ ├── 080 │ │ ├── 080.out │ │ ├── 081 │ │ ├── 081.out │ │ ├── 082 │ │ ├── 082.out │ │ ├── 083 │ │ ├── 083.out │ │ ├── 084 │ │ ├── 084.out │ │ ├── 085 │ │ ├── 085.out │ │ ├── 086 │ │ ├── 086.out │ │ ├── 087 │ │ ├── 087.out │ │ ├── 088 │ │ ├── 088.out │ │ ├── 089 │ │ ├── 089.out │ │ ├── 090 │ │ ├── 090.out │ │ ├── 091 │ │ ├── 091.out │ │ ├── 092 │ │ ├── 092.out │ │ ├── 093 │ │ ├── 093.out │ │ ├── 094 │ │ ├── 094.out │ │ ├── 095 │ │ ├── 095.out │ │ ├── 096 │ │ ├── 096.out │ │ ├── 097 │ │ ├── 097.out │ │ ├── 098 │ │ ├── 098.out │ │ ├── 099 │ │ ├── 099.out │ │ ├── 101.out │ │ ├── 102.out │ │ ├── 103.out │ │ ├── 104.out │ │ ├── 105.out │ │ ├── 106.out │ │ ├── 107.out │ │ ├── 108.out │ │ ├── 109.out │ │ ├── 110.out │ │ ├── 111.out │ │ ├── 112.out │ │ ├── 113.out │ │ ├── 114.out │ │ ├── 115.out │ │ ├── 116.out │ │ ├── 117.out │ │ ├── 118.out │ │ ├── 119.out │ │ ├── 120.out │ │ ├── 121.out │ │ ├── 122.out │ │ ├── 123.out │ │ ├── 124.out │ │ ├── 125.out │ │ ├── 126.out │ │ ├── 127.out │ │ ├── 128.out │ │ ├── 129.out │ │ ├── 130.out │ │ ├── 131.out │ │ ├── 132.out │ │ ├── 133.out │ │ ├── 134.out │ │ ├── 135.out │ │ ├── 136.out │ │ ├── 137.out │ │ ├── 138.out │ │ ├── 139.out │ │ ├── 140.out │ │ ├── 141.out │ │ ├── 142.out │ │ ├── 143.out │ │ ├── 144.out │ │ ├── 145.out │ │ ├── 146.out │ │ ├── 147.out │ │ ├── 148.out │ │ ├── 149.out │ │ ├── 150.out │ │ ├── 152.out │ │ ├── 153.out │ │ ├── 154.out │ │ ├── 155.out │ │ ├── 156.out │ │ ├── 157.out │ │ ├── 158.out │ │ ├── 159.out │ │ ├── 160.out │ │ ├── 162.out │ │ ├── 163.out │ │ ├── 165.out │ │ ├── 169.out │ │ ├── 170.out │ │ ├── 171.out │ │ ├── 172.out │ │ ├── 173.out │ │ ├── 174.out │ │ ├── 175.out │ │ ├── 176.out │ │ ├── 177.out │ │ ├── 178.out.qcow2 │ │ ├── 178.out.raw │ │ ├── 179.out │ │ ├── 181.out │ │ ├── 182.out │ │ ├── 183.out │ │ ├── 184.out │ │ ├── 185.out │ │ ├── 186.out │ │ ├── 187.out │ │ ├── 188.out │ │ ├── 189.out │ │ ├── 190.out │ │ ├── 191.out │ │ ├── 192.out │ │ ├── 194.out │ │ ├── 195.out │ │ ├── 196.out │ │ ├── 197.out │ │ ├── 198.out │ │ ├── 199.out │ │ ├── 200.out │ │ ├── 201.out │ │ ├── 202.out │ │ ├── 203.out │ │ ├── 204.out │ │ ├── 205.out │ │ ├── 206.out │ │ ├── 207.out │ │ ├── 208.out │ │ ├── 209.out │ │ ├── 210.out │ │ ├── 211.out │ │ ├── 212.out │ │ ├── 213.out │ │ ├── 218.out │ │ ├── 221.out │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README │ │ ├── check │ │ ├── common.config │ │ ├── common.filter │ │ ├── common.pattern │ │ ├── common.qemu │ │ ├── common.rc │ │ ├── group │ │ ├── iotests.py │ │ ├── nbd-fault-injector.py │ │ ├── qcow2.py │ │ ├── qed.py │ │ ├── sample_images │ │ │ ├── README │ │ │ ├── afl5.img.bz2 │ │ │ ├── afl9.vmdk.bz2 │ │ │ ├── d2v-zerofilled.vhd.bz2 │ │ │ ├── empty.bochs.bz2 │ │ │ ├── grub_mbr.raw.bz2 │ │ │ ├── hyperv2012r2-dynamic.vhd.bz2 │ │ │ ├── iotest-dirtylog-10G-4M.vhdx.bz2 │ │ │ ├── iotest-dynamic-1G.vhdx.bz2 │ │ │ ├── iotest-version3.vmdk.bz2 │ │ │ ├── parallels-v1.bz2 │ │ │ ├── parallels-v2.bz2 │ │ │ ├── simple-pattern.cloop.bz2 │ │ │ ├── test-disk2vhd.vhdx.bz2 │ │ │ └── virtualpc-dynamic.vhd.bz2 │ │ └── socket_scm_helper.c │ ├── qht-bench.c │ ├── qmp-test.c │ ├── qom-test.c │ ├── rcutorture.c │ ├── rocker │ │ ├── README │ │ ├── all │ │ ├── bridge │ │ ├── bridge-stp │ │ ├── bridge-vlan │ │ ├── bridge-vlan-stp │ │ ├── port │ │ └── tut.dot │ ├── rtas-test.c │ ├── rtc-test.c │ ├── rtl8139-test.c │ ├── sdhci-test.c │ ├── socket-helpers.c │ ├── socket-helpers.h │ ├── spapr-phb-test.c │ ├── tcg │ │ ├── Makefile │ │ ├── README │ │ ├── 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_addcv17.s │ │ │ ├── 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_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_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.S │ │ │ ├── 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 │ ├── tco-test.c │ ├── test-aio-multithread.c │ ├── test-aio.c │ ├── test-arm-mptimer.c │ ├── test-base64.c │ ├── test-bdrv-drain.c │ ├── test-bitcnt.c │ ├── test-bitops.c │ ├── test-block-backend.c │ ├── test-blockjob-txn.c │ ├── test-blockjob.c │ ├── test-bufferiszero.c │ ├── test-char.c │ ├── test-clone-visitor.c │ ├── test-coroutine.c │ ├── test-crypto-afsplit.c │ ├── test-crypto-block.c │ ├── test-crypto-cipher.c │ ├── test-crypto-hash.c │ ├── test-crypto-hmac.c │ ├── test-crypto-ivgen.c │ ├── test-crypto-pbkdf.c │ ├── test-crypto-secret.c │ ├── test-crypto-tlscredsx509.c │ ├── test-crypto-tlssession.c │ ├── test-crypto-xts.c │ ├── test-cutils.c │ ├── test-filter-mirror.c │ ├── test-filter-redirector.c │ ├── test-hbitmap.c │ ├── test-hmp.c │ ├── test-int128.c │ ├── test-io-channel-buffer.c │ ├── test-io-channel-command.c │ ├── test-io-channel-file.c │ ├── test-io-channel-socket.c │ ├── test-io-channel-tls.c │ ├── test-io-task.c │ ├── test-iov.c │ ├── test-keyval.c │ ├── test-logging.c │ ├── test-mul64.c │ ├── test-netfilter.c │ ├── test-opts-visitor.c │ ├── test-qapi-util.c │ ├── test-qdev-global-props.c │ ├── test-qdist.c │ ├── test-qemu-opts.c │ ├── test-qga.c │ ├── test-qht-par.c │ ├── test-qht.c │ ├── test-qmp-cmds.c │ ├── test-qmp-event.c │ ├── test-qobject-input-visitor.c │ ├── test-qobject-output-visitor.c │ ├── test-rcu-list.c │ ├── test-replication.c │ ├── test-shift128.c │ ├── test-string-input-visitor.c │ ├── test-string-output-visitor.c │ ├── test-thread-pool.c │ ├── test-throttle.c │ ├── test-timed-average.c │ ├── test-util-sockets.c │ ├── test-uuid.c │ ├── test-visitor-serialization.c │ ├── test-vmstate.c │ ├── test-write-threshold.c │ ├── test-x86-cpuid-compat.c │ ├── test-x86-cpuid.c │ ├── test-xbzrle.c │ ├── tmp105-test.c │ ├── tpci200-test.c │ ├── tpm-crb-test.c │ ├── tpm-emu.c │ ├── tpm-emu.h │ ├── tpm-tis-test.c │ ├── usb-hcd-ehci-test.c │ ├── usb-hcd-ohci-test.c │ ├── usb-hcd-uhci-test.c │ ├── usb-hcd-xhci-test.c │ ├── vhost-user-bridge.c │ ├── vhost-user-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 │ ├── vm │ │ ├── Makefile.include │ │ ├── README │ │ ├── basevm.py │ │ ├── freebsd │ │ ├── netbsd │ │ ├── openbsd │ │ └── ubuntu.i386 │ ├── vmgenid-test.c │ ├── vmstate-static-checker-data │ │ ├── dump1.json │ │ └── dump2.json │ ├── vmxnet3-test.c │ └── wdt_ib700-test.c ├── thunk.c ├── tpm.c ├── trace-events ├── trace │ ├── Makefile.objs │ ├── control-internal.h │ ├── control-target.c │ ├── control.c │ ├── control.h │ ├── event-internal.h │ ├── ftrace.c │ ├── ftrace.h │ ├── mem-internal.h │ ├── mem.h │ ├── qmp.c │ ├── simple.c │ └── simple.h ├── ui │ ├── Makefile.objs │ ├── cocoa.m │ ├── console-gl.c │ ├── console.c │ ├── curses.c │ ├── curses_keys.h │ ├── cursor.c │ ├── cursor_hidden.xpm │ ├── cursor_left_ptr.xpm │ ├── egl-context.c │ ├── egl-headless.c │ ├── egl-helpers.c │ ├── gtk-egl.c │ ├── gtk-gl-area.c │ ├── gtk.c │ ├── input-keymap.c │ ├── input-legacy.c │ ├── input-linux.c │ ├── input.c │ ├── keycodemapdb │ │ ├── LICENSE.BSD │ │ ├── LICENSE.GPL2 │ │ ├── README │ │ ├── data │ │ │ ├── README │ │ │ └── keymaps.csv │ │ ├── tests │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── javascript │ │ │ ├── python2 │ │ │ ├── python3 │ │ │ ├── stdc++.cc │ │ │ ├── stdc.c │ │ │ └── test.py │ │ ├── thirdparty │ │ │ ├── LICENSE-argparse.txt │ │ │ ├── __init__.py │ │ │ └── argparse.py │ │ └── tools │ │ │ └── keymap-gen │ ├── keymaps.c │ ├── keymaps.h │ ├── qemu-pixman.c │ ├── qemu-x509.h │ ├── sdl.c │ ├── sdl2-2d.c │ ├── sdl2-gl.c │ ├── sdl2-input.c │ ├── sdl2.c │ ├── sdl_keysym.h │ ├── sdl_zoom.c │ ├── sdl_zoom.h │ ├── sdl_zoom_template.h │ ├── shader.c │ ├── shader │ │ ├── texture-blit-flip.vert │ │ ├── texture-blit.frag │ │ └── texture-blit.vert │ ├── spice-core.c │ ├── spice-display.c │ ├── spice-input.c │ ├── trace-events │ ├── 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-stubs.c │ ├── vnc-ws.c │ ├── vnc-ws.h │ ├── vnc.c │ ├── vnc.h │ ├── vnc_keysym.h │ ├── x_keymap.c │ └── x_keymap.h ├── util │ ├── Makefile.objs │ ├── acl.c │ ├── aio-posix.c │ ├── aio-wait.c │ ├── aio-win32.c │ ├── aiocb.c │ ├── async.c │ ├── base64.c │ ├── bitmap.c │ ├── bitops.c │ ├── buffer.c │ ├── bufferiszero.c │ ├── cacheinfo.c │ ├── compatfd.c │ ├── coroutine-sigaltstack.c │ ├── coroutine-ucontext.c │ ├── coroutine-win32.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 │ ├── id.c │ ├── iohandler.c │ ├── iov.c │ ├── iova-tree.c │ ├── keyval.c │ ├── lockcnt.c │ ├── log.c │ ├── main-loop.c │ ├── memfd.c │ ├── mmap-alloc.c │ ├── module.c │ ├── notify.c │ ├── osdep.c │ ├── oslib-posix.c │ ├── oslib-win32.c │ ├── pagesize.c │ ├── path.c │ ├── qdist.c │ ├── qemu-config.c │ ├── qemu-coroutine-io.c │ ├── qemu-coroutine-lock.c │ ├── qemu-coroutine-sleep.c │ ├── qemu-coroutine.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 │ ├── qemu-timer.c │ ├── qht.c │ ├── range.c │ ├── rcu.c │ ├── readline.c │ ├── stats64.c │ ├── sys_membarrier.c │ ├── systemd.c │ ├── thread-pool.c │ ├── throttle.c │ ├── timed-average.c │ ├── trace-events │ ├── unicode.c │ ├── uri.c │ ├── uuid.c │ └── vfio-helpers.c ├── version.rc └── vl.c ├── qcu-driver ├── Makefile ├── qcuda_common.h └── qcuda_driver.c ├── qcu-library ├── Makefile ├── libcudart.c ├── libcudart_dl.c ├── shared.version └── time_measure.h └── wgs.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/README.md -------------------------------------------------------------------------------- /gfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/gfs.py -------------------------------------------------------------------------------- /qcu-device/.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/.dir-locals.el -------------------------------------------------------------------------------- /qcu-device/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/.gdbinit -------------------------------------------------------------------------------- /qcu-device/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/.gitignore -------------------------------------------------------------------------------- /qcu-device/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/.gitmodules -------------------------------------------------------------------------------- /qcu-device/.gitpublish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/.gitpublish -------------------------------------------------------------------------------- /qcu-device/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/.mailmap -------------------------------------------------------------------------------- /qcu-device/.shippable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/.shippable.yml -------------------------------------------------------------------------------- /qcu-device/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/.travis.yml -------------------------------------------------------------------------------- /qcu-device/CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/CODING_STYLE -------------------------------------------------------------------------------- /qcu-device/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/COPYING -------------------------------------------------------------------------------- /qcu-device/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/COPYING.LIB -------------------------------------------------------------------------------- /qcu-device/COPYING.PYTHON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/COPYING.PYTHON -------------------------------------------------------------------------------- /qcu-device/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/Changelog -------------------------------------------------------------------------------- /qcu-device/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/HACKING -------------------------------------------------------------------------------- /qcu-device/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/LICENSE -------------------------------------------------------------------------------- /qcu-device/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/MAINTAINERS -------------------------------------------------------------------------------- /qcu-device/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/Makefile -------------------------------------------------------------------------------- /qcu-device/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/Makefile.objs -------------------------------------------------------------------------------- /qcu-device/Makefile.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/Makefile.target -------------------------------------------------------------------------------- /qcu-device/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/README -------------------------------------------------------------------------------- /qcu-device/VERSION: -------------------------------------------------------------------------------- 1 | 2.12.1 2 | -------------------------------------------------------------------------------- /qcu-device/accel/accel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/accel/accel.c -------------------------------------------------------------------------------- /qcu-device/arch_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/arch_init.c -------------------------------------------------------------------------------- /qcu-device/audio/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/audio/audio.c -------------------------------------------------------------------------------- /qcu-device/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/audio/audio.h -------------------------------------------------------------------------------- /qcu-device/audio/mixeng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/audio/mixeng.c -------------------------------------------------------------------------------- /qcu-device/audio/mixeng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/audio/mixeng.h -------------------------------------------------------------------------------- /qcu-device/audio/noaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/audio/noaudio.c -------------------------------------------------------------------------------- /qcu-device/audio/ossaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/audio/ossaudio.c -------------------------------------------------------------------------------- /qcu-device/audio/paaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/audio/paaudio.c -------------------------------------------------------------------------------- /qcu-device/audio/sdlaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/audio/sdlaudio.c -------------------------------------------------------------------------------- /qcu-device/audio/wavaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/audio/wavaudio.c -------------------------------------------------------------------------------- /qcu-device/backends/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/backends/rng.c -------------------------------------------------------------------------------- /qcu-device/backends/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/backends/tpm.c -------------------------------------------------------------------------------- /qcu-device/balloon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/balloon.c -------------------------------------------------------------------------------- /qcu-device/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block.c -------------------------------------------------------------------------------- /qcu-device/block/backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/backup.c -------------------------------------------------------------------------------- /qcu-device/block/blkdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/blkdebug.c -------------------------------------------------------------------------------- /qcu-device/block/bochs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/bochs.c -------------------------------------------------------------------------------- /qcu-device/block/cloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/cloop.c -------------------------------------------------------------------------------- /qcu-device/block/commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/commit.c -------------------------------------------------------------------------------- /qcu-device/block/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/create.c -------------------------------------------------------------------------------- /qcu-device/block/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/crypto.c -------------------------------------------------------------------------------- /qcu-device/block/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/crypto.h -------------------------------------------------------------------------------- /qcu-device/block/curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/curl.c -------------------------------------------------------------------------------- /qcu-device/block/dmg-bz2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/dmg-bz2.c -------------------------------------------------------------------------------- /qcu-device/block/dmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/dmg.c -------------------------------------------------------------------------------- /qcu-device/block/dmg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/dmg.h -------------------------------------------------------------------------------- /qcu-device/block/gluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/gluster.c -------------------------------------------------------------------------------- /qcu-device/block/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/io.c -------------------------------------------------------------------------------- /qcu-device/block/iscsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/iscsi.c -------------------------------------------------------------------------------- /qcu-device/block/mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/mirror.c -------------------------------------------------------------------------------- /qcu-device/block/nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/nbd.c -------------------------------------------------------------------------------- /qcu-device/block/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/nfs.c -------------------------------------------------------------------------------- /qcu-device/block/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/null.c -------------------------------------------------------------------------------- /qcu-device/block/nvme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/nvme.c -------------------------------------------------------------------------------- /qcu-device/block/qapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/qapi.c -------------------------------------------------------------------------------- /qcu-device/block/qcow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/qcow.c -------------------------------------------------------------------------------- /qcu-device/block/qcow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/qcow2.c -------------------------------------------------------------------------------- /qcu-device/block/qcow2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/qcow2.h -------------------------------------------------------------------------------- /qcu-device/block/qed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/qed.c -------------------------------------------------------------------------------- /qcu-device/block/qed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/qed.h -------------------------------------------------------------------------------- /qcu-device/block/quorum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/quorum.c -------------------------------------------------------------------------------- /qcu-device/block/rbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/rbd.c -------------------------------------------------------------------------------- /qcu-device/block/sheepdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/sheepdog.c -------------------------------------------------------------------------------- /qcu-device/block/snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/snapshot.c -------------------------------------------------------------------------------- /qcu-device/block/ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/ssh.c -------------------------------------------------------------------------------- /qcu-device/block/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/stream.c -------------------------------------------------------------------------------- /qcu-device/block/throttle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/throttle.c -------------------------------------------------------------------------------- /qcu-device/block/vdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/vdi.c -------------------------------------------------------------------------------- /qcu-device/block/vhdx-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/vhdx-log.c -------------------------------------------------------------------------------- /qcu-device/block/vhdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/vhdx.c -------------------------------------------------------------------------------- /qcu-device/block/vhdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/vhdx.h -------------------------------------------------------------------------------- /qcu-device/block/vmdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/vmdk.c -------------------------------------------------------------------------------- /qcu-device/block/vpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/vpc.c -------------------------------------------------------------------------------- /qcu-device/block/vvfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/vvfat.c -------------------------------------------------------------------------------- /qcu-device/block/vxhs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/block/vxhs.c -------------------------------------------------------------------------------- /qcu-device/blockdev-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/blockdev-nbd.c -------------------------------------------------------------------------------- /qcu-device/blockdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/blockdev.c -------------------------------------------------------------------------------- /qcu-device/blockjob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/blockjob.c -------------------------------------------------------------------------------- /qcu-device/bootdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/bootdevice.c -------------------------------------------------------------------------------- /qcu-device/bsd-user/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/bsd-user/main.c -------------------------------------------------------------------------------- /qcu-device/bsd-user/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/bsd-user/mmap.c -------------------------------------------------------------------------------- /qcu-device/bsd-user/qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/bsd-user/qemu.h -------------------------------------------------------------------------------- /qcu-device/bt-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/bt-host.c -------------------------------------------------------------------------------- /qcu-device/bt-vhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/bt-vhci.c -------------------------------------------------------------------------------- /qcu-device/capstone/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/capstone/README -------------------------------------------------------------------------------- /qcu-device/capstone/RELEASE_NOTES: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/capstone/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/capstone/TODO -------------------------------------------------------------------------------- /qcu-device/capstone/bindings/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | tags 3 | -------------------------------------------------------------------------------- /qcu-device/capstone/bindings/java/capstone/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/capstone/bindings/powershell/Capstone/Lib/Capstone/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/capstone/bindings/python/prebuilt/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/capstone/bindings/python/pyx/README: -------------------------------------------------------------------------------- 1 | This directory contains Cython files. 2 | -------------------------------------------------------------------------------- /qcu-device/capstone/bindings/vb6/Form1.frx: -------------------------------------------------------------------------------- 1 | Text1 -------------------------------------------------------------------------------- /qcu-device/capstone/cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/capstone/cs.c -------------------------------------------------------------------------------- /qcu-device/capstone/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/capstone/make.sh -------------------------------------------------------------------------------- /qcu-device/capstone/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/capstone/utils.c -------------------------------------------------------------------------------- /qcu-device/capstone/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/capstone/utils.h -------------------------------------------------------------------------------- /qcu-device/capstone/windows/README: -------------------------------------------------------------------------------- 1 | This directory contains code specific to Windows platforms. 2 | -------------------------------------------------------------------------------- /qcu-device/change.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/change.txt -------------------------------------------------------------------------------- /qcu-device/chardev/baum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/chardev/baum.c -------------------------------------------------------------------------------- /qcu-device/chardev/char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/chardev/char.c -------------------------------------------------------------------------------- /qcu-device/chardev/spice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/chardev/spice.c -------------------------------------------------------------------------------- /qcu-device/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/configure -------------------------------------------------------------------------------- /qcu-device/cpus-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/cpus-common.c -------------------------------------------------------------------------------- /qcu-device/cpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/cpus.c -------------------------------------------------------------------------------- /qcu-device/crypto/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/crypto/aes.c -------------------------------------------------------------------------------- /qcu-device/crypto/afalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/crypto/afalg.c -------------------------------------------------------------------------------- /qcu-device/crypto/afsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/crypto/afsplit.c -------------------------------------------------------------------------------- /qcu-device/crypto/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/crypto/block.c -------------------------------------------------------------------------------- /qcu-device/crypto/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/crypto/cipher.c -------------------------------------------------------------------------------- /qcu-device/crypto/desrfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/crypto/desrfb.c -------------------------------------------------------------------------------- /qcu-device/crypto/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/crypto/hash.c -------------------------------------------------------------------------------- /qcu-device/crypto/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/crypto/hmac.c -------------------------------------------------------------------------------- /qcu-device/crypto/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/crypto/init.c -------------------------------------------------------------------------------- /qcu-device/crypto/ivgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/crypto/ivgen.c -------------------------------------------------------------------------------- /qcu-device/crypto/pbkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/crypto/pbkdf.c -------------------------------------------------------------------------------- /qcu-device/crypto/secret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/crypto/secret.c -------------------------------------------------------------------------------- /qcu-device/crypto/xts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/crypto/xts.c -------------------------------------------------------------------------------- /qcu-device/default-configs/aarch64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for aarch64-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/aarch64_be-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for aarch64_be-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/alpha-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for alpha-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/arm-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for arm-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/armeb-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for armeb-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/cris-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for cris-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/hppa-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for hppa-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/i386-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-bsd-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/i386-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/m68k-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for m68k-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/microblaze-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for microblaze-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/mips-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/mips64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips64-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/mips64el-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips64el-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/mipsel-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsel-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/mipsn32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsn32-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/mipsn32el-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsn32el-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/nios2-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for nios2-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/or1k-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for or1k-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/ppc-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for ppc-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/ppc64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for ppc64-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/ppc64abi32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for ppc64abi32-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/ppc64le-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for ppc64le-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/riscv32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for riscv-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/riscv64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for riscv-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/s390x-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for s390x-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/sh4-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sh4-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/sh4eb-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sh4eb-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/sparc-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc-bsd-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/sparc-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/sparc32plus-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc32plus-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/sparc64-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc64-bsd-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/sparc64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc64-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/tilegx-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for tilegx-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/tricore-softmmu.mak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/default-configs/x86_64-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for x86_64-bsd-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/x86_64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for x86_64-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/xtensa-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for xtensa-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/default-configs/xtensaeb-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for xtensa-linux-user 2 | -------------------------------------------------------------------------------- /qcu-device/device-hotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/device-hotplug.c -------------------------------------------------------------------------------- /qcu-device/device_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/device_tree.c -------------------------------------------------------------------------------- /qcu-device/disas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas.c -------------------------------------------------------------------------------- /qcu-device/disas/alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/alpha.c -------------------------------------------------------------------------------- /qcu-device/disas/arm-a64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/arm-a64.cc -------------------------------------------------------------------------------- /qcu-device/disas/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/arm.c -------------------------------------------------------------------------------- /qcu-device/disas/cris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/cris.c -------------------------------------------------------------------------------- /qcu-device/disas/hppa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/hppa.c -------------------------------------------------------------------------------- /qcu-device/disas/i386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/i386.c -------------------------------------------------------------------------------- /qcu-device/disas/lm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/lm32.c -------------------------------------------------------------------------------- /qcu-device/disas/m68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/m68k.c -------------------------------------------------------------------------------- /qcu-device/disas/mips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/mips.c -------------------------------------------------------------------------------- /qcu-device/disas/moxie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/moxie.c -------------------------------------------------------------------------------- /qcu-device/disas/nios2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/nios2.c -------------------------------------------------------------------------------- /qcu-device/disas/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/ppc.c -------------------------------------------------------------------------------- /qcu-device/disas/riscv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/riscv.c -------------------------------------------------------------------------------- /qcu-device/disas/s390.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/s390.c -------------------------------------------------------------------------------- /qcu-device/disas/sh4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/sh4.c -------------------------------------------------------------------------------- /qcu-device/disas/sparc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/sparc.c -------------------------------------------------------------------------------- /qcu-device/disas/tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/tci.c -------------------------------------------------------------------------------- /qcu-device/disas/xtensa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/disas/xtensa.c -------------------------------------------------------------------------------- /qcu-device/dma-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dma-helpers.c -------------------------------------------------------------------------------- /qcu-device/docs/COLO-FT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/docs/COLO-FT.txt -------------------------------------------------------------------------------- /qcu-device/docs/can.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/docs/can.txt -------------------------------------------------------------------------------- /qcu-device/docs/ccid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/docs/ccid.txt -------------------------------------------------------------------------------- /qcu-device/docs/nvdimm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/docs/nvdimm.txt -------------------------------------------------------------------------------- /qcu-device/docs/pcie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/docs/pcie.txt -------------------------------------------------------------------------------- /qcu-device/docs/pvrdma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/docs/pvrdma.txt -------------------------------------------------------------------------------- /qcu-device/docs/rdma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/docs/rdma.txt -------------------------------------------------------------------------------- /qcu-device/docs/replay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/docs/replay.txt -------------------------------------------------------------------------------- /qcu-device/docs/usb2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/docs/usb2.txt -------------------------------------------------------------------------------- /qcu-device/docs/xbzrle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/docs/xbzrle.txt -------------------------------------------------------------------------------- /qcu-device/dtc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/.gitignore -------------------------------------------------------------------------------- /qcu-device/dtc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/.travis.yml -------------------------------------------------------------------------------- /qcu-device/dtc/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/GPL -------------------------------------------------------------------------------- /qcu-device/dtc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/Makefile -------------------------------------------------------------------------------- /qcu-device/dtc/Makefile.dtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/Makefile.dtc -------------------------------------------------------------------------------- /qcu-device/dtc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/README -------------------------------------------------------------------------------- /qcu-device/dtc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/TODO -------------------------------------------------------------------------------- /qcu-device/dtc/checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/checks.c -------------------------------------------------------------------------------- /qcu-device/dtc/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/data.c -------------------------------------------------------------------------------- /qcu-device/dtc/dtc-lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/dtc-lexer.l -------------------------------------------------------------------------------- /qcu-device/dtc/dtc-parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/dtc-parser.y -------------------------------------------------------------------------------- /qcu-device/dtc/dtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/dtc.c -------------------------------------------------------------------------------- /qcu-device/dtc/dtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/dtc.h -------------------------------------------------------------------------------- /qcu-device/dtc/dtdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/dtdiff -------------------------------------------------------------------------------- /qcu-device/dtc/fdtdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/fdtdump.c -------------------------------------------------------------------------------- /qcu-device/dtc/fdtget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/fdtget.c -------------------------------------------------------------------------------- /qcu-device/dtc/fdtoverlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/fdtoverlay.c -------------------------------------------------------------------------------- /qcu-device/dtc/fdtput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/fdtput.c -------------------------------------------------------------------------------- /qcu-device/dtc/flattree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/flattree.c -------------------------------------------------------------------------------- /qcu-device/dtc/fstree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/fstree.c -------------------------------------------------------------------------------- /qcu-device/dtc/libfdt/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/libfdt/TODO -------------------------------------------------------------------------------- /qcu-device/dtc/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/libfdt/fdt.c -------------------------------------------------------------------------------- /qcu-device/dtc/libfdt/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/libfdt/fdt.h -------------------------------------------------------------------------------- /qcu-device/dtc/livetree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/livetree.c -------------------------------------------------------------------------------- /qcu-device/dtc/srcpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/srcpos.c -------------------------------------------------------------------------------- /qcu-device/dtc/srcpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/srcpos.h -------------------------------------------------------------------------------- /qcu-device/dtc/tests/bad-octal-literal.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | x = <09>; 5 | }; 6 | -------------------------------------------------------------------------------- /qcu-device/dtc/tests/base01.cmd: -------------------------------------------------------------------------------- 1 | dtc -f -b 0 -V 16 -I dts -O asm 2 | -------------------------------------------------------------------------------- /qcu-device/dtc/tests/data.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/tests/data.S -------------------------------------------------------------------------------- /qcu-device/dtc/tests/deps_inc1.dtsi: -------------------------------------------------------------------------------- 1 | /include/ "deps_inc2.dtsi" 2 | -------------------------------------------------------------------------------- /qcu-device/dtc/tests/deps_inc2.dtsi: -------------------------------------------------------------------------------- 1 | /* Empty */ 2 | -------------------------------------------------------------------------------- /qcu-device/dtc/tests/empty.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | }; 5 | -------------------------------------------------------------------------------- /qcu-device/dtc/tests/incbin.bin: -------------------------------------------------------------------------------- 1 | abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ -------------------------------------------------------------------------------- /qcu-device/dtc/tests/include3.dts: -------------------------------------------------------------------------------- 1 | 123456789 010000 2 | -------------------------------------------------------------------------------- /qcu-device/dtc/tests/include4.dts: -------------------------------------------------------------------------------- 1 | compatible = "test_tree1"; 2 | -------------------------------------------------------------------------------- /qcu-device/dtc/tests/include5.dts: -------------------------------------------------------------------------------- 1 | prop-int 2 | -------------------------------------------------------------------------------- /qcu-device/dtc/tests/include5a.dts: -------------------------------------------------------------------------------- 1 | = /bits/ 64 <0xdeadbeef01abcdef> -------------------------------------------------------------------------------- /qcu-device/dtc/tests/include6.dts: -------------------------------------------------------------------------------- 1 | "hello world" 2 | -------------------------------------------------------------------------------- /qcu-device/dtc/tests/include8.dts: -------------------------------------------------------------------------------- 1 | subsubnode@0 { 2 | reg = <0>; 3 | -------------------------------------------------------------------------------- /qcu-device/dtc/tests/nul-in-line-info1.dts: -------------------------------------------------------------------------------- 1 | # 0 "" 2 | -------------------------------------------------------------------------------- /qcu-device/dtc/tests/nul-in-line-info2.dts: -------------------------------------------------------------------------------- 1 | # 0 "\0" 2 | -------------------------------------------------------------------------------- /qcu-device/dtc/tests/search_dir/search_test.dtsi: -------------------------------------------------------------------------------- 1 | /include/ "search_test2.dtsi" 2 | 3 | / { 4 | }; 5 | -------------------------------------------------------------------------------- /qcu-device/dtc/tests/search_dir/search_test2.dtsi: -------------------------------------------------------------------------------- 1 | 2 | / { 3 | }; 4 | -------------------------------------------------------------------------------- /qcu-device/dtc/tests/search_dir_b/search_test_b.dtsi: -------------------------------------------------------------------------------- 1 | /include/ "search_test_b2.dtsi" 2 | 3 | / { 4 | }; 5 | -------------------------------------------------------------------------------- /qcu-device/dtc/tests/search_dir_b/search_test_c.dtsi: -------------------------------------------------------------------------------- 1 | / { 2 | }; 3 | -------------------------------------------------------------------------------- /qcu-device/dtc/treesource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/treesource.c -------------------------------------------------------------------------------- /qcu-device/dtc/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/util.c -------------------------------------------------------------------------------- /qcu-device/dtc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dtc/util.h -------------------------------------------------------------------------------- /qcu-device/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/dump.c -------------------------------------------------------------------------------- /qcu-device/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/exec.c -------------------------------------------------------------------------------- /qcu-device/fpu/softfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/fpu/softfloat.c -------------------------------------------------------------------------------- /qcu-device/gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/gdbstub.c -------------------------------------------------------------------------------- /qcu-device/hmp-commands.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hmp-commands.hx -------------------------------------------------------------------------------- /qcu-device/hmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hmp.c -------------------------------------------------------------------------------- /qcu-device/hmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hmp.h -------------------------------------------------------------------------------- /qcu-device/hw/9pfs/9p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/9pfs/9p.c -------------------------------------------------------------------------------- /qcu-device/hw/9pfs/9p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/9pfs/9p.h -------------------------------------------------------------------------------- /qcu-device/hw/9pfs/codir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/9pfs/codir.c -------------------------------------------------------------------------------- /qcu-device/hw/9pfs/cofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/9pfs/cofile.c -------------------------------------------------------------------------------- /qcu-device/hw/9pfs/cofs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/9pfs/cofs.c -------------------------------------------------------------------------------- /qcu-device/hw/9pfs/coth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/9pfs/coth.c -------------------------------------------------------------------------------- /qcu-device/hw/9pfs/coth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/9pfs/coth.h -------------------------------------------------------------------------------- /qcu-device/hw/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/Makefile.objs -------------------------------------------------------------------------------- /qcu-device/hw/acpi/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/acpi/core.c -------------------------------------------------------------------------------- /qcu-device/hw/acpi/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/acpi/cpu.c -------------------------------------------------------------------------------- /qcu-device/hw/acpi/ich9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/acpi/ich9.c -------------------------------------------------------------------------------- /qcu-device/hw/acpi/ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/acpi/ipmi.c -------------------------------------------------------------------------------- /qcu-device/hw/acpi/nvdimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/acpi/nvdimm.c -------------------------------------------------------------------------------- /qcu-device/hw/acpi/pcihp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/acpi/pcihp.c -------------------------------------------------------------------------------- /qcu-device/hw/acpi/piix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/acpi/piix4.c -------------------------------------------------------------------------------- /qcu-device/hw/acpi/tco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/acpi/tco.c -------------------------------------------------------------------------------- /qcu-device/hw/adc/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_STM32F2XX_ADC) += stm32f2xx_adc.o 2 | -------------------------------------------------------------------------------- /qcu-device/hw/alpha/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += dp264.o pci.o typhoon.o 2 | -------------------------------------------------------------------------------- /qcu-device/hw/alpha/dp264.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/alpha/dp264.c -------------------------------------------------------------------------------- /qcu-device/hw/alpha/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/alpha/pci.c -------------------------------------------------------------------------------- /qcu-device/hw/arm/armv7m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/arm/armv7m.c -------------------------------------------------------------------------------- /qcu-device/hw/arm/aspeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/arm/aspeed.c -------------------------------------------------------------------------------- /qcu-device/hw/arm/bcm2836.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/arm/bcm2836.c -------------------------------------------------------------------------------- /qcu-device/hw/arm/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/arm/boot.c -------------------------------------------------------------------------------- /qcu-device/hw/arm/collie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/arm/collie.c -------------------------------------------------------------------------------- /qcu-device/hw/arm/digic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/arm/digic.c -------------------------------------------------------------------------------- /qcu-device/hw/arm/kzm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/arm/kzm.c -------------------------------------------------------------------------------- /qcu-device/hw/arm/mps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/arm/mps2.c -------------------------------------------------------------------------------- /qcu-device/hw/arm/palm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/arm/palm.c -------------------------------------------------------------------------------- /qcu-device/hw/arm/tosa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/arm/tosa.c -------------------------------------------------------------------------------- /qcu-device/hw/arm/virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/arm/virt.c -------------------------------------------------------------------------------- /qcu-device/hw/arm/z2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/arm/z2.c -------------------------------------------------------------------------------- /qcu-device/hw/block/dataplane/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += virtio-blk.o 2 | -------------------------------------------------------------------------------- /qcu-device/hw/bt/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/bt/core.c -------------------------------------------------------------------------------- /qcu-device/hw/bt/hci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/bt/hci.c -------------------------------------------------------------------------------- /qcu-device/hw/bt/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/bt/hid.c -------------------------------------------------------------------------------- /qcu-device/hw/bt/l2cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/bt/l2cap.c -------------------------------------------------------------------------------- /qcu-device/hw/bt/sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/bt/sdp.c -------------------------------------------------------------------------------- /qcu-device/hw/core/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/core/bus.c -------------------------------------------------------------------------------- /qcu-device/hw/core/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/core/irq.c -------------------------------------------------------------------------------- /qcu-device/hw/core/nmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/core/nmi.c -------------------------------------------------------------------------------- /qcu-device/hw/cpu/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/cpu/core.c -------------------------------------------------------------------------------- /qcu-device/hw/hppa/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += machine.o pci.o dino.o 2 | -------------------------------------------------------------------------------- /qcu-device/hw/hppa/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/hppa/pci.c -------------------------------------------------------------------------------- /qcu-device/hw/i2c/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/i2c/core.c -------------------------------------------------------------------------------- /qcu-device/hw/i386/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/i386/pc.c -------------------------------------------------------------------------------- /qcu-device/hw/ide/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ide/ahci.c -------------------------------------------------------------------------------- /qcu-device/hw/ide/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ide/core.c -------------------------------------------------------------------------------- /qcu-device/hw/ide/ich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ide/ich.c -------------------------------------------------------------------------------- /qcu-device/hw/ide/isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ide/isa.c -------------------------------------------------------------------------------- /qcu-device/hw/ide/mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ide/mmio.c -------------------------------------------------------------------------------- /qcu-device/hw/ide/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ide/pci.c -------------------------------------------------------------------------------- /qcu-device/hw/ide/piix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ide/piix.c -------------------------------------------------------------------------------- /qcu-device/hw/ide/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ide/qdev.c -------------------------------------------------------------------------------- /qcu-device/hw/ide/via.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ide/via.c -------------------------------------------------------------------------------- /qcu-device/hw/isa/apm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/isa/apm.c -------------------------------------------------------------------------------- /qcu-device/hw/mips/cps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/mips/cps.c -------------------------------------------------------------------------------- /qcu-device/hw/misc/edu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/misc/edu.c -------------------------------------------------------------------------------- /qcu-device/hw/misc/sga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/misc/sga.c -------------------------------------------------------------------------------- /qcu-device/hw/nios2/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y = boot.o cpu_pic.o 10m50_devboard.o 2 | -------------------------------------------------------------------------------- /qcu-device/hw/pci/msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/pci/msi.c -------------------------------------------------------------------------------- /qcu-device/hw/pci/msix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/pci/msix.c -------------------------------------------------------------------------------- /qcu-device/hw/pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/pci/pci.c -------------------------------------------------------------------------------- /qcu-device/hw/pci/pcie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/pci/pcie.c -------------------------------------------------------------------------------- /qcu-device/hw/pci/shpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/pci/shpc.c -------------------------------------------------------------------------------- /qcu-device/hw/ppc/e500.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ppc/e500.c -------------------------------------------------------------------------------- /qcu-device/hw/ppc/e500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ppc/e500.h -------------------------------------------------------------------------------- /qcu-device/hw/ppc/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ppc/fdt.c -------------------------------------------------------------------------------- /qcu-device/hw/ppc/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ppc/mac.h -------------------------------------------------------------------------------- /qcu-device/hw/ppc/pnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ppc/pnv.c -------------------------------------------------------------------------------- /qcu-device/hw/ppc/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ppc/ppc.c -------------------------------------------------------------------------------- /qcu-device/hw/ppc/prep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ppc/prep.c -------------------------------------------------------------------------------- /qcu-device/hw/scsi/esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/scsi/esp.c -------------------------------------------------------------------------------- /qcu-device/hw/scsi/mfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/scsi/mfi.h -------------------------------------------------------------------------------- /qcu-device/hw/scsi/mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/scsi/mpi.h -------------------------------------------------------------------------------- /qcu-device/hw/scsi/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/scsi/srp.h -------------------------------------------------------------------------------- /qcu-device/hw/sd/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/sd/core.c -------------------------------------------------------------------------------- /qcu-device/hw/sd/pl181.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/sd/pl181.c -------------------------------------------------------------------------------- /qcu-device/hw/sd/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/sd/sd.c -------------------------------------------------------------------------------- /qcu-device/hw/sd/sdhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/sd/sdhci.c -------------------------------------------------------------------------------- /qcu-device/hw/sh4/r2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/sh4/r2d.c -------------------------------------------------------------------------------- /qcu-device/hw/sh4/shix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/sh4/shix.c -------------------------------------------------------------------------------- /qcu-device/hw/ssi/ssi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/ssi/ssi.c -------------------------------------------------------------------------------- /qcu-device/hw/tricore/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += tricore_testboard.o 2 | -------------------------------------------------------------------------------- /qcu-device/hw/usb/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/usb/bus.c -------------------------------------------------------------------------------- /qcu-device/hw/usb/ccid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/usb/ccid.h -------------------------------------------------------------------------------- /qcu-device/hw/usb/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/usb/core.c -------------------------------------------------------------------------------- /qcu-device/hw/usb/desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/usb/desc.c -------------------------------------------------------------------------------- /qcu-device/hw/usb/desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/usb/desc.h -------------------------------------------------------------------------------- /qcu-device/hw/usb/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/usb/host.h -------------------------------------------------------------------------------- /qcu-device/hw/vfio/ccw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/vfio/ccw.c -------------------------------------------------------------------------------- /qcu-device/hw/vfio/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/vfio/pci.c -------------------------------------------------------------------------------- /qcu-device/hw/vfio/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/hw/vfio/pci.h -------------------------------------------------------------------------------- /qcu-device/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/include/elf.h -------------------------------------------------------------------------------- /qcu-device/include/standard-headers/linux/if_ether.h: -------------------------------------------------------------------------------- 1 | #define ETH_ALEN 6 2 | -------------------------------------------------------------------------------- /qcu-device/io/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/io/channel.c -------------------------------------------------------------------------------- /qcu-device/io/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/io/task.c -------------------------------------------------------------------------------- /qcu-device/ioport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ioport.c -------------------------------------------------------------------------------- /qcu-device/iothread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/iothread.c -------------------------------------------------------------------------------- /qcu-device/linux-headers/asm-arm64/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qcu-device/linux-headers/asm-x86/hyperv.h: -------------------------------------------------------------------------------- 1 | #include "standard-headers/asm-x86/hyperv.h" 2 | -------------------------------------------------------------------------------- /qcu-device/linux-headers/linux/virtio_config.h: -------------------------------------------------------------------------------- 1 | #include "standard-headers/linux/virtio_config.h" 2 | -------------------------------------------------------------------------------- /qcu-device/linux-headers/linux/virtio_ring.h: -------------------------------------------------------------------------------- 1 | #include "standard-headers/linux/virtio_ring.h" 2 | -------------------------------------------------------------------------------- /qcu-device/linux-user/mips64/target_structs.h: -------------------------------------------------------------------------------- 1 | #include "../mips/target_structs.h" 2 | 3 | -------------------------------------------------------------------------------- /qcu-device/linux-user/mips64/termbits.h: -------------------------------------------------------------------------------- 1 | #include "../mips/termbits.h" 2 | 3 | -------------------------------------------------------------------------------- /qcu-device/linux-user/sparc64/target_cpu.h: -------------------------------------------------------------------------------- 1 | #include "../sparc/target_cpu.h" 2 | -------------------------------------------------------------------------------- /qcu-device/linux-user/x86_64/target_cpu.h: -------------------------------------------------------------------------------- 1 | #include "../i386/target_cpu.h" 2 | -------------------------------------------------------------------------------- /qcu-device/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/memory.c -------------------------------------------------------------------------------- /qcu-device/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/monitor.c -------------------------------------------------------------------------------- /qcu-device/nbd/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/nbd/client.c -------------------------------------------------------------------------------- /qcu-device/nbd/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/nbd/common.c -------------------------------------------------------------------------------- /qcu-device/nbd/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/nbd/server.c -------------------------------------------------------------------------------- /qcu-device/net/clients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/clients.h -------------------------------------------------------------------------------- /qcu-device/net/colo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/colo.c -------------------------------------------------------------------------------- /qcu-device/net/colo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/colo.h -------------------------------------------------------------------------------- /qcu-device/net/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/dump.c -------------------------------------------------------------------------------- /qcu-device/net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/eth.c -------------------------------------------------------------------------------- /qcu-device/net/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/filter.c -------------------------------------------------------------------------------- /qcu-device/net/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/hub.c -------------------------------------------------------------------------------- /qcu-device/net/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/hub.h -------------------------------------------------------------------------------- /qcu-device/net/l2tpv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/l2tpv3.c -------------------------------------------------------------------------------- /qcu-device/net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/net.c -------------------------------------------------------------------------------- /qcu-device/net/netmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/netmap.c -------------------------------------------------------------------------------- /qcu-device/net/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/queue.c -------------------------------------------------------------------------------- /qcu-device/net/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/slirp.c -------------------------------------------------------------------------------- /qcu-device/net/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/socket.c -------------------------------------------------------------------------------- /qcu-device/net/tap-bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/tap-bsd.c -------------------------------------------------------------------------------- /qcu-device/net/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/tap.c -------------------------------------------------------------------------------- /qcu-device/net/tap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/tap_int.h -------------------------------------------------------------------------------- /qcu-device/net/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/util.c -------------------------------------------------------------------------------- /qcu-device/net/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/util.h -------------------------------------------------------------------------------- /qcu-device/net/vde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/net/vde.c -------------------------------------------------------------------------------- /qcu-device/numa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/numa.c -------------------------------------------------------------------------------- /qcu-device/os-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/os-posix.c -------------------------------------------------------------------------------- /qcu-device/os-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/os-win32.c -------------------------------------------------------------------------------- /qcu-device/pc-bios/keymaps/nl-be: -------------------------------------------------------------------------------- 1 | # Dutch (Belgium) 2 | map 0x813 3 | include common 4 | -------------------------------------------------------------------------------- /qcu-device/pc-bios/optionrom/code16gcc.h: -------------------------------------------------------------------------------- 1 | asm( 2 | ".code16gcc\n" 3 | ); 4 | -------------------------------------------------------------------------------- /qcu-device/po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/po/Makefile -------------------------------------------------------------------------------- /qcu-device/po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/po/bg.po -------------------------------------------------------------------------------- /qcu-device/po/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/po/de_DE.po -------------------------------------------------------------------------------- /qcu-device/po/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/po/fr_FR.po -------------------------------------------------------------------------------- /qcu-device/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/po/hu.po -------------------------------------------------------------------------------- /qcu-device/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/po/it.po -------------------------------------------------------------------------------- /qcu-device/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/po/tr.po -------------------------------------------------------------------------------- /qcu-device/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/po/zh_CN.po -------------------------------------------------------------------------------- /qcu-device/qapi/net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qapi/net.json -------------------------------------------------------------------------------- /qcu-device/qapi/tpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qapi/tpm.json -------------------------------------------------------------------------------- /qcu-device/qapi/ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qapi/ui.json -------------------------------------------------------------------------------- /qcu-device/qemu-doc.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qemu-doc.texi -------------------------------------------------------------------------------- /qcu-device/qemu-ga.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qemu-ga.texi -------------------------------------------------------------------------------- /qcu-device/qemu-img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qemu-img.c -------------------------------------------------------------------------------- /qcu-device/qemu-img.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qemu-img.texi -------------------------------------------------------------------------------- /qcu-device/qemu-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qemu-io.c -------------------------------------------------------------------------------- /qcu-device/qemu-keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qemu-keymap.c -------------------------------------------------------------------------------- /qcu-device/qemu-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qemu-nbd.c -------------------------------------------------------------------------------- /qcu-device/qemu-nbd.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qemu-nbd.texi -------------------------------------------------------------------------------- /qcu-device/qemu.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qemu.nsi -------------------------------------------------------------------------------- /qcu-device/qemu.sasl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qemu.sasl -------------------------------------------------------------------------------- /qcu-device/qga/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qga/channel.h -------------------------------------------------------------------------------- /qcu-device/qga/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qga/main.c -------------------------------------------------------------------------------- /qcu-device/qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qmp.c -------------------------------------------------------------------------------- /qcu-device/qom/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qom/cpu.c -------------------------------------------------------------------------------- /qcu-device/qom/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qom/object.c -------------------------------------------------------------------------------- /qcu-device/qtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/qtest.c -------------------------------------------------------------------------------- /qcu-device/replication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/replication.c -------------------------------------------------------------------------------- /qcu-device/replication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/replication.h -------------------------------------------------------------------------------- /qcu-device/roms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/roms/Makefile -------------------------------------------------------------------------------- /qcu-device/roms/SLOF/VERSION: -------------------------------------------------------------------------------- 1 | 20171214 2 | -------------------------------------------------------------------------------- /qcu-device/roms/SLOF/board-js2x/slof/version.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/SLOF/board-qemu/slof/.gitignore: -------------------------------------------------------------------------------- 1 | OF.ffs 2 | -------------------------------------------------------------------------------- /qcu-device/roms/SLOF/romfs/tools/.gitignore: -------------------------------------------------------------------------------- 1 | build_romfs 2 | -------------------------------------------------------------------------------- /qcu-device/roms/SLOF/tools/.gitignore: -------------------------------------------------------------------------------- 1 | gen_reloc_table 2 | sloffs 3 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/errdb/.gitignore: -------------------------------------------------------------------------------- 1 | errors.db 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/AUTOBOOT_CMD.html: -------------------------------------------------------------------------------- 1 | Automatic booting 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/COMDATA.html: -------------------------------------------------------------------------------- 1 | Serial Console Data bits 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/COMSPEED.html: -------------------------------------------------------------------------------- 1 | Serial Console Baud rate 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/COMSTOP.html: -------------------------------------------------------------------------------- 1 | Serial Console Stop bits 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/CONSOLE_PC_BIOS.html: -------------------------------------------------------------------------------- 1 | Enable Default BIOS console 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/CONSOLE_SERIAL.html: -------------------------------------------------------------------------------- 1 | Enable Serial port console 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/CRYPTO_80211_WEP.html: -------------------------------------------------------------------------------- 1 | Wireless WEP encryption support 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/CRYPTO_80211_WPA.html: -------------------------------------------------------------------------------- 1 | Wireless WPA encryption support 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/DHCP_CMD.html: -------------------------------------------------------------------------------- 1 | DHCP management commands 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/DNS_RESOLVER.html: -------------------------------------------------------------------------------- 1 | DNS resolver 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/DOWNLOAD_PROTO_FTP.html: -------------------------------------------------------------------------------- 1 | File Transfer Protocol 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/DOWNLOAD_PROTO_HTTP.html: -------------------------------------------------------------------------------- 1 | Hypertext Transfer Protocol 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/IFMGMT_CMD.html: -------------------------------------------------------------------------------- 1 | Interface management commands 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/IMAGE_ELF.html: -------------------------------------------------------------------------------- 1 | ELF image support 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/IMAGE_MULTIBOOT.html: -------------------------------------------------------------------------------- 1 | MultiBoot image support 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/IMAGE_NBI.html: -------------------------------------------------------------------------------- 1 | NBI image support 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/IMAGE_PXE.html: -------------------------------------------------------------------------------- 1 | PXE image support 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/IMAGE_SCRIPT.html: -------------------------------------------------------------------------------- 1 | iPXE script image support 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/IWMGMT_CMD.html: -------------------------------------------------------------------------------- 1 | Wireless interface management commands 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/NMB_RESOLVER.html: -------------------------------------------------------------------------------- 1 | NMB resolver 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/NVO_CMD.html: -------------------------------------------------------------------------------- 1 | Non-volatile option storage commands 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/ROUTE_CMD.html: -------------------------------------------------------------------------------- 1 | Routing table management commands 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/contrib/rom-o-matic/doc/SANBOOT_CMD.html: -------------------------------------------------------------------------------- 1 | SAN boot commands 2 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/arch/x86/transitions/libpm.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/cloud/colour.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/cloud/crypto.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/cloud/serial.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/cloud/sideband.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/cloud/usb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/qemu/colour.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/qemu/console.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/qemu/crypto.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/qemu/serial.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/qemu/settings.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/qemu/sideband.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/qemu/usb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/vbox/colour.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/vbox/console.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/vbox/crypto.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/vbox/serial.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/vbox/settings.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/vbox/sideband.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/ipxe/src/config/vbox/usb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/openbios/.gitignore: -------------------------------------------------------------------------------- 1 | obj-* 2 | .stgit-* 3 | config-host.mak 4 | -------------------------------------------------------------------------------- /qcu-device/roms/openbios/VERSION: -------------------------------------------------------------------------------- 1 | 1.1 2 | -------------------------------------------------------------------------------- /qcu-device/roms/openbios/arch/amd64/relocate.h: -------------------------------------------------------------------------------- 1 | void relocate(struct sys_info *); 2 | -------------------------------------------------------------------------------- /qcu-device/roms/openbios/arch/sparc32/crs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/openbios/arch/x86/relocate.h: -------------------------------------------------------------------------------- 1 | void relocate(struct sys_info *); 2 | -------------------------------------------------------------------------------- /qcu-device/roms/openbios/fs/grubfs/debug.h: -------------------------------------------------------------------------------- 1 | /* for grub compatibility */ 2 | -------------------------------------------------------------------------------- /qcu-device/roms/openhackware/Timestamp: -------------------------------------------------------------------------------- 1 | 2005-04-06 at 21:44:49 2 | -------------------------------------------------------------------------------- /qcu-device/roms/qemu-palcode/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | palcode-* 3 | -------------------------------------------------------------------------------- /qcu-device/roms/seabios-hppa/src/code16gcc.s: -------------------------------------------------------------------------------- 1 | .code16gcc 2 | -------------------------------------------------------------------------------- /qcu-device/roms/seabios/.version: -------------------------------------------------------------------------------- 1 | rel-1.11.1-0-g0551a4b 2 | -------------------------------------------------------------------------------- /qcu-device/roms/seabios/src/code16gcc.s: -------------------------------------------------------------------------------- 1 | .code16gcc 2 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/asm/dummy_map.S: -------------------------------------------------------------------------------- 1 | .section ".sym_map","a" 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/ccan/endian/.depends: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/doc/_static/.a_file_for_git_to_keep_empty_directory_around: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/common/.gitignore: -------------------------------------------------------------------------------- 1 | ast-sf-ctrl.c 2 | ast.h 3 | io.h -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/common/arch_flash_powerpc_io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/common/arch_flash_x86_io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/ffspart/test/make-check-test: -------------------------------------------------------------------------------- 1 | make -C external/ffspart/ check 2 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/ffspart/test/results/00-usage.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/ffspart/test/results/08-small-files.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/ffspart/test/results/10-bad-input.out: -------------------------------------------------------------------------------- 1 | Freeing hdr 2 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/ffspart/test/results/12-bad-numbers-base.out: -------------------------------------------------------------------------------- 1 | Freeing hdr 2 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/ffspart/test/results/13-bad-numbers-size.out: -------------------------------------------------------------------------------- 1 | Freeing hdr 2 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/ffspart/test/results/14-bad-input-flags.err: -------------------------------------------------------------------------------- 1 | Unknown flag 'Z' 2 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/ffspart/test/results/14-bad-input-flags.out: -------------------------------------------------------------------------------- 1 | Freeing hdr 2 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/gard/test/make-check-test: -------------------------------------------------------------------------------- 1 | make -C external/gard/ check 2 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/gard/test/results/00-list.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/gard/test/results/01-show_1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/gard/test/results/02-usage.out: -------------------------------------------------------------------------------- 1 | Open-Power GARD tool VERSION 2 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/pflash/test/make-check-test: -------------------------------------------------------------------------------- 1 | make -C external/pflash/ check 2 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/pflash/test/results/00-usage.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/pflash/test/results/01-info.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/pflash/test/results/02-erase.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/pflash/test/results/03-erase-parts.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/pflash/test/results/04-program-rand.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/pflash/test/results/05-bad-numbers.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/skiboot/external/pflash/test/results/06-miscprint.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/arm/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/avr32/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/blackfin/cpu/.gitignore: -------------------------------------------------------------------------------- 1 | bootrom-asm-offsets.[chs] 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/blackfin/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/blackfin/include/asm/mach-bf533/def_local.h: -------------------------------------------------------------------------------- 1 | #include "ports.h" 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/blackfin/include/asm/mach-bf537/def_local.h: -------------------------------------------------------------------------------- 1 | #include "ports.h" 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/blackfin/include/asm/signal.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/blackfin/lib/.gitignore: -------------------------------------------------------------------------------- 1 | u-boot.lds 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/i386/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/i386/include/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/m68k/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/microblaze/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/nios2/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/powerpc/cpu/mpc824x/.gitignore: -------------------------------------------------------------------------------- 1 | /bedbug_603e.c 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/powerpc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/sh/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/arch/sparc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/examples/api/.gitignore: -------------------------------------------------------------------------------- 1 | demo 2 | demo.bin 3 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/nand_spl/board/freescale/mx31pdk/config.mk: -------------------------------------------------------------------------------- 1 | PAD_TO := 2048 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/nand_spl/board/karo/tx25/config.mk: -------------------------------------------------------------------------------- 1 | PAD_TO := 2048 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/tools/multiplier/dummy.c: -------------------------------------------------------------------------------- 1 | volatile int __dummy = 0xDEADBEEF; 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/tools/updater/dummy.c: -------------------------------------------------------------------------------- 1 | volatile int __dummy = 0xDEADBEEF; 2 | -------------------------------------------------------------------------------- /qcu-device/roms/u-boot-sam460ex/tools/updater/stubs.c: -------------------------------------------------------------------------------- 1 | ../../examples/standalone/stubs.c -------------------------------------------------------------------------------- /qcu-device/roms/vgabios/.cvsignore: -------------------------------------------------------------------------------- 1 | vbetables.h 2 | -------------------------------------------------------------------------------- /qcu-device/rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/rules.mak -------------------------------------------------------------------------------- /qcu-device/scripts/qapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/scripts/qmp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/scsi/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/scsi/utils.c -------------------------------------------------------------------------------- /qcu-device/slirp/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/bootp.c -------------------------------------------------------------------------------- /qcu-device/slirp/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/bootp.h -------------------------------------------------------------------------------- /qcu-device/slirp/cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/cksum.c -------------------------------------------------------------------------------- /qcu-device/slirp/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/debug.h -------------------------------------------------------------------------------- /qcu-device/slirp/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/if.c -------------------------------------------------------------------------------- /qcu-device/slirp/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/if.h -------------------------------------------------------------------------------- /qcu-device/slirp/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/ip.h -------------------------------------------------------------------------------- /qcu-device/slirp/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/ip6.h -------------------------------------------------------------------------------- /qcu-device/slirp/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/main.h -------------------------------------------------------------------------------- /qcu-device/slirp/mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/mbuf.c -------------------------------------------------------------------------------- /qcu-device/slirp/mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/mbuf.h -------------------------------------------------------------------------------- /qcu-device/slirp/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/misc.c -------------------------------------------------------------------------------- /qcu-device/slirp/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/misc.h -------------------------------------------------------------------------------- /qcu-device/slirp/ncsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/ncsi.c -------------------------------------------------------------------------------- /qcu-device/slirp/sbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/sbuf.c -------------------------------------------------------------------------------- /qcu-device/slirp/sbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/sbuf.h -------------------------------------------------------------------------------- /qcu-device/slirp/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/slirp.c -------------------------------------------------------------------------------- /qcu-device/slirp/slirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/slirp.h -------------------------------------------------------------------------------- /qcu-device/slirp/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/tcp.h -------------------------------------------------------------------------------- /qcu-device/slirp/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/tcpip.h -------------------------------------------------------------------------------- /qcu-device/slirp/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/tftp.c -------------------------------------------------------------------------------- /qcu-device/slirp/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/tftp.h -------------------------------------------------------------------------------- /qcu-device/slirp/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/udp.c -------------------------------------------------------------------------------- /qcu-device/slirp/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/udp.h -------------------------------------------------------------------------------- /qcu-device/slirp/udp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/slirp/udp6.c -------------------------------------------------------------------------------- /qcu-device/stubs/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/stubs/dump.c -------------------------------------------------------------------------------- /qcu-device/stubs/fdset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/stubs/fdset.c -------------------------------------------------------------------------------- /qcu-device/stubs/qtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/stubs/qtest.c -------------------------------------------------------------------------------- /qcu-device/stubs/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/stubs/slirp.c -------------------------------------------------------------------------------- /qcu-device/stubs/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/stubs/tpm.c -------------------------------------------------------------------------------- /qcu-device/stubs/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/stubs/uuid.c -------------------------------------------------------------------------------- /qcu-device/target/lm32/TODO: -------------------------------------------------------------------------------- 1 | * linux-user emulation 2 | -------------------------------------------------------------------------------- /qcu-device/target/moxie/machine.h: -------------------------------------------------------------------------------- 1 | extern const VMStateDescription vmstate_moxie_cpu; 2 | -------------------------------------------------------------------------------- /qcu-device/tcg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/tcg/LICENSE -------------------------------------------------------------------------------- /qcu-device/tcg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/tcg/README -------------------------------------------------------------------------------- /qcu-device/tcg/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/tcg/TODO -------------------------------------------------------------------------------- /qcu-device/tcg/tcg-mo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/tcg/tcg-mo.h -------------------------------------------------------------------------------- /qcu-device/tcg/tcg-op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/tcg/tcg-op.c -------------------------------------------------------------------------------- /qcu-device/tcg/tcg-op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/tcg/tcg-op.h -------------------------------------------------------------------------------- /qcu-device/tcg/tcg-opc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/tcg/tcg-opc.h -------------------------------------------------------------------------------- /qcu-device/tcg/tcg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/tcg/tcg.c -------------------------------------------------------------------------------- /qcu-device/tcg/tcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/tcg/tcg.h -------------------------------------------------------------------------------- /qcu-device/tcg/tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/tcg/tci.c -------------------------------------------------------------------------------- /qcu-device/tests/acpi-test-data/pc/FACS: -------------------------------------------------------------------------------- 1 | sstv`  -------------------------------------------------------------------------------- /qcu-device/tests/acpi-test-data/q35/FACS: -------------------------------------------------------------------------------- 1 | sstv`  -------------------------------------------------------------------------------- /qcu-device/tests/image-fuzzer/qcow2/__init__.py: -------------------------------------------------------------------------------- 1 | from layout import create_image 2 | -------------------------------------------------------------------------------- /qcu-device/tests/migration/guestperf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/multiboot/.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | *.elf 3 | test.out 4 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-any.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-any.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-array.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-array.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-clash.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-clash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-conflict-bool-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-conflict-bool-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-conflict-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-conflict-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-conflict-enum-bool.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-conflict-enum-bool.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-conflict-enum-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-conflict-enum-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-conflict-num-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-conflict-num-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-conflict-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-conflict-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-nested.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-nested.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/alternate-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-alternate.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-alternate.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-any.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-any.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-array-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-array-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-array-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-array-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-bad-boxed.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-bad-boxed.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-boxed-anon.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-boxed-anon.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-boxed-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-boxed-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-boxed-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-boxed-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-invalid.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-invalid.json: -------------------------------------------------------------------------------- 1 | { 'command': 'foo', 2 | 'data': false } 3 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-invalid.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-member-array-bad.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-member-array-bad.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-member-case.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-member-case.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-member-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-member-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-name-clash.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-name-clash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-union.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-union.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/args-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/bad-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/bad-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/bad-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/bad-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/bad-ident.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/bad-ident.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/bad-type-bool.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/bad-type-bool.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/bad-type-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/bad-type-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/bad-type-int.err: -------------------------------------------------------------------------------- 1 | tests/qapi-schema/bad-type-int.json:3:13: Stray "1" 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/bad-type-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/bad-type-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/base-cycle-direct.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/base-cycle-direct.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/base-cycle-indirect.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/base-cycle-indirect.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/command-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/command-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/comments.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/comments.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-bad-alternate-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-bad-alternate-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-bad-command-arg.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-bad-command-arg.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-bad-section.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-bad-section.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-bad-symbol.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-bad-symbol.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-bad-union-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-bad-union-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-before-include.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-before-include.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-before-pragma.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-before-pragma.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-duplicated-arg.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-duplicated-arg.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-duplicated-return.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-duplicated-return.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-duplicated-since.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-duplicated-since.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-empty-arg.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-empty-arg.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-empty-section.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-empty-section.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-empty-symbol.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-empty-symbol.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-good.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-good.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-interleaved-section.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-interleaved-section.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-invalid-end.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-invalid-end.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-invalid-end2.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-invalid-end2.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-invalid-return.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-invalid-return.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-invalid-section.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-invalid-section.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-invalid-start.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-invalid-start.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-missing-colon.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-missing-colon.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-missing-expr.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-missing-expr.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-missing-space.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-missing-space.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-missing.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-missing.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-no-symbol.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/doc-no-symbol.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/double-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/double-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/double-type.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/double-type.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/duplicate-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/duplicate-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/empty.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/empty.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/enum-bad-name.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/enum-bad-name.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/enum-bad-prefix.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/enum-bad-prefix.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/enum-clash-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/enum-clash-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/enum-dict-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/enum-dict-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/enum-int-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/enum-int-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/enum-member-case.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/enum-member-case.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/enum-missing-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/enum-missing-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/enum-wrong-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/enum-wrong-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/escape-outside-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/escape-outside-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/escape-too-big.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/escape-too-big.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/escape-too-short.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/escape-too-short.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/event-boxed-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/event-boxed-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/event-case.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/event-case.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/event-nest-struct.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/event-nest-struct.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-array-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-array-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-bad-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-bad-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-bad-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-bad-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-base-any.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-base-any.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-base-union.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-base-union.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-clash-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-clash-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-incomplete-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-incomplete-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-inline.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-inline.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-int-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-int-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-invalid-branch-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-invalid-branch-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-invalid-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-invalid-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-no-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-no-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-optional-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-optional-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-string-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/flat-union-string-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/funny-char.err: -------------------------------------------------------------------------------- 1 | tests/qapi-schema/funny-char.json:2:36: Stray ";" 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/funny-char.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/funny-char.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/ident-with-escape.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/ident-with-escape.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-before-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-before-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-cycle.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-cycle.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-extra-junk.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-extra-junk.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-format-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-format-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-nested-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-nested-err.json: -------------------------------------------------------------------------------- 1 | { 'include': 'missing-colon.json' } 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-nested-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-no-file.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-no-file.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-non-file.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-non-file.json: -------------------------------------------------------------------------------- 1 | { 'include': {} } 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-non-file.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-relpath.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-relpath.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-repetition.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-repetition.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-self-cycle.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-self-cycle.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-simple.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/include-simple.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/indented-expr.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/indented-expr.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/leading-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/leading-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/leading-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/leading-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/missing-colon.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/missing-colon.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/missing-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/missing-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/missing-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/missing-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/missing-type.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/missing-type.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/nested-struct-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/nested-struct-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/non-objects.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/non-objects.json: -------------------------------------------------------------------------------- 1 | 'string' 2 | [ ] 3 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/non-objects.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/oob-test.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/oob-test.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/pragma-doc-required-crap.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/pragma-doc-required-crap.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/pragma-extra-junk.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/pragma-extra-junk.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/pragma-name-case-whitelist-crap.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/pragma-name-case-whitelist-crap.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/pragma-non-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/pragma-non-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/pragma-returns-whitelist-crap.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/pragma-returns-whitelist-crap.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/qapi-schema-test.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/qapi-schema-test.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/quoted-structural-chars.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/quoted-structural-chars.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/redefined-builtin.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/redefined-builtin.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/redefined-command.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/redefined-command.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/redefined-event.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/redefined-event.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/redefined-type.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/redefined-type.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/reserved-command-q.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/reserved-command-q.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/reserved-enum-q.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/reserved-enum-q.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/reserved-member-has.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/reserved-member-has.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/reserved-member-q.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/reserved-member-q.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/reserved-member-u.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/reserved-member-u.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/reserved-member-underscore.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/reserved-member-underscore.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/reserved-type-kind.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/reserved-type-kind.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/reserved-type-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/reserved-type-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/returns-alternate.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/returns-alternate.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/returns-array-bad.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/returns-array-bad.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/returns-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/returns-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/returns-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/returns-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/returns-whitelist.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/returns-whitelist.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/struct-base-clash-deep.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/struct-base-clash-deep.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/struct-base-clash.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/struct-base-clash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/struct-data-invalid.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/struct-data-invalid.json: -------------------------------------------------------------------------------- 1 | { 'struct': 'foo', 2 | 'data': false } 3 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/struct-data-invalid.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/struct-member-invalid.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/struct-member-invalid.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/trailing-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/trailing-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/trailing-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/trailing-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/type-bypass-bad-gen.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/type-bypass-bad-gen.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/unclosed-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/unclosed-list.json: -------------------------------------------------------------------------------- 1 | { 'key': [ 'value' } 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/unclosed-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/unclosed-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/unclosed-object.json: -------------------------------------------------------------------------------- 1 | { 'key': [ 'value' ] 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/unclosed-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/unclosed-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/unclosed-string.json: -------------------------------------------------------------------------------- 1 | { 'text': 'lorem ips 2 | } 3 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/unclosed-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/unicode-str.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/unicode-str.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/union-base-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/union-base-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/union-base-no-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/union-base-no-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/union-branch-case.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/union-branch-case.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/union-clash-branches.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/union-clash-branches.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/union-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/union-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/union-invalid-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/union-invalid-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/union-optional-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/union-optional-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/union-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/union-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/unknown-escape.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/unknown-escape.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/unknown-expr-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qcu-device/tests/qapi-schema/unknown-expr-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/tests/tcg/mips/mips64-dspr2/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2012,8,3,16,41,52 3 | -------------------------------------------------------------------------------- /qcu-device/tests/vm/README: -------------------------------------------------------------------------------- 1 | See docs/devel/testing.rst for help. 2 | -------------------------------------------------------------------------------- /qcu-device/thunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/thunk.c -------------------------------------------------------------------------------- /qcu-device/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/tpm.c -------------------------------------------------------------------------------- /qcu-device/trace-events: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/trace-events -------------------------------------------------------------------------------- /qcu-device/trace/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/trace/mem.h -------------------------------------------------------------------------------- /qcu-device/trace/qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/trace/qmp.c -------------------------------------------------------------------------------- /qcu-device/ui/cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/cocoa.m -------------------------------------------------------------------------------- /qcu-device/ui/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/console.c -------------------------------------------------------------------------------- /qcu-device/ui/curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/curses.c -------------------------------------------------------------------------------- /qcu-device/ui/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/cursor.c -------------------------------------------------------------------------------- /qcu-device/ui/gtk-egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/gtk-egl.c -------------------------------------------------------------------------------- /qcu-device/ui/gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/gtk.c -------------------------------------------------------------------------------- /qcu-device/ui/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/input.c -------------------------------------------------------------------------------- /qcu-device/ui/keycodemapdb/tests/python2: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | python ./test.py 4 | -------------------------------------------------------------------------------- /qcu-device/ui/keycodemapdb/tests/python3: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | python3 ./test.py 4 | -------------------------------------------------------------------------------- /qcu-device/ui/keycodemapdb/thirdparty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qcu-device/ui/keymaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/keymaps.c -------------------------------------------------------------------------------- /qcu-device/ui/keymaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/keymaps.h -------------------------------------------------------------------------------- /qcu-device/ui/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/sdl.c -------------------------------------------------------------------------------- /qcu-device/ui/sdl2-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/sdl2-2d.c -------------------------------------------------------------------------------- /qcu-device/ui/sdl2-gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/sdl2-gl.c -------------------------------------------------------------------------------- /qcu-device/ui/sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/sdl2.c -------------------------------------------------------------------------------- /qcu-device/ui/sdl_zoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/sdl_zoom.c -------------------------------------------------------------------------------- /qcu-device/ui/sdl_zoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/sdl_zoom.h -------------------------------------------------------------------------------- /qcu-device/ui/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/shader.c -------------------------------------------------------------------------------- /qcu-device/ui/vgafont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/vgafont.h -------------------------------------------------------------------------------- /qcu-device/ui/vnc-jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/vnc-jobs.c -------------------------------------------------------------------------------- /qcu-device/ui/vnc-jobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/vnc-jobs.h -------------------------------------------------------------------------------- /qcu-device/ui/vnc-ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/vnc-ws.c -------------------------------------------------------------------------------- /qcu-device/ui/vnc-ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/vnc-ws.h -------------------------------------------------------------------------------- /qcu-device/ui/vnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/vnc.c -------------------------------------------------------------------------------- /qcu-device/ui/vnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/vnc.h -------------------------------------------------------------------------------- /qcu-device/ui/x_keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/x_keymap.c -------------------------------------------------------------------------------- /qcu-device/ui/x_keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/ui/x_keymap.h -------------------------------------------------------------------------------- /qcu-device/util/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/acl.c -------------------------------------------------------------------------------- /qcu-device/util/aiocb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/aiocb.c -------------------------------------------------------------------------------- /qcu-device/util/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/async.c -------------------------------------------------------------------------------- /qcu-device/util/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/base64.c -------------------------------------------------------------------------------- /qcu-device/util/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/bitmap.c -------------------------------------------------------------------------------- /qcu-device/util/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/bitops.c -------------------------------------------------------------------------------- /qcu-device/util/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/buffer.c -------------------------------------------------------------------------------- /qcu-device/util/crc32c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/crc32c.c -------------------------------------------------------------------------------- /qcu-device/util/cutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/cutils.c -------------------------------------------------------------------------------- /qcu-device/util/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/error.c -------------------------------------------------------------------------------- /qcu-device/util/fifo8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/fifo8.c -------------------------------------------------------------------------------- /qcu-device/util/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/id.c -------------------------------------------------------------------------------- /qcu-device/util/iov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/iov.c -------------------------------------------------------------------------------- /qcu-device/util/keyval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/keyval.c -------------------------------------------------------------------------------- /qcu-device/util/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/log.c -------------------------------------------------------------------------------- /qcu-device/util/memfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/memfd.c -------------------------------------------------------------------------------- /qcu-device/util/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/module.c -------------------------------------------------------------------------------- /qcu-device/util/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/notify.c -------------------------------------------------------------------------------- /qcu-device/util/osdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/osdep.c -------------------------------------------------------------------------------- /qcu-device/util/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/path.c -------------------------------------------------------------------------------- /qcu-device/util/qdist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/qdist.c -------------------------------------------------------------------------------- /qcu-device/util/qht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/qht.c -------------------------------------------------------------------------------- /qcu-device/util/range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/range.c -------------------------------------------------------------------------------- /qcu-device/util/rcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/rcu.c -------------------------------------------------------------------------------- /qcu-device/util/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/uri.c -------------------------------------------------------------------------------- /qcu-device/util/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/util/uuid.c -------------------------------------------------------------------------------- /qcu-device/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/version.rc -------------------------------------------------------------------------------- /qcu-device/vl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-device/vl.c -------------------------------------------------------------------------------- /qcu-driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-driver/Makefile -------------------------------------------------------------------------------- /qcu-library/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-library/Makefile -------------------------------------------------------------------------------- /qcu-library/libcudart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/qcu-library/libcudart.c -------------------------------------------------------------------------------- /qcu-library/shared.version: -------------------------------------------------------------------------------- 1 | libcudart.so.9.0{ 2 | *; 3 | }; 4 | 5 | -------------------------------------------------------------------------------- /wgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldfunction/qCUDA/HEAD/wgs.py --------------------------------------------------------------------------------