├── .gitignore ├── Doxyfile ├── LICENSE ├── Makefile ├── Opensgx_tutorial_v1 ├── Opensgx_tutorial_v1.docx ├── Opensgx_tutorial_v1.pdf ├── Opensgx_tutorial_v1.txt ├── README.md ├── Tor ├── Makefile ├── README ├── chutney │ ├── LICENSE │ ├── README │ ├── TODO │ ├── chutney │ ├── kill_tor.sh │ ├── lib │ │ └── chutney │ │ │ ├── Templating.py │ │ │ ├── TorNet.py │ │ │ ├── Traffic.py │ │ │ └── __init__.py │ ├── networks │ │ ├── basic │ │ ├── basic-025 │ │ ├── basic-100 │ │ ├── basic-min │ │ ├── basic-sgx-tor │ │ ├── bridges │ │ ├── bridges+ipv6 │ │ ├── hs │ │ ├── middle │ │ ├── middle-025 │ │ ├── middle-100 │ │ └── mixed │ ├── scratch │ │ └── NOTES │ ├── tools │ │ ├── bootstrap-network.sh │ │ ├── hsaddress.sh │ │ └── warnings.sh │ └── torrc_templates │ │ ├── authority.tmpl │ │ ├── bridge-v6.tmpl │ │ ├── bridge.tmpl │ │ ├── bridgeauthority.tmpl │ │ ├── bridgeclient.tmpl │ │ ├── client.tmpl │ │ ├── common.i │ │ ├── exit-v4.i │ │ ├── exit-v6.i │ │ ├── hs.tmpl │ │ ├── relay-exit-v4-only.tmpl │ │ ├── relay-exit-v6-only.tmpl │ │ ├── relay-non-exit.tmpl │ │ └── relay.tmpl ├── modesgx.h ├── protocol.h └── tor-0.2.5.10 │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── Makefile.nmake │ ├── README │ ├── ReleaseNotes │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── compile │ ├── config.guess │ ├── config.status │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── contrib │ ├── README │ ├── client-tools │ │ └── torify │ ├── dist │ │ ├── rc.subr │ │ ├── suse │ │ │ ├── tor.sh │ │ │ └── tor.sh.in │ │ ├── tor.service │ │ ├── tor.service.in │ │ ├── tor.sh │ │ ├── tor.sh.in │ │ ├── torctl │ │ └── torctl.in │ ├── include.am │ ├── operator-tools │ │ ├── linux-tor-prio.sh │ │ ├── tor-exit-notice.html │ │ ├── tor.logrotate │ │ └── tor.logrotate.in │ ├── or-tools │ │ └── exitlist │ └── win32build │ │ ├── package_nsis-mingw.sh │ │ ├── tor-mingw.nsi.in │ │ ├── tor.ico │ │ └── tor.nsi.in │ ├── depcomp │ ├── git │ ├── install-sh │ ├── m4 │ ├── ax_check_sign.m4 │ └── pc_from_ucontext.m4 │ ├── missing │ ├── orconfig.h │ ├── orconfig.h.in │ ├── src │ ├── common │ │ ├── .deps │ │ │ └── .dirstamp │ │ ├── .dirstamp │ │ ├── Makefile.nmake │ │ ├── address.c │ │ ├── address.h │ │ ├── aes.c │ │ ├── aes.h │ │ ├── backtrace.c │ │ ├── backtrace.h │ │ ├── ciphers.inc │ │ ├── compat.c │ │ ├── compat.h │ │ ├── compat_libevent.c │ │ ├── compat_libevent.h │ │ ├── container.c │ │ ├── container.h │ │ ├── crypto.c │ │ ├── crypto.h │ │ ├── crypto_curve25519.c │ │ ├── crypto_curve25519.h │ │ ├── crypto_format.c │ │ ├── di_ops.c │ │ ├── di_ops.h │ │ ├── include.am │ │ ├── linux_syscalls.inc │ │ ├── log.c │ │ ├── memarea.c │ │ ├── memarea.h │ │ ├── mempool.c │ │ ├── mempool.h │ │ ├── procmon.c │ │ ├── procmon.h │ │ ├── sandbox.c │ │ ├── sandbox.h │ │ ├── shmdata.h │ │ ├── testsupport.h │ │ ├── torgzip.c │ │ ├── torgzip.h │ │ ├── torint.h │ │ ├── torlog.h │ │ ├── tortls.c │ │ ├── tortls.h │ │ ├── util.c │ │ ├── util.h │ │ ├── util_codedigest.c │ │ ├── util_process.c │ │ └── util_process.h │ ├── config │ │ ├── geoip │ │ ├── geoip6 │ │ ├── include.am │ │ ├── torrc.sample │ │ └── torrc.sample.in │ ├── ext │ │ ├── .deps │ │ │ └── .dirstamp │ │ ├── .dirstamp │ │ ├── OpenBSD_malloc_Linux.c │ │ ├── README │ │ ├── csiphash.c │ │ ├── curve25519_donna │ │ │ ├── .deps │ │ │ │ └── .dirstamp │ │ │ ├── .dirstamp │ │ │ ├── curve25519-donna-c64.c │ │ │ └── curve25519-donna.c │ │ ├── eventdns.c │ │ ├── eventdns.h │ │ ├── ht.h │ │ ├── include.am │ │ ├── siphash.h │ │ ├── strlcat.c │ │ ├── strlcpy.c │ │ ├── tinytest.c │ │ ├── tinytest.h │ │ ├── tinytest_macros.h │ │ └── tor_queue.h │ ├── include.am │ ├── or │ │ ├── .deps │ │ │ └── .dirstamp │ │ ├── .dirstamp │ │ ├── Makefile.nmake │ │ ├── addressmap.c │ │ ├── addressmap.h │ │ ├── buffers.c │ │ ├── buffers.h │ │ ├── channel.c │ │ ├── channel.h │ │ ├── channeltls.c │ │ ├── channeltls.h │ │ ├── circpathbias.c │ │ ├── circpathbias.h │ │ ├── circuitbuild.c │ │ ├── circuitbuild.h │ │ ├── circuitlist.c │ │ ├── circuitlist.h │ │ ├── circuitmux.c │ │ ├── circuitmux.h │ │ ├── circuitmux_ewma.c │ │ ├── circuitmux_ewma.h │ │ ├── circuitstats.c │ │ ├── circuitstats.h │ │ ├── circuituse.c │ │ ├── circuituse.h │ │ ├── command.c │ │ ├── command.h │ │ ├── config.c │ │ ├── config.h │ │ ├── config_codedigest.c │ │ ├── confparse.c │ │ ├── confparse.h │ │ ├── connection.c │ │ ├── connection.h │ │ ├── connection_edge.c │ │ ├── connection_edge.h │ │ ├── connection_or.c │ │ ├── connection_or.h │ │ ├── control.c │ │ ├── control.h │ │ ├── cpuworker.c │ │ ├── cpuworker.h │ │ ├── directory.c │ │ ├── directory.h │ │ ├── dirserv.c │ │ ├── dirserv.h │ │ ├── dirvote.c │ │ ├── dirvote.h │ │ ├── dns.c │ │ ├── dns.h │ │ ├── dnsserv.c │ │ ├── dnsserv.h │ │ ├── entrynodes.c │ │ ├── entrynodes.h │ │ ├── eventdns_tor.h │ │ ├── ext_orport.c │ │ ├── ext_orport.h │ │ ├── fp_pair.c │ │ ├── fp_pair.h │ │ ├── geoip.c │ │ ├── geoip.h │ │ ├── hibernate.c │ │ ├── hibernate.h │ │ ├── include.am │ │ ├── main.c │ │ ├── main.h │ │ ├── microdesc.c │ │ ├── microdesc.h │ │ ├── networkstatus.c │ │ ├── networkstatus.h │ │ ├── nodelist.c │ │ ├── nodelist.h │ │ ├── ntmain.c │ │ ├── ntmain.h │ │ ├── onion.c │ │ ├── onion.h │ │ ├── onion_fast.c │ │ ├── onion_fast.h │ │ ├── onion_ntor.c │ │ ├── onion_ntor.h │ │ ├── onion_tap.c │ │ ├── onion_tap.h │ │ ├── or.h │ │ ├── policies.c │ │ ├── policies.h │ │ ├── reasons.c │ │ ├── reasons.h │ │ ├── relay.c │ │ ├── relay.h │ │ ├── rendclient.c │ │ ├── rendclient.h │ │ ├── rendcommon.c │ │ ├── rendcommon.h │ │ ├── rendmid.c │ │ ├── rendmid.h │ │ ├── rendservice.c │ │ ├── rendservice.h │ │ ├── rephist.c │ │ ├── rephist.h │ │ ├── replaycache.c │ │ ├── replaycache.h │ │ ├── router.c │ │ ├── router.h │ │ ├── routerlist.c │ │ ├── routerlist.h │ │ ├── routerparse.c │ │ ├── routerparse.h │ │ ├── routerset.c │ │ ├── routerset.h │ │ ├── statefile.c │ │ ├── statefile.h │ │ ├── status.c │ │ ├── status.h │ │ ├── tor_main.c │ │ ├── transports.c │ │ └── transports.h │ ├── test │ │ ├── .deps │ │ │ └── .dirstamp │ │ ├── .dirstamp │ │ ├── bench.c │ │ ├── bt_test.py │ │ ├── include.am │ │ ├── ntor_ref.py │ │ ├── slownacl_curve25519.py │ │ ├── test-child.c │ │ ├── test.c │ │ ├── test.h │ │ ├── test_addr.c │ │ ├── test_bt_cl.c │ │ ├── test_buffers.c │ │ ├── test_cell_formats.c │ │ ├── test_cell_queue.c │ │ ├── test_circuitlist.c │ │ ├── test_circuitmux.c │ │ ├── test_cmdline_args.py │ │ ├── test_config.c │ │ ├── test_containers.c │ │ ├── test_controller_events.c │ │ ├── test_crypto.c │ │ ├── test_data.c │ │ ├── test_dir.c │ │ ├── test_extorport.c │ │ ├── test_hs.c │ │ ├── test_introduce.c │ │ ├── test_logging.c │ │ ├── test_microdesc.c │ │ ├── test_nodelist.c │ │ ├── test_ntor_cl.c │ │ ├── test_oom.c │ │ ├── test_options.c │ │ ├── test_policy.c │ │ ├── test_pt.c │ │ ├── test_relaycell.c │ │ ├── test_replay.c │ │ ├── test_routerkeys.c │ │ ├── test_socks.c │ │ ├── test_status.c │ │ └── test_util.c │ ├── tools │ │ ├── .deps │ │ │ └── .dirstamp │ │ ├── .dirstamp │ │ ├── include.am │ │ ├── tor-checkkey.c │ │ ├── tor-fw-helper │ │ │ ├── include.am │ │ │ ├── tor-fw-helper-natpmp.c │ │ │ ├── tor-fw-helper-natpmp.h │ │ │ ├── tor-fw-helper-upnp.c │ │ │ ├── tor-fw-helper-upnp.h │ │ │ ├── tor-fw-helper.c │ │ │ └── tor-fw-helper.h │ │ ├── tor-gencert.c │ │ └── tor-resolve.c │ └── win32 │ │ ├── include.am │ │ └── orconfig.h │ ├── stamp-h1 │ ├── status │ └── test-driver ├── gdb ├── README ├── info_epc.py ├── info_epc_backup.py ├── info_epcm.py └── info_secs.py ├── libsgx ├── Makefile ├── README.md ├── include │ ├── asm-linkage.h │ ├── polarssl │ │ ├── aes.h │ │ ├── aes_cmac128.h │ │ ├── aesni.h │ │ ├── arc4.h │ │ ├── asn1.h │ │ ├── asn1write.h │ │ ├── base64.h │ │ ├── bignum.h │ │ ├── blowfish.h │ │ ├── bn_mul.h │ │ ├── camellia.h │ │ ├── ccm.h │ │ ├── certs.h │ │ ├── check_config.h │ │ ├── cipher.h │ │ ├── cipher_wrap.h │ │ ├── compat-1.2.h │ │ ├── config.h │ │ ├── ctr_drbg.h │ │ ├── debug.h │ │ ├── des.h │ │ ├── dhm.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── ecp.h │ │ ├── entropy.h │ │ ├── entropy_poll.h │ │ ├── error.h │ │ ├── gcm.h │ │ ├── havege.h │ │ ├── hmac_drbg.h │ │ ├── md.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── md_wrap.h │ │ ├── memory.h │ │ ├── memory_buffer_alloc.h │ │ ├── net.h │ │ ├── oid.h │ │ ├── openssl.h │ │ ├── padlock.h │ │ ├── pbkdf2.h │ │ ├── pem.h │ │ ├── pk.h │ │ ├── pk_wrap.h │ │ ├── pkcs11.h │ │ ├── pkcs12.h │ │ ├── pkcs5.h │ │ ├── platform.h │ │ ├── ripemd160.h │ │ ├── rsa.h │ │ ├── sha1.h │ │ ├── sha256.h │ │ ├── sha512.h │ │ ├── ssl.h │ │ ├── ssl_cache.h │ │ ├── ssl_ciphersuites.h │ │ ├── threading.h │ │ ├── timing.h │ │ ├── version.h │ │ ├── x509.h │ │ ├── x509_crl.h │ │ ├── x509_crt.h │ │ ├── x509_csr.h │ │ └── xtea.h │ └── sgx-lib.h ├── libcrypto.a ├── libssl.a ├── mbedtls-config-libsgx.h ├── mbedtls │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── DartConfiguration.tcl │ ├── LICENSE │ ├── Makefile │ ├── README.rst │ ├── configs │ │ ├── README.txt │ │ ├── config-ccm-psk-tls1_2.h │ │ ├── config-mini-tls1_1.h │ │ ├── config-picocoin.h │ │ ├── config-psk-rc4-tls1_0.h │ │ ├── config-sgx-enclave.h │ │ └── config-suite-b.h │ ├── doxygen │ │ ├── input │ │ │ ├── doc_encdec.h │ │ │ ├── doc_hashing.h │ │ │ ├── doc_mainpage.h │ │ │ ├── doc_rng.h │ │ │ ├── doc_ssltls.h │ │ │ ├── doc_tcpip.h │ │ │ └── doc_x509.h │ │ └── mbedtls.doxyfile │ ├── include │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ └── polarssl │ │ │ ├── aes.h │ │ │ ├── aes_cmac128.h │ │ │ ├── aesni.h │ │ │ ├── arc4.h │ │ │ ├── asn1.h │ │ │ ├── asn1write.h │ │ │ ├── base64.h │ │ │ ├── bignum.h │ │ │ ├── blowfish.h │ │ │ ├── bn_mul.h │ │ │ ├── camellia.h │ │ │ ├── ccm.h │ │ │ ├── certs.h │ │ │ ├── check_config.h │ │ │ ├── cipher.h │ │ │ ├── cipher_wrap.h │ │ │ ├── compat-1.2.h │ │ │ ├── config.h │ │ │ ├── ctr_drbg.h │ │ │ ├── debug.h │ │ │ ├── des.h │ │ │ ├── dhm.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── ecp.h │ │ │ ├── entropy.h │ │ │ ├── entropy_poll.h │ │ │ ├── error.h │ │ │ ├── gcm.h │ │ │ ├── havege.h │ │ │ ├── hmac_drbg.h │ │ │ ├── md.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── md_wrap.h │ │ │ ├── memory.h │ │ │ ├── memory_buffer_alloc.h │ │ │ ├── net.h │ │ │ ├── oid.h │ │ │ ├── openssl.h │ │ │ ├── padlock.h │ │ │ ├── pbkdf2.h │ │ │ ├── pem.h │ │ │ ├── pk.h │ │ │ ├── pk_wrap.h │ │ │ ├── pkcs11.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs5.h │ │ │ ├── platform.h │ │ │ ├── ripemd160.h │ │ │ ├── rsa.h │ │ │ ├── sha1.h │ │ │ ├── sha256.h │ │ │ ├── sha512.h │ │ │ ├── ssl.h │ │ │ ├── ssl_cache.h │ │ │ ├── ssl_ciphersuites.h │ │ │ ├── threading.h │ │ │ ├── timing.h │ │ │ ├── version.h │ │ │ ├── x509.h │ │ │ ├── x509_crl.h │ │ │ ├── x509_crt.h │ │ │ ├── x509_csr.h │ │ │ └── xtea.h │ ├── library │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── aes.c │ │ ├── aes_cmac128.c │ │ ├── aesni.c │ │ ├── arc4.c │ │ ├── asn1parse.c │ │ ├── asn1write.c │ │ ├── base64.c │ │ ├── bignum.c │ │ ├── blowfish.c │ │ ├── camellia.c │ │ ├── ccm.c │ │ ├── certs.c │ │ ├── cipher.c │ │ ├── cipher_wrap.c │ │ ├── ctr_drbg.c │ │ ├── debug.c │ │ ├── des.c │ │ ├── dhm.c │ │ ├── ecdh.c │ │ ├── ecdsa.c │ │ ├── ecp.c │ │ ├── ecp_curves.c │ │ ├── entropy.c │ │ ├── entropy_poll.c │ │ ├── error.c │ │ ├── gcm.c │ │ ├── havege.c │ │ ├── hmac_drbg.c │ │ ├── md.c │ │ ├── md2.c │ │ ├── md4.c │ │ ├── md5.c │ │ ├── md_wrap.c │ │ ├── memory_buffer_alloc.c │ │ ├── net.c │ │ ├── oid.c │ │ ├── padlock.c │ │ ├── pbkdf2.c │ │ ├── pem.c │ │ ├── pk.c │ │ ├── pk_wrap.c │ │ ├── pkcs11.c │ │ ├── pkcs12.c │ │ ├── pkcs5.c │ │ ├── pkparse.c │ │ ├── pkwrite.c │ │ ├── platform.c │ │ ├── ripemd160.c │ │ ├── rsa.c │ │ ├── sha1.c │ │ ├── sha256.c │ │ ├── sha512.c │ │ ├── ssl_cache.c │ │ ├── ssl_ciphersuites.c │ │ ├── ssl_cli.c │ │ ├── ssl_srv.c │ │ ├── ssl_tls.c │ │ ├── threading.c │ │ ├── timing.c │ │ ├── version.c │ │ ├── version_features.c │ │ ├── x509.c │ │ ├── x509_create.c │ │ ├── x509_crl.c │ │ ├── x509_crt.c │ │ ├── x509_csr.c │ │ ├── x509write_crt.c │ │ ├── x509write_csr.c │ │ └── xtea.c │ ├── programs │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── aes │ │ │ ├── CMakeLists.txt │ │ │ ├── aescrypt2.c │ │ │ └── crypt_and_hash.c │ │ ├── hash │ │ │ ├── CMakeLists.txt │ │ │ ├── generic_sum.c │ │ │ ├── hello.c │ │ │ ├── md5sum.c │ │ │ ├── sha1sum.c │ │ │ └── sha2sum.c │ │ ├── pkey │ │ │ ├── CMakeLists.txt │ │ │ ├── dh_client.c │ │ │ ├── dh_genprime.c │ │ │ ├── dh_prime.txt │ │ │ ├── dh_server.c │ │ │ ├── ecdsa.c │ │ │ ├── gen_key.c │ │ │ ├── key_app.c │ │ │ ├── key_app_writer.c │ │ │ ├── mpi_demo.c │ │ │ ├── pk_decrypt.c │ │ │ ├── pk_encrypt.c │ │ │ ├── pk_sign.c │ │ │ ├── pk_verify.c │ │ │ ├── rsa_decrypt.c │ │ │ ├── rsa_encrypt.c │ │ │ ├── rsa_genkey.c │ │ │ ├── rsa_priv.txt │ │ │ ├── rsa_pub.txt │ │ │ ├── rsa_sign.c │ │ │ ├── rsa_sign_pss.c │ │ │ ├── rsa_verify.c │ │ │ └── rsa_verify_pss.c │ │ ├── random │ │ │ ├── CMakeLists.txt │ │ │ ├── gen_entropy.c │ │ │ ├── gen_random_ctr_drbg.c │ │ │ └── gen_random_havege.c │ │ ├── ssl │ │ │ ├── CMakeLists.txt │ │ │ ├── mini_client.c │ │ │ ├── ssl_client1.c │ │ │ ├── ssl_client2.c │ │ │ ├── ssl_fork_server.c │ │ │ ├── ssl_mail_client.c │ │ │ ├── ssl_pthread_server.c │ │ │ ├── ssl_server.c │ │ │ └── ssl_server2.c │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── benchmark.c │ │ │ ├── o_p_test.c │ │ │ ├── selftest.c │ │ │ ├── ssl_cert_test.c │ │ │ └── ssl_test.c │ │ ├── util │ │ │ ├── CMakeLists.txt │ │ │ ├── pem2der.c │ │ │ └── strerror.c │ │ ├── wince_main.c │ │ └── x509 │ │ │ ├── CMakeLists.txt │ │ │ ├── cert_app.c │ │ │ ├── cert_req.c │ │ │ ├── cert_write.c │ │ │ ├── crl_app.c │ │ │ └── req_app.c │ ├── scripts │ │ ├── activate-config.pl │ │ ├── bump_version.sh │ │ ├── check_doxy_blocks.pl │ │ ├── config.pl │ │ ├── data_files │ │ │ ├── error.fmt │ │ │ ├── version_features.fmt │ │ │ ├── vs2010-app-template.vcxproj │ │ │ ├── vs2010-main-template.vcxproj │ │ │ ├── vs2010-sln-template.sln │ │ │ ├── vs6-app-template.dsp │ │ │ ├── vs6-main-template.dsp │ │ │ └── vs6-workspace-template.dsw │ │ ├── ecc-heap.sh │ │ ├── find-mem-leak.cocci │ │ ├── generate_errors.pl │ │ ├── generate_features.pl │ │ ├── generate_visualc_files.pl │ │ ├── malloc-init.pl │ │ ├── massif_max.pl │ │ ├── memory.sh │ │ ├── polarssl_symlinks.sh │ │ ├── recursion.pl │ │ ├── rm-malloc-cast.cocci │ │ └── tmp_ignore_makefiles.sh │ ├── tests │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Descriptions.txt │ │ ├── Makefile │ │ ├── compat.sh │ │ ├── data_files │ │ │ ├── Readme-x509.txt │ │ │ ├── bitstring-in-dn.pem │ │ │ ├── cert_example_multi.crt │ │ │ ├── cert_example_multi_nocn.crt │ │ │ ├── cert_example_wildcard.crt │ │ │ ├── cert_md2.crt │ │ │ ├── cert_md4.crt │ │ │ ├── cert_md5.crt │ │ │ ├── cert_sha1.crt │ │ │ ├── cert_sha224.crt │ │ │ ├── cert_sha256.crt │ │ │ ├── cert_sha384.crt │ │ │ ├── cert_sha512.crt │ │ │ ├── cert_v1_with_ext.crt │ │ │ ├── cli2.crt │ │ │ ├── cli2.key │ │ │ ├── crl-ec-sha1.pem │ │ │ ├── crl-ec-sha224.pem │ │ │ ├── crl-ec-sha256.pem │ │ │ ├── crl-ec-sha384.pem │ │ │ ├── crl-ec-sha512.pem │ │ │ ├── crl-future.pem │ │ │ ├── crl-rsa-pss-sha1-badsign.pem │ │ │ ├── crl-rsa-pss-sha1.pem │ │ │ ├── crl-rsa-pss-sha224.pem │ │ │ ├── crl-rsa-pss-sha256.pem │ │ │ ├── crl-rsa-pss-sha384.pem │ │ │ ├── crl-rsa-pss-sha512.pem │ │ │ ├── crl.pem │ │ │ ├── crl_cat_ec-rsa.pem │ │ │ ├── crl_cat_ecfut-rsa.pem │ │ │ ├── crl_cat_rsa-ec.pem │ │ │ ├── crl_cat_rsabadpem-ec.pem │ │ │ ├── crl_expired.pem │ │ │ ├── crl_md2.pem │ │ │ ├── crl_md4.pem │ │ │ ├── crl_md5.pem │ │ │ ├── crl_sha1.pem │ │ │ ├── crl_sha224.pem │ │ │ ├── crl_sha256.pem │ │ │ ├── crl_sha384.pem │ │ │ ├── crl_sha512.pem │ │ │ ├── crt_cat_rsaexp-ec.pem │ │ │ ├── dh.optlen.pem │ │ │ ├── dhparams.pem │ │ │ ├── dir1 │ │ │ │ └── test-ca.crt │ │ │ ├── dir2 │ │ │ │ ├── test-ca.crt │ │ │ │ └── test-ca2.crt │ │ │ ├── dir3 │ │ │ │ ├── Readme │ │ │ │ ├── test-ca.crt │ │ │ │ └── test-ca2.crt │ │ │ ├── ec_224_prv.pem │ │ │ ├── ec_224_pub.pem │ │ │ ├── ec_256_prv.pem │ │ │ ├── ec_256_pub.pem │ │ │ ├── ec_384_prv.pem │ │ │ ├── ec_384_pub.pem │ │ │ ├── ec_521_prv.pem │ │ │ ├── ec_521_pub.pem │ │ │ ├── ec_bp256_prv.pem │ │ │ ├── ec_bp256_pub.pem │ │ │ ├── ec_bp384_prv.pem │ │ │ ├── ec_bp384_pub.pem │ │ │ ├── ec_bp512_prv.pem │ │ │ ├── ec_bp512_pub.pem │ │ │ ├── ec_prv.noopt.der │ │ │ ├── ec_prv.pk8.der │ │ │ ├── ec_prv.pk8.pem │ │ │ ├── ec_prv.pk8.pw.der │ │ │ ├── ec_prv.pk8.pw.pem │ │ │ ├── ec_prv.sec1.der │ │ │ ├── ec_prv.sec1.pem │ │ │ ├── ec_prv.sec1.pw.pem │ │ │ ├── ec_prv.specdom.der │ │ │ ├── ec_pub.der │ │ │ ├── ec_pub.pem │ │ │ ├── enco-ca-prstr.pem │ │ │ ├── enco-cert-utf8str.pem │ │ │ ├── format_gen.key │ │ │ ├── format_gen.pub │ │ │ ├── format_pkcs12.fmt │ │ │ ├── format_rsa.key │ │ │ ├── hash_file_1 │ │ │ ├── hash_file_2 │ │ │ ├── hash_file_3 │ │ │ ├── hash_file_4 │ │ │ ├── hash_file_5 │ │ │ ├── keyfile │ │ │ ├── keyfile.3des │ │ │ ├── keyfile.aes128 │ │ │ ├── keyfile.aes192 │ │ │ ├── keyfile.aes256 │ │ │ ├── keyfile.des │ │ │ ├── mpi_10 │ │ │ ├── mpi_too_big │ │ │ ├── passwd.psk │ │ │ ├── pkcs8_pbe_sha1_2des.key │ │ │ ├── pkcs8_pbe_sha1_3des.der │ │ │ ├── pkcs8_pbe_sha1_3des.key │ │ │ ├── pkcs8_pbe_sha1_rc4_128.key │ │ │ ├── pkcs8_pbes2_pbkdf2_3des.der │ │ │ ├── pkcs8_pbes2_pbkdf2_3des.key │ │ │ ├── pkcs8_pbes2_pbkdf2_des.key │ │ │ ├── rsa4096_prv.pem │ │ │ ├── rsa4096_pub.pem │ │ │ ├── server1-nospace.crt │ │ │ ├── server1-v1.crt │ │ │ ├── server1.cert_type.crt │ │ │ ├── server1.crt │ │ │ ├── server1.ext_ku.crt │ │ │ ├── server1.key │ │ │ ├── server1.key_usage.crt │ │ │ ├── server1.pubkey │ │ │ ├── server1.req.cert_type │ │ │ ├── server1.req.key_usage │ │ │ ├── server1.req.ku-ct │ │ │ ├── server1.req.md4 │ │ │ ├── server1.req.md5 │ │ │ ├── server1.req.sha1 │ │ │ ├── server1.req.sha224 │ │ │ ├── server1.req.sha256 │ │ │ ├── server1.req.sha384 │ │ │ ├── server1.req.sha512 │ │ │ ├── server1.v1.crt │ │ │ ├── server2-badsign.crt │ │ │ ├── server2-v1-chain.crt │ │ │ ├── server2-v1.crt │ │ │ ├── server2.crt │ │ │ ├── server2.key │ │ │ ├── server2.ku-ds.crt │ │ │ ├── server2.ku-ds_ke.crt │ │ │ ├── server2.ku-ka.crt │ │ │ ├── server2.ku-ke.crt │ │ │ ├── server3.crt │ │ │ ├── server3.key │ │ │ ├── server4.crt │ │ │ ├── server4.key │ │ │ ├── server5-badsign.crt │ │ │ ├── server5-expired.crt │ │ │ ├── server5-future.crt │ │ │ ├── server5-selfsigned.crt │ │ │ ├── server5-sha1.crt │ │ │ ├── server5-sha224.crt │ │ │ ├── server5-sha384.crt │ │ │ ├── server5-sha512.crt │ │ │ ├── server5.crt │ │ │ ├── server5.eku-cli.crt │ │ │ ├── server5.eku-cs.crt │ │ │ ├── server5.eku-cs_any.crt │ │ │ ├── server5.eku-srv.crt │ │ │ ├── server5.eku-srv_cli.crt │ │ │ ├── server5.key │ │ │ ├── server5.ku-ds.crt │ │ │ ├── server5.ku-ka.crt │ │ │ ├── server5.ku-ke.crt │ │ │ ├── server5.req.ku.sha1 │ │ │ ├── server5.req.sha1 │ │ │ ├── server5.req.sha224 │ │ │ ├── server5.req.sha256 │ │ │ ├── server5.req.sha384 │ │ │ ├── server5.req.sha512 │ │ │ ├── server6-ss-child.crt │ │ │ ├── server6.crt │ │ │ ├── server6.key │ │ │ ├── server7.crt │ │ │ ├── server7.key │ │ │ ├── server7_all_space.crt │ │ │ ├── server7_int-ca.crt │ │ │ ├── server7_pem_space.crt │ │ │ ├── server8.crt │ │ │ ├── server8.key │ │ │ ├── server8_int-ca2.crt │ │ │ ├── server9-bad-mgfhash.crt │ │ │ ├── server9-bad-saltlen.crt │ │ │ ├── server9-badsign.crt │ │ │ ├── server9-defaults.crt │ │ │ ├── server9-sha224.crt │ │ │ ├── server9-sha256.crt │ │ │ ├── server9-sha384.crt │ │ │ ├── server9-sha512.crt │ │ │ ├── server9-with-ca.crt │ │ │ ├── server9.crt │ │ │ ├── server9.key │ │ │ ├── server9.req.sha1 │ │ │ ├── server9.req.sha224 │ │ │ ├── server9.req.sha256 │ │ │ ├── server9.req.sha384 │ │ │ ├── server9.req.sha512 │ │ │ ├── test-ca-v1.crt │ │ │ ├── test-ca.crt │ │ │ ├── test-ca.key │ │ │ ├── test-ca2.crt │ │ │ ├── test-ca2.key │ │ │ ├── test-ca2.ku-crl.crt │ │ │ ├── test-ca2.ku-crt.crt │ │ │ ├── test-ca2.ku-crt_crl.crt │ │ │ ├── test-ca2.ku-ds.crt │ │ │ ├── test-ca_cat12.crt │ │ │ ├── test-ca_cat21.crt │ │ │ ├── test-int-ca.crt │ │ │ ├── test-int-ca.key │ │ │ ├── test-int-ca2.crt │ │ │ └── test-int-ca2.key │ │ ├── scripts │ │ │ ├── all.sh │ │ │ ├── check-generated-files.sh │ │ │ ├── curves.pl │ │ │ ├── gen_ctr_drbg.pl │ │ │ ├── gen_gcm_decrypt.pl │ │ │ ├── gen_gcm_encrypt.pl │ │ │ ├── gen_pkcs1_v21_sign_verify.pl │ │ │ ├── generate_code.pl │ │ │ └── test-ref-configs.pl │ │ ├── ssl-opt.sh │ │ └── suites │ │ │ ├── helpers.function │ │ │ ├── main_test.function │ │ │ ├── test_suite_aes.cbc.data │ │ │ ├── test_suite_aes.cfb.data │ │ │ ├── test_suite_aes.ecb.data │ │ │ ├── test_suite_aes.function │ │ │ ├── test_suite_aes.rest.data │ │ │ ├── test_suite_arc4.data │ │ │ ├── test_suite_arc4.function │ │ │ ├── test_suite_asn1write.data │ │ │ ├── test_suite_asn1write.function │ │ │ ├── test_suite_base64.data │ │ │ ├── test_suite_base64.function │ │ │ ├── test_suite_blowfish.data │ │ │ ├── test_suite_blowfish.function │ │ │ ├── test_suite_camellia.data │ │ │ ├── test_suite_camellia.function │ │ │ ├── test_suite_ccm.data │ │ │ ├── test_suite_ccm.function │ │ │ ├── test_suite_cipher.aes.data │ │ │ ├── test_suite_cipher.arc4.data │ │ │ ├── test_suite_cipher.blowfish.data │ │ │ ├── test_suite_cipher.camellia.data │ │ │ ├── test_suite_cipher.ccm.data │ │ │ ├── test_suite_cipher.des.data │ │ │ ├── test_suite_cipher.function │ │ │ ├── test_suite_cipher.gcm.data │ │ │ ├── test_suite_cipher.null.data │ │ │ ├── test_suite_cipher.padding.data │ │ │ ├── test_suite_ctr_drbg.data │ │ │ ├── test_suite_ctr_drbg.function │ │ │ ├── test_suite_debug.data │ │ │ ├── test_suite_debug.function │ │ │ ├── test_suite_des.data │ │ │ ├── test_suite_des.function │ │ │ ├── test_suite_dhm.data │ │ │ ├── test_suite_dhm.function │ │ │ ├── test_suite_ecdh.data │ │ │ ├── test_suite_ecdh.function │ │ │ ├── test_suite_ecdsa.data │ │ │ ├── test_suite_ecdsa.function │ │ │ ├── test_suite_ecp.data │ │ │ ├── test_suite_ecp.function │ │ │ ├── test_suite_entropy.data │ │ │ ├── test_suite_entropy.function │ │ │ ├── test_suite_error.data │ │ │ ├── test_suite_error.function │ │ │ ├── test_suite_gcm.aes128_de.data │ │ │ ├── test_suite_gcm.aes128_en.data │ │ │ ├── test_suite_gcm.aes192_de.data │ │ │ ├── test_suite_gcm.aes192_en.data │ │ │ ├── test_suite_gcm.aes256_de.data │ │ │ ├── test_suite_gcm.aes256_en.data │ │ │ ├── test_suite_gcm.camellia.data │ │ │ ├── test_suite_gcm.function │ │ │ ├── test_suite_hmac_drbg.function │ │ │ ├── test_suite_hmac_drbg.misc.data │ │ │ ├── test_suite_hmac_drbg.no_reseed.data │ │ │ ├── test_suite_hmac_drbg.nopr.data │ │ │ ├── test_suite_hmac_drbg.pr.data │ │ │ ├── test_suite_hmac_shax.data │ │ │ ├── test_suite_hmac_shax.function │ │ │ ├── test_suite_md.data │ │ │ ├── test_suite_md.function │ │ │ ├── test_suite_mdx.data │ │ │ ├── test_suite_mdx.function │ │ │ ├── test_suite_memory_buffer_alloc.data │ │ │ ├── test_suite_memory_buffer_alloc.function │ │ │ ├── test_suite_mpi.data │ │ │ ├── test_suite_mpi.function │ │ │ ├── test_suite_pbkdf2.data │ │ │ ├── test_suite_pbkdf2.function │ │ │ ├── test_suite_pem.data │ │ │ ├── test_suite_pem.function │ │ │ ├── test_suite_pk.data │ │ │ ├── test_suite_pk.function │ │ │ ├── test_suite_pkcs1_v21.data │ │ │ ├── test_suite_pkcs1_v21.function │ │ │ ├── test_suite_pkcs5.data │ │ │ ├── test_suite_pkcs5.function │ │ │ ├── test_suite_pkparse.data │ │ │ ├── test_suite_pkparse.function │ │ │ ├── test_suite_pkwrite.data │ │ │ ├── test_suite_pkwrite.function │ │ │ ├── test_suite_rsa.data │ │ │ ├── test_suite_rsa.function │ │ │ ├── test_suite_shax.data │ │ │ ├── test_suite_shax.function │ │ │ ├── test_suite_version.data │ │ │ ├── test_suite_version.function │ │ │ ├── test_suite_x509parse.data │ │ │ ├── test_suite_x509parse.function │ │ │ ├── test_suite_x509write.data │ │ │ ├── test_suite_x509write.function │ │ │ ├── test_suite_xtea.data │ │ │ └── test_suite_xtea.function │ └── visualc │ │ ├── VS2010 │ │ ├── aescrypt2.vcxproj │ │ ├── benchmark.vcxproj │ │ ├── cert_app.vcxproj │ │ ├── cert_req.vcxproj │ │ ├── crl_app.vcxproj │ │ ├── crypt_and_hash.vcxproj │ │ ├── dh_client.vcxproj │ │ ├── dh_genprime.vcxproj │ │ ├── dh_server.vcxproj │ │ ├── gen_entropy.vcxproj │ │ ├── gen_key.vcxproj │ │ ├── gen_random_ctr_drbg.vcxproj │ │ ├── gen_random_havege.vcxproj │ │ ├── generic_sum.vcxproj │ │ ├── hello.vcxproj │ │ ├── key_app.vcxproj │ │ ├── key_app_writer.vcxproj │ │ ├── mbedTLS.sln │ │ ├── mbedTLS.vcxproj │ │ ├── md5sum.vcxproj │ │ ├── mini_client.vcxproj │ │ ├── mpi_demo.vcxproj │ │ ├── pem2der.vcxproj │ │ ├── pk_decrypt.vcxproj │ │ ├── pk_encrypt.vcxproj │ │ ├── pk_sign.vcxproj │ │ ├── pk_verify.vcxproj │ │ ├── rsa_decrypt.vcxproj │ │ ├── rsa_encrypt.vcxproj │ │ ├── rsa_genkey.vcxproj │ │ ├── rsa_sign.vcxproj │ │ ├── rsa_sign_pss.vcxproj │ │ ├── rsa_verify.vcxproj │ │ ├── rsa_verify_pss.vcxproj │ │ ├── selftest.vcxproj │ │ ├── sha1sum.vcxproj │ │ ├── sha2sum.vcxproj │ │ ├── ssl_cert_test.vcxproj │ │ ├── ssl_client1.vcxproj │ │ ├── ssl_client2.vcxproj │ │ ├── ssl_fork_server.vcxproj │ │ ├── ssl_mail_client.vcxproj │ │ ├── ssl_server.vcxproj │ │ ├── ssl_server2.vcxproj │ │ ├── ssl_test.vcxproj │ │ └── strerror.vcxproj │ │ └── VS6 │ │ ├── aescrypt2.dsp │ │ ├── benchmark.dsp │ │ ├── cert_app.dsp │ │ ├── cert_req.dsp │ │ ├── crl_app.dsp │ │ ├── crypt_and_hash.dsp │ │ ├── dh_client.dsp │ │ ├── dh_genprime.dsp │ │ ├── dh_prime.txt │ │ ├── dh_server.dsp │ │ ├── gen_entropy.dsp │ │ ├── gen_key.dsp │ │ ├── gen_random_ctr_drbg.dsp │ │ ├── gen_random_havege.dsp │ │ ├── generic_sum.dsp │ │ ├── hello.dsp │ │ ├── key_app.dsp │ │ ├── key_app_writer.dsp │ │ ├── mbedtls.dsp │ │ ├── mbedtls.dsw │ │ ├── md5sum.dsp │ │ ├── mini_client.dsp │ │ ├── mpi_demo.dsp │ │ ├── pem2der.dsp │ │ ├── pk_decrypt.dsp │ │ ├── pk_encrypt.dsp │ │ ├── pk_sign.dsp │ │ ├── pk_verify.dsp │ │ ├── rsa_decrypt.dsp │ │ ├── rsa_encrypt.dsp │ │ ├── rsa_genkey.dsp │ │ ├── rsa_priv.txt │ │ ├── rsa_pub.txt │ │ ├── rsa_sign.dsp │ │ ├── rsa_sign_pss.dsp │ │ ├── rsa_verify.dsp │ │ ├── rsa_verify_pss.dsp │ │ ├── selftest.dsp │ │ ├── sha1sum.dsp │ │ ├── sha2sum.dsp │ │ ├── ssl_cert_test.dsp │ │ ├── ssl_client1.dsp │ │ ├── ssl_client2.dsp │ │ ├── ssl_fork_server.dsp │ │ ├── ssl_mail_client.dsp │ │ ├── ssl_server.dsp │ │ ├── ssl_server2.dsp │ │ ├── ssl_test.dsp │ │ └── strerror.dsp ├── musl-libc │ ├── .gitignore │ ├── COPYRIGHT │ ├── INSTALL │ ├── Makefile │ ├── README │ ├── VERSION │ ├── WHATSNEW │ ├── arch │ │ ├── arm │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ ├── src │ │ │ │ ├── __aeabi_atexit.c │ │ │ │ └── find_exidx.c │ │ │ └── syscall_arch.h │ │ ├── i386 │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── microblaze │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── mips │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── ksigaction.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── powerpc │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── sh │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ ├── src │ │ │ │ ├── __fpscr_values.c │ │ │ │ └── atomic.c │ │ │ └── syscall_arch.h │ │ ├── x32 │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ ├── src │ │ │ │ ├── syscall_cp_fixup.c │ │ │ │ └── sysinfo.c │ │ │ └── syscall_arch.h │ │ └── x86_64 │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── io.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── limits.h │ │ │ ├── mman.h │ │ │ ├── msg.h │ │ │ ├── poll.h │ │ │ ├── posix.h │ │ │ ├── reg.h │ │ │ ├── resource.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── stdarg.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h │ │ │ ├── termios.h │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ ├── configure │ ├── crt │ │ ├── Scrt1.c │ │ ├── arm │ │ │ ├── Scrt1.s │ │ │ ├── crt1.s │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── crt1.c │ │ ├── crti.c │ │ ├── crtn.c │ │ ├── i386 │ │ │ ├── Scrt1.s │ │ │ ├── crt1.s │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── microblaze │ │ │ ├── crt1.s │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── mips │ │ │ ├── crt1.s │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── powerpc │ │ │ ├── crt1.s │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── superh │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── x32 │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ └── x86_64 │ │ │ ├── Scrt1.s │ │ │ ├── crt1.s │ │ │ ├── crti.s │ │ │ └── crtn.s │ ├── include │ │ ├── aio.h │ │ ├── alloca.h │ │ ├── alltypes.h.in │ │ ├── ar.h │ │ ├── arpa │ │ │ ├── ftp.h │ │ │ ├── inet.h │ │ │ ├── nameser.h │ │ │ ├── nameser_compat.h │ │ │ ├── telnet.h │ │ │ └── tftp.h │ │ ├── assert.h │ │ ├── byteswap.h │ │ ├── complex.h │ │ ├── cpio.h │ │ ├── crypt.h │ │ ├── ctype.h │ │ ├── dirent.h │ │ ├── dlfcn.h │ │ ├── elf.h │ │ ├── endian.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── features.h │ │ ├── fenv.h │ │ ├── float.h │ │ ├── fnmatch.h │ │ ├── ftw.h │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── grp.h │ │ ├── iconv.h │ │ ├── ifaddrs.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── langinfo.h │ │ ├── lastlog.h │ │ ├── libgen.h │ │ ├── libintl.h │ │ ├── limits.h │ │ ├── link.h │ │ ├── locale.h │ │ ├── malloc.h │ │ ├── math.h │ │ ├── memory.h │ │ ├── mntent.h │ │ ├── monetary.h │ │ ├── mqueue.h │ │ ├── net │ │ │ ├── ethernet.h │ │ │ ├── if.h │ │ │ ├── if_arp.h │ │ │ └── route.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ ├── ether.h │ │ │ ├── icmp6.h │ │ │ ├── if_ether.h │ │ │ ├── igmp.h │ │ │ ├── in.h │ │ │ ├── in_systm.h │ │ │ ├── ip.h │ │ │ ├── ip6.h │ │ │ ├── ip_icmp.h │ │ │ ├── tcp.h │ │ │ └── udp.h │ │ ├── netpacket │ │ │ └── packet.h │ │ ├── nl_types.h │ │ ├── paths.h │ │ ├── poll.h │ │ ├── pthread.h │ │ ├── pty.h │ │ ├── pwd.h │ │ ├── regex.h │ │ ├── resolv.h │ │ ├── sched.h │ │ ├── scsi │ │ │ ├── scsi.h │ │ │ ├── scsi_ioctl.h │ │ │ └── sg.h │ │ ├── search.h │ │ ├── semaphore.h │ │ ├── setjmp.h │ │ ├── sgx-lib.h │ │ ├── sgx-shared.h │ │ ├── shadow.h │ │ ├── signal.h │ │ ├── spawn.h │ │ ├── stdalign.h │ │ ├── stdarg.h │ │ ├── stdbool.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdio_ext.h │ │ ├── stdlib.h │ │ ├── stdnoreturn.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── stropts.h │ │ ├── sys │ │ │ ├── acct.h │ │ │ ├── cachectl.h │ │ │ ├── dir.h │ │ │ ├── epoll.h │ │ │ ├── errno.h │ │ │ ├── eventfd.h │ │ │ ├── fanotify.h │ │ │ ├── fcntl.h │ │ │ ├── file.h │ │ │ ├── fsuid.h │ │ │ ├── inotify.h │ │ │ ├── io.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── kd.h │ │ │ ├── klog.h │ │ │ ├── mman.h │ │ │ ├── mount.h │ │ │ ├── msg.h │ │ │ ├── mtio.h │ │ │ ├── param.h │ │ │ ├── personality.h │ │ │ ├── poll.h │ │ │ ├── prctl.h │ │ │ ├── procfs.h │ │ │ ├── ptrace.h │ │ │ ├── quota.h │ │ │ ├── reboot.h │ │ │ ├── reg.h │ │ │ ├── resource.h │ │ │ ├── select.h │ │ │ ├── sem.h │ │ │ ├── sendfile.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── signalfd.h │ │ │ ├── socket.h │ │ │ ├── soundcard.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── statvfs.h │ │ │ ├── stropts.h │ │ │ ├── swap.h │ │ │ ├── syscall.h │ │ │ ├── sysinfo.h │ │ │ ├── syslog.h │ │ │ ├── sysmacros.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── timerfd.h │ │ │ ├── times.h │ │ │ ├── timex.h │ │ │ ├── ttydefaults.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ ├── uio.h │ │ │ ├── un.h │ │ │ ├── user.h │ │ │ ├── utsname.h │ │ │ ├── vfs.h │ │ │ ├── vt.h │ │ │ ├── wait.h │ │ │ └── xattr.h │ │ ├── syscall.h │ │ ├── sysexits.h │ │ ├── syslog.h │ │ ├── tar.h │ │ ├── termios.h │ │ ├── tgmath.h │ │ ├── time.h │ │ ├── ucontext.h │ │ ├── ulimit.h │ │ ├── unistd.h │ │ ├── utime.h │ │ ├── utmp.h │ │ ├── utmpx.h │ │ ├── values.h │ │ ├── wait.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ └── wordexp.h │ ├── lib │ │ └── empty │ ├── src │ │ ├── aio │ │ │ ├── aio_cancel.c │ │ │ ├── aio_error.c │ │ │ ├── aio_fsync.c │ │ │ ├── aio_readwrite.c │ │ │ ├── aio_return.c │ │ │ ├── aio_suspend.c │ │ │ └── lio_listio.c │ │ ├── complex │ │ │ ├── __cexp.c │ │ │ ├── __cexpf.c │ │ │ ├── cabs.c │ │ │ ├── cabsf.c │ │ │ ├── cabsl.c │ │ │ ├── cacos.c │ │ │ ├── cacosf.c │ │ │ ├── cacosh.c │ │ │ ├── cacoshf.c │ │ │ ├── cacoshl.c │ │ │ ├── cacosl.c │ │ │ ├── carg.c │ │ │ ├── cargf.c │ │ │ ├── cargl.c │ │ │ ├── casin.c │ │ │ ├── casinf.c │ │ │ ├── casinh.c │ │ │ ├── casinhf.c │ │ │ ├── casinhl.c │ │ │ ├── casinl.c │ │ │ ├── catan.c │ │ │ ├── catanf.c │ │ │ ├── catanh.c │ │ │ ├── catanhf.c │ │ │ ├── catanhl.c │ │ │ ├── catanl.c │ │ │ ├── ccos.c │ │ │ ├── ccosf.c │ │ │ ├── ccosh.c │ │ │ ├── ccoshf.c │ │ │ ├── ccoshl.c │ │ │ ├── ccosl.c │ │ │ ├── cexp.c │ │ │ ├── cexpf.c │ │ │ ├── cexpl.c │ │ │ ├── cimag.c │ │ │ ├── cimagf.c │ │ │ ├── cimagl.c │ │ │ ├── clog.c │ │ │ ├── clogf.c │ │ │ ├── clogl.c │ │ │ ├── conj.c │ │ │ ├── conjf.c │ │ │ ├── conjl.c │ │ │ ├── cpow.c │ │ │ ├── cpowf.c │ │ │ ├── cpowl.c │ │ │ ├── cproj.c │ │ │ ├── cprojf.c │ │ │ ├── cprojl.c │ │ │ ├── creal.c │ │ │ ├── crealf.c │ │ │ ├── creall.c │ │ │ ├── csin.c │ │ │ ├── csinf.c │ │ │ ├── csinh.c │ │ │ ├── csinhf.c │ │ │ ├── csinhl.c │ │ │ ├── csinl.c │ │ │ ├── csqrt.c │ │ │ ├── csqrtf.c │ │ │ ├── csqrtl.c │ │ │ ├── ctan.c │ │ │ ├── ctanf.c │ │ │ ├── ctanh.c │ │ │ ├── ctanhf.c │ │ │ ├── ctanhl.c │ │ │ └── ctanl.c │ │ ├── conf │ │ │ ├── confstr.c │ │ │ ├── fpathconf.c │ │ │ ├── pathconf.c │ │ │ └── sysconf.c │ │ ├── crypt │ │ │ ├── crypt.c │ │ │ ├── crypt_blowfish.c │ │ │ ├── crypt_des.c │ │ │ ├── crypt_md5.c │ │ │ ├── crypt_r.c │ │ │ ├── crypt_sha256.c │ │ │ ├── crypt_sha512.c │ │ │ └── encrypt.c │ │ ├── ctype │ │ │ ├── __ctype_b_loc.c │ │ │ ├── __ctype_get_mb_cur_max.c │ │ │ ├── __ctype_tolower_loc.c │ │ │ ├── __ctype_toupper_loc.c │ │ │ ├── alpha.h │ │ │ ├── isalnum.c │ │ │ ├── isalpha.c │ │ │ ├── isascii.c │ │ │ ├── isblank.c │ │ │ ├── iscntrl.c │ │ │ ├── isdigit.c │ │ │ ├── isgraph.c │ │ │ ├── islower.c │ │ │ ├── isprint.c │ │ │ ├── ispunct.c │ │ │ ├── isspace.c │ │ │ ├── isupper.c │ │ │ ├── iswalnum.c │ │ │ ├── iswalpha.c │ │ │ ├── iswblank.c │ │ │ ├── iswcntrl.c │ │ │ ├── iswctype.c │ │ │ ├── iswdigit.c │ │ │ ├── iswgraph.c │ │ │ ├── iswlower.c │ │ │ ├── iswprint.c │ │ │ ├── iswpunct.c │ │ │ ├── iswspace.c │ │ │ ├── iswupper.c │ │ │ ├── iswxdigit.c │ │ │ ├── isxdigit.c │ │ │ ├── nonspacing.h │ │ │ ├── punct.h │ │ │ ├── toascii.c │ │ │ ├── tolower.c │ │ │ ├── toupper.c │ │ │ ├── towctrans.c │ │ │ ├── wcswidth.c │ │ │ ├── wctrans.c │ │ │ ├── wcwidth.c │ │ │ └── wide.h │ │ ├── dirent │ │ │ ├── __dirent.h │ │ │ ├── __getdents.c │ │ │ ├── alphasort.c │ │ │ ├── closedir.c │ │ │ ├── dirfd.c │ │ │ ├── fdopendir.c │ │ │ ├── opendir.c │ │ │ ├── readdir.c │ │ │ ├── readdir_r.c │ │ │ ├── rewinddir.c │ │ │ ├── scandir.c │ │ │ ├── seekdir.c │ │ │ ├── telldir.c │ │ │ └── versionsort.c │ │ ├── env │ │ │ ├── __environ.c │ │ │ ├── __init_security.c │ │ │ ├── __init_tls.c │ │ │ ├── __libc_start_main.c │ │ │ ├── __reset_tls.c │ │ │ ├── __stack_chk_fail.c │ │ │ ├── clearenv.c │ │ │ ├── getenv.c │ │ │ ├── putenv.c │ │ │ ├── setenv.c │ │ │ └── unsetenv.c │ │ ├── errno │ │ │ ├── __errno_location.c │ │ │ ├── __strerror.h │ │ │ └── strerror.c │ │ ├── exit │ │ │ ├── _Exit.c │ │ │ ├── abort.c │ │ │ ├── assert.c │ │ │ ├── at_quick_exit.c │ │ │ ├── atexit.c │ │ │ ├── exit.c │ │ │ └── quick_exit.c │ │ ├── fcntl │ │ │ ├── creat.c │ │ │ ├── fcntl.c │ │ │ ├── open.c │ │ │ ├── openat.c │ │ │ ├── posix_fadvise.c │ │ │ └── posix_fallocate.c │ │ ├── fenv │ │ │ ├── armebhf │ │ │ │ └── fenv.sub │ │ │ ├── armhf │ │ │ │ ├── fenv.s │ │ │ │ └── fenv.sub │ │ │ ├── fegetexceptflag.c │ │ │ ├── feholdexcept.c │ │ │ ├── fenv.c │ │ │ ├── fesetexceptflag.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── i386 │ │ │ │ └── fenv.s │ │ │ ├── mips-sf │ │ │ │ └── fenv.sub │ │ │ ├── mips │ │ │ │ └── fenv.s │ │ │ ├── mipsel-sf │ │ │ │ └── fenv.sub │ │ │ ├── powerpc │ │ │ │ └── fenv.s │ │ │ ├── sh-nofpu │ │ │ │ └── fenv.sub │ │ │ ├── sh │ │ │ │ └── fenv.s │ │ │ ├── sheb-nofpu │ │ │ │ └── fenv.sub │ │ │ ├── x32 │ │ │ │ └── fenv.s │ │ │ └── x86_64 │ │ │ │ └── fenv.s │ │ ├── internal │ │ │ ├── arm │ │ │ │ └── syscall.s │ │ │ ├── floatscan.c │ │ │ ├── floatscan.h │ │ │ ├── futex.h │ │ │ ├── i386 │ │ │ │ └── syscall.s │ │ │ ├── intscan.c │ │ │ ├── intscan.h │ │ │ ├── ksigaction.h │ │ │ ├── libc.c │ │ │ ├── libc.h │ │ │ ├── libm.h │ │ │ ├── locale_impl.h │ │ │ ├── microblaze │ │ │ │ └── syscall.s │ │ │ ├── mips │ │ │ │ └── syscall.s │ │ │ ├── powerpc │ │ │ │ └── syscall.s │ │ │ ├── procfdname.c │ │ │ ├── pthread_impl.h │ │ │ ├── sh │ │ │ │ └── syscall.s │ │ │ ├── shgetc.c │ │ │ ├── shgetc.h │ │ │ ├── stdio_impl.h │ │ │ ├── syscall.c │ │ │ ├── syscall.h │ │ │ ├── syscall_ret.c │ │ │ ├── version.c │ │ │ ├── x32 │ │ │ │ └── syscall.s │ │ │ └── x86_64 │ │ │ │ └── syscall.s │ │ ├── ipc │ │ │ ├── ftok.c │ │ │ ├── ipc.h │ │ │ ├── msgctl.c │ │ │ ├── msgget.c │ │ │ ├── msgrcv.c │ │ │ ├── msgsnd.c │ │ │ ├── semctl.c │ │ │ ├── semget.c │ │ │ ├── semop.c │ │ │ ├── semtimedop.c │ │ │ ├── shmat.c │ │ │ ├── shmctl.c │ │ │ ├── shmdt.c │ │ │ └── shmget.c │ │ ├── ldso │ │ │ ├── arm │ │ │ │ ├── dlsym.s │ │ │ │ └── start.s │ │ │ ├── dl_iterate_phdr.c │ │ │ ├── dladdr.c │ │ │ ├── dlinfo.c │ │ │ ├── dlsym.c │ │ │ ├── dynlink.c │ │ │ ├── i386 │ │ │ │ ├── dlsym.s │ │ │ │ └── start.s │ │ │ ├── microblaze │ │ │ │ ├── dlsym.s │ │ │ │ └── start.s │ │ │ ├── mips │ │ │ │ ├── dlsym.s │ │ │ │ └── start.s │ │ │ ├── powerpc │ │ │ │ ├── dlsym.s │ │ │ │ └── start.s │ │ │ ├── sh │ │ │ │ ├── dlsym.s │ │ │ │ └── start.s │ │ │ ├── start.c │ │ │ ├── x32 │ │ │ │ ├── dlsym.s │ │ │ │ └── start.s │ │ │ └── x86_64 │ │ │ │ ├── dlsym.s │ │ │ │ └── start.s │ │ ├── legacy │ │ │ ├── cuserid.c │ │ │ ├── daemon.c │ │ │ ├── err.c │ │ │ ├── euidaccess.c │ │ │ ├── ftw.c │ │ │ ├── futimes.c │ │ │ ├── getdtablesize.c │ │ │ ├── getloadavg.c │ │ │ ├── getpagesize.c │ │ │ ├── getpass.c │ │ │ ├── getusershell.c │ │ │ ├── isastream.c │ │ │ ├── lutimes.c │ │ │ ├── ulimit.c │ │ │ ├── utmpx.c │ │ │ └── valloc.c │ │ ├── linux │ │ │ ├── adjtime.c │ │ │ ├── adjtimex.c │ │ │ ├── arch_prctl.c │ │ │ ├── brk.c │ │ │ ├── cache.c │ │ │ ├── cap.c │ │ │ ├── chroot.c │ │ │ ├── clock_adjtime.c │ │ │ ├── clone.c │ │ │ ├── epoll.c │ │ │ ├── eventfd.c │ │ │ ├── fallocate.c │ │ │ ├── fanotify.c │ │ │ ├── flock.c │ │ │ ├── inotify.c │ │ │ ├── ioperm.c │ │ │ ├── iopl.c │ │ │ ├── klogctl.c │ │ │ ├── module.c │ │ │ ├── mount.c │ │ │ ├── personality.c │ │ │ ├── pivot_root.c │ │ │ ├── ppoll.c │ │ │ ├── prctl.c │ │ │ ├── prlimit.c │ │ │ ├── process_vm.c │ │ │ ├── ptrace.c │ │ │ ├── quotactl.c │ │ │ ├── readahead.c │ │ │ ├── reboot.c │ │ │ ├── remap_file_pages.c │ │ │ ├── sbrk.c │ │ │ ├── sendfile.c │ │ │ ├── setfsgid.c │ │ │ ├── setfsuid.c │ │ │ ├── setgroups.c │ │ │ ├── sethostname.c │ │ │ ├── setns.c │ │ │ ├── settimeofday.c │ │ │ ├── signalfd.c │ │ │ ├── splice.c │ │ │ ├── stime.c │ │ │ ├── swap.c │ │ │ ├── sync_file_range.c │ │ │ ├── syncfs.c │ │ │ ├── sysinfo.c │ │ │ ├── tee.c │ │ │ ├── timerfd.c │ │ │ ├── unshare.c │ │ │ ├── utimes.c │ │ │ ├── vhangup.c │ │ │ ├── vmsplice.c │ │ │ ├── wait3.c │ │ │ ├── wait4.c │ │ │ ├── x32 │ │ │ │ └── sysinfo.s │ │ │ └── xattr.c │ │ ├── locale │ │ │ ├── big5.h │ │ │ ├── catclose.c │ │ │ ├── catgets.c │ │ │ ├── catopen.c │ │ │ ├── codepages.h │ │ │ ├── duplocale.c │ │ │ ├── freelocale.c │ │ │ ├── gb18030.h │ │ │ ├── hkscs.h │ │ │ ├── iconv.c │ │ │ ├── intl.c │ │ │ ├── isalnum_l.c │ │ │ ├── isalpha_l.c │ │ │ ├── isblank_l.c │ │ │ ├── iscntrl_l.c │ │ │ ├── isdigit_l.c │ │ │ ├── isgraph_l.c │ │ │ ├── islower_l.c │ │ │ ├── isprint_l.c │ │ │ ├── ispunct_l.c │ │ │ ├── isspace_l.c │ │ │ ├── isupper_l.c │ │ │ ├── iswalnum_l.c │ │ │ ├── iswalpha_l.c │ │ │ ├── iswblank_l.c │ │ │ ├── iswcntrl_l.c │ │ │ ├── iswctype_l.c │ │ │ ├── iswdigit_l.c │ │ │ ├── iswgraph_l.c │ │ │ ├── iswlower_l.c │ │ │ ├── iswprint_l.c │ │ │ ├── iswpunct_l.c │ │ │ ├── iswspace_l.c │ │ │ ├── iswupper_l.c │ │ │ ├── iswxdigit_l.c │ │ │ ├── isxdigit_l.c │ │ │ ├── jis0208.h │ │ │ ├── ksc.h │ │ │ ├── langinfo.c │ │ │ ├── legacychars.h │ │ │ ├── localeconv.c │ │ │ ├── newlocale.c │ │ │ ├── setlocale.c │ │ │ ├── strcasecmp_l.c │ │ │ ├── strcoll.c │ │ │ ├── strerror_l.c │ │ │ ├── strfmon.c │ │ │ ├── strncasecmp_l.c │ │ │ ├── strxfrm.c │ │ │ ├── tolower_l.c │ │ │ ├── toupper_l.c │ │ │ ├── towctrans_l.c │ │ │ ├── towlower_l.c │ │ │ ├── towupper_l.c │ │ │ ├── uselocale.c │ │ │ ├── wcscoll.c │ │ │ ├── wcsxfrm.c │ │ │ ├── wctrans_l.c │ │ │ └── wctype_l.c │ │ ├── malloc │ │ │ ├── __brk.c │ │ │ ├── aligned_alloc.c │ │ │ ├── dlmalloc.inc │ │ │ └── malloc.c │ │ ├── math │ │ │ ├── __cos.c │ │ │ ├── __cosdf.c │ │ │ ├── __cosl.c │ │ │ ├── __expo2.c │ │ │ ├── __expo2f.c │ │ │ ├── __fpclassify.c │ │ │ ├── __fpclassifyf.c │ │ │ ├── __fpclassifyl.c │ │ │ ├── __invtrigl.c │ │ │ ├── __invtrigl.h │ │ │ ├── __polevll.c │ │ │ ├── __rem_pio2.c │ │ │ ├── __rem_pio2_large.c │ │ │ ├── __rem_pio2f.c │ │ │ ├── __rem_pio2l.c │ │ │ ├── __signbit.c │ │ │ ├── __signbitf.c │ │ │ ├── __signbitl.c │ │ │ ├── __sin.c │ │ │ ├── __sindf.c │ │ │ ├── __sinl.c │ │ │ ├── __tan.c │ │ │ ├── __tandf.c │ │ │ ├── __tanl.c │ │ │ ├── acos.c │ │ │ ├── acosf.c │ │ │ ├── acosh.c │ │ │ ├── acoshf.c │ │ │ ├── acoshl.c │ │ │ ├── acosl.c │ │ │ ├── armebhf │ │ │ │ ├── fabs.sub │ │ │ │ ├── fabsf.sub │ │ │ │ ├── sqrt.sub │ │ │ │ └── sqrtf.sub │ │ │ ├── armhf │ │ │ │ ├── fabs.s │ │ │ │ ├── fabs.sub │ │ │ │ ├── fabsf.s │ │ │ │ ├── fabsf.sub │ │ │ │ ├── sqrt.s │ │ │ │ ├── sqrt.sub │ │ │ │ ├── sqrtf.s │ │ │ │ └── sqrtf.sub │ │ │ ├── asin.c │ │ │ ├── asinf.c │ │ │ ├── asinh.c │ │ │ ├── asinhf.c │ │ │ ├── asinhl.c │ │ │ ├── asinl.c │ │ │ ├── atan.c │ │ │ ├── atan2.c │ │ │ ├── atan2f.c │ │ │ ├── atan2l.c │ │ │ ├── atanf.c │ │ │ ├── atanh.c │ │ │ ├── atanhf.c │ │ │ ├── atanhl.c │ │ │ ├── atanl.c │ │ │ ├── cbrt.c │ │ │ ├── cbrtf.c │ │ │ ├── cbrtl.c │ │ │ ├── ceil.c │ │ │ ├── ceilf.c │ │ │ ├── ceill.c │ │ │ ├── copysign.c │ │ │ ├── copysignf.c │ │ │ ├── copysignl.c │ │ │ ├── cos.c │ │ │ ├── cosf.c │ │ │ ├── cosh.c │ │ │ ├── coshf.c │ │ │ ├── coshl.c │ │ │ ├── cosl.c │ │ │ ├── erf.c │ │ │ ├── erff.c │ │ │ ├── erfl.c │ │ │ ├── exp.c │ │ │ ├── exp10.c │ │ │ ├── exp10f.c │ │ │ ├── exp10l.c │ │ │ ├── exp2.c │ │ │ ├── exp2f.c │ │ │ ├── exp2l.c │ │ │ ├── expf.c │ │ │ ├── expl.c │ │ │ ├── expm1.c │ │ │ ├── expm1f.c │ │ │ ├── expm1l.c │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── fabsl.c │ │ │ ├── fdim.c │ │ │ ├── fdimf.c │ │ │ ├── fdiml.c │ │ │ ├── finite.c │ │ │ ├── finitef.c │ │ │ ├── floor.c │ │ │ ├── floorf.c │ │ │ ├── floorl.c │ │ │ ├── fma.c │ │ │ ├── fmaf.c │ │ │ ├── fmal.c │ │ │ ├── fmax.c │ │ │ ├── fmaxf.c │ │ │ ├── fmaxl.c │ │ │ ├── fmin.c │ │ │ ├── fminf.c │ │ │ ├── fminl.c │ │ │ ├── fmod.c │ │ │ ├── fmodf.c │ │ │ ├── fmodl.c │ │ │ ├── frexp.c │ │ │ ├── frexpf.c │ │ │ ├── frexpl.c │ │ │ ├── hypot.c │ │ │ ├── hypotf.c │ │ │ ├── hypotl.c │ │ │ ├── i386 │ │ │ │ ├── __invtrigl.s │ │ │ │ ├── acos.s │ │ │ │ ├── acosf.s │ │ │ │ ├── acosl.s │ │ │ │ ├── asin.s │ │ │ │ ├── asinf.s │ │ │ │ ├── asinl.s │ │ │ │ ├── atan.s │ │ │ │ ├── atan2.s │ │ │ │ ├── atan2f.s │ │ │ │ ├── atan2l.s │ │ │ │ ├── atanf.s │ │ │ │ ├── atanl.s │ │ │ │ ├── ceil.s │ │ │ │ ├── ceilf.s │ │ │ │ ├── ceill.s │ │ │ │ ├── exp.s │ │ │ │ ├── exp2.s │ │ │ │ ├── exp2f.s │ │ │ │ ├── exp2l.s │ │ │ │ ├── expf.s │ │ │ │ ├── expl.s │ │ │ │ ├── expm1.s │ │ │ │ ├── expm1f.s │ │ │ │ ├── expm1l.s │ │ │ │ ├── fabs.s │ │ │ │ ├── fabsf.s │ │ │ │ ├── fabsl.s │ │ │ │ ├── floor.s │ │ │ │ ├── floorf.s │ │ │ │ ├── floorl.s │ │ │ │ ├── fmod.s │ │ │ │ ├── fmodf.s │ │ │ │ ├── fmodl.s │ │ │ │ ├── hypot.s │ │ │ │ ├── hypotf.s │ │ │ │ ├── ldexp.s │ │ │ │ ├── ldexpf.s │ │ │ │ ├── ldexpl.s │ │ │ │ ├── llrint.s │ │ │ │ ├── llrintf.s │ │ │ │ ├── llrintl.s │ │ │ │ ├── log.s │ │ │ │ ├── log10.s │ │ │ │ ├── log10f.s │ │ │ │ ├── log10l.s │ │ │ │ ├── log1p.s │ │ │ │ ├── log1pf.s │ │ │ │ ├── log1pl.s │ │ │ │ ├── log2.s │ │ │ │ ├── log2f.s │ │ │ │ ├── log2l.s │ │ │ │ ├── logf.s │ │ │ │ ├── logl.s │ │ │ │ ├── lrint.s │ │ │ │ ├── lrintf.s │ │ │ │ ├── lrintl.s │ │ │ │ ├── remainder.s │ │ │ │ ├── remainderf.s │ │ │ │ ├── remainderl.s │ │ │ │ ├── remquo.s │ │ │ │ ├── remquof.s │ │ │ │ ├── remquol.s │ │ │ │ ├── rint.s │ │ │ │ ├── rintf.s │ │ │ │ ├── rintl.s │ │ │ │ ├── scalbln.s │ │ │ │ ├── scalblnf.s │ │ │ │ ├── scalblnl.s │ │ │ │ ├── scalbn.s │ │ │ │ ├── scalbnf.s │ │ │ │ ├── scalbnl.s │ │ │ │ ├── sqrt.s │ │ │ │ ├── sqrtf.s │ │ │ │ ├── sqrtl.s │ │ │ │ ├── trunc.s │ │ │ │ ├── truncf.s │ │ │ │ └── truncl.s │ │ │ ├── ilogb.c │ │ │ ├── ilogbf.c │ │ │ ├── ilogbl.c │ │ │ ├── j0.c │ │ │ ├── j0f.c │ │ │ ├── j1.c │ │ │ ├── j1f.c │ │ │ ├── jn.c │ │ │ ├── jnf.c │ │ │ ├── ldexp.c │ │ │ ├── ldexpf.c │ │ │ ├── ldexpl.c │ │ │ ├── lgamma.c │ │ │ ├── lgamma_r.c │ │ │ ├── lgammaf.c │ │ │ ├── lgammaf_r.c │ │ │ ├── lgammal.c │ │ │ ├── llrint.c │ │ │ ├── llrintf.c │ │ │ ├── llrintl.c │ │ │ ├── llround.c │ │ │ ├── llroundf.c │ │ │ ├── llroundl.c │ │ │ ├── log.c │ │ │ ├── log10.c │ │ │ ├── log10f.c │ │ │ ├── log10l.c │ │ │ ├── log1p.c │ │ │ ├── log1pf.c │ │ │ ├── log1pl.c │ │ │ ├── log2.c │ │ │ ├── log2f.c │ │ │ ├── log2l.c │ │ │ ├── logb.c │ │ │ ├── logbf.c │ │ │ ├── logbl.c │ │ │ ├── logf.c │ │ │ ├── logl.c │ │ │ ├── lrint.c │ │ │ ├── lrintf.c │ │ │ ├── lrintl.c │ │ │ ├── lround.c │ │ │ ├── lroundf.c │ │ │ ├── lroundl.c │ │ │ ├── modf.c │ │ │ ├── modff.c │ │ │ ├── modfl.c │ │ │ ├── nan.c │ │ │ ├── nanf.c │ │ │ ├── nanl.c │ │ │ ├── nearbyint.c │ │ │ ├── nearbyintf.c │ │ │ ├── nearbyintl.c │ │ │ ├── nextafter.c │ │ │ ├── nextafterf.c │ │ │ ├── nextafterl.c │ │ │ ├── nexttoward.c │ │ │ ├── nexttowardf.c │ │ │ ├── nexttowardl.c │ │ │ ├── pow.c │ │ │ ├── powf.c │ │ │ ├── powl.c │ │ │ ├── remainder.c │ │ │ ├── remainderf.c │ │ │ ├── remainderl.c │ │ │ ├── remquo.c │ │ │ ├── remquof.c │ │ │ ├── remquol.c │ │ │ ├── rint.c │ │ │ ├── rintf.c │ │ │ ├── rintl.c │ │ │ ├── round.c │ │ │ ├── roundf.c │ │ │ ├── roundl.c │ │ │ ├── scalb.c │ │ │ ├── scalbf.c │ │ │ ├── scalbln.c │ │ │ ├── scalblnf.c │ │ │ ├── scalblnl.c │ │ │ ├── scalbn.c │ │ │ ├── scalbnf.c │ │ │ ├── scalbnl.c │ │ │ ├── signgam.c │ │ │ ├── significand.c │ │ │ ├── significandf.c │ │ │ ├── sin.c │ │ │ ├── sincos.c │ │ │ ├── sincosf.c │ │ │ ├── sincosl.c │ │ │ ├── sinf.c │ │ │ ├── sinh.c │ │ │ ├── sinhf.c │ │ │ ├── sinhl.c │ │ │ ├── sinl.c │ │ │ ├── sqrt.c │ │ │ ├── sqrtf.c │ │ │ ├── sqrtl.c │ │ │ ├── tan.c │ │ │ ├── tanf.c │ │ │ ├── tanh.c │ │ │ ├── tanhf.c │ │ │ ├── tanhl.c │ │ │ ├── tanl.c │ │ │ ├── tgamma.c │ │ │ ├── tgammaf.c │ │ │ ├── tgammal.c │ │ │ ├── trunc.c │ │ │ ├── truncf.c │ │ │ ├── truncl.c │ │ │ ├── x32 │ │ │ │ ├── __invtrigl.s │ │ │ │ ├── acosl.s │ │ │ │ ├── asinl.s │ │ │ │ ├── atan2l.s │ │ │ │ ├── atanl.s │ │ │ │ ├── ceill.s │ │ │ │ ├── exp2l.s │ │ │ │ ├── expl.s │ │ │ │ ├── expm1l.s │ │ │ │ ├── fabs.s │ │ │ │ ├── fabsf.s │ │ │ │ ├── fabsl.s │ │ │ │ ├── floorl.s │ │ │ │ ├── fmodl.s │ │ │ │ ├── llrint.s │ │ │ │ ├── llrintf.s │ │ │ │ ├── llrintl.s │ │ │ │ ├── log10l.s │ │ │ │ ├── log1pl.s │ │ │ │ ├── log2l.s │ │ │ │ ├── logl.s │ │ │ │ ├── lrint.s │ │ │ │ ├── lrintf.s │ │ │ │ ├── lrintl.s │ │ │ │ ├── remainderl.s │ │ │ │ ├── rintl.s │ │ │ │ ├── sqrt.s │ │ │ │ ├── sqrtf.s │ │ │ │ ├── sqrtl.s │ │ │ │ └── truncl.s │ │ │ └── x86_64 │ │ │ │ ├── __invtrigl.s │ │ │ │ ├── acosl.s │ │ │ │ ├── asinl.s │ │ │ │ ├── atan2l.s │ │ │ │ ├── atanl.s │ │ │ │ ├── ceill.s │ │ │ │ ├── exp2l.s │ │ │ │ ├── expl.s │ │ │ │ ├── expm1l.s │ │ │ │ ├── fabs.s │ │ │ │ ├── fabsf.s │ │ │ │ ├── fabsl.s │ │ │ │ ├── floorl.s │ │ │ │ ├── fmodl.s │ │ │ │ ├── llrint.s │ │ │ │ ├── llrintf.s │ │ │ │ ├── llrintl.s │ │ │ │ ├── log10l.s │ │ │ │ ├── log1pl.s │ │ │ │ ├── log2l.s │ │ │ │ ├── logl.s │ │ │ │ ├── lrint.s │ │ │ │ ├── lrintf.s │ │ │ │ ├── lrintl.s │ │ │ │ ├── remainderl.s │ │ │ │ ├── rintl.s │ │ │ │ ├── sqrt.s │ │ │ │ ├── sqrtf.s │ │ │ │ ├── sqrtl.s │ │ │ │ └── truncl.s │ │ ├── misc │ │ │ ├── a64l.c │ │ │ ├── basename.c │ │ │ ├── dirname.c │ │ │ ├── ffs.c │ │ │ ├── forkpty.c │ │ │ ├── get_current_dir_name.c │ │ │ ├── getdomainname.c │ │ │ ├── getgrouplist.c │ │ │ ├── gethostid.c │ │ │ ├── getopt.c │ │ │ ├── getopt_long.c │ │ │ ├── getpriority.c │ │ │ ├── getresgid.c │ │ │ ├── getresuid.c │ │ │ ├── getrlimit.c │ │ │ ├── getrusage.c │ │ │ ├── getsubopt.c │ │ │ ├── initgroups.c │ │ │ ├── ioctl.c │ │ │ ├── lockf.c │ │ │ ├── mntent.c │ │ │ ├── nftw.c │ │ │ ├── openpty.c │ │ │ ├── ptsname.c │ │ │ ├── pty.c │ │ │ ├── realpath.c │ │ │ ├── setdomainname.c │ │ │ ├── setpriority.c │ │ │ ├── setrlimit.c │ │ │ ├── syscall.c │ │ │ ├── syslog.c │ │ │ ├── uname.c │ │ │ └── wordexp.c │ │ ├── mman │ │ │ ├── madvise.c │ │ │ ├── mincore.c │ │ │ ├── mlock.c │ │ │ ├── mlockall.c │ │ │ ├── mmap.c │ │ │ ├── mprotect.c │ │ │ ├── mremap.c │ │ │ ├── msync.c │ │ │ ├── munlock.c │ │ │ ├── munlockall.c │ │ │ ├── munmap.c │ │ │ ├── posix_madvise.c │ │ │ └── shm_open.c │ │ ├── mq │ │ │ ├── mq_close.c │ │ │ ├── mq_getattr.c │ │ │ ├── mq_notify.c │ │ │ ├── mq_open.c │ │ │ ├── mq_receive.c │ │ │ ├── mq_send.c │ │ │ ├── mq_setattr.c │ │ │ ├── mq_timedreceive.c │ │ │ ├── mq_timedsend.c │ │ │ └── mq_unlink.c │ │ ├── multibyte │ │ │ ├── btowc.c │ │ │ ├── internal.c │ │ │ ├── internal.h │ │ │ ├── mblen.c │ │ │ ├── mbrlen.c │ │ │ ├── mbrtowc.c │ │ │ ├── mbsinit.c │ │ │ ├── mbsnrtowcs.c │ │ │ ├── mbsrtowcs.c │ │ │ ├── mbstowcs.c │ │ │ ├── mbtowc.c │ │ │ ├── wcrtomb.c │ │ │ ├── wcsnrtombs.c │ │ │ ├── wcsrtombs.c │ │ │ ├── wcstombs.c │ │ │ ├── wctob.c │ │ │ └── wctomb.c │ │ ├── network │ │ │ ├── __dns.c │ │ │ ├── __dns.h │ │ │ ├── __ipparse.c │ │ │ ├── accept.c │ │ │ ├── accept4.c │ │ │ ├── bind.c │ │ │ ├── connect.c │ │ │ ├── dn_comp.c │ │ │ ├── dn_expand.c │ │ │ ├── dn_skipname.c │ │ │ ├── ent.c │ │ │ ├── ether.c │ │ │ ├── freeaddrinfo.c │ │ │ ├── gai_strerror.c │ │ │ ├── getaddrinfo.c │ │ │ ├── gethostbyaddr.c │ │ │ ├── gethostbyaddr_r.c │ │ │ ├── gethostbyname.c │ │ │ ├── gethostbyname2.c │ │ │ ├── gethostbyname2_r.c │ │ │ ├── gethostbyname_r.c │ │ │ ├── getifaddrs.c │ │ │ ├── getnameinfo.c │ │ │ ├── getpeername.c │ │ │ ├── getservbyname.c │ │ │ ├── getservbyname_r.c │ │ │ ├── getservbyport.c │ │ │ ├── getservbyport_r.c │ │ │ ├── getsockname.c │ │ │ ├── getsockopt.c │ │ │ ├── h_errno.c │ │ │ ├── herror.c │ │ │ ├── hstrerror.c │ │ │ ├── htonl.c │ │ │ ├── htons.c │ │ │ ├── if_freenameindex.c │ │ │ ├── if_indextoname.c │ │ │ ├── if_nameindex.c │ │ │ ├── if_nametoindex.c │ │ │ ├── in6addr_any.c │ │ │ ├── in6addr_loopback.c │ │ │ ├── inet_addr.c │ │ │ ├── inet_legacy.c │ │ │ ├── inet_ntoa.c │ │ │ ├── inet_ntop.c │ │ │ ├── inet_pton.c │ │ │ ├── listen.c │ │ │ ├── netname.c │ │ │ ├── ntohl.c │ │ │ ├── ntohs.c │ │ │ ├── proto.c │ │ │ ├── recv.c │ │ │ ├── recvfrom.c │ │ │ ├── recvmsg.c │ │ │ ├── res_init.c │ │ │ ├── res_query.c │ │ │ ├── res_state.c │ │ │ ├── send.c │ │ │ ├── sendmsg.c │ │ │ ├── sendto.c │ │ │ ├── serv.c │ │ │ ├── setsockopt.c │ │ │ ├── shutdown.c │ │ │ ├── sockatmark.c │ │ │ ├── socket.c │ │ │ └── socketpair.c │ │ ├── passwd │ │ │ ├── fgetgrent.c │ │ │ ├── fgetpwent.c │ │ │ ├── fgetspent.c │ │ │ ├── getgr_r.c │ │ │ ├── getgrent.c │ │ │ ├── getgrent_a.c │ │ │ ├── getpw_r.c │ │ │ ├── getpwent.c │ │ │ ├── getpwent_a.c │ │ │ ├── getspent.c │ │ │ ├── getspnam.c │ │ │ ├── getspnam_r.c │ │ │ ├── lckpwdf.c │ │ │ ├── putgrent.c │ │ │ ├── putpwent.c │ │ │ ├── putspent.c │ │ │ └── pwf.h │ │ ├── prng │ │ │ ├── __rand48_step.c │ │ │ ├── __seed48.c │ │ │ ├── drand48.c │ │ │ ├── lcong48.c │ │ │ ├── lrand48.c │ │ │ ├── mrand48.c │ │ │ ├── rand.c │ │ │ ├── rand_r.c │ │ │ ├── random.c │ │ │ ├── seed48.c │ │ │ └── srand48.c │ │ ├── process │ │ │ ├── execl.c │ │ │ ├── execle.c │ │ │ ├── execlp.c │ │ │ ├── execv.c │ │ │ ├── execve.c │ │ │ ├── execvp.c │ │ │ ├── fdop.h │ │ │ ├── fexecve.c │ │ │ ├── fork.c │ │ │ ├── i386 │ │ │ │ └── vfork.s │ │ │ ├── posix_spawn.c │ │ │ ├── posix_spawn_file_actions_addclose.c │ │ │ ├── posix_spawn_file_actions_adddup2.c │ │ │ ├── posix_spawn_file_actions_addopen.c │ │ │ ├── posix_spawn_file_actions_destroy.c │ │ │ ├── posix_spawn_file_actions_init.c │ │ │ ├── posix_spawnattr_destroy.c │ │ │ ├── posix_spawnattr_getflags.c │ │ │ ├── posix_spawnattr_getpgroup.c │ │ │ ├── posix_spawnattr_getsigdefault.c │ │ │ ├── posix_spawnattr_getsigmask.c │ │ │ ├── posix_spawnattr_init.c │ │ │ ├── posix_spawnattr_sched.c │ │ │ ├── posix_spawnattr_setflags.c │ │ │ ├── posix_spawnattr_setpgroup.c │ │ │ ├── posix_spawnattr_setsigdefault.c │ │ │ ├── posix_spawnattr_setsigmask.c │ │ │ ├── posix_spawnp.c │ │ │ ├── system.c │ │ │ ├── vfork.c │ │ │ ├── wait.c │ │ │ ├── waitid.c │ │ │ ├── waitpid.c │ │ │ ├── x32 │ │ │ │ └── vfork.s │ │ │ └── x86_64 │ │ │ │ └── vfork.s │ │ ├── regex │ │ │ ├── fnmatch.c │ │ │ ├── glob.c │ │ │ ├── regcomp.c │ │ │ ├── regerror.c │ │ │ ├── regexec.c │ │ │ ├── tre-mem.c │ │ │ └── tre.h │ │ ├── sched │ │ │ ├── affinity.c │ │ │ ├── sched_cpucount.c │ │ │ ├── sched_get_priority_max.c │ │ │ ├── sched_getparam.c │ │ │ ├── sched_getscheduler.c │ │ │ ├── sched_rr_get_interval.c │ │ │ ├── sched_setparam.c │ │ │ ├── sched_setscheduler.c │ │ │ └── sched_yield.c │ │ ├── search │ │ │ ├── hsearch.c │ │ │ ├── insque.c │ │ │ ├── lsearch.c │ │ │ ├── tdestroy.c │ │ │ └── tsearch_avl.c │ │ ├── select │ │ │ ├── poll.c │ │ │ ├── pselect.c │ │ │ └── select.c │ │ ├── setjmp │ │ │ ├── arm │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── i386 │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── longjmp.c │ │ │ ├── microblaze │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── mips-sf │ │ │ │ ├── longjmp.s │ │ │ │ ├── longjmp.sub │ │ │ │ ├── setjmp.s │ │ │ │ └── setjmp.sub │ │ │ ├── mips │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── mipsel-sf │ │ │ │ ├── longjmp.sub │ │ │ │ └── setjmp.sub │ │ │ ├── powerpc │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── setjmp.c │ │ │ ├── sh-nofpu │ │ │ │ ├── longjmp.s │ │ │ │ ├── longjmp.sub │ │ │ │ ├── setjmp.s │ │ │ │ └── setjmp.sub │ │ │ ├── sh │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── sheb-nofpu │ │ │ │ ├── longjmp.sub │ │ │ │ └── setjmp.sub │ │ │ ├── x32 │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ └── x86_64 │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ ├── signal │ │ │ ├── arm │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── block.c │ │ │ ├── getitimer.c │ │ │ ├── i386 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── kill.c │ │ │ ├── killpg.c │ │ │ ├── microblaze │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── mips │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── powerpc │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── psiginfo.c │ │ │ ├── psignal.c │ │ │ ├── raise.c │ │ │ ├── restore.c │ │ │ ├── setitimer.c │ │ │ ├── sh │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── sigaction.c │ │ │ ├── sigaddset.c │ │ │ ├── sigaltstack.c │ │ │ ├── sigandset.c │ │ │ ├── sigdelset.c │ │ │ ├── sigemptyset.c │ │ │ ├── sigfillset.c │ │ │ ├── sighold.c │ │ │ ├── sigignore.c │ │ │ ├── siginterrupt.c │ │ │ ├── sigisemptyset.c │ │ │ ├── sigismember.c │ │ │ ├── siglongjmp.c │ │ │ ├── signal.c │ │ │ ├── sigorset.c │ │ │ ├── sigpause.c │ │ │ ├── sigpending.c │ │ │ ├── sigprocmask.c │ │ │ ├── sigqueue.c │ │ │ ├── sigrelse.c │ │ │ ├── sigrtmax.c │ │ │ ├── sigrtmin.c │ │ │ ├── sigset.c │ │ │ ├── sigsetjmp.c │ │ │ ├── sigsuspend.c │ │ │ ├── sigtimedwait.c │ │ │ ├── sigwait.c │ │ │ ├── sigwaitinfo.c │ │ │ ├── x32 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ └── x86_64 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ ├── stat │ │ │ ├── __fxstat.c │ │ │ ├── __fxstatat.c │ │ │ ├── __lxstat.c │ │ │ ├── __xstat.c │ │ │ ├── chmod.c │ │ │ ├── fchmod.c │ │ │ ├── fchmodat.c │ │ │ ├── fstat.c │ │ │ ├── fstatat.c │ │ │ ├── futimens.c │ │ │ ├── futimesat.c │ │ │ ├── lchmod.c │ │ │ ├── lstat.c │ │ │ ├── mkdir.c │ │ │ ├── mkdirat.c │ │ │ ├── mkfifo.c │ │ │ ├── mkfifoat.c │ │ │ ├── mknod.c │ │ │ ├── mknodat.c │ │ │ ├── stat.c │ │ │ ├── statvfs.c │ │ │ ├── umask.c │ │ │ └── utimensat.c │ │ ├── stdio │ │ │ ├── __fclose_ca.c │ │ │ ├── __fdopen.c │ │ │ ├── __fmodeflags.c │ │ │ ├── __fopen_rb_ca.c │ │ │ ├── __lockfile.c │ │ │ ├── __overflow.c │ │ │ ├── __stdio_close.c │ │ │ ├── __stdio_exit.c │ │ │ ├── __stdio_read.c │ │ │ ├── __stdio_seek.c │ │ │ ├── __stdio_write.c │ │ │ ├── __stdout_write.c │ │ │ ├── __string_read.c │ │ │ ├── __toread.c │ │ │ ├── __towrite.c │ │ │ ├── __uflow.c │ │ │ ├── asprintf.c │ │ │ ├── clearerr.c │ │ │ ├── dprintf.c │ │ │ ├── ext.c │ │ │ ├── ext2.c │ │ │ ├── fclose.c │ │ │ ├── feof.c │ │ │ ├── ferror.c │ │ │ ├── fflush.c │ │ │ ├── fgetc.c │ │ │ ├── fgetln.c │ │ │ ├── fgetpos.c │ │ │ ├── fgets.c │ │ │ ├── fgetwc.c │ │ │ ├── fgetws.c │ │ │ ├── fileno.c │ │ │ ├── flockfile.c │ │ │ ├── fmemopen.c │ │ │ ├── fopen.c │ │ │ ├── fprintf.c │ │ │ ├── fputc.c │ │ │ ├── fputs.c │ │ │ ├── fputwc.c │ │ │ ├── fputws.c │ │ │ ├── fread.c │ │ │ ├── freopen.c │ │ │ ├── fscanf.c │ │ │ ├── fseek.c │ │ │ ├── fsetpos.c │ │ │ ├── ftell.c │ │ │ ├── ftrylockfile.c │ │ │ ├── funlockfile.c │ │ │ ├── fwide.c │ │ │ ├── fwprintf.c │ │ │ ├── fwrite.c │ │ │ ├── fwscanf.c │ │ │ ├── getc.c │ │ │ ├── getc_unlocked.c │ │ │ ├── getchar.c │ │ │ ├── getchar_unlocked.c │ │ │ ├── getdelim.c │ │ │ ├── getline.c │ │ │ ├── gets.c │ │ │ ├── getw.c │ │ │ ├── getwc.c │ │ │ ├── getwchar.c │ │ │ ├── open_memstream.c │ │ │ ├── open_wmemstream.c │ │ │ ├── pclose.c │ │ │ ├── perror.c │ │ │ ├── popen.c │ │ │ ├── printf.c │ │ │ ├── putc.c │ │ │ ├── putc_unlocked.c │ │ │ ├── putchar.c │ │ │ ├── putchar_unlocked.c │ │ │ ├── puts.c │ │ │ ├── putw.c │ │ │ ├── putwc.c │ │ │ ├── putwchar.c │ │ │ ├── remove.c │ │ │ ├── rename.c │ │ │ ├── rewind.c │ │ │ ├── scanf.c │ │ │ ├── setbuf.c │ │ │ ├── setbuffer.c │ │ │ ├── setlinebuf.c │ │ │ ├── setvbuf.c │ │ │ ├── snprintf.c │ │ │ ├── sprintf.c │ │ │ ├── sscanf.c │ │ │ ├── stderr.c │ │ │ ├── stdin.c │ │ │ ├── stdout.c │ │ │ ├── swprintf.c │ │ │ ├── swscanf.c │ │ │ ├── tempnam.c │ │ │ ├── tmpfile.c │ │ │ ├── tmpnam.c │ │ │ ├── ungetc.c │ │ │ ├── ungetwc.c │ │ │ ├── vasprintf.c │ │ │ ├── vdprintf.c │ │ │ ├── vfprintf.c │ │ │ ├── vfscanf.c │ │ │ ├── vfwprintf.c │ │ │ ├── vfwscanf.c │ │ │ ├── vprintf.c │ │ │ ├── vscanf.c │ │ │ ├── vsnprintf.c │ │ │ ├── vsprintf.c │ │ │ ├── vsscanf.c │ │ │ ├── vswprintf.c │ │ │ ├── vswscanf.c │ │ │ ├── vwprintf.c │ │ │ ├── vwscanf.c │ │ │ ├── wprintf.c │ │ │ └── wscanf.c │ │ ├── stdlib │ │ │ ├── abs.c │ │ │ ├── atof.c │ │ │ ├── atoi.c │ │ │ ├── atol.c │ │ │ ├── atoll.c │ │ │ ├── bsearch.c │ │ │ ├── div.c │ │ │ ├── ecvt.c │ │ │ ├── fcvt.c │ │ │ ├── gcvt.c │ │ │ ├── imaxabs.c │ │ │ ├── imaxdiv.c │ │ │ ├── labs.c │ │ │ ├── ldiv.c │ │ │ ├── llabs.c │ │ │ ├── lldiv.c │ │ │ ├── qsort.c │ │ │ ├── strtod.c │ │ │ ├── strtol.c │ │ │ ├── wcstod.c │ │ │ └── wcstol.c │ │ ├── string │ │ │ ├── armel │ │ │ │ ├── memcpy.s │ │ │ │ └── memcpy.sub │ │ │ ├── armhf │ │ │ │ └── memcpy.sub │ │ │ ├── bcmp.c │ │ │ ├── bcopy.c │ │ │ ├── bzero.c │ │ │ ├── i386 │ │ │ │ ├── memcpy.s │ │ │ │ ├── memmove.s │ │ │ │ └── memset.s │ │ │ ├── index.c │ │ │ ├── memccpy.c │ │ │ ├── memchr.c │ │ │ ├── memcmp.c │ │ │ ├── memcpy.c │ │ │ ├── memmem.c │ │ │ ├── memmove.c │ │ │ ├── mempcpy.c │ │ │ ├── memrchr.c │ │ │ ├── memset.c │ │ │ ├── rindex.c │ │ │ ├── stpcpy.c │ │ │ ├── stpncpy.c │ │ │ ├── strcasecmp.c │ │ │ ├── strcasestr.c │ │ │ ├── strcat.c │ │ │ ├── strchr.c │ │ │ ├── strchrnul.c │ │ │ ├── strcmp.c │ │ │ ├── strcpy.c │ │ │ ├── strcspn.c │ │ │ ├── strdup.c │ │ │ ├── strerror_r.c │ │ │ ├── strlcat.c │ │ │ ├── strlcpy.c │ │ │ ├── strlen.c │ │ │ ├── strncasecmp.c │ │ │ ├── strncat.c │ │ │ ├── strncmp.c │ │ │ ├── strncpy.c │ │ │ ├── strndup.c │ │ │ ├── strnlen.c │ │ │ ├── strpbrk.c │ │ │ ├── strrchr.c │ │ │ ├── strsep.c │ │ │ ├── strsignal.c │ │ │ ├── strspn.c │ │ │ ├── strstr.c │ │ │ ├── strtok.c │ │ │ ├── strtok_r.c │ │ │ ├── strverscmp.c │ │ │ ├── swab.c │ │ │ ├── wcpcpy.c │ │ │ ├── wcpncpy.c │ │ │ ├── wcscasecmp.c │ │ │ ├── wcscasecmp_l.c │ │ │ ├── wcscat.c │ │ │ ├── wcschr.c │ │ │ ├── wcscmp.c │ │ │ ├── wcscpy.c │ │ │ ├── wcscspn.c │ │ │ ├── wcsdup.c │ │ │ ├── wcslen.c │ │ │ ├── wcsncasecmp.c │ │ │ ├── wcsncasecmp_l.c │ │ │ ├── wcsncat.c │ │ │ ├── wcsncmp.c │ │ │ ├── wcsncpy.c │ │ │ ├── wcsnlen.c │ │ │ ├── wcspbrk.c │ │ │ ├── wcsrchr.c │ │ │ ├── wcsspn.c │ │ │ ├── wcsstr.c │ │ │ ├── wcstok.c │ │ │ ├── wcswcs.c │ │ │ ├── wmemchr.c │ │ │ ├── wmemcmp.c │ │ │ ├── wmemcpy.c │ │ │ ├── wmemmove.c │ │ │ ├── wmemset.c │ │ │ └── x86_64 │ │ │ │ ├── memcpy.s │ │ │ │ ├── memmove.s │ │ │ │ └── memset.s │ │ ├── temp │ │ │ ├── __randname.c │ │ │ ├── mkdtemp.c │ │ │ ├── mkostemp.c │ │ │ ├── mkostemps.c │ │ │ ├── mkstemp.c │ │ │ ├── mkstemps.c │ │ │ └── mktemp.c │ │ ├── termios │ │ │ ├── cfgetospeed.c │ │ │ ├── cfmakeraw.c │ │ │ ├── cfsetospeed.c │ │ │ ├── tcdrain.c │ │ │ ├── tcflow.c │ │ │ ├── tcflush.c │ │ │ ├── tcgetattr.c │ │ │ ├── tcgetsid.c │ │ │ ├── tcsendbreak.c │ │ │ └── tcsetattr.c │ │ ├── thread │ │ │ ├── __futex.c │ │ │ ├── __lock.c │ │ │ ├── __set_thread_area.c │ │ │ ├── __timedwait.c │ │ │ ├── __unmapself.c │ │ │ ├── __wait.c │ │ │ ├── arm │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ ├── syscall_cp.s │ │ │ │ └── tls.s │ │ │ ├── cancel_dummy.c │ │ │ ├── cancel_impl.c │ │ │ ├── cancellation.c │ │ │ ├── clone.c │ │ │ ├── i386 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ ├── syscall_cp.s │ │ │ │ └── tls.s │ │ │ ├── lock_ptc.c │ │ │ ├── microblaze │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── mips │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── powerpc │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── pthread_atfork.c │ │ │ ├── pthread_attr_destroy.c │ │ │ ├── pthread_attr_get.c │ │ │ ├── pthread_attr_init.c │ │ │ ├── pthread_attr_setdetachstate.c │ │ │ ├── pthread_attr_setguardsize.c │ │ │ ├── pthread_attr_setinheritsched.c │ │ │ ├── pthread_attr_setschedparam.c │ │ │ ├── pthread_attr_setschedpolicy.c │ │ │ ├── pthread_attr_setscope.c │ │ │ ├── pthread_attr_setstack.c │ │ │ ├── pthread_attr_setstacksize.c │ │ │ ├── pthread_barrier_destroy.c │ │ │ ├── pthread_barrier_init.c │ │ │ ├── pthread_barrier_wait.c │ │ │ ├── pthread_barrierattr_destroy.c │ │ │ ├── pthread_barrierattr_init.c │ │ │ ├── pthread_barrierattr_setpshared.c │ │ │ ├── pthread_cond_broadcast.c │ │ │ ├── pthread_cond_destroy.c │ │ │ ├── pthread_cond_init.c │ │ │ ├── pthread_cond_signal.c │ │ │ ├── pthread_cond_timedwait.c │ │ │ ├── pthread_cond_wait.c │ │ │ ├── pthread_condattr_destroy.c │ │ │ ├── pthread_condattr_init.c │ │ │ ├── pthread_condattr_setclock.c │ │ │ ├── pthread_condattr_setpshared.c │ │ │ ├── pthread_create.c │ │ │ ├── pthread_detach.c │ │ │ ├── pthread_equal.c │ │ │ ├── pthread_getattr_np.c │ │ │ ├── pthread_getconcurrency.c │ │ │ ├── pthread_getcpuclockid.c │ │ │ ├── pthread_getschedparam.c │ │ │ ├── pthread_getspecific.c │ │ │ ├── pthread_join.c │ │ │ ├── pthread_key_create.c │ │ │ ├── pthread_kill.c │ │ │ ├── pthread_mutex_consistent.c │ │ │ ├── pthread_mutex_destroy.c │ │ │ ├── pthread_mutex_getprioceiling.c │ │ │ ├── pthread_mutex_init.c │ │ │ ├── pthread_mutex_lock.c │ │ │ ├── pthread_mutex_setprioceiling.c │ │ │ ├── pthread_mutex_timedlock.c │ │ │ ├── pthread_mutex_trylock.c │ │ │ ├── pthread_mutex_unlock.c │ │ │ ├── pthread_mutexattr_destroy.c │ │ │ ├── pthread_mutexattr_init.c │ │ │ ├── pthread_mutexattr_setprotocol.c │ │ │ ├── pthread_mutexattr_setpshared.c │ │ │ ├── pthread_mutexattr_setrobust.c │ │ │ ├── pthread_mutexattr_settype.c │ │ │ ├── pthread_once.c │ │ │ ├── pthread_rwlock_destroy.c │ │ │ ├── pthread_rwlock_init.c │ │ │ ├── pthread_rwlock_rdlock.c │ │ │ ├── pthread_rwlock_timedrdlock.c │ │ │ ├── pthread_rwlock_timedwrlock.c │ │ │ ├── pthread_rwlock_tryrdlock.c │ │ │ ├── pthread_rwlock_trywrlock.c │ │ │ ├── pthread_rwlock_unlock.c │ │ │ ├── pthread_rwlock_wrlock.c │ │ │ ├── pthread_rwlockattr_destroy.c │ │ │ ├── pthread_rwlockattr_init.c │ │ │ ├── pthread_rwlockattr_setpshared.c │ │ │ ├── pthread_self.c │ │ │ ├── pthread_setcancelstate.c │ │ │ ├── pthread_setcanceltype.c │ │ │ ├── pthread_setconcurrency.c │ │ │ ├── pthread_setschedparam.c │ │ │ ├── pthread_setschedprio.c │ │ │ ├── pthread_setspecific.c │ │ │ ├── pthread_sigmask.c │ │ │ ├── pthread_spin_destroy.c │ │ │ ├── pthread_spin_init.c │ │ │ ├── pthread_spin_lock.c │ │ │ ├── pthread_spin_trylock.c │ │ │ ├── pthread_spin_unlock.c │ │ │ ├── pthread_testcancel.c │ │ │ ├── sem_destroy.c │ │ │ ├── sem_getvalue.c │ │ │ ├── sem_init.c │ │ │ ├── sem_open.c │ │ │ ├── sem_post.c │ │ │ ├── sem_timedwait.c │ │ │ ├── sem_trywait.c │ │ │ ├── sem_unlink.c │ │ │ ├── sem_wait.c │ │ │ ├── sh │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── synccall.c │ │ │ ├── syscall_cp.c │ │ │ ├── tls.c │ │ │ ├── vmlock.c │ │ │ ├── x32 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ └── x86_64 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ ├── time │ │ │ ├── __asctime.c │ │ │ ├── __map_file.c │ │ │ ├── __month_to_secs.c │ │ │ ├── __secs_to_tm.c │ │ │ ├── __tm_to_secs.c │ │ │ ├── __tz.c │ │ │ ├── __year_to_secs.c │ │ │ ├── asctime.c │ │ │ ├── asctime_r.c │ │ │ ├── clock.c │ │ │ ├── clock_getcpuclockid.c │ │ │ ├── clock_getres.c │ │ │ ├── clock_gettime.c │ │ │ ├── clock_nanosleep.c │ │ │ ├── clock_settime.c │ │ │ ├── ctime.c │ │ │ ├── ctime_r.c │ │ │ ├── difftime.c │ │ │ ├── ftime.c │ │ │ ├── getdate.c │ │ │ ├── gettimeofday.c │ │ │ ├── gmtime.c │ │ │ ├── gmtime_r.c │ │ │ ├── localtime.c │ │ │ ├── localtime_r.c │ │ │ ├── mktime.c │ │ │ ├── nanosleep.c │ │ │ ├── strftime.c │ │ │ ├── strptime.c │ │ │ ├── time.c │ │ │ ├── time_impl.h │ │ │ ├── timegm.c │ │ │ ├── timer_create.c │ │ │ ├── timer_delete.c │ │ │ ├── timer_getoverrun.c │ │ │ ├── timer_gettime.c │ │ │ ├── timer_settime.c │ │ │ ├── times.c │ │ │ ├── utime.c │ │ │ └── wcsftime.c │ │ └── unistd │ │ │ ├── _exit.c │ │ │ ├── access.c │ │ │ ├── acct.c │ │ │ ├── alarm.c │ │ │ ├── chdir.c │ │ │ ├── chown.c │ │ │ ├── close.c │ │ │ ├── ctermid.c │ │ │ ├── dup.c │ │ │ ├── dup2.c │ │ │ ├── dup3.c │ │ │ ├── faccessat.c │ │ │ ├── fchdir.c │ │ │ ├── fchown.c │ │ │ ├── fchownat.c │ │ │ ├── fdatasync.c │ │ │ ├── fsync.c │ │ │ ├── ftruncate.c │ │ │ ├── getcwd.c │ │ │ ├── getegid.c │ │ │ ├── geteuid.c │ │ │ ├── getgid.c │ │ │ ├── getgroups.c │ │ │ ├── gethostname.c │ │ │ ├── getlogin.c │ │ │ ├── getlogin_r.c │ │ │ ├── getpgid.c │ │ │ ├── getpgrp.c │ │ │ ├── getpid.c │ │ │ ├── getppid.c │ │ │ ├── getsid.c │ │ │ ├── getuid.c │ │ │ ├── isatty.c │ │ │ ├── lchown.c │ │ │ ├── link.c │ │ │ ├── linkat.c │ │ │ ├── lseek.c │ │ │ ├── mips │ │ │ └── pipe.s │ │ │ ├── nice.c │ │ │ ├── pause.c │ │ │ ├── pipe.c │ │ │ ├── pipe2.c │ │ │ ├── posix_close.c │ │ │ ├── pread.c │ │ │ ├── preadv.c │ │ │ ├── pwrite.c │ │ │ ├── pwritev.c │ │ │ ├── read.c │ │ │ ├── readlink.c │ │ │ ├── readlinkat.c │ │ │ ├── readv.c │ │ │ ├── renameat.c │ │ │ ├── rmdir.c │ │ │ ├── setegid.c │ │ │ ├── seteuid.c │ │ │ ├── setgid.c │ │ │ ├── setpgid.c │ │ │ ├── setpgrp.c │ │ │ ├── setregid.c │ │ │ ├── setresgid.c │ │ │ ├── setresuid.c │ │ │ ├── setreuid.c │ │ │ ├── setsid.c │ │ │ ├── setuid.c │ │ │ ├── setxid.c │ │ │ ├── sh │ │ │ └── pipe.s │ │ │ ├── sleep.c │ │ │ ├── symlink.c │ │ │ ├── symlinkat.c │ │ │ ├── sync.c │ │ │ ├── tcgetpgrp.c │ │ │ ├── tcsetpgrp.c │ │ │ ├── truncate.c │ │ │ ├── ttyname.c │ │ │ ├── ttyname_r.c │ │ │ ├── ualarm.c │ │ │ ├── unlink.c │ │ │ ├── unlinkat.c │ │ │ ├── usleep.c │ │ │ ├── write.c │ │ │ └── writev.c │ └── tools │ │ ├── install.sh │ │ ├── mkalltypes.sed │ │ ├── musl-gcc.specs.sh │ │ └── version.sh ├── openssl │ ├── ACKNOWLEDGMENTS │ ├── CHANGES │ ├── CHANGES.SSLeay │ ├── Configure │ ├── FAQ │ ├── GitConfigure │ ├── GitMake │ ├── INSTALL │ ├── INSTALL.DJGPP │ ├── INSTALL.MacOS │ ├── INSTALL.NW │ ├── INSTALL.OS2 │ ├── INSTALL.VMS │ ├── INSTALL.W32 │ ├── INSTALL.W64 │ ├── INSTALL.WCE │ ├── LICENSE │ ├── MacOS │ │ ├── GUSI_Init.cpp │ │ ├── GetHTTPS.src │ │ │ ├── CPStringUtils.cpp │ │ │ ├── CPStringUtils.hpp │ │ │ ├── ErrorHandling.cpp │ │ │ ├── ErrorHandling.hpp │ │ │ ├── GetHTTPS.cpp │ │ │ ├── MacSocket.cpp │ │ │ └── MacSocket.h │ │ ├── OpenSSL.mcp.hqx │ │ ├── Randomizer.cpp │ │ ├── Randomizer.h │ │ ├── TODO │ │ ├── _MWERKS_GUSI_prefix.h │ │ ├── _MWERKS_prefix.h │ │ ├── buildinf.h │ │ ├── mklinks.as.hqx │ │ └── opensslconf.h │ ├── Makefile │ ├── Makefile.bak │ ├── Makefile.org │ ├── Makefile.shared │ ├── NEWS │ ├── Netware │ │ ├── build.bat │ │ ├── cpy_tests.bat │ │ ├── do_tests.pl │ │ ├── globals.txt │ │ ├── readme.txt │ │ └── set_env.bat │ ├── PROBLEMS │ ├── README │ ├── README.ASN1 │ ├── README.ENGINE │ ├── VMS │ │ ├── TODO │ │ ├── VMSify-conf.pl │ │ ├── WISHLIST.TXT │ │ ├── install-vms.com │ │ ├── mkshared.com │ │ ├── multinet_shr.opt │ │ ├── openssl_startup.com │ │ ├── openssl_undo.com │ │ ├── openssl_utils.com │ │ ├── socketshr_shr.opt │ │ ├── tcpip_shr_decc.opt │ │ ├── test-includes.com │ │ ├── ucx_shr_decc.opt │ │ ├── ucx_shr_decc_log.opt │ │ └── ucx_shr_vaxc.opt │ ├── apps │ │ ├── CA.com │ │ ├── CA.pl │ │ ├── CA.pl.in │ │ ├── CA.sh │ │ ├── Makefile │ │ ├── Makefile.save │ │ ├── app_rand.c │ │ ├── apps.c │ │ ├── apps.h │ │ ├── asn1pars.c │ │ ├── ca-cert.srl │ │ ├── ca-key.pem │ │ ├── ca-req.pem │ │ ├── ca.c │ │ ├── cert.pem │ │ ├── ciphers.c │ │ ├── client.pem │ │ ├── cms.c │ │ ├── crl.c │ │ ├── crl2p7.c │ │ ├── demoCA │ │ │ ├── cacert.pem │ │ │ ├── index.txt │ │ │ ├── private │ │ │ │ └── cakey.pem │ │ │ └── serial │ │ ├── demoSRP │ │ │ ├── srp_verifier.txt │ │ │ └── srp_verifier.txt.attr │ │ ├── dgst.c │ │ ├── dh.c │ │ ├── dh1024.pem │ │ ├── dh2048.pem │ │ ├── dh4096.pem │ │ ├── dh512.pem │ │ ├── dhparam.c │ │ ├── dsa-ca.pem │ │ ├── dsa-pca.pem │ │ ├── dsa.c │ │ ├── dsa1024.pem │ │ ├── dsa512.pem │ │ ├── dsap.pem │ │ ├── dsaparam.c │ │ ├── ec.c │ │ ├── ecparam.c │ │ ├── enc.c │ │ ├── engine.c │ │ ├── errstr.c │ │ ├── gendh.c │ │ ├── gendsa.c │ │ ├── genpkey.c │ │ ├── genrsa.c │ │ ├── install-apps.com │ │ ├── makeapps.com │ │ ├── md4.c │ │ ├── nseq.c │ │ ├── ocsp.c │ │ ├── oid.cnf │ │ ├── openssl-vms.cnf │ │ ├── openssl.c │ │ ├── openssl.cnf │ │ ├── passwd.c │ │ ├── pca-cert.srl │ │ ├── pca-key.pem │ │ ├── pca-req.pem │ │ ├── pkcs12.c │ │ ├── pkcs7.c │ │ ├── pkcs8.c │ │ ├── pkey.c │ │ ├── pkeyparam.c │ │ ├── pkeyutl.c │ │ ├── prime.c │ │ ├── privkey.pem │ │ ├── progs.h │ │ ├── progs.pl │ │ ├── rand.c │ │ ├── req.c │ │ ├── req.pem │ │ ├── rsa.c │ │ ├── rsa8192.pem │ │ ├── rsautl.c │ │ ├── s1024key.pem │ │ ├── s1024req.pem │ │ ├── s512-key.pem │ │ ├── s512-req.pem │ │ ├── s_apps.h │ │ ├── s_cb.c │ │ ├── s_client.c │ │ ├── s_server.c │ │ ├── s_socket.c │ │ ├── s_time.c │ │ ├── server.pem │ │ ├── server.srl │ │ ├── server2.pem │ │ ├── sess_id.c │ │ ├── set │ │ │ ├── set-g-ca.pem │ │ │ ├── set-m-ca.pem │ │ │ ├── set_b_ca.pem │ │ │ ├── set_c_ca.pem │ │ │ ├── set_d_ct.pem │ │ │ └── set_root.pem │ │ ├── smime.c │ │ ├── speed.c │ │ ├── spkac.c │ │ ├── srp.c │ │ ├── testCA.pem │ │ ├── testdsa.h │ │ ├── testrsa.h │ │ ├── timeouts.h │ │ ├── ts.c │ │ ├── tsget │ │ ├── verify.c │ │ ├── version.c │ │ ├── vms_decc_init.c │ │ ├── winrand.c │ │ └── x509.c │ ├── bugs │ │ ├── MS │ │ ├── SSLv3 │ │ ├── alpha.c │ │ ├── dggccbug.c │ │ ├── sgiccbug.c │ │ ├── sslref.dif │ │ ├── stream.c │ │ └── ultrixcc.c │ ├── certs │ │ ├── README.RootCerts │ │ ├── demo │ │ │ ├── 3f77a2b5.0 │ │ │ ├── ca-cert.pem │ │ │ ├── cbdbd8bc.0 │ │ │ ├── de4fa23b.0 │ │ │ ├── dsa-ca.pem │ │ │ ├── dsa-pca.pem │ │ │ ├── e83ef475.0 │ │ │ └── pca-cert.pem │ │ └── expired │ │ │ └── ICE.crl │ ├── config │ ├── crypto │ │ ├── LPdir_nyi.c │ │ ├── LPdir_unix.c │ │ ├── LPdir_vms.c │ │ ├── LPdir_win.c │ │ ├── LPdir_win32.c │ │ ├── LPdir_wince.c │ │ ├── Makefile │ │ ├── Makefile.save │ │ ├── aes │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── README │ │ │ ├── aes.h │ │ │ ├── aes_cbc.c │ │ │ ├── aes_cfb.c │ │ │ ├── aes_core.c │ │ │ ├── aes_ctr.c │ │ │ ├── aes_ecb.c │ │ │ ├── aes_ige.c │ │ │ ├── aes_locl.h │ │ │ ├── aes_misc.c │ │ │ ├── aes_ofb.c │ │ │ ├── aes_wrap.c │ │ │ ├── aes_x86core.c │ │ │ └── asm │ │ │ │ ├── aes-586.pl │ │ │ │ ├── aes-armv4.pl │ │ │ │ ├── aes-ia64.S │ │ │ │ ├── aes-mips.pl │ │ │ │ ├── aes-parisc.pl │ │ │ │ ├── aes-ppc.pl │ │ │ │ ├── aes-s390x.pl │ │ │ │ ├── aes-sparcv9.pl │ │ │ │ ├── aes-x86_64.pl │ │ │ │ ├── aesni-mb-x86_64.pl │ │ │ │ ├── aesni-sha1-x86_64.pl │ │ │ │ ├── aesni-sha256-x86_64.pl │ │ │ │ ├── aesni-x86.pl │ │ │ │ ├── aesni-x86_64.pl │ │ │ │ ├── aesp8-ppc.pl │ │ │ │ ├── aest4-sparcv9.pl │ │ │ │ ├── aesv8-armx.pl │ │ │ │ ├── bsaes-armv7.pl │ │ │ │ ├── bsaes-x86_64.pl │ │ │ │ ├── vpaes-ppc.pl │ │ │ │ ├── vpaes-x86.pl │ │ │ │ └── vpaes-x86_64.pl │ │ ├── alphacpuid.pl │ │ ├── arm64cpuid.S │ │ ├── arm_arch.h │ │ ├── armcap.c │ │ ├── armv4cpuid.S │ │ ├── asn1 │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── a_bitstr.c │ │ │ ├── a_bool.c │ │ │ ├── a_bytes.c │ │ │ ├── a_d2i_fp.c │ │ │ ├── a_digest.c │ │ │ ├── a_dup.c │ │ │ ├── a_enum.c │ │ │ ├── a_gentm.c │ │ │ ├── a_i2d_fp.c │ │ │ ├── a_int.c │ │ │ ├── a_mbstr.c │ │ │ ├── a_object.c │ │ │ ├── a_octet.c │ │ │ ├── a_print.c │ │ │ ├── a_set.c │ │ │ ├── a_sign.c │ │ │ ├── a_strex.c │ │ │ ├── a_strnid.c │ │ │ ├── a_time.c │ │ │ ├── a_type.c │ │ │ ├── a_utctm.c │ │ │ ├── a_utf8.c │ │ │ ├── a_verify.c │ │ │ ├── ameth_lib.c │ │ │ ├── asn1.h │ │ │ ├── asn1_err.c │ │ │ ├── asn1_gen.c │ │ │ ├── asn1_lib.c │ │ │ ├── asn1_locl.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1_par.c │ │ │ ├── asn1t.h │ │ │ ├── asn_mime.c │ │ │ ├── asn_moid.c │ │ │ ├── asn_pack.c │ │ │ ├── bio_asn1.c │ │ │ ├── bio_ndef.c │ │ │ ├── charmap.h │ │ │ ├── charmap.pl │ │ │ ├── d2i_pr.c │ │ │ ├── d2i_pu.c │ │ │ ├── evp_asn1.c │ │ │ ├── f_enum.c │ │ │ ├── f_int.c │ │ │ ├── f_string.c │ │ │ ├── i2d_pr.c │ │ │ ├── i2d_pu.c │ │ │ ├── n_pkey.c │ │ │ ├── nsseq.c │ │ │ ├── p5_pbe.c │ │ │ ├── p5_pbev2.c │ │ │ ├── p8_pkey.c │ │ │ ├── t_bitst.c │ │ │ ├── t_crl.c │ │ │ ├── t_pkey.c │ │ │ ├── t_req.c │ │ │ ├── t_spki.c │ │ │ ├── t_x509.c │ │ │ ├── t_x509a.c │ │ │ ├── tasn_dec.c │ │ │ ├── tasn_enc.c │ │ │ ├── tasn_fre.c │ │ │ ├── tasn_new.c │ │ │ ├── tasn_prn.c │ │ │ ├── tasn_typ.c │ │ │ ├── tasn_utl.c │ │ │ ├── x_algor.c │ │ │ ├── x_attrib.c │ │ │ ├── x_bignum.c │ │ │ ├── x_crl.c │ │ │ ├── x_exten.c │ │ │ ├── x_info.c │ │ │ ├── x_long.c │ │ │ ├── x_name.c │ │ │ ├── x_nx509.c │ │ │ ├── x_pkey.c │ │ │ ├── x_pubkey.c │ │ │ ├── x_req.c │ │ │ ├── x_sig.c │ │ │ ├── x_spki.c │ │ │ ├── x_val.c │ │ │ ├── x_x509.c │ │ │ └── x_x509a.c │ │ ├── bf │ │ │ ├── COPYRIGHT │ │ │ ├── INSTALL │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── asm │ │ │ │ ├── bf-586.pl │ │ │ │ ├── bf-686.pl │ │ │ │ └── readme │ │ │ ├── bf_cbc.c │ │ │ ├── bf_cfb64.c │ │ │ ├── bf_ecb.c │ │ │ ├── bf_enc.c │ │ │ ├── bf_locl.h │ │ │ ├── bf_ofb64.c │ │ │ ├── bf_opts.c │ │ │ ├── bf_pi.h │ │ │ ├── bf_skey.c │ │ │ ├── bfs.cpp │ │ │ ├── bfspeed.c │ │ │ ├── bftest.c │ │ │ └── blowfish.h │ │ ├── bio │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── b_dump.c │ │ │ ├── b_print.c │ │ │ ├── b_sock.c │ │ │ ├── bf_buff.c │ │ │ ├── bf_lbuf.c │ │ │ ├── bf_nbio.c │ │ │ ├── bf_null.c │ │ │ ├── bio.h │ │ │ ├── bio_cb.c │ │ │ ├── bio_err.c │ │ │ ├── bio_lcl.h │ │ │ ├── bio_lib.c │ │ │ ├── bss_acpt.c │ │ │ ├── bss_bio.c │ │ │ ├── bss_conn.c │ │ │ ├── bss_dgram.c │ │ │ ├── bss_fd.c │ │ │ ├── bss_file.c │ │ │ ├── bss_log.c │ │ │ ├── bss_mem.c │ │ │ ├── bss_null.c │ │ │ ├── bss_rtcp.c │ │ │ └── bss_sock.c │ │ ├── bn │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── asm │ │ │ │ ├── README │ │ │ │ ├── alpha-mont.pl │ │ │ │ ├── armv4-gf2m.pl │ │ │ │ ├── armv4-mont.pl │ │ │ │ ├── bn-586.pl │ │ │ │ ├── co-586.pl │ │ │ │ ├── ia64-mont.pl │ │ │ │ ├── ia64.S │ │ │ │ ├── mips-mont.pl │ │ │ │ ├── mips.pl │ │ │ │ ├── mips3-mont.pl │ │ │ │ ├── mips3.s │ │ │ │ ├── pa-risc2.s │ │ │ │ ├── pa-risc2W.s │ │ │ │ ├── parisc-mont.pl │ │ │ │ ├── ppc-mont.pl │ │ │ │ ├── ppc.pl │ │ │ │ ├── ppc64-mont.pl │ │ │ │ ├── rsaz-avx2.pl │ │ │ │ ├── rsaz-x86_64.pl │ │ │ │ ├── s390x-gf2m.pl │ │ │ │ ├── s390x-mont.pl │ │ │ │ ├── s390x.S │ │ │ │ ├── sparct4-mont.pl │ │ │ │ ├── sparcv8.S │ │ │ │ ├── sparcv8plus.S │ │ │ │ ├── sparcv9-gf2m.pl │ │ │ │ ├── sparcv9-mont.pl │ │ │ │ ├── sparcv9a-mont.pl │ │ │ │ ├── via-mont.pl │ │ │ │ ├── vis3-mont.pl │ │ │ │ ├── vms.mar │ │ │ │ ├── x86-gf2m.pl │ │ │ │ ├── x86-mont.pl │ │ │ │ ├── x86.pl │ │ │ │ ├── x86 │ │ │ │ │ ├── add.pl │ │ │ │ │ ├── comba.pl │ │ │ │ │ ├── div.pl │ │ │ │ │ ├── f │ │ │ │ │ ├── mul.pl │ │ │ │ │ ├── mul_add.pl │ │ │ │ │ ├── sqr.pl │ │ │ │ │ └── sub.pl │ │ │ │ ├── x86_64-gcc.c │ │ │ │ ├── x86_64-gf2m.pl │ │ │ │ ├── x86_64-mont.pl │ │ │ │ └── x86_64-mont5.pl │ │ │ ├── bn.h │ │ │ ├── bn.mul │ │ │ ├── bn_add.c │ │ │ ├── bn_asm.c │ │ │ ├── bn_blind.c │ │ │ ├── bn_const.c │ │ │ ├── bn_ctx.c │ │ │ ├── bn_depr.c │ │ │ ├── bn_div.c │ │ │ ├── bn_err.c │ │ │ ├── bn_exp.c │ │ │ ├── bn_exp2.c │ │ │ ├── bn_gcd.c │ │ │ ├── bn_gf2m.c │ │ │ ├── bn_kron.c │ │ │ ├── bn_lcl.h │ │ │ ├── bn_lib.c │ │ │ ├── bn_mod.c │ │ │ ├── bn_mont.c │ │ │ ├── bn_mpi.c │ │ │ ├── bn_mul.c │ │ │ ├── bn_nist.c │ │ │ ├── bn_prime.c │ │ │ ├── bn_prime.h │ │ │ ├── bn_prime.pl │ │ │ ├── bn_print.c │ │ │ ├── bn_rand.c │ │ │ ├── bn_recp.c │ │ │ ├── bn_shift.c │ │ │ ├── bn_sqr.c │ │ │ ├── bn_sqrt.c │ │ │ ├── bn_word.c │ │ │ ├── bn_x931p.c │ │ │ ├── bnspeed.c │ │ │ ├── bntest.c │ │ │ ├── divtest.c │ │ │ ├── exp.c │ │ │ ├── expspeed.c │ │ │ ├── exptest.c │ │ │ ├── rsaz_exp.c │ │ │ ├── rsaz_exp.h │ │ │ ├── todo │ │ │ └── vms-helper.c │ │ ├── buffer │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── buf_err.c │ │ │ ├── buf_str.c │ │ │ ├── buffer.c │ │ │ └── buffer.h │ │ ├── camellia │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── asm │ │ │ │ ├── cmll-x86.pl │ │ │ │ ├── cmll-x86_64.pl │ │ │ │ └── cmllt4-sparcv9.pl │ │ │ ├── camellia.c │ │ │ ├── camellia.h │ │ │ ├── cmll_cbc.c │ │ │ ├── cmll_cfb.c │ │ │ ├── cmll_ctr.c │ │ │ ├── cmll_ecb.c │ │ │ ├── cmll_locl.h │ │ │ ├── cmll_misc.c │ │ │ ├── cmll_ofb.c │ │ │ └── cmll_utl.c │ │ ├── cast │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── asm │ │ │ │ ├── cast-586.pl │ │ │ │ └── readme │ │ │ ├── c_cfb64.c │ │ │ ├── c_ecb.c │ │ │ ├── c_enc.c │ │ │ ├── c_ofb64.c │ │ │ ├── c_skey.c │ │ │ ├── cast.h │ │ │ ├── cast_lcl.h │ │ │ ├── cast_s.h │ │ │ ├── cast_spd.c │ │ │ ├── castopts.c │ │ │ ├── casts.cpp │ │ │ └── casttest.c │ │ ├── cmac │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── cm_ameth.c │ │ │ ├── cm_pmeth.c │ │ │ ├── cmac.c │ │ │ └── cmac.h │ │ ├── cms │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── cms.h │ │ │ ├── cms_asn1.c │ │ │ ├── cms_att.c │ │ │ ├── cms_cd.c │ │ │ ├── cms_dd.c │ │ │ ├── cms_enc.c │ │ │ ├── cms_env.c │ │ │ ├── cms_err.c │ │ │ ├── cms_ess.c │ │ │ ├── cms_io.c │ │ │ ├── cms_kari.c │ │ │ ├── cms_lcl.h │ │ │ ├── cms_lib.c │ │ │ ├── cms_pwri.c │ │ │ ├── cms_sd.c │ │ │ └── cms_smime.c │ │ ├── comp │ │ │ ├── Makefile │ │ │ ├── c_rle.c │ │ │ ├── c_zlib.c │ │ │ ├── comp.h │ │ │ ├── comp_err.c │ │ │ └── comp_lib.c │ │ ├── conf │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── README │ │ │ ├── cnf_save.c │ │ │ ├── conf.h │ │ │ ├── conf_api.c │ │ │ ├── conf_api.h │ │ │ ├── conf_def.c │ │ │ ├── conf_def.h │ │ │ ├── conf_err.c │ │ │ ├── conf_lib.c │ │ │ ├── conf_mall.c │ │ │ ├── conf_mod.c │ │ │ ├── conf_sap.c │ │ │ ├── keysets.pl │ │ │ ├── ssleay.cnf │ │ │ └── test.c │ │ ├── constant_time_locl.h │ │ ├── constant_time_test.c │ │ ├── cpt_err.c │ │ ├── cryptlib.c │ │ ├── cryptlib.h │ │ ├── crypto-lib.com │ │ ├── crypto.h │ │ ├── cversion.c │ │ ├── des │ │ │ ├── COPYRIGHT │ │ │ ├── DES.pm │ │ │ ├── DES.xs │ │ │ ├── FILES0 │ │ │ ├── INSTALL │ │ │ ├── Imakefile │ │ │ ├── KERBEROS │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── asm │ │ │ │ ├── crypt586.pl │ │ │ │ ├── des-586.pl │ │ │ │ ├── des_enc.m4 │ │ │ │ ├── desboth.pl │ │ │ │ ├── dest4-sparcv9.pl │ │ │ │ └── readme │ │ │ ├── cbc3_enc.c │ │ │ ├── cbc_cksm.c │ │ │ ├── cbc_enc.c │ │ │ ├── cfb64ede.c │ │ │ ├── cfb64enc.c │ │ │ ├── cfb_enc.c │ │ │ ├── des-lib.com │ │ │ ├── des.c │ │ │ ├── des.h │ │ │ ├── des.pod │ │ │ ├── des3s.cpp │ │ │ ├── des_enc.c │ │ │ ├── des_locl.h │ │ │ ├── des_old.c │ │ │ ├── des_old.h │ │ │ ├── des_old2.c │ │ │ ├── des_opts.c │ │ │ ├── des_ver.h │ │ │ ├── dess.cpp │ │ │ ├── destest.c │ │ │ ├── ecb3_enc.c │ │ │ ├── ecb_enc.c │ │ │ ├── ede_cbcm_enc.c │ │ │ ├── enc_read.c │ │ │ ├── enc_writ.c │ │ │ ├── fcrypt.c │ │ │ ├── fcrypt_b.c │ │ │ ├── makefile.bc │ │ │ ├── ncbc_enc.c │ │ │ ├── ofb64ede.c │ │ │ ├── ofb64enc.c │ │ │ ├── ofb_enc.c │ │ │ ├── options.txt │ │ │ ├── pcbc_enc.c │ │ │ ├── qud_cksm.c │ │ │ ├── rand_key.c │ │ │ ├── read2pwd.c │ │ │ ├── read_pwd.c │ │ │ ├── rpc_des.h │ │ │ ├── rpc_enc.c │ │ │ ├── rpw.c │ │ │ ├── set_key.c │ │ │ ├── speed.c │ │ │ ├── spr.h │ │ │ ├── str2key.c │ │ │ ├── t │ │ │ │ └── test │ │ │ ├── times │ │ │ │ ├── 486-50.sol │ │ │ │ ├── 586-100.lnx │ │ │ │ ├── 686-200.fre │ │ │ │ ├── aix.cc │ │ │ │ ├── alpha.cc │ │ │ │ ├── hpux.cc │ │ │ │ ├── sparc.gcc │ │ │ │ └── usparc.cc │ │ │ ├── typemap │ │ │ └── xcbc_enc.c │ │ ├── dh │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── dh.h │ │ │ ├── dh1024.pem │ │ │ ├── dh192.pem │ │ │ ├── dh2048.pem │ │ │ ├── dh4096.pem │ │ │ ├── dh512.pem │ │ │ ├── dh_ameth.c │ │ │ ├── dh_asn1.c │ │ │ ├── dh_check.c │ │ │ ├── dh_depr.c │ │ │ ├── dh_err.c │ │ │ ├── dh_gen.c │ │ │ ├── dh_kdf.c │ │ │ ├── dh_key.c │ │ │ ├── dh_lib.c │ │ │ ├── dh_pmeth.c │ │ │ ├── dh_prn.c │ │ │ ├── dh_rfc5114.c │ │ │ ├── dhtest.c │ │ │ ├── example │ │ │ ├── generate │ │ │ ├── p1024.c │ │ │ ├── p192.c │ │ │ └── p512.c │ │ ├── dsa │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── README │ │ │ ├── dsa.h │ │ │ ├── dsa_ameth.c │ │ │ ├── dsa_asn1.c │ │ │ ├── dsa_depr.c │ │ │ ├── dsa_err.c │ │ │ ├── dsa_gen.c │ │ │ ├── dsa_key.c │ │ │ ├── dsa_lib.c │ │ │ ├── dsa_locl.h │ │ │ ├── dsa_ossl.c │ │ │ ├── dsa_pmeth.c │ │ │ ├── dsa_prn.c │ │ │ ├── dsa_sign.c │ │ │ ├── dsa_vrf.c │ │ │ ├── dsagen.c │ │ │ ├── dsatest.c │ │ │ └── fips186a.txt │ │ ├── dso │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── README │ │ │ ├── dso.h │ │ │ ├── dso_beos.c │ │ │ ├── dso_dl.c │ │ │ ├── dso_dlfcn.c │ │ │ ├── dso_err.c │ │ │ ├── dso_lib.c │ │ │ ├── dso_null.c │ │ │ ├── dso_openssl.c │ │ │ ├── dso_vms.c │ │ │ └── dso_win32.c │ │ ├── ebcdic.c │ │ ├── ebcdic.h │ │ ├── ec │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── asm │ │ │ │ ├── ecp_nistz256-avx2.pl │ │ │ │ └── ecp_nistz256-x86_64.pl │ │ │ ├── ec.h │ │ │ ├── ec2_mult.c │ │ │ ├── ec2_oct.c │ │ │ ├── ec2_smpl.c │ │ │ ├── ec_ameth.c │ │ │ ├── ec_asn1.c │ │ │ ├── ec_check.c │ │ │ ├── ec_curve.c │ │ │ ├── ec_cvt.c │ │ │ ├── ec_err.c │ │ │ ├── ec_key.c │ │ │ ├── ec_lcl.h │ │ │ ├── ec_lib.c │ │ │ ├── ec_mult.c │ │ │ ├── ec_oct.c │ │ │ ├── ec_pmeth.c │ │ │ ├── ec_print.c │ │ │ ├── eck_prn.c │ │ │ ├── ecp_mont.c │ │ │ ├── ecp_nist.c │ │ │ ├── ecp_nistp224.c │ │ │ ├── ecp_nistp256.c │ │ │ ├── ecp_nistp521.c │ │ │ ├── ecp_nistputil.c │ │ │ ├── ecp_nistz256.c │ │ │ ├── ecp_nistz256_table.c │ │ │ ├── ecp_oct.c │ │ │ ├── ecp_smpl.c │ │ │ └── ectest.c │ │ ├── ecdh │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── ecdh.h │ │ │ ├── ecdhtest.c │ │ │ ├── ech_err.c │ │ │ ├── ech_kdf.c │ │ │ ├── ech_key.c │ │ │ ├── ech_lib.c │ │ │ ├── ech_locl.h │ │ │ └── ech_ossl.c │ │ ├── ecdsa │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── ecdsa.h │ │ │ ├── ecdsatest.c │ │ │ ├── ecs_asn1.c │ │ │ ├── ecs_err.c │ │ │ ├── ecs_lib.c │ │ │ ├── ecs_locl.h │ │ │ ├── ecs_ossl.c │ │ │ ├── ecs_sign.c │ │ │ └── ecs_vrf.c │ │ ├── engine │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── README │ │ │ ├── eng_all.c │ │ │ ├── eng_cnf.c │ │ │ ├── eng_cryptodev.c │ │ │ ├── eng_ctrl.c │ │ │ ├── eng_dyn.c │ │ │ ├── eng_err.c │ │ │ ├── eng_fat.c │ │ │ ├── eng_init.c │ │ │ ├── eng_int.h │ │ │ ├── eng_lib.c │ │ │ ├── eng_list.c │ │ │ ├── eng_openssl.c │ │ │ ├── eng_pkey.c │ │ │ ├── eng_rdrand.c │ │ │ ├── eng_table.c │ │ │ ├── engine.h │ │ │ ├── enginetest.c │ │ │ ├── tb_asnmth.c │ │ │ ├── tb_cipher.c │ │ │ ├── tb_dh.c │ │ │ ├── tb_digest.c │ │ │ ├── tb_dsa.c │ │ │ ├── tb_ecdh.c │ │ │ ├── tb_ecdsa.c │ │ │ ├── tb_pkmeth.c │ │ │ ├── tb_rand.c │ │ │ ├── tb_rsa.c │ │ │ └── tb_store.c │ │ ├── err │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── err.c │ │ │ ├── err.h │ │ │ ├── err_all.c │ │ │ ├── err_prn.c │ │ │ └── openssl.ec │ │ ├── evp │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── bio_b64.c │ │ │ ├── bio_enc.c │ │ │ ├── bio_md.c │ │ │ ├── bio_ok.c │ │ │ ├── c_all.c │ │ │ ├── c_allc.c │ │ │ ├── c_alld.c │ │ │ ├── digest.c │ │ │ ├── e_aes.c │ │ │ ├── e_aes_cbc_hmac_sha1.c │ │ │ ├── e_aes_cbc_hmac_sha256.c │ │ │ ├── e_bf.c │ │ │ ├── e_camellia.c │ │ │ ├── e_cast.c │ │ │ ├── e_des.c │ │ │ ├── e_des3.c │ │ │ ├── e_dsa.c │ │ │ ├── e_idea.c │ │ │ ├── e_null.c │ │ │ ├── e_old.c │ │ │ ├── e_rc2.c │ │ │ ├── e_rc4.c │ │ │ ├── e_rc4_hmac_md5.c │ │ │ ├── e_rc5.c │ │ │ ├── e_seed.c │ │ │ ├── e_xcbc_d.c │ │ │ ├── encode.c │ │ │ ├── evp.h │ │ │ ├── evp_acnf.c │ │ │ ├── evp_cnf.c │ │ │ ├── evp_enc.c │ │ │ ├── evp_err.c │ │ │ ├── evp_extra_test.c │ │ │ ├── evp_key.c │ │ │ ├── evp_lib.c │ │ │ ├── evp_locl.h │ │ │ ├── evp_pbe.c │ │ │ ├── evp_pkey.c │ │ │ ├── evp_test.c │ │ │ ├── evptests.txt │ │ │ ├── m_dss.c │ │ │ ├── m_dss1.c │ │ │ ├── m_ecdsa.c │ │ │ ├── m_md2.c │ │ │ ├── m_md4.c │ │ │ ├── m_md5.c │ │ │ ├── m_mdc2.c │ │ │ ├── m_null.c │ │ │ ├── m_ripemd.c │ │ │ ├── m_sha.c │ │ │ ├── m_sha1.c │ │ │ ├── m_sigver.c │ │ │ ├── m_wp.c │ │ │ ├── names.c │ │ │ ├── openbsd_hw.c │ │ │ ├── p5_crpt.c │ │ │ ├── p5_crpt2.c │ │ │ ├── p_dec.c │ │ │ ├── p_enc.c │ │ │ ├── p_lib.c │ │ │ ├── p_open.c │ │ │ ├── p_seal.c │ │ │ ├── p_sign.c │ │ │ ├── p_verify.c │ │ │ ├── pmeth_fn.c │ │ │ ├── pmeth_gn.c │ │ │ └── pmeth_lib.c │ │ ├── ex_data.c │ │ ├── fips_err.h │ │ ├── fips_ers.c │ │ ├── hmac │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── hm_ameth.c │ │ │ ├── hm_pmeth.c │ │ │ ├── hmac.c │ │ │ ├── hmac.h │ │ │ └── hmactest.c │ │ ├── ia64cpuid.S │ │ ├── idea │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── i_cbc.c │ │ │ ├── i_cfb64.c │ │ │ ├── i_ecb.c │ │ │ ├── i_ofb64.c │ │ │ ├── i_skey.c │ │ │ ├── idea.h │ │ │ ├── idea_lcl.h │ │ │ ├── idea_spd.c │ │ │ ├── ideatest.c │ │ │ └── version │ │ ├── install-crypto.com │ │ ├── jpake │ │ │ ├── Makefile │ │ │ ├── jpake.c │ │ │ ├── jpake.h │ │ │ ├── jpake_err.c │ │ │ └── jpaketest.c │ │ ├── krb5 │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── krb5_asn.c │ │ │ └── krb5_asn.h │ │ ├── lhash │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── lh_stats.c │ │ │ ├── lh_test.c │ │ │ ├── lhash.c │ │ │ ├── lhash.h │ │ │ └── num.pl │ │ ├── md2 │ │ │ ├── Makefile │ │ │ ├── md2.c │ │ │ ├── md2.h │ │ │ ├── md2_dgst.c │ │ │ ├── md2_one.c │ │ │ └── md2test.c │ │ ├── md32_common.h │ │ ├── md4 │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── md4.c │ │ │ ├── md4.h │ │ │ ├── md4_dgst.c │ │ │ ├── md4_locl.h │ │ │ ├── md4_one.c │ │ │ ├── md4s.cpp │ │ │ └── md4test.c │ │ ├── md5 │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── asm │ │ │ │ ├── md5-586.pl │ │ │ │ ├── md5-ia64.S │ │ │ │ ├── md5-sparcv9.pl │ │ │ │ └── md5-x86_64.pl │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── md5_dgst.c │ │ │ ├── md5_locl.h │ │ │ ├── md5_one.c │ │ │ ├── md5s.cpp │ │ │ └── md5test.c │ │ ├── mdc2 │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── mdc2.h │ │ │ ├── mdc2_one.c │ │ │ ├── mdc2dgst.c │ │ │ └── mdc2test.c │ │ ├── mem.c │ │ ├── mem_clr.c │ │ ├── mem_dbg.c │ │ ├── modes │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── asm │ │ │ │ ├── aesni-gcm-x86_64.pl │ │ │ │ ├── ghash-alpha.pl │ │ │ │ ├── ghash-armv4.pl │ │ │ │ ├── ghash-ia64.pl │ │ │ │ ├── ghash-parisc.pl │ │ │ │ ├── ghash-s390x.pl │ │ │ │ ├── ghash-sparcv9.pl │ │ │ │ ├── ghash-x86.pl │ │ │ │ ├── ghash-x86_64.pl │ │ │ │ ├── ghashp8-ppc.pl │ │ │ │ └── ghashv8-armx.pl │ │ │ ├── cbc128.c │ │ │ ├── ccm128.c │ │ │ ├── cfb128.c │ │ │ ├── ctr128.c │ │ │ ├── cts128.c │ │ │ ├── gcm128.c │ │ │ ├── modes.h │ │ │ ├── modes_lcl.h │ │ │ ├── ofb128.c │ │ │ ├── wrap128.c │ │ │ └── xts128.c │ │ ├── o_dir.c │ │ ├── o_dir.h │ │ ├── o_dir_test.c │ │ ├── o_fips.c │ │ ├── o_init.c │ │ ├── o_str.c │ │ ├── o_str.h │ │ ├── o_time.c │ │ ├── o_time.h │ │ ├── objects │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── o_names.c │ │ │ ├── obj_dat.c │ │ │ ├── obj_dat.h │ │ │ ├── obj_dat.pl │ │ │ ├── obj_err.c │ │ │ ├── obj_lib.c │ │ │ ├── obj_mac.h │ │ │ ├── obj_mac.num │ │ │ ├── obj_xref.c │ │ │ ├── obj_xref.h │ │ │ ├── obj_xref.txt │ │ │ ├── objects.README │ │ │ ├── objects.h │ │ │ ├── objects.pl │ │ │ ├── objects.txt │ │ │ └── objxref.pl │ │ ├── ocsp │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── ocsp.h │ │ │ ├── ocsp_asn.c │ │ │ ├── ocsp_cl.c │ │ │ ├── ocsp_err.c │ │ │ ├── ocsp_ext.c │ │ │ ├── ocsp_ht.c │ │ │ ├── ocsp_lib.c │ │ │ ├── ocsp_prn.c │ │ │ ├── ocsp_srv.c │ │ │ └── ocsp_vfy.c │ │ ├── opensslconf.h │ │ ├── opensslconf.h.in │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pariscid.pl │ │ ├── pem │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── message │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pem_all.c │ │ │ ├── pem_err.c │ │ │ ├── pem_info.c │ │ │ ├── pem_lib.c │ │ │ ├── pem_oth.c │ │ │ ├── pem_pk8.c │ │ │ ├── pem_pkey.c │ │ │ ├── pem_seal.c │ │ │ ├── pem_sign.c │ │ │ ├── pem_x509.c │ │ │ ├── pem_xaux.c │ │ │ ├── pkcs7.lis │ │ │ └── pvkfmt.c │ │ ├── perlasm │ │ │ ├── cbc.pl │ │ │ ├── ppc-xlate.pl │ │ │ ├── readme │ │ │ ├── sparcv9_modes.pl │ │ │ ├── x86_64-xlate.pl │ │ │ ├── x86asm.pl │ │ │ ├── x86gas.pl │ │ │ ├── x86masm.pl │ │ │ └── x86nasm.pl │ │ ├── pkcs12 │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── p12_add.c │ │ │ ├── p12_asn.c │ │ │ ├── p12_attr.c │ │ │ ├── p12_crpt.c │ │ │ ├── p12_crt.c │ │ │ ├── p12_decr.c │ │ │ ├── p12_init.c │ │ │ ├── p12_key.c │ │ │ ├── p12_kiss.c │ │ │ ├── p12_mutl.c │ │ │ ├── p12_npas.c │ │ │ ├── p12_p8d.c │ │ │ ├── p12_p8e.c │ │ │ ├── p12_utl.c │ │ │ ├── pk12err.c │ │ │ └── pkcs12.h │ │ ├── pkcs7 │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── bio_pk7.c │ │ │ ├── pk7_asn1.c │ │ │ ├── pk7_attr.c │ │ │ ├── pk7_dgst.c │ │ │ ├── pk7_doit.c │ │ │ ├── pk7_enc.c │ │ │ ├── pk7_lib.c │ │ │ ├── pk7_mime.c │ │ │ ├── pk7_smime.c │ │ │ ├── pkcs7.h │ │ │ └── pkcs7err.c │ │ ├── ppc_arch.h │ │ ├── ppccap.c │ │ ├── ppccpuid.pl │ │ ├── pqueue │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── pq_test.c │ │ │ ├── pqueue.c │ │ │ └── pqueue.h │ │ ├── rand │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── md_rand.c │ │ │ ├── rand.h │ │ │ ├── rand_egd.c │ │ │ ├── rand_err.c │ │ │ ├── rand_lcl.h │ │ │ ├── rand_lib.c │ │ │ ├── rand_nw.c │ │ │ ├── rand_os2.c │ │ │ ├── rand_unix.c │ │ │ ├── rand_vms.c │ │ │ ├── rand_win.c │ │ │ ├── randfile.c │ │ │ └── randtest.c │ │ ├── rc2 │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── rc2.h │ │ │ ├── rc2_cbc.c │ │ │ ├── rc2_ecb.c │ │ │ ├── rc2_locl.h │ │ │ ├── rc2_skey.c │ │ │ ├── rc2cfb64.c │ │ │ ├── rc2ofb64.c │ │ │ ├── rc2speed.c │ │ │ ├── rc2test.c │ │ │ ├── rrc2.doc │ │ │ ├── tab.c │ │ │ └── version │ │ ├── rc4 │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── asm │ │ │ │ ├── rc4-586.pl │ │ │ │ ├── rc4-ia64.pl │ │ │ │ ├── rc4-md5-x86_64.pl │ │ │ │ ├── rc4-parisc.pl │ │ │ │ ├── rc4-s390x.pl │ │ │ │ └── rc4-x86_64.pl │ │ │ ├── rc4.c │ │ │ ├── rc4.h │ │ │ ├── rc4_enc.c │ │ │ ├── rc4_locl.h │ │ │ ├── rc4_skey.c │ │ │ ├── rc4_utl.c │ │ │ ├── rc4s.cpp │ │ │ ├── rc4speed.c │ │ │ ├── rc4test.c │ │ │ └── rrc4.doc │ │ ├── rc5 │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ └── rc5-586.pl │ │ │ ├── rc5.h │ │ │ ├── rc5_ecb.c │ │ │ ├── rc5_enc.c │ │ │ ├── rc5_locl.h │ │ │ ├── rc5_skey.c │ │ │ ├── rc5cfb64.c │ │ │ ├── rc5ofb64.c │ │ │ ├── rc5s.cpp │ │ │ ├── rc5speed.c │ │ │ └── rc5test.c │ │ ├── ripemd │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── README │ │ │ ├── asm │ │ │ │ ├── rips.cpp │ │ │ │ └── rmd-586.pl │ │ │ ├── ripemd.h │ │ │ ├── rmd160.c │ │ │ ├── rmd_dgst.c │ │ │ ├── rmd_locl.h │ │ │ ├── rmd_one.c │ │ │ ├── rmdconst.h │ │ │ └── rmdtest.c │ │ ├── rsa │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── rsa.h │ │ │ ├── rsa_ameth.c │ │ │ ├── rsa_asn1.c │ │ │ ├── rsa_chk.c │ │ │ ├── rsa_crpt.c │ │ │ ├── rsa_depr.c │ │ │ ├── rsa_eay.c │ │ │ ├── rsa_err.c │ │ │ ├── rsa_gen.c │ │ │ ├── rsa_lib.c │ │ │ ├── rsa_locl.h │ │ │ ├── rsa_none.c │ │ │ ├── rsa_null.c │ │ │ ├── rsa_oaep.c │ │ │ ├── rsa_pk1.c │ │ │ ├── rsa_pmeth.c │ │ │ ├── rsa_prn.c │ │ │ ├── rsa_pss.c │ │ │ ├── rsa_saos.c │ │ │ ├── rsa_sign.c │ │ │ ├── rsa_ssl.c │ │ │ ├── rsa_test.c │ │ │ └── rsa_x931.c │ │ ├── s390xcap.c │ │ ├── s390xcpuid.S │ │ ├── seed │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── seed.c │ │ │ ├── seed.h │ │ │ ├── seed_cbc.c │ │ │ ├── seed_cfb.c │ │ │ ├── seed_ecb.c │ │ │ ├── seed_locl.h │ │ │ └── seed_ofb.c │ │ ├── sha │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── asm │ │ │ │ ├── README │ │ │ │ ├── sha1-586.pl │ │ │ │ ├── sha1-alpha.pl │ │ │ │ ├── sha1-armv4-large.pl │ │ │ │ ├── sha1-armv8.pl │ │ │ │ ├── sha1-ia64.pl │ │ │ │ ├── sha1-mb-x86_64.pl │ │ │ │ ├── sha1-mips.pl │ │ │ │ ├── sha1-parisc.pl │ │ │ │ ├── sha1-ppc.pl │ │ │ │ ├── sha1-s390x.pl │ │ │ │ ├── sha1-sparcv9.pl │ │ │ │ ├── sha1-sparcv9a.pl │ │ │ │ ├── sha1-thumb.pl │ │ │ │ ├── sha1-x86_64.pl │ │ │ │ ├── sha256-586.pl │ │ │ │ ├── sha256-armv4.pl │ │ │ │ ├── sha256-mb-x86_64.pl │ │ │ │ ├── sha512-586.pl │ │ │ │ ├── sha512-armv4.pl │ │ │ │ ├── sha512-armv8.pl │ │ │ │ ├── sha512-ia64.pl │ │ │ │ ├── sha512-mips.pl │ │ │ │ ├── sha512-parisc.pl │ │ │ │ ├── sha512-ppc.pl │ │ │ │ ├── sha512-s390x.pl │ │ │ │ ├── sha512-sparcv9.pl │ │ │ │ ├── sha512-x86_64.pl │ │ │ │ └── sha512p8-ppc.pl │ │ │ ├── sha.c │ │ │ ├── sha.h │ │ │ ├── sha1.c │ │ │ ├── sha1_one.c │ │ │ ├── sha1dgst.c │ │ │ ├── sha1test.c │ │ │ ├── sha256.c │ │ │ ├── sha256t.c │ │ │ ├── sha512.c │ │ │ ├── sha512t.c │ │ │ ├── sha_dgst.c │ │ │ ├── sha_locl.h │ │ │ ├── sha_one.c │ │ │ └── shatest.c │ │ ├── sparc_arch.h │ │ ├── sparccpuid.S │ │ ├── sparcv9cap.c │ │ ├── srp │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── srp.h │ │ │ ├── srp_grps.h │ │ │ ├── srp_lcl.h │ │ │ ├── srp_lib.c │ │ │ ├── srp_vfy.c │ │ │ └── srptest.c │ │ ├── stack │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── safestack.h │ │ │ ├── stack.c │ │ │ └── stack.h │ │ ├── store │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── store.h │ │ │ ├── str_err.c │ │ │ ├── str_lib.c │ │ │ ├── str_locl.h │ │ │ ├── str_mem.c │ │ │ └── str_meth.c │ │ ├── symhacks.h │ │ ├── threads │ │ │ ├── README │ │ │ ├── mttest.c │ │ │ ├── netware.bat │ │ │ ├── profile.sh │ │ │ ├── ptest.bat │ │ │ ├── pthread.sh │ │ │ ├── pthread2.sh │ │ │ ├── pthreads-vms.com │ │ │ ├── purify.sh │ │ │ ├── solaris.sh │ │ │ ├── th-lock.c │ │ │ └── win32.bat │ │ ├── ts │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── ts.h │ │ │ ├── ts_asn1.c │ │ │ ├── ts_conf.c │ │ │ ├── ts_err.c │ │ │ ├── ts_lib.c │ │ │ ├── ts_req_print.c │ │ │ ├── ts_req_utils.c │ │ │ ├── ts_rsp_print.c │ │ │ ├── ts_rsp_sign.c │ │ │ ├── ts_rsp_utils.c │ │ │ ├── ts_rsp_verify.c │ │ │ └── ts_verify_ctx.c │ │ ├── txt_db │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── txt_db.c │ │ │ └── txt_db.h │ │ ├── ui │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── ui.h │ │ │ ├── ui_compat.c │ │ │ ├── ui_compat.h │ │ │ ├── ui_err.c │ │ │ ├── ui_lib.c │ │ │ ├── ui_locl.h │ │ │ ├── ui_openssl.c │ │ │ └── ui_util.c │ │ ├── uid.c │ │ ├── vms_rms.h │ │ ├── whrlpool │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── asm │ │ │ │ ├── wp-mmx.pl │ │ │ │ └── wp-x86_64.pl │ │ │ ├── whrlpool.h │ │ │ ├── wp_block.c │ │ │ ├── wp_dgst.c │ │ │ ├── wp_locl.h │ │ │ └── wp_test.c │ │ ├── x509 │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── by_dir.c │ │ │ ├── by_file.c │ │ │ ├── verify_extra_test.c │ │ │ ├── vpm_int.h │ │ │ ├── x509.h │ │ │ ├── x509_att.c │ │ │ ├── x509_cmp.c │ │ │ ├── x509_d2.c │ │ │ ├── x509_def.c │ │ │ ├── x509_err.c │ │ │ ├── x509_ext.c │ │ │ ├── x509_lu.c │ │ │ ├── x509_obj.c │ │ │ ├── x509_r2x.c │ │ │ ├── x509_req.c │ │ │ ├── x509_set.c │ │ │ ├── x509_trs.c │ │ │ ├── x509_txt.c │ │ │ ├── x509_v3.c │ │ │ ├── x509_vfy.c │ │ │ ├── x509_vfy.h │ │ │ ├── x509_vpm.c │ │ │ ├── x509cset.c │ │ │ ├── x509name.c │ │ │ ├── x509rset.c │ │ │ ├── x509spki.c │ │ │ ├── x509type.c │ │ │ └── x_all.c │ │ ├── x509v3 │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── ext_dat.h │ │ │ ├── pcy_cache.c │ │ │ ├── pcy_data.c │ │ │ ├── pcy_int.h │ │ │ ├── pcy_lib.c │ │ │ ├── pcy_map.c │ │ │ ├── pcy_node.c │ │ │ ├── pcy_tree.c │ │ │ ├── tabtest.c │ │ │ ├── v3_addr.c │ │ │ ├── v3_akey.c │ │ │ ├── v3_akeya.c │ │ │ ├── v3_alt.c │ │ │ ├── v3_asid.c │ │ │ ├── v3_bcons.c │ │ │ ├── v3_bitst.c │ │ │ ├── v3_conf.c │ │ │ ├── v3_cpols.c │ │ │ ├── v3_crld.c │ │ │ ├── v3_enum.c │ │ │ ├── v3_extku.c │ │ │ ├── v3_genn.c │ │ │ ├── v3_ia5.c │ │ │ ├── v3_info.c │ │ │ ├── v3_int.c │ │ │ ├── v3_lib.c │ │ │ ├── v3_ncons.c │ │ │ ├── v3_ocsp.c │ │ │ ├── v3_pci.c │ │ │ ├── v3_pcia.c │ │ │ ├── v3_pcons.c │ │ │ ├── v3_pku.c │ │ │ ├── v3_pmaps.c │ │ │ ├── v3_prn.c │ │ │ ├── v3_purp.c │ │ │ ├── v3_scts.c │ │ │ ├── v3_skey.c │ │ │ ├── v3_sxnet.c │ │ │ ├── v3_utl.c │ │ │ ├── v3conf.c │ │ │ ├── v3err.c │ │ │ ├── v3nametest.c │ │ │ ├── v3prin.c │ │ │ └── x509v3.h │ │ ├── x86_64cpuid.pl │ │ └── x86cpuid.pl │ ├── demos │ │ ├── README │ │ ├── asn1 │ │ │ ├── README.ASN1 │ │ │ └── ocsp.c │ │ ├── b64.c │ │ ├── b64.pl │ │ ├── bio │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── accept.cnf │ │ │ ├── client-arg.c │ │ │ ├── client-conf.c │ │ │ ├── connect.cnf │ │ │ ├── saccept.c │ │ │ ├── sconnect.c │ │ │ ├── server-arg.c │ │ │ ├── server-conf.c │ │ │ └── server.pem │ │ ├── cms │ │ │ ├── cacert.pem │ │ │ ├── cakey.pem │ │ │ ├── cms_comp.c │ │ │ ├── cms_ddec.c │ │ │ ├── cms_dec.c │ │ │ ├── cms_denc.c │ │ │ ├── cms_enc.c │ │ │ ├── cms_sign.c │ │ │ ├── cms_sign2.c │ │ │ ├── cms_uncomp.c │ │ │ ├── cms_ver.c │ │ │ ├── comp.txt │ │ │ ├── encr.txt │ │ │ ├── sign.txt │ │ │ ├── signer.pem │ │ │ └── signer2.pem │ │ ├── easy_tls │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── cacerts.pem │ │ │ ├── cert.pem │ │ │ ├── easy-tls.c │ │ │ ├── easy-tls.h │ │ │ ├── test.c │ │ │ └── test.h │ │ ├── engines │ │ │ ├── cluster_labs │ │ │ │ ├── Makefile │ │ │ │ ├── cluster_labs.h │ │ │ │ ├── hw_cluster_labs.c │ │ │ │ ├── hw_cluster_labs.ec │ │ │ │ ├── hw_cluster_labs_err.c │ │ │ │ └── hw_cluster_labs_err.h │ │ │ ├── ibmca │ │ │ │ ├── Makefile │ │ │ │ ├── hw_ibmca.c │ │ │ │ ├── hw_ibmca.ec │ │ │ │ ├── hw_ibmca_err.c │ │ │ │ ├── hw_ibmca_err.h │ │ │ │ └── ica_openssl_api.h │ │ │ ├── rsaref │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── build.com │ │ │ │ ├── rsaref.c │ │ │ │ ├── rsaref.ec │ │ │ │ ├── rsaref_err.c │ │ │ │ └── rsaref_err.h │ │ │ └── zencod │ │ │ │ ├── Makefile │ │ │ │ ├── hw_zencod.c │ │ │ │ ├── hw_zencod.ec │ │ │ │ ├── hw_zencod.h │ │ │ │ ├── hw_zencod_err.c │ │ │ │ └── hw_zencod_err.h │ │ ├── pkcs12 │ │ │ ├── README │ │ │ ├── pkread.c │ │ │ └── pkwrite.c │ │ ├── prime │ │ │ ├── Makefile │ │ │ └── prime.c │ │ ├── privkey.pem │ │ ├── selfsign.c │ │ ├── sign │ │ │ ├── Makefile │ │ │ ├── cert.pem │ │ │ ├── key.pem │ │ │ ├── sig.txt │ │ │ ├── sign.c │ │ │ └── sign.txt │ │ ├── smime │ │ │ ├── cacert.pem │ │ │ ├── cakey.pem │ │ │ ├── encr.txt │ │ │ ├── sign.txt │ │ │ ├── signer.pem │ │ │ ├── signer2.pem │ │ │ ├── smdec.c │ │ │ ├── smenc.c │ │ │ ├── smsign.c │ │ │ ├── smsign2.c │ │ │ └── smver.c │ │ ├── spkigen.c │ │ ├── ssl │ │ │ ├── cli.cpp │ │ │ ├── inetdsrv.cpp │ │ │ └── serv.cpp │ │ ├── ssltest-ecc │ │ │ ├── ECC-RSAcertgen.sh │ │ │ ├── ECCcertgen.sh │ │ │ ├── README │ │ │ ├── RSAcertgen.sh │ │ │ └── ssltest.sh │ │ ├── state_machine │ │ │ ├── Makefile │ │ │ └── state_machine.c │ │ ├── tunala │ │ │ ├── A-client.pem │ │ │ ├── A-server.pem │ │ │ ├── CA.pem │ │ │ ├── INSTALL │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── autogunk.sh │ │ │ ├── autoungunk.sh │ │ │ ├── breakage.c │ │ │ ├── buffer.c │ │ │ ├── cb.c │ │ │ ├── configure.in │ │ │ ├── ip.c │ │ │ ├── sm.c │ │ │ ├── test.sh │ │ │ ├── tunala.c │ │ │ └── tunala.h │ │ └── x509 │ │ │ ├── README │ │ │ ├── mkcert.c │ │ │ └── mkreq.c │ ├── doc │ │ ├── HOWTO │ │ │ ├── certificates.txt │ │ │ ├── keys.txt │ │ │ └── proxy_certificates.txt │ │ ├── README │ │ ├── apps │ │ │ ├── CA.pl.pod │ │ │ ├── asn1parse.pod │ │ │ ├── c_rehash.pod │ │ │ ├── ca.pod │ │ │ ├── ciphers.pod │ │ │ ├── cms.pod │ │ │ ├── config.pod │ │ │ ├── crl.pod │ │ │ ├── crl2pkcs7.pod │ │ │ ├── dgst.pod │ │ │ ├── dhparam.pod │ │ │ ├── dsa.pod │ │ │ ├── dsaparam.pod │ │ │ ├── ec.pod │ │ │ ├── ecparam.pod │ │ │ ├── enc.pod │ │ │ ├── errstr.pod │ │ │ ├── gendsa.pod │ │ │ ├── genpkey.pod │ │ │ ├── genrsa.pod │ │ │ ├── nseq.pod │ │ │ ├── ocsp.pod │ │ │ ├── openssl.pod │ │ │ ├── passwd.pod │ │ │ ├── pkcs12.pod │ │ │ ├── pkcs7.pod │ │ │ ├── pkcs8.pod │ │ │ ├── pkey.pod │ │ │ ├── pkeyparam.pod │ │ │ ├── pkeyutl.pod │ │ │ ├── rand.pod │ │ │ ├── req.pod │ │ │ ├── rsa.pod │ │ │ ├── rsautl.pod │ │ │ ├── s_client.pod │ │ │ ├── s_server.pod │ │ │ ├── s_time.pod │ │ │ ├── sess_id.pod │ │ │ ├── smime.pod │ │ │ ├── speed.pod │ │ │ ├── spkac.pod │ │ │ ├── ts.pod │ │ │ ├── tsget.pod │ │ │ ├── verify.pod │ │ │ ├── version.pod │ │ │ ├── x509.pod │ │ │ └── x509v3_config.pod │ │ ├── c-indentation.el │ │ ├── crypto │ │ │ ├── ASN1_OBJECT_new.pod │ │ │ ├── ASN1_STRING_length.pod │ │ │ ├── ASN1_STRING_new.pod │ │ │ ├── ASN1_STRING_print_ex.pod │ │ │ ├── ASN1_TIME_set.pod │ │ │ ├── ASN1_generate_nconf.pod │ │ │ ├── BIO_ctrl.pod │ │ │ ├── BIO_f_base64.pod │ │ │ ├── BIO_f_buffer.pod │ │ │ ├── BIO_f_cipher.pod │ │ │ ├── BIO_f_md.pod │ │ │ ├── BIO_f_null.pod │ │ │ ├── BIO_f_ssl.pod │ │ │ ├── BIO_find_type.pod │ │ │ ├── BIO_new.pod │ │ │ ├── BIO_new_CMS.pod │ │ │ ├── BIO_push.pod │ │ │ ├── BIO_read.pod │ │ │ ├── BIO_s_accept.pod │ │ │ ├── BIO_s_bio.pod │ │ │ ├── BIO_s_connect.pod │ │ │ ├── BIO_s_fd.pod │ │ │ ├── BIO_s_file.pod │ │ │ ├── BIO_s_mem.pod │ │ │ ├── BIO_s_null.pod │ │ │ ├── BIO_s_socket.pod │ │ │ ├── BIO_set_callback.pod │ │ │ ├── BIO_should_retry.pod │ │ │ ├── BN_BLINDING_new.pod │ │ │ ├── BN_CTX_new.pod │ │ │ ├── BN_CTX_start.pod │ │ │ ├── BN_add.pod │ │ │ ├── BN_add_word.pod │ │ │ ├── BN_bn2bin.pod │ │ │ ├── BN_cmp.pod │ │ │ ├── BN_copy.pod │ │ │ ├── BN_generate_prime.pod │ │ │ ├── BN_mod_inverse.pod │ │ │ ├── BN_mod_mul_montgomery.pod │ │ │ ├── BN_mod_mul_reciprocal.pod │ │ │ ├── BN_new.pod │ │ │ ├── BN_num_bytes.pod │ │ │ ├── BN_rand.pod │ │ │ ├── BN_set_bit.pod │ │ │ ├── BN_swap.pod │ │ │ ├── BN_zero.pod │ │ │ ├── CMS_add0_cert.pod │ │ │ ├── CMS_add1_recipient_cert.pod │ │ │ ├── CMS_add1_signer.pod │ │ │ ├── CMS_compress.pod │ │ │ ├── CMS_decrypt.pod │ │ │ ├── CMS_encrypt.pod │ │ │ ├── CMS_final.pod │ │ │ ├── CMS_get0_RecipientInfos.pod │ │ │ ├── CMS_get0_SignerInfos.pod │ │ │ ├── CMS_get0_type.pod │ │ │ ├── CMS_get1_ReceiptRequest.pod │ │ │ ├── CMS_sign.pod │ │ │ ├── CMS_sign_receipt.pod │ │ │ ├── CMS_uncompress.pod │ │ │ ├── CMS_verify.pod │ │ │ ├── CMS_verify_receipt.pod │ │ │ ├── CONF_modules_free.pod │ │ │ ├── CONF_modules_load_file.pod │ │ │ ├── CRYPTO_set_ex_data.pod │ │ │ ├── DH_generate_key.pod │ │ │ ├── DH_generate_parameters.pod │ │ │ ├── DH_get_ex_new_index.pod │ │ │ ├── DH_new.pod │ │ │ ├── DH_set_method.pod │ │ │ ├── DH_size.pod │ │ │ ├── DSA_SIG_new.pod │ │ │ ├── DSA_do_sign.pod │ │ │ ├── DSA_dup_DH.pod │ │ │ ├── DSA_generate_key.pod │ │ │ ├── DSA_generate_parameters.pod │ │ │ ├── DSA_get_ex_new_index.pod │ │ │ ├── DSA_new.pod │ │ │ ├── DSA_set_method.pod │ │ │ ├── DSA_sign.pod │ │ │ ├── DSA_size.pod │ │ │ ├── EC_GFp_simple_method.pod │ │ │ ├── EC_GROUP_copy.pod │ │ │ ├── EC_GROUP_new.pod │ │ │ ├── EC_KEY_new.pod │ │ │ ├── EC_POINT_add.pod │ │ │ ├── EC_POINT_new.pod │ │ │ ├── ERR_GET_LIB.pod │ │ │ ├── ERR_clear_error.pod │ │ │ ├── ERR_error_string.pod │ │ │ ├── ERR_get_error.pod │ │ │ ├── ERR_load_crypto_strings.pod │ │ │ ├── ERR_load_strings.pod │ │ │ ├── ERR_print_errors.pod │ │ │ ├── ERR_put_error.pod │ │ │ ├── ERR_remove_state.pod │ │ │ ├── ERR_set_mark.pod │ │ │ ├── EVP_BytesToKey.pod │ │ │ ├── EVP_DigestInit.pod │ │ │ ├── EVP_DigestSignInit.pod │ │ │ ├── EVP_DigestVerifyInit.pod │ │ │ ├── EVP_EncryptInit.pod │ │ │ ├── EVP_OpenInit.pod │ │ │ ├── EVP_PKEY_CTX_ctrl.pod │ │ │ ├── EVP_PKEY_CTX_new.pod │ │ │ ├── EVP_PKEY_cmp.pod │ │ │ ├── EVP_PKEY_decrypt.pod │ │ │ ├── EVP_PKEY_derive.pod │ │ │ ├── EVP_PKEY_encrypt.pod │ │ │ ├── EVP_PKEY_get_default_digest.pod │ │ │ ├── EVP_PKEY_keygen.pod │ │ │ ├── EVP_PKEY_new.pod │ │ │ ├── EVP_PKEY_print_private.pod │ │ │ ├── EVP_PKEY_set1_RSA.pod │ │ │ ├── EVP_PKEY_sign.pod │ │ │ ├── EVP_PKEY_verify.pod │ │ │ ├── EVP_PKEY_verify_recover.pod │ │ │ ├── EVP_SealInit.pod │ │ │ ├── EVP_SignInit.pod │ │ │ ├── EVP_VerifyInit.pod │ │ │ ├── OBJ_nid2obj.pod │ │ │ ├── OPENSSL_Applink.pod │ │ │ ├── OPENSSL_VERSION_NUMBER.pod │ │ │ ├── OPENSSL_config.pod │ │ │ ├── OPENSSL_ia32cap.pod │ │ │ ├── OPENSSL_instrument_bus.pod │ │ │ ├── OPENSSL_load_builtin_modules.pod │ │ │ ├── OpenSSL_add_all_algorithms.pod │ │ │ ├── PEM_write_bio_CMS_stream.pod │ │ │ ├── PEM_write_bio_PKCS7_stream.pod │ │ │ ├── PKCS12_create.pod │ │ │ ├── PKCS12_parse.pod │ │ │ ├── PKCS7_decrypt.pod │ │ │ ├── PKCS7_encrypt.pod │ │ │ ├── PKCS7_sign.pod │ │ │ ├── PKCS7_sign_add_signer.pod │ │ │ ├── PKCS7_verify.pod │ │ │ ├── RAND_add.pod │ │ │ ├── RAND_bytes.pod │ │ │ ├── RAND_cleanup.pod │ │ │ ├── RAND_egd.pod │ │ │ ├── RAND_load_file.pod │ │ │ ├── RAND_set_rand_method.pod │ │ │ ├── RSA_blinding_on.pod │ │ │ ├── RSA_check_key.pod │ │ │ ├── RSA_generate_key.pod │ │ │ ├── RSA_get_ex_new_index.pod │ │ │ ├── RSA_new.pod │ │ │ ├── RSA_padding_add_PKCS1_type_1.pod │ │ │ ├── RSA_print.pod │ │ │ ├── RSA_private_encrypt.pod │ │ │ ├── RSA_public_encrypt.pod │ │ │ ├── RSA_set_method.pod │ │ │ ├── RSA_sign.pod │ │ │ ├── RSA_sign_ASN1_OCTET_STRING.pod │ │ │ ├── RSA_size.pod │ │ │ ├── SMIME_read_CMS.pod │ │ │ ├── SMIME_read_PKCS7.pod │ │ │ ├── SMIME_write_CMS.pod │ │ │ ├── SMIME_write_PKCS7.pod │ │ │ ├── SSLeay_version.pod │ │ │ ├── X509_NAME_ENTRY_get_object.pod │ │ │ ├── X509_NAME_add_entry_by_txt.pod │ │ │ ├── X509_NAME_get_index_by_NID.pod │ │ │ ├── X509_NAME_print_ex.pod │ │ │ ├── X509_STORE_CTX_get_error.pod │ │ │ ├── X509_STORE_CTX_get_ex_new_index.pod │ │ │ ├── X509_STORE_CTX_new.pod │ │ │ ├── X509_STORE_CTX_set_verify_cb.pod │ │ │ ├── X509_STORE_set_verify_cb_func.pod │ │ │ ├── X509_VERIFY_PARAM_set_flags.pod │ │ │ ├── X509_check_host.pod │ │ │ ├── X509_new.pod │ │ │ ├── X509_verify_cert.pod │ │ │ ├── bio.pod │ │ │ ├── blowfish.pod │ │ │ ├── bn.pod │ │ │ ├── bn_internal.pod │ │ │ ├── buffer.pod │ │ │ ├── crypto.pod │ │ │ ├── d2i_ASN1_OBJECT.pod │ │ │ ├── d2i_CMS_ContentInfo.pod │ │ │ ├── d2i_DHparams.pod │ │ │ ├── d2i_DSAPublicKey.pod │ │ │ ├── d2i_ECPKParameters.pod │ │ │ ├── d2i_ECPrivateKey.pod │ │ │ ├── d2i_PKCS8PrivateKey.pod │ │ │ ├── d2i_RSAPublicKey.pod │ │ │ ├── d2i_X509.pod │ │ │ ├── d2i_X509_ALGOR.pod │ │ │ ├── d2i_X509_CRL.pod │ │ │ ├── d2i_X509_NAME.pod │ │ │ ├── d2i_X509_REQ.pod │ │ │ ├── d2i_X509_SIG.pod │ │ │ ├── des.pod │ │ │ ├── des_modes.pod │ │ │ ├── dh.pod │ │ │ ├── dsa.pod │ │ │ ├── ec.pod │ │ │ ├── ecdsa.pod │ │ │ ├── engine.pod │ │ │ ├── err.pod │ │ │ ├── evp.pod │ │ │ ├── hmac.pod │ │ │ ├── i2d_CMS_bio_stream.pod │ │ │ ├── i2d_PKCS7_bio_stream.pod │ │ │ ├── lh_stats.pod │ │ │ ├── lhash.pod │ │ │ ├── md5.pod │ │ │ ├── mdc2.pod │ │ │ ├── pem.pod │ │ │ ├── rand.pod │ │ │ ├── rc4.pod │ │ │ ├── ripemd.pod │ │ │ ├── rsa.pod │ │ │ ├── sha.pod │ │ │ ├── threads.pod │ │ │ ├── ui.pod │ │ │ ├── ui_compat.pod │ │ │ └── x509.pod │ │ ├── fingerprints.txt │ │ ├── openssl-shared.txt │ │ ├── openssl.txt │ │ ├── openssl_button.gif │ │ ├── openssl_button.html │ │ ├── ssl │ │ │ ├── SSL_CIPHER_get_name.pod │ │ │ ├── SSL_COMP_add_compression_method.pod │ │ │ ├── SSL_CONF_CTX_new.pod │ │ │ ├── SSL_CONF_CTX_set1_prefix.pod │ │ │ ├── SSL_CONF_CTX_set_flags.pod │ │ │ ├── SSL_CONF_CTX_set_ssl_ctx.pod │ │ │ ├── SSL_CONF_cmd.pod │ │ │ ├── SSL_CONF_cmd_argv.pod │ │ │ ├── SSL_CTX_add1_chain_cert.pod │ │ │ ├── SSL_CTX_add_extra_chain_cert.pod │ │ │ ├── SSL_CTX_add_session.pod │ │ │ ├── SSL_CTX_ctrl.pod │ │ │ ├── SSL_CTX_flush_sessions.pod │ │ │ ├── SSL_CTX_free.pod │ │ │ ├── SSL_CTX_get0_param.pod │ │ │ ├── SSL_CTX_get_ex_new_index.pod │ │ │ ├── SSL_CTX_get_verify_mode.pod │ │ │ ├── SSL_CTX_load_verify_locations.pod │ │ │ ├── SSL_CTX_new.pod │ │ │ ├── SSL_CTX_sess_number.pod │ │ │ ├── SSL_CTX_sess_set_cache_size.pod │ │ │ ├── SSL_CTX_sess_set_get_cb.pod │ │ │ ├── SSL_CTX_sessions.pod │ │ │ ├── SSL_CTX_set1_curves.pod │ │ │ ├── SSL_CTX_set1_verify_cert_store.pod │ │ │ ├── SSL_CTX_set_cert_cb.pod │ │ │ ├── SSL_CTX_set_cert_store.pod │ │ │ ├── SSL_CTX_set_cert_verify_callback.pod │ │ │ ├── SSL_CTX_set_cipher_list.pod │ │ │ ├── SSL_CTX_set_client_CA_list.pod │ │ │ ├── SSL_CTX_set_client_cert_cb.pod │ │ │ ├── SSL_CTX_set_custom_cli_ext.pod │ │ │ ├── SSL_CTX_set_default_passwd_cb.pod │ │ │ ├── SSL_CTX_set_generate_session_id.pod │ │ │ ├── SSL_CTX_set_info_callback.pod │ │ │ ├── SSL_CTX_set_max_cert_list.pod │ │ │ ├── SSL_CTX_set_mode.pod │ │ │ ├── SSL_CTX_set_msg_callback.pod │ │ │ ├── SSL_CTX_set_options.pod │ │ │ ├── SSL_CTX_set_psk_client_callback.pod │ │ │ ├── SSL_CTX_set_quiet_shutdown.pod │ │ │ ├── SSL_CTX_set_read_ahead.pod │ │ │ ├── SSL_CTX_set_session_cache_mode.pod │ │ │ ├── SSL_CTX_set_session_id_context.pod │ │ │ ├── SSL_CTX_set_ssl_version.pod │ │ │ ├── SSL_CTX_set_timeout.pod │ │ │ ├── SSL_CTX_set_tlsext_ticket_key_cb.pod │ │ │ ├── SSL_CTX_set_tmp_dh_callback.pod │ │ │ ├── SSL_CTX_set_tmp_rsa_callback.pod │ │ │ ├── SSL_CTX_set_verify.pod │ │ │ ├── SSL_CTX_use_certificate.pod │ │ │ ├── SSL_CTX_use_psk_identity_hint.pod │ │ │ ├── SSL_CTX_use_serverinfo.pod │ │ │ ├── SSL_SESSION_free.pod │ │ │ ├── SSL_SESSION_get_ex_new_index.pod │ │ │ ├── SSL_SESSION_get_time.pod │ │ │ ├── SSL_accept.pod │ │ │ ├── SSL_alert_type_string.pod │ │ │ ├── SSL_clear.pod │ │ │ ├── SSL_connect.pod │ │ │ ├── SSL_do_handshake.pod │ │ │ ├── SSL_free.pod │ │ │ ├── SSL_get_SSL_CTX.pod │ │ │ ├── SSL_get_ciphers.pod │ │ │ ├── SSL_get_client_CA_list.pod │ │ │ ├── SSL_get_current_cipher.pod │ │ │ ├── SSL_get_default_timeout.pod │ │ │ ├── SSL_get_error.pod │ │ │ ├── SSL_get_ex_data_X509_STORE_CTX_idx.pod │ │ │ ├── SSL_get_ex_new_index.pod │ │ │ ├── SSL_get_fd.pod │ │ │ ├── SSL_get_peer_cert_chain.pod │ │ │ ├── SSL_get_peer_certificate.pod │ │ │ ├── SSL_get_psk_identity.pod │ │ │ ├── SSL_get_rbio.pod │ │ │ ├── SSL_get_session.pod │ │ │ ├── SSL_get_verify_result.pod │ │ │ ├── SSL_get_version.pod │ │ │ ├── SSL_library_init.pod │ │ │ ├── SSL_load_client_CA_file.pod │ │ │ ├── SSL_new.pod │ │ │ ├── SSL_pending.pod │ │ │ ├── SSL_read.pod │ │ │ ├── SSL_rstate_string.pod │ │ │ ├── SSL_session_reused.pod │ │ │ ├── SSL_set_bio.pod │ │ │ ├── SSL_set_connect_state.pod │ │ │ ├── SSL_set_fd.pod │ │ │ ├── SSL_set_session.pod │ │ │ ├── SSL_set_shutdown.pod │ │ │ ├── SSL_set_verify_result.pod │ │ │ ├── SSL_shutdown.pod │ │ │ ├── SSL_state_string.pod │ │ │ ├── SSL_want.pod │ │ │ ├── SSL_write.pod │ │ │ ├── d2i_SSL_SESSION.pod │ │ │ └── ssl.pod │ │ ├── ssleay.txt │ │ └── standards.txt │ ├── e_os.h │ ├── e_os2.h │ ├── engines │ │ ├── Makefile │ │ ├── Makefile.save │ │ ├── alpha.opt │ │ ├── axp.opt │ │ ├── capierr.bat │ │ ├── ccgost │ │ │ ├── Makefile │ │ │ ├── Makefile.save │ │ │ ├── README.gost │ │ │ ├── e_gost_err.c │ │ │ ├── e_gost_err.h │ │ │ ├── e_gost_err.proto │ │ │ ├── gost.ec │ │ │ ├── gost2001.c │ │ │ ├── gost2001_keyx.c │ │ │ ├── gost2001_keyx.h │ │ │ ├── gost89.c │ │ │ ├── gost89.h │ │ │ ├── gost94_keyx.c │ │ │ ├── gost_ameth.c │ │ │ ├── gost_asn1.c │ │ │ ├── gost_crypt.c │ │ │ ├── gost_ctl.c │ │ │ ├── gost_eng.c │ │ │ ├── gost_keywrap.c │ │ │ ├── gost_keywrap.h │ │ │ ├── gost_lcl.h │ │ │ ├── gost_md.c │ │ │ ├── gost_params.c │ │ │ ├── gost_params.h │ │ │ ├── gost_pmeth.c │ │ │ ├── gost_sign.c │ │ │ ├── gosthash.c │ │ │ ├── gosthash.h │ │ │ └── gostsum.c │ │ ├── e_4758cca.c │ │ ├── e_4758cca.ec │ │ ├── e_4758cca_err.c │ │ ├── e_4758cca_err.h │ │ ├── e_aep.c │ │ ├── e_aep.ec │ │ ├── e_aep_err.c │ │ ├── e_aep_err.h │ │ ├── e_atalla.c │ │ ├── e_atalla.ec │ │ ├── e_atalla_err.c │ │ ├── e_atalla_err.h │ │ ├── e_capi.c │ │ ├── e_capi.ec │ │ ├── e_capi_err.c │ │ ├── e_capi_err.h │ │ ├── e_chil.c │ │ ├── e_chil.ec │ │ ├── e_chil_err.c │ │ ├── e_chil_err.h │ │ ├── e_cswift.c │ │ ├── e_cswift.ec │ │ ├── e_cswift_err.c │ │ ├── e_cswift_err.h │ │ ├── e_gmp.c │ │ ├── e_gmp.ec │ │ ├── e_gmp_err.c │ │ ├── e_gmp_err.h │ │ ├── e_nuron.c │ │ ├── e_nuron.ec │ │ ├── e_nuron_err.c │ │ ├── e_nuron_err.h │ │ ├── e_padlock.c │ │ ├── e_padlock.ec │ │ ├── e_sureware.c │ │ ├── e_sureware.ec │ │ ├── e_sureware_err.c │ │ ├── e_sureware_err.h │ │ ├── e_ubsec.c │ │ ├── e_ubsec.ec │ │ ├── e_ubsec_err.c │ │ ├── e_ubsec_err.h │ │ ├── engine_vector.mar │ │ ├── ia64.opt │ │ ├── makeengines.com │ │ ├── vax.opt │ │ └── vendor_defns │ │ │ ├── aep.h │ │ │ ├── atalla.h │ │ │ ├── cswift.h │ │ │ ├── hw_4758_cca.h │ │ │ ├── hw_ubsec.h │ │ │ ├── hwcryptohook.h │ │ │ └── sureware.h │ ├── include │ │ └── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cmac.h │ │ │ ├── cms.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── srp.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ ├── install.com │ ├── makevms.com │ ├── ms │ │ ├── .rnd │ │ ├── 32all.bat │ │ ├── README │ │ ├── applink.c │ │ ├── bcb4.bat │ │ ├── certCA.srl │ │ ├── certCA.ss │ │ ├── certU.ss │ │ ├── cmp.pl │ │ ├── do_ms.bat │ │ ├── do_nasm.bat │ │ ├── do_nt.bat │ │ ├── do_win64a.bat │ │ ├── do_win64i.bat │ │ ├── keyCA.ss │ │ ├── keyU.ss │ │ ├── mingw32.bat │ │ ├── mw.bat │ │ ├── req2CA.ss │ │ ├── reqCA.ss │ │ ├── reqU.ss │ │ ├── speed32.bat │ │ ├── tenc.bat │ │ ├── tencce.bat │ │ ├── test.bat │ │ ├── testce.bat │ │ ├── testce2.bat │ │ ├── testenc.bat │ │ ├── testencce.bat │ │ ├── testpem.bat │ │ ├── testpemce.bat │ │ ├── testss.bat │ │ ├── testssce.bat │ │ ├── tlhelp32.h │ │ ├── tpem.bat │ │ ├── tpemce.bat │ │ ├── uplink-common.pl │ │ ├── uplink-ia64.pl │ │ ├── uplink-x86.pl │ │ ├── uplink-x86_64.pl │ │ ├── uplink.c │ │ ├── uplink.h │ │ ├── uplink.pl │ │ └── x86asm.bat │ ├── openssl.doxy │ ├── openssl.spec │ ├── os2 │ │ ├── OS2-EMX.cmd │ │ └── backwardify.pl │ ├── shlib │ │ ├── Makefile.hpux10-cc │ │ ├── README │ │ ├── hpux10-cc.sh │ │ ├── irix.sh │ │ ├── sco5-shared-gcc.sh │ │ ├── sco5-shared-installed │ │ ├── sco5-shared.sh │ │ ├── solaris-sc4.sh │ │ ├── solaris.sh │ │ ├── sun.sh │ │ ├── svr5-shared-gcc.sh │ │ ├── svr5-shared-installed │ │ ├── svr5-shared.sh │ │ ├── win32.bat │ │ └── win32dll.bat │ ├── ssl │ │ ├── Makefile │ │ ├── Makefile.save │ │ ├── bio_ssl.c │ │ ├── d1_both.c │ │ ├── d1_clnt.c │ │ ├── d1_lib.c │ │ ├── d1_meth.c │ │ ├── d1_pkt.c │ │ ├── d1_srtp.c │ │ ├── d1_srvr.c │ │ ├── dtls1.h │ │ ├── heartbeat_test.c │ │ ├── install-ssl.com │ │ ├── kssl.c │ │ ├── kssl.h │ │ ├── kssl_lcl.h │ │ ├── s23_clnt.c │ │ ├── s23_lib.c │ │ ├── s23_meth.c │ │ ├── s23_pkt.c │ │ ├── s23_srvr.c │ │ ├── s2_clnt.c │ │ ├── s2_enc.c │ │ ├── s2_lib.c │ │ ├── s2_meth.c │ │ ├── s2_pkt.c │ │ ├── s2_srvr.c │ │ ├── s3_both.c │ │ ├── s3_cbc.c │ │ ├── s3_clnt.c │ │ ├── s3_enc.c │ │ ├── s3_lib.c │ │ ├── s3_meth.c │ │ ├── s3_pkt.c │ │ ├── s3_srvr.c │ │ ├── srtp.h │ │ ├── ssl-lib.com │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── ssl_algs.c │ │ ├── ssl_asn1.c │ │ ├── ssl_cert.c │ │ ├── ssl_ciph.c │ │ ├── ssl_conf.c │ │ ├── ssl_err.c │ │ ├── ssl_err2.c │ │ ├── ssl_lib.c │ │ ├── ssl_locl.h │ │ ├── ssl_rsa.c │ │ ├── ssl_sess.c │ │ ├── ssl_stat.c │ │ ├── ssl_task.c │ │ ├── ssl_txt.c │ │ ├── ssl_utst.c │ │ ├── ssltest.c │ │ ├── t1_clnt.c │ │ ├── t1_enc.c │ │ ├── t1_ext.c │ │ ├── t1_lib.c │ │ ├── t1_meth.c │ │ ├── t1_reneg.c │ │ ├── t1_srvr.c │ │ ├── t1_trce.c │ │ ├── tls1.h │ │ └── tls_srp.c │ ├── test │ │ ├── CAss.cnf │ │ ├── CAssdh.cnf │ │ ├── CAssdsa.cnf │ │ ├── CAssrsa.cnf │ │ ├── CAtsa.cnf │ │ ├── Makefile │ │ ├── Makefile.save │ │ ├── P1ss.cnf │ │ ├── P2ss.cnf │ │ ├── Sssdsa.cnf │ │ ├── Sssrsa.cnf │ │ ├── Uss.cnf │ │ ├── VMSca-response.1 │ │ ├── VMSca-response.2 │ │ ├── asn1test.c │ │ ├── bctest │ │ ├── bctest.com │ │ ├── bftest.c │ │ ├── bntest.c │ │ ├── bntest.com │ │ ├── casttest.c │ │ ├── certs │ │ │ ├── bad.key │ │ │ ├── bad.pem │ │ │ ├── interCA.key │ │ │ ├── interCA.pem │ │ │ ├── leaf.key │ │ │ ├── leaf.pem │ │ │ ├── rootCA.key │ │ │ ├── rootCA.pem │ │ │ ├── roots.pem │ │ │ ├── subinterCA-ss.pem │ │ │ ├── subinterCA.key │ │ │ ├── subinterCA.pem │ │ │ └── untrusted.pem │ │ ├── clean_test.com │ │ ├── cms-examples.pl │ │ ├── cms-test.pl │ │ ├── constant_time_test.c │ │ ├── destest.c │ │ ├── dhtest.c │ │ ├── dsatest.c │ │ ├── dummytest.c │ │ ├── ecdhtest.c │ │ ├── ecdsatest.c │ │ ├── ectest.c │ │ ├── enginetest.c │ │ ├── evp_extra_test.c │ │ ├── evp_test.c │ │ ├── evptests.txt │ │ ├── exptest.c │ │ ├── heartbeat_test.c │ │ ├── hmactest.c │ │ ├── ideatest.c │ │ ├── igetest.c │ │ ├── jpaketest.c │ │ ├── maketests.com │ │ ├── md2test.c │ │ ├── md4test.c │ │ ├── md5test.c │ │ ├── mdc2test.c │ │ ├── methtest.c │ │ ├── ocsp-tests │ │ │ ├── D1.ors │ │ │ ├── D1_Cert_EE.pem │ │ │ ├── D1_Issuer_ICA.pem │ │ │ ├── D2.ors │ │ │ ├── D2_Cert_ICA.pem │ │ │ ├── D2_Issuer_Root.pem │ │ │ ├── D3.ors │ │ │ ├── D3_Cert_EE.pem │ │ │ ├── D3_Issuer_Root.pem │ │ │ ├── ISDOSC_D1.ors │ │ │ ├── ISDOSC_D2.ors │ │ │ ├── ISDOSC_D3.ors │ │ │ ├── ISIC_D1_Issuer_ICA.pem │ │ │ ├── ISIC_D2_Issuer_Root.pem │ │ │ ├── ISIC_D3_Issuer_Root.pem │ │ │ ├── ISIC_ND1_Issuer_ICA.pem │ │ │ ├── ISIC_ND2_Issuer_Root.pem │ │ │ ├── ISIC_ND3_Issuer_Root.pem │ │ │ ├── ISOP_D1.ors │ │ │ ├── ISOP_D2.ors │ │ │ ├── ISOP_D3.ors │ │ │ ├── ISOP_ND1.ors │ │ │ ├── ISOP_ND2.ors │ │ │ ├── ISOP_ND3.ors │ │ │ ├── ND1.ors │ │ │ ├── ND1_Cert_EE.pem │ │ │ ├── ND1_Issuer_ICA.pem │ │ │ ├── ND2.ors │ │ │ ├── ND2_Cert_ICA.pem │ │ │ ├── ND2_Issuer_Root.pem │ │ │ ├── ND3.ors │ │ │ ├── ND3_Cert_EE.pem │ │ │ ├── ND3_Issuer_Root.pem │ │ │ ├── WIKH_D1.ors │ │ │ ├── WIKH_D2.ors │ │ │ ├── WIKH_D3.ors │ │ │ ├── WIKH_ND1.ors │ │ │ ├── WIKH_ND2.ors │ │ │ ├── WIKH_ND3.ors │ │ │ ├── WINH_D1.ors │ │ │ ├── WINH_D2.ors │ │ │ ├── WINH_D3.ors │ │ │ ├── WINH_ND1.ors │ │ │ ├── WINH_ND2.ors │ │ │ ├── WINH_ND3.ors │ │ │ ├── WKDOSC_D1.ors │ │ │ ├── WKDOSC_D2.ors │ │ │ ├── WKDOSC_D3.ors │ │ │ ├── WKIC_D1_Issuer_ICA.pem │ │ │ ├── WKIC_D2_Issuer_Root.pem │ │ │ ├── WKIC_D3_Issuer_Root.pem │ │ │ ├── WKIC_ND1_Issuer_ICA.pem │ │ │ ├── WKIC_ND2_Issuer_Root.pem │ │ │ ├── WKIC_ND3_Issuer_Root.pem │ │ │ ├── WRID_D1.ors │ │ │ ├── WRID_D2.ors │ │ │ ├── WRID_D3.ors │ │ │ ├── WRID_ND1.ors │ │ │ ├── WRID_ND2.ors │ │ │ ├── WRID_ND3.ors │ │ │ ├── WSNIC_D1_Issuer_ICA.pem │ │ │ ├── WSNIC_D2_Issuer_Root.pem │ │ │ ├── WSNIC_D3_Issuer_Root.pem │ │ │ ├── WSNIC_ND1_Issuer_ICA.pem │ │ │ ├── WSNIC_ND2_Issuer_Root.pem │ │ │ └── WSNIC_ND3_Issuer_Root.pem │ │ ├── pkcs7-1.pem │ │ ├── pkcs7.pem │ │ ├── pkits-test.pl │ │ ├── r160test.c │ │ ├── randtest.c │ │ ├── rc2test.c │ │ ├── rc4test.c │ │ ├── rc5test.c │ │ ├── rmdtest.c │ │ ├── rsa_test.c │ │ ├── serverinfo.pem │ │ ├── sha1test.c │ │ ├── sha256t.c │ │ ├── sha512t.c │ │ ├── shatest.c │ │ ├── smcont.txt │ │ ├── smime-certs │ │ │ ├── ca.cnf │ │ │ ├── mksmime-certs.sh │ │ │ ├── smdh.pem │ │ │ ├── smdsa1.pem │ │ │ ├── smdsa2.pem │ │ │ ├── smdsa3.pem │ │ │ ├── smdsap.pem │ │ │ ├── smec1.pem │ │ │ ├── smec2.pem │ │ │ ├── smroot.pem │ │ │ ├── smrsa1.pem │ │ │ ├── smrsa2.pem │ │ │ └── smrsa3.pem │ │ ├── srptest.c │ │ ├── ssltest.c │ │ ├── tcrl │ │ ├── tcrl.com │ │ ├── test.cnf │ │ ├── test_padlock │ │ ├── testca │ │ ├── testca.com │ │ ├── testcrl.pem │ │ ├── testenc │ │ ├── testenc.com │ │ ├── testfipsssl │ │ ├── testgen │ │ ├── testgen.com │ │ ├── testp7.pem │ │ ├── testreq2.pem │ │ ├── testrsa.pem │ │ ├── tests.com │ │ ├── testsid.pem │ │ ├── testss │ │ ├── testss.com │ │ ├── testssl │ │ ├── testssl.com │ │ ├── testsslproxy │ │ ├── testtsa │ │ ├── testtsa.com │ │ ├── testutil.h │ │ ├── testx509.pem │ │ ├── times │ │ ├── tocsp │ │ ├── tocsp.com │ │ ├── tpkcs7 │ │ ├── tpkcs7.com │ │ ├── tpkcs7d │ │ ├── tpkcs7d.com │ │ ├── treq │ │ ├── treq.com │ │ ├── trsa │ │ ├── trsa.com │ │ ├── tsid │ │ ├── tsid.com │ │ ├── tverify.com │ │ ├── tx509 │ │ ├── tx509.com │ │ ├── v3-cert1.pem │ │ ├── v3-cert2.pem │ │ ├── v3nametest.c │ │ ├── verify_extra_test.c │ │ └── wp_test.c │ ├── times │ │ ├── 090 │ │ │ └── 586-100.nt │ │ ├── 091 │ │ │ ├── 486-50.nt │ │ │ ├── 586-100.lnx │ │ │ ├── 68000.bsd │ │ │ ├── 686-200.lnx │ │ │ ├── alpha064.osf │ │ │ ├── alpha164.lnx │ │ │ ├── alpha164.osf │ │ │ ├── mips-rel.pl │ │ │ ├── r10000.irx │ │ │ ├── r3000.ult │ │ │ └── r4400.irx │ │ ├── 100.lnx │ │ ├── 100.nt │ │ ├── 200.lnx │ │ ├── 486-66.dos │ │ ├── 486-66.nt │ │ ├── 486-66.w31 │ │ ├── 5.lnx │ │ ├── 586-085i.nt │ │ ├── 586-100.LN3 │ │ ├── 586-100.NT2 │ │ ├── 586-100.dos │ │ ├── 586-100.ln4 │ │ ├── 586-100.lnx │ │ ├── 586-100.nt │ │ ├── 586-100.ntx │ │ ├── 586-100.w31 │ │ ├── 586-1002.lnx │ │ ├── 586p-100.lnx │ │ ├── 686-200.bsd │ │ ├── 686-200.lnx │ │ ├── 686-200.nt │ │ ├── L1 │ │ ├── R10000.t │ │ ├── R4400.t │ │ ├── aix.t │ │ ├── aixold.t │ │ ├── alpha.t │ │ ├── alpha400.t │ │ ├── cyrix100.lnx │ │ ├── dgux-x86.t │ │ ├── dgux.t │ │ ├── hpux-acc.t │ │ ├── hpux-kr.t │ │ ├── hpux.t │ │ ├── p2.w95 │ │ ├── pent2.t │ │ ├── readme │ │ ├── s586-100.lnx │ │ ├── s586-100.nt │ │ ├── sgi.t │ │ ├── sparc.t │ │ ├── sparc2 │ │ ├── sparcLX.t │ │ ├── usparc.t │ │ └── x86 │ │ │ ├── bfs.cpp │ │ │ ├── casts.cpp │ │ │ ├── des3s.cpp │ │ │ ├── dess.cpp │ │ │ ├── md4s.cpp │ │ │ ├── md5s.cpp │ │ │ ├── rc4s.cpp │ │ │ └── sha1s.cpp │ ├── tools │ │ ├── Makefile │ │ ├── c89.sh │ │ ├── c_hash │ │ ├── c_info │ │ ├── c_issuer │ │ ├── c_name │ │ ├── c_rehash │ │ └── c_rehash.in │ └── util │ │ ├── FreeBSD.sh │ │ ├── add_cr.pl │ │ ├── bat.sh │ │ ├── ck_errf.pl │ │ ├── clean-depend.pl │ │ ├── copy-if-different.pl │ │ ├── copy.pl │ │ ├── cygwin.sh │ │ ├── deleof.pl │ │ ├── deltree.com │ │ ├── dirname.pl │ │ ├── do_ms.sh │ │ ├── domd │ │ ├── err-ins.pl │ │ ├── extract-names.pl │ │ ├── extract-section.pl │ │ ├── files.pl │ │ ├── fixNT.sh │ │ ├── indent.pro │ │ ├── install.sh │ │ ├── libeay.num │ │ ├── mk1mf.pl │ │ ├── mkbuildinf.pl │ │ ├── mkcerts.sh │ │ ├── mkdef.pl │ │ ├── mkdir-p.pl │ │ ├── mkerr.pl │ │ ├── mkfiles.pl │ │ ├── mklink.pl │ │ ├── mkrc.pl │ │ ├── mkstack.pl │ │ ├── openssl-format-source │ │ ├── opensslwrap.sh │ │ ├── perlpath.pl │ │ ├── pl │ │ ├── BC-32.pl │ │ ├── Mingw32.pl │ │ ├── OS2-EMX.pl │ │ ├── VC-32.pl │ │ ├── linux.pl │ │ ├── netware.pl │ │ ├── ultrix.pl │ │ └── unix.pl │ │ ├── pod2man.pl │ │ ├── pod2mantest │ │ ├── pod2mantest.pod │ │ ├── point.sh │ │ ├── selftest.pl │ │ ├── shlib_wrap.sh │ │ ├── sp-diff.pl │ │ ├── speed.sh │ │ ├── src-dep.pl │ │ ├── ssleay.num │ │ ├── su-filter.pl │ │ ├── tab_num.pl │ │ └── x86asm.sh ├── polarssl │ ├── aes.c │ ├── aes_cmac128.c │ ├── aesni.c │ ├── asn1parse.c │ ├── bignum.c │ ├── ctr_drbg.c │ ├── entropy.c │ ├── entropy_poll.c │ ├── md.c │ ├── md5.c │ ├── md_wrap.c │ ├── net.c │ ├── oid.c │ ├── ripemd160.c │ ├── rsa.c │ ├── sha1.c │ ├── sha256.c │ ├── sha512.c │ └── timing.c ├── sgx-attest.c ├── sgx-basics.c ├── sgx-entry.S ├── sgx-intra-attest.c └── sgx-remote-attest.c ├── opensgx ├── qemu ├── .exrc ├── .gitignore ├── .mailmap ├── .travis.yml ├── CODING_STYLE ├── COPYING ├── COPYING.LIB ├── Changelog ├── HACKING ├── LICENSE ├── MAINTAINERS ├── Makefile ├── Makefile.objs ├── Makefile.target ├── README ├── VERSION ├── aio-posix.c ├── aio-win32.c ├── arch_init.c ├── async.c ├── audio │ ├── Makefile.objs │ ├── alsaaudio.c │ ├── audio.c │ ├── audio.h │ ├── audio_int.h │ ├── audio_pt_int.c │ ├── audio_pt_int.h │ ├── audio_template.h │ ├── audio_win_int.c │ ├── audio_win_int.h │ ├── coreaudio.c │ ├── dsound_template.h │ ├── dsoundaudio.c │ ├── esdaudio.c │ ├── fmodaudio.c │ ├── mixeng.c │ ├── mixeng.h │ ├── mixeng_template.h │ ├── noaudio.c │ ├── ossaudio.c │ ├── paaudio.c │ ├── rate_template.h │ ├── sdlaudio.c │ ├── spiceaudio.c │ ├── wavaudio.c │ ├── wavcapture.c │ └── winwaveaudio.c ├── backends │ ├── Makefile.objs │ ├── baum.c │ ├── hostmem-file.c │ ├── hostmem-ram.c │ ├── hostmem.c │ ├── msmouse.c │ ├── rng-egd.c │ ├── rng-random.c │ ├── rng.c │ └── tpm.c ├── balloon.c ├── block-migration.c ├── block.c ├── block │ ├── Makefile.objs │ ├── backup.c │ ├── blkdebug.c │ ├── blkverify.c │ ├── bochs.c │ ├── cloop.c │ ├── commit.c │ ├── cow.c │ ├── curl.c │ ├── dmg.c │ ├── gluster.c │ ├── iscsi.c │ ├── linux-aio.c │ ├── mirror.c │ ├── nbd-client.c │ ├── nbd-client.h │ ├── nbd.c │ ├── nfs.c │ ├── parallels.c │ ├── qapi.c │ ├── qcow.c │ ├── qcow2-cache.c │ ├── qcow2-cluster.c │ ├── qcow2-refcount.c │ ├── qcow2-snapshot.c │ ├── qcow2.c │ ├── qcow2.h │ ├── qed-check.c │ ├── qed-cluster.c │ ├── qed-gencb.c │ ├── qed-l2-cache.c │ ├── qed-table.c │ ├── qed.c │ ├── qed.h │ ├── quorum.c │ ├── raw-aio.h │ ├── raw-posix.c │ ├── raw-win32.c │ ├── raw_bsd.c │ ├── rbd.c │ ├── sheepdog.c │ ├── snapshot.c │ ├── ssh.c │ ├── stream.c │ ├── vdi.c │ ├── vhdx-endian.c │ ├── vhdx-log.c │ ├── vhdx.c │ ├── vhdx.h │ ├── vmdk.c │ ├── vpc.c │ ├── vvfat.c │ └── win32-aio.c ├── blockdev-nbd.c ├── blockdev.c ├── blockjob.c ├── bsd-user │ ├── Makefile.objs │ ├── bsd-mman.h │ ├── bsdload.c │ ├── elfload.c │ ├── errno_defs.h │ ├── freebsd │ │ ├── strace.list │ │ └── syscall_nr.h │ ├── i386 │ │ ├── syscall.h │ │ └── target_signal.h │ ├── main.c │ ├── mmap.c │ ├── netbsd │ │ ├── strace.list │ │ └── syscall_nr.h │ ├── openbsd │ │ ├── strace.list │ │ └── syscall_nr.h │ ├── qemu.h │ ├── signal.c │ ├── sparc │ │ ├── syscall.h │ │ └── target_signal.h │ ├── sparc64 │ │ ├── syscall.h │ │ └── target_signal.h │ ├── strace.c │ ├── syscall.c │ ├── syscall_defs.h │ ├── uaccess.c │ └── x86_64 │ │ ├── syscall.h │ │ └── target_signal.h ├── bt-host.c ├── bt-vhci.c ├── configure ├── configure-arch ├── configure-arch-I386 ├── configure-arch_v1 ├── coroutine-gthread.c ├── coroutine-sigaltstack.c ├── coroutine-ucontext.c ├── coroutine-win32.c ├── cpu-exec.c ├── cpus.c ├── cputlb.c ├── default-configs │ ├── aarch64-linux-user.mak │ ├── aarch64-softmmu.mak │ ├── alpha-linux-user.mak │ ├── alpha-softmmu.mak │ ├── arm-linux-user.mak │ ├── arm-softmmu.mak │ ├── armeb-linux-user.mak │ ├── cris-linux-user.mak │ ├── cris-softmmu.mak │ ├── i386-bsd-user.mak │ ├── i386-linux-user.mak │ ├── i386-softmmu.mak │ ├── lm32-softmmu.mak │ ├── m68k-linux-user.mak │ ├── m68k-softmmu.mak │ ├── microblaze-linux-user.mak │ ├── microblaze-softmmu.mak │ ├── microblazeel-linux-user.mak │ ├── microblazeel-softmmu.mak │ ├── mips-linux-user.mak │ ├── mips-softmmu.mak │ ├── mips64-linux-user.mak │ ├── mips64-softmmu.mak │ ├── mips64el-linux-user.mak │ ├── mips64el-softmmu.mak │ ├── mipsel-linux-user.mak │ ├── mipsel-softmmu.mak │ ├── mipsn32-linux-user.mak │ ├── mipsn32el-linux-user.mak │ ├── moxie-softmmu.mak │ ├── or32-linux-user.mak │ ├── or32-softmmu.mak │ ├── pci.mak │ ├── ppc-linux-user.mak │ ├── ppc-softmmu.mak │ ├── ppc64-linux-user.mak │ ├── ppc64-softmmu.mak │ ├── ppc64abi32-linux-user.mak │ ├── 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 │ ├── unicore32-linux-user.mak │ ├── unicore32-softmmu.mak │ ├── usb.mak │ ├── x86_64-bsd-user.mak │ ├── x86_64-linux-user.mak │ ├── x86_64-softmmu.mak │ ├── xtensa-softmmu.mak │ └── xtensaeb-softmmu.mak ├── device-hotplug.c ├── device_tree.c ├── disas.c ├── disas │ ├── Makefile.objs │ ├── alpha.c │ ├── arm-a64.cc │ ├── arm.c │ ├── cris.c │ ├── hppa.c │ ├── i386.c │ ├── ia64.c │ ├── libvixl │ │ ├── LICENCE │ │ ├── Makefile.objs │ │ ├── README │ │ ├── a64 │ │ │ ├── assembler-a64.h │ │ │ ├── constants-a64.h │ │ │ ├── cpu-a64.h │ │ │ ├── decoder-a64.cc │ │ │ ├── decoder-a64.h │ │ │ ├── disasm-a64.cc │ │ │ ├── disasm-a64.h │ │ │ ├── instructions-a64.cc │ │ │ └── instructions-a64.h │ │ ├── globals.h │ │ ├── platform.h │ │ ├── utils.cc │ │ └── utils.h │ ├── lm32.c │ ├── m68k.c │ ├── microblaze.c │ ├── mips.c │ ├── moxie.c │ ├── ppc.c │ ├── s390.c │ ├── sh4.c │ ├── sparc.c │ └── tci.c ├── dma-helpers.c ├── docs │ ├── aio_notify.promela │ ├── atomics.txt │ ├── blkverify.txt │ ├── bootindex.txt │ ├── ccid.txt │ ├── ich9-ehci-uhci.cfg │ ├── libcacard.txt │ ├── live-block-ops.txt │ ├── memory.txt │ ├── migration.txt │ ├── multiseat.txt │ ├── q35-chipset.cfg │ ├── qapi-code-gen.txt │ ├── qdev-device-use.txt │ ├── qemupciserial.inf │ ├── qmp │ │ ├── README │ │ ├── qmp-events.txt │ │ └── qmp-spec.txt │ ├── rdma.txt │ ├── specs │ │ ├── acpi_cpu_hotplug.txt │ │ ├── acpi_mem_hotplug.txt │ │ ├── acpi_pci_hotplug.txt │ │ ├── ivshmem_device_spec.txt │ │ ├── pci-ids.txt │ │ ├── pci-serial.txt │ │ ├── pci-testdev.txt │ │ ├── ppc-spapr-hcalls.txt │ │ ├── pvpanic.txt │ │ ├── qcow2.txt │ │ ├── qed_spec.txt │ │ ├── standard-vga.txt │ │ ├── vhost-user.txt │ │ └── vmw_pvscsi-spec.txt │ ├── spice-port-fqdn.txt │ ├── tracing.txt │ ├── usb-storage.txt │ ├── usb2.txt │ ├── virtio-balloon-stats.txt │ ├── vnc-ledstate-Pseudo-encoding.txt │ ├── writing-qmp-commands.txt │ ├── xbzrle.txt │ └── xen-save-devices-state.txt ├── dtc │ ├── convert-dtsv0-lexer.lex.c │ ├── dtc-lexer.lex.c │ ├── dtc-parser.tab.c │ ├── dtc-parser.tab.h │ └── version_gen.h ├── dump.c ├── dumpop.txt ├── exec.c ├── fpu │ ├── softfloat-macros.h │ ├── softfloat-specialize.h │ └── softfloat.c ├── fsdev │ ├── Makefile.objs │ ├── file-op-9p.h │ ├── qemu-fsdev-dummy.c │ ├── qemu-fsdev-opts.c │ ├── qemu-fsdev.c │ ├── qemu-fsdev.h │ ├── virtfs-proxy-helper.c │ ├── virtfs-proxy-helper.texi │ ├── virtio-9p-marshal.c │ └── virtio-9p-marshal.h ├── gdb-xml │ ├── aarch64-core.xml │ ├── aarch64-fpu.xml │ ├── arm-core.xml │ ├── arm-neon.xml │ ├── arm-vfp.xml │ ├── arm-vfp3.xml │ ├── cf-core.xml │ ├── cf-fp.xml │ ├── power-altivec.xml │ ├── power-core.xml │ ├── power-fpu.xml │ ├── power-spe.xml │ └── power64-core.xml ├── gdbstub.c ├── hmp-commands.hx ├── hmp.c ├── hmp.h ├── hw │ ├── 9pfs │ │ ├── Makefile.objs │ │ ├── codir.c │ │ ├── cofile.c │ │ ├── cofs.c │ │ ├── coxattr.c │ │ ├── virtio-9p-coth.c │ │ ├── virtio-9p-coth.h │ │ ├── virtio-9p-device.c │ │ ├── virtio-9p-handle.c │ │ ├── virtio-9p-local.c │ │ ├── virtio-9p-posix-acl.c │ │ ├── virtio-9p-proxy.c │ │ ├── virtio-9p-proxy.h │ │ ├── virtio-9p-synth.c │ │ ├── virtio-9p-synth.h │ │ ├── virtio-9p-xattr-user.c │ │ ├── virtio-9p-xattr.c │ │ ├── virtio-9p-xattr.h │ │ ├── virtio-9p.c │ │ └── virtio-9p.h │ ├── Makefile.objs │ ├── acpi │ │ ├── Makefile.objs │ │ ├── acpi_interface.c │ │ ├── core.c │ │ ├── cpu_hotplug.c │ │ ├── ich9.c │ │ ├── memory_hotplug.c │ │ ├── pcihp.c │ │ └── piix4.c │ ├── alpha │ │ ├── Makefile.objs │ │ ├── alpha_sys.h │ │ ├── dp264.c │ │ ├── pci.c │ │ └── typhoon.c │ ├── arm │ │ ├── Makefile.objs │ │ ├── allwinner-a10.c │ │ ├── armv7m.c │ │ ├── boot.c │ │ ├── collie.c │ │ ├── cubieboard.c │ │ ├── digic.c │ │ ├── digic_boards.c │ │ ├── exynos4210.c │ │ ├── exynos4_boards.c │ │ ├── gumstix.c │ │ ├── highbank.c │ │ ├── integratorcp.c │ │ ├── kzm.c │ │ ├── mainstone.c │ │ ├── musicpal.c │ │ ├── nseries.c │ │ ├── omap1.c │ │ ├── omap2.c │ │ ├── omap_sx1.c │ │ ├── palm.c │ │ ├── pxa2xx.c │ │ ├── pxa2xx_gpio.c │ │ ├── pxa2xx_pic.c │ │ ├── realview.c │ │ ├── spitz.c │ │ ├── stellaris.c │ │ ├── strongarm.c │ │ ├── strongarm.h │ │ ├── tosa.c │ │ ├── versatilepb.c │ │ ├── vexpress.c │ │ ├── virt.c │ │ ├── xilinx_zynq.c │ │ └── z2.c │ ├── audio │ │ ├── Makefile.objs │ │ ├── ac97.c │ │ ├── adlib.c │ │ ├── cs4231.c │ │ ├── cs4231a.c │ │ ├── es1370.c │ │ ├── fmopl.c │ │ ├── fmopl.h │ │ ├── gus.c │ │ ├── gusemu.h │ │ ├── gusemu_hal.c │ │ ├── gusemu_mixer.c │ │ ├── gustate.h │ │ ├── hda-codec-common.h │ │ ├── hda-codec.c │ │ ├── intel-hda-defs.h │ │ ├── intel-hda.c │ │ ├── intel-hda.h │ │ ├── lm4549.c │ │ ├── lm4549.h │ │ ├── marvell_88w8618.c │ │ ├── milkymist-ac97.c │ │ ├── pcspk.c │ │ ├── pl041.c │ │ ├── pl041.h │ │ ├── pl041.hx │ │ ├── sb16.c │ │ └── wm8750.c │ ├── block │ │ ├── Makefile.objs │ │ ├── block.c │ │ ├── cdrom.c │ │ ├── dataplane │ │ │ ├── Makefile.objs │ │ │ ├── virtio-blk.c │ │ │ └── virtio-blk.h │ │ ├── ecc.c │ │ ├── fdc.c │ │ ├── hd-geometry.c │ │ ├── m25p80.c │ │ ├── nand.c │ │ ├── nvme.c │ │ ├── nvme.h │ │ ├── onenand.c │ │ ├── pflash_cfi01.c │ │ ├── pflash_cfi02.c │ │ ├── tc58128.c │ │ ├── virtio-blk.c │ │ ├── xen_blkif.h │ │ └── xen_disk.c │ ├── bt │ │ ├── Makefile.objs │ │ ├── core.c │ │ ├── hci-csr.c │ │ ├── hci.c │ │ ├── hid.c │ │ ├── l2cap.c │ │ └── sdp.c │ ├── char │ │ ├── Makefile.objs │ │ ├── cadence_uart.c │ │ ├── debugcon.c │ │ ├── digic-uart.c │ │ ├── escc.c │ │ ├── etraxfs_ser.c │ │ ├── exynos4210_uart.c │ │ ├── grlib_apbuart.c │ │ ├── imx_serial.c │ │ ├── ipoctal232.c │ │ ├── lm32_juart.c │ │ ├── lm32_uart.c │ │ ├── mcf_uart.c │ │ ├── milkymist-uart.c │ │ ├── omap_uart.c │ │ ├── parallel.c │ │ ├── pl011.c │ │ ├── sclpconsole-lm.c │ │ ├── sclpconsole.c │ │ ├── serial-isa.c │ │ ├── serial-pci.c │ │ ├── serial.c │ │ ├── sh_serial.c │ │ ├── spapr_vty.c │ │ ├── virtio-console.c │ │ ├── virtio-serial-bus.c │ │ ├── xen_console.c │ │ └── xilinx_uartlite.c │ ├── core │ │ ├── Makefile.objs │ │ ├── empty_slot.c │ │ ├── fw-path-provider.c │ │ ├── hotplug.c │ │ ├── irq.c │ │ ├── loader.c │ │ ├── machine.c │ │ ├── null-machine.c │ │ ├── ptimer.c │ │ ├── qdev-properties-system.c │ │ ├── qdev-properties.c │ │ ├── qdev.c │ │ ├── stream.c │ │ ├── sysbus.c │ │ └── uboot_image.h │ ├── cpu │ │ ├── Makefile.objs │ │ ├── a15mpcore.c │ │ ├── a9mpcore.c │ │ ├── arm11mpcore.c │ │ ├── icc_bus.c │ │ └── realview_mpcore.c │ ├── cris │ │ ├── Makefile.objs │ │ ├── axis_dev88.c │ │ ├── boot.c │ │ └── boot.h │ ├── display │ │ ├── Makefile.objs │ │ ├── ads7846.c │ │ ├── blizzard.c │ │ ├── blizzard_template.h │ │ ├── cg3.c │ │ ├── cirrus_vga.c │ │ ├── cirrus_vga_rop.h │ │ ├── cirrus_vga_rop2.h │ │ ├── cirrus_vga_template.h │ │ ├── exynos4210_fimd.c │ │ ├── framebuffer.c │ │ ├── framebuffer.h │ │ ├── g364fb.c │ │ ├── jazz_led.c │ │ ├── milkymist-tmu2.c │ │ ├── milkymist-vgafb.c │ │ ├── milkymist-vgafb_template.h │ │ ├── omap_dss.c │ │ ├── omap_lcd_template.h │ │ ├── omap_lcdc.c │ │ ├── pl110.c │ │ ├── pl110_template.h │ │ ├── pxa2xx_lcd.c │ │ ├── pxa2xx_template.h │ │ ├── qxl-logger.c │ │ ├── qxl-render.c │ │ ├── qxl.c │ │ ├── qxl.h │ │ ├── sm501.c │ │ ├── sm501_template.h │ │ ├── ssd0303.c │ │ ├── ssd0323.c │ │ ├── tc6393xb.c │ │ ├── tc6393xb_template.h │ │ ├── tcx.c │ │ ├── vga-isa-mm.c │ │ ├── vga-isa.c │ │ ├── vga-pci.c │ │ ├── vga.c │ │ ├── vga.h │ │ ├── vga_int.h │ │ ├── vga_template.h │ │ ├── vmware_vga.c │ │ └── xenfb.c │ ├── dma │ │ ├── Makefile.objs │ │ ├── etraxfs_dma.c │ │ ├── i82374.c │ │ ├── i8257.c │ │ ├── omap_dma.c │ │ ├── pl080.c │ │ ├── pl330.c │ │ ├── puv3_dma.c │ │ ├── pxa2xx_dma.c │ │ ├── rc4030.c │ │ ├── soc_dma.c │ │ ├── sparc32_dma.c │ │ ├── sun4m_iommu.c │ │ └── xilinx_axidma.c │ ├── gpio │ │ ├── Makefile.objs │ │ ├── max7310.c │ │ ├── omap_gpio.c │ │ ├── pl061.c │ │ ├── puv3_gpio.c │ │ └── zaurus.c │ ├── i2c │ │ ├── Makefile.objs │ │ ├── bitbang_i2c.c │ │ ├── bitbang_i2c.h │ │ ├── core.c │ │ ├── exynos4210_i2c.c │ │ ├── omap_i2c.c │ │ ├── pm_smbus.c │ │ ├── smbus.c │ │ ├── smbus_eeprom.c │ │ ├── smbus_ich9.c │ │ └── versatile_i2c.c │ ├── i386 │ │ ├── Makefile.objs │ │ ├── acpi-build.c │ │ ├── acpi-build.h │ │ ├── acpi-defs.h │ │ ├── acpi-dsdt-cpu-hotplug.dsl │ │ ├── acpi-dsdt-dbug.dsl │ │ ├── acpi-dsdt-hpet.dsl │ │ ├── acpi-dsdt-isa.dsl │ │ ├── acpi-dsdt-pci-crs.dsl │ │ ├── acpi-dsdt.dsl │ │ ├── acpi-dsdt.hex.generated │ │ ├── bios-linker-loader.c │ │ ├── bios-linker-loader.h │ │ ├── kvm │ │ │ ├── Makefile.objs │ │ │ ├── apic.c │ │ │ ├── clock.c │ │ │ ├── i8254.c │ │ │ ├── i8259.c │ │ │ ├── ioapic.c │ │ │ └── pci-assign.c │ │ ├── kvmvapic.c │ │ ├── multiboot.c │ │ ├── multiboot.h │ │ ├── pc.c │ │ ├── pc_piix.c │ │ ├── pc_q35.c │ │ ├── pc_sysfw.c │ │ ├── q35-acpi-dsdt.dsl │ │ ├── q35-acpi-dsdt.hex.generated │ │ ├── smbios.c │ │ ├── ssdt-mem.dsl │ │ ├── ssdt-mem.hex.generated │ │ ├── ssdt-misc.dsl │ │ ├── ssdt-misc.hex.generated │ │ ├── ssdt-pcihp.dsl │ │ ├── ssdt-pcihp.hex.generated │ │ ├── ssdt-proc.dsl │ │ ├── ssdt-proc.hex.generated │ │ └── xen │ │ │ ├── Makefile.objs │ │ │ ├── xen_apic.c │ │ │ ├── xen_platform.c │ │ │ └── xen_pvdevice.c │ ├── ide │ │ ├── Makefile.objs │ │ ├── ahci.c │ │ ├── ahci.h │ │ ├── atapi.c │ │ ├── cmd646.c │ │ ├── core.c │ │ ├── ich.c │ │ ├── internal.h │ │ ├── isa.c │ │ ├── macio.c │ │ ├── microdrive.c │ │ ├── mmio.c │ │ ├── pci.c │ │ ├── pci.h │ │ ├── piix.c │ │ ├── qdev.c │ │ └── via.c │ ├── input │ │ ├── Makefile.objs │ │ ├── adb.c │ │ ├── hid.c │ │ ├── lm832x.c │ │ ├── milkymist-softusb.c │ │ ├── pckbd.c │ │ ├── pl050.c │ │ ├── ps2.c │ │ ├── pxa2xx_keypad.c │ │ ├── stellaris_input.c │ │ ├── tsc2005.c │ │ ├── tsc210x.c │ │ └── vmmouse.c │ ├── intc │ │ ├── Makefile.objs │ │ ├── allwinner-a10-pic.c │ │ ├── apic.c │ │ ├── apic_common.c │ │ ├── arm_gic.c │ │ ├── arm_gic_common.c │ │ ├── arm_gic_kvm.c │ │ ├── armv7m_nvic.c │ │ ├── etraxfs_pic.c │ │ ├── exynos4210_combiner.c │ │ ├── exynos4210_gic.c │ │ ├── gic_internal.h │ │ ├── grlib_irqmp.c │ │ ├── heathrow_pic.c │ │ ├── i8259.c │ │ ├── i8259_common.c │ │ ├── imx_avic.c │ │ ├── ioapic.c │ │ ├── ioapic_common.c │ │ ├── lm32_pic.c │ │ ├── omap_intc.c │ │ ├── openpic.c │ │ ├── openpic_kvm.c │ │ ├── pl190.c │ │ ├── puv3_intc.c │ │ ├── realview_gic.c │ │ ├── s390_flic.c │ │ ├── s390_flic_kvm.c │ │ ├── sh_intc.c │ │ ├── slavio_intctl.c │ │ ├── xics.c │ │ ├── xics_kvm.c │ │ └── xilinx_intc.c │ ├── ipack │ │ ├── Makefile.objs │ │ ├── ipack.c │ │ └── tpci200.c │ ├── isa │ │ ├── Makefile.objs │ │ ├── apm.c │ │ ├── i82378.c │ │ ├── isa-bus.c │ │ ├── lpc_ich9.c │ │ ├── pc87312.c │ │ ├── piix4.c │ │ └── vt82c686.c │ ├── lm32 │ │ ├── Makefile.objs │ │ ├── lm32.h │ │ ├── lm32_boards.c │ │ ├── lm32_hwsetup.h │ │ ├── milkymist-hw.h │ │ └── milkymist.c │ ├── m68k │ │ ├── Makefile.objs │ │ ├── an5206.c │ │ ├── dummy_m68k.c │ │ ├── mcf5206.c │ │ ├── mcf5208.c │ │ └── mcf_intc.c │ ├── mem │ │ ├── Makefile.objs │ │ └── pc-dimm.c │ ├── microblaze │ │ ├── Makefile.objs │ │ ├── boot.c │ │ ├── boot.h │ │ ├── petalogix_ml605_mmu.c │ │ └── petalogix_s3adsp1800_mmu.c │ ├── mips │ │ ├── Makefile.objs │ │ ├── addr.c │ │ ├── cputimer.c │ │ ├── gt64xxx_pci.c │ │ ├── mips_fulong2e.c │ │ ├── mips_int.c │ │ ├── mips_jazz.c │ │ ├── mips_malta.c │ │ ├── mips_mipssim.c │ │ └── mips_r4k.c │ ├── misc │ │ ├── Makefile.objs │ │ ├── a9scu.c │ │ ├── applesmc.c │ │ ├── arm11scu.c │ │ ├── arm_integrator_debug.c │ │ ├── arm_l2x0.c │ │ ├── arm_sysctl.c │ │ ├── cbus.c │ │ ├── debugexit.c │ │ ├── eccmemctl.c │ │ ├── exynos4210_pmu.c │ │ ├── imx_ccm.c │ │ ├── ivshmem.c │ │ ├── macio │ │ │ ├── Makefile.objs │ │ │ ├── cuda.c │ │ │ ├── mac_dbdma.c │ │ │ └── macio.c │ │ ├── max111x.c │ │ ├── milkymist-hpdmc.c │ │ ├── milkymist-pfpu.c │ │ ├── mst_fpga.c │ │ ├── omap_clk.c │ │ ├── omap_gpmc.c │ │ ├── omap_l4.c │ │ ├── omap_sdrc.c │ │ ├── omap_tap.c │ │ ├── pc-testdev.c │ │ ├── pci-testdev.c │ │ ├── puv3_pm.c │ │ ├── pvpanic.c │ │ ├── sga.c │ │ ├── slavio_misc.c │ │ ├── tmp105.c │ │ ├── tmp105.h │ │ ├── vfio.c │ │ ├── vmport.c │ │ └── zynq_slcr.c │ ├── moxie │ │ ├── Makefile.objs │ │ └── moxiesim.c │ ├── net │ │ ├── Makefile.objs │ │ ├── allwinner_emac.c │ │ ├── cadence_gem.c │ │ ├── dp8393x.c │ │ ├── e1000.c │ │ ├── e1000_regs.h │ │ ├── eepro100.c │ │ ├── etraxfs_eth.c │ │ ├── fsl_etsec │ │ │ ├── etsec.c │ │ │ ├── etsec.h │ │ │ ├── miim.c │ │ │ ├── registers.c │ │ │ ├── registers.h │ │ │ └── rings.c │ │ ├── lan9118.c │ │ ├── lance.c │ │ ├── mcf_fec.c │ │ ├── milkymist-minimac2.c │ │ ├── mipsnet.c │ │ ├── ne2000-isa.c │ │ ├── ne2000.c │ │ ├── ne2000.h │ │ ├── opencores_eth.c │ │ ├── pcnet-pci.c │ │ ├── pcnet.c │ │ ├── pcnet.h │ │ ├── rtl8139.c │ │ ├── smc91c111.c │ │ ├── spapr_llan.c │ │ ├── stellaris_enet.c │ │ ├── vhost_net.c │ │ ├── virtio-net.c │ │ ├── vmware_utils.h │ │ ├── vmxnet3.c │ │ ├── vmxnet3.h │ │ ├── vmxnet_debug.h │ │ ├── vmxnet_rx_pkt.c │ │ ├── vmxnet_rx_pkt.h │ │ ├── vmxnet_tx_pkt.c │ │ ├── vmxnet_tx_pkt.h │ │ ├── xen_nic.c │ │ ├── xgmac.c │ │ ├── xilinx_axienet.c │ │ └── xilinx_ethlite.c │ ├── nvram │ │ ├── Makefile.objs │ │ ├── ds1225y.c │ │ ├── eeprom93xx.c │ │ ├── fw_cfg.c │ │ ├── mac_nvram.c │ │ └── spapr_nvram.c │ ├── openrisc │ │ ├── Makefile.objs │ │ ├── cputimer.c │ │ ├── openrisc_sim.c │ │ └── pic_cpu.c │ ├── pci-bridge │ │ ├── Makefile.objs │ │ ├── dec.c │ │ ├── dec.h │ │ ├── i82801b11.c │ │ ├── ioh3420.c │ │ ├── ioh3420.h │ │ ├── pci_bridge_dev.c │ │ ├── xio3130_downstream.c │ │ ├── xio3130_downstream.h │ │ ├── xio3130_upstream.c │ │ └── xio3130_upstream.h │ ├── pci-host │ │ ├── Makefile.objs │ │ ├── apb.c │ │ ├── bonito.c │ │ ├── grackle.c │ │ ├── pam.c │ │ ├── piix.c │ │ ├── ppce500.c │ │ ├── prep.c │ │ ├── q35.c │ │ ├── uninorth.c │ │ └── versatile.c │ ├── pci │ │ ├── Makefile.objs │ │ ├── msi.c │ │ ├── msix.c │ │ ├── pci-hotplug-old.c │ │ ├── pci-stub.c │ │ ├── pci.c │ │ ├── pci_bridge.c │ │ ├── pci_host.c │ │ ├── pcie.c │ │ ├── pcie_aer.c │ │ ├── pcie_host.c │ │ ├── pcie_port.c │ │ ├── shpc.c │ │ └── slotid_cap.c │ ├── pcmcia │ │ ├── Makefile.objs │ │ ├── pcmcia.c │ │ └── pxa2xx.c │ ├── ppc │ │ ├── Makefile.objs │ │ ├── e500-ccsr.h │ │ ├── e500.c │ │ ├── e500.h │ │ ├── e500plat.c │ │ ├── mac.h │ │ ├── mac_newworld.c │ │ ├── mac_oldworld.c │ │ ├── mpc8544_guts.c │ │ ├── mpc8544ds.c │ │ ├── ppc.c │ │ ├── ppc405.h │ │ ├── ppc405_boards.c │ │ ├── ppc405_uc.c │ │ ├── ppc440_bamboo.c │ │ ├── ppc4xx_devs.c │ │ ├── ppc4xx_pci.c │ │ ├── ppc_booke.c │ │ ├── ppce500_spin.c │ │ ├── prep.c │ │ ├── spapr.c │ │ ├── spapr_events.c │ │ ├── spapr_hcall.c │ │ ├── spapr_iommu.c │ │ ├── spapr_pci.c │ │ ├── spapr_pci_vfio.c │ │ ├── spapr_rtas.c │ │ ├── spapr_vio.c │ │ └── virtex_ml507.c │ ├── s390x │ │ ├── Makefile.objs │ │ ├── css.c │ │ ├── css.h │ │ ├── event-facility.c │ │ ├── ipl.c │ │ ├── s390-virtio-bus.c │ │ ├── s390-virtio-bus.h │ │ ├── s390-virtio-ccw.c │ │ ├── s390-virtio-hcall.c │ │ ├── s390-virtio.c │ │ ├── s390-virtio.h │ │ ├── sclp.c │ │ ├── sclpcpu.c │ │ ├── sclpquiesce.c │ │ ├── virtio-ccw.c │ │ └── virtio-ccw.h │ ├── scsi │ │ ├── Makefile.objs │ │ ├── esp-pci.c │ │ ├── esp.c │ │ ├── lsi53c895a.c │ │ ├── megasas.c │ │ ├── mfi.h │ │ ├── scsi-bus.c │ │ ├── scsi-disk.c │ │ ├── scsi-generic.c │ │ ├── spapr_vscsi.c │ │ ├── srp.h │ │ ├── vhost-scsi.c │ │ ├── viosrp.h │ │ ├── virtio-scsi.c │ │ ├── vmw_pvscsi.c │ │ └── vmw_pvscsi.h │ ├── sd │ │ ├── Makefile.objs │ │ ├── milkymist-memcard.c │ │ ├── omap_mmc.c │ │ ├── pl181.c │ │ ├── pxa2xx_mmci.c │ │ ├── sd.c │ │ ├── sdhci.c │ │ ├── sdhci.h │ │ └── ssi-sd.c │ ├── sh4 │ │ ├── Makefile.objs │ │ ├── r2d.c │ │ ├── sh7750.c │ │ ├── sh7750_regnames.c │ │ ├── sh7750_regnames.h │ │ ├── sh7750_regs.h │ │ ├── sh_pci.c │ │ └── shix.c │ ├── sparc │ │ ├── Makefile.objs │ │ ├── leon3.c │ │ └── sun4m.c │ ├── sparc64 │ │ ├── Makefile.objs │ │ └── sun4u.c │ ├── ssi │ │ ├── Makefile.objs │ │ ├── omap_spi.c │ │ ├── pl022.c │ │ ├── ssi.c │ │ ├── xilinx_spi.c │ │ └── xilinx_spips.c │ ├── timer │ │ ├── Makefile.objs │ │ ├── a9gtimer.c │ │ ├── allwinner-a10-pit.c │ │ ├── arm_mptimer.c │ │ ├── arm_timer.c │ │ ├── cadence_ttc.c │ │ ├── digic-timer.c │ │ ├── ds1338.c │ │ ├── etraxfs_timer.c │ │ ├── exynos4210_mct.c │ │ ├── exynos4210_pwm.c │ │ ├── exynos4210_rtc.c │ │ ├── grlib_gptimer.c │ │ ├── hpet.c │ │ ├── i8254.c │ │ ├── i8254_common.c │ │ ├── imx_epit.c │ │ ├── imx_gpt.c │ │ ├── lm32_timer.c │ │ ├── m48t59.c │ │ ├── mc146818rtc.c │ │ ├── milkymist-sysctl.c │ │ ├── omap_gptimer.c │ │ ├── omap_synctimer.c │ │ ├── pl031.c │ │ ├── puv3_ost.c │ │ ├── pxa2xx_timer.c │ │ ├── sh_timer.c │ │ ├── slavio_timer.c │ │ ├── tusb6010.c │ │ ├── twl92230.c │ │ └── xilinx_timer.c │ ├── tpm │ │ ├── Makefile.objs │ │ ├── tpm_int.h │ │ ├── tpm_passthrough.c │ │ ├── tpm_tis.c │ │ └── tpm_tis.h │ ├── unicore32 │ │ ├── Makefile.objs │ │ └── puv3.c │ ├── usb │ │ ├── Makefile.objs │ │ ├── bus.c │ │ ├── ccid-card-emulated.c │ │ ├── ccid-card-passthru.c │ │ ├── ccid.h │ │ ├── combined-packet.c │ │ ├── core.c │ │ ├── desc-msos.c │ │ ├── desc.c │ │ ├── desc.h │ │ ├── dev-audio.c │ │ ├── dev-bluetooth.c │ │ ├── dev-hid.c │ │ ├── dev-hub.c │ │ ├── dev-mtp.c │ │ ├── dev-network.c │ │ ├── dev-serial.c │ │ ├── dev-smartcard-reader.c │ │ ├── dev-storage.c │ │ ├── dev-uas.c │ │ ├── dev-wacom.c │ │ ├── hcd-ehci-pci.c │ │ ├── hcd-ehci-sysbus.c │ │ ├── hcd-ehci.c │ │ ├── hcd-ehci.h │ │ ├── hcd-musb.c │ │ ├── hcd-ohci.c │ │ ├── hcd-uhci.c │ │ ├── hcd-xhci.c │ │ ├── host-legacy.c │ │ ├── host-libusb.c │ │ ├── host-stub.c │ │ ├── host.h │ │ ├── libhw.c │ │ ├── quirks-ftdi-ids.h │ │ ├── quirks-pl2303-ids.h │ │ ├── quirks.c │ │ ├── quirks.h │ │ └── redirect.c │ ├── virtio │ │ ├── Makefile.objs │ │ ├── dataplane │ │ │ ├── Makefile.objs │ │ │ └── vring.c │ │ ├── vhost-backend.c │ │ ├── vhost-user.c │ │ ├── vhost.c │ │ ├── virtio-balloon.c │ │ ├── virtio-bus.c │ │ ├── virtio-mmio.c │ │ ├── virtio-pci.c │ │ ├── virtio-pci.h │ │ ├── virtio-rng.c │ │ └── virtio.c │ ├── watchdog │ │ ├── Makefile.objs │ │ ├── watchdog.c │ │ ├── wdt_i6300esb.c │ │ └── wdt_ib700.c │ ├── xen │ │ ├── Makefile.objs │ │ ├── xen-host-pci-device.c │ │ ├── xen-host-pci-device.h │ │ ├── xen_backend.c │ │ ├── xen_devconfig.c │ │ ├── xen_pt.c │ │ ├── xen_pt.h │ │ ├── xen_pt_config_init.c │ │ └── xen_pt_msi.c │ ├── xenpv │ │ ├── Makefile.objs │ │ ├── xen_domainbuild.c │ │ ├── xen_domainbuild.h │ │ └── xen_machine_pv.c │ └── xtensa │ │ ├── Makefile.objs │ │ ├── bootparam.h │ │ ├── pic_cpu.c │ │ ├── sim.c │ │ └── xtfpga.c ├── include │ ├── block │ │ ├── aio.h │ │ ├── block.h │ │ ├── block_int.h │ │ ├── blockjob.h │ │ ├── coroutine.h │ │ ├── coroutine_int.h │ │ ├── nbd.h │ │ ├── qapi.h │ │ ├── scsi.h │ │ ├── snapshot.h │ │ └── thread-pool.h │ ├── config.h │ ├── disas │ │ ├── bfd.h │ │ └── disas.h │ ├── elf.h │ ├── exec │ │ ├── address-spaces.h │ │ ├── cpu-all.h │ │ ├── cpu-common.h │ │ ├── cpu-defs.h │ │ ├── cpu_ldst.h │ │ ├── cpu_ldst_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 │ │ ├── memory-internal.h │ │ ├── memory.h │ │ ├── poison.h │ │ ├── ram_addr.h │ │ ├── softmmu-semi.h │ │ ├── spinlock.h │ │ └── user │ │ │ ├── abitypes.h │ │ │ └── thunk.h │ ├── fpu │ │ └── softfloat.h │ ├── glib-compat.h │ ├── hw │ │ ├── acpi │ │ │ ├── acpi.h │ │ │ ├── acpi_dev_interface.h │ │ │ ├── cpu_hotplug.h │ │ │ ├── ich9.h │ │ │ ├── memory_hotplug.h │ │ │ ├── pc-hotplug.h │ │ │ ├── pcihp.h │ │ │ └── piix4.h │ │ ├── arm │ │ │ ├── allwinner-a10.h │ │ │ ├── arm.h │ │ │ ├── digic.h │ │ │ ├── exynos4210.h │ │ │ ├── imx.h │ │ │ ├── omap.h │ │ │ ├── primecell.h │ │ │ ├── pxa.h │ │ │ ├── sharpsl.h │ │ │ └── soc_dma.h │ │ ├── audio │ │ │ ├── audio.h │ │ │ └── pcspk.h │ │ ├── block │ │ │ ├── block.h │ │ │ ├── fdc.h │ │ │ └── flash.h │ │ ├── boards.h │ │ ├── bt.h │ │ ├── char │ │ │ ├── digic-uart.h │ │ │ ├── escc.h │ │ │ ├── lm32_juart.h │ │ │ └── serial.h │ │ ├── cpu │ │ │ ├── a15mpcore.h │ │ │ ├── a9mpcore.h │ │ │ ├── arm11mpcore.h │ │ │ └── icc_bus.h │ │ ├── cris │ │ │ ├── etraxfs.h │ │ │ └── etraxfs_dma.h │ │ ├── devices.h │ │ ├── elf_ops.h │ │ ├── empty_slot.h │ │ ├── fw-path-provider.h │ │ ├── hotplug.h │ │ ├── hw.h │ │ ├── i2c │ │ │ ├── i2c.h │ │ │ ├── pm_smbus.h │ │ │ └── smbus.h │ │ ├── i386 │ │ │ ├── apic-msidef.h │ │ │ ├── apic.h │ │ │ ├── apic_internal.h │ │ │ ├── ich9.h │ │ │ ├── ioapic.h │ │ │ ├── ioapic_internal.h │ │ │ ├── pc.h │ │ │ └── smbios.h │ │ ├── ide.h │ │ ├── input │ │ │ ├── adb.h │ │ │ ├── hid.h │ │ │ └── ps2.h │ │ ├── intc │ │ │ ├── allwinner-a10-pic.h │ │ │ ├── arm_gic.h │ │ │ ├── arm_gic_common.h │ │ │ └── realview_gic.h │ │ ├── ipack │ │ │ └── ipack.h │ │ ├── irq.h │ │ ├── isa │ │ │ ├── apm.h │ │ │ ├── i8259_internal.h │ │ │ ├── isa.h │ │ │ ├── pc87312.h │ │ │ └── vt82c686.h │ │ ├── kvm │ │ │ └── clock.h │ │ ├── lm32 │ │ │ └── lm32_pic.h │ │ ├── loader.h │ │ ├── m68k │ │ │ └── mcf.h │ │ ├── mem │ │ │ └── pc-dimm.h │ │ ├── mips │ │ │ ├── bios.h │ │ │ ├── cpudevs.h │ │ │ └── mips.h │ │ ├── misc │ │ │ ├── a9scu.h │ │ │ ├── arm11scu.h │ │ │ ├── arm_integrator_debug.h │ │ │ ├── tmp105_regs.h │ │ │ └── vfio.h │ │ ├── net │ │ │ └── allwinner_emac.h │ │ ├── nvram │ │ │ ├── eeprom93xx.h │ │ │ ├── fw_cfg.h │ │ │ └── openbios_firmware_abi.h │ │ ├── pci-host │ │ │ ├── apb.h │ │ │ ├── pam.h │ │ │ ├── ppce500.h │ │ │ ├── q35.h │ │ │ └── spapr.h │ │ ├── pci │ │ │ ├── msi.h │ │ │ ├── msix.h │ │ │ ├── pci.h │ │ │ ├── pci_bridge.h │ │ │ ├── pci_bus.h │ │ │ ├── pci_host.h │ │ │ ├── pci_ids.h │ │ │ ├── pci_regs.h │ │ │ ├── pcie.h │ │ │ ├── pcie_aer.h │ │ │ ├── pcie_host.h │ │ │ ├── pcie_port.h │ │ │ ├── pcie_regs.h │ │ │ ├── shpc.h │ │ │ └── slotid_cap.h │ │ ├── pcmcia.h │ │ ├── ppc │ │ │ ├── mac_dbdma.h │ │ │ ├── openpic.h │ │ │ ├── ppc.h │ │ │ ├── ppc4xx.h │ │ │ ├── ppc_e500.h │ │ │ ├── spapr.h │ │ │ ├── spapr_vio.h │ │ │ └── xics.h │ │ ├── ptimer.h │ │ ├── qdev-core.h │ │ ├── qdev-dma.h │ │ ├── qdev-properties.h │ │ ├── qdev.h │ │ ├── s390x │ │ │ ├── adapter.h │ │ │ ├── ebcdic.h │ │ │ ├── event-facility.h │ │ │ ├── s390_flic.h │ │ │ └── sclp.h │ │ ├── scsi │ │ │ ├── esp.h │ │ │ └── scsi.h │ │ ├── sd.h │ │ ├── sh4 │ │ │ ├── sh.h │ │ │ └── sh_intc.h │ │ ├── sparc │ │ │ ├── grlib.h │ │ │ ├── sparc32_dma.h │ │ │ └── sun4m.h │ │ ├── ssi.h │ │ ├── stream.h │ │ ├── sysbus.h │ │ ├── timer │ │ │ ├── a9gtimer.h │ │ │ ├── allwinner-a10-pit.h │ │ │ ├── arm_mptimer.h │ │ │ ├── digic-timer.h │ │ │ ├── hpet.h │ │ │ ├── i8254.h │ │ │ ├── i8254_internal.h │ │ │ ├── m48t59.h │ │ │ ├── mc146818rtc.h │ │ │ └── mc146818rtc_regs.h │ │ ├── unicore32 │ │ │ └── puv3.h │ │ ├── usb.h │ │ ├── usb │ │ │ ├── ehci-regs.h │ │ │ └── uhci-regs.h │ │ ├── virtio │ │ │ ├── dataplane │ │ │ │ └── vring.h │ │ │ ├── vhost-backend.h │ │ │ ├── vhost-scsi.h │ │ │ ├── vhost.h │ │ │ ├── virtio-9p.h │ │ │ ├── virtio-access.h │ │ │ ├── virtio-balloon.h │ │ │ ├── virtio-blk.h │ │ │ ├── virtio-bus.h │ │ │ ├── virtio-net.h │ │ │ ├── virtio-rng.h │ │ │ ├── virtio-scsi.h │ │ │ ├── virtio-serial.h │ │ │ └── virtio.h │ │ └── xen │ │ │ ├── xen.h │ │ │ ├── xen_backend.h │ │ │ └── xen_common.h │ ├── libdecnumber │ │ ├── dconfig.h │ │ ├── decContext.h │ │ ├── decDPD.h │ │ ├── decNumber.h │ │ ├── decNumberLocal.h │ │ └── dpd │ │ │ ├── decimal128.h │ │ │ ├── decimal128Local.h │ │ │ ├── decimal32.h │ │ │ └── decimal64.h │ ├── migration │ │ ├── block.h │ │ ├── migration.h │ │ ├── page_cache.h │ │ ├── qemu-file.h │ │ └── vmstate.h │ ├── monitor │ │ ├── monitor.h │ │ └── qdev.h │ ├── net │ │ ├── checksum.h │ │ ├── eth.h │ │ ├── net.h │ │ ├── queue.h │ │ ├── slirp.h │ │ ├── tap.h │ │ ├── vhost-user.h │ │ └── vhost_net.h │ ├── openssl │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1t.h │ │ ├── bio.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── comp.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── crypto.h │ │ ├── des.h │ │ ├── des_old.h │ │ ├── dh.h │ │ ├── dsa.h │ │ ├── dso.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── engine.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── krb5_asn.h │ │ ├── kssl.h │ │ ├── lhash.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── ocsp.h │ │ ├── opensslconf.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pkcs12.h │ │ ├── pkcs7.h │ │ ├── pqueue.h │ │ ├── rand.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── stack.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── ui_compat.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ └── x509v3.h │ ├── polarssl │ │ ├── aes.h │ │ ├── aes_cmac128.h │ │ ├── aesni.h │ │ ├── asn1.h │ │ ├── bignum.h │ │ ├── bn_mul.h │ │ ├── check_config.h │ │ ├── cipher.h │ │ ├── config.h │ │ ├── ctr_drbg.h │ │ ├── ecdsa.h │ │ ├── ecp.h │ │ ├── entropy.h │ │ ├── entropy_poll.h │ │ ├── md.h │ │ ├── md5.h │ │ ├── md_wrap.h │ │ ├── net.h │ │ ├── oid.h │ │ ├── padlock.h │ │ ├── pk.h │ │ ├── platform.h │ │ ├── ripemd160.h │ │ ├── rsa.h │ │ ├── sha1.h │ │ ├── sha256.h │ │ ├── sha512.h │ │ ├── timing.h │ │ └── x509.h │ ├── qapi │ │ ├── dealloc-visitor.h │ │ ├── error.h │ │ ├── opts-visitor.h │ │ ├── qmp-event.h │ │ ├── qmp-input-visitor.h │ │ ├── qmp-output-visitor.h │ │ ├── qmp │ │ │ ├── dispatch.h │ │ │ ├── json-lexer.h │ │ │ ├── json-parser.h │ │ │ ├── json-streamer.h │ │ │ ├── qbool.h │ │ │ ├── qdict.h │ │ │ ├── qerror.h │ │ │ ├── qfloat.h │ │ │ ├── qint.h │ │ │ ├── qjson.h │ │ │ ├── qlist.h │ │ │ ├── qobject.h │ │ │ ├── qstring.h │ │ │ └── types.h │ │ ├── string-input-visitor.h │ │ ├── string-output-visitor.h │ │ ├── visitor-impl.h │ │ └── visitor.h │ ├── qemu-common.h │ ├── qemu-io.h │ ├── qemu │ │ ├── acl.h │ │ ├── aes.h │ │ ├── atomic.h │ │ ├── bitmap.h │ │ ├── bitops.h │ │ ├── bswap.h │ │ ├── compatfd.h │ │ ├── compiler.h │ │ ├── config-file.h │ │ ├── crc32c.h │ │ ├── envlist.h │ │ ├── error-report.h │ │ ├── event_notifier.h │ │ ├── fifo8.h │ │ ├── hbitmap.h │ │ ├── host-utils.h │ │ ├── int128.h │ │ ├── iov.h │ │ ├── log.h │ │ ├── main-loop.h │ │ ├── module.h │ │ ├── notify.h │ │ ├── option.h │ │ ├── option_int.h │ │ ├── osdep.h │ │ ├── queue.h │ │ ├── range.h │ │ ├── ratelimit.h │ │ ├── readline.h │ │ ├── rfifolock.h │ │ ├── seqlock.h │ │ ├── sockets.h │ │ ├── thread-posix.h │ │ ├── thread-win32.h │ │ ├── thread.h │ │ ├── throttle.h │ │ ├── timer.h │ │ ├── tls.h │ │ ├── typedefs.h │ │ ├── uri.h │ │ └── xattr.h │ ├── qom │ │ ├── cpu.h │ │ ├── object.h │ │ ├── object_interfaces.h │ │ └── qom-qobject.h │ ├── sysemu │ │ ├── arch_init.h │ │ ├── balloon.h │ │ ├── blockdev.h │ │ ├── bt.h │ │ ├── char.h │ │ ├── cpus.h │ │ ├── device_tree.h │ │ ├── dma.h │ │ ├── dump-arch.h │ │ ├── dump.h │ │ ├── hostmem.h │ │ ├── iothread.h │ │ ├── kvm.h │ │ ├── memory_mapping.h │ │ ├── os-posix.h │ │ ├── os-win32.h │ │ ├── qtest.h │ │ ├── rng-random.h │ │ ├── rng.h │ │ ├── seccomp.h │ │ ├── sysemu.h │ │ ├── tpm.h │ │ ├── tpm_backend.h │ │ ├── tpm_backend_int.h │ │ ├── watchdog.h │ │ └── xen-mapcache.h │ ├── trace.h │ └── ui │ │ ├── console.h │ │ ├── input.h │ │ ├── pixel_ops.h │ │ ├── qemu-pixman.h │ │ ├── qemu-spice.h │ │ └── spice-display.h ├── iohandler.c ├── ioport.c ├── iothread.c ├── kvm-all.c ├── kvm-stub.c ├── libcacard │ ├── Makefile │ ├── cac.c │ ├── cac.h │ ├── card_7816.c │ ├── card_7816.h │ ├── card_7816t.h │ ├── event.c │ ├── eventt.h │ ├── libcacard.pc.in │ ├── libcacard.syms │ ├── link_test.c │ ├── vcard.c │ ├── vcard.h │ ├── vcard_emul.h │ ├── vcard_emul_nss.c │ ├── vcard_emul_type.c │ ├── vcard_emul_type.h │ ├── vcardt.c │ ├── vcardt.h │ ├── vcardt_internal.h │ ├── vevent.h │ ├── vreader.c │ ├── vreader.h │ ├── vreadert.h │ ├── vscard_common.h │ └── vscclient.c ├── libdecnumber │ ├── decContext.c │ ├── decNumber.c │ └── dpd │ │ ├── decimal128.c │ │ ├── decimal128Local.h │ │ ├── decimal32.c │ │ └── decimal64.c ├── linux-headers │ ├── COPYING │ ├── README │ ├── asm-arm │ │ ├── kvm.h │ │ └── kvm_para.h │ ├── asm-arm64 │ │ ├── kvm.h │ │ └── kvm_para.h │ ├── asm-generic │ │ └── kvm_para.h │ ├── asm-mips │ │ ├── kvm.h │ │ └── kvm_para.h │ ├── asm-powerpc │ │ ├── epapr_hcalls.h │ │ ├── kvm.h │ │ └── kvm_para.h │ ├── asm-s390 │ │ ├── kvm.h │ │ └── kvm_para.h │ ├── asm-x86 │ │ ├── hyperv.h │ │ ├── kvm.h │ │ └── kvm_para.h │ └── linux │ │ ├── kvm.h │ │ ├── kvm_para.h │ │ ├── psci.h │ │ ├── vfio.h │ │ ├── vhost.h │ │ ├── virtio_config.h │ │ └── virtio_ring.h ├── linux-user │ ├── .main.c.swl │ ├── .main.c.swm │ ├── Makefile.objs │ ├── aarch64 │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── alpha │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── arm │ │ ├── nwfpe │ │ │ ├── Makefile.objs │ │ │ ├── double_cpdo.c │ │ │ ├── extended_cpdo.c │ │ │ ├── fpa11.c │ │ │ ├── fpa11.h │ │ │ ├── fpa11.inl │ │ │ ├── fpa11_cpdo.c │ │ │ ├── fpa11_cpdt.c │ │ │ ├── fpa11_cprt.c │ │ │ ├── fpopcode.c │ │ │ ├── fpopcode.h │ │ │ ├── fpsr.h │ │ │ └── single_cpdo.c │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── cris │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── elfload.c │ ├── errno_defs.h │ ├── flat.h │ ├── flatload.c │ ├── i386 │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── ioctls.h │ ├── linux_loop.h │ ├── linuxload.c │ ├── m68k-sim.c │ ├── m68k │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── main.c │ ├── microblaze │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── mips │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── mips64 │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── mmap.c │ ├── openrisc │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── ppc │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── qemu.h │ ├── qemu_signal.h │ ├── s390x │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── sh4 │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── signal.c │ ├── socket.h │ ├── sparc │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── sparc64 │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── strace.c │ ├── strace.list │ ├── syscall.c │ ├── syscall_defs.h │ ├── syscall_types.h │ ├── target_flat.h │ ├── uaccess.c │ ├── uname.c │ ├── uname.h │ ├── unicore32 │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h │ ├── vm86.c │ └── x86_64 │ │ ├── syscall.h │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ └── termbits.h ├── main-loop.c ├── memory.c ├── memory_mapping.c ├── migration-exec.c ├── migration-fd.c ├── migration-rdma.c ├── migration-tcp.c ├── migration-unix.c ├── migration.c ├── module-common.c ├── monitor.c ├── nbd.c ├── net │ ├── Makefile.objs │ ├── checksum.c │ ├── clients.h │ ├── dump.c │ ├── eth.c │ ├── hub.c │ ├── hub.h │ ├── l2tpv3.c │ ├── net.c │ ├── netmap.c │ ├── queue.c │ ├── slirp.c │ ├── socket.c │ ├── tap-aix.c │ ├── tap-bsd.c │ ├── tap-haiku.c │ ├── tap-linux.c │ ├── tap-linux.h │ ├── tap-solaris.c │ ├── tap-win32.c │ ├── tap.c │ ├── tap_int.h │ ├── util.c │ ├── util.h │ ├── vde.c │ └── vhost-user.c ├── numa.c ├── os-posix.c ├── os-win32.c ├── page_cache.c ├── pc-bios │ ├── Makefile │ ├── QEMU,cgthree.bin │ ├── QEMU,tcx.bin │ ├── README │ ├── acpi-dsdt.aml │ ├── bamboo.dtb │ ├── bamboo.dts │ ├── bios-256k.bin │ ├── bios.bin │ ├── efi-e1000.rom │ ├── efi-eepro100.rom │ ├── efi-ne2k_pci.rom │ ├── efi-pcnet.rom │ ├── efi-rtl8139.rom │ ├── efi-virtio.rom │ ├── keymaps │ │ ├── ar │ │ ├── bepo │ │ ├── common │ │ ├── cz │ │ ├── da │ │ ├── de │ │ ├── de-ch │ │ ├── en-gb │ │ ├── en-us │ │ ├── es │ │ ├── et │ │ ├── fi │ │ ├── fo │ │ ├── fr │ │ ├── fr-be │ │ ├── fr-ca │ │ ├── fr-ch │ │ ├── hr │ │ ├── hu │ │ ├── is │ │ ├── it │ │ ├── ja │ │ ├── lt │ │ ├── lv │ │ ├── mk │ │ ├── modifiers │ │ ├── nl │ │ ├── nl-be │ │ ├── no │ │ ├── pl │ │ ├── pt │ │ ├── pt-br │ │ ├── ru │ │ ├── sl │ │ ├── sv │ │ ├── th │ │ └── tr │ ├── kvmvapic.bin │ ├── linuxboot.bin │ ├── multiboot.bin │ ├── openbios-ppc │ ├── openbios-sparc32 │ ├── openbios-sparc64 │ ├── optionrom │ │ ├── Makefile │ │ ├── kvmvapic.S │ │ ├── linuxboot.S │ │ ├── multiboot.S │ │ └── optionrom.h │ ├── palcode-clipper │ ├── petalogix-ml605.dtb │ ├── petalogix-s3adsp1800.dtb │ ├── ppc_rom.bin │ ├── pxe-e1000.rom │ ├── pxe-eepro100.rom │ ├── pxe-ne2k_pci.rom │ ├── pxe-pcnet.rom │ ├── pxe-rtl8139.rom │ ├── pxe-virtio.rom │ ├── q35-acpi-dsdt.aml │ ├── qemu-icon.bmp │ ├── qemu-nsis.bmp │ ├── qemu-nsis.ico │ ├── qemu_logo.svg │ ├── qemu_logo_no_text.svg │ ├── s390-ccw.img │ ├── s390-ccw │ │ ├── Makefile │ │ ├── bootmap.c │ │ ├── bootmap.h │ │ ├── cio.h │ │ ├── main.c │ │ ├── s390-ccw.h │ │ ├── sclp-ascii.c │ │ ├── sclp.h │ │ ├── start.S │ │ ├── virtio.c │ │ └── virtio.h │ ├── s390-zipl.rom │ ├── sgabios.bin │ ├── slof.bin │ ├── spapr-rtas.bin │ ├── spapr-rtas │ │ ├── Makefile │ │ └── spapr-rtas.S │ ├── u-boot.e500 │ ├── vgabios-cirrus.bin │ ├── vgabios-qxl.bin │ ├── vgabios-stdvga.bin │ ├── vgabios-vmware.bin │ └── vgabios.bin ├── pixman │ ├── .gitignore │ ├── AUTHORS │ ├── CODING_STYLE │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── RELEASING │ ├── TODO │ ├── autogen.sh │ ├── configure.ac │ ├── pixman-1-uninstalled.pc.in │ ├── pixman-1.pc.in │ ├── pixman │ │ ├── Makefile.am │ │ ├── Makefile.win32 │ │ ├── make-combine.pl │ │ ├── pixman-access-accessors.c │ │ ├── pixman-access.c │ │ ├── pixman-accessor.h │ │ ├── pixman-arm-common.h │ │ ├── pixman-arm-detect-win32.asm │ │ ├── pixman-arm-neon-asm.S │ │ ├── pixman-arm-neon-asm.h │ │ ├── pixman-arm-neon.c │ │ ├── pixman-arm-simd-asm.S │ │ ├── pixman-arm-simd.c │ │ ├── pixman-bits-image.c │ │ ├── pixman-combine.c.template │ │ ├── pixman-combine.h.template │ │ ├── pixman-compiler.h │ │ ├── pixman-conical-gradient.c │ │ ├── pixman-cpu.c │ │ ├── pixman-edge-accessors.c │ │ ├── pixman-edge-imp.h │ │ ├── pixman-edge.c │ │ ├── pixman-fast-path.c │ │ ├── pixman-general.c │ │ ├── pixman-gradient-walker.c │ │ ├── pixman-image.c │ │ ├── pixman-implementation.c │ │ ├── pixman-linear-gradient.c │ │ ├── pixman-matrix.c │ │ ├── pixman-mmx.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-timer.c │ │ ├── pixman-trap.c │ │ ├── pixman-utils.c │ │ ├── pixman-version.h.in │ │ ├── pixman-vmx.c │ │ ├── pixman-x64-mmx-emulation.h │ │ ├── pixman.c │ │ ├── pixman.h │ │ ├── refactor │ │ └── solaris-hwcap.mapfile │ └── test │ │ ├── Makefile.am │ │ ├── a1-trap-test │ │ ├── a1-trap-test.c │ │ ├── alpha-test.c │ │ ├── alphamap │ │ ├── alphamap.c │ │ ├── blitters-test-bisect.rb │ │ ├── blitters-test.c │ │ ├── clip-in.c │ │ ├── clip-test.c │ │ ├── composite-test.c │ │ ├── composite.c │ │ ├── convolution-test.c │ │ ├── fetch-test.c │ │ ├── gradient-test.c │ │ ├── gtk-utils.c │ │ ├── gtk-utils.h │ │ ├── oob-test.c │ │ ├── region-test.c │ │ ├── scaling-test-bisect.rb │ │ ├── scaling-test.c │ │ ├── screen-test.c │ │ ├── trap-crasher.c │ │ ├── trap-test.c │ │ ├── utils.c │ │ ├── utils.h │ │ └── window-test.c ├── po │ ├── Makefile │ ├── de_DE.po │ ├── fr_FR.po │ ├── hu.po │ ├── it.po │ ├── messages.po │ └── tr.po ├── polarssl │ ├── Makefile.objs │ ├── aes.c │ ├── aes_cmac128.c │ ├── aesni.c │ ├── asn1parse.c │ ├── bignum.c │ ├── ctr_drbg.c │ ├── entropy.c │ ├── entropy_poll.c │ ├── md.c │ ├── md5.c │ ├── md_wrap.c │ ├── net.c │ ├── oid.c │ ├── ripemd160.c │ ├── rsa.c │ ├── sha1.c │ ├── sha256.c │ ├── sha512.c │ └── timing.c ├── qapi-schema.json ├── qapi │ ├── Makefile.objs │ ├── block-core.json │ ├── block.json │ ├── common.json │ ├── event.json │ ├── opts-visitor.c │ ├── qapi-dealloc-visitor.c │ ├── qapi-visit-core.c │ ├── qmp-dispatch.c │ ├── qmp-event.c │ ├── qmp-input-visitor.c │ ├── qmp-output-visitor.c │ ├── qmp-registry.c │ ├── string-input-visitor.c │ └── string-output-visitor.c ├── qdev-monitor.c ├── qdict-test-data.txt ├── qemu-bridge-helper.c ├── qemu-char.c ├── qemu-coroutine-io.c ├── qemu-coroutine-lock.c ├── qemu-coroutine-sleep.c ├── qemu-coroutine.c ├── qemu-doc.texi ├── qemu-file.c ├── qemu-img-cmds.hx ├── qemu-img.c ├── qemu-img.texi ├── qemu-io-cmds.c ├── qemu-io.c ├── qemu-log.c ├── qemu-nbd.c ├── qemu-nbd.texi ├── qemu-options-wrapper.h ├── qemu-options.h ├── qemu-options.hx ├── qemu-seccomp.c ├── qemu-tech.texi ├── qemu-timer.c ├── qemu.nsi ├── qemu.sasl ├── qga │ ├── Makefile.objs │ ├── channel-posix.c │ ├── channel-win32.c │ ├── channel.h │ ├── commands-posix.c │ ├── commands-win32.c │ ├── commands.c │ ├── guest-agent-command-state.c │ ├── guest-agent-core.h │ ├── main.c │ ├── qapi-schema.json │ ├── service-win32.c │ ├── service-win32.h │ ├── vss-win32.c │ ├── vss-win32.h │ └── vss-win32 │ │ ├── Makefile.objs │ │ ├── install.cpp │ │ ├── provider.cpp │ │ ├── qga-vss.def │ │ ├── qga-vss.idl │ │ ├── qga-vss.tlb │ │ ├── requester.cpp │ │ ├── requester.h │ │ └── vss-common.h ├── qmp-commands.hx ├── qmp.c ├── qobject │ ├── Makefile.objs │ ├── json-lexer.c │ ├── json-parser.c │ ├── json-streamer.c │ ├── qbool.c │ ├── qdict.c │ ├── qerror.c │ ├── qfloat.c │ ├── qint.c │ ├── qjson.c │ ├── qlist.c │ └── qstring.c ├── qom │ ├── Makefile.objs │ ├── container.c │ ├── cpu.c │ ├── object.c │ ├── object_interfaces.c │ └── qom-qobject.c ├── qtest.c ├── roms │ ├── Makefile │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ └── 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 │ │ │ │ ├── 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_1004.fs │ │ │ │ ├── pci-device_1af4_1009.fs │ │ │ │ ├── pci-device_8086_100e.fs │ │ │ │ ├── pci-interrupts.fs │ │ │ │ ├── pci-phb.fs │ │ │ │ ├── qemu-bootlist.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.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 │ │ │ │ │ ├── netapps │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── args.c │ │ │ │ │ │ ├── args.h │ │ │ │ │ │ ├── netapps.h │ │ │ │ │ │ ├── netboot.c │ │ │ │ │ │ └── ping.c │ │ │ │ │ └── netlib │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── ndp.c │ │ │ │ │ │ ├── ndp.h │ │ │ │ │ │ ├── tcp.c │ │ │ │ │ │ ├── tcp.h │ │ │ │ │ │ ├── tftp.c │ │ │ │ │ │ ├── tftp.h │ │ │ │ │ │ ├── udp.c │ │ │ │ │ │ └── udp.h │ │ │ │ ├── client.lds │ │ │ │ ├── include │ │ │ │ │ ├── crt0.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── fileio.h │ │ │ │ │ ├── ioctl.h │ │ │ │ │ ├── kernel.h │ │ │ │ │ ├── netdriver_int.h │ │ │ │ │ ├── of.h │ │ │ │ │ ├── pci.h │ │ │ │ │ ├── rtas.h │ │ │ │ │ ├── sys │ │ │ │ │ │ └── socket.h │ │ │ │ │ └── time.h │ │ │ │ ├── kernel │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── crt0.c │ │ │ │ │ ├── entry.S │ │ │ │ │ ├── init.c │ │ │ │ │ ├── modules.c │ │ │ │ │ ├── modules.h │ │ │ │ │ ├── systemcall.c │ │ │ │ │ └── timer.c │ │ │ │ ├── libc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── sbrk.c │ │ │ │ │ └── time │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ftime.c │ │ │ │ │ │ └── timer.c │ │ │ │ ├── make.rules │ │ │ │ ├── oflib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ci_device.c │ │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ │ └── 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 │ │ │ ├── libipmi │ │ │ │ ├── Makefile │ │ │ │ ├── libipmi.code │ │ │ │ ├── libipmi.h │ │ │ │ ├── libipmi.in │ │ │ │ └── libipmi.oco │ │ │ ├── libnativeio │ │ │ │ ├── nativeio.code │ │ │ │ └── nativeio.in │ │ │ ├── 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-net.c │ │ │ │ ├── virtio-net.h │ │ │ │ ├── virtio-scsi.c │ │ │ │ ├── virtio-scsi.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 │ │ │ │ ├── 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 │ │ │ │ ├── archsupport.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 │ │ │ │ ├── history.fs │ │ │ │ ├── ide.fs │ │ │ │ ├── instance.fs │ │ │ │ ├── little-endian.fs │ │ │ │ ├── loaders.fs │ │ │ │ ├── logging.fs │ │ │ │ ├── node.fs │ │ │ │ ├── nvram.fs │ │ │ │ ├── packages.fs │ │ │ │ ├── packages │ │ │ │ │ ├── bulk.fs │ │ │ │ │ ├── deblocker.fs │ │ │ │ │ ├── disk-label.fs │ │ │ │ │ ├── ext2-files.fs │ │ │ │ │ ├── fat-files.fs │ │ │ │ │ ├── filler.fs │ │ │ │ │ ├── iso-9660.fs │ │ │ │ │ ├── obp-tftp.fs │ │ │ │ │ ├── rom-files.fs │ │ │ │ │ └── sms.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 │ │ │ │ ├── rmove.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 │ │ │ │ ├── slof-logo.fs │ │ │ │ ├── sms │ │ │ │ │ ├── sms-load.fs │ │ │ │ │ └── sms-nvram.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 │ │ │ └── types.h │ │ └── tools │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── create_reloc_table.sh │ │ │ └── gen_reloc_table.c │ ├── config.ipxe.general.h │ ├── config.seabios-128k │ ├── config.seabios-256k │ ├── config.vga-cirrus │ ├── config.vga-isavga │ ├── config.vga-qxl │ ├── config.vga-stdvga │ ├── config.vga-vmware │ ├── configure-seabios.sh │ ├── ipxe │ │ ├── COPYING │ │ ├── COPYRIGHTS │ │ ├── README │ │ ├── contrib │ │ │ ├── README │ │ │ ├── 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 │ │ │ │ └── serial-console.1 │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── Makefile.housekeeping │ │ │ ├── arch │ │ │ ├── i386 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.efi │ │ │ │ ├── Makefile.linux │ │ │ │ ├── Makefile.pcbios │ │ │ │ ├── README.i386 │ │ │ │ ├── core │ │ │ │ │ ├── basemem_packet.c │ │ │ │ │ ├── cachedhcp.c │ │ │ │ │ ├── dumpregs.c │ │ │ │ │ ├── gdbidt.S │ │ │ │ │ ├── gdbmach.c │ │ │ │ │ ├── linux │ │ │ │ │ │ ├── linux_syscall.S │ │ │ │ │ │ └── linuxprefix.S │ │ │ │ │ ├── nulltrap.c │ │ │ │ │ ├── patch_cf.S │ │ │ │ │ ├── pci_autoboot.c │ │ │ │ │ ├── pic8259.c │ │ │ │ │ ├── rdtsc_timer.c │ │ │ │ │ ├── relocate.c │ │ │ │ │ ├── runtime.c │ │ │ │ │ ├── setjmp.S │ │ │ │ │ ├── stack.S │ │ │ │ │ ├── stack16.S │ │ │ │ │ ├── timer2.c │ │ │ │ │ ├── video_subr.c │ │ │ │ │ └── virtaddr.S │ │ │ │ ├── drivers │ │ │ │ │ └── net │ │ │ │ │ │ ├── undi.c │ │ │ │ │ │ ├── undiisr.S │ │ │ │ │ │ ├── undiload.c │ │ │ │ │ │ ├── undinet.c │ │ │ │ │ │ ├── undionly.c │ │ │ │ │ │ ├── undipreload.c │ │ │ │ │ │ └── undirom.c │ │ │ │ ├── firmware │ │ │ │ │ └── pcbios │ │ │ │ │ │ ├── basemem.c │ │ │ │ │ │ ├── bios_console.c │ │ │ │ │ │ ├── e820mangler.S │ │ │ │ │ │ ├── fakee820.c │ │ │ │ │ │ ├── hidemem.c │ │ │ │ │ │ ├── memmap.c │ │ │ │ │ │ └── pnpbios.c │ │ │ │ ├── hci │ │ │ │ │ └── commands │ │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── byteswap.h │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ ├── endian.h │ │ │ │ │ │ ├── entropy.h │ │ │ │ │ │ ├── linux_api.h │ │ │ │ │ │ ├── nap.h │ │ │ │ │ │ ├── profile.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── sanboot.h │ │ │ │ │ │ ├── smbios.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ ├── strings.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── uaccess.h │ │ │ │ │ │ └── umalloc.h │ │ │ │ │ ├── bochs.h │ │ │ │ │ ├── bootsector.h │ │ │ │ │ ├── bzimage.h │ │ │ │ │ ├── comboot.h │ │ │ │ │ ├── efi │ │ │ │ │ │ └── ipxe │ │ │ │ │ │ │ └── dhcp_arch.h │ │ │ │ │ ├── fakee820.h │ │ │ │ │ ├── gdbmach.h │ │ │ │ │ ├── initrd.h │ │ │ │ │ ├── int13.h │ │ │ │ │ ├── ipxe │ │ │ │ │ │ ├── bios_nap.h │ │ │ │ │ │ ├── bios_reboot.h │ │ │ │ │ │ ├── bios_sanboot.h │ │ │ │ │ │ ├── bios_smbios.h │ │ │ │ │ │ ├── bios_timer.h │ │ │ │ │ │ ├── errno │ │ │ │ │ │ │ └── pcbios.h │ │ │ │ │ │ ├── guestrpc.h │ │ │ │ │ │ ├── memtop_umalloc.h │ │ │ │ │ │ ├── rdtsc_timer.h │ │ │ │ │ │ ├── rtc_entropy.h │ │ │ │ │ │ ├── rtc_time.h │ │ │ │ │ │ ├── timer2.h │ │ │ │ │ │ ├── vesafb.h │ │ │ │ │ │ └── vmware.h │ │ │ │ │ ├── kir.h │ │ │ │ │ ├── libkir.h │ │ │ │ │ ├── librm.h │ │ │ │ │ ├── limits.h │ │ │ │ │ ├── memsizes.h │ │ │ │ │ ├── multiboot.h │ │ │ │ │ ├── pcbios │ │ │ │ │ │ └── ipxe │ │ │ │ │ │ │ └── dhcp_arch.h │ │ │ │ │ ├── pic8259.h │ │ │ │ │ ├── pnpbios.h │ │ │ │ │ ├── pxe.h │ │ │ │ │ ├── pxe_api.h │ │ │ │ │ ├── pxe_call.h │ │ │ │ │ ├── pxe_error.h │ │ │ │ │ ├── pxe_types.h │ │ │ │ │ ├── pxeparent.h │ │ │ │ │ ├── realmode.h │ │ │ │ │ ├── registers.h │ │ │ │ │ ├── rtc.h │ │ │ │ │ ├── sdi.h │ │ │ │ │ ├── setjmp.h │ │ │ │ │ ├── undi.h │ │ │ │ │ ├── undiload.h │ │ │ │ │ ├── undinet.h │ │ │ │ │ ├── undipreload.h │ │ │ │ │ ├── undirom.h │ │ │ │ │ └── vga.h │ │ │ │ ├── interface │ │ │ │ │ ├── pcbios │ │ │ │ │ │ ├── apm.c │ │ │ │ │ │ ├── bios_nap.c │ │ │ │ │ │ ├── bios_reboot.c │ │ │ │ │ │ ├── bios_smbios.c │ │ │ │ │ │ ├── bios_timer.c │ │ │ │ │ │ ├── biosint.c │ │ │ │ │ │ ├── int13.c │ │ │ │ │ │ ├── memtop_umalloc.c │ │ │ │ │ │ ├── pcibios.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 │ │ │ │ │ ├── pxeparent │ │ │ │ │ │ └── pxeparent.c │ │ │ │ │ ├── syslinux │ │ │ │ │ │ ├── com32_call.c │ │ │ │ │ │ ├── com32_wrapper.S │ │ │ │ │ │ ├── comboot_call.c │ │ │ │ │ │ └── comboot_resolv.c │ │ │ │ │ └── vmware │ │ │ │ │ │ ├── guestinfo.c │ │ │ │ │ │ ├── guestrpc.c │ │ │ │ │ │ ├── vmconsole.c │ │ │ │ │ │ └── vmware.c │ │ │ │ ├── kir-Makefile │ │ │ │ ├── prefix │ │ │ │ │ ├── bootpart.S │ │ │ │ │ ├── dskprefix.S │ │ │ │ │ ├── exeprefix.S │ │ │ │ │ ├── hdprefix.S │ │ │ │ │ ├── kkkpxeprefix.S │ │ │ │ │ ├── kkpxeprefix.S │ │ │ │ │ ├── kpxeprefix.S │ │ │ │ │ ├── libprefix.S │ │ │ │ │ ├── lkrnprefix.S │ │ │ │ │ ├── mbr.S │ │ │ │ │ ├── mromprefix.S │ │ │ │ │ ├── nbiprefix.S │ │ │ │ │ ├── nullprefix.S │ │ │ │ │ ├── pxeprefix.S │ │ │ │ │ ├── romprefix.S │ │ │ │ │ ├── undiloader.S │ │ │ │ │ ├── unnrv2b.S │ │ │ │ │ ├── unnrv2b16.S │ │ │ │ │ └── usbdisk.S │ │ │ │ ├── scripts │ │ │ │ │ ├── i386-kir.lds │ │ │ │ │ ├── i386.lds │ │ │ │ │ └── linux.lds │ │ │ │ └── transitions │ │ │ │ │ ├── liba20.S │ │ │ │ │ ├── libkir.S │ │ │ │ │ ├── libpm.S │ │ │ │ │ ├── librm.S │ │ │ │ │ ├── librm_mgmt.c │ │ │ │ │ └── librm_test.c │ │ │ ├── x86 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.efi │ │ │ │ ├── Makefile.linux │ │ │ │ ├── core │ │ │ │ │ ├── cpuid.c │ │ │ │ │ ├── cpuid_settings.c │ │ │ │ │ ├── debugcon.c │ │ │ │ │ ├── linux │ │ │ │ │ │ ├── linux_api.c │ │ │ │ │ │ └── linux_strerror.c │ │ │ │ │ ├── pcidirect.c │ │ │ │ │ ├── x86_bigint.c │ │ │ │ │ ├── x86_io.c │ │ │ │ │ ├── x86_string.c │ │ │ │ │ └── x86_tcpip.c │ │ │ │ ├── hci │ │ │ │ │ └── commands │ │ │ │ │ │ └── cpuid_cmd.c │ │ │ │ ├── include │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── bigint.h │ │ │ │ │ │ ├── errfile.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── linux_api_platform.h │ │ │ │ │ │ ├── pci_io.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ └── tcpip.h │ │ │ │ │ ├── ipxe │ │ │ │ │ │ ├── cpuid.h │ │ │ │ │ │ ├── efi │ │ │ │ │ │ │ └── efix86_nap.h │ │ │ │ │ │ ├── pcibios.h │ │ │ │ │ │ ├── pcidirect.h │ │ │ │ │ │ └── x86_io.h │ │ │ │ │ ├── linux │ │ │ │ │ │ └── ipxe │ │ │ │ │ │ │ └── dhcp_arch.h │ │ │ │ │ └── valgrind │ │ │ │ │ │ ├── memcheck.h │ │ │ │ │ │ └── valgrind.h │ │ │ │ ├── interface │ │ │ │ │ └── efi │ │ │ │ │ │ └── efix86_nap.c │ │ │ │ ├── prefix │ │ │ │ │ ├── efidrvprefix.c │ │ │ │ │ └── efiprefix.c │ │ │ │ └── scripts │ │ │ │ │ └── efi.lds │ │ │ └── x86_64 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.efi │ │ │ │ ├── Makefile.linux │ │ │ │ ├── core │ │ │ │ └── linux │ │ │ │ │ ├── linux_syscall.S │ │ │ │ │ └── linuxprefix.S │ │ │ │ ├── include │ │ │ │ ├── bits │ │ │ │ │ ├── byteswap.h │ │ │ │ │ ├── compiler.h │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── entropy.h │ │ │ │ │ ├── linux_api.h │ │ │ │ │ ├── nap.h │ │ │ │ │ ├── profile.h │ │ │ │ │ ├── reboot.h │ │ │ │ │ ├── sanboot.h │ │ │ │ │ ├── smbios.h │ │ │ │ │ ├── stdint.h │ │ │ │ │ ├── strings.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── timer.h │ │ │ │ │ ├── uaccess.h │ │ │ │ │ └── umalloc.h │ │ │ │ ├── efi │ │ │ │ │ └── ipxe │ │ │ │ │ │ └── dhcp_arch.h │ │ │ │ ├── gdbmach.h │ │ │ │ └── limits.h │ │ │ │ └── scripts │ │ │ │ └── linux.lds │ │ │ ├── config │ │ │ ├── .gitignore │ │ │ ├── colour.h │ │ │ ├── config.c │ │ │ ├── config_ethernet.c │ │ │ ├── config_fc.c │ │ │ ├── config_infiniband.c │ │ │ ├── config_net80211.c │ │ │ ├── config_romprefix.c │ │ │ ├── config_route.c │ │ │ ├── console.h │ │ │ ├── crypto.h │ │ │ ├── defaults.h │ │ │ ├── defaults │ │ │ │ ├── efi.h │ │ │ │ ├── linux.h │ │ │ │ └── pcbios.h │ │ │ ├── entropy.h │ │ │ ├── general.h │ │ │ ├── ioapi.h │ │ │ ├── isa.h │ │ │ ├── nap.h │ │ │ ├── reboot.h │ │ │ ├── sanboot.h │ │ │ ├── serial.h │ │ │ ├── settings.h │ │ │ ├── sideband.h │ │ │ ├── time.h │ │ │ ├── timer.h │ │ │ └── umalloc.h │ │ │ ├── core │ │ │ ├── acpi.c │ │ │ ├── ansicol.c │ │ │ ├── ansicoldef.c │ │ │ ├── ansiesc.c │ │ │ ├── asprintf.c │ │ │ ├── assert.c │ │ │ ├── base16.c │ │ │ ├── base64.c │ │ │ ├── basename.c │ │ │ ├── bitmap.c │ │ │ ├── blockdev.c │ │ │ ├── console.c │ │ │ ├── cpio.c │ │ │ ├── ctype.c │ │ │ ├── cwuri.c │ │ │ ├── debug.c │ │ │ ├── debug_md5.c │ │ │ ├── device.c │ │ │ ├── downloader.c │ │ │ ├── edd.c │ │ │ ├── errno.c │ │ │ ├── exec.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 │ │ │ ├── isqrt.c │ │ │ ├── job.c │ │ │ ├── linebuf.c │ │ │ ├── lineconsole.c │ │ │ ├── list.c │ │ │ ├── log.c │ │ │ ├── main.c │ │ │ ├── malloc.c │ │ │ ├── memblock.c │ │ │ ├── memmap_settings.c │ │ │ ├── menu.c │ │ │ ├── misc.c │ │ │ ├── monojob.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 │ │ │ ├── posix_io.c │ │ │ ├── process.c │ │ │ ├── profile.c │ │ │ ├── random.c │ │ │ ├── refcnt.c │ │ │ ├── resolv.c │ │ │ ├── serial.c │ │ │ ├── serial_console.c │ │ │ ├── settings.c │ │ │ ├── string.c │ │ │ ├── stringextra.c │ │ │ ├── strtoull.c │ │ │ ├── time.c │ │ │ ├── timer.c │ │ │ ├── uri.c │ │ │ ├── uuid.c │ │ │ ├── version.c │ │ │ ├── vsprintf.c │ │ │ ├── wchar.c │ │ │ ├── xfer.c │ │ │ └── xferbuf.c │ │ │ ├── crypto │ │ │ ├── aes_wrap.c │ │ │ ├── arc4.c │ │ │ ├── asn1.c │ │ │ ├── axtls │ │ │ │ ├── aes.c │ │ │ │ ├── bigint.h │ │ │ │ ├── bigint_impl.h │ │ │ │ ├── config.h │ │ │ │ ├── crypto.h │ │ │ │ └── os_port.h │ │ │ ├── axtls_aes.c │ │ │ ├── bigint.c │ │ │ ├── cbc.c │ │ │ ├── certstore.c │ │ │ ├── chap.c │ │ │ ├── cms.c │ │ │ ├── crc32.c │ │ │ ├── crypto_null.c │ │ │ ├── deflate.c │ │ │ ├── drbg.c │ │ │ ├── entropy.c │ │ │ ├── hash_df.c │ │ │ ├── hmac.c │ │ │ ├── hmac_drbg.c │ │ │ ├── md5.c │ │ │ ├── null_entropy.c │ │ │ ├── ocsp.c │ │ │ ├── privkey.c │ │ │ ├── random_nz.c │ │ │ ├── rbg.c │ │ │ ├── rootcert.c │ │ │ ├── rsa.c │ │ │ ├── sha1.c │ │ │ ├── sha1extra.c │ │ │ ├── sha256.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 │ │ │ │ ├── eisa.c │ │ │ │ ├── isa.c │ │ │ │ ├── isa_ids.c │ │ │ │ ├── isapnp.c │ │ │ │ ├── mca.c │ │ │ │ ├── pci.c │ │ │ │ ├── pci_settings.c │ │ │ │ ├── pcibackup.c │ │ │ │ ├── pciextra.c │ │ │ │ ├── pcivpd.c │ │ │ │ ├── virtio-pci.c │ │ │ │ └── virtio-ring.c │ │ │ ├── infiniband │ │ │ │ ├── MT25218_PRM.h │ │ │ │ ├── MT25408_PRM.h │ │ │ │ ├── arbel.c │ │ │ │ ├── arbel.h │ │ │ │ ├── hermon.c │ │ │ │ ├── hermon.h │ │ │ │ ├── linda.c │ │ │ │ ├── linda.h │ │ │ │ ├── linda_fw.c │ │ │ │ ├── mlx_bitops.h │ │ │ │ ├── qib7322.c │ │ │ │ ├── qib7322.h │ │ │ │ ├── qib_7220_regs.h │ │ │ │ ├── qib_7322_regs.h │ │ │ │ └── qib_genbits.pl │ │ │ ├── linux │ │ │ │ ├── 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 │ │ │ │ ├── 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_main.c │ │ │ │ │ ├── ath_regd.c │ │ │ │ │ ├── reg.h │ │ │ │ │ ├── regd.h │ │ │ │ │ └── regd_common.h │ │ │ │ ├── atl1e.c │ │ │ │ ├── atl1e.h │ │ │ │ ├── b44.c │ │ │ │ ├── b44.h │ │ │ │ ├── bnx2.c │ │ │ │ ├── bnx2.h │ │ │ │ ├── bnx2_fw.h │ │ │ │ ├── cs89x0.c │ │ │ │ ├── cs89x0.h │ │ │ │ ├── cs89x0.txt │ │ │ │ ├── davicom.c │ │ │ │ ├── depca.c │ │ │ │ ├── dmfe.c │ │ │ │ ├── eepro.c │ │ │ │ ├── eepro100.c │ │ │ │ ├── eepro100.h │ │ │ │ ├── efi │ │ │ │ │ ├── snp.h │ │ │ │ │ ├── snpnet.c │ │ │ │ │ ├── snpnet.h │ │ │ │ │ └── snponly.c │ │ │ │ ├── epic100.c │ │ │ │ ├── epic100.h │ │ │ │ ├── etherfabric.c │ │ │ │ ├── etherfabric.h │ │ │ │ ├── etherfabric_nic.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 │ │ │ │ ├── intelx.c │ │ │ │ ├── intelx.h │ │ │ │ ├── ipoib.c │ │ │ │ ├── jme.c │ │ │ │ ├── jme.h │ │ │ │ ├── legacy.c │ │ │ │ ├── mii.c │ │ │ │ ├── myri10ge.c │ │ │ │ ├── myri10ge_mcp.h │ │ │ │ ├── myson.c │ │ │ │ ├── myson.h │ │ │ │ ├── natsemi.c │ │ │ │ ├── natsemi.h │ │ │ │ ├── ne.c │ │ │ │ ├── ne2k_isa.c │ │ │ │ ├── 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 │ │ │ │ ├── sis190.c │ │ │ │ ├── sis190.h │ │ │ │ ├── sis900.c │ │ │ │ ├── sis900.h │ │ │ │ ├── skeleton.c │ │ │ │ ├── skeleton.h │ │ │ │ ├── skge.c │ │ │ │ ├── skge.h │ │ │ │ ├── sky2.c │ │ │ │ ├── sky2.h │ │ │ │ ├── smc9000.c │ │ │ │ ├── smc9000.h │ │ │ │ ├── sundance.c │ │ │ │ ├── tg3 │ │ │ │ │ ├── tg3.c │ │ │ │ │ ├── tg3.h │ │ │ │ │ ├── tg3_hw.c │ │ │ │ │ └── tg3_phy.c │ │ │ │ ├── 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 │ │ │ ├── hci │ │ │ ├── commands │ │ │ │ ├── autoboot_cmd.c │ │ │ │ ├── config_cmd.c │ │ │ │ ├── console_cmd.c │ │ │ │ ├── dhcp_cmd.c │ │ │ │ ├── digest_cmd.c │ │ │ │ ├── fcmgmt_cmd.c │ │ │ │ ├── gdbstub_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 │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── efi_image.c │ │ │ ├── elf.c │ │ │ ├── embedded.c │ │ │ ├── png.c │ │ │ ├── pnm.c │ │ │ ├── script.c │ │ │ └── segment.c │ │ │ ├── include │ │ │ ├── .gitignore │ │ │ ├── alloca.h │ │ │ ├── assert.h │ │ │ ├── big_bswap.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 │ │ │ │ ├── bofm.h │ │ │ │ ├── cbc.h │ │ │ │ ├── certstore.h │ │ │ │ ├── chap.h │ │ │ │ ├── cms.h │ │ │ │ ├── command.h │ │ │ │ ├── console.h │ │ │ │ ├── cpio.h │ │ │ │ ├── crc32.h │ │ │ │ ├── crypto.h │ │ │ │ ├── deflate.h │ │ │ │ ├── device.h │ │ │ │ ├── dhcp.h │ │ │ │ ├── dhcpopts.h │ │ │ │ ├── dhcppkt.h │ │ │ │ ├── dhcpv6.h │ │ │ │ ├── dns.h │ │ │ │ ├── downloader.h │ │ │ │ ├── drbg.h │ │ │ │ ├── eapol.h │ │ │ │ ├── edd.h │ │ │ │ ├── editbox.h │ │ │ │ ├── editstring.h │ │ │ │ ├── efi │ │ │ │ │ ├── Base.h │ │ │ │ │ ├── Guid │ │ │ │ │ │ ├── FileInfo.h │ │ │ │ │ │ ├── FileSystemInfo.h │ │ │ │ │ │ ├── HiiFormMapMethodGuid.h │ │ │ │ │ │ ├── HiiPlatformSetupFormset.h │ │ │ │ │ │ ├── MdeModuleHii.h │ │ │ │ │ │ ├── PcAnsi.h │ │ │ │ │ │ ├── SmBios.h │ │ │ │ │ │ └── WinCertificate.h │ │ │ │ │ ├── Ia32 │ │ │ │ │ │ └── ProcessorBind.h │ │ │ │ │ ├── IndustryStandard │ │ │ │ │ │ ├── Pci22.h │ │ │ │ │ │ └── PeImage.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 │ │ │ │ │ │ ├── BlockIo.h │ │ │ │ │ │ ├── ComponentName2.h │ │ │ │ │ │ ├── Cpu.h │ │ │ │ │ │ ├── DebugSupport.h │ │ │ │ │ │ ├── DevicePath.h │ │ │ │ │ │ ├── DevicePathToText.h │ │ │ │ │ │ ├── DriverBinding.h │ │ │ │ │ │ ├── FormBrowser2.h │ │ │ │ │ │ ├── HiiConfigAccess.h │ │ │ │ │ │ ├── HiiDatabase.h │ │ │ │ │ │ ├── LoadFile.h │ │ │ │ │ │ ├── LoadedImage.h │ │ │ │ │ │ ├── NetworkInterfaceIdentifier.h │ │ │ │ │ │ ├── PciIo.h │ │ │ │ │ │ ├── PciRootBridgeIo.h │ │ │ │ │ │ ├── SimpleFileSystem.h │ │ │ │ │ │ ├── SimpleNetwork.h │ │ │ │ │ │ ├── SimpleTextIn.h │ │ │ │ │ │ ├── SimpleTextInEx.h │ │ │ │ │ │ └── SimpleTextOut.h │ │ │ │ │ ├── Uefi.h │ │ │ │ │ ├── Uefi │ │ │ │ │ │ ├── UefiBaseType.h │ │ │ │ │ │ ├── UefiGpt.h │ │ │ │ │ │ ├── UefiInternalFormRepresentation.h │ │ │ │ │ │ ├── UefiMultiPhase.h │ │ │ │ │ │ ├── UefiPxe.h │ │ │ │ │ │ └── UefiSpec.h │ │ │ │ │ ├── X64 │ │ │ │ │ │ └── ProcessorBind.h │ │ │ │ │ ├── efi.h │ │ │ │ │ ├── efi_download.h │ │ │ │ │ ├── efi_driver.h │ │ │ │ │ ├── efi_file.h │ │ │ │ │ ├── efi_hii.h │ │ │ │ │ ├── efi_pci.h │ │ │ │ │ ├── efi_pci_api.h │ │ │ │ │ ├── efi_reboot.h │ │ │ │ │ ├── efi_smbios.h │ │ │ │ │ ├── efi_snp.h │ │ │ │ │ ├── efi_strings.h │ │ │ │ │ ├── efi_timer.h │ │ │ │ │ ├── efi_uaccess.h │ │ │ │ │ ├── efi_umalloc.h │ │ │ │ │ └── import.pl │ │ │ │ ├── eisa.h │ │ │ │ ├── elf.h │ │ │ │ ├── eltorito.h │ │ │ │ ├── entropy.h │ │ │ │ ├── errfile.h │ │ │ │ ├── errno │ │ │ │ │ ├── efi.h │ │ │ │ │ └── linux.h │ │ │ │ ├── errortab.h │ │ │ │ ├── eth_slow.h │ │ │ │ ├── ethernet.h │ │ │ │ ├── fakedhcp.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 │ │ │ │ ├── i2c.h │ │ │ │ ├── ib_cm.h │ │ │ │ ├── ib_cmrc.h │ │ │ │ ├── ib_mad.h │ │ │ │ ├── ib_mcast.h │ │ │ │ ├── ib_mi.h │ │ │ │ ├── ib_packet.h │ │ │ │ ├── ib_pathrec.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 │ │ │ │ ├── ip.h │ │ │ │ ├── ipoib.h │ │ │ │ ├── ipstat.h │ │ │ │ ├── ipv6.h │ │ │ │ ├── isa.h │ │ │ │ ├── isa_ids.h │ │ │ │ ├── isapnp.h │ │ │ │ ├── iscsi.h │ │ │ │ ├── iso9660.h │ │ │ │ ├── isqrt.h │ │ │ │ ├── job.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_timer.h │ │ │ │ │ ├── linux_uaccess.h │ │ │ │ │ └── linux_umalloc.h │ │ │ │ ├── linux_compat.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 │ │ │ │ ├── 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 │ │ │ │ ├── pci.h │ │ │ │ ├── pci_ids.h │ │ │ │ ├── pci_io.h │ │ │ │ ├── pcibackup.h │ │ │ │ ├── pcivpd.h │ │ │ │ ├── pending.h │ │ │ │ ├── ping.h │ │ │ │ ├── pinger.h │ │ │ │ ├── pixbuf.h │ │ │ │ ├── png.h │ │ │ │ ├── pnm.h │ │ │ │ ├── portmap.h │ │ │ │ ├── posix_io.h │ │ │ │ ├── privkey.h │ │ │ │ ├── process.h │ │ │ │ ├── profile.h │ │ │ │ ├── random_nz.h │ │ │ │ ├── rarp.h │ │ │ │ ├── rbg.h │ │ │ │ ├── rc80211.h │ │ │ │ ├── reboot.h │ │ │ │ ├── refcnt.h │ │ │ │ ├── resolv.h │ │ │ │ ├── retry.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 │ │ │ │ ├── shell.h │ │ │ │ ├── smbios.h │ │ │ │ ├── socket.h │ │ │ │ ├── spi.h │ │ │ │ ├── spi_bit.h │ │ │ │ ├── srp.h │ │ │ │ ├── syslog.h │ │ │ │ ├── tables.h │ │ │ │ ├── tcp.h │ │ │ │ ├── tcpip.h │ │ │ │ ├── test.h │ │ │ │ ├── tftp.h │ │ │ │ ├── threewire.h │ │ │ │ ├── time.h │ │ │ │ ├── timer.h │ │ │ │ ├── tls.h │ │ │ │ ├── uaccess.h │ │ │ │ ├── udp.h │ │ │ │ ├── umalloc.h │ │ │ │ ├── uri.h │ │ │ │ ├── uuid.h │ │ │ │ ├── validator.h │ │ │ │ ├── version.h │ │ │ │ ├── virtio-pci.h │ │ │ │ ├── virtio-ring.h │ │ │ │ ├── vlan.h │ │ │ │ ├── vsprintf.h │ │ │ │ ├── wpa.h │ │ │ │ ├── x509.h │ │ │ │ ├── xfer.h │ │ │ │ └── xferbuf.h │ │ │ ├── libgen.h │ │ │ ├── linux_api.h │ │ │ ├── little_bswap.h │ │ │ ├── mii.h │ │ │ ├── nic.h │ │ │ ├── old_tcp.h │ │ │ ├── pc_kbd.h │ │ │ ├── pcmcia-opts.h │ │ │ ├── pcmcia.h │ │ │ ├── readline │ │ │ │ └── readline.h │ │ │ ├── stdarg.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 │ │ │ │ ├── dhcpmgmt.h │ │ │ │ ├── fcmgmt.h │ │ │ │ ├── ifmgmt.h │ │ │ │ ├── imgmgmt.h │ │ │ │ ├── imgtrust.h │ │ │ │ ├── ipstat.h │ │ │ │ ├── iwmgmt.h │ │ │ │ ├── lotest.h │ │ │ │ ├── neighmgmt.h │ │ │ │ ├── nslookup.h │ │ │ │ ├── pingmgmt.h │ │ │ │ ├── profstat.h │ │ │ │ ├── prompt.h │ │ │ │ ├── route.h │ │ │ │ └── sync.h │ │ │ └── wchar.h │ │ │ ├── interface │ │ │ ├── bofm │ │ │ │ └── bofm.c │ │ │ ├── efi │ │ │ │ ├── efi_bofm.c │ │ │ │ ├── efi_console.c │ │ │ │ ├── efi_debug.c │ │ │ │ ├── efi_download.c │ │ │ │ ├── efi_driver.c │ │ │ │ ├── efi_file.c │ │ │ │ ├── efi_hii.c │ │ │ │ ├── efi_init.c │ │ │ │ ├── efi_pci.c │ │ │ │ ├── efi_reboot.c │ │ │ │ ├── efi_smbios.c │ │ │ │ ├── efi_snp.c │ │ │ │ ├── efi_snp_hii.c │ │ │ │ ├── efi_strings.c │ │ │ │ ├── efi_timer.c │ │ │ │ ├── efi_uaccess.c │ │ │ │ └── efi_umalloc.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 │ │ │ ├── libgcc │ │ │ ├── __divdi3.c │ │ │ ├── __moddi3.c │ │ │ ├── __udivdi3.c │ │ │ ├── __udivmoddi4.c │ │ │ ├── __umoddi3.c │ │ │ ├── icc.c │ │ │ ├── libgcc.h │ │ │ └── memcpy.c │ │ │ ├── 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_sma.c │ │ │ │ ├── ib_smc.c │ │ │ │ └── ib_srp.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 │ │ │ │ ├── oncrpc_iob.c │ │ │ │ └── portmap.c │ │ │ ├── ping.c │ │ │ ├── rarp.c │ │ │ ├── retry.c │ │ │ ├── socket.c │ │ │ ├── tcp.c │ │ │ ├── tcp │ │ │ │ ├── ftp.c │ │ │ │ ├── http.c │ │ │ │ ├── httpcore.c │ │ │ │ ├── https.c │ │ │ │ ├── iscsi.c │ │ │ │ ├── oncrpc.c │ │ │ │ └── syslogs.c │ │ │ ├── tcpip.c │ │ │ ├── tls.c │ │ │ ├── udp.c │ │ │ ├── udp │ │ │ │ ├── dhcp.c │ │ │ │ ├── dhcpv6.c │ │ │ │ ├── dns.c │ │ │ │ ├── slam.c │ │ │ │ ├── syslog.c │ │ │ │ └── tftp.c │ │ │ ├── validator.c │ │ │ └── vlan.c │ │ │ ├── tests │ │ │ ├── aes_cbc_test.c │ │ │ ├── base16_test.c │ │ │ ├── base64_test.c │ │ │ ├── bigint_test.c │ │ │ ├── bofm_test.c │ │ │ ├── byteswap_test.c │ │ │ ├── cbc_test.c │ │ │ ├── cbc_test.h │ │ │ ├── cms_test.c │ │ │ ├── comboot │ │ │ │ ├── shuffle-simple.asm │ │ │ │ └── version.asm │ │ │ ├── crc32_test.c │ │ │ ├── deflate_test.c │ │ │ ├── digest_test.c │ │ │ ├── digest_test.h │ │ │ ├── dns_test.c │ │ │ ├── entropy_sample.c │ │ │ ├── gdbstub_test.S │ │ │ ├── gdbstub_test.gdb │ │ │ ├── hash_df_test.c │ │ │ ├── hmac_drbg_test.c │ │ │ ├── ipv6_test.c │ │ │ ├── linebuf_test.c │ │ │ ├── list_test.c │ │ │ ├── math_test.c │ │ │ ├── md5_test.c │ │ │ ├── memcpy_test.c │ │ │ ├── ocsp_test.c │ │ │ ├── pixbuf_test.c │ │ │ ├── pixbuf_test.h │ │ │ ├── png_test.c │ │ │ ├── pnm_test.c │ │ │ ├── profile_test.c │ │ │ ├── pubkey_test.h │ │ │ ├── rsa_test.c │ │ │ ├── settings_test.c │ │ │ ├── sha1_test.c │ │ │ ├── sha256_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 │ │ │ ├── dhcpmgmt.c │ │ │ ├── fcmgmt.c │ │ │ ├── ifmgmt.c │ │ │ ├── imgmgmt.c │ │ │ ├── imgtrust.c │ │ │ ├── ipstat.c │ │ │ ├── iwmgmt.c │ │ │ ├── lotest.c │ │ │ ├── neighmgmt.c │ │ │ ├── nslookup.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 │ │ │ ├── efirom.c │ │ │ ├── einfo.c │ │ │ ├── elf2efi.c │ │ │ ├── fixrom.pl │ │ │ ├── fnrec.pl │ │ │ ├── geniso │ │ │ ├── genkeymap.pl │ │ │ ├── genliso │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ │ ├── init.c │ │ │ │ │ ├── kernel.c │ │ │ │ │ ├── kernel.h │ │ │ │ │ ├── ldscript │ │ │ │ │ ├── main.c │ │ │ │ │ ├── methods.c │ │ │ │ │ ├── mmutypes.h │ │ │ │ │ ├── ofmem.c │ │ │ │ │ ├── qemu.c │ │ │ │ │ ├── qemu.fs │ │ │ │ │ ├── qemu.h │ │ │ │ │ ├── start.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ └── 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 │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── Makefile │ │ ├── README │ │ ├── README.CSM │ │ ├── TODO │ │ ├── scripts │ │ │ ├── acpi_extract.py │ │ │ ├── acpi_extract_preprocess.py │ │ │ ├── buildrom.py │ │ │ ├── buildversion.sh │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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.c │ │ │ │ ├── biostables.c │ │ │ │ ├── coreboot.c │ │ │ │ ├── csm.c │ │ │ │ ├── dev-q35.h │ │ │ │ ├── lzmadecode.c │ │ │ │ ├── lzmadecode.h │ │ │ │ ├── mptable.c │ │ │ │ ├── mtrr.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-pcihp.dsl │ │ │ │ ├── ssdt-proc.dsl │ │ │ │ ├── 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 │ │ │ │ ├── pci.c │ │ │ │ ├── pci.h │ │ │ │ ├── pci_ids.h │ │ │ │ ├── pci_regs.h │ │ │ │ ├── pic.c │ │ │ │ ├── pic.h │ │ │ │ ├── ps2port.c │ │ │ │ ├── ps2port.h │ │ │ │ ├── pvscsi.c │ │ │ │ ├── pvscsi.h │ │ │ │ ├── ramdisk.c │ │ │ │ ├── rtc.c │ │ │ │ ├── rtc.h │ │ │ │ ├── serialio.c │ │ │ │ ├── serialio.h │ │ │ │ ├── timer.c │ │ │ │ ├── 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.c │ │ │ ├── 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 │ │ │ ├── stacks.c │ │ │ ├── stacks.h │ │ │ ├── std │ │ │ │ ├── LegacyBios.h │ │ │ │ ├── acpi.h │ │ │ │ ├── bda.h │ │ │ │ ├── disk.h │ │ │ │ ├── mptable.h │ │ │ │ ├── optionrom.h │ │ │ │ ├── pirtable.h │ │ │ │ ├── pmm.h │ │ │ │ ├── pnpbios.h │ │ │ │ ├── smbios.h │ │ │ │ └── vbe.h │ │ │ ├── string.c │ │ │ ├── string.h │ │ │ ├── system.c │ │ │ ├── types.h │ │ │ ├── util.h │ │ │ ├── vgahooks.c │ │ │ ├── x86.c │ │ │ └── x86.h │ │ └── vgasrc │ │ │ ├── Kconfig │ │ │ ├── bochsvga.c │ │ │ ├── bochsvga.h │ │ │ ├── cbvga.c │ │ │ ├── cbvga.h │ │ │ ├── clext.c │ │ │ ├── clext.h │ │ │ ├── geodevga.c │ │ │ ├── geodevga.h │ │ │ ├── stdvga.c │ │ │ ├── stdvga.h │ │ │ ├── stdvgaio.c │ │ │ ├── stdvgamodes.c │ │ │ ├── vbe.c │ │ │ ├── vgabios.c │ │ │ ├── vgabios.h │ │ │ ├── vgaentry.S │ │ │ ├── vgafb.c │ │ │ ├── vgafonts.c │ │ │ ├── vgahw.h │ │ │ ├── vgainit.c │ │ │ └── vgalayout.lds.S │ ├── sgabios │ │ ├── COPYING │ │ ├── Makefile │ │ ├── csum8.c │ │ ├── design.txt │ │ ├── rom16.ld │ │ ├── sgabios.S │ │ └── sgabios.h │ ├── u-boot │ │ ├── .gitignore │ │ ├── CREDITS │ │ ├── Kbuild │ │ ├── Licenses │ │ │ ├── Exceptions │ │ │ ├── README │ │ │ ├── bsd-2-clause.txt │ │ │ ├── bsd-3-clause.txt │ │ │ ├── eCos-2.0.txt │ │ │ ├── gpl-2.0.txt │ │ │ ├── ibm-pibs.txt │ │ │ ├── lgpl-2.0.txt │ │ │ └── lgpl-2.1.txt │ │ ├── MAKEALL │ │ ├── Makefile │ │ ├── README │ │ ├── api │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── api.c │ │ │ ├── api_display.c │ │ │ ├── api_net.c │ │ │ ├── api_platform-arm.c │ │ │ ├── api_platform-powerpc.c │ │ │ ├── api_private.h │ │ │ └── api_storage.c │ │ ├── arch │ │ │ ├── .gitignore │ │ │ ├── arc │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ └── arc700 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── arcregs.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot-arc.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ └── unaligned.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── memcmp.S │ │ │ │ │ ├── memcpy-700.S │ │ │ │ │ ├── memset.S │ │ │ │ │ ├── relocate.c │ │ │ │ │ ├── sections.c │ │ │ │ │ ├── strchr-700.S │ │ │ │ │ ├── strcmp.S │ │ │ │ │ ├── strcpy-700.S │ │ │ │ │ └── strlen.S │ │ │ ├── arm │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── arm1136 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── mx31 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── devices.c │ │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── mx35 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ │ ├── mx35_sdram.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ └── u-boot-spl.lds │ │ │ │ │ ├── arm1176 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bcm2835 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── init.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── mbox.c │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ └── tnetv107x │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── aemif.c │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ ├── init.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── mux.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── arm720t │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── tegra-common │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ └── spl.c │ │ │ │ │ │ ├── tegra114 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── cpu.c │ │ │ │ │ │ ├── tegra124 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── cpu.c │ │ │ │ │ │ ├── tegra20 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── cpu.c │ │ │ │ │ │ └── tegra30 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── cpu.c │ │ │ │ │ ├── arm920t │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── a320 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── at91 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── at91rm9200_devices.c │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── ep93xx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── imx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── ks8695 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── s3c24x0 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cpu_info.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ └── start.S │ │ │ │ │ ├── arm926ejs │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── armada100 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── dram.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── at91 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── at91cap9_devices.c │ │ │ │ │ │ │ ├── at91sam9260_devices.c │ │ │ │ │ │ │ ├── at91sam9261_devices.c │ │ │ │ │ │ │ ├── at91sam9263_devices.c │ │ │ │ │ │ │ ├── at91sam9m10g45_devices.c │ │ │ │ │ │ │ ├── at91sam9n12_devices.c │ │ │ │ │ │ │ ├── at91sam9rl_devices.c │ │ │ │ │ │ │ ├── at91sam9x5_devices.c │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── eflash.c │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── davinci │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── ksz8873.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── lxt972.c │ │ │ │ │ │ │ ├── misc.c │ │ │ │ │ │ │ ├── pinmux.c │ │ │ │ │ │ │ ├── psc.c │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ ├── spl.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── kirkwood │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── dram.c │ │ │ │ │ │ │ ├── mpp.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── lpc32xx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── clk.c │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── devices.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── mb86r0x │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── mx25 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── mx27 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── nomadik │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── omap │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cpuinfo.c │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── orion5x │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── dram.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── pantheon │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── dram.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── spear │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ ├── spear600.c │ │ │ │ │ │ │ ├── spl.c │ │ │ │ │ │ │ ├── spl_boot.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 │ │ │ │ │ │ └── versatile │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── arm946es │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ └── start.S │ │ │ │ │ ├── arm_intcm │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ └── start.S │ │ │ │ │ ├── armv7 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── am33xx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ ├── clock_am33xx.c │ │ │ │ │ │ │ ├── clock_am43xx.c │ │ │ │ │ │ │ ├── clock_ti814x.c │ │ │ │ │ │ │ ├── clock_ti816x.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ │ ├── emif4.c │ │ │ │ │ │ │ ├── mem.c │ │ │ │ │ │ │ ├── mux.c │ │ │ │ │ │ │ ├── sys_info.c │ │ │ │ │ │ │ └── u-boot-spl.lds │ │ │ │ │ │ ├── arch_timer.c │ │ │ │ │ │ ├── at91 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ ├── sama5d3_devices.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── bcm281xx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── clk-bcm281xx.c │ │ │ │ │ │ │ ├── clk-bsc.c │ │ │ │ │ │ │ ├── clk-core.c │ │ │ │ │ │ │ ├── clk-core.h │ │ │ │ │ │ │ ├── clk-sdio.c │ │ │ │ │ │ │ └── reset.c │ │ │ │ │ │ ├── cache_v7.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── exynos │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── lowlevel_init.c │ │ │ │ │ │ │ ├── pinmux.c │ │ │ │ │ │ │ ├── power.c │ │ │ │ │ │ │ ├── soc.c │ │ │ │ │ │ │ ├── spl_boot.c │ │ │ │ │ │ │ ├── system.c │ │ │ │ │ │ │ └── tzpc.c │ │ │ │ │ │ ├── highbank │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── keystone │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── aemif.c │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ ├── cmd_clock.c │ │ │ │ │ │ │ ├── cmd_mon.c │ │ │ │ │ │ │ ├── ddr3.c │ │ │ │ │ │ │ ├── init.c │ │ │ │ │ │ │ ├── keystone_nav.c │ │ │ │ │ │ │ ├── msmc.c │ │ │ │ │ │ │ ├── psc.c │ │ │ │ │ │ │ └── spl.c │ │ │ │ │ │ ├── kona-common │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── clk-stubs.c │ │ │ │ │ │ │ ├── hwinit-common.c │ │ │ │ │ │ │ └── s_init.c │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── mx5 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ └── soc.c │ │ │ │ │ │ ├── mx6 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ ├── hab.c │ │ │ │ │ │ │ └── soc.c │ │ │ │ │ │ ├── nonsec_virt.S │ │ │ │ │ │ ├── omap-common │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── abb.c │ │ │ │ │ │ │ ├── boot-common.c │ │ │ │ │ │ │ ├── clocks-common.c │ │ │ │ │ │ │ ├── emif-common.c │ │ │ │ │ │ │ ├── hwinit-common.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── mem-common.c │ │ │ │ │ │ │ ├── pipe3-phy.c │ │ │ │ │ │ │ ├── pipe3-phy.h │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ ├── sata.c │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ ├── u-boot-spl.lds │ │ │ │ │ │ │ ├── utils.c │ │ │ │ │ │ │ └── vc.c │ │ │ │ │ │ ├── omap3 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── am35x_musb.c │ │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── emac.c │ │ │ │ │ │ │ ├── emif4.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── mem.c │ │ │ │ │ │ │ ├── sdrc.c │ │ │ │ │ │ │ ├── spl_id_nand.c │ │ │ │ │ │ │ └── sys_info.c │ │ │ │ │ │ ├── omap4 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── emif.c │ │ │ │ │ │ │ ├── hw_data.c │ │ │ │ │ │ │ ├── hwinit.c │ │ │ │ │ │ │ ├── prcm-regs.c │ │ │ │ │ │ │ └── sdram_elpida.c │ │ │ │ │ │ ├── omap5 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── abb.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── emif.c │ │ │ │ │ │ │ ├── hw_data.c │ │ │ │ │ │ │ ├── hwinit.c │ │ │ │ │ │ │ ├── prcm-regs.c │ │ │ │ │ │ │ └── sdram.c │ │ │ │ │ │ ├── rmobile │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ │ ├── cpu_info-r8a7740.c │ │ │ │ │ │ │ ├── cpu_info-r8a7790.c │ │ │ │ │ │ │ ├── cpu_info-r8a7791.c │ │ │ │ │ │ │ ├── cpu_info-sh73a0.c │ │ │ │ │ │ │ ├── cpu_info.c │ │ │ │ │ │ │ ├── emac.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── lowlevel_init_ca15.S │ │ │ │ │ │ │ ├── pfc-r8a7740.c │ │ │ │ │ │ │ ├── pfc-r8a7790.c │ │ │ │ │ │ │ ├── pfc-r8a7790.h │ │ │ │ │ │ │ ├── pfc-r8a7791.c │ │ │ │ │ │ │ ├── pfc-sh73a0.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── s5p-common │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cpu_info.c │ │ │ │ │ │ │ ├── pwm.c │ │ │ │ │ │ │ ├── sromc.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── s5pc1xx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ └── reset.S │ │ │ │ │ │ ├── socfpga │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── clock_manager.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── freeze_controller.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── misc.c │ │ │ │ │ │ │ ├── reset_manager.c │ │ │ │ │ │ │ ├── spl.c │ │ │ │ │ │ │ ├── system_manager.c │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ └── u-boot-spl.lds │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── syslib.c │ │ │ │ │ │ ├── tegra-common │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── cmd_enterrcm.c │ │ │ │ │ │ ├── tegra114 │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ ├── tegra124 │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ ├── tegra20 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── display.c │ │ │ │ │ │ │ └── pwm.c │ │ │ │ │ │ ├── tegra30 │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ ├── u8500 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── lowlevel.S │ │ │ │ │ │ │ ├── prcmu.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── vf610 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── virt-v7.c │ │ │ │ │ │ └── zynq │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── clk.c │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── ddrc.c │ │ │ │ │ │ │ ├── slcr.c │ │ │ │ │ │ │ ├── spl.c │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ ├── u-boot-spl.lds │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── armv8 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ ├── cache_v8.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── exceptions.S │ │ │ │ │ │ ├── generic_timer.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── tlb.S │ │ │ │ │ │ ├── transition.S │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── at91-common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mpddrc.c │ │ │ │ │ │ ├── phy.c │ │ │ │ │ │ ├── spl.c │ │ │ │ │ │ └── u-boot-spl.lds │ │ │ │ │ ├── pxa │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpuinfo.c │ │ │ │ │ │ ├── pxa2xx.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ └── usb.c │ │ │ │ │ ├── sa1100 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── tegra-common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ap.c │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── pinmux-common.c │ │ │ │ │ │ └── sys_info.c │ │ │ │ │ ├── tegra114-common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── funcmux.c │ │ │ │ │ │ └── pinmux.c │ │ │ │ │ ├── tegra124-common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── funcmux.c │ │ │ │ │ │ └── pinmux.c │ │ │ │ │ ├── tegra20-common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── crypto.c │ │ │ │ │ │ ├── crypto.h │ │ │ │ │ │ ├── emc.c │ │ │ │ │ │ ├── funcmux.c │ │ │ │ │ │ ├── pinmux.c │ │ │ │ │ │ ├── pmu.c │ │ │ │ │ │ ├── warmboot.c │ │ │ │ │ │ ├── warmboot_avp.c │ │ │ │ │ │ └── warmboot_avp.h │ │ │ │ │ ├── tegra30-common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── funcmux.c │ │ │ │ │ │ └── pinmux.c │ │ │ │ │ ├── u-boot-spl.lds │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── dts │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── exynos4.dtsi │ │ │ │ │ ├── exynos4210-origen.dts │ │ │ │ │ ├── exynos4210-trats.dts │ │ │ │ │ ├── exynos4210-universal_c210.dts │ │ │ │ │ ├── exynos4412-trats2.dts │ │ │ │ │ ├── exynos5.dtsi │ │ │ │ │ ├── exynos5250-arndale.dts │ │ │ │ │ ├── exynos5250-smdk5250.dts │ │ │ │ │ ├── exynos5250-snow.dts │ │ │ │ │ ├── exynos5250.dtsi │ │ │ │ │ ├── exynos5420-smdk5420.dts │ │ │ │ │ ├── exynos5420.dtsi │ │ │ │ │ ├── imx6q-sabreauto.dts │ │ │ │ │ ├── skeleton.dtsi │ │ │ │ │ ├── tegra114-dalmore.dts │ │ │ │ │ ├── tegra114.dtsi │ │ │ │ │ ├── tegra124-jetson-tk1.dts │ │ │ │ │ ├── tegra124-venice2.dts │ │ │ │ │ ├── tegra124.dtsi │ │ │ │ │ ├── tegra20-colibri_t20_iris.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-ventana.dts │ │ │ │ │ ├── tegra20-whistler.dts │ │ │ │ │ ├── tegra20.dtsi │ │ │ │ │ ├── tegra30-beaver.dts │ │ │ │ │ ├── tegra30-cardhu.dts │ │ │ │ │ ├── tegra30-tamonten.dtsi │ │ │ │ │ ├── tegra30-tec-ng.dts │ │ │ │ │ ├── tegra30.dtsi │ │ │ │ │ ├── zynq-7000.dtsi │ │ │ │ │ ├── zynq-microzed.dts │ │ │ │ │ ├── zynq-zc702.dts │ │ │ │ │ ├── zynq-zc706.dts │ │ │ │ │ ├── zynq-zc770-xm010.dts │ │ │ │ │ ├── zynq-zc770-xm012.dts │ │ │ │ │ ├── zynq-zc770-xm013.dts │ │ │ │ │ └── zynq-zed.dts │ │ │ │ ├── imx-common │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmd_bmode.c │ │ │ │ │ ├── cmd_hdmidet.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── i2c-mxv7.c │ │ │ │ │ ├── iomux-v3.c │ │ │ │ │ ├── misc.c │ │ │ │ │ ├── sata.c │ │ │ │ │ ├── speed.c │ │ │ │ │ └── timer.c │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── arch-a320 │ │ │ │ │ │ └── a320.h │ │ │ │ │ │ ├── arch-am33xx │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── clock_ti81xx.h │ │ │ │ │ │ ├── clocks_am33xx.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── ddr_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-arm720t │ │ │ │ │ │ └── hardware.h │ │ │ │ │ │ ├── arch-armada100 │ │ │ │ │ │ ├── armada100.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── mfp.h │ │ │ │ │ │ ├── spi.h │ │ │ │ │ │ └── utmi-armada100.h │ │ │ │ │ │ ├── arch-armv7 │ │ │ │ │ │ ├── globaltimer.h │ │ │ │ │ │ ├── sysctrl.h │ │ │ │ │ │ ├── systimer.h │ │ │ │ │ │ └── wdt.h │ │ │ │ │ │ ├── arch-at91 │ │ │ │ │ │ ├── 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_rtt.h │ │ │ │ │ │ ├── at91_shdwn.h │ │ │ │ │ │ ├── at91_spi.h │ │ │ │ │ │ ├── at91_st.h │ │ │ │ │ │ ├── at91_tc.h │ │ │ │ │ │ ├── at91_wdt.h │ │ │ │ │ │ ├── at91cap9.h │ │ │ │ │ │ ├── at91cap9_matrix.h │ │ │ │ │ │ ├── at91rm9200.h │ │ │ │ │ │ ├── at91sam9260.h │ │ │ │ │ │ ├── at91sam9260_matrix.h │ │ │ │ │ │ ├── at91sam9261.h │ │ │ │ │ │ ├── at91sam9261_matrix.h │ │ │ │ │ │ ├── at91sam9263.h │ │ │ │ │ │ ├── at91sam9263_matrix.h │ │ │ │ │ │ ├── at91sam9_matrix.h │ │ │ │ │ │ ├── at91sam9_sdramc.h │ │ │ │ │ │ ├── at91sam9_smc.h │ │ │ │ │ │ ├── at91sam9g45.h │ │ │ │ │ │ ├── at91sam9g45_matrix.h │ │ │ │ │ │ ├── at91sam9rl.h │ │ │ │ │ │ ├── at91sam9rl_matrix.h │ │ │ │ │ │ ├── at91sam9x5.h │ │ │ │ │ │ ├── at91sam9x5_matrix.h │ │ │ │ │ │ ├── atmel_mpddrc.h │ │ │ │ │ │ ├── atmel_usba_udc.h │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── sama5d3.h │ │ │ │ │ │ ├── sama5d3_smc.h │ │ │ │ │ │ └── spl.h │ │ │ │ │ │ ├── arch-bcm281xx │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── sysmap.h │ │ │ │ │ │ ├── arch-bcm2835 │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── mbox.h │ │ │ │ │ │ ├── sdhci.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ └── wdog.h │ │ │ │ │ │ ├── arch-davinci │ │ │ │ │ │ ├── aintc_defs.h │ │ │ │ │ │ ├── da850_lowlevel.h │ │ │ │ │ │ ├── da8xx-usb.h │ │ │ │ │ │ ├── davinci_misc.h │ │ │ │ │ │ ├── ddr2_defs.h │ │ │ │ │ │ ├── dm365_lowlevel.h │ │ │ │ │ │ ├── emac_defs.h │ │ │ │ │ │ ├── emif_defs.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── i2c_defs.h │ │ │ │ │ │ ├── nand_defs.h │ │ │ │ │ │ ├── pinmux_defs.h │ │ │ │ │ │ ├── pll_defs.h │ │ │ │ │ │ ├── psc_defs.h │ │ │ │ │ │ ├── sdmmc_defs.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ ├── syscfg_defs.h │ │ │ │ │ │ └── timer_defs.h │ │ │ │ │ │ ├── arch-ep93xx │ │ │ │ │ │ └── ep93xx.h │ │ │ │ │ │ ├── arch-exynos │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── arch-imx │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ └── imx-regs.h │ │ │ │ │ │ ├── arch-keystone │ │ │ │ │ │ ├── clock-k2hk.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── clock_defs.h │ │ │ │ │ │ ├── emac_defs.h │ │ │ │ │ │ ├── emif_defs.h │ │ │ │ │ │ ├── hardware-k2hk.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── i2c_defs.h │ │ │ │ │ │ ├── keystone_nav.h │ │ │ │ │ │ ├── nand_defs.h │ │ │ │ │ │ ├── psc_defs.h │ │ │ │ │ │ └── spl.h │ │ │ │ │ │ ├── arch-kirkwood │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── kirkwood.h │ │ │ │ │ │ ├── kw88f6192.h │ │ │ │ │ │ ├── kw88f6281.h │ │ │ │ │ │ ├── mpp.h │ │ │ │ │ │ └── spi.h │ │ │ │ │ │ ├── arch-ks8695 │ │ │ │ │ │ └── platform.h │ │ │ │ │ │ ├── arch-lpc32xx │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── emc.h │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ └── wdt.h │ │ │ │ │ │ ├── arch-mb86r0x │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ └── mb86r0x.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 │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ ├── arch-mx5 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── crm_regs.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ ├── iomux-mx51.h │ │ │ │ │ │ ├── iomux-mx53.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ ├── arch-mx6 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── crm_regs.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hab.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ ├── iomux.h │ │ │ │ │ │ ├── mx6-ddr.h │ │ │ │ │ │ ├── mx6-pins.h │ │ │ │ │ │ ├── mx6dl-ddr.h │ │ │ │ │ │ ├── mx6dl_pins.h │ │ │ │ │ │ ├── mx6q-ddr.h │ │ │ │ │ │ ├── mx6q_pins.h │ │ │ │ │ │ ├── mx6sl_pins.h │ │ │ │ │ │ ├── mxc_hdmi.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-lcdif.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-nomadik │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── mtu.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 │ │ │ │ │ │ ├── omap3-regs.h │ │ │ │ │ │ ├── omap3.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ ├── arch-omap4 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── ehci.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ ├── mmc_host_def.h │ │ │ │ │ │ ├── mux_omap4.h │ │ │ │ │ │ ├── omap.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ ├── arch-omap5 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── ehci.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ ├── mmc_host_def.h │ │ │ │ │ │ ├── mux_dra7xx.h │ │ │ │ │ │ ├── mux_omap5.h │ │ │ │ │ │ ├── omap.h │ │ │ │ │ │ ├── sata.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ ├── arch-orion5x │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── mv88f5182.h │ │ │ │ │ │ └── orion5x.h │ │ │ │ │ │ ├── arch-pantheon │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── mfp.h │ │ │ │ │ │ └── pantheon.h │ │ │ │ │ │ ├── arch-pxa │ │ │ │ │ │ ├── bitfield.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── pxa-regs.h │ │ │ │ │ │ ├── pxa.h │ │ │ │ │ │ ├── regs-mmc.h │ │ │ │ │ │ ├── regs-uart.h │ │ │ │ │ │ └── regs-usb.h │ │ │ │ │ │ ├── arch-rmobile │ │ │ │ │ │ ├── ehci-rmobile.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── irqs.h │ │ │ │ │ │ ├── r8a7740-gpio.h │ │ │ │ │ │ ├── r8a7740.h │ │ │ │ │ │ ├── r8a7790-gpio.h │ │ │ │ │ │ ├── r8a7790.h │ │ │ │ │ │ ├── r8a7791-gpio.h │ │ │ │ │ │ ├── r8a7791.h │ │ │ │ │ │ ├── rmobile.h │ │ │ │ │ │ ├── sh73a0-gpio.h │ │ │ │ │ │ ├── sh73a0.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ ├── arch-s3c24x0 │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── iomux.h │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ ├── s3c2400.h │ │ │ │ │ │ ├── s3c2410.h │ │ │ │ │ │ ├── s3c2440.h │ │ │ │ │ │ ├── s3c24x0.h │ │ │ │ │ │ └── s3c24x0_cpu.h │ │ │ │ │ │ ├── arch-s5pc1xx │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── mmc.h │ │ │ │ │ │ ├── power.h │ │ │ │ │ │ ├── pwm.h │ │ │ │ │ │ ├── sromc.h │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ └── watchdog.h │ │ │ │ │ │ ├── arch-sa1100 │ │ │ │ │ │ └── bitfield.h │ │ │ │ │ │ ├── arch-socfpga │ │ │ │ │ │ ├── clock_manager.h │ │ │ │ │ │ ├── dwmmc.h │ │ │ │ │ │ ├── freeze_controller.h │ │ │ │ │ │ ├── reset_manager.h │ │ │ │ │ │ ├── socfpga_base_addrs.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ ├── system_manager.h │ │ │ │ │ │ └── timer.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-tegra │ │ │ │ │ │ ├── ap.h │ │ │ │ │ │ ├── apb_misc.h │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── clk_rst.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── funcmux.h │ │ │ │ │ │ ├── fuse.h │ │ │ │ │ │ ├── gp_padctrl.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── mmc.h │ │ │ │ │ │ ├── pinmux.h │ │ │ │ │ │ ├── pmc.h │ │ │ │ │ │ ├── scu.h │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ ├── tegra.h │ │ │ │ │ │ ├── tegra_i2c.h │ │ │ │ │ │ ├── tegra_mmc.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ ├── usb.h │ │ │ │ │ │ └── warmboot.h │ │ │ │ │ │ ├── arch-tegra114 │ │ │ │ │ │ ├── clock-tables.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── flow.h │ │ │ │ │ │ ├── funcmux.h │ │ │ │ │ │ ├── gp_padctrl.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── pinmux.h │ │ │ │ │ │ ├── pmu.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ ├── sysctr.h │ │ │ │ │ │ ├── tegra.h │ │ │ │ │ │ └── tegra114_spi.h │ │ │ │ │ │ ├── arch-tegra124 │ │ │ │ │ │ ├── ahb.h │ │ │ │ │ │ ├── clock-tables.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── flow.h │ │ │ │ │ │ ├── funcmux.h │ │ │ │ │ │ ├── gp_padctrl.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── pinmux.h │ │ │ │ │ │ ├── pmu.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ ├── sysctr.h │ │ │ │ │ │ └── tegra.h │ │ │ │ │ │ ├── arch-tegra20 │ │ │ │ │ │ ├── clock-tables.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── dc.h │ │ │ │ │ │ ├── display.h │ │ │ │ │ │ ├── emc.h │ │ │ │ │ │ ├── flow.h │ │ │ │ │ │ ├── funcmux.h │ │ │ │ │ │ ├── gp_padctrl.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── pinmux.h │ │ │ │ │ │ ├── pmu.h │ │ │ │ │ │ ├── pwm.h │ │ │ │ │ │ ├── sdram_param.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ ├── tegra.h │ │ │ │ │ │ ├── tegra20_sflash.h │ │ │ │ │ │ └── tegra20_slink.h │ │ │ │ │ │ ├── arch-tegra30 │ │ │ │ │ │ ├── clock-tables.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── flow.h │ │ │ │ │ │ ├── funcmux.h │ │ │ │ │ │ ├── gp_padctrl.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── pinmux.h │ │ │ │ │ │ ├── pmu.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ └── tegra.h │ │ │ │ │ │ ├── arch-tnetv107x │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── emif_defs.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── mux.h │ │ │ │ │ │ └── nand_defs.h │ │ │ │ │ │ ├── arch-u8500 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── db8500_gpio.h │ │ │ │ │ │ ├── db8500_pincfg.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── prcmu.h │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ └── u8500.h │ │ │ │ │ │ ├── arch-vf610 │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── crm_regs.h │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ └── iomux-vf610.h │ │ │ │ │ │ ├── arch-zynq │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ ├── armv7.h │ │ │ │ │ │ ├── armv8 │ │ │ │ │ │ └── mmu.h │ │ │ │ │ │ ├── assembler.h │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── bootm.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── davinci_rtc.h │ │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ │ ├── ehci-omap.h │ │ │ │ │ │ ├── emif.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── gic.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── imx-common │ │ │ │ │ │ ├── boot_mode.h │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ │ ├── iomux-v3.h │ │ │ │ │ │ ├── mx5_video.h │ │ │ │ │ │ ├── mxc_i2c.h │ │ │ │ │ │ ├── regs-apbh.h │ │ │ │ │ │ ├── regs-bch.h │ │ │ │ │ │ ├── regs-common.h │ │ │ │ │ │ ├── regs-gpmi.h │ │ │ │ │ │ └── sata.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── kona-common │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ └── kona_sdhci.h │ │ │ │ │ │ ├── linkage.h │ │ │ │ │ │ ├── mach-types.h │ │ │ │ │ │ ├── macro.h │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ ├── omap_boot.h │ │ │ │ │ │ ├── omap_common.h │ │ │ │ │ │ ├── omap_gpio.h │ │ │ │ │ │ ├── omap_mmc.h │ │ │ │ │ │ ├── omap_musb.h │ │ │ │ │ │ ├── pl310.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── proc-armv │ │ │ │ │ │ ├── domain.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ └── system.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot-arm.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ ├── unaligned.h │ │ │ │ │ │ └── utils.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── _ashldi3.S │ │ │ │ │ ├── _ashrdi3.S │ │ │ │ │ ├── _divsi3.S │ │ │ │ │ ├── _lshrdi3.S │ │ │ │ │ ├── _modsi3.S │ │ │ │ │ ├── _udivsi3.S │ │ │ │ │ ├── _umodsi3.S │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm-fdt.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── cache-cp15.c │ │ │ │ │ ├── cache-pl310.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── crt0.S │ │ │ │ │ ├── crt0_64.S │ │ │ │ │ ├── div0.c │ │ │ │ │ ├── eabi_compat.c │ │ │ │ │ ├── gic_64.S │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── interrupts_64.c │ │ │ │ │ ├── memcpy.S │ │ │ │ │ ├── memset.S │ │ │ │ │ ├── relocate.S │ │ │ │ │ ├── relocate_64.S │ │ │ │ │ ├── reset.c │ │ │ │ │ ├── sections.c │ │ │ │ │ └── spl.c │ │ │ ├── avr32 │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── at32ap700x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clk.c │ │ │ │ │ │ ├── mmu.c │ │ │ │ │ │ ├── portmux.c │ │ │ │ │ │ └── sm.h │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── exception.c │ │ │ │ │ ├── hsdramc.c │ │ │ │ │ ├── hsdramc1.h │ │ │ │ │ ├── hsmc3.h │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── portmux-gpio.c │ │ │ │ │ ├── portmux-pio.c │ │ │ │ │ ├── start.S │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── arch-at32ap700x │ │ │ │ │ │ ├── addrspace.h │ │ │ │ │ │ ├── cacheflush.h │ │ │ │ │ │ ├── chip-features.h │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── hmatrix.h │ │ │ │ │ │ ├── mmu.h │ │ │ │ │ │ └── portmux.h │ │ │ │ │ │ ├── arch-common │ │ │ │ │ │ └── portmux-pio.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── hmatrix-common.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── sdram.h │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── sysreg.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ └── unaligned.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ └── memset.S │ │ │ ├── blackfin │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.S │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── init.S │ │ │ │ │ ├── init.lds.S │ │ │ │ │ ├── initcode.c │ │ │ │ │ ├── initcode.h │ │ │ │ │ ├── interrupt.S │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── jtag-console.c │ │ │ │ │ ├── os_log.c │ │ │ │ │ ├── reset.c │ │ │ │ │ ├── start.S │ │ │ │ │ ├── traps.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── bfin_logo_230x230_gzip.h │ │ │ │ │ │ ├── bfin_logo_230x230_lzma.h │ │ │ │ │ │ ├── bfin_logo_rgb565_230x230_gzip.h │ │ │ │ │ │ ├── bfin_logo_rgb565_230x230_lzma.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── blackfin.h │ │ │ │ │ │ ├── blackfin_cdef.h │ │ │ │ │ │ ├── blackfin_def.h │ │ │ │ │ │ ├── blackfin_local.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── config-pre.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── cplb.h │ │ │ │ │ │ ├── deferred.h │ │ │ │ │ │ ├── delay.h │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ ├── entry.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── linkage.h │ │ │ │ │ │ ├── mach-bf506 │ │ │ │ │ │ ├── BF504_cdef.h │ │ │ │ │ │ ├── BF504_def.h │ │ │ │ │ │ ├── BF506_cdef.h │ │ │ │ │ │ ├── BF506_def.h │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ ├── mach-bf518 │ │ │ │ │ │ ├── BF512_cdef.h │ │ │ │ │ │ ├── BF512_def.h │ │ │ │ │ │ ├── BF514_cdef.h │ │ │ │ │ │ ├── BF514_def.h │ │ │ │ │ │ ├── BF516_cdef.h │ │ │ │ │ │ ├── BF516_def.h │ │ │ │ │ │ ├── BF518_cdef.h │ │ │ │ │ │ ├── BF518_def.h │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ ├── mach-bf527 │ │ │ │ │ │ ├── BF522_cdef.h │ │ │ │ │ │ ├── BF522_def.h │ │ │ │ │ │ ├── BF523_cdef.h │ │ │ │ │ │ ├── BF523_def.h │ │ │ │ │ │ ├── BF524_cdef.h │ │ │ │ │ │ ├── BF524_def.h │ │ │ │ │ │ ├── BF525_cdef.h │ │ │ │ │ │ ├── BF525_def.h │ │ │ │ │ │ ├── BF526_cdef.h │ │ │ │ │ │ ├── BF526_def.h │ │ │ │ │ │ ├── BF527_cdef.h │ │ │ │ │ │ ├── BF527_def.h │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── mem_map.h │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ ├── mach-bf533 │ │ │ │ │ │ ├── BF531_cdef.h │ │ │ │ │ │ ├── BF531_def.h │ │ │ │ │ │ ├── BF532_cdef.h │ │ │ │ │ │ ├── BF532_def.h │ │ │ │ │ │ ├── BF533_cdef.h │ │ │ │ │ │ ├── BF533_def.h │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ ├── mach-bf537 │ │ │ │ │ │ ├── BF534_cdef.h │ │ │ │ │ │ ├── BF534_def.h │ │ │ │ │ │ ├── BF536_cdef.h │ │ │ │ │ │ ├── BF536_def.h │ │ │ │ │ │ ├── BF537_cdef.h │ │ │ │ │ │ ├── BF537_def.h │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ ├── mach-bf538 │ │ │ │ │ │ ├── BF538_cdef.h │ │ │ │ │ │ ├── BF538_def.h │ │ │ │ │ │ ├── BF539_cdef.h │ │ │ │ │ │ ├── BF539_def.h │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ ├── mach-bf548 │ │ │ │ │ │ ├── ADSP-EDN-BF542-extended_cdef.h │ │ │ │ │ │ ├── ADSP-EDN-BF542-extended_def.h │ │ │ │ │ │ ├── ADSP-EDN-BF544-extended_cdef.h │ │ │ │ │ │ ├── ADSP-EDN-BF544-extended_def.h │ │ │ │ │ │ ├── ADSP-EDN-BF547-extended_cdef.h │ │ │ │ │ │ ├── ADSP-EDN-BF547-extended_def.h │ │ │ │ │ │ ├── ADSP-EDN-BF548-extended_cdef.h │ │ │ │ │ │ ├── ADSP-EDN-BF548-extended_def.h │ │ │ │ │ │ ├── ADSP-EDN-BF549-extended_cdef.h │ │ │ │ │ │ ├── ADSP-EDN-BF549-extended_def.h │ │ │ │ │ │ ├── BF542_cdef.h │ │ │ │ │ │ ├── BF542_def.h │ │ │ │ │ │ ├── BF544_cdef.h │ │ │ │ │ │ ├── BF544_def.h │ │ │ │ │ │ ├── BF547_cdef.h │ │ │ │ │ │ ├── BF547_def.h │ │ │ │ │ │ ├── BF548_cdef.h │ │ │ │ │ │ ├── BF548_def.h │ │ │ │ │ │ ├── BF549_cdef.h │ │ │ │ │ │ ├── BF549_def.h │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── mem_map.h │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ ├── mach-bf561 │ │ │ │ │ │ ├── BF561_cdef.h │ │ │ │ │ │ ├── BF561_def.h │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ ├── mach-bf609 │ │ │ │ │ │ ├── BF609_cdef.h │ │ │ │ │ │ ├── BF609_def.h │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ ├── mach-common │ │ │ │ │ │ ├── ADSP-EDN-core_cdef.h │ │ │ │ │ │ ├── ADSP-EDN-core_def.h │ │ │ │ │ │ └── bits │ │ │ │ │ │ │ ├── bootrom.h │ │ │ │ │ │ │ ├── cgu.h │ │ │ │ │ │ │ ├── core.h │ │ │ │ │ │ │ ├── dde.h │ │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ │ ├── ebiu.h │ │ │ │ │ │ │ ├── emac.h │ │ │ │ │ │ │ ├── eppi.h │ │ │ │ │ │ │ ├── mpu.h │ │ │ │ │ │ │ ├── otp.h │ │ │ │ │ │ │ ├── pata.h │ │ │ │ │ │ │ ├── pll.h │ │ │ │ │ │ │ ├── ports-a.h │ │ │ │ │ │ │ ├── ports-b.h │ │ │ │ │ │ │ ├── ports-c.h │ │ │ │ │ │ │ ├── ports-d.h │ │ │ │ │ │ │ ├── ports-e.h │ │ │ │ │ │ │ ├── ports-f.h │ │ │ │ │ │ │ ├── ports-g.h │ │ │ │ │ │ │ ├── ports-h.h │ │ │ │ │ │ │ ├── ports-i.h │ │ │ │ │ │ │ ├── ports-j.h │ │ │ │ │ │ │ ├── ppi.h │ │ │ │ │ │ │ ├── rtc.h │ │ │ │ │ │ │ ├── sdh.h │ │ │ │ │ │ │ ├── spi.h │ │ │ │ │ │ │ ├── spi6xx.h │ │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ │ ├── trace.h │ │ │ │ │ │ │ ├── twi.h │ │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ │ ├── uart4.h │ │ │ │ │ │ │ ├── usb.h │ │ │ │ │ │ │ └── watchdog.h │ │ │ │ │ │ ├── mem_map.h │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── sdh.h │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ ├── serial.h │ │ │ │ │ │ ├── serial1.h │ │ │ │ │ │ ├── serial4.h │ │ │ │ │ │ ├── shared_resources.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── soft_switch.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── traps.h │ │ │ │ │ │ ├── twi.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ └── unaligned.h │ │ │ │ └── lib │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __kgdb.S │ │ │ │ │ ├── board.c │ │ │ │ │ ├── boot.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── clocks.c │ │ │ │ │ ├── cmd_cache_dump.c │ │ │ │ │ ├── ins.S │ │ │ │ │ ├── kgdb.c │ │ │ │ │ ├── kgdb.h │ │ │ │ │ ├── memcmp.S │ │ │ │ │ ├── memcpy.S │ │ │ │ │ ├── memmove.S │ │ │ │ │ ├── memset.S │ │ │ │ │ ├── muldi3.c │ │ │ │ │ ├── outs.S │ │ │ │ │ ├── post.c │ │ │ │ │ └── string.c │ │ │ ├── m68k │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── mcf5227x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ └── start.S │ │ │ │ │ ├── mcf523x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ └── start.S │ │ │ │ │ ├── mcf52x2 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ └── start.S │ │ │ │ │ ├── mcf532x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ └── start.S │ │ │ │ │ ├── mcf5445x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ └── start.S │ │ │ │ │ └── mcf547x_8x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── slicetimer.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ └── start.S │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── coldfire │ │ │ │ │ │ ├── ata.h │ │ │ │ │ │ ├── crossbar.h │ │ │ │ │ │ ├── dspi.h │ │ │ │ │ │ ├── edma.h │ │ │ │ │ │ ├── eport.h │ │ │ │ │ │ ├── flexbus.h │ │ │ │ │ │ ├── flexcan.h │ │ │ │ │ │ ├── intctrl.h │ │ │ │ │ │ ├── lcd.h │ │ │ │ │ │ ├── mdha.h │ │ │ │ │ │ ├── pwm.h │ │ │ │ │ │ ├── qspi.h │ │ │ │ │ │ ├── rng.h │ │ │ │ │ │ ├── skha.h │ │ │ │ │ │ └── ssi.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fec.h │ │ │ │ │ │ ├── fsl_i2c.h │ │ │ │ │ │ ├── fsl_mcdmafec.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── immap.h │ │ │ │ │ │ ├── immap_520x.h │ │ │ │ │ │ ├── immap_5227x.h │ │ │ │ │ │ ├── immap_5235.h │ │ │ │ │ │ ├── immap_5249.h │ │ │ │ │ │ ├── immap_5253.h │ │ │ │ │ │ ├── immap_5271.h │ │ │ │ │ │ ├── immap_5272.h │ │ │ │ │ │ ├── immap_5275.h │ │ │ │ │ │ ├── immap_5282.h │ │ │ │ │ │ ├── immap_5301x.h │ │ │ │ │ │ ├── immap_5329.h │ │ │ │ │ │ ├── immap_5441x.h │ │ │ │ │ │ ├── immap_5445x.h │ │ │ │ │ │ ├── immap_547x_8x.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── m520x.h │ │ │ │ │ │ ├── m5227x.h │ │ │ │ │ │ ├── m5235.h │ │ │ │ │ │ ├── m5249.h │ │ │ │ │ │ ├── m5253.h │ │ │ │ │ │ ├── m5271.h │ │ │ │ │ │ ├── m5272.h │ │ │ │ │ │ ├── m5275.h │ │ │ │ │ │ ├── m5282.h │ │ │ │ │ │ ├── m5301x.h │ │ │ │ │ │ ├── m5329.h │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── time.c │ │ │ │ │ └── traps.c │ │ │ ├── microblaze │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── exception.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── irq.S │ │ │ │ │ ├── spl.c │ │ │ │ │ ├── start.S │ │ │ │ │ ├── timer.c │ │ │ │ │ ├── u-boot-spl.lds │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── dts │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ └── microblaze-generic.dts │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── asm.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── io.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 │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ └── muldi3.c │ │ │ ├── mips │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── mips32 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── au1x00 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── au1x00_eth.c │ │ │ │ │ │ │ ├── au1x00_ide.c │ │ │ │ │ │ │ ├── au1x00_serial.c │ │ │ │ │ │ │ ├── au1x00_usb_ohci.c │ │ │ │ │ │ │ ├── au1x00_usb_ohci.h │ │ │ │ │ │ │ └── config.mk │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ └── time.c │ │ │ │ │ ├── mips64 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ └── time.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── addrspace.h │ │ │ │ │ │ ├── asm.h │ │ │ │ │ │ ├── au1x00.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── cachectl.h │ │ │ │ │ │ ├── cacheops.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── isadep.h │ │ │ │ │ │ ├── jz4740.h │ │ │ │ │ │ ├── malta.h │ │ │ │ │ │ ├── mipsregs.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 │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── io.c │ │ │ │ │ ├── libgcc.h │ │ │ │ │ └── lshrdi3.c │ │ │ ├── nds32 │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ └── n1213 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ag101 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ └── watchdog.S │ │ │ │ │ │ ├── ag102 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ └── watchdog.S │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── arch-ag101 │ │ │ │ │ │ └── ag101.h │ │ │ │ │ │ ├── arch-ag102 │ │ │ │ │ │ └── ag102.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ │ ├── errno.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 │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── cache.c │ │ │ │ │ └── interrupts.c │ │ │ ├── nios2 │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── epcs.c │ │ │ │ │ ├── exceptions.S │ │ │ │ │ ├── fdt.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── start.S │ │ │ │ │ ├── sysid.c │ │ │ │ │ ├── traps.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── bitops │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── ffs.h │ │ │ │ │ │ └── non-atomic.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── opcodes.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── psr.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ └── unaligned.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── cache.S │ │ │ │ │ ├── libgcc.c │ │ │ │ │ ├── longlong.h │ │ │ │ │ └── time.c │ │ │ ├── openrisc │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── exceptions.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── start.S │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── bitops │ │ │ │ │ │ ├── ffs.h │ │ │ │ │ │ └── fls.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── openrisc_exc.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ ├── spr-defs.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ └── unaligned.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ └── timer.c │ │ │ ├── powerpc │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── 74xx_7xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── io.S │ │ │ │ │ │ ├── kgdb.S │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mpc512x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── diu.c │ │ │ │ │ │ ├── fixed_sdram.c │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ ├── ide.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── iopin.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── mpc5xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── mpc5xxx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── firmware_sc_task_bestcomm.impl.S │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ ├── ide.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── io.S │ │ │ │ │ │ ├── loadtask.c │ │ │ │ │ │ ├── pci_mpc5200.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── spl_boot.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ ├── u-boot-customlayout.lds │ │ │ │ │ │ ├── u-boot-spl.lds │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ ├── usb.c │ │ │ │ │ │ ├── usb_ohci.c │ │ │ │ │ │ └── usb_ohci.h │ │ │ │ │ ├── mpc824x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── drivers │ │ │ │ │ │ │ ├── epic.h │ │ │ │ │ │ │ ├── epic │ │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ │ ├── epic.h │ │ │ │ │ │ │ │ ├── epic1.c │ │ │ │ │ │ │ │ ├── epic2.S │ │ │ │ │ │ │ │ └── epicutil.S │ │ │ │ │ │ │ ├── errors.h │ │ │ │ │ │ │ └── i2c │ │ │ │ │ │ │ │ └── i2c.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── mpc8260 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bedbug_603e.c │ │ │ │ │ │ ├── commproc.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── ether_fcc.c │ │ │ │ │ │ ├── ether_scc.c │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── kgdb.S │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── serial_scc.c │ │ │ │ │ │ ├── serial_smc.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── mpc83xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── b4860_ids.c │ │ │ │ │ │ ├── b4860_serdes.c │ │ │ │ │ │ ├── bsc9132_serdes.c │ │ │ │ │ │ ├── c29x_serdes.c │ │ │ │ │ │ ├── cache.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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bedbug_860.c │ │ │ │ │ │ ├── commproc.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ ├── fec.c │ │ │ │ │ │ ├── fec.h │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── kgdb.S │ │ │ │ │ │ ├── plprcr_write.S │ │ │ │ │ │ ├── scc.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ ├── upatch.c │ │ │ │ │ │ └── video.c │ │ │ │ │ ├── mpc8xxx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ ├── fsl_lbc.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ └── srio.c │ │ │ │ │ └── ppc4xx │ │ │ │ │ │ ├── 40x_spd_sdram.c │ │ │ │ │ │ ├── 44x_spd_ddr.c │ │ │ │ │ │ ├── 44x_spd_ddr2.c │ │ │ │ │ │ ├── 4xx_ibm_ddr2_autocalib.c │ │ │ │ │ │ ├── 4xx_pci.c │ │ │ │ │ │ ├── 4xx_pcie.c │ │ │ │ │ │ ├── 4xx_uart.c │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bedbug_405.c │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ ├── cmd_chip_config.c │ │ │ │ │ │ ├── cmd_ecctest.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── dcr.S │ │ │ │ │ │ ├── denali_data_eye.c │ │ │ │ │ │ ├── denali_spd_ddr2.c │ │ │ │ │ │ ├── ecc.c │ │ │ │ │ │ ├── ecc.h │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── kgdb.S │ │ │ │ │ │ ├── miiphy.c │ │ │ │ │ │ ├── reginfo.c │ │ │ │ │ │ ├── resetvec.S │ │ │ │ │ │ ├── sdram.c │ │ │ │ │ │ ├── sdram.h │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ ├── spl_boot.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── tlb.c │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ ├── u-boot-spl.lds │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ ├── uic.c │ │ │ │ │ │ ├── usb.c │ │ │ │ │ │ ├── usb_ohci.c │ │ │ │ │ │ ├── usb_ohci.h │ │ │ │ │ │ └── xilinx_irq.c │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── 4xx_pci.h │ │ │ │ │ │ ├── 4xx_pcie.h │ │ │ │ │ │ ├── 5xx_immap.h │ │ │ │ │ │ ├── 8xx_immap.h │ │ │ │ │ │ ├── apm821xx.h │ │ │ │ │ │ ├── arch-mpc83xx │ │ │ │ │ │ └── gpio.h │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── config_mpc85xx.h │ │ │ │ │ │ ├── config_mpc86xx.h │ │ │ │ │ │ ├── cpm_8260.h │ │ │ │ │ │ ├── cpm_85xx.h │ │ │ │ │ │ ├── e300.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fsl_dma.h │ │ │ │ │ │ ├── fsl_dtsec.h │ │ │ │ │ │ ├── fsl_enet.h │ │ │ │ │ │ ├── fsl_errata.h │ │ │ │ │ │ ├── fsl_fman.h │ │ │ │ │ │ ├── fsl_i2c.h │ │ │ │ │ │ ├── fsl_law.h │ │ │ │ │ │ ├── fsl_lbc.h │ │ │ │ │ │ ├── fsl_liodn.h │ │ │ │ │ │ ├── fsl_memac.h │ │ │ │ │ │ ├── fsl_mpc83xx_serdes.h │ │ │ │ │ │ ├── fsl_pci.h │ │ │ │ │ │ ├── fsl_portals.h │ │ │ │ │ │ ├── fsl_secure_boot.h │ │ │ │ │ │ ├── fsl_serdes.h │ │ │ │ │ │ ├── fsl_srio.h │ │ │ │ │ │ ├── fsl_tgec.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── immap_512x.h │ │ │ │ │ │ ├── immap_8260.h │ │ │ │ │ │ ├── immap_83xx.h │ │ │ │ │ │ ├── immap_85xx.h │ │ │ │ │ │ ├── immap_86xx.h │ │ │ │ │ │ ├── immap_qe.h │ │ │ │ │ │ ├── interrupt.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── iopin_8260.h │ │ │ │ │ │ ├── iopin_8xx.h │ │ │ │ │ │ ├── m8260_pci.h │ │ │ │ │ │ ├── mc146818rtc.h │ │ │ │ │ │ ├── mmu.h │ │ │ │ │ │ ├── mp.h │ │ │ │ │ │ ├── mpc512x.h │ │ │ │ │ │ ├── mpc8349_pci.h │ │ │ │ │ │ ├── mpc85xx_gpio.h │ │ │ │ │ │ ├── mpc8xxx_spi.h │ │ │ │ │ │ ├── pci_io.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── ppc405.h │ │ │ │ │ │ ├── ppc405ep.h │ │ │ │ │ │ ├── ppc405ex.h │ │ │ │ │ │ ├── ppc405ez.h │ │ │ │ │ │ ├── ppc405gp.h │ │ │ │ │ │ ├── ppc440.h │ │ │ │ │ │ ├── ppc440ep_gr.h │ │ │ │ │ │ ├── ppc440epx_grx.h │ │ │ │ │ │ ├── ppc440gp.h │ │ │ │ │ │ ├── ppc440gx.h │ │ │ │ │ │ ├── ppc440sp.h │ │ │ │ │ │ ├── ppc440spe.h │ │ │ │ │ │ ├── ppc460ex_gt.h │ │ │ │ │ │ ├── ppc460sx.h │ │ │ │ │ │ ├── ppc4xx-ebc.h │ │ │ │ │ │ ├── ppc4xx-emac.h │ │ │ │ │ │ ├── ppc4xx-gpio.h │ │ │ │ │ │ ├── ppc4xx-i2c.h │ │ │ │ │ │ ├── ppc4xx-isram.h │ │ │ │ │ │ ├── ppc4xx-mal.h │ │ │ │ │ │ ├── ppc4xx-sdram.h │ │ │ │ │ │ ├── ppc4xx-uic.h │ │ │ │ │ │ ├── ppc4xx.h │ │ │ │ │ │ ├── ppc4xx_config.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── spl.h │ │ │ │ │ │ ├── status_led.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ ├── unaligned.h │ │ │ │ │ │ └── xilinx_irq.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── _ashldi3.S │ │ │ │ │ ├── _ashrdi3.S │ │ │ │ │ ├── _lshrdi3.S │ │ │ │ │ ├── bat_rw.c │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── extable.c │ │ │ │ │ ├── ide.c │ │ │ │ │ ├── ide.h │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── kgdb.c │ │ │ │ │ ├── memcpy_mpc5200.c │ │ │ │ │ ├── ppccache.S │ │ │ │ │ ├── ppcstring.S │ │ │ │ │ ├── reloc.S │ │ │ │ │ ├── spl.c │ │ │ │ │ ├── ticks.S │ │ │ │ │ └── time.c │ │ │ ├── sandbox │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── os.c │ │ │ │ │ ├── sdl.c │ │ │ │ │ ├── start.c │ │ │ │ │ ├── state.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── dts │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ └── sandbox.dts │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── arch-sandbox │ │ │ │ │ │ └── sound.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── getopt.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── sdl.h │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ ├── spi.h │ │ │ │ │ │ ├── state.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot-sandbox.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ └── unaligned.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── interrupts.c │ │ │ │ │ └── sandbox.c │ │ │ ├── sh │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── sh2 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── watchdog.c │ │ │ │ │ ├── sh3 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── watchdog.c │ │ │ │ │ └── sh4 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── watchdog.c │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── irqflags.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 │ │ │ │ │ ├── ashiftlt.S │ │ │ │ │ ├── ashiftrt.S │ │ │ │ │ ├── ashldi3.c │ │ │ │ │ ├── ashrsi3.S │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── libgcc.h │ │ │ │ │ ├── lshiftrt.S │ │ │ │ │ ├── lshrdi3.c │ │ │ │ │ ├── movmem.S │ │ │ │ │ ├── time.c │ │ │ │ │ ├── time_sh2.c │ │ │ │ │ └── zimageboot.c │ │ │ ├── sparc │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ │ ├── leon2 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── prom.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ └── start.S │ │ │ │ │ └── leon3 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ambapp.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── prom.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── usb_uhci.c │ │ │ │ │ │ └── usb_uhci.h │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── arch-leon2 │ │ │ │ │ │ └── asi.h │ │ │ │ │ │ ├── arch-leon3 │ │ │ │ │ │ └── asi.h │ │ │ │ │ │ ├── asi.h │ │ │ │ │ │ ├── asmmacro.h │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ ├── leon.h │ │ │ │ │ │ ├── leon2.h │ │ │ │ │ │ ├── leon3.h │ │ │ │ │ │ ├── machines.h │ │ │ │ │ │ ├── page.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── prom.h │ │ │ │ │ │ ├── psr.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ ├── srmmu.h │ │ │ │ │ │ ├── stack.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ ├── unaligned.h │ │ │ │ │ │ └── winmacro.h │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ └── time.c │ │ │ └── x86 │ │ │ │ ├── config.mk │ │ │ │ ├── cpu │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── coreboot │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── car.S │ │ │ │ │ ├── coreboot.c │ │ │ │ │ ├── ipchecksum.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── sdram.c │ │ │ │ │ ├── tables.c │ │ │ │ │ └── timestamp.c │ │ │ │ ├── cpu.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── resetvec.S │ │ │ │ ├── start.S │ │ │ │ ├── start16.S │ │ │ │ └── u-boot.lds │ │ │ │ ├── dts │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── alex.dts │ │ │ │ ├── coreboot.dtsi │ │ │ │ ├── link.dts │ │ │ │ └── skeleton.dtsi │ │ │ │ ├── include │ │ │ │ └── asm │ │ │ │ │ ├── arch-coreboot │ │ │ │ │ ├── ipchecksum.h │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ ├── tables.h │ │ │ │ │ └── timestamp.h │ │ │ │ │ ├── bitops.h │ │ │ │ │ ├── bootparam.h │ │ │ │ │ ├── byteorder.h │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── control_regs.h │ │ │ │ │ ├── e820.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── global_data.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── i8254.h │ │ │ │ │ ├── i8259.h │ │ │ │ │ ├── ibmpc.h │ │ │ │ │ ├── init_helpers.h │ │ │ │ │ ├── interrupt.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── ioctl.h │ │ │ │ │ ├── ist.h │ │ │ │ │ ├── msr-index.h │ │ │ │ │ ├── msr.h │ │ │ │ │ ├── pci.h │ │ │ │ │ ├── posix_types.h │ │ │ │ │ ├── processor-flags.h │ │ │ │ │ ├── processor.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── relocate.h │ │ │ │ │ ├── sections.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── u-boot-x86.h │ │ │ │ │ ├── u-boot.h │ │ │ │ │ ├── unaligned.h │ │ │ │ │ ├── video │ │ │ │ │ └── edid.h │ │ │ │ │ └── zimage.h │ │ │ │ └── lib │ │ │ │ ├── Makefile │ │ │ │ ├── asm-offsets.c │ │ │ │ ├── bootm.c │ │ │ │ ├── cmd_boot.c │ │ │ │ ├── gcc.c │ │ │ │ ├── init_helpers.c │ │ │ │ ├── interrupts.c │ │ │ │ ├── pcat_interrupts.c │ │ │ │ ├── pcat_timer.c │ │ │ │ ├── pci_type1.c │ │ │ │ ├── physmem.c │ │ │ │ ├── relocate.c │ │ │ │ ├── string.c │ │ │ │ ├── tsc_timer.c │ │ │ │ ├── video.c │ │ │ │ └── zimage.c │ │ ├── board │ │ │ ├── 8dtech │ │ │ │ └── eco5pk │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── eco5pk.c │ │ │ │ │ └── eco5pk.h │ │ │ ├── AndesTech │ │ │ │ ├── adp-ag101 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ └── adp-ag101.c │ │ │ │ ├── adp-ag101p │ │ │ │ │ ├── Makefile │ │ │ │ │ └── adp-ag101p.c │ │ │ │ └── adp-ag102 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── adp-ag102.c │ │ │ ├── Barix │ │ │ │ └── ipam390 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.ipam390 │ │ │ │ │ ├── ipam390-ais-uart.cfg │ │ │ │ │ ├── ipam390.c │ │ │ │ │ └── u-boot-spl-ipam390.lds │ │ │ ├── BuR │ │ │ │ ├── common │ │ │ │ │ ├── bur_common.h │ │ │ │ │ └── common.c │ │ │ │ ├── kwb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ └── mux.c │ │ │ │ └── tseries │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ └── mux.c │ │ │ ├── BuS │ │ │ │ ├── eb_cpu5282 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── eb_cpu5282.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── eb_cpux9k2 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cpux9k2.c │ │ │ │ └── vl_ma2sc │ │ │ │ │ ├── Makefile │ │ │ │ │ └── vl_ma2sc.c │ │ │ ├── CarMediaLab │ │ │ │ └── flea3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flea3.c │ │ │ │ │ └── lowlevel_init.S │ │ │ ├── LEOX │ │ │ │ └── elpt860 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.LEOX │ │ │ │ │ ├── elpt860.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ ├── LaCie │ │ │ │ ├── common │ │ │ │ │ ├── common.c │ │ │ │ │ ├── common.h │ │ │ │ │ ├── cpld-gpio-bus.c │ │ │ │ │ └── cpld-gpio-bus.h │ │ │ │ ├── edminiv2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ └── edminiv2.c │ │ │ │ ├── net2big_v2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ ├── net2big_v2.c │ │ │ │ │ └── net2big_v2.h │ │ │ │ ├── netspace_v2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── kwbimage-is2.cfg │ │ │ │ │ ├── kwbimage-ns2l.cfg │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ ├── netspace_v2.c │ │ │ │ │ └── netspace_v2.h │ │ │ │ └── wireless_space │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ └── wireless_space.c │ │ │ ├── Marvell │ │ │ │ ├── aspenite │ │ │ │ │ ├── Makefile │ │ │ │ │ └── aspenite.c │ │ │ │ ├── common │ │ │ │ │ ├── bootseq.txt │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── i2c.c │ │ │ │ │ ├── i2c.h │ │ │ │ │ ├── intel_flash.c │ │ │ │ │ ├── intel_flash.h │ │ │ │ │ ├── memory.c │ │ │ │ │ ├── misc.S │ │ │ │ │ ├── ns16550.c │ │ │ │ │ ├── ns16550.h │ │ │ │ │ └── serial.c │ │ │ │ ├── db64360 │ │ │ │ │ ├── 64360.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── db64360.c │ │ │ │ │ ├── eth.h │ │ │ │ │ ├── mpsc.c │ │ │ │ │ ├── mpsc.h │ │ │ │ │ ├── mv_eth.c │ │ │ │ │ ├── mv_eth.h │ │ │ │ │ ├── mv_regs.h │ │ │ │ │ ├── pci.c │ │ │ │ │ └── sdram_init.c │ │ │ │ ├── db64460 │ │ │ │ │ ├── 64460.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── db64460.c │ │ │ │ │ ├── eth.h │ │ │ │ │ ├── mpsc.c │ │ │ │ │ ├── mpsc.h │ │ │ │ │ ├── mv_eth.c │ │ │ │ │ ├── mv_eth.h │ │ │ │ │ ├── mv_regs.h │ │ │ │ │ ├── pci.c │ │ │ │ │ └── sdram_init.c │ │ │ │ ├── dkb │ │ │ │ │ ├── Makefile │ │ │ │ │ └── dkb.c │ │ │ │ ├── dreamplug │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dreamplug.c │ │ │ │ │ ├── dreamplug.h │ │ │ │ │ └── kwbimage.cfg │ │ │ │ ├── gplugd │ │ │ │ │ ├── Makefile │ │ │ │ │ └── gplugd.c │ │ │ │ ├── guruplug │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── guruplug.c │ │ │ │ │ ├── guruplug.h │ │ │ │ │ └── kwbimage.cfg │ │ │ │ ├── include │ │ │ │ │ ├── core.h │ │ │ │ │ ├── memory.h │ │ │ │ │ ├── mv_gen_reg.h │ │ │ │ │ └── pci.h │ │ │ │ ├── mv88f6281gtw_ge │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ ├── mv88f6281gtw_ge.c │ │ │ │ │ └── mv88f6281gtw_ge.h │ │ │ │ ├── openrd │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ ├── openrd.c │ │ │ │ │ └── openrd.h │ │ │ │ ├── rd6281a │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ ├── rd6281a.c │ │ │ │ │ └── rd6281a.h │ │ │ │ └── sheevaplug │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ ├── sheevaplug.c │ │ │ │ │ └── sheevaplug.h │ │ │ ├── RPXlite_dw │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── RPXlite_dw.c │ │ │ │ ├── flash.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── u-boot.lds.debug │ │ │ ├── RRvision │ │ │ │ ├── Makefile │ │ │ │ ├── RRvision.c │ │ │ │ ├── flash.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── video_ad7179.h │ │ │ ├── Seagate │ │ │ │ ├── dockstar │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dockstar.c │ │ │ │ │ ├── dockstar.h │ │ │ │ │ └── kwbimage.cfg │ │ │ │ └── goflexhome │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── goflexhome.c │ │ │ │ │ └── kwbimage.cfg │ │ │ ├── a3000 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── a3000.c │ │ │ │ └── flash.c │ │ │ ├── a3m071 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── a3m071.c │ │ │ │ ├── is46r16320d.h │ │ │ │ └── mt46v16m16-75.h │ │ │ ├── a4m072 │ │ │ │ ├── Makefile │ │ │ │ ├── a4m072.c │ │ │ │ └── mt46v32m16.h │ │ │ ├── adder │ │ │ │ ├── Makefile │ │ │ │ ├── adder.c │ │ │ │ └── u-boot.lds │ │ │ ├── afeb9260 │ │ │ │ ├── Makefile │ │ │ │ ├── afeb9260.c │ │ │ │ ├── config.mk │ │ │ │ └── partition.c │ │ │ ├── ait │ │ │ │ └── cam_enc_4xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cam_enc_4xx.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── u-boot-spl.lds │ │ │ │ │ └── ublimage.cfg │ │ │ ├── alphaproject │ │ │ │ └── ap_sh4a_4a │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ap_sh4a_4a.c │ │ │ │ │ └── lowlevel_init.S │ │ │ ├── altera │ │ │ │ ├── common │ │ │ │ │ ├── cfide.c │ │ │ │ │ ├── epled.c │ │ │ │ │ ├── sevenseg.c │ │ │ │ │ └── sevenseg.h │ │ │ │ ├── nios2-generic │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── custom_fpga.h │ │ │ │ │ ├── nios2-generic.c │ │ │ │ │ ├── text_base.S │ │ │ │ │ └── u-boot.lds │ │ │ │ └── socfpga │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── pinmux_config.c │ │ │ │ │ ├── pinmux_config.h │ │ │ │ │ ├── pll_config.h │ │ │ │ │ └── socfpga_cyclone5.c │ │ │ ├── amcc │ │ │ │ ├── acadia │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── acadia.c │ │ │ │ │ ├── cmd_acadia.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── memory.c │ │ │ │ │ └── pll.c │ │ │ │ ├── bamboo │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── bamboo.c │ │ │ │ │ ├── bamboo.h │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── flash.c │ │ │ │ │ └── init.S │ │ │ │ ├── bluestone │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bluestone.c │ │ │ │ │ ├── config.mk │ │ │ │ │ └── init.S │ │ │ │ ├── bubinga │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bubinga.c │ │ │ │ │ └── flash.c │ │ │ │ ├── canyonlands │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── canyonlands.c │ │ │ │ │ ├── chip_config.c │ │ │ │ │ ├── config.mk │ │ │ │ │ └── init.S │ │ │ │ ├── common │ │ │ │ │ └── flash.c │ │ │ │ ├── ebony │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── ebony.c │ │ │ │ │ ├── flash.c │ │ │ │ │ └── init.S │ │ │ │ ├── katmai │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── chip_config.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── init.S │ │ │ │ │ └── katmai.c │ │ │ │ ├── kilauea │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── chip_config.c │ │ │ │ │ ├── config.mk │ │ │ │ │ └── kilauea.c │ │ │ │ ├── luan │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── epld.h │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── init.S │ │ │ │ │ └── luan.c │ │ │ │ ├── makalu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmd_pll.c │ │ │ │ │ ├── init.S │ │ │ │ │ └── makalu.c │ │ │ │ ├── ocotea │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.ocotea │ │ │ │ │ ├── README.ocotea-PIBS-to-U-Boot │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── init.S │ │ │ │ │ ├── ocotea.c │ │ │ │ │ └── ocotea.h │ │ │ │ ├── redwood │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── init.S │ │ │ │ │ ├── redwood.c │ │ │ │ │ └── redwood.h │ │ │ │ ├── sequoia │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── chip_config.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── init.S │ │ │ │ │ ├── sdram.c │ │ │ │ │ ├── sequoia.c │ │ │ │ │ └── u-boot-ram.lds │ │ │ │ ├── taihu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── lcd.c │ │ │ │ │ ├── taihu.c │ │ │ │ │ └── update.c │ │ │ │ ├── taishan │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── init.S │ │ │ │ │ ├── lcd.c │ │ │ │ │ ├── showinfo.c │ │ │ │ │ ├── taishan.c │ │ │ │ │ └── update.c │ │ │ │ ├── walnut │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ └── walnut.c │ │ │ │ ├── yosemite │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── init.S │ │ │ │ │ └── yosemite.c │ │ │ │ └── yucca │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmd_yucca.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── init.S │ │ │ │ │ ├── yucca.c │ │ │ │ │ └── yucca.h │ │ │ ├── armadeus │ │ │ │ └── apf27 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── apf27.c │ │ │ │ │ ├── apf27.h │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── fpga.h │ │ │ │ │ └── lowlevel_init.S │ │ │ ├── armltd │ │ │ │ ├── integrator │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── arm-ebi.h │ │ │ │ │ ├── integrator-sc.h │ │ │ │ │ ├── integrator.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── pci_v3.h │ │ │ │ │ └── timer.c │ │ │ │ ├── versatile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── versatile.c │ │ │ │ ├── vexpress │ │ │ │ │ ├── Makefile │ │ │ │ │ └── vexpress_common.c │ │ │ │ └── vexpress64 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── vexpress64.c │ │ │ ├── astro │ │ │ │ └── mcf5373l │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── astro.h │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── mcf5373l.c │ │ │ │ │ └── u-boot.lds │ │ │ ├── atc │ │ │ │ ├── Makefile │ │ │ │ ├── atc.c │ │ │ │ ├── flash.c │ │ │ │ └── ti113x.c │ │ │ ├── atmark-techno │ │ │ │ └── armadillo-800eva │ │ │ │ │ ├── Makefile │ │ │ │ │ └── armadillo-800eva.c │ │ │ ├── atmel │ │ │ │ ├── at91rm9200ek │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── at91rm9200ek.c │ │ │ │ │ └── led.c │ │ │ │ ├── at91sam9260ek │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── at91sam9260ek.c │ │ │ │ │ ├── led.c │ │ │ │ │ └── partition.c │ │ │ │ ├── at91sam9261ek │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── at91sam9261ek.c │ │ │ │ │ ├── led.c │ │ │ │ │ └── partition.c │ │ │ │ ├── at91sam9263ek │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── at91sam9263ek.c │ │ │ │ │ ├── led.c │ │ │ │ │ └── partition.c │ │ │ │ ├── at91sam9m10g45ek │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── at91sam9m10g45ek.c │ │ │ │ │ └── led.c │ │ │ │ ├── at91sam9n12ek │ │ │ │ │ ├── Makefile │ │ │ │ │ └── at91sam9n12ek.c │ │ │ │ ├── at91sam9rlek │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── at91sam9rlek.c │ │ │ │ │ ├── led.c │ │ │ │ │ └── partition.c │ │ │ │ ├── at91sam9x5ek │ │ │ │ │ ├── Makefile │ │ │ │ │ └── at91sam9x5ek.c │ │ │ │ ├── atngw100 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── atngw100.c │ │ │ │ ├── atngw100mkii │ │ │ │ │ ├── Makefile │ │ │ │ │ └── atngw100mkii.c │ │ │ │ ├── atstk1000 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── atstk1000.c │ │ │ │ ├── sama5d3_xplained │ │ │ │ │ ├── Makefile │ │ │ │ │ └── sama5d3_xplained.c │ │ │ │ └── sama5d3xek │ │ │ │ │ ├── Makefile │ │ │ │ │ └── sama5d3xek.c │ │ │ ├── avionic-design │ │ │ │ ├── common │ │ │ │ │ ├── pinmux-config-tamonten-ng.h │ │ │ │ │ ├── tamonten-ng.c │ │ │ │ │ └── tamonten.c │ │ │ │ ├── medcom-wide │ │ │ │ │ └── Makefile │ │ │ │ ├── plutux │ │ │ │ │ └── Makefile │ │ │ │ ├── tec-ng │ │ │ │ │ └── Makefile │ │ │ │ └── tec │ │ │ │ │ └── Makefile │ │ │ ├── avnet │ │ │ │ ├── fx12mm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── fx12mm.c │ │ │ │ │ └── xparameters.h │ │ │ │ └── v5fx30teval │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── v5fx30teval.c │ │ │ │ │ └── xparameters.h │ │ │ ├── balloon3 │ │ │ │ ├── Makefile │ │ │ │ └── balloon3.c │ │ │ ├── barco │ │ │ │ └── titanium │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ └── titanium.c │ │ │ ├── bc3450 │ │ │ │ ├── Makefile │ │ │ │ ├── bc3450.c │ │ │ │ ├── cmd_bc3450.c │ │ │ │ └── mt48lc16m16a2-75.h │ │ │ ├── bct-brettl2 │ │ │ │ ├── Makefile │ │ │ │ ├── bct-brettl2.c │ │ │ │ ├── cled.c │ │ │ │ ├── gpio_cfi_flash.c │ │ │ │ ├── smsc9303.c │ │ │ │ └── smsc9303.h │ │ │ ├── bf506f-ezkit │ │ │ │ ├── Makefile │ │ │ │ └── bf506f-ezkit.c │ │ │ ├── bf518f-ezbrd │ │ │ │ ├── Makefile │ │ │ │ └── bf518f-ezbrd.c │ │ │ ├── bf525-ucr2 │ │ │ │ ├── Makefile │ │ │ │ └── bf525-ucr2.c │ │ │ ├── bf526-ezbrd │ │ │ │ ├── Makefile │ │ │ │ └── bf526-ezbrd.c │ │ │ ├── bf527-ad7160-eval │ │ │ │ ├── Makefile │ │ │ │ └── bf527-ad7160-eval.c │ │ │ ├── bf527-ezkit │ │ │ │ ├── Makefile │ │ │ │ ├── bf527-ezkit.c │ │ │ │ └── video.c │ │ │ ├── bf527-sdp │ │ │ │ ├── Makefile │ │ │ │ ├── bf527-sdp.c │ │ │ │ └── config.mk │ │ │ ├── bf533-ezkit │ │ │ │ ├── Makefile │ │ │ │ ├── bf533-ezkit.c │ │ │ │ ├── config.mk │ │ │ │ ├── flash-defines.h │ │ │ │ ├── flash.c │ │ │ │ └── psd4256.h │ │ │ ├── bf533-stamp │ │ │ │ ├── Makefile │ │ │ │ ├── bf533-stamp.c │ │ │ │ ├── config.mk │ │ │ │ ├── ide-cf.c │ │ │ │ ├── video.c │ │ │ │ └── video.h │ │ │ ├── bf537-minotaur │ │ │ │ ├── Makefile │ │ │ │ ├── bf537-minotaur.c │ │ │ │ └── config.mk │ │ │ ├── bf537-pnav │ │ │ │ ├── Makefile │ │ │ │ └── bf537-pnav.c │ │ │ ├── bf537-srv1 │ │ │ │ ├── Makefile │ │ │ │ ├── bf537-srv1.c │ │ │ │ └── config.mk │ │ │ ├── bf537-stamp │ │ │ │ ├── Makefile │ │ │ │ ├── bf537-stamp.c │ │ │ │ ├── config.mk │ │ │ │ ├── ide-cf.c │ │ │ │ └── post-memory.c │ │ │ ├── bf538f-ezkit │ │ │ │ ├── Makefile │ │ │ │ ├── bf538f-ezkit.c │ │ │ │ └── config.mk │ │ │ ├── bf548-ezkit │ │ │ │ ├── Makefile │ │ │ │ ├── bf548-ezkit.c │ │ │ │ ├── config.mk │ │ │ │ └── video.c │ │ │ ├── bf561-acvilon │ │ │ │ ├── Makefile │ │ │ │ ├── bf561-acvilon.c │ │ │ │ └── config.mk │ │ │ ├── bf561-ezkit │ │ │ │ ├── Makefile │ │ │ │ ├── bf561-ezkit.c │ │ │ │ └── config.mk │ │ │ ├── bf609-ezkit │ │ │ │ ├── Makefile │ │ │ │ ├── bf609-ezkit.c │ │ │ │ ├── soft_switch.c │ │ │ │ └── soft_switch.h │ │ │ ├── blackstamp │ │ │ │ ├── Makefile │ │ │ │ └── blackstamp.c │ │ │ ├── blackvme │ │ │ │ ├── Makefile │ │ │ │ └── blackvme.c │ │ │ ├── bluegiga │ │ │ │ └── apx4devkit │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── apx4devkit.c │ │ │ │ │ └── spl_boot.c │ │ │ ├── bluewater │ │ │ │ └── snapper9260 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── snapper9260.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 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── README.mx6qsabrelite │ │ │ │ │ ├── clocks.cfg │ │ │ │ │ ├── ddr-setup.cfg │ │ │ │ │ ├── nitrogen6dl.cfg │ │ │ │ │ ├── nitrogen6dl2g.cfg │ │ │ │ │ ├── nitrogen6q.cfg │ │ │ │ │ ├── nitrogen6q2g.cfg │ │ │ │ │ ├── nitrogen6s.cfg │ │ │ │ │ ├── nitrogen6s1g.cfg │ │ │ │ │ └── nitrogen6x.c │ │ │ ├── br4 │ │ │ │ ├── Makefile │ │ │ │ └── br4.c │ │ │ ├── broadcom │ │ │ │ └── bcm28155_ap │ │ │ │ │ ├── Makefile │ │ │ │ │ └── bcm28155_ap.c │ │ │ ├── buffalo │ │ │ │ └── lsxl │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── kwbimage-lschl.cfg │ │ │ │ │ ├── kwbimage-lsxhl.cfg │ │ │ │ │ ├── lsxl.c │ │ │ │ │ └── lsxl.h │ │ │ ├── calao │ │ │ │ ├── sbc35_a9g20 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── sbc35_a9g20.c │ │ │ │ │ └── spi.c │ │ │ │ ├── tny_a9260 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── spi.c │ │ │ │ │ └── tny_a9260.c │ │ │ │ └── usb_a9263 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── usb_a9263.c │ │ │ ├── canmb │ │ │ │ ├── Makefile │ │ │ │ ├── canmb.c │ │ │ │ └── mt48lc16m32s2-75.h │ │ │ ├── chromebook-x86 │ │ │ │ └── coreboot │ │ │ │ │ ├── Makefile │ │ │ │ │ └── coreboot_start.S │ │ │ ├── cloudengines │ │ │ │ └── pogo_e02 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ ├── pogo_e02.c │ │ │ │ │ └── pogo_e02.h │ │ │ ├── cm-bf527 │ │ │ │ ├── Makefile │ │ │ │ ├── cm-bf527.c │ │ │ │ └── gpio_cfi_flash.c │ │ │ ├── cm-bf533 │ │ │ │ ├── Makefile │ │ │ │ ├── cm-bf533.c │ │ │ │ └── config.mk │ │ │ ├── cm-bf537e │ │ │ │ ├── Makefile │ │ │ │ ├── cm-bf537e.c │ │ │ │ ├── config.mk │ │ │ │ ├── gpio_cfi_flash.c │ │ │ │ └── gpio_cfi_flash.h │ │ │ ├── cm-bf537u │ │ │ │ ├── Makefile │ │ │ │ ├── cm-bf537u.c │ │ │ │ ├── config.mk │ │ │ │ └── gpio_cfi_flash.c │ │ │ ├── cm-bf548 │ │ │ │ ├── Makefile │ │ │ │ ├── cm-bf548.c │ │ │ │ ├── config.mk │ │ │ │ └── video.c │ │ │ ├── cm-bf561 │ │ │ │ ├── Makefile │ │ │ │ ├── cm-bf561.c │ │ │ │ └── config.mk │ │ │ ├── cm4008 │ │ │ │ ├── Makefile │ │ │ │ ├── cm4008.c │ │ │ │ ├── config.mk │ │ │ │ └── flash.c │ │ │ ├── cm41xx │ │ │ │ ├── Makefile │ │ │ │ ├── cm41xx.c │ │ │ │ ├── config.mk │ │ │ │ └── flash.c │ │ │ ├── cm5200 │ │ │ │ ├── Makefile │ │ │ │ ├── cm5200.c │ │ │ │ ├── cm5200.h │ │ │ │ ├── cmd_cm5200.c │ │ │ │ ├── fwupdate.c │ │ │ │ └── fwupdate.h │ │ │ ├── cmi │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── cmi.c │ │ │ │ └── flash.c │ │ │ ├── cobra5272 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── bdm │ │ │ │ │ ├── cobra5272_uboot.gdb │ │ │ │ │ ├── gdbinit.reset │ │ │ │ │ ├── load-cobra_uboot │ │ │ │ │ └── reset │ │ │ │ ├── cobra5272.c │ │ │ │ ├── config.mk │ │ │ │ ├── flash.c │ │ │ │ └── u-boot.lds │ │ │ ├── cogent │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── README.cma286 │ │ │ │ ├── dipsw.c │ │ │ │ ├── dipsw.h │ │ │ │ ├── flash.c │ │ │ │ ├── flash.h │ │ │ │ ├── kbm.c │ │ │ │ ├── lcd.c │ │ │ │ ├── lcd.h │ │ │ │ ├── mb.c │ │ │ │ ├── mb.h │ │ │ │ ├── par.c │ │ │ │ ├── par.h │ │ │ │ ├── pci.c │ │ │ │ ├── pci.h │ │ │ │ ├── rtc.c │ │ │ │ ├── rtc.h │ │ │ │ ├── serial.c │ │ │ │ ├── serial.h │ │ │ │ ├── u-boot.lds │ │ │ │ └── u-boot.lds.debug │ │ │ ├── comelit │ │ │ │ └── dig297 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dig297.c │ │ │ │ │ └── dig297.h │ │ │ ├── compal │ │ │ │ └── paz00 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── paz00.c │ │ │ ├── compulab │ │ │ │ ├── cm_t335 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cm_t335.c │ │ │ │ │ ├── mux.c │ │ │ │ │ ├── spl.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── cm_t35 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cm_t35.c │ │ │ │ ├── common │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── eeprom.c │ │ │ │ │ ├── eeprom.h │ │ │ │ │ └── omap3_display.c │ │ │ │ └── trimslice │ │ │ │ │ ├── Makefile │ │ │ │ │ └── trimslice.c │ │ │ ├── congatec │ │ │ │ └── cgtqmx6eval │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ └── cgtqmx6eval.c │ │ │ ├── corscience │ │ │ │ └── tricorder │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── led.c │ │ │ │ │ ├── tricorder-eeprom.c │ │ │ │ │ ├── tricorder-eeprom.h │ │ │ │ │ ├── tricorder.c │ │ │ │ │ └── tricorder.h │ │ │ ├── cpc45 │ │ │ │ ├── Makefile │ │ │ │ ├── cpc45.c │ │ │ │ ├── flash.c │ │ │ │ ├── ide.c │ │ │ │ ├── pd67290.c │ │ │ │ └── plx9030.c │ │ │ ├── cpu86 │ │ │ │ ├── Makefile │ │ │ │ ├── cpu86.c │ │ │ │ ├── cpu86.h │ │ │ │ └── flash.c │ │ │ ├── cpu87 │ │ │ │ ├── Makefile │ │ │ │ ├── cpu87.c │ │ │ │ ├── cpu87.h │ │ │ │ └── flash.c │ │ │ ├── cray │ │ │ │ └── L1 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── L1.c │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bootscript.hush │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── init.S │ │ │ │ │ ├── patchme │ │ │ │ │ ├── u-boot.lds.debug │ │ │ │ │ └── x2c.awk │ │ │ ├── creative │ │ │ │ └── xfi3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── spl_boot.c │ │ │ │ │ └── xfi3.c │ │ │ ├── csb272 │ │ │ │ ├── Makefile │ │ │ │ ├── csb272.c │ │ │ │ └── init.S │ │ │ ├── csb472 │ │ │ │ ├── Makefile │ │ │ │ ├── csb472.c │ │ │ │ └── init.S │ │ │ ├── cu824 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── cu824.c │ │ │ │ └── flash.c │ │ │ ├── d-link │ │ │ │ └── dns325 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dns325.c │ │ │ │ │ ├── dns325.h │ │ │ │ │ └── kwbimage.cfg │ │ │ ├── dave │ │ │ │ ├── PPChameleonEVB │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── PPChameleonEVB.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── nand.c │ │ │ │ │ └── u-boot.lds │ │ │ │ └── common │ │ │ │ │ └── flash.c │ │ │ ├── davedenx │ │ │ │ ├── aria │ │ │ │ │ ├── Makefile │ │ │ │ │ └── aria.c │ │ │ │ └── qong │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── qong.c │ │ │ │ │ └── qong_fpga.h │ │ │ ├── davinci │ │ │ │ ├── da8xxevm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.da850 │ │ │ │ │ ├── README.hawkboard │ │ │ │ │ ├── da830evm.c │ │ │ │ │ ├── da850evm.c │ │ │ │ │ ├── hawkboard-ais-nand.cfg │ │ │ │ │ ├── hawkboard.c │ │ │ │ │ ├── u-boot-spl-da850evm.lds │ │ │ │ │ └── u-boot-spl-hawk.lds │ │ │ │ ├── dm355evm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ └── dm355evm.c │ │ │ │ ├── dm355leopard │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ └── dm355leopard.c │ │ │ │ ├── dm365evm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ └── dm365evm.c │ │ │ │ ├── dm6467evm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ └── dm6467evm.c │ │ │ │ ├── dvevm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board_init.S │ │ │ │ │ ├── config.mk │ │ │ │ │ └── dvevm.c │ │ │ │ ├── ea20 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ea20.c │ │ │ │ ├── schmoogie │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board_init.S │ │ │ │ │ ├── config.mk │ │ │ │ │ └── schmoogie.c │ │ │ │ ├── sffsdr │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board_init.S │ │ │ │ │ ├── config.mk │ │ │ │ │ └── sffsdr.c │ │ │ │ └── sonata │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board_init.S │ │ │ │ │ ├── config.mk │ │ │ │ │ └── sonata.c │ │ │ ├── dbau1x00 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── config.mk │ │ │ │ ├── dbau1x00.c │ │ │ │ └── lowlevel_init.S │ │ │ ├── denx │ │ │ │ ├── m28evk │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── m28evk.c │ │ │ │ │ └── spl_boot.c │ │ │ │ └── m53evk │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ └── m53evk.c │ │ │ ├── dnp5370 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── dnp5370.c │ │ │ ├── eXalion │ │ │ │ ├── Makefile │ │ │ │ ├── eXalion.c │ │ │ │ ├── eXalion.h │ │ │ │ └── piix_pci.h │ │ │ ├── earthlcd │ │ │ │ └── favr-32-ezkit │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── favr-32-ezkit.c │ │ │ │ │ └── flash.c │ │ │ ├── egnite │ │ │ │ └── ethernut5 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ethernut5.c │ │ │ │ │ ├── ethernut5_pwrman.c │ │ │ │ │ └── ethernut5_pwrman.h │ │ │ ├── eltec │ │ │ │ ├── elppc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm_init.S │ │ │ │ │ ├── eepro100_srom.c │ │ │ │ │ ├── elppc.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── misc.c │ │ │ │ │ ├── mpc107_i2c.c │ │ │ │ │ ├── pci.c │ │ │ │ │ └── srom.h │ │ │ │ └── mhpc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── mhpc.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ ├── emk │ │ │ │ ├── common │ │ │ │ │ ├── am79c874.c │ │ │ │ │ ├── flash.c │ │ │ │ │ └── vpd.c │ │ │ │ ├── top5200 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── top5200.c │ │ │ │ ├── top860 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── top860.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ └── top9000 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── spi.c │ │ │ │ │ └── top9000.c │ │ │ ├── enbw │ │ │ │ └── enbw_cmc │ │ │ │ │ ├── Makefile │ │ │ │ │ └── enbw_cmc.c │ │ │ ├── ep8248 │ │ │ │ ├── Makefile │ │ │ │ └── ep8248.c │ │ │ ├── ep8260 │ │ │ │ ├── Makefile │ │ │ │ ├── ep8260.c │ │ │ │ ├── ep8260.h │ │ │ │ ├── flash.c │ │ │ │ └── mii_phy.c │ │ │ ├── ep82xxm │ │ │ │ ├── Makefile │ │ │ │ └── ep82xxm.c │ │ │ ├── esd │ │ │ │ ├── apc405 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── apc405.c │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ └── logo_640_480_24bpp.c │ │ │ │ ├── ar405 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ar405.c │ │ │ │ │ ├── ar405.h │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ └── fpgadata_xl30.c │ │ │ │ ├── ash405 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ash405.c │ │ │ │ │ ├── flash.c │ │ │ │ │ └── fpgadata.c │ │ │ │ ├── cms700 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cms700.c │ │ │ │ │ └── flash.c │ │ │ │ ├── common │ │ │ │ │ ├── auto_update.c │ │ │ │ │ ├── auto_update.h │ │ │ │ │ ├── cmd_loadpci.c │ │ │ │ │ ├── esd405ep_nand.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── lcd.c │ │ │ │ │ ├── lcd.h │ │ │ │ │ ├── misc.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── s1d13505_640_480_16bpp.h │ │ │ │ │ ├── s1d13704_320_240_4bpp.h │ │ │ │ │ ├── s1d13705_320_240_8bpp.h │ │ │ │ │ ├── s1d13806_1024_768_8bpp.h │ │ │ │ │ ├── s1d13806_320_240_4bpp.h │ │ │ │ │ ├── s1d13806_640_480_16bpp.h │ │ │ │ │ └── xilinx_jtag │ │ │ │ │ │ ├── lenval.c │ │ │ │ │ │ ├── lenval.h │ │ │ │ │ │ ├── micro.c │ │ │ │ │ │ ├── micro.h │ │ │ │ │ │ ├── ports.c │ │ │ │ │ │ └── ports.h │ │ │ │ ├── cpci2dp │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpci2dp.c │ │ │ │ │ └── flash.c │ │ │ │ ├── cpci405 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpci405.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── fpgadata_cpci405.c │ │ │ │ │ ├── fpgadata_cpci4052.c │ │ │ │ │ └── fpgadata_cpci405ab.c │ │ │ │ ├── cpci5200 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpci5200.c │ │ │ │ │ ├── mt46v16m16-75.h │ │ │ │ │ └── strataflash.c │ │ │ │ ├── cpci750 │ │ │ │ │ ├── 64360.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpci750.c │ │ │ │ │ ├── eth.h │ │ │ │ │ ├── i2c.c │ │ │ │ │ ├── i2c.h │ │ │ │ │ ├── ide.c │ │ │ │ │ ├── local.h │ │ │ │ │ ├── misc.S │ │ │ │ │ ├── mpsc.c │ │ │ │ │ ├── mpsc.h │ │ │ │ │ ├── mv_eth.c │ │ │ │ │ ├── mv_eth.h │ │ │ │ │ ├── mv_regs.h │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── sdram_init.c │ │ │ │ │ └── serial.c │ │ │ │ ├── cpciiser4 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpciiser4.c │ │ │ │ │ ├── cpciiser4.h │ │ │ │ │ ├── flash.c │ │ │ │ │ └── fpgadata.c │ │ │ │ ├── dp405 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dp405.c │ │ │ │ │ └── flash.c │ │ │ │ ├── du405 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── du405.c │ │ │ │ │ ├── du405.h │ │ │ │ │ ├── flash.c │ │ │ │ │ └── fpgadata.c │ │ │ │ ├── du440 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── du440.c │ │ │ │ │ ├── du440.h │ │ │ │ │ └── init.S │ │ │ │ ├── hh405 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ ├── hh405.c │ │ │ │ │ ├── logo_1024_768_8bpp.c │ │ │ │ │ ├── logo_320_240_4bpp.c │ │ │ │ │ ├── logo_320_240_8bpp.c │ │ │ │ │ └── logo_640_480_24bpp.c │ │ │ │ ├── hub405 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ └── hub405.c │ │ │ │ ├── mecp5123 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── mecp5123.c │ │ │ │ ├── mecp5200 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mecp5200.c │ │ │ │ │ └── mt46v16m16-75.h │ │ │ │ ├── meesc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── meesc.c │ │ │ │ │ └── partition.c │ │ │ │ ├── ocrtc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmd_ocrtc.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── ocrtc.c │ │ │ │ │ └── ocrtc.h │ │ │ │ ├── otc570 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── otc570.c │ │ │ │ │ └── partition.c │ │ │ │ ├── pci405 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmd_pci405.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ ├── pci405.c │ │ │ │ │ ├── pci405.h │ │ │ │ │ └── writeibm.S │ │ │ │ ├── pf5200 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── mt46v16m16-75.h │ │ │ │ │ └── pf5200.c │ │ │ │ ├── plu405 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ └── plu405.c │ │ │ │ ├── pmc405 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── pmc405.c │ │ │ │ ├── pmc405de │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── chip_config.c │ │ │ │ │ └── pmc405de.c │ │ │ │ ├── pmc440 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmd_pmc440.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── fpga.h │ │ │ │ │ ├── init.S │ │ │ │ │ ├── pmc440.c │ │ │ │ │ ├── pmc440.h │ │ │ │ │ └── sdram.c │ │ │ │ ├── tasreg │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ ├── tasreg.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── vme8349 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── caddy.c │ │ │ │ │ ├── caddy.h │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── vme8349.c │ │ │ │ │ └── vme8349pin.h │ │ │ │ ├── voh405 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ ├── logo_320_240_4bpp.c │ │ │ │ │ ├── logo_640_480_24bpp.c │ │ │ │ │ └── voh405.c │ │ │ │ ├── vom405 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ └── vom405.c │ │ │ │ └── wuh405 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ └── wuh405.c │ │ │ ├── esg │ │ │ │ └── ima3-mx53 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ima3-mx53.c │ │ │ │ │ └── imximage.cfg │ │ │ ├── espt │ │ │ │ ├── Makefile │ │ │ │ ├── espt.c │ │ │ │ └── lowlevel_init.S │ │ │ ├── esteem192e │ │ │ │ ├── Makefile │ │ │ │ ├── esteem192e.c │ │ │ │ ├── flash.c │ │ │ │ └── u-boot.lds │ │ │ ├── etin │ │ │ │ ├── debris │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── debris.c │ │ │ │ │ ├── flash.c │ │ │ │ │ └── phantom.c │ │ │ │ └── kvme080 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── kvme080.c │ │ │ │ │ ├── multiverse.c │ │ │ │ │ └── multiverse.h │ │ │ ├── eukrea │ │ │ │ ├── cpu9260 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu9260.c │ │ │ │ │ └── led.c │ │ │ │ └── cpuat91 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cpuat91.c │ │ │ ├── evb64260 │ │ │ │ ├── 64260.h │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── README.EVB-64260-750CX │ │ │ │ ├── bootseq.txt │ │ │ │ ├── eth.c │ │ │ │ ├── eth.h │ │ │ │ ├── eth_addrtbl.c │ │ │ │ ├── eth_addrtbl.h │ │ │ │ ├── evb64260.c │ │ │ │ ├── flash.c │ │ │ │ ├── i2c.c │ │ │ │ ├── i2c.h │ │ │ │ ├── intel_flash.c │ │ │ │ ├── intel_flash.h │ │ │ │ ├── local.h │ │ │ │ ├── memory.c │ │ │ │ ├── misc.S │ │ │ │ ├── mpsc.c │ │ │ │ ├── mpsc.h │ │ │ │ ├── pci.c │ │ │ │ ├── sdram_init.c │ │ │ │ ├── serial.c │ │ │ │ ├── u-boot.lds │ │ │ │ ├── zuma_pbb.c │ │ │ │ ├── zuma_pbb.h │ │ │ │ ├── zuma_pbb_mbox.c │ │ │ │ └── zuma_pbb_mbox.h │ │ │ ├── exmeritus │ │ │ │ └── hww1u1a │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── gpios.h │ │ │ │ │ ├── hww1u1a.c │ │ │ │ │ ├── law.c │ │ │ │ │ └── tlb.c │ │ │ ├── fads │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── fads.c │ │ │ │ ├── fads.h │ │ │ │ ├── flash.c │ │ │ │ ├── lamp.c │ │ │ │ ├── pcmcia.c │ │ │ │ └── u-boot.lds │ │ │ ├── faraday │ │ │ │ └── a320evb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── a320evb.c │ │ │ │ │ └── lowlevel_init.S │ │ │ ├── flagadm │ │ │ │ ├── Makefile │ │ │ │ ├── flagadm.c │ │ │ │ ├── flash.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── u-boot.lds.debug │ │ │ ├── freescale │ │ │ │ ├── b4860qds │ │ │ │ │ ├── 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 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── bsc9131rdb.c │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── spl_minimal.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── bsc9132qds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── bsc9132qds.c │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── spl_minimal.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── c29xpcie │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── c29xpcie.c │ │ │ │ │ ├── cpld.c │ │ │ │ │ ├── cpld.h │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── spl.c │ │ │ │ │ ├── spl_minimal.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── common │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cadmus.c │ │ │ │ │ ├── cadmus.h │ │ │ │ │ ├── cds_pci_ft.c │ │ │ │ │ ├── cds_via.c │ │ │ │ │ ├── eeprom.h │ │ │ │ │ ├── fman.c │ │ │ │ │ ├── fman.h │ │ │ │ │ ├── ics307_clk.c │ │ │ │ │ ├── ics307_clk.h │ │ │ │ │ ├── idt8t49n222a_serdes_clk.c │ │ │ │ │ ├── idt8t49n222a_serdes_clk.h │ │ │ │ │ ├── ngpixis.c │ │ │ │ │ ├── ngpixis.h │ │ │ │ │ ├── p_corenet │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── 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 │ │ │ │ │ ├── sys_eeprom.c │ │ │ │ │ ├── via.h │ │ │ │ │ ├── vsc3316_3308.c │ │ │ │ │ ├── vsc3316_3308.h │ │ │ │ │ ├── zm7300.c │ │ │ │ │ └── zm7300.h │ │ │ │ ├── corenet_ds │ │ │ │ │ ├── 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 │ │ │ │ ├── imx │ │ │ │ │ └── ddr │ │ │ │ │ │ └── mx6q_4x_mt41j128.cfg │ │ │ │ ├── m5208evbe │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── m5208evbe.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── m52277evb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── m52277evb.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── m5235evb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── m5235evb.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── m5249evb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── m5249evb.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── m5253demo │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── m5253demo.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── m5253evbe │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── m5253evbe.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── m5272c3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── m5272c3.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── m5275evb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── m5275evb.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── m5282evb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── m5282evb.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── m53017evb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── m53017evb.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── m5329evb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── m5329evb.c │ │ │ │ │ ├── nand.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── m5373evb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── m5373evb.c │ │ │ │ │ ├── nand.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── m54418twr │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── m54418twr.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── m54451evb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── m54451evb.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── m54455evb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── m54455evb.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── m547xevb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── m547xevb.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── m548xevb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── m548xevb.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── mpc5121ads │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ └── mpc5121ads.c │ │ │ │ ├── mpc7448hpc2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── asm_init.S │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── mpc7448hpc2.c │ │ │ │ │ └── tsi108_init.c │ │ │ │ ├── mpc8260ads │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ └── mpc8260ads.c │ │ │ │ ├── mpc8266ads │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ └── mpc8266ads.c │ │ │ │ ├── mpc8308rdb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mpc8308rdb.c │ │ │ │ │ └── sdram.c │ │ │ │ ├── mpc8313erdb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── mpc8313erdb.c │ │ │ │ │ └── sdram.c │ │ │ │ ├── mpc8315erdb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── mpc8315erdb.c │ │ │ │ │ └── sdram.c │ │ │ │ ├── mpc8323erdb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ └── mpc8323erdb.c │ │ │ │ ├── mpc832xemds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── mpc832xemds.c │ │ │ │ │ └── pci.c │ │ │ │ ├── mpc8349emds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── mpc8349emds.c │ │ │ │ │ └── pci.c │ │ │ │ ├── mpc8349itx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── mpc8349itx.c │ │ │ │ │ └── pci.c │ │ │ │ ├── mpc8360emds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── mpc8360emds.c │ │ │ │ │ └── pci.c │ │ │ │ ├── mpc8360erdk │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mpc8360erdk.c │ │ │ │ │ └── nand.c │ │ │ │ ├── mpc837xemds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── mpc837xemds.c │ │ │ │ │ ├── pci.c │ │ │ │ │ └── pci.h │ │ │ │ ├── mpc837xerdb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── mpc837xerdb.c │ │ │ │ │ └── pci.c │ │ │ │ ├── mpc8536ds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── mpc8536ds.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── mpc8540ads │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── mpc8540ads.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── mpc8541cds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── mpc8541cds.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── mpc8544ds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── mpc8544ds.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── mpc8548cds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── mpc8548cds.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── mpc8555cds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── mpc8555cds.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── mpc8560ads │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── mpc8560ads.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── mpc8568mds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bcsr.c │ │ │ │ │ ├── bcsr.h │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── mpc8568mds.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── mpc8569mds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── bcsr.c │ │ │ │ │ ├── bcsr.h │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── mpc8569mds.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── mpc8572ds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── mpc8572ds.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── mpc8610hpcd │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── mpc8610hpcd.c │ │ │ │ │ └── mpc8610hpcd_diu.c │ │ │ │ ├── mpc8641hpcn │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ └── mpc8641hpcn.c │ │ │ │ ├── mx23evk │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mx23evk.c │ │ │ │ │ └── spl_boot.c │ │ │ │ ├── mx25pdk │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── mx25pdk.c │ │ │ │ ├── mx28evk │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── iomux.c │ │ │ │ │ └── mx28evk.c │ │ │ │ ├── mx31ads │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── mx31ads.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── mx31pdk │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── mx31pdk.c │ │ │ │ ├── mx35pdk │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── mx35pdk.c │ │ │ │ │ └── mx35pdk.h │ │ │ │ ├── mx51evk │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ ├── mx51evk.c │ │ │ │ │ └── mx51evk_video.c │ │ │ │ ├── mx53ard │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imximage_dd3.cfg │ │ │ │ │ └── mx53ard.c │ │ │ │ ├── mx53evk │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ └── mx53evk.c │ │ │ │ ├── mx53loco │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ ├── mx53loco.c │ │ │ │ │ └── mx53loco_video.c │ │ │ │ ├── mx53smd │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ └── mx53smd.c │ │ │ │ ├── mx6qarm2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ └── mx6qarm2.c │ │ │ │ ├── mx6qsabreauto │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ └── mx6qsabreauto.c │ │ │ │ ├── mx6sabresd │ │ │ │ │ ├── Makefile │ │ │ │ │ └── mx6sabresd.c │ │ │ │ ├── mx6slevk │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ └── mx6slevk.c │ │ │ │ ├── p1010rdb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.P1010RDB-PA │ │ │ │ │ ├── README.P1010RDB-PB │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── p1010rdb.c │ │ │ │ │ ├── spl.c │ │ │ │ │ ├── spl_minimal.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── p1022ds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── diu.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── p1022ds.c │ │ │ │ │ ├── spl.c │ │ │ │ │ ├── spl_minimal.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── p1023rdb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── p1023rdb.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── p1023rds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── bcsr.h │ │ │ │ │ ├── law.c │ │ │ │ │ ├── p1023rds.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── p1_p2_rdb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── p1_p2_rdb.c │ │ │ │ │ ├── pci.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── p1_p2_rdb_pc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── p1_p2_rdb_pc.c │ │ │ │ │ ├── spl.c │ │ │ │ │ ├── spl_minimal.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── p1_twr │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── p1_twr.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── p2020come │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── p2020come.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── p2020ds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── p2020ds.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── p2041rdb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── cpld.c │ │ │ │ │ ├── cpld.h │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── eth.c │ │ │ │ │ └── p2041rdb.c │ │ │ │ ├── qemu-ppce500 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── qemu-ppce500.c │ │ │ │ ├── t1040qds │ │ │ │ │ ├── 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 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── cpld.c │ │ │ │ │ ├── cpld.h │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── ddr.h │ │ │ │ │ ├── eth.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── spl.c │ │ │ │ │ ├── t1040_rcw.cfg │ │ │ │ │ ├── t1042_rcw.cfg │ │ │ │ │ ├── t104x_pbi.cfg │ │ │ │ │ ├── t104xrdb.c │ │ │ │ │ ├── t104xrdb.h │ │ │ │ │ └── tlb.c │ │ │ │ ├── t208xqds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── ddr.h │ │ │ │ │ ├── eth_t208xqds.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── spl.c │ │ │ │ │ ├── t2080_rcw.cfg │ │ │ │ │ ├── t2081_rcw.cfg │ │ │ │ │ ├── t208x_pbi.cfg │ │ │ │ │ ├── t208xqds.c │ │ │ │ │ ├── t208xqds.h │ │ │ │ │ ├── t208xqds_qixis.h │ │ │ │ │ └── tlb.c │ │ │ │ ├── t208xrdb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── cpld.c │ │ │ │ │ ├── cpld.h │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── ddr.h │ │ │ │ │ ├── eth_t208xrdb.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── spl.c │ │ │ │ │ ├── t2080_pbi.cfg │ │ │ │ │ ├── t2080_rcw.cfg │ │ │ │ │ ├── t208xrdb.c │ │ │ │ │ ├── t208xrdb.h │ │ │ │ │ └── tlb.c │ │ │ │ ├── t4qds │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── ddr.h │ │ │ │ │ ├── eth.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── spl.c │ │ │ │ │ ├── t4240emu.c │ │ │ │ │ ├── t4240qds.c │ │ │ │ │ ├── t4240qds_qixis.h │ │ │ │ │ ├── t4_pbi.cfg │ │ │ │ │ ├── t4_rcw.cfg │ │ │ │ │ ├── t4qds.h │ │ │ │ │ └── tlb.c │ │ │ │ ├── t4rdb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── ddr.h │ │ │ │ │ ├── eth.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── t4240rdb.c │ │ │ │ │ ├── t4_pbi.cfg │ │ │ │ │ ├── t4_rcw.cfg │ │ │ │ │ ├── t4rdb.h │ │ │ │ │ └── tlb.c │ │ │ │ └── vf610twr │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ └── vf610twr.c │ │ │ ├── funkwerk │ │ │ │ └── vovpn-gw │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── m88e6060.c │ │ │ │ │ ├── m88e6060.h │ │ │ │ │ └── vovpn-gw.c │ │ │ ├── g2000 │ │ │ │ ├── Makefile │ │ │ │ ├── g2000.c │ │ │ │ └── strataflash.c │ │ │ ├── gaisler │ │ │ │ ├── gr_cpci_ax2000 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── gr_cpci_ax2000.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── gr_ep2s60 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── gr_ep2s60.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── gr_xc3s_1500 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── gr_xc3s_1500.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── grsim │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── grsim.c │ │ │ │ │ └── u-boot.lds │ │ │ │ └── grsim_leon2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── grsim_leon2.c │ │ │ │ │ └── u-boot.lds │ │ │ ├── galaxy5200 │ │ │ │ ├── Makefile │ │ │ │ └── galaxy5200.c │ │ │ ├── gateworks │ │ │ │ └── gw_ventana │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── clocks.cfg │ │ │ │ │ ├── gsc.c │ │ │ │ │ ├── gsc.h │ │ │ │ │ ├── gw_ventana.c │ │ │ │ │ ├── gw_ventana.cfg │ │ │ │ │ └── ventana_eeprom.h │ │ │ ├── gdsys │ │ │ │ ├── 405ep │ │ │ │ │ ├── 405ep.c │ │ │ │ │ ├── 405ep.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dlvision-10g.c │ │ │ │ │ ├── io.c │ │ │ │ │ ├── iocon.c │ │ │ │ │ └── neo.c │ │ │ │ ├── 405ex │ │ │ │ │ ├── 405ex.c │ │ │ │ │ ├── 405ex.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── chip_config.c │ │ │ │ │ └── io64.c │ │ │ │ ├── common │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dp501.c │ │ │ │ │ ├── dp501.h │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── mclink.c │ │ │ │ │ ├── mclink.h │ │ │ │ │ ├── miiphybb.c │ │ │ │ │ ├── osd.c │ │ │ │ │ └── osd.h │ │ │ │ ├── dlvision │ │ │ │ │ ├── Makefile │ │ │ │ │ └── dlvision.c │ │ │ │ ├── gdppc440etx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── gdppc440etx.c │ │ │ │ │ └── init.S │ │ │ │ ├── intip │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── chip_config.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── init.S │ │ │ │ │ └── intip.c │ │ │ │ └── p1022 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── controlcenterd-id.c │ │ │ │ │ ├── controlcenterd-id.h │ │ │ │ │ ├── controlcenterd.c │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── diu.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── sdhc_boot.c │ │ │ │ │ └── tlb.c │ │ │ ├── gen860t │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── beeper.c │ │ │ │ ├── beeper.h │ │ │ │ ├── flash.c │ │ │ │ ├── fpga.c │ │ │ │ ├── fpga.h │ │ │ │ ├── gen860t.c │ │ │ │ ├── ioport.c │ │ │ │ ├── ioport.h │ │ │ │ ├── u-boot-flashenv.lds │ │ │ │ └── u-boot.lds │ │ │ ├── genesi │ │ │ │ └── mx51_efikamx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── efikamx-usb.c │ │ │ │ │ ├── efikamx.c │ │ │ │ │ ├── imximage_mx.cfg │ │ │ │ │ └── imximage_sb.cfg │ │ │ ├── gw8260 │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ └── gw8260.c │ │ │ ├── h2200 │ │ │ │ ├── Makefile │ │ │ │ ├── h2200-header.S │ │ │ │ └── h2200.c │ │ │ ├── hale │ │ │ │ └── tt01 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── tt01.c │ │ │ ├── hermes │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── hermes.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── u-boot.lds.debug │ │ │ ├── hidden_dragon │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── flash.c │ │ │ │ └── hidden_dragon.c │ │ │ ├── highbank │ │ │ │ ├── Makefile │ │ │ │ └── highbank.c │ │ │ ├── htkw │ │ │ │ └── mcx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mcx.c │ │ │ │ │ └── mcx.h │ │ │ ├── hymod │ │ │ │ ├── Makefile │ │ │ │ ├── bsp.c │ │ │ │ ├── config.mk │ │ │ │ ├── eeprom.c │ │ │ │ ├── env.c │ │ │ │ ├── fetch.c │ │ │ │ ├── flash.c │ │ │ │ ├── flash.h │ │ │ │ ├── global_env │ │ │ │ ├── hymod.c │ │ │ │ ├── hymod.h │ │ │ │ ├── input.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── u-boot.lds.debug │ │ │ ├── ibf-dsp561 │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ └── ibf-dsp561.c │ │ │ ├── icecube │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── README.Lite5200B_low_power │ │ │ │ ├── flash.c │ │ │ │ ├── icecube.c │ │ │ │ ├── mt46v16m16-75.h │ │ │ │ ├── mt46v32m16.h │ │ │ │ └── mt48lc16m16a2-75.h │ │ │ ├── icpdas │ │ │ │ └── lp8x4x │ │ │ │ │ ├── Makefile │ │ │ │ │ └── lp8x4x.c │ │ │ ├── icu862 │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── icu862.c │ │ │ │ ├── pcmcia.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── u-boot.lds.debug │ │ │ ├── ids │ │ │ │ ├── ids8247 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ids8247.c │ │ │ │ └── ids8313 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ids8313.c │ │ │ ├── ifm │ │ │ │ ├── ac14xx │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ac14xx.c │ │ │ │ └── o2dnt2 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── o2dnt2.c │ │ │ ├── imgtec │ │ │ │ └── malta │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash-malta-boot.tcl │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── malta.c │ │ │ │ │ ├── superio.c │ │ │ │ │ └── superio.h │ │ │ ├── imx31_phycore │ │ │ │ ├── Makefile │ │ │ │ ├── imx31_phycore.c │ │ │ │ └── lowlevel_init.S │ │ │ ├── in-circuit │ │ │ │ └── grasshopper │ │ │ │ │ ├── Makefile │ │ │ │ │ └── grasshopper.c │ │ │ ├── inka4x0 │ │ │ │ ├── Makefile │ │ │ │ ├── inka4x0.c │ │ │ │ ├── inkadiag.c │ │ │ │ ├── k4h511638c.h │ │ │ │ ├── mt46v16m16-75.h │ │ │ │ ├── mt46v32m16-75.h │ │ │ │ └── mt48lc16m16a2-75.h │ │ │ ├── intercontrol │ │ │ │ └── digsy_mtc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmd_disp.c │ │ │ │ │ ├── cmd_mtc.c │ │ │ │ │ ├── cmd_mtc.h │ │ │ │ │ ├── digsy_mtc.c │ │ │ │ │ ├── eeprom.h │ │ │ │ │ ├── is42s16800a-7t.h │ │ │ │ │ └── is45s16800a2.h │ │ │ ├── iomega │ │ │ │ └── iconnect │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── iconnect.c │ │ │ │ │ ├── iconnect.h │ │ │ │ │ └── kwbimage.cfg │ │ │ ├── ip04 │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ └── ip04.c │ │ │ ├── ip860 │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── ip860.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── u-boot.lds.debug │ │ │ ├── ipek01 │ │ │ │ ├── Makefile │ │ │ │ └── ipek01.c │ │ │ ├── iphase4539 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── flash.c │ │ │ │ └── iphase4539.c │ │ │ ├── isee │ │ │ │ ├── igep0033 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ └── mux.c │ │ │ │ └── igep00x0 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── igep00x0.c │ │ │ │ │ └── igep00x0.h │ │ │ ├── ispan │ │ │ │ ├── Makefile │ │ │ │ └── ispan.c │ │ │ ├── ivm │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── ivm.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── u-boot.lds.debug │ │ │ ├── jornada │ │ │ │ ├── Makefile │ │ │ │ ├── jornada.c │ │ │ │ └── setup.S │ │ │ ├── jse │ │ │ │ ├── Makefile │ │ │ │ ├── README.txt │ │ │ │ ├── flash.c │ │ │ │ ├── host_bridge.c │ │ │ │ ├── init.S │ │ │ │ ├── jse.c │ │ │ │ ├── jse_priv.h │ │ │ │ └── sdram.c │ │ │ ├── jupiter │ │ │ │ ├── Makefile │ │ │ │ └── jupiter.c │ │ │ ├── karo │ │ │ │ ├── tk71 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ └── tk71.c │ │ │ │ └── tx25 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── tx25.c │ │ │ ├── keymile │ │ │ │ ├── common │ │ │ │ │ ├── common.c │ │ │ │ │ ├── common.h │ │ │ │ │ └── ivm.c │ │ │ │ ├── km82xx │ │ │ │ │ ├── Makefile │ │ │ │ │ └── km82xx.c │ │ │ │ ├── km83xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.kmeter1 │ │ │ │ │ ├── km83xx.c │ │ │ │ │ └── km83xx_i2c.c │ │ │ │ ├── km_arm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── fpga_config.c │ │ │ │ │ ├── km_arm.c │ │ │ │ │ ├── kwbimage-memphis.cfg │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ ├── kwbimage_128M16_1.cfg │ │ │ │ │ └── kwbimage_256M8_1.cfg │ │ │ │ ├── kmp204x │ │ │ │ │ ├── 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 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── kzm9g.c │ │ │ ├── korat │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── config.mk │ │ │ │ ├── init.S │ │ │ │ ├── korat.c │ │ │ │ └── u-boot-F7FC.lds │ │ │ ├── kup │ │ │ │ ├── common │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── kup.c │ │ │ │ │ ├── kup.h │ │ │ │ │ ├── load_sernum_ethaddr.c │ │ │ │ │ └── pcmcia.c │ │ │ │ ├── kup4k │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── kup4k.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ └── kup4x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── kup4x.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ ├── logicpd │ │ │ │ ├── am3517evm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── am3517evm.c │ │ │ │ │ └── am3517evm.h │ │ │ │ ├── imx27lite │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imx27lite.c │ │ │ │ │ └── lowlevel_init.S │ │ │ │ ├── imx31_litekit │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imx31_litekit.c │ │ │ │ │ └── lowlevel_init.S │ │ │ │ ├── omap3som │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── omap3logic.c │ │ │ │ │ └── omap3logic.h │ │ │ │ └── zoom1 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── zoom1.c │ │ │ │ │ └── zoom1.h │ │ │ ├── lwmon │ │ │ │ ├── Makefile │ │ │ │ ├── README.keybd │ │ │ │ ├── flash.c │ │ │ │ ├── lwmon.c │ │ │ │ ├── pcmcia.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── u-boot.lds.debug │ │ │ ├── lwmon5 │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── init.S │ │ │ │ ├── kbd.c │ │ │ │ ├── lwmon5.c │ │ │ │ └── sdram.c │ │ │ ├── manroland │ │ │ │ ├── hmi1001 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── hmi1001.c │ │ │ │ ├── mucmc52 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── mucmc52.c │ │ │ │ ├── uc100 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── pcmcia.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── uc100.c │ │ │ │ └── uc101 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── uc101.c │ │ │ ├── matrix_vision │ │ │ │ ├── common │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mv_common.c │ │ │ │ │ └── mv_common.h │ │ │ │ ├── mergerbox │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── fpga.h │ │ │ │ │ ├── mergerbox.c │ │ │ │ │ ├── mergerbox.h │ │ │ │ │ ├── pci.c │ │ │ │ │ └── sm107.c │ │ │ │ ├── mvbc_p │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.mvbc_p │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── fpga.h │ │ │ │ │ ├── mvbc_p.c │ │ │ │ │ ├── mvbc_p.h │ │ │ │ │ └── mvbc_p_autoscript │ │ │ │ ├── mvblm7 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.mvblm7 │ │ │ │ │ ├── bootscript │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── fpga.h │ │ │ │ │ ├── mvblm7.c │ │ │ │ │ ├── mvblm7.h │ │ │ │ │ └── pci.c │ │ │ │ ├── mvblx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── fpga.h │ │ │ │ │ ├── mvblx.c │ │ │ │ │ ├── mvblx.h │ │ │ │ │ └── sys_eeprom.c │ │ │ │ └── mvsmr │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.mvsmr │ │ │ │ │ ├── bootscript │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── fpga.h │ │ │ │ │ ├── mvsmr.c │ │ │ │ │ ├── mvsmr.h │ │ │ │ │ └── u-boot.lds │ │ │ ├── mcc200 │ │ │ │ ├── Makefile │ │ │ │ ├── auto_update.c │ │ │ │ ├── lcd.c │ │ │ │ ├── mcc200.c │ │ │ │ ├── mt46v16m16-75.h │ │ │ │ ├── mt48lc16m16a2-75.h │ │ │ │ ├── mt48lc16m32s2-75.h │ │ │ │ └── mt48lc8m32b2-6-7.h │ │ │ ├── micronas │ │ │ │ └── vct │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bcu.h │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── 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 │ │ │ ├── mimc │ │ │ │ └── mimc200 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── mimc200.c │ │ │ ├── miromico │ │ │ │ └── hammerhead │ │ │ │ │ ├── Makefile │ │ │ │ │ └── hammerhead.c │ │ │ ├── mosaixtech │ │ │ │ └── icon │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── chip_config.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── icon.c │ │ │ │ │ └── init.S │ │ │ ├── motionpro │ │ │ │ ├── Makefile │ │ │ │ └── motionpro.c │ │ │ ├── mpc8308_p1m │ │ │ │ ├── Makefile │ │ │ │ ├── mpc8308_p1m.c │ │ │ │ └── sdram.c │ │ │ ├── mpl │ │ │ │ ├── common │ │ │ │ │ ├── common_util.c │ │ │ │ │ ├── common_util.h │ │ │ │ │ ├── isa.c │ │ │ │ │ ├── isa.h │ │ │ │ │ ├── kbd.c │ │ │ │ │ ├── kbd.h │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── pci_parts.h │ │ │ │ │ ├── piix4_pci.h │ │ │ │ │ ├── usb_uhci.c │ │ │ │ │ └── usb_uhci.h │ │ │ │ ├── mip405 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmd_mip405.c │ │ │ │ │ ├── init.S │ │ │ │ │ ├── mip405.c │ │ │ │ │ └── mip405.h │ │ │ │ ├── pati │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmd_pati.c │ │ │ │ │ ├── pati.c │ │ │ │ │ ├── pati.h │ │ │ │ │ ├── pci_eeprom.h │ │ │ │ │ └── plx9056.h │ │ │ │ ├── pip405 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── cmd_pip405.c │ │ │ │ │ ├── init.S │ │ │ │ │ ├── pip405.c │ │ │ │ │ ├── pip405.h │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ └── vcma9 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmd_vcma9.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── vcma9.c │ │ │ │ │ └── vcma9.h │ │ │ ├── mpr2 │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── mpr2.c │ │ │ ├── ms7720se │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── ms7720se.c │ │ │ ├── ms7722se │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── ms7722se.c │ │ │ ├── ms7750se │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── ms7750se.c │ │ │ ├── muas3001 │ │ │ │ ├── Makefile │ │ │ │ └── muas3001.c │ │ │ ├── munices │ │ │ │ ├── Makefile │ │ │ │ ├── mt48lc16m16a2-75.h │ │ │ │ └── munices.c │ │ │ ├── musenki │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── flash.c │ │ │ │ └── musenki.c │ │ │ ├── mvblue │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── mvblue.c │ │ │ │ └── u-boot.lds │ │ │ ├── netphone │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── netphone.c │ │ │ │ ├── phone_console.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── u-boot.lds.debug │ │ │ ├── netta │ │ │ │ ├── Makefile │ │ │ │ ├── codec.c │ │ │ │ ├── dsp.c │ │ │ │ ├── flash.c │ │ │ │ ├── netta.c │ │ │ │ ├── pcmcia.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── u-boot.lds.debug │ │ │ ├── netta2 │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── netta2.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── u-boot.lds.debug │ │ │ ├── netvia │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── netvia.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── u-boot.lds.debug │ │ │ ├── nokia │ │ │ │ └── rx51 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── rx51.c │ │ │ │ │ ├── rx51.h │ │ │ │ │ └── tag_omap.h │ │ │ ├── nvidia │ │ │ │ ├── beaver │ │ │ │ │ └── Makefile │ │ │ │ ├── cardhu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cardhu.c │ │ │ │ │ └── pinmux-config-cardhu.h │ │ │ │ ├── common │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── common.mk │ │ │ │ │ ├── emc.c │ │ │ │ │ └── emc.h │ │ │ │ ├── dalmore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dalmore.c │ │ │ │ │ └── pinmux-config-dalmore.h │ │ │ │ ├── harmony │ │ │ │ │ ├── Makefile │ │ │ │ │ └── harmony.c │ │ │ │ ├── jetson-tk1 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── jetson-tk1.c │ │ │ │ │ └── pinmux-config-jetson-tk1.h │ │ │ │ ├── seaboard │ │ │ │ │ ├── Makefile │ │ │ │ │ └── seaboard.c │ │ │ │ ├── venice2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── as3722_init.c │ │ │ │ │ ├── as3722_init.h │ │ │ │ │ ├── pinmux-config-venice2.h │ │ │ │ │ └── venice2.c │ │ │ │ ├── ventana │ │ │ │ │ └── Makefile │ │ │ │ └── whistler │ │ │ │ │ ├── Makefile │ │ │ │ │ └── whistler.c │ │ │ ├── olimex │ │ │ │ └── mx23_olinuxino │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mx23_olinuxino.c │ │ │ │ │ └── spl_boot.c │ │ │ ├── omicron │ │ │ │ └── calimain │ │ │ │ │ ├── Makefile │ │ │ │ │ └── calimain.c │ │ │ ├── openrisc │ │ │ │ └── openrisc-generic │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── openrisc-generic.c │ │ │ │ │ └── or1ksim.cfg │ │ │ ├── overo │ │ │ │ ├── Makefile │ │ │ │ ├── overo.c │ │ │ │ └── overo.h │ │ │ ├── palmld │ │ │ │ ├── Makefile │ │ │ │ └── palmld.c │ │ │ ├── palmtc │ │ │ │ ├── Makefile │ │ │ │ └── palmtc.c │ │ │ ├── palmtreo680 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── palmtreo680.c │ │ │ ├── pandora │ │ │ │ ├── Makefile │ │ │ │ ├── pandora.c │ │ │ │ └── pandora.h │ │ │ ├── pb1x00 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── config.mk │ │ │ │ ├── flash.c │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── pb1x00.c │ │ │ ├── pcs440ep │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── flash.c │ │ │ │ ├── init.S │ │ │ │ └── pcs440ep.c │ │ │ ├── pdm360ng │ │ │ │ ├── Makefile │ │ │ │ └── pdm360ng.c │ │ │ ├── phytec │ │ │ │ ├── pcm030 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── mt46v32m16-75.h │ │ │ │ │ └── pcm030.c │ │ │ │ └── pcm051 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ └── mux.c │ │ │ ├── pm520 │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── mt46v16m16-75.h │ │ │ │ ├── mt48lc16m16a2-75.h │ │ │ │ └── pm520.c │ │ │ ├── pm826 │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ └── pm826.c │ │ │ ├── pm828 │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ └── pm828.c │ │ │ ├── ppcag │ │ │ │ └── bg0900 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bg0900.c │ │ │ │ │ └── spl_boot.c │ │ │ ├── ppmc7xx │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── init.S │ │ │ │ ├── pci.c │ │ │ │ └── ppmc7xx.c │ │ │ ├── ppmc8260 │ │ │ │ ├── Makefile │ │ │ │ └── ppmc8260.c │ │ │ ├── pr1 │ │ │ │ ├── Makefile │ │ │ │ └── pr1.c │ │ │ ├── prodrive │ │ │ │ ├── alpr │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── alpr.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── init.S │ │ │ │ │ └── nand.c │ │ │ │ ├── p3mx │ │ │ │ │ ├── 64460.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── eth.h │ │ │ │ │ ├── misc.S │ │ │ │ │ ├── mpsc.c │ │ │ │ │ ├── mpsc.h │ │ │ │ │ ├── mv_eth.c │ │ │ │ │ ├── mv_eth.h │ │ │ │ │ ├── mv_regs.h │ │ │ │ │ ├── p3mx.c │ │ │ │ │ ├── p3mx.h │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── sdram_init.c │ │ │ │ │ └── serial.c │ │ │ │ └── p3p440 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── init.S │ │ │ │ │ ├── p3p440.c │ │ │ │ │ └── p3p440.h │ │ │ ├── psyent │ │ │ │ ├── common │ │ │ │ │ └── AMDLV065D.c │ │ │ │ ├── pci5441 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ └── pci5441.c │ │ │ │ └── pk1c20 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── led.c │ │ │ │ │ └── pk1c20.c │ │ │ ├── pxa255_idp │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── idp_notes.txt │ │ │ │ ├── pxa_idp.c │ │ │ │ ├── pxa_reg_calcs.out │ │ │ │ └── pxa_reg_calcs.py │ │ │ ├── qemu-mips │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── qemu-mips.c │ │ │ ├── quad100hd │ │ │ │ ├── Makefile │ │ │ │ ├── nand.c │ │ │ │ └── quad100hd.c │ │ │ ├── quantum │ │ │ │ ├── Makefile │ │ │ │ ├── fpga.c │ │ │ │ ├── fpga.h │ │ │ │ ├── quantum.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── u-boot.lds.debug │ │ │ ├── r360mpi │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── pcmcia.c │ │ │ │ ├── r360mpi.c │ │ │ │ └── u-boot.lds │ │ │ ├── raidsonic │ │ │ │ └── ib62x0 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ib62x0.c │ │ │ │ │ ├── ib62x0.h │ │ │ │ │ └── kwbimage.cfg │ │ │ ├── raspberrypi │ │ │ │ └── rpi_b │ │ │ │ │ ├── Makefile │ │ │ │ │ └── rpi_b.c │ │ │ ├── rattler │ │ │ │ ├── Makefile │ │ │ │ └── rattler.c │ │ │ ├── rbc823 │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── kbd.c │ │ │ │ ├── rbc823.c │ │ │ │ └── u-boot.lds │ │ │ ├── renesas │ │ │ │ ├── MigoR │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── migo_r.c │ │ │ │ ├── ap325rxa │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ap325rxa.c │ │ │ │ │ ├── cpld-ap325rxa.c │ │ │ │ │ └── lowlevel_init.S │ │ │ │ ├── ecovec │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ecovec.c │ │ │ │ │ └── lowlevel_init.S │ │ │ │ ├── koelsch │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── koelsch.c │ │ │ │ │ ├── qos.c │ │ │ │ │ └── qos.h │ │ │ │ ├── lager │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lager.c │ │ │ │ │ ├── qos.c │ │ │ │ │ └── qos.h │ │ │ │ ├── r0p7734 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── r0p7734.c │ │ │ │ ├── r2dplus │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── r2dplus.c │ │ │ │ ├── r7780mp │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── r7780mp.c │ │ │ │ │ └── r7780mp.h │ │ │ │ ├── rsk7203 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── rsk7203.c │ │ │ │ ├── rsk7264 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── rsk7264.c │ │ │ │ ├── rsk7269 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── rsk7269.c │ │ │ │ ├── sh7752evb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── sh7752evb.c │ │ │ │ │ ├── spi-boot.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── sh7753evb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── sh7753evb.c │ │ │ │ │ ├── spi-boot.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── sh7757lcr │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.sh7757lcr │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── sh7757lcr.c │ │ │ │ │ ├── spi-boot.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── sh7763rdp │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── sh7763rdp.c │ │ │ │ └── sh7785lcr │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.sh7785lcr │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── rtl8169.h │ │ │ │ │ ├── rtl8169_mac.c │ │ │ │ │ ├── selfcheck.c │ │ │ │ │ └── sh7785lcr.c │ │ │ ├── ronetix │ │ │ │ ├── pm9261 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── led.c │ │ │ │ │ ├── partition.c │ │ │ │ │ └── pm9261.c │ │ │ │ ├── pm9263 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── led.c │ │ │ │ │ ├── partition.c │ │ │ │ │ └── pm9263.c │ │ │ │ └── pm9g45 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── pm9g45.c │ │ │ ├── sacsng │ │ │ │ ├── Makefile │ │ │ │ ├── clkinit.c │ │ │ │ ├── clkinit.h │ │ │ │ ├── flash.c │ │ │ │ ├── ioconfig.h │ │ │ │ └── sacsng.c │ │ │ ├── samsung │ │ │ │ ├── arndale │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── arndale.c │ │ │ │ │ └── arndale_spl.c │ │ │ │ ├── common │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── dfu_sample_env.txt │ │ │ │ │ ├── exynos-uboot-spl.lds │ │ │ │ │ ├── misc.c │ │ │ │ │ ├── multi_i2c.c │ │ │ │ │ ├── thor.c │ │ │ │ │ └── ums.c │ │ │ │ ├── goni │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── goni.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── onenand.c │ │ │ │ ├── origen │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── origen.c │ │ │ │ │ └── tools │ │ │ │ │ │ └── mkorigenspl.c │ │ │ │ ├── smdk2410 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── smdk2410.c │ │ │ │ ├── smdk5250 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── exynos5-dt.c │ │ │ │ │ ├── smdk5250.c │ │ │ │ │ └── smdk5250_spl.c │ │ │ │ ├── smdk5420 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── smdk5420.c │ │ │ │ │ └── smdk5420_spl.c │ │ │ │ ├── smdkc100 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── onenand.c │ │ │ │ │ └── smdkc100.c │ │ │ │ ├── smdkv310 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── smdkv310.c │ │ │ │ │ └── tools │ │ │ │ │ │ └── mksmdkv310spl.c │ │ │ │ ├── trats │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── setup.h │ │ │ │ │ └── trats.c │ │ │ │ ├── trats2 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── trats2.c │ │ │ │ └── universal_c210 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── onenand.c │ │ │ │ │ └── universal.c │ │ │ ├── sandburst │ │ │ │ ├── common │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── sb_common.c │ │ │ │ │ └── sb_common.h │ │ │ │ ├── karef │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── hal_ka_of_auto.h │ │ │ │ │ ├── hal_ka_sc_auto.h │ │ │ │ │ ├── init.S │ │ │ │ │ ├── karef.c │ │ │ │ │ ├── karef.h │ │ │ │ │ ├── karef_version.h │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ └── metrobox │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── hal_xc_auto.h │ │ │ │ │ ├── init.S │ │ │ │ │ ├── metrobox.c │ │ │ │ │ ├── metrobox.h │ │ │ │ │ ├── metrobox_version.h │ │ │ │ │ └── u-boot.lds.debug │ │ │ ├── sandisk │ │ │ │ └── sansa_fuze_plus │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── sfp.c │ │ │ │ │ └── spl_boot.c │ │ │ ├── sandpoint │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── dinkdl │ │ │ │ ├── flash.c │ │ │ │ ├── sandpoint.c │ │ │ │ └── u-boot.lds │ │ │ ├── sbc405 │ │ │ │ ├── Makefile │ │ │ │ ├── sbc405.c │ │ │ │ └── strataflash.c │ │ │ ├── sbc8349 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── pci.c │ │ │ │ └── sbc8349.c │ │ │ ├── sbc8548 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── sbc8548.c │ │ │ │ └── tlb.c │ │ │ ├── sbc8641d │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ └── sbc8641d.c │ │ │ ├── sc3 │ │ │ │ ├── Makefile │ │ │ │ ├── init.S │ │ │ │ ├── sc3.c │ │ │ │ ├── sc3.h │ │ │ │ └── sc3nand.c │ │ │ ├── scb9328 │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── intel.h │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── scb9328.c │ │ │ ├── schulercontrol │ │ │ │ └── sc_sps_1 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── sc_sps_1.c │ │ │ │ │ └── spl_boot.c │ │ │ ├── sheldon │ │ │ │ └── simpc8313 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.simpc8313 │ │ │ │ │ ├── sdram.c │ │ │ │ │ └── simpc8313.c │ │ │ ├── shmin │ │ │ │ ├── Makefile │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── shmin.c │ │ │ ├── siemens │ │ │ │ ├── common │ │ │ │ │ ├── board.c │ │ │ │ │ ├── factoryset.c │ │ │ │ │ └── factoryset.h │ │ │ │ ├── corvus │ │ │ │ │ ├── Makefile │ │ │ │ │ └── board.c │ │ │ │ ├── dxr2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ └── mux.c │ │ │ │ ├── pxm2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ ├── mux.c │ │ │ │ │ └── pmic.h │ │ │ │ ├── rut │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ └── mux.c │ │ │ │ └── taurus │ │ │ │ │ ├── Makefile │ │ │ │ │ └── taurus.c │ │ │ ├── silica │ │ │ │ └── pengwyn │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ └── mux.c │ │ │ ├── sixnet │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── fpgadata.c │ │ │ │ ├── sixnet.c │ │ │ │ ├── sixnet.h │ │ │ │ └── u-boot.lds │ │ │ ├── snmc │ │ │ │ ├── qs850 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── qs850.c │ │ │ │ │ └── u-boot.lds │ │ │ │ └── qs860t │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── qs860t.c │ │ │ │ │ └── u-boot.lds │ │ │ ├── socrates │ │ │ │ ├── Makefile │ │ │ │ ├── ddr.c │ │ │ │ ├── law.c │ │ │ │ ├── nand.c │ │ │ │ ├── sdram.c │ │ │ │ ├── socrates.c │ │ │ │ ├── tlb.c │ │ │ │ └── upm_table.h │ │ │ ├── solidrun │ │ │ │ ├── hummingboard │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── hummingboard.c │ │ │ │ │ └── solo.cfg │ │ │ │ └── mx6-microsom │ │ │ │ │ ├── 800mhz_2x128mx16.cfg │ │ │ │ │ ├── clocks.cfg │ │ │ │ │ └── ddr-800mhz-32bit-setup.cfg │ │ │ ├── spc1920 │ │ │ │ ├── Makefile │ │ │ │ ├── hpi.c │ │ │ │ ├── hpi.h │ │ │ │ ├── pld.h │ │ │ │ ├── spc1920.c │ │ │ │ └── u-boot.lds │ │ │ ├── spd8xx │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── spd8xx.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── u-boot.lds.debug │ │ │ ├── spear │ │ │ │ ├── common │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── spr_lowlevel_init.S │ │ │ │ │ └── spr_misc.c │ │ │ │ ├── spear300 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── spear300.c │ │ │ │ ├── spear310 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── spear310.c │ │ │ │ ├── spear320 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── spear320.c │ │ │ │ ├── spear600 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── spear600.c │ │ │ │ └── x600 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── fpga.h │ │ │ │ │ └── x600.c │ │ │ ├── st-ericsson │ │ │ │ ├── snowball │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── db8500_pins.h │ │ │ │ │ └── snowball.c │ │ │ │ └── u8500 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── gpio.c │ │ │ │ │ └── u8500_href.c │ │ │ ├── st │ │ │ │ └── nhk8815 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.nhk8815 │ │ │ │ │ └── nhk8815.c │ │ │ ├── stx │ │ │ │ ├── stxgp3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── stxgp3.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── stxssa │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── stxssa.c │ │ │ │ │ └── tlb.c │ │ │ │ └── stxxtc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.stxxtc │ │ │ │ │ ├── stxxtc.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ ├── svm_sc8xx │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── svm_sc8xx.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── u-boot.lds.debug │ │ │ ├── synopsys │ │ │ │ └── axs101 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── axs101.c │ │ │ │ │ └── nand.c │ │ │ ├── syteco │ │ │ │ ├── jadecpu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── jadecpu.c │ │ │ │ │ └── lowlevel_init.S │ │ │ │ └── zmx25 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── zmx25.c │ │ │ ├── t3corp │ │ │ │ ├── Makefile │ │ │ │ ├── chip_config.c │ │ │ │ ├── config.mk │ │ │ │ ├── init.S │ │ │ │ └── t3corp.c │ │ │ ├── taskit │ │ │ │ └── stamp9g20 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── led.c │ │ │ │ │ └── stamp9g20.c │ │ │ ├── tcm-bf518 │ │ │ │ ├── Makefile │ │ │ │ └── tcm-bf518.c │ │ │ ├── tcm-bf537 │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── gpio_cfi_flash.c │ │ │ │ └── tcm-bf537.c │ │ │ ├── technexion │ │ │ │ ├── tao3530 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── tao3530.c │ │ │ │ │ └── tao3530.h │ │ │ │ └── twister │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── twister.c │ │ │ │ │ └── twister.h │ │ │ ├── teejet │ │ │ │ └── mt_ventoux │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mt_ventoux.c │ │ │ │ │ └── mt_ventoux.h │ │ │ ├── ti │ │ │ │ ├── am335x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ ├── mux.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── am3517crane │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── am3517crane.c │ │ │ │ │ └── am3517crane.h │ │ │ │ ├── am43xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ └── mux.c │ │ │ │ ├── beagle │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── beagle.c │ │ │ │ │ ├── beagle.h │ │ │ │ │ └── led.c │ │ │ │ ├── dra7xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── evm.c │ │ │ │ │ └── mux_data.h │ │ │ │ ├── evm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── evm.c │ │ │ │ │ └── evm.h │ │ │ │ ├── k2hk_evm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── board.c │ │ │ │ │ └── ddr3.c │ │ │ │ ├── omap5912osk │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── omap5912osk.c │ │ │ │ ├── omap5_uevm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── evm.c │ │ │ │ │ └── mux_data.h │ │ │ │ ├── panda │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── panda.c │ │ │ │ │ └── panda_mux_data.h │ │ │ │ ├── sdp3430 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── sdp.c │ │ │ │ │ └── sdp.h │ │ │ │ ├── sdp4430 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmd_bat.c │ │ │ │ │ ├── sdp.c │ │ │ │ │ └── sdp4430_mux_data.h │ │ │ │ ├── ti814x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── evm.c │ │ │ │ │ ├── evm.h │ │ │ │ │ └── mux.c │ │ │ │ ├── ti816x │ │ │ │ │ ├── Makefile │ │ │ │ │ └── evm.c │ │ │ │ └── tnetv107xevm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ └── sdb_board.c │ │ │ ├── timll │ │ │ │ ├── devkit3250 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── devkit3250.c │ │ │ │ └── devkit8000 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── devkit8000.c │ │ │ │ │ └── devkit8000.h │ │ │ ├── toradex │ │ │ │ ├── colibri_pxa270 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── colibri_pxa270.c │ │ │ │ ├── colibri_t20-common │ │ │ │ │ ├── colibri_t20-common.c │ │ │ │ │ └── colibri_t20-common.h │ │ │ │ └── colibri_t20_iris │ │ │ │ │ ├── Makefile │ │ │ │ │ └── colibri_t20_iris.c │ │ │ ├── total5200 │ │ │ │ ├── Makefile │ │ │ │ ├── mt48lc16m16a2-75.h │ │ │ │ ├── mt48lc32m16a2-75.h │ │ │ │ ├── sdram.c │ │ │ │ ├── sdram.h │ │ │ │ └── total5200.c │ │ │ ├── tqc │ │ │ │ ├── tqm5200 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cam5200_flash.c │ │ │ │ │ ├── cmd_stk52xx.c │ │ │ │ │ ├── cmd_tb5200.c │ │ │ │ │ ├── mt48lc16m16a2-75.h │ │ │ │ │ └── tqm5200.c │ │ │ │ ├── tqm8260 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ └── tqm8260.c │ │ │ │ ├── tqm8272 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── nand.c │ │ │ │ │ ├── tqm8272.c │ │ │ │ │ └── tqm8272.h │ │ │ │ ├── tqm834x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── pci.c │ │ │ │ │ └── tqm834x.c │ │ │ │ └── tqm8xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── load_sernum_ethaddr.c │ │ │ │ │ ├── tqm8xx.c │ │ │ │ │ └── u-boot.lds │ │ │ ├── trizepsiv │ │ │ │ ├── Makefile │ │ │ │ ├── conxs.c │ │ │ │ └── eeprom.c │ │ │ ├── ttcontrol │ │ │ │ └── vision2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imximage_hynix.cfg │ │ │ │ │ └── vision2.c │ │ │ ├── udoo │ │ │ │ ├── 1066mhz_4x256mx16.cfg │ │ │ │ ├── Makefile │ │ │ │ ├── clocks.cfg │ │ │ │ ├── ddr-setup.cfg │ │ │ │ ├── udoo.c │ │ │ │ └── udoo.cfg │ │ │ ├── utx8245 │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ └── utx8245.c │ │ │ ├── v37 │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ ├── u-boot.lds │ │ │ │ └── v37.c │ │ │ ├── v38b │ │ │ │ ├── Makefile │ │ │ │ ├── ethaddr.c │ │ │ │ └── v38b.c │ │ │ ├── ve8313 │ │ │ │ ├── Makefile │ │ │ │ └── ve8313.c │ │ │ ├── vpac270 │ │ │ │ ├── Makefile │ │ │ │ ├── onenand.c │ │ │ │ ├── u-boot-spl.lds │ │ │ │ └── vpac270.c │ │ │ ├── w7o │ │ │ │ ├── Makefile │ │ │ │ ├── cmd_vpd.c │ │ │ │ ├── errors.h │ │ │ │ ├── flash.c │ │ │ │ ├── fpga.c │ │ │ │ ├── fsboot.c │ │ │ │ ├── init.S │ │ │ │ ├── post1.S │ │ │ │ ├── post2.c │ │ │ │ ├── u-boot.lds.debug │ │ │ │ ├── vpd.c │ │ │ │ ├── vpd.h │ │ │ │ ├── w7o.c │ │ │ │ ├── w7o.h │ │ │ │ └── watchdog.c │ │ │ ├── wandboard │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── wandboard.c │ │ │ ├── woodburn │ │ │ │ ├── Makefile │ │ │ │ ├── imximage.cfg │ │ │ │ ├── lowlevel_init.S │ │ │ │ └── woodburn.c │ │ │ ├── xaeniax │ │ │ │ ├── Makefile │ │ │ │ ├── flash.c │ │ │ │ └── xaeniax.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 │ │ │ │ ├── xpedite1000 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── init.S │ │ │ │ │ ├── u-boot.lds.debug │ │ │ │ │ └── xpedite1000.c │ │ │ │ ├── xpedite517x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ └── xpedite517x.c │ │ │ │ ├── xpedite520x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── tlb.c │ │ │ │ │ └── xpedite520x.c │ │ │ │ ├── xpedite537x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── tlb.c │ │ │ │ │ └── xpedite537x.c │ │ │ │ └── xpedite550x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── tlb.c │ │ │ │ │ └── xpedite550x.c │ │ │ ├── xilinx │ │ │ │ ├── microblaze-generic │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── microblaze-generic.c │ │ │ │ │ └── xparameters.h │ │ │ │ ├── ml507 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ml507.c │ │ │ │ │ └── xparameters.h │ │ │ │ ├── ppc405-generic │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── xilinx_ppc405_generic.c │ │ │ │ │ └── xparameters.h │ │ │ │ ├── ppc440-generic │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── init.S │ │ │ │ │ ├── xilinx_ppc440_generic.c │ │ │ │ │ └── xparameters.h │ │ │ │ └── zynq │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ └── ps7_init.c │ │ │ ├── zeus │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── update.c │ │ │ │ └── zeus.c │ │ │ ├── zipitz2 │ │ │ │ ├── Makefile │ │ │ │ └── zipitz2.c │ │ │ └── zpc1900 │ │ │ │ ├── Makefile │ │ │ │ └── zpc1900.c │ │ ├── boards.cfg │ │ ├── common │ │ │ ├── Makefile │ │ │ ├── bedbug.c │ │ │ ├── board_f.c │ │ │ ├── board_r.c │ │ │ ├── bootstage.c │ │ │ ├── bouncebuf.c │ │ │ ├── cmd_aes.c │ │ │ ├── cmd_ambapp.c │ │ │ ├── cmd_bdinfo.c │ │ │ ├── cmd_bedbug.c │ │ │ ├── cmd_bmp.c │ │ │ ├── cmd_boot.c │ │ │ ├── cmd_bootldr.c │ │ │ ├── cmd_bootm.c │ │ │ ├── cmd_bootmenu.c │ │ │ ├── cmd_bootstage.c │ │ │ ├── cmd_cache.c │ │ │ ├── cmd_cbfs.c │ │ │ ├── cmd_clk.c │ │ │ ├── cmd_console.c │ │ │ ├── cmd_cplbinfo.c │ │ │ ├── cmd_cramfs.c │ │ │ ├── cmd_dataflash_mmc_mux.c │ │ │ ├── cmd_date.c │ │ │ ├── cmd_dcr.c │ │ │ ├── cmd_demo.c │ │ │ ├── cmd_dfu.c │ │ │ ├── cmd_diag.c │ │ │ ├── cmd_disk.c │ │ │ ├── cmd_display.c │ │ │ ├── cmd_dtt.c │ │ │ ├── cmd_echo.c │ │ │ ├── cmd_eeprom.c │ │ │ ├── cmd_elf.c │ │ │ ├── cmd_exit.c │ │ │ ├── cmd_ext2.c │ │ │ ├── cmd_ext4.c │ │ │ ├── cmd_fat.c │ │ │ ├── cmd_fdc.c │ │ │ ├── cmd_fdt.c │ │ │ ├── cmd_fitupd.c │ │ │ ├── cmd_flash.c │ │ │ ├── cmd_fpga.c │ │ │ ├── cmd_fpgad.c │ │ │ ├── cmd_fs.c │ │ │ ├── cmd_fuse.c │ │ │ ├── cmd_gettime.c │ │ │ ├── cmd_gpio.c │ │ │ ├── cmd_gpt.c │ │ │ ├── cmd_hash.c │ │ │ ├── cmd_help.c │ │ │ ├── cmd_i2c.c │ │ │ ├── cmd_ide.c │ │ │ ├── cmd_immap.c │ │ │ ├── cmd_ini.c │ │ │ ├── cmd_io.c │ │ │ ├── cmd_irq.c │ │ │ ├── cmd_itest.c │ │ │ ├── cmd_jffs2.c │ │ │ ├── cmd_ldrinfo.c │ │ │ ├── cmd_led.c │ │ │ ├── cmd_license.c │ │ │ ├── cmd_load.c │ │ │ ├── cmd_log.c │ │ │ ├── cmd_lzmadec.c │ │ │ ├── cmd_mac.c │ │ │ ├── cmd_md5sum.c │ │ │ ├── cmd_mdio.c │ │ │ ├── cmd_mem.c │ │ │ ├── cmd_mfsl.c │ │ │ ├── cmd_mii.c │ │ │ ├── cmd_misc.c │ │ │ ├── cmd_mmc.c │ │ │ ├── cmd_mmc_spi.c │ │ │ ├── cmd_mp.c │ │ │ ├── cmd_mtdparts.c │ │ │ ├── cmd_nand.c │ │ │ ├── cmd_net.c │ │ │ ├── cmd_nvedit.c │ │ │ ├── cmd_onenand.c │ │ │ ├── cmd_otp.c │ │ │ ├── cmd_part.c │ │ │ ├── cmd_pci.c │ │ │ ├── cmd_pcmcia.c │ │ │ ├── cmd_portio.c │ │ │ ├── cmd_pxe.c │ │ │ ├── cmd_read.c │ │ │ ├── cmd_reginfo.c │ │ │ ├── cmd_reiser.c │ │ │ ├── cmd_sandbox.c │ │ │ ├── cmd_sata.c │ │ │ ├── cmd_scsi.c │ │ │ ├── cmd_setexpr.c │ │ │ ├── cmd_sf.c │ │ │ ├── cmd_sha1sum.c │ │ │ ├── cmd_softswitch.c │ │ │ ├── cmd_sound.c │ │ │ ├── cmd_source.c │ │ │ ├── cmd_spi.c │ │ │ ├── cmd_spibootldr.c │ │ │ ├── cmd_spl.c │ │ │ ├── cmd_strings.c │ │ │ ├── cmd_terminal.c │ │ │ ├── cmd_test.c │ │ │ ├── cmd_thordown.c │ │ │ ├── cmd_time.c │ │ │ ├── cmd_tpm.c │ │ │ ├── cmd_trace.c │ │ │ ├── cmd_tsi148.c │ │ │ ├── cmd_ubi.c │ │ │ ├── cmd_ubifs.c │ │ │ ├── cmd_universe.c │ │ │ ├── cmd_unzip.c │ │ │ ├── cmd_usb.c │ │ │ ├── cmd_usb_mass_storage.c │ │ │ ├── cmd_version.c │ │ │ ├── cmd_ximg.c │ │ │ ├── cmd_yaffs2.c │ │ │ ├── cmd_zfs.c │ │ │ ├── cmd_zip.c │ │ │ ├── command.c │ │ │ ├── console.c │ │ │ ├── cros_ec.c │ │ │ ├── ddr_spd.c │ │ │ ├── dlmalloc.c │ │ │ ├── dlmalloc.src │ │ │ ├── edid.c │ │ │ ├── env_attr.c │ │ │ ├── env_callback.c │ │ │ ├── env_common.c │ │ │ ├── env_dataflash.c │ │ │ ├── env_eeprom.c │ │ │ ├── env_embedded.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_sf.c │ │ │ ├── env_ubi.c │ │ │ ├── exports.c │ │ │ ├── fdt_support.c │ │ │ ├── flash.c │ │ │ ├── hash.c │ │ │ ├── hush.c │ │ │ ├── hwconfig.c │ │ │ ├── image-fdt.c │ │ │ ├── image-fit.c │ │ │ ├── image-sig.c │ │ │ ├── image.c │ │ │ ├── iomux.c │ │ │ ├── kallsyms.c │ │ │ ├── kgdb.c │ │ │ ├── kgdb_stubs.c │ │ │ ├── lcd.c │ │ │ ├── lynxkdi.c │ │ │ ├── main.c │ │ │ ├── memsize.c │ │ │ ├── menu.c │ │ │ ├── miiphyutil.c │ │ │ ├── modem.c │ │ │ ├── s_record.c │ │ │ ├── spl │ │ │ │ ├── Makefile │ │ │ │ ├── spl.c │ │ │ │ ├── spl_fat.c │ │ │ │ ├── spl_mmc.c │ │ │ │ ├── spl_nand.c │ │ │ │ ├── spl_net.c │ │ │ │ ├── spl_nor.c │ │ │ │ ├── spl_onenand.c │ │ │ │ ├── spl_sata.c │ │ │ │ ├── spl_usb.c │ │ │ │ └── spl_ymodem.c │ │ │ ├── splash.c │ │ │ ├── stdio.c │ │ │ ├── system_map.c │ │ │ ├── update.c │ │ │ ├── usb.c │ │ │ ├── usb_hub.c │ │ │ ├── usb_kbd.c │ │ │ ├── usb_storage.c │ │ │ └── xyzModem.c │ │ ├── config.mk │ │ ├── disk │ │ │ ├── Makefile │ │ │ ├── part.c │ │ │ ├── part_amiga.c │ │ │ ├── part_amiga.h │ │ │ ├── part_dos.c │ │ │ ├── part_dos.h │ │ │ ├── part_efi.c │ │ │ ├── part_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-SoC │ │ │ ├── README.ARM-memory-map │ │ │ ├── README.AVR32 │ │ │ ├── README.AVR32-port-muxing │ │ │ ├── README.JFFS2 │ │ │ ├── README.JFFS2_NAND │ │ │ ├── README.LED │ │ │ ├── README.LED_display │ │ │ ├── README.MPC866 │ │ │ ├── README.Modem │ │ │ ├── README.N1213 │ │ │ ├── README.NDS32 │ │ │ ├── README.NetConsole │ │ │ ├── README.OFT │ │ │ ├── README.POST │ │ │ ├── README.SNTP │ │ │ ├── README.SPL │ │ │ ├── README.TPL │ │ │ ├── README.VLAN │ │ │ ├── README.VSC3316-3308 │ │ │ ├── README.ag102 │ │ │ ├── README.arm-caches │ │ │ ├── README.arm-relocation │ │ │ ├── README.arm64 │ │ │ ├── README.at91 │ │ │ ├── README.at91-soc │ │ │ ├── README.atmel_mci │ │ │ ├── README.atmel_pmecc │ │ │ ├── README.autoboot │ │ │ ├── README.b4860qds │ │ │ ├── README.bedbug │ │ │ ├── README.bitbangMII │ │ │ ├── README.blackfin │ │ │ ├── README.bootmenu │ │ │ ├── README.bus_vcxk │ │ │ ├── README.cfi │ │ │ ├── README.commands │ │ │ ├── README.commands.itest │ │ │ ├── README.commands.spl │ │ │ ├── README.console │ │ │ ├── README.davinci │ │ │ ├── README.davinci.nand_spl │ │ │ ├── README.displaying-bmps │ │ │ ├── README.dns │ │ │ ├── README.drivers.eth │ │ │ ├── README.enetaddr │ │ │ ├── README.ext4 │ │ │ ├── README.falcon │ │ │ ├── README.fdt-control │ │ │ ├── README.fec_mxc │ │ │ ├── README.fsl-ddr │ │ │ ├── README.fsl-hwconfig │ │ │ ├── README.fsl_iim │ │ │ ├── README.fuse │ │ │ ├── README.generic-board │ │ │ ├── README.generic_usb_ohci │ │ │ ├── README.gpt │ │ │ ├── README.hwconfig │ │ │ ├── README.idma2intr │ │ │ ├── README.imx25 │ │ │ ├── README.imx27 │ │ │ ├── README.imx31 │ │ │ ├── README.imx5 │ │ │ ├── README.imx6 │ │ │ ├── README.imximage │ │ │ ├── README.iomux │ │ │ ├── README.kwbimage │ │ │ ├── README.link-local │ │ │ ├── README.lynxkdi │ │ │ ├── README.m54418twr │ │ │ ├── README.m68k │ │ │ ├── README.malta │ │ │ ├── README.marubun-pcmcia │ │ │ ├── README.memory-test │ │ │ ├── README.menu │ │ │ ├── README.mips │ │ │ ├── README.mpc5xx │ │ │ ├── README.mpc74xx │ │ │ ├── README.mpc83xx.ddrecc │ │ │ ├── README.mpc83xxads │ │ │ ├── README.mpc85xx │ │ │ ├── README.mpc85xx-sd-spi-boot │ │ │ ├── README.mpc85xx-spin-table │ │ │ ├── README.mpc85xxads │ │ │ ├── README.mpc85xxcds │ │ │ ├── README.mxc_hab │ │ │ ├── README.mxc_ocotp │ │ │ ├── README.mxs │ │ │ ├── README.mxsimage │ │ │ ├── README.nand │ │ │ ├── README.nand-boot-ppc440 │ │ │ ├── README.ne2000 │ │ │ ├── README.nokia_rx51 │ │ │ ├── README.omap-reset-time │ │ │ ├── README.omap-ulpi-viewport │ │ │ ├── README.omap3 │ │ │ ├── README.pblimage │ │ │ ├── README.plan9 │ │ │ ├── README.power-framework │ │ │ ├── README.ppc440 │ │ │ ├── README.pxe │ │ │ ├── README.qemu-mips │ │ │ ├── README.ramboot-ppc85xx │ │ │ ├── README.rmobile │ │ │ ├── README.s5pc1xx │ │ │ ├── README.sandbox │ │ │ ├── README.sata │ │ │ ├── README.sched │ │ │ ├── README.scrapyard │ │ │ ├── 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.switch_config │ │ │ ├── README.t4240qds │ │ │ ├── README.trace │ │ │ ├── README.ubi │ │ │ ├── README.ublimage │ │ │ ├── README.unaligned-memory-access.txt │ │ │ ├── README.update │ │ │ ├── README.usb │ │ │ ├── README.vf610 │ │ │ ├── README.video │ │ │ ├── README.vxworks │ │ │ ├── README.watchdog │ │ │ ├── README.zfs │ │ │ ├── README.zynq │ │ │ ├── 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 │ │ │ ├── device-tree-bindings │ │ │ │ ├── README │ │ │ │ ├── clock │ │ │ │ │ └── nvidia,tegra20-car.txt │ │ │ │ ├── exynos │ │ │ │ │ ├── dwmmc.txt │ │ │ │ │ ├── isp-spi.txt │ │ │ │ │ ├── sound.txt │ │ │ │ │ └── tmu.txt │ │ │ │ ├── i2c │ │ │ │ │ └── tegra20-i2c.txt │ │ │ │ ├── input │ │ │ │ │ └── cros-ec-keyb.txt │ │ │ │ ├── misc │ │ │ │ │ └── cros-ec.txt │ │ │ │ ├── nand │ │ │ │ │ └── nvidia,tegra20-nand.txt │ │ │ │ ├── pwm │ │ │ │ │ └── tegra20-pwm.txt │ │ │ │ ├── spi │ │ │ │ │ └── spi-bus.txt │ │ │ │ ├── usb │ │ │ │ │ └── tegra-usb.txt │ │ │ │ └── video │ │ │ │ │ ├── displaymode.txt │ │ │ │ │ ├── exynos-dp.txt │ │ │ │ │ ├── exynos-fb.txt │ │ │ │ │ ├── exynos_mipi_dsi.txt │ │ │ │ │ ├── sandbox-fb.txt │ │ │ │ │ ├── simple-framebuffer.txt │ │ │ │ │ └── tegra20-dc.txt │ │ │ ├── driver-model │ │ │ │ └── README.txt │ │ │ ├── feature-removal-schedule.txt │ │ │ ├── git-mailrc │ │ │ ├── kwboot.1 │ │ │ ├── mkimage.1 │ │ │ └── uImage.FIT │ │ │ │ ├── command_syntax_extensions.txt │ │ │ │ ├── howto.txt │ │ │ │ ├── kernel.its │ │ │ │ ├── kernel_fdt.its │ │ │ │ ├── multi.its │ │ │ │ ├── sign-configs.its │ │ │ │ ├── sign-images.its │ │ │ │ ├── signature.txt │ │ │ │ ├── source_file_format.txt │ │ │ │ ├── update3.its │ │ │ │ ├── update_uboot.its │ │ │ │ └── verified-boot.txt │ │ ├── drivers │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ │ ├── Makefile │ │ │ │ ├── ahci.c │ │ │ │ ├── ata_piix.c │ │ │ │ ├── ata_piix.h │ │ │ │ ├── dwc_ahsata.c │ │ │ │ ├── dwc_ahsata.h │ │ │ │ ├── fsl_sata.c │ │ │ │ ├── fsl_sata.h │ │ │ │ ├── ftide020.c │ │ │ │ ├── ftide020.h │ │ │ │ ├── libata.c │ │ │ │ ├── mvsata_ide.c │ │ │ │ ├── mxc_ata.c │ │ │ │ ├── pata_bfin.c │ │ │ │ ├── pata_bfin.h │ │ │ │ ├── sandbox.c │ │ │ │ ├── sata_dwc.c │ │ │ │ ├── sata_dwc.h │ │ │ │ ├── sata_sil.c │ │ │ │ ├── sata_sil.h │ │ │ │ ├── sata_sil3114.c │ │ │ │ ├── sata_sil3114.h │ │ │ │ ├── sil680.c │ │ │ │ ├── sym53c8xx.c │ │ │ │ └── systemace.c │ │ │ ├── bootcount │ │ │ │ ├── Makefile │ │ │ │ ├── bootcount.c │ │ │ │ ├── bootcount_at91.c │ │ │ │ ├── bootcount_blackfin.c │ │ │ │ ├── bootcount_davinci.c │ │ │ │ ├── bootcount_env.c │ │ │ │ ├── bootcount_i2c.c │ │ │ │ └── bootcount_ram.c │ │ │ ├── core │ │ │ │ ├── Makefile │ │ │ │ ├── device.c │ │ │ │ ├── lists.c │ │ │ │ ├── root.c │ │ │ │ ├── uclass.c │ │ │ │ └── util.c │ │ │ ├── crypto │ │ │ │ ├── Makefile │ │ │ │ ├── ace_sha.c │ │ │ │ └── ace_sha.h │ │ │ ├── ddr │ │ │ │ └── fsl │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ ├── demo │ │ │ │ ├── Makefile │ │ │ │ ├── demo-pdata.c │ │ │ │ ├── demo-shape.c │ │ │ │ ├── demo-simple.c │ │ │ │ └── demo-uclass.c │ │ │ ├── dfu │ │ │ │ ├── Makefile │ │ │ │ ├── dfu.c │ │ │ │ ├── dfu_mmc.c │ │ │ │ ├── dfu_nand.c │ │ │ │ └── dfu_ram.c │ │ │ ├── dma │ │ │ │ ├── MCD_dmaApi.c │ │ │ │ ├── MCD_tasks.c │ │ │ │ ├── MCD_tasksInit.c │ │ │ │ ├── Makefile │ │ │ │ ├── apbh_dma.c │ │ │ │ ├── fsl_dma.c │ │ │ │ └── omap3_dma.c │ │ │ ├── fpga │ │ │ │ ├── ACEX1K.c │ │ │ │ ├── Makefile │ │ │ │ ├── altera.c │ │ │ │ ├── cyclon2.c │ │ │ │ ├── fpga.c │ │ │ │ ├── ivm_core.c │ │ │ │ ├── lattice.c │ │ │ │ ├── spartan2.c │ │ │ │ ├── spartan3.c │ │ │ │ ├── stratixII.c │ │ │ │ ├── virtex2.c │ │ │ │ ├── xilinx.c │ │ │ │ └── zynqpl.c │ │ │ ├── gpio │ │ │ │ ├── Makefile │ │ │ │ ├── adi_gpio2.c │ │ │ │ ├── altera_pio.c │ │ │ │ ├── at91_gpio.c │ │ │ │ ├── bcm2835_gpio.c │ │ │ │ ├── da8xx_gpio.c │ │ │ │ ├── db8500_gpio.c │ │ │ │ ├── gpio-uclass.c │ │ │ │ ├── intel_ich6_gpio.c │ │ │ │ ├── kona_gpio.c │ │ │ │ ├── kw_gpio.c │ │ │ │ ├── mpc83xx_gpio.c │ │ │ │ ├── mvgpio.c │ │ │ │ ├── mvgpio.h │ │ │ │ ├── mvmfp.c │ │ │ │ ├── mxc_gpio.c │ │ │ │ ├── mxs_gpio.c │ │ │ │ ├── omap_gpio.c │ │ │ │ ├── pca953x.c │ │ │ │ ├── pca9698.c │ │ │ │ ├── s3c2440_gpio.c │ │ │ │ ├── s5p_gpio.c │ │ │ │ ├── sandbox.c │ │ │ │ ├── sh_pfc.c │ │ │ │ ├── spear_gpio.c │ │ │ │ ├── sx151x.c │ │ │ │ ├── tca642x.c │ │ │ │ ├── tegra_gpio.c │ │ │ │ └── xilinx_gpio.c │ │ │ ├── hwmon │ │ │ │ ├── Makefile │ │ │ │ ├── adm1021.c │ │ │ │ ├── adt7460.c │ │ │ │ ├── ds1621.c │ │ │ │ ├── ds1722.c │ │ │ │ ├── ds1775.c │ │ │ │ ├── lm63.c │ │ │ │ ├── lm73.c │ │ │ │ ├── lm75.c │ │ │ │ └── lm81.c │ │ │ ├── i2c │ │ │ │ ├── Makefile │ │ │ │ ├── bfin-twi_i2c.c │ │ │ │ ├── davinci_i2c.c │ │ │ │ ├── davinci_i2c.h │ │ │ │ ├── designware_i2c.c │ │ │ │ ├── designware_i2c.h │ │ │ │ ├── fsl_i2c.c │ │ │ │ ├── fti2c010.c │ │ │ │ ├── fti2c010.h │ │ │ │ ├── i2c_core.c │ │ │ │ ├── kona_i2c.c │ │ │ │ ├── mv_i2c.c │ │ │ │ ├── mv_i2c.h │ │ │ │ ├── mvtwsi.c │ │ │ │ ├── mxc_i2c.c │ │ │ │ ├── mxs_i2c.c │ │ │ │ ├── omap24xx_i2c.c │ │ │ │ ├── omap24xx_i2c.h │ │ │ │ ├── pca9564_i2c.c │ │ │ │ ├── ppc4xx_i2c.c │ │ │ │ ├── rcar_i2c.c │ │ │ │ ├── s3c24x0_i2c.c │ │ │ │ ├── s3c24x0_i2c.h │ │ │ │ ├── sh_i2c.c │ │ │ │ ├── sh_sh7734_i2c.c │ │ │ │ ├── soft_i2c.c │ │ │ │ ├── tegra_i2c.c │ │ │ │ ├── tsi108_i2c.c │ │ │ │ ├── u8500_i2c.c │ │ │ │ ├── u8500_i2c.h │ │ │ │ └── zynq_i2c.c │ │ │ ├── input │ │ │ │ ├── Makefile │ │ │ │ ├── cros_ec_keyb.c │ │ │ │ ├── i8042.c │ │ │ │ ├── input.c │ │ │ │ ├── key_matrix.c │ │ │ │ ├── keyboard.c │ │ │ │ ├── pc_keyb.c │ │ │ │ ├── ps2mult.c │ │ │ │ ├── ps2ser.c │ │ │ │ └── tegra-kbc.c │ │ │ ├── misc │ │ │ │ ├── Makefile │ │ │ │ ├── ali512x.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 │ │ │ │ ├── fsl_ifc.c │ │ │ │ ├── fsl_iim.c │ │ │ │ ├── gpio_led.c │ │ │ │ ├── mc9sdz60.c │ │ │ │ ├── mxc_ocotp.c │ │ │ │ ├── mxs_ocotp.c │ │ │ │ ├── ns87308.c │ │ │ │ ├── pdsp188x.c │ │ │ │ ├── status_led.c │ │ │ │ └── twl4030_led.c │ │ │ ├── mmc │ │ │ │ ├── Makefile │ │ │ │ ├── arm_pl180_mmci.c │ │ │ │ ├── arm_pl180_mmci.h │ │ │ │ ├── bcm2835_sdhci.c │ │ │ │ ├── bfin_sdh.c │ │ │ │ ├── davinci_mmc.c │ │ │ │ ├── dw_mmc.c │ │ │ │ ├── exynos_dw_mmc.c │ │ │ │ ├── fsl_esdhc.c │ │ │ │ ├── fsl_esdhc_spl.c │ │ │ │ ├── ftsdc010_mci.c │ │ │ │ ├── ftsdc021_sdhci.c │ │ │ │ ├── gen_atmel_mci.c │ │ │ │ ├── kona_sdhci.c │ │ │ │ ├── mmc.c │ │ │ │ ├── mmc_private.h │ │ │ │ ├── mmc_spi.c │ │ │ │ ├── mmc_write.c │ │ │ │ ├── mv_sdhci.c │ │ │ │ ├── mxcmmc.c │ │ │ │ ├── mxsmmc.c │ │ │ │ ├── omap_hsmmc.c │ │ │ │ ├── pxa_mmc_gen.c │ │ │ │ ├── s5p_sdhci.c │ │ │ │ ├── sdhci.c │ │ │ │ ├── sh_mmcif.c │ │ │ │ ├── sh_mmcif.h │ │ │ │ ├── socfpga_dw_mmc.c │ │ │ │ ├── spear_sdhci.c │ │ │ │ ├── tegra_mmc.c │ │ │ │ └── zynq_sdhci.c │ │ │ ├── mtd │ │ │ │ ├── Makefile │ │ │ │ ├── at45.c │ │ │ │ ├── cfi_flash.c │ │ │ │ ├── cfi_mtd.c │ │ │ │ ├── dataflash.c │ │ │ │ ├── ftsmc020.c │ │ │ │ ├── jedec_flash.c │ │ │ │ ├── mtdconcat.c │ │ │ │ ├── mtdcore.c │ │ │ │ ├── mtdpart.c │ │ │ │ ├── mw_eeprom.c │ │ │ │ ├── nand │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── am335x_spl_bch.c │ │ │ │ │ ├── atmel_nand.c │ │ │ │ │ ├── atmel_nand_ecc.h │ │ │ │ │ ├── bfin_nand.c │ │ │ │ │ ├── davinci_nand.c │ │ │ │ │ ├── docg4.c │ │ │ │ │ ├── docg4_spl.c │ │ │ │ │ ├── fsl_elbc_nand.c │ │ │ │ │ ├── fsl_elbc_spl.c │ │ │ │ │ ├── fsl_ifc_nand.c │ │ │ │ │ ├── fsl_ifc_spl.c │ │ │ │ │ ├── fsl_upm.c │ │ │ │ │ ├── fsmc_nand.c │ │ │ │ │ ├── jz4740_nand.c │ │ │ │ │ ├── kb9202_nand.c │ │ │ │ │ ├── kirkwood_nand.c │ │ │ │ │ ├── kmeter1_nand.c │ │ │ │ │ ├── mpc5121_nfc.c │ │ │ │ │ ├── mxc_nand.c │ │ │ │ │ ├── mxc_nand.h │ │ │ │ │ ├── mxc_nand_spl.c │ │ │ │ │ ├── mxs_nand.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_simple.c │ │ │ │ │ ├── nand_util.c │ │ │ │ │ ├── ndfc.c │ │ │ │ │ ├── nomadik.c │ │ │ │ │ ├── omap_elm.c │ │ │ │ │ ├── omap_gpmc.c │ │ │ │ │ ├── s3c2410_nand.c │ │ │ │ │ ├── tegra_nand.c │ │ │ │ │ └── tegra_nand.h │ │ │ │ ├── onenand │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── onenand_base.c │ │ │ │ │ ├── onenand_bbt.c │ │ │ │ │ ├── onenand_spl.c │ │ │ │ │ ├── onenand_uboot.c │ │ │ │ │ └── samsung.c │ │ │ │ ├── spi │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── eeprom_m95xxx.c │ │ │ │ │ ├── fsl_espi_spl.c │ │ │ │ │ ├── ramtron.c │ │ │ │ │ ├── sandbox.c │ │ │ │ │ ├── sf.c │ │ │ │ │ ├── sf_internal.h │ │ │ │ │ ├── sf_ops.c │ │ │ │ │ ├── sf_params.c │ │ │ │ │ ├── sf_probe.c │ │ │ │ │ └── spi_spl_load.c │ │ │ │ ├── st_smi.c │ │ │ │ └── ubi │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.c │ │ │ │ │ ├── crc32.c │ │ │ │ │ ├── crc32defs.h │ │ │ │ │ ├── crc32table.h │ │ │ │ │ ├── debug.c │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── eba.c │ │ │ │ │ ├── io.c │ │ │ │ │ ├── kapi.c │ │ │ │ │ ├── misc.c │ │ │ │ │ ├── scan.c │ │ │ │ │ ├── scan.h │ │ │ │ │ ├── ubi-media.h │ │ │ │ │ ├── ubi.h │ │ │ │ │ ├── upd.c │ │ │ │ │ ├── vmt.c │ │ │ │ │ ├── vtbl.c │ │ │ │ │ └── wl.c │ │ │ ├── net │ │ │ │ ├── 4xx_enet.c │ │ │ │ ├── 8390.h │ │ │ │ ├── Makefile │ │ │ │ ├── altera_tse.c │ │ │ │ ├── altera_tse.h │ │ │ │ ├── armada100_fec.c │ │ │ │ ├── armada100_fec.h │ │ │ │ ├── at91_emac.c │ │ │ │ ├── ax88180.c │ │ │ │ ├── ax88180.h │ │ │ │ ├── ax88796.c │ │ │ │ ├── ax88796.h │ │ │ │ ├── bfin_mac.c │ │ │ │ ├── bfin_mac.h │ │ │ │ ├── calxedaxgmac.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 │ │ │ │ ├── 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 │ │ │ │ │ ├── fm.c │ │ │ │ │ ├── fm.h │ │ │ │ │ ├── init.c │ │ │ │ │ ├── memac.c │ │ │ │ │ ├── memac_phy.c │ │ │ │ │ ├── p1023.c │ │ │ │ │ ├── p4080.c │ │ │ │ │ ├── p5020.c │ │ │ │ │ ├── p5040.c │ │ │ │ │ ├── t1040.c │ │ │ │ │ ├── t2080.c │ │ │ │ │ ├── t4240.c │ │ │ │ │ ├── tgec.c │ │ │ │ │ └── tgec_phy.c │ │ │ │ ├── fsl_mcdmafec.c │ │ │ │ ├── fsl_mdio.c │ │ │ │ ├── ftgmac100.c │ │ │ │ ├── ftgmac100.h │ │ │ │ ├── ftmac100.c │ │ │ │ ├── ftmac100.h │ │ │ │ ├── ftmac110.c │ │ │ │ ├── ftmac110.h │ │ │ │ ├── greth.c │ │ │ │ ├── greth.h │ │ │ │ ├── keystone_net.c │ │ │ │ ├── ks8695eth.c │ │ │ │ ├── ks8851_mll.c │ │ │ │ ├── ks8851_mll.h │ │ │ │ ├── lan91c96.c │ │ │ │ ├── lan91c96.h │ │ │ │ ├── macb.c │ │ │ │ ├── macb.h │ │ │ │ ├── mcffec.c │ │ │ │ ├── mcfmii.c │ │ │ │ ├── mpc512x_fec.c │ │ │ │ ├── mpc512x_fec.h │ │ │ │ ├── mpc5xxx_fec.c │ │ │ │ ├── mpc5xxx_fec.h │ │ │ │ ├── mvgbe.c │ │ │ │ ├── mvgbe.h │ │ │ │ ├── natsemi.c │ │ │ │ ├── ne2000.c │ │ │ │ ├── ne2000.h │ │ │ │ ├── ne2000_base.c │ │ │ │ ├── ne2000_base.h │ │ │ │ ├── netconsole.c │ │ │ │ ├── ns8382x.c │ │ │ │ ├── pcnet.c │ │ │ │ ├── phy │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── atheros.c │ │ │ │ │ ├── broadcom.c │ │ │ │ │ ├── davicom.c │ │ │ │ │ ├── et1011c.c │ │ │ │ │ ├── generic_10g.c │ │ │ │ │ ├── icplus.c │ │ │ │ │ ├── lxt.c │ │ │ │ │ ├── marvell.c │ │ │ │ │ ├── micrel.c │ │ │ │ │ ├── miiphybb.c │ │ │ │ │ ├── mv88e61xx.c │ │ │ │ │ ├── mv88e61xx.h │ │ │ │ │ ├── mv88e6352.c │ │ │ │ │ ├── natsemi.c │ │ │ │ │ ├── phy.c │ │ │ │ │ ├── realtek.c │ │ │ │ │ ├── smsc.c │ │ │ │ │ ├── teranetics.c │ │ │ │ │ └── vitesse.c │ │ │ │ ├── plb2800_eth.c │ │ │ │ ├── rtl8139.c │ │ │ │ ├── rtl8169.c │ │ │ │ ├── sh_eth.c │ │ │ │ ├── sh_eth.h │ │ │ │ ├── smc91111.c │ │ │ │ ├── smc91111.h │ │ │ │ ├── smc911x.c │ │ │ │ ├── smc911x.h │ │ │ │ ├── sunxi_wemac.c │ │ │ │ ├── tsec.c │ │ │ │ ├── tsi108_eth.c │ │ │ │ ├── uli526x.c │ │ │ │ ├── vsc7385.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 │ │ │ ├── pci │ │ │ │ ├── Makefile │ │ │ │ ├── fsl_pci_init.c │ │ │ │ ├── pci.c │ │ │ │ ├── pci_auto.c │ │ │ │ ├── pci_ftpci100.c │ │ │ │ ├── pci_gt64120.c │ │ │ │ ├── pci_indirect.c │ │ │ │ ├── pci_msc01.c │ │ │ │ ├── pci_sh4.c │ │ │ │ ├── pci_sh7751.c │ │ │ │ ├── pci_sh7780.c │ │ │ │ ├── pcie_imx.c │ │ │ │ ├── tsi108_pci.c │ │ │ │ └── w83c553f.c │ │ │ ├── pcmcia │ │ │ │ ├── Makefile │ │ │ │ ├── i82365.c │ │ │ │ ├── marubun_pcmcia.c │ │ │ │ ├── mpc8xx_pcmcia.c │ │ │ │ ├── rpx_pcmcia.c │ │ │ │ ├── ti_pci1410a.c │ │ │ │ └── tqm8xx_pcmcia.c │ │ │ ├── power │ │ │ │ ├── Makefile │ │ │ │ ├── battery │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bat_trats.c │ │ │ │ │ └── bat_trats2.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 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── muic_max8997.c │ │ │ │ │ ├── pmic_max77686.c │ │ │ │ │ ├── pmic_max8997.c │ │ │ │ │ ├── pmic_max8998.c │ │ │ │ │ ├── pmic_pfuze100.c │ │ │ │ │ ├── pmic_tps65217.c │ │ │ │ │ └── pmic_tps65910.c │ │ │ │ ├── power_core.c │ │ │ │ ├── power_dialog.c │ │ │ │ ├── power_fsl.c │ │ │ │ ├── power_i2c.c │ │ │ │ ├── power_spi.c │ │ │ │ ├── tps6586x.c │ │ │ │ ├── twl4030.c │ │ │ │ └── twl6030.c │ │ │ ├── qe │ │ │ │ ├── Makefile │ │ │ │ ├── fdt.c │ │ │ │ ├── qe.c │ │ │ │ ├── qe.h │ │ │ │ ├── uccf.c │ │ │ │ ├── uccf.h │ │ │ │ ├── uec.c │ │ │ │ ├── uec.h │ │ │ │ ├── uec_phy.c │ │ │ │ └── uec_phy.h │ │ │ ├── rtc │ │ │ │ ├── Makefile │ │ │ │ ├── at91sam9_rtt.c │ │ │ │ ├── bfin_rtc.c │ │ │ │ ├── date.c │ │ │ │ ├── davinci.c │ │ │ │ ├── ds12887.c │ │ │ │ ├── ds1302.c │ │ │ │ ├── ds1306.c │ │ │ │ ├── ds1307.c │ │ │ │ ├── ds1337.c │ │ │ │ ├── ds1374.c │ │ │ │ ├── ds1556.c │ │ │ │ ├── ds164x.c │ │ │ │ ├── ds174x.c │ │ │ │ ├── ds3231.c │ │ │ │ ├── ftrtc010.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 │ │ │ │ ├── mpc5xxx.c │ │ │ │ ├── mpc8xx.c │ │ │ │ ├── mvrtc.c │ │ │ │ ├── mvrtc.h │ │ │ │ ├── mx27rtc.c │ │ │ │ ├── mxsrtc.c │ │ │ │ ├── pcf8563.c │ │ │ │ ├── pl031.c │ │ │ │ ├── pt7c4338.c │ │ │ │ ├── rs5c372.c │ │ │ │ ├── rtc4543.c │ │ │ │ ├── rv3029.c │ │ │ │ ├── rx8025.c │ │ │ │ ├── s3c24x0_rtc.c │ │ │ │ └── x1205.c │ │ │ ├── serial │ │ │ │ ├── Makefile │ │ │ │ ├── altera_jtag_uart.c │ │ │ │ ├── altera_uart.c │ │ │ │ ├── arm_dcc.c │ │ │ │ ├── atmel_usart.c │ │ │ │ ├── atmel_usart.h │ │ │ │ ├── lpc32xx_hsuart.c │ │ │ │ ├── mcfuart.c │ │ │ │ ├── mxs_auart.c │ │ │ │ ├── ns16550.c │ │ │ │ ├── opencores_yanu.c │ │ │ │ ├── sandbox.c │ │ │ │ ├── serial.c │ │ │ │ ├── serial_arc.c │ │ │ │ ├── serial_bfin.c │ │ │ │ ├── serial_imx.c │ │ │ │ ├── serial_ks8695.c │ │ │ │ ├── serial_lpuart.c │ │ │ │ ├── serial_max3100.c │ │ │ │ ├── serial_mxc.c │ │ │ │ ├── serial_ns16550.c │ │ │ │ ├── serial_pl01x.c │ │ │ │ ├── serial_pl01x.h │ │ │ │ ├── serial_pxa.c │ │ │ │ ├── serial_s3c24x0.c │ │ │ │ ├── serial_s5p.c │ │ │ │ ├── serial_sa1100.c │ │ │ │ ├── serial_sh.c │ │ │ │ ├── serial_sh.h │ │ │ │ ├── serial_xuartlite.c │ │ │ │ ├── serial_zynq.c │ │ │ │ ├── usbtty.c │ │ │ │ └── usbtty.h │ │ │ ├── sound │ │ │ │ ├── Makefile │ │ │ │ ├── max98095.c │ │ │ │ ├── max98095.h │ │ │ │ ├── samsung-i2s.c │ │ │ │ ├── sandbox.c │ │ │ │ ├── sound-i2s.c │ │ │ │ ├── sound.c │ │ │ │ ├── wm8994.c │ │ │ │ ├── wm8994.h │ │ │ │ └── wm8994_registers.h │ │ │ ├── spi │ │ │ │ ├── Makefile │ │ │ │ ├── altera_spi.c │ │ │ │ ├── andes_spi.c │ │ │ │ ├── andes_spi.h │ │ │ │ ├── armada100_spi.c │ │ │ │ ├── atmel_dataflash_spi.c │ │ │ │ ├── atmel_spi.c │ │ │ │ ├── atmel_spi.h │ │ │ │ ├── bfin_spi.c │ │ │ │ ├── bfin_spi6xx.c │ │ │ │ ├── cf_qspi.c │ │ │ │ ├── cf_spi.c │ │ │ │ ├── davinci_spi.c │ │ │ │ ├── davinci_spi.h │ │ │ │ ├── exynos_spi.c │ │ │ │ ├── fdt_spi.c │ │ │ │ ├── fsl_espi.c │ │ │ │ ├── ftssp010_spi.c │ │ │ │ ├── ich.c │ │ │ │ ├── ich.h │ │ │ │ ├── kirkwood_spi.c │ │ │ │ ├── mpc52xx_spi.c │ │ │ │ ├── mpc8xxx_spi.c │ │ │ │ ├── mxc_spi.c │ │ │ │ ├── mxs_spi.c │ │ │ │ ├── oc_tiny_spi.c │ │ │ │ ├── omap3_spi.c │ │ │ │ ├── omap3_spi.h │ │ │ │ ├── sandbox_spi.c │ │ │ │ ├── sh_qspi.c │ │ │ │ ├── sh_spi.c │ │ │ │ ├── sh_spi.h │ │ │ │ ├── soft_spi.c │ │ │ │ ├── spi.c │ │ │ │ ├── tegra114_spi.c │ │ │ │ ├── tegra20_sflash.c │ │ │ │ ├── tegra20_slink.c │ │ │ │ ├── ti_qspi.c │ │ │ │ ├── xilinx_spi.c │ │ │ │ ├── xilinx_spi.h │ │ │ │ └── zynq_spi.c │ │ │ ├── tpm │ │ │ │ ├── Makefile │ │ │ │ ├── tpm.c │ │ │ │ ├── tpm_atmel_twi.c │ │ │ │ ├── tpm_private.h │ │ │ │ ├── tpm_tis_i2c.c │ │ │ │ ├── tpm_tis_lpc.c │ │ │ │ └── tpm_tis_sandbox.c │ │ │ ├── twserial │ │ │ │ ├── Makefile │ │ │ │ └── soft_tws.c │ │ │ ├── usb │ │ │ │ ├── eth │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asix.c │ │ │ │ │ ├── mcs7830.c │ │ │ │ │ ├── smsc95xx.c │ │ │ │ │ └── usb_ether.c │ │ │ │ ├── gadget │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── atmel_usba_udc.c │ │ │ │ │ ├── atmel_usba_udc.h │ │ │ │ │ ├── ci_udc.c │ │ │ │ │ ├── ci_udc.h │ │ │ │ │ ├── composite.c │ │ │ │ │ ├── config.c │ │ │ │ │ ├── core.c │ │ │ │ │ ├── designware_udc.c │ │ │ │ │ ├── ep0.c │ │ │ │ │ ├── ep0.h │ │ │ │ │ ├── epautoconf.c │ │ │ │ │ ├── ether.c │ │ │ │ │ ├── f_dfu.c │ │ │ │ │ ├── f_dfu.h │ │ │ │ │ ├── f_mass_storage.c │ │ │ │ │ ├── f_thor.c │ │ │ │ │ ├── f_thor.h │ │ │ │ │ ├── fotg210.c │ │ │ │ │ ├── g_dnl.c │ │ │ │ │ ├── gadget_chips.h │ │ │ │ │ ├── mpc8xx_udc.c │ │ │ │ │ ├── ndis.h │ │ │ │ │ ├── omap1510_udc.c │ │ │ │ │ ├── pxa25x_udc.c │ │ │ │ │ ├── pxa25x_udc.h │ │ │ │ │ ├── pxa27x_udc.c │ │ │ │ │ ├── regs-otg.h │ │ │ │ │ ├── rndis.c │ │ │ │ │ ├── rndis.h │ │ │ │ │ ├── s3c_udc_otg.c │ │ │ │ │ ├── s3c_udc_otg_xfer_dma.c │ │ │ │ │ ├── storage_common.c │ │ │ │ │ └── usbstring.c │ │ │ │ ├── host │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ehci-armada100.c │ │ │ │ │ ├── ehci-atmel.c │ │ │ │ │ ├── ehci-exynos.c │ │ │ │ │ ├── ehci-faraday.c │ │ │ │ │ ├── ehci-fsl.c │ │ │ │ │ ├── ehci-hcd.c │ │ │ │ │ ├── ehci-marvell.c │ │ │ │ │ ├── ehci-mpc512x.c │ │ │ │ │ ├── ehci-mx5.c │ │ │ │ │ ├── ehci-mx6.c │ │ │ │ │ ├── ehci-mxc.c │ │ │ │ │ ├── ehci-mxs.c │ │ │ │ │ ├── ehci-omap.c │ │ │ │ │ ├── ehci-pci.c │ │ │ │ │ ├── ehci-ppc4xx.c │ │ │ │ │ ├── ehci-rmobile.c │ │ │ │ │ ├── ehci-spear.c │ │ │ │ │ ├── ehci-tegra.c │ │ │ │ │ ├── ehci-vct.c │ │ │ │ │ ├── ehci.h │ │ │ │ │ ├── isp116x-hcd.c │ │ │ │ │ ├── isp116x.h │ │ │ │ │ ├── ohci-at91.c │ │ │ │ │ ├── ohci-da8xx.c │ │ │ │ │ ├── ohci-hcd.c │ │ │ │ │ ├── ohci-s3c24xx.c │ │ │ │ │ ├── ohci-s3c24xx.h │ │ │ │ │ ├── ohci.h │ │ │ │ │ ├── r8a66597-hcd.c │ │ │ │ │ ├── r8a66597.h │ │ │ │ │ ├── sl811-hcd.c │ │ │ │ │ ├── sl811.h │ │ │ │ │ ├── utmi-armada100.c │ │ │ │ │ ├── xhci-exynos5.c │ │ │ │ │ ├── xhci-mem.c │ │ │ │ │ ├── xhci-omap.c │ │ │ │ │ ├── xhci-ring.c │ │ │ │ │ ├── xhci.c │ │ │ │ │ └── xhci.h │ │ │ │ ├── musb-new │ │ │ │ │ ├── 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 │ │ │ │ │ ├── omap2430.c │ │ │ │ │ ├── omap2430.h │ │ │ │ │ └── usb-compat.h │ │ │ │ ├── musb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── am35x.c │ │ │ │ │ ├── am35x.h │ │ │ │ │ ├── blackfin_usb.c │ │ │ │ │ ├── blackfin_usb.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 │ │ │ │ │ └── twl4030.c │ │ │ │ └── ulpi │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── omap-ulpi-viewport.c │ │ │ │ │ ├── ulpi-viewport.c │ │ │ │ │ └── ulpi.c │ │ │ ├── video │ │ │ │ ├── Makefile │ │ │ │ ├── ati_ids.h │ │ │ │ ├── ati_radeon_fb.c │ │ │ │ ├── ati_radeon_fb.h │ │ │ │ ├── atmel_hlcdfb.c │ │ │ │ ├── atmel_lcdfb.c │ │ │ │ ├── bcm2835.c │ │ │ │ ├── bus_vcxk.c │ │ │ │ ├── cfb_console.c │ │ │ │ ├── coreboot_fb.c │ │ │ │ ├── ct69000.c │ │ │ │ ├── da8xx-fb.c │ │ │ │ ├── da8xx-fb.h │ │ │ │ ├── exynos_dp.c │ │ │ │ ├── exynos_dp_lowlevel.c │ │ │ │ ├── exynos_dp_lowlevel.h │ │ │ │ ├── exynos_fb.c │ │ │ │ ├── exynos_fb.h │ │ │ │ ├── exynos_fimd.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 │ │ │ │ ├── formike.c │ │ │ │ ├── fsl_diu_fb.c │ │ │ │ ├── ipu.h │ │ │ │ ├── ipu_common.c │ │ │ │ ├── ipu_disp.c │ │ │ │ ├── ipu_regs.h │ │ │ │ ├── l5f31188.c │ │ │ │ ├── ld9040.c │ │ │ │ ├── mb862xx.c │ │ │ │ ├── mb86r0xgdc.c │ │ │ │ ├── mpc8xx_lcd.c │ │ │ │ ├── mx3fb.c │ │ │ │ ├── mxc_ipuv3_fb.c │ │ │ │ ├── mxcfb.h │ │ │ │ ├── mxsfb.c │ │ │ │ ├── omap3_dss.c │ │ │ │ ├── pxa_lcd.c │ │ │ │ ├── s6e63d6.c │ │ │ │ ├── s6e8ax0.c │ │ │ │ ├── sandbox_sdl.c │ │ │ │ ├── scf0403_lcd.c │ │ │ │ ├── sed13806.c │ │ │ │ ├── sed156x.c │ │ │ │ ├── sm501.c │ │ │ │ ├── smiLynxEM.c │ │ │ │ ├── tegra.c │ │ │ │ ├── videomodes.c │ │ │ │ └── videomodes.h │ │ │ └── watchdog │ │ │ │ ├── Makefile │ │ │ │ ├── at91sam9_wdt.c │ │ │ │ ├── bfin_wdt.c │ │ │ │ ├── ftwdt010_wdt.c │ │ │ │ ├── imx_watchdog.c │ │ │ │ ├── omap_wdt.c │ │ │ │ ├── s5p_wdt.c │ │ │ │ ├── tnetv107x_wdt.c │ │ │ │ └── xilinx_tb_wdt.c │ │ ├── dts │ │ │ ├── .gitignore │ │ │ └── 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 │ │ │ │ ├── interrupt.c │ │ │ │ ├── mem_to_mem_idma2intr.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 │ │ │ │ ├── test_burst.c │ │ │ │ ├── test_burst.h │ │ │ │ ├── test_burst_lib.S │ │ │ │ └── timer.c │ │ ├── fs │ │ │ ├── Makefile │ │ │ ├── cbfs │ │ │ │ ├── Makefile │ │ │ │ └── cbfs.c │ │ │ ├── cramfs │ │ │ │ ├── Makefile │ │ │ │ ├── cramfs.c │ │ │ │ └── uncompress.c │ │ │ ├── ext4 │ │ │ │ ├── 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 │ │ │ │ ├── Makefile │ │ │ │ ├── fat.c │ │ │ │ ├── fat_write.c │ │ │ │ └── file.c │ │ │ ├── fs.c │ │ │ ├── jffs2 │ │ │ │ ├── LICENCE │ │ │ │ ├── Makefile │ │ │ │ ├── compr_lzo.c │ │ │ │ ├── compr_rtime.c │ │ │ │ ├── compr_rubin.c │ │ │ │ ├── compr_zlib.c │ │ │ │ ├── jffs2_1pass.c │ │ │ │ ├── jffs2_nand_1pass.c │ │ │ │ ├── jffs2_nand_private.h │ │ │ │ ├── jffs2_private.h │ │ │ │ ├── mini_inflate.c │ │ │ │ └── summary.h │ │ │ ├── reiserfs │ │ │ │ ├── Makefile │ │ │ │ ├── dev.c │ │ │ │ ├── mode_string.c │ │ │ │ ├── reiserfs.c │ │ │ │ └── reiserfs_private.h │ │ │ ├── sandbox │ │ │ │ ├── Makefile │ │ │ │ └── sandboxfs.c │ │ │ ├── ubifs │ │ │ │ ├── Makefile │ │ │ │ ├── budget.c │ │ │ │ ├── crc16.c │ │ │ │ ├── crc16.h │ │ │ │ ├── debug.c │ │ │ │ ├── debug.h │ │ │ │ ├── io.c │ │ │ │ ├── key.h │ │ │ │ ├── log.c │ │ │ │ ├── lprops.c │ │ │ │ ├── lpt.c │ │ │ │ ├── lpt_commit.c │ │ │ │ ├── master.c │ │ │ │ ├── misc.h │ │ │ │ ├── orphan.c │ │ │ │ ├── recovery.c │ │ │ │ ├── replay.c │ │ │ │ ├── sb.c │ │ │ │ ├── scan.c │ │ │ │ ├── super.c │ │ │ │ ├── tnc.c │ │ │ │ ├── tnc_misc.c │ │ │ │ ├── ubifs-media.h │ │ │ │ ├── ubifs.c │ │ │ │ └── ubifs.h │ │ │ ├── yaffs2 │ │ │ │ ├── Makefile │ │ │ │ ├── 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 │ │ │ ├── 74xx_7xx.h │ │ │ ├── ACEX1K.h │ │ │ ├── MCD_dma.h │ │ │ ├── MCD_progCheck.h │ │ │ ├── MCD_tasksInit.h │ │ │ ├── SA-1100.h │ │ │ ├── _exports.h │ │ │ ├── addr_map.h │ │ │ ├── aes.h │ │ │ ├── ahci.h │ │ │ ├── ali512x.h │ │ │ ├── altera.h │ │ │ ├── ambapp.h │ │ │ ├── andestech │ │ │ │ └── andes_pcu.h │ │ │ ├── ansi.h │ │ │ ├── api_public.h │ │ │ ├── armcoremodule.h │ │ │ ├── asm-generic │ │ │ │ ├── errno.h │ │ │ │ ├── global_data.h │ │ │ │ ├── gpio.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── sections.h │ │ │ │ ├── signal.h │ │ │ │ ├── u-boot.h │ │ │ │ └── unaligned.h │ │ │ ├── asm-offsets.h │ │ │ ├── ata.h │ │ │ ├── atmel_hlcdc.h │ │ │ ├── atmel_lcdc.h │ │ │ ├── atmel_mci.h │ │ │ ├── bcd.h │ │ │ ├── bedbug │ │ │ │ ├── bedbug.h │ │ │ │ ├── ppc.h │ │ │ │ ├── regs.h │ │ │ │ ├── tables.h │ │ │ │ └── type.h │ │ │ ├── bitfield.h │ │ │ ├── bmp_layout.h │ │ │ ├── bootcount.h │ │ │ ├── bootstage.h │ │ │ ├── bouncebuf.h │ │ │ ├── bus_vcxk.h │ │ │ ├── bzlib.h │ │ │ ├── cbfs.h │ │ │ ├── circbuf.h │ │ │ ├── clk.h │ │ │ ├── cmd_spl.h │ │ │ ├── command.h │ │ │ ├── common.h │ │ │ ├── common_timing_params.h │ │ │ ├── commproc.h │ │ │ ├── compiler.h │ │ │ ├── config_cmd_all.h │ │ │ ├── config_cmd_default.h │ │ │ ├── config_cmd_defaults.h │ │ │ ├── config_defaults.h │ │ │ ├── config_distro_defaults.h │ │ │ ├── config_fallbacks.h │ │ │ ├── config_phylib_all_drivers.h │ │ │ ├── config_uncmd_spl.h │ │ │ ├── configs │ │ │ │ ├── A3000.h │ │ │ │ ├── APC405.h │ │ │ │ ├── AR405.h │ │ │ │ ├── ASH405.h │ │ │ │ ├── Adder.h │ │ │ │ ├── B4860QDS.h │ │ │ │ ├── BC3450.h │ │ │ │ ├── BSC9131RDB.h │ │ │ │ ├── BSC9132QDS.h │ │ │ │ ├── C29XPCIE.h │ │ │ │ ├── CATcenter.h │ │ │ │ ├── CMS700.h │ │ │ │ ├── CPC45.h │ │ │ │ ├── CPCI2DP.h │ │ │ │ ├── CPCI405.h │ │ │ │ ├── CPCI4052.h │ │ │ │ ├── CPCI405AB.h │ │ │ │ ├── CPCI405DT.h │ │ │ │ ├── CPCI750.h │ │ │ │ ├── CPCIISER4.h │ │ │ │ ├── CPU86.h │ │ │ │ ├── CPU87.h │ │ │ │ ├── CRAYL1.h │ │ │ │ ├── CU824.h │ │ │ │ ├── DB64360.h │ │ │ │ ├── DB64460.h │ │ │ │ ├── DP405.h │ │ │ │ ├── DU405.h │ │ │ │ ├── DU440.h │ │ │ │ ├── ELPPC.h │ │ │ │ ├── ELPT860.h │ │ │ │ ├── ESTEEM192E.h │ │ │ │ ├── FLAGADM.h │ │ │ │ ├── FPS850L.h │ │ │ │ ├── FPS860L.h │ │ │ │ ├── G2000.h │ │ │ │ ├── GEN860T.h │ │ │ │ ├── HH405.h │ │ │ │ ├── HIDDEN_DRAGON.h │ │ │ │ ├── HUB405.h │ │ │ │ ├── HWW1U1A.h │ │ │ │ ├── ICU862.h │ │ │ │ ├── IDS8247.h │ │ │ │ ├── IP860.h │ │ │ │ ├── IPHASE4539.h │ │ │ │ ├── ISPAN.h │ │ │ │ ├── IVML24.h │ │ │ │ ├── IVMS8.h │ │ │ │ ├── IceCube.h │ │ │ │ ├── JSE.h │ │ │ │ ├── KAREF.h │ │ │ │ ├── KUP4K.h │ │ │ │ ├── KUP4X.h │ │ │ │ ├── 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 │ │ │ │ ├── MERGERBOX.h │ │ │ │ ├── METROBOX.h │ │ │ │ ├── MHPC.h │ │ │ │ ├── MIP405.h │ │ │ │ ├── MPC8260ADS.h │ │ │ │ ├── MPC8266ADS.h │ │ │ │ ├── MPC8308RDB.h │ │ │ │ ├── MPC8313ERDB.h │ │ │ │ ├── MPC8315ERDB.h │ │ │ │ ├── MPC8323ERDB.h │ │ │ │ ├── MPC832XEMDS.h │ │ │ │ ├── MPC8349EMDS.h │ │ │ │ ├── MPC8349ITX.h │ │ │ │ ├── MPC8360EMDS.h │ │ │ │ ├── MPC8360ERDK.h │ │ │ │ ├── MPC837XEMDS.h │ │ │ │ ├── MPC837XERDB.h │ │ │ │ ├── MPC8536DS.h │ │ │ │ ├── MPC8540ADS.h │ │ │ │ ├── MPC8541CDS.h │ │ │ │ ├── MPC8544DS.h │ │ │ │ ├── MPC8548CDS.h │ │ │ │ ├── MPC8555CDS.h │ │ │ │ ├── MPC8560ADS.h │ │ │ │ ├── MPC8568MDS.h │ │ │ │ ├── MPC8569MDS.h │ │ │ │ ├── MPC8572DS.h │ │ │ │ ├── MPC8610HPCD.h │ │ │ │ ├── MPC8641HPCN.h │ │ │ │ ├── MPC86xADS.h │ │ │ │ ├── MPC885ADS.h │ │ │ │ ├── MUSENKI.h │ │ │ │ ├── MVBC_P.h │ │ │ │ ├── MVBLM7.h │ │ │ │ ├── MVBLUE.h │ │ │ │ ├── MVSMR.h │ │ │ │ ├── MigoR.h │ │ │ │ ├── NETPHONE.h │ │ │ │ ├── NETTA.h │ │ │ │ ├── NETTA2.h │ │ │ │ ├── NETVIA.h │ │ │ │ ├── NSCU.h │ │ │ │ ├── OCRTC.h │ │ │ │ ├── P1010RDB.h │ │ │ │ ├── P1022DS.h │ │ │ │ ├── P1023RDB.h │ │ │ │ ├── P1023RDS.h │ │ │ │ ├── P1_P2_RDB.h │ │ │ │ ├── P2020COME.h │ │ │ │ ├── P2020DS.h │ │ │ │ ├── P2041RDB.h │ │ │ │ ├── P3041DS.h │ │ │ │ ├── P3G4.h │ │ │ │ ├── P4080DS.h │ │ │ │ ├── P5020DS.h │ │ │ │ ├── P5040DS.h │ │ │ │ ├── PATI.h │ │ │ │ ├── PCI405.h │ │ │ │ ├── PCI5441.h │ │ │ │ ├── PIP405.h │ │ │ │ ├── PK1C20.h │ │ │ │ ├── PLU405.h │ │ │ │ ├── PM520.h │ │ │ │ ├── PM826.h │ │ │ │ ├── PM828.h │ │ │ │ ├── PMC405.h │ │ │ │ ├── PMC405DE.h │ │ │ │ ├── PMC440.h │ │ │ │ ├── PPChameleonEVB.h │ │ │ │ ├── QS823.h │ │ │ │ ├── QS850.h │ │ │ │ ├── QS860T.h │ │ │ │ ├── R360MPI.h │ │ │ │ ├── RBC823.h │ │ │ │ ├── RPXlite_DW.h │ │ │ │ ├── RRvision.h │ │ │ │ ├── Rattler.h │ │ │ │ ├── SIMPC8313.h │ │ │ │ ├── SM850.h │ │ │ │ ├── SPD823TS.h │ │ │ │ ├── SXNI855T.h │ │ │ │ ├── Sandpoint8240.h │ │ │ │ ├── Sandpoint8245.h │ │ │ │ ├── T1040QDS.h │ │ │ │ ├── T104xRDB.h │ │ │ │ ├── T208xQDS.h │ │ │ │ ├── T208xRDB.h │ │ │ │ ├── T4240EMU.h │ │ │ │ ├── T4240QDS.h │ │ │ │ ├── T4240RDB.h │ │ │ │ ├── TASREG.h │ │ │ │ ├── TB5200.h │ │ │ │ ├── TK885D.h │ │ │ │ ├── TOP5200.h │ │ │ │ ├── TOP860.h │ │ │ │ ├── TQM5200.h │ │ │ │ ├── TQM823L.h │ │ │ │ ├── TQM823M.h │ │ │ │ ├── TQM8260.h │ │ │ │ ├── TQM8272.h │ │ │ │ ├── TQM834x.h │ │ │ │ ├── TQM850L.h │ │ │ │ ├── TQM850M.h │ │ │ │ ├── TQM855L.h │ │ │ │ ├── TQM855M.h │ │ │ │ ├── TQM860L.h │ │ │ │ ├── TQM860M.h │ │ │ │ ├── TQM862L.h │ │ │ │ ├── TQM862M.h │ │ │ │ ├── TQM866M.h │ │ │ │ ├── TQM885D.h │ │ │ │ ├── Total5200.h │ │ │ │ ├── VCMA9.h │ │ │ │ ├── VOH405.h │ │ │ │ ├── VOM405.h │ │ │ │ ├── VoVPN-GW.h │ │ │ │ ├── W7OLMC.h │ │ │ │ ├── W7OLMG.h │ │ │ │ ├── WUH405.h │ │ │ │ ├── ZPC1900.h │ │ │ │ ├── ZUMA.h │ │ │ │ ├── a320evb.h │ │ │ │ ├── a3m071.h │ │ │ │ ├── a4m072.h │ │ │ │ ├── ac14xx.h │ │ │ │ ├── acadia.h │ │ │ │ ├── adp-ag101.h │ │ │ │ ├── adp-ag101p.h │ │ │ │ ├── adp-ag102.h │ │ │ │ ├── aev.h │ │ │ │ ├── afeb9260.h │ │ │ │ ├── alpr.h │ │ │ │ ├── am335x_evm.h │ │ │ │ ├── am335x_igep0033.h │ │ │ │ ├── am3517_crane.h │ │ │ │ ├── am3517_evm.h │ │ │ │ ├── am43xx_evm.h │ │ │ │ ├── amcc-common.h │ │ │ │ ├── ap325rxa.h │ │ │ │ ├── ap_sh4a_4a.h │ │ │ │ ├── apf27.h │ │ │ │ ├── apx4devkit.h │ │ │ │ ├── arcangel4-be.h │ │ │ │ ├── arcangel4.h │ │ │ │ ├── aria.h │ │ │ │ ├── armadillo-800eva.h │ │ │ │ ├── arndale.h │ │ │ │ ├── aspenite.h │ │ │ │ ├── astro_mcf5373l.h │ │ │ │ ├── at91rm9200ek.h │ │ │ │ ├── at91sam9260ek.h │ │ │ │ ├── at91sam9261ek.h │ │ │ │ ├── at91sam9263ek.h │ │ │ │ ├── at91sam9m10g45ek.h │ │ │ │ ├── at91sam9n12ek.h │ │ │ │ ├── at91sam9rlek.h │ │ │ │ ├── at91sam9x5ek.h │ │ │ │ ├── atc.h │ │ │ │ ├── atngw100.h │ │ │ │ ├── atngw100mkii.h │ │ │ │ ├── atstk1002.h │ │ │ │ ├── atstk1003.h │ │ │ │ ├── atstk1004.h │ │ │ │ ├── atstk1006.h │ │ │ │ ├── axs101.h │ │ │ │ ├── balloon3.h │ │ │ │ ├── bamboo.h │ │ │ │ ├── bcm28155_ap.h │ │ │ │ ├── bct-brettl2.h │ │ │ │ ├── beaver.h │ │ │ │ ├── bf506f-ezkit.h │ │ │ │ ├── bf518f-ezbrd.h │ │ │ │ ├── bf525-ucr2.h │ │ │ │ ├── bf526-ezbrd.h │ │ │ │ ├── bf527-ad7160-eval.h │ │ │ │ ├── bf527-ezkit.h │ │ │ │ ├── bf527-sdp.h │ │ │ │ ├── bf533-ezkit.h │ │ │ │ ├── bf533-stamp.h │ │ │ │ ├── bf537-minotaur.h │ │ │ │ ├── bf537-pnav.h │ │ │ │ ├── bf537-srv1.h │ │ │ │ ├── bf537-stamp.h │ │ │ │ ├── bf538f-ezkit.h │ │ │ │ ├── bf548-ezkit.h │ │ │ │ ├── bf561-acvilon.h │ │ │ │ ├── bf561-ezkit.h │ │ │ │ ├── bf609-ezkit.h │ │ │ │ ├── bfin_adi_common.h │ │ │ │ ├── bg0900.h │ │ │ │ ├── blackstamp.h │ │ │ │ ├── blackvme.h │ │ │ │ ├── bluestone.h │ │ │ │ ├── br4.h │ │ │ │ ├── bubinga.h │ │ │ │ ├── bur_am335x_common.h │ │ │ │ ├── calimain.h │ │ │ │ ├── cam_enc_4xx.h │ │ │ │ ├── canmb.h │ │ │ │ ├── canyonlands.h │ │ │ │ ├── cardhu.h │ │ │ │ ├── cgtqmx6eval.h │ │ │ │ ├── charon.h │ │ │ │ ├── cm-bf527.h │ │ │ │ ├── cm-bf533.h │ │ │ │ ├── cm-bf537e.h │ │ │ │ ├── cm-bf537u.h │ │ │ │ ├── cm-bf548.h │ │ │ │ ├── cm-bf561.h │ │ │ │ ├── cm4008.h │ │ │ │ ├── cm41xx.h │ │ │ │ ├── cm5200.h │ │ │ │ ├── cm_t335.h │ │ │ │ ├── cm_t35.h │ │ │ │ ├── cmi_mpc5xx.h │ │ │ │ ├── cobra5272.h │ │ │ │ ├── cogent_common.h │ │ │ │ ├── cogent_mpc8260.h │ │ │ │ ├── cogent_mpc8xx.h │ │ │ │ ├── colibri_pxa270.h │ │ │ │ ├── colibri_t20_iris.h │ │ │ │ ├── controlcenterd.h │ │ │ │ ├── coreboot.h │ │ │ │ ├── corenet_ds.h │ │ │ │ ├── corvus.h │ │ │ │ ├── cpci5200.h │ │ │ │ ├── cpu9260.h │ │ │ │ ├── cpuat91.h │ │ │ │ ├── csb272.h │ │ │ │ ├── csb472.h │ │ │ │ ├── da830evm.h │ │ │ │ ├── da850evm.h │ │ │ │ ├── dalmore.h │ │ │ │ ├── davinci_dm355evm.h │ │ │ │ ├── davinci_dm355leopard.h │ │ │ │ ├── davinci_dm365evm.h │ │ │ │ ├── davinci_dm6467evm.h │ │ │ │ ├── davinci_dvevm.h │ │ │ │ ├── davinci_schmoogie.h │ │ │ │ ├── davinci_sffsdr.h │ │ │ │ ├── davinci_sonata.h │ │ │ │ ├── dbau1x00.h │ │ │ │ ├── debris.h │ │ │ │ ├── devkit3250.h │ │ │ │ ├── devkit8000.h │ │ │ │ ├── dig297.h │ │ │ │ ├── digsy_mtc.h │ │ │ │ ├── dkb.h │ │ │ │ ├── dlvision-10g.h │ │ │ │ ├── dlvision.h │ │ │ │ ├── dnp5370.h │ │ │ │ ├── dns325.h │ │ │ │ ├── dockstar.h │ │ │ │ ├── dra7xx_evm.h │ │ │ │ ├── dreamplug.h │ │ │ │ ├── dxr2.h │ │ │ │ ├── eXalion.h │ │ │ │ ├── ea20.h │ │ │ │ ├── eb_cpu5282.h │ │ │ │ ├── eb_cpux9k2.h │ │ │ │ ├── ebony.h │ │ │ │ ├── eco5pk.h │ │ │ │ ├── ecovec.h │ │ │ │ ├── edminiv2.h │ │ │ │ ├── enbw_cmc.h │ │ │ │ ├── ep8248.h │ │ │ │ ├── ep8260.h │ │ │ │ ├── ep82xxm.h │ │ │ │ ├── espt.h │ │ │ │ ├── ethernut5.h │ │ │ │ ├── exynos4-dt.h │ │ │ │ ├── exynos5-dt.h │ │ │ │ ├── exynos5250-dt.h │ │ │ │ ├── favr-32-ezkit.h │ │ │ │ ├── flea3.h │ │ │ │ ├── fx12mm.h │ │ │ │ ├── galaxy5200.h │ │ │ │ ├── gdppc440etx.h │ │ │ │ ├── goflexhome.h │ │ │ │ ├── gplugd.h │ │ │ │ ├── gr_cpci_ax2000.h │ │ │ │ ├── gr_ep2s60.h │ │ │ │ ├── gr_xc3s_1500.h │ │ │ │ ├── grasshopper.h │ │ │ │ ├── grsim.h │ │ │ │ ├── grsim_leon2.h │ │ │ │ ├── guruplug.h │ │ │ │ ├── gw8260.h │ │ │ │ ├── gw_ventana.h │ │ │ │ ├── h2200.h │ │ │ │ ├── hammerhead.h │ │ │ │ ├── harmony.h │ │ │ │ ├── hawkboard.h │ │ │ │ ├── hermes.h │ │ │ │ ├── highbank.h │ │ │ │ ├── hmi1001.h │ │ │ │ ├── hummingboard.h │ │ │ │ ├── hymod.h │ │ │ │ ├── ib62x0.h │ │ │ │ ├── ibf-dsp561.h │ │ │ │ ├── icon.h │ │ │ │ ├── iconnect.h │ │ │ │ ├── ids8313.h │ │ │ │ ├── ima3-mx53.h │ │ │ │ ├── imx27lite-common.h │ │ │ │ ├── imx27lite.h │ │ │ │ ├── imx31_litekit.h │ │ │ │ ├── imx31_phycore.h │ │ │ │ ├── inka4x0.h │ │ │ │ ├── integrator-common.h │ │ │ │ ├── integratorap.h │ │ │ │ ├── integratorcp.h │ │ │ │ ├── intip.h │ │ │ │ ├── io.h │ │ │ │ ├── io64.h │ │ │ │ ├── iocon.h │ │ │ │ ├── ip04.h │ │ │ │ ├── ipam390.h │ │ │ │ ├── ipek01.h │ │ │ │ ├── jadecpu.h │ │ │ │ ├── jetson-tk1.h │ │ │ │ ├── jornada.h │ │ │ │ ├── jupiter.h │ │ │ │ ├── k2hk_evm.h │ │ │ │ ├── katmai.h │ │ │ │ ├── kilauea.h │ │ │ │ ├── km │ │ │ │ │ ├── keymile-common.h │ │ │ │ │ ├── km-powerpc.h │ │ │ │ │ ├── km8309-common.h │ │ │ │ │ ├── km8321-common.h │ │ │ │ │ ├── km83xx-common.h │ │ │ │ │ ├── km_arm.h │ │ │ │ │ └── kmp204x-common.h │ │ │ │ ├── km82xx.h │ │ │ │ ├── km8360.h │ │ │ │ ├── km_kirkwood.h │ │ │ │ ├── kmp204x.h │ │ │ │ ├── koelsch.h │ │ │ │ ├── korat.h │ │ │ │ ├── kvme080.h │ │ │ │ ├── kwb.h │ │ │ │ ├── kzm9g.h │ │ │ │ ├── lacie_kw.h │ │ │ │ ├── lager.h │ │ │ │ ├── lp8x4x.h │ │ │ │ ├── lsxl.h │ │ │ │ ├── luan.h │ │ │ │ ├── lwmon.h │ │ │ │ ├── lwmon5.h │ │ │ │ ├── m28evk.h │ │ │ │ ├── m53evk.h │ │ │ │ ├── magnesium.h │ │ │ │ ├── makalu.h │ │ │ │ ├── malta.h │ │ │ │ ├── manroland │ │ │ │ │ ├── common.h │ │ │ │ │ └── mpc5200-common.h │ │ │ │ ├── mcc200.h │ │ │ │ ├── mcx.h │ │ │ │ ├── mecp5123.h │ │ │ │ ├── mecp5200.h │ │ │ │ ├── medcom-wide.h │ │ │ │ ├── meesc.h │ │ │ │ ├── microblaze-generic.h │ │ │ │ ├── mimc200.h │ │ │ │ ├── ml507.h │ │ │ │ ├── motionpro.h │ │ │ │ ├── mpc5121-common.h │ │ │ │ ├── mpc5121ads.h │ │ │ │ ├── mpc7448hpc2.h │ │ │ │ ├── mpc8308_p1m.h │ │ │ │ ├── mpr2.h │ │ │ │ ├── ms7720se.h │ │ │ │ ├── ms7722se.h │ │ │ │ ├── ms7750se.h │ │ │ │ ├── mt_ventoux.h │ │ │ │ ├── muas3001.h │ │ │ │ ├── mucmc52.h │ │ │ │ ├── munices.h │ │ │ │ ├── mv-common.h │ │ │ │ ├── mv88f6281gtw_ge.h │ │ │ │ ├── mx23_olinuxino.h │ │ │ │ ├── mx23evk.h │ │ │ │ ├── mx25pdk.h │ │ │ │ ├── mx28evk.h │ │ │ │ ├── mx31ads.h │ │ │ │ ├── mx31pdk.h │ │ │ │ ├── mx35pdk.h │ │ │ │ ├── mx51_efikamx.h │ │ │ │ ├── mx51evk.h │ │ │ │ ├── mx53ard.h │ │ │ │ ├── mx53evk.h │ │ │ │ ├── mx53loco.h │ │ │ │ ├── mx53smd.h │ │ │ │ ├── mx6_common.h │ │ │ │ ├── mx6qarm2.h │ │ │ │ ├── mx6qsabreauto.h │ │ │ │ ├── mx6sabre_common.h │ │ │ │ ├── mx6sabresd.h │ │ │ │ ├── mx6slevk.h │ │ │ │ ├── mxs.h │ │ │ │ ├── neo.h │ │ │ │ ├── nhk8815.h │ │ │ │ ├── nios2-generic.h │ │ │ │ ├── nitrogen6x.h │ │ │ │ ├── nokia_rx51.h │ │ │ │ ├── o2d.h │ │ │ │ ├── o2d300.h │ │ │ │ ├── o2dnt-common.h │ │ │ │ ├── o2dnt2.h │ │ │ │ ├── o2i.h │ │ │ │ ├── o2mnt.h │ │ │ │ ├── o3dnt.h │ │ │ │ ├── ocotea.h │ │ │ │ ├── omap1510.h │ │ │ │ ├── omap3_beagle.h │ │ │ │ ├── omap3_evm.h │ │ │ │ ├── omap3_evm_common.h │ │ │ │ ├── omap3_evm_quick_mmc.h │ │ │ │ ├── omap3_evm_quick_nand.h │ │ │ │ ├── omap3_igep00x0.h │ │ │ │ ├── omap3_logic.h │ │ │ │ ├── omap3_mvblx.h │ │ │ │ ├── omap3_overo.h │ │ │ │ ├── omap3_pandora.h │ │ │ │ ├── omap3_sdp3430.h │ │ │ │ ├── omap3_zoom1.h │ │ │ │ ├── omap4_panda.h │ │ │ │ ├── omap4_sdp4430.h │ │ │ │ ├── omap5912osk.h │ │ │ │ ├── omap5_uevm.h │ │ │ │ ├── openrd.h │ │ │ │ ├── openrisc-generic.h │ │ │ │ ├── origen.h │ │ │ │ ├── otc570.h │ │ │ │ ├── p1_p2_rdb_pc.h │ │ │ │ ├── p1_twr.h │ │ │ │ ├── p3mx.h │ │ │ │ ├── p3p440.h │ │ │ │ ├── palmld.h │ │ │ │ ├── palmtc.h │ │ │ │ ├── palmtreo680.h │ │ │ │ ├── paz00.h │ │ │ │ ├── pb1x00.h │ │ │ │ ├── pcm030.h │ │ │ │ ├── pcm051.h │ │ │ │ ├── pcs440ep.h │ │ │ │ ├── pdm360ng.h │ │ │ │ ├── pengwyn.h │ │ │ │ ├── pf5200.h │ │ │ │ ├── plutux.h │ │ │ │ ├── pm9261.h │ │ │ │ ├── pm9263.h │ │ │ │ ├── pm9g45.h │ │ │ │ ├── pogo_e02.h │ │ │ │ ├── ppmc7xx.h │ │ │ │ ├── ppmc8260.h │ │ │ │ ├── pr1.h │ │ │ │ ├── pxa-common.h │ │ │ │ ├── pxa255_idp.h │ │ │ │ ├── pxm2.h │ │ │ │ ├── qemu-mips.h │ │ │ │ ├── qemu-mips64.h │ │ │ │ ├── qemu-ppce500.h │ │ │ │ ├── qong.h │ │ │ │ ├── quad100hd.h │ │ │ │ ├── quantum.h │ │ │ │ ├── r0p7734.h │ │ │ │ ├── r2dplus.h │ │ │ │ ├── r7780mp.h │ │ │ │ ├── rd6281a.h │ │ │ │ ├── redwood.h │ │ │ │ ├── rpi_b.h │ │ │ │ ├── rsk7203.h │ │ │ │ ├── rsk7264.h │ │ │ │ ├── rsk7269.h │ │ │ │ ├── rut.h │ │ │ │ ├── s5p_goni.h │ │ │ │ ├── s5pc210_universal.h │ │ │ │ ├── sacsng.h │ │ │ │ ├── sama5d3_xplained.h │ │ │ │ ├── sama5d3xek.h │ │ │ │ ├── sandbox.h │ │ │ │ ├── sansa_fuze_plus.h │ │ │ │ ├── sbc35_a9g20.h │ │ │ │ ├── sbc405.h │ │ │ │ ├── sbc8349.h │ │ │ │ ├── sbc8548.h │ │ │ │ ├── sbc8641d.h │ │ │ │ ├── sc3.h │ │ │ │ ├── sc_sps_1.h │ │ │ │ ├── scb9328.h │ │ │ │ ├── seaboard.h │ │ │ │ ├── sequoia.h │ │ │ │ ├── sh7752evb.h │ │ │ │ ├── sh7753evb.h │ │ │ │ ├── sh7757lcr.h │ │ │ │ ├── sh7763rdp.h │ │ │ │ ├── sh7785lcr.h │ │ │ │ ├── sheevaplug.h │ │ │ │ ├── shmin.h │ │ │ │ ├── siemens-am33x-common.h │ │ │ │ ├── smdk2410.h │ │ │ │ ├── smdk5250.h │ │ │ │ ├── smdk5420.h │ │ │ │ ├── smdkc100.h │ │ │ │ ├── smdkv310.h │ │ │ │ ├── snapper9260.h │ │ │ │ ├── snow.h │ │ │ │ ├── snowball.h │ │ │ │ ├── socfpga_cyclone5.h │ │ │ │ ├── socrates.h │ │ │ │ ├── spc1920.h │ │ │ │ ├── spear-common.h │ │ │ │ ├── spear3xx_evb.h │ │ │ │ ├── spear6xx_evb.h │ │ │ │ ├── stamp9g20.h │ │ │ │ ├── stxgp3.h │ │ │ │ ├── stxssa.h │ │ │ │ ├── stxxtc.h │ │ │ │ ├── suvd3.h │ │ │ │ ├── svm_sc8xx.h │ │ │ │ ├── t3corp.h │ │ │ │ ├── t4qds.h │ │ │ │ ├── taihu.h │ │ │ │ ├── taishan.h │ │ │ │ ├── tam3517-common.h │ │ │ │ ├── tao3530.h │ │ │ │ ├── taurus.h │ │ │ │ ├── tcm-bf518.h │ │ │ │ ├── tcm-bf537.h │ │ │ │ ├── tec-ng.h │ │ │ │ ├── tec.h │ │ │ │ ├── tegra-common-post.h │ │ │ │ ├── tegra-common.h │ │ │ │ ├── tegra114-common.h │ │ │ │ ├── tegra124-common.h │ │ │ │ ├── tegra20-common.h │ │ │ │ ├── tegra30-common.h │ │ │ │ ├── ti814x_evm.h │ │ │ │ ├── ti816x_evm.h │ │ │ │ ├── ti_am335x_common.h │ │ │ │ ├── ti_armv7_common.h │ │ │ │ ├── ti_omap3_common.h │ │ │ │ ├── ti_omap4_common.h │ │ │ │ ├── ti_omap5_common.h │ │ │ │ ├── titanium.h │ │ │ │ ├── tk71.h │ │ │ │ ├── tnetv107x_evm.h │ │ │ │ ├── tny_a9260.h │ │ │ │ ├── top9000.h │ │ │ │ ├── trats.h │ │ │ │ ├── trats2.h │ │ │ │ ├── tricorder.h │ │ │ │ ├── trimslice.h │ │ │ │ ├── trizepsiv.h │ │ │ │ ├── tseries.h │ │ │ │ ├── tt01.h │ │ │ │ ├── tuxx1.h │ │ │ │ ├── twister.h │ │ │ │ ├── tx25.h │ │ │ │ ├── u8500_href.h │ │ │ │ ├── uc100.h │ │ │ │ ├── uc101.h │ │ │ │ ├── udoo.h │ │ │ │ ├── usb_a9263.h │ │ │ │ ├── utx8245.h │ │ │ │ ├── v37.h │ │ │ │ ├── v38b.h │ │ │ │ ├── v5fx30teval.h │ │ │ │ ├── vct.h │ │ │ │ ├── ve8313.h │ │ │ │ ├── venice2.h │ │ │ │ ├── ventana.h │ │ │ │ ├── versatile.h │ │ │ │ ├── vexpress_aemv8a.h │ │ │ │ ├── vexpress_ca15_tc2.h │ │ │ │ ├── vexpress_ca5x2.h │ │ │ │ ├── vexpress_ca9x4.h │ │ │ │ ├── vexpress_common.h │ │ │ │ ├── vf610twr.h │ │ │ │ ├── virtlab2.h │ │ │ │ ├── vision2.h │ │ │ │ ├── vl_ma2sc.h │ │ │ │ ├── vme8349.h │ │ │ │ ├── vpac270.h │ │ │ │ ├── walnut.h │ │ │ │ ├── wandboard.h │ │ │ │ ├── whistler.h │ │ │ │ ├── wireless_space.h │ │ │ │ ├── woodburn.h │ │ │ │ ├── woodburn_common.h │ │ │ │ ├── woodburn_sd.h │ │ │ │ ├── x600.h │ │ │ │ ├── xaeniax.h │ │ │ │ ├── xfi3.h │ │ │ │ ├── xilinx-ppc.h │ │ │ │ ├── xilinx-ppc405-generic.h │ │ │ │ ├── xilinx-ppc405.h │ │ │ │ ├── xilinx-ppc440-generic.h │ │ │ │ ├── xilinx-ppc440.h │ │ │ │ ├── xpedite1000.h │ │ │ │ ├── xpedite517x.h │ │ │ │ ├── xpedite520x.h │ │ │ │ ├── xpedite537x.h │ │ │ │ ├── xpedite550x.h │ │ │ │ ├── yosemite.h │ │ │ │ ├── yucca.h │ │ │ │ ├── zeus.h │ │ │ │ ├── zipitz2.h │ │ │ │ ├── zmx25.h │ │ │ │ ├── zynq-common.h │ │ │ │ ├── zynq_microzed.h │ │ │ │ ├── zynq_zc70x.h │ │ │ │ ├── zynq_zc770.h │ │ │ │ └── zynq_zed.h │ │ │ ├── cpsw.h │ │ │ ├── cramfs │ │ │ │ └── cramfs_fs.h │ │ │ ├── crc.h │ │ │ ├── cros_ec.h │ │ │ ├── cros_ec_message.h │ │ │ ├── dataflash.h │ │ │ ├── ddr_spd.h │ │ │ ├── dfu.h │ │ │ ├── dialog_pmic.h │ │ │ ├── div64.h │ │ │ ├── dm-demo.h │ │ │ ├── dm.h │ │ │ ├── dm │ │ │ │ ├── device-internal.h │ │ │ │ ├── device.h │ │ │ │ ├── lists.h │ │ │ │ ├── platdata.h │ │ │ │ ├── root.h │ │ │ │ ├── test.h │ │ │ │ ├── uclass-id.h │ │ │ │ ├── uclass-internal.h │ │ │ │ ├── uclass.h │ │ │ │ ├── ut.h │ │ │ │ └── util.h │ │ │ ├── dm9000.h │ │ │ ├── dp83848.h │ │ │ ├── ds1722.h │ │ │ ├── ds4510.h │ │ │ ├── dtt.h │ │ │ ├── dwmmc.h │ │ │ ├── e500.h │ │ │ ├── ec_commands.h │ │ │ ├── edid.h │ │ │ ├── elf.h │ │ │ ├── env_attr.h │ │ │ ├── env_callback.h │ │ │ ├── env_default.h │ │ │ ├── env_flags.h │ │ │ ├── environment.h │ │ │ ├── errno.h │ │ │ ├── exports.h │ │ │ ├── ext4fs.h │ │ │ ├── ext_common.h │ │ │ ├── faraday │ │ │ │ ├── ftahbc020s.h │ │ │ │ ├── ftpci100.h │ │ │ │ ├── ftpmu010.h │ │ │ │ ├── ftsdc010.h │ │ │ │ ├── ftsdmc020.h │ │ │ │ ├── ftsdmc021.h │ │ │ │ ├── ftsmc020.h │ │ │ │ ├── fttmr010.h │ │ │ │ └── ftwdt010_wdt.h │ │ │ ├── fat.h │ │ │ ├── fdt.h │ │ │ ├── fdt_support.h │ │ │ ├── fdtdec.h │ │ │ ├── fis.h │ │ │ ├── flash.h │ │ │ ├── fm_eth.h │ │ │ ├── fpga.h │ │ │ ├── fs.h │ │ │ ├── fsl_ddr.h │ │ │ ├── fsl_ddr_dimm_params.h │ │ │ ├── fsl_ddr_sdram.h │ │ │ ├── fsl_ddrc_version.h │ │ │ ├── fsl_diu_fb.h │ │ │ ├── fsl_esdhc.h │ │ │ ├── fsl_ifc.h │ │ │ ├── fsl_immap.h │ │ │ ├── fsl_mdio.h │ │ │ ├── fsl_pmic.h │ │ │ ├── fsl_usb.h │ │ │ ├── fuse.h │ │ │ ├── g_dnl.h │ │ │ ├── galileo │ │ │ │ ├── core.h │ │ │ │ ├── gt64260R.h │ │ │ │ ├── memory.h │ │ │ │ └── pci.h │ │ │ ├── gdsys_fpga.h │ │ │ ├── gt64120.h │ │ │ ├── hash.h │ │ │ ├── hush.h │ │ │ ├── hw_sha.h │ │ │ ├── hwconfig.h │ │ │ ├── i2c.h │ │ │ ├── i2s.h │ │ │ ├── i8042.h │ │ │ ├── ide.h │ │ │ ├── image.h │ │ │ ├── initcall.h │ │ │ ├── input.h │ │ │ ├── iomux.h │ │ │ ├── ioports.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 │ │ │ ├── lcdvideo.h │ │ │ ├── ld9040.h │ │ │ ├── led-display.h │ │ │ ├── libata.h │ │ │ ├── libfdt.h │ │ │ ├── libfdt_env.h │ │ │ ├── libtizen.h │ │ │ ├── linker_lists.h │ │ │ ├── linux │ │ │ │ ├── apm_bios.h │ │ │ │ ├── bch.h │ │ │ │ ├── bitops.h │ │ │ │ ├── bitrev.h │ │ │ │ ├── byteorder │ │ │ │ │ ├── big_endian.h │ │ │ │ │ ├── generic.h │ │ │ │ │ ├── little_endian.h │ │ │ │ │ └── swab.h │ │ │ │ ├── compat.h │ │ │ │ ├── compiler-gcc.h │ │ │ │ ├── compiler-gcc3.h │ │ │ │ ├── compiler-gcc4.h │ │ │ │ ├── compiler.h │ │ │ │ ├── crc32.h │ │ │ │ ├── crc7.h │ │ │ │ ├── crc8.h │ │ │ │ ├── ctype.h │ │ │ │ ├── edd.h │ │ │ │ ├── err.h │ │ │ │ ├── ethtool.h │ │ │ │ ├── fb.h │ │ │ │ ├── input.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ioport.h │ │ │ │ ├── kbuild.h │ │ │ │ ├── linkage.h │ │ │ │ ├── linux_string.h │ │ │ │ ├── list.h │ │ │ │ ├── lzo.h │ │ │ │ ├── math64.h │ │ │ │ ├── mc146818rtc.h │ │ │ │ ├── mdio.h │ │ │ │ ├── mii.h │ │ │ │ ├── mtd │ │ │ │ │ ├── bbm.h │ │ │ │ │ ├── concat.h │ │ │ │ │ ├── doc2000.h │ │ │ │ │ ├── docg4.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 │ │ │ │ ├── rbtree.h │ │ │ │ ├── screen_info.h │ │ │ │ ├── sizes.h │ │ │ │ ├── stat.h │ │ │ │ ├── stddef.h │ │ │ │ ├── string.h │ │ │ │ ├── stringify.h │ │ │ │ ├── time.h │ │ │ │ ├── types.h │ │ │ │ ├── unaligned │ │ │ │ │ ├── access_ok.h │ │ │ │ │ ├── be_byteshift.h │ │ │ │ │ ├── generic.h │ │ │ │ │ └── le_byteshift.h │ │ │ │ └── usb │ │ │ │ │ ├── atmel_usba_udc.h │ │ │ │ │ ├── cdc.h │ │ │ │ │ ├── ch9.h │ │ │ │ │ ├── composite.h │ │ │ │ │ ├── dwc3.h │ │ │ │ │ ├── gadget.h │ │ │ │ │ ├── musb.h │ │ │ │ │ └── xhci-omap.h │ │ │ ├── linux_logo.h │ │ │ ├── lmb.h │ │ │ ├── logbuff.h │ │ │ ├── lxt971a.h │ │ │ ├── lynxkdi.h │ │ │ ├── lzma │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaTools.h │ │ │ │ └── LzmaTypes.h │ │ │ ├── malloc.h │ │ │ ├── mb862xx.h │ │ │ ├── mc13783.h │ │ │ ├── mc13892.h │ │ │ ├── mc34704.h │ │ │ ├── mc9sdz60.h │ │ │ ├── menu.h │ │ │ ├── micrel.h │ │ │ ├── mii_phy.h │ │ │ ├── miiphy.h │ │ │ ├── mk48t59.h │ │ │ ├── mmc.h │ │ │ ├── mpc106.h │ │ │ ├── mpc5xx.h │ │ │ ├── mpc5xxx.h │ │ │ ├── mpc5xxx_sdma.h │ │ │ ├── mpc824x.h │ │ │ ├── mpc8260.h │ │ │ ├── mpc8260_irq.h │ │ │ ├── mpc83xx.h │ │ │ ├── mpc85xx.h │ │ │ ├── mpc86xx.h │ │ │ ├── mpc8xx.h │ │ │ ├── mpc8xx_irq.h │ │ │ ├── msc01.h │ │ │ ├── mtd │ │ │ │ ├── cfi_flash.h │ │ │ │ ├── mtd-abi.h │ │ │ │ └── ubi-user.h │ │ │ ├── mtd_node.h │ │ │ ├── mv88e6352.h │ │ │ ├── mvmfp.h │ │ │ ├── nand.h │ │ │ ├── net.h │ │ │ ├── netdev.h │ │ │ ├── nios2-epcs.h │ │ │ ├── nios2-io.h │ │ │ ├── nios2-yanu.h │ │ │ ├── nios2.h │ │ │ ├── nomadik.h │ │ │ ├── ns16550.h │ │ │ ├── ns87308.h │ │ │ ├── onenand_uboot.h │ │ │ ├── os.h │ │ │ ├── palmas.h │ │ │ ├── part.h │ │ │ ├── part_efi.h │ │ │ ├── pc_keyb.h │ │ │ ├── pca953x.h │ │ │ ├── pca9564.h │ │ │ ├── pca9698.h │ │ │ ├── pci.h │ │ │ ├── pci_gt64120.h │ │ │ ├── pci_ids.h │ │ │ ├── pci_msc01.h │ │ │ ├── pcmcia.h │ │ │ ├── pcmcia │ │ │ │ ├── cirrus.h │ │ │ │ ├── i82365.h │ │ │ │ ├── ss.h │ │ │ │ ├── ti113x.h │ │ │ │ └── yenta.h │ │ │ ├── phy.h │ │ │ ├── physmem.h │ │ │ ├── post.h │ │ │ ├── power │ │ │ │ ├── battery.h │ │ │ │ ├── fg_battery_cell_params.h │ │ │ │ ├── max17042_fg.h │ │ │ │ ├── max77686_pmic.h │ │ │ │ ├── max77693_fg.h │ │ │ │ ├── max77693_muic.h │ │ │ │ ├── max77693_pmic.h │ │ │ │ ├── max8997_muic.h │ │ │ │ ├── max8997_pmic.h │ │ │ │ ├── max8998_pmic.h │ │ │ │ ├── pfuze100_pmic.h │ │ │ │ ├── pmic.h │ │ │ │ ├── power_chrg.h │ │ │ │ ├── tps65217.h │ │ │ │ └── tps65910.h │ │ │ ├── ppc_asm.tmpl │ │ │ ├── ppc_defs.h │ │ │ ├── ps2mult.h │ │ │ ├── pwm.h │ │ │ ├── radeon.h │ │ │ ├── reiserfs.h │ │ │ ├── rsa-checksum.h │ │ │ ├── rsa.h │ │ │ ├── rtc.h │ │ │ ├── s6e63d6.h │ │ │ ├── s_record.h │ │ │ ├── samsung │ │ │ │ └── misc.h │ │ │ ├── sandboxblockdev.h │ │ │ ├── sandboxfs.h │ │ │ ├── sata.h │ │ │ ├── scf0403_lcd.h │ │ │ ├── scsi.h │ │ │ ├── sdhci.h │ │ │ ├── search.h │ │ │ ├── sed13806.h │ │ │ ├── sed156x.h │ │ │ ├── serial.h │ │ │ ├── sh_pfc.h │ │ │ ├── sh_tmu.h │ │ │ ├── sha1.h │ │ │ ├── sha256.h │ │ │ ├── sja1000.h │ │ │ ├── slre.h │ │ │ ├── sm501.h │ │ │ ├── sound.h │ │ │ ├── spartan2.h │ │ │ ├── spartan3.h │ │ │ ├── spd.h │ │ │ ├── spd_sdram.h │ │ │ ├── spi.h │ │ │ ├── spi_flash.h │ │ │ ├── spl.h │ │ │ ├── splash.h │ │ │ ├── status_led.h │ │ │ ├── stdio_dev.h │ │ │ ├── stratixII.h │ │ │ ├── sx151x.h │ │ │ ├── sym53c8xx.h │ │ │ ├── synopsys │ │ │ │ └── dwcddr21mctl.h │ │ │ ├── systemace.h │ │ │ ├── tca642x.h │ │ │ ├── tegra-kbc.h │ │ │ ├── thor.h │ │ │ ├── timestamp.h │ │ │ ├── tis.h │ │ │ ├── tmu.h │ │ │ ├── tpm.h │ │ │ ├── tps6586x.h │ │ │ ├── trace.h │ │ │ ├── tsec.h │ │ │ ├── tsi108.h │ │ │ ├── tsi148.h │ │ │ ├── twl4030.h │ │ │ ├── twl6030.h │ │ │ ├── tws.h │ │ │ ├── u-boot │ │ │ │ ├── crc.h │ │ │ │ ├── md5.h │ │ │ │ ├── u-boot.lds.h │ │ │ │ └── zlib.h │ │ │ ├── ubi_uboot.h │ │ │ ├── universe.h │ │ │ ├── usb.h │ │ │ ├── usb │ │ │ │ ├── ci_udc.h │ │ │ │ ├── designware_udc.h │ │ │ │ ├── ehci-fsl.h │ │ │ │ ├── fotg210.h │ │ │ │ ├── fusbh200.h │ │ │ │ ├── lin_gadget_compat.h │ │ │ │ ├── mpc8xx_udc.h │ │ │ │ ├── omap1510_udc.h │ │ │ │ ├── pxa27x_udc.h │ │ │ │ ├── s3c_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 │ │ │ ├── version.h │ │ │ ├── video.h │ │ │ ├── video_ad7176.h │ │ │ ├── video_ad7177.h │ │ │ ├── video_ad7179.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 │ │ │ ├── vsprintf.h │ │ │ ├── vxworks.h │ │ │ ├── w83c553f.h │ │ │ ├── watchdog.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 │ │ │ └── zynqpl.h │ │ ├── lib │ │ │ ├── Makefile │ │ │ ├── addr_map.c │ │ │ ├── aes.c │ │ │ ├── asm-offsets.c │ │ │ ├── bch.c │ │ │ ├── bitrev.c │ │ │ ├── bzlib.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 │ │ │ ├── display_options.c │ │ │ ├── div64.c │ │ │ ├── errno.c │ │ │ ├── fdtdec.c │ │ │ ├── fdtdec_test.c │ │ │ ├── gunzip.c │ │ │ ├── gzip.c │ │ │ ├── hang.c │ │ │ ├── hashtable.c │ │ │ ├── initcall.c │ │ │ ├── ldiv.c │ │ │ ├── libfdt │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── fdt.c │ │ │ │ ├── fdt_empty_tree.c │ │ │ │ ├── fdt_ro.c │ │ │ │ ├── fdt_rw.c │ │ │ │ ├── fdt_strerror.c │ │ │ │ ├── fdt_sw.c │ │ │ │ ├── fdt_wip.c │ │ │ │ └── libfdt_internal.h │ │ │ ├── linux_string.c │ │ │ ├── lmb.c │ │ │ ├── lzma │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaTools.c │ │ │ │ ├── LzmaTools.h │ │ │ │ ├── Makefile │ │ │ │ ├── README.txt │ │ │ │ ├── Types.h │ │ │ │ ├── history.txt │ │ │ │ ├── import_lzmasdk.sh │ │ │ │ ├── license.txt │ │ │ │ └── lzma.txt │ │ │ ├── lzo │ │ │ │ ├── Makefile │ │ │ │ ├── lzo1x_decompress.c │ │ │ │ └── lzodefs.h │ │ │ ├── md5.c │ │ │ ├── net_utils.c │ │ │ ├── physmem.c │ │ │ ├── qsort.c │ │ │ ├── rand.c │ │ │ ├── rbtree.c │ │ │ ├── rsa │ │ │ │ ├── Makefile │ │ │ │ ├── rsa-checksum.c │ │ │ │ ├── rsa-sign.c │ │ │ │ └── rsa-verify.c │ │ │ ├── sha1.c │ │ │ ├── sha256.c │ │ │ ├── slre.c │ │ │ ├── string.c │ │ │ ├── strmhz.c │ │ │ ├── time.c │ │ │ ├── tizen │ │ │ │ ├── Makefile │ │ │ │ ├── tizen.c │ │ │ │ ├── tizen_logo_16bpp.h │ │ │ │ └── tizen_logo_16bpp_gzip.h │ │ │ ├── tpm.c │ │ │ ├── trace.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 │ │ ├── mkconfig │ │ ├── nand_spl │ │ │ ├── board │ │ │ │ ├── freescale │ │ │ │ │ ├── mpc8315erdb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── mpc8536ds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── nand_boot.c │ │ │ │ │ ├── mpc8569mds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── nand_boot.c │ │ │ │ │ ├── mpc8572ds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── nand_boot.c │ │ │ │ │ ├── p1023rds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── nand_boot.c │ │ │ │ │ └── p1_p2_rdb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── nand_boot.c │ │ │ │ └── sheldon │ │ │ │ │ └── simpc8313 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ └── u-boot.lds │ │ │ ├── nand_boot.c │ │ │ └── nand_boot_fsl_elbc.c │ │ ├── net │ │ │ ├── Makefile │ │ │ ├── arp.c │ │ │ ├── arp.h │ │ │ ├── bootp.c │ │ │ ├── bootp.h │ │ │ ├── cdp.c │ │ │ ├── cdp.h │ │ │ ├── dns.c │ │ │ ├── dns.h │ │ │ ├── eth.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 │ │ │ └── tftp.h │ │ ├── post │ │ │ ├── Makefile │ │ │ ├── board │ │ │ │ ├── lwmon │ │ │ │ │ ├── Makefile │ │ │ │ │ └── sysmon.c │ │ │ │ ├── lwmon5 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dsp.c │ │ │ │ │ ├── dspic.c │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── gdc.c │ │ │ │ │ ├── sysmon.c │ │ │ │ │ └── watchdog.c │ │ │ │ ├── netta │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── codec.c │ │ │ │ │ └── dsp.c │ │ │ │ └── pdm360ng │ │ │ │ │ ├── Makefile │ │ │ │ │ └── coproc_com.c │ │ │ ├── cpu │ │ │ │ ├── mpc83xx │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ecc.c │ │ │ │ ├── mpc8xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cache_8xx.S │ │ │ │ │ ├── ether.c │ │ │ │ │ ├── spr.c │ │ │ │ │ ├── uart.c │ │ │ │ │ ├── usb.c │ │ │ │ │ └── watchdog.c │ │ │ │ └── ppc4xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cache_4xx.S │ │ │ │ │ ├── denali_ecc.c │ │ │ │ │ ├── ether.c │ │ │ │ │ ├── fpu.c │ │ │ │ │ ├── ocm.c │ │ │ │ │ ├── spr.c │ │ │ │ │ ├── uart.c │ │ │ │ │ └── watchdog.c │ │ │ ├── drivers │ │ │ │ ├── Makefile │ │ │ │ ├── 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 │ │ │ ├── Makefile │ │ │ ├── Makefile.build │ │ │ ├── Makefile.clean │ │ │ ├── Makefile.host │ │ │ ├── Makefile.lib │ │ │ ├── basic │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ └── fixdep.c │ │ │ ├── binutils-version.sh │ │ │ ├── checkpatch.pl │ │ │ ├── checkstack.pl │ │ │ ├── cleanpatch │ │ │ ├── docproc.c │ │ │ ├── dtc-version.sh │ │ │ ├── gcc-stack-usage.sh │ │ │ ├── gcc-version.sh │ │ │ ├── kernel-doc │ │ │ ├── ld-version.sh │ │ │ ├── mkmakefile │ │ │ ├── objdiff │ │ │ └── setlocalversion │ │ ├── snapshot.commit │ │ ├── spl │ │ │ └── Makefile │ │ ├── test │ │ │ ├── Makefile │ │ │ ├── command_ut.c │ │ │ ├── compression.c │ │ │ ├── dm │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── cmd_dm.c │ │ │ │ ├── core.c │ │ │ │ ├── gpio.c │ │ │ │ ├── test-dm.sh │ │ │ │ ├── test-driver.c │ │ │ │ ├── test-fdt.c │ │ │ │ ├── test-main.c │ │ │ │ ├── test-uclass.c │ │ │ │ ├── test.dts │ │ │ │ └── ut.c │ │ │ ├── image │ │ │ │ ├── test-fit.py │ │ │ │ └── test-imagetools.sh │ │ │ ├── trace │ │ │ │ └── test-trace.sh │ │ │ └── vboot │ │ │ │ ├── .gitignore │ │ │ │ ├── sandbox-kernel.dts │ │ │ │ ├── sandbox-u-boot.dts │ │ │ │ ├── sign-configs-sha1.its │ │ │ │ ├── sign-configs-sha256.its │ │ │ │ ├── sign-images-sha1.its │ │ │ │ ├── sign-images-sha256.its │ │ │ │ └── vboot_test.sh │ │ └── tools │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── aisimage.c │ │ │ ├── aisimage.h │ │ │ ├── bddb │ │ │ ├── README │ │ │ ├── badsubmit.php │ │ │ ├── bddb.css │ │ │ ├── brlog.php │ │ │ ├── browse.php │ │ │ ├── config.php │ │ │ ├── create_tables.sql │ │ │ ├── defs.php │ │ │ ├── dodelete.php │ │ │ ├── dodellog.php │ │ │ ├── doedit.php │ │ │ ├── doedlog.php │ │ │ ├── donew.php │ │ │ ├── donewlog.php │ │ │ ├── edit.php │ │ │ ├── edlog.php │ │ │ ├── execute.php │ │ │ ├── index.php │ │ │ ├── new.php │ │ │ └── newlog.php │ │ │ ├── bin2header.c │ │ │ ├── bmp_logo.c │ │ │ ├── buildman │ │ │ ├── .gitignore │ │ │ ├── README │ │ │ ├── board.py │ │ │ ├── bsettings.py │ │ │ ├── builder.py │ │ │ ├── buildman.py │ │ │ ├── control.py │ │ │ ├── test.py │ │ │ └── toolchain.py │ │ │ ├── crc32.c │ │ │ ├── default_image.c │ │ │ ├── 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 │ │ │ └── linux_string.c │ │ │ ├── env_embedded.c │ │ │ ├── envcrc.c │ │ │ ├── fdt.c │ │ │ ├── fdt_host.h │ │ │ ├── fdt_ro.c │ │ │ ├── fdt_rw.c │ │ │ ├── fdt_strerror.c │ │ │ ├── fdt_wip.c │ │ │ ├── fdtdec.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 │ │ │ ├── getline.c │ │ │ ├── getline.h │ │ │ ├── gpheader.h │ │ │ ├── gpimage-common.c │ │ │ ├── gpimage.c │ │ │ ├── image-fit.c │ │ │ ├── image-host.c │ │ │ ├── image-sig.c │ │ │ ├── image.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 │ │ │ ├── denx.bmp │ │ │ ├── esd.bmp │ │ │ ├── freescale.bmp │ │ │ ├── intercontrol.bmp │ │ │ ├── linux_logo_ttcontrol.bmp │ │ │ ├── linux_logo_ttcontrol_palfin.bmp │ │ │ ├── ronetix.bmp │ │ │ ├── siemens.bmp │ │ │ ├── syteco.bmp │ │ │ └── wandboard.bmp │ │ │ ├── md5.c │ │ │ ├── mingw_support.c │ │ │ ├── mingw_support.h │ │ │ ├── mkenvimage.c │ │ │ ├── mkexynosspl.c │ │ │ ├── mkimage.c │ │ │ ├── mkimage.h │ │ │ ├── mpc86x_clk.c │ │ │ ├── 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 │ │ │ ├── palmtreo680 │ │ │ └── flash_u-boot.c │ │ │ ├── patman │ │ │ ├── .gitignore │ │ │ ├── README │ │ │ ├── checkpatch.py │ │ │ ├── command.py │ │ │ ├── commit.py │ │ │ ├── cros_subprocess.py │ │ │ ├── get_maintainer.py │ │ │ ├── gitutil.py │ │ │ ├── patchstream.py │ │ │ ├── patman.py │ │ │ ├── project.py │ │ │ ├── series.py │ │ │ ├── settings.py │ │ │ ├── terminal.py │ │ │ └── test.py │ │ │ ├── pblimage.c │ │ │ ├── pblimage.h │ │ │ ├── proftool.c │ │ │ ├── reformat.py │ │ │ ├── relocate-rela.c │ │ │ ├── rsa-checksum.c │ │ │ ├── rsa-sign.c │ │ │ ├── rsa-verify.c │ │ │ ├── scripts │ │ │ └── define2mk.sed │ │ │ ├── sha1.c │ │ │ ├── sha256.c │ │ │ ├── ublimage.c │ │ │ ├── ublimage.h │ │ │ ├── ubsha1.c │ │ │ └── xway-swap-bytes.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 ├── savevm.c ├── scripts │ ├── acpi_extract.py │ ├── acpi_extract_preprocess.py │ ├── analyse-9p-simpletrace.py │ ├── check-qerror.sh │ ├── checkpatch.pl │ ├── cleanup-trace-events.pl │ ├── coverity-model.c │ ├── create_config │ ├── disas-objdump.pl │ ├── dump-guest-memory.py │ ├── extract-vsssdk-headers │ ├── feature_to_c.sh │ ├── get_maintainer.pl │ ├── gtester-cat │ ├── hxtool │ ├── kvm │ │ ├── kvm_flightrecorder │ │ ├── kvm_stat │ │ └── vmxcap │ ├── make-release │ ├── make_device_config.sh │ ├── ordereddict.py │ ├── qapi-commands.py │ ├── qapi-event.py │ ├── qapi-types.py │ ├── qapi-visit.py │ ├── qapi.py │ ├── qemu-binfmt-conf.sh │ ├── qemu-gdb.py │ ├── qemu-guest-agent │ │ ├── fsfreeze-hook │ │ └── fsfreeze-hook.d │ │ │ └── mysql-flush.sh.sample │ ├── qmp │ │ ├── qemu-ga-client │ │ ├── qmp │ │ ├── qmp-shell │ │ ├── qmp.py │ │ ├── qom-fuse │ │ ├── qom-get │ │ ├── qom-list │ │ └── qom-set │ ├── qtest │ ├── refresh-pxe-roms.sh │ ├── signrom.py │ ├── simpletrace.py │ ├── switch-timer-api │ ├── texi2pod.pl │ ├── tracetool.py │ ├── tracetool │ │ ├── __init__.py │ │ ├── backend │ │ │ ├── __init__.py │ │ │ ├── dtrace.py │ │ │ ├── ftrace.py │ │ │ ├── simple.py │ │ │ ├── stderr.py │ │ │ └── ust.py │ │ └── format │ │ │ ├── __init__.py │ │ │ ├── c.py │ │ │ ├── d.py │ │ │ ├── events_c.py │ │ │ ├── events_h.py │ │ │ ├── h.py │ │ │ ├── stap.py │ │ │ ├── ust_events_c.py │ │ │ └── ust_events_h.py │ ├── update-acpi.sh │ ├── update-linux-headers.sh │ └── vmstate-static-checker.py ├── segs[R_CS] ├── slirp │ ├── COPYRIGHT │ ├── Makefile.objs │ ├── arp_table.c │ ├── bootp.c │ ├── bootp.h │ ├── cksum.c │ ├── debug.h │ ├── dnssearch.c │ ├── if.c │ ├── if.h │ ├── ip.h │ ├── ip_icmp.c │ ├── ip_icmp.h │ ├── ip_input.c │ ├── ip_output.c │ ├── libslirp.h │ ├── main.h │ ├── mbuf.c │ ├── mbuf.h │ ├── misc.c │ ├── misc.h │ ├── sbuf.c │ ├── sbuf.h │ ├── slirp.c │ ├── slirp.h │ ├── slirp_config.h │ ├── socket.c │ ├── socket.h │ ├── tcp.h │ ├── tcp_input.c │ ├── tcp_output.c │ ├── tcp_subr.c │ ├── tcp_timer.c │ ├── tcp_timer.h │ ├── tcp_var.h │ ├── tcpip.h │ ├── tftp.c │ ├── tftp.h │ ├── udp.c │ └── udp.h ├── softmmu_template.h ├── spice-0.12.4.tar.bz2 ├── spice-0.12.4 │ ├── .tarball-version │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── aclocal.m4 │ ├── ar-lib │ ├── build-aux │ │ └── git-version-gen │ ├── client │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── application.cpp │ │ ├── application.h │ │ ├── audio_channels.h │ │ ├── audio_devices.h │ │ ├── cache.hpp │ │ ├── canvas.cpp │ │ ├── canvas.h │ │ ├── client_net_socket.cpp │ │ ├── client_net_socket.h │ │ ├── cmd_line_parser.cpp │ │ ├── cmd_line_parser.h │ │ ├── common.h │ │ ├── controller.cpp │ │ ├── controller.h │ │ ├── cursor.cpp │ │ ├── cursor.h │ │ ├── cursor_channel.cpp │ │ ├── cursor_channel.h │ │ ├── debug.h │ │ ├── display_channel.cpp │ │ ├── display_channel.h │ │ ├── event_sources.h │ │ ├── foreign_menu.cpp │ │ ├── foreign_menu.h │ │ ├── glz_decode_tmpl.c │ │ ├── glz_decoded_image.h │ │ ├── glz_decoder.cpp │ │ ├── glz_decoder.h │ │ ├── glz_decoder_config.h │ │ ├── glz_decoder_window.cpp │ │ ├── glz_decoder_window.h │ │ ├── gui │ │ │ ├── commonv2c.ttf.c │ │ │ ├── commonwealth-10.font.c │ │ │ ├── dejavu_sans-10.font.c │ │ │ ├── dejavu_sans.ttf.c │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── resource_provider.cpp │ │ │ ├── resource_provider.h │ │ │ ├── softrenderer.cpp │ │ │ ├── softrenderer.h │ │ │ ├── softtexture.cpp │ │ │ ├── softtexture.h │ │ │ ├── taharez_look.imageset.c │ │ │ ├── taharez_look.looknfeel.c │ │ │ ├── taharez_look.scheme.c │ │ │ └── taharez_look.tga.c │ │ ├── hot_keys.cpp │ │ ├── hot_keys.h │ │ ├── icon.h │ │ ├── inputs_channel.cpp │ │ ├── inputs_channel.h │ │ ├── inputs_handler.h │ │ ├── jpeg_decoder.cpp │ │ ├── jpeg_decoder.h │ │ ├── menu.cpp │ │ ├── menu.h │ │ ├── mjpeg_decoder.cpp │ │ ├── mjpeg_decoder.h │ │ ├── monitor.cpp │ │ ├── monitor.h │ │ ├── pixels_source.h │ │ ├── platform.h │ │ ├── playback_channel.cpp │ │ ├── process_loop.cpp │ │ ├── process_loop.h │ │ ├── read_write_mutex.h │ │ ├── record_channel.cpp │ │ ├── red_canvas_base.h │ │ ├── red_channel.cpp │ │ ├── red_channel.h │ │ ├── red_client.cpp │ │ ├── red_client.h │ │ ├── red_drawable.h │ │ ├── red_gdi_canvas.cpp │ │ ├── red_gdi_canvas.h │ │ ├── red_gl_canvas.cpp │ │ ├── red_gl_canvas.h │ │ ├── red_key.h │ │ ├── red_peer.cpp │ │ ├── red_peer.h │ │ ├── red_pixmap.h │ │ ├── red_pixmap_gdi.h │ │ ├── red_pixmap_gl.h │ │ ├── red_pixmap_sw.h │ │ ├── red_sw_canvas.cpp │ │ ├── red_sw_canvas.h │ │ ├── red_types.h │ │ ├── red_window.h │ │ ├── screen.cpp │ │ ├── screen.h │ │ ├── screen_layer.cpp │ │ ├── screen_layer.h │ │ ├── shared_cache.hpp │ │ ├── smartcard_channel.cpp │ │ ├── smartcard_channel.h │ │ ├── threads.cpp │ │ ├── threads.h │ │ ├── tunnel_channel.cpp │ │ ├── tunnel_channel.h │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── windows │ │ │ ├── atomic_count.h │ │ │ ├── event_sources_p.cpp │ │ │ ├── main.cpp │ │ │ ├── my_getopt.cpp │ │ │ ├── named_pipe.cpp │ │ │ ├── named_pipe.h │ │ │ ├── pixels_source.cpp │ │ │ ├── pixels_source_p.h │ │ │ ├── platform.cpp │ │ │ ├── platform_utils.cpp │ │ │ ├── platform_utils.h │ │ │ ├── playback.cpp │ │ │ ├── playback.h │ │ │ ├── record.cpp │ │ │ ├── record.h │ │ │ ├── red_drawable.cpp │ │ │ ├── red_pixmap.cpp │ │ │ ├── red_pixmap_gdi.cpp │ │ │ ├── red_pixmap_sw.cpp │ │ │ ├── red_window.cpp │ │ │ ├── red_window_p.h │ │ │ ├── resource.h │ │ │ ├── stdint.h │ │ │ └── win_platform.h │ │ ├── x11 │ │ │ ├── atomic_count.h │ │ │ ├── event_sources_p.cpp │ │ │ ├── event_sources_p.h │ │ │ ├── images │ │ │ │ ├── alt_image.c │ │ │ │ └── red_icon.c │ │ │ ├── main.cpp │ │ │ ├── named_pipe.cpp │ │ │ ├── named_pipe.h │ │ │ ├── pixels_source.cpp │ │ │ ├── pixels_source_p.h │ │ │ ├── platform.cpp │ │ │ ├── platform_utils.cpp │ │ │ ├── platform_utils.h │ │ │ ├── playback.cpp │ │ │ ├── playback.h │ │ │ ├── record.cpp │ │ │ ├── record.h │ │ │ ├── red_drawable.cpp │ │ │ ├── red_pixmap.cpp │ │ │ ├── red_pixmap_gl.cpp │ │ │ ├── red_pixmap_sw.cpp │ │ │ ├── red_window.cpp │ │ │ ├── red_window_p.h │ │ │ ├── res.cpp │ │ │ ├── res.h │ │ │ ├── resource.h │ │ │ ├── x_icon.cpp │ │ │ ├── x_icon.h │ │ │ └── x_platform.h │ │ ├── zlib_decoder.cpp │ │ └── zlib_decoder.h │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ ├── m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── manywarnings.m4 │ │ ├── spice-compile-warnings.m4 │ │ └── warnings.m4 │ ├── missing │ ├── server │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── agent-msg-filter.c │ │ ├── agent-msg-filter.h │ │ ├── char_device.c │ │ ├── char_device.h │ │ ├── demarshallers.h │ │ ├── dispatcher.c │ │ ├── dispatcher.h │ │ ├── glz_encode_match_tmpl.c │ │ ├── glz_encode_tmpl.c │ │ ├── glz_encoder.c │ │ ├── glz_encoder.h │ │ ├── glz_encoder_config.h │ │ ├── glz_encoder_dictionary.c │ │ ├── glz_encoder_dictionary.h │ │ ├── glz_encoder_dictionary_protected.h │ │ ├── inputs_channel.c │ │ ├── inputs_channel.h │ │ ├── jpeg_encoder.c │ │ ├── jpeg_encoder.h │ │ ├── main_channel.c │ │ ├── main_channel.h │ │ ├── main_dispatcher.c │ │ ├── main_dispatcher.h │ │ ├── migration_protocol.h │ │ ├── mjpeg_encoder.c │ │ ├── mjpeg_encoder.h │ │ ├── red_bitmap_utils.h │ │ ├── red_channel.c │ │ ├── red_channel.h │ │ ├── red_client_cache.h │ │ ├── red_client_shared_cache.h │ │ ├── red_common.h │ │ ├── red_dispatcher.c │ │ ├── red_dispatcher.h │ │ ├── red_memslots.c │ │ ├── red_memslots.h │ │ ├── red_parse_qxl.c │ │ ├── red_parse_qxl.h │ │ ├── red_tunnel_worker.c │ │ ├── red_tunnel_worker.h │ │ ├── red_worker.c │ │ ├── red_worker.h │ │ ├── reds-private.h │ │ ├── reds.c │ │ ├── reds.h │ │ ├── reds_gl_canvas.c │ │ ├── reds_gl_canvas.h │ │ ├── reds_sw_canvas.c │ │ ├── reds_sw_canvas.h │ │ ├── smartcard.c │ │ ├── smartcard.h │ │ ├── snd_worker.c │ │ ├── snd_worker.h │ │ ├── spice-experimental.h │ │ ├── spice-server.syms │ │ ├── spice.h │ │ ├── spice_timer_queue.c │ │ ├── spice_timer_queue.h │ │ ├── spicevmc.c │ │ ├── stat.h │ │ ├── tests │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── basic_event_loop.c │ │ │ ├── basic_event_loop.h │ │ │ ├── test_display_base.c │ │ │ ├── test_display_base.h │ │ │ ├── test_display_no_ssl.c │ │ │ ├── test_display_resolution_changes.c │ │ │ ├── test_display_streaming.c │ │ │ ├── test_display_width_stride.c │ │ │ ├── test_empty_success.c │ │ │ ├── test_fail_on_null_core_interface.c │ │ │ ├── test_just_sockets_no_ssl.c │ │ │ ├── test_playback.c │ │ │ ├── test_two_servers.c │ │ │ ├── test_util.h │ │ │ └── test_vdagent.c │ │ ├── zlib_encoder.c │ │ └── zlib_encoder.h │ ├── spice-common │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── build-aux │ │ │ ├── ar-lib │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ └── missing │ │ ├── common │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── backtrace.c │ │ │ ├── backtrace.h │ │ │ ├── bitops.h │ │ │ ├── canvas_base.c │ │ │ ├── canvas_base.h │ │ │ ├── canvas_utils.c │ │ │ ├── canvas_utils.h │ │ │ ├── client_demarshallers.h │ │ │ ├── client_marshallers.h │ │ │ ├── draw.h │ │ │ ├── gdi_canvas.c │ │ │ ├── gdi_canvas.h │ │ │ ├── generated_client_demarshallers.c │ │ │ ├── generated_client_demarshallers1.c │ │ │ ├── generated_client_marshallers.c │ │ │ ├── generated_client_marshallers1.c │ │ │ ├── generated_server_demarshallers.c │ │ │ ├── generated_server_marshallers.c │ │ │ ├── generated_server_marshallers.h │ │ │ ├── gl_canvas.c │ │ │ ├── gl_canvas.h │ │ │ ├── gl_utils.h │ │ │ ├── glc.c │ │ │ ├── glc.h │ │ │ ├── lines.c │ │ │ ├── lines.h │ │ │ ├── log.c │ │ │ ├── log.h │ │ │ ├── lz.c │ │ │ ├── lz.h │ │ │ ├── lz_common.h │ │ │ ├── lz_compress_tmpl.c │ │ │ ├── lz_config.h │ │ │ ├── lz_decompress_tmpl.c │ │ │ ├── macros.h │ │ │ ├── marshaller.c │ │ │ ├── marshaller.h │ │ │ ├── mem.c │ │ │ ├── mem.h │ │ │ ├── messages.h │ │ │ ├── mutex.h │ │ │ ├── ogl_ctx.c │ │ │ ├── ogl_ctx.h │ │ │ ├── pixman_utils.c │ │ │ ├── pixman_utils.h │ │ │ ├── quic.c │ │ │ ├── quic.h │ │ │ ├── quic_config.h │ │ │ ├── quic_family_tmpl.c │ │ │ ├── quic_rgb_tmpl.c │ │ │ ├── quic_tmpl.c │ │ │ ├── rect.h │ │ │ ├── region.c │ │ │ ├── region.h │ │ │ ├── ring.h │ │ │ ├── rop3.c │ │ │ ├── rop3.h │ │ │ ├── spice_common.h │ │ │ ├── ssl_verify.c │ │ │ ├── ssl_verify.h │ │ │ ├── sw_canvas.c │ │ │ ├── sw_canvas.h │ │ │ └── verify.h │ │ ├── config.h.in │ │ ├── configure │ │ ├── configure.ac │ │ ├── m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ └── lt~obsolete.m4 │ │ ├── python_modules │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── __init__.py │ │ │ ├── codegen.py │ │ │ ├── demarshal.py │ │ │ ├── marshal.py │ │ │ ├── ptypes.py │ │ │ └── spice_parser.py │ │ ├── spice-protocol │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── aclocal.m4 │ │ │ ├── config.h.in │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── install-sh │ │ │ ├── missing │ │ │ ├── spice-protocol.pc.in │ │ │ └── spice │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── barrier.h │ │ │ │ ├── controller_prot.h │ │ │ │ ├── end-packed.h │ │ │ │ ├── enums.h │ │ │ │ ├── error_codes.h │ │ │ │ ├── foreign_menu_prot.h │ │ │ │ ├── ipc_ring.h │ │ │ │ ├── macros.h │ │ │ │ ├── protocol.h │ │ │ │ ├── qxl_dev.h │ │ │ │ ├── qxl_windows.h │ │ │ │ ├── start-packed.h │ │ │ │ ├── stats.h │ │ │ │ ├── types.h │ │ │ │ ├── vd_agent.h │ │ │ │ └── vdi_dev.h │ │ ├── spice.proto │ │ ├── spice1.proto │ │ └── spice_codegen.py │ └── spice-server.pc.in ├── spice-qemu-char.c ├── stubs │ ├── Makefile.objs │ ├── arch-query-cpu-def.c │ ├── bdrv-commit-all.c │ ├── chr-baum-init.c │ ├── chr-msmouse.c │ ├── clock-warp.c │ ├── cpu-get-clock.c │ ├── cpu-get-icount.c │ ├── cpus.c │ ├── dump.c │ ├── fd-register.c │ ├── fdset-add-fd.c │ ├── fdset-find-fd.c │ ├── fdset-get-fd.c │ ├── fdset-remove-fd.c │ ├── gdbstub.c │ ├── get-fd.c │ ├── get-next-serial.c │ ├── get-vm-name.c │ ├── iothread-lock.c │ ├── is-daemonized.c │ ├── kvm.c │ ├── machine-init-done.c │ ├── migr-blocker.c │ ├── mon-is-qmp.c │ ├── mon-printf.c │ ├── mon-set-error.c │ ├── monitor-init.c │ ├── notify-event.c │ ├── pci-drive-hot-add.c │ ├── qemu-chr-open-spice.c │ ├── qmp_pc_dimm_device_list.c │ ├── qtest.c │ ├── reset.c │ ├── runstate-check.c │ ├── set-fd-handler.c │ ├── slirp.c │ ├── sysbus.c │ ├── uuid.c │ ├── vc-init.c │ ├── vm-stop.c │ └── vmstate.c ├── sysconfigs │ └── target │ │ └── target-x86_64.conf ├── target-alpha │ ├── Makefile.objs │ ├── STATUS │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── int_helper.c │ ├── machine.c │ ├── mem_helper.c │ ├── sys_helper.c │ └── translate.c ├── target-arm │ ├── Makefile.objs │ ├── arm-semi.c │ ├── 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 │ ├── neon_helper.c │ ├── op_addsub.h │ ├── op_helper.c │ ├── translate-a64.c │ ├── translate.c │ └── translate.h ├── target-cris │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── crisv10-decode.h │ ├── crisv32-decode.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── machine.c │ ├── mmu.c │ ├── mmu.h │ ├── op_helper.c │ ├── opcode-cris.h │ ├── translate.c │ └── translate_v10.c ├── target-i386 │ ├── Makefile.objs │ ├── TODO │ ├── arch_dump.c │ ├── arch_memory_mapping.c │ ├── cc_helper.c │ ├── cc_helper_template.h │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── excp_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── int_helper.c │ ├── ioport-user.c │ ├── kvm-stub.c │ ├── kvm.c │ ├── kvm_i386.h │ ├── machine.c │ ├── mem_helper.c │ ├── mem_helper.s │ ├── misc_helper.c │ ├── ops_sse.h │ ├── ops_sse_header.h │ ├── seg_helper.c │ ├── sgx-dbg.h │ ├── sgx-perf.h │ ├── sgx-utils.c │ ├── sgx-utils.h │ ├── sgx.h │ ├── sgx_helper.c │ ├── shift_helper_template.h │ ├── smm_helper.c │ ├── svm.h │ ├── svm_helper.c │ ├── topology.h │ └── translate.c ├── target-lm32 │ ├── Makefile.objs │ ├── README │ ├── TODO │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── lm32-semi.c │ ├── machine.c │ ├── op_helper.c │ └── translate.c ├── target-m68k │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── m68k-qreg.h │ ├── m68k-semi.c │ ├── op_helper.c │ ├── qregs.def │ └── translate.c ├── target-microblaze │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── microblaze-decode.h │ ├── mmu.c │ ├── mmu.h │ ├── op_helper.c │ └── translate.c ├── target-mips │ ├── Makefile.objs │ ├── TODO │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── dsp_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── kvm.c │ ├── kvm_mips.h │ ├── lmi_helper.c │ ├── machine.c │ ├── mips-defs.h │ ├── op_helper.c │ ├── translate.c │ └── translate_init.c ├── target-moxie │ ├── Makefile.objs │ ├── cpu.c │ ├── cpu.h │ ├── helper.c │ ├── helper.h │ ├── machine.c │ ├── machine.h │ ├── mmu.c │ ├── mmu.h │ └── translate.c ├── target-openrisc │ ├── Makefile.objs │ ├── cpu.c │ ├── cpu.h │ ├── exception.c │ ├── exception.h │ ├── exception_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.h │ ├── int_helper.c │ ├── interrupt.c │ ├── interrupt_helper.c │ ├── machine.c │ ├── mmu.c │ ├── mmu_helper.c │ ├── sys_helper.c │ └── translate.c ├── target-ppc │ ├── Makefile.objs │ ├── STATUS │ ├── arch_dump.c │ ├── cpu-models.c │ ├── cpu-models.h │ ├── cpu-qom.h │ ├── cpu.h │ ├── dfp_helper.c │ ├── excp_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.h │ ├── helper_regs.h │ ├── int_helper.c │ ├── kvm-stub.c │ ├── kvm.c │ ├── kvm_ppc.c │ ├── kvm_ppc.h │ ├── machine.c │ ├── mem_helper.c │ ├── mfrom_table.c │ ├── mfrom_table_gen.c │ ├── misc_helper.c │ ├── mmu-hash32.c │ ├── mmu-hash32.h │ ├── mmu-hash64.c │ ├── mmu-hash64.h │ ├── mmu_helper.c │ ├── timebase_helper.c │ ├── translate.c │ ├── translate_init.c │ └── user_only_helper.c ├── target-s390x │ ├── Makefile.objs │ ├── arch_dump.c │ ├── cc_helper.c │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── insn-data.def │ ├── insn-format.def │ ├── int_helper.c │ ├── interrupt.c │ ├── ioinst.c │ ├── ioinst.h │ ├── kvm.c │ ├── mem_helper.c │ ├── misc_helper.c │ └── translate.c ├── target-sh4 │ ├── Makefile.objs │ ├── README.sh4 │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── op_helper.c │ └── translate.c ├── target-sparc │ ├── Makefile.objs │ ├── TODO │ ├── cc_helper.c │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── fop_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── int32_helper.c │ ├── int64_helper.c │ ├── ldst_helper.c │ ├── machine.c │ ├── mmu_helper.c │ ├── translate.c │ ├── vis_helper.c │ └── win_helper.c ├── target-unicore32 │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── helper.c │ ├── helper.h │ ├── op_helper.c │ ├── softmmu.c │ ├── translate.c │ └── ucf64_helper.c ├── target-xtensa │ ├── Makefile.objs │ ├── core-dc232b.c │ ├── core-dc232b │ │ ├── core-isa.h │ │ └── gdb-config.c │ ├── core-dc233c.c │ ├── core-dc233c │ │ ├── core-isa.h │ │ └── gdb-config.c │ ├── core-fsf.c │ ├── core-fsf │ │ └── core-isa.h │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── op_helper.c │ ├── overlay_tool.h │ ├── translate.c │ └── xtensa-semi.c ├── tcg-runtime.c ├── tcg │ ├── LICENSE │ ├── README │ ├── TODO │ ├── aarch64 │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── arm │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── i386 │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── ia64 │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── mips │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── optimize.c │ ├── ppc │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── s390 │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── sparc │ │ ├── tcg-target.c │ │ └── tcg-target.h │ ├── tcg-be-ldst.h │ ├── tcg-be-null.h │ ├── tcg-op.h │ ├── tcg-opc.h │ ├── tcg-plugin.c │ ├── tcg-plugin.h │ ├── tcg-runtime.h │ ├── tcg.c │ ├── tcg.h │ └── tci │ │ ├── README │ │ ├── tcg-target.c │ │ └── tcg-target.h ├── tci.c ├── tests │ ├── .gitignore │ ├── Makefile │ ├── ac97-test.c │ ├── acpi-test-data │ │ ├── pc │ │ │ ├── APIC │ │ │ ├── DSDT │ │ │ ├── FACP │ │ │ ├── FACS │ │ │ ├── HPET │ │ │ └── SSDT │ │ ├── q35 │ │ │ ├── APIC │ │ │ ├── DSDT │ │ │ ├── FACP │ │ │ ├── FACS │ │ │ ├── HPET │ │ │ ├── MCFG │ │ │ └── SSDT │ │ └── rebuild-expected-aml.sh │ ├── bios-tables-test.c │ ├── blockdev-test.c │ ├── boot-order-test.c │ ├── check-block.sh │ ├── check-qdict.c │ ├── check-qfloat.c │ ├── check-qint.c │ ├── check-qjson.c │ ├── check-qlist.c │ ├── check-qom-interface.c │ ├── check-qstring.c │ ├── display-vga-test.c │ ├── e1000-test.c │ ├── eepro100-test.c │ ├── endianness-test.c │ ├── es1370-test.c │ ├── fdc-test.c │ ├── fw_cfg-test.c │ ├── hd-geo-test.c │ ├── i440fx-test.c │ ├── i82801b11-test.c │ ├── ide-test.c │ ├── intel-hda-test.c │ ├── ioh3420-test.c │ ├── ipoctal232-test.c │ ├── libqos │ │ ├── fw_cfg.c │ │ ├── fw_cfg.h │ │ ├── i2c-omap.c │ │ ├── i2c.c │ │ ├── i2c.h │ │ ├── malloc-pc.c │ │ ├── malloc-pc.h │ │ ├── malloc.h │ │ ├── pci-pc.c │ │ ├── pci-pc.h │ │ ├── pci.c │ │ └── pci.h │ ├── libqtest.c │ ├── libqtest.h │ ├── m48t59-test.c │ ├── multiboot │ │ ├── Makefile │ │ ├── libc.c │ │ ├── libc.h │ │ ├── link.ld │ │ ├── mmap.c │ │ ├── mmap.out │ │ ├── multiboot.h │ │ ├── run_test.sh │ │ └── start.S │ ├── ne2000-test.c │ ├── nvme-test.c │ ├── pcnet-test.c │ ├── pvpanic-test.c │ ├── qapi-schema │ │ ├── comments.err │ │ ├── comments.exit │ │ ├── comments.json │ │ ├── comments.out │ │ ├── duplicate-key.err │ │ ├── duplicate-key.exit │ │ ├── duplicate-key.json │ │ ├── duplicate-key.out │ │ ├── empty.err │ │ ├── empty.exit │ │ ├── empty.json │ │ ├── empty.out │ │ ├── event-nest-struct.err │ │ ├── event-nest-struct.exit │ │ ├── event-nest-struct.json │ │ ├── event-nest-struct.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-reverse-define.err │ │ ├── flat-union-reverse-define.exit │ │ ├── flat-union-reverse-define.json │ │ ├── flat-union-reverse-define.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 │ │ ├── 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-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 │ │ ├── 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 │ │ ├── non-objects.err │ │ ├── non-objects.exit │ │ ├── non-objects.json │ │ ├── non-objects.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── union-invalid-base.err │ │ ├── union-invalid-base.exit │ │ ├── union-invalid-base.json │ │ └── union-invalid-base.out │ ├── qdev-monitor-test.c │ ├── qemu-iotests-quick.sh │ ├── qemu-iotests │ │ ├── 101 │ │ ├── .gitignore │ │ ├── 001 │ │ ├── 001.out │ │ ├── 002 │ │ ├── 002.out │ │ ├── 003 │ │ ├── 003.out │ │ ├── 004 │ │ ├── 004.out │ │ ├── 005 │ │ ├── 005.out │ │ ├── 006 │ │ ├── 006.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 │ │ ├── 016 │ │ ├── 016.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 │ │ ├── 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 │ │ ├── 095 │ │ ├── 095.out │ │ ├── 101.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 │ │ │ ├── empty.bochs.bz2 │ │ │ ├── fake.parallels.bz2 │ │ │ ├── iotest-dirtylog-10G-4M.vhdx.bz2 │ │ │ ├── iotest-dynamic-1G.vhdx.bz2 │ │ │ ├── iotest-version3.vmdk.bz2 │ │ │ ├── simple-pattern.cloop.bz2 │ │ │ └── test-disk2vhd.vhdx.bz2 │ │ └── socket_scm_helper.c │ ├── qom-test.c │ ├── rtc-test.c │ ├── rtl8139-test.c │ ├── spapr-phb-test.c │ ├── tcg │ │ ├── Makefile │ │ ├── alpha │ │ │ ├── Makefile │ │ │ ├── crt.s │ │ │ ├── hello-alpha.c │ │ │ ├── test-cond.c │ │ │ └── test-ovf.c │ │ ├── cris │ │ │ ├── .gdbinit │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── check_abs.c │ │ │ ├── check_addc.c │ │ │ ├── check_addcm.c │ │ │ ├── check_addi.s │ │ │ ├── check_addiv32.s │ │ │ ├── check_addm.s │ │ │ ├── check_addo.c │ │ │ ├── check_addoq.c │ │ │ ├── check_addq.s │ │ │ ├── check_addr.s │ │ │ ├── check_addxc.s │ │ │ ├── check_addxm.s │ │ │ ├── check_addxr.s │ │ │ ├── check_andc.s │ │ │ ├── check_andm.s │ │ │ ├── check_andq.s │ │ │ ├── check_andr.s │ │ │ ├── check_asr.s │ │ │ ├── check_ba.s │ │ │ ├── check_bas.s │ │ │ ├── check_bcc.s │ │ │ ├── check_bound.c │ │ │ ├── check_boundc.s │ │ │ ├── check_boundr.s │ │ │ ├── check_btst.s │ │ │ ├── check_clearfv32.s │ │ │ ├── check_clrjmp1.s │ │ │ ├── check_cmp-2.s │ │ │ ├── check_cmpc.s │ │ │ ├── check_cmpm.s │ │ │ ├── check_cmpq.s │ │ │ ├── check_cmpr.s │ │ │ ├── check_cmpxc.s │ │ │ ├── check_cmpxm.s │ │ │ ├── check_dstep.s │ │ │ ├── check_ftag.c │ │ │ ├── check_gcctorture_pr28634-1.c │ │ │ ├── check_gcctorture_pr28634.c │ │ │ ├── check_glibc_kernelversion.c │ │ │ ├── check_hello.c │ │ │ ├── check_int64.c │ │ │ ├── check_jsr.s │ │ │ ├── check_lapc.s │ │ │ ├── check_lsl.s │ │ │ ├── check_lsr.s │ │ │ ├── check_lz.c │ │ │ ├── check_mapbrk.c │ │ │ ├── check_mcp.s │ │ │ ├── check_mmap1.c │ │ │ ├── check_mmap2.c │ │ │ ├── check_mmap3.c │ │ │ ├── check_movdelsr1.s │ │ │ ├── check_movecr.s │ │ │ ├── check_movei.s │ │ │ ├── check_movemr.s │ │ │ ├── check_movemrv32.s │ │ │ ├── check_moveq.c │ │ │ ├── check_mover.s │ │ │ ├── check_moverm.s │ │ │ ├── check_movmp.s │ │ │ ├── check_movpmv32.s │ │ │ ├── check_movpr.s │ │ │ ├── check_movprv32.s │ │ │ ├── check_movscr.s │ │ │ ├── check_movsm.s │ │ │ ├── check_movsr.s │ │ │ ├── check_movucr.s │ │ │ ├── check_movum.s │ │ │ ├── check_movur.s │ │ │ ├── check_mulv32.s │ │ │ ├── check_mulx.s │ │ │ ├── check_neg.s │ │ │ ├── check_not.s │ │ │ ├── check_openpf1.c │ │ │ ├── check_openpf2.c │ │ │ ├── check_openpf3.c │ │ │ ├── check_openpf4.c │ │ │ ├── check_openpf5.c │ │ │ ├── check_orc.s │ │ │ ├── check_orm.s │ │ │ ├── check_orq.s │ │ │ ├── check_orr.s │ │ │ ├── check_ret.s │ │ │ ├── check_scc.s │ │ │ ├── check_settls1.c │ │ │ ├── check_sigalrm.c │ │ │ ├── check_stat1.c │ │ │ ├── check_stat2.c │ │ │ ├── check_stat3.c │ │ │ ├── check_stat4.c │ │ │ ├── check_subc.s │ │ │ ├── check_subm.s │ │ │ ├── check_subq.s │ │ │ ├── check_subr.s │ │ │ ├── check_swap.c │ │ │ ├── check_time1.c │ │ │ ├── check_time2.c │ │ │ ├── check_xarith.s │ │ │ ├── crisutils.h │ │ │ ├── crt.s │ │ │ ├── sys.c │ │ │ ├── sys.h │ │ │ └── testutils.inc │ │ ├── hello-arm.c │ │ ├── hello-i386.c │ │ ├── hello-mips.c │ │ ├── linux-test.c │ │ ├── lm32 │ │ │ ├── Makefile │ │ │ ├── crt.S │ │ │ ├── helper.S │ │ │ ├── linker.ld │ │ │ ├── macros.inc │ │ │ ├── test_add.S │ │ │ ├── test_addi.S │ │ │ ├── test_and.S │ │ │ ├── test_andhi.S │ │ │ ├── test_andi.S │ │ │ ├── test_b.S │ │ │ ├── test_be.S │ │ │ ├── test_bg.S │ │ │ ├── test_bge.S │ │ │ ├── test_bgeu.S │ │ │ ├── test_bgu.S │ │ │ ├── test_bi.S │ │ │ ├── test_bne.S │ │ │ ├── test_break.S │ │ │ ├── test_bret.S │ │ │ ├── test_call.S │ │ │ ├── test_calli.S │ │ │ ├── test_cmpe.S │ │ │ ├── test_cmpei.S │ │ │ ├── test_cmpg.S │ │ │ ├── test_cmpge.S │ │ │ ├── test_cmpgei.S │ │ │ ├── test_cmpgeu.S │ │ │ ├── test_cmpgeui.S │ │ │ ├── test_cmpgi.S │ │ │ ├── test_cmpgu.S │ │ │ ├── test_cmpgui.S │ │ │ ├── test_cmpne.S │ │ │ ├── test_cmpnei.S │ │ │ ├── test_divu.S │ │ │ ├── test_eret.S │ │ │ ├── test_lb.S │ │ │ ├── test_lbu.S │ │ │ ├── test_lh.S │ │ │ ├── test_lhu.S │ │ │ ├── test_lw.S │ │ │ ├── test_modu.S │ │ │ ├── test_mul.S │ │ │ ├── test_muli.S │ │ │ ├── test_nor.S │ │ │ ├── test_nori.S │ │ │ ├── test_or.S │ │ │ ├── test_orhi.S │ │ │ ├── test_ori.S │ │ │ ├── test_ret.S │ │ │ ├── test_sb.S │ │ │ ├── test_scall.S │ │ │ ├── test_sextb.S │ │ │ ├── test_sexth.S │ │ │ ├── test_sh.S │ │ │ ├── test_sl.S │ │ │ ├── test_sli.S │ │ │ ├── test_sr.S │ │ │ ├── test_sri.S │ │ │ ├── test_sru.S │ │ │ ├── test_srui.S │ │ │ ├── test_sub.S │ │ │ ├── test_sw.S │ │ │ ├── test_xnor.S │ │ │ ├── test_xnori.S │ │ │ ├── test_xor.S │ │ │ └── test_xori.S │ │ ├── mips │ │ │ ├── mips32-dsp │ │ │ │ ├── Makefile │ │ │ │ ├── absq_s_ph.c │ │ │ │ ├── absq_s_w.c │ │ │ │ ├── addq_ph.c │ │ │ │ ├── addq_s_ph.c │ │ │ │ ├── addq_s_w.c │ │ │ │ ├── addsc.c │ │ │ │ ├── addu_qb.c │ │ │ │ ├── addu_s_qb.c │ │ │ │ ├── addwc.c │ │ │ │ ├── bitrev.c │ │ │ │ ├── bposge32.c │ │ │ │ ├── cmp_eq_ph.c │ │ │ │ ├── cmp_le_ph.c │ │ │ │ ├── cmp_lt_ph.c │ │ │ │ ├── cmpgu_eq_qb.c │ │ │ │ ├── cmpgu_le_qb.c │ │ │ │ ├── cmpgu_lt_qb.c │ │ │ │ ├── cmpu_eq_qb.c │ │ │ │ ├── cmpu_le_qb.c │ │ │ │ ├── cmpu_lt_qb.c │ │ │ │ ├── dpaq_s_w_ph.c │ │ │ │ ├── dpaq_sa_l_w.c │ │ │ │ ├── dpau_h_qbl.c │ │ │ │ ├── dpau_h_qbr.c │ │ │ │ ├── dpsq_s_w_ph.c │ │ │ │ ├── dpsq_sa_l_w.c │ │ │ │ ├── dpsu_h_qbl.c │ │ │ │ ├── dpsu_h_qbr.c │ │ │ │ ├── extp.c │ │ │ │ ├── extpdp.c │ │ │ │ ├── extpdpv.c │ │ │ │ ├── extpv.c │ │ │ │ ├── extr_r_w.c │ │ │ │ ├── extr_rs_w.c │ │ │ │ ├── extr_s_h.c │ │ │ │ ├── extr_w.c │ │ │ │ ├── extrv_r_w.c │ │ │ │ ├── extrv_rs_w.c │ │ │ │ ├── extrv_s_h.c │ │ │ │ ├── extrv_w.c │ │ │ │ ├── insv.c │ │ │ │ ├── lbux.c │ │ │ │ ├── lhx.c │ │ │ │ ├── lwx.c │ │ │ │ ├── madd.c │ │ │ │ ├── maddu.c │ │ │ │ ├── main.c │ │ │ │ ├── maq_s_w_phl.c │ │ │ │ ├── maq_s_w_phr.c │ │ │ │ ├── maq_sa_w_phl.c │ │ │ │ ├── maq_sa_w_phr.c │ │ │ │ ├── mfhi.c │ │ │ │ ├── mflo.c │ │ │ │ ├── modsub.c │ │ │ │ ├── msub.c │ │ │ │ ├── msubu.c │ │ │ │ ├── mthi.c │ │ │ │ ├── mthlip.c │ │ │ │ ├── mtlo.c │ │ │ │ ├── muleq_s_w_phl.c │ │ │ │ ├── muleq_s_w_phr.c │ │ │ │ ├── muleu_s_ph_qbl.c │ │ │ │ ├── muleu_s_ph_qbr.c │ │ │ │ ├── mulq_rs_ph.c │ │ │ │ ├── mult.c │ │ │ │ ├── multu.c │ │ │ │ ├── packrl_ph.c │ │ │ │ ├── pick_ph.c │ │ │ │ ├── pick_qb.c │ │ │ │ ├── preceq_w_phl.c │ │ │ │ ├── preceq_w_phr.c │ │ │ │ ├── precequ_ph_qbl.c │ │ │ │ ├── precequ_ph_qbla.c │ │ │ │ ├── precequ_ph_qbr.c │ │ │ │ ├── precequ_ph_qbra.c │ │ │ │ ├── preceu_ph_qbl.c │ │ │ │ ├── preceu_ph_qbla.c │ │ │ │ ├── preceu_ph_qbr.c │ │ │ │ ├── preceu_ph_qbra.c │ │ │ │ ├── precrq_ph_w.c │ │ │ │ ├── precrq_qb_ph.c │ │ │ │ ├── precrq_rs_ph_w.c │ │ │ │ ├── precrqu_s_qb_ph.c │ │ │ │ ├── raddu_w_qb.c │ │ │ │ ├── rddsp.c │ │ │ │ ├── repl_ph.c │ │ │ │ ├── repl_qb.c │ │ │ │ ├── replv_ph.c │ │ │ │ ├── replv_qb.c │ │ │ │ ├── shilo.c │ │ │ │ ├── shilov.c │ │ │ │ ├── shll_ph.c │ │ │ │ ├── shll_qb.c │ │ │ │ ├── shll_s_ph.c │ │ │ │ ├── shll_s_w.c │ │ │ │ ├── shllv_ph.c │ │ │ │ ├── shllv_qb.c │ │ │ │ ├── shllv_s_ph.c │ │ │ │ ├── shllv_s_w.c │ │ │ │ ├── shra_ph.c │ │ │ │ ├── shra_r_ph.c │ │ │ │ ├── shra_r_w.c │ │ │ │ ├── shrav_ph.c │ │ │ │ ├── shrav_r_ph.c │ │ │ │ ├── shrav_r_w.c │ │ │ │ ├── shrl_qb.c │ │ │ │ ├── shrlv_qb.c │ │ │ │ ├── subq_ph.c │ │ │ │ ├── subq_s_ph.c │ │ │ │ ├── subq_s_w.c │ │ │ │ ├── subu_qb.c │ │ │ │ ├── subu_s_qb.c │ │ │ │ └── wrdsp.c │ │ │ ├── mips32-dspr2 │ │ │ │ ├── Makefile │ │ │ │ ├── absq_s_qb.c │ │ │ │ ├── addqh_ph.c │ │ │ │ ├── addqh_r_ph.c │ │ │ │ ├── addqh_r_w.c │ │ │ │ ├── addqh_w.c │ │ │ │ ├── addu_ph.c │ │ │ │ ├── addu_s_ph.c │ │ │ │ ├── adduh_qb.c │ │ │ │ ├── adduh_r_qb.c │ │ │ │ ├── append.c │ │ │ │ ├── balign.c │ │ │ │ ├── cmpgdu_eq_qb.c │ │ │ │ ├── cmpgdu_le_qb.c │ │ │ │ ├── cmpgdu_lt_qb.c │ │ │ │ ├── dpa_w_ph.c │ │ │ │ ├── dpaqx_s_w_ph.c │ │ │ │ ├── dpaqx_sa_w_ph.c │ │ │ │ ├── dpax_w_ph.c │ │ │ │ ├── dps_w_ph.c │ │ │ │ ├── dpsqx_s_w_ph.c │ │ │ │ ├── dpsqx_sa_w_ph.c │ │ │ │ ├── dpsx_w_ph.c │ │ │ │ ├── mul_ph.c │ │ │ │ ├── mul_s_ph.c │ │ │ │ ├── mulq_rs_w.c │ │ │ │ ├── mulq_s_ph.c │ │ │ │ ├── mulq_s_w.c │ │ │ │ ├── mulsa_w_ph.c │ │ │ │ ├── mulsaq_s_w_ph.c │ │ │ │ ├── precr_qb_ph.c │ │ │ │ ├── precr_sra_ph_w.c │ │ │ │ ├── precr_sra_r_ph_w.c │ │ │ │ ├── prepend.c │ │ │ │ ├── shra_qb.c │ │ │ │ ├── shra_r_qb.c │ │ │ │ ├── shrav_qb.c │ │ │ │ ├── shrav_r_qb.c │ │ │ │ ├── shrl_ph.c │ │ │ │ ├── shrlv_ph.c │ │ │ │ ├── subqh_ph.c │ │ │ │ ├── subqh_r_ph.c │ │ │ │ ├── subqh_r_w.c │ │ │ │ ├── subqh_w.c │ │ │ │ ├── subu_ph.c │ │ │ │ ├── subu_s_ph.c │ │ │ │ ├── subuh_qb.c │ │ │ │ └── subuh_r_qb.c │ │ │ ├── mips64-dsp │ │ │ │ ├── Makefile │ │ │ │ ├── absq_s_ob.c │ │ │ │ ├── absq_s_ph.c │ │ │ │ ├── absq_s_pw.c │ │ │ │ ├── absq_s_qh.c │ │ │ │ ├── absq_s_w.c │ │ │ │ ├── addq_ph.c │ │ │ │ ├── addq_pw.c │ │ │ │ ├── addq_qh.c │ │ │ │ ├── addq_s_ph.c │ │ │ │ ├── addq_s_pw.c │ │ │ │ ├── addq_s_qh.c │ │ │ │ ├── addq_s_w.c │ │ │ │ ├── addsc.c │ │ │ │ ├── addu_ob.c │ │ │ │ ├── addu_qb.c │ │ │ │ ├── addu_s_ob.c │ │ │ │ ├── addu_s_qb.c │ │ │ │ ├── addwc.c │ │ │ │ ├── bitrev.c │ │ │ │ ├── bposge32.c │ │ │ │ ├── bposge64.c │ │ │ │ ├── cmp_eq_ph.c │ │ │ │ ├── cmp_eq_pw.c │ │ │ │ ├── cmp_eq_qh.c │ │ │ │ ├── cmp_le_ph.c │ │ │ │ ├── cmp_le_pw.c │ │ │ │ ├── cmp_le_qh.c │ │ │ │ ├── cmp_lt_ph.c │ │ │ │ ├── cmp_lt_pw.c │ │ │ │ ├── cmp_lt_qh.c │ │ │ │ ├── cmpgu_eq_ob.c │ │ │ │ ├── cmpgu_eq_qb.c │ │ │ │ ├── cmpgu_le_ob.c │ │ │ │ ├── cmpgu_le_qb.c │ │ │ │ ├── cmpgu_lt_ob.c │ │ │ │ ├── cmpgu_lt_qb.c │ │ │ │ ├── cmpu_eq_ob.c │ │ │ │ ├── cmpu_eq_qb.c │ │ │ │ ├── cmpu_le_ob.c │ │ │ │ ├── cmpu_le_qb.c │ │ │ │ ├── cmpu_lt_ob.c │ │ │ │ ├── cmpu_lt_qb.c │ │ │ │ ├── dappend.c │ │ │ │ ├── dextp.c │ │ │ │ ├── dextpdp.c │ │ │ │ ├── dextpdpv.c │ │ │ │ ├── dextpv.c │ │ │ │ ├── dextr_l.c │ │ │ │ ├── dextr_r_l.c │ │ │ │ ├── dextr_r_w.c │ │ │ │ ├── dextr_rs_l.c │ │ │ │ ├── dextr_rs_w.c │ │ │ │ ├── dextr_s_h.c │ │ │ │ ├── dextr_w.c │ │ │ │ ├── dextrv_l.c │ │ │ │ ├── dextrv_r_l.c │ │ │ │ ├── dextrv_r_w.c │ │ │ │ ├── dextrv_rs_l.c │ │ │ │ ├── dextrv_rs_w.c │ │ │ │ ├── dextrv_s_h.c │ │ │ │ ├── dextrv_w.c │ │ │ │ ├── dinsv.c │ │ │ │ ├── dmadd.c │ │ │ │ ├── dmaddu.c │ │ │ │ ├── dmsub.c │ │ │ │ ├── dmsubu.c │ │ │ │ ├── dmthlip.c │ │ │ │ ├── dpaq_s_w_ph.c │ │ │ │ ├── dpaq_s_w_qh.c │ │ │ │ ├── dpaq_sa_l_pw.c │ │ │ │ ├── dpaq_sa_l_w.c │ │ │ │ ├── dpau_h_obl.c │ │ │ │ ├── dpau_h_obr.c │ │ │ │ ├── dpau_h_qbl.c │ │ │ │ ├── dpau_h_qbr.c │ │ │ │ ├── dpsq_s_w_ph.c │ │ │ │ ├── dpsq_s_w_qh.c │ │ │ │ ├── dpsq_sa_l_pw.c │ │ │ │ ├── dpsq_sa_l_w.c │ │ │ │ ├── dpsu_h_obl.c │ │ │ │ ├── dpsu_h_obr.c │ │ │ │ ├── dpsu_h_qbl.c │ │ │ │ ├── dpsu_h_qbr.c │ │ │ │ ├── dshilo.c │ │ │ │ ├── dshilov.c │ │ │ │ ├── extp.c │ │ │ │ ├── extpdp.c │ │ │ │ ├── extpdpv.c │ │ │ │ ├── extpv.c │ │ │ │ ├── extr_r_w.c │ │ │ │ ├── extr_rs_w.c │ │ │ │ ├── extr_s_h.c │ │ │ │ ├── extr_w.c │ │ │ │ ├── extrv_r_w.c │ │ │ │ ├── extrv_rs_w.c │ │ │ │ ├── extrv_s_h.c │ │ │ │ ├── extrv_w.c │ │ │ │ ├── head.S │ │ │ │ ├── insv.c │ │ │ │ ├── io.h │ │ │ │ ├── lbux.c │ │ │ │ ├── ldx.c │ │ │ │ ├── lhx.c │ │ │ │ ├── lwx.c │ │ │ │ ├── madd.c │ │ │ │ ├── maddu.c │ │ │ │ ├── maq_s_l_pwl.c │ │ │ │ ├── maq_s_l_pwr.c │ │ │ │ ├── maq_s_w_phl.c │ │ │ │ ├── maq_s_w_phr.c │ │ │ │ ├── maq_s_w_qhll.c │ │ │ │ ├── maq_s_w_qhlr.c │ │ │ │ ├── maq_s_w_qhrl.c │ │ │ │ ├── maq_s_w_qhrr.c │ │ │ │ ├── maq_sa_w_phl.c │ │ │ │ ├── maq_sa_w_phr.c │ │ │ │ ├── maq_sa_w_qhll.c │ │ │ │ ├── maq_sa_w_qhlr.c │ │ │ │ ├── maq_sa_w_qhrl.c │ │ │ │ ├── maq_sa_w_qhrr.c │ │ │ │ ├── mfhi.c │ │ │ │ ├── mflo.c │ │ │ │ ├── mips_boot.lds │ │ │ │ ├── modsub.c │ │ │ │ ├── msub.c │ │ │ │ ├── msubu.c │ │ │ │ ├── mthi.c │ │ │ │ ├── mthlip.c │ │ │ │ ├── mtlo.c │ │ │ │ ├── muleq_s_pw_qhl.c │ │ │ │ ├── muleq_s_pw_qhr.c │ │ │ │ ├── muleq_s_w_phl.c │ │ │ │ ├── muleq_s_w_phr.c │ │ │ │ ├── muleu_s_ph_qbl.c │ │ │ │ ├── muleu_s_ph_qbr.c │ │ │ │ ├── muleu_s_qh_obl.c │ │ │ │ ├── muleu_s_qh_obr.c │ │ │ │ ├── mulq_rs_ph.c │ │ │ │ ├── mulq_rs_qh.c │ │ │ │ ├── mulsaq_s_l_pw.c │ │ │ │ ├── mulsaq_s_w_qh.c │ │ │ │ ├── mult.c │ │ │ │ ├── multu.c │ │ │ │ ├── packrl_ph.c │ │ │ │ ├── packrl_pw.c │ │ │ │ ├── pick_ob.c │ │ │ │ ├── pick_ph.c │ │ │ │ ├── pick_pw.c │ │ │ │ ├── pick_qb.c │ │ │ │ ├── pick_qh.c │ │ │ │ ├── preceq_l_pwl.c │ │ │ │ ├── preceq_l_pwr.c │ │ │ │ ├── preceq_pw_qhl.c │ │ │ │ ├── preceq_pw_qhla.c │ │ │ │ ├── preceq_pw_qhr.c │ │ │ │ ├── preceq_pw_qhra.c │ │ │ │ ├── preceq_w_phl.c │ │ │ │ ├── preceq_w_phr.c │ │ │ │ ├── precequ_ph_qbl.c │ │ │ │ ├── precequ_ph_qbla.c │ │ │ │ ├── precequ_ph_qbr.c │ │ │ │ ├── precequ_ph_qbra.c │ │ │ │ ├── precequ_qh_obl.c │ │ │ │ ├── precequ_qh_obla.c │ │ │ │ ├── precequ_qh_obr.c │ │ │ │ ├── precequ_qh_obra.c │ │ │ │ ├── preceu_ph_qbl.c │ │ │ │ ├── preceu_ph_qbla.c │ │ │ │ ├── preceu_ph_qbr.c │ │ │ │ ├── preceu_ph_qbra.c │ │ │ │ ├── preceu_qh_obl.c │ │ │ │ ├── preceu_qh_obla.c │ │ │ │ ├── preceu_qh_obr.c │ │ │ │ ├── preceu_qh_obra.c │ │ │ │ ├── precr_ob_qh.c │ │ │ │ ├── precr_sra_qh_pw.c │ │ │ │ ├── precr_sra_r_qh_pw.c │ │ │ │ ├── precrq_ob_qh.c │ │ │ │ ├── precrq_ph_w.c │ │ │ │ ├── precrq_pw_l.c │ │ │ │ ├── precrq_qb_ph.c │ │ │ │ ├── precrq_qh_pw.c │ │ │ │ ├── precrq_rs_ph_w.c │ │ │ │ ├── precrq_rs_qh_pw.c │ │ │ │ ├── precrqu_s_ob_qh.c │ │ │ │ ├── precrqu_s_qb_ph.c │ │ │ │ ├── prependd.c │ │ │ │ ├── prependw.c │ │ │ │ ├── printf.c │ │ │ │ ├── raddu_l_ob.c │ │ │ │ ├── raddu_w_qb.c │ │ │ │ ├── rddsp.c │ │ │ │ ├── repl_ob.c │ │ │ │ ├── repl_ph.c │ │ │ │ ├── repl_pw.c │ │ │ │ ├── repl_qb.c │ │ │ │ ├── repl_qh.c │ │ │ │ ├── replv_ob.c │ │ │ │ ├── replv_ph.c │ │ │ │ ├── replv_pw.c │ │ │ │ ├── replv_qb.c │ │ │ │ ├── shilo.c │ │ │ │ ├── shilov.c │ │ │ │ ├── shll_ob.c │ │ │ │ ├── shll_ph.c │ │ │ │ ├── shll_pw.c │ │ │ │ ├── shll_qb.c │ │ │ │ ├── shll_qh.c │ │ │ │ ├── shll_s_ph.c │ │ │ │ ├── shll_s_pw.c │ │ │ │ ├── shll_s_qh.c │ │ │ │ ├── shll_s_w.c │ │ │ │ ├── shllv_ob.c │ │ │ │ ├── shllv_ph.c │ │ │ │ ├── shllv_pw.c │ │ │ │ ├── shllv_qb.c │ │ │ │ ├── shllv_qh.c │ │ │ │ ├── shllv_s_ph.c │ │ │ │ ├── shllv_s_pw.c │ │ │ │ ├── shllv_s_qh.c │ │ │ │ ├── shllv_s_w.c │ │ │ │ ├── shra_ob.c │ │ │ │ ├── shra_ph.c │ │ │ │ ├── shra_pw.c │ │ │ │ ├── shra_qh.c │ │ │ │ ├── shra_r_ob.c │ │ │ │ ├── shra_r_ph.c │ │ │ │ ├── shra_r_pw.c │ │ │ │ ├── shra_r_qh.c │ │ │ │ ├── shra_r_w.c │ │ │ │ ├── shrav_ph.c │ │ │ │ ├── shrav_pw.c │ │ │ │ ├── shrav_qh.c │ │ │ │ ├── shrav_r_ph.c │ │ │ │ ├── shrav_r_pw.c │ │ │ │ ├── shrav_r_qh.c │ │ │ │ ├── shrav_r_w.c │ │ │ │ ├── shrl_ob.c │ │ │ │ ├── shrl_qb.c │ │ │ │ ├── shrl_qh.c │ │ │ │ ├── shrlv_ob.c │ │ │ │ ├── shrlv_qb.c │ │ │ │ ├── shrlv_qh.c │ │ │ │ ├── subq_ph.c │ │ │ │ ├── subq_pw.c │ │ │ │ ├── subq_qh.c │ │ │ │ ├── subq_s_ph.c │ │ │ │ ├── subq_s_pw.c │ │ │ │ ├── subq_s_qh.c │ │ │ │ ├── subq_s_w.c │ │ │ │ ├── subu_ob.c │ │ │ │ ├── subu_qb.c │ │ │ │ ├── subu_s_ob.c │ │ │ │ ├── subu_s_qb.c │ │ │ │ └── wrdsp.c │ │ │ └── mips64-dspr2 │ │ │ │ ├── .directory │ │ │ │ ├── Makefile │ │ │ │ ├── absq_s_qb.c │ │ │ │ ├── addqh_ph.c │ │ │ │ ├── addqh_r_ph.c │ │ │ │ ├── addqh_r_w.c │ │ │ │ ├── addqh_w.c │ │ │ │ ├── addu_ph.c │ │ │ │ ├── addu_qh.c │ │ │ │ ├── addu_s_ph.c │ │ │ │ ├── addu_s_qh.c │ │ │ │ ├── adduh_ob.c │ │ │ │ ├── adduh_qb.c │ │ │ │ ├── adduh_r_ob.c │ │ │ │ ├── adduh_r_qb.c │ │ │ │ ├── append.c │ │ │ │ ├── balign.c │ │ │ │ ├── cmpgdu_eq_ob.c │ │ │ │ ├── cmpgdu_eq_qb.c │ │ │ │ ├── cmpgdu_le_ob.c │ │ │ │ ├── cmpgdu_le_qb.c │ │ │ │ ├── cmpgdu_lt_ob.c │ │ │ │ ├── cmpgdu_lt_qb.c │ │ │ │ ├── dbalign.c │ │ │ │ ├── dpa_w_ph.c │ │ │ │ ├── dpa_w_qh.c │ │ │ │ ├── dpaqx_s_w_ph.c │ │ │ │ ├── dpaqx_sa_w_ph.c │ │ │ │ ├── dpax_w_ph.c │ │ │ │ ├── dps_w_ph.c │ │ │ │ ├── dps_w_qh.c │ │ │ │ ├── dpsqx_s_w_ph.c │ │ │ │ ├── dpsqx_sa_w_ph.c │ │ │ │ ├── dpsx_w_ph.c │ │ │ │ ├── head.S │ │ │ │ ├── io.h │ │ │ │ ├── mips_boot.lds │ │ │ │ ├── mul_ph.c │ │ │ │ ├── mul_s_ph.c │ │ │ │ ├── mulq_rs_w.c │ │ │ │ ├── mulq_s_ph.c │ │ │ │ ├── mulq_s_w.c │ │ │ │ ├── mulsa_w_ph.c │ │ │ │ ├── mulsaq_s_w_ph.c │ │ │ │ ├── precr_qb_ph.c │ │ │ │ ├── precr_sra_ph_w.c │ │ │ │ ├── precr_sra_r_ph_w.c │ │ │ │ ├── prepend.c │ │ │ │ ├── printf.c │ │ │ │ ├── shra_qb.c │ │ │ │ ├── shra_r_qb.c │ │ │ │ ├── shrav_ob.c │ │ │ │ ├── shrav_qb.c │ │ │ │ ├── shrav_r_ob.c │ │ │ │ ├── shrav_r_qb.c │ │ │ │ ├── shrl_ph.c │ │ │ │ ├── shrlv_ph.c │ │ │ │ ├── subqh_ph.c │ │ │ │ ├── subqh_r_ph.c │ │ │ │ ├── subqh_r_w.c │ │ │ │ ├── subqh_w.c │ │ │ │ ├── subu_ph.c │ │ │ │ ├── subu_qh.c │ │ │ │ ├── subu_s_ph.c │ │ │ │ ├── subu_s_qh.c │ │ │ │ ├── subuh_ob.c │ │ │ │ ├── subuh_qb.c │ │ │ │ ├── subuh_r_ob.c │ │ │ │ └── subuh_r_qb.c │ │ ├── openrisc │ │ │ ├── Makefile │ │ │ ├── test_add.c │ │ │ ├── test_addc.c │ │ │ ├── test_addi.c │ │ │ ├── test_addic.c │ │ │ ├── test_and_or.c │ │ │ ├── test_bf.c │ │ │ ├── test_bnf.c │ │ │ ├── test_div.c │ │ │ ├── test_divu.c │ │ │ ├── test_extx.c │ │ │ ├── test_fx.c │ │ │ ├── test_j.c │ │ │ ├── test_jal.c │ │ │ ├── test_lf_add.c │ │ │ ├── test_lf_div.c │ │ │ ├── test_lf_eqs.c │ │ │ ├── test_lf_ges.c │ │ │ ├── test_lf_gts.c │ │ │ ├── test_lf_les.c │ │ │ ├── test_lf_lts.c │ │ │ ├── test_lf_mul.c │ │ │ ├── test_lf_nes.c │ │ │ ├── test_lf_rem.c │ │ │ ├── test_lf_sub.c │ │ │ ├── test_logic.c │ │ │ ├── test_lx.c │ │ │ ├── test_movhi.c │ │ │ ├── test_mul.c │ │ │ ├── test_muli.c │ │ │ ├── test_mulu.c │ │ │ ├── test_sfeq.c │ │ │ ├── test_sfeqi.c │ │ │ ├── test_sfges.c │ │ │ ├── test_sfgesi.c │ │ │ ├── test_sfgeu.c │ │ │ ├── test_sfgeui.c │ │ │ ├── test_sfgts.c │ │ │ ├── test_sfgtsi.c │ │ │ ├── test_sfgtu.c │ │ │ ├── test_sfgtui.c │ │ │ ├── test_sfles.c │ │ │ ├── test_sflesi.c │ │ │ ├── test_sfleu.c │ │ │ ├── test_sfleui.c │ │ │ ├── test_sflts.c │ │ │ ├── test_sfltsi.c │ │ │ ├── test_sfltu.c │ │ │ ├── test_sfltui.c │ │ │ ├── test_sfne.c │ │ │ ├── test_sfnei.c │ │ │ └── test_sub.c │ │ ├── pi_10.com │ │ ├── runcom.c │ │ ├── sha1.c │ │ ├── test-arm-iwmmxt.s │ │ ├── test-i386-code16.S │ │ ├── test-i386-fprem.c │ │ ├── test-i386-muldiv.h │ │ ├── test-i386-shift.h │ │ ├── test-i386-ssse3.c │ │ ├── test-i386-vm86.S │ │ ├── test-i386.c │ │ ├── test-i386.h │ │ ├── test-mmap.c │ │ ├── test_path.c │ │ ├── testthread.c │ │ └── xtensa │ │ │ ├── Makefile │ │ │ ├── crt.S │ │ │ ├── linker.ld │ │ │ ├── macros.inc │ │ │ ├── test_b.S │ │ │ ├── test_bi.S │ │ │ ├── test_boolean.S │ │ │ ├── test_break.S │ │ │ ├── test_bz.S │ │ │ ├── test_cache.S │ │ │ ├── test_clamps.S │ │ │ ├── test_extui.S │ │ │ ├── test_fail.S │ │ │ ├── test_interrupt.S │ │ │ ├── test_loop.S │ │ │ ├── test_mac16.S │ │ │ ├── test_max.S │ │ │ ├── test_min.S │ │ │ ├── test_mmu.S │ │ │ ├── test_mul16.S │ │ │ ├── test_mul32.S │ │ │ ├── test_nsa.S │ │ │ ├── test_pipeline.S │ │ │ ├── test_quo.S │ │ │ ├── test_rem.S │ │ │ ├── test_rst0.S │ │ │ ├── test_s32c1i.S │ │ │ ├── test_sar.S │ │ │ ├── test_sext.S │ │ │ ├── test_shift.S │ │ │ ├── test_sr.S │ │ │ ├── test_timer.S │ │ │ ├── test_windowed.S │ │ │ └── vectors.S │ ├── test-aio.c │ ├── test-bitops.c │ ├── test-coroutine.c │ ├── test-cutils.c │ ├── test-hbitmap.c │ ├── test-int128.c │ ├── test-iov.c │ ├── test-mul64.c │ ├── test-opts-visitor.c │ ├── test-qdev-global-props.c │ ├── test-qemu-opts.c │ ├── test-qmp-commands.c │ ├── test-qmp-event.c │ ├── test-qmp-input-strict.c │ ├── test-qmp-input-visitor.c │ ├── test-qmp-output-visitor.c │ ├── test-rfifolock.c │ ├── test-string-input-visitor.c │ ├── test-string-output-visitor.c │ ├── test-thread-pool.c │ ├── test-throttle.c │ ├── test-visitor-serialization.c │ ├── test-vmstate.c │ ├── test-x86-cpuid.c │ ├── test-xbzrle.c │ ├── tmp105-test.c │ ├── tpci200-test.c │ ├── usb-hcd-ehci-test.c │ ├── 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 │ ├── vmstate-static-checker-data │ │ ├── dump1.json │ │ └── dump2.json │ ├── vmxnet3-test.c │ └── wdt_ib700-test.c ├── thread-pool.c ├── thunk.c ├── tpm.c ├── trace-events ├── trace │ ├── Makefile.objs │ ├── control-internal.h │ ├── control.c │ ├── control.h │ ├── event-internal.h │ ├── ftrace.c │ ├── ftrace.h │ ├── simple.c │ └── simple.h ├── translate-all.c ├── translate-all.h ├── ui │ ├── Makefile.objs │ ├── cocoa.m │ ├── console.c │ ├── curses.c │ ├── curses_keys.h │ ├── cursor.c │ ├── cursor_hidden.xpm │ ├── cursor_left_ptr.xpm │ ├── d3des.c │ ├── d3des.h │ ├── gtk.c │ ├── input-keymap.c │ ├── input-legacy.c │ ├── input.c │ ├── keymaps.c │ ├── keymaps.h │ ├── qemu-pixman.c │ ├── qemu-x509.h │ ├── sdl.c │ ├── sdl2-keymap.h │ ├── sdl2.c │ ├── sdl_keysym.h │ ├── sdl_zoom.c │ ├── sdl_zoom.h │ ├── sdl_zoom_template.h │ ├── spice-core.c │ ├── spice-display.c │ ├── spice-input.c │ ├── vgafont.h │ ├── vnc-auth-sasl.c │ ├── vnc-auth-sasl.h │ ├── vnc-auth-vencrypt.c │ ├── vnc-auth-vencrypt.h │ ├── vnc-enc-hextile-template.h │ ├── vnc-enc-hextile.c │ ├── vnc-enc-tight.c │ ├── vnc-enc-tight.h │ ├── vnc-enc-zlib.c │ ├── vnc-enc-zrle-template.c │ ├── vnc-enc-zrle.c │ ├── vnc-enc-zrle.h │ ├── vnc-enc-zywrle-template.c │ ├── vnc-enc-zywrle.h │ ├── vnc-jobs.c │ ├── vnc-jobs.h │ ├── vnc-palette.c │ ├── vnc-palette.h │ ├── vnc-tls.c │ ├── vnc-tls.h │ ├── vnc-ws.c │ ├── vnc-ws.h │ ├── vnc.c │ ├── vnc.h │ ├── vnc_keysym.h │ ├── x_keymap.c │ └── x_keymap.h ├── user-exec.c ├── util │ ├── Makefile.objs │ ├── acl.c │ ├── aes.c │ ├── bitmap.c │ ├── bitops.c │ ├── compatfd.c │ ├── crc32c.c │ ├── cutils.c │ ├── envlist.c │ ├── error.c │ ├── event_notifier-posix.c │ ├── event_notifier-win32.c │ ├── fifo8.c │ ├── getauxval.c │ ├── hbitmap.c │ ├── hexdump.c │ ├── host-utils.c │ ├── iov.c │ ├── module.c │ ├── notify.c │ ├── osdep.c │ ├── oslib-posix.c │ ├── oslib-win32.c │ ├── path.c │ ├── qemu-config.c │ ├── qemu-error.c │ ├── qemu-openpty.c │ ├── qemu-option.c │ ├── qemu-progress.c │ ├── qemu-sockets.c │ ├── qemu-thread-posix.c │ ├── qemu-thread-win32.c │ ├── qemu-timer-common.c │ ├── readline.c │ ├── rfifolock.c │ ├── throttle.c │ ├── unicode.c │ └── uri.c ├── version.rc ├── vl.c ├── vmstate.c ├── xbzrle.c ├── xen-common-stub.c ├── xen-common.c ├── xen-hvm-stub.c ├── xen-hvm.c └── xen-mapcache.c ├── sgx ├── sgx-dbg └── user ├── .gitignore ├── Makefile ├── README ├── README.tool ├── conf ├── device.key └── test.key ├── demo ├── autotools │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── compile │ ├── configure.ac │ ├── depcomp │ ├── hello.c │ ├── install-sh │ ├── malloc_test │ │ ├── Makefile.in │ │ └── malloc_test.c │ ├── missing │ └── run │ │ ├── Makefile.in │ │ └── hello.c ├── hello.c ├── hello2.c ├── simple-intra-attest-target.c └── simple-remote-attest-quote.c ├── include ├── nonEncLib.h ├── polarssl │ ├── aes.h │ ├── aes_cmac128.h │ ├── aesni.h │ ├── asn1.h │ ├── bignum.h │ ├── bn_mul.h │ ├── check_config.h │ ├── cipher.h │ ├── config.h │ ├── ctr_drbg.h │ ├── dhm.h │ ├── ecdsa.h │ ├── ecp.h │ ├── entropy.h │ ├── entropy_poll.h │ ├── md.h │ ├── md5.h │ ├── md_wrap.h │ ├── net.h │ ├── oid.h │ ├── padlock.h │ ├── pk.h │ ├── platform.h │ ├── ripemd160.h │ ├── rsa.h │ ├── sha1.h │ ├── sha256.h │ ├── sha512.h │ ├── timing.h │ └── x509.h ├── sgx-crypto.h ├── sgx-kern-epc.h ├── sgx-kern.h ├── sgx-loader.h ├── sgx-malloc.h ├── sgx-signature.h ├── sgx-trampoline.h ├── sgx-user.h ├── sgx-utils.h └── sgx.h ├── nonEncLib.c ├── non_enclave ├── README ├── attest_nonEnc.c ├── network_nonEnc.c ├── rdrand.c ├── simple-client.c └── simple-pipe.c ├── polarssl ├── Makefile ├── aes.c ├── aes_cmac128.c ├── aesni.c ├── asn1parse.c ├── bignum.c ├── ctr_drbg.c ├── entropy.c ├── entropy_poll.c ├── md.c ├── md5.c ├── md_wrap.c ├── net.c ├── oid.c ├── ripemd160.c ├── rsa.c ├── sha1.c ├── sha256.c ├── sha512.c └── timing.c ├── sgx-crypto.c ├── sgx-host.c ├── sgx-kern-epc.c ├── sgx-kern.c ├── sgx-loader.c ├── sgx-runtime-multi.c ├── sgx-runtime.c ├── sgx-signature.c ├── sgx-tool.c ├── sgx-trampoline.c ├── sgx-user.c ├── sgx-utils.c ├── sgx.lds ├── sgx2.lds ├── share └── include │ ├── sgx-dbg.h │ └── sgx-shared.h ├── sslLib.a ├── test.sh └── test ├── deprecated ├── simple-aes.c ├── simple-attest.c ├── simple-challenger.c ├── simple-openssl.c ├── simple-quote.c ├── simple-quotingEnclave.c ├── simple-send.c └── simple-targetEnclave.c ├── exception-div-zero.c ├── fault-enclave-access.c ├── openssl └── simple-openssl.c ├── simple-arg.c ├── simple-client.c ├── simple-demo.c ├── simple-epcm-rwx.c ├── simple-func.c ├── simple-get-sigstruct.c ├── simple-getkey.c ├── simple-global.c ├── simple-hello.c ├── simple-indirect.c ├── simple-intra-attest-challenger.c ├── simple-pipe.c ├── simple-printf.c ├── simple-remote-attest-challenger.c ├── simple-remote-attest-target.c ├── simple-server.c ├── simple-sgxlib.c ├── simple-stack.c ├── simple-vul.c ├── simple.c ├── stub-malloc.c ├── stub-realloc.c ├── stub.c ├── test.h └── tor ├── protocol.h └── sgx-tor.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/.gitignore -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/Makefile -------------------------------------------------------------------------------- /Opensgx_tutorial_v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/Opensgx_tutorial_v1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/README.md -------------------------------------------------------------------------------- /Tor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/Tor/Makefile -------------------------------------------------------------------------------- /Tor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/Tor/README -------------------------------------------------------------------------------- /Tor/chutney/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/Tor/chutney/LICENSE -------------------------------------------------------------------------------- /Tor/chutney/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/Tor/chutney/README -------------------------------------------------------------------------------- /Tor/chutney/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/Tor/chutney/TODO -------------------------------------------------------------------------------- /Tor/chutney/chutney: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/Tor/chutney/chutney -------------------------------------------------------------------------------- /Tor/chutney/lib/chutney/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tor/modesgx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/Tor/modesgx.h -------------------------------------------------------------------------------- /Tor/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/Tor/protocol.h -------------------------------------------------------------------------------- /Tor/tor-0.2.5.10/git: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tor/tor-0.2.5.10/src/common/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tor/tor-0.2.5.10/src/common/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tor/tor-0.2.5.10/src/ext/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tor/tor-0.2.5.10/src/ext/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tor/tor-0.2.5.10/src/ext/curve25519_donna/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tor/tor-0.2.5.10/src/ext/curve25519_donna/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tor/tor-0.2.5.10/src/or/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tor/tor-0.2.5.10/src/or/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tor/tor-0.2.5.10/src/test/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tor/tor-0.2.5.10/src/test/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tor/tor-0.2.5.10/src/tools/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tor/tor-0.2.5.10/src/tools/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tor/tor-0.2.5.10/src/win32/include.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST+= src/win32/orconfig.h 3 | 4 | -------------------------------------------------------------------------------- /Tor/tor-0.2.5.10/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for orconfig.h 2 | -------------------------------------------------------------------------------- /Tor/tor-0.2.5.10/status: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gdb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/gdb/README -------------------------------------------------------------------------------- /gdb/info_epc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/gdb/info_epc.py -------------------------------------------------------------------------------- /gdb/info_epcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/gdb/info_epcm.py -------------------------------------------------------------------------------- /gdb/info_secs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/gdb/info_secs.py -------------------------------------------------------------------------------- /libsgx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/Makefile -------------------------------------------------------------------------------- /libsgx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/README.md -------------------------------------------------------------------------------- /libsgx/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/libcrypto.a -------------------------------------------------------------------------------- /libsgx/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/libssl.a -------------------------------------------------------------------------------- /libsgx/mbedtls/include/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | *.sln 3 | *.vcxproj 4 | polarssl/check_config 5 | -------------------------------------------------------------------------------- /libsgx/mbedtls/tests/data_files/hash_file_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/mbedtls/tests/data_files/passwd.psk: -------------------------------------------------------------------------------- 1 | Client_identity:6162636465666768696a6b6c6d6e6f70 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.5 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/arm/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/arm/bits/poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/arm/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/i386/bits/endian.h: -------------------------------------------------------------------------------- 1 | #define __BYTE_ORDER __LITTLE_ENDIAN 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/i386/bits/poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/i386/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/i386/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[6]; 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/microblaze/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/microblaze/bits/poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/microblaze/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/microblaze/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[18]; 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/microblaze/bits/user.h: -------------------------------------------------------------------------------- 1 | /* FIXME: missing in kernel? */ 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/mips/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/powerpc/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/powerpc/bits/poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/powerpc/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/sh/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/sh/bits/poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/sh/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/sh/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[13]; 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/x32/bits/endian.h: -------------------------------------------------------------------------------- 1 | #define __BYTE_ORDER __LITTLE_ENDIAN 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/x32/bits/poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/x32/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/x86_64/bits/endian.h: -------------------------------------------------------------------------------- 1 | #define __BYTE_ORDER __LITTLE_ENDIAN 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/x86_64/bits/poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/x86_64/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/arch/x86_64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[8]; 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/crt/Scrt1.c: -------------------------------------------------------------------------------- 1 | #include "crt1.c" 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/crt/crti.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/crt/crtn.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/include/arpa/nameser_compat.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /libsgx/musl-libc/include/lastlog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/include/malloc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/include/memory.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/include/sys/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/include/sys/stropts.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/include/sys/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/include/sys/ucontext.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/include/sys/vfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/include/sys/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/include/syscall.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/lib/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/fenv/armebhf/fenv.sub: -------------------------------------------------------------------------------- 1 | ../armhf/fenv.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/fenv/armhf/fenv.sub: -------------------------------------------------------------------------------- 1 | fenv.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/fenv/mips-sf/fenv.sub: -------------------------------------------------------------------------------- 1 | ../fenv.c 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/fenv/mipsel-sf/fenv.sub: -------------------------------------------------------------------------------- 1 | ../fenv.c 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/fenv/sh-nofpu/fenv.sub: -------------------------------------------------------------------------------- 1 | ../fenv.c 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/fenv/sheb-nofpu/fenv.sub: -------------------------------------------------------------------------------- 1 | ../fenv.c 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/internal/syscall.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/armebhf/fabs.sub: -------------------------------------------------------------------------------- 1 | ../armhf/fabs.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/armebhf/fabsf.sub: -------------------------------------------------------------------------------- 1 | ../armhf/fabsf.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/armebhf/sqrt.sub: -------------------------------------------------------------------------------- 1 | ../armhf/sqrt.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/armebhf/sqrtf.sub: -------------------------------------------------------------------------------- 1 | ../armhf/sqrtf.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/armhf/fabs.sub: -------------------------------------------------------------------------------- 1 | fabs.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/armhf/fabsf.sub: -------------------------------------------------------------------------------- 1 | fabsf.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/armhf/sqrt.sub: -------------------------------------------------------------------------------- 1 | sqrt.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/armhf/sqrtf.sub: -------------------------------------------------------------------------------- 1 | sqrtf.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/acosf.s: -------------------------------------------------------------------------------- 1 | # see acos.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/acosl.s: -------------------------------------------------------------------------------- 1 | # see acos.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/asinf.s: -------------------------------------------------------------------------------- 1 | # see asin.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/asinl.s: -------------------------------------------------------------------------------- 1 | # see asin.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/ceil.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/ceilf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/ceill.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/exp2.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/exp2f.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/exp2l.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/expf.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/expm1.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/expm1f.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/floorf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/floorl.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/ldexp.s: -------------------------------------------------------------------------------- 1 | # see scalbn.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/ldexpf.s: -------------------------------------------------------------------------------- 1 | # see scalbnf.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/ldexpl.s: -------------------------------------------------------------------------------- 1 | # see scalbnl.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/remquof.s: -------------------------------------------------------------------------------- 1 | # see remquo.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/remquol.s: -------------------------------------------------------------------------------- 1 | # see remquo.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/scalbln.s: -------------------------------------------------------------------------------- 1 | # see scalbn.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/scalblnf.s: -------------------------------------------------------------------------------- 1 | # see scalbnf.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/scalblnl.s: -------------------------------------------------------------------------------- 1 | # see scalbnl.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/trunc.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/truncf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/i386/truncl.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/x32/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/x32/ceill.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/x32/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp2l.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/x32/truncl.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/x86_64/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/x86_64/ceill.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/x86_64/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp2l.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/math/x86_64/truncl.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/misc/gethostid.c: -------------------------------------------------------------------------------- 1 | long gethostid() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/network/res_init.c: -------------------------------------------------------------------------------- 1 | int res_init() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/setjmp/longjmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/setjmp/mips-sf/longjmp.sub: -------------------------------------------------------------------------------- 1 | longjmp.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/setjmp/mips-sf/setjmp.sub: -------------------------------------------------------------------------------- 1 | setjmp.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/setjmp/mipsel-sf/longjmp.sub: -------------------------------------------------------------------------------- 1 | ../mips-sf/longjmp.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/setjmp/mipsel-sf/setjmp.sub: -------------------------------------------------------------------------------- 1 | ../mips-sf/setjmp.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/setjmp/setjmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/setjmp/sh-nofpu/longjmp.sub: -------------------------------------------------------------------------------- 1 | longjmp.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/setjmp/sh-nofpu/setjmp.sub: -------------------------------------------------------------------------------- 1 | setjmp.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/setjmp/sheb-nofpu/longjmp.sub: -------------------------------------------------------------------------------- 1 | ../sh-nofpu/longjmp.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/setjmp/sheb-nofpu/setjmp.sub: -------------------------------------------------------------------------------- 1 | ../sh-nofpu/setjmp.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/string/armel/memcpy.sub: -------------------------------------------------------------------------------- 1 | memcpy.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/string/armhf/memcpy.sub: -------------------------------------------------------------------------------- 1 | ../armel/memcpy.s 2 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/thread/__unmapself.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/thread/syscall_cp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/musl-libc/src/thread/tls.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsgx/openssl/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/openssl/FAQ -------------------------------------------------------------------------------- /libsgx/openssl/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/openssl/NEWS -------------------------------------------------------------------------------- /libsgx/openssl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/openssl/README -------------------------------------------------------------------------------- /libsgx/openssl/VMS/socketshr_shr.opt: -------------------------------------------------------------------------------- 1 | socketshr/share 2 | -------------------------------------------------------------------------------- /libsgx/openssl/VMS/ucx_shr_decc_log.opt: -------------------------------------------------------------------------------- 1 | ucx$ipc_shr/share 2 | -------------------------------------------------------------------------------- /libsgx/openssl/apps/ca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /libsgx/openssl/apps/demoCA/serial: -------------------------------------------------------------------------------- 1 | 011E 2 | -------------------------------------------------------------------------------- /libsgx/openssl/apps/demoSRP/srp_verifier.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /libsgx/openssl/apps/md4.c: -------------------------------------------------------------------------------- 1 | ../crypto/md4/md4.c -------------------------------------------------------------------------------- /libsgx/openssl/apps/pca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /libsgx/openssl/apps/server.srl: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /libsgx/openssl/certs/demo/3f77a2b5.0: -------------------------------------------------------------------------------- 1 | ca-cert.pem -------------------------------------------------------------------------------- /libsgx/openssl/certs/demo/cbdbd8bc.0: -------------------------------------------------------------------------------- 1 | dsa-ca.pem -------------------------------------------------------------------------------- /libsgx/openssl/certs/demo/de4fa23b.0: -------------------------------------------------------------------------------- 1 | dsa-pca.pem -------------------------------------------------------------------------------- /libsgx/openssl/certs/demo/e83ef475.0: -------------------------------------------------------------------------------- 1 | pca-cert.pem -------------------------------------------------------------------------------- /libsgx/openssl/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/openssl/config -------------------------------------------------------------------------------- /libsgx/openssl/crypto/bn/asm/x86/f: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/perl 2 | # x86 assember 3 | 4 | -------------------------------------------------------------------------------- /libsgx/openssl/crypto/sha/asm/README: -------------------------------------------------------------------------------- 1 | C2.pl works 2 | -------------------------------------------------------------------------------- /libsgx/openssl/demos/pkcs12/README: -------------------------------------------------------------------------------- 1 | PKCS#12 demo applications 2 | 3 | Written by Steve Henson. 4 | -------------------------------------------------------------------------------- /libsgx/openssl/e_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/openssl/e_os.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/aes.h: -------------------------------------------------------------------------------- 1 | ../../crypto/aes/aes.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/asn1.h: -------------------------------------------------------------------------------- 1 | ../../crypto/asn1/asn1.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- 1 | ../../crypto/asn1/asn1_mac.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/asn1t.h: -------------------------------------------------------------------------------- 1 | ../../crypto/asn1/asn1t.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/bio.h: -------------------------------------------------------------------------------- 1 | ../../crypto/bio/bio.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/blowfish.h: -------------------------------------------------------------------------------- 1 | ../../crypto/bf/blowfish.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/bn.h: -------------------------------------------------------------------------------- 1 | ../../crypto/bn/bn.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/buffer.h: -------------------------------------------------------------------------------- 1 | ../../crypto/buffer/buffer.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/camellia.h: -------------------------------------------------------------------------------- 1 | ../../crypto/camellia/camellia.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/cast.h: -------------------------------------------------------------------------------- 1 | ../../crypto/cast/cast.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/cmac.h: -------------------------------------------------------------------------------- 1 | ../../crypto/cmac/cmac.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/cms.h: -------------------------------------------------------------------------------- 1 | ../../crypto/cms/cms.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/comp.h: -------------------------------------------------------------------------------- 1 | ../../crypto/comp/comp.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/conf.h: -------------------------------------------------------------------------------- 1 | ../../crypto/conf/conf.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/conf_api.h: -------------------------------------------------------------------------------- 1 | ../../crypto/conf/conf_api.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/crypto.h: -------------------------------------------------------------------------------- 1 | ../../crypto/crypto.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/des.h: -------------------------------------------------------------------------------- 1 | ../../crypto/des/des.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/des_old.h: -------------------------------------------------------------------------------- 1 | ../../crypto/des/des_old.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/dh.h: -------------------------------------------------------------------------------- 1 | ../../crypto/dh/dh.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/dsa.h: -------------------------------------------------------------------------------- 1 | ../../crypto/dsa/dsa.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/dso.h: -------------------------------------------------------------------------------- 1 | ../../crypto/dso/dso.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/dtls1.h: -------------------------------------------------------------------------------- 1 | ../../ssl/dtls1.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/e_os2.h: -------------------------------------------------------------------------------- 1 | ../../e_os2.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ebcdic.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/ec.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ec/ec.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/ecdh.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ecdh/ecdh.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ecdsa/ecdsa.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/engine.h: -------------------------------------------------------------------------------- 1 | ../../crypto/engine/engine.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/err.h: -------------------------------------------------------------------------------- 1 | ../../crypto/err/err.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/evp.h: -------------------------------------------------------------------------------- 1 | ../../crypto/evp/evp.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/hmac.h: -------------------------------------------------------------------------------- 1 | ../../crypto/hmac/hmac.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/idea.h: -------------------------------------------------------------------------------- 1 | ../../crypto/idea/idea.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/krb5_asn.h: -------------------------------------------------------------------------------- 1 | ../../crypto/krb5/krb5_asn.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/kssl.h: -------------------------------------------------------------------------------- 1 | ../../ssl/kssl.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/lhash.h: -------------------------------------------------------------------------------- 1 | ../../crypto/lhash/lhash.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/md4.h: -------------------------------------------------------------------------------- 1 | ../../crypto/md4/md4.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/md5.h: -------------------------------------------------------------------------------- 1 | ../../crypto/md5/md5.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/mdc2.h: -------------------------------------------------------------------------------- 1 | ../../crypto/mdc2/mdc2.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/modes.h: -------------------------------------------------------------------------------- 1 | ../../crypto/modes/modes.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- 1 | ../../crypto/objects/obj_mac.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/objects.h: -------------------------------------------------------------------------------- 1 | ../../crypto/objects/objects.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/ocsp.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ocsp/ocsp.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- 1 | ../../crypto/opensslconf.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/opensslv.h: -------------------------------------------------------------------------------- 1 | ../../crypto/opensslv.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ossl_typ.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/pem.h: -------------------------------------------------------------------------------- 1 | ../../crypto/pem/pem.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/pem2.h: -------------------------------------------------------------------------------- 1 | ../../crypto/pem/pem2.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- 1 | ../../crypto/pkcs12/pkcs12.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- 1 | ../../crypto/pkcs7/pkcs7.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/pqueue.h: -------------------------------------------------------------------------------- 1 | ../../crypto/pqueue/pqueue.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/rand.h: -------------------------------------------------------------------------------- 1 | ../../crypto/rand/rand.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/rc2.h: -------------------------------------------------------------------------------- 1 | ../../crypto/rc2/rc2.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/rc4.h: -------------------------------------------------------------------------------- 1 | ../../crypto/rc4/rc4.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/ripemd.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ripemd/ripemd.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/rsa.h: -------------------------------------------------------------------------------- 1 | ../../crypto/rsa/rsa.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/safestack.h: -------------------------------------------------------------------------------- 1 | ../../crypto/stack/safestack.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/seed.h: -------------------------------------------------------------------------------- 1 | ../../crypto/seed/seed.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/sha.h: -------------------------------------------------------------------------------- 1 | ../../crypto/sha/sha.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/srp.h: -------------------------------------------------------------------------------- 1 | ../../crypto/srp/srp.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/srtp.h: -------------------------------------------------------------------------------- 1 | ../../ssl/srtp.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/ssl.h: -------------------------------------------------------------------------------- 1 | ../../ssl/ssl.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/ssl2.h: -------------------------------------------------------------------------------- 1 | ../../ssl/ssl2.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/ssl23.h: -------------------------------------------------------------------------------- 1 | ../../ssl/ssl23.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/ssl3.h: -------------------------------------------------------------------------------- 1 | ../../ssl/ssl3.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/stack.h: -------------------------------------------------------------------------------- 1 | ../../crypto/stack/stack.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/symhacks.h: -------------------------------------------------------------------------------- 1 | ../../crypto/symhacks.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/tls1.h: -------------------------------------------------------------------------------- 1 | ../../ssl/tls1.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/ts.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ts/ts.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/txt_db.h: -------------------------------------------------------------------------------- 1 | ../../crypto/txt_db/txt_db.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/ui.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ui/ui.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/ui_compat.h: -------------------------------------------------------------------------------- 1 | ../../crypto/ui/ui_compat.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- 1 | ../../crypto/whrlpool/whrlpool.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/x509.h: -------------------------------------------------------------------------------- 1 | ../../crypto/x509/x509.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- 1 | ../../crypto/x509/x509_vfy.h -------------------------------------------------------------------------------- /libsgx/openssl/include/openssl/x509v3.h: -------------------------------------------------------------------------------- 1 | ../../crypto/x509v3/x509v3.h -------------------------------------------------------------------------------- /libsgx/openssl/ms/certCA.srl: -------------------------------------------------------------------------------- 1 | 1D 2 | -------------------------------------------------------------------------------- /libsgx/openssl/test/VMSca-response.1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libsgx/openssl/test/VMSca-response.2: -------------------------------------------------------------------------------- 1 | y 2 | y 3 | -------------------------------------------------------------------------------- /libsgx/openssl/test/bftest.c: -------------------------------------------------------------------------------- 1 | ../crypto/bf/bftest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/bntest.c: -------------------------------------------------------------------------------- 1 | ../crypto/bn/bntest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/casttest.c: -------------------------------------------------------------------------------- 1 | ../crypto/cast/casttest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/constant_time_test.c: -------------------------------------------------------------------------------- 1 | ../crypto/constant_time_test.c -------------------------------------------------------------------------------- /libsgx/openssl/test/destest.c: -------------------------------------------------------------------------------- 1 | ../crypto/des/destest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/dhtest.c: -------------------------------------------------------------------------------- 1 | ../crypto/dh/dhtest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/dsatest.c: -------------------------------------------------------------------------------- 1 | ../crypto/dsa/dsatest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/ecdhtest.c: -------------------------------------------------------------------------------- 1 | ../crypto/ecdh/ecdhtest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/ecdsatest.c: -------------------------------------------------------------------------------- 1 | ../crypto/ecdsa/ecdsatest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/ectest.c: -------------------------------------------------------------------------------- 1 | ../crypto/ec/ectest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/enginetest.c: -------------------------------------------------------------------------------- 1 | ../crypto/engine/enginetest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/evp_extra_test.c: -------------------------------------------------------------------------------- 1 | ../crypto/evp/evp_extra_test.c -------------------------------------------------------------------------------- /libsgx/openssl/test/evp_test.c: -------------------------------------------------------------------------------- 1 | ../crypto/evp/evp_test.c -------------------------------------------------------------------------------- /libsgx/openssl/test/exptest.c: -------------------------------------------------------------------------------- 1 | ../crypto/bn/exptest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/heartbeat_test.c: -------------------------------------------------------------------------------- 1 | ../ssl/heartbeat_test.c -------------------------------------------------------------------------------- /libsgx/openssl/test/hmactest.c: -------------------------------------------------------------------------------- 1 | ../crypto/hmac/hmactest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/ideatest.c: -------------------------------------------------------------------------------- 1 | ../crypto/idea/ideatest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/jpaketest.c: -------------------------------------------------------------------------------- 1 | dummytest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/md2test.c: -------------------------------------------------------------------------------- 1 | dummytest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/md4test.c: -------------------------------------------------------------------------------- 1 | ../crypto/md4/md4test.c -------------------------------------------------------------------------------- /libsgx/openssl/test/md5test.c: -------------------------------------------------------------------------------- 1 | ../crypto/md5/md5test.c -------------------------------------------------------------------------------- /libsgx/openssl/test/mdc2test.c: -------------------------------------------------------------------------------- 1 | ../crypto/mdc2/mdc2test.c -------------------------------------------------------------------------------- /libsgx/openssl/test/randtest.c: -------------------------------------------------------------------------------- 1 | ../crypto/rand/randtest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/rc2test.c: -------------------------------------------------------------------------------- 1 | ../crypto/rc2/rc2test.c -------------------------------------------------------------------------------- /libsgx/openssl/test/rc4test.c: -------------------------------------------------------------------------------- 1 | ../crypto/rc4/rc4test.c -------------------------------------------------------------------------------- /libsgx/openssl/test/rc5test.c: -------------------------------------------------------------------------------- 1 | dummytest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/rmdtest.c: -------------------------------------------------------------------------------- 1 | ../crypto/ripemd/rmdtest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/rsa_test.c: -------------------------------------------------------------------------------- 1 | ../crypto/rsa/rsa_test.c -------------------------------------------------------------------------------- /libsgx/openssl/test/sha1test.c: -------------------------------------------------------------------------------- 1 | ../crypto/sha/sha1test.c -------------------------------------------------------------------------------- /libsgx/openssl/test/sha256t.c: -------------------------------------------------------------------------------- 1 | ../crypto/sha/sha256t.c -------------------------------------------------------------------------------- /libsgx/openssl/test/sha512t.c: -------------------------------------------------------------------------------- 1 | ../crypto/sha/sha512t.c -------------------------------------------------------------------------------- /libsgx/openssl/test/shatest.c: -------------------------------------------------------------------------------- 1 | ../crypto/sha/shatest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/smcont.txt: -------------------------------------------------------------------------------- 1 | Some test content for OpenSSL CMS -------------------------------------------------------------------------------- /libsgx/openssl/test/srptest.c: -------------------------------------------------------------------------------- 1 | ../crypto/srp/srptest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/ssltest.c: -------------------------------------------------------------------------------- 1 | ../ssl/ssltest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/v3nametest.c: -------------------------------------------------------------------------------- 1 | ../crypto/x509v3/v3nametest.c -------------------------------------------------------------------------------- /libsgx/openssl/test/verify_extra_test.c: -------------------------------------------------------------------------------- 1 | ../crypto/x509/verify_extra_test.c -------------------------------------------------------------------------------- /libsgx/openssl/test/wp_test.c: -------------------------------------------------------------------------------- 1 | ../crypto/whrlpool/wp_test.c -------------------------------------------------------------------------------- /libsgx/polarssl/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/polarssl/aes.c -------------------------------------------------------------------------------- /libsgx/polarssl/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/polarssl/md.c -------------------------------------------------------------------------------- /libsgx/polarssl/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/polarssl/md5.c -------------------------------------------------------------------------------- /libsgx/polarssl/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/polarssl/net.c -------------------------------------------------------------------------------- /libsgx/polarssl/oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/polarssl/oid.c -------------------------------------------------------------------------------- /libsgx/polarssl/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/polarssl/rsa.c -------------------------------------------------------------------------------- /libsgx/sgx-attest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/sgx-attest.c -------------------------------------------------------------------------------- /libsgx/sgx-basics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/sgx-basics.c -------------------------------------------------------------------------------- /libsgx/sgx-entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/libsgx/sgx-entry.S -------------------------------------------------------------------------------- /opensgx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/opensgx -------------------------------------------------------------------------------- /qemu/.exrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/.exrc -------------------------------------------------------------------------------- /qemu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/.gitignore -------------------------------------------------------------------------------- /qemu/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/.mailmap -------------------------------------------------------------------------------- /qemu/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/.travis.yml -------------------------------------------------------------------------------- /qemu/CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/CODING_STYLE -------------------------------------------------------------------------------- /qemu/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/COPYING -------------------------------------------------------------------------------- /qemu/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/COPYING.LIB -------------------------------------------------------------------------------- /qemu/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/Changelog -------------------------------------------------------------------------------- /qemu/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/HACKING -------------------------------------------------------------------------------- /qemu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/LICENSE -------------------------------------------------------------------------------- /qemu/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/MAINTAINERS -------------------------------------------------------------------------------- /qemu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/Makefile -------------------------------------------------------------------------------- /qemu/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/Makefile.objs -------------------------------------------------------------------------------- /qemu/Makefile.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/Makefile.target -------------------------------------------------------------------------------- /qemu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/README -------------------------------------------------------------------------------- /qemu/VERSION: -------------------------------------------------------------------------------- 1 | 2.1.1 2 | -------------------------------------------------------------------------------- /qemu/aio-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/aio-posix.c -------------------------------------------------------------------------------- /qemu/aio-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/aio-win32.c -------------------------------------------------------------------------------- /qemu/arch_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/arch_init.c -------------------------------------------------------------------------------- /qemu/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/async.c -------------------------------------------------------------------------------- /qemu/audio/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/audio/audio.c -------------------------------------------------------------------------------- /qemu/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/audio/audio.h -------------------------------------------------------------------------------- /qemu/audio/esdaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/audio/esdaudio.c -------------------------------------------------------------------------------- /qemu/audio/mixeng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/audio/mixeng.c -------------------------------------------------------------------------------- /qemu/audio/mixeng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/audio/mixeng.h -------------------------------------------------------------------------------- /qemu/audio/noaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/audio/noaudio.c -------------------------------------------------------------------------------- /qemu/audio/ossaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/audio/ossaudio.c -------------------------------------------------------------------------------- /qemu/audio/paaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/audio/paaudio.c -------------------------------------------------------------------------------- /qemu/audio/sdlaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/audio/sdlaudio.c -------------------------------------------------------------------------------- /qemu/audio/wavaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/audio/wavaudio.c -------------------------------------------------------------------------------- /qemu/backends/baum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/backends/baum.c -------------------------------------------------------------------------------- /qemu/backends/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/backends/rng.c -------------------------------------------------------------------------------- /qemu/backends/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/backends/tpm.c -------------------------------------------------------------------------------- /qemu/balloon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/balloon.c -------------------------------------------------------------------------------- /qemu/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block.c -------------------------------------------------------------------------------- /qemu/block/backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/backup.c -------------------------------------------------------------------------------- /qemu/block/blkdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/blkdebug.c -------------------------------------------------------------------------------- /qemu/block/bochs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/bochs.c -------------------------------------------------------------------------------- /qemu/block/cloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/cloop.c -------------------------------------------------------------------------------- /qemu/block/commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/commit.c -------------------------------------------------------------------------------- /qemu/block/cow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/cow.c -------------------------------------------------------------------------------- /qemu/block/curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/curl.c -------------------------------------------------------------------------------- /qemu/block/dmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/dmg.c -------------------------------------------------------------------------------- /qemu/block/gluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/gluster.c -------------------------------------------------------------------------------- /qemu/block/iscsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/iscsi.c -------------------------------------------------------------------------------- /qemu/block/mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/mirror.c -------------------------------------------------------------------------------- /qemu/block/nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/nbd.c -------------------------------------------------------------------------------- /qemu/block/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/nfs.c -------------------------------------------------------------------------------- /qemu/block/qapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/qapi.c -------------------------------------------------------------------------------- /qemu/block/qcow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/qcow.c -------------------------------------------------------------------------------- /qemu/block/qcow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/qcow2.c -------------------------------------------------------------------------------- /qemu/block/qcow2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/qcow2.h -------------------------------------------------------------------------------- /qemu/block/qed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/qed.c -------------------------------------------------------------------------------- /qemu/block/qed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/qed.h -------------------------------------------------------------------------------- /qemu/block/quorum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/quorum.c -------------------------------------------------------------------------------- /qemu/block/raw-aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/raw-aio.h -------------------------------------------------------------------------------- /qemu/block/raw_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/raw_bsd.c -------------------------------------------------------------------------------- /qemu/block/rbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/rbd.c -------------------------------------------------------------------------------- /qemu/block/sheepdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/sheepdog.c -------------------------------------------------------------------------------- /qemu/block/snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/snapshot.c -------------------------------------------------------------------------------- /qemu/block/ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/ssh.c -------------------------------------------------------------------------------- /qemu/block/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/stream.c -------------------------------------------------------------------------------- /qemu/block/vdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/vdi.c -------------------------------------------------------------------------------- /qemu/block/vhdx-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/vhdx-log.c -------------------------------------------------------------------------------- /qemu/block/vhdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/vhdx.c -------------------------------------------------------------------------------- /qemu/block/vhdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/vhdx.h -------------------------------------------------------------------------------- /qemu/block/vmdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/vmdk.c -------------------------------------------------------------------------------- /qemu/block/vpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/vpc.c -------------------------------------------------------------------------------- /qemu/block/vvfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/block/vvfat.c -------------------------------------------------------------------------------- /qemu/blockdev-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/blockdev-nbd.c -------------------------------------------------------------------------------- /qemu/blockdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/blockdev.c -------------------------------------------------------------------------------- /qemu/blockjob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/blockjob.c -------------------------------------------------------------------------------- /qemu/bsd-user/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/bsd-user/main.c -------------------------------------------------------------------------------- /qemu/bsd-user/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/bsd-user/mmap.c -------------------------------------------------------------------------------- /qemu/bsd-user/qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/bsd-user/qemu.h -------------------------------------------------------------------------------- /qemu/bt-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/bt-host.c -------------------------------------------------------------------------------- /qemu/bt-vhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/bt-vhci.c -------------------------------------------------------------------------------- /qemu/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/configure -------------------------------------------------------------------------------- /qemu/configure-arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/configure-arch -------------------------------------------------------------------------------- /qemu/cpu-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/cpu-exec.c -------------------------------------------------------------------------------- /qemu/cpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/cpus.c -------------------------------------------------------------------------------- /qemu/cputlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/cputlb.c -------------------------------------------------------------------------------- /qemu/default-configs/alpha-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for alpha-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/arm-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for arm-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/armeb-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for armeb-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/cris-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for cris-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/i386-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-bsd-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/i386-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/m68k-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for m68k-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/mips-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/mips64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips64-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/mips64el-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips64el-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/mipsel-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsel-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/mipsn32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsn32-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/mipsn32el-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsn32el-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/or32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for or32-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/s390x-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for s390x-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/sh4-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sh4-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/sh4eb-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sh4eb-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/sparc-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc-bsd-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/sparc-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/sparc64-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc64-bsd-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/sparc64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc64-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/unicore32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for unicore32-linux-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/x86_64-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for x86_64-bsd-user 2 | -------------------------------------------------------------------------------- /qemu/default-configs/x86_64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for x86_64-linux-user 2 | -------------------------------------------------------------------------------- /qemu/device-hotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/device-hotplug.c -------------------------------------------------------------------------------- /qemu/device_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/device_tree.c -------------------------------------------------------------------------------- /qemu/disas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas.c -------------------------------------------------------------------------------- /qemu/disas/alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas/alpha.c -------------------------------------------------------------------------------- /qemu/disas/arm-a64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas/arm-a64.cc -------------------------------------------------------------------------------- /qemu/disas/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas/arm.c -------------------------------------------------------------------------------- /qemu/disas/cris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas/cris.c -------------------------------------------------------------------------------- /qemu/disas/hppa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas/hppa.c -------------------------------------------------------------------------------- /qemu/disas/i386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas/i386.c -------------------------------------------------------------------------------- /qemu/disas/ia64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas/ia64.c -------------------------------------------------------------------------------- /qemu/disas/lm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas/lm32.c -------------------------------------------------------------------------------- /qemu/disas/m68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas/m68k.c -------------------------------------------------------------------------------- /qemu/disas/mips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas/mips.c -------------------------------------------------------------------------------- /qemu/disas/moxie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas/moxie.c -------------------------------------------------------------------------------- /qemu/disas/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas/ppc.c -------------------------------------------------------------------------------- /qemu/disas/s390.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas/s390.c -------------------------------------------------------------------------------- /qemu/disas/sh4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas/sh4.c -------------------------------------------------------------------------------- /qemu/disas/sparc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas/sparc.c -------------------------------------------------------------------------------- /qemu/disas/tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/disas/tci.c -------------------------------------------------------------------------------- /qemu/dma-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/dma-helpers.c -------------------------------------------------------------------------------- /qemu/docs/atomics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/docs/atomics.txt -------------------------------------------------------------------------------- /qemu/docs/ccid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/docs/ccid.txt -------------------------------------------------------------------------------- /qemu/docs/memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/docs/memory.txt -------------------------------------------------------------------------------- /qemu/docs/qmp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/docs/qmp/README -------------------------------------------------------------------------------- /qemu/docs/rdma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/docs/rdma.txt -------------------------------------------------------------------------------- /qemu/docs/tracing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/docs/tracing.txt -------------------------------------------------------------------------------- /qemu/docs/usb2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/docs/usb2.txt -------------------------------------------------------------------------------- /qemu/docs/xbzrle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/docs/xbzrle.txt -------------------------------------------------------------------------------- /qemu/dtc/version_gen.h: -------------------------------------------------------------------------------- 1 | #define DTC_VERSION "DTC 1.3.0-dirty" 2 | -------------------------------------------------------------------------------- /qemu/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/dump.c -------------------------------------------------------------------------------- /qemu/dumpop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/dumpop.txt -------------------------------------------------------------------------------- /qemu/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/exec.c -------------------------------------------------------------------------------- /qemu/fpu/softfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/fpu/softfloat.c -------------------------------------------------------------------------------- /qemu/gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/gdbstub.c -------------------------------------------------------------------------------- /qemu/hmp-commands.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hmp-commands.hx -------------------------------------------------------------------------------- /qemu/hmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hmp.c -------------------------------------------------------------------------------- /qemu/hmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hmp.h -------------------------------------------------------------------------------- /qemu/hw/9pfs/codir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/9pfs/codir.c -------------------------------------------------------------------------------- /qemu/hw/9pfs/cofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/9pfs/cofile.c -------------------------------------------------------------------------------- /qemu/hw/9pfs/cofs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/9pfs/cofs.c -------------------------------------------------------------------------------- /qemu/hw/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/Makefile.objs -------------------------------------------------------------------------------- /qemu/hw/acpi/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/acpi/core.c -------------------------------------------------------------------------------- /qemu/hw/acpi/ich9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/acpi/ich9.c -------------------------------------------------------------------------------- /qemu/hw/acpi/pcihp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/acpi/pcihp.c -------------------------------------------------------------------------------- /qemu/hw/acpi/piix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/acpi/piix4.c -------------------------------------------------------------------------------- /qemu/hw/alpha/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += dp264.o pci.o typhoon.o 2 | -------------------------------------------------------------------------------- /qemu/hw/alpha/dp264.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/alpha/dp264.c -------------------------------------------------------------------------------- /qemu/hw/alpha/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/alpha/pci.c -------------------------------------------------------------------------------- /qemu/hw/arm/armv7m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/arm/armv7m.c -------------------------------------------------------------------------------- /qemu/hw/arm/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/arm/boot.c -------------------------------------------------------------------------------- /qemu/hw/arm/collie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/arm/collie.c -------------------------------------------------------------------------------- /qemu/hw/arm/digic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/arm/digic.c -------------------------------------------------------------------------------- /qemu/hw/arm/gumstix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/arm/gumstix.c -------------------------------------------------------------------------------- /qemu/hw/arm/kzm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/arm/kzm.c -------------------------------------------------------------------------------- /qemu/hw/arm/nseries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/arm/nseries.c -------------------------------------------------------------------------------- /qemu/hw/arm/omap1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/arm/omap1.c -------------------------------------------------------------------------------- /qemu/hw/arm/omap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/arm/omap2.c -------------------------------------------------------------------------------- /qemu/hw/arm/palm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/arm/palm.c -------------------------------------------------------------------------------- /qemu/hw/arm/pxa2xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/arm/pxa2xx.c -------------------------------------------------------------------------------- /qemu/hw/arm/spitz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/arm/spitz.c -------------------------------------------------------------------------------- /qemu/hw/arm/tosa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/arm/tosa.c -------------------------------------------------------------------------------- /qemu/hw/arm/virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/arm/virt.c -------------------------------------------------------------------------------- /qemu/hw/arm/z2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/arm/z2.c -------------------------------------------------------------------------------- /qemu/hw/audio/ac97.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/audio/ac97.c -------------------------------------------------------------------------------- /qemu/hw/audio/adlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/audio/adlib.c -------------------------------------------------------------------------------- /qemu/hw/audio/fmopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/audio/fmopl.c -------------------------------------------------------------------------------- /qemu/hw/audio/fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/audio/fmopl.h -------------------------------------------------------------------------------- /qemu/hw/audio/gus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/audio/gus.c -------------------------------------------------------------------------------- /qemu/hw/audio/pcspk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/audio/pcspk.c -------------------------------------------------------------------------------- /qemu/hw/audio/pl041.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/audio/pl041.c -------------------------------------------------------------------------------- /qemu/hw/audio/pl041.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/audio/pl041.h -------------------------------------------------------------------------------- /qemu/hw/audio/sb16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/audio/sb16.c -------------------------------------------------------------------------------- /qemu/hw/block/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/block/block.c -------------------------------------------------------------------------------- /qemu/hw/block/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/block/cdrom.c -------------------------------------------------------------------------------- /qemu/hw/block/dataplane/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += virtio-blk.o 2 | -------------------------------------------------------------------------------- /qemu/hw/block/ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/block/ecc.c -------------------------------------------------------------------------------- /qemu/hw/block/fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/block/fdc.c -------------------------------------------------------------------------------- /qemu/hw/block/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/block/nand.c -------------------------------------------------------------------------------- /qemu/hw/block/nvme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/block/nvme.c -------------------------------------------------------------------------------- /qemu/hw/block/nvme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/block/nvme.h -------------------------------------------------------------------------------- /qemu/hw/bt/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/bt/core.c -------------------------------------------------------------------------------- /qemu/hw/bt/hci-csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/bt/hci-csr.c -------------------------------------------------------------------------------- /qemu/hw/bt/hci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/bt/hci.c -------------------------------------------------------------------------------- /qemu/hw/bt/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/bt/hid.c -------------------------------------------------------------------------------- /qemu/hw/bt/l2cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/bt/l2cap.c -------------------------------------------------------------------------------- /qemu/hw/bt/sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/bt/sdp.c -------------------------------------------------------------------------------- /qemu/hw/char/escc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/char/escc.c -------------------------------------------------------------------------------- /qemu/hw/char/pl011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/char/pl011.c -------------------------------------------------------------------------------- /qemu/hw/char/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/char/serial.c -------------------------------------------------------------------------------- /qemu/hw/core/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/core/irq.c -------------------------------------------------------------------------------- /qemu/hw/core/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/core/loader.c -------------------------------------------------------------------------------- /qemu/hw/core/ptimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/core/ptimer.c -------------------------------------------------------------------------------- /qemu/hw/core/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/core/qdev.c -------------------------------------------------------------------------------- /qemu/hw/core/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/core/stream.c -------------------------------------------------------------------------------- /qemu/hw/core/sysbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/core/sysbus.c -------------------------------------------------------------------------------- /qemu/hw/cpu/icc_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/cpu/icc_bus.c -------------------------------------------------------------------------------- /qemu/hw/cris/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/cris/boot.c -------------------------------------------------------------------------------- /qemu/hw/cris/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/cris/boot.h -------------------------------------------------------------------------------- /qemu/hw/display/cg3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/display/cg3.c -------------------------------------------------------------------------------- /qemu/hw/display/qxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/display/qxl.c -------------------------------------------------------------------------------- /qemu/hw/display/qxl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/display/qxl.h -------------------------------------------------------------------------------- /qemu/hw/display/tcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/display/tcx.c -------------------------------------------------------------------------------- /qemu/hw/display/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/display/vga.c -------------------------------------------------------------------------------- /qemu/hw/display/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/display/vga.h -------------------------------------------------------------------------------- /qemu/hw/dma/i82374.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/dma/i82374.c -------------------------------------------------------------------------------- /qemu/hw/dma/i8257.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/dma/i8257.c -------------------------------------------------------------------------------- /qemu/hw/dma/pl080.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/dma/pl080.c -------------------------------------------------------------------------------- /qemu/hw/dma/pl330.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/dma/pl330.c -------------------------------------------------------------------------------- /qemu/hw/dma/rc4030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/dma/rc4030.c -------------------------------------------------------------------------------- /qemu/hw/dma/soc_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/dma/soc_dma.c -------------------------------------------------------------------------------- /qemu/hw/gpio/pl061.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/gpio/pl061.c -------------------------------------------------------------------------------- /qemu/hw/gpio/zaurus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/gpio/zaurus.c -------------------------------------------------------------------------------- /qemu/hw/i2c/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/i2c/core.c -------------------------------------------------------------------------------- /qemu/hw/i2c/smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/i2c/smbus.c -------------------------------------------------------------------------------- /qemu/hw/i386/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/i386/pc.c -------------------------------------------------------------------------------- /qemu/hw/i386/pc_q35.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/i386/pc_q35.c -------------------------------------------------------------------------------- /qemu/hw/i386/smbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/i386/smbios.c -------------------------------------------------------------------------------- /qemu/hw/ide/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ide/ahci.c -------------------------------------------------------------------------------- /qemu/hw/ide/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ide/ahci.h -------------------------------------------------------------------------------- /qemu/hw/ide/atapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ide/atapi.c -------------------------------------------------------------------------------- /qemu/hw/ide/cmd646.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ide/cmd646.c -------------------------------------------------------------------------------- /qemu/hw/ide/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ide/core.c -------------------------------------------------------------------------------- /qemu/hw/ide/ich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ide/ich.c -------------------------------------------------------------------------------- /qemu/hw/ide/isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ide/isa.c -------------------------------------------------------------------------------- /qemu/hw/ide/macio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ide/macio.c -------------------------------------------------------------------------------- /qemu/hw/ide/mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ide/mmio.c -------------------------------------------------------------------------------- /qemu/hw/ide/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ide/pci.c -------------------------------------------------------------------------------- /qemu/hw/ide/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ide/pci.h -------------------------------------------------------------------------------- /qemu/hw/ide/piix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ide/piix.c -------------------------------------------------------------------------------- /qemu/hw/ide/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ide/qdev.c -------------------------------------------------------------------------------- /qemu/hw/ide/via.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ide/via.c -------------------------------------------------------------------------------- /qemu/hw/input/adb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/input/adb.c -------------------------------------------------------------------------------- /qemu/hw/input/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/input/hid.c -------------------------------------------------------------------------------- /qemu/hw/input/pckbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/input/pckbd.c -------------------------------------------------------------------------------- /qemu/hw/input/pl050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/input/pl050.c -------------------------------------------------------------------------------- /qemu/hw/input/ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/input/ps2.c -------------------------------------------------------------------------------- /qemu/hw/intc/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/intc/apic.c -------------------------------------------------------------------------------- /qemu/hw/intc/i8259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/intc/i8259.c -------------------------------------------------------------------------------- /qemu/hw/intc/ioapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/intc/ioapic.c -------------------------------------------------------------------------------- /qemu/hw/intc/pl190.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/intc/pl190.c -------------------------------------------------------------------------------- /qemu/hw/intc/xics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/intc/xics.c -------------------------------------------------------------------------------- /qemu/hw/ipack/ipack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ipack/ipack.c -------------------------------------------------------------------------------- /qemu/hw/isa/apm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/isa/apm.c -------------------------------------------------------------------------------- /qemu/hw/isa/i82378.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/isa/i82378.c -------------------------------------------------------------------------------- /qemu/hw/isa/isa-bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/isa/isa-bus.c -------------------------------------------------------------------------------- /qemu/hw/isa/pc87312.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/isa/pc87312.c -------------------------------------------------------------------------------- /qemu/hw/isa/piix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/isa/piix4.c -------------------------------------------------------------------------------- /qemu/hw/lm32/lm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/lm32/lm32.h -------------------------------------------------------------------------------- /qemu/hw/m68k/an5206.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/m68k/an5206.c -------------------------------------------------------------------------------- /qemu/hw/mem/Makefile.objs: -------------------------------------------------------------------------------- 1 | common-obj-$(CONFIG_MEM_HOTPLUG) += pc-dimm.o 2 | -------------------------------------------------------------------------------- /qemu/hw/mem/pc-dimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/mem/pc-dimm.c -------------------------------------------------------------------------------- /qemu/hw/mips/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/mips/addr.c -------------------------------------------------------------------------------- /qemu/hw/misc/a9scu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/misc/a9scu.c -------------------------------------------------------------------------------- /qemu/hw/misc/cbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/misc/cbus.c -------------------------------------------------------------------------------- /qemu/hw/misc/sga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/misc/sga.c -------------------------------------------------------------------------------- /qemu/hw/misc/tmp105.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/misc/tmp105.c -------------------------------------------------------------------------------- /qemu/hw/misc/tmp105.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/misc/tmp105.h -------------------------------------------------------------------------------- /qemu/hw/misc/vfio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/misc/vfio.c -------------------------------------------------------------------------------- /qemu/hw/misc/vmport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/misc/vmport.c -------------------------------------------------------------------------------- /qemu/hw/net/dp8393x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/net/dp8393x.c -------------------------------------------------------------------------------- /qemu/hw/net/e1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/net/e1000.c -------------------------------------------------------------------------------- /qemu/hw/net/lan9118.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/net/lan9118.c -------------------------------------------------------------------------------- /qemu/hw/net/lance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/net/lance.c -------------------------------------------------------------------------------- /qemu/hw/net/mcf_fec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/net/mcf_fec.c -------------------------------------------------------------------------------- /qemu/hw/net/mipsnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/net/mipsnet.c -------------------------------------------------------------------------------- /qemu/hw/net/ne2000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/net/ne2000.c -------------------------------------------------------------------------------- /qemu/hw/net/ne2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/net/ne2000.h -------------------------------------------------------------------------------- /qemu/hw/net/pcnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/net/pcnet.c -------------------------------------------------------------------------------- /qemu/hw/net/pcnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/net/pcnet.h -------------------------------------------------------------------------------- /qemu/hw/net/rtl8139.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/net/rtl8139.c -------------------------------------------------------------------------------- /qemu/hw/net/vmxnet3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/net/vmxnet3.c -------------------------------------------------------------------------------- /qemu/hw/net/vmxnet3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/net/vmxnet3.h -------------------------------------------------------------------------------- /qemu/hw/net/xen_nic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/net/xen_nic.c -------------------------------------------------------------------------------- /qemu/hw/net/xgmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/net/xgmac.c -------------------------------------------------------------------------------- /qemu/hw/pci/msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/pci/msi.c -------------------------------------------------------------------------------- /qemu/hw/pci/msix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/pci/msix.c -------------------------------------------------------------------------------- /qemu/hw/pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/pci/pci.c -------------------------------------------------------------------------------- /qemu/hw/pci/pcie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/pci/pcie.c -------------------------------------------------------------------------------- /qemu/hw/pci/shpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/pci/shpc.c -------------------------------------------------------------------------------- /qemu/hw/ppc/e500.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ppc/e500.c -------------------------------------------------------------------------------- /qemu/hw/ppc/e500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ppc/e500.h -------------------------------------------------------------------------------- /qemu/hw/ppc/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ppc/mac.h -------------------------------------------------------------------------------- /qemu/hw/ppc/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ppc/ppc.c -------------------------------------------------------------------------------- /qemu/hw/ppc/ppc405.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ppc/ppc405.h -------------------------------------------------------------------------------- /qemu/hw/ppc/prep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ppc/prep.c -------------------------------------------------------------------------------- /qemu/hw/ppc/spapr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ppc/spapr.c -------------------------------------------------------------------------------- /qemu/hw/s390x/css.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/s390x/css.c -------------------------------------------------------------------------------- /qemu/hw/s390x/css.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/s390x/css.h -------------------------------------------------------------------------------- /qemu/hw/s390x/ipl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/s390x/ipl.c -------------------------------------------------------------------------------- /qemu/hw/s390x/sclp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/s390x/sclp.c -------------------------------------------------------------------------------- /qemu/hw/scsi/esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/scsi/esp.c -------------------------------------------------------------------------------- /qemu/hw/scsi/mfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/scsi/mfi.h -------------------------------------------------------------------------------- /qemu/hw/scsi/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/scsi/srp.h -------------------------------------------------------------------------------- /qemu/hw/scsi/viosrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/scsi/viosrp.h -------------------------------------------------------------------------------- /qemu/hw/sd/omap_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/sd/omap_mmc.c -------------------------------------------------------------------------------- /qemu/hw/sd/pl181.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/sd/pl181.c -------------------------------------------------------------------------------- /qemu/hw/sd/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/sd/sd.c -------------------------------------------------------------------------------- /qemu/hw/sd/sdhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/sd/sdhci.c -------------------------------------------------------------------------------- /qemu/hw/sd/sdhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/sd/sdhci.h -------------------------------------------------------------------------------- /qemu/hw/sd/ssi-sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/sd/ssi-sd.c -------------------------------------------------------------------------------- /qemu/hw/sh4/r2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/sh4/r2d.c -------------------------------------------------------------------------------- /qemu/hw/sh4/sh7750.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/sh4/sh7750.c -------------------------------------------------------------------------------- /qemu/hw/sh4/sh_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/sh4/sh_pci.c -------------------------------------------------------------------------------- /qemu/hw/sh4/shix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/sh4/shix.c -------------------------------------------------------------------------------- /qemu/hw/sparc/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += sun4m.o leon3.o 2 | -------------------------------------------------------------------------------- /qemu/hw/sparc/leon3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/sparc/leon3.c -------------------------------------------------------------------------------- /qemu/hw/sparc64/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += sun4u.o 2 | -------------------------------------------------------------------------------- /qemu/hw/ssi/ssi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/ssi/ssi.c -------------------------------------------------------------------------------- /qemu/hw/usb/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/usb/bus.c -------------------------------------------------------------------------------- /qemu/hw/usb/ccid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/usb/ccid.h -------------------------------------------------------------------------------- /qemu/hw/usb/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/usb/core.c -------------------------------------------------------------------------------- /qemu/hw/usb/desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/usb/desc.c -------------------------------------------------------------------------------- /qemu/hw/usb/desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/usb/desc.h -------------------------------------------------------------------------------- /qemu/hw/usb/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/hw/usb/host.h -------------------------------------------------------------------------------- /qemu/hw/virtio/dataplane/Makefile.objs: -------------------------------------------------------------------------------- 1 | common-obj-y += vring.o 2 | -------------------------------------------------------------------------------- /qemu/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/include/elf.h -------------------------------------------------------------------------------- /qemu/iohandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/iohandler.c -------------------------------------------------------------------------------- /qemu/ioport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ioport.c -------------------------------------------------------------------------------- /qemu/iothread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/iothread.c -------------------------------------------------------------------------------- /qemu/kvm-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/kvm-all.c -------------------------------------------------------------------------------- /qemu/kvm-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/kvm-stub.c -------------------------------------------------------------------------------- /qemu/linux-headers/asm-arm/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/linux-headers/asm-arm64/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/linux-headers/asm-mips/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/linux-user/mips64/target_structs.h: -------------------------------------------------------------------------------- 1 | #include "../mips/target_structs.h" 2 | 3 | -------------------------------------------------------------------------------- /qemu/linux-user/sparc64/target_cpu.h: -------------------------------------------------------------------------------- 1 | #include "../sparc/target_cpu.h" 2 | -------------------------------------------------------------------------------- /qemu/linux-user/x86_64/target_cpu.h: -------------------------------------------------------------------------------- 1 | #include "../i386/target_cpu.h" 2 | -------------------------------------------------------------------------------- /qemu/main-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/main-loop.c -------------------------------------------------------------------------------- /qemu/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/memory.c -------------------------------------------------------------------------------- /qemu/migration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/migration.c -------------------------------------------------------------------------------- /qemu/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/monitor.c -------------------------------------------------------------------------------- /qemu/nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/nbd.c -------------------------------------------------------------------------------- /qemu/net/clients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/clients.h -------------------------------------------------------------------------------- /qemu/net/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/dump.c -------------------------------------------------------------------------------- /qemu/net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/eth.c -------------------------------------------------------------------------------- /qemu/net/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/hub.c -------------------------------------------------------------------------------- /qemu/net/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/hub.h -------------------------------------------------------------------------------- /qemu/net/l2tpv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/l2tpv3.c -------------------------------------------------------------------------------- /qemu/net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/net.c -------------------------------------------------------------------------------- /qemu/net/netmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/netmap.c -------------------------------------------------------------------------------- /qemu/net/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/queue.c -------------------------------------------------------------------------------- /qemu/net/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/slirp.c -------------------------------------------------------------------------------- /qemu/net/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/socket.c -------------------------------------------------------------------------------- /qemu/net/tap-aix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/tap-aix.c -------------------------------------------------------------------------------- /qemu/net/tap-bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/tap-bsd.c -------------------------------------------------------------------------------- /qemu/net/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/tap.c -------------------------------------------------------------------------------- /qemu/net/tap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/tap_int.h -------------------------------------------------------------------------------- /qemu/net/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/util.c -------------------------------------------------------------------------------- /qemu/net/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/util.h -------------------------------------------------------------------------------- /qemu/net/vde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/net/vde.c -------------------------------------------------------------------------------- /qemu/numa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/numa.c -------------------------------------------------------------------------------- /qemu/os-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/os-posix.c -------------------------------------------------------------------------------- /qemu/os-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/os-win32.c -------------------------------------------------------------------------------- /qemu/page_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/page_cache.c -------------------------------------------------------------------------------- /qemu/pc-bios/keymaps/nl-be: -------------------------------------------------------------------------------- 1 | # Dutch (Belgium) 2 | map 0x813 3 | include common 4 | -------------------------------------------------------------------------------- /qemu/pixman/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/pixman/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/pixman/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/pixman/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/pixman/README -------------------------------------------------------------------------------- /qemu/pixman/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/pixman/TODO -------------------------------------------------------------------------------- /qemu/po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/po/Makefile -------------------------------------------------------------------------------- /qemu/po/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/po/de_DE.po -------------------------------------------------------------------------------- /qemu/po/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/po/fr_FR.po -------------------------------------------------------------------------------- /qemu/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/po/hu.po -------------------------------------------------------------------------------- /qemu/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/po/it.po -------------------------------------------------------------------------------- /qemu/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/po/tr.po -------------------------------------------------------------------------------- /qemu/polarssl/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/polarssl/md.c -------------------------------------------------------------------------------- /qemu/qemu-char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qemu-char.c -------------------------------------------------------------------------------- /qemu/qemu-doc.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qemu-doc.texi -------------------------------------------------------------------------------- /qemu/qemu-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qemu-file.c -------------------------------------------------------------------------------- /qemu/qemu-img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qemu-img.c -------------------------------------------------------------------------------- /qemu/qemu-img.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qemu-img.texi -------------------------------------------------------------------------------- /qemu/qemu-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qemu-io.c -------------------------------------------------------------------------------- /qemu/qemu-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qemu-log.c -------------------------------------------------------------------------------- /qemu/qemu-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qemu-nbd.c -------------------------------------------------------------------------------- /qemu/qemu-nbd.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qemu-nbd.texi -------------------------------------------------------------------------------- /qemu/qemu-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qemu-timer.c -------------------------------------------------------------------------------- /qemu/qemu.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qemu.nsi -------------------------------------------------------------------------------- /qemu/qemu.sasl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qemu.sasl -------------------------------------------------------------------------------- /qemu/qga/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qga/channel.h -------------------------------------------------------------------------------- /qemu/qga/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qga/main.c -------------------------------------------------------------------------------- /qemu/qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qmp.c -------------------------------------------------------------------------------- /qemu/qom/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qom/cpu.c -------------------------------------------------------------------------------- /qemu/qom/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qom/object.c -------------------------------------------------------------------------------- /qemu/qtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/qtest.c -------------------------------------------------------------------------------- /qemu/roms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/roms/Makefile -------------------------------------------------------------------------------- /qemu/roms/SLOF/VERSION: -------------------------------------------------------------------------------- 1 | 20140630 2 | -------------------------------------------------------------------------------- /qemu/roms/SLOF/board-qemu/slof/.gitignore: -------------------------------------------------------------------------------- 1 | OF.ffs 2 | -------------------------------------------------------------------------------- /qemu/roms/SLOF/romfs/tools/.gitignore: -------------------------------------------------------------------------------- 1 | build_romfs 2 | -------------------------------------------------------------------------------- /qemu/roms/SLOF/tools/.gitignore: -------------------------------------------------------------------------------- 1 | gen_reloc_table 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/errdb/.gitignore: -------------------------------------------------------------------------------- 1 | errors.db 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/AUTOBOOT_CMD.html: -------------------------------------------------------------------------------- 1 | Automatic booting 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/COMDATA.html: -------------------------------------------------------------------------------- 1 | Serial Console Data bits 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/COMSPEED.html: -------------------------------------------------------------------------------- 1 | Serial Console Baud rate 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/COMSTOP.html: -------------------------------------------------------------------------------- 1 | Serial Console Stop bits 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/CONSOLE_PC_BIOS.html: -------------------------------------------------------------------------------- 1 | Enable Default BIOS console 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/CONSOLE_SERIAL.html: -------------------------------------------------------------------------------- 1 | Enable Serial port console 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/DHCP_CMD.html: -------------------------------------------------------------------------------- 1 | DHCP management commands 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/DNS_RESOLVER.html: -------------------------------------------------------------------------------- 1 | DNS resolver 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/DOWNLOAD_PROTO_FTP.html: -------------------------------------------------------------------------------- 1 | File Transfer Protocol 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/IFMGMT_CMD.html: -------------------------------------------------------------------------------- 1 | Interface management commands 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/IMAGE_ELF.html: -------------------------------------------------------------------------------- 1 | ELF image support 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/IMAGE_MULTIBOOT.html: -------------------------------------------------------------------------------- 1 | MultiBoot image support 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/IMAGE_NBI.html: -------------------------------------------------------------------------------- 1 | NBI image support 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/IMAGE_PXE.html: -------------------------------------------------------------------------------- 1 | PXE image support 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/IMAGE_SCRIPT.html: -------------------------------------------------------------------------------- 1 | iPXE script image support 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/NMB_RESOLVER.html: -------------------------------------------------------------------------------- 1 | NMB resolver 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/NVO_CMD.html: -------------------------------------------------------------------------------- 1 | Non-volatile option storage commands 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/ROUTE_CMD.html: -------------------------------------------------------------------------------- 1 | Routing table management commands 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/contrib/rom-o-matic/doc/SANBOOT_CMD.html: -------------------------------------------------------------------------------- 1 | SAN boot commands 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/src/arch/i386/transitions/libpm.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/src/config/.gitignore: -------------------------------------------------------------------------------- 1 | .buildserial.* 2 | -------------------------------------------------------------------------------- /qemu/roms/ipxe/src/include/.gitignore: -------------------------------------------------------------------------------- 1 | .buildserial.h 2 | -------------------------------------------------------------------------------- /qemu/roms/openbios/.gitignore: -------------------------------------------------------------------------------- 1 | obj-* 2 | .stgit-* 3 | config-host.mak 4 | -------------------------------------------------------------------------------- /qemu/roms/openbios/VERSION: -------------------------------------------------------------------------------- 1 | 1.1 2 | -------------------------------------------------------------------------------- /qemu/roms/openbios/arch/amd64/relocate.h: -------------------------------------------------------------------------------- 1 | void relocate(struct sys_info *); 2 | -------------------------------------------------------------------------------- /qemu/roms/openbios/arch/sparc32/crs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/roms/openbios/arch/x86/relocate.h: -------------------------------------------------------------------------------- 1 | void relocate(struct sys_info *); 2 | -------------------------------------------------------------------------------- /qemu/roms/openbios/fs/grubfs/debug.h: -------------------------------------------------------------------------------- 1 | /* for grub compatibility */ 2 | -------------------------------------------------------------------------------- /qemu/roms/openhackware/Timestamp: -------------------------------------------------------------------------------- 1 | 2005-04-06 at 21:44:49 2 | -------------------------------------------------------------------------------- /qemu/roms/qemu-palcode/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | palcode-* 3 | -------------------------------------------------------------------------------- /qemu/roms/seabios/src/code16gcc.s: -------------------------------------------------------------------------------- 1 | .code16gcc 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/arc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/arc/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/arm/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/arm/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/avr32/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/avr32/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/blackfin/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/blackfin/include/asm/mach-bf527/BF523_def.h: -------------------------------------------------------------------------------- 1 | #include "BF522_def.h" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/blackfin/include/asm/mach-bf527/BF525_def.h: -------------------------------------------------------------------------------- 1 | #include "BF524_def.h" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/blackfin/include/asm/mach-bf527/BF527_def.h: -------------------------------------------------------------------------------- 1 | #include "BF526_def.h" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/blackfin/include/asm/mach-bf537/BF537_def.h: -------------------------------------------------------------------------------- 1 | #include "BF536_def.h" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/blackfin/include/asm/mach-bf538/BF539_def.h: -------------------------------------------------------------------------------- 1 | #include "BF538_def.h" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/blackfin/include/asm/signal.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/blackfin/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/blackfin/lib/.gitignore: -------------------------------------------------------------------------------- 1 | u-boot.lds 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/m68k/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/microblaze/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/microblaze/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/mips/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/nds32/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/nds32/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/nios2/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/openrisc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/openrisc/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/powerpc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/sandbox/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/sandbox/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/sh/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/sparc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/x86/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/x86/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/x86/include/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/arch/x86/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/board/cobra5272/bdm/gdbinit.reset: -------------------------------------------------------------------------------- 1 | target bdm /dev/bdmcf0 2 | q 3 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/board/matrix_vision/mvblm7/.gitignore: -------------------------------------------------------------------------------- 1 | bootscript.img 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/board/matrix_vision/mvsmr/.gitignore: -------------------------------------------------------------------------------- 1 | bootscript.img 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/board/sandpoint/dinkdl: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | tr -d "\r" <$1 >/dev/tts/1 3 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/examples/api/.gitignore: -------------------------------------------------------------------------------- 1 | demo 2 | demo.bin 3 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/lib/errno.c: -------------------------------------------------------------------------------- 1 | int errno = 0; 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | docproc 5 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/scripts/basic/.gitignore: -------------------------------------------------------------------------------- 1 | fixdep 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/snapshot.commit: -------------------------------------------------------------------------------- 1 | $Format:%H %cD$ 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/test/dm/.gitignore: -------------------------------------------------------------------------------- 1 | /test.dtb 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/test/vboot/.gitignore: -------------------------------------------------------------------------------- 1 | /*.dtb 2 | /test.fit 3 | /dev-keys 4 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/tools/buildman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/tools/crc32.c: -------------------------------------------------------------------------------- 1 | #include "../lib/crc32.c" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/tools/env/aes.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/aes.c" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/tools/env/crc32.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/crc32.c" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/tools/env/ctype.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/ctype.c" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/tools/env/env_attr.c: -------------------------------------------------------------------------------- 1 | #include "../../common/env_attr.c" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/tools/env/env_flags.c: -------------------------------------------------------------------------------- 1 | #include "../../common/env_flags.c" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/tools/env_embedded.c: -------------------------------------------------------------------------------- 1 | #include "../common/env_embedded.c" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/tools/fdtdec.c: -------------------------------------------------------------------------------- 1 | #include "../lib/fdtdec.c" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/tools/image-fit.c: -------------------------------------------------------------------------------- 1 | #include "../common/image-fit.c" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/tools/image-sig.c: -------------------------------------------------------------------------------- 1 | #include "../common/image-sig.c" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/tools/image.c: -------------------------------------------------------------------------------- 1 | #include "../common/image.c" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/tools/md5.c: -------------------------------------------------------------------------------- 1 | #include "../lib/md5.c" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/tools/patman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/tools/sha1.c: -------------------------------------------------------------------------------- 1 | #include "../lib/sha1.c" 2 | -------------------------------------------------------------------------------- /qemu/roms/u-boot/tools/sha256.c: -------------------------------------------------------------------------------- 1 | #include "../lib/sha256.c" 2 | -------------------------------------------------------------------------------- /qemu/roms/vgabios/.cvsignore: -------------------------------------------------------------------------------- 1 | vbetables.h 2 | -------------------------------------------------------------------------------- /qemu/rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/rules.mak -------------------------------------------------------------------------------- /qemu/savevm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/savevm.c -------------------------------------------------------------------------------- /qemu/scripts/qtest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | export QTEST_QEMU_BINARY=$1 4 | shift 5 | "$@" 6 | -------------------------------------------------------------------------------- /qemu/segs[R_CS]: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/segs[R_CS] -------------------------------------------------------------------------------- /qemu/slirp/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/bootp.c -------------------------------------------------------------------------------- /qemu/slirp/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/bootp.h -------------------------------------------------------------------------------- /qemu/slirp/cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/cksum.c -------------------------------------------------------------------------------- /qemu/slirp/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/debug.h -------------------------------------------------------------------------------- /qemu/slirp/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/if.c -------------------------------------------------------------------------------- /qemu/slirp/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/if.h -------------------------------------------------------------------------------- /qemu/slirp/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/ip.h -------------------------------------------------------------------------------- /qemu/slirp/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/main.h -------------------------------------------------------------------------------- /qemu/slirp/mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/mbuf.c -------------------------------------------------------------------------------- /qemu/slirp/mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/mbuf.h -------------------------------------------------------------------------------- /qemu/slirp/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/misc.c -------------------------------------------------------------------------------- /qemu/slirp/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/misc.h -------------------------------------------------------------------------------- /qemu/slirp/sbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/sbuf.c -------------------------------------------------------------------------------- /qemu/slirp/sbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/sbuf.h -------------------------------------------------------------------------------- /qemu/slirp/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/slirp.c -------------------------------------------------------------------------------- /qemu/slirp/slirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/slirp.h -------------------------------------------------------------------------------- /qemu/slirp/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/tcp.h -------------------------------------------------------------------------------- /qemu/slirp/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/tcpip.h -------------------------------------------------------------------------------- /qemu/slirp/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/tftp.c -------------------------------------------------------------------------------- /qemu/slirp/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/tftp.h -------------------------------------------------------------------------------- /qemu/slirp/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/udp.c -------------------------------------------------------------------------------- /qemu/slirp/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/slirp/udp.h -------------------------------------------------------------------------------- /qemu/spice-0.12.4/.tarball-version: -------------------------------------------------------------------------------- 1 | 0.12.4 2 | -------------------------------------------------------------------------------- /qemu/spice-0.12.4/spice-common/python_modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/spice-0.12.4/spice-common/spice-protocol/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/spice-0.12.4/spice-common/spice-protocol/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/spice-0.12.4/spice-common/spice-protocol/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/stubs/cpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/stubs/cpus.c -------------------------------------------------------------------------------- /qemu/stubs/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/stubs/dump.c -------------------------------------------------------------------------------- /qemu/stubs/kvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/stubs/kvm.c -------------------------------------------------------------------------------- /qemu/stubs/qtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/stubs/qtest.c -------------------------------------------------------------------------------- /qemu/stubs/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/stubs/reset.c -------------------------------------------------------------------------------- /qemu/stubs/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/stubs/slirp.c -------------------------------------------------------------------------------- /qemu/stubs/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/stubs/uuid.c -------------------------------------------------------------------------------- /qemu/sysconfigs/target/target-x86_64.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/target-i386/mem_helper.s: -------------------------------------------------------------------------------- 1 | .file "mem_helper.c" 2 | -------------------------------------------------------------------------------- /qemu/target-i386/sgx-perf.h: -------------------------------------------------------------------------------- 1 | #define PERF (1) 2 | 3 | -------------------------------------------------------------------------------- /qemu/target-lm32/TODO: -------------------------------------------------------------------------------- 1 | * linux-user emulation 2 | -------------------------------------------------------------------------------- /qemu/target-moxie/machine.h: -------------------------------------------------------------------------------- 1 | extern const VMStateDescription vmstate_moxie_cpu; 2 | -------------------------------------------------------------------------------- /qemu/tcg-runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/tcg-runtime.c -------------------------------------------------------------------------------- /qemu/tcg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/tcg/LICENSE -------------------------------------------------------------------------------- /qemu/tcg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/tcg/README -------------------------------------------------------------------------------- /qemu/tcg/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/tcg/TODO -------------------------------------------------------------------------------- /qemu/tcg/tcg-op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/tcg/tcg-op.h -------------------------------------------------------------------------------- /qemu/tcg/tcg-opc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/tcg/tcg-opc.h -------------------------------------------------------------------------------- /qemu/tcg/tcg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/tcg/tcg.c -------------------------------------------------------------------------------- /qemu/tcg/tcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/tcg/tcg.h -------------------------------------------------------------------------------- /qemu/tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/tci.c -------------------------------------------------------------------------------- /qemu/tests/acpi-test-data/pc/FACS: -------------------------------------------------------------------------------- 1 | sstv`  -------------------------------------------------------------------------------- /qemu/tests/acpi-test-data/q35/FACS: -------------------------------------------------------------------------------- 1 | sstv`  -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/comments.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/comments.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/duplicate-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/duplicate-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/empty.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/empty.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/event-nest-struct.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/event-nest-struct.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/flat-union-invalid-branch-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/flat-union-invalid-branch-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/flat-union-invalid-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/flat-union-invalid-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/flat-union-no-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/flat-union-no-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/flat-union-reverse-define.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/flat-union-reverse-define.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/flat-union-string-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/flat-union-string-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/funny-char.err: -------------------------------------------------------------------------------- 1 | tests/qapi-schema/funny-char.json:2:36: Stray ";" 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/funny-char.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/funny-char.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-before-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-before-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-cycle.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-cycle.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-format-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-format-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-nested-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-nested-err.json: -------------------------------------------------------------------------------- 1 | { 'include': 'missing-colon.json' } 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-nested-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-no-file.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-no-file.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-non-file.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-non-file.json: -------------------------------------------------------------------------------- 1 | { 'include': [ 'foo', 'bar' ] } 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-non-file.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-relpath.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-relpath.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-repetition.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-repetition.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-self-cycle.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-self-cycle.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-simple.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/include-simple.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/indented-expr.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/indented-expr.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/missing-colon.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/missing-colon.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/missing-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/missing-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/missing-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/missing-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/non-objects.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/non-objects.json: -------------------------------------------------------------------------------- 1 | 'string' 2 | [ ] 3 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/non-objects.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/qapi-schema-test.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/qapi-schema-test.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/quoted-structural-chars.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/quoted-structural-chars.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/trailing-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/trailing-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/trailing-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/trailing-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/unclosed-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/unclosed-list.json: -------------------------------------------------------------------------------- 1 | { 'key': [ 'value' } 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/unclosed-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/unclosed-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/unclosed-object.json: -------------------------------------------------------------------------------- 1 | { 'key': [ 'value' ] 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/unclosed-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/unclosed-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/unclosed-string.json: -------------------------------------------------------------------------------- 1 | { 'text': 'lorem ips 2 | } 3 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/unclosed-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/union-invalid-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /qemu/tests/qapi-schema/union-invalid-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qemu/tests/tcg/mips/mips64-dspr2/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2012,8,3,16,41,52 3 | -------------------------------------------------------------------------------- /qemu/thread-pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/thread-pool.c -------------------------------------------------------------------------------- /qemu/thunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/thunk.c -------------------------------------------------------------------------------- /qemu/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/tpm.c -------------------------------------------------------------------------------- /qemu/trace-events: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/trace-events -------------------------------------------------------------------------------- /qemu/ui/cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/cocoa.m -------------------------------------------------------------------------------- /qemu/ui/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/console.c -------------------------------------------------------------------------------- /qemu/ui/curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/curses.c -------------------------------------------------------------------------------- /qemu/ui/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/cursor.c -------------------------------------------------------------------------------- /qemu/ui/d3des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/d3des.c -------------------------------------------------------------------------------- /qemu/ui/d3des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/d3des.h -------------------------------------------------------------------------------- /qemu/ui/gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/gtk.c -------------------------------------------------------------------------------- /qemu/ui/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/input.c -------------------------------------------------------------------------------- /qemu/ui/keymaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/keymaps.c -------------------------------------------------------------------------------- /qemu/ui/keymaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/keymaps.h -------------------------------------------------------------------------------- /qemu/ui/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/sdl.c -------------------------------------------------------------------------------- /qemu/ui/sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/sdl2.c -------------------------------------------------------------------------------- /qemu/ui/sdl_zoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/sdl_zoom.c -------------------------------------------------------------------------------- /qemu/ui/sdl_zoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/sdl_zoom.h -------------------------------------------------------------------------------- /qemu/ui/vgafont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/vgafont.h -------------------------------------------------------------------------------- /qemu/ui/vnc-jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/vnc-jobs.c -------------------------------------------------------------------------------- /qemu/ui/vnc-jobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/vnc-jobs.h -------------------------------------------------------------------------------- /qemu/ui/vnc-tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/vnc-tls.c -------------------------------------------------------------------------------- /qemu/ui/vnc-tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/vnc-tls.h -------------------------------------------------------------------------------- /qemu/ui/vnc-ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/vnc-ws.c -------------------------------------------------------------------------------- /qemu/ui/vnc-ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/vnc-ws.h -------------------------------------------------------------------------------- /qemu/ui/vnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/vnc.c -------------------------------------------------------------------------------- /qemu/ui/vnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/vnc.h -------------------------------------------------------------------------------- /qemu/ui/x_keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/x_keymap.c -------------------------------------------------------------------------------- /qemu/ui/x_keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/ui/x_keymap.h -------------------------------------------------------------------------------- /qemu/user-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/user-exec.c -------------------------------------------------------------------------------- /qemu/util/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/util/acl.c -------------------------------------------------------------------------------- /qemu/util/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/util/aes.c -------------------------------------------------------------------------------- /qemu/util/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/util/bitmap.c -------------------------------------------------------------------------------- /qemu/util/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/util/bitops.c -------------------------------------------------------------------------------- /qemu/util/crc32c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/util/crc32c.c -------------------------------------------------------------------------------- /qemu/util/cutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/util/cutils.c -------------------------------------------------------------------------------- /qemu/util/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/util/error.c -------------------------------------------------------------------------------- /qemu/util/fifo8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/util/fifo8.c -------------------------------------------------------------------------------- /qemu/util/iov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/util/iov.c -------------------------------------------------------------------------------- /qemu/util/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/util/module.c -------------------------------------------------------------------------------- /qemu/util/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/util/notify.c -------------------------------------------------------------------------------- /qemu/util/osdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/util/osdep.c -------------------------------------------------------------------------------- /qemu/util/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/util/path.c -------------------------------------------------------------------------------- /qemu/util/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/util/uri.c -------------------------------------------------------------------------------- /qemu/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/version.rc -------------------------------------------------------------------------------- /qemu/vl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/vl.c -------------------------------------------------------------------------------- /qemu/vmstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/vmstate.c -------------------------------------------------------------------------------- /qemu/xbzrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/xbzrle.c -------------------------------------------------------------------------------- /qemu/xen-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/xen-common.c -------------------------------------------------------------------------------- /qemu/xen-hvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/qemu/xen-hvm.c -------------------------------------------------------------------------------- /sgx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/sgx -------------------------------------------------------------------------------- /sgx-dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/sgx-dbg -------------------------------------------------------------------------------- /user/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/.gitignore -------------------------------------------------------------------------------- /user/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/Makefile -------------------------------------------------------------------------------- /user/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/README -------------------------------------------------------------------------------- /user/README.tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/README.tool -------------------------------------------------------------------------------- /user/conf/test.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/conf/test.key -------------------------------------------------------------------------------- /user/demo/autotools/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user/demo/autotools/COPYING: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.14/COPYING -------------------------------------------------------------------------------- /user/demo/autotools/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user/demo/autotools/INSTALL: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.14/INSTALL -------------------------------------------------------------------------------- /user/demo/autotools/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user/demo/autotools/compile: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.14/compile -------------------------------------------------------------------------------- /user/demo/autotools/depcomp: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.14/depcomp -------------------------------------------------------------------------------- /user/demo/autotools/install-sh: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.14/install-sh -------------------------------------------------------------------------------- /user/demo/autotools/missing: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.14/missing -------------------------------------------------------------------------------- /user/demo/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/demo/hello.c -------------------------------------------------------------------------------- /user/demo/hello2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/demo/hello2.c -------------------------------------------------------------------------------- /user/include/sgx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/include/sgx.h -------------------------------------------------------------------------------- /user/nonEncLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/nonEncLib.c -------------------------------------------------------------------------------- /user/polarssl/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/polarssl/md.c -------------------------------------------------------------------------------- /user/sgx-crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/sgx-crypto.c -------------------------------------------------------------------------------- /user/sgx-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/sgx-host.c -------------------------------------------------------------------------------- /user/sgx-kern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/sgx-kern.c -------------------------------------------------------------------------------- /user/sgx-loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/sgx-loader.c -------------------------------------------------------------------------------- /user/sgx-runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/sgx-runtime.c -------------------------------------------------------------------------------- /user/sgx-tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/sgx-tool.c -------------------------------------------------------------------------------- /user/sgx-user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/sgx-user.c -------------------------------------------------------------------------------- /user/sgx-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/sgx-utils.c -------------------------------------------------------------------------------- /user/sgx.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/sgx.lds -------------------------------------------------------------------------------- /user/sgx2.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/sgx2.lds -------------------------------------------------------------------------------- /user/sslLib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/sslLib.a -------------------------------------------------------------------------------- /user/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/test.sh -------------------------------------------------------------------------------- /user/test/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/test/simple.c -------------------------------------------------------------------------------- /user/test/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/test/stub.c -------------------------------------------------------------------------------- /user/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sslab-gatech/opensgx/HEAD/user/test/test.h --------------------------------------------------------------------------------