├── CODING_STYLE ├── COPYING ├── COPYING.LIB ├── Changelog ├── Full ├── cpu-exec.c └── linux_vmi_new.cpp ├── HACKING ├── LICENSE ├── MAINTAINERS ├── Makefile ├── Makefile.objs ├── Makefile.target ├── README.md ├── README_QEMU ├── TRENDnet ticket.pdf ├── VERSION ├── accel ├── Makefile.objs ├── accel.c ├── kvm │ ├── Makefile.objs │ ├── kvm-all.c │ └── trace-events ├── stubs │ ├── Makefile.objs │ ├── kvm-stub.c │ └── tcg-stub.c └── tcg │ ├── Makefile.objs │ ├── cpu-exec-common.c │ ├── cpu-exec.c │ ├── cputlb.c │ ├── tcg-all.c │ ├── trace-events │ ├── translate-all.c │ └── translate-all.h ├── afl-qemu-cpu-inl.h ├── arch_init.c ├── atomic_template.h ├── 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.c ├── hostmem-file.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 ├── 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 ├── parallels.c ├── 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 ├── 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 ├── 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 ├── config.h ├── 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.c │ └── libvhost-user.h └── 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 ├── 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 ├── 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 ├── 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-softmmu.mak └── xtensaeb-softmmu.mak ├── device-hotplug.c ├── device_tree.c ├── disas.c ├── disas ├── Makefile.objs ├── alpha.c ├── arm-a64.cc ├── arm.c ├── cris.c ├── hppa.c ├── i386.c ├── ia64.c ├── libvixl │ ├── LICENCE │ ├── Makefile.objs │ ├── README │ └── 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 ├── s390.c ├── sh4.c ├── sparc.c └── tci.c ├── dlink-email-cve.pdf ├── dlink-email-cve2.pdf ├── dma-helpers.c ├── docs ├── COLO-FT.txt ├── block-replication.txt ├── bootindex.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 │ ├── lockcnt.txt │ ├── memory.txt │ ├── migration.txt │ ├── multi-thread-tcg.txt │ ├── multiple-iothreads.txt │ ├── qapi-code-gen.txt │ ├── rcu.txt │ ├── 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 │ ├── 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 ├── qcow2-cache.txt ├── qdev-device-use.txt ├── 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 │ ├── 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 ├── 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 ├── 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-empty-ranges.dts │ ├── bad-name-property.dts │ ├── bad-ncells.dts │ ├── bad-octal-literal.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 │ ├── 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 │ ├── phandle_format.c │ ├── prop-after-subnode.dts │ ├── property_iterate.c │ ├── property_iterate.dts │ ├── propname_escapes.c │ ├── propname_escapes.dts │ ├── 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 │ ├── 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-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-macros.h ├── 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 ├── hax-stub.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 │ ├── gumstix.c │ ├── highbank.c │ ├── imx25_pdk.c │ ├── integratorcp.c │ ├── kzm.c │ ├── mainstone.c │ ├── mps2.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-ep108.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 │ ├── 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.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-properties-system.c │ ├── qdev-properties.c │ ├── qdev.c │ ├── register.c │ ├── reset.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 │ ├── 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.h │ ├── vga_int.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 │ ├── sun4m_iommu.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 ├── 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 │ ├── 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 │ │ └── pci-assign.c │ ├── kvmvapic.c │ ├── multiboot.c │ ├── multiboot.h │ ├── pc.c │ ├── pc_piix.c │ ├── pc_q35.c │ ├── pc_sysfw.c │ ├── pci-assign-load-rom.c │ ├── trace-events │ ├── 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.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 │ └── via.c ├── input │ ├── Makefile.objs │ ├── adb.c │ ├── hid.c │ ├── lm832x.c │ ├── milkymist-softusb.c │ ├── pckbd.c │ ├── pl050.c │ ├── ps2.c │ ├── pxa2xx_keypad.c │ ├── stellaris_input.c │ ├── trace-events │ ├── tsc2005.c │ ├── tsc210x.c │ ├── virtio-input-hid.c │ ├── virtio-input-host.c │ ├── virtio-input.c │ └── vmmouse.c ├── intc │ ├── Makefile.objs │ ├── allwinner-a10-pic.c │ ├── apic.c │ ├── apic_common.c │ ├── arm_gic.c │ ├── arm_gic_common.c │ ├── arm_gic_kvm.c │ ├── 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 │ ├── intc.c │ ├── ioapic.c │ ├── ioapic_common.c │ ├── lm32_pic.c │ ├── mips_gic.c │ ├── nios2_iic.c │ ├── omap_intc.c │ ├── openpic.c │ ├── openpic_kvm.c │ ├── pl190.c │ ├── puv3_intc.c │ ├── realview_gic.c │ ├── s390_flic.c │ ├── s390_flic_kvm.c │ ├── sh_intc.c │ ├── slavio_intctl.c │ ├── trace-events │ ├── vgic_common.h │ ├── xics.c │ ├── xics_kvm.c │ ├── xics_pnv.c │ ├── xics_spapr.c │ └── xilinx_intc.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 │ ├── lpc_ich9.c │ ├── pc87312.c │ ├── piix4.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 ├── mips │ ├── Makefile.objs │ ├── addr.c │ ├── boston.c │ ├── cps.c │ ├── cputimer.c │ ├── gt64xxx_pci.c │ ├── mips_fulong2e.c │ ├── mips_int.c │ ├── mips_jazz.c │ ├── mips_malta.c │ ├── mips_mipssim.c │ └── mips_r4k.c ├── misc │ ├── Makefile.objs │ ├── a9scu.c │ ├── applesmc.c │ ├── arm11scu.c │ ├── arm_integrator_debug.c │ ├── arm_l2x0.c │ ├── arm_sysctl.c │ ├── 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 │ ├── imx31_ccm.c │ ├── imx6_ccm.c │ ├── imx6_src.c │ ├── imx_ccm.c │ ├── ivshmem.c │ ├── macio │ │ ├── Makefile.objs │ │ ├── cuda.c │ │ ├── mac_dbdma.c │ │ └── macio.c │ ├── max111x.c │ ├── milkymist-hpdmc.c │ ├── milkymist-pfpu.c │ ├── mips_cmgcr.c │ ├── mips_cpc.c │ ├── mips_itu.c │ ├── mmio_interface.c │ ├── mps2-scc.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 │ ├── unimp.c │ ├── vmport.c │ ├── zynq-xadc.c │ └── zynq_slcr.c ├── moxie │ ├── Makefile.objs │ └── moxiesim.c ├── net │ ├── Makefile.objs │ ├── allwinner_emac.c │ ├── cadence_gem.c │ ├── dp8393x.c │ ├── e1000.c │ ├── e1000_regs.h │ ├── 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 │ ├── 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 │ ├── 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_root_port.c │ ├── xio3130_downstream.c │ ├── xio3130_downstream.h │ ├── xio3130_upstream.c │ └── xio3130_upstream.h ├── pci-host │ ├── Makefile.objs │ ├── apb.c │ ├── bonito.c │ ├── gpex.c │ ├── grackle.c │ ├── pam.c │ ├── piix.c │ ├── ppce500.c │ ├── prep.c │ ├── q35.c │ ├── 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_bamboo.c │ ├── ppc4xx_devs.c │ ├── ppc4xx_pci.c │ ├── ppc_booke.c │ ├── ppce500_spin.c │ ├── prep.c │ ├── prep_systemio.c │ ├── rs6000_mc.c │ ├── spapr.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 ├── 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-skeys-kvm.c │ ├── s390-skeys.c │ ├── s390-stattrib-kvm.c │ ├── s390-stattrib.c │ ├── s390-virtio-ccw.c │ ├── s390-virtio-hcall.c │ ├── s390-virtio.c │ ├── s390-virtio.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 │ ├── 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 │ └── trace-events ├── sparc64 │ ├── Makefile.objs │ ├── niagara.c │ ├── sparc64.c │ └── sun4u.c ├── ssi │ ├── Makefile.objs │ ├── aspeed_smc.c │ ├── imx_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 │ ├── 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 ├── tpm │ ├── Makefile.objs │ ├── tpm_int.h │ ├── tpm_passthrough.c │ ├── tpm_tis.c │ ├── tpm_tis.h │ ├── tpm_util.c │ └── tpm_util.h ├── 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 │ ├── 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-legacy.c │ ├── host-libusb.c │ ├── host-stub.c │ ├── host.h │ ├── libhw.c │ ├── quirks-ftdi-ids.h │ ├── quirks-pl2303-ids.h │ ├── quirks.c │ ├── quirks.h │ ├── redirect.c │ ├── trace-events │ ├── tusb6010.c │ └── xen-usb.c ├── vfio │ ├── Makefile.objs │ ├── amd-xgbe.c │ ├── calxeda-xgmac.c │ ├── ccw.c │ ├── common.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_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 │ └── xtfpga.c ├── include ├── block │ ├── accounting.h │ ├── aio.h │ ├── block.h │ ├── block_backup.h │ ├── block_int.h │ ├── blockjob.h │ ├── blockjob_int.h │ ├── dirty-bitmap.h │ ├── nbd.h │ ├── qapi.h │ ├── raw-aio.h │ ├── scsi.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 │ └── 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 │ └── user │ │ ├── abitypes.h │ │ └── thunk.h ├── fpu │ └── 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 │ │ ├── armv7m_nvic.h │ │ ├── aspeed_soc.h │ │ ├── bcm2835_peripherals.h │ │ ├── bcm2836.h │ │ ├── digic.h │ │ ├── exynos4210.h │ │ ├── fdt.h │ │ ├── fsl-imx25.h │ │ ├── fsl-imx31.h │ │ ├── fsl-imx6.h │ │ ├── linux-boot-if.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 │ ├── 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 │ │ ├── pl011.h │ │ ├── serial.h │ │ ├── stm32f2xx_usart.h │ │ └── xilinx_uartlite.h │ ├── compat.h │ ├── core │ │ └── generic-loader.h │ ├── cpu │ │ ├── a15mpcore.h │ │ ├── a9mpcore.h │ │ ├── arm11mpcore.h │ │ └── core.h │ ├── cris │ │ ├── etraxfs.h │ │ └── etraxfs_dma.h │ ├── devices.h │ ├── display │ │ ├── bcm2835_fb.h │ │ ├── dpcd.h │ │ └── xlnx_dp.h │ ├── dma │ │ ├── bcm2835_dma.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 │ │ └── 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 │ │ └── 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 │ │ ├── aspeed_vic.h │ │ ├── bcm2835_ic.h │ │ ├── bcm2836_control.h │ │ ├── imx_avic.h │ │ ├── intc.h │ │ ├── mips_gic.h │ │ └── realview_gic.h │ ├── ipack │ │ └── ipack.h │ ├── ipmi │ │ └── ipmi.h │ ├── irq.h │ ├── isa │ │ ├── apm.h │ │ ├── i8257.h │ │ ├── i8259_internal.h │ │ ├── isa.h │ │ ├── pc87312.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 │ │ ├── imx31_ccm.h │ │ ├── imx6_ccm.h │ │ ├── imx6_src.h │ │ ├── imx_ccm.h │ │ ├── ivshmem.h │ │ ├── mips_cmgcr.h │ │ ├── mips_cpc.h │ │ ├── mips_itu.h │ │ ├── mmio_interface.h │ │ ├── mps2-scc.h │ │ ├── stm32f2xx_syscfg.h │ │ ├── tmp105_regs.h │ │ ├── unimp.h │ │ └── zynq-xadc.h │ ├── net │ │ ├── allwinner_emac.h │ │ ├── cadence_gem.h │ │ ├── ftgmac100.h │ │ ├── imx_fec.h │ │ └── mii.h │ ├── nmi.h │ ├── nvram │ │ ├── chrp_nvram.h │ │ ├── eeprom93xx.h │ │ ├── fw_cfg.h │ │ ├── fw_cfg_keys.h │ │ └── sun_nvram.h │ ├── or-irq.h │ ├── pci-host │ │ ├── apb.h │ │ ├── gpex.h │ │ ├── pam.h │ │ ├── ppce500.h │ │ ├── q35.h │ │ ├── spapr.h │ │ └── xilinx-pcie.h │ ├── pci │ │ ├── msi.h │ │ ├── msix.h │ │ ├── pci-assign.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 │ │ ├── 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 │ ├── 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.h │ ├── ssi │ │ ├── aspeed_smc.h │ │ ├── imx_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 │ │ ├── stm32f2xx_timer.h │ │ └── sun4v-rtc.h │ ├── tricore │ │ └── tricore.h │ ├── unicore32 │ │ └── puv3.h │ ├── usb.h │ ├── usb │ │ ├── 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-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-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 ├── 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 │ └── 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 │ ├── 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 │ │ ├── qnum.h │ │ ├── qobject.h │ │ ├── qstring.h │ │ └── types.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 │ ├── jhash.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 │ ├── 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 │ └── xattr.h ├── qom │ ├── cpu.h │ ├── object.h │ ├── object_interfaces.h │ └── qom-qobject.h ├── standard-headers │ ├── asm-s390 │ │ ├── kvm_virtio.h │ │ └── virtio-ccw.h │ ├── asm-x86 │ │ └── hyperv.h │ └── linux │ │ ├── if_ether.h │ │ ├── input-event-codes.h │ │ ├── input.h │ │ ├── pci_regs.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 ├── sysemu │ ├── accel.h │ ├── arch_init.h │ ├── balloon.h │ ├── block-backend.h │ ├── blockdev.h │ ├── bt.h │ ├── cpus.h │ ├── cryptodev.h │ ├── device_tree.h │ ├── dma.h │ ├── dump-arch.h │ ├── dump.h │ ├── hax.h │ ├── hostmem.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 │ ├── sysemu.h │ ├── tpm.h │ ├── tpm_backend.h │ ├── tpm_backend_int.h │ ├── watchdog.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 ├── task.c └── trace-events ├── ioport.c ├── iothread.c ├── libdecnumber ├── decContext.c ├── decNumber.c └── dpd │ ├── decimal128.c │ ├── decimal32.c │ └── decimal64.c ├── libnvram ├── alias.h ├── config.h └── nvram.h ├── 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 ├── 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 │ ├── 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_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── alpha │ ├── syscall_nr.h │ ├── target_cpu.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_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── cris │ ├── syscall_nr.h │ ├── target_cpu.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_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── i386 │ ├── syscall_nr.h │ ├── target_cpu.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_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── main.c ├── microblaze │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── mips │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── mips64 │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── mmap.c ├── nios2 │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── openrisc │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── ppc │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── qemu.h ├── s390x │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── safe-syscall.S ├── sh4 │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── signal.c ├── socket.h ├── sparc │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── sparc64 │ ├── syscall_nr.h │ ├── target_cpu.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_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── trace-events ├── uaccess.c ├── uname.c ├── uname.h ├── unicore32 │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── vm86.c └── x86_64 │ ├── syscall_nr.h │ ├── target_cpu.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.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 ├── 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 ├── package_required ├── paper └── ISSTA_Efficient greybox fuzzing of applications in Linux-based IoT devices via enhanced user-mode emulation.pdf ├── pc-bios ├── Makefile ├── QEMU,cgthree.bin ├── QEMU,tcx.bin ├── README ├── acpi-dsdt.aml ├── bamboo.dtb ├── bamboo.dts ├── bios-256k.bin ├── bios.bin ├── efi-e1000.rom ├── efi-e1000e.rom ├── efi-eepro100.rom ├── efi-ne2k_pci.rom ├── efi-pcnet.rom ├── efi-rtl8139.rom ├── efi-virtio.rom ├── efi-vmxnet3.rom ├── keymaps │ ├── ar │ ├── bepo │ ├── common │ ├── cz │ ├── da │ ├── de │ ├── de-ch │ ├── en-gb │ ├── en-us │ ├── es │ ├── et │ ├── fi │ ├── fo │ ├── fr │ ├── fr-be │ ├── fr-ca │ ├── fr-ch │ ├── hr │ ├── hu │ ├── is │ ├── it │ ├── ja │ ├── lt │ ├── lv │ ├── mk │ ├── modifiers │ ├── nl │ ├── nl-be │ ├── no │ ├── pl │ ├── pt │ ├── pt-br │ ├── ru │ ├── sl │ ├── sv │ ├── th │ └── tr ├── kvmvapic.bin ├── linuxboot.bin ├── 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.h │ ├── main.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.e500 ├── vgabios-cirrus.bin ├── vgabios-qxl.bin ├── vgabios-stdvga.bin ├── vgabios-virtio.bin ├── vgabios-vmware.bin └── vgabios.bin ├── pixman ├── .gitignore ├── AUTHORS ├── CODING_STYLE ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.win32 ├── Makefile.win32.common ├── NEWS ├── README ├── RELEASING ├── autogen.sh ├── configure.ac ├── demos │ ├── Makefile.am │ ├── alpha-test.c │ ├── checkerboard.c │ ├── clip-in.c │ ├── clip-test.c │ ├── composite-test.c │ ├── conical-test.c │ ├── convolution-test.c │ ├── gradient-test.c │ ├── gtk-utils.c │ ├── gtk-utils.h │ ├── linear-gradient.c │ ├── parrot.c │ ├── parrot.jpg │ ├── quad2quad.c │ ├── radial-test.c │ ├── scale.c │ ├── scale.ui │ ├── screen-test.c │ ├── srgb-test.c │ ├── srgb-trap-test.c │ ├── trap-test.c │ ├── tri-test.c │ └── zone_plate.png ├── pixman-1-uninstalled.pc.in ├── pixman-1.pc.in ├── pixman │ ├── Makefile.am │ ├── Makefile.sources │ ├── Makefile.win32 │ ├── loongson-mmintrin.h │ ├── make-srgb.pl │ ├── pixman-access-accessors.c │ ├── pixman-access.c │ ├── pixman-accessor.h │ ├── pixman-arm-common.h │ ├── pixman-arm-detect-win32.asm │ ├── pixman-arm-neon-asm-bilinear.S │ ├── pixman-arm-neon-asm.S │ ├── pixman-arm-neon-asm.h │ ├── pixman-arm-neon.c │ ├── pixman-arm-simd-asm-scaled.S │ ├── pixman-arm-simd-asm.S │ ├── pixman-arm-simd-asm.h │ ├── pixman-arm-simd.c │ ├── pixman-arm.c │ ├── pixman-bits-image.c │ ├── pixman-combine-float.c │ ├── pixman-combine32.c │ ├── pixman-combine32.h │ ├── pixman-compiler.h │ ├── pixman-conical-gradient.c │ ├── pixman-edge-accessors.c │ ├── pixman-edge-imp.h │ ├── pixman-edge.c │ ├── pixman-fast-path.c │ ├── pixman-filter.c │ ├── pixman-general.c │ ├── pixman-glyph.c │ ├── pixman-gradient-walker.c │ ├── pixman-image.c │ ├── pixman-implementation.c │ ├── pixman-inlines.h │ ├── pixman-linear-gradient.c │ ├── pixman-matrix.c │ ├── pixman-mips-dspr2-asm.S │ ├── pixman-mips-dspr2-asm.h │ ├── pixman-mips-dspr2.c │ ├── pixman-mips-dspr2.h │ ├── pixman-mips-memcpy-asm.S │ ├── pixman-mips.c │ ├── pixman-mmx.c │ ├── pixman-noop.c │ ├── pixman-ppc.c │ ├── pixman-private.h │ ├── pixman-radial-gradient.c │ ├── pixman-region.c │ ├── pixman-region16.c │ ├── pixman-region32.c │ ├── pixman-solid-fill.c │ ├── pixman-sse2.c │ ├── pixman-ssse3.c │ ├── pixman-timer.c │ ├── pixman-trap.c │ ├── pixman-utils.c │ ├── pixman-version.h.in │ ├── pixman-vmx.c │ ├── pixman-x86.c │ ├── pixman.c │ ├── pixman.h │ ├── rounding.txt │ └── solaris-hwcap.mapfile └── test │ ├── Makefile.am │ ├── Makefile.sources │ ├── Makefile.win32 │ ├── a1-trap-test.c │ ├── affine-test.c │ ├── alpha-loop.c │ ├── alphamap.c │ ├── blitters-test.c │ ├── check-formats.c │ ├── combiner-test.c │ ├── composite-traps-test.c │ ├── composite.c │ ├── fetch-test.c │ ├── fuzzer-find-diff.pl │ ├── glyph-test.c │ ├── gradient-crash-test.c │ ├── infinite-loop.c │ ├── lowlevel-blt-bench.c │ ├── matrix-test.c │ ├── oob-test.c │ ├── pdf-op-test.c │ ├── pixel-test.c │ ├── prng-test.c │ ├── radial-perf-test.c │ ├── region-contains-test.c │ ├── region-test.c │ ├── region-translate-test.c │ ├── rotate-test.c │ ├── scaling-bench.c │ ├── scaling-crash-test.c │ ├── scaling-helpers-test.c │ ├── scaling-test.c │ ├── stress-test.c │ ├── thread-test.c │ ├── trap-crasher.c │ ├── utils-prng.c │ ├── utils-prng.h │ ├── utils.c │ └── utils.h ├── po ├── Makefile ├── bg.po ├── de_DE.po ├── fr_FR.po ├── hu.po ├── it.po ├── messages.po ├── tr.po └── zh_CN.po ├── qapi-schema.json ├── qapi ├── Makefile.objs ├── block-core.json ├── block.json ├── common.json ├── crypto.json ├── event.json ├── introspect.json ├── opts-visitor.c ├── qapi-clone-visitor.c ├── qapi-dealloc-visitor.c ├── 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 ├── string-input-visitor.c ├── string-output-visitor.c ├── trace-events └── trace.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-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 ├── 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.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 │ │ │ ├── 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 │ │ │ ├── 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 │ ├── .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 │ │ ├── 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-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 │ │ │ ├── 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 │ │ ├── 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 │ ├── 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 │ ├── 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 │ │ ├── chip.c │ │ ├── console-log.c │ │ ├── console.c │ │ ├── cpu.c │ │ ├── device.c │ │ ├── errorlog.c │ │ ├── exceptions.c │ │ ├── fast-reboot.c │ │ ├── fdt.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-opal.c │ │ ├── pci-slot.c │ │ ├── pci.c │ │ ├── pcie-slot.c │ │ ├── pel.c │ │ ├── platform.c │ │ ├── pool.c │ │ ├── relocate.c │ │ ├── rtc.c │ │ ├── sensor.c │ │ ├── stack.c │ │ ├── test │ │ │ ├── Makefile.check │ │ │ ├── run-console-log-buf-overrun.c │ │ │ ├── run-console-log-pr_fmt.c │ │ │ ├── run-console-log.c │ │ │ ├── run-device.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 │ │ ├── bmc.txt │ │ ├── console-log.txt │ │ ├── device-tree.txt │ │ ├── device-tree │ │ │ ├── examples │ │ │ │ └── power9-phb4.dts │ │ │ ├── ibm,opal.txt │ │ │ ├── ibm,opal │ │ │ │ ├── diagnostics.txt │ │ │ │ ├── firmware.txt │ │ │ │ ├── flash.txt │ │ │ │ ├── led.txt │ │ │ │ ├── oppanel.txt │ │ │ │ ├── power-mgt.txt │ │ │ │ └── sensors.txt │ │ │ ├── nvlink.txt │ │ │ ├── nx.txt │ │ │ ├── reserved-memory.txt │ │ │ └── vpd.txt │ │ ├── error-logging.txt │ │ ├── gcov.txt │ │ ├── memory.txt │ │ ├── nvlink.txt │ │ ├── opal-api │ │ │ ├── opal-cec-power-down-5.txt │ │ │ ├── opal-cec-reboot-6-116.txt │ │ │ ├── opal-check-token-80.txt │ │ │ ├── opal-code-update-76-77-78.txt │ │ │ ├── opal-console-read-write-1-2.txt │ │ │ ├── opal-flash-110-111-112.txt │ │ │ ├── opal-get-device-tree-118.txt │ │ │ ├── opal-get-msg-85.txt │ │ │ ├── opal-get-msi-39-40.txt │ │ │ ├── opal-get-xive-20.txt │ │ │ ├── opal-handle-interrupt.txt │ │ │ ├── opal-int-eoi-124.txt │ │ │ ├── opal-int-get-xirr-122.txt │ │ │ ├── opal-int-set-cppr-123.txt │ │ │ ├── opal-int-set-mfrr-125.txt │ │ │ ├── opal-invalid-call--1.txt │ │ │ ├── opal-led-get-set-114-115.txt │ │ │ ├── opal-messages.txt │ │ │ ├── opal-pci-get-phb-diag-data2-64.txt │ │ │ ├── opal-pci-get-power-state-120.txt │ │ │ ├── opal-pci-get-presence-state-119.txt │ │ │ ├── opal-pci-get-set-xive-reissue-35-36.txt │ │ │ ├── opal-pci-map-pe-dma-window-44.txt │ │ │ ├── opal-pci-map-pe-dma-window-real-45.txt │ │ │ ├── opal-pci-map-pe-mmio-window-29.txt │ │ │ ├── opal-pci-phb-mmio-enable-27.txt │ │ │ ├── opal-pci-set-mve-33.txt │ │ │ ├── opal-pci-set-mve-enable-34.txt │ │ │ ├── opal-pci-set-pe-31.txt │ │ │ ├── opal-pci-set-peltv-32.txt │ │ │ ├── opal-pci-set-phb-mem-window-28.txt │ │ │ ├── opal-pci-set-power-state-121.txt │ │ │ ├── opal-pci-set-xive-pe-37.txt │ │ │ ├── opal-pci-tce-kill-126.txt │ │ │ ├── opal-poll-events.txt │ │ │ ├── opal-prd-msg-113.txt │ │ │ ├── opal-read-write-tpo-103-104.txt │ │ │ ├── opal-register-dump-region-101.txt │ │ │ ├── opal-reinit-cpus-70.txt │ │ │ ├── opal-return-cpu-69.txt │ │ │ ├── opal-rtc-read-3.txt │ │ │ ├── opal-rtc-write-4.txt │ │ │ ├── opal-sensor-read-88.txt │ │ │ ├── opal-set-xive-19.txt │ │ │ ├── opal-sync-host-reboot-87.txt │ │ │ ├── opal-test-0.txt │ │ │ ├── opal-unregister-dump-region-102.txt │ │ │ ├── opal-xscom-read-write-65-66.txt │ │ │ ├── power9-changes.txt │ │ │ └── return-codes.txt │ │ ├── opal-spec.txt │ │ ├── overview.txt │ │ ├── pci-slot.txt │ │ ├── pci.txt │ │ ├── release-notes │ │ │ ├── skiboot-5.1.0-beta1.txt │ │ │ ├── skiboot-5.1.0-beta2.txt │ │ │ ├── skiboot-5.1.0.txt │ │ │ ├── skiboot-5.1.1.txt │ │ │ ├── skiboot-5.1.10.txt │ │ │ ├── skiboot-5.1.11.txt │ │ │ ├── skiboot-5.1.12.txt │ │ │ ├── skiboot-5.1.13.txt │ │ │ ├── skiboot-5.1.14.txt │ │ │ ├── skiboot-5.1.15.txt │ │ │ ├── skiboot-5.1.16.txt │ │ │ ├── skiboot-5.1.17.txt │ │ │ ├── skiboot-5.1.2.txt │ │ │ ├── skiboot-5.1.3.txt │ │ │ ├── skiboot-5.1.4.txt │ │ │ ├── skiboot-5.1.5.txt │ │ │ ├── skiboot-5.1.6.txt │ │ │ ├── skiboot-5.1.7.txt │ │ │ ├── skiboot-5.1.8.txt │ │ │ ├── skiboot-5.1.9.txt │ │ │ ├── skiboot-5.2.0-rc1.txt │ │ │ ├── skiboot-5.2.0-rc2.txt │ │ │ ├── skiboot-5.2.0.txt │ │ │ ├── skiboot-5.2.1.txt │ │ │ ├── skiboot-5.2.2.txt │ │ │ ├── skiboot-5.2.3.txt │ │ │ ├── skiboot-5.2.4.txt │ │ │ ├── skiboot-5.2.5.txt │ │ │ ├── skiboot-5.3.0-rc1.txt │ │ │ ├── skiboot-5.3.0-rc2.txt │ │ │ ├── skiboot-5.3.0.txt │ │ │ ├── skiboot-5.3.1.txt │ │ │ ├── skiboot-5.3.2.txt │ │ │ ├── skiboot-5.3.3.txt │ │ │ ├── skiboot-5.3.4.txt │ │ │ ├── skiboot-5.3.5.txt │ │ │ ├── skiboot-5.3.6.txt │ │ │ └── skiboot-5.3.7.txt │ │ ├── stable-skiboot-rules.txt │ │ ├── versioning.txt │ │ └── xscom-node-bindings.txt │ ├── external │ │ ├── boot-tests │ │ │ ├── bmc_support.sh │ │ │ ├── boot_test.sh │ │ │ ├── extract_gcov.sh │ │ │ └── fsp_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 │ │ ├── fwts │ │ │ └── generate-fwts-olog │ │ ├── gard │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── Makefile.dist │ │ │ ├── config.h │ │ │ ├── gard.c │ │ │ ├── gard.h │ │ │ ├── rules.mk │ │ │ └── test │ │ │ │ ├── Makefile.check │ │ │ │ ├── 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 │ │ │ ├── README.md │ │ │ ├── mambo_utils.tcl │ │ │ └── skiboot.tcl │ │ ├── memboot │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── memboot.c │ │ ├── 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 │ │ │ ├── opal-prd.socket │ │ │ ├── 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 │ │ │ ├── lpc.h │ │ │ ├── pflash.c │ │ │ ├── powerpc_io.c │ │ │ ├── progress.c │ │ │ ├── progress.h │ │ │ └── rules.mk │ │ ├── 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 │ │ ├── iohub.c │ │ ├── memory.c │ │ ├── paca.c │ │ ├── pcia.c │ │ ├── slca.c │ │ ├── spira.c │ │ ├── spira.h │ │ ├── test │ │ │ ├── Makefile.check │ │ │ ├── hdata_to_dt.c │ │ │ ├── p8-840-spira.dt │ │ │ ├── p8-840-spira.spirah │ │ │ ├── p8-840-spira.spiras │ │ │ ├── p81-811.spira │ │ │ ├── p81-811.spira.dt │ │ │ ├── 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 │ │ ├── cec.c │ │ ├── centaur.c │ │ ├── chiptod.c │ │ ├── dts.c │ │ ├── ec │ │ │ ├── Makefile.inc │ │ │ ├── gpio.c │ │ │ └── makefile │ │ ├── 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 │ │ ├── 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-rtc.c │ │ ├── lpc-uart.c │ │ ├── lpc.c │ │ ├── npu-hw-procedures.c │ │ ├── npu.c │ │ ├── nx-842.c │ │ ├── nx-crypto.c │ │ ├── nx-rng.c │ │ ├── nx.c │ │ ├── occ.c │ │ ├── p7ioc-inits.c │ │ ├── p7ioc-phb.c │ │ ├── p7ioc.c │ │ ├── p8-i2c.c │ │ ├── phb3.c │ │ ├── phb4.c │ │ ├── prd.c │ │ ├── psi.c │ │ ├── sfc-ctrl.c │ │ ├── slw.c │ │ ├── xive.c │ │ └── xscom.c │ ├── include │ │ ├── affinity.h │ │ ├── asm-utils.h │ │ ├── ast.h │ │ ├── bitutils.h │ │ ├── bt.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.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 │ │ ├── interrupts.h │ │ ├── inttypes.h │ │ ├── io.h │ │ ├── ipmi.h │ │ ├── lock.h │ │ ├── lpc.h │ │ ├── mem-map.h │ │ ├── mem_region-malloc.h │ │ ├── mem_region.h │ │ ├── npu-regs.h │ │ ├── npu.h │ │ ├── nvram-format.h │ │ ├── nx.h │ │ ├── op-panel.h │ │ ├── opal-api.h │ │ ├── opal-internal.h │ │ ├── opal-msg.h │ │ ├── opal.h │ │ ├── p7ioc-regs.h │ │ ├── p7ioc.h │ │ ├── pci-cfg.h │ │ ├── pci-slot.h │ │ ├── pci.h │ │ ├── pel.h │ │ ├── phb3-regs.h │ │ ├── phb3.h │ │ ├── phb4-regs.h │ │ ├── phb4.h │ │ ├── platform.h │ │ ├── pool.h │ │ ├── processor.h │ │ ├── psi.h │ │ ├── rtc.h │ │ ├── sensor.h │ │ ├── sfc-ctrl.h │ │ ├── skiboot.h │ │ ├── spcn.h │ │ ├── stack.h │ │ ├── time-utils.h │ │ ├── timebase.h │ │ ├── timer.h │ │ ├── trace_types.h │ │ ├── types.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 │ │ │ ├── rand.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 │ │ │ ├── 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 │ │ └── 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 │ │ ├── pgas.h │ │ ├── pore_inline.h │ │ ├── pore_inline_assembler.c │ │ ├── sbe_xip_image.c │ │ └── sbe_xip_image.h │ ├── make_offsets.sh │ ├── make_version.sh │ ├── opal-ci │ │ ├── Makefile │ │ ├── README │ │ ├── build-qemu-powernv.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 │ │ │ ├── palmetto.c │ │ │ ├── pnor.c │ │ │ └── slots.c │ │ ├── ibm-fsp │ │ │ ├── Makefile.inc │ │ │ ├── apollo-pci.c │ │ │ ├── apollo.c │ │ │ ├── common.c │ │ │ ├── firenze-pci.c │ │ │ ├── firenze.c │ │ │ ├── ibm-fsp.h │ │ │ ├── lxvpd.c │ │ │ └── lxvpd.h │ │ ├── mambo │ │ │ ├── Makefile.inc │ │ │ └── mambo.c │ │ ├── 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_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 ├── u-boot │ ├── .gitignore │ ├── .mailmap │ ├── Kbuild │ ├── Kconfig │ ├── Licenses │ │ ├── Exceptions │ │ ├── OFL.txt │ │ ├── README │ │ ├── bsd-2-clause.txt │ │ ├── bsd-3-clause.txt │ │ ├── eCos-2.0.txt │ │ ├── gpl-2.0.txt │ │ ├── ibm-pibs.txt │ │ ├── isc.txt │ │ ├── lgpl-2.0.txt │ │ ├── lgpl-2.1.txt │ │ └── x11.txt │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── api │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── README │ │ ├── api.c │ │ ├── api_display.c │ │ ├── api_net.c │ │ ├── api_platform-arm.c │ │ ├── api_platform-mips.c │ │ ├── api_platform-powerpc.c │ │ ├── api_private.h │ │ └── api_storage.c │ ├── arch │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── arc │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu │ │ │ │ ├── arcv1 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ivt.S │ │ │ │ ├── arcv2 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ivt.S │ │ │ │ └── u-boot.lds │ │ │ ├── dts │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── abilis_tb100.dts │ │ │ │ ├── axc001.dtsi │ │ │ │ ├── axc003.dtsi │ │ │ │ ├── axs101.dts │ │ │ │ ├── axs103.dts │ │ │ │ ├── axs10x_mb.dtsi │ │ │ │ ├── hsdk.dts │ │ │ │ ├── nsim.dts │ │ │ │ └── skeleton.dtsi │ │ │ ├── include │ │ │ │ └── asm │ │ │ │ │ ├── arcregs.h │ │ │ │ │ ├── bitops.h │ │ │ │ │ ├── byteorder.h │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── global_data.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── linkage.h │ │ │ │ │ ├── posix_types.h │ │ │ │ │ ├── processor.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── sections.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── u-boot-arc.h │ │ │ │ │ ├── u-boot.h │ │ │ │ │ └── unaligned.h │ │ │ └── lib │ │ │ │ ├── Makefile │ │ │ │ ├── _millicodethunk.S │ │ │ │ ├── bootm.c │ │ │ │ ├── cache.c │ │ │ │ ├── cpu.c │ │ │ │ ├── init_helpers.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── ints_low.S │ │ │ │ ├── libgcc2.c │ │ │ │ ├── libgcc2.h │ │ │ │ ├── memcmp.S │ │ │ │ ├── memcpy-700.S │ │ │ │ ├── memset.S │ │ │ │ ├── relocate.c │ │ │ │ ├── reset.c │ │ │ │ ├── start.S │ │ │ │ ├── strchr-700.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy-700.S │ │ │ │ └── strlen.S │ │ ├── arm │ │ │ ├── Kconfig │ │ │ ├── Kconfig.debug │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu │ │ │ │ ├── Makefile │ │ │ │ ├── arm11 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cpu.c │ │ │ │ ├── arm1136 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mx31 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── devices.c │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ ├── relocate.S │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── mx35 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ ├── mx35_sdram.c │ │ │ │ │ │ ├── relocate.S │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── start.S │ │ │ │ │ └── u-boot-spl.lds │ │ │ │ ├── arm1176 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── start.S │ │ │ │ ├── arm720t │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ └── start.S │ │ │ │ ├── arm920t │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── ep93xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── imx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ └── timer.c │ │ │ │ │ └── start.S │ │ │ │ ├── arm926ejs │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── armada100 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── dram.c │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── lpc32xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clk.c │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── devices.c │ │ │ │ │ │ ├── dram.c │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── mx25 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ ├── relocate.S │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── mx27 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ ├── relocate.S │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── mxs │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── iomux.c │ │ │ │ │ │ ├── mxs.c │ │ │ │ │ │ ├── mxs_init.h │ │ │ │ │ │ ├── mxsimage-signed.cfg │ │ │ │ │ │ ├── mxsimage.mx23.cfg │ │ │ │ │ │ ├── mxsimage.mx28.cfg │ │ │ │ │ │ ├── spl_boot.c │ │ │ │ │ │ ├── spl_lradc_init.c │ │ │ │ │ │ ├── spl_mem_init.c │ │ │ │ │ │ ├── spl_power_init.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ ├── u-boot-imx23.bd │ │ │ │ │ │ ├── u-boot-imx28.bd │ │ │ │ │ │ └── u-boot-spl.lds │ │ │ │ │ ├── orion5x │ │ │ │ │ │ └── u-boot-spl.lds │ │ │ │ │ ├── spear │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ ├── spear600.c │ │ │ │ │ │ ├── spl.c │ │ │ │ │ │ ├── spr600_mt47h128m8_3_266_cl5_async.c │ │ │ │ │ │ ├── spr600_mt47h32m16_333_cl5_psync.c │ │ │ │ │ │ ├── spr600_mt47h32m16_37e_166_cl4_sync.c │ │ │ │ │ │ ├── spr600_mt47h64m16_3_333_cl5_psync.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ └── u-boot-spl.lds │ │ │ │ │ └── start.S │ │ │ │ ├── arm946es │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ └── start.S │ │ │ │ ├── armv7 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── arch_timer.c │ │ │ │ │ ├── bcm235xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clk-bcm235xx.c │ │ │ │ │ │ ├── clk-bsc.c │ │ │ │ │ │ ├── clk-core.c │ │ │ │ │ │ ├── clk-core.h │ │ │ │ │ │ ├── clk-eth.c │ │ │ │ │ │ ├── clk-sdio.c │ │ │ │ │ │ └── clk-usb-otg.c │ │ │ │ │ ├── bcm281xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clk-bcm281xx.c │ │ │ │ │ │ ├── clk-bsc.c │ │ │ │ │ │ ├── clk-core.c │ │ │ │ │ │ ├── clk-core.h │ │ │ │ │ │ ├── clk-eth.c │ │ │ │ │ │ ├── clk-sdio.c │ │ │ │ │ │ ├── clk-usb-otg.c │ │ │ │ │ │ └── reset.c │ │ │ │ │ ├── bcmcygnus │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── reset.c │ │ │ │ │ ├── bcmnsp │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── reset.c │ │ │ │ │ ├── cache_v7.c │ │ │ │ │ ├── cache_v7_asm.S │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cp15.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── iproc-common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── armpll.c │ │ │ │ │ │ ├── hwinit-common.c │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── kona-common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clk-stubs.c │ │ │ │ │ │ ├── hwinit-common.c │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ └── s_init.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── ls102xa │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ ├── fsl_epu.c │ │ │ │ │ │ ├── fsl_epu.h │ │ │ │ │ │ ├── fsl_ls1_serdes.c │ │ │ │ │ │ ├── fsl_ls1_serdes.h │ │ │ │ │ │ ├── ls102xa_psci.c │ │ │ │ │ │ ├── ls102xa_sata.c │ │ │ │ │ │ ├── ls102xa_serdes.c │ │ │ │ │ │ ├── psci.S │ │ │ │ │ │ ├── soc.c │ │ │ │ │ │ ├── spl.c │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── mx5 │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── soc.c │ │ │ │ │ ├── mx6 │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── litesom.c │ │ │ │ │ │ ├── mp.c │ │ │ │ │ │ ├── opos6ul.c │ │ │ │ │ │ └── soc.c │ │ │ │ │ ├── mx7 │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── clock_slice.c │ │ │ │ │ │ ├── psci-mx7.c │ │ │ │ │ │ ├── psci.S │ │ │ │ │ │ └── soc.c │ │ │ │ │ ├── mx7ulp │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── iomux.c │ │ │ │ │ │ ├── pcc.c │ │ │ │ │ │ ├── scg.c │ │ │ │ │ │ └── soc.c │ │ │ │ │ ├── nonsec_virt.S │ │ │ │ │ ├── psci-common.c │ │ │ │ │ ├── psci.S │ │ │ │ │ ├── s5p-common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpu_info.c │ │ │ │ │ │ ├── pwm.c │ │ │ │ │ │ ├── sromc.c │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── smccc-call.S │ │ │ │ │ ├── start.S │ │ │ │ │ ├── stv0991 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── lowlevel.S │ │ │ │ │ │ ├── pinmux.c │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── sunxi │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── fel_utils.S │ │ │ │ │ │ ├── psci.c │ │ │ │ │ │ ├── start.c │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ ├── tzpc.c │ │ │ │ │ │ └── u-boot-spl.lds │ │ │ │ │ ├── syslib.c │ │ │ │ │ ├── vf610 │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── virt-dt.c │ │ │ │ │ └── virt-v7.c │ │ │ │ ├── armv7m │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── mpu.c │ │ │ │ │ ├── start.S │ │ │ │ │ └── systick-timer.c │ │ │ │ ├── armv8 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.S │ │ │ │ │ ├── cache_v8.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu-dt.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── exceptions.S │ │ │ │ │ ├── fsl-layerscape │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── doc │ │ │ │ │ │ │ ├── README.lsch2 │ │ │ │ │ │ │ ├── README.lsch3 │ │ │ │ │ │ │ ├── README.qspi │ │ │ │ │ │ │ └── README.soc │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ ├── fsl_lsch2_serdes.c │ │ │ │ │ │ ├── fsl_lsch2_speed.c │ │ │ │ │ │ ├── fsl_lsch3_serdes.c │ │ │ │ │ │ ├── fsl_lsch3_speed.c │ │ │ │ │ │ ├── lowlevel.S │ │ │ │ │ │ ├── ls1012a_serdes.c │ │ │ │ │ │ ├── ls1043a_psci.S │ │ │ │ │ │ ├── ls1043a_serdes.c │ │ │ │ │ │ ├── ls1046a_serdes.c │ │ │ │ │ │ ├── ls2080a_serdes.c │ │ │ │ │ │ ├── mp.c │ │ │ │ │ │ ├── ppa.c │ │ │ │ │ │ ├── soc.c │ │ │ │ │ │ └── spl.c │ │ │ │ │ ├── fwcall.c │ │ │ │ │ ├── generic_timer.c │ │ │ │ │ ├── hisilicon │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── pinmux.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── psci.S │ │ │ │ │ ├── s32v234 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ └── generic.c │ │ │ │ │ ├── sec_firmware.c │ │ │ │ │ ├── sec_firmware_asm.S │ │ │ │ │ ├── smccc-call.S │ │ │ │ │ ├── spin_table.c │ │ │ │ │ ├── spin_table_v8.S │ │ │ │ │ ├── start.S │ │ │ │ │ ├── tlb.S │ │ │ │ │ ├── transition.S │ │ │ │ │ ├── u-boot-spl.lds │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── zynqmp │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clk.c │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── handoff.c │ │ │ │ │ │ ├── mp.c │ │ │ │ │ │ ├── slcr.c │ │ │ │ │ │ └── spl.c │ │ │ │ ├── pxa │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpuinfo.c │ │ │ │ │ ├── pxa2xx.c │ │ │ │ │ ├── relocate.S │ │ │ │ │ ├── start.S │ │ │ │ │ ├── timer.c │ │ │ │ │ └── usb.c │ │ │ │ ├── sa1100 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── start.S │ │ │ │ │ └── timer.c │ │ │ │ ├── u-boot-spl.lds │ │ │ │ └── u-boot.lds │ │ │ ├── dts │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── am335x-bone-common.dtsi │ │ │ │ ├── am335x-bone.dts │ │ │ │ ├── am335x-boneblack.dts │ │ │ │ ├── am335x-bonegreen.dts │ │ │ │ ├── am335x-draco.dts │ │ │ │ ├── am335x-draco.dtsi │ │ │ │ ├── am335x-evm-u-boot.dtsi │ │ │ │ ├── am335x-evm.dts │ │ │ │ ├── am335x-evmsk.dts │ │ │ │ ├── am335x-icev2.dts │ │ │ │ ├── am335x-pxm2.dtsi │ │ │ │ ├── am335x-pxm50.dts │ │ │ │ ├── am335x-rut.dts │ │ │ │ ├── am33xx-clocks.dtsi │ │ │ │ ├── am33xx.dtsi │ │ │ │ ├── am4372.dtsi │ │ │ │ ├── am437x-gp-evm-u-boot.dtsi │ │ │ │ ├── am437x-gp-evm.dts │ │ │ │ ├── am437x-idk-evm.dts │ │ │ │ ├── am437x-sk-evm.dts │ │ │ │ ├── am43x-epos-evm.dts │ │ │ │ ├── am43xx-clocks.dtsi │ │ │ │ ├── am571x-idk.dts │ │ │ │ ├── am572x-idk.dts │ │ │ │ ├── am57xx-beagle-x15-common.dtsi │ │ │ │ ├── am57xx-beagle-x15-revb1.dts │ │ │ │ ├── am57xx-beagle-x15.dts │ │ │ │ ├── am57xx-commercial-grade.dtsi │ │ │ │ ├── am57xx-idk-common.dtsi │ │ │ │ ├── am57xx-industrial-grade.dtsi │ │ │ │ ├── armada-370-xp.dtsi │ │ │ │ ├── armada-371x.dtsi │ │ │ │ ├── armada-3720-db.dts │ │ │ │ ├── armada-3720-espressobin.dts │ │ │ │ ├── armada-372x.dtsi │ │ │ │ ├── armada-375-db.dts │ │ │ │ ├── armada-375.dtsi │ │ │ │ ├── armada-37xx.dtsi │ │ │ │ ├── armada-380.dtsi │ │ │ │ ├── armada-385-amc.dts │ │ │ │ ├── armada-385.dtsi │ │ │ │ ├── armada-388-clearfog.dts │ │ │ │ ├── armada-388-gp.dts │ │ │ │ ├── armada-388.dtsi │ │ │ │ ├── armada-38x-controlcenterdc.dts │ │ │ │ ├── armada-38x.dtsi │ │ │ │ ├── armada-7040-db-nand.dts │ │ │ │ ├── armada-7040-db.dts │ │ │ │ ├── armada-7040.dtsi │ │ │ │ ├── armada-8020.dtsi │ │ │ │ ├── armada-8040-db.dts │ │ │ │ ├── armada-8040-mcbin.dts │ │ │ │ ├── armada-8040.dtsi │ │ │ │ ├── armada-ap806-quad.dtsi │ │ │ │ ├── armada-ap806.dtsi │ │ │ │ ├── armada-cp110-master.dtsi │ │ │ │ ├── armada-cp110-slave.dtsi │ │ │ │ ├── armada-xp-gp.dts │ │ │ │ ├── armada-xp-maxbcm.dts │ │ │ │ ├── armada-xp-mv78230.dtsi │ │ │ │ ├── armada-xp-mv78260.dtsi │ │ │ │ ├── armada-xp-mv78460.dtsi │ │ │ │ ├── armada-xp-synology-ds414.dts │ │ │ │ ├── armada-xp-theadorable.dts │ │ │ │ ├── armada-xp.dtsi │ │ │ │ ├── armv7-m.dtsi │ │ │ │ ├── ast2500-evb.dts │ │ │ │ ├── ast2500-u-boot.dtsi │ │ │ │ ├── ast2500.dtsi │ │ │ │ ├── at91-sama5d2_xplained.dts │ │ │ │ ├── at91-sama5d3_xplained.dts │ │ │ │ ├── at91-sama5d4_xplained.dts │ │ │ │ ├── at91-sama5d4ek.dts │ │ │ │ ├── at91sam9260-smartweb.dts │ │ │ │ ├── at91sam9260.dtsi │ │ │ │ ├── at91sam9260ek.dts │ │ │ │ ├── at91sam9261.dtsi │ │ │ │ ├── at91sam9263.dtsi │ │ │ │ ├── at91sam9263ek.dts │ │ │ │ ├── at91sam9g15.dtsi │ │ │ │ ├── at91sam9g15ek.dts │ │ │ │ ├── at91sam9g20-taurus.dts │ │ │ │ ├── at91sam9g20.dtsi │ │ │ │ ├── at91sam9g20ek.dts │ │ │ │ ├── at91sam9g20ek_2mmc.dts │ │ │ │ ├── at91sam9g20ek_common.dtsi │ │ │ │ ├── at91sam9g25.dtsi │ │ │ │ ├── at91sam9g25ek.dts │ │ │ │ ├── at91sam9g35.dtsi │ │ │ │ ├── at91sam9g35ek.dts │ │ │ │ ├── at91sam9g45-corvus.dts │ │ │ │ ├── at91sam9g45-gurnard.dts │ │ │ │ ├── at91sam9g45.dtsi │ │ │ │ ├── at91sam9m10g45ek.dts │ │ │ │ ├── at91sam9n12.dtsi │ │ │ │ ├── at91sam9n12ek.dts │ │ │ │ ├── at91sam9rl.dtsi │ │ │ │ ├── at91sam9rlek.dts │ │ │ │ ├── at91sam9x25.dtsi │ │ │ │ ├── at91sam9x25ek.dts │ │ │ │ ├── at91sam9x35.dtsi │ │ │ │ ├── at91sam9x35ek.dts │ │ │ │ ├── at91sam9x5.dtsi │ │ │ │ ├── at91sam9x5_can.dtsi │ │ │ │ ├── at91sam9x5_isi.dtsi │ │ │ │ ├── at91sam9x5_lcd.dtsi │ │ │ │ ├── at91sam9x5_macb0.dtsi │ │ │ │ ├── at91sam9x5_macb1.dtsi │ │ │ │ ├── at91sam9x5_usart3.dtsi │ │ │ │ ├── at91sam9x5cm.dtsi │ │ │ │ ├── at91sam9x5dm.dtsi │ │ │ │ ├── at91sam9x5ek.dtsi │ │ │ │ ├── axp152.dtsi │ │ │ │ ├── axp209.dtsi │ │ │ │ ├── axp22x.dtsi │ │ │ │ ├── axp809.dtsi │ │ │ │ ├── bcm2835-rpi-a-plus.dts │ │ │ │ ├── bcm2835-rpi-a.dts │ │ │ │ ├── bcm2835-rpi-b-plus.dts │ │ │ │ ├── bcm2835-rpi-b-rev2.dts │ │ │ │ ├── bcm2835-rpi-b.dts │ │ │ │ ├── bcm2835-rpi.dtsi │ │ │ │ ├── bcm2835.dtsi │ │ │ │ ├── bcm2836-rpi-2-b.dts │ │ │ │ ├── bcm2836.dtsi │ │ │ │ ├── bcm2837-rpi-3-b.dts │ │ │ │ ├── bcm2837.dtsi │ │ │ │ ├── bcm283x-rpi-smsc9512.dtsi │ │ │ │ ├── bcm283x-rpi-smsc9514.dtsi │ │ │ │ ├── bcm283x-uboot.dtsi │ │ │ │ ├── bcm283x.dtsi │ │ │ │ ├── bk4r1.dts │ │ │ │ ├── cros-ec-keyboard.dtsi │ │ │ │ ├── cros-ec-sbs.dtsi │ │ │ │ ├── dm8168-evm.dts │ │ │ │ ├── dm816x-clocks.dtsi │ │ │ │ ├── dm816x.dtsi │ │ │ │ ├── dra7-dspeve-thermal.dtsi │ │ │ │ ├── dra7-evm.dts │ │ │ │ ├── dra7-iva-thermal.dtsi │ │ │ │ ├── dra7.dtsi │ │ │ │ ├── dra71-evm.dts │ │ │ │ ├── dra72-evm-common.dtsi │ │ │ │ ├── dra72-evm-revc.dts │ │ │ │ ├── dra72-evm-tps65917.dtsi │ │ │ │ ├── dra72-evm.dts │ │ │ │ ├── dra72x.dtsi │ │ │ │ ├── dra74x.dtsi │ │ │ │ ├── dra7xx-clocks.dtsi │ │ │ │ ├── dragonboard410c-uboot.dtsi │ │ │ │ ├── dragonboard410c.dts │ │ │ │ ├── exynos4.dtsi │ │ │ │ ├── exynos4210-origen.dts │ │ │ │ ├── exynos4210-pinctrl-uboot.dtsi │ │ │ │ ├── exynos4210-pinctrl.dtsi │ │ │ │ ├── exynos4210-smdkv310.dts │ │ │ │ ├── exynos4210-trats.dts │ │ │ │ ├── exynos4210-universal_c210.dts │ │ │ │ ├── exynos4210.dtsi │ │ │ │ ├── exynos4412-odroid.dts │ │ │ │ ├── exynos4412-trats2.dts │ │ │ │ ├── exynos4412.dtsi │ │ │ │ ├── exynos4x12-pinctrl-uboot.dtsi │ │ │ │ ├── exynos4x12-pinctrl.dtsi │ │ │ │ ├── exynos4x12.dtsi │ │ │ │ ├── exynos5.dtsi │ │ │ │ ├── exynos5250-arndale.dts │ │ │ │ ├── exynos5250-pinctrl-uboot.dtsi │ │ │ │ ├── exynos5250-pinctrl.dtsi │ │ │ │ ├── exynos5250-smdk5250.dts │ │ │ │ ├── exynos5250-snow.dts │ │ │ │ ├── exynos5250-spring.dts │ │ │ │ ├── exynos5250.dtsi │ │ │ │ ├── exynos5420-peach-pit.dts │ │ │ │ ├── exynos5420-smdk5420.dts │ │ │ │ ├── exynos5422-odroidxu3.dts │ │ │ │ ├── exynos54xx-pinctrl-uboot.dtsi │ │ │ │ ├── exynos54xx-pinctrl.dtsi │ │ │ │ ├── exynos54xx.dtsi │ │ │ │ ├── exynos5800-peach-pi.dts │ │ │ │ ├── exynos7420-espresso7420.dts │ │ │ │ ├── exynos7420.dtsi │ │ │ │ ├── fsl-ls1012a-frdm.dts │ │ │ │ ├── fsl-ls1012a-frdm.dtsi │ │ │ │ ├── fsl-ls1012a-qds.dts │ │ │ │ ├── fsl-ls1012a-qds.dtsi │ │ │ │ ├── fsl-ls1012a-rdb.dts │ │ │ │ ├── fsl-ls1012a-rdb.dtsi │ │ │ │ ├── fsl-ls1012a.dtsi │ │ │ │ ├── fsl-ls1043a-qds-duart.dts │ │ │ │ ├── fsl-ls1043a-qds-lpuart.dts │ │ │ │ ├── fsl-ls1043a-qds.dtsi │ │ │ │ ├── fsl-ls1043a-rdb.dts │ │ │ │ ├── fsl-ls1043a.dtsi │ │ │ │ ├── fsl-ls1046a-qds-duart.dts │ │ │ │ ├── fsl-ls1046a-qds-lpuart.dts │ │ │ │ ├── fsl-ls1046a-qds.dtsi │ │ │ │ ├── fsl-ls1046a-rdb.dts │ │ │ │ ├── fsl-ls1046a.dtsi │ │ │ │ ├── fsl-ls2080a-qds.dts │ │ │ │ ├── fsl-ls2080a-rdb.dts │ │ │ │ ├── fsl-ls2080a.dtsi │ │ │ │ ├── fsl-ls2081a-rdb.dts │ │ │ │ ├── fsl-ls2088a-rdb-qspi.dts │ │ │ │ ├── hi6220-hikey.dts │ │ │ │ ├── hi6220.dtsi │ │ │ │ ├── imx53-cx9020.dts │ │ │ │ ├── imx53-pinfunc.h │ │ │ │ ├── imx53.dtsi │ │ │ │ ├── imx6dl-icore-rqs.dts │ │ │ │ ├── imx6dl-icore.dts │ │ │ │ ├── imx6dl-pinfunc.h │ │ │ │ ├── imx6dl.dtsi │ │ │ │ ├── imx6q-icore-rqs.dts │ │ │ │ ├── imx6q-icore.dts │ │ │ │ ├── imx6q-logicpd.dts │ │ │ │ ├── imx6q-pinfunc.h │ │ │ │ ├── imx6q.dtsi │ │ │ │ ├── imx6qdl-icore-rqs.dtsi │ │ │ │ ├── imx6qdl-icore.dtsi │ │ │ │ ├── imx6qdl-logicpd.dtsi │ │ │ │ ├── imx6qdl.dtsi │ │ │ │ ├── imx6sl-evk.dts │ │ │ │ ├── imx6sl-pinfunc.h │ │ │ │ ├── imx6sl.dtsi │ │ │ │ ├── imx6sll-evk.dts │ │ │ │ ├── imx6sll-pinfunc.h │ │ │ │ ├── imx6sll.dtsi │ │ │ │ ├── imx6sx-pinfunc.h │ │ │ │ ├── imx6sx-sabreauto.dts │ │ │ │ ├── imx6sx.dtsi │ │ │ │ ├── imx6ul-geam-kit.dts │ │ │ │ ├── imx6ul-isiot-emmc.dts │ │ │ │ ├── imx6ul-isiot-mmc.dts │ │ │ │ ├── imx6ul-isiot-nand.dts │ │ │ │ ├── imx6ul-isiot.dtsi │ │ │ │ ├── imx6ul-opos6ul.dtsi │ │ │ │ ├── imx6ul-opos6uldev.dts │ │ │ │ ├── imx6ul-pinfunc.h │ │ │ │ ├── imx6ul.dtsi │ │ │ │ ├── imx6ull-14x14-evk.dts │ │ │ │ ├── imx6ull-pinfunc-snvs.h │ │ │ │ ├── imx6ull-pinfunc.h │ │ │ │ ├── imx6ull.dtsi │ │ │ │ ├── imx7-colibri.dts │ │ │ │ ├── imx7d-pinfunc.h │ │ │ │ ├── imx7d-sdb.dts │ │ │ │ ├── imx7d.dtsi │ │ │ │ ├── imx7s.dtsi │ │ │ │ ├── imx7ulp-evk.dts │ │ │ │ ├── imx7ulp-pinfunc.h │ │ │ │ ├── imx7ulp-uboot.dtsi │ │ │ │ ├── imx7ulp.dtsi │ │ │ │ ├── include │ │ │ │ │ └── dt-bindings │ │ │ │ ├── keystone-clocks.dtsi │ │ │ │ ├── keystone-k2e-clocks.dtsi │ │ │ │ ├── keystone-k2e-evm.dts │ │ │ │ ├── keystone-k2e-netcp.dtsi │ │ │ │ ├── keystone-k2e.dtsi │ │ │ │ ├── keystone-k2g-evm.dts │ │ │ │ ├── keystone-k2g-netcp.dtsi │ │ │ │ ├── keystone-k2g.dtsi │ │ │ │ ├── keystone-k2hk-clocks.dtsi │ │ │ │ ├── keystone-k2hk-evm-u-boot.dtsi │ │ │ │ ├── keystone-k2hk-evm.dts │ │ │ │ ├── keystone-k2hk-netcp.dtsi │ │ │ │ ├── keystone-k2hk.dtsi │ │ │ │ ├── keystone-k2l-clocks.dtsi │ │ │ │ ├── keystone-k2l-evm.dts │ │ │ │ ├── keystone-k2l-netcp.dtsi │ │ │ │ ├── keystone-k2l.dtsi │ │ │ │ ├── keystone.dtsi │ │ │ │ ├── logicpd-som-lv-37xx-devkit.dts │ │ │ │ ├── logicpd-som-lv.dtsi │ │ │ │ ├── logicpd-torpedo-37xx-devkit.dts │ │ │ │ ├── logicpd-torpedo-som.dtsi │ │ │ │ ├── ls1021a-iot-duart.dts │ │ │ │ ├── ls1021a-iot.dtsi │ │ │ │ ├── ls1021a-qds-duart.dts │ │ │ │ ├── ls1021a-qds-lpuart.dts │ │ │ │ ├── ls1021a-qds.dtsi │ │ │ │ ├── ls1021a-twr-duart.dts │ │ │ │ ├── ls1021a-twr-lpuart.dts │ │ │ │ ├── ls1021a-twr.dtsi │ │ │ │ ├── ls1021a.dtsi │ │ │ │ ├── meson-gx.dtsi │ │ │ │ ├── meson-gxbb-odroidc2.dts │ │ │ │ ├── meson-gxbb.dtsi │ │ │ │ ├── omap-gpmc-smsc9221.dtsi │ │ │ │ ├── omap3.dtsi │ │ │ │ ├── omap34xx-omap36xx-clocks.dtsi │ │ │ │ ├── omap36xx-am35xx-omap3430es2plus-clocks.dtsi │ │ │ │ ├── omap36xx-clocks.dtsi │ │ │ │ ├── omap36xx-omap3430es2plus-clocks.dtsi │ │ │ │ ├── omap36xx.dtsi │ │ │ │ ├── omap3xxx-clocks.dtsi │ │ │ │ ├── omap4-cpu-thermal.dtsi │ │ │ │ ├── omap5-core-thermal.dtsi │ │ │ │ ├── omap5-gpu-thermal.dtsi │ │ │ │ ├── omap5-u-boot.dtsi │ │ │ │ ├── pcm052.dts │ │ │ │ ├── rk3036-sdk.dts │ │ │ │ ├── rk3036.dtsi │ │ │ │ ├── rk3188-radxarock.dts │ │ │ │ ├── rk3188.dtsi │ │ │ │ ├── rk3288-evb.dts │ │ │ │ ├── rk3288-evb.dtsi │ │ │ │ ├── rk3288-fennec.dts │ │ │ │ ├── rk3288-fennec.dtsi │ │ │ │ ├── rk3288-firefly.dts │ │ │ │ ├── rk3288-firefly.dtsi │ │ │ │ ├── rk3288-miqi.dts │ │ │ │ ├── rk3288-miqi.dtsi │ │ │ │ ├── rk3288-popmetal.dts │ │ │ │ ├── rk3288-popmetal.dtsi │ │ │ │ ├── rk3288-rock2-som.dtsi │ │ │ │ ├── rk3288-rock2-square.dts │ │ │ │ ├── rk3288-thermal.dtsi │ │ │ │ ├── rk3288-tinker.dts │ │ │ │ ├── rk3288-tinker.dtsi │ │ │ │ ├── rk3288-veyron-chromebook.dtsi │ │ │ │ ├── rk3288-veyron-jerry.dts │ │ │ │ ├── rk3288-veyron-mickey.dts │ │ │ │ ├── rk3288-veyron-minnie.dts │ │ │ │ ├── rk3288-veyron.dtsi │ │ │ │ ├── rk3288.dtsi │ │ │ │ ├── rk3328-evb.dts │ │ │ │ ├── rk3328.dtsi │ │ │ │ ├── rk3368-geekbox.dts │ │ │ │ ├── rk3368-px5-evb.dts │ │ │ │ ├── rk3368-sheep.dts │ │ │ │ ├── rk3368.dtsi │ │ │ │ ├── rk3399-evb.dts │ │ │ │ ├── rk3399-firefly.dts │ │ │ │ ├── rk3399-puma-ddr1333.dts │ │ │ │ ├── rk3399-puma-ddr1600.dts │ │ │ │ ├── rk3399-puma-ddr1866.dts │ │ │ │ ├── rk3399-puma.dtsi │ │ │ │ ├── rk3399-sdram-ddr3-1333.dtsi │ │ │ │ ├── rk3399-sdram-ddr3-1600.dtsi │ │ │ │ ├── rk3399-sdram-ddr3-1866.dtsi │ │ │ │ ├── rk3399-sdram-lpddr3-4GB-1600.dtsi │ │ │ │ ├── rk3399.dtsi │ │ │ │ ├── rk3xxx.dtsi │ │ │ │ ├── rv1108-evb.dts │ │ │ │ ├── rv1108.dtsi │ │ │ │ ├── s5pc100-pinctrl.dtsi │ │ │ │ ├── s5pc110-pinctrl.dtsi │ │ │ │ ├── s5pc1xx-goni.dts │ │ │ │ ├── s5pc1xx-smdkc100.dts │ │ │ │ ├── sama5d2-pinfunc.h │ │ │ │ ├── sama5d2.dtsi │ │ │ │ ├── sama5d3.dtsi │ │ │ │ ├── sama5d31.dtsi │ │ │ │ ├── sama5d31ek.dts │ │ │ │ ├── sama5d33.dtsi │ │ │ │ ├── sama5d33ek.dts │ │ │ │ ├── sama5d34.dtsi │ │ │ │ ├── sama5d34ek.dts │ │ │ │ ├── sama5d35.dtsi │ │ │ │ ├── sama5d35ek.dts │ │ │ │ ├── sama5d36.dtsi │ │ │ │ ├── sama5d36ek.dts │ │ │ │ ├── sama5d36ek_cmp.dts │ │ │ │ ├── sama5d3_can.dtsi │ │ │ │ ├── sama5d3_emac.dtsi │ │ │ │ ├── sama5d3_gmac.dtsi │ │ │ │ ├── sama5d3_lcd.dtsi │ │ │ │ ├── sama5d3_mci2.dtsi │ │ │ │ ├── sama5d3_tcb1.dtsi │ │ │ │ ├── sama5d3_uart.dtsi │ │ │ │ ├── sama5d3xcm.dtsi │ │ │ │ ├── sama5d3xcm_cmp.dtsi │ │ │ │ ├── sama5d3xdm.dtsi │ │ │ │ ├── sama5d3xmb.dtsi │ │ │ │ ├── sama5d3xmb_cmp.dtsi │ │ │ │ ├── sama5d4.dtsi │ │ │ │ ├── skeleton.dtsi │ │ │ │ ├── skeleton64.dtsi │ │ │ │ ├── socfpga.dtsi │ │ │ │ ├── socfpga_arria10.dtsi │ │ │ │ ├── socfpga_arria10_socdk_sdmmc.dts │ │ │ │ ├── socfpga_arria10_socdk_sdmmc_handoff.dtsi │ │ │ │ ├── socfpga_arria5.dtsi │ │ │ │ ├── socfpga_arria5_socdk.dts │ │ │ │ ├── socfpga_cyclone5.dtsi │ │ │ │ ├── socfpga_cyclone5_de0_nano_soc.dts │ │ │ │ ├── socfpga_cyclone5_de10_nano.dts │ │ │ │ ├── socfpga_cyclone5_de1_soc.dts │ │ │ │ ├── socfpga_cyclone5_is1.dts │ │ │ │ ├── socfpga_cyclone5_mcvevk.dts │ │ │ │ ├── socfpga_cyclone5_socdk.dts │ │ │ │ ├── socfpga_cyclone5_sockit.dts │ │ │ │ ├── socfpga_cyclone5_socrates.dts │ │ │ │ ├── socfpga_cyclone5_sr1500.dts │ │ │ │ ├── socfpga_cyclone5_vining_fpga.dts │ │ │ │ ├── st-pincfg.h │ │ │ │ ├── stih407-clock.dtsi │ │ │ │ ├── stih407-family.dtsi │ │ │ │ ├── stih407-pinctrl.dtsi │ │ │ │ ├── stih410-b2260.dts │ │ │ │ ├── stih410-clock.dtsi │ │ │ │ ├── stih410-pinctrl.dtsi │ │ │ │ ├── stih410.dtsi │ │ │ │ ├── stm32f7-u-boot.dtsi │ │ │ │ ├── stm32f746-disco.dts │ │ │ │ ├── stm32f746.dtsi │ │ │ │ ├── stm32f769-disco.dts │ │ │ │ ├── stv0991.dts │ │ │ │ ├── sun4i-a10-a1000.dts │ │ │ │ ├── sun4i-a10-ba10-tvbox.dts │ │ │ │ ├── sun4i-a10-chuwi-v7-cw0825.dts │ │ │ │ ├── sun4i-a10-cubieboard.dts │ │ │ │ ├── sun4i-a10-dserve-dsrv9703c.dts │ │ │ │ ├── sun4i-a10-gemei-g9.dts │ │ │ │ ├── sun4i-a10-hackberry.dts │ │ │ │ ├── sun4i-a10-hyundai-a7hd.dts │ │ │ │ ├── sun4i-a10-inet-3f.dts │ │ │ │ ├── sun4i-a10-inet-3w.dts │ │ │ │ ├── sun4i-a10-inet1.dts │ │ │ │ ├── sun4i-a10-inet97fv2.dts │ │ │ │ ├── sun4i-a10-inet9f-rev03.dts │ │ │ │ ├── sun4i-a10-itead-iteaduino-plus.dts │ │ │ │ ├── sun4i-a10-jesurun-q5.dts │ │ │ │ ├── sun4i-a10-marsboard.dts │ │ │ │ ├── sun4i-a10-mini-xplus.dts │ │ │ │ ├── sun4i-a10-mk802.dts │ │ │ │ ├── sun4i-a10-mk802ii.dts │ │ │ │ ├── sun4i-a10-olinuxino-lime.dts │ │ │ │ ├── sun4i-a10-pcduino.dts │ │ │ │ ├── sun4i-a10-pcduino2.dts │ │ │ │ ├── sun4i-a10-pov-protab2-ips9.dts │ │ │ │ ├── sun4i-a10.dtsi │ │ │ │ ├── sun50i-a64-bananapi-m64.dts │ │ │ │ ├── sun50i-a64-orangepi-win.dts │ │ │ │ ├── sun50i-a64-pine64-plus-u-boot.dtsi │ │ │ │ ├── sun50i-a64-pine64-plus.dts │ │ │ │ ├── sun50i-a64-pine64.dts │ │ │ │ ├── sun50i-a64.dtsi │ │ │ │ ├── sun50i-h5-nanopi-neo2.dts │ │ │ │ ├── sun50i-h5-orangepi-pc2.dts │ │ │ │ ├── sun50i-h5-orangepi-prime.dts │ │ │ │ ├── sun50i-h5-orangepi-zero-plus2.dts │ │ │ │ ├── sun50i-h5.dtsi │ │ │ │ ├── sun5i-a10s-auxtek-t003.dts │ │ │ │ ├── sun5i-a10s-auxtek-t004.dts │ │ │ │ ├── sun5i-a10s-mk802.dts │ │ │ │ ├── sun5i-a10s-olinuxino-micro.dts │ │ │ │ ├── sun5i-a10s-r7-tv-dongle.dts │ │ │ │ ├── sun5i-a10s-wobo-i5.dts │ │ │ │ ├── sun5i-a10s.dtsi │ │ │ │ ├── sun5i-a13-ampe-a76.dts │ │ │ │ ├── sun5i-a13-difrnce-dit4350.dts │ │ │ │ ├── sun5i-a13-empire-electronix-d709.dts │ │ │ │ ├── sun5i-a13-empire-electronix-m712.dts │ │ │ │ ├── sun5i-a13-hsg-h702.dts │ │ │ │ ├── sun5i-a13-inet-86vs.dts │ │ │ │ ├── sun5i-a13-inet-98v-rev2.dts │ │ │ │ ├── sun5i-a13-olinuxino-micro.dts │ │ │ │ ├── sun5i-a13-olinuxino.dts │ │ │ │ ├── sun5i-a13-q8-tablet.dts │ │ │ │ ├── sun5i-a13-utoo-p66.dts │ │ │ │ ├── sun5i-a13.dtsi │ │ │ │ ├── sun5i-gr8-chip-pro.dts │ │ │ │ ├── sun5i-gr8.dtsi │ │ │ │ ├── sun5i-q8-common.dtsi │ │ │ │ ├── sun5i-r8-chip.dts │ │ │ │ ├── sun5i-r8.dtsi │ │ │ │ ├── sun5i-reference-design-tablet.dtsi │ │ │ │ ├── sun5i.dtsi │ │ │ │ ├── sun6i-a31-app4-evb1.dts │ │ │ │ ├── sun6i-a31-colombus.dts │ │ │ │ ├── sun6i-a31-hummingbird.dts │ │ │ │ ├── sun6i-a31-i7.dts │ │ │ │ ├── sun6i-a31-m9.dts │ │ │ │ ├── sun6i-a31-mele-a1000g-quad.dts │ │ │ │ ├── sun6i-a31-mixtile-loftq.dts │ │ │ │ ├── sun6i-a31.dtsi │ │ │ │ ├── sun6i-a31s-colorfly-e708-q1.dts │ │ │ │ ├── sun6i-a31s-cs908.dts │ │ │ │ ├── sun6i-a31s-inet-q972.dts │ │ │ │ ├── sun6i-a31s-primo81.dts │ │ │ │ ├── sun6i-a31s-sina31s-core.dtsi │ │ │ │ ├── sun6i-a31s-sina31s.dts │ │ │ │ ├── sun6i-a31s-sinovoip-bpi-m2.dts │ │ │ │ ├── sun6i-a31s-yones-toptech-bs1078-v2.dts │ │ │ │ ├── sun6i-a31s.dtsi │ │ │ │ ├── sun6i-reference-design-tablet.dtsi │ │ │ │ ├── sun7i-a20-ainol-aw1.dts │ │ │ │ ├── sun7i-a20-bananapi-m1-plus.dts │ │ │ │ ├── sun7i-a20-bananapi.dts │ │ │ │ ├── sun7i-a20-bananapro.dts │ │ │ │ ├── sun7i-a20-cubieboard2.dts │ │ │ │ ├── sun7i-a20-cubietruck.dts │ │ │ │ ├── sun7i-a20-hummingbird.dts │ │ │ │ ├── sun7i-a20-i12-tvbox.dts │ │ │ │ ├── sun7i-a20-icnova-swac.dts │ │ │ │ ├── sun7i-a20-itead-ibox.dts │ │ │ │ ├── sun7i-a20-lamobo-r1.dts │ │ │ │ ├── sun7i-a20-m3.dts │ │ │ │ ├── sun7i-a20-m5.dts │ │ │ │ ├── sun7i-a20-mk808c.dts │ │ │ │ ├── sun7i-a20-olimex-som-evb.dts │ │ │ │ ├── sun7i-a20-olinuxino-lime.dts │ │ │ │ ├── sun7i-a20-olinuxino-lime2-emmc.dts │ │ │ │ ├── sun7i-a20-olinuxino-lime2.dts │ │ │ │ ├── sun7i-a20-olinuxino-micro.dts │ │ │ │ ├── sun7i-a20-orangepi-mini.dts │ │ │ │ ├── sun7i-a20-orangepi.dts │ │ │ │ ├── sun7i-a20-pcduino3-nano.dts │ │ │ │ ├── sun7i-a20-pcduino3.dts │ │ │ │ ├── sun7i-a20-primo73.dts │ │ │ │ ├── sun7i-a20-wexler-tab7200.dts │ │ │ │ ├── sun7i-a20-wits-pro-a20-dkt.dts │ │ │ │ ├── sun7i-a20-yones-toptech-bd1078.dts │ │ │ │ ├── sun7i-a20.dtsi │ │ │ │ ├── sun8i-a23-a33.dtsi │ │ │ │ ├── sun8i-a23-evb.dts │ │ │ │ ├── sun8i-a23-gt90h-v4.dts │ │ │ │ ├── sun8i-a23-inet86dz.dts │ │ │ │ ├── sun8i-a23-polaroid-mid2407pxe03.dts │ │ │ │ ├── sun8i-a23-polaroid-mid2809pxe04.dts │ │ │ │ ├── sun8i-a23-q8-tablet.dts │ │ │ │ ├── sun8i-a23.dtsi │ │ │ │ ├── sun8i-a33-ga10h-v1.1.dts │ │ │ │ ├── sun8i-a33-inet-d978-rev2.dts │ │ │ │ ├── sun8i-a33-olinuxino.dts │ │ │ │ ├── sun8i-a33-q8-tablet.dts │ │ │ │ ├── sun8i-a33-sinlinx-sina33.dts │ │ │ │ ├── sun8i-a33.dtsi │ │ │ │ ├── sun8i-a83t-allwinner-h8homlet-v2.dts │ │ │ │ ├── sun8i-a83t-cubietruck-plus.dts │ │ │ │ ├── sun8i-a83t-sinovoip-bpi-m3.dts │ │ │ │ ├── sun8i-a83t.dtsi │ │ │ │ ├── sun8i-h2-plus-orangepi-zero.dts │ │ │ │ ├── sun8i-h3-bananapi-m2-plus.dts │ │ │ │ ├── sun8i-h3-nanopi-m1-plus.dts │ │ │ │ ├── sun8i-h3-nanopi-m1.dts │ │ │ │ ├── sun8i-h3-nanopi-neo-air.dts │ │ │ │ ├── sun8i-h3-nanopi-neo.dts │ │ │ │ ├── sun8i-h3-nanopi.dtsi │ │ │ │ ├── sun8i-h3-orangepi-2.dts │ │ │ │ ├── sun8i-h3-orangepi-lite.dts │ │ │ │ ├── sun8i-h3-orangepi-one.dts │ │ │ │ ├── sun8i-h3-orangepi-pc-plus.dts │ │ │ │ ├── sun8i-h3-orangepi-pc.dts │ │ │ │ ├── sun8i-h3-orangepi-plus.dts │ │ │ │ ├── sun8i-h3-orangepi-plus2e.dts │ │ │ │ ├── sun8i-h3.dtsi │ │ │ │ ├── sun8i-q8-common.dtsi │ │ │ │ ├── sun8i-r16-nintendo-nes-classic-edition.dts │ │ │ │ ├── sun8i-r16-parrot.dts │ │ │ │ ├── sun8i-r40-bananapi-m2-ultra.dts │ │ │ │ ├── sun8i-r40.dtsi │ │ │ │ ├── sun8i-reference-design-tablet.dtsi │ │ │ │ ├── sun8i-v3s-licheepi-zero.dts │ │ │ │ ├── sun8i-v3s.dtsi │ │ │ │ ├── sun9i-a80-cubieboard4.dts │ │ │ │ ├── sun9i-a80-cx-a99.dts │ │ │ │ ├── sun9i-a80-optimus.dts │ │ │ │ ├── sun9i-a80.dtsi │ │ │ │ ├── sunxi-common-regulators.dtsi │ │ │ │ ├── sunxi-itead-core-common.dtsi │ │ │ │ ├── sunxi-q8-common.dtsi │ │ │ │ ├── sunxi-reference-design-tablet.dtsi │ │ │ │ ├── sunxi-u-boot.dtsi │ │ │ │ ├── tegra114-dalmore.dts │ │ │ │ ├── tegra114.dtsi │ │ │ │ ├── tegra124-apalis.dts │ │ │ │ ├── tegra124-cei-tk1-som.dts │ │ │ │ ├── tegra124-jetson-tk1.dts │ │ │ │ ├── tegra124-nyan-big-u-boot.dtsi │ │ │ │ ├── tegra124-nyan-big.dts │ │ │ │ ├── tegra124-nyan.dtsi │ │ │ │ ├── tegra124-venice2.dts │ │ │ │ ├── tegra124.dtsi │ │ │ │ ├── tegra186-p2771-0000-000.dts │ │ │ │ ├── tegra186-p2771-0000-500.dts │ │ │ │ ├── tegra186-p2771-0000.dtsi │ │ │ │ ├── tegra186.dtsi │ │ │ │ ├── tegra20-colibri.dts │ │ │ │ ├── tegra20-harmony.dts │ │ │ │ ├── tegra20-medcom-wide.dts │ │ │ │ ├── tegra20-paz00.dts │ │ │ │ ├── tegra20-plutux.dts │ │ │ │ ├── tegra20-seaboard.dts │ │ │ │ ├── tegra20-tamonten.dtsi │ │ │ │ ├── tegra20-tec.dts │ │ │ │ ├── tegra20-trimslice.dts │ │ │ │ ├── tegra20-u-boot.dtsi │ │ │ │ ├── tegra20-ventana.dts │ │ │ │ ├── tegra20.dtsi │ │ │ │ ├── tegra210-e2220-1170.dts │ │ │ │ ├── tegra210-p2371-0000.dts │ │ │ │ ├── tegra210-p2371-2180.dts │ │ │ │ ├── tegra210-p2571.dts │ │ │ │ ├── tegra210.dtsi │ │ │ │ ├── tegra30-apalis.dts │ │ │ │ ├── tegra30-beaver.dts │ │ │ │ ├── tegra30-cardhu.dts │ │ │ │ ├── tegra30-colibri.dts │ │ │ │ ├── tegra30-tamonten.dtsi │ │ │ │ ├── tegra30-tec-ng.dts │ │ │ │ ├── tegra30.dtsi │ │ │ │ ├── thunderx-88xx.dts │ │ │ │ ├── thunderx-88xx.dtsi │ │ │ │ ├── tps65217.dtsi │ │ │ │ ├── tps65910.dtsi │ │ │ │ ├── twl4030.dtsi │ │ │ │ ├── twl4030_omap3.dtsi │ │ │ │ ├── uniphier-ld11-global.dts │ │ │ │ ├── uniphier-ld11-ref.dts │ │ │ │ ├── uniphier-ld11.dtsi │ │ │ │ ├── uniphier-ld20-global.dts │ │ │ │ ├── uniphier-ld20-ref.dts │ │ │ │ ├── uniphier-ld20.dtsi │ │ │ │ ├── uniphier-ld4-ref.dts │ │ │ │ ├── uniphier-ld4.dtsi │ │ │ │ ├── uniphier-ld6b-ref.dts │ │ │ │ ├── uniphier-ld6b.dtsi │ │ │ │ ├── uniphier-pinctrl.dtsi │ │ │ │ ├── uniphier-pro4-ace.dts │ │ │ │ ├── uniphier-pro4-ref.dts │ │ │ │ ├── uniphier-pro4-sanji.dts │ │ │ │ ├── uniphier-pro4.dtsi │ │ │ │ ├── uniphier-pro5-4kbox.dts │ │ │ │ ├── uniphier-pro5.dtsi │ │ │ │ ├── uniphier-pxs2-gentil.dts │ │ │ │ ├── uniphier-pxs2-vodka.dts │ │ │ │ ├── uniphier-pxs2.dtsi │ │ │ │ ├── uniphier-pxs3-ref.dts │ │ │ │ ├── uniphier-pxs3.dtsi │ │ │ │ ├── uniphier-ref-daughter.dtsi │ │ │ │ ├── uniphier-sld3-ref.dts │ │ │ │ ├── uniphier-sld3.dtsi │ │ │ │ ├── uniphier-sld8-ref.dts │ │ │ │ ├── uniphier-sld8.dtsi │ │ │ │ ├── uniphier-support-card.dtsi │ │ │ │ ├── vf-colibri.dtsi │ │ │ │ ├── vf.dtsi │ │ │ │ ├── vf500-colibri.dts │ │ │ │ ├── vf610-colibri.dts │ │ │ │ ├── vf610-twr.dts │ │ │ │ ├── zynq-7000.dtsi │ │ │ │ ├── zynq-microzed.dts │ │ │ │ ├── zynq-picozed.dts │ │ │ │ ├── zynq-topic-miami.dts │ │ │ │ ├── zynq-topic-miamilite.dts │ │ │ │ ├── zynq-topic-miamiplus.dts │ │ │ │ ├── zynq-zc702.dts │ │ │ │ ├── zynq-zc706.dts │ │ │ │ ├── zynq-zc770-xm010.dts │ │ │ │ ├── zynq-zc770-xm011.dts │ │ │ │ ├── zynq-zc770-xm012.dts │ │ │ │ ├── zynq-zc770-xm013.dts │ │ │ │ ├── zynq-zed.dts │ │ │ │ ├── zynq-zybo.dts │ │ │ │ ├── zynqmp-clk.dtsi │ │ │ │ ├── zynqmp-ep108-clk.dtsi │ │ │ │ ├── zynqmp-ep108.dts │ │ │ │ ├── zynqmp-zc1751-xm015-dc1.dts │ │ │ │ ├── zynqmp-zc1751-xm016-dc2.dts │ │ │ │ ├── zynqmp-zc1751-xm018-dc4.dts │ │ │ │ ├── zynqmp-zc1751-xm019-dc5.dts │ │ │ │ ├── zynqmp-zcu102-revB.dts │ │ │ │ ├── zynqmp-zcu102.dts │ │ │ │ └── zynqmp.dtsi │ │ │ ├── imx-common │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── cache.c │ │ │ │ ├── cmd_bmode.c │ │ │ │ ├── cmd_dek.c │ │ │ │ ├── cmd_hdmidet.c │ │ │ │ ├── cpu.c │ │ │ │ ├── ddrmc-vf610.c │ │ │ │ ├── hab.c │ │ │ │ ├── i2c-mxv7.c │ │ │ │ ├── imx_bootaux.c │ │ │ │ ├── init.c │ │ │ │ ├── iomux-v3.c │ │ │ │ ├── misc.c │ │ │ │ ├── rdc-sema.c │ │ │ │ ├── sata.c │ │ │ │ ├── speed.c │ │ │ │ ├── spl.c │ │ │ │ ├── spl_sd.cfg │ │ │ │ ├── syscounter.c │ │ │ │ ├── timer.c │ │ │ │ └── video.c │ │ │ ├── include │ │ │ │ ├── asm │ │ │ │ │ ├── arch-am33xx │ │ │ │ │ │ ├── chilisom.h │ │ │ │ │ │ ├── clk_synthesizer.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── clock_ti81xx.h │ │ │ │ │ │ ├── clocks_am33xx.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── ddr_defs.h │ │ │ │ │ │ ├── emac_defs.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── hardware_am33xx.h │ │ │ │ │ │ ├── hardware_am43xx.h │ │ │ │ │ │ ├── hardware_ti814x.h │ │ │ │ │ │ ├── hardware_ti816x.h │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ ├── mmc_host_def.h │ │ │ │ │ │ ├── mux.h │ │ │ │ │ │ ├── mux_am33xx.h │ │ │ │ │ │ ├── mux_am43xx.h │ │ │ │ │ │ ├── mux_ti814x.h │ │ │ │ │ │ ├── mux_ti816x.h │ │ │ │ │ │ ├── omap.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ ├── arch-armada100 │ │ │ │ │ │ ├── armada100.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── mfp.h │ │ │ │ │ │ ├── spi.h │ │ │ │ │ │ └── utmi-armada100.h │ │ │ │ │ ├── arch-armada8k │ │ │ │ │ │ ├── cache_llc.h │ │ │ │ │ │ └── soc-info.h │ │ │ │ │ ├── arch-armv7 │ │ │ │ │ │ ├── generictimer.h │ │ │ │ │ │ ├── globaltimer.h │ │ │ │ │ │ ├── sysctrl.h │ │ │ │ │ │ ├── systimer.h │ │ │ │ │ │ └── wdt.h │ │ │ │ │ ├── arch-aspeed │ │ │ │ │ │ ├── pinctrl.h │ │ │ │ │ │ ├── scu_ast2500.h │ │ │ │ │ │ ├── sdram_ast2500.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ └── wdt.h │ │ │ │ │ ├── arch-bcm235xx │ │ │ │ │ │ ├── boot0.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── sysmap.h │ │ │ │ │ ├── arch-bcm281xx │ │ │ │ │ │ ├── boot0.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── sysmap.h │ │ │ │ │ ├── arch-bcmcygnus │ │ │ │ │ │ └── configs.h │ │ │ │ │ ├── arch-bcmnsp │ │ │ │ │ │ └── configs.h │ │ │ │ │ ├── arch-ep93xx │ │ │ │ │ │ └── ep93xx.h │ │ │ │ │ ├── arch-fsl-layerscape │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── fdt.h │ │ │ │ │ │ ├── fsl_serdes.h │ │ │ │ │ │ ├── immap_lsch2.h │ │ │ │ │ │ ├── immap_lsch3.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ ├── mmu.h │ │ │ │ │ │ ├── mp.h │ │ │ │ │ │ ├── ns_access.h │ │ │ │ │ │ ├── ppa.h │ │ │ │ │ │ ├── soc.h │ │ │ │ │ │ ├── speed.h │ │ │ │ │ │ ├── stream_id_lsch2.h │ │ │ │ │ │ └── stream_id_lsch3.h │ │ │ │ │ ├── arch-hi6220 │ │ │ │ │ │ ├── dwmmc.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hi6220.h │ │ │ │ │ │ ├── hi6220_regs_alwayson.h │ │ │ │ │ │ ├── periph.h │ │ │ │ │ │ └── pinmux.h │ │ │ │ │ ├── arch-imx │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ └── imx-regs.h │ │ │ │ │ ├── arch-lpc32xx │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ ├── emc.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── gpio_grp.h │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ ├── mux.h │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ └── wdt.h │ │ │ │ │ ├── arch-ls102xa │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── fsl_serdes.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── immap_ls102xa.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ ├── ls102xa_devdis.h │ │ │ │ │ │ ├── ls102xa_sata.h │ │ │ │ │ │ ├── ls102xa_soc.h │ │ │ │ │ │ ├── ls102xa_stream_id.h │ │ │ │ │ │ ├── ns_access.h │ │ │ │ │ │ ├── soc.h │ │ │ │ │ │ └── spl.h │ │ │ │ │ ├── arch-meson │ │ │ │ │ │ ├── gxbb.h │ │ │ │ │ │ ├── sd_emmc.h │ │ │ │ │ │ └── sm.h │ │ │ │ │ ├── arch-mvebu │ │ │ │ │ │ └── spi.h │ │ │ │ │ ├── arch-mx25 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ ├── iomux-mx25.h │ │ │ │ │ │ └── macro.h │ │ │ │ │ ├── arch-mx27 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ ├── mxcmmc.h │ │ │ │ │ │ └── regs-rtc.h │ │ │ │ │ ├── arch-mx31 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ ├── arch-mx35 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── crm_regs.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ ├── iomux-mx35.h │ │ │ │ │ │ ├── lowlevel_macro.S │ │ │ │ │ │ ├── mmc_host_def.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ ├── arch-mx5 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── crm_regs.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ ├── iomux-mx51.h │ │ │ │ │ │ ├── iomux-mx53.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ ├── arch-mx6 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── crm_regs.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── imx-rdc.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ ├── iomux.h │ │ │ │ │ │ ├── litesom.h │ │ │ │ │ │ ├── mx6-ddr.h │ │ │ │ │ │ ├── mx6-pins.h │ │ │ │ │ │ ├── mx6_plugin.S │ │ │ │ │ │ ├── mx6dl-ddr.h │ │ │ │ │ │ ├── mx6dl_pins.h │ │ │ │ │ │ ├── mx6q-ddr.h │ │ │ │ │ │ ├── mx6q_pins.h │ │ │ │ │ │ ├── mx6sl-ddr.h │ │ │ │ │ │ ├── mx6sl_pins.h │ │ │ │ │ │ ├── mx6sll_pins.h │ │ │ │ │ │ ├── mx6sx-ddr.h │ │ │ │ │ │ ├── mx6sx_pins.h │ │ │ │ │ │ ├── mx6sx_rdc.h │ │ │ │ │ │ ├── mx6ul-ddr.h │ │ │ │ │ │ ├── mx6ul_pins.h │ │ │ │ │ │ ├── mx6ull_pins.h │ │ │ │ │ │ ├── mxc_hdmi.h │ │ │ │ │ │ ├── opos6ul.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ ├── arch-mx7 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── clock_slice.h │ │ │ │ │ │ ├── crm_regs.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── imx-rdc.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ ├── mx7-pins.h │ │ │ │ │ │ ├── mx7_plugin.S │ │ │ │ │ │ ├── mx7d_pins.h │ │ │ │ │ │ ├── mx7d_rdc.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ ├── arch-mx7ulp │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ ├── imx_lpi2c.h │ │ │ │ │ │ ├── iomux.h │ │ │ │ │ │ ├── mx7ulp-pins.h │ │ │ │ │ │ ├── pcc.h │ │ │ │ │ │ ├── scg.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ ├── arch-mxs │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ ├── iomux-mx23.h │ │ │ │ │ │ ├── iomux-mx28.h │ │ │ │ │ │ ├── iomux.h │ │ │ │ │ │ ├── regs-base.h │ │ │ │ │ │ ├── regs-clkctrl-mx23.h │ │ │ │ │ │ ├── regs-clkctrl-mx28.h │ │ │ │ │ │ ├── regs-digctl.h │ │ │ │ │ │ ├── regs-i2c.h │ │ │ │ │ │ ├── regs-lradc.h │ │ │ │ │ │ ├── regs-ocotp.h │ │ │ │ │ │ ├── regs-pinctrl.h │ │ │ │ │ │ ├── regs-power-mx23.h │ │ │ │ │ │ ├── regs-power-mx28.h │ │ │ │ │ │ ├── regs-rtc.h │ │ │ │ │ │ ├── regs-ssp.h │ │ │ │ │ │ ├── regs-timrot.h │ │ │ │ │ │ ├── regs-uartapp.h │ │ │ │ │ │ ├── regs-usb.h │ │ │ │ │ │ ├── regs-usbphy.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ ├── arch-omap3 │ │ │ │ │ │ ├── am35x_def.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── clocks_omap3.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ ├── dss.h │ │ │ │ │ │ ├── ehci.h │ │ │ │ │ │ ├── emac_defs.h │ │ │ │ │ │ ├── emif4.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ ├── mmc_host_def.h │ │ │ │ │ │ ├── musb.h │ │ │ │ │ │ ├── mux.h │ │ │ │ │ │ ├── omap.h │ │ │ │ │ │ ├── omap3-regs.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ ├── arch-omap4 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── ehci.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ ├── mmc_host_def.h │ │ │ │ │ │ ├── mux_omap4.h │ │ │ │ │ │ ├── omap.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ ├── arch-omap5 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── dra7xx_iodelay.h │ │ │ │ │ │ ├── ehci.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ ├── mmc_host_def.h │ │ │ │ │ │ ├── mux_dra7xx.h │ │ │ │ │ │ ├── mux_omap5.h │ │ │ │ │ │ ├── omap.h │ │ │ │ │ │ ├── sata.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ ├── arch-orion5x │ │ │ │ │ │ └── spl.h │ │ │ │ │ ├── arch-pxa │ │ │ │ │ │ ├── bitfield.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── pxa-regs.h │ │ │ │ │ │ ├── pxa.h │ │ │ │ │ │ ├── regs-mmc.h │ │ │ │ │ │ ├── regs-uart.h │ │ │ │ │ │ └── regs-usb.h │ │ │ │ │ ├── arch-rockchip │ │ │ │ │ │ ├── boot0.h │ │ │ │ │ │ ├── boot_mode.h │ │ │ │ │ │ ├── bootrom.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── cru_rk3036.h │ │ │ │ │ │ ├── cru_rk3188.h │ │ │ │ │ │ ├── cru_rk3288.h │ │ │ │ │ │ ├── cru_rk3328.h │ │ │ │ │ │ ├── cru_rk3368.h │ │ │ │ │ │ ├── cru_rk3399.h │ │ │ │ │ │ ├── cru_rv1108.h │ │ │ │ │ │ ├── ddr_rk3188.h │ │ │ │ │ │ ├── ddr_rk3288.h │ │ │ │ │ │ ├── edp_rk3288.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── grf_rk3036.h │ │ │ │ │ │ ├── grf_rk3188.h │ │ │ │ │ │ ├── grf_rk3288.h │ │ │ │ │ │ ├── grf_rk3328.h │ │ │ │ │ │ ├── grf_rk3368.h │ │ │ │ │ │ ├── grf_rk3399.h │ │ │ │ │ │ ├── grf_rv1108.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ ├── lvds_rk3288.h │ │ │ │ │ │ ├── periph.h │ │ │ │ │ │ ├── pmu_rk3188.h │ │ │ │ │ │ ├── pmu_rk3288.h │ │ │ │ │ │ ├── pwm.h │ │ │ │ │ │ ├── qos_rk3288.h │ │ │ │ │ │ ├── rockchip_mipi_dsi.h │ │ │ │ │ │ ├── sdram.h │ │ │ │ │ │ ├── sdram_rk3036.h │ │ │ │ │ │ ├── sdram_rk3399.h │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ └── vop_rk3288.h │ │ │ │ │ ├── arch-s32v234 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── ddr.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ ├── lpddr2.h │ │ │ │ │ │ ├── mc_cgm_regs.h │ │ │ │ │ │ ├── mc_me_regs.h │ │ │ │ │ │ ├── mc_rgm_regs.h │ │ │ │ │ │ ├── mmdc.h │ │ │ │ │ │ └── siul.h │ │ │ │ │ ├── arch-sa1100 │ │ │ │ │ │ └── bitfield.h │ │ │ │ │ ├── arch-spear │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── spr_defs.h │ │ │ │ │ │ ├── spr_emi.h │ │ │ │ │ │ ├── spr_gpt.h │ │ │ │ │ │ ├── spr_misc.h │ │ │ │ │ │ ├── spr_ssp.h │ │ │ │ │ │ └── spr_syscntl.h │ │ │ │ │ ├── arch-stih410 │ │ │ │ │ │ └── sdhci.h │ │ │ │ │ ├── arch-stm32f1 │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── stm32.h │ │ │ │ │ ├── arch-stm32f4 │ │ │ │ │ │ ├── fmc.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── stm32.h │ │ │ │ │ │ ├── stm32_defs.h │ │ │ │ │ │ └── stm32_periph.h │ │ │ │ │ ├── arch-stm32f7 │ │ │ │ │ │ ├── fmc.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── gpt.h │ │ │ │ │ │ ├── rcc.h │ │ │ │ │ │ ├── stm32.h │ │ │ │ │ │ ├── stm32_defs.h │ │ │ │ │ │ ├── stm32_periph.h │ │ │ │ │ │ └── syscfg.h │ │ │ │ │ ├── arch-stv0991 │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── stv0991_cgu.h │ │ │ │ │ │ ├── stv0991_creg.h │ │ │ │ │ │ ├── stv0991_defs.h │ │ │ │ │ │ ├── stv0991_gpt.h │ │ │ │ │ │ ├── stv0991_periph.h │ │ │ │ │ │ └── stv0991_wdru.h │ │ │ │ │ ├── arch-sunxi │ │ │ │ │ │ ├── boot0.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── clock_sun4i.h │ │ │ │ │ │ ├── clock_sun6i.h │ │ │ │ │ │ ├── clock_sun8i_a83t.h │ │ │ │ │ │ ├── clock_sun9i.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── cpu_sun4i.h │ │ │ │ │ │ ├── cpu_sun9i.h │ │ │ │ │ │ ├── cpucfg.h │ │ │ │ │ │ ├── display.h │ │ │ │ │ │ ├── display2.h │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ ├── dma_sun4i.h │ │ │ │ │ │ ├── dram.h │ │ │ │ │ │ ├── dram_sun4i.h │ │ │ │ │ │ ├── dram_sun6i.h │ │ │ │ │ │ ├── dram_sun8i_a23.h │ │ │ │ │ │ ├── dram_sun8i_a33.h │ │ │ │ │ │ ├── dram_sun8i_a83t.h │ │ │ │ │ │ ├── dram_sun9i.h │ │ │ │ │ │ ├── dram_sunxi_dw.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── gtbus.h │ │ │ │ │ │ ├── gtbus_sun9i.h │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ ├── lcdc.h │ │ │ │ │ │ ├── mmc.h │ │ │ │ │ │ ├── p2wi.h │ │ │ │ │ │ ├── pmic_bus.h │ │ │ │ │ │ ├── prcm.h │ │ │ │ │ │ ├── pwm.h │ │ │ │ │ │ ├── rsb.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── tve.h │ │ │ │ │ │ ├── tzpc.h │ │ │ │ │ │ ├── usb_phy.h │ │ │ │ │ │ └── watchdog.h │ │ │ │ │ ├── arch-tegra │ │ │ │ │ │ ├── ap.h │ │ │ │ │ │ ├── apb_misc.h │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── bpmp_abi.h │ │ │ │ │ │ ├── clk_rst.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── dc.h │ │ │ │ │ │ ├── funcmux.h │ │ │ │ │ │ ├── fuse.h │ │ │ │ │ │ ├── gp_padctrl.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── gpu.h │ │ │ │ │ │ ├── ivc.h │ │ │ │ │ │ ├── pinmux.h │ │ │ │ │ │ ├── pmc.h │ │ │ │ │ │ ├── powergate.h │ │ │ │ │ │ ├── pwm.h │ │ │ │ │ │ ├── scu.h │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ ├── tegra.h │ │ │ │ │ │ ├── tegra_i2c.h │ │ │ │ │ │ ├── tegra_mmc.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ ├── usb.h │ │ │ │ │ │ ├── warmboot.h │ │ │ │ │ │ └── xusb-padctl.h │ │ │ │ │ ├── arch-tegra114 │ │ │ │ │ │ ├── clock-tables.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── flow.h │ │ │ │ │ │ ├── funcmux.h │ │ │ │ │ │ ├── gp_padctrl.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── mc.h │ │ │ │ │ │ ├── pinmux.h │ │ │ │ │ │ ├── pmu.h │ │ │ │ │ │ ├── powergate.h │ │ │ │ │ │ ├── sysctr.h │ │ │ │ │ │ └── tegra.h │ │ │ │ │ ├── arch-tegra124 │ │ │ │ │ │ ├── ahb.h │ │ │ │ │ │ ├── clock-tables.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── display.h │ │ │ │ │ │ ├── flow.h │ │ │ │ │ │ ├── funcmux.h │ │ │ │ │ │ ├── gp_padctrl.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── mc.h │ │ │ │ │ │ ├── pinmux.h │ │ │ │ │ │ ├── pmu.h │ │ │ │ │ │ ├── powergate.h │ │ │ │ │ │ ├── pwm.h │ │ │ │ │ │ ├── sysctr.h │ │ │ │ │ │ └── tegra.h │ │ │ │ │ ├── arch-tegra186 │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── tegra.h │ │ │ │ │ ├── arch-tegra20 │ │ │ │ │ │ ├── clock-tables.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── display.h │ │ │ │ │ │ ├── emc.h │ │ │ │ │ │ ├── flow.h │ │ │ │ │ │ ├── funcmux.h │ │ │ │ │ │ ├── gp_padctrl.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── mc.h │ │ │ │ │ │ ├── pinmux.h │ │ │ │ │ │ ├── pmu.h │ │ │ │ │ │ ├── powergate.h │ │ │ │ │ │ ├── pwm.h │ │ │ │ │ │ ├── sdram_param.h │ │ │ │ │ │ └── tegra.h │ │ │ │ │ ├── arch-tegra210 │ │ │ │ │ │ ├── ahb.h │ │ │ │ │ │ ├── clock-tables.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── flow.h │ │ │ │ │ │ ├── funcmux.h │ │ │ │ │ │ ├── gp_padctrl.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── mc.h │ │ │ │ │ │ ├── pinmux.h │ │ │ │ │ │ ├── pmu.h │ │ │ │ │ │ ├── powergate.h │ │ │ │ │ │ ├── sysctr.h │ │ │ │ │ │ └── tegra.h │ │ │ │ │ ├── arch-tegra30 │ │ │ │ │ │ ├── clock-tables.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── flow.h │ │ │ │ │ │ ├── funcmux.h │ │ │ │ │ │ ├── gp_padctrl.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── mc.h │ │ │ │ │ │ ├── pinmux.h │ │ │ │ │ │ ├── pmu.h │ │ │ │ │ │ ├── powergate.h │ │ │ │ │ │ └── tegra.h │ │ │ │ │ ├── arch-vf610 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── crm_regs.h │ │ │ │ │ │ ├── ddrmc-vf610.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ └── iomux-vf610.h │ │ │ │ │ ├── arch-zynqmp │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ ├── armv7.h │ │ │ │ │ ├── armv7m.h │ │ │ │ │ ├── armv7m_mpu.h │ │ │ │ │ ├── armv8 │ │ │ │ │ │ ├── mmu.h │ │ │ │ │ │ └── sec_firmware.h │ │ │ │ │ ├── assembler.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── barriers.h │ │ │ │ │ ├── bitops.h │ │ │ │ │ ├── bootm.h │ │ │ │ │ ├── byteorder.h │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── davinci_rtc.h │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ ├── ehci-omap.h │ │ │ │ │ ├── emif.h │ │ │ │ │ ├── fsl_secure_boot.h │ │ │ │ │ ├── gic.h │ │ │ │ │ ├── global_data.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── hardware.h │ │ │ │ │ ├── imx-common │ │ │ │ │ │ ├── boot_mode.h │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hab.h │ │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ │ ├── iomux-v3.h │ │ │ │ │ │ ├── mx5_video.h │ │ │ │ │ │ ├── mxc_i2c.h │ │ │ │ │ │ ├── rdc-sema.h │ │ │ │ │ │ ├── regs-apbh.h │ │ │ │ │ │ ├── regs-bch.h │ │ │ │ │ │ ├── regs-common.h │ │ │ │ │ │ ├── regs-gpmi.h │ │ │ │ │ │ ├── regs-lcdif.h │ │ │ │ │ │ ├── regs-usbphy.h │ │ │ │ │ │ ├── sata.h │ │ │ │ │ │ ├── spi.h │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ ├── syscounter.h │ │ │ │ │ │ └── video.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── iproc-common │ │ │ │ │ │ ├── armpll.h │ │ │ │ │ │ ├── configs.h │ │ │ │ │ │ ├── sysmap.h │ │ │ │ │ │ └── timer.h │ │ │ │ │ ├── kona-common │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ └── kona_sdhci.h │ │ │ │ │ ├── linkage.h │ │ │ │ │ ├── mach-types.h │ │ │ │ │ ├── macro.h │ │ │ │ │ ├── memory.h │ │ │ │ │ ├── omap_common.h │ │ │ │ │ ├── omap_gpio.h │ │ │ │ │ ├── omap_mmc.h │ │ │ │ │ ├── omap_musb.h │ │ │ │ │ ├── omap_sec_common.h │ │ │ │ │ ├── opcodes-sec.h │ │ │ │ │ ├── opcodes-virt.h │ │ │ │ │ ├── opcodes.h │ │ │ │ │ ├── pl310.h │ │ │ │ │ ├── posix_types.h │ │ │ │ │ ├── proc-armv │ │ │ │ │ │ ├── domain.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ └── system.h │ │ │ │ │ ├── processor.h │ │ │ │ │ ├── psci.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── sections.h │ │ │ │ │ ├── secure.h │ │ │ │ │ ├── setjmp.h │ │ │ │ │ ├── setup.h │ │ │ │ │ ├── spin_table.h │ │ │ │ │ ├── spl.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── system.h │ │ │ │ │ ├── ti-common │ │ │ │ │ │ ├── davinci_nand.h │ │ │ │ │ │ ├── keystone_nav.h │ │ │ │ │ │ ├── keystone_net.h │ │ │ │ │ │ ├── keystone_serdes.h │ │ │ │ │ │ ├── omap_wdt.h │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ ├── ti-aemif.h │ │ │ │ │ │ └── ti-edma3.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── u-boot-arm.h │ │ │ │ │ ├── u-boot.h │ │ │ │ │ ├── unaligned.h │ │ │ │ │ ├── unified.h │ │ │ │ │ └── utils.h │ │ │ │ └── debug │ │ │ │ │ └── 8250.S │ │ │ ├── lib │ │ │ │ ├── Makefile │ │ │ │ ├── ashldi3.S │ │ │ │ ├── ashrdi3.S │ │ │ │ ├── asm-offsets.c │ │ │ │ ├── bootm-fdt.c │ │ │ │ ├── bootm.c │ │ │ │ ├── cache-cp15.c │ │ │ │ ├── cache-pl310.c │ │ │ │ ├── cache.c │ │ │ │ ├── ccn504.S │ │ │ │ ├── cmd_boot.c │ │ │ │ ├── crt0.S │ │ │ │ ├── crt0_64.S │ │ │ │ ├── crt0_aarch64_efi.S │ │ │ │ ├── crt0_arm_efi.S │ │ │ │ ├── debug.S │ │ │ │ ├── div0.c │ │ │ │ ├── div64.S │ │ │ │ ├── eabi_compat.c │ │ │ │ ├── elf_aarch64_efi.lds │ │ │ │ ├── elf_arm_efi.lds │ │ │ │ ├── gic_64.S │ │ │ │ ├── interrupts.c │ │ │ │ ├── interrupts_64.c │ │ │ │ ├── interrupts_m.c │ │ │ │ ├── lib1funcs.S │ │ │ │ ├── lshrdi3.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ ├── muldi3.S │ │ │ │ ├── psci-dt.c │ │ │ │ ├── reloc_aarch64_efi.c │ │ │ │ ├── reloc_arm_efi.c │ │ │ │ ├── relocate.S │ │ │ │ ├── relocate_64.S │ │ │ │ ├── reset.c │ │ │ │ ├── sections.c │ │ │ │ ├── semihosting.c │ │ │ │ ├── spl.c │ │ │ │ ├── stack.c │ │ │ │ ├── uldivmod.S │ │ │ │ ├── vectors.S │ │ │ │ ├── vectors_m.S │ │ │ │ └── zimage.c │ │ │ ├── mach-aspeed │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── ast2500-board.c │ │ │ │ ├── ast2500 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk_ast2500.c │ │ │ │ │ └── sdram_ast2500.c │ │ │ │ └── ast_wdt.c │ │ │ ├── mach-at91 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── arm920t │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── at91rm9200_devices.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── reset.c │ │ │ │ │ └── timer.c │ │ │ │ ├── arm926ejs │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── at91sam9260_devices.c │ │ │ │ │ ├── at91sam9261_devices.c │ │ │ │ │ ├── at91sam9263_devices.c │ │ │ │ │ ├── at91sam9m10g45_devices.c │ │ │ │ │ ├── at91sam9n12_devices.c │ │ │ │ │ ├── at91sam9rl_devices.c │ │ │ │ │ ├── at91sam9x5_devices.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── eflash.c │ │ │ │ │ ├── led.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── reset.c │ │ │ │ │ ├── timer.c │ │ │ │ │ └── u-boot-spl.lds │ │ │ │ ├── armv7 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── reset.c │ │ │ │ │ ├── sama5d2_devices.c │ │ │ │ │ ├── sama5d3_devices.c │ │ │ │ │ ├── sama5d4_devices.c │ │ │ │ │ ├── timer.c │ │ │ │ │ └── u-boot-spl.lds │ │ │ │ ├── atmel_sfr.c │ │ │ │ ├── bootparams_atmel.S │ │ │ │ ├── clock.c │ │ │ │ ├── config.mk │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── at91_common.h │ │ │ │ │ │ ├── at91_dbu.h │ │ │ │ │ │ ├── at91_eefc.h │ │ │ │ │ │ ├── at91_emac.h │ │ │ │ │ │ ├── at91_gpbr.h │ │ │ │ │ │ ├── at91_matrix.h │ │ │ │ │ │ ├── at91_mc.h │ │ │ │ │ │ ├── at91_pdc.h │ │ │ │ │ │ ├── at91_pio.h │ │ │ │ │ │ ├── at91_pit.h │ │ │ │ │ │ ├── at91_pmc.h │ │ │ │ │ │ ├── at91_rstc.h │ │ │ │ │ │ ├── at91_rtc.h │ │ │ │ │ │ ├── at91_rtt.h │ │ │ │ │ │ ├── at91_sck.h │ │ │ │ │ │ ├── at91_spi.h │ │ │ │ │ │ ├── at91_st.h │ │ │ │ │ │ ├── at91_tc.h │ │ │ │ │ │ ├── at91_wdt.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 │ │ │ │ │ │ ├── at91sam9x5.h │ │ │ │ │ │ ├── at91sam9x5_matrix.h │ │ │ │ │ │ ├── atmel_mpddrc.h │ │ │ │ │ │ ├── atmel_pio4.h │ │ │ │ │ │ ├── atmel_sdhci.h │ │ │ │ │ │ ├── atmel_serial.h │ │ │ │ │ │ ├── atmel_usba_udc.h │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── sama5_boot.h │ │ │ │ │ │ ├── sama5_matrix.h │ │ │ │ │ │ ├── sama5_sfr.h │ │ │ │ │ │ ├── sama5d2.h │ │ │ │ │ │ ├── sama5d3.h │ │ │ │ │ │ ├── sama5d3_smc.h │ │ │ │ │ │ └── sama5d4.h │ │ │ │ ├── matrix.c │ │ │ │ ├── mpddrc.c │ │ │ │ ├── phy.c │ │ │ │ ├── sdram.c │ │ │ │ ├── spl.c │ │ │ │ ├── spl_at91.c │ │ │ │ └── spl_atmel.c │ │ │ ├── mach-bcm283x │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── mbox.h │ │ │ │ │ │ ├── msg.h │ │ │ │ │ │ ├── sdhci.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ └── wdog.h │ │ │ │ ├── init.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── mbox.c │ │ │ │ ├── msg.c │ │ │ │ ├── phys2bus.c │ │ │ │ └── reset.c │ │ │ ├── mach-davinci │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── cpu.c │ │ │ │ ├── da830_pinmux.c │ │ │ │ ├── da850_lowlevel.c │ │ │ │ ├── da850_pinmux.c │ │ │ │ ├── dm355.c │ │ │ │ ├── dm365.c │ │ │ │ ├── dm365_lowlevel.c │ │ │ │ ├── dm644x.c │ │ │ │ ├── dm646x.c │ │ │ │ ├── dp83848.c │ │ │ │ ├── et1011c.c │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── aintc_defs.h │ │ │ │ │ │ ├── da850_lowlevel.h │ │ │ │ │ │ ├── da8xx-usb.h │ │ │ │ │ │ ├── davinci_misc.h │ │ │ │ │ │ ├── ddr2_defs.h │ │ │ │ │ │ ├── dm365_lowlevel.h │ │ │ │ │ │ ├── emac_defs.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── i2c_defs.h │ │ │ │ │ │ ├── pinmux_defs.h │ │ │ │ │ │ ├── pll_defs.h │ │ │ │ │ │ ├── psc_defs.h │ │ │ │ │ │ ├── sdmmc_defs.h │ │ │ │ │ │ ├── syscfg_defs.h │ │ │ │ │ │ └── timer_defs.h │ │ │ │ ├── ksz8873.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── lxt972.c │ │ │ │ ├── misc.c │ │ │ │ ├── pinmux.c │ │ │ │ ├── psc.c │ │ │ │ ├── reset.c │ │ │ │ ├── spl.c │ │ │ │ └── timer.c │ │ │ ├── mach-exynos │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── clock_init.h │ │ │ │ ├── clock_init_exynos4.c │ │ │ │ ├── clock_init_exynos5.c │ │ │ │ ├── common_setup.h │ │ │ │ ├── config.mk │ │ │ │ ├── dmc_common.c │ │ │ │ ├── dmc_init_ddr3.c │ │ │ │ ├── dmc_init_exynos4.c │ │ │ │ ├── exynos4_setup.h │ │ │ │ ├── exynos5_setup.h │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── adc.h │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── dmc.h │ │ │ │ │ │ ├── dp.h │ │ │ │ │ │ ├── dp_info.h │ │ │ │ │ │ ├── dsim.h │ │ │ │ │ │ ├── dwmmc.h │ │ │ │ │ │ ├── ehci.h │ │ │ │ │ │ ├── fb.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── i2s-regs.h │ │ │ │ │ │ ├── mipi_dsim.h │ │ │ │ │ │ ├── mmc.h │ │ │ │ │ │ ├── periph.h │ │ │ │ │ │ ├── pinmux.h │ │ │ │ │ │ ├── power.h │ │ │ │ │ │ ├── pwm.h │ │ │ │ │ │ ├── pwm_backlight.h │ │ │ │ │ │ ├── sound.h │ │ │ │ │ │ ├── spi.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ ├── sromc.h │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── tmu.h │ │ │ │ │ │ ├── tzpc.h │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ ├── watchdog.h │ │ │ │ │ │ └── xhci-exynos.h │ │ │ │ ├── lowlevel_init.c │ │ │ │ ├── mmu-arm64.c │ │ │ │ ├── pinmux.c │ │ │ │ ├── power.c │ │ │ │ ├── sec_boot.S │ │ │ │ ├── soc.c │ │ │ │ ├── spl_boot.c │ │ │ │ ├── system.c │ │ │ │ └── tzpc.c │ │ │ ├── mach-highbank │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ └── timer.c │ │ │ ├── mach-integrator │ │ │ │ └── Kconfig │ │ │ ├── mach-keystone │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── cmd_clock.c │ │ │ │ ├── cmd_ddr3.c │ │ │ │ ├── cmd_mon.c │ │ │ │ ├── cmd_poweroff.c │ │ │ │ ├── config.mk │ │ │ │ ├── ddr3.c │ │ │ │ ├── ddr3_spd.c │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── clock-k2e.h │ │ │ │ │ │ ├── clock-k2g.h │ │ │ │ │ │ ├── clock-k2hk.h │ │ │ │ │ │ ├── clock-k2l.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── clock_defs.h │ │ │ │ │ │ ├── ddr3.h │ │ │ │ │ │ ├── hardware-k2e.h │ │ │ │ │ │ ├── hardware-k2g.h │ │ │ │ │ │ ├── hardware-k2hk.h │ │ │ │ │ │ ├── hardware-k2l.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── i2c_defs.h │ │ │ │ │ │ ├── mmc_host_def.h │ │ │ │ │ │ ├── mon.h │ │ │ │ │ │ ├── msmc.h │ │ │ │ │ │ ├── mux-k2g.h │ │ │ │ │ │ ├── psc_defs.h │ │ │ │ │ │ └── xhci-keystone.h │ │ │ │ ├── init.c │ │ │ │ ├── keystone.c │ │ │ │ ├── mon.c │ │ │ │ ├── msmc.c │ │ │ │ └── psc.c │ │ │ ├── mach-kirkwood │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── cache.c │ │ │ │ ├── cpu.c │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── kw88f6192.h │ │ │ │ │ │ ├── kw88f6281.h │ │ │ │ │ │ ├── mpp.h │ │ │ │ │ │ └── soc.h │ │ │ │ └── mpp.c │ │ │ ├── mach-meson │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ └── sm.c │ │ │ ├── mach-mvebu │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── arm64-common.c │ │ │ │ ├── armada3700 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cpu.c │ │ │ │ ├── armada8k │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache_llc.S │ │ │ │ │ └── cpu.c │ │ │ │ ├── cpu.c │ │ │ │ ├── dram.c │ │ │ │ ├── efuse.c │ │ │ │ ├── gpio.c │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── efuse.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── soc.h │ │ │ │ ├── lowlevel_spl.S │ │ │ │ ├── mbus.c │ │ │ │ ├── sata.c │ │ │ │ ├── serdes │ │ │ │ │ ├── a38x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ctrl_pex.c │ │ │ │ │ │ ├── ctrl_pex.h │ │ │ │ │ │ ├── high_speed_env_spec-38x.c │ │ │ │ │ │ ├── high_speed_env_spec.c │ │ │ │ │ │ ├── high_speed_env_spec.h │ │ │ │ │ │ ├── seq_exec.c │ │ │ │ │ │ ├── seq_exec.h │ │ │ │ │ │ ├── sys_env_lib.c │ │ │ │ │ │ └── sys_env_lib.h │ │ │ │ │ └── axp │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── board_env_spec.h │ │ │ │ │ │ ├── high_speed_env_lib.c │ │ │ │ │ │ ├── high_speed_env_spec.c │ │ │ │ │ │ └── high_speed_env_spec.h │ │ │ │ ├── spl.c │ │ │ │ └── timer.c │ │ │ ├── mach-omap2 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── abb.c │ │ │ │ ├── am33xx │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── chilisom.c │ │ │ │ │ ├── clk_synthesizer.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── clock_am33xx.c │ │ │ │ │ ├── clock_am43xx.c │ │ │ │ │ ├── clock_ti814x.c │ │ │ │ │ ├── clock_ti816x.c │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── emif4.c │ │ │ │ │ ├── hw_data.c │ │ │ │ │ ├── mux.c │ │ │ │ │ ├── prcm-regs.c │ │ │ │ │ ├── sys_info.c │ │ │ │ │ └── ti816x_emif4.c │ │ │ │ ├── boot-common.c │ │ │ │ ├── clocks-common.c │ │ │ │ ├── config.mk │ │ │ │ ├── config_secure.mk │ │ │ │ ├── emif-common.c │ │ │ │ ├── hwinit-common.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── mem-common.c │ │ │ │ ├── omap-cache.c │ │ │ │ ├── omap3 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── am35x_musb.c │ │ │ │ │ ├── board.c │ │ │ │ │ ├── boot.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── emac.c │ │ │ │ │ ├── emif4.c │ │ │ │ │ ├── hw_data.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── prcm-regs.c │ │ │ │ │ ├── sdrc.c │ │ │ │ │ ├── spl_id_nand.c │ │ │ │ │ └── sys_info.c │ │ │ │ ├── omap4 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── boot.c │ │ │ │ │ ├── emif.c │ │ │ │ │ ├── hw_data.c │ │ │ │ │ ├── hwinit.c │ │ │ │ │ ├── prcm-regs.c │ │ │ │ │ └── sdram_elpida.c │ │ │ │ ├── omap5 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── abb.c │ │ │ │ │ ├── boot.c │ │ │ │ │ ├── dra7xx_iodelay.c │ │ │ │ │ ├── emif.c │ │ │ │ │ ├── fdt.c │ │ │ │ │ ├── hw_data.c │ │ │ │ │ ├── hwinit.c │ │ │ │ │ ├── prcm-regs.c │ │ │ │ │ ├── sdram.c │ │ │ │ │ ├── sec-fxns.c │ │ │ │ │ └── sec_entry_cpu1.S │ │ │ │ ├── pipe3-phy.c │ │ │ │ ├── pipe3-phy.h │ │ │ │ ├── reset.c │ │ │ │ ├── sata.c │ │ │ │ ├── sec-common.c │ │ │ │ ├── sysinfo-common.c │ │ │ │ ├── timer.c │ │ │ │ ├── u-boot-spl.lds │ │ │ │ ├── utils.c │ │ │ │ └── vc.c │ │ │ ├── mach-orion5x │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ ├── dram.c │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── mv88f5182.h │ │ │ │ │ │ └── orion5x.h │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── timer.c │ │ │ ├── mach-rmobile │ │ │ │ ├── Kconfig │ │ │ │ ├── Kconfig.32 │ │ │ │ ├── Kconfig.64 │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── cpu_info-r8a7740.c │ │ │ │ ├── cpu_info-rcar.c │ │ │ │ ├── cpu_info-sh73a0.c │ │ │ │ ├── cpu_info.c │ │ │ │ ├── emac.c │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── ehci-rmobile.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── irqs.h │ │ │ │ │ │ ├── mmc.h │ │ │ │ │ │ ├── r8a7740-gpio.h │ │ │ │ │ │ ├── r8a7740.h │ │ │ │ │ │ ├── r8a7790-gpio.h │ │ │ │ │ │ ├── r8a7790.h │ │ │ │ │ │ ├── r8a7791-gpio.h │ │ │ │ │ │ ├── r8a7791.h │ │ │ │ │ │ ├── r8a7792-gpio.h │ │ │ │ │ │ ├── r8a7792.h │ │ │ │ │ │ ├── r8a7793-gpio.h │ │ │ │ │ │ ├── r8a7793.h │ │ │ │ │ │ ├── r8a7794-gpio.h │ │ │ │ │ │ ├── r8a7794.h │ │ │ │ │ │ ├── r8a7795-gpio.h │ │ │ │ │ │ ├── r8a7795.h │ │ │ │ │ │ ├── r8a7796-gpio.h │ │ │ │ │ │ ├── r8a7796.h │ │ │ │ │ │ ├── rcar-base.h │ │ │ │ │ │ ├── rcar-gen3-base.h │ │ │ │ │ │ ├── rcar-mstp.h │ │ │ │ │ │ ├── rmobile.h │ │ │ │ │ │ ├── sh73a0-gpio.h │ │ │ │ │ │ ├── sh73a0.h │ │ │ │ │ │ ├── sh_sdhi.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── lowlevel_init_ca15.S │ │ │ │ ├── lowlevel_init_gen3.S │ │ │ │ ├── memmap-r8a7795.c │ │ │ │ ├── memmap-r8a7796.c │ │ │ │ ├── pfc-r8a7740.c │ │ │ │ ├── pfc-r8a7790.c │ │ │ │ ├── pfc-r8a7790.h │ │ │ │ ├── pfc-r8a7791.c │ │ │ │ ├── pfc-r8a7792.c │ │ │ │ ├── pfc-r8a7793.c │ │ │ │ ├── pfc-r8a7794.c │ │ │ │ ├── pfc-r8a7795.c │ │ │ │ ├── pfc-r8a7796.c │ │ │ │ ├── pfc-sh73a0.c │ │ │ │ └── timer.c │ │ │ ├── mach-rockchip │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── bootrom.c │ │ │ │ ├── rk3036-board-spl.c │ │ │ │ ├── rk3036-board.c │ │ │ │ ├── rk3036 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk_rk3036.c │ │ │ │ │ ├── sdram_rk3036.c │ │ │ │ │ └── syscon_rk3036.c │ │ │ │ ├── rk3188-board-spl.c │ │ │ │ ├── rk3188-board-tpl.c │ │ │ │ ├── rk3188-board.c │ │ │ │ ├── rk3188 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk_rk3188.c │ │ │ │ │ ├── sdram_rk3188.c │ │ │ │ │ └── syscon_rk3188.c │ │ │ │ ├── rk3288-board-spl.c │ │ │ │ ├── rk3288-board.c │ │ │ │ ├── rk3288 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk_rk3288.c │ │ │ │ │ ├── rk3288.c │ │ │ │ │ ├── sdram_rk3288.c │ │ │ │ │ └── syscon_rk3288.c │ │ │ │ ├── rk3328 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk_rk3328.c │ │ │ │ │ ├── rk3328.c │ │ │ │ │ └── syscon_rk3328.c │ │ │ │ ├── rk3368 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk_rk3368.c │ │ │ │ │ ├── rk3368.c │ │ │ │ │ └── syscon_rk3368.c │ │ │ │ ├── rk3399-board-spl.c │ │ │ │ ├── rk3399 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk_rk3399.c │ │ │ │ │ ├── rk3399.c │ │ │ │ │ ├── sdram_rk3399.c │ │ │ │ │ └── syscon_rk3399.c │ │ │ │ ├── rk_timer.c │ │ │ │ ├── rv1108 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk_rv1108.c │ │ │ │ │ ├── rv1108.c │ │ │ │ │ └── syscon_rv1108.c │ │ │ │ └── save_boot_param.S │ │ │ ├── mach-s5pc1xx │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── cache.c │ │ │ │ ├── clock.c │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── mmc.h │ │ │ │ │ │ ├── periph.h │ │ │ │ │ │ ├── pinmux.h │ │ │ │ │ │ ├── power.h │ │ │ │ │ │ ├── pwm.h │ │ │ │ │ │ ├── sromc.h │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ └── watchdog.h │ │ │ │ └── reset.S │ │ │ ├── mach-snapdragon │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── clock-apq8016.c │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── sysmap-apq8016.h │ │ │ │ └── sysmap-apq8016.c │ │ │ ├── mach-socfpga │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── clock_manager.c │ │ │ │ ├── clock_manager_arria10.c │ │ │ │ ├── clock_manager_gen5.c │ │ │ │ ├── fpga_manager.c │ │ │ │ ├── freeze_controller.c │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── base_addr_a10.h │ │ │ │ │ │ ├── base_addr_ac5.h │ │ │ │ │ │ ├── boot0.h │ │ │ │ │ │ ├── clock_manager.h │ │ │ │ │ │ ├── clock_manager_arria10.h │ │ │ │ │ │ ├── clock_manager_gen5.h │ │ │ │ │ │ ├── fpga_manager.h │ │ │ │ │ │ ├── freeze_controller.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── misc.h │ │ │ │ │ │ ├── nic301.h │ │ │ │ │ │ ├── pinmux.h │ │ │ │ │ │ ├── reset_manager.h │ │ │ │ │ │ ├── reset_manager_arria10.h │ │ │ │ │ │ ├── reset_manager_gen5.h │ │ │ │ │ │ ├── scan_manager.h │ │ │ │ │ │ ├── scu.h │ │ │ │ │ │ ├── sdram.h │ │ │ │ │ │ ├── sdram_arria10.h │ │ │ │ │ │ ├── system_manager.h │ │ │ │ │ │ ├── system_manager_arria10.h │ │ │ │ │ │ ├── system_manager_gen5.h │ │ │ │ │ │ └── timer.h │ │ │ │ ├── misc.c │ │ │ │ ├── misc_arria10.c │ │ │ │ ├── misc_gen5.c │ │ │ │ ├── pinmux_arria10.c │ │ │ │ ├── qts-filter.sh │ │ │ │ ├── reset_manager.c │ │ │ │ ├── reset_manager_arria10.c │ │ │ │ ├── reset_manager_gen5.c │ │ │ │ ├── scan_manager.c │ │ │ │ ├── spl.c │ │ │ │ ├── system_manager_gen5.c │ │ │ │ ├── timer.c │ │ │ │ ├── wrap_iocsr_config.c │ │ │ │ ├── wrap_pinmux_config.c │ │ │ │ ├── wrap_pll_config.c │ │ │ │ └── wrap_sdram_config.c │ │ │ ├── mach-sti │ │ │ │ └── Kconfig │ │ │ ├── mach-stm32 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── stm32f1 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── soc.c │ │ │ │ │ └── timer.c │ │ │ │ ├── stm32f4 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── soc.c │ │ │ │ │ └── timer.c │ │ │ │ └── stm32f7 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── soc.c │ │ │ │ │ └── timer.c │ │ │ ├── mach-sunxi │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── clock.c │ │ │ │ ├── clock_sun4i.c │ │ │ │ ├── clock_sun6i.c │ │ │ │ ├── clock_sun8i_a83t.c │ │ │ │ ├── clock_sun9i.c │ │ │ │ ├── cpu_info.c │ │ │ │ ├── dram_helpers.c │ │ │ │ ├── dram_sun4i.c │ │ │ │ ├── dram_sun6i.c │ │ │ │ ├── dram_sun8i_a23.c │ │ │ │ ├── dram_sun8i_a33.c │ │ │ │ ├── dram_sun8i_a83t.c │ │ │ │ ├── dram_sun9i.c │ │ │ │ ├── dram_sunxi_dw.c │ │ │ │ ├── dram_timings │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr2_v3s.c │ │ │ │ │ ├── ddr3_1333.c │ │ │ │ │ └── lpddr3_stock.c │ │ │ │ ├── gtbus_sun9i.c │ │ │ │ ├── p2wi.c │ │ │ │ ├── pinmux.c │ │ │ │ ├── pmic_bus.c │ │ │ │ ├── prcm.c │ │ │ │ ├── rmr_switch.S │ │ │ │ ├── rsb.c │ │ │ │ └── usb_phy.c │ │ │ ├── mach-tegra │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── ap.c │ │ │ │ ├── arm64-mmu.c │ │ │ │ ├── board.c │ │ │ │ ├── board186.c │ │ │ │ ├── board2.c │ │ │ │ ├── cache.c │ │ │ │ ├── clock.c │ │ │ │ ├── cmd_enterrcm.c │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu.h │ │ │ │ ├── dt-setup.c │ │ │ │ ├── emc.c │ │ │ │ ├── emc.h │ │ │ │ ├── gpu.c │ │ │ │ ├── ivc.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── pinmux-common.c │ │ │ │ ├── powergate.c │ │ │ │ ├── psci.S │ │ │ │ ├── spl.c │ │ │ │ ├── sys_info.c │ │ │ │ ├── tegra114 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── funcmux.c │ │ │ │ │ └── pinmux.c │ │ │ │ ├── tegra124 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── funcmux.c │ │ │ │ │ ├── pinmux.c │ │ │ │ │ ├── psci.c │ │ │ │ │ └── xusb-padctl.c │ │ │ │ ├── tegra186 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.S │ │ │ │ │ ├── nvtboot_board.c │ │ │ │ │ ├── nvtboot_ll.S │ │ │ │ │ └── nvtboot_mem.c │ │ │ │ ├── tegra20 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── crypto.c │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── display.c │ │ │ │ │ ├── emc.c │ │ │ │ │ ├── funcmux.c │ │ │ │ │ ├── pinmux.c │ │ │ │ │ ├── pmu.c │ │ │ │ │ ├── warmboot.c │ │ │ │ │ ├── warmboot_avp.c │ │ │ │ │ └── warmboot_avp.h │ │ │ │ ├── tegra210 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── funcmux.c │ │ │ │ │ ├── pinmux.c │ │ │ │ │ └── xusb-padctl.c │ │ │ │ ├── tegra30 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── funcmux.c │ │ │ │ │ └── pinmux.c │ │ │ │ ├── xusb-padctl-common.c │ │ │ │ ├── xusb-padctl-common.h │ │ │ │ └── xusb-padctl-dummy.c │ │ │ ├── mach-uniphier │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── arm32 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── arm-mpcore.h │ │ │ │ │ ├── cache-uniphier.c │ │ │ │ │ ├── cache-uniphier.h │ │ │ │ │ ├── debug_ll.S │ │ │ │ │ ├── late_lowlevel_init.S │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── psci.c │ │ │ │ │ ├── psci_smp.S │ │ │ │ │ └── timer.c │ │ │ │ ├── arm64 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── arm-cci500.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── mem_map.c │ │ │ │ │ ├── smp.S │ │ │ │ │ ├── smp_kick_cpus.c │ │ │ │ │ └── timer.c │ │ │ │ ├── bcu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bcu-ld4.c │ │ │ │ │ ├── bcu-regs.h │ │ │ │ │ └── bcu-sld3.c │ │ │ │ ├── board_init.c │ │ │ │ ├── board_late_init.c │ │ │ │ ├── boards.c │ │ │ │ ├── boot-device │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── boot-device-ld11.c │ │ │ │ │ ├── boot-device-ld4.c │ │ │ │ │ ├── boot-device-pro5.c │ │ │ │ │ ├── boot-device-pxs2.c │ │ │ │ │ ├── boot-device-pxs3.c │ │ │ │ │ ├── boot-device-sld3.c │ │ │ │ │ ├── boot-device.c │ │ │ │ │ ├── boot-device.h │ │ │ │ │ └── spl_board.c │ │ │ │ ├── clk │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk-dram-ld11.c │ │ │ │ │ ├── clk-dram-ld20.c │ │ │ │ │ ├── clk-dram-pro5.c │ │ │ │ │ ├── clk-dram-pxs2.c │ │ │ │ │ ├── clk-dram-sld3.c │ │ │ │ │ ├── clk-early-ld11.c │ │ │ │ │ ├── clk-early-sld3.c │ │ │ │ │ ├── clk-ld11.c │ │ │ │ │ ├── clk-ld20.c │ │ │ │ │ ├── clk-ld4.c │ │ │ │ │ ├── clk-pro4.c │ │ │ │ │ ├── clk-pro5.c │ │ │ │ │ ├── clk-pxs2.c │ │ │ │ │ ├── clk-pxs3.c │ │ │ │ │ ├── dpll-ld11.c │ │ │ │ │ ├── dpll-ld20.c │ │ │ │ │ ├── dpll-ld4.c │ │ │ │ │ ├── dpll-pro4.c │ │ │ │ │ ├── dpll-pro5.c │ │ │ │ │ ├── dpll-pxs2.c │ │ │ │ │ ├── dpll-sld3.c │ │ │ │ │ ├── dpll-sld8.c │ │ │ │ │ ├── dpll-tail.c │ │ │ │ │ ├── pll-base-ld20.c │ │ │ │ │ ├── pll-ld11.c │ │ │ │ │ ├── pll-ld20.c │ │ │ │ │ ├── pll-ld4.c │ │ │ │ │ ├── pll-pro4.c │ │ │ │ │ ├── pll-pxs3.c │ │ │ │ │ ├── pll-sld3.c │ │ │ │ │ └── pll.h │ │ │ │ ├── cpu-info.c │ │ │ │ ├── debug-uart │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── debug-uart-ld20.c │ │ │ │ │ ├── debug-uart-ld4.c │ │ │ │ │ ├── debug-uart-ld6b.c │ │ │ │ │ ├── debug-uart-pro4.c │ │ │ │ │ ├── debug-uart-pro5.c │ │ │ │ │ ├── debug-uart-pxs2.c │ │ │ │ │ ├── debug-uart-sld3.c │ │ │ │ │ ├── debug-uart-sld8.c │ │ │ │ │ ├── debug-uart.c │ │ │ │ │ └── debug-uart.h │ │ │ │ ├── debug.h │ │ │ │ ├── dram │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmd_ddrmphy.c │ │ │ │ │ ├── cmd_ddrphy.c │ │ │ │ │ ├── ddrmphy-regs.h │ │ │ │ │ ├── ddrphy-init.h │ │ │ │ │ ├── ddrphy-ld4.c │ │ │ │ │ ├── ddrphy-regs.h │ │ │ │ │ ├── ddrphy-training.c │ │ │ │ │ ├── ddruqphy-regs.h │ │ │ │ │ ├── umc-ld11.c │ │ │ │ │ ├── umc-ld20.c │ │ │ │ │ ├── umc-ld4.c │ │ │ │ │ ├── umc-pro4.c │ │ │ │ │ ├── umc-pro5.c │ │ │ │ │ ├── umc-pxs2.c │ │ │ │ │ ├── umc-regs.h │ │ │ │ │ ├── umc-sld3.c │ │ │ │ │ ├── umc-sld8.c │ │ │ │ │ └── umc64-regs.h │ │ │ │ ├── dram_init.c │ │ │ │ ├── init.h │ │ │ │ ├── memconf.c │ │ │ │ ├── micro-support-card.c │ │ │ │ ├── micro-support-card.h │ │ │ │ ├── mmc-boot-mode.c │ │ │ │ ├── mmc-first-dev.c │ │ │ │ ├── pinctrl-glue.c │ │ │ │ ├── reset.c │ │ │ │ ├── sbc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── sbc-ld11.c │ │ │ │ │ ├── sbc-ld4.c │ │ │ │ │ ├── sbc-pxs2.c │ │ │ │ │ ├── sbc-regs.h │ │ │ │ │ └── sbc.c │ │ │ │ ├── sc-regs.h │ │ │ │ ├── sc64-regs.h │ │ │ │ ├── sg-regs.h │ │ │ │ ├── soc-info.c │ │ │ │ ├── soc-info.h │ │ │ │ └── spl_board_init.c │ │ │ ├── mach-versatile │ │ │ │ ├── Makefile │ │ │ │ ├── reset.S │ │ │ │ └── timer.c │ │ │ ├── mach-zynq │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── clk.c │ │ │ │ ├── cpu.c │ │ │ │ ├── ddrc.c │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── slcr.c │ │ │ │ ├── spl.c │ │ │ │ ├── timer.c │ │ │ │ ├── u-boot-spl.lds │ │ │ │ └── u-boot.lds │ │ │ └── thumb1 │ │ │ │ └── include │ │ │ │ └── asm │ │ │ │ └── proc-armv │ │ │ │ └── system.h │ │ ├── m68k │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu │ │ │ │ ├── mcf5227x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── speed.c │ │ │ │ │ └── start.S │ │ │ │ ├── mcf523x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── speed.c │ │ │ │ │ └── start.S │ │ │ │ ├── mcf52x2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── speed.c │ │ │ │ │ └── start.S │ │ │ │ ├── mcf530x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── speed.c │ │ │ │ │ └── start.S │ │ │ │ ├── mcf532x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── speed.c │ │ │ │ │ └── start.S │ │ │ │ ├── mcf5445x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── speed.c │ │ │ │ │ └── start.S │ │ │ │ ├── mcf547x_8x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── slicetimer.c │ │ │ │ │ ├── speed.c │ │ │ │ │ └── start.S │ │ │ │ └── u-boot.lds │ │ │ ├── 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 │ │ │ │ │ ├── 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_5307.h │ │ │ │ │ ├── immap_5329.h │ │ │ │ │ ├── immap_5441x.h │ │ │ │ │ ├── immap_5445x.h │ │ │ │ │ ├── immap_547x_8x.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── linkage.h │ │ │ │ │ ├── m520x.h │ │ │ │ │ ├── m5227x.h │ │ │ │ │ ├── m5235.h │ │ │ │ │ ├── m5249.h │ │ │ │ │ ├── m5253.h │ │ │ │ │ ├── m5271.h │ │ │ │ │ ├── m5272.h │ │ │ │ │ ├── m5275.h │ │ │ │ │ ├── m5282.h │ │ │ │ │ ├── m5301x.h │ │ │ │ │ ├── m5307.h │ │ │ │ │ ├── m5329.h │ │ │ │ │ ├── m5441x.h │ │ │ │ │ ├── m5445x.h │ │ │ │ │ ├── m547x_8x.h │ │ │ │ │ ├── posix_types.h │ │ │ │ │ ├── processor.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── rtc.h │ │ │ │ │ ├── sections.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── timer.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── u-boot.h │ │ │ │ │ ├── uart.h │ │ │ │ │ └── unaligned.h │ │ │ └── lib │ │ │ │ ├── Makefile │ │ │ │ ├── ashldi3.c │ │ │ │ ├── bootm.c │ │ │ │ ├── cache.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── lshrdi3.c │ │ │ │ ├── muldi3.c │ │ │ │ ├── time.c │ │ │ │ └── traps.c │ │ ├── microblaze │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu │ │ │ │ ├── Makefile │ │ │ │ ├── cache.c │ │ │ │ ├── exception.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── irq.S │ │ │ │ ├── spl.c │ │ │ │ ├── start.S │ │ │ │ ├── timer.c │ │ │ │ ├── u-boot-spl.lds │ │ │ │ └── u-boot.lds │ │ │ ├── dts │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ │ └── dt-bindings │ │ │ │ └── microblaze-generic.dts │ │ │ ├── include │ │ │ │ └── asm │ │ │ │ │ ├── asm.h │ │ │ │ │ ├── bitops.h │ │ │ │ │ ├── byteorder.h │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── global_data.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── linkage.h │ │ │ │ │ ├── microblaze_intc.h │ │ │ │ │ ├── microblaze_timer.h │ │ │ │ │ ├── posix_types.h │ │ │ │ │ ├── processor.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── sections.h │ │ │ │ │ ├── spl.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── system.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── u-boot.h │ │ │ │ │ └── unaligned.h │ │ │ └── lib │ │ │ │ ├── Makefile │ │ │ │ ├── bootm.c │ │ │ │ └── muldi3.c │ │ ├── mips │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu │ │ │ │ ├── Makefile │ │ │ │ ├── cm_init.S │ │ │ │ ├── cpu.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── mips32 │ │ │ │ │ └── config.mk │ │ │ │ ├── mips64 │ │ │ │ │ └── config.mk │ │ │ │ ├── start.S │ │ │ │ ├── time.c │ │ │ │ ├── u-boot-spl.lds │ │ │ │ └── u-boot.lds │ │ │ ├── dts │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── ap121.dts │ │ │ │ ├── ap143.dts │ │ │ │ ├── ar933x.dtsi │ │ │ │ ├── ar934x.dtsi │ │ │ │ ├── brcm,bcm3380.dtsi │ │ │ │ ├── brcm,bcm63268.dtsi │ │ │ │ ├── brcm,bcm6328.dtsi │ │ │ │ ├── brcm,bcm6338.dtsi │ │ │ │ ├── brcm,bcm6348.dtsi │ │ │ │ ├── brcm,bcm6358.dtsi │ │ │ │ ├── comtrend,ar-5387un.dts │ │ │ │ ├── comtrend,ct-5361.dts │ │ │ │ ├── comtrend,vr-3032u.dts │ │ │ │ ├── huawei,hg556a.dts │ │ │ │ ├── img,boston.dts │ │ │ │ ├── include │ │ │ │ │ └── dt-bindings │ │ │ │ ├── microAptiv.dtsi │ │ │ │ ├── mti,malta.dts │ │ │ │ ├── netgear,cg3100d.dts │ │ │ │ ├── nexys4ddr.dts │ │ │ │ ├── pic32mzda.dtsi │ │ │ │ ├── pic32mzda_sk.dts │ │ │ │ ├── qca953x.dtsi │ │ │ │ ├── sagem,f@st1704.dts │ │ │ │ ├── sfr,nb4-ser.dts │ │ │ │ ├── skeleton.dtsi │ │ │ │ └── tplink_wdr4300.dts │ │ │ ├── include │ │ │ │ └── asm │ │ │ │ │ ├── addrspace.h │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ ├── asm.h │ │ │ │ │ ├── bitops.h │ │ │ │ │ ├── byteorder.h │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── cachectl.h │ │ │ │ │ ├── cacheops.h │ │ │ │ │ ├── cm.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── const.h │ │ │ │ │ ├── cpu-features.h │ │ │ │ │ ├── global_data.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── isadep.h │ │ │ │ │ ├── linkage.h │ │ │ │ │ ├── mach-generic │ │ │ │ │ ├── cpu-feature-overrides.h │ │ │ │ │ ├── ioremap.h │ │ │ │ │ ├── mangle-port.h │ │ │ │ │ └── spaces.h │ │ │ │ │ ├── malta.h │ │ │ │ │ ├── mipsregs.h │ │ │ │ │ ├── pgtable-bits.h │ │ │ │ │ ├── posix_types.h │ │ │ │ │ ├── processor.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── reboot.h │ │ │ │ │ ├── reg.h │ │ │ │ │ ├── regdef.h │ │ │ │ │ ├── sections.h │ │ │ │ │ ├── sgidefs.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── system.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── u-boot-mips.h │ │ │ │ │ ├── u-boot.h │ │ │ │ │ └── unaligned.h │ │ │ ├── lib │ │ │ │ ├── Makefile │ │ │ │ ├── ashldi3.c │ │ │ │ ├── ashrdi3.c │ │ │ │ ├── asm-offsets.c │ │ │ │ ├── bootm.c │ │ │ │ ├── cache.c │ │ │ │ ├── cache_init.S │ │ │ │ ├── genex.S │ │ │ │ ├── libgcc.h │ │ │ │ ├── lshrdi3.c │ │ │ │ ├── stack.c │ │ │ │ └── traps.c │ │ │ ├── mach-ath79 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── ar933x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk.c │ │ │ │ │ ├── ddr.c │ │ │ │ │ └── lowlevel_init.S │ │ │ │ ├── ar934x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ └── ddr.c │ │ │ │ ├── cpu.c │ │ │ │ ├── dram.c │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── ar71xx_regs.h │ │ │ │ │ │ ├── ath79.h │ │ │ │ │ │ └── ddr.h │ │ │ │ ├── qca953x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clk.c │ │ │ │ │ ├── ddr.c │ │ │ │ │ └── lowlevel_init.S │ │ │ │ └── reset.c │ │ │ ├── mach-au1x00 │ │ │ │ ├── Makefile │ │ │ │ ├── au1x00_eth.c │ │ │ │ ├── au1x00_ide.c │ │ │ │ ├── au1x00_serial.c │ │ │ │ ├── au1x00_usb_ohci.c │ │ │ │ ├── au1x00_usb_ohci.h │ │ │ │ └── include │ │ │ │ │ └── mach │ │ │ │ │ └── au1x00.h │ │ │ ├── mach-bmips │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── dram.c │ │ │ │ └── include │ │ │ │ │ └── ioremap.h │ │ │ └── mach-pic32 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ ├── include │ │ │ │ └── mach │ │ │ │ │ ├── ddr.h │ │ │ │ │ └── pic32.h │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── reset.c │ │ ├── nds32 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu │ │ │ │ └── n1213 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ae3xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── timer.c │ │ │ │ │ └── watchdog.S │ │ │ │ │ ├── ag101 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── timer.c │ │ │ │ │ └── watchdog.S │ │ │ │ │ ├── start.S │ │ │ │ │ └── u-boot.lds │ │ │ ├── dts │ │ │ │ ├── Makefile │ │ │ │ ├── ae3xx.dts │ │ │ │ └── ag101p.dts │ │ │ ├── include │ │ │ │ └── asm │ │ │ │ │ ├── arch-ae3xx │ │ │ │ │ └── ae3xx.h │ │ │ │ │ ├── arch-ag101 │ │ │ │ │ └── ag101.h │ │ │ │ │ ├── arch-ag102 │ │ │ │ │ └── ag102.h │ │ │ │ │ ├── bitops.h │ │ │ │ │ ├── bootm.h │ │ │ │ │ ├── byteorder.h │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ ├── global_data.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── linkage.h │ │ │ │ │ ├── mach-types.h │ │ │ │ │ ├── macro.h │ │ │ │ │ ├── posix_types.h │ │ │ │ │ ├── processor.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── sections.h │ │ │ │ │ ├── setup.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── system.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── u-boot-nds32.h │ │ │ │ │ ├── u-boot.h │ │ │ │ │ └── unaligned.h │ │ │ └── lib │ │ │ │ ├── Makefile │ │ │ │ ├── asm-offsets.c │ │ │ │ ├── boot.c │ │ │ │ ├── bootm.c │ │ │ │ ├── cache.c │ │ │ │ └── interrupts.c │ │ ├── nios2 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ ├── exceptions.S │ │ │ │ ├── interrupts.c │ │ │ │ ├── start.S │ │ │ │ ├── traps.c │ │ │ │ └── u-boot.lds │ │ │ ├── dts │ │ │ │ ├── .gitignore │ │ │ │ ├── 10m50_devboard.dts │ │ │ │ ├── 3c120_devboard.dts │ │ │ │ ├── Makefile │ │ │ │ └── include │ │ │ │ │ └── dt-bindings │ │ │ ├── include │ │ │ │ └── asm │ │ │ │ │ ├── bitops.h │ │ │ │ │ ├── bitops │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── ffs.h │ │ │ │ │ └── non-atomic.h │ │ │ │ │ ├── byteorder.h │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ ├── global_data.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── linkage.h │ │ │ │ │ ├── nios2.h │ │ │ │ │ ├── opcodes.h │ │ │ │ │ ├── posix_types.h │ │ │ │ │ ├── processor.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── sections.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── system.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── u-boot.h │ │ │ │ │ └── unaligned.h │ │ │ └── lib │ │ │ │ ├── Makefile │ │ │ │ ├── bootm.c │ │ │ │ ├── cache.c │ │ │ │ ├── libgcc.c │ │ │ │ └── longlong.h │ │ ├── powerpc │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu │ │ │ │ ├── Makefile │ │ │ │ ├── mpc83xx │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ ├── ecc.c │ │ │ │ │ ├── fdt.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── pcie.c │ │ │ │ │ ├── qe_io.c │ │ │ │ │ ├── serdes.c │ │ │ │ │ ├── spd_sdram.c │ │ │ │ │ ├── speed.c │ │ │ │ │ ├── spl_minimal.c │ │ │ │ │ ├── start.S │ │ │ │ │ ├── traps.c │ │ │ │ │ ├── u-boot-spl.lds │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── mpc85xx │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── b4860_ids.c │ │ │ │ │ ├── b4860_serdes.c │ │ │ │ │ ├── bsc9132_serdes.c │ │ │ │ │ ├── c29x_serdes.c │ │ │ │ │ ├── cmd_errata.c │ │ │ │ │ ├── commproc.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ ├── cpu_init_early.c │ │ │ │ │ ├── ether_fcc.c │ │ │ │ │ ├── fdt.c │ │ │ │ │ ├── fsl_corenet2_serdes.c │ │ │ │ │ ├── fsl_corenet2_serdes.h │ │ │ │ │ ├── fsl_corenet_serdes.c │ │ │ │ │ ├── fsl_corenet_serdes.h │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── liodn.c │ │ │ │ │ ├── mp.c │ │ │ │ │ ├── mp.h │ │ │ │ │ ├── mpc8536_serdes.c │ │ │ │ │ ├── mpc8544_serdes.c │ │ │ │ │ ├── mpc8548_serdes.c │ │ │ │ │ ├── mpc8568_serdes.c │ │ │ │ │ ├── mpc8569_serdes.c │ │ │ │ │ ├── mpc8572_serdes.c │ │ │ │ │ ├── p1010_serdes.c │ │ │ │ │ ├── p1021_serdes.c │ │ │ │ │ ├── p1022_serdes.c │ │ │ │ │ ├── p1023_serdes.c │ │ │ │ │ ├── p2020_serdes.c │ │ │ │ │ ├── p2041_ids.c │ │ │ │ │ ├── p2041_serdes.c │ │ │ │ │ ├── p3041_ids.c │ │ │ │ │ ├── p3041_serdes.c │ │ │ │ │ ├── p4080_ids.c │ │ │ │ │ ├── p4080_serdes.c │ │ │ │ │ ├── p5020_ids.c │ │ │ │ │ ├── p5020_serdes.c │ │ │ │ │ ├── p5040_ids.c │ │ │ │ │ ├── p5040_serdes.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── portals.c │ │ │ │ │ ├── qe_io.c │ │ │ │ │ ├── release.S │ │ │ │ │ ├── resetvec.S │ │ │ │ │ ├── serial_scc.c │ │ │ │ │ ├── speed.c │ │ │ │ │ ├── spl_minimal.c │ │ │ │ │ ├── start.S │ │ │ │ │ ├── t1024_ids.c │ │ │ │ │ ├── t1024_serdes.c │ │ │ │ │ ├── t1040_ids.c │ │ │ │ │ ├── t1040_serdes.c │ │ │ │ │ ├── t2080_ids.c │ │ │ │ │ ├── t2080_serdes.c │ │ │ │ │ ├── t4240_ids.c │ │ │ │ │ ├── t4240_serdes.c │ │ │ │ │ ├── tlb.c │ │ │ │ │ ├── traps.c │ │ │ │ │ ├── u-boot-nand.lds │ │ │ │ │ ├── u-boot-nand_spl.lds │ │ │ │ │ ├── u-boot-spl.lds │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── mpc86xx │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.S │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ ├── fdt.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── mp.c │ │ │ │ │ ├── mpc8610_serdes.c │ │ │ │ │ ├── mpc8641_serdes.c │ │ │ │ │ ├── release.S │ │ │ │ │ ├── speed.c │ │ │ │ │ ├── start.S │ │ │ │ │ ├── traps.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── mpc8xx │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ ├── fdt.c │ │ │ │ │ ├── immap.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── reginfo.c │ │ │ │ │ ├── speed.c │ │ │ │ │ ├── start.S │ │ │ │ │ └── traps.c │ │ │ │ └── mpc8xxx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── fdt.c │ │ │ │ │ ├── fsl_lbc.c │ │ │ │ │ ├── fsl_pamu.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── pamu_table.c │ │ │ │ │ └── srio.c │ │ │ ├── include │ │ │ │ └── asm │ │ │ │ │ ├── 8xx_immap.h │ │ │ │ │ ├── arch-mpc83xx │ │ │ │ │ └── gpio.h │ │ │ │ │ ├── arch-mpc85xx │ │ │ │ │ └── gpio.h │ │ │ │ │ ├── arch-ppc4xx │ │ │ │ │ └── gpio.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── bitops.h │ │ │ │ │ ├── byteorder.h │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config_mpc85xx.h │ │ │ │ │ ├── config_mpc86xx.h │ │ │ │ │ ├── cpm_85xx.h │ │ │ │ │ ├── e300.h │ │ │ │ │ ├── fsl_dma.h │ │ │ │ │ ├── fsl_fdt.h │ │ │ │ │ ├── fsl_i2c.h │ │ │ │ │ ├── fsl_law.h │ │ │ │ │ ├── fsl_lbc.h │ │ │ │ │ ├── fsl_liodn.h │ │ │ │ │ ├── fsl_mpc83xx_serdes.h │ │ │ │ │ ├── fsl_pamu.h │ │ │ │ │ ├── fsl_pci.h │ │ │ │ │ ├── fsl_portals.h │ │ │ │ │ ├── fsl_secure_boot.h │ │ │ │ │ ├── fsl_serdes.h │ │ │ │ │ ├── fsl_srio.h │ │ │ │ │ ├── global_data.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── immap_83xx.h │ │ │ │ │ ├── immap_85xx.h │ │ │ │ │ ├── immap_86xx.h │ │ │ │ │ ├── interrupt.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── iopin_8xx.h │ │ │ │ │ ├── linkage.h │ │ │ │ │ ├── mc146818rtc.h │ │ │ │ │ ├── mmu.h │ │ │ │ │ ├── mp.h │ │ │ │ │ ├── mpc8349_pci.h │ │ │ │ │ ├── mpc85xx_gpio.h │ │ │ │ │ ├── mpc8xxx_spi.h │ │ │ │ │ ├── pci_io.h │ │ │ │ │ ├── posix_types.h │ │ │ │ │ ├── ppc.h │ │ │ │ │ ├── processor.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── sections.h │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── spl.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── u-boot.h │ │ │ │ │ ├── unaligned.h │ │ │ │ │ └── xilinx_irq.h │ │ │ └── lib │ │ │ │ ├── Makefile │ │ │ │ ├── _ashldi3.S │ │ │ │ ├── _ashrdi3.S │ │ │ │ ├── _lshrdi3.S │ │ │ │ ├── bat_rw.c │ │ │ │ ├── bootm.c │ │ │ │ ├── cache.c │ │ │ │ ├── extable.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── kgdb.c │ │ │ │ ├── ppccache.S │ │ │ │ ├── ppcstring.S │ │ │ │ ├── reloc.S │ │ │ │ ├── spl.c │ │ │ │ ├── stack.c │ │ │ │ ├── ticks.S │ │ │ │ └── time.c │ │ ├── sandbox │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu │ │ │ │ ├── Makefile │ │ │ │ ├── cpu.c │ │ │ │ ├── eth-raw-os.c │ │ │ │ ├── os.c │ │ │ │ ├── sdl.c │ │ │ │ ├── spl.c │ │ │ │ ├── start.c │ │ │ │ ├── state.c │ │ │ │ ├── u-boot-spl.lds │ │ │ │ └── u-boot.lds │ │ │ ├── dts │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── cros-ec-keyboard.dtsi │ │ │ │ ├── include │ │ │ │ │ └── dt-bindings │ │ │ │ ├── sandbox.dts │ │ │ │ ├── sandbox_pmic.dtsi │ │ │ │ └── test.dts │ │ │ ├── include │ │ │ │ └── asm │ │ │ │ │ ├── bitops.h │ │ │ │ │ ├── byteorder.h │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── clk.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── eth-raw-os.h │ │ │ │ │ ├── eth.h │ │ │ │ │ ├── getopt.h │ │ │ │ │ ├── global_data.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── linkage.h │ │ │ │ │ ├── mbox.h │ │ │ │ │ ├── posix_types.h │ │ │ │ │ ├── power-domain.h │ │ │ │ │ ├── processor.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── reset.h │ │ │ │ │ ├── rtc.h │ │ │ │ │ ├── sdl.h │ │ │ │ │ ├── sections.h │ │ │ │ │ ├── sound.h │ │ │ │ │ ├── spi.h │ │ │ │ │ ├── spl.h │ │ │ │ │ ├── state.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── system.h │ │ │ │ │ ├── test.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── u-boot-sandbox.h │ │ │ │ │ ├── u-boot.h │ │ │ │ │ └── unaligned.h │ │ │ └── lib │ │ │ │ ├── Makefile │ │ │ │ ├── bootm.c │ │ │ │ ├── interrupts.c │ │ │ │ └── pci_io.c │ │ ├── sh │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu │ │ │ │ ├── sh2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ └── watchdog.c │ │ │ │ ├── sh3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ └── watchdog.c │ │ │ │ ├── sh4 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ └── watchdog.c │ │ │ │ └── u-boot.lds │ │ │ ├── include │ │ │ │ └── asm │ │ │ │ │ ├── bitops.h │ │ │ │ │ ├── byteorder.h │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── cpu_sh2.h │ │ │ │ │ ├── cpu_sh3.h │ │ │ │ │ ├── cpu_sh4.h │ │ │ │ │ ├── cpu_sh7203.h │ │ │ │ │ ├── cpu_sh7264.h │ │ │ │ │ ├── cpu_sh7269.h │ │ │ │ │ ├── cpu_sh7706.h │ │ │ │ │ ├── cpu_sh7710.h │ │ │ │ │ ├── cpu_sh7720.h │ │ │ │ │ ├── cpu_sh7722.h │ │ │ │ │ ├── cpu_sh7723.h │ │ │ │ │ ├── cpu_sh7724.h │ │ │ │ │ ├── cpu_sh7734.h │ │ │ │ │ ├── cpu_sh7750.h │ │ │ │ │ ├── cpu_sh7752.h │ │ │ │ │ ├── cpu_sh7753.h │ │ │ │ │ ├── cpu_sh7757.h │ │ │ │ │ ├── cpu_sh7763.h │ │ │ │ │ ├── cpu_sh7780.h │ │ │ │ │ ├── cpu_sh7785.h │ │ │ │ │ ├── global_data.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── irqflags.h │ │ │ │ │ ├── linkage.h │ │ │ │ │ ├── macro.h │ │ │ │ │ ├── mmc.h │ │ │ │ │ ├── pci.h │ │ │ │ │ ├── posix_types.h │ │ │ │ │ ├── processor.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── sections.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── system.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── u-boot.h │ │ │ │ │ ├── unaligned-sh4a.h │ │ │ │ │ ├── unaligned.h │ │ │ │ │ └── zimage.h │ │ │ └── lib │ │ │ │ ├── Makefile │ │ │ │ ├── ashiftrt.S │ │ │ │ ├── ashldi3.c │ │ │ │ ├── ashlsi3.S │ │ │ │ ├── ashrdi3.c │ │ │ │ ├── ashrsi3.S │ │ │ │ ├── board.c │ │ │ │ ├── bootm.c │ │ │ │ ├── libgcc.h │ │ │ │ ├── lshrdi3.c │ │ │ │ ├── lshrsi3.S │ │ │ │ ├── movmem.S │ │ │ │ ├── start.S │ │ │ │ ├── time.c │ │ │ │ ├── time_sh2.c │ │ │ │ ├── udiv_qrnnd.S │ │ │ │ ├── udivsi3.S │ │ │ │ ├── udivsi3_i4i-Os.S │ │ │ │ ├── udivsi3_i4i.S │ │ │ │ └── zimageboot.c │ │ ├── x86 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu │ │ │ │ ├── Makefile │ │ │ │ ├── baytrail │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── acpi.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── early_uart.c │ │ │ │ │ ├── fsp_configs.c │ │ │ │ │ └── valleyview.c │ │ │ │ ├── broadwell │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── iobp.c │ │ │ │ │ ├── lpc.c │ │ │ │ │ ├── me.c │ │ │ │ │ ├── northbridge.c │ │ │ │ │ ├── pch.c │ │ │ │ │ ├── pinctrl_broadwell.c │ │ │ │ │ ├── power_state.c │ │ │ │ │ ├── refcode.c │ │ │ │ │ ├── sata.c │ │ │ │ │ └── sdram.c │ │ │ │ ├── call32.S │ │ │ │ ├── config.mk │ │ │ │ ├── coreboot │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── car.S │ │ │ │ │ ├── coreboot.c │ │ │ │ │ ├── sdram.c │ │ │ │ │ ├── tables.c │ │ │ │ │ └── timestamp.c │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu_x86.c │ │ │ │ ├── efi │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── efi.c │ │ │ │ │ └── sdram.c │ │ │ │ ├── i386 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── call64.S │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── interrupt.c │ │ │ │ │ └── setjmp.S │ │ │ │ ├── intel_common │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── car.S │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── lpc.c │ │ │ │ │ ├── me_status.c │ │ │ │ │ ├── microcode.c │ │ │ │ │ ├── mrc.c │ │ │ │ │ ├── pch.c │ │ │ │ │ └── report_platform.c │ │ │ │ ├── ioapic.c │ │ │ │ ├── irq.c │ │ │ │ ├── ivybridge │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bd82x6x.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── early_me.c │ │ │ │ │ ├── fsp_configs.c │ │ │ │ │ ├── ivybridge.c │ │ │ │ │ ├── lpc.c │ │ │ │ │ ├── model_206ax.c │ │ │ │ │ ├── northbridge.c │ │ │ │ │ ├── sata.c │ │ │ │ │ ├── sdram.c │ │ │ │ │ └── sdram_nop.c │ │ │ │ ├── lapic.c │ │ │ │ ├── mp_init.c │ │ │ │ ├── mtrr.c │ │ │ │ ├── pci.c │ │ │ │ ├── qemu │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── car.S │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── dram.c │ │ │ │ │ ├── e820.c │ │ │ │ │ └── qemu.c │ │ │ │ ├── quark │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── acpi.c │ │ │ │ │ ├── car.S │ │ │ │ │ ├── dram.c │ │ │ │ │ ├── hte.c │ │ │ │ │ ├── hte.h │ │ │ │ │ ├── irq.c │ │ │ │ │ ├── mrc.c │ │ │ │ │ ├── mrc_util.c │ │ │ │ │ ├── mrc_util.h │ │ │ │ │ ├── msg_port.c │ │ │ │ │ ├── quark.c │ │ │ │ │ ├── smc.c │ │ │ │ │ └── smc.h │ │ │ │ ├── queensbay │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── fsp_configs.c │ │ │ │ │ ├── irq.c │ │ │ │ │ ├── tnc.c │ │ │ │ │ └── topcliff.c │ │ │ │ ├── resetvec.S │ │ │ │ ├── sipi_vector.S │ │ │ │ ├── start.S │ │ │ │ ├── start16.S │ │ │ │ ├── start64.S │ │ │ │ ├── turbo.c │ │ │ │ ├── u-boot-64.lds │ │ │ │ ├── u-boot-spl.lds │ │ │ │ ├── u-boot.lds │ │ │ │ ├── wakeup.S │ │ │ │ └── x86_64 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ └── setjmp.c │ │ │ ├── dts │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── bayleybay.dts │ │ │ │ ├── baytrail_som-db5800-som-6867.dts │ │ │ │ ├── broadwell_som-6896.dts │ │ │ │ ├── chromebook_link.dts │ │ │ │ ├── chromebook_samus.dts │ │ │ │ ├── chromebox_panther.dts │ │ │ │ ├── conga-qeval20-qa3-e3845.dts │ │ │ │ ├── coreboot_fb.dtsi │ │ │ │ ├── cougarcanyon2.dts │ │ │ │ ├── crownbay.dts │ │ │ │ ├── dfi-bt700-q7x-151.dts │ │ │ │ ├── dfi-bt700.dtsi │ │ │ │ ├── efi.dts │ │ │ │ ├── emulation-u-boot.dtsi │ │ │ │ ├── galileo.dts │ │ │ │ ├── include │ │ │ │ │ └── dt-bindings │ │ │ │ ├── keyboard.dtsi │ │ │ │ ├── microcode │ │ │ │ │ ├── m0130673325.dtsi │ │ │ │ │ ├── m0130679907.dtsi │ │ │ │ │ ├── m0220661105_cv.dtsi │ │ │ │ │ ├── m0230671117.dtsi │ │ │ │ │ ├── m12206a7_00000029.dtsi │ │ │ │ │ ├── m12306a2_00000008.dtsi │ │ │ │ │ ├── m12306a4_00000007.dtsi │ │ │ │ │ ├── m12306a5_00000007.dtsi │ │ │ │ │ ├── m12306a8_00000010.dtsi │ │ │ │ │ ├── m12306a9_0000001b.dtsi │ │ │ │ │ ├── m7240651_0000001c.dtsi │ │ │ │ │ └── mc0306d4_00000018.dtsi │ │ │ │ ├── minnowmax.dts │ │ │ │ ├── qemu-x86_i440fx.dts │ │ │ │ ├── qemu-x86_q35.dts │ │ │ │ ├── quark-u-boot.dtsi │ │ │ │ ├── rtc.dtsi │ │ │ │ ├── serial.dtsi │ │ │ │ ├── skeleton.dtsi │ │ │ │ ├── theadorable-x86-dfi-bt700.dts │ │ │ │ ├── tsc_timer.dtsi │ │ │ │ └── u-boot.dtsi │ │ │ ├── include │ │ │ │ └── asm │ │ │ │ │ ├── acpi │ │ │ │ │ ├── debug.asl │ │ │ │ │ ├── global_nvs.h │ │ │ │ │ ├── globutil.asl │ │ │ │ │ ├── irq_helper.h │ │ │ │ │ ├── irqlinks.asl │ │ │ │ │ ├── irqroute.asl │ │ │ │ │ └── statdef.asl │ │ │ │ │ ├── acpi_s3.h │ │ │ │ │ ├── acpi_table.h │ │ │ │ │ ├── arch-baytrail │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── global_nvs.asl │ │ │ │ │ │ ├── gpio.asl │ │ │ │ │ │ ├── irqroute.h │ │ │ │ │ │ ├── lpc.asl │ │ │ │ │ │ ├── platform.asl │ │ │ │ │ │ ├── sleepstates.asl │ │ │ │ │ │ ├── southcluster.asl │ │ │ │ │ │ ├── usb.asl │ │ │ │ │ │ └── xhci.asl │ │ │ │ │ ├── device.h │ │ │ │ │ ├── fsp │ │ │ │ │ │ ├── azalia.h │ │ │ │ │ │ ├── fsp_configs.h │ │ │ │ │ │ └── fsp_vpd.h │ │ │ │ │ ├── global_nvs.h │ │ │ │ │ ├── iomap.h │ │ │ │ │ └── irq.h │ │ │ │ │ ├── arch-broadwell │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── iomap.h │ │ │ │ │ ├── lpc.h │ │ │ │ │ ├── me.h │ │ │ │ │ ├── pch.h │ │ │ │ │ ├── pei_data.h │ │ │ │ │ ├── pm.h │ │ │ │ │ ├── rcb.h │ │ │ │ │ └── spi.h │ │ │ │ │ ├── arch-coreboot │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ └── timestamp.h │ │ │ │ │ ├── arch-ivybridge │ │ │ │ │ ├── fsp │ │ │ │ │ │ ├── fsp_configs.h │ │ │ │ │ │ └── fsp_vpd.h │ │ │ │ │ ├── me.h │ │ │ │ │ ├── model_206ax.h │ │ │ │ │ ├── pch.h │ │ │ │ │ ├── pei_data.h │ │ │ │ │ └── sandybridge.h │ │ │ │ │ ├── arch-qemu │ │ │ │ │ ├── device.h │ │ │ │ │ └── qemu.h │ │ │ │ │ ├── arch-quark │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── global_nvs.asl │ │ │ │ │ │ ├── irqroute.h │ │ │ │ │ │ ├── lpc.asl │ │ │ │ │ │ ├── platform.asl │ │ │ │ │ │ ├── sleepstates.asl │ │ │ │ │ │ └── southcluster.asl │ │ │ │ │ ├── device.h │ │ │ │ │ ├── global_nvs.h │ │ │ │ │ ├── iomap.h │ │ │ │ │ ├── irq.h │ │ │ │ │ ├── mrc.h │ │ │ │ │ ├── msg_port.h │ │ │ │ │ └── quark.h │ │ │ │ │ ├── arch-queensbay │ │ │ │ │ ├── device.h │ │ │ │ │ ├── fsp │ │ │ │ │ │ ├── fsp_configs.h │ │ │ │ │ │ └── fsp_vpd.h │ │ │ │ │ └── tnc.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── bitops.h │ │ │ │ │ ├── bootm.h │ │ │ │ │ ├── bootparam.h │ │ │ │ │ ├── byteorder.h │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── cmos_layout.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── control_regs.h │ │ │ │ │ ├── coreboot_tables.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── cpu_common.h │ │ │ │ │ ├── cpu_x86.h │ │ │ │ │ ├── e820.h │ │ │ │ │ ├── early_cmos.h │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── fsp │ │ │ │ │ ├── fsp_api.h │ │ │ │ │ ├── fsp_bootmode.h │ │ │ │ │ ├── fsp_ffs.h │ │ │ │ │ ├── fsp_fv.h │ │ │ │ │ ├── fsp_hob.h │ │ │ │ │ ├── fsp_infoheader.h │ │ │ │ │ ├── fsp_support.h │ │ │ │ │ └── fsp_types.h │ │ │ │ │ ├── global_data.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── i8254.h │ │ │ │ │ ├── i8259.h │ │ │ │ │ ├── ibmpc.h │ │ │ │ │ ├── intel_regs.h │ │ │ │ │ ├── interrupt.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── ioapic.h │ │ │ │ │ ├── ioctl.h │ │ │ │ │ ├── irq.h │ │ │ │ │ ├── ist.h │ │ │ │ │ ├── lapic.h │ │ │ │ │ ├── linkage.h │ │ │ │ │ ├── lpc_common.h │ │ │ │ │ ├── me_common.h │ │ │ │ │ ├── microcode.h │ │ │ │ │ ├── mp.h │ │ │ │ │ ├── mpspec.h │ │ │ │ │ ├── mrc_common.h │ │ │ │ │ ├── mrccache.h │ │ │ │ │ ├── msr-index.h │ │ │ │ │ ├── msr.h │ │ │ │ │ ├── mtrr.h │ │ │ │ │ ├── pch_common.h │ │ │ │ │ ├── pci.h │ │ │ │ │ ├── pirq_routing.h │ │ │ │ │ ├── pmu.h │ │ │ │ │ ├── pnp_def.h │ │ │ │ │ ├── posix_types.h │ │ │ │ │ ├── post.h │ │ │ │ │ ├── processor-flags.h │ │ │ │ │ ├── processor.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── report_platform.h │ │ │ │ │ ├── scu.h │ │ │ │ │ ├── sections.h │ │ │ │ │ ├── setjmp.h │ │ │ │ │ ├── sfi.h │ │ │ │ │ ├── sipi.h │ │ │ │ │ ├── speedstep.h │ │ │ │ │ ├── spl.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── tables.h │ │ │ │ │ ├── turbo.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── u-boot-x86.h │ │ │ │ │ ├── u-boot.h │ │ │ │ │ ├── unaligned.h │ │ │ │ │ ├── video │ │ │ │ │ └── edid.h │ │ │ │ │ └── zimage.h │ │ │ └── lib │ │ │ │ ├── Makefile │ │ │ │ ├── acpi_s3.c │ │ │ │ ├── acpi_table.c │ │ │ │ ├── asm-offsets.c │ │ │ │ ├── bios.c │ │ │ │ ├── bios.h │ │ │ │ ├── bios_asm.S │ │ │ │ ├── bios_interrupts.c │ │ │ │ ├── bootm.c │ │ │ │ ├── cmd_boot.c │ │ │ │ ├── cmd_mtrr.c │ │ │ │ ├── coreboot_table.c │ │ │ │ ├── crt0_ia32_efi.S │ │ │ │ ├── crt0_x86_64_efi.S │ │ │ │ ├── e820.c │ │ │ │ ├── early_cmos.c │ │ │ │ ├── efi │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── car.S │ │ │ │ └── efi.c │ │ │ │ ├── elf_ia32_efi.lds │ │ │ │ ├── elf_x86_64_efi.lds │ │ │ │ ├── fsp │ │ │ │ ├── Makefile │ │ │ │ ├── cmd_fsp.c │ │ │ │ ├── fsp_car.S │ │ │ │ ├── fsp_common.c │ │ │ │ ├── fsp_dram.c │ │ │ │ └── fsp_support.c │ │ │ │ ├── gcc.c │ │ │ │ ├── i8254.c │ │ │ │ ├── i8259.c │ │ │ │ ├── init_helpers.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── lpc-uclass.c │ │ │ │ ├── mpspec.c │ │ │ │ ├── mrccache.c │ │ │ │ ├── northbridge-uclass.c │ │ │ │ ├── physmem.c │ │ │ │ ├── pinctrl_ich6.c │ │ │ │ ├── pirq_routing.c │ │ │ │ ├── pmu.c │ │ │ │ ├── ramtest.c │ │ │ │ ├── reloc_ia32_efi.c │ │ │ │ ├── reloc_x86_64_efi.c │ │ │ │ ├── relocate.c │ │ │ │ ├── scu.c │ │ │ │ ├── sections.c │ │ │ │ ├── sfi.c │ │ │ │ ├── spl.c │ │ │ │ ├── string.c │ │ │ │ ├── tables.c │ │ │ │ └── zimage.c │ │ └── xtensa │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.mk │ │ │ ├── cpu │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── exceptions.c │ │ │ ├── start.S │ │ │ └── u-boot.lds │ │ │ ├── dts │ │ │ ├── Makefile │ │ │ ├── include │ │ │ │ └── dt-bindings │ │ │ ├── kc705.dts │ │ │ ├── kc705_nommu.dts │ │ │ ├── ml605.dts │ │ │ ├── ml605_nommu.dts │ │ │ ├── xtfpga-flash-128m.dtsi │ │ │ ├── xtfpga-flash-16m.dtsi │ │ │ └── xtfpga.dtsi │ │ │ ├── include │ │ │ └── asm │ │ │ │ ├── addrspace.h │ │ │ │ ├── arch-dc232b │ │ │ │ ├── core.h │ │ │ │ ├── tie-asm.h │ │ │ │ └── tie.h │ │ │ │ ├── arch-dc233c │ │ │ │ ├── core.h │ │ │ │ ├── tie-asm.h │ │ │ │ └── tie.h │ │ │ │ ├── arch-de212 │ │ │ │ ├── core.h │ │ │ │ ├── tie-asm.h │ │ │ │ └── tie.h │ │ │ │ ├── asmmacro.h │ │ │ │ ├── atomic.h │ │ │ │ ├── bitops.h │ │ │ │ ├── bootparam.h │ │ │ │ ├── byteorder.h │ │ │ │ ├── cache.h │ │ │ │ ├── cacheasm.h │ │ │ │ ├── config.h │ │ │ │ ├── global_data.h │ │ │ │ ├── io.h │ │ │ │ ├── ldscript.h │ │ │ │ ├── linkage.h │ │ │ │ ├── misc.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── processor.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── regs.h │ │ │ │ ├── sections.h │ │ │ │ ├── string.h │ │ │ │ ├── system.h │ │ │ │ ├── types.h │ │ │ │ ├── u-boot.h │ │ │ │ └── unaligned.h │ │ │ └── lib │ │ │ ├── Makefile │ │ │ ├── bootm.c │ │ │ ├── cache.c │ │ │ ├── misc.S │ │ │ ├── relocate.c │ │ │ └── time.c │ ├── board │ │ ├── 8dtech │ │ │ └── eco5pk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── eco5pk.c │ │ │ │ └── eco5pk.h │ │ ├── AndesTech │ │ │ ├── adp-ae3xx │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── adp-ae3xx.c │ │ │ └── adp-ag101p │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── adp-ag101p.c │ │ ├── Arcturus │ │ │ └── ucp1020 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── cmd_arc.c │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── spl.c │ │ │ │ ├── spl_minimal.c │ │ │ │ ├── tlb.c │ │ │ │ ├── ucp1020.c │ │ │ │ └── ucp1020.h │ │ ├── Barix │ │ │ └── ipam390 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README.ipam390 │ │ │ │ ├── ipam390-ais-uart.cfg │ │ │ │ ├── ipam390.c │ │ │ │ └── u-boot-spl-ipam390.lds │ │ ├── BuR │ │ │ ├── brppt1 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ └── mux.c │ │ │ ├── brxre1 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ └── mux.c │ │ │ └── common │ │ │ │ ├── bur_common.h │ │ │ │ └── common.c │ │ ├── BuS │ │ │ └── eb_cpu5282 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── eb_cpu5282.c │ │ ├── CarMediaLab │ │ │ └── flea3 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── flea3.c │ │ │ │ └── lowlevel_init.S │ │ ├── LaCie │ │ │ ├── common │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── cpld-gpio-bus.c │ │ │ │ └── cpld-gpio-bus.h │ │ │ ├── edminiv2 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── edminiv2.c │ │ │ ├── net2big_v2 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── kwbimage.cfg │ │ │ │ ├── net2big_v2.c │ │ │ │ └── net2big_v2.h │ │ │ └── netspace_v2 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── kwbimage-is2.cfg │ │ │ │ ├── kwbimage-ns2l.cfg │ │ │ │ ├── kwbimage.cfg │ │ │ │ ├── netspace_v2.c │ │ │ │ └── netspace_v2.h │ │ ├── Marvell │ │ │ ├── aspenite │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── aspenite.c │ │ │ ├── db-88f6720 │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── db-88f6720.c │ │ │ │ └── kwbimage.cfg │ │ │ ├── db-88f6820-amc │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── db-88f6820-amc.c │ │ │ │ └── kwbimage.cfg │ │ │ ├── db-88f6820-gp │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── db-88f6820-gp.c │ │ │ │ └── kwbimage.cfg │ │ │ ├── db-mv784mp-gp │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── db-mv784mp-gp.c │ │ │ │ └── kwbimage.cfg │ │ │ ├── dreamplug │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── dreamplug.c │ │ │ │ ├── dreamplug.h │ │ │ │ └── kwbimage.cfg │ │ │ ├── gplugd │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── gplugd.c │ │ │ ├── guruplug │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── guruplug.c │ │ │ │ ├── guruplug.h │ │ │ │ └── kwbimage.cfg │ │ │ ├── mvebu_armada-37xx │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── board.c │ │ │ ├── mvebu_armada-8k │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── board.c │ │ │ ├── openrd │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── kwbimage.cfg │ │ │ │ ├── openrd.c │ │ │ │ └── openrd.h │ │ │ └── sheevaplug │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── kwbimage.cfg │ │ │ │ ├── sheevaplug.c │ │ │ │ └── sheevaplug.h │ │ ├── Seagate │ │ │ ├── dockstar │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── dockstar.c │ │ │ │ ├── dockstar.h │ │ │ │ └── kwbimage.cfg │ │ │ ├── goflexhome │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── goflexhome.c │ │ │ │ └── kwbimage.cfg │ │ │ └── nas220 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── kwbimage.cfg │ │ │ │ └── nas220.c │ │ ├── Synology │ │ │ ├── ds109 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ds109.c │ │ │ │ ├── ds109.h │ │ │ │ ├── kwbimage.cfg │ │ │ │ └── openocd.cfg │ │ │ └── ds414 │ │ │ │ ├── Makefile │ │ │ │ ├── cmd_syno.c │ │ │ │ ├── ds414.c │ │ │ │ └── kwbimage.cfg │ │ ├── abilis │ │ │ └── tb100 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── tb100.c │ │ ├── advantech │ │ │ ├── Kconfig │ │ │ ├── dms-ba16 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── clocks.cfg │ │ │ │ ├── ddr-setup.cfg │ │ │ │ ├── dms-ba16.c │ │ │ │ ├── dms-ba16_1g.cfg │ │ │ │ ├── dms-ba16_2g.cfg │ │ │ │ ├── micron-1g.cfg │ │ │ │ └── samsung-2g.cfg │ │ │ └── som-db5800-som-6867 │ │ │ │ ├── .gitignore │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── acpi │ │ │ │ └── mainboard.asl │ │ │ │ ├── dsdt.asl │ │ │ │ ├── som-db5800-som-6867.c │ │ │ │ └── start.S │ │ ├── alphaproject │ │ │ └── ap_sh4a_4a │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ap_sh4a_4a.c │ │ │ │ └── lowlevel_init.S │ │ ├── altera │ │ │ ├── arria10-socdk │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ └── socfpga.c │ │ │ ├── arria5-socdk │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── qts │ │ │ │ │ ├── iocsr_config.h │ │ │ │ │ ├── pinmux_config.h │ │ │ │ │ ├── pll_config.h │ │ │ │ │ └── sdram_config.h │ │ │ │ └── socfpga.c │ │ │ ├── cyclone5-socdk │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── qts │ │ │ │ │ ├── iocsr_config.h │ │ │ │ │ ├── pinmux_config.h │ │ │ │ │ ├── pll_config.h │ │ │ │ │ └── sdram_config.h │ │ │ │ └── socfpga.c │ │ │ └── nios2 │ │ │ │ └── MAINTAINERS │ │ ├── amazon │ │ │ └── kc1 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── kc1.c │ │ │ │ └── kc1.h │ │ ├── amlogic │ │ │ └── odroid-c2 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── odroid-c2.c │ │ ├── aries │ │ │ ├── m28evk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── m28evk.c │ │ │ │ └── spl_boot.c │ │ │ ├── m53evk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ └── m53evk.c │ │ │ ├── ma5d4evk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── ma5d4evk.c │ │ │ └── mcvevk │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── qts │ │ │ │ ├── iocsr_config.h │ │ │ │ ├── pinmux_config.h │ │ │ │ ├── pll_config.h │ │ │ │ └── sdram_config.h │ │ │ │ └── socfpga.c │ │ ├── aristainetos │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── aristainetos-v1.c │ │ │ ├── aristainetos-v2.c │ │ │ ├── aristainetos.c │ │ │ ├── aristainetos.cfg │ │ │ ├── aristainetos2.cfg │ │ │ ├── axi.cfg │ │ │ ├── clocks.cfg │ │ │ ├── clocks2.cfg │ │ │ ├── ddr-setup.cfg │ │ │ ├── ddr-setup2.cfg │ │ │ ├── mt41j128M.cfg │ │ │ └── nt5cc256m16cp.cfg │ │ ├── armadeus │ │ │ ├── apf27 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── apf27.c │ │ │ │ ├── apf27.h │ │ │ │ ├── fpga.c │ │ │ │ ├── fpga.h │ │ │ │ └── lowlevel_init.S │ │ │ └── opos6uldev │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── board.c │ │ ├── armltd │ │ │ ├── integrator │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── arm-ebi.h │ │ │ │ ├── integrator-sc.h │ │ │ │ ├── integrator.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── pci.c │ │ │ │ ├── pci_v3.h │ │ │ │ └── timer.c │ │ │ ├── vexpress │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── vexpress_common.c │ │ │ │ └── vexpress_tc2.c │ │ │ └── vexpress64 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── pcie.c │ │ │ │ ├── pcie.h │ │ │ │ └── vexpress64.c │ │ ├── aspeed │ │ │ └── evb_ast2500 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ └── evb_ast2500.c │ │ ├── astro │ │ │ └── mcf5373l │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── astro.h │ │ │ │ ├── fpga.c │ │ │ │ └── mcf5373l.c │ │ ├── atmark-techno │ │ │ └── armadillo-800eva │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── armadillo-800eva.c │ │ ├── atmel │ │ │ ├── at91rm9200ek │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── at91rm9200ek.c │ │ │ │ └── led.c │ │ │ ├── at91sam9260ek │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── at91sam9260ek.c │ │ │ │ ├── led.c │ │ │ │ └── partition.c │ │ │ ├── at91sam9261ek │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── at91sam9261ek.c │ │ │ │ ├── led.c │ │ │ │ └── partition.c │ │ │ ├── at91sam9263ek │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── at91sam9263ek.c │ │ │ │ ├── led.c │ │ │ │ └── partition.c │ │ │ ├── at91sam9m10g45ek │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── at91sam9m10g45ek.c │ │ │ │ └── led.c │ │ │ ├── at91sam9n12ek │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── at91sam9n12ek.c │ │ │ ├── at91sam9rlek │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── at91sam9rlek.c │ │ │ │ ├── led.c │ │ │ │ └── partition.c │ │ │ ├── at91sam9x5ek │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── at91sam9x5ek.c │ │ │ ├── sama5d2_ptc │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── sama5d2_ptc.c │ │ │ ├── sama5d2_xplained │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── sama5d2_xplained.c │ │ │ ├── sama5d3_xplained │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── sama5d3_xplained.c │ │ │ ├── sama5d3xek │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── sama5d3xek.c │ │ │ ├── sama5d4_xplained │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── sama5d4_xplained.c │ │ │ └── sama5d4ek │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── sama5d4ek.c │ │ ├── avionic-design │ │ │ ├── common │ │ │ │ ├── pinmux-config-tamonten-ng.h │ │ │ │ ├── tamonten-ng.c │ │ │ │ └── tamonten.c │ │ │ ├── medcom-wide │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ └── Makefile │ │ │ ├── plutux │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ └── Makefile │ │ │ ├── tec-ng │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ └── Makefile │ │ │ └── tec │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ └── Makefile │ │ ├── bachmann │ │ │ └── ot1200 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── mx6q_4x_mt41j128.cfg │ │ │ │ ├── ot1200.c │ │ │ │ └── ot1200_spl.c │ │ ├── barco │ │ │ ├── platinum │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── platinum.c │ │ │ │ ├── platinum.h │ │ │ │ ├── platinum_picon.c │ │ │ │ ├── platinum_titanium.c │ │ │ │ ├── spl_picon.c │ │ │ │ └── spl_titanium.c │ │ │ └── titanium │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ └── titanium.c │ │ ├── beckhoff │ │ │ └── mx53cx9020 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ ├── mx53cx9020.c │ │ │ │ └── mx53cx9020_video.c │ │ ├── birdland │ │ │ └── bav335x │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── mux.c │ │ │ │ └── u-boot.lds │ │ ├── bluegiga │ │ │ └── apx4devkit │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── apx4devkit.c │ │ │ │ └── spl_boot.c │ │ ├── bluewater │ │ │ ├── gurnard │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── gurnard.c │ │ │ │ └── splash_logo.h │ │ │ └── snapper9260 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── snapper9260.c │ │ ├── bosch │ │ │ └── shc │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ └── mux.c │ │ ├── boundary │ │ │ └── nitrogen6x │ │ │ │ ├── 1066mhz_4x128mx16.cfg │ │ │ │ ├── 1066mhz_4x256mx16.cfg │ │ │ │ ├── 6x_bootscript.txt │ │ │ │ ├── 6x_bootscript_android.txt │ │ │ │ ├── 6x_bootscript_android_recovery.txt │ │ │ │ ├── 6x_upgrade.txt │ │ │ │ ├── 800mhz_2x128mx16.cfg │ │ │ │ ├── 800mhz_2x256mx16.cfg │ │ │ │ ├── 800mhz_4x128mx16.cfg │ │ │ │ ├── 800mhz_4x256mx16.cfg │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── README.mx6qsabrelite │ │ │ │ ├── clocks.cfg │ │ │ │ ├── ddr-setup.cfg │ │ │ │ ├── nitrogen6dl.cfg │ │ │ │ ├── nitrogen6dl2g.cfg │ │ │ │ ├── nitrogen6q.cfg │ │ │ │ ├── nitrogen6q2g.cfg │ │ │ │ ├── nitrogen6s.cfg │ │ │ │ ├── nitrogen6s1g.cfg │ │ │ │ └── nitrogen6x.c │ │ ├── broadcom │ │ │ ├── bcm11130 │ │ │ │ └── MAINTAINERS │ │ │ ├── bcm11130_nand │ │ │ │ └── MAINTAINERS │ │ │ ├── bcm23550_w1d │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── bcm23550_w1d.c │ │ │ ├── bcm28155_ap │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── bcm28155_ap.c │ │ │ ├── bcm28155_w1d │ │ │ │ └── MAINTAINERS │ │ │ ├── bcm911360_entphn-ns │ │ │ │ └── MAINTAINERS │ │ │ ├── bcm911360_entphn │ │ │ │ └── MAINTAINERS │ │ │ ├── bcm911360k │ │ │ │ └── MAINTAINERS │ │ │ ├── bcm958300k-ns │ │ │ │ └── MAINTAINERS │ │ │ ├── bcm958300k │ │ │ │ └── MAINTAINERS │ │ │ ├── bcm958305k │ │ │ │ └── MAINTAINERS │ │ │ ├── bcm958622hr │ │ │ │ └── MAINTAINERS │ │ │ ├── bcm958712k │ │ │ │ └── MAINTAINERS │ │ │ ├── bcm_ep │ │ │ │ ├── Makefile │ │ │ │ └── board.c │ │ │ ├── bcmcygnus │ │ │ │ └── Kconfig │ │ │ ├── bcmns2 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ └── northstar2.c │ │ │ └── bcmnsp │ │ │ │ └── Kconfig │ │ ├── buffalo │ │ │ └── lsxl │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── kwbimage-lschl.cfg │ │ │ │ ├── kwbimage-lsxhl.cfg │ │ │ │ ├── lsxl.c │ │ │ │ └── lsxl.h │ │ ├── cadence │ │ │ └── xtfpga │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── xtfpga.c │ │ ├── calao │ │ │ └── usb_a9263 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── usb_a9263.c │ │ ├── cavium │ │ │ └── thunderx │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── atf.c │ │ │ │ └── thunderx.c │ │ ├── ccv │ │ │ └── xpress │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ ├── spl.c │ │ │ │ └── xpress.c │ │ ├── cei │ │ │ └── cei-tk1-som │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── cei-tk1-som.c │ │ │ │ └── pinmux-config-cei-tk1-som.h │ │ ├── chipspark │ │ │ └── popmetal_rk3288 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── popmetal-rk3288.c │ │ ├── cirrus │ │ │ └── edb93xx │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── edb93xx.c │ │ │ │ └── u-boot.lds │ │ ├── cloudengines │ │ │ └── pogo_e02 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── kwbimage.cfg │ │ │ │ ├── pogo_e02.c │ │ │ │ └── pogo_e02.h │ │ ├── cobra5272 │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── bdm │ │ │ │ ├── cobra5272_uboot.gdb │ │ │ │ ├── gdbinit.reset │ │ │ │ ├── load-cobra_uboot │ │ │ │ └── reset │ │ │ ├── cobra5272.c │ │ │ └── flash.c │ │ ├── compal │ │ │ └── paz00 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── paz00.c │ │ ├── compulab │ │ │ ├── cl-som-am57x │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── cl-som-am57x.c │ │ │ │ ├── eth.c │ │ │ │ ├── mux.c │ │ │ │ └── spl.c │ │ │ ├── cm_fx6 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── cm_fx6.c │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ └── spl.c │ │ │ ├── cm_t335 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── cm_t335.c │ │ │ │ ├── mux.c │ │ │ │ ├── spl.c │ │ │ │ └── u-boot.lds │ │ │ ├── cm_t35 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── cm_t35.c │ │ │ ├── cm_t3517 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── cm_t3517.c │ │ │ │ └── mux.c │ │ │ ├── cm_t43 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── board.h │ │ │ │ ├── cm_t43.c │ │ │ │ ├── mux.c │ │ │ │ └── spl.c │ │ │ ├── cm_t54 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── cm_t54.c │ │ │ │ ├── mux.c │ │ │ │ └── spl.c │ │ │ ├── common │ │ │ │ ├── Makefile │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── eeprom.c │ │ │ │ ├── eeprom.h │ │ │ │ ├── omap3_display.c │ │ │ │ └── omap3_smc911x.c │ │ │ └── trimslice │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── trimslice.c │ │ ├── comtrend │ │ │ ├── ar5387un │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── ar-5387un.c │ │ │ ├── ct5361 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── ct-5361.c │ │ │ └── vr3032u │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── vr-3032u.c │ │ ├── congatec │ │ │ ├── Kconfig │ │ │ ├── cgtqmx6eval │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── cgtqmx6eval.c │ │ │ └── conga-qeval20-qa3-e3845 │ │ │ │ ├── .gitignore │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── acpi │ │ │ │ └── mainboard.asl │ │ │ │ ├── conga-qeval20-qa3.c │ │ │ │ ├── dsdt.asl │ │ │ │ └── start.S │ │ ├── coreboot │ │ │ ├── Kconfig │ │ │ └── coreboot │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── coreboot.c │ │ │ │ └── coreboot_start.S │ │ ├── corscience │ │ │ └── tricorder │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── led.c │ │ │ │ ├── tricorder-eeprom.c │ │ │ │ ├── tricorder-eeprom.h │ │ │ │ ├── tricorder.c │ │ │ │ └── tricorder.h │ │ ├── creative │ │ │ └── xfi3 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── spl_boot.c │ │ │ │ └── xfi3.c │ │ ├── cssi │ │ │ ├── MAINTAINERS │ │ │ └── MCR3000 │ │ │ │ ├── Kconfig │ │ │ │ ├── MCR3000.c │ │ │ │ ├── Makefile │ │ │ │ ├── nand.c │ │ │ │ └── u-boot.lds │ │ ├── d-link │ │ │ └── dns325 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── dns325.c │ │ │ │ ├── dns325.h │ │ │ │ └── kwbimage.cfg │ │ ├── davinci │ │ │ ├── da8xxevm │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README.da850 │ │ │ │ ├── da850evm.c │ │ │ │ ├── omapl138_lcdk.c │ │ │ │ └── u-boot-spl-da850evm.lds │ │ │ └── ea20 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── ea20.c │ │ ├── dbau1x00 │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── dbau1x00.c │ │ │ └── lowlevel_init.S │ │ ├── dfi │ │ │ ├── Kconfig │ │ │ └── dfi-bt700 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── acpi │ │ │ │ └── mainboard.asl │ │ │ │ ├── dfi-bt700.c │ │ │ │ ├── dsdt.asl │ │ │ │ └── start.S │ │ ├── ebv │ │ │ └── socrates │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── qts │ │ │ │ ├── iocsr_config.h │ │ │ │ ├── pinmux_config.h │ │ │ │ ├── pll_config.h │ │ │ │ └── sdram_config.h │ │ │ │ └── socfpga.c │ │ ├── efi │ │ │ ├── Kconfig │ │ │ └── efi-x86 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── efi.c │ │ ├── egnite │ │ │ └── ethernut5 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ethernut5.c │ │ │ │ ├── ethernut5_pwrman.c │ │ │ │ └── ethernut5_pwrman.h │ │ ├── el │ │ │ └── el6x │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── el6x.c │ │ ├── embest │ │ │ └── mx6boards │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── mx6boards.c │ │ ├── emulation │ │ │ ├── Kconfig │ │ │ └── qemu-x86 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── start.S │ │ ├── engicam │ │ │ ├── common │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ └── spl.c │ │ │ ├── geam6ul │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── geam6ul.c │ │ │ ├── icorem6 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── icorem6.c │ │ │ ├── icorem6_rqs │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── icorem6_rqs.c │ │ │ └── isiotmx6ul │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── isiotmx6ul.c │ │ ├── esd │ │ │ ├── meesc │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── meesc.c │ │ │ │ └── partition.c │ │ │ └── vme8349 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── caddy.c │ │ │ │ ├── caddy.h │ │ │ │ ├── pci.c │ │ │ │ ├── vme8349.c │ │ │ │ └── vme8349pin.h │ │ ├── espt │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── espt.c │ │ │ └── lowlevel_init.S │ │ ├── firefly │ │ │ └── firefly-rk3288 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── firefly-rk3288.c │ │ ├── freescale │ │ │ ├── b4860qds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── b4860qds.c │ │ │ │ ├── b4860qds.h │ │ │ │ ├── b4860qds_crossbar_con.h │ │ │ │ ├── b4860qds_qixis.h │ │ │ │ ├── b4_pbi.cfg │ │ │ │ ├── b4_rcw.cfg │ │ │ │ ├── ddr.c │ │ │ │ ├── eth_b4860qds.c │ │ │ │ ├── law.c │ │ │ │ ├── pci.c │ │ │ │ ├── spl.c │ │ │ │ └── tlb.c │ │ │ ├── bsc9131rdb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── bsc9131rdb.c │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── spl_minimal.c │ │ │ │ └── tlb.c │ │ │ ├── bsc9132qds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── bsc9132qds.c │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── spl_minimal.c │ │ │ │ └── tlb.c │ │ │ ├── c29xpcie │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── c29xpcie.c │ │ │ │ ├── cpld.c │ │ │ │ ├── cpld.h │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── spl.c │ │ │ │ ├── spl_minimal.c │ │ │ │ └── tlb.c │ │ │ ├── common │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── arm_sleep.c │ │ │ │ ├── cadmus.c │ │ │ │ ├── cadmus.h │ │ │ │ ├── cds_pci_ft.c │ │ │ │ ├── cds_via.c │ │ │ │ ├── cmd_esbc_validate.c │ │ │ │ ├── dcu_sii9022a.c │ │ │ │ ├── dcu_sii9022a.h │ │ │ │ ├── diu_ch7301.c │ │ │ │ ├── diu_ch7301.h │ │ │ │ ├── eeprom.h │ │ │ │ ├── fman.c │ │ │ │ ├── fman.h │ │ │ │ ├── fsl_chain_of_trust.c │ │ │ │ ├── fsl_validate.c │ │ │ │ ├── ics307_clk.c │ │ │ │ ├── ics307_clk.h │ │ │ │ ├── idt8t49n222a_serdes_clk.c │ │ │ │ ├── idt8t49n222a_serdes_clk.h │ │ │ │ ├── ls102xa_stream_id.c │ │ │ │ ├── mc34vr500.c │ │ │ │ ├── mpc85xx_sleep.c │ │ │ │ ├── ngpixis.c │ │ │ │ ├── ngpixis.h │ │ │ │ ├── ns_access.c │ │ │ │ ├── p_corenet │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── law.c │ │ │ │ │ ├── pci.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── pfuze.c │ │ │ │ ├── pfuze.h │ │ │ │ ├── pixis.c │ │ │ │ ├── pixis.h │ │ │ │ ├── pq-mds-pib.c │ │ │ │ ├── pq-mds-pib.h │ │ │ │ ├── qixis.c │ │ │ │ ├── qixis.h │ │ │ │ ├── sdhc_boot.c │ │ │ │ ├── sgmii_riser.c │ │ │ │ ├── sgmii_riser.h │ │ │ │ ├── sleep.h │ │ │ │ ├── spl.h │ │ │ │ ├── sys_eeprom.c │ │ │ │ ├── via.h │ │ │ │ ├── vid.c │ │ │ │ ├── vid.h │ │ │ │ ├── vsc3316_3308.c │ │ │ │ ├── vsc3316_3308.h │ │ │ │ ├── zm7300.c │ │ │ │ └── zm7300.h │ │ │ ├── corenet_ds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── corenet_ds.c │ │ │ │ ├── corenet_ds.h │ │ │ │ ├── ddr.c │ │ │ │ ├── eth_hydra.c │ │ │ │ ├── eth_p4080.c │ │ │ │ ├── eth_superhydra.c │ │ │ │ ├── p3041ds_ddr.c │ │ │ │ ├── p4080ds_ddr.c │ │ │ │ ├── p5020ds_ddr.c │ │ │ │ ├── p5040ds_ddr.c │ │ │ │ ├── pbi.cfg │ │ │ │ ├── rcw_p2041rdb.cfg │ │ │ │ ├── rcw_p3041ds.cfg │ │ │ │ ├── rcw_p4080ds.cfg │ │ │ │ ├── rcw_p5020ds.cfg │ │ │ │ └── rcw_p5040ds.cfg │ │ │ ├── ls1012afrdm │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── ls1012afrdm.c │ │ │ ├── ls1012aqds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ls1012aqds.c │ │ │ │ └── ls1012aqds_qixis.h │ │ │ ├── ls1012ardb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── ls1012ardb.c │ │ │ ├── ls1021aiot │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── dcu.c │ │ │ │ ├── ls1021aiot.c │ │ │ │ ├── ls102xa_pbi.cfg │ │ │ │ ├── ls102xa_rcw_sd.cfg │ │ │ │ └── psci.S │ │ │ ├── ls1021aqds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── dcu.c │ │ │ │ ├── ddr.c │ │ │ │ ├── ddr.h │ │ │ │ ├── eth.c │ │ │ │ ├── ls1021aqds.c │ │ │ │ ├── ls1021aqds_qixis.h │ │ │ │ ├── ls102xa_pbi.cfg │ │ │ │ ├── ls102xa_rcw_nand.cfg │ │ │ │ ├── ls102xa_rcw_sd_ifc.cfg │ │ │ │ ├── ls102xa_rcw_sd_qspi.cfg │ │ │ │ └── psci.S │ │ │ ├── ls1021atwr │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── dcu.c │ │ │ │ ├── ls1021atwr.c │ │ │ │ ├── ls102xa_pbi.cfg │ │ │ │ ├── ls102xa_rcw_sd_ifc.cfg │ │ │ │ ├── ls102xa_rcw_sd_qspi.cfg │ │ │ │ └── psci.S │ │ │ ├── ls1043aqds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── ddr.h │ │ │ │ ├── eth.c │ │ │ │ ├── ls1043aqds.c │ │ │ │ ├── ls1043aqds_pbi.cfg │ │ │ │ ├── ls1043aqds_qixis.h │ │ │ │ ├── ls1043aqds_rcw_nand.cfg │ │ │ │ ├── ls1043aqds_rcw_sd_ifc.cfg │ │ │ │ └── ls1043aqds_rcw_sd_qspi.cfg │ │ │ ├── ls1043ardb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── cpld.c │ │ │ │ ├── cpld.h │ │ │ │ ├── ddr.c │ │ │ │ ├── ddr.h │ │ │ │ ├── eth.c │ │ │ │ ├── ls1043ardb.c │ │ │ │ ├── ls1043ardb_pbi.cfg │ │ │ │ ├── ls1043ardb_rcw_nand.cfg │ │ │ │ └── ls1043ardb_rcw_sd.cfg │ │ │ ├── ls1046aqds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── ddr.h │ │ │ │ ├── eth.c │ │ │ │ ├── ls1046aqds.c │ │ │ │ ├── ls1046aqds_pbi.cfg │ │ │ │ ├── ls1046aqds_qixis.h │ │ │ │ ├── ls1046aqds_rcw_nand.cfg │ │ │ │ ├── ls1046aqds_rcw_sd_ifc.cfg │ │ │ │ └── ls1046aqds_rcw_sd_qspi.cfg │ │ │ ├── ls1046ardb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── cpld.c │ │ │ │ ├── cpld.h │ │ │ │ ├── ddr.c │ │ │ │ ├── ddr.h │ │ │ │ ├── eth.c │ │ │ │ ├── ls1046ardb.c │ │ │ │ ├── ls1046ardb_pbi.cfg │ │ │ │ ├── ls1046ardb_rcw_emmc.cfg │ │ │ │ └── ls1046ardb_rcw_sd.cfg │ │ │ ├── ls2080a │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── ddr.h │ │ │ │ └── ls2080a.c │ │ │ ├── ls2080aqds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── ddr.h │ │ │ │ ├── eth.c │ │ │ │ ├── ls2080aqds.c │ │ │ │ └── ls2080aqds_qixis.h │ │ │ ├── ls2080ardb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── ddr.h │ │ │ │ ├── eth_ls2080rdb.c │ │ │ │ ├── ls2080ardb.c │ │ │ │ └── ls2080ardb_qixis.h │ │ │ ├── m5208evbe │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── m5208evbe.c │ │ │ ├── m52277evb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── m52277evb.c │ │ │ ├── m5235evb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── m5235evb.c │ │ │ ├── m5249evb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── m5249evb.c │ │ │ ├── m5253demo │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ └── m5253demo.c │ │ │ ├── m5253evbe │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── m5253evbe.c │ │ │ ├── m5272c3 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── m5272c3.c │ │ │ ├── m5275evb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── m5275evb.c │ │ │ ├── m5282evb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── m5282evb.c │ │ │ ├── m53017evb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── m53017evb.c │ │ │ ├── m5329evb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── m5329evb.c │ │ │ │ └── nand.c │ │ │ ├── m5373evb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── m5373evb.c │ │ │ │ └── nand.c │ │ │ ├── m54418twr │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── m54418twr.c │ │ │ ├── m54451evb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── m54451evb.c │ │ │ ├── m54455evb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── m54455evb.c │ │ │ ├── m547xevb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── m547xevb.c │ │ │ ├── m548xevb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── m548xevb.c │ │ │ ├── mpc8308rdb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── mpc8308rdb.c │ │ │ │ └── sdram.c │ │ │ ├── mpc8313erdb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── mpc8313erdb.c │ │ │ │ └── sdram.c │ │ │ ├── mpc8315erdb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── mpc8315erdb.c │ │ │ │ └── sdram.c │ │ │ ├── mpc8323erdb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── mpc8323erdb.c │ │ │ ├── mpc832xemds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── mpc832xemds.c │ │ │ │ └── pci.c │ │ │ ├── mpc8349emds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ddr.c │ │ │ │ ├── mpc8349emds.c │ │ │ │ └── pci.c │ │ │ ├── mpc8349itx │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── mpc8349itx.c │ │ │ │ └── pci.c │ │ │ ├── mpc837xemds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── mpc837xemds.c │ │ │ │ ├── pci.c │ │ │ │ └── pci.h │ │ │ ├── mpc837xerdb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── mpc837xerdb.c │ │ │ │ └── pci.c │ │ │ ├── mpc8536ds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── mpc8536ds.c │ │ │ │ └── tlb.c │ │ │ ├── mpc8541cds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── mpc8541cds.c │ │ │ │ └── tlb.c │ │ │ ├── mpc8544ds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── mpc8544ds.c │ │ │ │ └── tlb.c │ │ │ ├── mpc8548cds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── mpc8548cds.c │ │ │ │ └── tlb.c │ │ │ ├── mpc8555cds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── mpc8555cds.c │ │ │ │ └── tlb.c │ │ │ ├── mpc8568mds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── bcsr.c │ │ │ │ ├── bcsr.h │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── mpc8568mds.c │ │ │ │ └── tlb.c │ │ │ ├── mpc8569mds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── bcsr.c │ │ │ │ ├── bcsr.h │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── mpc8569mds.c │ │ │ │ └── tlb.c │ │ │ ├── mpc8572ds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── mpc8572ds.c │ │ │ │ └── tlb.c │ │ │ ├── mpc8610hpcd │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── mpc8610hpcd.c │ │ │ │ └── mpc8610hpcd_diu.c │ │ │ ├── mpc8641hpcn │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ └── mpc8641hpcn.c │ │ │ ├── mx23evk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── mx23evk.c │ │ │ │ └── spl_boot.c │ │ │ ├── mx25pdk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ └── mx25pdk.c │ │ │ ├── mx28evk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── iomux.c │ │ │ │ └── mx28evk.c │ │ │ ├── mx31ads │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── mx31ads.c │ │ │ │ └── u-boot.lds │ │ │ ├── mx31pdk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── mx31pdk.c │ │ │ ├── mx35pdk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── mx35pdk.c │ │ │ │ └── mx35pdk.h │ │ │ ├── mx51evk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ ├── mx51evk.c │ │ │ │ └── mx51evk_video.c │ │ │ ├── mx53ard │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage_dd3.cfg │ │ │ │ └── mx53ard.c │ │ │ ├── mx53evk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ └── mx53evk.c │ │ │ ├── mx53loco │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ ├── mx53loco.c │ │ │ │ └── mx53loco_video.c │ │ │ ├── mx53smd │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ └── mx53smd.c │ │ │ ├── mx6qarm2 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ ├── imximage_mx6dl.cfg │ │ │ │ └── mx6qarm2.c │ │ │ ├── mx6qsabreauto │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ ├── mx6dl.cfg │ │ │ │ ├── mx6qp.cfg │ │ │ │ └── mx6qsabreauto.c │ │ │ ├── mx6sabresd │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── mx6sabresd.c │ │ │ ├── mx6slevk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ └── mx6slevk.c │ │ │ ├── mx6sllevk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ ├── mx6sllevk.c │ │ │ │ └── plugin.S │ │ │ ├── mx6sxsabreauto │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ └── mx6sxsabreauto.c │ │ │ ├── mx6sxsabresd │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ └── mx6sxsabresd.c │ │ │ ├── mx6ul_14x14_evk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── mx6ul_14x14_evk.c │ │ │ ├── mx6ullevk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── imximage.cfg │ │ │ │ ├── mx6ullevk.c │ │ │ │ └── plugin.S │ │ │ ├── mx7dsabresd │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ └── mx7dsabresd.c │ │ │ ├── mx7ulp_evk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ ├── mx7ulp_evk.c │ │ │ │ └── plugin.S │ │ │ ├── p1010rdb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README.P1010RDB-PA │ │ │ │ ├── README.P1010RDB-PB │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── p1010rdb.c │ │ │ │ ├── spl.c │ │ │ │ ├── spl_minimal.c │ │ │ │ └── tlb.c │ │ │ ├── p1022ds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── diu.c │ │ │ │ ├── law.c │ │ │ │ ├── p1022ds.c │ │ │ │ ├── spl.c │ │ │ │ ├── spl_minimal.c │ │ │ │ └── tlb.c │ │ │ ├── p1023rdb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── p1023rdb.c │ │ │ │ └── tlb.c │ │ │ ├── p1_p2_rdb_pc │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── p1_p2_rdb_pc.c │ │ │ │ ├── spl.c │ │ │ │ ├── spl_minimal.c │ │ │ │ └── tlb.c │ │ │ ├── p1_twr │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── p1_twr.c │ │ │ │ └── tlb.c │ │ │ ├── p2041rdb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── cpld.c │ │ │ │ ├── cpld.h │ │ │ │ ├── ddr.c │ │ │ │ ├── eth.c │ │ │ │ └── p2041rdb.c │ │ │ ├── qemu-ppce500 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── qemu-ppce500.c │ │ │ ├── s32v234evb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── clock.c │ │ │ │ ├── lpddr2.c │ │ │ │ ├── s32v234evb.c │ │ │ │ └── s32v234evb.cfg │ │ │ ├── t102xqds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── eth_t102xqds.c │ │ │ │ ├── law.c │ │ │ │ ├── pci.c │ │ │ │ ├── spl.c │ │ │ │ ├── t1024_nand_rcw.cfg │ │ │ │ ├── t1024_pbi.cfg │ │ │ │ ├── t1024_sd_rcw.cfg │ │ │ │ ├── t1024_spi_rcw.cfg │ │ │ │ ├── t102xqds.c │ │ │ │ ├── t102xqds.h │ │ │ │ ├── t102xqds_qixis.h │ │ │ │ └── tlb.c │ │ │ ├── t102xrdb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── cpld.c │ │ │ │ ├── cpld.h │ │ │ │ ├── ddr.c │ │ │ │ ├── eth_t102xrdb.c │ │ │ │ ├── law.c │ │ │ │ ├── pci.c │ │ │ │ ├── spl.c │ │ │ │ ├── t1023_nand_rcw.cfg │ │ │ │ ├── t1023_sd_rcw.cfg │ │ │ │ ├── t1023_spi_rcw.cfg │ │ │ │ ├── t1024_nand_rcw.cfg │ │ │ │ ├── t1024_pbi.cfg │ │ │ │ ├── t1024_sd_rcw.cfg │ │ │ │ ├── t1024_spi_rcw.cfg │ │ │ │ ├── t102xrdb.c │ │ │ │ ├── t102xrdb.h │ │ │ │ └── tlb.c │ │ │ ├── t1040qds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── ddr.h │ │ │ │ ├── diu.c │ │ │ │ ├── eth.c │ │ │ │ ├── law.c │ │ │ │ ├── pci.c │ │ │ │ ├── t1040_pbi.cfg │ │ │ │ ├── t1040_rcw.cfg │ │ │ │ ├── t1040qds.c │ │ │ │ ├── t1040qds.h │ │ │ │ ├── t1040qds_qixis.h │ │ │ │ └── tlb.c │ │ │ ├── t104xrdb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── cpld.c │ │ │ │ ├── cpld.h │ │ │ │ ├── ddr.c │ │ │ │ ├── ddr.h │ │ │ │ ├── diu.c │ │ │ │ ├── eth.c │ │ │ │ ├── law.c │ │ │ │ ├── pci.c │ │ │ │ ├── spl.c │ │ │ │ ├── t1040_nand_rcw.cfg │ │ │ │ ├── t1040_sd_rcw.cfg │ │ │ │ ├── t1040_spi_rcw.cfg │ │ │ │ ├── t1040d4_nand_rcw.cfg │ │ │ │ ├── t1040d4_sd_rcw.cfg │ │ │ │ ├── t1040d4_spi_rcw.cfg │ │ │ │ ├── t1042_nand_rcw.cfg │ │ │ │ ├── t1042_pi_nand_rcw.cfg │ │ │ │ ├── t1042_pi_sd_rcw.cfg │ │ │ │ ├── t1042_pi_spi_rcw.cfg │ │ │ │ ├── t1042_sd_rcw.cfg │ │ │ │ ├── t1042_spi_rcw.cfg │ │ │ │ ├── t1042d4_nand_rcw.cfg │ │ │ │ ├── t1042d4_sd_rcw.cfg │ │ │ │ ├── t1042d4_spi_rcw.cfg │ │ │ │ ├── t104x_pbi.cfg │ │ │ │ ├── t104x_pbi_sb.cfg │ │ │ │ ├── t104xrdb.c │ │ │ │ ├── t104xrdb.h │ │ │ │ └── tlb.c │ │ │ ├── t208xqds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── ddr.h │ │ │ │ ├── eth_t208xqds.c │ │ │ │ ├── law.c │ │ │ │ ├── pci.c │ │ │ │ ├── spl.c │ │ │ │ ├── t2080_nand_rcw.cfg │ │ │ │ ├── t2080_sd_rcw.cfg │ │ │ │ ├── t2080_spi_rcw.cfg │ │ │ │ ├── t2081_nand_rcw.cfg │ │ │ │ ├── t2081_sd_rcw.cfg │ │ │ │ ├── t2081_spi_rcw.cfg │ │ │ │ ├── t208x_pbi.cfg │ │ │ │ ├── t208xqds.c │ │ │ │ ├── t208xqds.h │ │ │ │ ├── t208xqds_qixis.h │ │ │ │ └── tlb.c │ │ │ ├── t208xrdb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── cpld.c │ │ │ │ ├── cpld.h │ │ │ │ ├── ddr.c │ │ │ │ ├── ddr.h │ │ │ │ ├── eth_t208xrdb.c │ │ │ │ ├── law.c │ │ │ │ ├── pci.c │ │ │ │ ├── spl.c │ │ │ │ ├── t2080_nand_rcw.cfg │ │ │ │ ├── t2080_pbi.cfg │ │ │ │ ├── t2080_sd_rcw.cfg │ │ │ │ ├── t2080_spi_rcw.cfg │ │ │ │ ├── t208xrdb.c │ │ │ │ ├── t208xrdb.h │ │ │ │ └── tlb.c │ │ │ ├── t4qds │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── ddr.h │ │ │ │ ├── eth.c │ │ │ │ ├── law.c │ │ │ │ ├── pci.c │ │ │ │ ├── spl.c │ │ │ │ ├── t4240emu.c │ │ │ │ ├── t4240qds.c │ │ │ │ ├── t4240qds_qixis.h │ │ │ │ ├── t4_nand_rcw.cfg │ │ │ │ ├── t4_pbi.cfg │ │ │ │ ├── t4_sd_rcw.cfg │ │ │ │ ├── t4qds.h │ │ │ │ └── tlb.c │ │ │ ├── t4rdb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── cpld.c │ │ │ │ ├── cpld.h │ │ │ │ ├── ddr.c │ │ │ │ ├── ddr.h │ │ │ │ ├── eth.c │ │ │ │ ├── law.c │ │ │ │ ├── pci.c │ │ │ │ ├── spl.c │ │ │ │ ├── t4240rdb.c │ │ │ │ ├── t4_pbi.cfg │ │ │ │ ├── t4_sd_rcw.cfg │ │ │ │ ├── t4rdb.h │ │ │ │ └── tlb.c │ │ │ └── vf610twr │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ └── vf610twr.c │ │ ├── gateworks │ │ │ └── gw_ventana │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── eeprom.c │ │ │ │ ├── gsc.c │ │ │ │ ├── gsc.h │ │ │ │ ├── gw_ventana.c │ │ │ │ ├── gw_ventana_spl.c │ │ │ │ └── ventana_eeprom.h │ │ ├── gdsys │ │ │ ├── a38x │ │ │ │ ├── .gitignore │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── controlcenterdc.c │ │ │ │ ├── dt_helpers.c │ │ │ │ ├── dt_helpers.h │ │ │ │ ├── hre.c │ │ │ │ ├── hre.h │ │ │ │ ├── hydra.c │ │ │ │ ├── hydra.h │ │ │ │ ├── ihs_phys.c │ │ │ │ ├── ihs_phys.h │ │ │ │ ├── keyprogram.c │ │ │ │ ├── keyprogram.h │ │ │ │ ├── kwbimage.cfg.in │ │ │ │ └── spl.c │ │ │ ├── common │ │ │ │ ├── Makefile │ │ │ │ ├── adv7611.c │ │ │ │ ├── adv7611.h │ │ │ │ ├── ch7301.c │ │ │ │ ├── ch7301.h │ │ │ │ ├── cmd_ioloop.c │ │ │ │ ├── dp501.c │ │ │ │ ├── dp501.h │ │ │ │ ├── fanctrl.c │ │ │ │ ├── fanctrl.h │ │ │ │ ├── fpga.c │ │ │ │ ├── ihs_mdio.c │ │ │ │ ├── ihs_mdio.h │ │ │ │ ├── ioep-fpga.c │ │ │ │ ├── ioep-fpga.h │ │ │ │ ├── mclink.c │ │ │ │ ├── mclink.h │ │ │ │ ├── miiphybb.c │ │ │ │ ├── osd.c │ │ │ │ ├── osd.h │ │ │ │ ├── phy.c │ │ │ │ └── phy.h │ │ │ ├── mpc8308 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── hrcon.c │ │ │ │ ├── mpc8308.c │ │ │ │ ├── mpc8308.h │ │ │ │ ├── sdram.c │ │ │ │ └── strider.c │ │ │ └── p1022 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── controlcenterd-id.c │ │ │ │ ├── controlcenterd-id.h │ │ │ │ ├── controlcenterd.c │ │ │ │ ├── ddr.c │ │ │ │ ├── diu.c │ │ │ │ ├── law.c │ │ │ │ ├── sdhc_boot.c │ │ │ │ └── tlb.c │ │ ├── ge │ │ │ └── bx50v3 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── bx50v3.c │ │ │ │ └── bx50v3.cfg │ │ ├── geekbuying │ │ │ └── geekbox │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── geekbox.c │ │ ├── google │ │ │ ├── Kconfig │ │ │ ├── chromebook_link │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── link.c │ │ │ ├── chromebook_samus │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── samus.c │ │ │ ├── chromebox_panther │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── panther.c │ │ │ ├── common │ │ │ │ ├── Makefile │ │ │ │ └── early_init.S │ │ │ └── veyron │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── veyron.c │ │ ├── grinn │ │ │ ├── chiliboard │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── board.c │ │ │ └── liteboard │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── board.c │ │ ├── gumstix │ │ │ ├── duovero │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── duovero.c │ │ │ │ └── duovero_mux_data.h │ │ │ └── pepper │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ └── mux.c │ │ ├── h2200 │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── h2200-header.S │ │ │ └── h2200.c │ │ ├── highbank │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── ahci.c │ │ │ └── highbank.c │ │ ├── hisilicon │ │ │ └── hikey │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── build-tf.mak │ │ │ │ └── hikey.c │ │ ├── htkw │ │ │ └── mcx │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── mcx.c │ │ │ │ └── mcx.h │ │ ├── huawei │ │ │ └── hg556a │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── hg556a.c │ │ ├── ids │ │ │ └── ids8313 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── ids8313.c │ │ ├── imgtec │ │ │ ├── boston │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── boston-lcd.h │ │ │ │ ├── boston-regs.h │ │ │ │ ├── checkboard.c │ │ │ │ ├── ddr.c │ │ │ │ ├── dt.c │ │ │ │ └── lowlevel_init.S │ │ │ ├── malta │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── flash-malta-boot.tcl │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── malta.c │ │ │ │ ├── superio.c │ │ │ │ └── superio.h │ │ │ └── xilfpga │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── xilfpga.c │ │ ├── imx31_phycore │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── imx31_phycore.c │ │ │ └── lowlevel_init.S │ │ ├── intel │ │ │ ├── Kconfig │ │ │ ├── bayleybay │ │ │ │ ├── .gitignore │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── acpi │ │ │ │ │ └── mainboard.asl │ │ │ │ ├── bayleybay.c │ │ │ │ ├── dsdt.asl │ │ │ │ └── start.S │ │ │ ├── cougarcanyon2 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── cougarcanyon2.c │ │ │ │ └── start.S │ │ │ ├── crownbay │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── crownbay.c │ │ │ │ └── start.S │ │ │ ├── galileo │ │ │ │ ├── .gitignore │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── acpi │ │ │ │ │ └── mainboard.asl │ │ │ │ ├── dsdt.asl │ │ │ │ ├── galileo.c │ │ │ │ └── start.S │ │ │ └── minnowmax │ │ │ │ ├── .gitignore │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── acpi │ │ │ │ └── mainboard.asl │ │ │ │ ├── dsdt.asl │ │ │ │ ├── minnowmax.c │ │ │ │ └── start.S │ │ ├── inversepath │ │ │ └── usbarmory │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ └── usbarmory.c │ │ ├── iomega │ │ │ └── iconnect │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── iconnect.c │ │ │ │ ├── iconnect.h │ │ │ │ └── kwbimage.cfg │ │ ├── is1 │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── qts │ │ │ │ ├── iocsr_config.h │ │ │ │ ├── pinmux_config.h │ │ │ │ ├── pll_config.h │ │ │ │ └── sdram_config.h │ │ │ └── socfpga.c │ │ ├── isee │ │ │ ├── igep003x │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ └── mux.c │ │ │ └── igep00x0 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── igep00x0.c │ │ │ │ └── igep00x0.h │ │ ├── keymile │ │ │ ├── common │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ └── ivm.c │ │ │ ├── km83xx │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README.kmeter1 │ │ │ │ ├── km83xx.c │ │ │ │ └── km83xx_i2c.c │ │ │ ├── km_arm │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── fpga_config.c │ │ │ │ ├── km_arm.c │ │ │ │ ├── kwbimage-memphis.cfg │ │ │ │ ├── kwbimage.cfg │ │ │ │ ├── kwbimage_128M16_1.cfg │ │ │ │ └── kwbimage_256M8_1.cfg │ │ │ ├── kmp204x │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ddr.c │ │ │ │ ├── eth.c │ │ │ │ ├── kmp204x.c │ │ │ │ ├── kmp204x.h │ │ │ │ ├── law.c │ │ │ │ ├── pbi.cfg │ │ │ │ ├── pci.c │ │ │ │ ├── qrio.c │ │ │ │ ├── rcw_kmp204x.cfg │ │ │ │ └── tlb.c │ │ │ └── scripts │ │ │ │ ├── README │ │ │ │ ├── develop-arm.txt │ │ │ │ ├── develop-common.txt │ │ │ │ ├── develop-ppc_82xx.txt │ │ │ │ ├── develop-ppc_8xx.txt │ │ │ │ ├── ramfs-arm.txt │ │ │ │ ├── ramfs-common.txt │ │ │ │ ├── ramfs-ppc_82xx.txt │ │ │ │ └── ramfs-ppc_8xx.txt │ │ ├── kmc │ │ │ └── kzm9g │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── kzm9g.c │ │ ├── kosagi │ │ │ └── novena │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── novena.c │ │ │ │ ├── novena.h │ │ │ │ ├── novena_spl.c │ │ │ │ └── video.c │ │ ├── l+g │ │ │ └── vinco │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── vinco.c │ │ ├── lego │ │ │ └── ev3 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── legoev3.c │ │ ├── lg │ │ │ └── sniper │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── sniper.c │ │ │ │ └── sniper.h │ │ ├── liebherr │ │ │ └── mccmon6 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── mccmon6.c │ │ │ │ ├── mon6_imximage_nor.cfg │ │ │ │ ├── mon6_imximage_sd.cfg │ │ │ │ └── spl.c │ │ ├── logicpd │ │ │ ├── am3517evm │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── am3517evm.c │ │ │ │ └── am3517evm.h │ │ │ ├── imx6 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── imx6logic.c │ │ │ │ └── mx6q_2x_MT41K512M16HA.cfg │ │ │ ├── omap3som │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── omap3logic.c │ │ │ │ └── omap3logic.h │ │ │ └── zoom1 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── zoom1.c │ │ │ │ └── zoom1.h │ │ ├── maxbcm │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ └── maxbcm.c │ │ ├── microchip │ │ │ └── pic32mzda │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── pic32mzda.c │ │ ├── micronas │ │ │ └── vct │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── bcu.h │ │ │ │ ├── dcgu.c │ │ │ │ ├── dcgu.h │ │ │ │ ├── ebi.c │ │ │ │ ├── ebi.h │ │ │ │ ├── ebi_nor_flash.c │ │ │ │ ├── ebi_onenand.c │ │ │ │ ├── ebi_smc911x.c │ │ │ │ ├── ehci.c │ │ │ │ ├── gpio.c │ │ │ │ ├── scc.c │ │ │ │ ├── scc.h │ │ │ │ ├── smc_eeprom.c │ │ │ │ ├── top.c │ │ │ │ ├── vct.c │ │ │ │ ├── vct.h │ │ │ │ ├── vcth │ │ │ │ ├── reg_dcgu.h │ │ │ │ ├── reg_ebi.h │ │ │ │ ├── reg_fwsram.h │ │ │ │ ├── reg_gpio.h │ │ │ │ ├── reg_scc.h │ │ │ │ ├── reg_usbh.h │ │ │ │ └── reg_wdt.h │ │ │ │ ├── vcth2 │ │ │ │ └── reg_ebi.h │ │ │ │ └── vctv │ │ │ │ ├── reg_dcgu.h │ │ │ │ ├── reg_ebi.h │ │ │ │ ├── reg_gpio.h │ │ │ │ └── reg_wdt.h │ │ ├── mini-box │ │ │ └── picosam9g45 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── led.c │ │ │ │ └── picosam9g45.c │ │ ├── mpc8308_p1m │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── mpc8308_p1m.c │ │ │ └── sdram.c │ │ ├── mpr2 │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── mpr2.c │ │ ├── mqmaker │ │ │ └── miqi_rk3288 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── miqi-rk3288.c │ │ ├── ms7720se │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── ms7720se.c │ │ ├── ms7722se │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── ms7722se.c │ │ ├── ms7750se │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── ms7750se.c │ │ ├── netgear │ │ │ └── cg3100d │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── cg3100d.c │ │ ├── nokia │ │ │ └── rx51 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── rx51.c │ │ │ │ ├── rx51.h │ │ │ │ └── tag_omap.h │ │ ├── nvidia │ │ │ ├── beaver │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ └── Makefile │ │ │ ├── cardhu │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── cardhu.c │ │ │ │ └── pinmux-config-cardhu.h │ │ │ ├── dalmore │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── dalmore.c │ │ │ │ └── pinmux-config-dalmore.h │ │ │ ├── e2220-1170 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── e2220-1170.c │ │ │ │ └── pinmux-config-e2220-1170.h │ │ │ ├── harmony │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── harmony.c │ │ │ ├── jetson-tk1 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── jetson-tk1.c │ │ │ │ └── pinmux-config-jetson-tk1.h │ │ │ ├── nyan-big │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── nyan-big.c │ │ │ │ └── pinmux-config-nyan-big.h │ │ │ ├── p2371-0000 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── p2371-0000.c │ │ │ │ └── pinmux-config-p2371-0000.h │ │ │ ├── p2371-2180 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── p2371-2180.c │ │ │ │ └── pinmux-config-p2371-2180.h │ │ │ ├── p2571 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── max77620_init.h │ │ │ │ ├── p2571.c │ │ │ │ └── pinmux-config-p2571.h │ │ │ ├── p2771-0000 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── p2771-0000.c │ │ │ ├── seaboard │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── seaboard.c │ │ │ ├── venice2 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── as3722_init.c │ │ │ │ ├── as3722_init.h │ │ │ │ ├── pinmux-config-venice2.h │ │ │ │ └── venice2.c │ │ │ └── ventana │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ └── Makefile │ │ ├── olimex │ │ │ └── mx23_olinuxino │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── mx23_olinuxino.c │ │ │ │ └── spl_boot.c │ │ ├── omicron │ │ │ └── calimain │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── calimain.c │ │ ├── overo │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── common.c │ │ │ ├── overo.c │ │ │ ├── overo.h │ │ │ └── spl.c │ │ ├── pandora │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── pandora.c │ │ │ └── pandora.h │ │ ├── pb1x00 │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── flash.c │ │ │ ├── lowlevel_init.S │ │ │ └── pb1x00.c │ │ ├── phytec │ │ │ ├── pcm051 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ └── mux.c │ │ │ ├── pcm052 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ └── pcm052.c │ │ │ └── pcm058 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── pcm058.c │ │ ├── ppcag │ │ │ └── bg0900 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── bg0900.c │ │ │ │ └── spl_boot.c │ │ ├── qca │ │ │ ├── ap121 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── ap121.c │ │ │ └── ap143 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── ap143.c │ │ ├── qemu-mips │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── qemu-mips.c │ │ ├── qualcomm │ │ │ └── dragonboard410c │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── dragonboard410c.c │ │ │ │ ├── head.S │ │ │ │ ├── readme.txt │ │ │ │ └── u-boot.lds │ │ ├── quipos │ │ │ └── cairo │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── cairo.c │ │ │ │ └── cairo.h │ │ ├── radxa │ │ │ ├── rock │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── rock.c │ │ │ └── rock2 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── rock2.c │ │ ├── raidsonic │ │ │ └── ib62x0 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ib62x0.c │ │ │ │ ├── ib62x0.h │ │ │ │ └── kwbimage.cfg │ │ ├── raspberrypi │ │ │ └── rpi │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── rpi.c │ │ ├── renesas │ │ │ ├── MigoR │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── migo_r.c │ │ │ ├── alt │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── alt.c │ │ │ │ ├── qos.c │ │ │ │ └── qos.h │ │ │ ├── ap325rxa │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ap325rxa.c │ │ │ │ ├── cpld-ap325rxa.c │ │ │ │ └── lowlevel_init.S │ │ │ ├── blanche │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── blanche.c │ │ │ │ ├── qos.c │ │ │ │ └── qos.h │ │ │ ├── ecovec │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ecovec.c │ │ │ │ └── lowlevel_init.S │ │ │ ├── gose │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── gose.c │ │ │ │ ├── qos.c │ │ │ │ └── qos.h │ │ │ ├── koelsch │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── koelsch.c │ │ │ │ ├── qos.c │ │ │ │ └── qos.h │ │ │ ├── lager │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lager.c │ │ │ │ ├── qos.c │ │ │ │ └── qos.h │ │ │ ├── porter │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── porter.c │ │ │ │ ├── qos.c │ │ │ │ └── qos.h │ │ │ ├── r0p7734 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── r0p7734.c │ │ │ ├── r2dplus │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── r2dplus.c │ │ │ ├── r7780mp │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── r7780mp.c │ │ │ │ └── r7780mp.h │ │ │ ├── rcar-common │ │ │ │ └── common.c │ │ │ ├── rsk7203 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── rsk7203.c │ │ │ ├── rsk7264 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── rsk7264.c │ │ │ ├── rsk7269 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── rsk7269.c │ │ │ ├── salvator-x │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── salvator-x.c │ │ │ ├── sh7752evb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── sh7752evb.c │ │ │ │ └── spi-boot.c │ │ │ ├── sh7753evb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── sh7753evb.c │ │ │ │ └── spi-boot.c │ │ │ ├── sh7757lcr │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README.sh7757lcr │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── sh7757lcr.c │ │ │ │ └── spi-boot.c │ │ │ ├── sh7763rdp │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── sh7763rdp.c │ │ │ ├── sh7785lcr │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README.sh7785lcr │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── rtl8169.h │ │ │ │ ├── rtl8169_mac.c │ │ │ │ ├── selfcheck.c │ │ │ │ └── sh7785lcr.c │ │ │ ├── silk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── qos.c │ │ │ │ ├── qos.h │ │ │ │ └── silk.c │ │ │ └── stout │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── cpld.c │ │ │ │ ├── cpld.h │ │ │ │ ├── qos.c │ │ │ │ ├── qos.h │ │ │ │ └── stout.c │ │ ├── rockchip │ │ │ ├── evb_px5 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── evb-px5.c │ │ │ ├── evb_rk3036 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── evb_rk3036.c │ │ │ ├── evb_rk3288 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── evb-rk3288.c │ │ │ ├── evb_rk3328 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── evb-rk3328.c │ │ │ ├── evb_rk3399 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── evb-rk3399.c │ │ │ ├── evb_rv1108 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── evb_rv1108.c │ │ │ ├── fennec_rk3288 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── fennec-rk3288.c │ │ │ ├── kylin_rk3036 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── kylin_rk3036.c │ │ │ ├── sheep_rk3368 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── sheep_rk3368.c │ │ │ └── tinker_rk3288 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── tinker-rk3288.c │ │ ├── ronetix │ │ │ ├── pm9261 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── led.c │ │ │ │ ├── partition.c │ │ │ │ └── pm9261.c │ │ │ ├── pm9263 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── led.c │ │ │ │ ├── partition.c │ │ │ │ └── pm9263.c │ │ │ └── pm9g45 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── pm9g45.c │ │ ├── sagem │ │ │ └── f@st1704 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── f@st1704.c │ │ ├── samsung │ │ │ ├── arndale │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── arndale.c │ │ │ │ └── arndale_spl.c │ │ │ ├── common │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── bootscripts │ │ │ │ │ ├── autoboot.cmd │ │ │ │ │ └── bootzimg.cmd │ │ │ │ ├── dfu_sample_env.txt │ │ │ │ ├── exynos-uboot-spl.lds │ │ │ │ ├── exynos5-dt-types.c │ │ │ │ ├── exynos5-dt.c │ │ │ │ ├── gadget.c │ │ │ │ └── misc.c │ │ │ ├── espresso7420 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── espresso7420.c │ │ │ ├── goni │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── goni.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── onenand.c │ │ │ ├── odroid │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── odroid.c │ │ │ │ └── setup.h │ │ │ ├── origen │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── origen.c │ │ │ │ └── tools │ │ │ │ │ └── mkorigenspl.c │ │ │ ├── smdk5250 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── smdk5250_spl.c │ │ │ ├── smdk5420 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── smdk5420_spl.c │ │ │ ├── smdkc100 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── onenand.c │ │ │ │ └── smdkc100.c │ │ │ ├── smdkv310 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── smdkv310.c │ │ │ │ └── tools │ │ │ │ │ └── mksmdkv310spl.c │ │ │ ├── trats │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── setup.h │ │ │ │ └── trats.c │ │ │ ├── trats2 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── trats2.c │ │ │ └── universal_c210 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── onenand.c │ │ │ │ └── universal.c │ │ ├── samtec │ │ │ ├── vining_2000 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ └── vining_2000.c │ │ │ └── vining_fpga │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── qts │ │ │ │ ├── iocsr_config.h │ │ │ │ ├── pinmux_config.h │ │ │ │ ├── pll_config.h │ │ │ │ └── sdram_config.h │ │ │ │ └── socfpga.c │ │ ├── sandbox │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README.sandbox │ │ │ └── sandbox.c │ │ ├── sandisk │ │ │ └── sansa_fuze_plus │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── sfp.c │ │ │ │ └── spl_boot.c │ │ ├── sbc8349 │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── pci.c │ │ │ └── sbc8349.c │ │ ├── sbc8548 │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── sbc8548.c │ │ │ └── tlb.c │ │ ├── sbc8641d │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ └── sbc8641d.c │ │ ├── schulercontrol │ │ │ └── sc_sps_1 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── sc_sps_1.c │ │ │ │ └── spl_boot.c │ │ ├── seco │ │ │ ├── Kconfig │ │ │ ├── common │ │ │ │ ├── Makefile │ │ │ │ ├── mx6.c │ │ │ │ └── mx6.h │ │ │ └── mx6quq7 │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── mx6quq7-2g.cfg │ │ │ │ └── mx6quq7.c │ │ ├── sfr │ │ │ └── nb4_ser │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── nb4-ser.c │ │ ├── shmin │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── lowlevel_init.S │ │ │ └── shmin.c │ │ ├── siemens │ │ │ ├── common │ │ │ │ ├── board.c │ │ │ │ ├── factoryset.c │ │ │ │ └── factoryset.h │ │ │ ├── corvus │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── board.c │ │ │ ├── draco │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ └── mux.c │ │ │ ├── pxm2 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── mux.c │ │ │ │ └── pmic.h │ │ │ ├── rut │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ └── mux.c │ │ │ ├── smartweb │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── smartweb.c │ │ │ └── taurus │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── taurus.c │ │ ├── silica │ │ │ └── pengwyn │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ └── mux.c │ │ ├── socrates │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── ddr.c │ │ │ ├── law.c │ │ │ ├── nand.c │ │ │ ├── sdram.c │ │ │ ├── socrates.c │ │ │ ├── tlb.c │ │ │ └── upm_table.h │ │ ├── solidrun │ │ │ ├── clearfog │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── clearfog.c │ │ │ │ └── kwbimage.cfg │ │ │ └── mx6cuboxi │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── mx6cuboxi.c │ │ ├── spear │ │ │ ├── common │ │ │ │ ├── Makefile │ │ │ │ ├── spr_lowlevel_init.S │ │ │ │ └── spr_misc.c │ │ │ ├── spear300 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── spear300.c │ │ │ ├── spear310 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── spear310.c │ │ │ ├── spear320 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── spear320.c │ │ │ ├── spear600 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── spear600.c │ │ │ └── x600 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── fpga.c │ │ │ │ ├── fpga.h │ │ │ │ └── x600.c │ │ ├── sr1500 │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── qts │ │ │ │ ├── iocsr_config.h │ │ │ │ ├── pinmux_config.h │ │ │ │ ├── pll_config.h │ │ │ │ └── sdram_config.h │ │ │ └── socfpga.c │ │ ├── st │ │ │ ├── stih410-b2260 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── board.c │ │ │ ├── stm32f429-discovery │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── led.c │ │ │ │ └── stm32f429-discovery.c │ │ │ ├── stm32f746-disco │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── stm32f746-disco.c │ │ │ └── stv0991 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── stv0991.c │ │ ├── sunxi │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README.nand │ │ │ ├── README.sunxi64 │ │ │ ├── ahci.c │ │ │ ├── board.c │ │ │ ├── dram_sun4i_auto.c │ │ │ ├── dram_sun5i_auto.c │ │ │ ├── dram_timings_sun4i.h │ │ │ ├── gmac.c │ │ │ └── mksunxi_fit_atf.sh │ │ ├── synopsys │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── axs10x │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── axs10x.c │ │ │ │ ├── axs10x.h │ │ │ │ └── nand.c │ │ │ └── hsdk │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── hsdk.c │ │ ├── sysam │ │ │ └── amcore │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── amcore.c │ │ ├── syteco │ │ │ └── zmx25 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── zmx25.c │ │ ├── tbs │ │ │ └── tbs2910 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── tbs2910.c │ │ ├── tcl │ │ │ └── sl50 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ └── mux.c │ │ ├── technexion │ │ │ ├── pico-imx6ul │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── imximage.cfg │ │ │ │ └── pico-imx6ul.c │ │ │ ├── pico-imx7d │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── imximage.cfg │ │ │ │ └── pico-imx7d.c │ │ │ ├── tao3530 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── tao3530.c │ │ │ │ └── tao3530.h │ │ │ └── twister │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── twister.c │ │ │ │ └── twister.h │ │ ├── technologic │ │ │ ├── ts4600 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── iomux.c │ │ │ │ └── ts4600.c │ │ │ └── ts4800 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ts4800.c │ │ │ │ └── ts4800.h │ │ ├── teejet │ │ │ └── mt_ventoux │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── mt_ventoux.c │ │ │ │ └── mt_ventoux.h │ │ ├── terasic │ │ │ ├── de0-nano-soc │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── qts │ │ │ │ │ ├── iocsr_config.h │ │ │ │ │ ├── pinmux_config.h │ │ │ │ │ ├── pll_config.h │ │ │ │ │ └── sdram_config.h │ │ │ │ └── socfpga.c │ │ │ ├── de1-soc │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── qts │ │ │ │ │ ├── iocsr_config.h │ │ │ │ │ ├── pinmux_config.h │ │ │ │ │ ├── pll_config.h │ │ │ │ │ └── sdram_config.h │ │ │ │ └── socfpga.c │ │ │ ├── de10-nano │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── qts │ │ │ │ │ ├── iocsr_config.h │ │ │ │ │ ├── pinmux_config.h │ │ │ │ │ ├── pll_config.h │ │ │ │ │ └── sdram_config.h │ │ │ │ └── socfpga.c │ │ │ └── sockit │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── qts │ │ │ │ ├── iocsr_config.h │ │ │ │ ├── pinmux_config.h │ │ │ │ ├── pll_config.h │ │ │ │ └── sdram_config.h │ │ │ │ └── socfpga.c │ │ ├── theadorable │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── fpga.c │ │ │ ├── kwbimage.cfg │ │ │ ├── theadorable.c │ │ │ └── theadorable.h │ │ ├── theobroma-systems │ │ │ └── puma_rk3399 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── fit_spl_atf.its │ │ │ │ └── puma-rk3399.c │ │ ├── ti │ │ │ ├── am335x │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── mux.c │ │ │ │ └── u-boot.lds │ │ │ ├── am3517crane │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── am3517crane.c │ │ │ │ └── am3517crane.h │ │ │ ├── am43xx │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ └── mux.c │ │ │ ├── am57xx │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ └── mux_data.h │ │ │ ├── beagle │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── beagle.c │ │ │ │ ├── beagle.h │ │ │ │ └── led.c │ │ │ ├── common │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── board_detect.c │ │ │ │ └── board_detect.h │ │ │ ├── dra7xx │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── evm.c │ │ │ │ └── mux_data.h │ │ │ ├── evm │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── evm.c │ │ │ │ └── evm.h │ │ │ ├── ks2_evm │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── board_k2e.c │ │ │ │ ├── board_k2g.c │ │ │ │ ├── board_k2hk.c │ │ │ │ ├── board_k2l.c │ │ │ │ ├── ddr3_cfg.c │ │ │ │ ├── ddr3_cfg.h │ │ │ │ ├── ddr3_k2e.c │ │ │ │ ├── ddr3_k2g.c │ │ │ │ ├── ddr3_k2hk.c │ │ │ │ ├── ddr3_k2l.c │ │ │ │ └── mux-k2g.h │ │ │ ├── omap5_uevm │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── evm.c │ │ │ │ └── mux_data.h │ │ │ ├── panda │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── panda.c │ │ │ │ └── panda_mux_data.h │ │ │ ├── sdp4430 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── cmd_bat.c │ │ │ │ ├── sdp.c │ │ │ │ └── sdp4430_mux_data.h │ │ │ ├── ti814x │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── evm.c │ │ │ │ ├── evm.h │ │ │ │ └── mux.c │ │ │ └── ti816x │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── evm.c │ │ ├── timll │ │ │ ├── devkit3250 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── devkit3250.c │ │ │ │ └── devkit3250_spl.c │ │ │ └── devkit8000 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── devkit8000.c │ │ │ │ └── devkit8000.h │ │ ├── topic │ │ │ └── zynq │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── ps7_init_common.c │ │ │ │ ├── ps7_init_gpl.h │ │ │ │ ├── zynq-topic-miami │ │ │ │ ├── ps7_init_gpl.c │ │ │ │ └── ps7_regs.txt │ │ │ │ ├── zynq-topic-miamilite │ │ │ │ ├── ps7_init_gpl.c │ │ │ │ └── ps7_regs.txt │ │ │ │ └── zynq-topic-miamiplus │ │ │ │ ├── ps7_init_gpl.c │ │ │ │ └── ps7_regs.txt │ │ ├── toradex │ │ │ ├── apalis-tk1 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── apalis-tk1.c │ │ │ │ ├── as3722_init.c │ │ │ │ ├── as3722_init.h │ │ │ │ └── pinmux-config-apalis-tk1.h │ │ │ ├── apalis_imx6 │ │ │ │ ├── 1066mhz_4x128mx16.cfg │ │ │ │ ├── 1066mhz_4x256mx16.cfg │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── apalis_imx6.c │ │ │ │ ├── apalis_imx6q.cfg │ │ │ │ ├── clocks.cfg │ │ │ │ ├── ddr-setup.cfg │ │ │ │ ├── do_fuse.c │ │ │ │ ├── pf0100.c │ │ │ │ ├── pf0100.h │ │ │ │ └── pf0100_otp.inc │ │ │ ├── apalis_t30 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── apalis_t30.c │ │ │ │ └── pinmux-config-apalis_t30.h │ │ │ ├── colibri_imx6 │ │ │ │ ├── 800mhz_2x64mx16.cfg │ │ │ │ ├── 800mhz_4x64mx16.cfg │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── clocks.cfg │ │ │ │ ├── colibri_imx6.c │ │ │ │ ├── colibri_imx6.cfg │ │ │ │ ├── ddr-setup.cfg │ │ │ │ ├── do_fuse.c │ │ │ │ ├── pf0100.c │ │ │ │ ├── pf0100.h │ │ │ │ └── pf0100_otp.inc │ │ │ ├── colibri_imx7 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── colibri_imx7.c │ │ │ │ └── imximage.cfg │ │ │ ├── colibri_pxa270 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── colibri_pxa270.c │ │ │ ├── colibri_t20 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── colibri_t20.c │ │ │ ├── colibri_t30 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── colibri_t30.c │ │ │ │ └── pinmux-config-colibri_t30.h │ │ │ ├── colibri_vf │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── colibri_vf.c │ │ │ │ ├── dcu.c │ │ │ │ └── imximage.cfg │ │ │ └── common │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── tdx-cfg-block.c │ │ │ │ ├── tdx-cfg-block.h │ │ │ │ ├── tdx-common.c │ │ │ │ └── tdx-common.h │ │ ├── tplink │ │ │ └── wdr4300 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── wdr4300.c │ │ ├── tqc │ │ │ ├── tqm834x │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── pci.c │ │ │ │ └── tqm834x.c │ │ │ └── tqma6 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── clocks.cfg │ │ │ │ ├── tqma6.c │ │ │ │ ├── tqma6_bb.h │ │ │ │ ├── tqma6_mba6.c │ │ │ │ ├── tqma6_wru4.c │ │ │ │ ├── tqma6dl.cfg │ │ │ │ ├── tqma6q.cfg │ │ │ │ └── tqma6s.cfg │ │ ├── udoo │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── neo │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ └── neo.c │ │ │ ├── udoo.c │ │ │ └── udoo_spl.c │ │ ├── varisys │ │ │ ├── common │ │ │ │ ├── Makefile │ │ │ │ ├── eeprom.h │ │ │ │ └── sys_eeprom.c │ │ │ └── cyrus │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── cyrus.c │ │ │ │ ├── cyrus.h │ │ │ │ ├── ddr.c │ │ │ │ ├── eth.c │ │ │ │ ├── law.c │ │ │ │ ├── pbi.cfg │ │ │ │ ├── pci.c │ │ │ │ ├── rcw_p5020_v2.cfg │ │ │ │ ├── rcw_p5040.cfg │ │ │ │ └── tlb.c │ │ ├── ve8313 │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ └── ve8313.c │ │ ├── vscom │ │ │ └── baltos │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── mux.c │ │ │ │ └── u-boot.lds │ │ ├── wandboard │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── spl.c │ │ │ └── wandboard.c │ │ ├── warp │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── imximage.cfg │ │ │ └── warp.c │ │ ├── warp7 │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── imximage.cfg │ │ │ └── warp7.c │ │ ├── woodburn │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── imximage.cfg │ │ │ ├── lowlevel_init.S │ │ │ └── woodburn.c │ │ ├── work-microwave │ │ │ └── work_92105 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── work_92105.c │ │ │ │ ├── work_92105_display.c │ │ │ │ ├── work_92105_display.h │ │ │ │ └── work_92105_spl.c │ │ ├── xes │ │ │ ├── common │ │ │ │ ├── Makefile │ │ │ │ ├── actl_nand.c │ │ │ │ ├── board.c │ │ │ │ ├── fsl_8xxx_clk.c │ │ │ │ ├── fsl_8xxx_misc.c │ │ │ │ ├── fsl_8xxx_misc.h │ │ │ │ └── fsl_8xxx_pci.c │ │ │ ├── xpedite517x │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ └── xpedite517x.c │ │ │ ├── xpedite520x │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── tlb.c │ │ │ │ └── xpedite520x.c │ │ │ ├── xpedite537x │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── tlb.c │ │ │ │ └── xpedite537x.c │ │ │ └── xpedite550x │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── tlb.c │ │ │ │ └── xpedite550x.c │ │ ├── xilinx │ │ │ ├── microblaze-generic │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── microblaze-generic.c │ │ │ │ └── xparameters.h │ │ │ ├── zynq │ │ │ │ ├── .gitignore │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── xil_io.h │ │ │ │ ├── zynq-microzed │ │ │ │ │ ├── ps7_init_gpl.c │ │ │ │ │ └── ps7_init_gpl.h │ │ │ │ ├── zynq-zc702 │ │ │ │ │ ├── ps7_init_gpl.c │ │ │ │ │ └── ps7_init_gpl.h │ │ │ │ ├── zynq-zc706 │ │ │ │ │ ├── ps7_init_gpl.c │ │ │ │ │ └── ps7_init_gpl.h │ │ │ │ ├── zynq-zed │ │ │ │ │ ├── ps7_init_gpl.c │ │ │ │ │ └── ps7_init_gpl.h │ │ │ │ └── zynq-zybo │ │ │ │ │ ├── ps7_init_gpl.c │ │ │ │ │ └── ps7_init_gpl.h │ │ │ └── zynqmp │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── sleep.h │ │ │ │ ├── xil_io.h │ │ │ │ └── zynqmp.c │ │ ├── zipitz2 │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ └── zipitz2.c │ │ └── zyxel │ │ │ └── nsa310s │ │ │ ├── Kconfig │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ ├── nsa310s.c │ │ │ └── nsa310s.h │ ├── cmd │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── aes.c │ │ ├── armflash.c │ │ ├── bdinfo.c │ │ ├── bedbug.c │ │ ├── blkcache.c │ │ ├── blob.c │ │ ├── bmp.c │ │ ├── boot.c │ │ ├── bootefi.c │ │ ├── booti.c │ │ ├── bootm.c │ │ ├── bootmenu.c │ │ ├── bootstage.c │ │ ├── bootz.c │ │ ├── cache.c │ │ ├── cbfs.c │ │ ├── clk.c │ │ ├── config.c │ │ ├── console.c │ │ ├── cpu.c │ │ ├── cramfs.c │ │ ├── cros_ec.c │ │ ├── dataflash_mmc_mux.c │ │ ├── date.c │ │ ├── demo.c │ │ ├── dfu.c │ │ ├── diag.c │ │ ├── disk.c │ │ ├── display.c │ │ ├── echo.c │ │ ├── eeprom.c │ │ ├── efi.c │ │ ├── elf.c │ │ ├── ethsw.c │ │ ├── exit.c │ │ ├── ext2.c │ │ ├── ext4.c │ │ ├── fastboot.c │ │ ├── fastboot │ │ │ └── Kconfig │ │ ├── fat.c │ │ ├── fdc.c │ │ ├── fdt.c │ │ ├── fitupd.c │ │ ├── flash.c │ │ ├── fpga.c │ │ ├── fpgad.c │ │ ├── fs.c │ │ ├── fs_uuid.c │ │ ├── fuse.c │ │ ├── gettime.c │ │ ├── gpio.c │ │ ├── gpt.c │ │ ├── hash.c │ │ ├── help.c │ │ ├── host.c │ │ ├── i2c.c │ │ ├── ide.c │ │ ├── ini.c │ │ ├── io.c │ │ ├── iotrace.c │ │ ├── irq.c │ │ ├── itest.c │ │ ├── jffs2.c │ │ ├── led.c │ │ ├── legacy_led.c │ │ ├── license.c │ │ ├── load.c │ │ ├── log.c │ │ ├── lzmadec.c │ │ ├── mac.c │ │ ├── md5sum.c │ │ ├── mdio.c │ │ ├── mem.c │ │ ├── mfsl.c │ │ ├── mii.c │ │ ├── misc.c │ │ ├── mmc.c │ │ ├── mmc_spi.c │ │ ├── mp.c │ │ ├── mtdparts.c │ │ ├── mvebu │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── bubt.c │ │ ├── nand.c │ │ ├── net.c │ │ ├── nvedit.c │ │ ├── onenand.c │ │ ├── part.c │ │ ├── pci.c │ │ ├── pcmcia.c │ │ ├── pmic.c │ │ ├── portio.c │ │ ├── pxe.c │ │ ├── qfw.c │ │ ├── read.c │ │ ├── reginfo.c │ │ ├── regulator.c │ │ ├── reiser.c │ │ ├── remoteproc.c │ │ ├── sata.c │ │ ├── scsi.c │ │ ├── setexpr.c │ │ ├── sf.c │ │ ├── sha1sum.c │ │ ├── sound.c │ │ ├── source.c │ │ ├── spi.c │ │ ├── spl.c │ │ ├── strings.c │ │ ├── terminal.c │ │ ├── test.c │ │ ├── thordown.c │ │ ├── time.c │ │ ├── tpm.c │ │ ├── tpm_test.c │ │ ├── tsi148.c │ │ ├── ubi.c │ │ ├── ubifs.c │ │ ├── universe.c │ │ ├── unzip.c │ │ ├── usb.c │ │ ├── usb_mass_storage.c │ │ ├── version.c │ │ ├── ximg.c │ │ ├── yaffs2.c │ │ ├── zfs.c │ │ └── zip.c │ ├── common │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── autoboot.c │ │ ├── bedbug.c │ │ ├── board_f.c │ │ ├── board_info.c │ │ ├── board_r.c │ │ ├── bootm.c │ │ ├── bootm_os.c │ │ ├── bootretry.c │ │ ├── bootstage.c │ │ ├── bouncebuf.c │ │ ├── cli.c │ │ ├── cli_hush.c │ │ ├── cli_readline.c │ │ ├── cli_simple.c │ │ ├── command.c │ │ ├── console.c │ │ ├── cros_ec.c │ │ ├── ddr_spd.c │ │ ├── dfu.c │ │ ├── dlmalloc.c │ │ ├── dlmalloc.src │ │ ├── edid.c │ │ ├── eeprom │ │ │ ├── eeprom_field.c │ │ │ └── eeprom_layout.c │ │ ├── env_attr.c │ │ ├── env_callback.c │ │ ├── env_common.c │ │ ├── env_dataflash.c │ │ ├── env_eeprom.c │ │ ├── env_embedded.c │ │ ├── env_ext4.c │ │ ├── env_fat.c │ │ ├── env_flags.c │ │ ├── env_flash.c │ │ ├── env_mmc.c │ │ ├── env_nand.c │ │ ├── env_nowhere.c │ │ ├── env_nvram.c │ │ ├── env_onenand.c │ │ ├── env_remote.c │ │ ├── env_sata.c │ │ ├── env_sf.c │ │ ├── env_ubi.c │ │ ├── exports.c │ │ ├── fb_mmc.c │ │ ├── fb_nand.c │ │ ├── fdt_support.c │ │ ├── flash.c │ │ ├── hash.c │ │ ├── hwconfig.c │ │ ├── image-android.c │ │ ├── image-fdt.c │ │ ├── image-fit.c │ │ ├── image-sig.c │ │ ├── image-sparse.c │ │ ├── image.c │ │ ├── init │ │ │ ├── Makefile │ │ │ └── board_init.c │ │ ├── iomux.c │ │ ├── iotrace.c │ │ ├── kallsyms.c │ │ ├── kgdb.c │ │ ├── kgdb_stubs.c │ │ ├── lcd.c │ │ ├── lcd_console.c │ │ ├── lcd_console_rotation.c │ │ ├── lcd_simplefb.c │ │ ├── lynxkdi.c │ │ ├── main.c │ │ ├── malloc_simple.c │ │ ├── memsize.c │ │ ├── menu.c │ │ ├── miiphyutil.c │ │ ├── s_record.c │ │ ├── sata.c │ │ ├── scsi.c │ │ ├── spl │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── spl.c │ │ │ ├── spl_atf.c │ │ │ ├── spl_dfu.c │ │ │ ├── spl_ext.c │ │ │ ├── spl_fat.c │ │ │ ├── spl_fit.c │ │ │ ├── spl_mmc.c │ │ │ ├── spl_nand.c │ │ │ ├── spl_net.c │ │ │ ├── spl_nor.c │ │ │ ├── spl_onenand.c │ │ │ ├── spl_ram.c │ │ │ ├── spl_sata.c │ │ │ ├── spl_spi.c │ │ │ ├── spl_ubi.c │ │ │ ├── spl_usb.c │ │ │ ├── spl_xip.c │ │ │ └── spl_ymodem.c │ │ ├── splash.c │ │ ├── splash_source.c │ │ ├── stdio.c │ │ ├── system_map.c │ │ ├── update.c │ │ ├── usb.c │ │ ├── usb_hub.c │ │ ├── usb_kbd.c │ │ ├── usb_storage.c │ │ └── xyzModem.c │ ├── config.mk │ ├── configs │ │ ├── 10m50_defconfig │ │ ├── 3c120_defconfig │ │ ├── A10-OLinuXino-Lime_defconfig │ │ ├── A10s-OLinuXino-M_defconfig │ │ ├── A13-OLinuXinoM_defconfig │ │ ├── A13-OLinuXino_defconfig │ │ ├── A20-OLinuXino-Lime2_defconfig │ │ ├── A20-OLinuXino-Lime_defconfig │ │ ├── A20-OLinuXino_MICRO_defconfig │ │ ├── A20-Olimex-SOM-EVB_defconfig │ │ ├── A33-OLinuXino_defconfig │ │ ├── Ainol_AW1_defconfig │ │ ├── Ampe_A76_defconfig │ │ ├── Auxtek-T003_defconfig │ │ ├── Auxtek-T004_defconfig │ │ ├── B4420QDS_NAND_defconfig │ │ ├── B4420QDS_SPIFLASH_defconfig │ │ ├── B4420QDS_defconfig │ │ ├── B4860QDS_NAND_defconfig │ │ ├── B4860QDS_SECURE_BOOT_defconfig │ │ ├── B4860QDS_SPIFLASH_defconfig │ │ ├── B4860QDS_SRIO_PCIE_BOOT_defconfig │ │ ├── B4860QDS_defconfig │ │ ├── BSC9131RDB_NAND_SYSCLK100_defconfig │ │ ├── BSC9131RDB_NAND_defconfig │ │ ├── BSC9131RDB_SPIFLASH_SYSCLK100_defconfig │ │ ├── BSC9131RDB_SPIFLASH_defconfig │ │ ├── BSC9132QDS_NAND_DDRCLK100_SECURE_defconfig │ │ ├── BSC9132QDS_NAND_DDRCLK100_defconfig │ │ ├── BSC9132QDS_NAND_DDRCLK133_SECURE_defconfig │ │ ├── BSC9132QDS_NAND_DDRCLK133_defconfig │ │ ├── BSC9132QDS_NOR_DDRCLK100_SECURE_defconfig │ │ ├── BSC9132QDS_NOR_DDRCLK100_defconfig │ │ ├── BSC9132QDS_NOR_DDRCLK133_SECURE_defconfig │ │ ├── BSC9132QDS_NOR_DDRCLK133_defconfig │ │ ├── BSC9132QDS_SDCARD_DDRCLK100_SECURE_defconfig │ │ ├── BSC9132QDS_SDCARD_DDRCLK100_defconfig │ │ ├── BSC9132QDS_SDCARD_DDRCLK133_SECURE_defconfig │ │ ├── BSC9132QDS_SDCARD_DDRCLK133_defconfig │ │ ├── BSC9132QDS_SPIFLASH_DDRCLK100_SECURE_defconfig │ │ ├── BSC9132QDS_SPIFLASH_DDRCLK100_defconfig │ │ ├── BSC9132QDS_SPIFLASH_DDRCLK133_SECURE_defconfig │ │ ├── BSC9132QDS_SPIFLASH_DDRCLK133_defconfig │ │ ├── Bananapi_M2_Ultra_defconfig │ │ ├── Bananapi_defconfig │ │ ├── Bananapro_defconfig │ │ ├── C29XPCIE_NAND_defconfig │ │ ├── C29XPCIE_NOR_SECBOOT_defconfig │ │ ├── C29XPCIE_SPIFLASH_SECBOOT_defconfig │ │ ├── C29XPCIE_SPIFLASH_defconfig │ │ ├── C29XPCIE_defconfig │ │ ├── CHIP_defconfig │ │ ├── CHIP_pro_defconfig │ │ ├── CSQ_CS908_defconfig │ │ ├── Chuwi_V7_CW0825_defconfig │ │ ├── Colombus_defconfig │ │ ├── Cubieboard2_defconfig │ │ ├── Cubieboard4_defconfig │ │ ├── Cubieboard_defconfig │ │ ├── Cubietruck_defconfig │ │ ├── Cubietruck_plus_defconfig │ │ ├── Cyrus_P5020_defconfig │ │ ├── Cyrus_P5040_defconfig │ │ ├── Empire_electronix_d709_defconfig │ │ ├── Empire_electronix_m712_defconfig │ │ ├── Hummingbird_A31_defconfig │ │ ├── Hyundai_A7HD_defconfig │ │ ├── Itead_Ibox_A20_defconfig │ │ ├── Lamobo_R1_defconfig │ │ ├── LicheePi_Zero_defconfig │ │ ├── Linksprite_pcDuino3_Nano_defconfig │ │ ├── Linksprite_pcDuino3_defconfig │ │ ├── Linksprite_pcDuino_defconfig │ │ ├── M5208EVBE_defconfig │ │ ├── M52277EVB_defconfig │ │ ├── M52277EVB_stmicro_defconfig │ │ ├── M5235EVB_Flash32_defconfig │ │ ├── M5235EVB_defconfig │ │ ├── M5249EVB_defconfig │ │ ├── M5253DEMO_defconfig │ │ ├── M5253EVBE_defconfig │ │ ├── M5272C3_defconfig │ │ ├── M5275EVB_defconfig │ │ ├── M5282EVB_defconfig │ │ ├── M53017EVB_defconfig │ │ ├── M5329AFEE_defconfig │ │ ├── M5329BFEE_defconfig │ │ ├── M5373EVB_defconfig │ │ ├── M54418TWR_defconfig │ │ ├── M54418TWR_nand_mii_defconfig │ │ ├── M54418TWR_nand_rmii_defconfig │ │ ├── M54418TWR_nand_rmii_lowfreq_defconfig │ │ ├── M54418TWR_serial_mii_defconfig │ │ ├── M54418TWR_serial_rmii_defconfig │ │ ├── M54451EVB_defconfig │ │ ├── M54451EVB_stmicro_defconfig │ │ ├── M54455EVB_a66_defconfig │ │ ├── M54455EVB_defconfig │ │ ├── M54455EVB_i66_defconfig │ │ ├── M54455EVB_intel_defconfig │ │ ├── M54455EVB_stm33_defconfig │ │ ├── M5475AFE_defconfig │ │ ├── M5475BFE_defconfig │ │ ├── M5475CFE_defconfig │ │ ├── M5475DFE_defconfig │ │ ├── M5475EFE_defconfig │ │ ├── M5475FFE_defconfig │ │ ├── M5475GFE_defconfig │ │ ├── M5485AFE_defconfig │ │ ├── M5485BFE_defconfig │ │ ├── M5485CFE_defconfig │ │ ├── M5485DFE_defconfig │ │ ├── M5485EFE_defconfig │ │ ├── M5485FFE_defconfig │ │ ├── M5485GFE_defconfig │ │ ├── M5485HFE_defconfig │ │ ├── MCR3000_defconfig │ │ ├── MK808C_defconfig │ │ ├── MPC8308RDB_defconfig │ │ ├── MPC8313ERDB_33_defconfig │ │ ├── MPC8313ERDB_66_defconfig │ │ ├── MPC8313ERDB_NAND_33_defconfig │ │ ├── MPC8313ERDB_NAND_66_defconfig │ │ ├── MPC8315ERDB_defconfig │ │ ├── MPC8323ERDB_defconfig │ │ ├── MPC832XEMDS_ATM_defconfig │ │ ├── MPC832XEMDS_HOST_33_defconfig │ │ ├── MPC832XEMDS_HOST_66_defconfig │ │ ├── MPC832XEMDS_SLAVE_defconfig │ │ ├── MPC832XEMDS_defconfig │ │ ├── MPC8349EMDS_defconfig │ │ ├── MPC8349ITXGP_defconfig │ │ ├── MPC8349ITX_LOWBOOT_defconfig │ │ ├── MPC8349ITX_defconfig │ │ ├── MPC837XEMDS_HOST_defconfig │ │ ├── MPC837XEMDS_defconfig │ │ ├── MPC837XERDB_defconfig │ │ ├── MPC8536DS_36BIT_defconfig │ │ ├── MPC8536DS_SDCARD_defconfig │ │ ├── MPC8536DS_SPIFLASH_defconfig │ │ ├── MPC8536DS_defconfig │ │ ├── MPC8541CDS_defconfig │ │ ├── MPC8541CDS_legacy_defconfig │ │ ├── MPC8544DS_defconfig │ │ ├── MPC8548CDS_36BIT_defconfig │ │ ├── MPC8548CDS_defconfig │ │ ├── MPC8548CDS_legacy_defconfig │ │ ├── MPC8555CDS_defconfig │ │ ├── MPC8555CDS_legacy_defconfig │ │ ├── MPC8568MDS_defconfig │ │ ├── MPC8569MDS_ATM_defconfig │ │ ├── MPC8569MDS_defconfig │ │ ├── MPC8572DS_36BIT_defconfig │ │ ├── MPC8572DS_defconfig │ │ ├── MPC8610HPCD_defconfig │ │ ├── MPC8641HPCN_36BIT_defconfig │ │ ├── MPC8641HPCN_defconfig │ │ ├── MSI_Primo73_defconfig │ │ ├── MSI_Primo81_defconfig │ │ ├── Marsboard_A10_defconfig │ │ ├── Mele_A1000G_quad_defconfig │ │ ├── Mele_A1000_defconfig │ │ ├── Mele_I7_defconfig │ │ ├── Mele_M3_defconfig │ │ ├── Mele_M5_defconfig │ │ ├── Mele_M9_defconfig │ │ ├── Merrii_A80_Optimus_defconfig │ │ ├── MigoR_defconfig │ │ ├── Mini-X_defconfig │ │ ├── Nintendo_NES_Classic_Edition_defconfig │ │ ├── Orangepi_defconfig │ │ ├── Orangepi_mini_defconfig │ │ ├── P1010RDB-PA_36BIT_NAND_SECBOOT_defconfig │ │ ├── P1010RDB-PA_36BIT_NAND_defconfig │ │ ├── P1010RDB-PA_36BIT_NOR_SECBOOT_defconfig │ │ ├── P1010RDB-PA_36BIT_NOR_defconfig │ │ ├── P1010RDB-PA_36BIT_SDCARD_defconfig │ │ ├── P1010RDB-PA_36BIT_SPIFLASH_SECBOOT_defconfig │ │ ├── P1010RDB-PA_36BIT_SPIFLASH_defconfig │ │ ├── P1010RDB-PA_NAND_SECBOOT_defconfig │ │ ├── P1010RDB-PA_NAND_defconfig │ │ ├── P1010RDB-PA_NOR_SECBOOT_defconfig │ │ ├── P1010RDB-PA_NOR_defconfig │ │ ├── P1010RDB-PA_SDCARD_defconfig │ │ ├── P1010RDB-PA_SPIFLASH_SECBOOT_defconfig │ │ ├── P1010RDB-PA_SPIFLASH_defconfig │ │ ├── P1010RDB-PB_36BIT_NAND_SECBOOT_defconfig │ │ ├── P1010RDB-PB_36BIT_NAND_defconfig │ │ ├── P1010RDB-PB_36BIT_NOR_SECBOOT_defconfig │ │ ├── P1010RDB-PB_36BIT_NOR_defconfig │ │ ├── P1010RDB-PB_36BIT_SDCARD_defconfig │ │ ├── P1010RDB-PB_36BIT_SPIFLASH_SECBOOT_defconfig │ │ ├── P1010RDB-PB_36BIT_SPIFLASH_defconfig │ │ ├── P1010RDB-PB_NAND_SECBOOT_defconfig │ │ ├── P1010RDB-PB_NAND_defconfig │ │ ├── P1010RDB-PB_NOR_SECBOOT_defconfig │ │ ├── P1010RDB-PB_NOR_defconfig │ │ ├── P1010RDB-PB_SDCARD_defconfig │ │ ├── P1010RDB-PB_SPIFLASH_SECBOOT_defconfig │ │ ├── P1010RDB-PB_SPIFLASH_defconfig │ │ ├── P1020MBG-PC_36BIT_SDCARD_defconfig │ │ ├── P1020MBG-PC_36BIT_defconfig │ │ ├── P1020MBG-PC_SDCARD_defconfig │ │ ├── P1020MBG-PC_defconfig │ │ ├── P1020RDB-PC_36BIT_NAND_defconfig │ │ ├── P1020RDB-PC_36BIT_SDCARD_defconfig │ │ ├── P1020RDB-PC_36BIT_SPIFLASH_defconfig │ │ ├── P1020RDB-PC_36BIT_defconfig │ │ ├── P1020RDB-PC_NAND_defconfig │ │ ├── P1020RDB-PC_SDCARD_defconfig │ │ ├── P1020RDB-PC_SPIFLASH_defconfig │ │ ├── P1020RDB-PC_defconfig │ │ ├── P1020RDB-PD_NAND_defconfig │ │ ├── P1020RDB-PD_SDCARD_defconfig │ │ ├── P1020RDB-PD_SPIFLASH_defconfig │ │ ├── P1020RDB-PD_defconfig │ │ ├── P1020UTM-PC_36BIT_SDCARD_defconfig │ │ ├── P1020UTM-PC_36BIT_defconfig │ │ ├── P1020UTM-PC_SDCARD_defconfig │ │ ├── P1020UTM-PC_defconfig │ │ ├── P1021RDB-PC_36BIT_NAND_defconfig │ │ ├── P1021RDB-PC_36BIT_SDCARD_defconfig │ │ ├── P1021RDB-PC_36BIT_SPIFLASH_defconfig │ │ ├── P1021RDB-PC_36BIT_defconfig │ │ ├── P1021RDB-PC_NAND_defconfig │ │ ├── P1021RDB-PC_SDCARD_defconfig │ │ ├── P1021RDB-PC_SPIFLASH_defconfig │ │ ├── P1021RDB-PC_defconfig │ │ ├── P1022DS_36BIT_NAND_defconfig │ │ ├── P1022DS_36BIT_SDCARD_defconfig │ │ ├── P1022DS_36BIT_SPIFLASH_defconfig │ │ ├── P1022DS_36BIT_defconfig │ │ ├── P1022DS_NAND_defconfig │ │ ├── P1022DS_SDCARD_defconfig │ │ ├── P1022DS_SPIFLASH_defconfig │ │ ├── P1022DS_defconfig │ │ ├── P1023RDB_defconfig │ │ ├── P1024RDB_36BIT_defconfig │ │ ├── P1024RDB_NAND_defconfig │ │ ├── P1024RDB_SDCARD_defconfig │ │ ├── P1024RDB_SPIFLASH_defconfig │ │ ├── P1024RDB_defconfig │ │ ├── P1025RDB_36BIT_defconfig │ │ ├── P1025RDB_NAND_defconfig │ │ ├── P1025RDB_SDCARD_defconfig │ │ ├── P1025RDB_SPIFLASH_defconfig │ │ ├── P1025RDB_defconfig │ │ ├── P2020RDB-PC_36BIT_NAND_defconfig │ │ ├── P2020RDB-PC_36BIT_SDCARD_defconfig │ │ ├── P2020RDB-PC_36BIT_SPIFLASH_defconfig │ │ ├── P2020RDB-PC_36BIT_defconfig │ │ ├── P2020RDB-PC_NAND_defconfig │ │ ├── P2020RDB-PC_SDCARD_defconfig │ │ ├── P2020RDB-PC_SPIFLASH_defconfig │ │ ├── P2020RDB-PC_defconfig │ │ ├── P2041RDB_NAND_defconfig │ │ ├── P2041RDB_SDCARD_defconfig │ │ ├── P2041RDB_SECURE_BOOT_defconfig │ │ ├── P2041RDB_SPIFLASH_defconfig │ │ ├── P2041RDB_SRIO_PCIE_BOOT_defconfig │ │ ├── P2041RDB_defconfig │ │ ├── P3041DS_NAND_SECURE_BOOT_defconfig │ │ ├── P3041DS_NAND_defconfig │ │ ├── P3041DS_SDCARD_defconfig │ │ ├── P3041DS_SECURE_BOOT_defconfig │ │ ├── P3041DS_SPIFLASH_defconfig │ │ ├── P3041DS_SRIO_PCIE_BOOT_defconfig │ │ ├── P3041DS_defconfig │ │ ├── P4080DS_SDCARD_defconfig │ │ ├── P4080DS_SECURE_BOOT_defconfig │ │ ├── P4080DS_SPIFLASH_defconfig │ │ ├── P4080DS_SRIO_PCIE_BOOT_defconfig │ │ ├── P4080DS_defconfig │ │ ├── P5020DS_NAND_SECURE_BOOT_defconfig │ │ ├── P5020DS_NAND_defconfig │ │ ├── P5020DS_SDCARD_defconfig │ │ ├── P5020DS_SECURE_BOOT_defconfig │ │ ├── P5020DS_SPIFLASH_defconfig │ │ ├── P5020DS_SRIO_PCIE_BOOT_defconfig │ │ ├── P5020DS_defconfig │ │ ├── P5040DS_NAND_SECURE_BOOT_defconfig │ │ ├── P5040DS_NAND_defconfig │ │ ├── P5040DS_SDCARD_defconfig │ │ ├── P5040DS_SECURE_BOOT_defconfig │ │ ├── P5040DS_SPIFLASH_defconfig │ │ ├── P5040DS_defconfig │ │ ├── Sinlinx_SinA31s_defconfig │ │ ├── Sinlinx_SinA33_defconfig │ │ ├── Sinovoip_BPI_M2_Plus_defconfig │ │ ├── Sinovoip_BPI_M2_defconfig │ │ ├── Sinovoip_BPI_M3_defconfig │ │ ├── Sunchip_CX-A99_defconfig │ │ ├── T1023RDB_NAND_defconfig │ │ ├── T1023RDB_SDCARD_defconfig │ │ ├── T1023RDB_SECURE_BOOT_defconfig │ │ ├── T1023RDB_SPIFLASH_defconfig │ │ ├── T1023RDB_defconfig │ │ ├── T1024QDS_DDR4_SECURE_BOOT_defconfig │ │ ├── T1024QDS_DDR4_defconfig │ │ ├── T1024QDS_NAND_defconfig │ │ ├── T1024QDS_SDCARD_defconfig │ │ ├── T1024QDS_SECURE_BOOT_defconfig │ │ ├── T1024QDS_SPIFLASH_defconfig │ │ ├── T1024QDS_defconfig │ │ ├── T1024RDB_NAND_defconfig │ │ ├── T1024RDB_SDCARD_defconfig │ │ ├── T1024RDB_SECURE_BOOT_defconfig │ │ ├── T1024RDB_SPIFLASH_defconfig │ │ ├── T1024RDB_defconfig │ │ ├── T1040D4RDB_NAND_defconfig │ │ ├── T1040D4RDB_SDCARD_defconfig │ │ ├── T1040D4RDB_SECURE_BOOT_defconfig │ │ ├── T1040D4RDB_SPIFLASH_defconfig │ │ ├── T1040D4RDB_defconfig │ │ ├── T1040QDS_DDR4_defconfig │ │ ├── T1040QDS_SECURE_BOOT_defconfig │ │ ├── T1040QDS_defconfig │ │ ├── T1040RDB_NAND_defconfig │ │ ├── T1040RDB_SDCARD_defconfig │ │ ├── T1040RDB_SECURE_BOOT_defconfig │ │ ├── T1040RDB_SPIFLASH_defconfig │ │ ├── T1040RDB_defconfig │ │ ├── T1042D4RDB_NAND_defconfig │ │ ├── T1042D4RDB_SDCARD_defconfig │ │ ├── T1042D4RDB_SECURE_BOOT_defconfig │ │ ├── T1042D4RDB_SPIFLASH_defconfig │ │ ├── T1042D4RDB_defconfig │ │ ├── T1042RDB_PI_NAND_SECURE_BOOT_defconfig │ │ ├── T1042RDB_PI_NAND_defconfig │ │ ├── T1042RDB_PI_SDCARD_defconfig │ │ ├── T1042RDB_PI_SPIFLASH_defconfig │ │ ├── T1042RDB_PI_defconfig │ │ ├── T1042RDB_SECURE_BOOT_defconfig │ │ ├── T1042RDB_defconfig │ │ ├── T2080QDS_NAND_defconfig │ │ ├── T2080QDS_SDCARD_defconfig │ │ ├── T2080QDS_SECURE_BOOT_defconfig │ │ ├── T2080QDS_SPIFLASH_defconfig │ │ ├── T2080QDS_SRIO_PCIE_BOOT_defconfig │ │ ├── T2080QDS_defconfig │ │ ├── T2080RDB_NAND_defconfig │ │ ├── T2080RDB_SDCARD_defconfig │ │ ├── T2080RDB_SECURE_BOOT_defconfig │ │ ├── T2080RDB_SPIFLASH_defconfig │ │ ├── T2080RDB_SRIO_PCIE_BOOT_defconfig │ │ ├── T2080RDB_defconfig │ │ ├── T2081QDS_NAND_defconfig │ │ ├── T2081QDS_SDCARD_defconfig │ │ ├── T2081QDS_SPIFLASH_defconfig │ │ ├── T2081QDS_SRIO_PCIE_BOOT_defconfig │ │ ├── T2081QDS_defconfig │ │ ├── T4160QDS_NAND_defconfig │ │ ├── T4160QDS_SDCARD_defconfig │ │ ├── T4160QDS_SECURE_BOOT_defconfig │ │ ├── T4160QDS_defconfig │ │ ├── T4160RDB_defconfig │ │ ├── T4240QDS_NAND_defconfig │ │ ├── T4240QDS_SDCARD_defconfig │ │ ├── T4240QDS_SECURE_BOOT_defconfig │ │ ├── T4240QDS_SRIO_PCIE_BOOT_defconfig │ │ ├── T4240QDS_defconfig │ │ ├── T4240RDB_SDCARD_defconfig │ │ ├── T4240RDB_defconfig │ │ ├── TQM834x_defconfig │ │ ├── TWR-P1025_defconfig │ │ ├── UCP1020_SPIFLASH_defconfig │ │ ├── UCP1020_defconfig │ │ ├── UTOO_P66_defconfig │ │ ├── Wexler_TAB7200_defconfig │ │ ├── Wits_Pro_A20_DKT_defconfig │ │ ├── Wobo_i5_defconfig │ │ ├── Yones_Toptech_BD1078_defconfig │ │ ├── Yones_Toptech_BS1078_V2_defconfig │ │ ├── adp-ae3xx_defconfig │ │ ├── adp-ag101p_defconfig │ │ ├── alt_defconfig │ │ ├── am335x_baltos_defconfig │ │ ├── am335x_boneblack_defconfig │ │ ├── am335x_boneblack_vboot_defconfig │ │ ├── am335x_evm_defconfig │ │ ├── am335x_evm_nor_defconfig │ │ ├── am335x_evm_norboot_defconfig │ │ ├── am335x_evm_spiboot_defconfig │ │ ├── am335x_evm_usbspl_defconfig │ │ ├── am335x_hs_evm_defconfig │ │ ├── am335x_igep003x_defconfig │ │ ├── am335x_shc_defconfig │ │ ├── am335x_shc_ict_defconfig │ │ ├── am335x_shc_netboot_defconfig │ │ ├── am335x_shc_prompt_defconfig │ │ ├── am335x_shc_sdboot_defconfig │ │ ├── am335x_shc_sdboot_prompt_defconfig │ │ ├── am335x_sl50_defconfig │ │ ├── am3517_crane_defconfig │ │ ├── am3517_evm_defconfig │ │ ├── am43xx_evm_defconfig │ │ ├── am43xx_evm_ethboot_defconfig │ │ ├── am43xx_evm_qspiboot_defconfig │ │ ├── am43xx_evm_usbhost_boot_defconfig │ │ ├── am43xx_hs_evm_defconfig │ │ ├── am57xx_evm_defconfig │ │ ├── am57xx_evm_nodt_defconfig │ │ ├── am57xx_hs_evm_defconfig │ │ ├── amcore_defconfig │ │ ├── ap121_defconfig │ │ ├── ap143_defconfig │ │ ├── ap325rxa_defconfig │ │ ├── ap_sh4a_4a_defconfig │ │ ├── apalis-tk1_defconfig │ │ ├── apalis_imx6_defconfig │ │ ├── apalis_imx6_nospl_com_defconfig │ │ ├── apalis_imx6_nospl_it_defconfig │ │ ├── apalis_t30_defconfig │ │ ├── apf27_defconfig │ │ ├── apx4devkit_defconfig │ │ ├── aristainetos2_defconfig │ │ ├── aristainetos2b_defconfig │ │ ├── aristainetos_defconfig │ │ ├── armadillo-800eva_defconfig │ │ ├── arndale_defconfig │ │ ├── aspenite_defconfig │ │ ├── astro_mcf5373l_defconfig │ │ ├── at91rm9200ek_defconfig │ │ ├── at91rm9200ek_ram_defconfig │ │ ├── at91sam9260ek_dataflash_cs0_defconfig │ │ ├── at91sam9260ek_dataflash_cs1_defconfig │ │ ├── at91sam9260ek_nandflash_defconfig │ │ ├── at91sam9261ek_dataflash_cs0_defconfig │ │ ├── at91sam9261ek_dataflash_cs3_defconfig │ │ ├── at91sam9261ek_nandflash_defconfig │ │ ├── at91sam9263ek_dataflash_cs0_defconfig │ │ ├── at91sam9263ek_dataflash_defconfig │ │ ├── at91sam9263ek_nandflash_defconfig │ │ ├── at91sam9263ek_norflash_boot_defconfig │ │ ├── at91sam9263ek_norflash_defconfig │ │ ├── at91sam9g10ek_dataflash_cs0_defconfig │ │ ├── at91sam9g10ek_dataflash_cs3_defconfig │ │ ├── at91sam9g10ek_nandflash_defconfig │ │ ├── at91sam9g20ek_2mmc_defconfig │ │ ├── at91sam9g20ek_2mmc_nandflash_defconfig │ │ ├── at91sam9g20ek_dataflash_cs0_defconfig │ │ ├── at91sam9g20ek_dataflash_cs1_defconfig │ │ ├── at91sam9g20ek_nandflash_defconfig │ │ ├── at91sam9m10g45ek_mmc_defconfig │ │ ├── at91sam9m10g45ek_nandflash_defconfig │ │ ├── at91sam9n12ek_mmc_defconfig │ │ ├── at91sam9n12ek_nandflash_defconfig │ │ ├── at91sam9n12ek_spiflash_defconfig │ │ ├── at91sam9rlek_dataflash_defconfig │ │ ├── at91sam9rlek_mmc_defconfig │ │ ├── at91sam9rlek_nandflash_defconfig │ │ ├── at91sam9x5ek_dataflash_defconfig │ │ ├── at91sam9x5ek_mmc_defconfig │ │ ├── at91sam9x5ek_nandflash_defconfig │ │ ├── at91sam9x5ek_spiflash_defconfig │ │ ├── at91sam9xeek_dataflash_cs0_defconfig │ │ ├── at91sam9xeek_dataflash_cs1_defconfig │ │ ├── at91sam9xeek_nandflash_defconfig │ │ ├── axm_defconfig │ │ ├── axs101_defconfig │ │ ├── axs103_defconfig │ │ ├── ba10_tv_box_defconfig │ │ ├── bananapi_m64_defconfig │ │ ├── bayleybay_defconfig │ │ ├── bcm11130_defconfig │ │ ├── bcm11130_nand_defconfig │ │ ├── bcm23550_w1d_defconfig │ │ ├── bcm28155_ap_defconfig │ │ ├── bcm28155_w1d_defconfig │ │ ├── bcm911360_entphn-ns_defconfig │ │ ├── bcm911360_entphn_defconfig │ │ ├── bcm911360k_defconfig │ │ ├── bcm958300k-ns_defconfig │ │ ├── bcm958300k_defconfig │ │ ├── bcm958305k_defconfig │ │ ├── bcm958622hr_defconfig │ │ ├── bcm958712k_defconfig │ │ ├── beaver_defconfig │ │ ├── bg0900_defconfig │ │ ├── birdland_bav335a_defconfig │ │ ├── birdland_bav335b_defconfig │ │ ├── bk4r1_defconfig │ │ ├── blanche_defconfig │ │ ├── boston32r2_defconfig │ │ ├── boston32r2el_defconfig │ │ ├── boston64r2_defconfig │ │ ├── boston64r2el_defconfig │ │ ├── brppt1_mmc_defconfig │ │ ├── brppt1_nand_defconfig │ │ ├── brppt1_spi_defconfig │ │ ├── brxre1_defconfig │ │ ├── caddy2_defconfig │ │ ├── cairo_defconfig │ │ ├── calimain_defconfig │ │ ├── cardhu_defconfig │ │ ├── cei-tk1-som_defconfig │ │ ├── cgtqmx6eval_defconfig │ │ ├── chiliboard_defconfig │ │ ├── chromebit_mickey_defconfig │ │ ├── chromebook_jerry_defconfig │ │ ├── chromebook_link64_defconfig │ │ ├── chromebook_link_defconfig │ │ ├── chromebook_minnie_defconfig │ │ ├── chromebook_samus_defconfig │ │ ├── chromebox_panther_defconfig │ │ ├── cl-som-am57x_defconfig │ │ ├── clearfog_defconfig │ │ ├── cm_fx6_defconfig │ │ ├── cm_t335_defconfig │ │ ├── cm_t3517_defconfig │ │ ├── cm_t35_defconfig │ │ ├── cm_t43_defconfig │ │ ├── cm_t54_defconfig │ │ ├── cobra5272_defconfig │ │ ├── colibri_imx6_defconfig │ │ ├── colibri_imx6_nospl_defconfig │ │ ├── colibri_imx7_defconfig │ │ ├── colibri_pxa270_defconfig │ │ ├── colibri_t20_defconfig │ │ ├── colibri_t30_defconfig │ │ ├── colibri_vf_defconfig │ │ ├── colorfly_e708_q1_defconfig │ │ ├── comtrend_ar5387un_ram_defconfig │ │ ├── comtrend_ct5361_ram_defconfig │ │ ├── comtrend_vr3032u_ram_defconfig │ │ ├── conga-qeval20-qa3-e3845-internal-uart_defconfig │ │ ├── conga-qeval20-qa3-e3845_defconfig │ │ ├── controlcenterd_36BIT_SDCARD_DEVELOP_defconfig │ │ ├── controlcenterd_36BIT_SDCARD_defconfig │ │ ├── controlcenterd_TRAILBLAZER_DEVELOP_defconfig │ │ ├── controlcenterd_TRAILBLAZER_defconfig │ │ ├── controlcenterdc_defconfig │ │ ├── coreboot-x86_defconfig │ │ ├── corvus_defconfig │ │ ├── cougarcanyon2_defconfig │ │ ├── crownbay_defconfig │ │ ├── d2net_v2_defconfig │ │ ├── da850_am18xxevm_defconfig │ │ ├── da850evm_defconfig │ │ ├── da850evm_direct_nor_defconfig │ │ ├── dalmore_defconfig │ │ ├── db-88f6720_defconfig │ │ ├── db-88f6820-amc_defconfig │ │ ├── db-88f6820-gp_defconfig │ │ ├── db-mv784mp-gp_defconfig │ │ ├── dbau1000_defconfig │ │ ├── dbau1100_defconfig │ │ ├── dbau1500_defconfig │ │ ├── dbau1550_defconfig │ │ ├── dbau1550_el_defconfig │ │ ├── devkit3250_defconfig │ │ ├── devkit8000_defconfig │ │ ├── dfi-bt700-q7x-151_defconfig │ │ ├── difrnce_dit4350_defconfig │ │ ├── dms-ba16-1g_defconfig │ │ ├── dms-ba16_defconfig │ │ ├── dns325_defconfig │ │ ├── dockstar_defconfig │ │ ├── dra7xx_evm_defconfig │ │ ├── dra7xx_hs_evm_defconfig │ │ ├── draco_defconfig │ │ ├── dragonboard410c_defconfig │ │ ├── dreamplug_defconfig │ │ ├── ds109_defconfig │ │ ├── ds414_defconfig │ │ ├── dserve_dsrv9703c_defconfig │ │ ├── duovero_defconfig │ │ ├── e2220-1170_defconfig │ │ ├── ea20_defconfig │ │ ├── eb_cpu5282_defconfig │ │ ├── eb_cpu5282_internal_defconfig │ │ ├── eco5pk_defconfig │ │ ├── ecovec_defconfig │ │ ├── edb9315a_defconfig │ │ ├── edminiv2_defconfig │ │ ├── efi-x86_defconfig │ │ ├── espresso7420_defconfig │ │ ├── espt_defconfig │ │ ├── etamin_defconfig │ │ ├── ethernut5_defconfig │ │ ├── evb-ast2500_defconfig │ │ ├── evb-px5_defconfig │ │ ├── evb-rk3036_defconfig │ │ ├── evb-rk3288_defconfig │ │ ├── evb-rk3328_defconfig │ │ ├── evb-rk3399_defconfig │ │ ├── evb-rv1108_defconfig │ │ ├── fennec-rk3288_defconfig │ │ ├── firefly-rk3288_defconfig │ │ ├── firefly-rk3399_defconfig │ │ ├── flea3_defconfig │ │ ├── ga10h_v1_1_defconfig │ │ ├── galileo_defconfig │ │ ├── ge_b450v3_defconfig │ │ ├── ge_b650v3_defconfig │ │ ├── ge_b850v3_defconfig │ │ ├── geekbox_defconfig │ │ ├── goflexhome_defconfig │ │ ├── gose_defconfig │ │ ├── gplugd_defconfig │ │ ├── gt90h_v4_defconfig │ │ ├── gurnard_defconfig │ │ ├── guruplug_defconfig │ │ ├── gwventana_emmc_defconfig │ │ ├── gwventana_gw5904_defconfig │ │ ├── gwventana_nand_defconfig │ │ ├── h2200_defconfig │ │ ├── h8_homlet_v2_defconfig │ │ ├── harmony_defconfig │ │ ├── highbank_defconfig │ │ ├── hikey_defconfig │ │ ├── hrcon_defconfig │ │ ├── hrcon_dh_defconfig │ │ ├── hsdk_defconfig │ │ ├── huawei_hg556a_ram_defconfig │ │ ├── i12-tvbox_defconfig │ │ ├── iNet_3F_defconfig │ │ ├── iNet_3W_defconfig │ │ ├── iNet_86VS_defconfig │ │ ├── iNet_D978_rev2_defconfig │ │ ├── ib62x0_defconfig │ │ ├── icnova-a20-swac_defconfig │ │ ├── iconnect_defconfig │ │ ├── ids8313_defconfig │ │ ├── igep0020_defconfig │ │ ├── igep0030_defconfig │ │ ├── igep0032_defconfig │ │ ├── imgtec_xilfpga_defconfig │ │ ├── imx31_phycore_defconfig │ │ ├── imx31_phycore_eet_defconfig │ │ ├── imx6q_logic_defconfig │ │ ├── imx6qdl_icore_mmc_defconfig │ │ ├── imx6qdl_icore_nand_defconfig │ │ ├── imx6qdl_icore_rqs_mmc_defconfig │ │ ├── imx6ul_geam_mmc_defconfig │ │ ├── imx6ul_geam_nand_defconfig │ │ ├── imx6ul_isiot_emmc_defconfig │ │ ├── imx6ul_isiot_mmc_defconfig │ │ ├── imx6ul_isiot_nand_defconfig │ │ ├── inet1_defconfig │ │ ├── inet86dz_defconfig │ │ ├── inet97fv2_defconfig │ │ ├── inet98v_rev2_defconfig │ │ ├── inet9f_rev03_defconfig │ │ ├── inet_q972_defconfig │ │ ├── inetspace_v2_defconfig │ │ ├── integratorap_cm720t_defconfig │ │ ├── integratorap_cm920t_defconfig │ │ ├── integratorap_cm926ejs_defconfig │ │ ├── integratorap_cm946es_defconfig │ │ ├── integratorcp_cm1136_defconfig │ │ ├── integratorcp_cm920t_defconfig │ │ ├── integratorcp_cm926ejs_defconfig │ │ ├── integratorcp_cm946es_defconfig │ │ ├── ipam390_defconfig │ │ ├── jesurun_q5_defconfig │ │ ├── jetson-tk1_defconfig │ │ ├── k2e_evm_defconfig │ │ ├── k2e_hs_evm_defconfig │ │ ├── k2g_evm_defconfig │ │ ├── k2g_hs_evm_defconfig │ │ ├── k2hk_evm_defconfig │ │ ├── k2hk_hs_evm_defconfig │ │ ├── k2l_evm_defconfig │ │ ├── kc1_defconfig │ │ ├── km_kirkwood_128m16_defconfig │ │ ├── km_kirkwood_defconfig │ │ ├── km_kirkwood_pci_defconfig │ │ ├── kmcoge4_defconfig │ │ ├── kmcoge5ne_defconfig │ │ ├── kmcoge5un_defconfig │ │ ├── kmeter1_defconfig │ │ ├── kmlion1_defconfig │ │ ├── kmnusa_defconfig │ │ ├── kmopti2_defconfig │ │ ├── kmsugp1_defconfig │ │ ├── kmsupx5_defconfig │ │ ├── kmsuv31_defconfig │ │ ├── kmtegr1_defconfig │ │ ├── kmtepr2_defconfig │ │ ├── kmvect1_defconfig │ │ ├── koelsch_defconfig │ │ ├── kylin-rk3036_defconfig │ │ ├── kzm9g_defconfig │ │ ├── lager_defconfig │ │ ├── legoev3_defconfig │ │ ├── liteboard_defconfig │ │ ├── ls1012afrdm_qspi_defconfig │ │ ├── ls1012aqds_qspi_defconfig │ │ ├── ls1012ardb_qspi_SECURE_BOOT_defconfig │ │ ├── ls1012ardb_qspi_defconfig │ │ ├── ls1021aiot_qspi_defconfig │ │ ├── ls1021aiot_sdcard_defconfig │ │ ├── ls1021aqds_ddr4_nor_defconfig │ │ ├── ls1021aqds_ddr4_nor_lpuart_defconfig │ │ ├── ls1021aqds_nand_defconfig │ │ ├── ls1021aqds_nor_SECURE_BOOT_defconfig │ │ ├── ls1021aqds_nor_defconfig │ │ ├── ls1021aqds_nor_lpuart_defconfig │ │ ├── ls1021aqds_qspi_defconfig │ │ ├── ls1021aqds_sdcard_ifc_defconfig │ │ ├── ls1021aqds_sdcard_qspi_defconfig │ │ ├── ls1021atwr_nor_SECURE_BOOT_defconfig │ │ ├── ls1021atwr_nor_defconfig │ │ ├── ls1021atwr_nor_lpuart_defconfig │ │ ├── ls1021atwr_qspi_defconfig │ │ ├── ls1021atwr_sdcard_ifc_SECURE_BOOT_defconfig │ │ ├── ls1021atwr_sdcard_ifc_defconfig │ │ ├── ls1021atwr_sdcard_qspi_defconfig │ │ ├── ls1043aqds_defconfig │ │ ├── ls1043aqds_lpuart_defconfig │ │ ├── ls1043aqds_nand_defconfig │ │ ├── ls1043aqds_nor_ddr3_defconfig │ │ ├── ls1043aqds_qspi_defconfig │ │ ├── ls1043aqds_sdcard_ifc_defconfig │ │ ├── ls1043aqds_sdcard_qspi_defconfig │ │ ├── ls1043ardb_SECURE_BOOT_defconfig │ │ ├── ls1043ardb_defconfig │ │ ├── ls1043ardb_nand_SECURE_BOOT_defconfig │ │ ├── ls1043ardb_nand_defconfig │ │ ├── ls1043ardb_sdcard_SECURE_BOOT_defconfig │ │ ├── ls1043ardb_sdcard_defconfig │ │ ├── ls1046aqds_SECURE_BOOT_defconfig │ │ ├── ls1046aqds_defconfig │ │ ├── ls1046aqds_lpuart_defconfig │ │ ├── ls1046aqds_nand_defconfig │ │ ├── ls1046aqds_qspi_defconfig │ │ ├── ls1046aqds_sdcard_ifc_defconfig │ │ ├── ls1046aqds_sdcard_qspi_defconfig │ │ ├── ls1046ardb_emmc_defconfig │ │ ├── ls1046ardb_qspi_SECURE_BOOT_defconfig │ │ ├── ls1046ardb_qspi_defconfig │ │ ├── ls1046ardb_sdcard_SECURE_BOOT_defconfig │ │ ├── ls1046ardb_sdcard_defconfig │ │ ├── ls2080a_emu_defconfig │ │ ├── ls2080a_simu_defconfig │ │ ├── ls2080aqds_SECURE_BOOT_defconfig │ │ ├── ls2080aqds_defconfig │ │ ├── ls2080aqds_nand_defconfig │ │ ├── ls2080aqds_qspi_defconfig │ │ ├── ls2080aqds_sdcard_defconfig │ │ ├── ls2080ardb_SECURE_BOOT_defconfig │ │ ├── ls2080ardb_defconfig │ │ ├── ls2080ardb_nand_defconfig │ │ ├── ls2081ardb_defconfig │ │ ├── ls2088ardb_qspi_defconfig │ │ ├── lschlv2_defconfig │ │ ├── lsxhl_defconfig │ │ ├── m28evk_defconfig │ │ ├── m53evk_defconfig │ │ ├── ma5d4evk_defconfig │ │ ├── malta64_defconfig │ │ ├── malta64el_defconfig │ │ ├── malta_defconfig │ │ ├── maltael_defconfig │ │ ├── marsboard_defconfig │ │ ├── maxbcm_defconfig │ │ ├── mccmon6_nor_defconfig │ │ ├── mccmon6_sd_defconfig │ │ ├── mcx_defconfig │ │ ├── medcom-wide_defconfig │ │ ├── meesc_dataflash_defconfig │ │ ├── meesc_defconfig │ │ ├── mgcoge3un_defconfig │ │ ├── microblaze-generic_defconfig │ │ ├── minnowmax_defconfig │ │ ├── miqi-rk3288_defconfig │ │ ├── mixtile_loftq_defconfig │ │ ├── mk802_a10s_defconfig │ │ ├── mk802_defconfig │ │ ├── mk802ii_defconfig │ │ ├── mpc8308_p1m_defconfig │ │ ├── mpr2_defconfig │ │ ├── ms7720se_defconfig │ │ ├── ms7722se_defconfig │ │ ├── ms7750se_defconfig │ │ ├── mt_ventoux_defconfig │ │ ├── mvebu_db-88f3720_defconfig │ │ ├── mvebu_db-88f7040-nand_defconfig │ │ ├── mvebu_db-88f7040_defconfig │ │ ├── mvebu_db-88f8040_defconfig │ │ ├── mvebu_espressobin-88f3720_defconfig │ │ ├── mvebu_mcbin-88f8040_defconfig │ │ ├── mx23_olinuxino_defconfig │ │ ├── mx23evk_defconfig │ │ ├── mx25pdk_defconfig │ │ ├── mx28evk_auart_console_defconfig │ │ ├── mx28evk_defconfig │ │ ├── mx28evk_nand_defconfig │ │ ├── mx28evk_spi_defconfig │ │ ├── mx31ads_defconfig │ │ ├── mx31pdk_defconfig │ │ ├── mx35pdk_defconfig │ │ ├── mx51evk_defconfig │ │ ├── mx53ard_defconfig │ │ ├── mx53cx9020_defconfig │ │ ├── mx53evk_defconfig │ │ ├── mx53loco_defconfig │ │ ├── mx53smd_defconfig │ │ ├── mx6cuboxi_defconfig │ │ ├── mx6dlarm2_defconfig │ │ ├── mx6dlarm2_lpddr2_defconfig │ │ ├── mx6dlsabreauto_defconfig │ │ ├── mx6qarm2_defconfig │ │ ├── mx6qarm2_lpddr2_defconfig │ │ ├── mx6qpsabreauto_defconfig │ │ ├── mx6qsabreauto_defconfig │ │ ├── mx6qsabrelite_defconfig │ │ ├── mx6sabresd_defconfig │ │ ├── mx6slevk_defconfig │ │ ├── mx6slevk_spinor_defconfig │ │ ├── mx6slevk_spl_defconfig │ │ ├── mx6sllevk_defconfig │ │ ├── mx6sllevk_plugin_defconfig │ │ ├── mx6sxsabreauto_defconfig │ │ ├── mx6sxsabresd_defconfig │ │ ├── mx6sxsabresd_spl_defconfig │ │ ├── mx6ul_14x14_evk_defconfig │ │ ├── mx6ul_9x9_evk_defconfig │ │ ├── mx6ull_14x14_evk_defconfig │ │ ├── mx6ull_14x14_evk_plugin_defconfig │ │ ├── mx7dsabresd_defconfig │ │ ├── mx7dsabresd_secure_defconfig │ │ ├── mx7ulp_evk_defconfig │ │ ├── mx7ulp_evk_plugin_defconfig │ │ ├── nanopi_m1_defconfig │ │ ├── nanopi_m1_plus_defconfig │ │ ├── nanopi_neo2_defconfig │ │ ├── nanopi_neo_air_defconfig │ │ ├── nanopi_neo_defconfig │ │ ├── nas220_defconfig │ │ ├── net2big_v2_defconfig │ │ ├── netgear_cg3100d_ram_defconfig │ │ ├── netspace_lite_v2_defconfig │ │ ├── netspace_max_v2_defconfig │ │ ├── netspace_mini_v2_defconfig │ │ ├── netspace_v2_defconfig │ │ ├── nitrogen6dl2g_defconfig │ │ ├── nitrogen6dl_defconfig │ │ ├── nitrogen6q2g_defconfig │ │ ├── nitrogen6q_defconfig │ │ ├── nitrogen6s1g_defconfig │ │ ├── nitrogen6s_defconfig │ │ ├── nokia_rx51_defconfig │ │ ├── novena_defconfig │ │ ├── nsa310s_defconfig │ │ ├── nsim_700_defconfig │ │ ├── nsim_700be_defconfig │ │ ├── nsim_hs38_defconfig │ │ ├── nsim_hs38be_defconfig │ │ ├── nyan-big_defconfig │ │ ├── odroid-c2_defconfig │ │ ├── odroid-xu3_defconfig │ │ ├── odroid_defconfig │ │ ├── omap3_beagle_defconfig │ │ ├── omap3_evm_defconfig │ │ ├── omap3_ha_defconfig │ │ ├── omap3_logic_defconfig │ │ ├── omap3_overo_defconfig │ │ ├── omap3_pandora_defconfig │ │ ├── omap3_zoom1_defconfig │ │ ├── omap4_panda_defconfig │ │ ├── omap4_sdp4430_defconfig │ │ ├── omap5_uevm_defconfig │ │ ├── omapl138_lcdk_defconfig │ │ ├── openrd_base_defconfig │ │ ├── openrd_client_defconfig │ │ ├── openrd_ultimate_defconfig │ │ ├── opos6uldev_defconfig │ │ ├── orangepi_2_defconfig │ │ ├── orangepi_lite_defconfig │ │ ├── orangepi_one_defconfig │ │ ├── orangepi_pc2_defconfig │ │ ├── orangepi_pc_defconfig │ │ ├── orangepi_pc_plus_defconfig │ │ ├── orangepi_plus2e_defconfig │ │ ├── orangepi_plus_defconfig │ │ ├── orangepi_prime_defconfig │ │ ├── orangepi_win_defconfig │ │ ├── orangepi_zero_defconfig │ │ ├── orangepi_zero_plus2_defconfig │ │ ├── origen_defconfig │ │ ├── ot1200_defconfig │ │ ├── ot1200_spl_defconfig │ │ ├── p2371-0000_defconfig │ │ ├── p2371-2180_defconfig │ │ ├── p2571_defconfig │ │ ├── p2771-0000-000_defconfig │ │ ├── p2771-0000-500_defconfig │ │ ├── parrot_r16_defconfig │ │ ├── paz00_defconfig │ │ ├── pb1000_defconfig │ │ ├── pcm051_rev1_defconfig │ │ ├── pcm051_rev3_defconfig │ │ ├── pcm052_defconfig │ │ ├── pcm058_defconfig │ │ ├── peach-pi_defconfig │ │ ├── peach-pit_defconfig │ │ ├── pengwyn_defconfig │ │ ├── pepper_defconfig │ │ ├── pic32mzdask_defconfig │ │ ├── pico-imx6ul_defconfig │ │ ├── pico-imx7d_defconfig │ │ ├── picosam9g45_defconfig │ │ ├── pine64_plus_defconfig │ │ ├── platinum_picon_defconfig │ │ ├── platinum_titanium_defconfig │ │ ├── plutux_defconfig │ │ ├── pm9261_defconfig │ │ ├── pm9263_defconfig │ │ ├── pm9g45_defconfig │ │ ├── pogo_e02_defconfig │ │ ├── polaroid_mid2407pxe03_defconfig │ │ ├── polaroid_mid2809pxe04_defconfig │ │ ├── popmetal-rk3288_defconfig │ │ ├── porter_defconfig │ │ ├── portl2_defconfig │ │ ├── pov_protab2_ips9_defconfig │ │ ├── puma-rk3399_defconfig │ │ ├── pxm2_defconfig │ │ ├── q8_a13_tablet_defconfig │ │ ├── q8_a23_tablet_800x480_defconfig │ │ ├── q8_a33_tablet_1024x600_defconfig │ │ ├── q8_a33_tablet_800x480_defconfig │ │ ├── qemu-ppce500_defconfig │ │ ├── qemu-x86_64_defconfig │ │ ├── qemu-x86_defconfig │ │ ├── qemu-x86_efi_payload32_defconfig │ │ ├── qemu-x86_efi_payload64_defconfig │ │ ├── qemu_mips64_defconfig │ │ ├── qemu_mips64el_defconfig │ │ ├── qemu_mips_defconfig │ │ ├── qemu_mipsel_defconfig │ │ ├── r0p7734_defconfig │ │ ├── r2dplus_defconfig │ │ ├── r7-tv-dongle_defconfig │ │ ├── r7780mp_defconfig │ │ ├── r8a7795_salvator-x_defconfig │ │ ├── r8a7796_salvator-x_defconfig │ │ ├── rastaban_defconfig │ │ ├── riotboard_defconfig │ │ ├── rock2_defconfig │ │ ├── rock_defconfig │ │ ├── rpi_2_defconfig │ │ ├── rpi_3_32b_defconfig │ │ ├── rpi_3_defconfig │ │ ├── rpi_defconfig │ │ ├── rsk7203_defconfig │ │ ├── rsk7264_defconfig │ │ ├── rsk7269_defconfig │ │ ├── rut_defconfig │ │ ├── s32v234evb_defconfig │ │ ├── s5p_goni_defconfig │ │ ├── s5pc210_universal_defconfig │ │ ├── sagem_f@st1704_ram_defconfig │ │ ├── sama5d2_ptc_nandflash_defconfig │ │ ├── sama5d2_ptc_spiflash_defconfig │ │ ├── sama5d2_xplained_mmc_defconfig │ │ ├── sama5d2_xplained_spiflash_defconfig │ │ ├── sama5d36ek_cmp_mmc_defconfig │ │ ├── sama5d36ek_cmp_nandflash_defconfig │ │ ├── sama5d36ek_cmp_spiflash_defconfig │ │ ├── sama5d3_xplained_mmc_defconfig │ │ ├── sama5d3_xplained_nandflash_defconfig │ │ ├── sama5d3xek_mmc_defconfig │ │ ├── sama5d3xek_nandflash_defconfig │ │ ├── sama5d3xek_spiflash_defconfig │ │ ├── sama5d4_xplained_mmc_defconfig │ │ ├── sama5d4_xplained_nandflash_defconfig │ │ ├── sama5d4_xplained_spiflash_defconfig │ │ ├── sama5d4ek_mmc_defconfig │ │ ├── sama5d4ek_nandflash_defconfig │ │ ├── sama5d4ek_spiflash_defconfig │ │ ├── sandbox_defconfig │ │ ├── sandbox_flattree_defconfig │ │ ├── sandbox_noblk_defconfig │ │ ├── sandbox_spl_defconfig │ │ ├── sansa_fuze_plus_defconfig │ │ ├── sbc8349_PCI_33_defconfig │ │ ├── sbc8349_PCI_66_defconfig │ │ ├── sbc8349_defconfig │ │ ├── sbc8548_PCI_33_PCIE_defconfig │ │ ├── sbc8548_PCI_33_defconfig │ │ ├── sbc8548_PCI_66_PCIE_defconfig │ │ ├── sbc8548_PCI_66_defconfig │ │ ├── sbc8548_defconfig │ │ ├── sbc8641d_defconfig │ │ ├── sc_sps_1_defconfig │ │ ├── seaboard_defconfig │ │ ├── secomx6quq7_defconfig │ │ ├── sfr_nb4-ser_ram_defconfig │ │ ├── sh7752evb_defconfig │ │ ├── sh7753evb_defconfig │ │ ├── sh7757lcr_defconfig │ │ ├── sh7763rdp_defconfig │ │ ├── sh7785lcr_32bit_defconfig │ │ ├── sh7785lcr_defconfig │ │ ├── sheep-rk3368_defconfig │ │ ├── sheevaplug_defconfig │ │ ├── shmin_defconfig │ │ ├── silk_defconfig │ │ ├── smartweb_defconfig │ │ ├── smdk5250_defconfig │ │ ├── smdk5420_defconfig │ │ ├── smdkc100_defconfig │ │ ├── smdkv310_defconfig │ │ ├── snapper9260_defconfig │ │ ├── snapper9g20_defconfig │ │ ├── sniper_defconfig │ │ ├── snow_defconfig │ │ ├── socfpga_arria10_defconfig │ │ ├── socfpga_arria5_defconfig │ │ ├── socfpga_cyclone5_defconfig │ │ ├── socfpga_de0_nano_soc_defconfig │ │ ├── socfpga_de10_nano_defconfig │ │ ├── socfpga_de1_soc_defconfig │ │ ├── socfpga_is1_defconfig │ │ ├── socfpga_mcvevk_defconfig │ │ ├── socfpga_sockit_defconfig │ │ ├── socfpga_socrates_defconfig │ │ ├── socfpga_sr1500_defconfig │ │ ├── socfpga_vining_fpga_defconfig │ │ ├── socrates_defconfig │ │ ├── som-db5800-som-6867_defconfig │ │ ├── sopine_baseboard_defconfig │ │ ├── spear300_defconfig │ │ ├── spear300_nand_defconfig │ │ ├── spear300_usbtty_defconfig │ │ ├── spear300_usbtty_nand_defconfig │ │ ├── spear310_defconfig │ │ ├── spear310_nand_defconfig │ │ ├── spear310_pnor_defconfig │ │ ├── spear310_usbtty_defconfig │ │ ├── spear310_usbtty_nand_defconfig │ │ ├── spear310_usbtty_pnor_defconfig │ │ ├── spear320_defconfig │ │ ├── spear320_nand_defconfig │ │ ├── spear320_pnor_defconfig │ │ ├── spear320_usbtty_defconfig │ │ ├── spear320_usbtty_nand_defconfig │ │ ├── spear320_usbtty_pnor_defconfig │ │ ├── spear600_defconfig │ │ ├── spear600_nand_defconfig │ │ ├── spear600_usbtty_defconfig │ │ ├── spear600_usbtty_nand_defconfig │ │ ├── spring_defconfig │ │ ├── stih410-b2260_defconfig │ │ ├── stm32f429-discovery_defconfig │ │ ├── stm32f746-disco_defconfig │ │ ├── stout_defconfig │ │ ├── strider_con_defconfig │ │ ├── strider_con_dp_defconfig │ │ ├── strider_cpu_defconfig │ │ ├── strider_cpu_dp_defconfig │ │ ├── stv0991_defconfig │ │ ├── sun8i_a23_evb_defconfig │ │ ├── sunxi_Gemei_G9_defconfig │ │ ├── suvd3_defconfig │ │ ├── tao3530_defconfig │ │ ├── taurus_defconfig │ │ ├── tb100_defconfig │ │ ├── tbs2910_defconfig │ │ ├── tec-ng_defconfig │ │ ├── tec_defconfig │ │ ├── theadorable-x86-dfi-bt700_defconfig │ │ ├── theadorable_debug_defconfig │ │ ├── theadorable_defconfig │ │ ├── thuban_defconfig │ │ ├── thunderx_88xx_defconfig │ │ ├── ti814x_evm_defconfig │ │ ├── ti816x_evm_defconfig │ │ ├── tinker-rk3288_defconfig │ │ ├── titanium_defconfig │ │ ├── topic_miami_defconfig │ │ ├── topic_miamilite_defconfig │ │ ├── topic_miamiplus_defconfig │ │ ├── tplink_wdr4300_defconfig │ │ ├── tqma6dl_mba6_mmc_defconfig │ │ ├── tqma6dl_mba6_spi_defconfig │ │ ├── tqma6q_mba6_mmc_defconfig │ │ ├── tqma6q_mba6_spi_defconfig │ │ ├── tqma6s_mba6_mmc_defconfig │ │ ├── tqma6s_mba6_spi_defconfig │ │ ├── tqma6s_wru4_mmc_defconfig │ │ ├── trats2_defconfig │ │ ├── trats_defconfig │ │ ├── tricorder_defconfig │ │ ├── tricorder_flash_defconfig │ │ ├── trimslice_defconfig │ │ ├── ts4600_defconfig │ │ ├── ts4800_defconfig │ │ ├── tuge1_defconfig │ │ ├── tuxx1_defconfig │ │ ├── twister_defconfig │ │ ├── udoo_defconfig │ │ ├── udoo_neo_defconfig │ │ ├── uniphier_ld11_defconfig │ │ ├── uniphier_ld20_defconfig │ │ ├── uniphier_ld4_sld8_defconfig │ │ ├── uniphier_pro4_defconfig │ │ ├── uniphier_pxs2_ld6b_defconfig │ │ ├── uniphier_sld3_defconfig │ │ ├── uniphier_v8_defconfig │ │ ├── usb_a9263_dataflash_defconfig │ │ ├── usbarmory_defconfig │ │ ├── vct_platinum_defconfig │ │ ├── vct_platinum_onenand_defconfig │ │ ├── vct_platinum_onenand_small_defconfig │ │ ├── vct_platinum_small_defconfig │ │ ├── vct_platinumavc_defconfig │ │ ├── vct_platinumavc_onenand_defconfig │ │ ├── vct_platinumavc_onenand_small_defconfig │ │ ├── vct_platinumavc_small_defconfig │ │ ├── vct_premium_defconfig │ │ ├── vct_premium_onenand_defconfig │ │ ├── vct_premium_onenand_small_defconfig │ │ ├── vct_premium_small_defconfig │ │ ├── ve8313_defconfig │ │ ├── venice2_defconfig │ │ ├── ventana_defconfig │ │ ├── vexpress_aemv8a_dram_defconfig │ │ ├── vexpress_aemv8a_juno_defconfig │ │ ├── vexpress_aemv8a_semi_defconfig │ │ ├── vexpress_ca15_tc2_defconfig │ │ ├── vexpress_ca5x2_defconfig │ │ ├── vexpress_ca9x4_defconfig │ │ ├── vf610twr_defconfig │ │ ├── vf610twr_nand_defconfig │ │ ├── vinco_defconfig │ │ ├── vining_2000_defconfig │ │ ├── vme8349_defconfig │ │ ├── wandboard_defconfig │ │ ├── warp7_defconfig │ │ ├── warp7_secure_defconfig │ │ ├── warp_defconfig │ │ ├── woodburn_defconfig │ │ ├── woodburn_sd_defconfig │ │ ├── work_92105_defconfig │ │ ├── x600_defconfig │ │ ├── xfi3_defconfig │ │ ├── xilinx_zynqmp_ep_defconfig │ │ ├── xilinx_zynqmp_zc1751_xm015_dc1_defconfig │ │ ├── xilinx_zynqmp_zc1751_xm016_dc2_defconfig │ │ ├── xilinx_zynqmp_zc1751_xm018_dc4_defconfig │ │ ├── xilinx_zynqmp_zc1751_xm019_dc5_defconfig │ │ ├── xilinx_zynqmp_zcu102_defconfig │ │ ├── xilinx_zynqmp_zcu102_revB_defconfig │ │ ├── xpedite517x_defconfig │ │ ├── xpedite520x_defconfig │ │ ├── xpedite537x_defconfig │ │ ├── xpedite550x_defconfig │ │ ├── xpress_defconfig │ │ ├── xpress_spl_defconfig │ │ ├── xtfpga_defconfig │ │ ├── zc5202_defconfig │ │ ├── zc5601_defconfig │ │ ├── zipitz2_defconfig │ │ ├── zmx25_defconfig │ │ ├── zynq_microzed_defconfig │ │ ├── zynq_picozed_defconfig │ │ ├── zynq_zc702_defconfig │ │ ├── zynq_zc706_defconfig │ │ ├── zynq_zc770_xm010_defconfig │ │ ├── zynq_zc770_xm011_defconfig │ │ ├── zynq_zc770_xm012_defconfig │ │ ├── zynq_zc770_xm013_defconfig │ │ ├── zynq_zed_defconfig │ │ └── zynq_zybo_defconfig │ ├── disk │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── part.c │ │ ├── part_amiga.c │ │ ├── part_amiga.h │ │ ├── part_dos.c │ │ ├── part_dos.h │ │ ├── part_efi.c │ │ ├── part_iso.c │ │ ├── part_iso.h │ │ ├── part_mac.c │ │ └── part_mac.h │ ├── doc │ │ ├── DocBook │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── docbook.css │ │ │ ├── linker_lists.tmpl │ │ │ ├── stdio.tmpl │ │ │ └── stylesheet.xsl │ │ ├── I2C_Edge_Conditions │ │ ├── README.440-DDR-performance │ │ ├── README.AMCC-eval-boards-cleanup │ │ ├── README.ARC │ │ ├── README.ARM-memory-map │ │ ├── README.Heterogeneous-SoCs │ │ ├── README.JFFS2 │ │ ├── README.JFFS2_NAND │ │ ├── README.LED │ │ ├── README.LED_display │ │ ├── README.N1213 │ │ ├── README.NDS32 │ │ ├── README.NetConsole │ │ ├── README.OFT │ │ ├── README.POST │ │ ├── README.SNTP │ │ ├── README.SPL │ │ ├── README.TPL │ │ ├── README.VLAN │ │ ├── README.VSC3316-3308 │ │ ├── README.ag101p │ │ ├── README.android-fastboot │ │ ├── README.android-fastboot-protocol │ │ ├── README.arm-caches │ │ ├── README.arm-relocation │ │ ├── README.arm64 │ │ ├── README.armada-secureboot │ │ ├── README.at91 │ │ ├── README.atmel_mci │ │ ├── README.atmel_pmecc │ │ ├── README.autoboot │ │ ├── README.b4860qds │ │ ├── README.bedbug │ │ ├── README.bitbangMII │ │ ├── README.blackfin │ │ ├── README.bootmenu │ │ ├── README.boston │ │ ├── README.bus_vcxk │ │ ├── README.cfi │ │ ├── README.chromium │ │ ├── README.clang │ │ ├── README.commands │ │ ├── README.commands.itest │ │ ├── README.commands.spl │ │ ├── README.console │ │ ├── README.davinci │ │ ├── README.davinci.nand_spl │ │ ├── README.dfutftp │ │ ├── README.displaying-bmps │ │ ├── README.distro │ │ ├── README.dns │ │ ├── README.drivers.eth │ │ ├── README.efi │ │ ├── README.enetaddr │ │ ├── README.esbc_validate │ │ ├── README.ext4 │ │ ├── README.falcon │ │ ├── README.fdt-control │ │ ├── README.fec_mxc │ │ ├── README.fsl-clk │ │ ├── README.fsl-ddr │ │ ├── README.fsl-dpaa │ │ ├── README.fsl-esdhc │ │ ├── README.fsl-hwconfig │ │ ├── README.fsl-trustzone-components │ │ ├── README.fsl_iim │ │ ├── README.fuse │ │ ├── README.generic-board │ │ ├── README.generic_usb_ohci │ │ ├── README.gpt │ │ ├── README.hwconfig │ │ ├── README.i2c │ │ ├── README.imx25 │ │ ├── README.imx27 │ │ ├── README.imx5 │ │ ├── README.imx6 │ │ ├── README.imximage │ │ ├── README.iomux │ │ ├── README.kconfig │ │ ├── README.kwbimage │ │ ├── README.link-local │ │ ├── README.lynxkdi │ │ ├── README.m54418twr │ │ ├── README.m68k │ │ ├── README.malta │ │ ├── README.marubun-pcmcia │ │ ├── README.memory-test │ │ ├── README.menu │ │ ├── README.mips │ │ ├── README.mpc74xx │ │ ├── README.mpc83xx.ddrecc │ │ ├── README.mpc83xxads │ │ ├── README.mpc85xx │ │ ├── README.mpc85xx-sd-spi-boot │ │ ├── README.mpc85xx-spin-table │ │ ├── README.mpc85xxcds │ │ ├── README.mxc_hab │ │ ├── README.mxc_ocotp │ │ ├── README.mxs │ │ ├── README.mxsimage │ │ ├── README.nand │ │ ├── README.nand-boot-ppc440 │ │ ├── README.ne2000 │ │ ├── README.nios2 │ │ ├── README.nokia_rx51 │ │ ├── README.odroid │ │ ├── README.omap-ulpi-viewport │ │ ├── README.omap3 │ │ ├── README.pblimage │ │ ├── README.plan9 │ │ ├── README.power-framework │ │ ├── README.pxe │ │ ├── README.qemu-mips │ │ ├── README.ramboot-ppc85xx │ │ ├── README.rmobile │ │ ├── README.rockchip │ │ ├── README.s5pc1xx │ │ ├── README.sata │ │ ├── README.sched │ │ ├── README.scrapyard │ │ ├── README.semihosting │ │ ├── README.serial_multi │ │ ├── README.sh │ │ ├── README.sh7752evb │ │ ├── README.sh7753evb │ │ ├── README.sha1 │ │ ├── README.silent │ │ ├── README.socfpga │ │ ├── README.spear │ │ ├── README.splashprepare │ │ ├── README.srio-pcie-boot-corenet │ │ ├── README.standalone │ │ ├── README.t1040-l2switch │ │ ├── README.ti-secure │ │ ├── README.trace │ │ ├── README.ubi │ │ ├── README.ubispl │ │ ├── README.ublimage │ │ ├── README.unaligned-memory-access.txt │ │ ├── README.uniphier │ │ ├── README.update │ │ ├── README.usb │ │ ├── README.vf610 │ │ ├── README.video │ │ ├── README.vxworks │ │ ├── README.watchdog │ │ ├── README.x86 │ │ ├── README.xtensa │ │ ├── README.zfs │ │ ├── README.zynq │ │ ├── SPI │ │ │ ├── README.altera_spi │ │ │ ├── README.dual-flash │ │ │ ├── README.ftssp010_spi_test │ │ │ ├── README.sandbox-spi │ │ │ ├── README.sh_qspi_test │ │ │ ├── README.ti_qspi_am43x_test │ │ │ ├── README.ti_qspi_dra_test │ │ │ ├── README.ti_qspi_flash │ │ │ └── status.txt │ │ ├── SPL │ │ │ ├── README.am335x-network │ │ │ ├── README.omap3 │ │ │ └── README.spl-secure-boot │ │ ├── chromium │ │ │ ├── chromebook_jerry.its │ │ │ ├── devkeys │ │ │ │ ├── kernel.keyblock │ │ │ │ └── kernel_data_key.vbprivk │ │ │ └── nyan-big.its │ │ ├── device-tree-bindings │ │ │ ├── README │ │ │ ├── adc │ │ │ │ └── adc.txt │ │ │ ├── ata │ │ │ │ └── intel-sata.txt │ │ │ ├── chosen.txt │ │ │ ├── clock │ │ │ │ ├── microchip,pic32-clock.txt │ │ │ │ ├── nvidia,tegra20-car.txt │ │ │ │ ├── rockchip,rk3188-cru.txt │ │ │ │ ├── rockchip,rk3288-cru.txt │ │ │ │ ├── rockchip,rk3288-dmc.txt │ │ │ │ ├── rockchip,rk3399-dmc.txt │ │ │ │ ├── rockchip.txt │ │ │ │ └── st,stm32-rcc.txt │ │ │ ├── config.txt │ │ │ ├── cpu │ │ │ │ └── nios2.txt │ │ │ ├── exynos │ │ │ │ ├── dwmmc.txt │ │ │ │ ├── emmc-reset.txt │ │ │ │ ├── isp-spi.txt │ │ │ │ ├── soc.txt │ │ │ │ ├── sound.txt │ │ │ │ └── tmu.txt │ │ │ ├── firmware │ │ │ │ └── nvidia,tegra186-bpmp.txt │ │ │ ├── gpio │ │ │ │ ├── altera_pio.txt │ │ │ │ ├── bcm2835-gpio.txt │ │ │ │ ├── gpio-msm.txt │ │ │ │ ├── gpio-pcf857x.txt │ │ │ │ ├── gpio-samsung.txt │ │ │ │ ├── gpio.txt │ │ │ │ ├── intel,x86-broadwell-pinctrl.txt │ │ │ │ ├── intel,x86-pinctrl.txt │ │ │ │ ├── nvidia,tegra186-gpio.txt │ │ │ │ ├── nvidia,tegra20-gpio.txt │ │ │ │ └── pm8916_gpio.txt │ │ │ ├── gpu │ │ │ │ └── nvidia,tegra20-host1x.txt │ │ │ ├── i2c │ │ │ │ ├── i2c-at91.txt │ │ │ │ ├── i2c-cdns.txt │ │ │ │ ├── i2c-gpio.txt │ │ │ │ ├── i2c-mux.txt │ │ │ │ ├── i2c.txt │ │ │ │ ├── nvidia,tegra186-bpmp-i2c.txt │ │ │ │ └── tegra20-i2c.txt │ │ │ ├── input │ │ │ │ ├── cros-ec-keyb.txt │ │ │ │ └── i8042.txt │ │ │ ├── leds │ │ │ │ ├── common.txt │ │ │ │ ├── leds-bcm6328.txt │ │ │ │ ├── leds-bcm6358.txt │ │ │ │ └── leds-gpio.txt │ │ │ ├── mailbox │ │ │ │ ├── mailbox.txt │ │ │ │ └── nvidia,tegra186-hsp.txt │ │ │ ├── misc │ │ │ │ ├── altera_sysid.txt │ │ │ │ ├── cros-ec.txt │ │ │ │ ├── intel,baytrail-fsp.txt │ │ │ │ ├── intel,irq-router.txt │ │ │ │ └── intel-lpc.txt │ │ │ ├── mmc │ │ │ │ └── msm_sdhci.txt │ │ │ ├── mtd │ │ │ │ ├── altera_qspi.txt │ │ │ │ ├── mtd-physmap.txt │ │ │ │ └── spi │ │ │ │ │ └── spi-flash.txt │ │ │ ├── nand │ │ │ │ └── nvidia,tegra20-nand.txt │ │ │ ├── net │ │ │ │ ├── allwinner,sun4i-emac.txt │ │ │ │ ├── allwinner,sun4i-mdio.txt │ │ │ │ ├── allwinner,sun7i-a20-gmac.txt │ │ │ │ ├── altera_tse.txt │ │ │ │ ├── ethernet.txt │ │ │ │ ├── fixed-link.txt │ │ │ │ ├── fsl-tsec-phy.txt │ │ │ │ ├── micrel-ksz90x1.txt │ │ │ │ ├── snps,dwc-qos-ethernet.txt │ │ │ │ ├── stmmac.txt │ │ │ │ └── ti,dp83867.txt │ │ │ ├── pci │ │ │ │ └── armada8k-pcie.txt │ │ │ ├── pinctrl │ │ │ │ ├── atmel,at91-pio4-pinctrl.txt │ │ │ │ ├── marvell,armada-apn806-pinctrl.txt │ │ │ │ ├── marvell,armada-cp110-pinctrl.txt │ │ │ │ ├── marvell,mvebu-pinctrl.txt │ │ │ │ ├── pinctrl-bindings.txt │ │ │ │ ├── rockchip,pinctrl.txt │ │ │ │ └── st,stm32-pinctrl.txt │ │ │ ├── pmic │ │ │ │ ├── max77686.txt │ │ │ │ ├── pm8916.txt │ │ │ │ ├── rn5t567.txt │ │ │ │ ├── s2mps11.txt │ │ │ │ └── sandbox.txt │ │ │ ├── power │ │ │ │ └── tps65090.txt │ │ │ ├── pwm │ │ │ │ ├── pwm.txt │ │ │ │ └── tegra20-pwm.txt │ │ │ ├── ram │ │ │ │ └── st,stm32-fmc.txt │ │ │ ├── regulator │ │ │ │ ├── fixed.txt │ │ │ │ ├── max77686.txt │ │ │ │ ├── regulator.txt │ │ │ │ ├── sandbox.txt │ │ │ │ └── tps65090.txt │ │ │ ├── remoteproc │ │ │ │ └── remoteproc.txt │ │ │ ├── reset │ │ │ │ └── reset.txt │ │ │ ├── root.txt │ │ │ ├── serial │ │ │ │ ├── 8250.txt │ │ │ │ ├── altera_jtaguart.txt │ │ │ │ ├── altera_uart.txt │ │ │ │ ├── bcm2835-aux-uart.txt │ │ │ │ ├── microchip,pic32-uart.txt │ │ │ │ ├── msm-serial.txt │ │ │ │ ├── mxc-serial.txt │ │ │ │ ├── omap_serial.txt │ │ │ │ ├── pl01x.txt │ │ │ │ ├── qca,ar9330-uart.txt │ │ │ │ ├── sandbox-serial.txt │ │ │ │ ├── sh.txt │ │ │ │ ├── snps-dw-apb-uart.txt │ │ │ │ └── xilinx_uartlite.txt │ │ │ ├── spi │ │ │ │ ├── soft-spi.txt │ │ │ │ ├── spi-ath79.txt │ │ │ │ ├── spi-bus.txt │ │ │ │ ├── spi-cadence.txt │ │ │ │ ├── spi-stm32-qspi.txt │ │ │ │ ├── spi-zynq-qspi.txt │ │ │ │ ├── spi-zynq.txt │ │ │ │ └── spi_altera.txt │ │ │ ├── spmi │ │ │ │ ├── spmi-msm.txt │ │ │ │ └── spmi-sandbox.txt │ │ │ ├── thermal │ │ │ │ └── rockchip-thermal.txt │ │ │ ├── timer │ │ │ │ ├── altera_timer.txt │ │ │ │ ├── arc_timer.txt │ │ │ │ └── sandbox_timer.txt │ │ │ ├── usb │ │ │ │ ├── ehci-msm.txt │ │ │ │ ├── marvell.xhci-usb.txt │ │ │ │ └── tegra-usb.txt │ │ │ └── video │ │ │ │ ├── atmel-hlcdc.txt │ │ │ │ ├── bridge │ │ │ │ └── ps8622.txt │ │ │ │ ├── display-timing.txt │ │ │ │ ├── displaymode.txt │ │ │ │ ├── exynos-dp.txt │ │ │ │ ├── exynos-fb.txt │ │ │ │ ├── exynos_mipi_dsi.txt │ │ │ │ ├── intel-gma.txt │ │ │ │ ├── rockchip-lvds.txt │ │ │ │ ├── sandbox-fb.txt │ │ │ │ ├── simple-framebuffer.txt │ │ │ │ └── tegra20-dc.txt │ │ ├── driver-model │ │ │ ├── README.txt │ │ │ ├── fdt-fixup.txt │ │ │ ├── i2c-howto.txt │ │ │ ├── of-plat.txt │ │ │ ├── pci-info.txt │ │ │ ├── pmic-framework.txt │ │ │ ├── remoteproc-framework.txt │ │ │ ├── serial-howto.txt │ │ │ ├── spi-howto.txt │ │ │ └── usb-info.txt │ │ ├── feature-removal-schedule.txt │ │ ├── git-mailrc │ │ ├── mvebu │ │ │ ├── armada-8k-memory.txt │ │ │ └── cmd │ │ │ │ └── bubt.txt │ │ └── uImage.FIT │ │ │ ├── beaglebone_vboot.txt │ │ │ ├── command_syntax_extensions.txt │ │ │ ├── howto.txt │ │ │ ├── kernel.its │ │ │ ├── kernel_fdt.its │ │ │ ├── multi-with-fpga.its │ │ │ ├── multi-with-loadables.its │ │ │ ├── multi.its │ │ │ ├── multi_spl.its │ │ │ ├── sign-configs.its │ │ │ ├── sign-images.its │ │ │ ├── signature.txt │ │ │ ├── source_file_format.txt │ │ │ ├── update3.its │ │ │ ├── update_uboot.its │ │ │ ├── verified-boot.txt │ │ │ └── x86-fit-boot.txt │ ├── drivers │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── adc │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── adc-uclass.c │ │ │ ├── exynos-adc.c │ │ │ └── sandbox.c │ │ ├── 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_ops.h │ │ │ │ │ ├── regs.h │ │ │ │ │ └── x86emui.h │ │ │ └── x86emu │ │ │ │ ├── debug.c │ │ │ │ ├── decode.c │ │ │ │ ├── ops.c │ │ │ │ ├── ops2.c │ │ │ │ ├── prim_ops.c │ │ │ │ └── sys.c │ │ ├── block │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── ahci-uclass.c │ │ │ ├── ahci.c │ │ │ ├── blk-uclass.c │ │ │ ├── blk_legacy.c │ │ │ ├── blkcache.c │ │ │ ├── dwc_ahci.c │ │ │ ├── dwc_ahsata.c │ │ │ ├── dwc_ahsata.h │ │ │ ├── fsl_sata.c │ │ │ ├── fsl_sata.h │ │ │ ├── ftide020.c │ │ │ ├── ftide020.h │ │ │ ├── ide.c │ │ │ ├── libata.c │ │ │ ├── mvsata_ide.c │ │ │ ├── mxc_ata.c │ │ │ ├── sandbox.c │ │ │ ├── sandbox_scsi.c │ │ │ ├── sata_ceva.c │ │ │ ├── sata_dwc.c │ │ │ ├── sata_dwc.h │ │ │ ├── sata_mv.c │ │ │ ├── sata_sandbox.c │ │ │ ├── sata_sil.c │ │ │ ├── sata_sil.h │ │ │ ├── sata_sil3114.c │ │ │ ├── sata_sil3114.h │ │ │ ├── scsi-uclass.c │ │ │ ├── sym53c8xx.c │ │ │ └── systemace.c │ │ ├── bootcount │ │ │ ├── Makefile │ │ │ ├── bootcount.c │ │ │ ├── bootcount_at91.c │ │ │ ├── bootcount_davinci.c │ │ │ ├── bootcount_env.c │ │ │ ├── bootcount_i2c.c │ │ │ └── bootcount_ram.c │ │ ├── clk │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── aspeed │ │ │ │ ├── Makefile │ │ │ │ └── clk_ast2500.c │ │ │ ├── at91 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── clk-generated.c │ │ │ │ ├── clk-h32mx.c │ │ │ │ ├── clk-main.c │ │ │ │ ├── clk-master.c │ │ │ │ ├── clk-peripheral.c │ │ │ │ ├── clk-plla.c │ │ │ │ ├── clk-slow.c │ │ │ │ ├── clk-system.c │ │ │ │ ├── clk-utmi.c │ │ │ │ ├── pmc.c │ │ │ │ ├── pmc.h │ │ │ │ └── sckc.c │ │ │ ├── clk-uclass.c │ │ │ ├── clk_bcm6345.c │ │ │ ├── clk_boston.c │ │ │ ├── clk_fixed_rate.c │ │ │ ├── clk_pic32.c │ │ │ ├── clk_sandbox.c │ │ │ ├── clk_sandbox_test.c │ │ │ ├── clk_stm32f7.c │ │ │ ├── clk_zynq.c │ │ │ ├── clk_zynqmp.c │ │ │ ├── exynos │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── clk-exynos7420.c │ │ │ │ ├── clk-pll.c │ │ │ │ └── clk-pll.h │ │ │ ├── rockchip │ │ │ │ ├── Makefile │ │ │ │ ├── clk_rk3036.c │ │ │ │ ├── clk_rk3188.c │ │ │ │ ├── clk_rk3288.c │ │ │ │ ├── clk_rk3328.c │ │ │ │ ├── clk_rk3368.c │ │ │ │ ├── clk_rk3399.c │ │ │ │ └── clk_rv1108.c │ │ │ ├── tegra │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── tegra-car-clk.c │ │ │ │ └── tegra186-clk.c │ │ │ └── uniphier │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── clk-uniphier-core.c │ │ │ │ ├── clk-uniphier-mio.c │ │ │ │ └── clk-uniphier.h │ │ ├── core │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── device-remove.c │ │ │ ├── device.c │ │ │ ├── devres.c │ │ │ ├── dump.c │ │ │ ├── fdtaddr.c │ │ │ ├── lists.c │ │ │ ├── of_access.c │ │ │ ├── of_addr.c │ │ │ ├── of_extra.c │ │ │ ├── ofnode.c │ │ │ ├── read.c │ │ │ ├── regmap.c │ │ │ ├── root.c │ │ │ ├── simple-bus.c │ │ │ ├── syscon-uclass.c │ │ │ ├── uclass.c │ │ │ └── util.c │ │ ├── cpu │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── bmips_cpu.c │ │ │ └── cpu-uclass.c │ │ ├── crypto │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── ace_sha.c │ │ │ ├── ace_sha.h │ │ │ ├── fsl │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── desc.h │ │ │ │ ├── desc_constr.h │ │ │ │ ├── error.c │ │ │ │ ├── fsl_blob.c │ │ │ │ ├── fsl_hash.c │ │ │ │ ├── fsl_hash.h │ │ │ │ ├── fsl_rsa.c │ │ │ │ ├── jobdesc.c │ │ │ │ ├── jobdesc.h │ │ │ │ ├── jr.c │ │ │ │ ├── jr.h │ │ │ │ ├── rsa_caam.h │ │ │ │ └── sec.c │ │ │ └── rsa_mod_exp │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── mod_exp_sw.c │ │ │ │ └── mod_exp_uclass.c │ │ ├── ddr │ │ │ ├── Kconfig │ │ │ ├── altera │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── sdram.c │ │ │ │ ├── sequencer.c │ │ │ │ └── sequencer.h │ │ │ ├── fsl │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── arm_ddr_gen3.c │ │ │ │ ├── ctrl_regs.c │ │ │ │ ├── ddr1_dimm_params.c │ │ │ │ ├── ddr2_dimm_params.c │ │ │ │ ├── ddr3_dimm_params.c │ │ │ │ ├── ddr4_dimm_params.c │ │ │ │ ├── fsl_ddr_gen4.c │ │ │ │ ├── fsl_mmdc.c │ │ │ │ ├── interactive.c │ │ │ │ ├── lc_common_dimm_params.c │ │ │ │ ├── main.c │ │ │ │ ├── mpc85xx_ddr_gen1.c │ │ │ │ ├── mpc85xx_ddr_gen2.c │ │ │ │ ├── mpc85xx_ddr_gen3.c │ │ │ │ ├── mpc86xx_ddr.c │ │ │ │ ├── options.c │ │ │ │ └── util.c │ │ │ ├── marvell │ │ │ │ ├── a38x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr3_a38x.c │ │ │ │ │ ├── ddr3_a38x.h │ │ │ │ │ ├── ddr3_a38x_mc_static.h │ │ │ │ │ ├── ddr3_a38x_topology.h │ │ │ │ │ ├── ddr3_a38x_training.c │ │ │ │ │ ├── ddr3_debug.c │ │ │ │ │ ├── ddr3_hws_hw_training.c │ │ │ │ │ ├── ddr3_hws_hw_training.h │ │ │ │ │ ├── ddr3_hws_hw_training_def.h │ │ │ │ │ ├── ddr3_hws_sil_training.h │ │ │ │ │ ├── ddr3_init.c │ │ │ │ │ ├── ddr3_init.h │ │ │ │ │ ├── ddr3_logging_def.h │ │ │ │ │ ├── ddr3_patterns_64bit.h │ │ │ │ │ ├── ddr3_topology_def.h │ │ │ │ │ ├── ddr3_training.c │ │ │ │ │ ├── ddr3_training_bist.c │ │ │ │ │ ├── ddr3_training_centralization.c │ │ │ │ │ ├── ddr3_training_db.c │ │ │ │ │ ├── ddr3_training_hw_algo.c │ │ │ │ │ ├── ddr3_training_hw_algo.h │ │ │ │ │ ├── ddr3_training_ip.h │ │ │ │ │ ├── ddr3_training_ip_bist.h │ │ │ │ │ ├── ddr3_training_ip_centralization.h │ │ │ │ │ ├── ddr3_training_ip_db.h │ │ │ │ │ ├── ddr3_training_ip_def.h │ │ │ │ │ ├── ddr3_training_ip_engine.c │ │ │ │ │ ├── ddr3_training_ip_engine.h │ │ │ │ │ ├── ddr3_training_ip_flow.h │ │ │ │ │ ├── ddr3_training_ip_pbs.h │ │ │ │ │ ├── ddr3_training_ip_prv_if.h │ │ │ │ │ ├── ddr3_training_ip_static.h │ │ │ │ │ ├── ddr3_training_leveling.c │ │ │ │ │ ├── ddr3_training_leveling.h │ │ │ │ │ ├── ddr3_training_pbs.c │ │ │ │ │ ├── ddr3_training_static.c │ │ │ │ │ ├── ddr_topology_def.h │ │ │ │ │ ├── ddr_training_ip_db.h │ │ │ │ │ ├── silicon_if.h │ │ │ │ │ ├── xor.c │ │ │ │ │ ├── xor.h │ │ │ │ │ └── xor_regs.h │ │ │ │ └── axp │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr3_axp.h │ │ │ │ │ ├── ddr3_axp_config.h │ │ │ │ │ ├── ddr3_axp_mc_static.h │ │ │ │ │ ├── ddr3_axp_training_static.h │ │ │ │ │ ├── ddr3_axp_vars.h │ │ │ │ │ ├── ddr3_dfs.c │ │ │ │ │ ├── ddr3_dqs.c │ │ │ │ │ ├── ddr3_hw_training.c │ │ │ │ │ ├── ddr3_hw_training.h │ │ │ │ │ ├── ddr3_init.c │ │ │ │ │ ├── ddr3_init.h │ │ │ │ │ ├── ddr3_patterns_64bit.h │ │ │ │ │ ├── ddr3_pbs.c │ │ │ │ │ ├── ddr3_read_leveling.c │ │ │ │ │ ├── ddr3_sdram.c │ │ │ │ │ ├── ddr3_spd.c │ │ │ │ │ ├── ddr3_write_leveling.c │ │ │ │ │ ├── xor.c │ │ │ │ │ ├── xor.h │ │ │ │ │ └── xor_regs.h │ │ │ └── microchip │ │ │ │ ├── Makefile │ │ │ │ ├── ddr2.c │ │ │ │ ├── ddr2_regs.h │ │ │ │ └── ddr2_timing.h │ │ ├── demo │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── demo-pdata.c │ │ │ ├── demo-shape.c │ │ │ ├── demo-simple.c │ │ │ └── demo-uclass.c │ │ ├── dfu │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── dfu.c │ │ │ ├── dfu_mmc.c │ │ │ ├── dfu_nand.c │ │ │ ├── dfu_ram.c │ │ │ ├── dfu_sf.c │ │ │ └── dfu_tftp.c │ │ ├── dma │ │ │ ├── Kconfig │ │ │ ├── MCD_dmaApi.c │ │ │ ├── MCD_tasks.c │ │ │ ├── MCD_tasksInit.c │ │ │ ├── Makefile │ │ │ ├── apbh_dma.c │ │ │ ├── dma-uclass.c │ │ │ ├── fsl_dma.c │ │ │ ├── keystone_nav.c │ │ │ ├── keystone_nav_cfg.c │ │ │ ├── lpc32xx_dma.c │ │ │ └── ti-edma3.c │ │ ├── firmware │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── firmware-uclass.c │ │ │ └── psci.c │ │ ├── fpga │ │ │ ├── ACEX1K.c │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── altera.c │ │ │ ├── cyclon2.c │ │ │ ├── fpga.c │ │ │ ├── ivm_core.c │ │ │ ├── lattice.c │ │ │ ├── socfpga.c │ │ │ ├── spartan2.c │ │ │ ├── spartan3.c │ │ │ ├── stratixII.c │ │ │ ├── stratixv.c │ │ │ ├── virtex2.c │ │ │ ├── xilinx.c │ │ │ ├── zynqmppl.c │ │ │ └── zynqpl.c │ │ ├── gpio │ │ │ ├── 74x164_gpio.c │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── adi_gpio2.c │ │ │ ├── altera_pio.c │ │ │ ├── at91_gpio.c │ │ │ ├── atmel_pio4.c │ │ │ ├── axp_gpio.c │ │ │ ├── bcm2835_gpio.c │ │ │ ├── bcm6345_gpio.c │ │ │ ├── da8xx_gpio.c │ │ │ ├── db8500_gpio.c │ │ │ ├── dwapb_gpio.c │ │ │ ├── gpio-uclass.c │ │ │ ├── gpio-uniphier.c │ │ │ ├── hi6220_gpio.c │ │ │ ├── imx_rgpio2p.c │ │ │ ├── intel_broadwell_gpio.c │ │ │ ├── intel_ich6_gpio.c │ │ │ ├── kona_gpio.c │ │ │ ├── kw_gpio.c │ │ │ ├── lpc32xx_gpio.c │ │ │ ├── mpc83xx_gpio.c │ │ │ ├── mpc85xx_gpio.c │ │ │ ├── msm_gpio.c │ │ │ ├── mvebu_gpio.c │ │ │ ├── mvgpio.c │ │ │ ├── mvgpio.h │ │ │ ├── mvmfp.c │ │ │ ├── mxc_gpio.c │ │ │ ├── mxs_gpio.c │ │ │ ├── omap_gpio.c │ │ │ ├── pca953x.c │ │ │ ├── pca953x_gpio.c │ │ │ ├── pca9698.c │ │ │ ├── pcf8575_gpio.c │ │ │ ├── pic32_gpio.c │ │ │ ├── pm8916_gpio.c │ │ │ ├── rk_gpio.c │ │ │ ├── s5p_gpio.c │ │ │ ├── sandbox.c │ │ │ ├── sh_pfc.c │ │ │ ├── spear_gpio.c │ │ │ ├── stm32_gpio.c │ │ │ ├── stm32f7_gpio.c │ │ │ ├── sunxi_gpio.c │ │ │ ├── sx151x.c │ │ │ ├── tca642x.c │ │ │ ├── tegra186_gpio.c │ │ │ ├── tegra186_gpio_priv.h │ │ │ ├── tegra_gpio.c │ │ │ ├── vybrid_gpio.c │ │ │ ├── xilinx_gpio.c │ │ │ └── zynq_gpio.c │ │ ├── i2c │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── adi_i2c.c │ │ │ ├── ast_i2c.c │ │ │ ├── ast_i2c.h │ │ │ ├── at91_i2c.c │ │ │ ├── at91_i2c.h │ │ │ ├── cros_ec_ldo.c │ │ │ ├── cros_ec_tunnel.c │ │ │ ├── davinci_i2c.c │ │ │ ├── davinci_i2c.h │ │ │ ├── designware_i2c.c │ │ │ ├── designware_i2c.h │ │ │ ├── exynos_hs_i2c.c │ │ │ ├── fsl_i2c.c │ │ │ ├── fti2c010.c │ │ │ ├── fti2c010.h │ │ │ ├── i2c-cdns.c │ │ │ ├── i2c-emul-uclass.c │ │ │ ├── i2c-gpio.c │ │ │ ├── i2c-uclass-compat.c │ │ │ ├── i2c-uclass.c │ │ │ ├── i2c-uniphier-f.c │ │ │ ├── i2c-uniphier.c │ │ │ ├── i2c_core.c │ │ │ ├── ihs_i2c.c │ │ │ ├── imx_lpi2c.c │ │ │ ├── intel_i2c.c │ │ │ ├── kona_i2c.c │ │ │ ├── lpc32xx_i2c.c │ │ │ ├── muxes │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── i2c-arb-gpio-challenge.c │ │ │ │ ├── i2c-mux-uclass.c │ │ │ │ └── pca954x.c │ │ │ ├── mv_i2c.c │ │ │ ├── mv_i2c.h │ │ │ ├── mvtwsi.c │ │ │ ├── mxc_i2c.c │ │ │ ├── mxs_i2c.c │ │ │ ├── omap24xx_i2c.c │ │ │ ├── omap24xx_i2c.h │ │ │ ├── rcar_i2c.c │ │ │ ├── rk_i2c.c │ │ │ ├── s3c24x0_i2c.c │ │ │ ├── s3c24x0_i2c.h │ │ │ ├── sandbox_i2c.c │ │ │ ├── sh_i2c.c │ │ │ ├── sh_sh7734_i2c.c │ │ │ ├── soft_i2c.c │ │ │ ├── tegra186_bpmp_i2c.c │ │ │ ├── tegra_i2c.c │ │ │ ├── tsi108_i2c.c │ │ │ └── zynq_i2c.c │ │ ├── input │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cros_ec_keyb.c │ │ │ ├── i8042.c │ │ │ ├── input.c │ │ │ ├── key_matrix.c │ │ │ ├── keyboard-uclass.c │ │ │ ├── keyboard.c │ │ │ ├── pc_keyb.c │ │ │ ├── ps2mult.c │ │ │ ├── ps2ser.c │ │ │ ├── tegra-kbc.c │ │ │ ├── twl4030.c │ │ │ └── twl6030.c │ │ ├── led │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── led-uclass.c │ │ │ ├── led_bcm6328.c │ │ │ ├── led_bcm6358.c │ │ │ └── led_gpio.c │ │ ├── mailbox │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── mailbox-uclass.c │ │ │ ├── sandbox-mbox-test.c │ │ │ ├── sandbox-mbox.c │ │ │ └── tegra-hsp.c │ │ ├── memory │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── ti-aemif.c │ │ ├── misc │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── ali512x.c │ │ │ ├── altera_sysid.c │ │ │ ├── cbmem_console.c │ │ │ ├── cros_ec.c │ │ │ ├── cros_ec_i2c.c │ │ │ ├── cros_ec_lpc.c │ │ │ ├── cros_ec_sandbox.c │ │ │ ├── cros_ec_spi.c │ │ │ ├── ds4510.c │ │ │ ├── ds4510.h │ │ │ ├── fsl_devdis.c │ │ │ ├── fsl_ifc.c │ │ │ ├── fsl_iim.c │ │ │ ├── fsl_sec_mon.c │ │ │ ├── gpio_led.c │ │ │ ├── i2c_eeprom.c │ │ │ ├── i2c_eeprom_emul.c │ │ │ ├── mc9sdz60.c │ │ │ ├── misc-uclass.c │ │ │ ├── mxc_ocotp.c │ │ │ ├── mxs_ocotp.c │ │ │ ├── ns87308.c │ │ │ ├── nuvoton_nct6102d.c │ │ │ ├── pca9551_led.c │ │ │ ├── pwrseq-uclass.c │ │ │ ├── qfw.c │ │ │ ├── rockchip-efuse.c │ │ │ ├── smsc_lpc47m.c │ │ │ ├── smsc_sio1007.c │ │ │ ├── spltest_sandbox.c │ │ │ ├── status_led.c │ │ │ ├── swap_case.c │ │ │ ├── syscon_sandbox.c │ │ │ ├── tegra186_bpmp.c │ │ │ ├── tegra_car.c │ │ │ ├── twl4030_led.c │ │ │ └── winbond_w83627.c │ │ ├── mmc │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── arm_pl180_mmci.c │ │ │ ├── arm_pl180_mmci.h │ │ │ ├── atmel_sdhci.c │ │ │ ├── bcm2835_sdhci.c │ │ │ ├── davinci_mmc.c │ │ │ ├── dw_mmc.c │ │ │ ├── exynos_dw_mmc.c │ │ │ ├── fsl_esdhc.c │ │ │ ├── fsl_esdhc_spl.c │ │ │ ├── ftsdc010_mci.c │ │ │ ├── gen_atmel_mci.c │ │ │ ├── hi6220_dw_mmc.c │ │ │ ├── kona_sdhci.c │ │ │ ├── meson_gx_mmc.c │ │ │ ├── mmc-uclass.c │ │ │ ├── mmc.c │ │ │ ├── mmc_boot.c │ │ │ ├── mmc_legacy.c │ │ │ ├── mmc_private.h │ │ │ ├── mmc_spi.c │ │ │ ├── mmc_write.c │ │ │ ├── msm_sdhci.c │ │ │ ├── mv_sdhci.c │ │ │ ├── mvebu_mmc.c │ │ │ ├── mxcmmc.c │ │ │ ├── mxsmmc.c │ │ │ ├── omap_hsmmc.c │ │ │ ├── pci_mmc.c │ │ │ ├── pic32_sdhci.c │ │ │ ├── pxa_mmc_gen.c │ │ │ ├── rockchip_dw_mmc.c │ │ │ ├── rockchip_sdhci.c │ │ │ ├── rpmb.c │ │ │ ├── s5p_sdhci.c │ │ │ ├── sandbox_mmc.c │ │ │ ├── sdhci-cadence.c │ │ │ ├── sdhci.c │ │ │ ├── sh_mmcif.c │ │ │ ├── sh_mmcif.h │ │ │ ├── sh_sdhi.c │ │ │ ├── socfpga_dw_mmc.c │ │ │ ├── sti_sdhci.c │ │ │ ├── sunxi_mmc.c │ │ │ ├── tangier_sdhci.c │ │ │ ├── tegra_mmc.c │ │ │ ├── uniphier-sd.c │ │ │ ├── xenon_sdhci.c │ │ │ └── zynq_sdhci.c │ │ ├── mtd │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── altera_qspi.c │ │ │ ├── at45.c │ │ │ ├── cfi_flash.c │ │ │ ├── cfi_mtd.c │ │ │ ├── dataflash.c │ │ │ ├── ftsmc020.c │ │ │ ├── jedec_flash.c │ │ │ ├── mtd-uclass.c │ │ │ ├── mtd_uboot.c │ │ │ ├── mtdconcat.c │ │ │ ├── mtdcore.c │ │ │ ├── mtdcore.h │ │ │ ├── mtdpart.c │ │ │ ├── mw_eeprom.c │ │ │ ├── nand │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── am335x_spl_bch.c │ │ │ │ ├── arasan_nfc.c │ │ │ │ ├── atmel_nand.c │ │ │ │ ├── atmel_nand_ecc.h │ │ │ │ ├── davinci_nand.c │ │ │ │ ├── denali.c │ │ │ │ ├── denali.h │ │ │ │ ├── denali_spl.c │ │ │ │ ├── fsl_elbc_nand.c │ │ │ │ ├── fsl_elbc_spl.c │ │ │ │ ├── fsl_ifc_nand.c │ │ │ │ ├── fsl_ifc_spl.c │ │ │ │ ├── fsl_upm.c │ │ │ │ ├── fsmc_nand.c │ │ │ │ ├── kb9202_nand.c │ │ │ │ ├── kirkwood_nand.c │ │ │ │ ├── kmeter1_nand.c │ │ │ │ ├── lpc32xx_nand_mlc.c │ │ │ │ ├── lpc32xx_nand_slc.c │ │ │ │ ├── mxc_nand.c │ │ │ │ ├── mxc_nand.h │ │ │ │ ├── mxc_nand_spl.c │ │ │ │ ├── mxs_nand.c │ │ │ │ ├── mxs_nand_spl.c │ │ │ │ ├── nand.c │ │ │ │ ├── nand_base.c │ │ │ │ ├── nand_bbt.c │ │ │ │ ├── nand_bch.c │ │ │ │ ├── nand_ecc.c │ │ │ │ ├── nand_ids.c │ │ │ │ ├── nand_plat.c │ │ │ │ ├── nand_spl_load.c │ │ │ │ ├── nand_spl_loaders.c │ │ │ │ ├── nand_spl_simple.c │ │ │ │ ├── nand_timings.c │ │ │ │ ├── nand_util.c │ │ │ │ ├── ndfc.c │ │ │ │ ├── omap_elm.c │ │ │ │ ├── omap_gpmc.c │ │ │ │ ├── pxa3xx_nand.c │ │ │ │ ├── pxa3xx_nand.h │ │ │ │ ├── sunxi_nand.c │ │ │ │ ├── sunxi_nand_spl.c │ │ │ │ ├── tegra_nand.c │ │ │ │ ├── tegra_nand.h │ │ │ │ ├── vf610_nfc.c │ │ │ │ └── zynq_nand.c │ │ │ ├── onenand │ │ │ │ ├── Makefile │ │ │ │ ├── onenand_base.c │ │ │ │ ├── onenand_bbt.c │ │ │ │ ├── onenand_spl.c │ │ │ │ ├── onenand_uboot.c │ │ │ │ └── samsung.c │ │ │ ├── pic32_flash.c │ │ │ ├── spi │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── fsl_espi_spl.c │ │ │ │ ├── sandbox.c │ │ │ │ ├── sf-uclass.c │ │ │ │ ├── sf.c │ │ │ │ ├── sf_dataflash.c │ │ │ │ ├── sf_internal.h │ │ │ │ ├── sf_mtd.c │ │ │ │ ├── sf_probe.c │ │ │ │ ├── spi_flash.c │ │ │ │ ├── spi_flash_ids.c │ │ │ │ └── sunxi_spi_spl.c │ │ │ ├── st_smi.c │ │ │ ├── stm32_flash.c │ │ │ ├── stm32_flash.h │ │ │ ├── ubi │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── attach.c │ │ │ │ ├── build.c │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32defs.h │ │ │ │ ├── crc32table.h │ │ │ │ ├── debug.c │ │ │ │ ├── debug.h │ │ │ │ ├── eba.c │ │ │ │ ├── fastmap-wl.c │ │ │ │ ├── fastmap.c │ │ │ │ ├── io.c │ │ │ │ ├── kapi.c │ │ │ │ ├── misc.c │ │ │ │ ├── ubi-media.h │ │ │ │ ├── ubi.h │ │ │ │ ├── upd.c │ │ │ │ ├── vmt.c │ │ │ │ ├── vtbl.c │ │ │ │ ├── wl.c │ │ │ │ └── wl.h │ │ │ └── ubispl │ │ │ │ ├── Makefile │ │ │ │ ├── ubi-wrapper.h │ │ │ │ ├── ubispl.c │ │ │ │ └── ubispl.h │ │ ├── net │ │ │ ├── 8390.h │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── ag7xxx.c │ │ │ ├── altera_tse.c │ │ │ ├── altera_tse.h │ │ │ ├── armada100_fec.c │ │ │ ├── armada100_fec.h │ │ │ ├── at91_emac.c │ │ │ ├── ax88180.c │ │ │ ├── ax88180.h │ │ │ ├── ax88796.c │ │ │ ├── ax88796.h │ │ │ ├── bcm-sf2-eth-gmac.c │ │ │ ├── bcm-sf2-eth-gmac.h │ │ │ ├── bcm-sf2-eth.c │ │ │ ├── bcm-sf2-eth.h │ │ │ ├── calxedaxgmac.c │ │ │ ├── cpsw-common.c │ │ │ ├── cpsw.c │ │ │ ├── cs8900.c │ │ │ ├── cs8900.h │ │ │ ├── davinci_emac.c │ │ │ ├── davinci_emac.h │ │ │ ├── dc2114x.c │ │ │ ├── designware.c │ │ │ ├── designware.h │ │ │ ├── dm9000x.c │ │ │ ├── dm9000x.h │ │ │ ├── dnet.c │ │ │ ├── dnet.h │ │ │ ├── dwc_eth_qos.c │ │ │ ├── e1000.c │ │ │ ├── e1000.h │ │ │ ├── e1000_spi.c │ │ │ ├── eepro100.c │ │ │ ├── enc28j60.c │ │ │ ├── enc28j60.h │ │ │ ├── ep93xx_eth.c │ │ │ ├── ep93xx_eth.h │ │ │ ├── ethoc.c │ │ │ ├── fec_mxc.c │ │ │ ├── fec_mxc.h │ │ │ ├── fm │ │ │ │ ├── Makefile │ │ │ │ ├── b4860.c │ │ │ │ ├── dtsec.c │ │ │ │ ├── eth.c │ │ │ │ ├── fdt.c │ │ │ │ ├── fm.c │ │ │ │ ├── fm.h │ │ │ │ ├── init.c │ │ │ │ ├── ls1043.c │ │ │ │ ├── ls1046.c │ │ │ │ ├── memac.c │ │ │ │ ├── memac_phy.c │ │ │ │ ├── p1023.c │ │ │ │ ├── p4080.c │ │ │ │ ├── p5020.c │ │ │ │ ├── p5040.c │ │ │ │ ├── t1024.c │ │ │ │ ├── t1040.c │ │ │ │ ├── t2080.c │ │ │ │ ├── t4240.c │ │ │ │ ├── tgec.c │ │ │ │ └── tgec_phy.c │ │ │ ├── fsl-mc │ │ │ │ ├── Makefile │ │ │ │ ├── dpbp.c │ │ │ │ ├── dpio │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dpio.c │ │ │ │ │ ├── qbman_portal.c │ │ │ │ │ ├── qbman_portal.h │ │ │ │ │ ├── qbman_private.h │ │ │ │ │ └── qbman_sys.h │ │ │ │ ├── dpmac.c │ │ │ │ ├── dpmng.c │ │ │ │ ├── dpni.c │ │ │ │ ├── dprc.c │ │ │ │ ├── fsl_dpmng_cmd.h │ │ │ │ ├── mc.c │ │ │ │ └── mc_sys.c │ │ │ ├── fsl_mcdmafec.c │ │ │ ├── fsl_mdio.c │ │ │ ├── ftgmac100.c │ │ │ ├── ftgmac100.h │ │ │ ├── ftmac100.c │ │ │ ├── ftmac100.h │ │ │ ├── ftmac110.c │ │ │ ├── ftmac110.h │ │ │ ├── gmac_rockchip.c │ │ │ ├── keystone_net.c │ │ │ ├── ks8851_mll.c │ │ │ ├── ks8851_mll.h │ │ │ ├── lan91c96.c │ │ │ ├── lan91c96.h │ │ │ ├── ldpaa_eth │ │ │ │ ├── Makefile │ │ │ │ ├── ldpaa_eth.c │ │ │ │ ├── ldpaa_eth.h │ │ │ │ ├── ldpaa_wriop.c │ │ │ │ └── ls2080a.c │ │ │ ├── lpc32xx_eth.c │ │ │ ├── macb.c │ │ │ ├── macb.h │ │ │ ├── mcffec.c │ │ │ ├── mcfmii.c │ │ │ ├── mpc8xx_fec.c │ │ │ ├── mvgbe.c │ │ │ ├── mvgbe.h │ │ │ ├── mvneta.c │ │ │ ├── mvpp2.c │ │ │ ├── natsemi.c │ │ │ ├── ne2000.c │ │ │ ├── ne2000.h │ │ │ ├── ne2000_base.c │ │ │ ├── ne2000_base.h │ │ │ ├── netconsole.c │ │ │ ├── ns8382x.c │ │ │ ├── pch_gbe.c │ │ │ ├── pch_gbe.h │ │ │ ├── pcnet.c │ │ │ ├── phy │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── aquantia.c │ │ │ │ ├── atheros.c │ │ │ │ ├── broadcom.c │ │ │ │ ├── cortina.c │ │ │ │ ├── davicom.c │ │ │ │ ├── et1011c.c │ │ │ │ ├── fixed.c │ │ │ │ ├── generic_10g.c │ │ │ │ ├── lxt.c │ │ │ │ ├── marvell.c │ │ │ │ ├── micrel.c │ │ │ │ ├── miiphybb.c │ │ │ │ ├── mscc.c │ │ │ │ ├── mv88e61xx.c │ │ │ │ ├── mv88e6352.c │ │ │ │ ├── natsemi.c │ │ │ │ ├── phy.c │ │ │ │ ├── realtek.c │ │ │ │ ├── smsc.c │ │ │ │ ├── teranetics.c │ │ │ │ ├── ti.c │ │ │ │ ├── vitesse.c │ │ │ │ └── xilinx_phy.c │ │ │ ├── pic32_eth.c │ │ │ ├── pic32_eth.h │ │ │ ├── pic32_mdio.c │ │ │ ├── ravb.c │ │ │ ├── rtl8139.c │ │ │ ├── rtl8169.c │ │ │ ├── sandbox-raw.c │ │ │ ├── sandbox.c │ │ │ ├── sh_eth.c │ │ │ ├── sh_eth.h │ │ │ ├── smc91111.c │ │ │ ├── smc91111.h │ │ │ ├── smc911x.c │ │ │ ├── smc911x.h │ │ │ ├── sun8i_emac.c │ │ │ ├── sunxi_emac.c │ │ │ ├── tsec.c │ │ │ ├── tsi108_eth.c │ │ │ ├── uli526x.c │ │ │ ├── vsc7385.c │ │ │ ├── vsc9953.c │ │ │ ├── xilinx_axi_emac.c │ │ │ ├── xilinx_emaclite.c │ │ │ ├── xilinx_ll_temac.c │ │ │ ├── xilinx_ll_temac.h │ │ │ ├── xilinx_ll_temac_fifo.c │ │ │ ├── xilinx_ll_temac_fifo.h │ │ │ ├── xilinx_ll_temac_mdio.c │ │ │ ├── xilinx_ll_temac_mdio.h │ │ │ ├── xilinx_ll_temac_sdma.c │ │ │ ├── xilinx_ll_temac_sdma.h │ │ │ └── zynq_gem.c │ │ ├── pch │ │ │ ├── Makefile │ │ │ ├── pch-uclass.c │ │ │ ├── pch7.c │ │ │ └── pch9.c │ │ ├── pci │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── fsl_pci_init.c │ │ │ ├── pci-emul-uclass.c │ │ │ ├── pci-uclass.c │ │ │ ├── pci.c │ │ │ ├── pci_auto.c │ │ │ ├── pci_auto_common.c │ │ │ ├── pci_auto_old.c │ │ │ ├── pci_common.c │ │ │ ├── pci_compat.c │ │ │ ├── pci_ftpci100.c │ │ │ ├── pci_gt64120.c │ │ │ ├── pci_indirect.c │ │ │ ├── pci_internal.h │ │ │ ├── pci_msc01.c │ │ │ ├── pci_mvebu.c │ │ │ ├── pci_rom.c │ │ │ ├── pci_sandbox.c │ │ │ ├── pci_sh4.c │ │ │ ├── pci_sh7751.c │ │ │ ├── pci_sh7780.c │ │ │ ├── pci_tegra.c │ │ │ ├── pci_x86.c │ │ │ ├── pcie_dw_mvebu.c │ │ │ ├── pcie_imx.c │ │ │ ├── pcie_layerscape.c │ │ │ ├── pcie_layerscape.h │ │ │ ├── pcie_layerscape_fixup.c │ │ │ ├── pcie_xilinx.c │ │ │ └── tsi108_pci.c │ │ ├── pcmcia │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── marubun_pcmcia.c │ │ │ └── ti_pci1410a.c │ │ ├── phy │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── marvell │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── comphy.h │ │ │ │ ├── comphy_a3700.c │ │ │ │ ├── comphy_a3700.h │ │ │ │ ├── comphy_core.c │ │ │ │ ├── comphy_cp110.c │ │ │ │ ├── comphy_hpipe.h │ │ │ │ ├── comphy_mux.c │ │ │ │ ├── sata.h │ │ │ │ └── utmi_phy.h │ │ │ ├── phy-uclass.c │ │ │ ├── sandbox-phy.c │ │ │ └── ti-pipe3-phy.c │ │ ├── pinctrl │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── aspeed │ │ │ │ ├── Makefile │ │ │ │ └── pinctrl_ast2500.c │ │ │ ├── ath79 │ │ │ │ ├── Makefile │ │ │ │ ├── pinctrl_ar933x.c │ │ │ │ └── pinctrl_qca953x.c │ │ │ ├── exynos │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── pinctrl-exynos.c │ │ │ │ ├── pinctrl-exynos.h │ │ │ │ └── pinctrl-exynos7420.c │ │ │ ├── meson │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── pinctrl-meson-gxbb.c │ │ │ │ ├── pinctrl-meson.c │ │ │ │ └── pinctrl-meson.h │ │ │ ├── mvebu │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── pinctrl-armada-37xx.c │ │ │ │ ├── pinctrl-mvebu.c │ │ │ │ └── pinctrl-mvebu.h │ │ │ ├── nxp │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── pinctrl-imx.c │ │ │ │ ├── pinctrl-imx.h │ │ │ │ ├── pinctrl-imx5.c │ │ │ │ ├── pinctrl-imx6.c │ │ │ │ ├── pinctrl-imx7.c │ │ │ │ └── pinctrl-imx7ulp.c │ │ │ ├── pinctrl-at91-pio4.c │ │ │ ├── pinctrl-at91.c │ │ │ ├── pinctrl-generic.c │ │ │ ├── pinctrl-sandbox.c │ │ │ ├── pinctrl-single.c │ │ │ ├── pinctrl-sti.c │ │ │ ├── pinctrl-uclass.c │ │ │ ├── pinctrl_pic32.c │ │ │ ├── pinctrl_stm32.c │ │ │ ├── rockchip │ │ │ │ ├── Makefile │ │ │ │ ├── pinctrl_rk3036.c │ │ │ │ ├── pinctrl_rk3188.c │ │ │ │ ├── pinctrl_rk3288.c │ │ │ │ ├── pinctrl_rk3328.c │ │ │ │ ├── pinctrl_rk3368.c │ │ │ │ ├── pinctrl_rk3399.c │ │ │ │ └── pinctrl_rv1108.c │ │ │ └── uniphier │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── pinctrl-uniphier-core.c │ │ │ │ ├── pinctrl-uniphier-ld11.c │ │ │ │ ├── pinctrl-uniphier-ld20.c │ │ │ │ ├── pinctrl-uniphier-ld4.c │ │ │ │ ├── pinctrl-uniphier-ld6b.c │ │ │ │ ├── pinctrl-uniphier-pro4.c │ │ │ │ ├── pinctrl-uniphier-pro5.c │ │ │ │ ├── pinctrl-uniphier-pxs2.c │ │ │ │ ├── pinctrl-uniphier-pxs3.c │ │ │ │ ├── pinctrl-uniphier-sld3.c │ │ │ │ ├── pinctrl-uniphier-sld8.c │ │ │ │ └── pinctrl-uniphier.h │ │ ├── power │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── axp152.c │ │ │ ├── axp209.c │ │ │ ├── axp221.c │ │ │ ├── axp809.c │ │ │ ├── axp818.c │ │ │ ├── battery │ │ │ │ ├── Makefile │ │ │ │ ├── bat_trats.c │ │ │ │ └── bat_trats2.c │ │ │ ├── domain │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── bcm6328-power-domain.c │ │ │ │ ├── power-domain-uclass.c │ │ │ │ ├── sandbox-power-domain-test.c │ │ │ │ ├── sandbox-power-domain.c │ │ │ │ └── tegra186-power-domain.c │ │ │ ├── exynos-tmu.c │ │ │ ├── ftpmu010.c │ │ │ ├── fuel_gauge │ │ │ │ ├── Makefile │ │ │ │ └── fg_max17042.c │ │ │ ├── mfd │ │ │ │ ├── Makefile │ │ │ │ ├── fg_max77693.c │ │ │ │ ├── muic_max77693.c │ │ │ │ └── pmic_max77693.c │ │ │ ├── palmas.c │ │ │ ├── pmic │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── act8846.c │ │ │ │ ├── as3722.c │ │ │ │ ├── i2c_pmic_emul.c │ │ │ │ ├── lp873x.c │ │ │ │ ├── lp87565.c │ │ │ │ ├── max77686.c │ │ │ │ ├── max8997.c │ │ │ │ ├── max8998.c │ │ │ │ ├── muic_max8997.c │ │ │ │ ├── palmas.c │ │ │ │ ├── pfuze100.c │ │ │ │ ├── pm8916.c │ │ │ │ ├── pmic-uclass.c │ │ │ │ ├── pmic_hi6553.c │ │ │ │ ├── pmic_ltc3676.c │ │ │ │ ├── pmic_max77686.c │ │ │ │ ├── pmic_max77696.c │ │ │ │ ├── pmic_max8997.c │ │ │ │ ├── pmic_max8998.c │ │ │ │ ├── pmic_mc34vr500.c │ │ │ │ ├── pmic_pfuze100.c │ │ │ │ ├── pmic_pfuze3000.c │ │ │ │ ├── pmic_tps62362.c │ │ │ │ ├── pmic_tps65217.c │ │ │ │ ├── pmic_tps65218.c │ │ │ │ ├── pmic_tps65910.c │ │ │ │ ├── rk8xx.c │ │ │ │ ├── rn5t567.c │ │ │ │ ├── s2mps11.c │ │ │ │ ├── s5m8767.c │ │ │ │ ├── sandbox.c │ │ │ │ └── tps65090.c │ │ │ ├── power_core.c │ │ │ ├── power_dialog.c │ │ │ ├── power_fsl.c │ │ │ ├── power_i2c.c │ │ │ ├── power_spi.c │ │ │ ├── regulator │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── act8846.c │ │ │ │ ├── fixed.c │ │ │ │ ├── gpio-regulator.c │ │ │ │ ├── lp873x_regulator.c │ │ │ │ ├── lp87565_regulator.c │ │ │ │ ├── max77686.c │ │ │ │ ├── palmas_regulator.c │ │ │ │ ├── pfuze100.c │ │ │ │ ├── pwm_regulator.c │ │ │ │ ├── regulator-uclass.c │ │ │ │ ├── rk8xx.c │ │ │ │ ├── s5m8767.c │ │ │ │ ├── sandbox.c │ │ │ │ └── tps65090_regulator.c │ │ │ ├── sy8106a.c │ │ │ ├── tps6586x.c │ │ │ ├── twl4030.c │ │ │ └── twl6030.c │ │ ├── pwm │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── exynos_pwm.c │ │ │ ├── pwm-imx-util.c │ │ │ ├── pwm-imx-util.h │ │ │ ├── pwm-imx.c │ │ │ ├── pwm-uclass.c │ │ │ ├── rk_pwm.c │ │ │ ├── sandbox_pwm.c │ │ │ └── tegra_pwm.c │ │ ├── qe │ │ │ ├── Makefile │ │ │ ├── fdt.c │ │ │ ├── qe.c │ │ │ ├── uccf.c │ │ │ ├── uccf.h │ │ │ ├── uec.c │ │ │ ├── uec.h │ │ │ ├── uec_phy.c │ │ │ └── uec_phy.h │ │ ├── ram │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── bmips_ram.c │ │ │ ├── ram-uclass.c │ │ │ ├── sandbox_ram.c │ │ │ └── stm32_sdram.c │ │ ├── remoteproc │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── rproc-uclass.c │ │ │ ├── sandbox_testproc.c │ │ │ └── ti_power_proc.c │ │ ├── reset │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── ast2500-reset.c │ │ │ ├── reset-bcm6345.c │ │ │ ├── reset-uclass.c │ │ │ ├── reset-uniphier.c │ │ │ ├── sandbox-reset-test.c │ │ │ ├── sandbox-reset.c │ │ │ ├── sti-reset.c │ │ │ ├── tegra-car-reset.c │ │ │ └── tegra186-reset.c │ │ ├── rtc │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── at91sam9_rtt.c │ │ │ ├── date.c │ │ │ ├── davinci.c │ │ │ ├── ds1302.c │ │ │ ├── ds1306.c │ │ │ ├── ds1307.c │ │ │ ├── ds1337.c │ │ │ ├── ds1374.c │ │ │ ├── ds1556.c │ │ │ ├── ds164x.c │ │ │ ├── ds174x.c │ │ │ ├── ds3231.c │ │ │ ├── ftrtc010.c │ │ │ ├── i2c_rtc_emul.c │ │ │ ├── imxdi.c │ │ │ ├── isl1208.c │ │ │ ├── m41t11.c │ │ │ ├── m41t60.c │ │ │ ├── m41t62.c │ │ │ ├── m41t94.c │ │ │ ├── m48t35ax.c │ │ │ ├── max6900.c │ │ │ ├── mc13xxx-rtc.c │ │ │ ├── mc146818.c │ │ │ ├── mcfrtc.c │ │ │ ├── mk48t59.c │ │ │ ├── mvrtc.c │ │ │ ├── mvrtc.h │ │ │ ├── mx27rtc.c │ │ │ ├── mxsrtc.c │ │ │ ├── pcf2127.c │ │ │ ├── pcf8563.c │ │ │ ├── pl031.c │ │ │ ├── pt7c4338.c │ │ │ ├── rs5c372.c │ │ │ ├── rtc-uclass.c │ │ │ ├── rv3029.c │ │ │ ├── rx8025.c │ │ │ ├── s3c24x0_rtc.c │ │ │ ├── sandbox_rtc.c │ │ │ └── x1205.c │ │ ├── serial │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── altera_jtag_uart.c │ │ │ ├── altera_uart.c │ │ │ ├── arm_dcc.c │ │ │ ├── atmel_usart.c │ │ │ ├── atmel_usart.h │ │ │ ├── lpc32xx_hsuart.c │ │ │ ├── mcfuart.c │ │ │ ├── ns16550.c │ │ │ ├── sandbox.c │ │ │ ├── serial-uclass.c │ │ │ ├── serial.c │ │ │ ├── serial_ar933x.c │ │ │ ├── serial_arc.c │ │ │ ├── serial_bcm283x_mu.c │ │ │ ├── serial_bcm6345.c │ │ │ ├── serial_efi.c │ │ │ ├── serial_intel_mid.c │ │ │ ├── serial_linflexuart.c │ │ │ ├── serial_lpuart.c │ │ │ ├── serial_meson.c │ │ │ ├── serial_mpc8xx.c │ │ │ ├── serial_msm.c │ │ │ ├── serial_mvebu_a3700.c │ │ │ ├── serial_mxc.c │ │ │ ├── serial_ns16550.c │ │ │ ├── serial_pic32.c │ │ │ ├── serial_pl01x.c │ │ │ ├── serial_pl01x_internal.h │ │ │ ├── serial_pxa.c │ │ │ ├── serial_rockchip.c │ │ │ ├── serial_s5p.c │ │ │ ├── serial_sh.c │ │ │ ├── serial_sh.h │ │ │ ├── serial_sti_asc.c │ │ │ ├── serial_stm32.c │ │ │ ├── serial_stm32x7.c │ │ │ ├── serial_stm32x7.h │ │ │ ├── serial_uniphier.c │ │ │ ├── serial_xuartlite.c │ │ │ ├── serial_zynq.c │ │ │ ├── usbtty.c │ │ │ └── usbtty.h │ │ ├── soc │ │ │ ├── Makefile │ │ │ └── keystone │ │ │ │ ├── Makefile │ │ │ │ └── keystone_serdes.c │ │ ├── sound │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── max98095.c │ │ │ ├── max98095.h │ │ │ ├── samsung-i2s.c │ │ │ ├── sandbox.c │ │ │ ├── sound-i2s.c │ │ │ ├── sound.c │ │ │ ├── wm8994.c │ │ │ ├── wm8994.h │ │ │ └── wm8994_registers.h │ │ ├── spi │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── altera_spi.c │ │ │ ├── ath79_spi.c │ │ │ ├── atmel_dataflash_spi.c │ │ │ ├── atmel_spi.c │ │ │ ├── atmel_spi.h │ │ │ ├── cadence_qspi.c │ │ │ ├── cadence_qspi.h │ │ │ ├── cadence_qspi_apb.c │ │ │ ├── cf_spi.c │ │ │ ├── davinci_spi.c │ │ │ ├── designware_spi.c │ │ │ ├── exynos_spi.c │ │ │ ├── fsl_dspi.c │ │ │ ├── fsl_espi.c │ │ │ ├── fsl_qspi.c │ │ │ ├── fsl_qspi.h │ │ │ ├── ich.c │ │ │ ├── ich.h │ │ │ ├── kirkwood_spi.c │ │ │ ├── lpc32xx_ssp.c │ │ │ ├── mpc8xx_spi.c │ │ │ ├── mpc8xxx_spi.c │ │ │ ├── mvebu_a3700_spi.c │ │ │ ├── mxc_spi.c │ │ │ ├── mxs_spi.c │ │ │ ├── omap3_spi.c │ │ │ ├── pic32_spi.c │ │ │ ├── rk_spi.c │ │ │ ├── rk_spi.h │ │ │ ├── sandbox_spi.c │ │ │ ├── sh_qspi.c │ │ │ ├── sh_spi.c │ │ │ ├── sh_spi.h │ │ │ ├── soft_spi.c │ │ │ ├── soft_spi_legacy.c │ │ │ ├── spi-emul-uclass.c │ │ │ ├── spi-uclass.c │ │ │ ├── spi.c │ │ │ ├── stm32_qspi.c │ │ │ ├── tegra114_spi.c │ │ │ ├── tegra20_sflash.c │ │ │ ├── tegra20_slink.c │ │ │ ├── tegra210_qspi.c │ │ │ ├── tegra_spi.h │ │ │ ├── ti_qspi.c │ │ │ ├── xilinx_spi.c │ │ │ ├── zynq_qspi.c │ │ │ └── zynq_spi.c │ │ ├── spmi │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── spmi-msm.c │ │ │ ├── spmi-sandbox.c │ │ │ └── spmi-uclass.c │ │ ├── sysreset │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── sysreset-uclass.c │ │ │ ├── sysreset_ast.c │ │ │ ├── sysreset_psci.c │ │ │ ├── sysreset_rk3036.c │ │ │ ├── sysreset_rk3188.c │ │ │ ├── sysreset_rk3288.c │ │ │ ├── sysreset_rk3328.c │ │ │ ├── sysreset_rk3368.c │ │ │ ├── sysreset_rk3399.c │ │ │ ├── sysreset_rv1108.c │ │ │ ├── sysreset_sandbox.c │ │ │ ├── sysreset_snapdragon.c │ │ │ ├── sysreset_sti.c │ │ │ ├── sysreset_syscon.c │ │ │ ├── sysreset_watchdog.c │ │ │ └── sysreset_xtfpga.c │ │ ├── thermal │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── imx_thermal.c │ │ │ └── thermal-uclass.c │ │ ├── timer │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── ae3xx_timer.c │ │ │ ├── ag101p_timer.c │ │ │ ├── altera_timer.c │ │ │ ├── arc_timer.c │ │ │ ├── ast_timer.c │ │ │ ├── omap-timer.c │ │ │ ├── sandbox_timer.c │ │ │ ├── sti-timer.c │ │ │ ├── timer-uclass.c │ │ │ └── tsc_timer.c │ │ ├── tpm │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── tpm-uclass.c │ │ │ ├── tpm_atmel_twi.c │ │ │ ├── tpm_internal.h │ │ │ ├── tpm_tis.h │ │ │ ├── tpm_tis_infineon.c │ │ │ ├── tpm_tis_lpc.c │ │ │ ├── tpm_tis_sandbox.c │ │ │ ├── tpm_tis_st33zp24_i2c.c │ │ │ └── tpm_tis_st33zp24_spi.c │ │ ├── usb │ │ │ ├── Kconfig │ │ │ ├── common │ │ │ │ ├── Makefile │ │ │ │ ├── common.c │ │ │ │ ├── fsl-dt-fixup.c │ │ │ │ └── fsl-errata.c │ │ │ ├── dwc3 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── core.c │ │ │ │ ├── core.h │ │ │ │ ├── dwc3-omap.c │ │ │ │ ├── ep0.c │ │ │ │ ├── gadget.c │ │ │ │ ├── gadget.h │ │ │ │ ├── io.h │ │ │ │ ├── linux-compat.h │ │ │ │ ├── samsung_usb_phy.c │ │ │ │ └── ti_usb_phy.c │ │ │ ├── emul │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── sandbox_flash.c │ │ │ │ ├── sandbox_hub.c │ │ │ │ ├── sandbox_keyb.c │ │ │ │ └── usb-emul-uclass.c │ │ │ ├── eth │ │ │ │ ├── Makefile │ │ │ │ ├── asix.c │ │ │ │ ├── asix88179.c │ │ │ │ ├── mcs7830.c │ │ │ │ ├── r8152.c │ │ │ │ ├── r8152.h │ │ │ │ ├── r8152_fw.c │ │ │ │ ├── smsc95xx.c │ │ │ │ └── usb_ether.c │ │ │ ├── gadget │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── at91_udc.c │ │ │ │ ├── at91_udc.h │ │ │ │ ├── atmel_usba_udc.c │ │ │ │ ├── atmel_usba_udc.h │ │ │ │ ├── bcm_udc_otg.h │ │ │ │ ├── bcm_udc_otg_phy.c │ │ │ │ ├── ci_udc.c │ │ │ │ ├── ci_udc.h │ │ │ │ ├── composite.c │ │ │ │ ├── config.c │ │ │ │ ├── core.c │ │ │ │ ├── designware_udc.c │ │ │ │ ├── dwc2_udc_otg.c │ │ │ │ ├── dwc2_udc_otg_phy.c │ │ │ │ ├── dwc2_udc_otg_priv.h │ │ │ │ ├── dwc2_udc_otg_regs.h │ │ │ │ ├── dwc2_udc_otg_xfer_dma.c │ │ │ │ ├── ep0.c │ │ │ │ ├── ep0.h │ │ │ │ ├── epautoconf.c │ │ │ │ ├── ether.c │ │ │ │ ├── f_dfu.c │ │ │ │ ├── f_dfu.h │ │ │ │ ├── f_fastboot.c │ │ │ │ ├── f_mass_storage.c │ │ │ │ ├── f_thor.c │ │ │ │ ├── f_thor.h │ │ │ │ ├── fotg210.c │ │ │ │ ├── g_dnl.c │ │ │ │ ├── gadget_chips.h │ │ │ │ ├── ndis.h │ │ │ │ ├── pxa25x_udc.c │ │ │ │ ├── pxa25x_udc.h │ │ │ │ ├── pxa27x_udc.c │ │ │ │ ├── rndis.c │ │ │ │ ├── rndis.h │ │ │ │ ├── storage_common.c │ │ │ │ ├── udc │ │ │ │ │ ├── Makefile │ │ │ │ │ └── udc-core.c │ │ │ │ └── usbstring.c │ │ │ ├── host │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── dwc2.c │ │ │ │ ├── dwc2.h │ │ │ │ ├── ehci-armada100.c │ │ │ │ ├── ehci-atmel.c │ │ │ │ ├── ehci-exynos.c │ │ │ │ ├── ehci-faraday.c │ │ │ │ ├── ehci-fsl.c │ │ │ │ ├── ehci-generic.c │ │ │ │ ├── ehci-hcd.c │ │ │ │ ├── ehci-marvell.c │ │ │ │ ├── ehci-msm.c │ │ │ │ ├── ehci-mx5.c │ │ │ │ ├── ehci-mx6.c │ │ │ │ ├── ehci-mxc.c │ │ │ │ ├── ehci-mxs.c │ │ │ │ ├── ehci-omap.c │ │ │ │ ├── ehci-pci.c │ │ │ │ ├── ehci-ppc4xx.c │ │ │ │ ├── ehci-rcar_gen3.c │ │ │ │ ├── ehci-rmobile.c │ │ │ │ ├── ehci-spear.c │ │ │ │ ├── ehci-sunxi.c │ │ │ │ ├── ehci-tegra.c │ │ │ │ ├── ehci-vct.c │ │ │ │ ├── ehci-vf.c │ │ │ │ ├── ehci-zynq.c │ │ │ │ ├── ehci.h │ │ │ │ ├── isp116x-hcd.c │ │ │ │ ├── isp116x.h │ │ │ │ ├── ohci-at91.c │ │ │ │ ├── ohci-da8xx.c │ │ │ │ ├── ohci-ep93xx.c │ │ │ │ ├── ohci-generic.c │ │ │ │ ├── ohci-hcd.c │ │ │ │ ├── ohci-lpc32xx.c │ │ │ │ ├── ohci-sunxi.c │ │ │ │ ├── ohci.h │ │ │ │ ├── r8a66597-hcd.c │ │ │ │ ├── r8a66597.h │ │ │ │ ├── sl811-hcd.c │ │ │ │ ├── sl811.h │ │ │ │ ├── usb-sandbox.c │ │ │ │ ├── usb-uclass.c │ │ │ │ ├── utmi-armada100.c │ │ │ │ ├── xhci-dwc3.c │ │ │ │ ├── xhci-exynos5.c │ │ │ │ ├── xhci-fsl.c │ │ │ │ ├── xhci-keystone.c │ │ │ │ ├── xhci-mem.c │ │ │ │ ├── xhci-mvebu.c │ │ │ │ ├── xhci-omap.c │ │ │ │ ├── xhci-pci.c │ │ │ │ ├── xhci-ring.c │ │ │ │ ├── xhci-rockchip.c │ │ │ │ ├── xhci-zynqmp.c │ │ │ │ ├── xhci.c │ │ │ │ └── xhci.h │ │ │ ├── musb-new │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── am35x.c │ │ │ │ ├── linux-compat.h │ │ │ │ ├── musb_core.c │ │ │ │ ├── musb_core.h │ │ │ │ ├── musb_debug.h │ │ │ │ ├── musb_dma.h │ │ │ │ ├── musb_dsps.c │ │ │ │ ├── musb_gadget.c │ │ │ │ ├── musb_gadget.h │ │ │ │ ├── musb_gadget_ep0.c │ │ │ │ ├── musb_host.c │ │ │ │ ├── musb_host.h │ │ │ │ ├── musb_io.h │ │ │ │ ├── musb_regs.h │ │ │ │ ├── musb_uboot.c │ │ │ │ ├── musb_uboot.h │ │ │ │ ├── omap2430.c │ │ │ │ ├── omap2430.h │ │ │ │ ├── pic32.c │ │ │ │ ├── sunxi.c │ │ │ │ ├── ti-musb.c │ │ │ │ └── usb-compat.h │ │ │ ├── musb │ │ │ │ ├── Makefile │ │ │ │ ├── am35x.c │ │ │ │ ├── am35x.h │ │ │ │ ├── da8xx.c │ │ │ │ ├── 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 │ │ │ │ ├── omap_usb_phy.c │ │ │ │ ├── rockchip_usb2_phy.c │ │ │ │ └── twl4030.c │ │ │ └── ulpi │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── omap-ulpi-viewport.c │ │ │ │ ├── ulpi-viewport.c │ │ │ │ └── ulpi.c │ │ ├── video │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── am335x-fb.c │ │ │ ├── am335x-fb.h │ │ │ ├── anx9804.c │ │ │ ├── anx9804.h │ │ │ ├── ati_ids.h │ │ │ ├── ati_radeon_fb.c │ │ │ ├── ati_radeon_fb.h │ │ │ ├── atmel_hlcdfb.c │ │ │ ├── atmel_lcdfb.c │ │ │ ├── backlight-uclass.c │ │ │ ├── bcm2835.c │ │ │ ├── bridge │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── ps862x.c │ │ │ │ ├── ptn3460.c │ │ │ │ └── video-bridge-uclass.c │ │ │ ├── broadwell_igd.c │ │ │ ├── bus_vcxk.c │ │ │ ├── cfb_console.c │ │ │ ├── console_normal.c │ │ │ ├── console_rotate.c │ │ │ ├── console_truetype.c │ │ │ ├── coreboot.c │ │ │ ├── ct69000.c │ │ │ ├── da8xx-fb.c │ │ │ ├── da8xx-fb.h │ │ │ ├── display-uclass.c │ │ │ ├── dw_hdmi.c │ │ │ ├── exynos │ │ │ │ ├── Makefile │ │ │ │ ├── exynos_dp.c │ │ │ │ ├── exynos_dp_lowlevel.c │ │ │ │ ├── exynos_dp_lowlevel.h │ │ │ │ ├── exynos_fb.c │ │ │ │ ├── exynos_mipi_dsi.c │ │ │ │ ├── exynos_mipi_dsi_common.c │ │ │ │ ├── exynos_mipi_dsi_common.h │ │ │ │ ├── exynos_mipi_dsi_lowlevel.c │ │ │ │ ├── exynos_mipi_dsi_lowlevel.h │ │ │ │ └── exynos_pwm_bl.c │ │ │ ├── fonts │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── ankacoder_c75_r.ttf │ │ │ │ ├── cantoraone_regular.ttf │ │ │ │ ├── nimbus_sans_l_regular.ttf │ │ │ │ └── rufscript010.ttf │ │ │ ├── formike.c │ │ │ ├── fsl_dcu_fb.c │ │ │ ├── fsl_diu_fb.c │ │ │ ├── hitachi_tx18d42vm_lcd.c │ │ │ ├── hitachi_tx18d42vm_lcd.h │ │ │ ├── i915_reg.h │ │ │ ├── ipu.h │ │ │ ├── ipu_common.c │ │ │ ├── ipu_disp.c │ │ │ ├── ipu_regs.h │ │ │ ├── ivybridge_igd.c │ │ │ ├── l5f31188.c │ │ │ ├── ld9040.c │ │ │ ├── lg4573.c │ │ │ ├── mb862xx.c │ │ │ ├── mvebu_lcd.c │ │ │ ├── mx3fb.c │ │ │ ├── mxc_ipuv3_fb.c │ │ │ ├── mxcfb.h │ │ │ ├── mxsfb.c │ │ │ ├── omap3_dss.c │ │ │ ├── panel-uclass.c │ │ │ ├── pwm_backlight.c │ │ │ ├── pxa_lcd.c │ │ │ ├── rockchip │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── rk3288_hdmi.c │ │ │ │ ├── rk3288_vop.c │ │ │ │ ├── rk3399_hdmi.c │ │ │ │ ├── rk3399_vop.c │ │ │ │ ├── rk_edp.c │ │ │ │ ├── rk_hdmi.c │ │ │ │ ├── rk_hdmi.h │ │ │ │ ├── rk_lvds.c │ │ │ │ ├── rk_mipi.c │ │ │ │ ├── rk_vop.c │ │ │ │ └── rk_vop.h │ │ │ ├── s6e63d6.c │ │ │ ├── s6e8ax0.c │ │ │ ├── sandbox_sdl.c │ │ │ ├── scf0403_lcd.c │ │ │ ├── sed156x.c │ │ │ ├── simple_panel.c │ │ │ ├── sm501.c │ │ │ ├── ssd2828.c │ │ │ ├── ssd2828.h │ │ │ ├── stb_truetype.h │ │ │ ├── sunxi │ │ │ │ ├── Makefile │ │ │ │ ├── lcdc.c │ │ │ │ ├── sunxi_de2.c │ │ │ │ ├── sunxi_display.c │ │ │ │ ├── sunxi_dw_hdmi.c │ │ │ │ └── tve_common.c │ │ │ ├── tegra.c │ │ │ ├── tegra124 │ │ │ │ ├── Makefile │ │ │ │ ├── display.c │ │ │ │ ├── displayport.h │ │ │ │ ├── dp.c │ │ │ │ ├── sor.c │ │ │ │ └── sor.h │ │ │ ├── vesa.c │ │ │ ├── vidconsole-uclass.c │ │ │ ├── video-uclass.c │ │ │ ├── video_bmp.c │ │ │ ├── videomodes.c │ │ │ └── videomodes.h │ │ └── watchdog │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── ast_wdt.c │ │ │ ├── at91sam9_wdt.c │ │ │ ├── bcm2835_wdt.c │ │ │ ├── bcm6345_wdt.c │ │ │ ├── designware_wdt.c │ │ │ ├── ftwdt010_wdt.c │ │ │ ├── imx_watchdog.c │ │ │ ├── omap_wdt.c │ │ │ ├── s5p_wdt.c │ │ │ ├── sandbox_wdt.c │ │ │ ├── ulp_wdog.c │ │ │ ├── wdt-uclass.c │ │ │ └── xilinx_tb_wdt.c │ ├── dts │ │ ├── .gitignore │ │ ├── Kconfig │ │ └── Makefile │ ├── examples │ │ ├── Makefile │ │ ├── api │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── crt0.S │ │ │ ├── demo.c │ │ │ ├── glue.c │ │ │ ├── glue.h │ │ │ └── libgenwrap.c │ │ └── standalone │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README.smc91111_eeprom │ │ │ ├── atmel_df_pow2.c │ │ │ ├── hello_world.c │ │ │ ├── mips.lds │ │ │ ├── mips64.lds │ │ │ ├── nds32.lds │ │ │ ├── ppc_longjmp.S │ │ │ ├── ppc_setjmp.S │ │ │ ├── sched.c │ │ │ ├── smc91111_eeprom.c │ │ │ ├── smc911x_eeprom.c │ │ │ ├── sparc.lds │ │ │ └── stubs.c │ ├── fs │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cbfs │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── cbfs.c │ │ ├── cramfs │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cramfs.c │ │ │ └── uncompress.c │ │ ├── ext4 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── crc16.c │ │ │ ├── crc16.h │ │ │ ├── dev.c │ │ │ ├── ext4_common.c │ │ │ ├── ext4_common.h │ │ │ ├── ext4_journal.c │ │ │ ├── ext4_journal.h │ │ │ ├── ext4_write.c │ │ │ └── ext4fs.c │ │ ├── fat │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── fat.c │ │ │ ├── fat_write.c │ │ │ └── file.c │ │ ├── fs.c │ │ ├── jffs2 │ │ │ ├── Kconfig │ │ │ ├── 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 │ │ │ ├── mergesort.c │ │ │ ├── mini_inflate.c │ │ │ └── summary.h │ │ ├── reiserfs │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── dev.c │ │ │ ├── mode_string.c │ │ │ ├── reiserfs.c │ │ │ └── reiserfs_private.h │ │ ├── sandbox │ │ │ ├── Makefile │ │ │ └── sandboxfs.c │ │ ├── ubifs │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── budget.c │ │ │ ├── crc16.c │ │ │ ├── crc16.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── gc.c │ │ │ ├── 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 │ │ │ ├── yaffs_allocator.c │ │ │ ├── yaffs_allocator.h │ │ │ ├── yaffs_attribs.c │ │ │ ├── yaffs_attribs.h │ │ │ ├── yaffs_bitmap.c │ │ │ ├── yaffs_bitmap.h │ │ │ ├── yaffs_checkptrw.c │ │ │ ├── yaffs_checkptrw.h │ │ │ ├── yaffs_ecc.c │ │ │ ├── yaffs_ecc.h │ │ │ ├── yaffs_error.c │ │ │ ├── yaffs_flashif.h │ │ │ ├── yaffs_flashif2.h │ │ │ ├── yaffs_getblockinfo.h │ │ │ ├── yaffs_guts.c │ │ │ ├── yaffs_guts.h │ │ │ ├── yaffs_mtdif.c │ │ │ ├── yaffs_mtdif.h │ │ │ ├── yaffs_mtdif2.c │ │ │ ├── yaffs_mtdif2.h │ │ │ ├── yaffs_nameval.c │ │ │ ├── yaffs_nameval.h │ │ │ ├── yaffs_nand.c │ │ │ ├── yaffs_nand.h │ │ │ ├── yaffs_nandemul2k.h │ │ │ ├── yaffs_nandif.c │ │ │ ├── yaffs_nandif.h │ │ │ ├── yaffs_osglue.h │ │ │ ├── yaffs_packedtags1.c │ │ │ ├── yaffs_packedtags1.h │ │ │ ├── yaffs_packedtags2.c │ │ │ ├── yaffs_packedtags2.h │ │ │ ├── yaffs_qsort.c │ │ │ ├── yaffs_summary.c │ │ │ ├── yaffs_summary.h │ │ │ ├── yaffs_tagscompat.c │ │ │ ├── yaffs_tagscompat.h │ │ │ ├── yaffs_trace.h │ │ │ ├── yaffs_uboot_glue.c │ │ │ ├── yaffs_verify.c │ │ │ ├── yaffs_verify.h │ │ │ ├── yaffs_yaffs1.c │ │ │ ├── yaffs_yaffs1.h │ │ │ ├── yaffs_yaffs2.c │ │ │ ├── yaffs_yaffs2.h │ │ │ ├── yaffscfg.h │ │ │ ├── yaffsfs.c │ │ │ ├── yaffsfs.h │ │ │ ├── ydirectenv.h │ │ │ └── yportenv.h │ │ └── zfs │ │ │ ├── Makefile │ │ │ ├── dev.c │ │ │ ├── zfs.c │ │ │ ├── zfs_fletcher.c │ │ │ ├── zfs_lzjb.c │ │ │ └── zfs_sha256.c │ ├── include │ │ ├── .gitignore │ │ ├── ACEX1K.h │ │ ├── MCD_dma.h │ │ ├── MCD_progCheck.h │ │ ├── MCD_tasksInit.h │ │ ├── SA-1100.h │ │ ├── _exports.h │ │ ├── adc.h │ │ ├── addr_map.h │ │ ├── ahci.h │ │ ├── ali512x.h │ │ ├── altera.h │ │ ├── andestech │ │ │ └── andes_pcu.h │ │ ├── android_image.h │ │ ├── ansi.h │ │ ├── api.h │ │ ├── api_public.h │ │ ├── armcoremodule.h │ │ ├── asm-generic │ │ │ ├── atomic-long.h │ │ │ ├── bitops │ │ │ │ ├── __ffs.h │ │ │ │ ├── __fls.h │ │ │ │ ├── fls.h │ │ │ │ └── fls64.h │ │ │ ├── bitsperlong.h │ │ │ ├── global_data.h │ │ │ ├── gpio.h │ │ │ ├── ioctl.h │ │ │ ├── sections.h │ │ │ ├── signal.h │ │ │ ├── u-boot.h │ │ │ └── unaligned.h │ │ ├── asm-offsets.h │ │ ├── ata.h │ │ ├── atf_common.h │ │ ├── atmel_hlcdc.h │ │ ├── atmel_lcd.h │ │ ├── atmel_lcdc.h │ │ ├── atmel_mci.h │ │ ├── autoboot.h │ │ ├── axp152.h │ │ ├── axp209.h │ │ ├── axp221.h │ │ ├── axp809.h │ │ ├── axp818.h │ │ ├── axp_pmic.h │ │ ├── backlight.h │ │ ├── bcd.h │ │ ├── bedbug │ │ │ ├── bedbug.h │ │ │ ├── ppc.h │ │ │ ├── regs.h │ │ │ ├── tables.h │ │ │ └── type.h │ │ ├── bios_emul.h │ │ ├── bitfield.h │ │ ├── blk.h │ │ ├── bmp_layout.h │ │ ├── bootcount.h │ │ ├── bootm.h │ │ ├── bootretry.h │ │ ├── bootstage.h │ │ ├── bouncebuf.h │ │ ├── bus_vcxk.h │ │ ├── bzlib.h │ │ ├── cavium │ │ │ ├── atf.h │ │ │ ├── atf_part.h │ │ │ └── thunderx_svc.h │ │ ├── cbfs.h │ │ ├── circbuf.h │ │ ├── cli.h │ │ ├── cli_hush.h │ │ ├── clk-uclass.h │ │ ├── clk.h │ │ ├── cmd_spl.h │ │ ├── command.h │ │ ├── common.h │ │ ├── common_timing_params.h │ │ ├── commproc.h │ │ ├── compiler.h │ │ ├── config_cmd_all.h │ │ ├── config_defaults.h │ │ ├── config_distro_bootcmd.h │ │ ├── config_distro_defaults.h │ │ ├── config_fallbacks.h │ │ ├── config_fsl_chain_trust.h │ │ ├── config_phylib_all_drivers.h │ │ ├── config_uncmd_spl.h │ │ ├── configs │ │ │ ├── 10m50_devboard.h │ │ │ ├── 3c120_devboard.h │ │ │ ├── B4860QDS.h │ │ │ ├── BSC9131RDB.h │ │ │ ├── BSC9132QDS.h │ │ │ ├── C29XPCIE.h │ │ │ ├── M5208EVBE.h │ │ │ ├── M52277EVB.h │ │ │ ├── M5235EVB.h │ │ │ ├── M5249EVB.h │ │ │ ├── M5253DEMO.h │ │ │ ├── M5253EVBE.h │ │ │ ├── M5272C3.h │ │ │ ├── M5275EVB.h │ │ │ ├── M5282EVB.h │ │ │ ├── M53017EVB.h │ │ │ ├── M5329EVB.h │ │ │ ├── M5373EVB.h │ │ │ ├── M54418TWR.h │ │ │ ├── M54451EVB.h │ │ │ ├── M54455EVB.h │ │ │ ├── M5475EVB.h │ │ │ ├── M5485EVB.h │ │ │ ├── MCR3000.h │ │ │ ├── MPC8308RDB.h │ │ │ ├── MPC8313ERDB.h │ │ │ ├── MPC8315ERDB.h │ │ │ ├── MPC8323ERDB.h │ │ │ ├── MPC832XEMDS.h │ │ │ ├── MPC8349EMDS.h │ │ │ ├── MPC8349ITX.h │ │ │ ├── MPC837XEMDS.h │ │ │ ├── MPC837XERDB.h │ │ │ ├── MPC8536DS.h │ │ │ ├── MPC8540ADS.h │ │ │ ├── MPC8541CDS.h │ │ │ ├── MPC8544DS.h │ │ │ ├── MPC8548CDS.h │ │ │ ├── MPC8555CDS.h │ │ │ ├── MPC8560ADS.h │ │ │ ├── MPC8568MDS.h │ │ │ ├── MPC8569MDS.h │ │ │ ├── MPC8572DS.h │ │ │ ├── MPC8610HPCD.h │ │ │ ├── MPC8641HPCN.h │ │ │ ├── MigoR.h │ │ │ ├── P1010RDB.h │ │ │ ├── P1022DS.h │ │ │ ├── P1023RDB.h │ │ │ ├── P2041RDB.h │ │ │ ├── P3041DS.h │ │ │ ├── P4080DS.h │ │ │ ├── P5020DS.h │ │ │ ├── P5040DS.h │ │ │ ├── T102xQDS.h │ │ │ ├── T102xRDB.h │ │ │ ├── T1040QDS.h │ │ │ ├── T104xRDB.h │ │ │ ├── T208xQDS.h │ │ │ ├── T208xRDB.h │ │ │ ├── T4240QDS.h │ │ │ ├── T4240RDB.h │ │ │ ├── TQM834x.h │ │ │ ├── UCP1020.h │ │ │ ├── adp-ae3xx.h │ │ │ ├── adp-ag101p.h │ │ │ ├── advantech_dms-ba16.h │ │ │ ├── alt.h │ │ │ ├── am335x_evm.h │ │ │ ├── am335x_igep003x.h │ │ │ ├── am335x_shc.h │ │ │ ├── am335x_sl50.h │ │ │ ├── am3517_crane.h │ │ │ ├── am3517_evm.h │ │ │ ├── am43xx_evm.h │ │ │ ├── am57xx_evm.h │ │ │ ├── amcore.h │ │ │ ├── ap121.h │ │ │ ├── ap143.h │ │ │ ├── ap325rxa.h │ │ │ ├── ap_sh4a_4a.h │ │ │ ├── apalis-tk1.h │ │ │ ├── apalis_imx6.h │ │ │ ├── apalis_t30.h │ │ │ ├── apf27.h │ │ │ ├── apx4devkit.h │ │ │ ├── aristainetos-common.h │ │ │ ├── aristainetos.h │ │ │ ├── aristainetos2.h │ │ │ ├── aristainetos2b.h │ │ │ ├── armadillo-800eva.h │ │ │ ├── arndale.h │ │ │ ├── aspeed-common.h │ │ │ ├── aspenite.h │ │ │ ├── astro_mcf5373l.h │ │ │ ├── at91-sama5_common.h │ │ │ ├── at91rm9200ek.h │ │ │ ├── at91sam9260ek.h │ │ │ ├── at91sam9261ek.h │ │ │ ├── at91sam9263ek.h │ │ │ ├── at91sam9m10g45ek.h │ │ │ ├── at91sam9n12ek.h │ │ │ ├── at91sam9rlek.h │ │ │ ├── at91sam9x5ek.h │ │ │ ├── axs10x.h │ │ │ ├── baltos.h │ │ │ ├── bav335x.h │ │ │ ├── bayleybay.h │ │ │ ├── bcm23550_w1d.h │ │ │ ├── bcm28155_ap.h │ │ │ ├── bcm_ep_board.h │ │ │ ├── bcm_northstar2.h │ │ │ ├── beaver.h │ │ │ ├── bg0900.h │ │ │ ├── bk4r1.h │ │ │ ├── blanche.h │ │ │ ├── bmips_bcm3380.h │ │ │ ├── bmips_bcm63268.h │ │ │ ├── bmips_bcm6328.h │ │ │ ├── bmips_bcm6338.h │ │ │ ├── bmips_bcm6348.h │ │ │ ├── bmips_bcm6358.h │ │ │ ├── bmips_common.h │ │ │ ├── boston.h │ │ │ ├── brppt1.h │ │ │ ├── brxre1.h │ │ │ ├── bur_am335x_common.h │ │ │ ├── bur_cfg_common.h │ │ │ ├── calimain.h │ │ │ ├── cardhu.h │ │ │ ├── cei-tk1-som.h │ │ │ ├── cgtqmx6eval.h │ │ │ ├── chiliboard.h │ │ │ ├── chromebook_link.h │ │ │ ├── chromebook_samus.h │ │ │ ├── chromebox_panther.h │ │ │ ├── cl-som-am57x.h │ │ │ ├── clearfog.h │ │ │ ├── cm_fx6.h │ │ │ ├── cm_t335.h │ │ │ ├── cm_t35.h │ │ │ ├── cm_t3517.h │ │ │ ├── cm_t43.h │ │ │ ├── cm_t54.h │ │ │ ├── cobra5272.h │ │ │ ├── colibri_imx6.h │ │ │ ├── colibri_imx7.h │ │ │ ├── colibri_pxa270.h │ │ │ ├── colibri_t20.h │ │ │ ├── colibri_t30.h │ │ │ ├── colibri_vf.h │ │ │ ├── comtrend_ar5387un.h │ │ │ ├── comtrend_ct5361.h │ │ │ ├── comtrend_vr3032u.h │ │ │ ├── conga-qeval20-qa3-e3845.h │ │ │ ├── controlcenterd.h │ │ │ ├── controlcenterdc.h │ │ │ ├── corenet_ds.h │ │ │ ├── corvus.h │ │ │ ├── cougarcanyon2.h │ │ │ ├── crownbay.h │ │ │ ├── cyrus.h │ │ │ ├── da850evm.h │ │ │ ├── dalmore.h │ │ │ ├── db-88f6720.h │ │ │ ├── db-88f6820-amc.h │ │ │ ├── db-88f6820-gp.h │ │ │ ├── db-mv784mp-gp.h │ │ │ ├── dbau1x00.h │ │ │ ├── devkit3250.h │ │ │ ├── devkit8000.h │ │ │ ├── dfi-bt700.h │ │ │ ├── dns325.h │ │ │ ├── dockstar.h │ │ │ ├── dra7xx_evm.h │ │ │ ├── draco.h │ │ │ ├── dragonboard410c.h │ │ │ ├── dreamplug.h │ │ │ ├── ds109.h │ │ │ ├── ds414.h │ │ │ ├── duovero.h │ │ │ ├── e2220-1170.h │ │ │ ├── ea20.h │ │ │ ├── eb_cpu5282.h │ │ │ ├── eco5pk.h │ │ │ ├── ecovec.h │ │ │ ├── edb93xx.h │ │ │ ├── edminiv2.h │ │ │ ├── efi-x86.h │ │ │ ├── el6x_common.h │ │ │ ├── embestmx6boards.h │ │ │ ├── espresso7420.h │ │ │ ├── espt.h │ │ │ ├── etamin.h │ │ │ ├── ethernut5.h │ │ │ ├── evb_ast2500.h │ │ │ ├── evb_px5.h │ │ │ ├── evb_rk3036.h │ │ │ ├── evb_rk3288.h │ │ │ ├── evb_rk3328.h │ │ │ ├── evb_rk3399.h │ │ │ ├── evb_rv1108.h │ │ │ ├── exynos-common.h │ │ │ ├── exynos4-common.h │ │ │ ├── exynos5-common.h │ │ │ ├── exynos5-dt-common.h │ │ │ ├── exynos5250-common.h │ │ │ ├── exynos5420-common.h │ │ │ ├── exynos7420-common.h │ │ │ ├── fennec_rk3288.h │ │ │ ├── firefly-rk3288.h │ │ │ ├── flea3.h │ │ │ ├── galileo.h │ │ │ ├── ge_bx50v3.h │ │ │ ├── geekbox.h │ │ │ ├── goflexhome.h │ │ │ ├── gose.h │ │ │ ├── gplugd.h │ │ │ ├── guruplug.h │ │ │ ├── gw_ventana.h │ │ │ ├── h2200.h │ │ │ ├── harmony.h │ │ │ ├── highbank.h │ │ │ ├── hikey.h │ │ │ ├── hrcon.h │ │ │ ├── hsdk.h │ │ │ ├── huawei_hg556a.h │ │ │ ├── ib62x0.h │ │ │ ├── iconnect.h │ │ │ ├── ids8313.h │ │ │ ├── imgtec_xilfpga.h │ │ │ ├── imx27lite-common.h │ │ │ ├── imx31_phycore.h │ │ │ ├── imx6-engicam.h │ │ │ ├── imx6_logic.h │ │ │ ├── imx6_spl.h │ │ │ ├── integrator-common.h │ │ │ ├── integratorap.h │ │ │ ├── integratorcp.h │ │ │ ├── ipam390.h │ │ │ ├── jetson-tk1.h │ │ │ ├── k2e_evm.h │ │ │ ├── k2g_evm.h │ │ │ ├── k2hk_evm.h │ │ │ ├── k2l_evm.h │ │ │ ├── kc1.h │ │ │ ├── km │ │ │ │ ├── keymile-common.h │ │ │ │ ├── km-powerpc.h │ │ │ │ ├── km8309-common.h │ │ │ │ ├── km8321-common.h │ │ │ │ ├── km83xx-common.h │ │ │ │ ├── km_arm.h │ │ │ │ └── kmp204x-common.h │ │ │ ├── km8360.h │ │ │ ├── km_kirkwood.h │ │ │ ├── kmp204x.h │ │ │ ├── koelsch.h │ │ │ ├── kylin_rk3036.h │ │ │ ├── kzm9g.h │ │ │ ├── lacie_kw.h │ │ │ ├── lager.h │ │ │ ├── legoev3.h │ │ │ ├── liteboard.h │ │ │ ├── ls1012a_common.h │ │ │ ├── ls1012afrdm.h │ │ │ ├── ls1012aqds.h │ │ │ ├── ls1012ardb.h │ │ │ ├── ls1021aiot.h │ │ │ ├── ls1021aqds.h │ │ │ ├── ls1021atwr.h │ │ │ ├── ls1043a_common.h │ │ │ ├── ls1043aqds.h │ │ │ ├── ls1043ardb.h │ │ │ ├── ls1046a_common.h │ │ │ ├── ls1046aqds.h │ │ │ ├── ls1046ardb.h │ │ │ ├── ls2080a_common.h │ │ │ ├── ls2080a_emu.h │ │ │ ├── ls2080a_simu.h │ │ │ ├── ls2080aqds.h │ │ │ ├── ls2080ardb.h │ │ │ ├── lsxl.h │ │ │ ├── m28evk.h │ │ │ ├── m53evk.h │ │ │ ├── ma5d4evk.h │ │ │ ├── malta.h │ │ │ ├── maxbcm.h │ │ │ ├── mccmon6.h │ │ │ ├── mcx.h │ │ │ ├── medcom-wide.h │ │ │ ├── meesc.h │ │ │ ├── meson-gxbb-common.h │ │ │ ├── microblaze-generic.h │ │ │ ├── minnowmax.h │ │ │ ├── miqi_rk3288.h │ │ │ ├── mpc8308_p1m.h │ │ │ ├── mpr2.h │ │ │ ├── ms7720se.h │ │ │ ├── ms7722se.h │ │ │ ├── ms7750se.h │ │ │ ├── mt_ventoux.h │ │ │ ├── mv-common.h │ │ │ ├── mv-plug-common.h │ │ │ ├── mvebu_armada-37xx.h │ │ │ ├── mvebu_armada-8k.h │ │ │ ├── mx23_olinuxino.h │ │ │ ├── mx23evk.h │ │ │ ├── mx25pdk.h │ │ │ ├── mx28evk.h │ │ │ ├── mx31ads.h │ │ │ ├── mx31pdk.h │ │ │ ├── mx35pdk.h │ │ │ ├── mx51evk.h │ │ │ ├── mx53ard.h │ │ │ ├── mx53cx9020.h │ │ │ ├── mx53evk.h │ │ │ ├── mx53loco.h │ │ │ ├── mx53smd.h │ │ │ ├── mx6_common.h │ │ │ ├── mx6cuboxi.h │ │ │ ├── mx6qarm2.h │ │ │ ├── mx6qsabreauto.h │ │ │ ├── mx6sabre_common.h │ │ │ ├── mx6sabresd.h │ │ │ ├── mx6slevk.h │ │ │ ├── mx6sllevk.h │ │ │ ├── mx6sxsabreauto.h │ │ │ ├── mx6sxsabresd.h │ │ │ ├── mx6ul_14x14_evk.h │ │ │ ├── mx6ullevk.h │ │ │ ├── mx7_common.h │ │ │ ├── mx7dsabresd.h │ │ │ ├── mx7ulp_evk.h │ │ │ ├── mxs.h │ │ │ ├── nas220.h │ │ │ ├── netgear_cg3100d.h │ │ │ ├── nitrogen6x.h │ │ │ ├── nokia_rx51.h │ │ │ ├── novena.h │ │ │ ├── nsa310s.h │ │ │ ├── nsim.h │ │ │ ├── nyan-big.h │ │ │ ├── odroid-c2.h │ │ │ ├── odroid.h │ │ │ ├── odroid_xu3.h │ │ │ ├── omap3_beagle.h │ │ │ ├── omap3_cairo.h │ │ │ ├── omap3_evm.h │ │ │ ├── omap3_igep00x0.h │ │ │ ├── omap3_logic.h │ │ │ ├── omap3_overo.h │ │ │ ├── omap3_pandora.h │ │ │ ├── omap3_zoom1.h │ │ │ ├── omap4_panda.h │ │ │ ├── omap4_sdp4430.h │ │ │ ├── omap5_uevm.h │ │ │ ├── omapl138_lcdk.h │ │ │ ├── openrd.h │ │ │ ├── opos6uldev.h │ │ │ ├── origen.h │ │ │ ├── ot1200.h │ │ │ ├── p1_p2_rdb_pc.h │ │ │ ├── p1_twr.h │ │ │ ├── p2371-0000.h │ │ │ ├── p2371-2180.h │ │ │ ├── p2571.h │ │ │ ├── p2771-0000.h │ │ │ ├── paz00.h │ │ │ ├── pb1x00.h │ │ │ ├── pcm051.h │ │ │ ├── pcm052.h │ │ │ ├── pcm058.h │ │ │ ├── peach-pi.h │ │ │ ├── peach-pit.h │ │ │ ├── pengwyn.h │ │ │ ├── pepper.h │ │ │ ├── pic32mzdask.h │ │ │ ├── pico-imx6ul.h │ │ │ ├── pico-imx7d.h │ │ │ ├── picosam9g45.h │ │ │ ├── platinum.h │ │ │ ├── platinum_picon.h │ │ │ ├── platinum_titanium.h │ │ │ ├── plutux.h │ │ │ ├── pm9261.h │ │ │ ├── pm9263.h │ │ │ ├── pm9g45.h │ │ │ ├── pogo_e02.h │ │ │ ├── popmetal_rk3288.h │ │ │ ├── porter.h │ │ │ ├── puma_rk3399.h │ │ │ ├── pxa-common.h │ │ │ ├── pxm2.h │ │ │ ├── qemu-mips.h │ │ │ ├── qemu-mips64.h │ │ │ ├── qemu-ppce500.h │ │ │ ├── qemu-x86.h │ │ │ ├── r0p7734.h │ │ │ ├── r2dplus.h │ │ │ ├── r7780mp.h │ │ │ ├── rastaban.h │ │ │ ├── rcar-gen2-common.h │ │ │ ├── rcar-gen3-common.h │ │ │ ├── rk3036_common.h │ │ │ ├── rk3188_common.h │ │ │ ├── rk3288_common.h │ │ │ ├── rk3328_common.h │ │ │ ├── rk3368_common.h │ │ │ ├── rk3399_common.h │ │ │ ├── rock.h │ │ │ ├── rock2.h │ │ │ ├── rockchip-common.h │ │ │ ├── rpi.h │ │ │ ├── rsk7203.h │ │ │ ├── rsk7264.h │ │ │ ├── rsk7269.h │ │ │ ├── rut.h │ │ │ ├── rv1108_common.h │ │ │ ├── s32v234evb.h │ │ │ ├── s5p_goni.h │ │ │ ├── s5pc210_universal.h │ │ │ ├── sagem_f@st1704.h │ │ │ ├── salvator-x.h │ │ │ ├── sama5d2_ptc.h │ │ │ ├── sama5d2_xplained.h │ │ │ ├── sama5d3_xplained.h │ │ │ ├── sama5d3xek.h │ │ │ ├── sama5d4_xplained.h │ │ │ ├── sama5d4ek.h │ │ │ ├── sandbox.h │ │ │ ├── sandbox_spl.h │ │ │ ├── sansa_fuze_plus.h │ │ │ ├── sbc8349.h │ │ │ ├── sbc8548.h │ │ │ ├── sbc8641d.h │ │ │ ├── sc_sps_1.h │ │ │ ├── seaboard.h │ │ │ ├── secomx6quq7.h │ │ │ ├── sfr_nb4_ser.h │ │ │ ├── sh7752evb.h │ │ │ ├── sh7753evb.h │ │ │ ├── sh7757lcr.h │ │ │ ├── sh7763rdp.h │ │ │ ├── sh7785lcr.h │ │ │ ├── sheep_rk3368.h │ │ │ ├── sheevaplug.h │ │ │ ├── shmin.h │ │ │ ├── siemens-am33x-common.h │ │ │ ├── silk.h │ │ │ ├── smartweb.h │ │ │ ├── smdk5250.h │ │ │ ├── smdk5420.h │ │ │ ├── smdkc100.h │ │ │ ├── smdkv310.h │ │ │ ├── snapper9260.h │ │ │ ├── snapper9g45.h │ │ │ ├── sniper.h │ │ │ ├── snow.h │ │ │ ├── socfpga_arria10_socdk.h │ │ │ ├── socfpga_arria5_socdk.h │ │ │ ├── socfpga_common.h │ │ │ ├── socfpga_cyclone5_socdk.h │ │ │ ├── socfpga_de0_nano_soc.h │ │ │ ├── socfpga_de10_nano.h │ │ │ ├── socfpga_de1_soc.h │ │ │ ├── socfpga_is1.h │ │ │ ├── socfpga_mcvevk.h │ │ │ ├── socfpga_sockit.h │ │ │ ├── socfpga_socrates.h │ │ │ ├── socfpga_sr1500.h │ │ │ ├── socfpga_vining_fpga.h │ │ │ ├── socrates.h │ │ │ ├── som-6896.h │ │ │ ├── som-db5800-som-6867.h │ │ │ ├── spear-common.h │ │ │ ├── spear3xx_evb.h │ │ │ ├── spear6xx_evb.h │ │ │ ├── spring.h │ │ │ ├── stih410-b2260.h │ │ │ ├── stm32f429-discovery.h │ │ │ ├── stm32f746-disco.h │ │ │ ├── stout.h │ │ │ ├── strider.h │ │ │ ├── stv0991.h │ │ │ ├── sun4i.h │ │ │ ├── sun50i.h │ │ │ ├── sun5i.h │ │ │ ├── sun6i.h │ │ │ ├── sun7i.h │ │ │ ├── sun8i.h │ │ │ ├── sun9i.h │ │ │ ├── sunxi-common.h │ │ │ ├── suvd3.h │ │ │ ├── t4qds.h │ │ │ ├── tam3517-common.h │ │ │ ├── tao3530.h │ │ │ ├── taurus.h │ │ │ ├── tb100.h │ │ │ ├── tbs2910.h │ │ │ ├── tec-ng.h │ │ │ ├── tec.h │ │ │ ├── tegra-common-post.h │ │ │ ├── tegra-common-usb-gadget.h │ │ │ ├── tegra-common.h │ │ │ ├── tegra114-common.h │ │ │ ├── tegra124-common.h │ │ │ ├── tegra186-common.h │ │ │ ├── tegra20-common.h │ │ │ ├── tegra210-common.h │ │ │ ├── tegra30-common.h │ │ │ ├── theadorable.h │ │ │ ├── thuban.h │ │ │ ├── thunderx_88xx.h │ │ │ ├── ti814x_evm.h │ │ │ ├── ti816x_evm.h │ │ │ ├── ti_am335x_common.h │ │ │ ├── ti_armv7_common.h │ │ │ ├── ti_armv7_keystone2.h │ │ │ ├── ti_armv7_omap.h │ │ │ ├── ti_omap3_common.h │ │ │ ├── ti_omap4_common.h │ │ │ ├── ti_omap5_common.h │ │ │ ├── tinker_rk3288.h │ │ │ ├── titanium.h │ │ │ ├── topic_miami.h │ │ │ ├── tplink_wdr4300.h │ │ │ ├── tqma6.h │ │ │ ├── tqma6_mba6.h │ │ │ ├── tqma6_wru4.h │ │ │ ├── trats.h │ │ │ ├── trats2.h │ │ │ ├── tricorder.h │ │ │ ├── trimslice.h │ │ │ ├── ts4600.h │ │ │ ├── ts4800.h │ │ │ ├── tuxx1.h │ │ │ ├── twister.h │ │ │ ├── udoo.h │ │ │ ├── udoo_neo.h │ │ │ ├── uniphier.h │ │ │ ├── usb_a9263.h │ │ │ ├── usbarmory.h │ │ │ ├── vct.h │ │ │ ├── ve8313.h │ │ │ ├── venice2.h │ │ │ ├── ventana.h │ │ │ ├── vexpress_aemv8a.h │ │ │ ├── vexpress_ca15_tc2.h │ │ │ ├── vexpress_ca5x2.h │ │ │ ├── vexpress_ca9x4.h │ │ │ ├── vexpress_common.h │ │ │ ├── veyron.h │ │ │ ├── vf610twr.h │ │ │ ├── vinco.h │ │ │ ├── vining_2000.h │ │ │ ├── vme8349.h │ │ │ ├── wandboard.h │ │ │ ├── warp.h │ │ │ ├── warp7.h │ │ │ ├── woodburn.h │ │ │ ├── woodburn_common.h │ │ │ ├── woodburn_sd.h │ │ │ ├── work_92105.h │ │ │ ├── x600.h │ │ │ ├── x86-chromebook.h │ │ │ ├── x86-common.h │ │ │ ├── xfi3.h │ │ │ ├── xilinx-ppc.h │ │ │ ├── xilinx_zynqmp.h │ │ │ ├── xilinx_zynqmp_ep.h │ │ │ ├── xilinx_zynqmp_zc1751_xm015_dc1.h │ │ │ ├── xilinx_zynqmp_zc1751_xm016_dc2.h │ │ │ ├── xilinx_zynqmp_zc1751_xm019_dc5.h │ │ │ ├── xilinx_zynqmp_zcu102.h │ │ │ ├── xpedite517x.h │ │ │ ├── xpedite520x.h │ │ │ ├── xpedite537x.h │ │ │ ├── xpedite550x.h │ │ │ ├── xpress.h │ │ │ ├── xtfpga.h │ │ │ ├── zc5202.h │ │ │ ├── zc5601.h │ │ │ ├── zipitz2.h │ │ │ ├── zmx25.h │ │ │ ├── zynq-common.h │ │ │ ├── zynq_zc70x.h │ │ │ └── zynq_zybo.h │ │ ├── console.h │ │ ├── cortina.h │ │ ├── cpsw.h │ │ ├── cpu.h │ │ ├── cramfs │ │ │ └── cramfs_fs.h │ │ ├── crc.h │ │ ├── cros_ec.h │ │ ├── cros_ec_message.h │ │ ├── dataflash.h │ │ ├── ddr_spd.h │ │ ├── debug_uart.h │ │ ├── dfu.h │ │ ├── dialog_pmic.h │ │ ├── display.h │ │ ├── display_options.h │ │ ├── div64.h │ │ ├── dm-demo.h │ │ ├── dm.h │ │ ├── dm │ │ │ ├── device-internal.h │ │ │ ├── device.h │ │ │ ├── fdtaddr.h │ │ │ ├── lists.h │ │ │ ├── of.h │ │ │ ├── of_access.h │ │ │ ├── of_addr.h │ │ │ ├── of_extra.h │ │ │ ├── ofnode.h │ │ │ ├── pinctrl.h │ │ │ ├── platdata.h │ │ │ ├── platform_data │ │ │ │ ├── lpc32xx_hsuart.h │ │ │ │ ├── net_ethoc.h │ │ │ │ ├── serial_bcm283x_mu.h │ │ │ │ ├── serial_coldfire.h │ │ │ │ ├── serial_mxc.h │ │ │ │ ├── serial_pl01x.h │ │ │ │ ├── serial_pxa.h │ │ │ │ ├── serial_sh.h │ │ │ │ ├── serial_stm32.h │ │ │ │ └── serial_stm32x7.h │ │ │ ├── read.h │ │ │ ├── root.h │ │ │ ├── test.h │ │ │ ├── uclass-id.h │ │ │ ├── uclass-internal.h │ │ │ ├── uclass.h │ │ │ └── util.h │ │ ├── dm9000.h │ │ ├── dma.h │ │ ├── dp83848.h │ │ ├── ds1722.h │ │ ├── dt-bindings │ │ │ ├── clk │ │ │ │ └── ti-dra7-atl.h │ │ │ ├── clock │ │ │ │ ├── ast2500-scu.h │ │ │ │ ├── at91.h │ │ │ │ ├── bcm2835-aux.h │ │ │ │ ├── bcm2835.h │ │ │ │ ├── bcm3380-clock.h │ │ │ │ ├── bcm63268-clock.h │ │ │ │ ├── bcm6328-clock.h │ │ │ │ ├── bcm6338-clock.h │ │ │ │ ├── bcm6348-clock.h │ │ │ │ ├── bcm6358-clock.h │ │ │ │ ├── boston-clock.h │ │ │ │ ├── exynos7420-clk.h │ │ │ │ ├── gxbb-aoclkc.h │ │ │ │ ├── gxbb-clkc.h │ │ │ │ ├── hi6220-clock.h │ │ │ │ ├── imx5-clock.h │ │ │ │ ├── imx6qdl-clock.h │ │ │ │ ├── imx6sl-clock.h │ │ │ │ ├── imx6sll-clock.h │ │ │ │ ├── imx6sx-clock.h │ │ │ │ ├── imx6ul-clock.h │ │ │ │ ├── imx7d-clock.h │ │ │ │ ├── imx7ulp-clock.h │ │ │ │ ├── maxim,max77802.h │ │ │ │ ├── microchip,clock.h │ │ │ │ ├── rk3036-cru.h │ │ │ │ ├── rk3066a-cru.h │ │ │ │ ├── rk3188-cru-common.h │ │ │ │ ├── rk3188-cru.h │ │ │ │ ├── rk3288-cru.h │ │ │ │ ├── rk3328-cru.h │ │ │ │ ├── rk3368-cru.h │ │ │ │ ├── rk3399-cru.h │ │ │ │ ├── rockchip,rk808.h │ │ │ │ ├── rv1108-cru.h │ │ │ │ ├── stih407-clks.h │ │ │ │ ├── stih410-clks.h │ │ │ │ ├── sun4i-a10-pll2.h │ │ │ │ ├── sun50i-a64-ccu.h │ │ │ │ ├── sun8i-h3-ccu.h │ │ │ │ ├── sun8i-v3s-ccu.h │ │ │ │ ├── tegra114-car.h │ │ │ │ ├── tegra124-car-common.h │ │ │ │ ├── tegra124-car.h │ │ │ │ ├── tegra186-clock.h │ │ │ │ ├── tegra20-car.h │ │ │ │ ├── tegra210-car.h │ │ │ │ └── tegra30-car.h │ │ │ ├── comphy │ │ │ │ └── comphy_data.h │ │ │ ├── dma │ │ │ │ ├── at91.h │ │ │ │ └── sun4i-a10.h │ │ │ ├── gpio │ │ │ │ ├── gpio.h │ │ │ │ ├── meson-gxbb-gpio.h │ │ │ │ ├── tegra-gpio.h │ │ │ │ ├── tegra186-gpio.h │ │ │ │ └── x86-gpio.h │ │ │ ├── input │ │ │ │ ├── input.h │ │ │ │ └── linux-event-codes.h │ │ │ ├── interrupt-controller │ │ │ │ ├── arm-gic.h │ │ │ │ ├── irq-st.h │ │ │ │ ├── irq.h │ │ │ │ └── mips-gic.h │ │ │ ├── interrupt-router │ │ │ │ └── intel-irq.h │ │ │ ├── mailbox │ │ │ │ └── tegra186-hsp.h │ │ │ ├── media │ │ │ │ └── omap3-isp.h │ │ │ ├── memory │ │ │ │ ├── stm32-sdram.h │ │ │ │ ├── tegra114-mc.h │ │ │ │ ├── tegra124-mc.h │ │ │ │ ├── tegra210-mc.h │ │ │ │ └── tegra30-mc.h │ │ │ ├── mfd │ │ │ │ └── st-lpc.h │ │ │ ├── mrc │ │ │ │ └── quark.h │ │ │ ├── net │ │ │ │ └── ti-dp83867.h │ │ │ ├── phy │ │ │ │ └── phy.h │ │ │ ├── pinctrl │ │ │ │ ├── am33xx.h │ │ │ │ ├── am43xx.h │ │ │ │ ├── at91.h │ │ │ │ ├── bcm2835.h │ │ │ │ ├── dra.h │ │ │ │ ├── omap.h │ │ │ │ ├── pinctrl-tegra-xusb.h │ │ │ │ ├── pinctrl-tegra.h │ │ │ │ ├── rockchip.h │ │ │ │ ├── stm32f746-pinfunc.h │ │ │ │ └── sun4i-a10.h │ │ │ ├── pmic │ │ │ │ └── sandbox_pmic.h │ │ │ ├── power-domain │ │ │ │ ├── bcm63268-power-domain.h │ │ │ │ ├── bcm6328-power-domain.h │ │ │ │ └── rk3288.h │ │ │ ├── power │ │ │ │ ├── raspberrypi-power.h │ │ │ │ ├── rk3399-power.h │ │ │ │ └── tegra186-powergate.h │ │ │ ├── pwm │ │ │ │ └── pwm.h │ │ │ ├── regulator │ │ │ │ └── maxim,max77802.h │ │ │ ├── reset │ │ │ │ ├── altr,rst-mgr-a10.h │ │ │ │ ├── altr,rst-mgr.h │ │ │ │ ├── amlogic,meson-gxbb-reset.h │ │ │ │ ├── ast2500-reset.h │ │ │ │ ├── bcm3380-reset.h │ │ │ │ ├── bcm63268-reset.h │ │ │ │ ├── bcm6328-reset.h │ │ │ │ ├── bcm6338-reset.h │ │ │ │ ├── bcm6348-reset.h │ │ │ │ ├── bcm6358-reset.h │ │ │ │ ├── gxbb-aoclkc.h │ │ │ │ ├── stih407-resets.h │ │ │ │ ├── sun50i-a64-ccu.h │ │ │ │ ├── sun8i-h3-ccu.h │ │ │ │ ├── sun8i-v3s-ccu.h │ │ │ │ ├── tegra124-car.h │ │ │ │ └── tegra186-reset.h │ │ │ ├── sound │ │ │ │ └── tlv320aic31xx-micbias.h │ │ │ ├── thermal │ │ │ │ ├── tegra124-soctherm.h │ │ │ │ └── thermal.h │ │ │ └── video │ │ │ │ └── rk3288.h │ │ ├── dt-structs.h │ │ ├── dw_hdmi.h │ │ ├── dwc3-omap-uboot.h │ │ ├── dwc3-uboot.h │ │ ├── dwmmc.h │ │ ├── e500.h │ │ ├── ec_commands.h │ │ ├── edid.h │ │ ├── eeprom_field.h │ │ ├── eeprom_layout.h │ │ ├── efi.h │ │ ├── efi_api.h │ │ ├── efi_loader.h │ │ ├── elf.h │ │ ├── env_attr.h │ │ ├── env_callback.h │ │ ├── env_default.h │ │ ├── env_flags.h │ │ ├── environment.h │ │ ├── environment │ │ │ └── ti │ │ │ │ ├── boot.h │ │ │ │ ├── dfu.h │ │ │ │ ├── mmc.h │ │ │ │ └── spi.h │ │ ├── errno.h │ │ ├── ethsw.h │ │ ├── exports.h │ │ ├── ext4fs.h │ │ ├── ext_common.h │ │ ├── exynos_lcd.h │ │ ├── faraday │ │ │ ├── ftahbc020s.h │ │ │ ├── ftpci100.h │ │ │ ├── ftpmu010.h │ │ │ ├── ftsdc010.h │ │ │ ├── ftsdmc020.h │ │ │ ├── ftsdmc021.h │ │ │ ├── ftsmc020.h │ │ │ ├── fttmr010.h │ │ │ └── ftwdt010_wdt.h │ │ ├── fastboot.h │ │ ├── fat.h │ │ ├── fb_mmc.h │ │ ├── fb_nand.h │ │ ├── fdt.h │ │ ├── fdt_simplefb.h │ │ ├── fdt_support.h │ │ ├── fdtdec.h │ │ ├── fis.h │ │ ├── flash.h │ │ ├── fm_eth.h │ │ ├── fpga.h │ │ ├── fs.h │ │ ├── fsl-mc │ │ │ ├── fsl_dpaa_fd.h │ │ │ ├── fsl_dpbp.h │ │ │ ├── fsl_dpio.h │ │ │ ├── fsl_dpmac.h │ │ │ ├── fsl_dpmng.h │ │ │ ├── fsl_dpni.h │ │ │ ├── fsl_dprc.h │ │ │ ├── fsl_mc.h │ │ │ ├── fsl_mc_cmd.h │ │ │ ├── fsl_mc_private.h │ │ │ ├── fsl_mc_sys.h │ │ │ ├── fsl_qbman_base.h │ │ │ ├── fsl_qbman_portal.h │ │ │ └── ldpaa_wriop.h │ │ ├── fsl_csu.h │ │ ├── fsl_dcu_fb.h │ │ ├── fsl_ddr.h │ │ ├── fsl_ddr_dimm_params.h │ │ ├── fsl_ddr_sdram.h │ │ ├── fsl_ddrc_version.h │ │ ├── fsl_devdis.h │ │ ├── fsl_diu_fb.h │ │ ├── fsl_dspi.h │ │ ├── fsl_dtsec.h │ │ ├── fsl_errata.h │ │ ├── fsl_esdhc.h │ │ ├── fsl_fman.h │ │ ├── fsl_ifc.h │ │ ├── fsl_immap.h │ │ ├── fsl_lpuart.h │ │ ├── fsl_mdio.h │ │ ├── fsl_memac.h │ │ ├── fsl_mmdc.h │ │ ├── fsl_pmic.h │ │ ├── fsl_qe.h │ │ ├── fsl_sec.h │ │ ├── fsl_sec_mon.h │ │ ├── fsl_secboot_err.h │ │ ├── fsl_sfp.h │ │ ├── fsl_tgec.h │ │ ├── fsl_usb.h │ │ ├── fsl_validate.h │ │ ├── fsl_wdog.h │ │ ├── fuse.h │ │ ├── g_dnl.h │ │ ├── gdsys_fpga.h │ │ ├── generic-phy.h │ │ ├── gt64120.h │ │ ├── hash.h │ │ ├── hw_sha.h │ │ ├── hwconfig.h │ │ ├── i2c.h │ │ ├── i2c_eeprom.h │ │ ├── i2s.h │ │ ├── i8042.h │ │ ├── ide.h │ │ ├── image-sparse.h │ │ ├── image.h │ │ ├── imx_thermal.h │ │ ├── init_helpers.h │ │ ├── initcall.h │ │ ├── input.h │ │ ├── inttypes.h │ │ ├── iomux.h │ │ ├── ioports.h │ │ ├── iotrace.h │ │ ├── ipu_pixfmt.h │ │ ├── jffs2 │ │ │ ├── compr_rubin.h │ │ │ ├── jffs2.h │ │ │ ├── jffs2_1pass.h │ │ │ ├── load_kernel.h │ │ │ └── mini_inflate.h │ │ ├── key_matrix.h │ │ ├── keyboard.h │ │ ├── kgdb.h │ │ ├── lattice.h │ │ ├── lcd.h │ │ ├── lcd_console.h │ │ ├── lcdvideo.h │ │ ├── ld9040.h │ │ ├── led-display.h │ │ ├── led.h │ │ ├── libata.h │ │ ├── libfdt.h │ │ ├── libfdt_env.h │ │ ├── libtizen.h │ │ ├── linker_lists.h │ │ ├── linux │ │ │ ├── apm_bios.h │ │ │ ├── arm-smccc.h │ │ │ ├── bch.h │ │ │ ├── bitops.h │ │ │ ├── bitrev.h │ │ │ ├── bug.h │ │ │ ├── byteorder │ │ │ │ ├── big_endian.h │ │ │ │ ├── generic.h │ │ │ │ ├── little_endian.h │ │ │ │ └── swab.h │ │ │ ├── compat.h │ │ │ ├── compiler-clang.h │ │ │ ├── compiler-gcc.h │ │ │ ├── compiler-intel.h │ │ │ ├── compiler.h │ │ │ ├── crc32.h │ │ │ ├── crc7.h │ │ │ ├── crc8.h │ │ │ ├── ctype.h │ │ │ ├── delay.h │ │ │ ├── drm_dp_helper.h │ │ │ ├── edd.h │ │ │ ├── err.h │ │ │ ├── errno.h │ │ │ ├── ethtool.h │ │ │ ├── fb.h │ │ │ ├── immap_qe.h │ │ │ ├── input.h │ │ │ ├── io.h │ │ │ ├── ioctl.h │ │ │ ├── iopoll.h │ │ │ ├── ioport.h │ │ │ ├── kbuild.h │ │ │ ├── kconfig.h │ │ │ ├── kernel.h │ │ │ ├── linkage.h │ │ │ ├── linux_string.h │ │ │ ├── list.h │ │ │ ├── list_sort.h │ │ │ ├── log2.h │ │ │ ├── lzo.h │ │ │ ├── math64.h │ │ │ ├── mbus.h │ │ │ ├── mc146818rtc.h │ │ │ ├── mdio.h │ │ │ ├── mii.h │ │ │ ├── mtd │ │ │ │ ├── bbm.h │ │ │ │ ├── concat.h │ │ │ │ ├── doc2000.h │ │ │ │ ├── flashchip.h │ │ │ │ ├── fsl_upm.h │ │ │ │ ├── fsmc_nand.h │ │ │ │ ├── mtd.h │ │ │ │ ├── nand.h │ │ │ │ ├── nand_bch.h │ │ │ │ ├── nand_ecc.h │ │ │ │ ├── ndfc.h │ │ │ │ ├── omap_elm.h │ │ │ │ ├── omap_gpmc.h │ │ │ │ ├── onenand.h │ │ │ │ ├── onenand_regs.h │ │ │ │ ├── partitions.h │ │ │ │ ├── samsung_onenand.h │ │ │ │ ├── st_smi.h │ │ │ │ └── ubi.h │ │ │ ├── netdevice.h │ │ │ ├── poison.h │ │ │ ├── posix_types.h │ │ │ ├── psci.h │ │ │ ├── rbtree.h │ │ │ ├── rbtree_augmented.h │ │ │ ├── screen_info.h │ │ │ ├── serial_reg.h │ │ │ ├── sizes.h │ │ │ ├── stat.h │ │ │ ├── stddef.h │ │ │ ├── string.h │ │ │ ├── stringify.h │ │ │ ├── time.h │ │ │ ├── typecheck.h │ │ │ ├── types.h │ │ │ ├── unaligned │ │ │ │ ├── access_ok.h │ │ │ │ ├── be_byteshift.h │ │ │ │ ├── generic.h │ │ │ │ └── le_byteshift.h │ │ │ └── usb │ │ │ │ ├── at91_udc.h │ │ │ │ ├── atmel_usba_udc.h │ │ │ │ ├── cdc.h │ │ │ │ ├── ch9.h │ │ │ │ ├── composite.h │ │ │ │ ├── dwc3-omap.h │ │ │ │ ├── dwc3.h │ │ │ │ ├── gadget.h │ │ │ │ ├── musb.h │ │ │ │ ├── otg.h │ │ │ │ ├── xhci-fsl.h │ │ │ │ └── xhci-omap.h │ │ ├── linux_logo.h │ │ ├── lmb.h │ │ ├── logbuff.h │ │ ├── lxt971a.h │ │ ├── lynxkdi.h │ │ ├── lzma │ │ │ ├── LzmaDec.h │ │ │ ├── LzmaTools.h │ │ │ └── LzmaTypes.h │ │ ├── mailbox-uclass.h │ │ ├── mailbox.h │ │ ├── malloc.h │ │ ├── mapmem.h │ │ ├── mb862xx.h │ │ ├── mc13783.h │ │ ├── mc13892.h │ │ ├── mc34704.h │ │ ├── mc9sdz60.h │ │ ├── memalign.h │ │ ├── membuff.h │ │ ├── menu.h │ │ ├── micrel.h │ │ ├── mii_phy.h │ │ ├── miiphy.h │ │ ├── mipi_display.h │ │ ├── misc.h │ │ ├── mk48t59.h │ │ ├── mmc.h │ │ ├── mpc106.h │ │ ├── mpc83xx.h │ │ ├── mpc85xx.h │ │ ├── mpc86xx.h │ │ ├── mpc8xx.h │ │ ├── mpc8xx_irq.h │ │ ├── msc01.h │ │ ├── mtd.h │ │ ├── mtd │ │ │ ├── cfi_flash.h │ │ │ ├── mtd-abi.h │ │ │ └── ubi-user.h │ │ ├── mtd_node.h │ │ ├── mv88e6352.h │ │ ├── mvebu_mmc.h │ │ ├── mvmfp.h │ │ ├── nand.h │ │ ├── net.h │ │ ├── net │ │ │ └── tftp.h │ │ ├── netdev.h │ │ ├── ns16550.h │ │ ├── ns87308.h │ │ ├── nuvoton_nct6102d.h │ │ ├── of_live.h │ │ ├── onenand_uboot.h │ │ ├── os.h │ │ ├── palmas.h │ │ ├── panel.h │ │ ├── part.h │ │ ├── part_efi.h │ │ ├── pc_keyb.h │ │ ├── pca953x.h │ │ ├── pca9564.h │ │ ├── pca9698.h │ │ ├── pch.h │ │ ├── pci.h │ │ ├── pci_gt64120.h │ │ ├── pci_ids.h │ │ ├── pci_msc01.h │ │ ├── pci_rom.h │ │ ├── pcmcia.h │ │ ├── pcmcia │ │ │ └── yenta.h │ │ ├── pe.h │ │ ├── phy.h │ │ ├── phys2bus.h │ │ ├── physmem.h │ │ ├── post.h │ │ ├── power-domain-uclass.h │ │ ├── power-domain.h │ │ ├── power │ │ │ ├── act8846_pmic.h │ │ │ ├── as3722.h │ │ │ ├── battery.h │ │ │ ├── fg_battery_cell_params.h │ │ │ ├── hi6553_pmic.h │ │ │ ├── lp873x.h │ │ │ ├── lp87565.h │ │ │ ├── ltc3676_pmic.h │ │ │ ├── max17042_fg.h │ │ │ ├── max77686_pmic.h │ │ │ ├── max77693_fg.h │ │ │ ├── max77693_muic.h │ │ │ ├── max77693_pmic.h │ │ │ ├── max77696_pmic.h │ │ │ ├── max8997_muic.h │ │ │ ├── max8997_pmic.h │ │ │ ├── max8998_pmic.h │ │ │ ├── mc34vr500_pmic.h │ │ │ ├── palmas.h │ │ │ ├── pfuze100_pmic.h │ │ │ ├── pfuze3000_pmic.h │ │ │ ├── pmic.h │ │ │ ├── power_chrg.h │ │ │ ├── regulator.h │ │ │ ├── rk8xx_pmic.h │ │ │ ├── rn5t567_pmic.h │ │ │ ├── s2mps11.h │ │ │ ├── s5m8767.h │ │ │ ├── sandbox_pmic.h │ │ │ ├── tps62362.h │ │ │ ├── tps65090.h │ │ │ ├── tps65217.h │ │ │ ├── tps65218.h │ │ │ └── tps65910.h │ │ ├── ppc_asm.tmpl │ │ ├── ppc_defs.h │ │ ├── ps2mult.h │ │ ├── pwm.h │ │ ├── pwrseq.h │ │ ├── pxa_lcd.h │ │ ├── qfw.h │ │ ├── radeon.h │ │ ├── ram.h │ │ ├── rc4.h │ │ ├── regmap.h │ │ ├── reiserfs.h │ │ ├── relocate.h │ │ ├── remoteproc.h │ │ ├── reset-uclass.h │ │ ├── reset.h │ │ ├── rtc.h │ │ ├── rtc_def.h │ │ ├── s6e63d6.h │ │ ├── s_record.h │ │ ├── samsung-usb-phy-uboot.h │ │ ├── samsung │ │ │ ├── exynos5-dt-types.h │ │ │ └── misc.h │ │ ├── sandbox-adc.h │ │ ├── sandboxblockdev.h │ │ ├── sandboxfs.h │ │ ├── sata.h │ │ ├── scf0403_lcd.h │ │ ├── scsi.h │ │ ├── sdhci.h │ │ ├── search.h │ │ ├── sed156x.h │ │ ├── serial.h │ │ ├── sh_pfc.h │ │ ├── sh_tmu.h │ │ ├── sja1000.h │ │ ├── slre.h │ │ ├── sm501.h │ │ ├── smbios.h │ │ ├── smsc_lpc47m.h │ │ ├── smsc_sio1007.h │ │ ├── sound.h │ │ ├── sparse_defs.h │ │ ├── sparse_format.h │ │ ├── spartan2.h │ │ ├── spartan3.h │ │ ├── spd.h │ │ ├── spd_sdram.h │ │ ├── spi.h │ │ ├── spi_flash.h │ │ ├── spl.h │ │ ├── splash.h │ │ ├── spmi │ │ │ └── spmi.h │ │ ├── status_led.h │ │ ├── stdio_dev.h │ │ ├── stdlib.h │ │ ├── stratixII.h │ │ ├── sx151x.h │ │ ├── sy8106a.h │ │ ├── sym53c8xx.h │ │ ├── synopsys │ │ │ └── dwcddr21mctl.h │ │ ├── syscon.h │ │ ├── sysreset.h │ │ ├── tables_csum.h │ │ ├── tca642x.h │ │ ├── tee │ │ │ └── optee.h │ │ ├── tegra-kbc.h │ │ ├── test │ │ │ ├── env.h │ │ │ ├── overlay.h │ │ │ ├── suites.h │ │ │ ├── test.h │ │ │ └── ut.h │ │ ├── thermal.h │ │ ├── thor.h │ │ ├── ti-usb-phy-uboot.h │ │ ├── time.h │ │ ├── timer.h │ │ ├── timestamp.h │ │ ├── tmu.h │ │ ├── tpm.h │ │ ├── tps6586x.h │ │ ├── tsec.h │ │ ├── tsi108.h │ │ ├── tsi148.h │ │ ├── twl4030.h │ │ ├── twl6030.h │ │ ├── u-boot │ │ │ ├── crc.h │ │ │ ├── md5.h │ │ │ ├── rsa-checksum.h │ │ │ ├── rsa-mod-exp.h │ │ │ ├── rsa.h │ │ │ ├── sha1.h │ │ │ ├── sha256.h │ │ │ ├── u-boot.lds.h │ │ │ └── zlib.h │ │ ├── ubi_uboot.h │ │ ├── ubifs_uboot.h │ │ ├── ubispl.h │ │ ├── uboot_aes.h │ │ ├── universe.h │ │ ├── usb.h │ │ ├── usb │ │ │ ├── ci_udc.h │ │ │ ├── designware_udc.h │ │ │ ├── dwc2_udc.h │ │ │ ├── ehci-ci.h │ │ │ ├── fotg210.h │ │ │ ├── fusbh200.h │ │ │ ├── lin_gadget_compat.h │ │ │ ├── pxa27x_udc.h │ │ │ ├── udc.h │ │ │ └── ulpi.h │ │ ├── usb_cdc_acm.h │ │ ├── usb_defs.h │ │ ├── usb_ether.h │ │ ├── usb_mass_storage.h │ │ ├── usbdescriptors.h │ │ ├── usbdevice.h │ │ ├── usbroothubdes.h │ │ ├── uuid.h │ │ ├── vbe.h │ │ ├── version.h │ │ ├── video.h │ │ ├── video_bridge.h │ │ ├── video_console.h │ │ ├── video_easylogo.h │ │ ├── video_fb.h │ │ ├── video_font.h │ │ ├── video_font_4x6.h │ │ ├── video_font_data.h │ │ ├── video_logo.h │ │ ├── virtex2.h │ │ ├── vsc7385.h │ │ ├── vsc9953.h │ │ ├── vsprintf.h │ │ ├── vxworks.h │ │ ├── w83c553f.h │ │ ├── wait_bit.h │ │ ├── watchdog.h │ │ ├── wdt.h │ │ ├── winbond_w83627.h │ │ ├── xilinx.h │ │ ├── xyzModem.h │ │ ├── zfs │ │ │ ├── dmu.h │ │ │ ├── dmu_objset.h │ │ │ ├── dnode.h │ │ │ ├── dsl_dataset.h │ │ │ ├── dsl_dir.h │ │ │ ├── sa_impl.h │ │ │ ├── spa.h │ │ │ ├── uberblock_impl.h │ │ │ ├── vdev_impl.h │ │ │ ├── zap_impl.h │ │ │ ├── zap_leaf.h │ │ │ ├── zfs.h │ │ │ ├── zfs_acl.h │ │ │ ├── zfs_znode.h │ │ │ ├── zil.h │ │ │ ├── zio.h │ │ │ └── zio_checksum.h │ │ ├── zfs_common.h │ │ ├── zynqmppl.h │ │ └── zynqpl.h │ ├── lib │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── addr_map.c │ │ ├── aes.c │ │ ├── asm-offsets.c │ │ ├── bch.c │ │ ├── bitrev.c │ │ ├── bzip2 │ │ │ ├── Makefile │ │ │ ├── bzlib.c │ │ │ ├── bzlib_blocksort.c │ │ │ ├── bzlib_compress.c │ │ │ ├── bzlib_crctable.c │ │ │ ├── bzlib_decompress.c │ │ │ ├── bzlib_huffman.c │ │ │ ├── bzlib_private.h │ │ │ └── bzlib_randtable.c │ │ ├── circbuf.c │ │ ├── crc16.c │ │ ├── crc32.c │ │ ├── crc7.c │ │ ├── crc8.c │ │ ├── ctype.c │ │ ├── dhry │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cmd_dhry.c │ │ │ ├── dhry.h │ │ │ ├── dhry_1.c │ │ │ └── dhry_2.c │ │ ├── display_options.c │ │ ├── div64.c │ │ ├── efi │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── efi.c │ │ │ ├── efi_app.c │ │ │ ├── efi_info.c │ │ │ └── efi_stub.c │ │ ├── efi_loader │ │ │ ├── .gitignore │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── efi_boottime.c │ │ │ ├── efi_console.c │ │ │ ├── efi_disk.c │ │ │ ├── efi_gop.c │ │ │ ├── efi_image_loader.c │ │ │ ├── efi_memory.c │ │ │ ├── efi_net.c │ │ │ ├── efi_runtime.c │ │ │ ├── efi_smbios.c │ │ │ └── helloworld.c │ │ ├── errno.c │ │ ├── errno_str.c │ │ ├── fdtdec.c │ │ ├── fdtdec_common.c │ │ ├── fdtdec_test.c │ │ ├── gunzip.c │ │ ├── gzip.c │ │ ├── hang.c │ │ ├── hashtable.c │ │ ├── initcall.c │ │ ├── ldiv.c │ │ ├── libfdt │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── fdt.c │ │ │ ├── fdt.h │ │ │ ├── fdt_addresses.c │ │ │ ├── fdt_empty_tree.c │ │ │ ├── fdt_overlay.c │ │ │ ├── fdt_region.c │ │ │ ├── fdt_ro.c │ │ │ ├── fdt_rw.c │ │ │ ├── fdt_strerror.c │ │ │ ├── fdt_sw.c │ │ │ ├── fdt_wip.c │ │ │ ├── libfdt.h │ │ │ ├── libfdt_internal.h │ │ │ ├── pylibfdt │ │ │ │ └── setup.py │ │ │ └── test_libfdt.py │ │ ├── linux_compat.c │ │ ├── linux_string.c │ │ ├── list_sort.c │ │ ├── lmb.c │ │ ├── lz4.c │ │ ├── lz4_wrapper.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 │ │ ├── membuff.c │ │ ├── net_utils.c │ │ ├── of_live.c │ │ ├── panic.c │ │ ├── physmem.c │ │ ├── qsort.c │ │ ├── rand.c │ │ ├── rbtree.c │ │ ├── rc4.c │ │ ├── rsa │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── rsa-checksum.c │ │ │ ├── rsa-mod-exp.c │ │ │ ├── rsa-sign.c │ │ │ └── rsa-verify.c │ │ ├── sha1.c │ │ ├── sha256.c │ │ ├── slre.c │ │ ├── smbios.c │ │ ├── string.c │ │ ├── strmhz.c │ │ ├── strto.c │ │ ├── tables_csum.c │ │ ├── time.c │ │ ├── tiny-printf.c │ │ ├── tizen │ │ │ ├── Makefile │ │ │ ├── tizen.c │ │ │ ├── tizen_logo_16bpp.h │ │ │ └── tizen_logo_16bpp_gzip.h │ │ ├── tpm.c │ │ ├── uuid.c │ │ ├── vsprintf.c │ │ └── zlib │ │ │ ├── Makefile │ │ │ ├── adler32.c │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── zlib.c │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ ├── net │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── arp.c │ │ ├── arp.h │ │ ├── bootp.c │ │ ├── bootp.h │ │ ├── cdp.c │ │ ├── cdp.h │ │ ├── checksum.c │ │ ├── dns.c │ │ ├── dns.h │ │ ├── eth-uclass.c │ │ ├── eth_common.c │ │ ├── eth_internal.h │ │ ├── eth_legacy.c │ │ ├── link_local.c │ │ ├── link_local.h │ │ ├── net.c │ │ ├── net_rand.h │ │ ├── nfs.c │ │ ├── nfs.h │ │ ├── ping.c │ │ ├── ping.h │ │ ├── rarp.c │ │ ├── rarp.h │ │ ├── sntp.c │ │ ├── sntp.h │ │ └── tftp.c │ ├── post │ │ ├── Makefile │ │ ├── cpu │ │ │ └── mpc83xx │ │ │ │ ├── Makefile │ │ │ │ └── ecc.c │ │ ├── drivers │ │ │ ├── Makefile │ │ │ ├── flash.c │ │ │ ├── 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 │ │ │ │ ├── darwin-ldouble.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 │ │ └── tests.c │ ├── scripts │ │ ├── .gitignore │ │ ├── Kbuild.include │ │ ├── Kconfig │ │ ├── Lindent │ │ ├── Makefile │ │ ├── Makefile.autoconf │ │ ├── Makefile.build │ │ ├── Makefile.clean │ │ ├── Makefile.extrawarn │ │ ├── Makefile.host │ │ ├── Makefile.lib │ │ ├── Makefile.spl │ │ ├── Makefile.uncmd_spl │ │ ├── basic │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── fixdep.c │ │ ├── bin2c.c │ │ ├── binutils-version.sh │ │ ├── build-whitelist.sh │ │ ├── check-config.sh │ │ ├── checkpatch.pl │ │ ├── checkstack.pl │ │ ├── cleanpatch │ │ ├── coccinelle │ │ │ └── net │ │ │ │ └── mdio_register.cocci │ │ ├── config_whitelist.txt │ │ ├── coreboot.sed │ │ ├── docproc.c │ │ ├── dtc-version.sh │ │ ├── fill_scrapyard.py │ │ ├── gcc-stack-usage.sh │ │ ├── gcc-version.sh │ │ ├── get_default_envs.sh │ │ ├── get_maintainer.pl │ │ ├── kconfig │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── POTFILES.in │ │ │ ├── check.sh │ │ │ ├── conf.c │ │ │ ├── confdata.c │ │ │ ├── expr.c │ │ │ ├── expr.h │ │ │ ├── gconf.c │ │ │ ├── gconf.glade │ │ │ ├── images.c │ │ │ ├── kxgettext.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 │ │ ├── kernel-doc │ │ ├── ld-version.sh │ │ ├── mailmapper │ │ ├── mkmakefile │ │ ├── objdiff │ │ ├── setlocalversion │ │ └── show-gnu-make │ ├── snapshot.commit │ ├── test │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── README │ │ ├── cmd_ut.c │ │ ├── command_ut.c │ │ ├── common.sh │ │ ├── compression.c │ │ ├── dm │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── adc.c │ │ │ ├── blk.c │ │ │ ├── bus.c │ │ │ ├── clk.c │ │ │ ├── cmd_dm.c │ │ │ ├── core.c │ │ │ ├── eth.c │ │ │ ├── gpio.c │ │ │ ├── i2c.c │ │ │ ├── led.c │ │ │ ├── mailbox.c │ │ │ ├── mmc.c │ │ │ ├── pci.c │ │ │ ├── phy.c │ │ │ ├── pmic.c │ │ │ ├── power-domain.c │ │ │ ├── pwm.c │ │ │ ├── ram.c │ │ │ ├── regmap.c │ │ │ ├── regulator.c │ │ │ ├── remoteproc.c │ │ │ ├── reset.c │ │ │ ├── rtc.c │ │ │ ├── sf.c │ │ │ ├── spi.c │ │ │ ├── spmi.c │ │ │ ├── syscon.c │ │ │ ├── sysreset.c │ │ │ ├── test-driver.c │ │ │ ├── test-fdt.c │ │ │ ├── test-main.c │ │ │ ├── test-uclass.c │ │ │ ├── timer.c │ │ │ ├── usb.c │ │ │ ├── video.c │ │ │ └── wdt.c │ │ ├── env │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── attr.c │ │ │ └── cmd_ut_env.c │ │ ├── fs │ │ │ ├── fat-noncontig-test.sh │ │ │ └── fs-test.sh │ │ ├── image │ │ │ ├── test-fit.py │ │ │ └── test-imagetools.sh │ │ ├── overlay │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── cmd_ut_overlay.c │ │ │ ├── test-fdt-base.dts │ │ │ └── test-fdt-overlay.dts │ │ ├── py │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── conftest.py │ │ │ ├── multiplexed_log.css │ │ │ ├── multiplexed_log.py │ │ │ ├── pytest.ini │ │ │ ├── test.py │ │ │ ├── tests │ │ │ │ ├── test_000_version.py │ │ │ │ ├── test_dfu.py │ │ │ │ ├── test_efi_loader.py │ │ │ │ ├── test_env.py │ │ │ │ ├── test_help.py │ │ │ │ ├── test_hush_if_test.py │ │ │ │ ├── test_md.py │ │ │ │ ├── test_net.py │ │ │ │ ├── test_ofplatdata.py │ │ │ │ ├── test_sandbox_exit.py │ │ │ │ ├── test_shell_basics.py │ │ │ │ ├── test_sleep.py │ │ │ │ ├── test_ums.py │ │ │ │ ├── test_unknown_cmd.py │ │ │ │ ├── test_ut.py │ │ │ │ ├── test_vboot.py │ │ │ │ └── vboot │ │ │ │ │ ├── sandbox-kernel.dts │ │ │ │ │ ├── sandbox-u-boot.dts │ │ │ │ │ ├── sign-configs-sha1.its │ │ │ │ │ ├── sign-configs-sha256.its │ │ │ │ │ ├── sign-images-sha1.its │ │ │ │ │ └── sign-images-sha256.its │ │ │ ├── u_boot_console_base.py │ │ │ ├── u_boot_console_exec_attach.py │ │ │ ├── u_boot_console_sandbox.py │ │ │ ├── u_boot_spawn.py │ │ │ └── u_boot_utils.py │ │ ├── run │ │ ├── stdint │ │ │ ├── int-types.c │ │ │ └── test-includes.sh │ │ ├── time_ut.c │ │ ├── trace │ │ │ └── test-trace.sh │ │ └── ut.c │ └── tools │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── aisimage.c │ │ ├── aisimage.h │ │ ├── atmel_pmecc_params.c │ │ ├── atmelimage.c │ │ ├── binman │ │ ├── .gitignore │ │ ├── README │ │ ├── binman │ │ ├── binman.py │ │ ├── cmdline.py │ │ ├── control.py │ │ ├── entry_test.py │ │ ├── etype │ │ │ ├── _testing.py │ │ │ ├── blob.py │ │ │ ├── entry.py │ │ │ ├── intel_cmc.py │ │ │ ├── intel_descriptor.py │ │ │ ├── intel_fsp.py │ │ │ ├── intel_me.py │ │ │ ├── intel_mrc.py │ │ │ ├── intel_vga.py │ │ │ ├── u_boot.py │ │ │ ├── u_boot_dtb.py │ │ │ ├── u_boot_dtb_with_ucode.py │ │ │ ├── u_boot_img.py │ │ │ ├── u_boot_nodtb.py │ │ │ ├── u_boot_spl.py │ │ │ ├── u_boot_spl_bss_pad.py │ │ │ ├── u_boot_spl_with_ucode_ptr.py │ │ │ ├── u_boot_ucode.py │ │ │ ├── u_boot_with_ucode_ptr.py │ │ │ ├── x86_start16.py │ │ │ └── x86_start16_spl.py │ │ ├── fdt_test.py │ │ ├── func_test.py │ │ ├── image.py │ │ └── test │ │ │ ├── 01_invalid.dts │ │ │ ├── 02_missing_node.dts │ │ │ ├── 03_empty.dts │ │ │ ├── 04_invalid_entry.dts │ │ │ ├── 05_simple.dts │ │ │ ├── 06_dual_image.dts │ │ │ ├── 07_bad_align.dts │ │ │ ├── 08_pack.dts │ │ │ ├── 09_pack_extra.dts │ │ │ ├── 10_pack_align_power2.dts │ │ │ ├── 11_pack_align_size_power2.dts │ │ │ ├── 12_pack_inv_align.dts │ │ │ ├── 13_pack_inv_size_align.dts │ │ │ ├── 14_pack_overlap.dts │ │ │ ├── 15_pack_overflow.dts │ │ │ ├── 16_pack_image_overflow.dts │ │ │ ├── 17_pack_image_size.dts │ │ │ ├── 18_pack_image_align.dts │ │ │ ├── 19_pack_inv_image_align.dts │ │ │ ├── 20_pack_inv_image_align_power2.dts │ │ │ ├── 21_image_pad.dts │ │ │ ├── 22_image_name.dts │ │ │ ├── 23_blob.dts │ │ │ ├── 24_sorted.dts │ │ │ ├── 25_pack_zero_size.dts │ │ │ ├── 26_pack_u_boot_dtb.dts │ │ │ ├── 27_pack_4gb_no_size.dts │ │ │ ├── 28_pack_4gb_outside.dts │ │ │ ├── 29_x86-rom.dts │ │ │ ├── 30_x86-rom-me-no-desc.dts │ │ │ ├── 31_x86-rom-me.dts │ │ │ ├── 32_intel-vga.dts │ │ │ ├── 33_x86-start16.dts │ │ │ ├── 34_x86_ucode.dts │ │ │ ├── 35_x86_single_ucode.dts │ │ │ ├── 36_u_boot_img.dts │ │ │ ├── 37_x86_no_ucode.dts │ │ │ ├── 38_x86_ucode_missing_node.dts │ │ │ ├── 39_x86_ucode_missing_node2.dts │ │ │ ├── 40_x86_ucode_not_in_image.dts │ │ │ ├── 41_unknown_pos_size.dts │ │ │ ├── 42_intel-fsp.dts │ │ │ ├── 43_intel-cmc.dts │ │ │ ├── 44_x86_optional_ucode.dts │ │ │ ├── 45_prop_test.dts │ │ │ ├── u_boot_no_ucode_ptr │ │ │ ├── u_boot_no_ucode_ptr.c │ │ │ ├── u_boot_ucode_ptr │ │ │ ├── u_boot_ucode_ptr.c │ │ │ └── u_boot_ucode_ptr.lds │ │ ├── bmp_logo.c │ │ ├── buildman │ │ ├── .gitignore │ │ ├── README │ │ ├── board.py │ │ ├── bsettings.py │ │ ├── builder.py │ │ ├── builderthread.py │ │ ├── buildman │ │ ├── buildman.py │ │ ├── cmdline.py │ │ ├── control.py │ │ ├── func_test.py │ │ ├── kconfiglib.py │ │ ├── test.py │ │ └── toolchain.py │ │ ├── default_image.c │ │ ├── dtoc │ │ ├── .gitignore │ │ ├── dtoc │ │ ├── dtoc.py │ │ ├── fdt.py │ │ └── fdt_util.py │ │ ├── dumpimage.c │ │ ├── dumpimage.h │ │ ├── easylogo │ │ ├── Makefile │ │ ├── easylogo.c │ │ ├── linux_blackfin.tga │ │ ├── linux_logo.tga │ │ └── runme.sh │ │ ├── env │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── aes.c │ │ ├── crc32.c │ │ ├── ctype.c │ │ ├── env_attr.c │ │ ├── env_flags.c │ │ ├── fw_env.c │ │ ├── fw_env.config │ │ ├── fw_env.h │ │ ├── fw_env_main.c │ │ ├── fw_env_private.h │ │ └── linux_string.c │ │ ├── envcrc.c │ │ ├── fdt_host.h │ │ ├── fdtgrep.c │ │ ├── fit_check_sign.c │ │ ├── fit_common.c │ │ ├── fit_common.h │ │ ├── fit_image.c │ │ ├── fit_info.c │ │ ├── gdb │ │ ├── Makefile │ │ ├── error.c │ │ ├── error.h │ │ ├── gdbcont.c │ │ ├── gdbsend.c │ │ ├── remote.c │ │ ├── remote.h │ │ ├── serial.c │ │ └── serial.h │ │ ├── gen_eth_addr.c │ │ ├── gen_ethaddr_crc.c │ │ ├── genboardscfg.py │ │ ├── getline.c │ │ ├── getline.h │ │ ├── gpheader.h │ │ ├── gpimage-common.c │ │ ├── gpimage.c │ │ ├── ifdtool.c │ │ ├── ifdtool.h │ │ ├── image-host.c │ │ ├── imagetool.c │ │ ├── imagetool.h │ │ ├── img2brec.sh │ │ ├── img2srec.c │ │ ├── imximage.c │ │ ├── imximage.h │ │ ├── jtagconsole │ │ ├── kermit │ │ ├── README │ │ ├── dot.kermrc │ │ ├── flash_param │ │ ├── send_cmd │ │ └── send_image │ │ ├── kwbimage.c │ │ ├── kwbimage.h │ │ ├── kwboot.c │ │ ├── logos │ │ ├── atmel.bmp │ │ ├── compulab.bmp │ │ ├── denx-comp.bmp │ │ ├── denx.bmp │ │ ├── engicam.bmp │ │ ├── esd.bmp │ │ ├── freescale.bmp │ │ ├── gateworks.bmp │ │ ├── intercontrol.bmp │ │ ├── linux_logo_ttcontrol.bmp │ │ ├── linux_logo_ttcontrol_palfin.bmp │ │ ├── ronetix.bmp │ │ ├── siemens.bmp │ │ ├── solidrun.bmp │ │ ├── syteco.bmp │ │ ├── toradex.bmp │ │ └── wandboard.bmp │ │ ├── lpc32xximage.c │ │ ├── microcode-tool │ │ ├── microcode-tool.py │ │ ├── mingw_support.c │ │ ├── mingw_support.h │ │ ├── mkenvimage.c │ │ ├── mkexynosspl.c │ │ ├── mkimage.c │ │ ├── mkimage.h │ │ ├── mksunxiboot.c │ │ ├── moveconfig.py │ │ ├── mxsboot.c │ │ ├── mxsimage.c │ │ ├── mxsimage.h │ │ ├── ncb.c │ │ ├── netconsole │ │ ├── omap │ │ └── clocks_get_m_n.c │ │ ├── omapimage.c │ │ ├── omapimage.h │ │ ├── os_support.c │ │ ├── os_support.h │ │ ├── patman │ │ ├── .gitignore │ │ ├── README │ │ ├── __init__.py │ │ ├── checkpatch.py │ │ ├── command.py │ │ ├── commit.py │ │ ├── cros_subprocess.py │ │ ├── func_test.py │ │ ├── get_maintainer.py │ │ ├── gitutil.py │ │ ├── patchstream.py │ │ ├── patman │ │ ├── patman.py │ │ ├── project.py │ │ ├── series.py │ │ ├── settings.py │ │ ├── setup.py │ │ ├── terminal.py │ │ ├── test.py │ │ ├── test │ │ │ └── test01.txt │ │ ├── tools.py │ │ └── tout.py │ │ ├── pbl_crc32.c │ │ ├── pbl_crc32.h │ │ ├── pblimage.c │ │ ├── pblimage.h │ │ ├── proftool.c │ │ ├── relocate-rela.c │ │ ├── rkcommon.c │ │ ├── rkcommon.h │ │ ├── rkimage.c │ │ ├── rkmux.py │ │ ├── rksd.c │ │ ├── rkspi.c │ │ ├── scripts │ │ └── define2mk.sed │ │ ├── socfpgaimage.c │ │ ├── sunxi-spl-image-builder.c │ │ ├── ublimage.c │ │ ├── ublimage.h │ │ ├── ubsha1.c │ │ ├── vybridimage.c │ │ ├── xway-swap-bytes.c │ │ ├── zynqimage.c │ │ └── zynqmpimage.c └── 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 ├── analyze-inclusions ├── analyze-migration.py ├── check-qerror.sh ├── checkpatch.pl ├── clean-header-guards.pl ├── clean-includes ├── cleanup-trace-events.pl ├── cocci-macro-file.h ├── coccinelle │ ├── 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 ├── device-crash-test ├── disas-objdump.pl ├── dump-guest-memory.py ├── extract-vsssdk-headers ├── feature_to_c.sh ├── get_maintainer.pl ├── git.orderfile ├── gtester-cat ├── hxtool ├── kvm │ ├── kvm_flightrecorder │ └── vmxcap ├── make-release ├── make_device_config.sh ├── modules │ └── module_block.py ├── ordereddict.py ├── qapi-commands.py ├── qapi-event.py ├── qapi-introspect.py ├── qapi-types.py ├── qapi-visit.py ├── qapi.py ├── qapi2texi.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 ├── 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 ├── 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 ├── 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 ├── softmmu_template.h ├── 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_device_list.c ├── qtest.c ├── replay.c ├── runstate-check.c ├── set-fd-handler.c ├── slirp.c ├── sysbus.c ├── target-get-monitor-def.c ├── target-monitor-defs.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 │ ├── 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 ├── 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 │ ├── 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 │ ├── 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 │ ├── shift_helper_template.h │ ├── smm_helper.c │ ├── svm.h │ ├── svm_helper.c │ ├── trace-events │ ├── translate.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 │ ├── op_helper.c │ ├── qregs.def │ └── 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 │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── dsp_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.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 │ ├── STATUS │ ├── 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 ├── 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 │ ├── 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 │ ├── interrupt.c │ ├── ioinst.c │ ├── kvm.c │ ├── machine.c │ ├── mem_helper.c │ ├── misc_helper.c │ ├── mmu_helper.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.c │ ├── core-dc233c.c │ ├── core-dc233c │ ├── core-isa.h │ └── gdb-config.c │ ├── core-fsf.c │ ├── core-fsf │ └── core-isa.h │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── import_core.sh │ ├── monitor.c │ ├── op_helper.c │ ├── overlay_tool.h │ ├── translate.c │ └── xtensa-semi.c ├── tcg ├── LICENSE ├── README ├── TODO ├── aarch64 │ ├── tcg-target.h │ └── tcg-target.inc.c ├── arm │ ├── tcg-target.h │ └── tcg-target.inc.c ├── i386 │ ├── tcg-target.h │ └── tcg-target.inc.c ├── ia64 │ ├── tcg-target.h │ └── tcg-target.inc.c ├── 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-be-ldst.h ├── tcg-be-null.h ├── tcg-common.c ├── tcg-mo.h ├── tcg-op.c ├── tcg-op.h ├── tcg-opc.h ├── tcg-runtime.c ├── tcg-runtime.h ├── 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 │ │ ├── DSDT │ │ ├── DSDT.bridge │ │ ├── DSDT.cphp │ │ ├── DSDT.ipmikcs │ │ ├── DSDT.memhp │ │ ├── FACP │ │ ├── FACS │ │ ├── HPET │ │ ├── SLIT.cphp │ │ ├── SLIT.memhp │ │ ├── SRAT.cphp │ │ └── SRAT.memhp │ ├── q35 │ │ ├── APIC │ │ ├── APIC.cphp │ │ ├── DSDT │ │ ├── DSDT.bridge │ │ ├── DSDT.cphp │ │ ├── DSDT.ipmibt │ │ ├── DSDT.memhp │ │ ├── FACP │ │ ├── FACS │ │ ├── HPET │ │ ├── MCFG │ │ ├── SLIT.cphp │ │ ├── SLIT.memhp │ │ ├── SRAT.cphp │ │ └── SRAT.memhp │ └── 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-qnull.c ├── check-qnum.c ├── check-qom-interface.c ├── check-qom-proplist.c ├── check-qstring.c ├── crypto-tls-x509-helpers.c ├── crypto-tls-x509-helpers.h ├── data │ ├── test-qga-config │ └── test-qga-os-release ├── 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-build │ ├── test-clang │ ├── 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 ├── 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 ├── megasas-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 │ └── stress.c ├── multiboot │ ├── Makefile │ ├── 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 ├── pc-cpu-test.c ├── pcnet-test.c ├── pkix_asn1_tab.c ├── pnv-xscom-test.c ├── postcopy-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-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-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-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 │ ├── 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 │ ├── 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 │ ├── 165 │ ├── 170 │ ├── 171 │ ├── 172 │ ├── 173 │ ├── 174 │ ├── 175 │ ├── 176 │ ├── 177 │ ├── 178 │ ├── 179 │ ├── 181 │ ├── 182 │ ├── 183 │ ├── 185 │ ├── 186 │ ├── 187 │ ├── 188 │ ├── 189 │ ├── 190 │ ├── 192 │ ├── 194 │ ├── .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 │ ├── 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 │ ├── 165.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 │ ├── 185.out │ ├── 186.out │ ├── 187.out │ ├── 188.out │ ├── 189.out │ ├── 190.out │ ├── 192.out │ ├── 194.out │ ├── COPYING │ ├── Makefile │ ├── README │ ├── check │ ├── common │ ├── common.config │ ├── common.filter │ ├── common.pattern │ ├── common.qemu │ ├── common.rc │ ├── group │ ├── iotests.py │ ├── nbd-fault-injector.py │ ├── qcow2.py │ ├── qed.py │ ├── sample_images │ │ ├── README │ │ ├── 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 ├── 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-bitcnt.c ├── test-bitops.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-commands.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-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 ├── 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 ├── 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 ├── types.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 ├── keymaps.c ├── keymaps.h ├── qemu-pixman.c ├── qemu-x509.h ├── sdl.c ├── sdl2-2d.c ├── sdl2-gl.c ├── sdl2-input.c ├── sdl2-keymap.h ├── sdl2.c ├── sdl_keysym.h ├── sdl_zoom.c ├── sdl_zoom.h ├── sdl_zoom_template.h ├── shader.c ├── shader │ ├── 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-ws.c ├── vnc-ws.h ├── vnc.c ├── vnc.h ├── vnc_keysym.h ├── x_keymap.c └── x_keymap.h ├── user-exec-stub.c ├── user-exec.c ├── util ├── Makefile.objs ├── acl.c ├── aio-posix.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 ├── 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 ├── 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 ├── systemd.c ├── thread-pool.c ├── throttle.c ├── timed-average.c ├── trace-events ├── unicode.c ├── uri.c └── uuid.c ├── version.rc └── vl.c /CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/CODING_STYLE -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/Changelog -------------------------------------------------------------------------------- /Full/cpu-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/Full/cpu-exec.c -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/HACKING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/Makefile.objs -------------------------------------------------------------------------------- /Makefile.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/Makefile.target -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/README.md -------------------------------------------------------------------------------- /README_QEMU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/README_QEMU -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.10.1 2 | -------------------------------------------------------------------------------- /accel/accel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/accel/accel.c -------------------------------------------------------------------------------- /accel/kvm/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_KVM) += kvm-all.o 2 | -------------------------------------------------------------------------------- /arch_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/arch_init.c -------------------------------------------------------------------------------- /audio/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/audio/audio.c -------------------------------------------------------------------------------- /audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/audio/audio.h -------------------------------------------------------------------------------- /audio/mixeng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/audio/mixeng.c -------------------------------------------------------------------------------- /audio/mixeng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/audio/mixeng.h -------------------------------------------------------------------------------- /audio/noaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/audio/noaudio.c -------------------------------------------------------------------------------- /audio/ossaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/audio/ossaudio.c -------------------------------------------------------------------------------- /audio/paaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/audio/paaudio.c -------------------------------------------------------------------------------- /audio/sdlaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/audio/sdlaudio.c -------------------------------------------------------------------------------- /audio/wavaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/audio/wavaudio.c -------------------------------------------------------------------------------- /backends/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/backends/rng.c -------------------------------------------------------------------------------- /backends/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/backends/tpm.c -------------------------------------------------------------------------------- /balloon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/balloon.c -------------------------------------------------------------------------------- /block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block.c -------------------------------------------------------------------------------- /block/backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/backup.c -------------------------------------------------------------------------------- /block/blkdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/blkdebug.c -------------------------------------------------------------------------------- /block/bochs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/bochs.c -------------------------------------------------------------------------------- /block/cloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/cloop.c -------------------------------------------------------------------------------- /block/commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/commit.c -------------------------------------------------------------------------------- /block/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/crypto.c -------------------------------------------------------------------------------- /block/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/crypto.h -------------------------------------------------------------------------------- /block/curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/curl.c -------------------------------------------------------------------------------- /block/dmg-bz2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/dmg-bz2.c -------------------------------------------------------------------------------- /block/dmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/dmg.c -------------------------------------------------------------------------------- /block/dmg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/dmg.h -------------------------------------------------------------------------------- /block/gluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/gluster.c -------------------------------------------------------------------------------- /block/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/io.c -------------------------------------------------------------------------------- /block/iscsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/iscsi.c -------------------------------------------------------------------------------- /block/mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/mirror.c -------------------------------------------------------------------------------- /block/nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/nbd.c -------------------------------------------------------------------------------- /block/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/nfs.c -------------------------------------------------------------------------------- /block/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/null.c -------------------------------------------------------------------------------- /block/qapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/qapi.c -------------------------------------------------------------------------------- /block/qcow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/qcow.c -------------------------------------------------------------------------------- /block/qcow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/qcow2.c -------------------------------------------------------------------------------- /block/qcow2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/qcow2.h -------------------------------------------------------------------------------- /block/qed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/qed.c -------------------------------------------------------------------------------- /block/qed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/qed.h -------------------------------------------------------------------------------- /block/quorum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/quorum.c -------------------------------------------------------------------------------- /block/rbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/rbd.c -------------------------------------------------------------------------------- /block/sheepdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/sheepdog.c -------------------------------------------------------------------------------- /block/snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/snapshot.c -------------------------------------------------------------------------------- /block/ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/ssh.c -------------------------------------------------------------------------------- /block/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/stream.c -------------------------------------------------------------------------------- /block/vdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/vdi.c -------------------------------------------------------------------------------- /block/vhdx-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/vhdx-log.c -------------------------------------------------------------------------------- /block/vhdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/vhdx.c -------------------------------------------------------------------------------- /block/vhdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/vhdx.h -------------------------------------------------------------------------------- /block/vmdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/vmdk.c -------------------------------------------------------------------------------- /block/vpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/vpc.c -------------------------------------------------------------------------------- /block/vvfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/vvfat.c -------------------------------------------------------------------------------- /block/vxhs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/block/vxhs.c -------------------------------------------------------------------------------- /blockdev-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/blockdev-nbd.c -------------------------------------------------------------------------------- /blockdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/blockdev.c -------------------------------------------------------------------------------- /blockjob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/blockjob.c -------------------------------------------------------------------------------- /bootdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/bootdevice.c -------------------------------------------------------------------------------- /bsd-user/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/bsd-user/main.c -------------------------------------------------------------------------------- /bsd-user/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/bsd-user/mmap.c -------------------------------------------------------------------------------- /bsd-user/qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/bsd-user/qemu.h -------------------------------------------------------------------------------- /bt-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/bt-host.c -------------------------------------------------------------------------------- /bt-vhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/bt-vhci.c -------------------------------------------------------------------------------- /chardev/baum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/chardev/baum.c -------------------------------------------------------------------------------- /chardev/char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/chardev/char.c -------------------------------------------------------------------------------- /chardev/spice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/chardev/spice.c -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/config.h -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/configure -------------------------------------------------------------------------------- /cpus-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/cpus-common.c -------------------------------------------------------------------------------- /cpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/cpus.c -------------------------------------------------------------------------------- /crypto/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/crypto/aes.c -------------------------------------------------------------------------------- /crypto/afalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/crypto/afalg.c -------------------------------------------------------------------------------- /crypto/afsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/crypto/afsplit.c -------------------------------------------------------------------------------- /crypto/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/crypto/block.c -------------------------------------------------------------------------------- /crypto/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/crypto/cipher.c -------------------------------------------------------------------------------- /crypto/desrfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/crypto/desrfb.c -------------------------------------------------------------------------------- /crypto/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/crypto/hash.c -------------------------------------------------------------------------------- /crypto/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/crypto/hmac.c -------------------------------------------------------------------------------- /crypto/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/crypto/init.c -------------------------------------------------------------------------------- /crypto/ivgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/crypto/ivgen.c -------------------------------------------------------------------------------- /crypto/pbkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/crypto/pbkdf.c -------------------------------------------------------------------------------- /crypto/secret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/crypto/secret.c -------------------------------------------------------------------------------- /crypto/xts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/crypto/xts.c -------------------------------------------------------------------------------- /default-configs/arm-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for arm-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/cris-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for cris-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/hppa-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for hppa-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/i386-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-bsd-user 2 | -------------------------------------------------------------------------------- /default-configs/i386-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/m68k-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for m68k-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/mips-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/or1k-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for or1k-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/sh4-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sh4-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/sparc-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc-bsd-user 2 | -------------------------------------------------------------------------------- /default-configs/tricore-softmmu.mak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default-configs/x86_64-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for x86_64-bsd-user 2 | -------------------------------------------------------------------------------- /device-hotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/device-hotplug.c -------------------------------------------------------------------------------- /device_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/device_tree.c -------------------------------------------------------------------------------- /disas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas.c -------------------------------------------------------------------------------- /disas/alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/alpha.c -------------------------------------------------------------------------------- /disas/arm-a64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/arm-a64.cc -------------------------------------------------------------------------------- /disas/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/arm.c -------------------------------------------------------------------------------- /disas/cris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/cris.c -------------------------------------------------------------------------------- /disas/hppa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/hppa.c -------------------------------------------------------------------------------- /disas/i386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/i386.c -------------------------------------------------------------------------------- /disas/ia64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/ia64.c -------------------------------------------------------------------------------- /disas/lm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/lm32.c -------------------------------------------------------------------------------- /disas/m68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/m68k.c -------------------------------------------------------------------------------- /disas/mips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/mips.c -------------------------------------------------------------------------------- /disas/moxie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/moxie.c -------------------------------------------------------------------------------- /disas/nios2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/nios2.c -------------------------------------------------------------------------------- /disas/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/ppc.c -------------------------------------------------------------------------------- /disas/s390.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/s390.c -------------------------------------------------------------------------------- /disas/sh4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/sh4.c -------------------------------------------------------------------------------- /disas/sparc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/sparc.c -------------------------------------------------------------------------------- /disas/tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/disas/tci.c -------------------------------------------------------------------------------- /dma-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dma-helpers.c -------------------------------------------------------------------------------- /docs/COLO-FT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/docs/COLO-FT.txt -------------------------------------------------------------------------------- /docs/ccid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/docs/ccid.txt -------------------------------------------------------------------------------- /docs/nvdimm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/docs/nvdimm.txt -------------------------------------------------------------------------------- /docs/pcie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/docs/pcie.txt -------------------------------------------------------------------------------- /docs/rdma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/docs/rdma.txt -------------------------------------------------------------------------------- /docs/replay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/docs/replay.txt -------------------------------------------------------------------------------- /docs/usb2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/docs/usb2.txt -------------------------------------------------------------------------------- /docs/xbzrle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/docs/xbzrle.txt -------------------------------------------------------------------------------- /dtc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/.gitignore -------------------------------------------------------------------------------- /dtc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/.travis.yml -------------------------------------------------------------------------------- /dtc/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/GPL -------------------------------------------------------------------------------- /dtc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/Makefile -------------------------------------------------------------------------------- /dtc/Makefile.dtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/Makefile.dtc -------------------------------------------------------------------------------- /dtc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/README -------------------------------------------------------------------------------- /dtc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/TODO -------------------------------------------------------------------------------- /dtc/checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/checks.c -------------------------------------------------------------------------------- /dtc/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/data.c -------------------------------------------------------------------------------- /dtc/dtc-lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/dtc-lexer.l -------------------------------------------------------------------------------- /dtc/dtc-parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/dtc-parser.y -------------------------------------------------------------------------------- /dtc/dtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/dtc.c -------------------------------------------------------------------------------- /dtc/dtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/dtc.h -------------------------------------------------------------------------------- /dtc/dtdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/dtdiff -------------------------------------------------------------------------------- /dtc/fdtdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/fdtdump.c -------------------------------------------------------------------------------- /dtc/fdtget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/fdtget.c -------------------------------------------------------------------------------- /dtc/fdtput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/fdtput.c -------------------------------------------------------------------------------- /dtc/flattree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/flattree.c -------------------------------------------------------------------------------- /dtc/fstree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/fstree.c -------------------------------------------------------------------------------- /dtc/libfdt/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/libfdt/TODO -------------------------------------------------------------------------------- /dtc/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/libfdt/fdt.c -------------------------------------------------------------------------------- /dtc/libfdt/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/libfdt/fdt.h -------------------------------------------------------------------------------- /dtc/livetree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/livetree.c -------------------------------------------------------------------------------- /dtc/srcpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/srcpos.c -------------------------------------------------------------------------------- /dtc/srcpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/srcpos.h -------------------------------------------------------------------------------- /dtc/tests/bad-octal-literal.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | x = <09>; 5 | }; 6 | -------------------------------------------------------------------------------- /dtc/tests/base01.cmd: -------------------------------------------------------------------------------- 1 | dtc -f -b 0 -V 16 -I dts -O asm 2 | -------------------------------------------------------------------------------- /dtc/tests/data.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/tests/data.S -------------------------------------------------------------------------------- /dtc/tests/deps_inc1.dtsi: -------------------------------------------------------------------------------- 1 | /include/ "deps_inc2.dtsi" 2 | -------------------------------------------------------------------------------- /dtc/tests/deps_inc2.dtsi: -------------------------------------------------------------------------------- 1 | /* Empty */ 2 | -------------------------------------------------------------------------------- /dtc/tests/empty.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | }; 5 | -------------------------------------------------------------------------------- /dtc/tests/incbin.bin: -------------------------------------------------------------------------------- 1 | abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ -------------------------------------------------------------------------------- /dtc/tests/include3.dts: -------------------------------------------------------------------------------- 1 | 123456789 010000 2 | -------------------------------------------------------------------------------- /dtc/tests/include4.dts: -------------------------------------------------------------------------------- 1 | compatible = "test_tree1"; 2 | -------------------------------------------------------------------------------- /dtc/tests/include5.dts: -------------------------------------------------------------------------------- 1 | prop-int 2 | -------------------------------------------------------------------------------- /dtc/tests/include5a.dts: -------------------------------------------------------------------------------- 1 | = /bits/ 64 <0xdeadbeef01abcdef> -------------------------------------------------------------------------------- /dtc/tests/include6.dts: -------------------------------------------------------------------------------- 1 | "hello world" 2 | -------------------------------------------------------------------------------- /dtc/tests/include8.dts: -------------------------------------------------------------------------------- 1 | subsubnode@0 { 2 | reg = <0>; 3 | -------------------------------------------------------------------------------- /dtc/tests/nul-in-line-info1.dts: -------------------------------------------------------------------------------- 1 | # 0 "" 2 | -------------------------------------------------------------------------------- /dtc/tests/nul-in-line-info2.dts: -------------------------------------------------------------------------------- 1 | # 0 "\0" 2 | -------------------------------------------------------------------------------- /dtc/tests/search_dir/search_test2.dtsi: -------------------------------------------------------------------------------- 1 | 2 | / { 3 | }; 4 | -------------------------------------------------------------------------------- /dtc/tests/search_dir_b/search_test_c.dtsi: -------------------------------------------------------------------------------- 1 | / { 2 | }; 3 | -------------------------------------------------------------------------------- /dtc/treesource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/treesource.c -------------------------------------------------------------------------------- /dtc/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/util.c -------------------------------------------------------------------------------- /dtc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dtc/util.h -------------------------------------------------------------------------------- /dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/dump.c -------------------------------------------------------------------------------- /exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/exec.c -------------------------------------------------------------------------------- /fpu/softfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/fpu/softfloat.c -------------------------------------------------------------------------------- /gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/gdbstub.c -------------------------------------------------------------------------------- /hax-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hax-stub.c -------------------------------------------------------------------------------- /hmp-commands.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hmp-commands.hx -------------------------------------------------------------------------------- /hmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hmp.c -------------------------------------------------------------------------------- /hmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hmp.h -------------------------------------------------------------------------------- /hw/9pfs/9p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/9pfs/9p.c -------------------------------------------------------------------------------- /hw/9pfs/9p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/9pfs/9p.h -------------------------------------------------------------------------------- /hw/9pfs/codir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/9pfs/codir.c -------------------------------------------------------------------------------- /hw/9pfs/cofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/9pfs/cofile.c -------------------------------------------------------------------------------- /hw/9pfs/cofs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/9pfs/cofs.c -------------------------------------------------------------------------------- /hw/9pfs/coth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/9pfs/coth.c -------------------------------------------------------------------------------- /hw/9pfs/coth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/9pfs/coth.h -------------------------------------------------------------------------------- /hw/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/Makefile.objs -------------------------------------------------------------------------------- /hw/acpi/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/acpi/core.c -------------------------------------------------------------------------------- /hw/acpi/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/acpi/cpu.c -------------------------------------------------------------------------------- /hw/acpi/ich9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/acpi/ich9.c -------------------------------------------------------------------------------- /hw/acpi/ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/acpi/ipmi.c -------------------------------------------------------------------------------- /hw/acpi/nvdimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/acpi/nvdimm.c -------------------------------------------------------------------------------- /hw/acpi/pcihp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/acpi/pcihp.c -------------------------------------------------------------------------------- /hw/acpi/piix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/acpi/piix4.c -------------------------------------------------------------------------------- /hw/acpi/tco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/acpi/tco.c -------------------------------------------------------------------------------- /hw/adc/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_STM32F2XX_ADC) += stm32f2xx_adc.o 2 | -------------------------------------------------------------------------------- /hw/alpha/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += dp264.o pci.o typhoon.o 2 | -------------------------------------------------------------------------------- /hw/alpha/dp264.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/alpha/dp264.c -------------------------------------------------------------------------------- /hw/alpha/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/alpha/pci.c -------------------------------------------------------------------------------- /hw/arm/armv7m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/armv7m.c -------------------------------------------------------------------------------- /hw/arm/aspeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/aspeed.c -------------------------------------------------------------------------------- /hw/arm/bcm2836.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/bcm2836.c -------------------------------------------------------------------------------- /hw/arm/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/boot.c -------------------------------------------------------------------------------- /hw/arm/collie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/collie.c -------------------------------------------------------------------------------- /hw/arm/digic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/digic.c -------------------------------------------------------------------------------- /hw/arm/gumstix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/gumstix.c -------------------------------------------------------------------------------- /hw/arm/kzm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/kzm.c -------------------------------------------------------------------------------- /hw/arm/mps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/mps2.c -------------------------------------------------------------------------------- /hw/arm/nseries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/nseries.c -------------------------------------------------------------------------------- /hw/arm/omap1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/omap1.c -------------------------------------------------------------------------------- /hw/arm/omap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/omap2.c -------------------------------------------------------------------------------- /hw/arm/palm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/palm.c -------------------------------------------------------------------------------- /hw/arm/pxa2xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/pxa2xx.c -------------------------------------------------------------------------------- /hw/arm/raspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/raspi.c -------------------------------------------------------------------------------- /hw/arm/spitz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/spitz.c -------------------------------------------------------------------------------- /hw/arm/tosa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/tosa.c -------------------------------------------------------------------------------- /hw/arm/virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/virt.c -------------------------------------------------------------------------------- /hw/arm/z2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/arm/z2.c -------------------------------------------------------------------------------- /hw/audio/ac97.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/audio/ac97.c -------------------------------------------------------------------------------- /hw/audio/adlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/audio/adlib.c -------------------------------------------------------------------------------- /hw/audio/fmopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/audio/fmopl.c -------------------------------------------------------------------------------- /hw/audio/fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/audio/fmopl.h -------------------------------------------------------------------------------- /hw/audio/gus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/audio/gus.c -------------------------------------------------------------------------------- /hw/audio/pcspk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/audio/pcspk.c -------------------------------------------------------------------------------- /hw/audio/pl041.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/audio/pl041.c -------------------------------------------------------------------------------- /hw/audio/pl041.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/audio/pl041.h -------------------------------------------------------------------------------- /hw/audio/sb16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/audio/sb16.c -------------------------------------------------------------------------------- /hw/block/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/block/block.c -------------------------------------------------------------------------------- /hw/block/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/block/cdrom.c -------------------------------------------------------------------------------- /hw/block/dataplane/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += virtio-blk.o 2 | -------------------------------------------------------------------------------- /hw/block/ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/block/ecc.c -------------------------------------------------------------------------------- /hw/block/fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/block/fdc.c -------------------------------------------------------------------------------- /hw/block/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/block/nand.c -------------------------------------------------------------------------------- /hw/block/nvme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/block/nvme.c -------------------------------------------------------------------------------- /hw/block/nvme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/block/nvme.h -------------------------------------------------------------------------------- /hw/bt/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/bt/core.c -------------------------------------------------------------------------------- /hw/bt/hci-csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/bt/hci-csr.c -------------------------------------------------------------------------------- /hw/bt/hci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/bt/hci.c -------------------------------------------------------------------------------- /hw/bt/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/bt/hid.c -------------------------------------------------------------------------------- /hw/bt/l2cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/bt/l2cap.c -------------------------------------------------------------------------------- /hw/bt/sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/bt/sdp.c -------------------------------------------------------------------------------- /hw/char/escc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/char/escc.c -------------------------------------------------------------------------------- /hw/char/pl011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/char/pl011.c -------------------------------------------------------------------------------- /hw/char/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/char/serial.c -------------------------------------------------------------------------------- /hw/core/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/core/bus.c -------------------------------------------------------------------------------- /hw/core/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/core/irq.c -------------------------------------------------------------------------------- /hw/core/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/core/loader.c -------------------------------------------------------------------------------- /hw/core/nmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/core/nmi.c -------------------------------------------------------------------------------- /hw/core/or-irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/core/or-irq.c -------------------------------------------------------------------------------- /hw/core/ptimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/core/ptimer.c -------------------------------------------------------------------------------- /hw/core/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/core/qdev.c -------------------------------------------------------------------------------- /hw/core/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/core/reset.c -------------------------------------------------------------------------------- /hw/core/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/core/stream.c -------------------------------------------------------------------------------- /hw/core/sysbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/core/sysbus.c -------------------------------------------------------------------------------- /hw/cpu/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/cpu/core.c -------------------------------------------------------------------------------- /hw/cris/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/cris/boot.c -------------------------------------------------------------------------------- /hw/cris/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/cris/boot.h -------------------------------------------------------------------------------- /hw/display/cg3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/display/cg3.c -------------------------------------------------------------------------------- /hw/display/qxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/display/qxl.c -------------------------------------------------------------------------------- /hw/display/qxl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/display/qxl.h -------------------------------------------------------------------------------- /hw/display/tcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/display/tcx.c -------------------------------------------------------------------------------- /hw/display/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/display/vga.c -------------------------------------------------------------------------------- /hw/display/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/display/vga.h -------------------------------------------------------------------------------- /hw/dma/i82374.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/dma/i82374.c -------------------------------------------------------------------------------- /hw/dma/i8257.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/dma/i8257.c -------------------------------------------------------------------------------- /hw/dma/pl080.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/dma/pl080.c -------------------------------------------------------------------------------- /hw/dma/pl330.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/dma/pl330.c -------------------------------------------------------------------------------- /hw/dma/rc4030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/dma/rc4030.c -------------------------------------------------------------------------------- /hw/dma/soc_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/dma/soc_dma.c -------------------------------------------------------------------------------- /hw/gpio/pl061.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/gpio/pl061.c -------------------------------------------------------------------------------- /hw/gpio/zaurus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/gpio/zaurus.c -------------------------------------------------------------------------------- /hw/i2c/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/i2c/core.c -------------------------------------------------------------------------------- /hw/i2c/i2c-ddc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/i2c/i2c-ddc.c -------------------------------------------------------------------------------- /hw/i2c/imx_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/i2c/imx_i2c.c -------------------------------------------------------------------------------- /hw/i2c/smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/i2c/smbus.c -------------------------------------------------------------------------------- /hw/i386/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/i386/pc.c -------------------------------------------------------------------------------- /hw/i386/pc_q35.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/i386/pc_q35.c -------------------------------------------------------------------------------- /hw/ide/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ide/ahci.c -------------------------------------------------------------------------------- /hw/ide/atapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ide/atapi.c -------------------------------------------------------------------------------- /hw/ide/cmd646.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ide/cmd646.c -------------------------------------------------------------------------------- /hw/ide/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ide/core.c -------------------------------------------------------------------------------- /hw/ide/ich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ide/ich.c -------------------------------------------------------------------------------- /hw/ide/isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ide/isa.c -------------------------------------------------------------------------------- /hw/ide/macio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ide/macio.c -------------------------------------------------------------------------------- /hw/ide/mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ide/mmio.c -------------------------------------------------------------------------------- /hw/ide/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ide/pci.c -------------------------------------------------------------------------------- /hw/ide/piix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ide/piix.c -------------------------------------------------------------------------------- /hw/ide/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ide/qdev.c -------------------------------------------------------------------------------- /hw/ide/via.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ide/via.c -------------------------------------------------------------------------------- /hw/input/adb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/input/adb.c -------------------------------------------------------------------------------- /hw/input/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/input/hid.c -------------------------------------------------------------------------------- /hw/input/pckbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/input/pckbd.c -------------------------------------------------------------------------------- /hw/input/pl050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/input/pl050.c -------------------------------------------------------------------------------- /hw/input/ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/input/ps2.c -------------------------------------------------------------------------------- /hw/intc/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/intc/apic.c -------------------------------------------------------------------------------- /hw/intc/i8259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/intc/i8259.c -------------------------------------------------------------------------------- /hw/intc/intc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/intc/intc.c -------------------------------------------------------------------------------- /hw/intc/ioapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/intc/ioapic.c -------------------------------------------------------------------------------- /hw/intc/pl190.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/intc/pl190.c -------------------------------------------------------------------------------- /hw/intc/xics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/intc/xics.c -------------------------------------------------------------------------------- /hw/ipack/ipack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ipack/ipack.c -------------------------------------------------------------------------------- /hw/ipmi/ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ipmi/ipmi.c -------------------------------------------------------------------------------- /hw/isa/apm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/isa/apm.c -------------------------------------------------------------------------------- /hw/isa/i82378.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/isa/i82378.c -------------------------------------------------------------------------------- /hw/isa/isa-bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/isa/isa-bus.c -------------------------------------------------------------------------------- /hw/isa/pc87312.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/isa/pc87312.c -------------------------------------------------------------------------------- /hw/isa/piix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/isa/piix4.c -------------------------------------------------------------------------------- /hw/lm32/lm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/lm32/lm32.h -------------------------------------------------------------------------------- /hw/m68k/an5206.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/m68k/an5206.c -------------------------------------------------------------------------------- /hw/mem/nvdimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/mem/nvdimm.c -------------------------------------------------------------------------------- /hw/mem/pc-dimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/mem/pc-dimm.c -------------------------------------------------------------------------------- /hw/mips/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/mips/addr.c -------------------------------------------------------------------------------- /hw/mips/boston.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/mips/boston.c -------------------------------------------------------------------------------- /hw/mips/cps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/mips/cps.c -------------------------------------------------------------------------------- /hw/misc/a9scu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/misc/a9scu.c -------------------------------------------------------------------------------- /hw/misc/auxbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/misc/auxbus.c -------------------------------------------------------------------------------- /hw/misc/cbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/misc/cbus.c -------------------------------------------------------------------------------- /hw/misc/edu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/misc/edu.c -------------------------------------------------------------------------------- /hw/misc/sga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/misc/sga.c -------------------------------------------------------------------------------- /hw/misc/tmp105.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/misc/tmp105.c -------------------------------------------------------------------------------- /hw/misc/tmp105.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/misc/tmp105.h -------------------------------------------------------------------------------- /hw/misc/tmp421.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/misc/tmp421.c -------------------------------------------------------------------------------- /hw/misc/unimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/misc/unimp.c -------------------------------------------------------------------------------- /hw/misc/vmport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/misc/vmport.c -------------------------------------------------------------------------------- /hw/net/dp8393x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/dp8393x.c -------------------------------------------------------------------------------- /hw/net/e1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/e1000.c -------------------------------------------------------------------------------- /hw/net/e1000e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/e1000e.c -------------------------------------------------------------------------------- /hw/net/imx_fec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/imx_fec.c -------------------------------------------------------------------------------- /hw/net/lan9118.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/lan9118.c -------------------------------------------------------------------------------- /hw/net/lance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/lance.c -------------------------------------------------------------------------------- /hw/net/mcf_fec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/mcf_fec.c -------------------------------------------------------------------------------- /hw/net/mipsnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/mipsnet.c -------------------------------------------------------------------------------- /hw/net/ne2000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/ne2000.c -------------------------------------------------------------------------------- /hw/net/ne2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/ne2000.h -------------------------------------------------------------------------------- /hw/net/pcnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/pcnet.c -------------------------------------------------------------------------------- /hw/net/pcnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/pcnet.h -------------------------------------------------------------------------------- /hw/net/rtl8139.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/rtl8139.c -------------------------------------------------------------------------------- /hw/net/vmxnet3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/vmxnet3.c -------------------------------------------------------------------------------- /hw/net/vmxnet3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/vmxnet3.h -------------------------------------------------------------------------------- /hw/net/xen_nic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/xen_nic.c -------------------------------------------------------------------------------- /hw/net/xgmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/net/xgmac.c -------------------------------------------------------------------------------- /hw/nios2/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y = boot.o cpu_pic.o 10m50_devboard.o 2 | -------------------------------------------------------------------------------- /hw/nios2/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/nios2/boot.c -------------------------------------------------------------------------------- /hw/nios2/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/nios2/boot.h -------------------------------------------------------------------------------- /hw/pci/msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/pci/msi.c -------------------------------------------------------------------------------- /hw/pci/msix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/pci/msix.c -------------------------------------------------------------------------------- /hw/pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/pci/pci.c -------------------------------------------------------------------------------- /hw/pci/pcie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/pci/pcie.c -------------------------------------------------------------------------------- /hw/pci/shpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/pci/shpc.c -------------------------------------------------------------------------------- /hw/ppc/e500.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ppc/e500.c -------------------------------------------------------------------------------- /hw/ppc/e500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ppc/e500.h -------------------------------------------------------------------------------- /hw/ppc/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ppc/fdt.c -------------------------------------------------------------------------------- /hw/ppc/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ppc/mac.h -------------------------------------------------------------------------------- /hw/ppc/pnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ppc/pnv.c -------------------------------------------------------------------------------- /hw/ppc/pnv_bmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ppc/pnv_bmc.c -------------------------------------------------------------------------------- /hw/ppc/pnv_lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ppc/pnv_lpc.c -------------------------------------------------------------------------------- /hw/ppc/pnv_occ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ppc/pnv_occ.c -------------------------------------------------------------------------------- /hw/ppc/pnv_psi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ppc/pnv_psi.c -------------------------------------------------------------------------------- /hw/ppc/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ppc/ppc.c -------------------------------------------------------------------------------- /hw/ppc/ppc405.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ppc/ppc405.h -------------------------------------------------------------------------------- /hw/ppc/prep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ppc/prep.c -------------------------------------------------------------------------------- /hw/ppc/spapr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ppc/spapr.c -------------------------------------------------------------------------------- /hw/s390x/css.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/s390x/css.c -------------------------------------------------------------------------------- /hw/s390x/ipl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/s390x/ipl.c -------------------------------------------------------------------------------- /hw/s390x/ipl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/s390x/ipl.h -------------------------------------------------------------------------------- /hw/s390x/sclp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/s390x/sclp.c -------------------------------------------------------------------------------- /hw/scsi/esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/scsi/esp.c -------------------------------------------------------------------------------- /hw/scsi/mfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/scsi/mfi.h -------------------------------------------------------------------------------- /hw/scsi/mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/scsi/mpi.h -------------------------------------------------------------------------------- /hw/scsi/mptsas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/scsi/mptsas.c -------------------------------------------------------------------------------- /hw/scsi/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/scsi/srp.h -------------------------------------------------------------------------------- /hw/sd/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/sd/core.c -------------------------------------------------------------------------------- /hw/sd/pl181.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/sd/pl181.c -------------------------------------------------------------------------------- /hw/sd/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/sd/sd.c -------------------------------------------------------------------------------- /hw/sd/sdhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/sd/sdhci.c -------------------------------------------------------------------------------- /hw/sd/ssi-sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/sd/ssi-sd.c -------------------------------------------------------------------------------- /hw/sh4/r2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/sh4/r2d.c -------------------------------------------------------------------------------- /hw/sh4/shix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/sh4/shix.c -------------------------------------------------------------------------------- /hw/sparc/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += sun4m.o leon3.o 2 | -------------------------------------------------------------------------------- /hw/ssi/pl022.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ssi/pl022.c -------------------------------------------------------------------------------- /hw/ssi/ssi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/ssi/ssi.c -------------------------------------------------------------------------------- /hw/tricore/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += tricore_testboard.o 2 | -------------------------------------------------------------------------------- /hw/usb/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/usb/bus.c -------------------------------------------------------------------------------- /hw/usb/ccid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/usb/ccid.h -------------------------------------------------------------------------------- /hw/usb/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/usb/core.c -------------------------------------------------------------------------------- /hw/usb/desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/usb/desc.c -------------------------------------------------------------------------------- /hw/usb/desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/usb/desc.h -------------------------------------------------------------------------------- /hw/usb/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/usb/host.h -------------------------------------------------------------------------------- /hw/usb/libhw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/usb/libhw.c -------------------------------------------------------------------------------- /hw/vfio/ccw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/vfio/ccw.c -------------------------------------------------------------------------------- /hw/vfio/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/vfio/pci.c -------------------------------------------------------------------------------- /hw/vfio/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/hw/vfio/pci.h -------------------------------------------------------------------------------- /include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/include/elf.h -------------------------------------------------------------------------------- /include/standard-headers/linux/if_ether.h: -------------------------------------------------------------------------------- 1 | #define ETH_ALEN 6 2 | -------------------------------------------------------------------------------- /io/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/io/channel.c -------------------------------------------------------------------------------- /io/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/io/task.c -------------------------------------------------------------------------------- /ioport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ioport.c -------------------------------------------------------------------------------- /iothread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/iothread.c -------------------------------------------------------------------------------- /linux-headers/asm-arm/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /linux-headers/asm-arm64/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /linux-user/mips64/termbits.h: -------------------------------------------------------------------------------- 1 | #include "../mips/termbits.h" 2 | 3 | -------------------------------------------------------------------------------- /linux-user/sparc64/target_cpu.h: -------------------------------------------------------------------------------- 1 | #include "../sparc/target_cpu.h" 2 | -------------------------------------------------------------------------------- /linux-user/x86_64/target_cpu.h: -------------------------------------------------------------------------------- 1 | #include "../i386/target_cpu.h" 2 | -------------------------------------------------------------------------------- /memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/memory.c -------------------------------------------------------------------------------- /migration/fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/migration/fd.c -------------------------------------------------------------------------------- /migration/fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/migration/fd.h -------------------------------------------------------------------------------- /monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/monitor.c -------------------------------------------------------------------------------- /nbd/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/nbd/client.c -------------------------------------------------------------------------------- /nbd/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/nbd/common.c -------------------------------------------------------------------------------- /nbd/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/nbd/server.c -------------------------------------------------------------------------------- /net/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/checksum.c -------------------------------------------------------------------------------- /net/clients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/clients.h -------------------------------------------------------------------------------- /net/colo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/colo.c -------------------------------------------------------------------------------- /net/colo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/colo.h -------------------------------------------------------------------------------- /net/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/dump.c -------------------------------------------------------------------------------- /net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/eth.c -------------------------------------------------------------------------------- /net/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/filter.c -------------------------------------------------------------------------------- /net/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/hub.c -------------------------------------------------------------------------------- /net/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/hub.h -------------------------------------------------------------------------------- /net/l2tpv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/l2tpv3.c -------------------------------------------------------------------------------- /net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/net.c -------------------------------------------------------------------------------- /net/netmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/netmap.c -------------------------------------------------------------------------------- /net/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/queue.c -------------------------------------------------------------------------------- /net/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/slirp.c -------------------------------------------------------------------------------- /net/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/socket.c -------------------------------------------------------------------------------- /net/tap-bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/tap-bsd.c -------------------------------------------------------------------------------- /net/tap-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/tap-stub.c -------------------------------------------------------------------------------- /net/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/tap.c -------------------------------------------------------------------------------- /net/tap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/tap_int.h -------------------------------------------------------------------------------- /net/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/util.c -------------------------------------------------------------------------------- /net/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/util.h -------------------------------------------------------------------------------- /net/vde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/net/vde.c -------------------------------------------------------------------------------- /numa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/numa.c -------------------------------------------------------------------------------- /os-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/os-posix.c -------------------------------------------------------------------------------- /os-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/os-win32.c -------------------------------------------------------------------------------- /pc-bios/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/pc-bios/README -------------------------------------------------------------------------------- /pc-bios/keymaps/nl-be: -------------------------------------------------------------------------------- 1 | # Dutch (Belgium) 2 | map 0x813 3 | include common 4 | -------------------------------------------------------------------------------- /pc-bios/optionrom/code16gcc.h: -------------------------------------------------------------------------------- 1 | asm( 2 | ".code16gcc\n" 3 | ); 4 | -------------------------------------------------------------------------------- /pixman/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pixman/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/pixman/COPYING -------------------------------------------------------------------------------- /pixman/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pixman/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/pixman/INSTALL -------------------------------------------------------------------------------- /pixman/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pixman/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/pixman/README -------------------------------------------------------------------------------- /po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/po/Makefile -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/po/de_DE.po -------------------------------------------------------------------------------- /po/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/po/fr_FR.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/po/it.po -------------------------------------------------------------------------------- /po/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/po/messages.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /qdev-monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qdev-monitor.c -------------------------------------------------------------------------------- /qemu-doc.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qemu-doc.texi -------------------------------------------------------------------------------- /qemu-ga.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qemu-ga.texi -------------------------------------------------------------------------------- /qemu-img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qemu-img.c -------------------------------------------------------------------------------- /qemu-img.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qemu-img.texi -------------------------------------------------------------------------------- /qemu-io-cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qemu-io-cmds.c -------------------------------------------------------------------------------- /qemu-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qemu-io.c -------------------------------------------------------------------------------- /qemu-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qemu-nbd.c -------------------------------------------------------------------------------- /qemu-nbd.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qemu-nbd.texi -------------------------------------------------------------------------------- /qemu-options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qemu-options.h -------------------------------------------------------------------------------- /qemu-seccomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qemu-seccomp.c -------------------------------------------------------------------------------- /qemu-tech.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qemu-tech.texi -------------------------------------------------------------------------------- /qemu.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qemu.nsi -------------------------------------------------------------------------------- /qemu.sasl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qemu.sasl -------------------------------------------------------------------------------- /qga/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qga/channel.h -------------------------------------------------------------------------------- /qga/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qga/commands.c -------------------------------------------------------------------------------- /qga/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qga/main.c -------------------------------------------------------------------------------- /qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qmp.c -------------------------------------------------------------------------------- /qobject/qnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qobject/qnum.c -------------------------------------------------------------------------------- /qom/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qom/cpu.c -------------------------------------------------------------------------------- /qom/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qom/object.c -------------------------------------------------------------------------------- /qtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/qtest.c -------------------------------------------------------------------------------- /replication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/replication.c -------------------------------------------------------------------------------- /replication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/replication.h -------------------------------------------------------------------------------- /roms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/roms/Makefile -------------------------------------------------------------------------------- /roms/SLOF/VERSION: -------------------------------------------------------------------------------- 1 | 20170724 2 | -------------------------------------------------------------------------------- /roms/SLOF/board-js2x/slof/version.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/SLOF/board-qemu/slof/.gitignore: -------------------------------------------------------------------------------- 1 | OF.ffs 2 | -------------------------------------------------------------------------------- /roms/SLOF/romfs/tools/.gitignore: -------------------------------------------------------------------------------- 1 | build_romfs 2 | -------------------------------------------------------------------------------- /roms/SLOF/tools/.gitignore: -------------------------------------------------------------------------------- 1 | gen_reloc_table 2 | sloffs 3 | -------------------------------------------------------------------------------- /roms/ipxe/contrib/errdb/.gitignore: -------------------------------------------------------------------------------- 1 | errors.db 2 | -------------------------------------------------------------------------------- /roms/ipxe/contrib/rom-o-matic/doc/AUTOBOOT_CMD.html: -------------------------------------------------------------------------------- 1 | Automatic booting 2 | -------------------------------------------------------------------------------- /roms/ipxe/contrib/rom-o-matic/doc/COMDATA.html: -------------------------------------------------------------------------------- 1 | Serial Console Data bits 2 | -------------------------------------------------------------------------------- /roms/ipxe/contrib/rom-o-matic/doc/COMSPEED.html: -------------------------------------------------------------------------------- 1 | Serial Console Baud rate 2 | -------------------------------------------------------------------------------- /roms/ipxe/contrib/rom-o-matic/doc/COMSTOP.html: -------------------------------------------------------------------------------- 1 | Serial Console Stop bits 2 | -------------------------------------------------------------------------------- /roms/ipxe/contrib/rom-o-matic/doc/DHCP_CMD.html: -------------------------------------------------------------------------------- 1 | DHCP management commands 2 | -------------------------------------------------------------------------------- /roms/ipxe/contrib/rom-o-matic/doc/DNS_RESOLVER.html: -------------------------------------------------------------------------------- 1 | DNS resolver 2 | -------------------------------------------------------------------------------- /roms/ipxe/contrib/rom-o-matic/doc/IMAGE_ELF.html: -------------------------------------------------------------------------------- 1 | ELF image support 2 | -------------------------------------------------------------------------------- /roms/ipxe/contrib/rom-o-matic/doc/IMAGE_NBI.html: -------------------------------------------------------------------------------- 1 | NBI image support 2 | -------------------------------------------------------------------------------- /roms/ipxe/contrib/rom-o-matic/doc/IMAGE_PXE.html: -------------------------------------------------------------------------------- 1 | PXE image support 2 | -------------------------------------------------------------------------------- /roms/ipxe/contrib/rom-o-matic/doc/NMB_RESOLVER.html: -------------------------------------------------------------------------------- 1 | NMB resolver 2 | -------------------------------------------------------------------------------- /roms/ipxe/contrib/rom-o-matic/doc/SANBOOT_CMD.html: -------------------------------------------------------------------------------- 1 | SAN boot commands 2 | -------------------------------------------------------------------------------- /roms/ipxe/src/arch/x86/transitions/libpm.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/cloud/colour.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/cloud/crypto.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/cloud/serial.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/cloud/sideband.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/cloud/usb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/qemu/colour.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/qemu/console.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/qemu/crypto.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/qemu/serial.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/qemu/settings.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/qemu/sideband.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/qemu/usb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/vbox/colour.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/vbox/console.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/vbox/crypto.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/vbox/serial.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/vbox/settings.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/vbox/sideband.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/ipxe/src/config/vbox/usb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/openbios/.gitignore: -------------------------------------------------------------------------------- 1 | obj-* 2 | .stgit-* 3 | config-host.mak 4 | -------------------------------------------------------------------------------- /roms/openbios/VERSION: -------------------------------------------------------------------------------- 1 | 1.1 2 | -------------------------------------------------------------------------------- /roms/openbios/arch/amd64/relocate.h: -------------------------------------------------------------------------------- 1 | void relocate(struct sys_info *); 2 | -------------------------------------------------------------------------------- /roms/openbios/arch/sparc32/crs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/openbios/arch/x86/relocate.h: -------------------------------------------------------------------------------- 1 | void relocate(struct sys_info *); 2 | -------------------------------------------------------------------------------- /roms/openbios/fs/grubfs/debug.h: -------------------------------------------------------------------------------- 1 | /* for grub compatibility */ 2 | -------------------------------------------------------------------------------- /roms/openhackware/Timestamp: -------------------------------------------------------------------------------- 1 | 2005-04-06 at 21:44:49 2 | -------------------------------------------------------------------------------- /roms/qemu-palcode/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | palcode-* 3 | -------------------------------------------------------------------------------- /roms/seabios/.version: -------------------------------------------------------------------------------- 1 | rel-1.10.2-0-g5f4c7b1 2 | -------------------------------------------------------------------------------- /roms/seabios/src/code16gcc.s: -------------------------------------------------------------------------------- 1 | .code16gcc 2 | -------------------------------------------------------------------------------- /roms/skiboot/asm/dummy_map.S: -------------------------------------------------------------------------------- 1 | .section ".sym_map","a" 2 | .byte 0 3 | 4 | -------------------------------------------------------------------------------- /roms/skiboot/ccan/endian/.depends: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/skiboot/external/common/.gitignore: -------------------------------------------------------------------------------- 1 | ast-sf-ctrl.c 2 | ast.h 3 | io.h -------------------------------------------------------------------------------- /roms/skiboot/external/common/arch_flash_powerpc_io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/skiboot/external/common/arch_flash_x86_io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/skiboot/external/gard/test/results/00-list.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/skiboot/external/gard/test/results/01-show_1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/u-boot/arch/.gitignore: -------------------------------------------------------------------------------- 1 | /*/include/asm/arch 2 | -------------------------------------------------------------------------------- /roms/u-boot/arch/arc/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /roms/u-boot/arch/arm/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /roms/u-boot/arch/arm/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /roms/u-boot/arch/arm/include/asm/arch-ls102xa/soc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/u-boot/arch/arm/mach-stm32/stm32f1/Kconfig: -------------------------------------------------------------------------------- 1 | if STM32F1 2 | 3 | endif 4 | -------------------------------------------------------------------------------- /roms/u-boot/arch/m68k/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/u-boot/arch/microblaze/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /roms/u-boot/arch/microblaze/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/u-boot/arch/mips/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /roms/u-boot/arch/mips/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /roms/u-boot/arch/mips/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /roms/u-boot/arch/mips/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/u-boot/arch/nios2/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /roms/u-boot/arch/nios2/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /roms/u-boot/arch/nios2/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /roms/u-boot/arch/nios2/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/u-boot/arch/sandbox/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /roms/u-boot/arch/sandbox/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/u-boot/arch/sh/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/u-boot/arch/x86/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /roms/u-boot/arch/x86/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /roms/u-boot/arch/x86/include/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /roms/u-boot/arch/xtensa/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /roms/u-boot/board/aspeed/evb_ast2500/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += evb_ast2500.o 2 | -------------------------------------------------------------------------------- /roms/u-boot/board/cobra5272/bdm/gdbinit.reset: -------------------------------------------------------------------------------- 1 | target bdm /dev/bdmcf0 2 | q 3 | -------------------------------------------------------------------------------- /roms/u-boot/board/gdsys/a38x/.gitignore: -------------------------------------------------------------------------------- 1 | kwbimage.cfg 2 | -------------------------------------------------------------------------------- /roms/u-boot/board/l+g/vinco/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += vinco.o 2 | -------------------------------------------------------------------------------- /roms/u-boot/board/topic/zynq/board.c: -------------------------------------------------------------------------------- 1 | #include "../../xilinx/zynq/board.c" 2 | -------------------------------------------------------------------------------- /roms/u-boot/board/xilinx/zynq/.gitignore: -------------------------------------------------------------------------------- 1 | /ps7_init_gpl.[ch] 2 | -------------------------------------------------------------------------------- /roms/u-boot/drivers/ddr/Kconfig: -------------------------------------------------------------------------------- 1 | source "drivers/ddr/altera/Kconfig" 2 | -------------------------------------------------------------------------------- /roms/u-boot/drivers/mtd/ubispl/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += ubispl.o ../ubi/crc32.o 2 | -------------------------------------------------------------------------------- /roms/u-boot/drivers/pcmcia/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/u-boot/examples/api/.gitignore: -------------------------------------------------------------------------------- 1 | demo 2 | demo.bin 3 | -------------------------------------------------------------------------------- /roms/u-boot/fs/ext4/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/u-boot/fs/reiserfs/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/u-boot/fs/ubifs/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roms/u-boot/lib/efi_loader/.gitignore: -------------------------------------------------------------------------------- 1 | *.efi 2 | *.so 3 | -------------------------------------------------------------------------------- /roms/u-boot/lib/errno.c: -------------------------------------------------------------------------------- 1 | int errno = 0; 2 | -------------------------------------------------------------------------------- /roms/u-boot/scripts/Kconfig: -------------------------------------------------------------------------------- 1 | config BUILD_BIN2C 2 | bool 3 | -------------------------------------------------------------------------------- /roms/u-boot/scripts/basic/.gitignore: -------------------------------------------------------------------------------- 1 | fixdep 2 | -------------------------------------------------------------------------------- /roms/u-boot/snapshot.commit: -------------------------------------------------------------------------------- 1 | $Format:%H %cD$ 2 | -------------------------------------------------------------------------------- /roms/u-boot/test/py/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /roms/u-boot/tools/binman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /roms/u-boot/tools/binman/binman: -------------------------------------------------------------------------------- 1 | binman.py -------------------------------------------------------------------------------- /roms/u-boot/tools/buildman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /roms/u-boot/tools/buildman/buildman: -------------------------------------------------------------------------------- 1 | buildman.py -------------------------------------------------------------------------------- /roms/u-boot/tools/dtoc/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /roms/u-boot/tools/dtoc/dtoc: -------------------------------------------------------------------------------- 1 | dtoc.py -------------------------------------------------------------------------------- /roms/u-boot/tools/env/aes.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/aes.c" 2 | -------------------------------------------------------------------------------- /roms/u-boot/tools/env/crc32.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/crc32.c" 2 | -------------------------------------------------------------------------------- /roms/u-boot/tools/env/ctype.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/ctype.c" 2 | -------------------------------------------------------------------------------- /roms/u-boot/tools/env/env_attr.c: -------------------------------------------------------------------------------- 1 | #include "../../common/env_attr.c" 2 | -------------------------------------------------------------------------------- /roms/u-boot/tools/env/env_flags.c: -------------------------------------------------------------------------------- 1 | #include "../../common/env_flags.c" 2 | -------------------------------------------------------------------------------- /roms/u-boot/tools/microcode-tool: -------------------------------------------------------------------------------- 1 | microcode-tool.py -------------------------------------------------------------------------------- /roms/u-boot/tools/patman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /roms/u-boot/tools/patman/patman: -------------------------------------------------------------------------------- 1 | patman.py -------------------------------------------------------------------------------- /roms/vgabios/.cvsignore: -------------------------------------------------------------------------------- 1 | vbetables.h 2 | -------------------------------------------------------------------------------- /rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/rules.mak -------------------------------------------------------------------------------- /scripts/hxtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/scripts/hxtool -------------------------------------------------------------------------------- /scripts/qmp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slirp/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/bootp.c -------------------------------------------------------------------------------- /slirp/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/bootp.h -------------------------------------------------------------------------------- /slirp/cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/cksum.c -------------------------------------------------------------------------------- /slirp/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/debug.h -------------------------------------------------------------------------------- /slirp/dhcpv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/dhcpv6.c -------------------------------------------------------------------------------- /slirp/dhcpv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/dhcpv6.h -------------------------------------------------------------------------------- /slirp/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/if.c -------------------------------------------------------------------------------- /slirp/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/if.h -------------------------------------------------------------------------------- /slirp/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/ip.h -------------------------------------------------------------------------------- /slirp/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/ip6.h -------------------------------------------------------------------------------- /slirp/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/main.h -------------------------------------------------------------------------------- /slirp/mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/mbuf.c -------------------------------------------------------------------------------- /slirp/mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/mbuf.h -------------------------------------------------------------------------------- /slirp/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/misc.c -------------------------------------------------------------------------------- /slirp/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/misc.h -------------------------------------------------------------------------------- /slirp/ncsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/ncsi.c -------------------------------------------------------------------------------- /slirp/sbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/sbuf.c -------------------------------------------------------------------------------- /slirp/sbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/sbuf.h -------------------------------------------------------------------------------- /slirp/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/slirp.c -------------------------------------------------------------------------------- /slirp/slirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/slirp.h -------------------------------------------------------------------------------- /slirp/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/socket.c -------------------------------------------------------------------------------- /slirp/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/socket.h -------------------------------------------------------------------------------- /slirp/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/tcp.h -------------------------------------------------------------------------------- /slirp/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/tcpip.h -------------------------------------------------------------------------------- /slirp/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/tftp.c -------------------------------------------------------------------------------- /slirp/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/tftp.h -------------------------------------------------------------------------------- /slirp/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/udp.c -------------------------------------------------------------------------------- /slirp/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/udp.h -------------------------------------------------------------------------------- /slirp/udp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/slirp/udp6.c -------------------------------------------------------------------------------- /stubs/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/stubs/dump.c -------------------------------------------------------------------------------- /stubs/fdset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/stubs/fdset.c -------------------------------------------------------------------------------- /stubs/qtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/stubs/qtest.c -------------------------------------------------------------------------------- /stubs/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/stubs/replay.c -------------------------------------------------------------------------------- /stubs/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/stubs/slirp.c -------------------------------------------------------------------------------- /stubs/sysbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/stubs/sysbus.c -------------------------------------------------------------------------------- /stubs/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/stubs/uuid.c -------------------------------------------------------------------------------- /target/lm32/TODO: -------------------------------------------------------------------------------- 1 | * linux-user emulation 2 | -------------------------------------------------------------------------------- /target/moxie/machine.h: -------------------------------------------------------------------------------- 1 | extern const VMStateDescription vmstate_moxie_cpu; 2 | -------------------------------------------------------------------------------- /tcg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/tcg/LICENSE -------------------------------------------------------------------------------- /tcg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/tcg/README -------------------------------------------------------------------------------- /tcg/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/tcg/TODO -------------------------------------------------------------------------------- /tcg/optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/tcg/optimize.c -------------------------------------------------------------------------------- /tcg/tcg-mo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/tcg/tcg-mo.h -------------------------------------------------------------------------------- /tcg/tcg-op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/tcg/tcg-op.c -------------------------------------------------------------------------------- /tcg/tcg-op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/tcg/tcg-op.h -------------------------------------------------------------------------------- /tcg/tcg-opc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/tcg/tcg-opc.h -------------------------------------------------------------------------------- /tcg/tcg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/tcg/tcg.c -------------------------------------------------------------------------------- /tcg/tcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/tcg/tcg.h -------------------------------------------------------------------------------- /tcg/tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/tcg/tci.c -------------------------------------------------------------------------------- /tcg/tci/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/tcg/tci/README -------------------------------------------------------------------------------- /tests/acpi-test-data/pc/FACS: -------------------------------------------------------------------------------- 1 | sstv`  -------------------------------------------------------------------------------- /tests/acpi-test-data/q35/FACS: -------------------------------------------------------------------------------- 1 | sstv`  -------------------------------------------------------------------------------- /tests/image-fuzzer/qcow2/__init__.py: -------------------------------------------------------------------------------- 1 | from layout import create_image 2 | -------------------------------------------------------------------------------- /tests/migration/guestperf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-any.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-any.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-array.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-array.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-clash.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-clash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-enum-bool.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-enum-bool.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-enum-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-enum-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-nested.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-nested.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-alternate.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-alternate.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-any.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-any.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-array-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-array-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-array-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-array-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-bad-boxed.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-bad-boxed.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-anon.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-anon.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-invalid.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-invalid.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-array-bad.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-array-bad.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-case.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-case.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-name-clash.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-name-clash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-union.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-union.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-ident.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-ident.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-bool.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-bool.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/base-cycle-direct.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/base-cycle-direct.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/base-cycle-indirect.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/base-cycle-indirect.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/command-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/command-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/comments.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/comments.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-alternate-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-alternate-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-command-arg.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-command-arg.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-symbol.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-symbol.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-union-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-union-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-before-include.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-before-include.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-before-pragma.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-before-pragma.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-duplicated-arg.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-duplicated-arg.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-duplicated-return.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-duplicated-return.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-duplicated-since.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-duplicated-since.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-empty-arg.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-empty-arg.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-empty-section.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-empty-section.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-empty-symbol.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-empty-symbol.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-good.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-good.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-interleaved-section.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-interleaved-section.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-end.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-end.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-end2.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-end2.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-return.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-return.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-section.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-section.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-start.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-start.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-missing-colon.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-missing-colon.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-missing-expr.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-missing-expr.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-missing-space.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-missing-space.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-missing.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-missing.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-no-symbol.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-no-symbol.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/double-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/double-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/double-type.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/double-type.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/duplicate-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/duplicate-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/empty.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/empty.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-bad-name.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-bad-name.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-bad-prefix.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-bad-prefix.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-clash-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-clash-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-dict-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-dict-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-int-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-int-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-member-case.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-member-case.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-missing-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-missing-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-wrong-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-wrong-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-outside-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-outside-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-too-big.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-too-big.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-too-short.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-too-short.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-boxed-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-boxed-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-case.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-case.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-nest-struct.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-nest-struct.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-array-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-array-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-bad-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-bad-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-bad-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-bad-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-base-any.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-base-any.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-base-union.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-base-union.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-clash-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-clash-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-incomplete-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-incomplete-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-inline.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-inline.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-int-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-int-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-invalid-branch-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-invalid-branch-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-invalid-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-invalid-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-no-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-no-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-optional-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-optional-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-string-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-string-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/funny-char.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/funny-char.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/ident-with-escape.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/ident-with-escape.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-before-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-before-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-cycle.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-cycle.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-extra-junk.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-extra-junk.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-format-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-format-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-nested-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-nested-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-no-file.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-no-file.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-non-file.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-non-file.json: -------------------------------------------------------------------------------- 1 | { 'include': {} } 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-non-file.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-relpath.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-relpath.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-repetition.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-repetition.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-self-cycle.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-self-cycle.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-simple.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-simple.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/indented-expr.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/indented-expr.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/leading-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/leading-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/leading-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/leading-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-colon.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-colon.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-type.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-type.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/nested-struct-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/nested-struct-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/non-objects.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/non-objects.json: -------------------------------------------------------------------------------- 1 | 'string' 2 | [ ] 3 | -------------------------------------------------------------------------------- /tests/qapi-schema/non-objects.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-doc-required-crap.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-doc-required-crap.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-extra-junk.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-extra-junk.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-name-case-whitelist-crap.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-name-case-whitelist-crap.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-non-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-non-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-returns-whitelist-crap.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-returns-whitelist-crap.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/qapi-schema-test.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/qapi-schema-test.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/quoted-structural-chars.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/quoted-structural-chars.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-builtin.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-builtin.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-command.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-command.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-event.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-event.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-type.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-type.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-command-q.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-command-q.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-enum-q.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-enum-q.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-has.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-has.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-q.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-q.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-u.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-u.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-underscore.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-underscore.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-type-kind.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-type-kind.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-type-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-type-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-alternate.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-alternate.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-array-bad.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-array-bad.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-whitelist.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-whitelist.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-base-clash-deep.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-base-clash-deep.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-base-clash.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-base-clash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-data-invalid.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-data-invalid.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-member-invalid.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-member-invalid.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/trailing-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/trailing-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/trailing-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/trailing-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/type-bypass-bad-gen.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/type-bypass-bad-gen.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-list.json: -------------------------------------------------------------------------------- 1 | { 'key': [ 'value' } 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-object.json: -------------------------------------------------------------------------------- 1 | { 'key': [ 'value' ] 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-string.json: -------------------------------------------------------------------------------- 1 | { 'text': 'lorem ips 2 | } 3 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unicode-str.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unicode-str.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-base-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-base-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-base-no-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-base-no-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-branch-case.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-branch-case.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-clash-branches.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-clash-branches.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-invalid-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-invalid-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-optional-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-optional-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unknown-escape.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unknown-escape.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unknown-expr-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unknown-expr-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/thunk.c -------------------------------------------------------------------------------- /tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/tpm.c -------------------------------------------------------------------------------- /trace-events: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/trace-events -------------------------------------------------------------------------------- /trace/ftrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/trace/ftrace.c -------------------------------------------------------------------------------- /trace/ftrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/trace/ftrace.h -------------------------------------------------------------------------------- /trace/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/trace/mem.h -------------------------------------------------------------------------------- /trace/qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/trace/qmp.c -------------------------------------------------------------------------------- /trace/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/trace/simple.c -------------------------------------------------------------------------------- /trace/simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/trace/simple.h -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/types.h -------------------------------------------------------------------------------- /ui/cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/cocoa.m -------------------------------------------------------------------------------- /ui/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/console.c -------------------------------------------------------------------------------- /ui/curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/curses.c -------------------------------------------------------------------------------- /ui/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/cursor.c -------------------------------------------------------------------------------- /ui/gtk-egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/gtk-egl.c -------------------------------------------------------------------------------- /ui/gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/gtk.c -------------------------------------------------------------------------------- /ui/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/input.c -------------------------------------------------------------------------------- /ui/keymaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/keymaps.c -------------------------------------------------------------------------------- /ui/keymaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/keymaps.h -------------------------------------------------------------------------------- /ui/qemu-x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/qemu-x509.h -------------------------------------------------------------------------------- /ui/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/sdl.c -------------------------------------------------------------------------------- /ui/sdl2-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/sdl2-2d.c -------------------------------------------------------------------------------- /ui/sdl2-gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/sdl2-gl.c -------------------------------------------------------------------------------- /ui/sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/sdl2.c -------------------------------------------------------------------------------- /ui/sdl_zoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/sdl_zoom.c -------------------------------------------------------------------------------- /ui/sdl_zoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/sdl_zoom.h -------------------------------------------------------------------------------- /ui/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/shader.c -------------------------------------------------------------------------------- /ui/vgafont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/vgafont.h -------------------------------------------------------------------------------- /ui/vnc-jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/vnc-jobs.c -------------------------------------------------------------------------------- /ui/vnc-jobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/vnc-jobs.h -------------------------------------------------------------------------------- /ui/vnc-ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/vnc-ws.c -------------------------------------------------------------------------------- /ui/vnc-ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/vnc-ws.h -------------------------------------------------------------------------------- /ui/vnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/vnc.c -------------------------------------------------------------------------------- /ui/vnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/vnc.h -------------------------------------------------------------------------------- /ui/x_keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/x_keymap.c -------------------------------------------------------------------------------- /ui/x_keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/ui/x_keymap.h -------------------------------------------------------------------------------- /user-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/user-exec.c -------------------------------------------------------------------------------- /util/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/acl.c -------------------------------------------------------------------------------- /util/aiocb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/aiocb.c -------------------------------------------------------------------------------- /util/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/async.c -------------------------------------------------------------------------------- /util/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/base64.c -------------------------------------------------------------------------------- /util/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/bitmap.c -------------------------------------------------------------------------------- /util/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/bitops.c -------------------------------------------------------------------------------- /util/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/buffer.c -------------------------------------------------------------------------------- /util/crc32c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/crc32c.c -------------------------------------------------------------------------------- /util/cutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/cutils.c -------------------------------------------------------------------------------- /util/envlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/envlist.c -------------------------------------------------------------------------------- /util/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/error.c -------------------------------------------------------------------------------- /util/fifo8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/fifo8.c -------------------------------------------------------------------------------- /util/hbitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/hbitmap.c -------------------------------------------------------------------------------- /util/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/hexdump.c -------------------------------------------------------------------------------- /util/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/id.c -------------------------------------------------------------------------------- /util/iov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/iov.c -------------------------------------------------------------------------------- /util/keyval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/keyval.c -------------------------------------------------------------------------------- /util/lockcnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/lockcnt.c -------------------------------------------------------------------------------- /util/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/log.c -------------------------------------------------------------------------------- /util/memfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/memfd.c -------------------------------------------------------------------------------- /util/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/module.c -------------------------------------------------------------------------------- /util/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/notify.c -------------------------------------------------------------------------------- /util/osdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/osdep.c -------------------------------------------------------------------------------- /util/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/path.c -------------------------------------------------------------------------------- /util/qdist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/qdist.c -------------------------------------------------------------------------------- /util/qht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/qht.c -------------------------------------------------------------------------------- /util/range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/range.c -------------------------------------------------------------------------------- /util/rcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/rcu.c -------------------------------------------------------------------------------- /util/stats64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/stats64.c -------------------------------------------------------------------------------- /util/systemd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/systemd.c -------------------------------------------------------------------------------- /util/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/unicode.c -------------------------------------------------------------------------------- /util/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/uri.c -------------------------------------------------------------------------------- /util/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/util/uuid.c -------------------------------------------------------------------------------- /version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/version.rc -------------------------------------------------------------------------------- /vl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyw-200/EQUAFL/HEAD/vl.c --------------------------------------------------------------------------------