├── .gitignore ├── .reviewboardrc ├── LICENSE ├── Makefile ├── README ├── Sources.mk ├── apps ├── bootrom │ ├── Make.def │ ├── Sources.mk │ ├── inc │ │ └── appcfg.h │ └── src │ │ └── start.c ├── es3_boot_verify │ ├── Make.def │ ├── Sources.mk │ ├── inc │ │ └── appcfg.h │ └── src │ │ └── start.c ├── es3_boot_verify_restricted │ ├── Make.def │ ├── Sources.mk │ ├── inc │ │ └── appcfg.h │ └── src │ │ └── start.c ├── gbboot_server │ ├── Make.def │ ├── Sources.mk │ ├── inc │ │ ├── appcfg.h │ │ └── gbboot_fake_svc.h │ └── src │ │ ├── fake_svc.c │ │ └── start.c ├── secondstage │ ├── MIRACL_cfg │ │ ├── config.mk │ │ └── defconfig │ ├── Make.def │ ├── Sources.mk │ ├── inc │ │ └── appcfg.h │ └── src │ │ ├── cfgdata.c │ │ └── start.c └── test3rdstage │ ├── Make.def │ ├── Sources.mk │ ├── inc │ └── appcfg.h │ └── src │ └── start.c ├── chips ├── es2tsb │ ├── Sources.mk │ ├── defconfig │ ├── include │ │ ├── es2_chipdef.h │ │ └── es2_unipro.h │ ├── scripts │ │ └── ld.script │ └── src │ │ ├── es2_advertise.c │ │ ├── es2_efuse.c │ │ ├── es2_spi.c │ │ ├── es2_standby.S │ │ └── es2_unipro.c ├── es3tsb │ ├── Sources.mk │ ├── defconfig │ ├── include │ │ └── es3_chipdef.h │ └── src │ │ ├── es3_advertise.c │ │ ├── es3_efuse.c │ │ ├── es3_spi.c │ │ ├── es3_spi_master.c │ │ ├── es3_standby.S │ │ ├── es3_unipro.c │ │ └── es3_workram_standby.c ├── fpgatsb │ ├── Sources.mk │ └── defconfig └── tsb │ ├── Make.defs │ ├── Sources.mk │ ├── defconfig │ ├── include │ ├── chip.h │ ├── chipcfg.h │ ├── chipdef.h │ ├── tsb_dme.h │ ├── tsb_isaa.h │ ├── tsb_scm.h │ ├── tsb_unipro.h │ └── tsb_unipro_hw.h │ ├── scripts │ ├── common.ld │ ├── ld-workram.script │ ├── ld.script │ ├── ld_2ndstage.script │ ├── ld_3rdstage.script │ └── ld_signverify.script │ └── src │ ├── boot.S │ ├── copy_to_ram.S │ ├── tsb_chipapi.c │ ├── tsb_dbguart.c │ ├── tsb_gpio.c │ ├── tsb_isaa.c │ ├── tsb_scm.c │ ├── tsb_unipro.c │ └── tsb_utils.S ├── common ├── include │ ├── ara_mailbox.h │ ├── ara_tsb_dme.h │ ├── bootrom.h │ ├── chipapi.h │ ├── data_loading.h │ ├── debug.h │ ├── device_spi.h │ ├── efuse.h │ ├── error.h │ ├── gbboot.h │ ├── greybus.h │ ├── greybus_types.h │ ├── init_status.h │ ├── mipi_dme.h │ ├── nuttx_dev_if.h │ ├── secret_keys.h │ ├── special_test.h │ ├── spi-gb.h │ ├── string.h │ ├── tftf_crypto.h │ ├── unipro.h │ └── utils.h ├── shared_inc │ ├── 2ndstage_cfgdata.h │ ├── communication_area.h │ ├── crypto.h │ ├── ffff.h │ └── tftf.h ├── src │ ├── ara_mailbox.c │ ├── crypto.c │ ├── debug.c │ ├── epuid.c │ ├── error.c │ ├── ffff.c │ ├── gbboot.c │ ├── gbcore.c │ ├── secret_keys.c │ ├── spi-gb.c │ ├── tftf.c │ └── utils.c └── vendors │ └── MIRACL │ ├── Make.def │ ├── ara │ ├── Decorator.mk │ ├── DecoratorRuntime.mk │ ├── Makefile │ ├── MakefileRuntime │ ├── README.txt │ ├── Sources.mk │ ├── ara.pdf │ ├── build.bsh │ ├── config.mk │ ├── defconfig │ ├── docs │ │ ├── Ara.dox │ │ ├── Doxyfile │ │ └── README.txt │ ├── include │ │ ├── mcl_aes.h │ │ ├── mcl_arch.h │ │ ├── mcl_big.h │ │ ├── mcl_config.h │ │ ├── mcl_ecdh.h │ │ ├── mcl_ecdh_runtime.h │ │ ├── mcl_ecp.h │ │ ├── mcl_ff.h │ │ ├── mcl_fp.h │ │ ├── mcl_gcm.h │ │ ├── mcl_hash.h │ │ ├── mcl_oct.h │ │ ├── mcl_rand.h │ │ ├── mcl_rsa.h │ │ ├── mcl_rsa_runtime.h │ │ ├── mcl_utils.h │ │ └── mcl_x509.h │ ├── src │ │ ├── benchmark │ │ │ ├── time_ecdh.c │ │ │ └── time_rsa.c │ │ ├── lib │ │ │ ├── mcl_aes.c │ │ │ ├── mcl_big.c │ │ │ ├── mcl_ecdh.c │ │ │ ├── mcl_ecp.c │ │ │ ├── mcl_ff.c │ │ │ ├── mcl_fp.c │ │ │ ├── mcl_gcm.c │ │ │ ├── mcl_hash.c │ │ │ ├── mcl_oct.c │ │ │ ├── mcl_rand.c │ │ │ ├── mcl_rom.c │ │ │ ├── mcl_rsa.c │ │ │ └── mcl_x509.c │ │ └── tests │ │ │ ├── mcl_utils.c │ │ │ ├── test_ecdh.c │ │ │ ├── test_gcm_encrypt.c │ │ │ ├── test_hash.c │ │ │ ├── test_rsa.c │ │ │ ├── test_runtime.c │ │ │ ├── test_runtime_dev.c │ │ │ └── test_x509.c │ └── vectors │ │ ├── gcmEncryptExtIV128.rsp │ │ └── gcmEncryptExtIV256.rsp │ └── bootrom.c ├── configure ├── manifest ├── IID1-secondstage-fw ├── IID1-simple-bootrom-mnfs ├── es3-final-2-20151016-01.public.pem ├── es3-final-2-20151016-02.public.pem ├── es3-final-2-20151016-03.public.pem ├── es3-final-2-20151016-04.public.pem └── public_keys.c ├── testing.mk └── tools └── bin2verilog /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/.gitignore -------------------------------------------------------------------------------- /.reviewboardrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/.reviewboardrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/README -------------------------------------------------------------------------------- /Sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/Sources.mk -------------------------------------------------------------------------------- /apps/bootrom/Make.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/bootrom/Make.def -------------------------------------------------------------------------------- /apps/bootrom/Sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/bootrom/Sources.mk -------------------------------------------------------------------------------- /apps/bootrom/inc/appcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/bootrom/inc/appcfg.h -------------------------------------------------------------------------------- /apps/bootrom/src/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/bootrom/src/start.c -------------------------------------------------------------------------------- /apps/es3_boot_verify/Make.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/es3_boot_verify/Make.def -------------------------------------------------------------------------------- /apps/es3_boot_verify/Sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/es3_boot_verify/Sources.mk -------------------------------------------------------------------------------- /apps/es3_boot_verify/inc/appcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/es3_boot_verify/inc/appcfg.h -------------------------------------------------------------------------------- /apps/es3_boot_verify/src/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/es3_boot_verify/src/start.c -------------------------------------------------------------------------------- /apps/es3_boot_verify_restricted/Make.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/es3_boot_verify_restricted/Make.def -------------------------------------------------------------------------------- /apps/es3_boot_verify_restricted/Sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/es3_boot_verify_restricted/Sources.mk -------------------------------------------------------------------------------- /apps/es3_boot_verify_restricted/inc/appcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/es3_boot_verify_restricted/inc/appcfg.h -------------------------------------------------------------------------------- /apps/es3_boot_verify_restricted/src/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/es3_boot_verify_restricted/src/start.c -------------------------------------------------------------------------------- /apps/gbboot_server/Make.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/gbboot_server/Make.def -------------------------------------------------------------------------------- /apps/gbboot_server/Sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/gbboot_server/Sources.mk -------------------------------------------------------------------------------- /apps/gbboot_server/inc/appcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/gbboot_server/inc/appcfg.h -------------------------------------------------------------------------------- /apps/gbboot_server/inc/gbboot_fake_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/gbboot_server/inc/gbboot_fake_svc.h -------------------------------------------------------------------------------- /apps/gbboot_server/src/fake_svc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/gbboot_server/src/fake_svc.c -------------------------------------------------------------------------------- /apps/gbboot_server/src/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/gbboot_server/src/start.c -------------------------------------------------------------------------------- /apps/secondstage/MIRACL_cfg/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/secondstage/MIRACL_cfg/config.mk -------------------------------------------------------------------------------- /apps/secondstage/MIRACL_cfg/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/secondstage/MIRACL_cfg/defconfig -------------------------------------------------------------------------------- /apps/secondstage/Make.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/secondstage/Make.def -------------------------------------------------------------------------------- /apps/secondstage/Sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/secondstage/Sources.mk -------------------------------------------------------------------------------- /apps/secondstage/inc/appcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/secondstage/inc/appcfg.h -------------------------------------------------------------------------------- /apps/secondstage/src/cfgdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/secondstage/src/cfgdata.c -------------------------------------------------------------------------------- /apps/secondstage/src/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/secondstage/src/start.c -------------------------------------------------------------------------------- /apps/test3rdstage/Make.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/test3rdstage/Make.def -------------------------------------------------------------------------------- /apps/test3rdstage/Sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/test3rdstage/Sources.mk -------------------------------------------------------------------------------- /apps/test3rdstage/inc/appcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/test3rdstage/inc/appcfg.h -------------------------------------------------------------------------------- /apps/test3rdstage/src/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/apps/test3rdstage/src/start.c -------------------------------------------------------------------------------- /chips/es2tsb/Sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es2tsb/Sources.mk -------------------------------------------------------------------------------- /chips/es2tsb/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es2tsb/defconfig -------------------------------------------------------------------------------- /chips/es2tsb/include/es2_chipdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es2tsb/include/es2_chipdef.h -------------------------------------------------------------------------------- /chips/es2tsb/include/es2_unipro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es2tsb/include/es2_unipro.h -------------------------------------------------------------------------------- /chips/es2tsb/scripts/ld.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es2tsb/scripts/ld.script -------------------------------------------------------------------------------- /chips/es2tsb/src/es2_advertise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es2tsb/src/es2_advertise.c -------------------------------------------------------------------------------- /chips/es2tsb/src/es2_efuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es2tsb/src/es2_efuse.c -------------------------------------------------------------------------------- /chips/es2tsb/src/es2_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es2tsb/src/es2_spi.c -------------------------------------------------------------------------------- /chips/es2tsb/src/es2_standby.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es2tsb/src/es2_standby.S -------------------------------------------------------------------------------- /chips/es2tsb/src/es2_unipro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es2tsb/src/es2_unipro.c -------------------------------------------------------------------------------- /chips/es3tsb/Sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es3tsb/Sources.mk -------------------------------------------------------------------------------- /chips/es3tsb/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es3tsb/defconfig -------------------------------------------------------------------------------- /chips/es3tsb/include/es3_chipdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es3tsb/include/es3_chipdef.h -------------------------------------------------------------------------------- /chips/es3tsb/src/es3_advertise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es3tsb/src/es3_advertise.c -------------------------------------------------------------------------------- /chips/es3tsb/src/es3_efuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es3tsb/src/es3_efuse.c -------------------------------------------------------------------------------- /chips/es3tsb/src/es3_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es3tsb/src/es3_spi.c -------------------------------------------------------------------------------- /chips/es3tsb/src/es3_spi_master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es3tsb/src/es3_spi_master.c -------------------------------------------------------------------------------- /chips/es3tsb/src/es3_standby.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es3tsb/src/es3_standby.S -------------------------------------------------------------------------------- /chips/es3tsb/src/es3_unipro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es3tsb/src/es3_unipro.c -------------------------------------------------------------------------------- /chips/es3tsb/src/es3_workram_standby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/es3tsb/src/es3_workram_standby.c -------------------------------------------------------------------------------- /chips/fpgatsb/Sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/fpgatsb/Sources.mk -------------------------------------------------------------------------------- /chips/fpgatsb/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/fpgatsb/defconfig -------------------------------------------------------------------------------- /chips/tsb/Make.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/Make.defs -------------------------------------------------------------------------------- /chips/tsb/Sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/Sources.mk -------------------------------------------------------------------------------- /chips/tsb/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/defconfig -------------------------------------------------------------------------------- /chips/tsb/include/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/include/chip.h -------------------------------------------------------------------------------- /chips/tsb/include/chipcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/include/chipcfg.h -------------------------------------------------------------------------------- /chips/tsb/include/chipdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/include/chipdef.h -------------------------------------------------------------------------------- /chips/tsb/include/tsb_dme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/include/tsb_dme.h -------------------------------------------------------------------------------- /chips/tsb/include/tsb_isaa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/include/tsb_isaa.h -------------------------------------------------------------------------------- /chips/tsb/include/tsb_scm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/include/tsb_scm.h -------------------------------------------------------------------------------- /chips/tsb/include/tsb_unipro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/include/tsb_unipro.h -------------------------------------------------------------------------------- /chips/tsb/include/tsb_unipro_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/include/tsb_unipro_hw.h -------------------------------------------------------------------------------- /chips/tsb/scripts/common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/scripts/common.ld -------------------------------------------------------------------------------- /chips/tsb/scripts/ld-workram.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/scripts/ld-workram.script -------------------------------------------------------------------------------- /chips/tsb/scripts/ld.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/scripts/ld.script -------------------------------------------------------------------------------- /chips/tsb/scripts/ld_2ndstage.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/scripts/ld_2ndstage.script -------------------------------------------------------------------------------- /chips/tsb/scripts/ld_3rdstage.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/scripts/ld_3rdstage.script -------------------------------------------------------------------------------- /chips/tsb/scripts/ld_signverify.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/scripts/ld_signverify.script -------------------------------------------------------------------------------- /chips/tsb/src/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/src/boot.S -------------------------------------------------------------------------------- /chips/tsb/src/copy_to_ram.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/src/copy_to_ram.S -------------------------------------------------------------------------------- /chips/tsb/src/tsb_chipapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/src/tsb_chipapi.c -------------------------------------------------------------------------------- /chips/tsb/src/tsb_dbguart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/src/tsb_dbguart.c -------------------------------------------------------------------------------- /chips/tsb/src/tsb_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/src/tsb_gpio.c -------------------------------------------------------------------------------- /chips/tsb/src/tsb_isaa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/src/tsb_isaa.c -------------------------------------------------------------------------------- /chips/tsb/src/tsb_scm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/src/tsb_scm.c -------------------------------------------------------------------------------- /chips/tsb/src/tsb_unipro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/src/tsb_unipro.c -------------------------------------------------------------------------------- /chips/tsb/src/tsb_utils.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/chips/tsb/src/tsb_utils.S -------------------------------------------------------------------------------- /common/include/ara_mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/ara_mailbox.h -------------------------------------------------------------------------------- /common/include/ara_tsb_dme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/ara_tsb_dme.h -------------------------------------------------------------------------------- /common/include/bootrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/bootrom.h -------------------------------------------------------------------------------- /common/include/chipapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/chipapi.h -------------------------------------------------------------------------------- /common/include/data_loading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/data_loading.h -------------------------------------------------------------------------------- /common/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/debug.h -------------------------------------------------------------------------------- /common/include/device_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/device_spi.h -------------------------------------------------------------------------------- /common/include/efuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/efuse.h -------------------------------------------------------------------------------- /common/include/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/error.h -------------------------------------------------------------------------------- /common/include/gbboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/gbboot.h -------------------------------------------------------------------------------- /common/include/greybus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/greybus.h -------------------------------------------------------------------------------- /common/include/greybus_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/greybus_types.h -------------------------------------------------------------------------------- /common/include/init_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/init_status.h -------------------------------------------------------------------------------- /common/include/mipi_dme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/mipi_dme.h -------------------------------------------------------------------------------- /common/include/nuttx_dev_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/nuttx_dev_if.h -------------------------------------------------------------------------------- /common/include/secret_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/secret_keys.h -------------------------------------------------------------------------------- /common/include/special_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/special_test.h -------------------------------------------------------------------------------- /common/include/spi-gb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/spi-gb.h -------------------------------------------------------------------------------- /common/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/string.h -------------------------------------------------------------------------------- /common/include/tftf_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/tftf_crypto.h -------------------------------------------------------------------------------- /common/include/unipro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/unipro.h -------------------------------------------------------------------------------- /common/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/include/utils.h -------------------------------------------------------------------------------- /common/shared_inc/2ndstage_cfgdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/shared_inc/2ndstage_cfgdata.h -------------------------------------------------------------------------------- /common/shared_inc/communication_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/shared_inc/communication_area.h -------------------------------------------------------------------------------- /common/shared_inc/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/shared_inc/crypto.h -------------------------------------------------------------------------------- /common/shared_inc/ffff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/shared_inc/ffff.h -------------------------------------------------------------------------------- /common/shared_inc/tftf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/shared_inc/tftf.h -------------------------------------------------------------------------------- /common/src/ara_mailbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/src/ara_mailbox.c -------------------------------------------------------------------------------- /common/src/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/src/crypto.c -------------------------------------------------------------------------------- /common/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/src/debug.c -------------------------------------------------------------------------------- /common/src/epuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/src/epuid.c -------------------------------------------------------------------------------- /common/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/src/error.c -------------------------------------------------------------------------------- /common/src/ffff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/src/ffff.c -------------------------------------------------------------------------------- /common/src/gbboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/src/gbboot.c -------------------------------------------------------------------------------- /common/src/gbcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/src/gbcore.c -------------------------------------------------------------------------------- /common/src/secret_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/src/secret_keys.c -------------------------------------------------------------------------------- /common/src/spi-gb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/src/spi-gb.c -------------------------------------------------------------------------------- /common/src/tftf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/src/tftf.c -------------------------------------------------------------------------------- /common/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/src/utils.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/Make.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/Make.def -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/Decorator.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/Decorator.mk -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/DecoratorRuntime.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/DecoratorRuntime.mk -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/Makefile -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/MakefileRuntime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/MakefileRuntime -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/README.txt -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/Sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/Sources.mk -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/ara.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/ara.pdf -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/build.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/build.bsh -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/config.mk -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/defconfig -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/docs/Ara.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/docs/Ara.dox -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/docs/Doxyfile -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/docs/README.txt -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_aes.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_arch.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_big.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_big.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_config.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_ecdh.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_ecdh_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_ecdh_runtime.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_ecp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_ecp.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_ff.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_fp.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_gcm.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_hash.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_oct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_oct.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_rand.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_rsa.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_rsa_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_rsa_runtime.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_utils.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/include/mcl_x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/include/mcl_x509.h -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/benchmark/time_ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/benchmark/time_ecdh.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/benchmark/time_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/benchmark/time_rsa.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/lib/mcl_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/lib/mcl_aes.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/lib/mcl_big.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/lib/mcl_big.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/lib/mcl_ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/lib/mcl_ecdh.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/lib/mcl_ecp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/lib/mcl_ecp.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/lib/mcl_ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/lib/mcl_ff.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/lib/mcl_fp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/lib/mcl_fp.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/lib/mcl_gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/lib/mcl_gcm.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/lib/mcl_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/lib/mcl_hash.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/lib/mcl_oct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/lib/mcl_oct.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/lib/mcl_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/lib/mcl_rand.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/lib/mcl_rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/lib/mcl_rom.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/lib/mcl_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/lib/mcl_rsa.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/lib/mcl_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/lib/mcl_x509.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/tests/mcl_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/tests/mcl_utils.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/tests/test_ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/tests/test_ecdh.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/tests/test_gcm_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/tests/test_gcm_encrypt.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/tests/test_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/tests/test_hash.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/tests/test_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/tests/test_rsa.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/tests/test_runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/tests/test_runtime.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/tests/test_runtime_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/tests/test_runtime_dev.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/src/tests/test_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/src/tests/test_x509.c -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/vectors/gcmEncryptExtIV128.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/vectors/gcmEncryptExtIV128.rsp -------------------------------------------------------------------------------- /common/vendors/MIRACL/ara/vectors/gcmEncryptExtIV256.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/ara/vectors/gcmEncryptExtIV256.rsp -------------------------------------------------------------------------------- /common/vendors/MIRACL/bootrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/common/vendors/MIRACL/bootrom.c -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/configure -------------------------------------------------------------------------------- /manifest/IID1-secondstage-fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/manifest/IID1-secondstage-fw -------------------------------------------------------------------------------- /manifest/IID1-simple-bootrom-mnfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/manifest/IID1-simple-bootrom-mnfs -------------------------------------------------------------------------------- /manifest/es3-final-2-20151016-01.public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/manifest/es3-final-2-20151016-01.public.pem -------------------------------------------------------------------------------- /manifest/es3-final-2-20151016-02.public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/manifest/es3-final-2-20151016-02.public.pem -------------------------------------------------------------------------------- /manifest/es3-final-2-20151016-03.public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/manifest/es3-final-2-20151016-03.public.pem -------------------------------------------------------------------------------- /manifest/es3-final-2-20151016-04.public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/manifest/es3-final-2-20151016-04.public.pem -------------------------------------------------------------------------------- /manifest/public_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/manifest/public_keys.c -------------------------------------------------------------------------------- /testing.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/testing.mk -------------------------------------------------------------------------------- /tools/bin2verilog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectara/bootrom/HEAD/tools/bin2verilog --------------------------------------------------------------------------------