├── .checkpatch.conf ├── .cz.json ├── .editorconfig ├── .gitignore ├── .gitreview ├── .husky ├── .gitignore ├── commit-msg ├── commit-msg.commitlint ├── commit-msg.gerrit ├── prepare-commit-msg └── prepare-commit-msg.cz ├── Makefile ├── bl1 ├── aarch32 │ ├── bl1_arch_setup.c │ ├── bl1_context_mgmt.c │ ├── bl1_entrypoint.S │ └── bl1_exceptions.S ├── aarch64 │ ├── bl1_arch_setup.c │ ├── bl1_context_mgmt.c │ ├── bl1_entrypoint.S │ └── bl1_exceptions.S ├── bl1.ld.S ├── bl1.mk ├── bl1_fwu.c ├── bl1_main.c ├── bl1_private.h └── tbbr │ └── tbbr_img_desc.c ├── bl2 ├── aarch32 │ ├── bl2_arch_setup.c │ ├── bl2_el3_entrypoint.S │ ├── bl2_el3_exceptions.S │ └── bl2_entrypoint.S ├── aarch64 │ ├── bl2_arch_setup.c │ ├── bl2_el3_entrypoint.S │ ├── bl2_el3_exceptions.S │ └── bl2_entrypoint.S ├── bl2.ld.S ├── bl2.mk ├── bl2_el3.ld.S ├── bl2_image_load_v2.c ├── bl2_main.c └── bl2_private.h ├── bl2u ├── aarch32 │ └── bl2u_entrypoint.S ├── aarch64 │ └── bl2u_entrypoint.S ├── bl2u.ld.S ├── bl2u.mk └── bl2u_main.c ├── bl31 ├── aarch64 │ ├── bl31_entrypoint.S │ ├── crash_reporting.S │ ├── ea_delegate.S │ └── runtime_exceptions.S ├── bl31.ld.S ├── bl31.mk ├── bl31_context_mgmt.c ├── bl31_main.c ├── ehf.c └── interrupt_mgmt.c ├── bl32 ├── optee │ └── optee.mk ├── sp_min │ ├── aarch32 │ │ └── entrypoint.S │ ├── sp_min.ld.S │ ├── sp_min.mk │ ├── sp_min_main.c │ ├── sp_min_private.h │ ├── wa_cve_2017_5715_bpiall.S │ └── wa_cve_2017_5715_icache_inv.S └── tsp │ ├── aarch64 │ ├── tsp_entrypoint.S │ ├── tsp_exceptions.S │ └── tsp_request.S │ ├── tsp.ld.S │ ├── tsp.mk │ ├── tsp_interrupt.c │ ├── tsp_main.c │ ├── tsp_private.h │ └── tsp_timer.c ├── commitlint.config.js ├── common ├── aarch32 │ └── debug.S ├── aarch64 │ ├── debug.S │ └── early_exceptions.S ├── backtrace │ ├── backtrace.c │ └── backtrace.mk ├── bl_common.c ├── desc_image_load.c ├── fdt_fixup.c ├── fdt_wrappers.c ├── image_decompress.c ├── runtime_svc.c ├── tf_log.c └── uuid.c ├── dco.txt ├── docs ├── Makefile ├── _static │ └── css │ │ └── custom.css ├── about │ ├── acknowledgements.rst │ ├── contact.rst │ ├── features.rst │ ├── index.rst │ ├── maintainers.rst │ └── release-information.rst ├── change-log.rst ├── components │ ├── arm-sip-service.rst │ ├── cot-binding.rst │ ├── debugfs-design.rst │ ├── exception-handling.rst │ ├── fconf │ │ ├── fconf_properties.rst │ │ └── index.rst │ ├── ffa-manifest-binding.rst │ ├── firmware-update.rst │ ├── index.rst │ ├── measured_boot │ │ ├── event_log.rst │ │ └── index.rst │ ├── platform-interrupt-controller-API.rst │ ├── ras.rst │ ├── romlib-design.rst │ ├── sdei.rst │ ├── secure-partition-manager-mm.rst │ ├── secure-partition-manager.rst │ ├── spd │ │ ├── index.rst │ │ ├── optee-dispatcher.rst │ │ ├── tlk-dispatcher.rst │ │ └── trusty-dispatcher.rst │ └── xlat-tables-lib-v2-design.rst ├── conf.py ├── design │ ├── alt-boot-flows.rst │ ├── auth-framework.rst │ ├── cpu-specific-build-macros.rst │ ├── firmware-design.rst │ ├── index.rst │ ├── interrupt-framework-design.rst │ ├── psci-pd-tree.rst │ ├── reset-design.rst │ ├── trusted-board-boot-build.rst │ └── trusted-board-boot.rst ├── design_documents │ ├── cmake_framework.rst │ └── index.rst ├── getting_started │ ├── build-options.rst │ ├── docs-build.rst │ ├── image-terminology.rst │ ├── index.rst │ ├── initial-build.rst │ ├── porting-guide.rst │ ├── prerequisites.rst │ ├── psci-lib-integration-guide.rst │ ├── rt-svc-writers-guide.rst │ └── tools-build.rst ├── global_substitutions.txt ├── glossary.rst ├── index.rst ├── license.rst ├── perf │ ├── index.rst │ ├── performance-monitoring-unit.rst │ ├── psci-performance-juno.rst │ └── tsp.rst ├── plat │ ├── allwinner.rst │ ├── arm │ │ ├── arm-build-options.rst │ │ ├── arm_fpga │ │ │ └── index.rst │ │ ├── fvp-ve │ │ │ └── index.rst │ │ ├── fvp │ │ │ └── index.rst │ │ ├── index.rst │ │ ├── juno │ │ │ └── index.rst │ │ ├── morello │ │ │ └── index.rst │ │ └── tc0 │ │ │ └── index.rst │ ├── brcm-stingray.rst │ ├── deprecated.rst │ ├── hikey.rst │ ├── hikey960.rst │ ├── imx8.rst │ ├── imx8m.rst │ ├── index.rst │ ├── intel-agilex.rst │ ├── intel-stratix10.rst │ ├── ls1043a.rst │ ├── marvell │ │ ├── armada │ │ │ ├── build.rst │ │ │ ├── misc │ │ │ │ ├── mvebu-a8k-addr-map.rst │ │ │ │ ├── mvebu-amb.rst │ │ │ │ ├── mvebu-ccu.rst │ │ │ │ ├── mvebu-io-win.rst │ │ │ │ └── mvebu-iob.rst │ │ │ └── porting.rst │ │ └── index.rst │ ├── meson-axg.rst │ ├── meson-g12a.rst │ ├── meson-gxbb.rst │ ├── meson-gxl.rst │ ├── mt8183.rst │ ├── mt8192.rst │ ├── mt8195.rst │ ├── nvidia-tegra.rst │ ├── poplar.rst │ ├── qemu-sbsa.rst │ ├── qemu.rst │ ├── qti.rst │ ├── rcar-gen3.rst │ ├── rockchip.rst │ ├── rpi3.rst │ ├── rpi4.rst │ ├── rz-g2.rst │ ├── socionext-uniphier.rst │ ├── stm32mp1.rst │ ├── synquacer.rst │ ├── ti-k3.rst │ ├── warp7.rst │ ├── xilinx-versal.rst │ └── xilinx-zynqmp.rst ├── process │ ├── code-review-guidelines.rst │ ├── coding-guidelines.rst │ ├── coding-style.rst │ ├── contributing.rst │ ├── faq.rst │ ├── index.rst │ ├── platform-compatibility-policy.rst │ ├── security-hardening.rst │ └── security.rst ├── requirements.txt ├── resources │ ├── TrustedFirmware-Logo_standard-white.png │ └── diagrams │ │ ├── FIP_in_a_GPT_image.png │ │ ├── MMU-600.png │ │ ├── Makefile │ │ ├── cmake_framework_structure.png │ │ ├── cmake_framework_workflow.png │ │ ├── default_reset_code.png │ │ ├── draw.io │ │ ├── ehf.svg │ │ ├── ehf.xml │ │ ├── ras.svg │ │ └── ras.xml │ │ ├── ff-a-spm-sel2.png │ │ ├── ffa-ns-interrupt-handling-managed-exit.png │ │ ├── ffa-ns-interrupt-handling-sp-preemption.png │ │ ├── fwu_flow.png │ │ ├── fwu_states.png │ │ ├── int_handling.dia │ │ ├── non-sec-int-handling.png │ │ ├── plantuml │ │ ├── bl2-loading-sp.puml │ │ ├── fconf_bl1_load_config.puml │ │ ├── fconf_bl2_populate.puml │ │ ├── fip-secure-partitions.puml │ │ ├── io_arm_class_diagram.puml │ │ ├── io_dev_init_and_check.puml │ │ ├── io_dev_registration.puml │ │ ├── io_framework_usage_overview.puml │ │ ├── sdei_explicit_dispatch.puml │ │ ├── sdei_general.puml │ │ └── tfa_dfd.puml │ │ ├── psci-suspend-sequence.png │ │ ├── reset_code_flow.dia │ │ ├── reset_code_no_boot_type_check.png │ │ ├── reset_code_no_checks.png │ │ ├── reset_code_no_cpu_check.png │ │ ├── romlib_design.dia │ │ ├── romlib_design.png │ │ ├── romlib_wrapper.dia │ │ ├── romlib_wrapper.png │ │ ├── rt-svc-descs-layout.png │ │ ├── sec-int-handling.png │ │ ├── secure_sw_stack_sp.png │ │ ├── secure_sw_stack_tos.png │ │ ├── xlat_align.dia │ │ └── xlat_align.png ├── security_advisories │ ├── index.rst │ ├── security-advisory-tfv-1.rst │ ├── security-advisory-tfv-2.rst │ ├── security-advisory-tfv-3.rst │ ├── security-advisory-tfv-4.rst │ ├── security-advisory-tfv-5.rst │ ├── security-advisory-tfv-6.rst │ ├── security-advisory-tfv-7.rst │ └── security-advisory-tfv-8.rst └── threat_model │ ├── index.rst │ └── threat_model.rst ├── drivers ├── allwinner │ ├── axp │ │ ├── axp803.c │ │ ├── axp805.c │ │ └── common.c │ ├── sunxi_msgbox.c │ └── sunxi_rsb.c ├── amlogic │ ├── console │ │ └── aarch64 │ │ │ └── meson_console.S │ └── crypto │ │ └── sha_dma.c ├── arm │ ├── cci │ │ └── cci.c │ ├── ccn │ │ ├── ccn.c │ │ └── ccn_private.h │ ├── css │ │ ├── mhu │ │ │ ├── css_mhu.c │ │ │ └── css_mhu_doorbell.c │ │ ├── scmi │ │ │ ├── scmi_ap_core_proto.c │ │ │ ├── scmi_common.c │ │ │ ├── scmi_private.h │ │ │ ├── scmi_pwr_dmn_proto.c │ │ │ ├── scmi_sys_pwr_proto.c │ │ │ └── vendor │ │ │ │ ├── scmi_sq.c │ │ │ │ └── scmi_sq.h │ │ ├── scp │ │ │ ├── css_bom_bootloader.c │ │ │ ├── css_pm_scmi.c │ │ │ ├── css_pm_scpi.c │ │ │ └── css_sds.c │ │ ├── scpi │ │ │ └── css_scpi.c │ │ └── sds │ │ │ ├── aarch32 │ │ │ └── sds_helpers.S │ │ │ ├── aarch64 │ │ │ └── sds_helpers.S │ │ │ ├── sds.c │ │ │ └── sds_private.h │ ├── dcc │ │ └── dcc_console.c │ ├── ethosn │ │ └── ethosn_smc.c │ ├── fvp │ │ └── fvp_pwrc.c │ ├── gic │ │ ├── common │ │ │ ├── gic_common.c │ │ │ └── gic_common_private.h │ │ ├── v2 │ │ │ ├── gicdv2_helpers.c │ │ │ ├── gicv2.mk │ │ │ ├── gicv2_helpers.c │ │ │ ├── gicv2_main.c │ │ │ └── gicv2_private.h │ │ └── v3 │ │ │ ├── arm_gicv3_common.c │ │ │ ├── gic-x00.c │ │ │ ├── gic600_multichip.c │ │ │ ├── gic600_multichip_private.h │ │ │ ├── gicdv3_helpers.c │ │ │ ├── gicrv3_helpers.c │ │ │ ├── gicv3.mk │ │ │ ├── gicv3_helpers.c │ │ │ ├── gicv3_main.c │ │ │ └── gicv3_private.h │ ├── pl011 │ │ ├── aarch32 │ │ │ └── pl011_console.S │ │ └── aarch64 │ │ │ └── pl011_console.S │ ├── pl061 │ │ └── pl061_gpio.c │ ├── sbsa │ │ └── sbsa.c │ ├── scu │ │ └── scu.c │ ├── smmu │ │ └── smmu_v3.c │ ├── sp804 │ │ └── sp804_delay_timer.c │ ├── sp805 │ │ └── sp805.c │ └── tzc │ │ ├── tzc380.c │ │ ├── tzc400.c │ │ ├── tzc_common_private.h │ │ ├── tzc_dmc500.c │ │ └── tzc_dmc620.c ├── auth │ ├── auth_mod.c │ ├── crypto_mod.c │ ├── cryptocell │ │ ├── 712 │ │ │ ├── cryptocell_crypto.c │ │ │ └── cryptocell_plat_helpers.c │ │ ├── 713 │ │ │ ├── cryptocell_crypto.c │ │ │ └── cryptocell_plat_helpers.c │ │ └── cryptocell_crypto.mk │ ├── dualroot │ │ └── cot.c │ ├── img_parser_mod.c │ ├── mbedtls │ │ ├── mbedtls_common.c │ │ ├── mbedtls_common.mk │ │ ├── mbedtls_crypto.c │ │ ├── mbedtls_crypto.mk │ │ ├── mbedtls_x509.mk │ │ └── mbedtls_x509_parser.c │ └── tbbr │ │ ├── tbbr_cot_bl1.c │ │ ├── tbbr_cot_bl2.c │ │ └── tbbr_cot_common.c ├── brcm │ ├── chimp.c │ ├── emmc │ │ ├── emmc_chal_sd.c │ │ ├── emmc_csl_sdcard.c │ │ ├── emmc_csl_sdcmd.c │ │ └── emmc_pboot_hal_memory_drv.c │ ├── i2c │ │ └── i2c.c │ ├── iproc_gpio.c │ ├── mdio │ │ └── mdio.c │ ├── ocotp.c │ ├── rng.c │ ├── scp.c │ ├── sotp.c │ ├── spi │ │ ├── iproc_qspi.c │ │ ├── iproc_qspi.h │ │ └── iproc_spi.c │ ├── spi_flash.c │ └── spi_sf.c ├── cadence │ └── uart │ │ └── aarch64 │ │ └── cdns_console.S ├── cfi │ └── v2m │ │ └── v2m_flash.c ├── console │ ├── aarch32 │ │ └── skeleton_console.S │ ├── aarch64 │ │ └── skeleton_console.S │ └── multi_console.c ├── coreboot │ └── cbmem_console │ │ └── aarch64 │ │ └── cbmem_console.S ├── delay_timer │ ├── delay_timer.c │ └── generic_delay_timer.c ├── gpio │ └── gpio.c ├── imx │ ├── timer │ │ ├── imx_gpt.c │ │ └── imx_gpt.h │ ├── uart │ │ ├── imx_crash_uart.S │ │ ├── imx_uart.c │ │ └── imx_uart.h │ └── usdhc │ │ ├── imx_usdhc.c │ │ └── imx_usdhc.h ├── intel │ └── soc │ │ └── stratix10 │ │ └── io │ │ └── s10_memmap_qspi.c ├── io │ ├── io_block.c │ ├── io_dummy.c │ ├── io_encrypted.c │ ├── io_fip.c │ ├── io_memmap.c │ ├── io_mtd.c │ ├── io_semihosting.c │ └── io_storage.c ├── marvell │ ├── amb_adec.c │ ├── ap807_clocks_init.c │ ├── cache_llc.c │ ├── ccu.c │ ├── comphy.h │ ├── comphy │ │ ├── comphy-cp110.h │ │ ├── phy-comphy-3700.c │ │ ├── phy-comphy-3700.h │ │ ├── phy-comphy-common.h │ │ ├── phy-comphy-cp110.c │ │ ├── phy-comphy-cp110.h │ │ └── phy-default-porting-layer.h │ ├── ddr_phy_access.c │ ├── ddr_phy_access.h │ ├── gwin.c │ ├── io_win.c │ ├── iob.c │ ├── mc_trustzone │ │ ├── mc_trustzone.c │ │ └── mc_trustzone.h │ ├── mci.c │ ├── mg_conf_cm3 │ │ ├── mg_conf_cm3.c │ │ └── mg_conf_cm3.h │ ├── mochi │ │ ├── ap807_setup.c │ │ ├── apn806_setup.c │ │ └── cp110_setup.c │ ├── secure_dfx_access │ │ ├── armada_thermal.c │ │ ├── dfx.h │ │ └── misc_dfx.c │ ├── thermal.c │ └── uart │ │ └── a3700_console.S ├── measured_boot │ ├── event_log.c │ ├── event_print.c │ ├── measured_boot.c │ └── measured_boot.mk ├── mentor │ └── i2c │ │ └── mi2cv.c ├── mmc │ └── mmc.c ├── mtd │ ├── nand │ │ ├── core.c │ │ ├── raw_nand.c │ │ └── spi_nand.c │ ├── nor │ │ └── spi_nor.c │ └── spi-mem │ │ └── spi_mem.c ├── nxp │ ├── auth │ │ ├── csf_hdr_parser │ │ │ ├── cot.c │ │ │ ├── csf_hdr.h │ │ │ ├── csf_hdr.mk │ │ │ ├── csf_hdr_parser.c │ │ │ ├── input_bl2_ch2 │ │ │ ├── input_bl2_ch3 │ │ │ ├── input_bl2_ch3_2 │ │ │ ├── input_blx_ch2 │ │ │ ├── input_blx_ch3 │ │ │ ├── input_pbi_ch3 │ │ │ ├── input_pbi_ch3_2 │ │ │ └── plat_img_parser.c │ │ └── tbbr │ │ │ └── tbbr_cot.c │ ├── console │ │ ├── 16550_console.S │ │ ├── console.mk │ │ ├── console_16550.c │ │ ├── console_pl011.c │ │ └── plat_console.h │ ├── crypto │ │ └── caam │ │ │ ├── caam.mk │ │ │ ├── include │ │ │ ├── caam.h │ │ │ ├── caam_io.h │ │ │ ├── hash.h │ │ │ ├── jobdesc.h │ │ │ ├── jr_driver_config.h │ │ │ ├── rsa.h │ │ │ ├── sec_hw_specific.h │ │ │ └── sec_jr_driver.h │ │ │ └── src │ │ │ ├── auth │ │ │ ├── auth.mk │ │ │ ├── hash.c │ │ │ ├── nxp_crypto.c │ │ │ └── rsa.c │ │ │ ├── caam.c │ │ │ ├── hw_key_blob.c │ │ │ ├── jobdesc.c │ │ │ ├── rng.c │ │ │ ├── sec_hw_specific.c │ │ │ └── sec_jr_driver.c │ ├── csu │ │ ├── csu.c │ │ ├── csu.h │ │ └── csu.mk │ ├── dcfg │ │ ├── dcfg.c │ │ ├── dcfg.h │ │ ├── dcfg.mk │ │ ├── dcfg_lsch2.h │ │ ├── dcfg_lsch3.h │ │ └── scfg.h │ ├── ddr │ │ ├── fsl-mmdc │ │ │ ├── ddr.mk │ │ │ ├── fsl_mmdc.c │ │ │ └── fsl_mmdc.h │ │ ├── include │ │ │ ├── ddr.h │ │ │ ├── ddr_io.h │ │ │ ├── dimm.h │ │ │ ├── immap.h │ │ │ ├── opts.h │ │ │ ├── regs.h │ │ │ └── utility.h │ │ ├── nxp-ddr │ │ │ ├── README.odt │ │ │ ├── ddr.c │ │ │ ├── ddr.mk │ │ │ ├── ddrc.c │ │ │ ├── dimm.c │ │ │ ├── regs.c │ │ │ └── utility.c │ │ ├── phy-gen1 │ │ │ └── phy.c │ │ └── phy-gen2 │ │ │ ├── csr.h │ │ │ ├── ddr4fw.h │ │ │ ├── ddrphy.mk │ │ │ ├── input.h │ │ │ ├── messages.h │ │ │ ├── phy.c │ │ │ ├── phy.h │ │ │ └── pie.h │ ├── drivers.mk │ ├── flexspi │ │ └── nor │ │ │ ├── flexspi_nor.c │ │ │ ├── flexspi_nor.h │ │ │ ├── flexspi_nor.mk │ │ │ ├── fspi.c │ │ │ ├── fspi.h │ │ │ └── test_fspi.c │ ├── gic │ │ ├── gic.mk │ │ ├── include │ │ │ ├── gicv2 │ │ │ │ └── plat_gic.h │ │ │ └── gicv3 │ │ │ │ └── plat_gic.h │ │ ├── ls_gicv2.c │ │ └── ls_gicv3.c │ ├── gpio │ │ ├── gpio.mk │ │ ├── nxp_gpio.c │ │ └── nxp_gpio.h │ ├── i2c │ │ ├── i2c.c │ │ ├── i2c.h │ │ └── i2c.mk │ ├── interconnect │ │ ├── interconnect.mk │ │ ├── ls_cci.c │ │ ├── ls_ccn.c │ │ └── ls_interconnect.h │ ├── pmu │ │ ├── pmu.c │ │ ├── pmu.h │ │ └── pmu.mk │ ├── qspi │ │ ├── qspi.c │ │ ├── qspi.h │ │ └── qspi.mk │ ├── sd │ │ ├── sd_mmc.c │ │ ├── sd_mmc.h │ │ └── sd_mmc.mk │ ├── sec_mon │ │ ├── sec_mon.mk │ │ ├── snvs.c │ │ └── snvs.h │ ├── sfp │ │ ├── fuse_prov.c │ │ ├── fuse_prov.h │ │ ├── sfp.c │ │ ├── sfp.h │ │ ├── sfp.mk │ │ └── sfp_error_codes.h │ ├── timer │ │ ├── nxp_timer.c │ │ ├── nxp_timer.h │ │ └── timer.mk │ └── tzc │ │ ├── plat_tzc400.c │ │ ├── plat_tzc400.h │ │ └── tzc.mk ├── partition │ ├── gpt.c │ └── partition.c ├── rambus │ └── trng_ip_76.c ├── renesas │ ├── common │ │ ├── auth │ │ │ └── auth_mod.c │ │ ├── avs │ │ │ ├── avs_driver.c │ │ │ └── avs_driver.h │ │ ├── common.c │ │ ├── console │ │ │ ├── rcar_console.S │ │ │ ├── rcar_printf.c │ │ │ └── rcar_printf.h │ │ ├── ddr │ │ │ ├── boot_init_dram.h │ │ │ ├── ddr.mk │ │ │ ├── ddr_a │ │ │ │ ├── boot_init_dram_regdef.h │ │ │ │ ├── ddr_a.mk │ │ │ │ ├── ddr_init_d3.c │ │ │ │ ├── ddr_init_e3.c │ │ │ │ └── ddr_init_v3m.c │ │ │ ├── ddr_b │ │ │ │ ├── boot_init_dram.c │ │ │ │ ├── boot_init_dram_config.c │ │ │ │ ├── boot_init_dram_regdef.h │ │ │ │ ├── ddr_b.mk │ │ │ │ ├── ddr_regdef.h │ │ │ │ ├── init_dram_tbl_h3.h │ │ │ │ ├── init_dram_tbl_h3ver2.h │ │ │ │ ├── init_dram_tbl_m3.h │ │ │ │ └── init_dram_tbl_m3n.h │ │ │ ├── dram_sub_func.c │ │ │ └── dram_sub_func.h │ │ ├── ddr_regs.h │ │ ├── delay │ │ │ ├── micro_delay.c │ │ │ └── micro_delay.h │ │ ├── dma │ │ │ └── dma_driver.c │ │ ├── emmc │ │ │ ├── emmc_cmd.c │ │ │ ├── emmc_config.h │ │ │ ├── emmc_def.h │ │ │ ├── emmc_hal.h │ │ │ ├── emmc_init.c │ │ │ ├── emmc_interrupt.c │ │ │ ├── emmc_mount.c │ │ │ ├── emmc_read.c │ │ │ ├── emmc_registers.h │ │ │ ├── emmc_std.h │ │ │ └── emmc_utility.c │ │ ├── iic_dvfs │ │ │ ├── iic_dvfs.c │ │ │ └── iic_dvfs.h │ │ ├── io │ │ │ ├── io_common.h │ │ │ ├── io_emmcdrv.c │ │ │ ├── io_emmcdrv.h │ │ │ ├── io_memdrv.c │ │ │ ├── io_memdrv.h │ │ │ ├── io_private.h │ │ │ ├── io_rcar.c │ │ │ └── io_rcar.h │ │ ├── pfc_regs.h │ │ ├── pwrc │ │ │ ├── call_sram.S │ │ │ ├── pwrc.c │ │ │ └── pwrc.h │ │ ├── qos_reg.h │ │ ├── rom │ │ │ ├── rom_api.c │ │ │ └── rom_api.h │ │ ├── rpc │ │ │ ├── rpc_driver.c │ │ │ └── rpc_registers.h │ │ ├── scif │ │ │ └── scif.S │ │ └── watchdog │ │ │ └── swdt.c │ ├── rcar │ │ ├── board │ │ │ ├── board.c │ │ │ └── board.h │ │ ├── cpld │ │ │ ├── ulcb_cpld.c │ │ │ └── ulcb_cpld.h │ │ ├── pfc │ │ │ ├── D3 │ │ │ │ ├── pfc_init_d3.c │ │ │ │ └── pfc_init_d3.h │ │ │ ├── E3 │ │ │ │ ├── pfc_init_e3.c │ │ │ │ └── pfc_init_e3.h │ │ │ ├── H3 │ │ │ │ ├── pfc_init_h3_v1.c │ │ │ │ ├── pfc_init_h3_v1.h │ │ │ │ ├── pfc_init_h3_v2.c │ │ │ │ └── pfc_init_h3_v2.h │ │ │ ├── M3 │ │ │ │ ├── pfc_init_m3.c │ │ │ │ └── pfc_init_m3.h │ │ │ ├── M3N │ │ │ │ ├── pfc_init_m3n.c │ │ │ │ └── pfc_init_m3n.h │ │ │ ├── V3M │ │ │ │ ├── pfc_init_v3m.c │ │ │ │ └── pfc_init_v3m.h │ │ │ ├── pfc.mk │ │ │ └── pfc_init.c │ │ └── qos │ │ │ ├── D3 │ │ │ ├── qos_init_d3.c │ │ │ ├── qos_init_d3.h │ │ │ └── qos_init_d3_mstat.h │ │ │ ├── E3 │ │ │ ├── qos_init_e3_v10.c │ │ │ ├── qos_init_e3_v10.h │ │ │ ├── qos_init_e3_v10_mstat390.h │ │ │ └── qos_init_e3_v10_mstat780.h │ │ │ ├── H3 │ │ │ ├── qos_init_h3_v10.c │ │ │ ├── qos_init_h3_v10.h │ │ │ ├── qos_init_h3_v10_mstat.h │ │ │ ├── qos_init_h3_v11.c │ │ │ ├── qos_init_h3_v11.h │ │ │ ├── qos_init_h3_v11_mstat.h │ │ │ ├── qos_init_h3_v20.c │ │ │ ├── qos_init_h3_v20.h │ │ │ ├── qos_init_h3_v20_mstat195.h │ │ │ ├── qos_init_h3_v20_mstat390.h │ │ │ ├── qos_init_h3_v20_qoswt195.h │ │ │ ├── qos_init_h3_v20_qoswt390.h │ │ │ ├── qos_init_h3_v30.c │ │ │ ├── qos_init_h3_v30.h │ │ │ ├── qos_init_h3_v30_mstat195.h │ │ │ ├── qos_init_h3_v30_mstat390.h │ │ │ ├── qos_init_h3_v30_qoswt195.h │ │ │ ├── qos_init_h3_v30_qoswt390.h │ │ │ ├── qos_init_h3n_v30.c │ │ │ ├── qos_init_h3n_v30.h │ │ │ ├── qos_init_h3n_v30_mstat195.h │ │ │ ├── qos_init_h3n_v30_mstat390.h │ │ │ ├── qos_init_h3n_v30_qoswt195.h │ │ │ └── qos_init_h3n_v30_qoswt390.h │ │ │ ├── M3 │ │ │ ├── qos_init_m3_v10.c │ │ │ ├── qos_init_m3_v10.h │ │ │ ├── qos_init_m3_v10_mstat.h │ │ │ ├── qos_init_m3_v11.c │ │ │ ├── qos_init_m3_v11.h │ │ │ ├── qos_init_m3_v11_mstat195.h │ │ │ ├── qos_init_m3_v11_mstat390.h │ │ │ ├── qos_init_m3_v11_qoswt195.h │ │ │ ├── qos_init_m3_v11_qoswt390.h │ │ │ ├── qos_init_m3_v30.c │ │ │ ├── qos_init_m3_v30.h │ │ │ ├── qos_init_m3_v30_mstat195.h │ │ │ ├── qos_init_m3_v30_mstat390.h │ │ │ ├── qos_init_m3_v30_qoswt195.h │ │ │ └── qos_init_m3_v30_qoswt390.h │ │ │ ├── M3N │ │ │ ├── qos_init_m3n_v10.c │ │ │ ├── qos_init_m3n_v10.h │ │ │ ├── qos_init_m3n_v10_mstat195.h │ │ │ ├── qos_init_m3n_v10_mstat390.h │ │ │ ├── qos_init_m3n_v10_qoswt195.h │ │ │ └── qos_init_m3n_v10_qoswt390.h │ │ │ ├── V3M │ │ │ ├── qos_init_v3m.c │ │ │ ├── qos_init_v3m.h │ │ │ └── qos_init_v3m_mstat.h │ │ │ ├── qos.mk │ │ │ ├── qos_common.h │ │ │ ├── qos_init.c │ │ │ └── qos_init.h │ ├── rcar_gen4 │ │ ├── pwrc │ │ │ ├── call_sram.S │ │ │ ├── pwrc.c │ │ │ └── pwrc.h │ │ └── scif │ │ │ ├── scif.c │ │ │ ├── scif.h │ │ │ └── scif_helpers.S │ └── rzg │ │ ├── board │ │ ├── board.c │ │ └── board.h │ │ ├── pfc │ │ ├── G2E │ │ │ ├── pfc_init_g2e.c │ │ │ └── pfc_init_g2e.h │ │ ├── G2H │ │ │ ├── pfc_init_g2h.c │ │ │ └── pfc_init_g2h.h │ │ ├── G2M │ │ │ ├── pfc_init_g2m.c │ │ │ └── pfc_init_g2m.h │ │ ├── G2N │ │ │ ├── pfc_init_g2n.c │ │ │ └── pfc_init_g2n.h │ │ ├── pfc.mk │ │ └── pfc_init.c │ │ └── qos │ │ ├── G2E │ │ ├── qos_init_g2e_v10.c │ │ ├── qos_init_g2e_v10.h │ │ ├── qos_init_g2e_v10_mstat390.h │ │ └── qos_init_g2e_v10_mstat780.h │ │ ├── G2H │ │ ├── qos_init_g2h_mstat195.h │ │ ├── qos_init_g2h_mstat390.h │ │ ├── qos_init_g2h_qoswt195.h │ │ ├── qos_init_g2h_qoswt390.h │ │ ├── qos_init_g2h_v30.c │ │ └── qos_init_g2h_v30.h │ │ ├── G2M │ │ ├── qos_init_g2m_v10.c │ │ ├── qos_init_g2m_v10.h │ │ ├── qos_init_g2m_v10_mstat.h │ │ ├── qos_init_g2m_v11.c │ │ ├── qos_init_g2m_v11.h │ │ ├── qos_init_g2m_v11_mstat195.h │ │ ├── qos_init_g2m_v11_mstat390.h │ │ ├── qos_init_g2m_v11_qoswt195.h │ │ ├── qos_init_g2m_v11_qoswt390.h │ │ ├── qos_init_g2m_v30.c │ │ ├── qos_init_g2m_v30.h │ │ ├── qos_init_g2m_v30_mstat195.h │ │ ├── qos_init_g2m_v30_mstat390.h │ │ ├── qos_init_g2m_v30_qoswt195.h │ │ └── qos_init_g2m_v30_qoswt390.h │ │ ├── G2N │ │ ├── qos_init_g2n_v10.c │ │ ├── qos_init_g2n_v10.h │ │ ├── qos_init_g2n_v10_mstat195.h │ │ ├── qos_init_g2n_v10_mstat390.h │ │ ├── qos_init_g2n_v10_qoswt195.h │ │ └── qos_init_g2n_v10_qoswt390.h │ │ ├── qos.mk │ │ ├── qos_common.h │ │ ├── qos_init.c │ │ └── qos_init.h ├── rpi3 │ ├── gpio │ │ └── rpi3_gpio.c │ ├── mailbox │ │ └── rpi3_mbox.c │ ├── rng │ │ └── rpi3_rng.c │ └── sdhost │ │ └── rpi3_sdhost.c ├── scmi-msg │ ├── base.c │ ├── base.h │ ├── clock.c │ ├── clock.h │ ├── common.h │ ├── entry.c │ ├── reset_domain.c │ ├── reset_domain.h │ └── smt.c ├── st │ ├── bsec │ │ └── bsec.c │ ├── clk │ │ ├── stm32mp1_clk.c │ │ └── stm32mp_clkfunc.c │ ├── crypto │ │ └── stm32_hash.c │ ├── ddr │ │ ├── stm32mp1_ddr.c │ │ ├── stm32mp1_ddr_helpers.c │ │ └── stm32mp1_ram.c │ ├── etzpc │ │ └── etzpc.c │ ├── fmc │ │ └── stm32_fmc2_nand.c │ ├── gpio │ │ └── stm32_gpio.c │ ├── i2c │ │ └── stm32_i2c.c │ ├── io │ │ ├── io_mmc.c │ │ └── io_stm32image.c │ ├── iwdg │ │ └── stm32_iwdg.c │ ├── mmc │ │ └── stm32_sdmmc2.c │ ├── pmic │ │ ├── stm32mp_pmic.c │ │ └── stpmic1.c │ ├── reset │ │ └── stm32mp1_reset.c │ ├── spi │ │ └── stm32_qspi.c │ └── uart │ │ └── aarch32 │ │ └── stm32_console.S ├── synopsys │ ├── emmc │ │ └── dw_mmc.c │ └── ufs │ │ └── dw_ufs.c ├── ti │ └── uart │ │ ├── aarch32 │ │ └── 16550_console.S │ │ └── aarch64 │ │ └── 16550_console.S └── ufs │ └── ufs.c ├── fdts ├── a5ds.dts ├── arm_fpga.dts ├── corstone700.dtsi ├── corstone700_fpga.dts ├── corstone700_fvp.dts ├── cot_descriptors.dtsi ├── fvp-base-gicv2-psci-aarch32.dts ├── fvp-base-gicv2-psci.dts ├── fvp-base-gicv3-psci-1t.dts ├── fvp-base-gicv3-psci-aarch32-1t.dts ├── fvp-base-gicv3-psci-aarch32-common.dtsi ├── fvp-base-gicv3-psci-aarch32.dts ├── fvp-base-gicv3-psci-common.dtsi ├── fvp-base-gicv3-psci-dynamiq-2t.dts ├── fvp-base-gicv3-psci-dynamiq-common.dtsi ├── fvp-base-gicv3-psci-dynamiq.dts ├── fvp-base-gicv3-psci.dts ├── fvp-defs-dynamiq.dtsi ├── fvp-defs.dtsi ├── fvp-foundation-gicv2-psci.dts ├── fvp-foundation-gicv3-psci.dts ├── fvp-foundation-motherboard.dtsi ├── fvp-ve-Cortex-A5x1.dts ├── fvp-ve-Cortex-A7x1.dts ├── juno-ethosn.dtsi ├── juno.dts ├── morello-fvp.dts ├── morello.dtsi ├── n1sdp-multi-chip.dts ├── n1sdp-single-chip.dts ├── n1sdp.dtsi ├── rtsm_ve-motherboard-aarch32.dtsi ├── rtsm_ve-motherboard.dtsi ├── stm32mp15-ddr.dtsi ├── stm32mp15-ddr3-1x4Gb-1066-binG.dtsi ├── stm32mp15-ddr3-2x4Gb-1066-binG.dtsi ├── stm32mp15-pinctrl.dtsi ├── stm32mp151.dtsi ├── stm32mp153.dtsi ├── stm32mp157.dtsi ├── stm32mp157a-avenger96.dts ├── stm32mp157a-dk1.dts ├── stm32mp157c-dk2.dts ├── stm32mp157c-ed1.dts ├── stm32mp157c-ev1.dts ├── stm32mp157c-lxa-mc1.dts ├── stm32mp157c-odyssey-som.dtsi ├── stm32mp157c-odyssey.dts ├── stm32mp15xc.dtsi ├── stm32mp15xx-dkx.dtsi ├── stm32mp15xx-osd32.dtsi ├── stm32mp15xxaa-pinctrl.dtsi ├── stm32mp15xxab-pinctrl.dtsi ├── stm32mp15xxac-pinctrl.dtsi ├── stm32mp15xxad-pinctrl.dtsi └── tc0.dts ├── include ├── arch │ ├── aarch32 │ │ ├── arch.h │ │ ├── arch_features.h │ │ ├── arch_helpers.h │ │ ├── asm_macros.S │ │ ├── assert_macros.S │ │ ├── console_macros.S │ │ ├── el3_common_macros.S │ │ ├── smccc_helpers.h │ │ └── smccc_macros.S │ └── aarch64 │ │ ├── arch.h │ │ ├── arch_features.h │ │ ├── arch_helpers.h │ │ ├── asm_macros.S │ │ ├── assert_macros.S │ │ ├── console_macros.S │ │ ├── el3_common_macros.S │ │ └── smccc_helpers.h ├── bl1 │ ├── bl1.h │ └── tbbr │ │ └── tbbr_img_desc.h ├── bl2 │ └── bl2.h ├── bl2u │ └── bl2u.h ├── bl31 │ ├── bl31.h │ ├── ea_handle.h │ ├── ehf.h │ └── interrupt_mgmt.h ├── bl32 │ ├── payloads │ │ └── tlk.h │ ├── sp_min │ │ └── platform_sp_min.h │ └── tsp │ │ ├── platform_tsp.h │ │ └── tsp.h ├── common │ ├── asm_macros_common.S │ ├── bl_common.h │ ├── bl_common.ld.h │ ├── debug.h │ ├── desc_image_load.h │ ├── ep_info.h │ ├── fdt_fixup.h │ ├── fdt_wrappers.h │ ├── image_decompress.h │ ├── interrupt_props.h │ ├── nv_cntr_ids.h │ ├── param_header.h │ ├── romlib.h │ ├── runtime_svc.h │ ├── tbbr │ │ ├── cot_def.h │ │ └── tbbr_img_def.h │ └── uuid.h ├── drivers │ ├── allwinner │ │ ├── axp.h │ │ └── sunxi_rsb.h │ ├── amlogic │ │ ├── crypto │ │ │ └── sha_dma.h │ │ └── meson_console.h │ ├── arm │ │ ├── arm_gicv3_common.h │ │ ├── cci.h │ │ ├── ccn.h │ │ ├── cryptocell │ │ │ ├── 712 │ │ │ │ ├── cc_crypto_boot_defs.h │ │ │ │ ├── cc_pal_sb_plat.h │ │ │ │ ├── cc_pal_types.h │ │ │ │ ├── cc_pal_types_plat.h │ │ │ │ ├── cc_sec_defs.h │ │ │ │ ├── crypto_driver.h │ │ │ │ ├── nvm.h │ │ │ │ ├── nvm_otp.h │ │ │ │ ├── rsa.h │ │ │ │ ├── sbrom_bsv_api.h │ │ │ │ ├── secureboot_base_func.h │ │ │ │ ├── secureboot_gen_defs.h │ │ │ │ └── util.h │ │ │ ├── 713 │ │ │ │ ├── bsv_api.h │ │ │ │ ├── bsv_crypto_api.h │ │ │ │ ├── bsv_crypto_asym_api.h │ │ │ │ ├── bsv_crypto_defs.h │ │ │ │ ├── bsv_error.h │ │ │ │ ├── cc_address_defs.h │ │ │ │ ├── cc_boot_defs.h │ │ │ │ ├── cc_pal_types.h │ │ │ │ ├── cc_pal_types_plat.h │ │ │ │ ├── cc_pka_hw_plat_defs.h │ │ │ │ └── cc_sec_defs.h │ │ │ └── cc_rotpk.h │ │ ├── css │ │ │ ├── css_mhu.h │ │ │ ├── css_mhu_doorbell.h │ │ │ ├── css_scp.h │ │ │ ├── css_scpi.h │ │ │ ├── scmi.h │ │ │ └── sds.h │ │ ├── dcc.h │ │ ├── ethosn.h │ │ ├── fvp │ │ │ └── fvp_pwrc.h │ │ ├── gic600_multichip.h │ │ ├── gic_common.h │ │ ├── gicv2.h │ │ ├── gicv3.h │ │ ├── nic_400.h │ │ ├── pl011.h │ │ ├── pl061_gpio.h │ │ ├── sbsa.h │ │ ├── scu.h │ │ ├── smmu_v3.h │ │ ├── sp804_delay_timer.h │ │ ├── sp805.h │ │ ├── tzc380.h │ │ ├── tzc400.h │ │ ├── tzc_common.h │ │ ├── tzc_dmc500.h │ │ └── tzc_dmc620.h │ ├── auth │ │ ├── auth_common.h │ │ ├── auth_mod.h │ │ ├── crypto_mod.h │ │ ├── img_parser_mod.h │ │ ├── mbedtls │ │ │ ├── mbedtls_common.h │ │ │ └── mbedtls_config.h │ │ └── tbbr_cot_common.h │ ├── brcm │ │ ├── chimp.h │ │ ├── chimp_nv_defs.h │ │ ├── dmu.h │ │ ├── emmc │ │ │ ├── bcm_emmc.h │ │ │ ├── emmc_api.h │ │ │ ├── emmc_brcm_rdb_sd4_top.h │ │ │ ├── emmc_chal_sd.h │ │ │ ├── emmc_chal_types.h │ │ │ ├── emmc_csl_sd.h │ │ │ ├── emmc_csl_sdcmd.h │ │ │ ├── emmc_csl_sdprot.h │ │ │ └── emmc_pboot_hal_memory_drv.h │ │ ├── fru.h │ │ ├── i2c │ │ │ ├── i2c.h │ │ │ └── i2c_regs.h │ │ ├── iproc_gpio.h │ │ ├── mdio │ │ │ └── mdio.h │ │ ├── ocotp.h │ │ ├── scp.h │ │ ├── sf.h │ │ ├── sotp.h │ │ ├── spi.h │ │ ├── spi_flash.h │ │ └── usbh_xhci_regs.h │ ├── cadence │ │ └── cdns_uart.h │ ├── cfi │ │ └── v2m_flash.h │ ├── console.h │ ├── console_assertions.h │ ├── coreboot │ │ └── cbmem_console.h │ ├── delay_timer.h │ ├── dw_ufs.h │ ├── generic_delay_timer.h │ ├── gpio.h │ ├── io │ │ ├── io_block.h │ │ ├── io_driver.h │ │ ├── io_dummy.h │ │ ├── io_encrypted.h │ │ ├── io_fip.h │ │ ├── io_memmap.h │ │ ├── io_mtd.h │ │ ├── io_semihosting.h │ │ └── io_storage.h │ ├── marvell │ │ ├── addr_map.h │ │ ├── amb_adec.h │ │ ├── ap807_clocks_init.h │ │ ├── aro.h │ │ ├── cache_llc.h │ │ ├── ccu.h │ │ ├── gwin.h │ │ ├── i2c.h │ │ ├── io_win.h │ │ ├── iob.h │ │ ├── mci.h │ │ ├── mochi │ │ │ ├── ap_setup.h │ │ │ └── cp110_setup.h │ │ ├── thermal.h │ │ └── uart │ │ │ └── a3700_console.h │ ├── measured_boot │ │ ├── event_log.h │ │ ├── measured_boot.h │ │ └── tcg.h │ ├── mentor │ │ └── mi2cv.h │ ├── mmc.h │ ├── nand.h │ ├── nxp │ │ ├── flexspi │ │ │ ├── flash_info.h │ │ │ ├── fspi_api.h │ │ │ └── xspi_error_codes.h │ │ └── smmu │ │ │ └── nxp_smmu.h │ ├── partition │ │ ├── gpt.h │ │ ├── mbr.h │ │ └── partition.h │ ├── rambus │ │ └── trng_ip_76.h │ ├── raw_nand.h │ ├── renesas │ │ └── rcar │ │ │ └── console │ │ │ └── console.h │ ├── rpi3 │ │ ├── gpio │ │ │ └── rpi3_gpio.h │ │ ├── mailbox │ │ │ └── rpi3_mbox.h │ │ ├── rng │ │ │ └── rpi3_rng.h │ │ └── sdhost │ │ │ └── rpi3_sdhost.h │ ├── scmi-msg.h │ ├── scmi.h │ ├── spi_mem.h │ ├── spi_nand.h │ ├── spi_nor.h │ ├── st │ │ ├── bsec.h │ │ ├── etzpc.h │ │ ├── io_mmc.h │ │ ├── io_stm32image.h │ │ ├── stm32_console.h │ │ ├── stm32_fmc2_nand.h │ │ ├── stm32_gpio.h │ │ ├── stm32_hash.h │ │ ├── stm32_i2c.h │ │ ├── stm32_iwdg.h │ │ ├── stm32_qspi.h │ │ ├── stm32_sdmmc2.h │ │ ├── stm32_uart_regs.h │ │ ├── stm32mp1_clk.h │ │ ├── stm32mp1_ddr.h │ │ ├── stm32mp1_ddr_helpers.h │ │ ├── stm32mp1_ddr_regs.h │ │ ├── stm32mp1_pwr.h │ │ ├── stm32mp1_ram.h │ │ ├── stm32mp1_rcc.h │ │ ├── stm32mp_clkfunc.h │ │ ├── stm32mp_pmic.h │ │ ├── stm32mp_reset.h │ │ └── stpmic1.h │ ├── synopsys │ │ └── dw_mmc.h │ ├── ti │ │ └── uart │ │ │ └── uart_16550.h │ └── ufs.h ├── dt-bindings │ ├── clock │ │ ├── stm32mp1-clks.h │ │ └── stm32mp1-clksrc.h │ ├── interrupt-controller │ │ └── arm-gic.h │ ├── pinctrl │ │ └── stm32-pinfunc.h │ ├── reset │ │ └── stm32mp1-resets.h │ └── soc │ │ └── st,stm32-etzpc.h ├── export │ ├── README │ ├── common │ │ ├── bl_common_exp.h │ │ ├── ep_info_exp.h │ │ ├── param_header_exp.h │ │ └── tbbr │ │ │ └── tbbr_img_def_exp.h │ ├── drivers │ │ └── gpio_exp.h │ ├── lib │ │ ├── bl_aux_params │ │ │ └── bl_aux_params_exp.h │ │ └── utils_def_exp.h │ └── plat │ │ ├── mediatek │ │ └── common │ │ │ └── plat_params_exp.h │ │ └── rockchip │ │ └── common │ │ └── plat_params_exp.h ├── lib │ ├── bakery_lock.h │ ├── bl_aux_params │ │ └── bl_aux_params.h │ ├── cassert.h │ ├── coreboot.h │ ├── cpus │ │ ├── aarch32 │ │ │ ├── aem_generic.h │ │ │ ├── cortex_a12.h │ │ │ ├── cortex_a15.h │ │ │ ├── cortex_a17.h │ │ │ ├── cortex_a32.h │ │ │ ├── cortex_a5.h │ │ │ ├── cortex_a53.h │ │ │ ├── cortex_a57.h │ │ │ ├── cortex_a7.h │ │ │ ├── cortex_a72.h │ │ │ ├── cortex_a9.h │ │ │ └── cpu_macros.S │ │ ├── aarch64 │ │ │ ├── aem_generic.h │ │ │ ├── cortex_a35.h │ │ │ ├── cortex_a53.h │ │ │ ├── cortex_a55.h │ │ │ ├── cortex_a57.h │ │ │ ├── cortex_a65.h │ │ │ ├── cortex_a65ae.h │ │ │ ├── cortex_a72.h │ │ │ ├── cortex_a73.h │ │ │ ├── cortex_a75.h │ │ │ ├── cortex_a76.h │ │ │ ├── cortex_a76ae.h │ │ │ ├── cortex_a77.h │ │ │ ├── cortex_a78.h │ │ │ ├── cortex_a78_ae.h │ │ │ ├── cortex_a78c.h │ │ │ ├── cortex_klein.h │ │ │ ├── cortex_makalu.h │ │ │ ├── cortex_makalu_elp_arm.h │ │ │ ├── cortex_matterhorn.h │ │ │ ├── cortex_matterhorn_elp_arm.h │ │ │ ├── cpu_macros.S │ │ │ ├── cpuamu.h │ │ │ ├── denver.h │ │ │ ├── dsu_def.h │ │ │ ├── generic.h │ │ │ ├── neoverse_e1.h │ │ │ ├── neoverse_n1.h │ │ │ ├── neoverse_n2.h │ │ │ ├── neoverse_n_common.h │ │ │ ├── neoverse_v1.h │ │ │ ├── qemu_max.h │ │ │ └── rainier.h │ │ ├── errata_report.h │ │ ├── wa_cve_2017_5715.h │ │ └── wa_cve_2018_3639.h │ ├── debugfs.h │ ├── el3_runtime │ │ ├── aarch32 │ │ │ └── context.h │ │ ├── aarch64 │ │ │ └── context.h │ │ ├── context_mgmt.h │ │ ├── cpu_data.h │ │ ├── pubsub.h │ │ └── pubsub_events.h │ ├── extensions │ │ ├── amu.h │ │ ├── amu_private.h │ │ ├── mpam.h │ │ ├── pauth.h │ │ ├── ras.h │ │ ├── ras_arch.h │ │ ├── spe.h │ │ ├── sve.h │ │ └── twed.h │ ├── fconf │ │ ├── fconf.h │ │ ├── fconf_dyn_cfg_getter.h │ │ └── fconf_tbbr_getter.h │ ├── libc │ │ ├── aarch32 │ │ │ ├── endian_.h │ │ │ ├── limits_.h │ │ │ ├── stddef_.h │ │ │ └── stdio_.h │ │ ├── aarch64 │ │ │ ├── endian_.h │ │ │ ├── limits_.h │ │ │ ├── setjmp_.h │ │ │ ├── stddef_.h │ │ │ └── stdio_.h │ │ ├── arm_acle.h │ │ ├── assert.h │ │ ├── cdefs.h │ │ ├── endian.h │ │ ├── errno.h │ │ ├── limits.h │ │ ├── setjmp.h │ │ ├── stdarg.h │ │ ├── stdbool.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ └── time.h │ ├── libfdt │ │ ├── fdt.h │ │ ├── libfdt.h │ │ └── libfdt_env.h │ ├── mmio.h │ ├── object_pool.h │ ├── optee_utils.h │ ├── pmf │ │ ├── aarch32 │ │ │ └── pmf_asm_macros.S │ │ ├── aarch64 │ │ │ └── pmf_asm_macros.S │ │ ├── pmf.h │ │ └── pmf_helpers.h │ ├── psci │ │ ├── psci.h │ │ └── psci_lib.h │ ├── runtime_instr.h │ ├── semihosting.h │ ├── smccc.h │ ├── spinlock.h │ ├── utils.h │ ├── utils_def.h │ ├── xlat_tables │ │ ├── aarch32 │ │ │ └── xlat_tables_aarch32.h │ │ ├── aarch64 │ │ │ └── xlat_tables_aarch64.h │ │ ├── xlat_mmu_helpers.h │ │ ├── xlat_tables.h │ │ ├── xlat_tables_arch.h │ │ ├── xlat_tables_compat.h │ │ ├── xlat_tables_defs.h │ │ ├── xlat_tables_v2.h │ │ └── xlat_tables_v2_helpers.h │ └── zlib │ │ └── tf_gunzip.h ├── plat │ ├── arm │ │ ├── board │ │ │ └── common │ │ │ │ ├── board_css_def.h │ │ │ │ └── v2m_def.h │ │ ├── common │ │ │ ├── aarch64 │ │ │ │ ├── arm_macros.S │ │ │ │ └── cci_macros.S │ │ │ ├── arm_config.h │ │ │ ├── arm_def.h │ │ │ ├── arm_dyn_cfg_helpers.h │ │ │ ├── arm_fconf_getter.h │ │ │ ├── arm_fconf_io_storage.h │ │ │ ├── arm_reclaim_init.ld.S │ │ │ ├── arm_sip_svc.h │ │ │ ├── arm_spm_def.h │ │ │ ├── arm_tzc_dram.ld.S │ │ │ ├── fconf_arm_sp_getter.h │ │ │ ├── fconf_ethosn_getter.h │ │ │ ├── fconf_nv_cntr_getter.h │ │ │ ├── fconf_sdei_getter.h │ │ │ ├── fconf_sec_intr_config.h │ │ │ ├── plat_arm.h │ │ │ └── smccc_def.h │ │ ├── css │ │ │ └── common │ │ │ │ ├── aarch64 │ │ │ │ └── css_macros.S │ │ │ │ ├── css_def.h │ │ │ │ └── css_pm.h │ │ └── soc │ │ │ └── common │ │ │ ├── soc_css.h │ │ │ └── soc_css_def.h │ ├── brcm │ │ └── common │ │ │ ├── bcm_console.h │ │ │ ├── bcm_elog.h │ │ │ ├── brcm_def.h │ │ │ └── plat_brcm.h │ ├── common │ │ ├── common_def.h │ │ ├── plat_trng.h │ │ └── platform.h │ └── marvell │ │ └── armada │ │ ├── a3k │ │ └── common │ │ │ ├── armada_common.h │ │ │ ├── board_marvell_def.h │ │ │ ├── marvell_def.h │ │ │ └── plat_marvell.h │ │ ├── a8k │ │ └── common │ │ │ ├── armada_common.h │ │ │ ├── board_marvell_def.h │ │ │ ├── efuse_def.h │ │ │ ├── marvell_def.h │ │ │ ├── plat_marvell.h │ │ │ └── plat_pm_trace.h │ │ └── common │ │ ├── aarch64 │ │ ├── cci_macros.S │ │ └── marvell_macros.S │ │ ├── marvell_plat_priv.h │ │ ├── marvell_pm.h │ │ └── mvebu.h ├── services │ ├── arm_arch_svc.h │ ├── ffa_svc.h │ ├── sdei.h │ ├── sdei_flags.h │ ├── spm_core_manifest.h │ ├── spm_mm_partition.h │ ├── spm_mm_svc.h │ ├── spmd_svc.h │ ├── std_svc.h │ └── trng_svc.h └── tools_share │ ├── dualroot_oid.h │ ├── firmware_encrypted.h │ ├── firmware_image_package.h │ ├── sptool.h │ ├── tbbr_oid.h │ └── uuid.h ├── lib ├── aarch32 │ ├── arm32_aeabi_divmod.c │ ├── arm32_aeabi_divmod_a32.S │ ├── armclang_printf.S │ ├── cache_helpers.S │ └── misc_helpers.S ├── aarch64 │ ├── armclang_printf.S │ ├── cache_helpers.S │ └── misc_helpers.S ├── bl_aux_params │ └── bl_aux_params.c ├── compiler-rt │ ├── LICENSE.TXT │ ├── builtins │ │ ├── arm │ │ │ ├── aeabi_ldivmod.S │ │ │ └── aeabi_uldivmod.S │ │ ├── assembly.h │ │ ├── ctzdi2.c │ │ ├── divdi3.c │ │ ├── divmoddi4.c │ │ ├── int_endianness.h │ │ ├── int_lib.h │ │ ├── int_math.h │ │ ├── int_types.h │ │ ├── lshrdi3.c │ │ ├── popcountdi2.c │ │ ├── popcountsi2.c │ │ └── udivmoddi4.c │ └── compiler-rt.mk ├── coreboot │ ├── coreboot.mk │ └── coreboot_table.c ├── cpus │ ├── aarch32 │ │ ├── aem_generic.S │ │ ├── cortex_a12.S │ │ ├── cortex_a15.S │ │ ├── cortex_a17.S │ │ ├── cortex_a32.S │ │ ├── cortex_a5.S │ │ ├── cortex_a53.S │ │ ├── cortex_a57.S │ │ ├── cortex_a7.S │ │ ├── cortex_a72.S │ │ ├── cortex_a9.S │ │ └── cpu_helpers.S │ ├── aarch64 │ │ ├── aem_generic.S │ │ ├── cortex_a35.S │ │ ├── cortex_a53.S │ │ ├── cortex_a55.S │ │ ├── cortex_a57.S │ │ ├── cortex_a65.S │ │ ├── cortex_a65ae.S │ │ ├── cortex_a72.S │ │ ├── cortex_a73.S │ │ ├── cortex_a75.S │ │ ├── cortex_a75_pubsub.c │ │ ├── cortex_a76.S │ │ ├── cortex_a76ae.S │ │ ├── cortex_a77.S │ │ ├── cortex_a78.S │ │ ├── cortex_a78_ae.S │ │ ├── cortex_a78c.S │ │ ├── cortex_klein.S │ │ ├── cortex_makalu.S │ │ ├── cortex_makalu_elp_arm.S │ │ ├── cortex_matterhorn.S │ │ ├── cortex_matterhorn_elp_arm.S │ │ ├── cpu_helpers.S │ │ ├── cpuamu.c │ │ ├── cpuamu_helpers.S │ │ ├── denver.S │ │ ├── dsu_helpers.S │ │ ├── generic.S │ │ ├── neoverse_e1.S │ │ ├── neoverse_n1.S │ │ ├── neoverse_n1_pubsub.c │ │ ├── neoverse_n2.S │ │ ├── neoverse_n_common.S │ │ ├── neoverse_v1.S │ │ ├── qemu_max.S │ │ ├── rainier.S │ │ ├── wa_cve_2017_5715_bpiall.S │ │ └── wa_cve_2017_5715_mmu.S │ ├── cpu-ops.mk │ └── errata_report.c ├── debugfs │ ├── blobs.h │ ├── debugfs.mk │ ├── debugfs_smc.c │ ├── dev.c │ ├── dev.h │ ├── devc.c │ ├── devfip.c │ └── devroot.c ├── el3_runtime │ ├── aarch32 │ │ ├── context_mgmt.c │ │ └── cpu_data.S │ ├── aarch64 │ │ ├── context.S │ │ ├── context_mgmt.c │ │ └── cpu_data.S │ └── cpu_data_array.c ├── extensions │ ├── amu │ │ ├── aarch32 │ │ │ ├── amu.c │ │ │ └── amu_helpers.S │ │ └── aarch64 │ │ │ ├── amu.c │ │ │ └── amu_helpers.S │ ├── mpam │ │ └── mpam.c │ ├── mtpmu │ │ ├── aarch32 │ │ │ └── mtpmu.S │ │ └── aarch64 │ │ │ └── mtpmu.S │ ├── pauth │ │ └── pauth_helpers.S │ ├── ras │ │ ├── ras_common.c │ │ └── std_err_record.c │ ├── spe │ │ └── spe.c │ └── sve │ │ └── sve.c ├── fconf │ ├── fconf.c │ ├── fconf.mk │ ├── fconf_cot_getter.c │ ├── fconf_dyn_cfg_getter.c │ └── fconf_tbbr_getter.c ├── libc │ ├── aarch32 │ │ └── memset.S │ ├── aarch64 │ │ ├── memset.S │ │ └── setjmp.S │ ├── abort.c │ ├── assert.c │ ├── exit.c │ ├── libc.mk │ ├── libc_asm.mk │ ├── memchr.c │ ├── memcmp.c │ ├── memcpy.c │ ├── memmove.c │ ├── memrchr.c │ ├── memset.c │ ├── printf.c │ ├── putchar.c │ ├── puts.c │ ├── snprintf.c │ ├── strchr.c │ ├── strcmp.c │ ├── strlcat.c │ ├── strlcpy.c │ ├── strlen.c │ ├── strncmp.c │ ├── strnlen.c │ ├── strrchr.c │ ├── strtok.c │ ├── strtol.c │ ├── strtoll.c │ ├── strtoul.c │ └── strtoull.c ├── libfdt │ ├── fdt.c │ ├── fdt_addresses.c │ ├── fdt_empty_tree.c │ ├── fdt_overlay.c │ ├── fdt_ro.c │ ├── fdt_rw.c │ ├── fdt_strerror.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ ├── libfdt.mk │ └── libfdt_internal.h ├── locks │ ├── bakery │ │ ├── bakery_lock_coherent.c │ │ └── bakery_lock_normal.c │ └── exclusive │ │ ├── aarch32 │ │ └── spinlock.S │ │ └── aarch64 │ │ └── spinlock.S ├── optee │ └── optee_utils.c ├── pmf │ ├── pmf_main.c │ └── pmf_smc.c ├── psci │ ├── aarch32 │ │ └── psci_helpers.S │ ├── aarch64 │ │ └── psci_helpers.S │ ├── psci_common.c │ ├── psci_lib.mk │ ├── psci_main.c │ ├── psci_mem_protect.c │ ├── psci_off.c │ ├── psci_on.c │ ├── psci_private.h │ ├── psci_setup.c │ ├── psci_stat.c │ ├── psci_suspend.c │ └── psci_system_off.c ├── romlib │ ├── Makefile │ ├── gen_combined_bl1_romlib.sh │ ├── init.s │ ├── jmptbl.i │ ├── romlib.ld.S │ ├── romlib_generator.py │ └── templates │ │ ├── jmptbl_entry_function.S │ │ ├── jmptbl_entry_function_bti.S │ │ ├── jmptbl_entry_reserved.S │ │ ├── jmptbl_entry_reserved_bti.S │ │ ├── jmptbl_glob_var.S │ │ ├── jmptbl_header.S │ │ ├── wrapper.S │ │ └── wrapper_bti.S ├── semihosting │ ├── aarch32 │ │ └── semihosting_call.S │ ├── aarch64 │ │ └── semihosting_call.S │ └── semihosting.c ├── stack_protector │ ├── aarch32 │ │ └── asm_stack_protector.S │ ├── aarch64 │ │ └── asm_stack_protector.S │ ├── stack_protector.c │ └── stack_protector.mk ├── utils │ └── mem_region.c ├── xlat_tables │ ├── aarch32 │ │ ├── nonlpae_tables.c │ │ └── xlat_tables.c │ ├── aarch64 │ │ └── xlat_tables.c │ ├── xlat_tables_common.c │ └── xlat_tables_private.h ├── xlat_tables_v2 │ ├── aarch32 │ │ ├── enable_mmu.S │ │ └── xlat_tables_arch.c │ ├── aarch64 │ │ ├── enable_mmu.S │ │ └── xlat_tables_arch.c │ ├── ro_xlat_tables.mk │ ├── xlat_tables.mk │ ├── xlat_tables_context.c │ ├── xlat_tables_core.c │ ├── xlat_tables_private.h │ └── xlat_tables_utils.c └── zlib │ ├── adler32.c │ ├── crc32.c │ ├── crc32.h │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── tf_gunzip.c │ ├── zconf.h │ ├── zlib.h │ ├── zlib.mk │ ├── zutil.c │ └── zutil.h ├── license.rst ├── licenses └── LICENSE.MIT ├── make_helpers ├── armv7-a-cpus.mk ├── build_env.mk ├── build_macros.mk ├── cygwin.mk ├── defaults.mk ├── msys.mk ├── plat_helpers.mk ├── tbbr │ └── tbbr_tools.mk ├── unix.mk └── windows.mk ├── package.json ├── plat ├── allwinner │ ├── common │ │ ├── allwinner-common.mk │ │ ├── arisc_off.S │ │ ├── include │ │ │ ├── mentor_i2c_plat.h │ │ │ ├── plat_macros.S │ │ │ ├── platform_def.h │ │ │ ├── sunxi_def.h │ │ │ └── sunxi_private.h │ │ ├── plat_helpers.S │ │ ├── sunxi_bl31_setup.c │ │ ├── sunxi_common.c │ │ ├── sunxi_cpu_ops.c │ │ ├── sunxi_native_pm.c │ │ ├── sunxi_pm.c │ │ ├── sunxi_scpi_pm.c │ │ ├── sunxi_security.c │ │ └── sunxi_topology.c │ ├── sun50i_a64 │ │ ├── include │ │ │ ├── core_off_arisc.h │ │ │ ├── sunxi_ccu.h │ │ │ ├── sunxi_cpucfg.h │ │ │ ├── sunxi_mmap.h │ │ │ └── sunxi_spc.h │ │ ├── platform.mk │ │ └── sunxi_power.c │ ├── sun50i_h6 │ │ ├── include │ │ │ ├── sunxi_ccu.h │ │ │ ├── sunxi_cpucfg.h │ │ │ ├── sunxi_mmap.h │ │ │ └── sunxi_spc.h │ │ ├── platform.mk │ │ └── sunxi_power.c │ └── sun50i_h616 │ │ ├── include │ │ ├── sunxi_ccu.h │ │ ├── sunxi_cpucfg.h │ │ ├── sunxi_mmap.h │ │ └── sunxi_spc.h │ │ ├── platform.mk │ │ ├── prepare_dtb.c │ │ └── sunxi_power.c ├── amlogic │ ├── axg │ │ ├── axg_bl31_setup.c │ │ ├── axg_common.c │ │ ├── axg_def.h │ │ ├── axg_pm.c │ │ ├── include │ │ │ └── platform_def.h │ │ └── platform.mk │ ├── common │ │ ├── aarch64 │ │ │ └── aml_helpers.S │ │ ├── aml_console.c │ │ ├── aml_efuse.c │ │ ├── aml_mhu.c │ │ ├── aml_scpi.c │ │ ├── aml_sip_svc.c │ │ ├── aml_thermal.c │ │ ├── aml_topology.c │ │ └── include │ │ │ ├── aml_private.h │ │ │ └── plat_macros.S │ ├── g12a │ │ ├── g12a_bl31_setup.c │ │ ├── g12a_common.c │ │ ├── g12a_def.h │ │ ├── g12a_pm.c │ │ ├── include │ │ │ └── platform_def.h │ │ └── platform.mk │ ├── gxbb │ │ ├── gxbb_bl31_setup.c │ │ ├── gxbb_common.c │ │ ├── gxbb_def.h │ │ ├── gxbb_pm.c │ │ ├── include │ │ │ └── platform_def.h │ │ └── platform.mk │ └── gxl │ │ ├── gxl_bl31_setup.c │ │ ├── gxl_common.c │ │ ├── gxl_def.h │ │ ├── gxl_pm.c │ │ ├── include │ │ └── platform_def.h │ │ └── platform.mk ├── arm │ ├── board │ │ ├── a5ds │ │ │ ├── a5ds_bl1_setup.c │ │ │ ├── a5ds_bl2_setup.c │ │ │ ├── a5ds_common.c │ │ │ ├── a5ds_err.c │ │ │ ├── a5ds_pm.c │ │ │ ├── a5ds_private.h │ │ │ ├── a5ds_security.c │ │ │ ├── a5ds_topology.c │ │ │ ├── aarch32 │ │ │ │ └── a5ds_helpers.S │ │ │ ├── fdts │ │ │ │ ├── a5ds_fw_config.dts │ │ │ │ └── a5ds_tb_fw_config.dts │ │ │ ├── include │ │ │ │ └── platform_def.h │ │ │ ├── platform.mk │ │ │ └── sp_min │ │ │ │ ├── a5ds_sp_min_setup.c │ │ │ │ └── sp_min-a5ds.mk │ │ ├── arm_fpga │ │ │ ├── aarch64 │ │ │ │ └── fpga_helpers.S │ │ │ ├── build_axf.ld.S │ │ │ ├── fpga_bl31_setup.c │ │ │ ├── fpga_console.c │ │ │ ├── fpga_def.h │ │ │ ├── fpga_gicv3.c │ │ │ ├── fpga_pm.c │ │ │ ├── fpga_private.h │ │ │ ├── fpga_topology.c │ │ │ ├── include │ │ │ │ ├── plat_macros.S │ │ │ │ └── platform_def.h │ │ │ ├── platform.mk │ │ │ └── rom_trampoline.S │ │ ├── common │ │ │ ├── aarch32 │ │ │ │ └── board_arm_helpers.S │ │ │ ├── aarch64 │ │ │ │ └── board_arm_helpers.S │ │ │ ├── board_arm_trusted_boot.c │ │ │ ├── board_common.mk │ │ │ ├── protpk │ │ │ │ ├── README │ │ │ │ ├── arm_dev_protpk.S │ │ │ │ ├── arm_protpk_rsa_sha256.bin │ │ │ │ └── arm_protprivk_rsa.pem │ │ │ └── rotpk │ │ │ │ ├── arm_dev_rotpk.S │ │ │ │ ├── arm_rotpk_ecdsa.der │ │ │ │ ├── arm_rotpk_ecdsa_sha256.bin │ │ │ │ ├── arm_rotpk_rsa.der │ │ │ │ ├── arm_rotpk_rsa_sha256.bin │ │ │ │ ├── arm_rotprivk_ecdsa.pem │ │ │ │ └── arm_rotprivk_rsa.pem │ │ ├── corstone700 │ │ │ ├── common │ │ │ │ ├── corstone700_helpers.S │ │ │ │ ├── corstone700_plat.c │ │ │ │ ├── corstone700_pm.c │ │ │ │ ├── corstone700_security.c │ │ │ │ ├── corstone700_stack_protector.c │ │ │ │ ├── corstone700_topology.c │ │ │ │ ├── drivers │ │ │ │ │ └── mhu │ │ │ │ │ │ ├── mhu.c │ │ │ │ │ │ └── mhu.h │ │ │ │ └── include │ │ │ │ │ └── platform_def.h │ │ │ ├── platform.mk │ │ │ └── sp_min │ │ │ │ ├── corstone700_sp_min_setup.c │ │ │ │ └── sp_min-corstone700.mk │ │ ├── fvp │ │ │ ├── aarch32 │ │ │ │ └── fvp_helpers.S │ │ │ ├── aarch64 │ │ │ │ ├── fvp_helpers.S │ │ │ │ └── fvp_ras.c │ │ │ ├── fconf │ │ │ │ ├── fconf_hw_config_getter.c │ │ │ │ └── fconf_nt_config_getter.c │ │ │ ├── fdts │ │ │ │ ├── event_log.dtsi │ │ │ │ ├── fvp_fw_config.dts │ │ │ │ ├── fvp_nt_fw_config.dts │ │ │ │ ├── fvp_soc_fw_config.dts │ │ │ │ ├── fvp_spmc_manifest.dts │ │ │ │ ├── fvp_spmc_optee_sp_manifest.dts │ │ │ │ ├── fvp_tb_fw_config.dts │ │ │ │ ├── fvp_tsp_fw_config.dts │ │ │ │ └── optee_sp_manifest.dts │ │ │ ├── fvp_bl1_setup.c │ │ │ ├── fvp_bl2_el3_setup.c │ │ │ ├── fvp_bl2_setup.c │ │ │ ├── fvp_bl2u_setup.c │ │ │ ├── fvp_bl31_setup.c │ │ │ ├── fvp_common.c │ │ │ ├── fvp_console.c │ │ │ ├── fvp_def.h │ │ │ ├── fvp_err.c │ │ │ ├── fvp_gicv3.c │ │ │ ├── fvp_io_storage.c │ │ │ ├── fvp_measured_boot.c │ │ │ ├── fvp_pm.c │ │ │ ├── fvp_private.h │ │ │ ├── fvp_security.c │ │ │ ├── fvp_stack_protector.c │ │ │ ├── fvp_topology.c │ │ │ ├── fvp_trusted_boot.c │ │ │ ├── include │ │ │ │ ├── fconf_hw_config_getter.h │ │ │ │ ├── fconf_nt_config_getter.h │ │ │ │ ├── plat.ld.S │ │ │ │ ├── plat_macros.S │ │ │ │ └── platform_def.h │ │ │ ├── jmptbl.i │ │ │ ├── platform.mk │ │ │ ├── sp_min │ │ │ │ ├── fvp_sp_min_setup.c │ │ │ │ └── sp_min-fvp.mk │ │ │ └── tsp │ │ │ │ ├── fvp_tsp_setup.c │ │ │ │ └── tsp-fvp.mk │ │ ├── fvp_ve │ │ │ ├── aarch32 │ │ │ │ └── fvp_ve_helpers.S │ │ │ ├── fdts │ │ │ │ ├── fvp_ve_fw_config.dts │ │ │ │ └── fvp_ve_tb_fw_config.dts │ │ │ ├── fvp_ve_bl1_setup.c │ │ │ ├── fvp_ve_bl2_setup.c │ │ │ ├── fvp_ve_common.c │ │ │ ├── fvp_ve_def.h │ │ │ ├── fvp_ve_err.c │ │ │ ├── fvp_ve_pm.c │ │ │ ├── fvp_ve_private.h │ │ │ ├── fvp_ve_security.c │ │ │ ├── fvp_ve_topology.c │ │ │ ├── include │ │ │ │ └── platform_def.h │ │ │ ├── platform.mk │ │ │ └── sp_min │ │ │ │ ├── fvp_ve_sp_min_setup.c │ │ │ │ └── sp_min-fvp_ve.mk │ │ ├── juno │ │ │ ├── aarch32 │ │ │ │ └── juno_helpers.S │ │ │ ├── aarch64 │ │ │ │ └── juno_helpers.S │ │ │ ├── fdts │ │ │ │ ├── juno_fw_config.dts │ │ │ │ └── juno_tb_fw_config.dts │ │ │ ├── include │ │ │ │ ├── plat_macros.S │ │ │ │ └── platform_def.h │ │ │ ├── jmptbl.i │ │ │ ├── juno_bl1_setup.c │ │ │ ├── juno_bl2_setup.c │ │ │ ├── juno_bl31_setup.c │ │ │ ├── juno_common.c │ │ │ ├── juno_def.h │ │ │ ├── juno_err.c │ │ │ ├── juno_pm.c │ │ │ ├── juno_security.c │ │ │ ├── juno_stack_protector.c │ │ │ ├── juno_topology.c │ │ │ ├── juno_trng.c │ │ │ ├── juno_trusted_boot.c │ │ │ ├── juno_tzmp1_def.h │ │ │ ├── platform.mk │ │ │ ├── sp_min │ │ │ │ └── sp_min-juno.mk │ │ │ └── tsp │ │ │ │ └── tsp-juno.mk │ │ ├── morello │ │ │ ├── aarch64 │ │ │ │ └── morello_helper.S │ │ │ ├── include │ │ │ │ ├── plat_macros.S │ │ │ │ └── platform_def.h │ │ │ ├── morello_bl31_setup.c │ │ │ ├── morello_def.h │ │ │ ├── morello_interconnect.c │ │ │ ├── morello_plat.c │ │ │ ├── morello_security.c │ │ │ ├── morello_topology.c │ │ │ └── platform.mk │ │ ├── n1sdp │ │ │ ├── aarch64 │ │ │ │ └── n1sdp_helper.S │ │ │ ├── include │ │ │ │ ├── plat_macros.S │ │ │ │ └── platform_def.h │ │ │ ├── n1sdp_bl31_setup.c │ │ │ ├── n1sdp_def.h │ │ │ ├── n1sdp_interconnect.c │ │ │ ├── n1sdp_plat.c │ │ │ ├── n1sdp_security.c │ │ │ ├── n1sdp_topology.c │ │ │ └── platform.mk │ │ ├── rde1edge │ │ │ ├── fdts │ │ │ │ ├── rde1edge_fw_config.dts │ │ │ │ ├── rde1edge_nt_fw_config.dts │ │ │ │ └── rde1edge_tb_fw_config.dts │ │ │ ├── include │ │ │ │ └── platform_def.h │ │ │ ├── platform.mk │ │ │ ├── rde1edge_err.c │ │ │ ├── rde1edge_plat.c │ │ │ ├── rde1edge_security.c │ │ │ ├── rde1edge_topology.c │ │ │ └── rde1edge_trusted_boot.c │ │ ├── rdn1edge │ │ │ ├── fdts │ │ │ │ ├── rdn1edge_fw_config.dts │ │ │ │ ├── rdn1edge_nt_fw_config.dts │ │ │ │ └── rdn1edge_tb_fw_config.dts │ │ │ ├── include │ │ │ │ └── platform_def.h │ │ │ ├── platform.mk │ │ │ ├── rdn1edge_err.c │ │ │ ├── rdn1edge_plat.c │ │ │ ├── rdn1edge_security.c │ │ │ ├── rdn1edge_topology.c │ │ │ └── rdn1edge_trusted_boot.c │ │ ├── rdn2 │ │ │ ├── fdts │ │ │ │ ├── rdn2_fw_config.dts │ │ │ │ ├── rdn2_nt_fw_config.dts │ │ │ │ └── rdn2_tb_fw_config.dts │ │ │ ├── include │ │ │ │ └── platform_def.h │ │ │ ├── platform.mk │ │ │ ├── rdn2_err.c │ │ │ ├── rdn2_plat.c │ │ │ ├── rdn2_security.c │ │ │ ├── rdn2_topology.c │ │ │ └── rdn2_trusted_boot.c │ │ ├── rdv1 │ │ │ ├── fdts │ │ │ │ ├── rdv1_fw_config.dts │ │ │ │ ├── rdv1_nt_fw_config.dts │ │ │ │ └── rdv1_tb_fw_config.dts │ │ │ ├── include │ │ │ │ └── platform_def.h │ │ │ ├── platform.mk │ │ │ ├── rdv1_err.c │ │ │ ├── rdv1_plat.c │ │ │ ├── rdv1_security.c │ │ │ ├── rdv1_topology.c │ │ │ └── rdv1_trusted_boot.c │ │ ├── rdv1mc │ │ │ ├── fdts │ │ │ │ ├── rdv1mc_fw_config.dts │ │ │ │ ├── rdv1mc_nt_fw_config.dts │ │ │ │ └── rdv1mc_tb_fw_config.dts │ │ │ ├── include │ │ │ │ └── platform_def.h │ │ │ ├── platform.mk │ │ │ ├── rdv1mc_err.c │ │ │ ├── rdv1mc_plat.c │ │ │ ├── rdv1mc_security.c │ │ │ ├── rdv1mc_topology.c │ │ │ └── rdv1mc_trusted_boot.c │ │ ├── sgi575 │ │ │ ├── fdts │ │ │ │ ├── sgi575_fw_config.dts │ │ │ │ ├── sgi575_nt_fw_config.dts │ │ │ │ └── sgi575_tb_fw_config.dts │ │ │ ├── include │ │ │ │ └── platform_def.h │ │ │ ├── platform.mk │ │ │ ├── sgi575_err.c │ │ │ ├── sgi575_plat.c │ │ │ ├── sgi575_security.c │ │ │ ├── sgi575_topology.c │ │ │ └── sgi575_trusted_boot.c │ │ ├── sgm775 │ │ │ ├── fdts │ │ │ │ ├── sgm775_fw_config.dts │ │ │ │ └── sgm775_tb_fw_config.dts │ │ │ ├── include │ │ │ │ └── platform_def.h │ │ │ ├── platform.mk │ │ │ ├── sgm775_err.c │ │ │ ├── sgm775_trusted_boot.c │ │ │ └── tsp │ │ │ │ └── tsp-sgm775.mk │ │ └── tc0 │ │ │ ├── fdts │ │ │ ├── tc0_fw_config.dts │ │ │ ├── tc0_spmc_manifest.dts │ │ │ ├── tc0_spmc_optee_sp_manifest.dts │ │ │ └── tc0_tb_fw_config.dts │ │ │ ├── include │ │ │ ├── plat_macros.S │ │ │ ├── platform_def.h │ │ │ ├── tc0_helpers.S │ │ │ └── tc0_plat.h │ │ │ ├── platform.mk │ │ │ ├── tc0_bl31_setup.c │ │ │ ├── tc0_err.c │ │ │ ├── tc0_interconnect.c │ │ │ ├── tc0_plat.c │ │ │ ├── tc0_security.c │ │ │ ├── tc0_topology.c │ │ │ └── tc0_trusted_boot.c │ ├── common │ │ ├── aarch32 │ │ │ ├── arm_bl2_mem_params_desc.c │ │ │ └── arm_helpers.S │ │ ├── aarch64 │ │ │ ├── arm_bl2_mem_params_desc.c │ │ │ ├── arm_helpers.S │ │ │ ├── arm_pauth.c │ │ │ ├── arm_sdei.c │ │ │ └── execution_state_switch.c │ │ ├── arm_bl1_fwu.c │ │ ├── arm_bl1_setup.c │ │ ├── arm_bl2_el3_setup.c │ │ ├── arm_bl2_setup.c │ │ ├── arm_bl2u_setup.c │ │ ├── arm_bl31_setup.c │ │ ├── arm_cci.c │ │ ├── arm_ccn.c │ │ ├── arm_common.c │ │ ├── arm_common.mk │ │ ├── arm_console.c │ │ ├── arm_dyn_cfg.c │ │ ├── arm_dyn_cfg_helpers.c │ │ ├── arm_err.c │ │ ├── arm_gicv2.c │ │ ├── arm_gicv3.c │ │ ├── arm_image_load.c │ │ ├── arm_io_storage.c │ │ ├── arm_nor_psci_mem_protect.c │ │ ├── arm_pm.c │ │ ├── arm_sip_svc.c │ │ ├── arm_topology.c │ │ ├── arm_tzc400.c │ │ ├── arm_tzc_dmc500.c │ │ ├── fconf │ │ │ ├── arm_fconf_io.c │ │ │ ├── arm_fconf_sp.c │ │ │ ├── fconf_ethosn_getter.c │ │ │ ├── fconf_nv_cntr_getter.c │ │ │ ├── fconf_sdei_getter.c │ │ │ └── fconf_sec_intr_config.c │ │ ├── sp_min │ │ │ ├── arm_sp_min.mk │ │ │ └── arm_sp_min_setup.c │ │ └── tsp │ │ │ ├── arm_tsp.mk │ │ │ └── arm_tsp_setup.c │ ├── css │ │ ├── common │ │ │ ├── aarch32 │ │ │ │ └── css_helpers.S │ │ │ ├── aarch64 │ │ │ │ └── css_helpers.S │ │ │ ├── css_bl1_setup.c │ │ │ ├── css_bl2_setup.c │ │ │ ├── css_bl2u_setup.c │ │ │ ├── css_common.mk │ │ │ ├── css_pm.c │ │ │ ├── css_topology.c │ │ │ └── sp_min │ │ │ │ └── css_sp_min.mk │ │ ├── sgi │ │ │ ├── aarch64 │ │ │ │ └── sgi_helper.S │ │ │ ├── include │ │ │ │ ├── plat_macros.S │ │ │ │ ├── sgi_base_platform_def.h │ │ │ │ ├── sgi_dmc620_tzc_regions.h │ │ │ │ ├── sgi_plat.h │ │ │ │ ├── sgi_ras.h │ │ │ │ ├── sgi_sdei.h │ │ │ │ ├── sgi_soc_css_def_v2.h │ │ │ │ ├── sgi_soc_platform_def.h │ │ │ │ ├── sgi_soc_platform_def_v2.h │ │ │ │ └── sgi_variant.h │ │ │ ├── sgi-common.mk │ │ │ ├── sgi_bl31_setup.c │ │ │ ├── sgi_image_load.c │ │ │ ├── sgi_interconnect.c │ │ │ ├── sgi_plat.c │ │ │ ├── sgi_plat_v2.c │ │ │ ├── sgi_ras.c │ │ │ └── sgi_topology.c │ │ └── sgm │ │ │ ├── aarch64 │ │ │ └── css_sgm_helpers.S │ │ │ ├── fdts │ │ │ └── sgm_tb_fw_config.dts │ │ │ ├── include │ │ │ ├── plat_macros.S │ │ │ ├── sgm_base_platform_def.h │ │ │ ├── sgm_plat_config.h │ │ │ └── sgm_variant.h │ │ │ ├── sgm-common.mk │ │ │ ├── sgm_bl1_setup.c │ │ │ ├── sgm_bl31_setup.c │ │ │ ├── sgm_interconnect.c │ │ │ ├── sgm_mmap_config.c │ │ │ ├── sgm_plat_config.c │ │ │ ├── sgm_security.c │ │ │ ├── sgm_topology.c │ │ │ └── tsp │ │ │ ├── sgm_tsp_setup.c │ │ │ └── tsp-sgm.mk │ └── soc │ │ └── common │ │ ├── soc_css.mk │ │ └── soc_css_security.c ├── brcm │ ├── board │ │ ├── common │ │ │ ├── bcm_console.c │ │ │ ├── bcm_elog.c │ │ │ ├── bcm_elog_ddr.c │ │ │ ├── bcm_elog_ddr.h │ │ │ ├── board_arm_trusted_boot.c │ │ │ ├── board_common.c │ │ │ ├── board_common.mk │ │ │ ├── brcm_mbedtls.c │ │ │ ├── chip_id.h │ │ │ ├── cmn_plat_def.h │ │ │ ├── cmn_plat_util.h │ │ │ ├── cmn_sec.c │ │ │ ├── cmn_sec.h │ │ │ ├── err.c │ │ │ ├── plat_setup.c │ │ │ ├── platform_common.c │ │ │ ├── sbl_util.c │ │ │ ├── sbl_util.h │ │ │ └── timer_sync.c │ │ └── stingray │ │ │ ├── aarch64 │ │ │ └── plat_helpers.S │ │ │ ├── bcm958742t-ns3.mk │ │ │ ├── bcm958742t.mk │ │ │ ├── driver │ │ │ ├── ddr │ │ │ │ └── soc │ │ │ │ │ └── include │ │ │ │ │ └── board_family.h │ │ │ ├── ext_sram_init │ │ │ │ ├── ext_sram_init.c │ │ │ │ └── ext_sram_init.h │ │ │ ├── ihost_pll_config.c │ │ │ ├── plat_emmc.c │ │ │ ├── sr_usb.h │ │ │ ├── swreg.c │ │ │ ├── usb.c │ │ │ └── usb_phy.c │ │ │ ├── include │ │ │ ├── bl33_info.h │ │ │ ├── board_info.h │ │ │ ├── crmu_def.h │ │ │ ├── ddr_init.h │ │ │ ├── fsx.h │ │ │ ├── ihost_pm.h │ │ │ ├── iommu.h │ │ │ ├── ncsi.h │ │ │ ├── paxb.h │ │ │ ├── paxc.h │ │ │ ├── plat_macros.S │ │ │ ├── platform_def.h │ │ │ ├── platform_sotp.h │ │ │ ├── platform_usb.h │ │ │ ├── scp_cmd.h │ │ │ ├── scp_utils.h │ │ │ ├── sdio.h │ │ │ ├── sr_def.h │ │ │ ├── sr_utils.h │ │ │ ├── swreg.h │ │ │ ├── timer_sync.h │ │ │ └── usb_phy.h │ │ │ ├── platform.mk │ │ │ └── src │ │ │ ├── bl2_setup.c │ │ │ ├── bl31_setup.c │ │ │ ├── brcm_pm_ops.c │ │ │ ├── fsx.c │ │ │ ├── ihost_pm.c │ │ │ ├── iommu.c │ │ │ ├── ncsi.c │ │ │ ├── paxb.c │ │ │ ├── paxc.c │ │ │ ├── pm.c │ │ │ ├── scp_cmd.c │ │ │ ├── scp_utils.c │ │ │ ├── sdio.c │ │ │ ├── sr_paxb_phy.c │ │ │ ├── topology.c │ │ │ └── tz_sec.c │ └── common │ │ ├── brcm_bl2_mem_params_desc.c │ │ ├── brcm_bl2_setup.c │ │ ├── brcm_bl31_setup.c │ │ ├── brcm_ccn.c │ │ ├── brcm_common.c │ │ ├── brcm_gicv3.c │ │ ├── brcm_image_load.c │ │ ├── brcm_io_storage.c │ │ ├── brcm_mhu.c │ │ ├── brcm_mhu.h │ │ ├── brcm_scpi.c │ │ └── brcm_scpi.h ├── common │ ├── aarch32 │ │ ├── crash_console_helpers.S │ │ ├── plat_common.c │ │ ├── plat_sp_min_common.c │ │ ├── platform_helpers.S │ │ ├── platform_mp_stack.S │ │ └── platform_up_stack.S │ ├── aarch64 │ │ ├── crash_console_helpers.S │ │ ├── plat_common.c │ │ ├── plat_ehf.c │ │ ├── platform_helpers.S │ │ ├── platform_mp_stack.S │ │ └── platform_up_stack.S │ ├── plat_bl1_common.c │ ├── plat_bl_common.c │ ├── plat_gicv2.c │ ├── plat_gicv3.c │ ├── plat_log_common.c │ ├── plat_psci_common.c │ ├── plat_spmd_manifest.c │ ├── tbbr │ │ └── plat_tbbr.c │ └── ubsan.c ├── hisilicon │ ├── hikey │ │ ├── aarch64 │ │ │ ├── hikey_common.c │ │ │ └── hikey_helpers.S │ │ ├── hikey_bl1_setup.c │ │ ├── hikey_bl2_mem_params_desc.c │ │ ├── hikey_bl2_setup.c │ │ ├── hikey_bl31_setup.c │ │ ├── hikey_bl_common.c │ │ ├── hikey_ddr.c │ │ ├── hikey_image_load.c │ │ ├── hikey_io_storage.c │ │ ├── hikey_pm.c │ │ ├── hikey_private.h │ │ ├── hikey_rotpk.S │ │ ├── hikey_security.c │ │ ├── hikey_tbbr.c │ │ ├── hikey_topology.c │ │ ├── hisi_dvfs.c │ │ ├── hisi_ipc.c │ │ ├── hisi_mcu.c │ │ ├── hisi_pwrc.c │ │ ├── hisi_pwrc_sram.S │ │ ├── hisi_sip_svc.c │ │ ├── include │ │ │ ├── hi6220.h │ │ │ ├── hi6220_regs_acpu.h │ │ │ ├── hi6220_regs_ao.h │ │ │ ├── hi6220_regs_peri.h │ │ │ ├── hi6220_regs_pin.h │ │ │ ├── hi6220_regs_pmctrl.h │ │ │ ├── hi6553.h │ │ │ ├── hikey_def.h │ │ │ ├── hikey_layout.h │ │ │ ├── hisi_ipc.h │ │ │ ├── hisi_mcu.h │ │ │ ├── hisi_pwrc.h │ │ │ ├── hisi_sip_svc.h │ │ │ ├── hisi_sram_map.h │ │ │ ├── plat_macros.S │ │ │ └── platform_def.h │ │ └── platform.mk │ ├── hikey960 │ │ ├── aarch64 │ │ │ ├── hikey960_common.c │ │ │ └── hikey960_helpers.S │ │ ├── drivers │ │ │ ├── ipc │ │ │ │ └── hisi_ipc.c │ │ │ └── pwrc │ │ │ │ ├── hisi_pwrc.c │ │ │ │ └── hisi_pwrc.h │ │ ├── hikey960_bl1_setup.c │ │ ├── hikey960_bl2_mem_params_desc.c │ │ ├── hikey960_bl2_setup.c │ │ ├── hikey960_bl31_setup.c │ │ ├── hikey960_bl_common.c │ │ ├── hikey960_boardid.c │ │ ├── hikey960_def.h │ │ ├── hikey960_image_load.c │ │ ├── hikey960_io_storage.c │ │ ├── hikey960_mcu_load.c │ │ ├── hikey960_pm.c │ │ ├── hikey960_private.h │ │ ├── hikey960_rotpk.S │ │ ├── hikey960_tbbr.c │ │ ├── hikey960_topology.c │ │ ├── include │ │ │ ├── hi3660.h │ │ │ ├── hi3660_crg.h │ │ │ ├── hi3660_hkadc.h │ │ │ ├── hi3660_mem_map.h │ │ │ ├── hisi_ipc.h │ │ │ ├── plat_macros.S │ │ │ └── platform_def.h │ │ └── platform.mk │ └── poplar │ │ ├── aarch64 │ │ ├── platform_common.c │ │ └── poplar_helpers.S │ │ ├── bl1_plat_setup.c │ │ ├── bl2_plat_mem_params_desc.c │ │ ├── bl2_plat_setup.c │ │ ├── bl31_plat_setup.c │ │ ├── include │ │ ├── hi3798cv200.h │ │ ├── plat_macros.S │ │ ├── plat_private.h │ │ ├── platform_def.h │ │ └── poplar_layout.h │ │ ├── plat_pm.c │ │ ├── plat_storage.c │ │ ├── plat_topology.c │ │ ├── platform.mk │ │ ├── poplar_gicv2.c │ │ └── poplar_image_load.c ├── imx │ ├── common │ │ ├── aarch32 │ │ │ └── imx_uart_console.S │ │ ├── imx7_clock.c │ │ ├── imx8_helpers.S │ │ ├── imx8_psci.c │ │ ├── imx8_topology.c │ │ ├── imx_aips.c │ │ ├── imx_caam.c │ │ ├── imx_clock.c │ │ ├── imx_csu.c │ │ ├── imx_ehf.c │ │ ├── imx_io_mux.c │ │ ├── imx_sdei.c │ │ ├── imx_sip_handler.c │ │ ├── imx_sip_svc.c │ │ ├── imx_snvs.c │ │ ├── imx_uart_console.S │ │ ├── imx_wdog.c │ │ ├── include │ │ │ ├── imx8_iomux.h │ │ │ ├── imx8_lpuart.h │ │ │ ├── imx8qm_pads.h │ │ │ ├── imx8qx_pads.h │ │ │ ├── imx_aips.h │ │ │ ├── imx_caam.h │ │ │ ├── imx_clock.h │ │ │ ├── imx_csu.h │ │ │ ├── imx_hab.h │ │ │ ├── imx_io_mux.h │ │ │ ├── imx_sip_svc.h │ │ │ ├── imx_snvs.h │ │ │ ├── imx_uart.h │ │ │ ├── imx_wdog.h │ │ │ ├── plat_imx8.h │ │ │ ├── plat_macros.S │ │ │ └── sci │ │ │ │ ├── sci.h │ │ │ │ ├── sci_ipc.h │ │ │ │ ├── sci_rpc.h │ │ │ │ ├── sci_scfw.h │ │ │ │ ├── sci_types.h │ │ │ │ └── svc │ │ │ │ ├── misc │ │ │ │ └── sci_misc_api.h │ │ │ │ ├── pad │ │ │ │ └── sci_pad_api.h │ │ │ │ ├── pm │ │ │ │ └── sci_pm_api.h │ │ │ │ ├── rm │ │ │ │ └── sci_rm_api.h │ │ │ │ └── timer │ │ │ │ └── sci_timer_api.h │ │ ├── lpuart_console.S │ │ ├── plat_imx8_gic.c │ │ └── sci │ │ │ ├── imx8_mu.c │ │ │ ├── imx8_mu.h │ │ │ ├── ipc.c │ │ │ ├── sci_api.mk │ │ │ └── svc │ │ │ ├── misc │ │ │ ├── misc_rpc_clnt.c │ │ │ └── sci_misc_rpc.h │ │ │ ├── pad │ │ │ ├── pad_rpc_clnt.c │ │ │ └── sci_pad_rpc.h │ │ │ ├── pm │ │ │ ├── pm_rpc_clnt.c │ │ │ └── sci_pm_rpc.h │ │ │ ├── rm │ │ │ ├── rm_rpc_clnt.c │ │ │ └── sci_rm_rpc.h │ │ │ └── timer │ │ │ ├── sci_timer_rpc.h │ │ │ └── timer_rpc_clnt.c │ ├── imx7 │ │ ├── common │ │ │ ├── imx7.mk │ │ │ ├── imx7_bl2_el3_common.c │ │ │ ├── imx7_bl2_mem_params_desc.c │ │ │ ├── imx7_helpers.S │ │ │ ├── imx7_image_load.c │ │ │ ├── imx7_io_storage.c │ │ │ ├── imx7_rotpk.S │ │ │ └── imx7_trusted_boot.c │ │ ├── include │ │ │ ├── imx7_def.h │ │ │ ├── imx_hab_arch.h │ │ │ └── imx_regs.h │ │ ├── picopi │ │ │ ├── include │ │ │ │ └── platform_def.h │ │ │ ├── picopi_bl2_el3_setup.c │ │ │ └── platform.mk │ │ └── warp7 │ │ │ ├── include │ │ │ └── platform_def.h │ │ │ ├── platform.mk │ │ │ └── warp7_bl2_el3_setup.c │ ├── imx8m │ │ ├── gpc_common.c │ │ ├── imx8m_caam.c │ │ ├── imx8m_psci_common.c │ │ ├── imx8mm │ │ │ ├── gpc.c │ │ │ ├── imx8mm_bl2_el3_setup.c │ │ │ ├── imx8mm_bl2_mem_params_desc.c │ │ │ ├── imx8mm_bl31_setup.c │ │ │ ├── imx8mm_image_load.c │ │ │ ├── imx8mm_io_storage.c │ │ │ ├── imx8mm_psci.c │ │ │ ├── imx8mm_rotpk.S │ │ │ ├── imx8mm_trusted_boot.c │ │ │ ├── include │ │ │ │ ├── gpc_reg.h │ │ │ │ ├── imx8mm_private.h │ │ │ │ └── platform_def.h │ │ │ └── platform.mk │ │ ├── imx8mn │ │ │ ├── gpc.c │ │ │ ├── imx8mn_bl31_setup.c │ │ │ ├── imx8mn_psci.c │ │ │ ├── include │ │ │ │ ├── gpc_reg.h │ │ │ │ └── platform_def.h │ │ │ └── platform.mk │ │ ├── imx8mp │ │ │ ├── gpc.c │ │ │ ├── imx8mp_bl31_setup.c │ │ │ ├── imx8mp_psci.c │ │ │ ├── include │ │ │ │ ├── gpc_reg.h │ │ │ │ └── platform_def.h │ │ │ └── platform.mk │ │ ├── imx8mq │ │ │ ├── gpc.c │ │ │ ├── imx8mq_bl31_setup.c │ │ │ ├── imx8mq_psci.c │ │ │ ├── include │ │ │ │ ├── gpc_reg.h │ │ │ │ └── platform_def.h │ │ │ └── platform.mk │ │ ├── imx_aipstz.c │ │ ├── imx_rdc.c │ │ └── include │ │ │ ├── gpc.h │ │ │ ├── imx8m_caam.h │ │ │ ├── imx8m_psci.h │ │ │ ├── imx_aipstz.h │ │ │ └── imx_rdc.h │ ├── imx8qm │ │ ├── imx8qm_bl31_setup.c │ │ ├── imx8qm_psci.c │ │ ├── include │ │ │ ├── platform_def.h │ │ │ └── sec_rsrc.h │ │ └── platform.mk │ └── imx8qx │ │ ├── imx8qx_bl31_setup.c │ │ ├── imx8qx_psci.c │ │ ├── include │ │ ├── platform_def.h │ │ └── sec_rsrc.h │ │ └── platform.mk ├── intel │ └── soc │ │ ├── agilex │ │ ├── bl2_plat_setup.c │ │ ├── bl31_plat_setup.c │ │ ├── include │ │ │ ├── agilex_clock_manager.h │ │ │ ├── agilex_memory_controller.h │ │ │ ├── agilex_mmc.h │ │ │ ├── agilex_noc.h │ │ │ ├── agilex_pinmux.h │ │ │ └── socfpga_plat_def.h │ │ ├── platform.mk │ │ └── soc │ │ │ ├── agilex_clock_manager.c │ │ │ ├── agilex_memory_controller.c │ │ │ ├── agilex_mmc.c │ │ │ └── agilex_pinmux.c │ │ ├── common │ │ ├── aarch64 │ │ │ ├── plat_helpers.S │ │ │ └── platform_common.c │ │ ├── bl2_plat_mem_params_desc.c │ │ ├── drivers │ │ │ ├── ccu │ │ │ │ ├── ncore_ccu.c │ │ │ │ └── ncore_ccu.h │ │ │ ├── qspi │ │ │ │ ├── cadence_qspi.c │ │ │ │ └── cadence_qspi.h │ │ │ └── wdt │ │ │ │ ├── watchdog.c │ │ │ │ └── watchdog.h │ │ ├── include │ │ │ ├── plat_macros.S │ │ │ ├── platform_def.h │ │ │ ├── socfpga_emac.h │ │ │ ├── socfpga_handoff.h │ │ │ ├── socfpga_mailbox.h │ │ │ ├── socfpga_private.h │ │ │ ├── socfpga_reset_manager.h │ │ │ ├── socfpga_sip_svc.h │ │ │ └── socfpga_system_manager.h │ │ ├── soc │ │ │ ├── socfpga_emac.c │ │ │ ├── socfpga_handoff.c │ │ │ ├── socfpga_mailbox.c │ │ │ ├── socfpga_reset_manager.c │ │ │ └── socfpga_system_manager.c │ │ ├── socfpga_delay_timer.c │ │ ├── socfpga_image_load.c │ │ ├── socfpga_psci.c │ │ ├── socfpga_sip_svc.c │ │ ├── socfpga_storage.c │ │ └── socfpga_topology.c │ │ └── stratix10 │ │ ├── bl2_plat_setup.c │ │ ├── bl31_plat_setup.c │ │ ├── include │ │ ├── s10_clock_manager.h │ │ ├── s10_memory_controller.h │ │ ├── s10_noc.h │ │ ├── s10_pinmux.h │ │ └── socfpga_plat_def.h │ │ ├── platform.mk │ │ └── soc │ │ ├── s10_clock_manager.c │ │ ├── s10_memory_controller.c │ │ └── s10_pinmux.c ├── layerscape │ ├── board │ │ └── ls1043 │ │ │ ├── aarch64 │ │ │ └── ls1043_helpers.S │ │ │ ├── include │ │ │ ├── ls_def.h │ │ │ ├── ns_access.h │ │ │ ├── plat_macros.S │ │ │ ├── platform_def.h │ │ │ └── soc_tzasc.h │ │ │ ├── ls1043_bl1_setup.c │ │ │ ├── ls1043_bl2_setup.c │ │ │ ├── ls1043_bl31_setup.c │ │ │ ├── ls1043_err.c │ │ │ ├── ls1043_psci.c │ │ │ ├── ls1043_security.c │ │ │ ├── ls1043_stack_protector.c │ │ │ ├── ls1043_topology.c │ │ │ ├── ls_gic.c │ │ │ ├── platform.mk │ │ │ └── tsp │ │ │ ├── ls1043_tsp_setup.c │ │ │ └── tsp-ls1043.mk │ └── common │ │ ├── aarch64 │ │ ├── ls_bl2_mem_params_desc.c │ │ ├── ls_console.S │ │ └── ls_helpers.S │ │ ├── include │ │ ├── fsl_csu.h │ │ ├── ls_16550.h │ │ ├── plat_ls.h │ │ └── soc.h │ │ ├── ls_bl1_setup.c │ │ ├── ls_bl2_setup.c │ │ ├── ls_bl31_setup.c │ │ ├── ls_common.c │ │ ├── ls_common.mk │ │ ├── ls_image_load.c │ │ ├── ls_io_storage.c │ │ ├── ls_timer.c │ │ ├── ls_topology.c │ │ ├── ls_tzc380.c │ │ ├── ns_access.c │ │ └── tsp │ │ ├── ls_tsp.mk │ │ ├── ls_tsp_setup.c │ │ └── platform_tsp.h ├── marvell │ ├── armada │ │ ├── a3k │ │ │ ├── a3700 │ │ │ │ ├── board │ │ │ │ │ └── pm_src.c │ │ │ │ ├── mvebu_def.h │ │ │ │ ├── plat_bl31_setup.c │ │ │ │ └── platform.mk │ │ │ └── common │ │ │ │ ├── a3700_common.mk │ │ │ │ ├── a3700_ea.c │ │ │ │ ├── a3700_sip_svc.c │ │ │ │ ├── aarch64 │ │ │ │ ├── a3700_common.c │ │ │ │ └── plat_helpers.S │ │ │ │ ├── cm3_system_reset.c │ │ │ │ ├── dram_win.c │ │ │ │ ├── include │ │ │ │ ├── a3700_plat_def.h │ │ │ │ ├── a3700_pm.h │ │ │ │ ├── ddr_info.h │ │ │ │ ├── dram_win.h │ │ │ │ ├── io_addr_dec.h │ │ │ │ ├── plat_macros.S │ │ │ │ └── platform_def.h │ │ │ │ ├── io_addr_dec.c │ │ │ │ ├── marvell_plat_config.c │ │ │ │ ├── plat_cci.c │ │ │ │ └── plat_pm.c │ │ ├── a8k │ │ │ ├── a70x0 │ │ │ │ ├── board │ │ │ │ │ ├── dram_port.c │ │ │ │ │ └── marvell_plat_config.c │ │ │ │ ├── mvebu_def.h │ │ │ │ └── platform.mk │ │ │ ├── a70x0_amc │ │ │ │ ├── board │ │ │ │ │ ├── dram_port.c │ │ │ │ │ └── marvell_plat_config.c │ │ │ │ ├── mvebu_def.h │ │ │ │ └── platform.mk │ │ │ ├── a80x0 │ │ │ │ ├── board │ │ │ │ │ ├── dram_port.c │ │ │ │ │ ├── marvell_plat_config.c │ │ │ │ │ └── phy-porting-layer.h │ │ │ │ ├── mvebu_def.h │ │ │ │ └── platform.mk │ │ │ ├── a80x0_mcbin │ │ │ │ ├── board │ │ │ │ │ ├── dram_port.c │ │ │ │ │ └── marvell_plat_config.c │ │ │ │ ├── mvebu_def.h │ │ │ │ └── platform.mk │ │ │ ├── a80x0_puzzle │ │ │ │ ├── board │ │ │ │ │ ├── dram_port.c │ │ │ │ │ ├── marvell_plat_config.c │ │ │ │ │ └── system_power.c │ │ │ │ ├── mvebu_def.h │ │ │ │ └── platform.mk │ │ │ └── common │ │ │ │ ├── a8k_common.mk │ │ │ │ ├── aarch64 │ │ │ │ ├── a8k_common.c │ │ │ │ ├── plat_arch_config.c │ │ │ │ └── plat_helpers.S │ │ │ │ ├── ble │ │ │ │ ├── ble.ld.S │ │ │ │ ├── ble.mk │ │ │ │ ├── ble_main.c │ │ │ │ └── ble_mem.S │ │ │ │ ├── include │ │ │ │ ├── a8k_plat_def.h │ │ │ │ ├── ddr_info.h │ │ │ │ ├── mentor_i2c_plat.h │ │ │ │ ├── plat_macros.S │ │ │ │ └── platform_def.h │ │ │ │ ├── mss │ │ │ │ ├── mss_a8k.mk │ │ │ │ ├── mss_bl2_setup.c │ │ │ │ ├── mss_bl31_setup.c │ │ │ │ ├── mss_defs.h │ │ │ │ ├── mss_pm_ipc.c │ │ │ │ └── mss_pm_ipc.h │ │ │ │ ├── plat_bl1_setup.c │ │ │ │ ├── plat_bl31_setup.c │ │ │ │ ├── plat_ble_setup.c │ │ │ │ ├── plat_pm.c │ │ │ │ ├── plat_pm_trace.c │ │ │ │ └── plat_thermal.c │ │ └── common │ │ │ ├── aarch64 │ │ │ ├── marvell_bl2_mem_params_desc.c │ │ │ ├── marvell_common.c │ │ │ └── marvell_helpers.S │ │ │ ├── marvell_bl1_setup.c │ │ │ ├── marvell_bl2_setup.c │ │ │ ├── marvell_bl31_setup.c │ │ │ ├── marvell_cci.c │ │ │ ├── marvell_common.mk │ │ │ ├── marvell_console.c │ │ │ ├── marvell_ddr_info.c │ │ │ ├── marvell_gicv2.c │ │ │ ├── marvell_gicv3.c │ │ │ ├── marvell_image_load.c │ │ │ ├── marvell_io_storage.c │ │ │ ├── marvell_pm.c │ │ │ ├── marvell_topology.c │ │ │ ├── mrvl_sip_svc.c │ │ │ ├── mss │ │ │ ├── mss_common.mk │ │ │ ├── mss_ipc_drv.c │ │ │ ├── mss_ipc_drv.h │ │ │ ├── mss_mem.h │ │ │ ├── mss_scp_bl2_format.h │ │ │ ├── mss_scp_bootloader.c │ │ │ └── mss_scp_bootloader.h │ │ │ └── plat_delay_timer.c │ ├── marvell.mk │ └── octeontx │ │ └── otx2 │ │ └── t91 │ │ └── t9130 │ │ ├── board │ │ ├── dram_port.c │ │ ├── marvell_plat_config.c │ │ └── phy-porting-layer.h │ │ ├── mvebu_def.h │ │ └── platform.mk ├── mediatek │ ├── common │ │ ├── custom │ │ │ ├── oem_svc.c │ │ │ └── oem_svc.h │ │ ├── drivers │ │ │ ├── gic600 │ │ │ │ ├── mt_gic_v3.c │ │ │ │ └── mt_gic_v3.h │ │ │ ├── gpio │ │ │ │ ├── mtgpio_common.c │ │ │ │ └── mtgpio_common.h │ │ │ ├── pmic_wrap │ │ │ │ ├── pmic_wrap_init.c │ │ │ │ └── pmic_wrap_init_v2.c │ │ │ ├── rtc │ │ │ │ ├── rtc_common.c │ │ │ │ ├── rtc_mt6359p.c │ │ │ │ └── rtc_mt6359p.h │ │ │ ├── timer │ │ │ │ ├── mt_timer.c │ │ │ │ └── mt_timer.h │ │ │ └── uart │ │ │ │ ├── 8250_console.S │ │ │ │ ├── uart.c │ │ │ │ ├── uart.h │ │ │ │ └── uart8250.h │ │ ├── lpm │ │ │ ├── mt_lp_rm.c │ │ │ └── mt_lp_rm.h │ │ ├── mtk_cirq.c │ │ ├── mtk_cirq.h │ │ ├── mtk_plat_common.c │ │ ├── mtk_plat_common.h │ │ ├── mtk_sip_svc.c │ │ ├── mtk_sip_svc.h │ │ ├── params_setup.c │ │ └── plat_params.h │ ├── mt6795 │ │ ├── aarch64 │ │ │ └── plat_helpers.S │ │ ├── bl31.ld.S │ │ ├── bl31_plat_setup.c │ │ ├── drivers │ │ │ └── timer │ │ │ │ ├── mt_cpuxgpt.c │ │ │ │ └── mt_cpuxgpt.h │ │ ├── include │ │ │ ├── mcucfg.h │ │ │ ├── plat_macros.S │ │ │ ├── plat_private.h │ │ │ ├── plat_sip_calls.h │ │ │ ├── platform_def.h │ │ │ ├── power_tracer.h │ │ │ ├── scu.h │ │ │ └── spm.h │ │ ├── plat_delay_timer.c │ │ ├── plat_mt_gic.c │ │ ├── plat_pm.c │ │ ├── plat_topology.c │ │ ├── platform.mk │ │ ├── power_tracer.c │ │ └── scu.c │ ├── mt8173 │ │ ├── aarch64 │ │ │ ├── plat_helpers.S │ │ │ └── platform_common.c │ │ ├── bl31_plat_setup.c │ │ ├── drivers │ │ │ ├── crypt │ │ │ │ ├── crypt.c │ │ │ │ └── crypt.h │ │ │ ├── mtcmos │ │ │ │ ├── mtcmos.c │ │ │ │ └── mtcmos.h │ │ │ ├── pmic │ │ │ │ └── pmic_wrap_init.h │ │ │ ├── rtc │ │ │ │ ├── rtc.c │ │ │ │ └── rtc.h │ │ │ ├── spm │ │ │ │ ├── spm.c │ │ │ │ ├── spm.h │ │ │ │ ├── spm_hotplug.c │ │ │ │ ├── spm_hotplug.h │ │ │ │ ├── spm_mcdi.c │ │ │ │ ├── spm_mcdi.h │ │ │ │ ├── spm_suspend.c │ │ │ │ └── spm_suspend.h │ │ │ ├── timer │ │ │ │ ├── mt_cpuxgpt.c │ │ │ │ └── mt_cpuxgpt.h │ │ │ └── wdt │ │ │ │ ├── wdt.c │ │ │ │ └── wdt.h │ │ ├── include │ │ │ ├── mcucfg.h │ │ │ ├── mt8173_def.h │ │ │ ├── plat_macros.S │ │ │ ├── plat_private.h │ │ │ ├── plat_sip_calls.h │ │ │ ├── platform_def.h │ │ │ ├── power_tracer.h │ │ │ └── scu.h │ │ ├── plat_mt_gic.c │ │ ├── plat_pm.c │ │ ├── plat_sip_calls.c │ │ ├── plat_topology.c │ │ ├── platform.mk │ │ ├── power_tracer.c │ │ └── scu.c │ ├── mt8183 │ │ ├── aarch64 │ │ │ ├── plat_helpers.S │ │ │ └── platform_common.c │ │ ├── bl31_plat_setup.c │ │ ├── drivers │ │ │ ├── devapc │ │ │ │ ├── devapc.c │ │ │ │ └── devapc.h │ │ │ ├── emi_mpu │ │ │ │ ├── emi_mpu.c │ │ │ │ └── emi_mpu.h │ │ │ ├── gpio │ │ │ │ ├── mtgpio.c │ │ │ │ ├── mtgpio.h │ │ │ │ └── mtgpio_cfg.h │ │ │ ├── mcdi │ │ │ │ ├── mtk_mcdi.c │ │ │ │ └── mtk_mcdi.h │ │ │ ├── mcsi │ │ │ │ ├── mcsi.c │ │ │ │ └── mcsi.h │ │ │ ├── pmic │ │ │ │ ├── pmic.c │ │ │ │ ├── pmic.h │ │ │ │ └── pmic_wrap_init.h │ │ │ ├── rtc │ │ │ │ ├── rtc.c │ │ │ │ └── rtc.h │ │ │ ├── spm │ │ │ │ ├── spm.c │ │ │ │ ├── spm.h │ │ │ │ ├── spm_pmic_wrap.c │ │ │ │ ├── spm_pmic_wrap.h │ │ │ │ ├── spm_suspend.c │ │ │ │ └── spm_suspend.h │ │ │ ├── spmc │ │ │ │ ├── mtspmc.c │ │ │ │ ├── mtspmc.h │ │ │ │ └── mtspmc_private.h │ │ │ ├── sspm │ │ │ │ ├── sspm.c │ │ │ │ └── sspm.h │ │ │ └── timer │ │ │ │ ├── mt_timer.c │ │ │ │ └── mt_timer.h │ │ ├── include │ │ │ ├── mcucfg.h │ │ │ ├── mt_gic_v3.h │ │ │ ├── plat_dcm.h │ │ │ ├── plat_debug.h │ │ │ ├── plat_macros.S │ │ │ ├── plat_private.h │ │ │ ├── platform_def.h │ │ │ ├── power_tracer.h │ │ │ ├── scu.h │ │ │ └── sspm_reg.h │ │ ├── plat_dcm.c │ │ ├── plat_debug.c │ │ ├── plat_mt_gic.c │ │ ├── plat_pm.c │ │ ├── plat_topology.c │ │ ├── platform.mk │ │ └── scu.c │ ├── mt8192 │ │ ├── aarch64 │ │ │ ├── plat_helpers.S │ │ │ └── platform_common.c │ │ ├── bl31_plat_setup.c │ │ ├── drivers │ │ │ ├── dcm │ │ │ │ ├── mtk_dcm.c │ │ │ │ ├── mtk_dcm.h │ │ │ │ ├── mtk_dcm_utils.c │ │ │ │ └── mtk_dcm_utils.h │ │ │ ├── devapc │ │ │ │ ├── devapc.c │ │ │ │ └── devapc.h │ │ │ ├── emi_mpu │ │ │ │ ├── emi_mpu.c │ │ │ │ └── emi_mpu.h │ │ │ ├── gpio │ │ │ │ ├── mtgpio.c │ │ │ │ └── mtgpio.h │ │ │ ├── mcdi │ │ │ │ ├── mt_cpu_pm.c │ │ │ │ ├── mt_cpu_pm_cpc.c │ │ │ │ ├── mt_cpu_pm_cpc.h │ │ │ │ ├── mt_lp_irqremain.c │ │ │ │ ├── mt_lp_irqremain.h │ │ │ │ ├── mt_mcdi.c │ │ │ │ └── mt_mcdi.h │ │ │ ├── pmic │ │ │ │ ├── pmic.c │ │ │ │ ├── pmic.h │ │ │ │ └── pmic_wrap_init.h │ │ │ ├── ptp3 │ │ │ │ ├── mtk_ptp3_common.h │ │ │ │ └── mtk_ptp3_main.c │ │ │ ├── spm │ │ │ │ ├── build.mk │ │ │ │ ├── constraints │ │ │ │ │ ├── mt_spm_rc_bus26m.c │ │ │ │ │ ├── mt_spm_rc_cpu_buck_ldo.c │ │ │ │ │ ├── mt_spm_rc_dram.c │ │ │ │ │ ├── mt_spm_rc_internal.h │ │ │ │ │ └── mt_spm_rc_syspll.c │ │ │ │ ├── mt_spm.c │ │ │ │ ├── mt_spm.h │ │ │ │ ├── mt_spm_cond.c │ │ │ │ ├── mt_spm_cond.h │ │ │ │ ├── mt_spm_conservation.c │ │ │ │ ├── mt_spm_conservation.h │ │ │ │ ├── mt_spm_constraint.h │ │ │ │ ├── mt_spm_idle.c │ │ │ │ ├── mt_spm_idle.h │ │ │ │ ├── mt_spm_internal.c │ │ │ │ ├── mt_spm_internal.h │ │ │ │ ├── mt_spm_pmic_wrap.c │ │ │ │ ├── mt_spm_pmic_wrap.h │ │ │ │ ├── mt_spm_reg.h │ │ │ │ ├── mt_spm_resource_req.h │ │ │ │ ├── mt_spm_suspend.c │ │ │ │ ├── mt_spm_suspend.h │ │ │ │ ├── mt_spm_vcorefs.c │ │ │ │ ├── mt_spm_vcorefs.h │ │ │ │ ├── notifier │ │ │ │ │ ├── mt_spm_notifier.h │ │ │ │ │ ├── mt_spm_sspm_intc.h │ │ │ │ │ └── mt_spm_sspm_notifier.c │ │ │ │ ├── pcm_def.h │ │ │ │ └── sleep_def.h │ │ │ └── spmc │ │ │ │ ├── mtspmc.c │ │ │ │ ├── mtspmc.h │ │ │ │ └── mtspmc_private.h │ │ ├── include │ │ │ ├── mcucfg.h │ │ │ ├── plat_helpers.h │ │ │ ├── plat_macros.S │ │ │ ├── plat_mtk_lpm.h │ │ │ ├── plat_pm.h │ │ │ ├── plat_private.h │ │ │ ├── plat_sip_calls.h │ │ │ ├── platform_def.h │ │ │ └── rtc.h │ │ ├── plat_pm.c │ │ ├── plat_sip_calls.c │ │ ├── plat_topology.c │ │ └── platform.mk │ └── mt8195 │ │ ├── aarch64 │ │ ├── plat_helpers.S │ │ └── platform_common.c │ │ ├── bl31_plat_setup.c │ │ ├── drivers │ │ ├── gpio │ │ │ ├── mtgpio.c │ │ │ └── mtgpio.h │ │ ├── mcdi │ │ │ ├── mt_cpu_pm.c │ │ │ ├── mt_cpu_pm_cpc.c │ │ │ ├── mt_cpu_pm_cpc.h │ │ │ ├── mt_mcdi.c │ │ │ └── mt_mcdi.h │ │ ├── pmic │ │ │ ├── pmic.c │ │ │ ├── pmic.h │ │ │ └── pmic_wrap_init.h │ │ └── spmc │ │ │ ├── mtspmc.c │ │ │ ├── mtspmc.h │ │ │ └── mtspmc_private.h │ │ ├── include │ │ ├── mcucfg.h │ │ ├── plat_helpers.h │ │ ├── plat_macros.S │ │ ├── plat_mtk_lpm.h │ │ ├── plat_pm.h │ │ ├── plat_private.h │ │ ├── plat_sip_calls.h │ │ ├── platform_def.h │ │ └── rtc.h │ │ ├── plat_pm.c │ │ ├── plat_sip_calls.c │ │ ├── plat_topology.c │ │ └── platform.mk ├── nvidia │ └── tegra │ │ ├── common │ │ ├── aarch64 │ │ │ └── tegra_helpers.S │ │ ├── tegra_bl31_setup.c │ │ ├── tegra_common.mk │ │ ├── tegra_delay_timer.c │ │ ├── tegra_fiq_glue.c │ │ ├── tegra_gicv2.c │ │ ├── tegra_gicv3.c │ │ ├── tegra_io_storage.c │ │ ├── tegra_platform.c │ │ ├── tegra_pm.c │ │ ├── tegra_sdei.c │ │ ├── tegra_sip_calls.c │ │ └── tegra_stack_protector.c │ │ ├── drivers │ │ ├── bpmp │ │ │ └── bpmp.c │ │ ├── bpmp_ipc │ │ │ ├── intf.c │ │ │ ├── intf.h │ │ │ ├── ivc.c │ │ │ └── ivc.h │ │ ├── flowctrl │ │ │ └── flowctrl.c │ │ ├── gpcdma │ │ │ └── gpcdma.c │ │ ├── memctrl │ │ │ ├── memctrl_v1.c │ │ │ └── memctrl_v2.c │ │ ├── pmc │ │ │ └── pmc.c │ │ ├── smmu │ │ │ └── smmu.c │ │ └── spe │ │ │ └── shared_console.S │ │ ├── include │ │ ├── drivers │ │ │ ├── bpmp.h │ │ │ ├── bpmp_ipc.h │ │ │ ├── flowctrl.h │ │ │ ├── gpcdma.h │ │ │ ├── mce.h │ │ │ ├── memctrl.h │ │ │ ├── memctrl_v1.h │ │ │ ├── memctrl_v2.h │ │ │ ├── pmc.h │ │ │ ├── security_engine.h │ │ │ ├── smmu.h │ │ │ ├── spe.h │ │ │ └── tegra_gic.h │ │ ├── lib │ │ │ └── profiler.h │ │ ├── plat_macros.S │ │ ├── platform_def.h │ │ ├── t132 │ │ │ └── tegra_def.h │ │ ├── t186 │ │ │ ├── tegra186_private.h │ │ │ ├── tegra_def.h │ │ │ └── tegra_mc_def.h │ │ ├── t194 │ │ │ ├── tegra194_private.h │ │ │ ├── tegra194_ras_private.h │ │ │ └── tegra_def.h │ │ ├── t210 │ │ │ └── tegra_def.h │ │ ├── tegra_platform.h │ │ └── tegra_private.h │ │ ├── lib │ │ └── debug │ │ │ └── profiler.c │ │ ├── platform.mk │ │ ├── scat │ │ └── bl31.scat │ │ └── soc │ │ ├── t132 │ │ ├── plat_psci_handlers.c │ │ ├── plat_secondary.c │ │ ├── plat_setup.c │ │ ├── plat_sip_calls.c │ │ └── platform_t132.mk │ │ ├── t186 │ │ ├── drivers │ │ │ ├── include │ │ │ │ ├── mce_private.h │ │ │ │ └── t18x_ari.h │ │ │ ├── mce │ │ │ │ ├── aarch64 │ │ │ │ │ └── nvg_helpers.S │ │ │ │ ├── ari.c │ │ │ │ ├── mce.c │ │ │ │ └── nvg.c │ │ │ └── se │ │ │ │ ├── se.c │ │ │ │ └── se_private.h │ │ ├── plat_memctrl.c │ │ ├── plat_psci_handlers.c │ │ ├── plat_secondary.c │ │ ├── plat_setup.c │ │ ├── plat_sip_calls.c │ │ ├── plat_smmu.c │ │ ├── plat_trampoline.S │ │ └── platform_t186.mk │ │ ├── t194 │ │ ├── drivers │ │ │ ├── include │ │ │ │ ├── mce_private.h │ │ │ │ ├── se.h │ │ │ │ └── t194_nvg.h │ │ │ ├── mce │ │ │ │ ├── aarch64 │ │ │ │ │ └── nvg_helpers.S │ │ │ │ ├── mce.c │ │ │ │ └── nvg.c │ │ │ └── se │ │ │ │ ├── se.c │ │ │ │ └── se_private.h │ │ ├── plat_memctrl.c │ │ ├── plat_psci_handlers.c │ │ ├── plat_ras.c │ │ ├── plat_secondary.c │ │ ├── plat_setup.c │ │ ├── plat_sip_calls.c │ │ ├── plat_smmu.c │ │ ├── plat_trampoline.S │ │ └── platform_t194.mk │ │ └── t210 │ │ ├── drivers │ │ └── se │ │ │ ├── se_private.h │ │ │ └── security_engine.c │ │ ├── plat_psci_handlers.c │ │ ├── plat_secondary.c │ │ ├── plat_setup.c │ │ ├── plat_sip_calls.c │ │ └── platform_t210.mk ├── nxp │ ├── common │ │ ├── aarch64 │ │ │ ├── bl31_data.S │ │ │ └── ls_helpers.S │ │ ├── fip_handler │ │ │ ├── common │ │ │ │ ├── plat_def_fip_uuid.h │ │ │ │ ├── plat_tbbr_img_def.h │ │ │ │ └── platform_oid.h │ │ │ ├── ddr_fip │ │ │ │ ├── ddr_fip_io.mk │ │ │ │ ├── ddr_io_storage.c │ │ │ │ └── ddr_io_storage.h │ │ │ └── fuse_fip │ │ │ │ ├── fuse.mk │ │ │ │ ├── fuse_io.h │ │ │ │ └── fuse_io_storage.c │ │ ├── img_loadr │ │ │ ├── img_loadr.mk │ │ │ ├── load_img.c │ │ │ └── load_img.h │ │ ├── include │ │ │ └── default │ │ │ │ ├── ch_2 │ │ │ │ ├── soc_default_base_addr.h │ │ │ │ └── soc_default_helper_macros.h │ │ │ │ ├── ch_3 │ │ │ │ └── soc_default_base_addr.h │ │ │ │ ├── ch_3_2 │ │ │ │ ├── soc_default_base_addr.h │ │ │ │ └── soc_default_helper_macros.h │ │ │ │ └── plat_default_def.h │ │ ├── nv_storage │ │ │ ├── nv_storage.mk │ │ │ ├── plat_nv_storage.c │ │ │ └── plat_nv_storage.h │ │ ├── plat_make_helper │ │ │ └── plat_build_macros.mk │ │ ├── psci │ │ │ ├── aarch64 │ │ │ │ └── psci_utils.S │ │ │ ├── include │ │ │ │ └── plat_psci.h │ │ │ ├── plat_psci.c │ │ │ └── psci.mk │ │ ├── setup │ │ │ ├── aarch64 │ │ │ │ └── ls_bl2_mem_params_desc.c │ │ │ ├── common.mk │ │ │ ├── core.mk │ │ │ ├── include │ │ │ │ ├── bl31_data.h │ │ │ │ ├── ls_interrupt_mgmt.h │ │ │ │ ├── mmu_def.h │ │ │ │ ├── plat_common.h │ │ │ │ └── plat_macros.S │ │ │ ├── ls_bl2_el3_setup.c │ │ │ ├── ls_bl31_setup.c │ │ │ ├── ls_common.c │ │ │ ├── ls_err.c │ │ │ ├── ls_image_load.c │ │ │ ├── ls_interrupt_mgmt.c │ │ │ ├── ls_io_storage.c │ │ │ └── ls_stack_protector.c │ │ ├── sip_svc │ │ │ ├── aarch64 │ │ │ │ └── sipsvc.S │ │ │ ├── include │ │ │ │ └── sipsvc.h │ │ │ ├── sip_svc.c │ │ │ └── sipsvc.mk │ │ ├── tbbr │ │ │ ├── csf_tbbr.c │ │ │ ├── nxp_rotpk.S │ │ │ ├── tbbr.mk │ │ │ └── x509_tbbr.c │ │ └── warm_reset │ │ │ ├── plat_warm_reset.c │ │ │ ├── plat_warm_rst.h │ │ │ └── warm_reset.mk │ └── soc-lx2160a │ │ ├── aarch64 │ │ ├── lx2160a.S │ │ ├── lx2160a_helpers.S │ │ └── lx2160a_warm_rst.S │ │ ├── ddr_fip.mk │ │ ├── ddr_sb.mk │ │ ├── ddr_tbbr.mk │ │ ├── erratas_soc.c │ │ ├── erratas_soc.mk │ │ ├── include │ │ ├── errata.h │ │ └── soc.h │ │ ├── lx2160aqds │ │ ├── ddr_init.c │ │ ├── plat_def.h │ │ ├── platform.c │ │ ├── platform.mk │ │ ├── platform_def.h │ │ └── policy.h │ │ ├── lx2160ardb │ │ ├── ddr_init.c │ │ ├── plat_def.h │ │ ├── platform.c │ │ ├── platform.mk │ │ ├── platform_def.h │ │ └── policy.h │ │ ├── lx2162aqds │ │ ├── ddr_init.c │ │ ├── plat_def.h │ │ ├── platform.c │ │ ├── platform.mk │ │ ├── platform_def.h │ │ └── policy.h │ │ ├── soc.c │ │ ├── soc.def │ │ └── soc.mk ├── qemu │ ├── common │ │ ├── aarch32 │ │ │ └── plat_helpers.S │ │ ├── aarch64 │ │ │ └── plat_helpers.S │ │ ├── include │ │ │ └── plat_macros.S │ │ ├── qemu_bl1_setup.c │ │ ├── qemu_bl2_mem_params_desc.c │ │ ├── qemu_bl2_setup.c │ │ ├── qemu_bl31_setup.c │ │ ├── qemu_common.c │ │ ├── qemu_console.c │ │ ├── qemu_gicv2.c │ │ ├── qemu_gicv3.c │ │ ├── qemu_image_load.c │ │ ├── qemu_io_storage.c │ │ ├── qemu_pm.c │ │ ├── qemu_private.h │ │ ├── qemu_rotpk.S │ │ ├── qemu_spm.c │ │ ├── qemu_stack_protector.c │ │ ├── qemu_trusted_boot.c │ │ ├── sp_min │ │ │ ├── sp_min-qemu.mk │ │ │ └── sp_min_setup.c │ │ └── topology.c │ ├── qemu │ │ ├── include │ │ │ └── platform_def.h │ │ └── platform.mk │ └── qemu_sbsa │ │ ├── include │ │ └── platform_def.h │ │ ├── platform.mk │ │ ├── sbsa_pm.c │ │ ├── sbsa_private.h │ │ └── sbsa_topology.c ├── qti │ ├── common │ │ ├── inc │ │ │ ├── aarch64 │ │ │ │ └── plat_macros.S │ │ │ ├── qti_board_def.h │ │ │ ├── qti_cpu.h │ │ │ ├── qti_interrupt_svc.h │ │ │ ├── qti_plat.h │ │ │ ├── qti_rng.h │ │ │ ├── qti_uart_console.h │ │ │ └── spmi_arb.h │ │ └── src │ │ │ ├── aarch64 │ │ │ ├── qti_helpers.S │ │ │ ├── qti_kryo4_gold.S │ │ │ ├── qti_kryo4_silver.S │ │ │ └── qti_uart_console.S │ │ │ ├── pm8998.c │ │ │ ├── qti_bl31_setup.c │ │ │ ├── qti_common.c │ │ │ ├── qti_gic_v3.c │ │ │ ├── qti_interrupt_svc.c │ │ │ ├── qti_pm.c │ │ │ ├── qti_rng.c │ │ │ ├── qti_stack_protector.c │ │ │ ├── qti_syscall.c │ │ │ ├── qti_topology.c │ │ │ └── spmi_arb.c │ ├── qtiseclib │ │ ├── inc │ │ │ ├── qtiseclib_cb_interface.h │ │ │ ├── qtiseclib_defs.h │ │ │ ├── qtiseclib_interface.h │ │ │ └── sc7180 │ │ │ │ └── qtiseclib_defs_plat.h │ │ └── src │ │ │ ├── qtiseclib_cb_interface.c │ │ │ └── qtiseclib_interface_stub.c │ └── sc7180 │ │ ├── inc │ │ ├── platform_def.h │ │ ├── qti_rng_io.h │ │ └── qti_secure_io_cfg.h │ │ └── platform.mk ├── renesas │ ├── common │ │ ├── aarch64 │ │ │ ├── plat_helpers.S │ │ │ └── platform_common.c │ │ ├── bl2_cpg_init.c │ │ ├── bl2_interrupt_error.c │ │ ├── bl2_plat_mem_params_desc.c │ │ ├── bl2_secure_setting.c │ │ ├── bl31_plat_setup.c │ │ ├── common.mk │ │ ├── include │ │ │ ├── plat.ld.S │ │ │ ├── plat_macros.S │ │ │ ├── platform_def.h │ │ │ ├── rcar_def.h │ │ │ ├── rcar_private.h │ │ │ ├── rcar_version.h │ │ │ └── registers │ │ │ │ ├── axi_registers.h │ │ │ │ ├── cpg_registers.h │ │ │ │ └── lifec_registers.h │ │ ├── plat_image_load.c │ │ ├── plat_pm.c │ │ ├── plat_storage.c │ │ ├── plat_topology.c │ │ └── rcar_common.c │ ├── rcar │ │ ├── bl2_plat_setup.c │ │ └── platform.mk │ ├── rcar_gen4 │ │ ├── aarch64 │ │ │ ├── plat_helpers.S │ │ │ └── platform_common.c │ │ ├── bl31_plat_setup.c │ │ ├── include │ │ │ ├── plat.ld.S │ │ │ ├── plat_helpers.h │ │ │ ├── plat_macros.S │ │ │ ├── platform_def.h │ │ │ ├── rcar_def.h │ │ │ ├── rcar_private.h │ │ │ └── rcar_version.h │ │ ├── plat_pm.c │ │ ├── plat_pm_scmi.c │ │ ├── plat_topology.c │ │ ├── platform.mk │ │ ├── rcar_common.c │ │ └── rcar_stack_protector.c │ └── rzg │ │ ├── bl2_plat_setup.c │ │ └── platform.mk ├── rockchip │ ├── common │ │ ├── aarch32 │ │ │ ├── plat_helpers.S │ │ │ ├── platform_common.c │ │ │ └── pmu_sram_cpus_on.S │ │ ├── aarch64 │ │ │ ├── plat_helpers.S │ │ │ ├── platform_common.c │ │ │ └── pmu_sram_cpus_on.S │ │ ├── bl31_plat_setup.c │ │ ├── drivers │ │ │ ├── parameter │ │ │ │ ├── ddr_parameter.c │ │ │ │ └── ddr_parameter.h │ │ │ └── pmu │ │ │ │ └── pmu_com.h │ │ ├── include │ │ │ ├── plat_macros.S │ │ │ ├── plat_params.h │ │ │ ├── plat_private.h │ │ │ └── rockchip_sip_svc.h │ │ ├── params_setup.c │ │ ├── plat_pm.c │ │ ├── plat_topology.c │ │ ├── pmusram │ │ │ ├── cpus_on_fixed_addr.S │ │ │ └── cpus_on_fixed_addr.h │ │ ├── rockchip_gicv2.c │ │ ├── rockchip_gicv3.c │ │ ├── rockchip_sip_svc.c │ │ ├── rockchip_stack_protector.c │ │ └── sp_min_plat_setup.c │ ├── px30 │ │ ├── drivers │ │ │ ├── pmu │ │ │ │ ├── plat_pmu_macros.S │ │ │ │ ├── pmu.c │ │ │ │ └── pmu.h │ │ │ ├── secure │ │ │ │ ├── secure.c │ │ │ │ └── secure.h │ │ │ └── soc │ │ │ │ ├── soc.c │ │ │ │ └── soc.h │ │ ├── include │ │ │ ├── plat.ld.S │ │ │ ├── plat_sip_calls.h │ │ │ └── platform_def.h │ │ ├── plat_sip_calls.c │ │ ├── platform.mk │ │ └── px30_def.h │ ├── rk3288 │ │ ├── drivers │ │ │ ├── pmu │ │ │ │ ├── plat_pmu_macros.S │ │ │ │ ├── pmu.c │ │ │ │ └── pmu.h │ │ │ ├── secure │ │ │ │ ├── secure.c │ │ │ │ └── secure.h │ │ │ └── soc │ │ │ │ ├── soc.c │ │ │ │ └── soc.h │ │ ├── include │ │ │ ├── plat_sip_calls.h │ │ │ ├── plat_sp_min.ld.S │ │ │ ├── platform_def.h │ │ │ └── shared │ │ │ │ └── bl32_param.h │ │ ├── plat_sip_calls.c │ │ ├── platform.mk │ │ ├── rk3288_def.h │ │ └── sp_min │ │ │ └── sp_min-rk3288.mk │ ├── rk3328 │ │ ├── drivers │ │ │ ├── pmu │ │ │ │ ├── plat_pmu_macros.S │ │ │ │ ├── pmu.c │ │ │ │ └── pmu.h │ │ │ └── soc │ │ │ │ ├── soc.c │ │ │ │ └── soc.h │ │ ├── include │ │ │ ├── plat.ld.S │ │ │ └── platform_def.h │ │ ├── platform.mk │ │ └── rk3328_def.h │ ├── rk3368 │ │ ├── drivers │ │ │ ├── ddr │ │ │ │ ├── ddr_rk3368.c │ │ │ │ ├── ddr_rk3368.h │ │ │ │ └── rk3368_ddr_reg_resume_V1.05.bin │ │ │ ├── pmu │ │ │ │ ├── plat_pmu_macros.S │ │ │ │ ├── pmu.c │ │ │ │ └── pmu.h │ │ │ └── soc │ │ │ │ ├── soc.c │ │ │ │ └── soc.h │ │ ├── include │ │ │ ├── plat.ld.S │ │ │ ├── plat_sip_calls.h │ │ │ └── platform_def.h │ │ ├── plat_sip_calls.c │ │ ├── platform.mk │ │ └── rk3368_def.h │ └── rk3399 │ │ ├── drivers │ │ ├── dp │ │ │ ├── cdn_dp.c │ │ │ ├── cdn_dp.h │ │ │ └── hdcp.bin │ │ ├── dram │ │ │ ├── dfs.c │ │ │ ├── dfs.h │ │ │ ├── dram.c │ │ │ ├── dram.h │ │ │ ├── dram_spec_timing.c │ │ │ ├── dram_spec_timing.h │ │ │ ├── suspend.c │ │ │ └── suspend.h │ │ ├── gpio │ │ │ └── rk3399_gpio.c │ │ ├── m0 │ │ │ ├── Makefile │ │ │ ├── include │ │ │ │ ├── addressmap.h │ │ │ │ └── rk3399_mcu.h │ │ │ └── src │ │ │ │ ├── dram.c │ │ │ │ ├── rk3399m0.ld.S │ │ │ │ ├── startup.c │ │ │ │ ├── stopwatch.c │ │ │ │ └── suspend.c │ │ ├── pmu │ │ │ ├── m0_ctl.c │ │ │ ├── m0_ctl.h │ │ │ ├── plat_pmu_macros.S │ │ │ ├── pmu.c │ │ │ ├── pmu.h │ │ │ └── pmu_fw.c │ │ ├── pwm │ │ │ ├── pwm.c │ │ │ └── pwm.h │ │ ├── secure │ │ │ ├── secure.c │ │ │ └── secure.h │ │ └── soc │ │ │ ├── soc.c │ │ │ └── soc.h │ │ ├── include │ │ ├── addressmap.h │ │ ├── plat.ld.S │ │ ├── plat_sip_calls.h │ │ ├── platform_def.h │ │ └── shared │ │ │ ├── addressmap_shared.h │ │ │ ├── bl31_param.h │ │ │ ├── dram_regs.h │ │ │ ├── m0_param.h │ │ │ ├── misc_regs.h │ │ │ ├── pmu_bits.h │ │ │ └── pmu_regs.h │ │ ├── plat_sip_calls.c │ │ ├── platform.mk │ │ └── rk3399_def.h ├── rpi │ ├── common │ │ ├── aarch64 │ │ │ └── plat_helpers.S │ │ ├── include │ │ │ └── rpi_shared.h │ │ ├── rpi3_common.c │ │ ├── rpi3_image_load.c │ │ ├── rpi3_io_storage.c │ │ ├── rpi3_pm.c │ │ ├── rpi3_rotpk.S │ │ ├── rpi3_stack_protector.c │ │ ├── rpi3_topology.c │ │ └── rpi3_trusted_boot.c │ ├── rpi3 │ │ ├── aarch64 │ │ │ └── rpi3_bl2_mem_params_desc.c │ │ ├── include │ │ │ ├── plat_macros.S │ │ │ ├── platform_def.h │ │ │ └── rpi_hw.h │ │ ├── platform.mk │ │ ├── rpi3_bl1_setup.c │ │ ├── rpi3_bl2_setup.c │ │ ├── rpi3_bl31_setup.c │ │ └── rpi_mbox_board.c │ └── rpi4 │ │ ├── aarch64 │ │ └── armstub8_header.S │ │ ├── include │ │ ├── plat.ld.S │ │ ├── plat_macros.S │ │ ├── platform_def.h │ │ └── rpi_hw.h │ │ ├── platform.mk │ │ └── rpi4_bl31_setup.c ├── socionext │ ├── synquacer │ │ ├── drivers │ │ │ ├── mhu │ │ │ │ ├── sq_mhu.c │ │ │ │ └── sq_mhu.h │ │ │ ├── scp │ │ │ │ ├── sq_scmi.c │ │ │ │ └── sq_scp.c │ │ │ └── scpi │ │ │ │ ├── sq_scpi.c │ │ │ │ └── sq_scpi.h │ │ ├── include │ │ │ ├── plat.ld.S │ │ │ ├── plat_macros.S │ │ │ ├── platform_def.h │ │ │ └── sq_common.h │ │ ├── platform.mk │ │ ├── sq_bl31_setup.c │ │ ├── sq_ccn.c │ │ ├── sq_gicv3.c │ │ ├── sq_helpers.S │ │ ├── sq_psci.c │ │ ├── sq_spm.c │ │ ├── sq_topology.c │ │ └── sq_xlat_setup.c │ └── uniphier │ │ ├── include │ │ ├── plat_macros.S │ │ └── platform_def.h │ │ ├── platform.mk │ │ ├── tsp │ │ ├── tsp-uniphier.mk │ │ └── uniphier_tsp_setup.c │ │ ├── uniphier.h │ │ ├── uniphier_bl2_setup.c │ │ ├── uniphier_bl31_setup.c │ │ ├── uniphier_boot_device.c │ │ ├── uniphier_cci.c │ │ ├── uniphier_console.S │ │ ├── uniphier_console.h │ │ ├── uniphier_console_setup.c │ │ ├── uniphier_emmc.c │ │ ├── uniphier_gicv3.c │ │ ├── uniphier_helpers.S │ │ ├── uniphier_image_desc.c │ │ ├── uniphier_io_storage.c │ │ ├── uniphier_nand.c │ │ ├── uniphier_psci.c │ │ ├── uniphier_rotpk.S │ │ ├── uniphier_scp.c │ │ ├── uniphier_smp.S │ │ ├── uniphier_soc_info.c │ │ ├── uniphier_syscnt.c │ │ ├── uniphier_tbbr.c │ │ ├── uniphier_topology.c │ │ ├── uniphier_usb.c │ │ └── uniphier_xlat_setup.c ├── st │ ├── common │ │ ├── bl2_io_storage.c │ │ ├── include │ │ │ ├── stm32mp_auth.h │ │ │ ├── stm32mp_common.h │ │ │ ├── stm32mp_dt.h │ │ │ ├── stm32mp_shared_resources.h │ │ │ └── stm32mp_shres_helpers.h │ │ ├── stm32mp_auth.c │ │ ├── stm32mp_common.c │ │ └── stm32mp_dt.c │ └── stm32mp1 │ │ ├── bl2_plat_setup.c │ │ ├── include │ │ ├── boot_api.h │ │ ├── platform_def.h │ │ ├── stm32mp1_context.h │ │ ├── stm32mp1_dbgmcu.h │ │ ├── stm32mp1_private.h │ │ ├── stm32mp1_shared_resources.h │ │ └── stm32mp1_smc.h │ │ ├── plat_bl2_mem_params_desc.c │ │ ├── plat_image_load.c │ │ ├── platform.mk │ │ ├── services │ │ ├── bsec_svc.c │ │ ├── bsec_svc.h │ │ └── stm32mp1_svc_setup.c │ │ ├── sp_min │ │ ├── sp_min-stm32mp1.mk │ │ └── sp_min_setup.c │ │ ├── stm32mp1.S │ │ ├── stm32mp1.ld.S │ │ ├── stm32mp1_boot_device.c │ │ ├── stm32mp1_context.c │ │ ├── stm32mp1_dbgmcu.c │ │ ├── stm32mp1_def.h │ │ ├── stm32mp1_gic.c │ │ ├── stm32mp1_helper.S │ │ ├── stm32mp1_pm.c │ │ ├── stm32mp1_private.c │ │ ├── stm32mp1_scmi.c │ │ ├── stm32mp1_security.c │ │ ├── stm32mp1_shared_resources.c │ │ ├── stm32mp1_stack_protector.c │ │ ├── stm32mp1_syscfg.c │ │ └── stm32mp1_topology.c ├── ti │ └── k3 │ │ ├── board │ │ ├── generic │ │ │ ├── board.mk │ │ │ └── include │ │ │ │ └── board_def.h │ │ └── lite │ │ │ ├── board.mk │ │ │ └── include │ │ │ └── board_def.h │ │ ├── common │ │ ├── drivers │ │ │ ├── sec_proxy │ │ │ │ ├── sec_proxy.c │ │ │ │ └── sec_proxy.h │ │ │ └── ti_sci │ │ │ │ ├── ti_sci.c │ │ │ │ ├── ti_sci.h │ │ │ │ └── ti_sci_protocol.h │ │ ├── k3_bl31_setup.c │ │ ├── k3_console.c │ │ ├── k3_gicv3.c │ │ ├── k3_helpers.S │ │ ├── k3_psci.c │ │ ├── k3_topology.c │ │ └── plat_common.mk │ │ ├── include │ │ ├── k3_console.h │ │ ├── k3_gicv3.h │ │ ├── plat_macros.S │ │ └── platform_def.h │ │ └── platform.mk └── xilinx │ ├── common │ ├── include │ │ ├── ipi.h │ │ ├── plat_startup.h │ │ ├── pm_client.h │ │ ├── pm_common.h │ │ └── pm_ipi.h │ ├── ipi.c │ ├── ipi_mailbox_service │ │ ├── ipi_mailbox_svc.c │ │ └── ipi_mailbox_svc.h │ ├── plat_startup.c │ └── pm_service │ │ └── pm_ipi.c │ ├── versal │ ├── aarch64 │ │ ├── versal_common.c │ │ └── versal_helpers.S │ ├── bl31_versal_setup.c │ ├── include │ │ ├── plat_ipi.h │ │ ├── plat_macros.S │ │ ├── plat_pm_common.h │ │ ├── plat_private.h │ │ ├── platform_def.h │ │ └── versal_def.h │ ├── plat_psci.c │ ├── plat_topology.c │ ├── plat_versal.c │ ├── platform.mk │ ├── pm_service │ │ ├── pm_api_sys.c │ │ ├── pm_api_sys.h │ │ ├── pm_client.c │ │ ├── pm_defs.h │ │ ├── pm_node.h │ │ ├── pm_svc_main.c │ │ └── pm_svc_main.h │ ├── sip_svc_setup.c │ ├── versal_gicv3.c │ └── versal_ipi.c │ └── zynqmp │ ├── aarch64 │ ├── zynqmp_common.c │ └── zynqmp_helpers.S │ ├── bl31_zynqmp_setup.c │ ├── include │ ├── plat_ipi.h │ ├── plat_macros.S │ ├── plat_pm_common.h │ ├── plat_private.h │ ├── platform_def.h │ └── zynqmp_def.h │ ├── plat_psci.c │ ├── plat_topology.c │ ├── plat_zynqmp.c │ ├── platform.mk │ ├── pm_service │ ├── pm_api_clock.c │ ├── pm_api_clock.h │ ├── pm_api_ioctl.c │ ├── pm_api_ioctl.h │ ├── pm_api_pinctrl.c │ ├── pm_api_pinctrl.h │ ├── pm_api_sys.c │ ├── pm_api_sys.h │ ├── pm_client.c │ ├── pm_defs.h │ ├── pm_svc_main.c │ └── pm_svc_main.h │ ├── sip_svc_setup.c │ ├── tsp │ ├── tsp-zynqmp.mk │ └── tsp_plat_setup.c │ └── zynqmp_ipi.c ├── readme.rst ├── services ├── arm_arch_svc │ └── arm_arch_svc_setup.c ├── spd │ ├── opteed │ │ ├── opteed.mk │ │ ├── opteed_common.c │ │ ├── opteed_helpers.S │ │ ├── opteed_main.c │ │ ├── opteed_pm.c │ │ ├── opteed_private.h │ │ ├── teesmc_opteed.h │ │ └── teesmc_opteed_macros.h │ ├── tlkd │ │ ├── tlkd.mk │ │ ├── tlkd_common.c │ │ ├── tlkd_helpers.S │ │ ├── tlkd_main.c │ │ ├── tlkd_pm.c │ │ └── tlkd_private.h │ ├── trusty │ │ ├── generic-arm64-smcall.c │ │ ├── generic-arm64-smcall.h │ │ ├── sm_err.h │ │ ├── smcall.h │ │ ├── trusty.c │ │ ├── trusty.mk │ │ └── trusty_helpers.S │ └── tspd │ │ ├── tspd.mk │ │ ├── tspd_common.c │ │ ├── tspd_helpers.S │ │ ├── tspd_main.c │ │ ├── tspd_pm.c │ │ └── tspd_private.h └── std_svc │ ├── sdei │ ├── sdei_dispatch.S │ ├── sdei_event.c │ ├── sdei_intr_mgmt.c │ ├── sdei_main.c │ ├── sdei_private.h │ └── sdei_state.c │ ├── spm_mm │ ├── aarch64 │ │ ├── spm_mm_helpers.S │ │ └── spm_mm_shim_exceptions.S │ ├── spm_mm.mk │ ├── spm_mm_main.c │ ├── spm_mm_private.h │ ├── spm_mm_setup.c │ ├── spm_mm_shim_private.h │ └── spm_mm_xlat.c │ ├── spmd │ ├── aarch64 │ │ └── spmd_helpers.S │ ├── spmd.mk │ ├── spmd_main.c │ ├── spmd_pm.c │ └── spmd_private.h │ ├── std_svc_setup.c │ └── trng │ ├── trng_entropy_pool.c │ ├── trng_entropy_pool.h │ └── trng_main.c └── tools ├── amlogic ├── Makefile └── doimage.c ├── cert_create ├── Makefile ├── include │ ├── cert.h │ ├── cmd_opt.h │ ├── debug.h │ ├── dualroot │ │ └── cot.h │ ├── ext.h │ ├── key.h │ ├── sha.h │ └── tbbr │ │ ├── tbb_cert.h │ │ ├── tbb_ext.h │ │ └── tbb_key.h └── src │ ├── cert.c │ ├── cmd_opt.c │ ├── dualroot │ ├── cot.c │ └── cot.mk │ ├── ext.c │ ├── key.c │ ├── main.c │ ├── sha.c │ └── tbbr │ ├── tbb_cert.c │ ├── tbb_ext.c │ ├── tbb_key.c │ └── tbbr.mk ├── encrypt_fw ├── Makefile ├── include │ ├── cmd_opt.h │ ├── debug.h │ └── encrypt.h └── src │ ├── cmd_opt.c │ ├── encrypt.c │ └── main.c ├── fiptool ├── Makefile ├── Makefile.msvc ├── fiptool.c ├── fiptool.h ├── fiptool_platform.h ├── tbbr_config.c ├── tbbr_config.h ├── win_posix.c └── win_posix.h ├── marvell └── doimage │ ├── Makefile │ ├── doimage.c │ ├── doimage.mk │ └── secure │ ├── aes_key.txt │ ├── csk_priv_pem0.key │ ├── csk_priv_pem1.key │ ├── csk_priv_pem2.key │ ├── csk_priv_pem3.key │ ├── kak_priv_pem.key │ ├── sec_img_7K.cfg │ └── sec_img_8K.cfg ├── memory └── print_memory_map.py ├── nxp ├── cert_create_helper │ ├── cert_create_tbbr.mk │ ├── include │ │ ├── pdef_tbb_cert.h │ │ ├── pdef_tbb_ext.h │ │ └── pdef_tbb_key.h │ └── src │ │ ├── pdef_tbb_cert.c │ │ ├── pdef_tbb_ext.c │ │ └── pdef_tbb_key.c ├── create_pbl │ ├── Makefile │ ├── README │ ├── byte_swap.c │ ├── create_pbl.c │ ├── create_pbl.mk │ ├── pbl_ch2.mk │ └── pbl_ch3.mk └── plat_fiptool │ ├── plat_def_uuid_config.c │ └── plat_fiptool.mk ├── renesas ├── rcar_layout_create │ ├── makefile │ ├── sa0.c │ ├── sa0.ld.S │ ├── sa6.c │ └── sa6.ld.S └── rzg_layout_create │ ├── makefile │ ├── sa0.c │ ├── sa0.ld.S │ ├── sa6.c │ └── sa6.ld.S ├── sptool ├── Makefile ├── sp_mk_generator.py └── sptool.c └── stm32image ├── Makefile └── stm32image.c /.checkpatch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/.checkpatch.conf -------------------------------------------------------------------------------- /.cz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/.cz.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/.gitreview -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/commit-msg.commitlint: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | npx --no-install commitlint --edit "$1" 4 | -------------------------------------------------------------------------------- /.husky/commit-msg.gerrit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/.husky/commit-msg.gerrit -------------------------------------------------------------------------------- /.husky/prepare-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/.husky/prepare-commit-msg -------------------------------------------------------------------------------- /.husky/prepare-commit-msg.cz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/.husky/prepare-commit-msg.cz -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/Makefile -------------------------------------------------------------------------------- /bl1/aarch32/bl1_arch_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl1/aarch32/bl1_arch_setup.c -------------------------------------------------------------------------------- /bl1/aarch32/bl1_context_mgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl1/aarch32/bl1_context_mgmt.c -------------------------------------------------------------------------------- /bl1/aarch32/bl1_entrypoint.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl1/aarch32/bl1_entrypoint.S -------------------------------------------------------------------------------- /bl1/aarch32/bl1_exceptions.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl1/aarch32/bl1_exceptions.S -------------------------------------------------------------------------------- /bl1/aarch64/bl1_arch_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl1/aarch64/bl1_arch_setup.c -------------------------------------------------------------------------------- /bl1/aarch64/bl1_context_mgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl1/aarch64/bl1_context_mgmt.c -------------------------------------------------------------------------------- /bl1/aarch64/bl1_entrypoint.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl1/aarch64/bl1_entrypoint.S -------------------------------------------------------------------------------- /bl1/aarch64/bl1_exceptions.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl1/aarch64/bl1_exceptions.S -------------------------------------------------------------------------------- /bl1/bl1.ld.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl1/bl1.ld.S -------------------------------------------------------------------------------- /bl1/bl1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl1/bl1.mk -------------------------------------------------------------------------------- /bl1/bl1_fwu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl1/bl1_fwu.c -------------------------------------------------------------------------------- /bl1/bl1_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl1/bl1_main.c -------------------------------------------------------------------------------- /bl1/bl1_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl1/bl1_private.h -------------------------------------------------------------------------------- /bl1/tbbr/tbbr_img_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl1/tbbr/tbbr_img_desc.c -------------------------------------------------------------------------------- /bl2/aarch32/bl2_arch_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2/aarch32/bl2_arch_setup.c -------------------------------------------------------------------------------- /bl2/aarch32/bl2_el3_entrypoint.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2/aarch32/bl2_el3_entrypoint.S -------------------------------------------------------------------------------- /bl2/aarch32/bl2_el3_exceptions.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2/aarch32/bl2_el3_exceptions.S -------------------------------------------------------------------------------- /bl2/aarch32/bl2_entrypoint.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2/aarch32/bl2_entrypoint.S -------------------------------------------------------------------------------- /bl2/aarch64/bl2_arch_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2/aarch64/bl2_arch_setup.c -------------------------------------------------------------------------------- /bl2/aarch64/bl2_el3_entrypoint.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2/aarch64/bl2_el3_entrypoint.S -------------------------------------------------------------------------------- /bl2/aarch64/bl2_el3_exceptions.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2/aarch64/bl2_el3_exceptions.S -------------------------------------------------------------------------------- /bl2/aarch64/bl2_entrypoint.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2/aarch64/bl2_entrypoint.S -------------------------------------------------------------------------------- /bl2/bl2.ld.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2/bl2.ld.S -------------------------------------------------------------------------------- /bl2/bl2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2/bl2.mk -------------------------------------------------------------------------------- /bl2/bl2_el3.ld.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2/bl2_el3.ld.S -------------------------------------------------------------------------------- /bl2/bl2_image_load_v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2/bl2_image_load_v2.c -------------------------------------------------------------------------------- /bl2/bl2_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2/bl2_main.c -------------------------------------------------------------------------------- /bl2/bl2_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2/bl2_private.h -------------------------------------------------------------------------------- /bl2u/aarch32/bl2u_entrypoint.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2u/aarch32/bl2u_entrypoint.S -------------------------------------------------------------------------------- /bl2u/aarch64/bl2u_entrypoint.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2u/aarch64/bl2u_entrypoint.S -------------------------------------------------------------------------------- /bl2u/bl2u.ld.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2u/bl2u.ld.S -------------------------------------------------------------------------------- /bl2u/bl2u.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2u/bl2u.mk -------------------------------------------------------------------------------- /bl2u/bl2u_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl2u/bl2u_main.c -------------------------------------------------------------------------------- /bl31/aarch64/bl31_entrypoint.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl31/aarch64/bl31_entrypoint.S -------------------------------------------------------------------------------- /bl31/aarch64/crash_reporting.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl31/aarch64/crash_reporting.S -------------------------------------------------------------------------------- /bl31/aarch64/ea_delegate.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl31/aarch64/ea_delegate.S -------------------------------------------------------------------------------- /bl31/bl31.ld.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl31/bl31.ld.S -------------------------------------------------------------------------------- /bl31/bl31.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl31/bl31.mk -------------------------------------------------------------------------------- /bl31/bl31_context_mgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl31/bl31_context_mgmt.c -------------------------------------------------------------------------------- /bl31/bl31_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl31/bl31_main.c -------------------------------------------------------------------------------- /bl31/ehf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl31/ehf.c -------------------------------------------------------------------------------- /bl31/interrupt_mgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl31/interrupt_mgmt.c -------------------------------------------------------------------------------- /bl32/optee/optee.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl32/optee/optee.mk -------------------------------------------------------------------------------- /bl32/sp_min/aarch32/entrypoint.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl32/sp_min/aarch32/entrypoint.S -------------------------------------------------------------------------------- /bl32/sp_min/sp_min.ld.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl32/sp_min/sp_min.ld.S -------------------------------------------------------------------------------- /bl32/sp_min/sp_min.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl32/sp_min/sp_min.mk -------------------------------------------------------------------------------- /bl32/sp_min/sp_min_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl32/sp_min/sp_min_main.c -------------------------------------------------------------------------------- /bl32/sp_min/sp_min_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl32/sp_min/sp_min_private.h -------------------------------------------------------------------------------- /bl32/tsp/aarch64/tsp_request.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl32/tsp/aarch64/tsp_request.S -------------------------------------------------------------------------------- /bl32/tsp/tsp.ld.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl32/tsp/tsp.ld.S -------------------------------------------------------------------------------- /bl32/tsp/tsp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl32/tsp/tsp.mk -------------------------------------------------------------------------------- /bl32/tsp/tsp_interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl32/tsp/tsp_interrupt.c -------------------------------------------------------------------------------- /bl32/tsp/tsp_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl32/tsp/tsp_main.c -------------------------------------------------------------------------------- /bl32/tsp/tsp_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl32/tsp/tsp_private.h -------------------------------------------------------------------------------- /bl32/tsp/tsp_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/bl32/tsp/tsp_timer.c -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /common/aarch32/debug.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/common/aarch32/debug.S -------------------------------------------------------------------------------- /common/aarch64/debug.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/common/aarch64/debug.S -------------------------------------------------------------------------------- /common/backtrace/backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/common/backtrace/backtrace.c -------------------------------------------------------------------------------- /common/backtrace/backtrace.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/common/backtrace/backtrace.mk -------------------------------------------------------------------------------- /common/bl_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/common/bl_common.c -------------------------------------------------------------------------------- /common/desc_image_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/common/desc_image_load.c -------------------------------------------------------------------------------- /common/fdt_fixup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/common/fdt_fixup.c -------------------------------------------------------------------------------- /common/fdt_wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/common/fdt_wrappers.c -------------------------------------------------------------------------------- /common/image_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/common/image_decompress.c -------------------------------------------------------------------------------- /common/runtime_svc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/common/runtime_svc.c -------------------------------------------------------------------------------- /common/tf_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/common/tf_log.c -------------------------------------------------------------------------------- /common/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/common/uuid.c -------------------------------------------------------------------------------- /dco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/dco.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/_static/css/custom.css -------------------------------------------------------------------------------- /docs/about/acknowledgements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/about/acknowledgements.rst -------------------------------------------------------------------------------- /docs/about/contact.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/about/contact.rst -------------------------------------------------------------------------------- /docs/about/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/about/features.rst -------------------------------------------------------------------------------- /docs/about/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/about/index.rst -------------------------------------------------------------------------------- /docs/about/maintainers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/about/maintainers.rst -------------------------------------------------------------------------------- /docs/change-log.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/change-log.rst -------------------------------------------------------------------------------- /docs/components/cot-binding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/components/cot-binding.rst -------------------------------------------------------------------------------- /docs/components/fconf/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/components/fconf/index.rst -------------------------------------------------------------------------------- /docs/components/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/components/index.rst -------------------------------------------------------------------------------- /docs/components/ras.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/components/ras.rst -------------------------------------------------------------------------------- /docs/components/sdei.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/components/sdei.rst -------------------------------------------------------------------------------- /docs/components/spd/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/components/spd/index.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/design/alt-boot-flows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/design/alt-boot-flows.rst -------------------------------------------------------------------------------- /docs/design/auth-framework.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/design/auth-framework.rst -------------------------------------------------------------------------------- /docs/design/firmware-design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/design/firmware-design.rst -------------------------------------------------------------------------------- /docs/design/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/design/index.rst -------------------------------------------------------------------------------- /docs/design/psci-pd-tree.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/design/psci-pd-tree.rst -------------------------------------------------------------------------------- /docs/design/reset-design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/design/reset-design.rst -------------------------------------------------------------------------------- /docs/design_documents/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/design_documents/index.rst -------------------------------------------------------------------------------- /docs/getting_started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/getting_started/index.rst -------------------------------------------------------------------------------- /docs/global_substitutions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/global_substitutions.txt -------------------------------------------------------------------------------- /docs/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/glossary.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/perf/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/perf/index.rst -------------------------------------------------------------------------------- /docs/perf/tsp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/perf/tsp.rst -------------------------------------------------------------------------------- /docs/plat/allwinner.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/allwinner.rst -------------------------------------------------------------------------------- /docs/plat/arm/arm_fpga/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/arm/arm_fpga/index.rst -------------------------------------------------------------------------------- /docs/plat/arm/fvp-ve/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/arm/fvp-ve/index.rst -------------------------------------------------------------------------------- /docs/plat/arm/fvp/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/arm/fvp/index.rst -------------------------------------------------------------------------------- /docs/plat/arm/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/arm/index.rst -------------------------------------------------------------------------------- /docs/plat/arm/juno/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/arm/juno/index.rst -------------------------------------------------------------------------------- /docs/plat/arm/morello/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/arm/morello/index.rst -------------------------------------------------------------------------------- /docs/plat/arm/tc0/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/arm/tc0/index.rst -------------------------------------------------------------------------------- /docs/plat/brcm-stingray.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/brcm-stingray.rst -------------------------------------------------------------------------------- /docs/plat/deprecated.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/deprecated.rst -------------------------------------------------------------------------------- /docs/plat/hikey.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/hikey.rst -------------------------------------------------------------------------------- /docs/plat/hikey960.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/hikey960.rst -------------------------------------------------------------------------------- /docs/plat/imx8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/imx8.rst -------------------------------------------------------------------------------- /docs/plat/imx8m.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/imx8m.rst -------------------------------------------------------------------------------- /docs/plat/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/index.rst -------------------------------------------------------------------------------- /docs/plat/intel-agilex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/intel-agilex.rst -------------------------------------------------------------------------------- /docs/plat/intel-stratix10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/intel-stratix10.rst -------------------------------------------------------------------------------- /docs/plat/ls1043a.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/ls1043a.rst -------------------------------------------------------------------------------- /docs/plat/marvell/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/marvell/index.rst -------------------------------------------------------------------------------- /docs/plat/meson-axg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/meson-axg.rst -------------------------------------------------------------------------------- /docs/plat/meson-g12a.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/meson-g12a.rst -------------------------------------------------------------------------------- /docs/plat/meson-gxbb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/meson-gxbb.rst -------------------------------------------------------------------------------- /docs/plat/meson-gxl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/meson-gxl.rst -------------------------------------------------------------------------------- /docs/plat/mt8183.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/mt8183.rst -------------------------------------------------------------------------------- /docs/plat/mt8192.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/mt8192.rst -------------------------------------------------------------------------------- /docs/plat/mt8195.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/mt8195.rst -------------------------------------------------------------------------------- /docs/plat/nvidia-tegra.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/nvidia-tegra.rst -------------------------------------------------------------------------------- /docs/plat/poplar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/poplar.rst -------------------------------------------------------------------------------- /docs/plat/qemu-sbsa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/qemu-sbsa.rst -------------------------------------------------------------------------------- /docs/plat/qemu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/qemu.rst -------------------------------------------------------------------------------- /docs/plat/qti.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/qti.rst -------------------------------------------------------------------------------- /docs/plat/rcar-gen3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/rcar-gen3.rst -------------------------------------------------------------------------------- /docs/plat/rockchip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/rockchip.rst -------------------------------------------------------------------------------- /docs/plat/rpi3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/rpi3.rst -------------------------------------------------------------------------------- /docs/plat/rpi4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/rpi4.rst -------------------------------------------------------------------------------- /docs/plat/rz-g2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/rz-g2.rst -------------------------------------------------------------------------------- /docs/plat/socionext-uniphier.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/socionext-uniphier.rst -------------------------------------------------------------------------------- /docs/plat/stm32mp1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/stm32mp1.rst -------------------------------------------------------------------------------- /docs/plat/synquacer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/synquacer.rst -------------------------------------------------------------------------------- /docs/plat/ti-k3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/ti-k3.rst -------------------------------------------------------------------------------- /docs/plat/warp7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/warp7.rst -------------------------------------------------------------------------------- /docs/plat/xilinx-versal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/xilinx-versal.rst -------------------------------------------------------------------------------- /docs/plat/xilinx-zynqmp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/plat/xilinx-zynqmp.rst -------------------------------------------------------------------------------- /docs/process/coding-style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/process/coding-style.rst -------------------------------------------------------------------------------- /docs/process/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/process/contributing.rst -------------------------------------------------------------------------------- /docs/process/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/process/faq.rst -------------------------------------------------------------------------------- /docs/process/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/process/index.rst -------------------------------------------------------------------------------- /docs/process/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/process/security.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/resources/diagrams/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/resources/diagrams/Makefile -------------------------------------------------------------------------------- /docs/threat_model/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/docs/threat_model/index.rst -------------------------------------------------------------------------------- /drivers/allwinner/axp/axp803.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/allwinner/axp/axp803.c -------------------------------------------------------------------------------- /drivers/allwinner/axp/axp805.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/allwinner/axp/axp805.c -------------------------------------------------------------------------------- /drivers/allwinner/axp/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/allwinner/axp/common.c -------------------------------------------------------------------------------- /drivers/allwinner/sunxi_msgbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/allwinner/sunxi_msgbox.c -------------------------------------------------------------------------------- /drivers/allwinner/sunxi_rsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/allwinner/sunxi_rsb.c -------------------------------------------------------------------------------- /drivers/amlogic/crypto/sha_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/amlogic/crypto/sha_dma.c -------------------------------------------------------------------------------- /drivers/arm/cci/cci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/cci/cci.c -------------------------------------------------------------------------------- /drivers/arm/ccn/ccn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/ccn/ccn.c -------------------------------------------------------------------------------- /drivers/arm/ccn/ccn_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/ccn/ccn_private.h -------------------------------------------------------------------------------- /drivers/arm/css/mhu/css_mhu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/css/mhu/css_mhu.c -------------------------------------------------------------------------------- /drivers/arm/css/scp/css_sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/css/scp/css_sds.c -------------------------------------------------------------------------------- /drivers/arm/css/scpi/css_scpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/css/scpi/css_scpi.c -------------------------------------------------------------------------------- /drivers/arm/css/sds/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/css/sds/sds.c -------------------------------------------------------------------------------- /drivers/arm/dcc/dcc_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/dcc/dcc_console.c -------------------------------------------------------------------------------- /drivers/arm/ethosn/ethosn_smc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/ethosn/ethosn_smc.c -------------------------------------------------------------------------------- /drivers/arm/fvp/fvp_pwrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/fvp/fvp_pwrc.c -------------------------------------------------------------------------------- /drivers/arm/gic/v2/gicv2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/gic/v2/gicv2.mk -------------------------------------------------------------------------------- /drivers/arm/gic/v2/gicv2_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/gic/v2/gicv2_main.c -------------------------------------------------------------------------------- /drivers/arm/gic/v3/gic-x00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/gic/v3/gic-x00.c -------------------------------------------------------------------------------- /drivers/arm/gic/v3/gicv3.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/gic/v3/gicv3.mk -------------------------------------------------------------------------------- /drivers/arm/gic/v3/gicv3_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/gic/v3/gicv3_main.c -------------------------------------------------------------------------------- /drivers/arm/pl061/pl061_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/pl061/pl061_gpio.c -------------------------------------------------------------------------------- /drivers/arm/sbsa/sbsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/sbsa/sbsa.c -------------------------------------------------------------------------------- /drivers/arm/scu/scu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/scu/scu.c -------------------------------------------------------------------------------- /drivers/arm/smmu/smmu_v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/smmu/smmu_v3.c -------------------------------------------------------------------------------- /drivers/arm/sp805/sp805.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/sp805/sp805.c -------------------------------------------------------------------------------- /drivers/arm/tzc/tzc380.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/tzc/tzc380.c -------------------------------------------------------------------------------- /drivers/arm/tzc/tzc400.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/tzc/tzc400.c -------------------------------------------------------------------------------- /drivers/arm/tzc/tzc_dmc500.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/tzc/tzc_dmc500.c -------------------------------------------------------------------------------- /drivers/arm/tzc/tzc_dmc620.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/arm/tzc/tzc_dmc620.c -------------------------------------------------------------------------------- /drivers/auth/auth_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/auth/auth_mod.c -------------------------------------------------------------------------------- /drivers/auth/crypto_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/auth/crypto_mod.c -------------------------------------------------------------------------------- /drivers/auth/dualroot/cot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/auth/dualroot/cot.c -------------------------------------------------------------------------------- /drivers/auth/img_parser_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/auth/img_parser_mod.c -------------------------------------------------------------------------------- /drivers/auth/tbbr/tbbr_cot_bl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/auth/tbbr/tbbr_cot_bl1.c -------------------------------------------------------------------------------- /drivers/auth/tbbr/tbbr_cot_bl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/auth/tbbr/tbbr_cot_bl2.c -------------------------------------------------------------------------------- /drivers/brcm/chimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/brcm/chimp.c -------------------------------------------------------------------------------- /drivers/brcm/emmc/emmc_chal_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/brcm/emmc/emmc_chal_sd.c -------------------------------------------------------------------------------- /drivers/brcm/i2c/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/brcm/i2c/i2c.c -------------------------------------------------------------------------------- /drivers/brcm/iproc_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/brcm/iproc_gpio.c -------------------------------------------------------------------------------- /drivers/brcm/mdio/mdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/brcm/mdio/mdio.c -------------------------------------------------------------------------------- /drivers/brcm/ocotp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/brcm/ocotp.c -------------------------------------------------------------------------------- /drivers/brcm/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/brcm/rng.c -------------------------------------------------------------------------------- /drivers/brcm/scp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/brcm/scp.c -------------------------------------------------------------------------------- /drivers/brcm/sotp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/brcm/sotp.c -------------------------------------------------------------------------------- /drivers/brcm/spi/iproc_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/brcm/spi/iproc_qspi.c -------------------------------------------------------------------------------- /drivers/brcm/spi/iproc_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/brcm/spi/iproc_qspi.h -------------------------------------------------------------------------------- /drivers/brcm/spi/iproc_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/brcm/spi/iproc_spi.c -------------------------------------------------------------------------------- /drivers/brcm/spi_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/brcm/spi_flash.c -------------------------------------------------------------------------------- /drivers/brcm/spi_sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/brcm/spi_sf.c -------------------------------------------------------------------------------- /drivers/cfi/v2m/v2m_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/cfi/v2m/v2m_flash.c -------------------------------------------------------------------------------- /drivers/console/multi_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/console/multi_console.c -------------------------------------------------------------------------------- /drivers/gpio/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/gpio/gpio.c -------------------------------------------------------------------------------- /drivers/imx/timer/imx_gpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/imx/timer/imx_gpt.c -------------------------------------------------------------------------------- /drivers/imx/timer/imx_gpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/imx/timer/imx_gpt.h -------------------------------------------------------------------------------- /drivers/imx/uart/imx_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/imx/uart/imx_uart.c -------------------------------------------------------------------------------- /drivers/imx/uart/imx_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/imx/uart/imx_uart.h -------------------------------------------------------------------------------- /drivers/imx/usdhc/imx_usdhc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/imx/usdhc/imx_usdhc.c -------------------------------------------------------------------------------- /drivers/imx/usdhc/imx_usdhc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/imx/usdhc/imx_usdhc.h -------------------------------------------------------------------------------- /drivers/io/io_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/io/io_block.c -------------------------------------------------------------------------------- /drivers/io/io_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/io/io_dummy.c -------------------------------------------------------------------------------- /drivers/io/io_encrypted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/io/io_encrypted.c -------------------------------------------------------------------------------- /drivers/io/io_fip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/io/io_fip.c -------------------------------------------------------------------------------- /drivers/io/io_memmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/io/io_memmap.c -------------------------------------------------------------------------------- /drivers/io/io_mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/io/io_mtd.c -------------------------------------------------------------------------------- /drivers/io/io_semihosting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/io/io_semihosting.c -------------------------------------------------------------------------------- /drivers/io/io_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/io/io_storage.c -------------------------------------------------------------------------------- /drivers/marvell/amb_adec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/marvell/amb_adec.c -------------------------------------------------------------------------------- /drivers/marvell/cache_llc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/marvell/cache_llc.c -------------------------------------------------------------------------------- /drivers/marvell/ccu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/marvell/ccu.c -------------------------------------------------------------------------------- /drivers/marvell/comphy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/marvell/comphy.h -------------------------------------------------------------------------------- /drivers/marvell/ddr_phy_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/marvell/ddr_phy_access.c -------------------------------------------------------------------------------- /drivers/marvell/ddr_phy_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/marvell/ddr_phy_access.h -------------------------------------------------------------------------------- /drivers/marvell/gwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/marvell/gwin.c -------------------------------------------------------------------------------- /drivers/marvell/io_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/marvell/io_win.c -------------------------------------------------------------------------------- /drivers/marvell/iob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/marvell/iob.c -------------------------------------------------------------------------------- /drivers/marvell/mci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/marvell/mci.c -------------------------------------------------------------------------------- /drivers/marvell/thermal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/marvell/thermal.c -------------------------------------------------------------------------------- /drivers/mentor/i2c/mi2cv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/mentor/i2c/mi2cv.c -------------------------------------------------------------------------------- /drivers/mmc/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/mmc/mmc.c -------------------------------------------------------------------------------- /drivers/mtd/nand/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/mtd/nand/core.c -------------------------------------------------------------------------------- /drivers/mtd/nand/raw_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/mtd/nand/raw_nand.c -------------------------------------------------------------------------------- /drivers/mtd/nand/spi_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/mtd/nand/spi_nand.c -------------------------------------------------------------------------------- /drivers/mtd/nor/spi_nor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/mtd/nor/spi_nor.c -------------------------------------------------------------------------------- /drivers/mtd/spi-mem/spi_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/mtd/spi-mem/spi_mem.c -------------------------------------------------------------------------------- /drivers/nxp/auth/tbbr/tbbr_cot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/auth/tbbr/tbbr_cot.c -------------------------------------------------------------------------------- /drivers/nxp/console/console.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/console/console.mk -------------------------------------------------------------------------------- /drivers/nxp/crypto/caam/caam.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/crypto/caam/caam.mk -------------------------------------------------------------------------------- /drivers/nxp/csu/csu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/csu/csu.c -------------------------------------------------------------------------------- /drivers/nxp/csu/csu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/csu/csu.h -------------------------------------------------------------------------------- /drivers/nxp/csu/csu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/csu/csu.mk -------------------------------------------------------------------------------- /drivers/nxp/dcfg/dcfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/dcfg/dcfg.c -------------------------------------------------------------------------------- /drivers/nxp/dcfg/dcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/dcfg/dcfg.h -------------------------------------------------------------------------------- /drivers/nxp/dcfg/dcfg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/dcfg/dcfg.mk -------------------------------------------------------------------------------- /drivers/nxp/dcfg/dcfg_lsch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/dcfg/dcfg_lsch2.h -------------------------------------------------------------------------------- /drivers/nxp/dcfg/dcfg_lsch3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/dcfg/dcfg_lsch3.h -------------------------------------------------------------------------------- /drivers/nxp/dcfg/scfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/dcfg/scfg.h -------------------------------------------------------------------------------- /drivers/nxp/ddr/fsl-mmdc/ddr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/fsl-mmdc/ddr.mk -------------------------------------------------------------------------------- /drivers/nxp/ddr/include/ddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/include/ddr.h -------------------------------------------------------------------------------- /drivers/nxp/ddr/include/ddr_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/include/ddr_io.h -------------------------------------------------------------------------------- /drivers/nxp/ddr/include/dimm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/include/dimm.h -------------------------------------------------------------------------------- /drivers/nxp/ddr/include/immap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/include/immap.h -------------------------------------------------------------------------------- /drivers/nxp/ddr/include/opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/include/opts.h -------------------------------------------------------------------------------- /drivers/nxp/ddr/include/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/include/regs.h -------------------------------------------------------------------------------- /drivers/nxp/ddr/nxp-ddr/ddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/nxp-ddr/ddr.c -------------------------------------------------------------------------------- /drivers/nxp/ddr/nxp-ddr/ddr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/nxp-ddr/ddr.mk -------------------------------------------------------------------------------- /drivers/nxp/ddr/nxp-ddr/ddrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/nxp-ddr/ddrc.c -------------------------------------------------------------------------------- /drivers/nxp/ddr/nxp-ddr/dimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/nxp-ddr/dimm.c -------------------------------------------------------------------------------- /drivers/nxp/ddr/nxp-ddr/regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/nxp-ddr/regs.c -------------------------------------------------------------------------------- /drivers/nxp/ddr/phy-gen1/phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/phy-gen1/phy.c -------------------------------------------------------------------------------- /drivers/nxp/ddr/phy-gen2/csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/phy-gen2/csr.h -------------------------------------------------------------------------------- /drivers/nxp/ddr/phy-gen2/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/phy-gen2/input.h -------------------------------------------------------------------------------- /drivers/nxp/ddr/phy-gen2/phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/phy-gen2/phy.c -------------------------------------------------------------------------------- /drivers/nxp/ddr/phy-gen2/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/phy-gen2/phy.h -------------------------------------------------------------------------------- /drivers/nxp/ddr/phy-gen2/pie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/ddr/phy-gen2/pie.h -------------------------------------------------------------------------------- /drivers/nxp/drivers.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/drivers.mk -------------------------------------------------------------------------------- /drivers/nxp/flexspi/nor/fspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/flexspi/nor/fspi.c -------------------------------------------------------------------------------- /drivers/nxp/flexspi/nor/fspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/flexspi/nor/fspi.h -------------------------------------------------------------------------------- /drivers/nxp/gic/gic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/gic/gic.mk -------------------------------------------------------------------------------- /drivers/nxp/gic/ls_gicv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/gic/ls_gicv2.c -------------------------------------------------------------------------------- /drivers/nxp/gic/ls_gicv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/gic/ls_gicv3.c -------------------------------------------------------------------------------- /drivers/nxp/gpio/gpio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/gpio/gpio.mk -------------------------------------------------------------------------------- /drivers/nxp/gpio/nxp_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/gpio/nxp_gpio.c -------------------------------------------------------------------------------- /drivers/nxp/gpio/nxp_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/gpio/nxp_gpio.h -------------------------------------------------------------------------------- /drivers/nxp/i2c/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/i2c/i2c.c -------------------------------------------------------------------------------- /drivers/nxp/i2c/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/i2c/i2c.h -------------------------------------------------------------------------------- /drivers/nxp/i2c/i2c.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/i2c/i2c.mk -------------------------------------------------------------------------------- /drivers/nxp/pmu/pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/pmu/pmu.c -------------------------------------------------------------------------------- /drivers/nxp/pmu/pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/pmu/pmu.h -------------------------------------------------------------------------------- /drivers/nxp/pmu/pmu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/pmu/pmu.mk -------------------------------------------------------------------------------- /drivers/nxp/qspi/qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/qspi/qspi.c -------------------------------------------------------------------------------- /drivers/nxp/qspi/qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/qspi/qspi.h -------------------------------------------------------------------------------- /drivers/nxp/qspi/qspi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/qspi/qspi.mk -------------------------------------------------------------------------------- /drivers/nxp/sd/sd_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/sd/sd_mmc.c -------------------------------------------------------------------------------- /drivers/nxp/sd/sd_mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/sd/sd_mmc.h -------------------------------------------------------------------------------- /drivers/nxp/sd/sd_mmc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/sd/sd_mmc.mk -------------------------------------------------------------------------------- /drivers/nxp/sec_mon/sec_mon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/sec_mon/sec_mon.mk -------------------------------------------------------------------------------- /drivers/nxp/sec_mon/snvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/sec_mon/snvs.c -------------------------------------------------------------------------------- /drivers/nxp/sec_mon/snvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/sec_mon/snvs.h -------------------------------------------------------------------------------- /drivers/nxp/sfp/fuse_prov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/sfp/fuse_prov.c -------------------------------------------------------------------------------- /drivers/nxp/sfp/fuse_prov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/sfp/fuse_prov.h -------------------------------------------------------------------------------- /drivers/nxp/sfp/sfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/sfp/sfp.c -------------------------------------------------------------------------------- /drivers/nxp/sfp/sfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/sfp/sfp.h -------------------------------------------------------------------------------- /drivers/nxp/sfp/sfp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/sfp/sfp.mk -------------------------------------------------------------------------------- /drivers/nxp/timer/nxp_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/timer/nxp_timer.c -------------------------------------------------------------------------------- /drivers/nxp/timer/nxp_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/timer/nxp_timer.h -------------------------------------------------------------------------------- /drivers/nxp/timer/timer.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/timer/timer.mk -------------------------------------------------------------------------------- /drivers/nxp/tzc/plat_tzc400.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/tzc/plat_tzc400.c -------------------------------------------------------------------------------- /drivers/nxp/tzc/plat_tzc400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/tzc/plat_tzc400.h -------------------------------------------------------------------------------- /drivers/nxp/tzc/tzc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/nxp/tzc/tzc.mk -------------------------------------------------------------------------------- /drivers/partition/gpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/partition/gpt.c -------------------------------------------------------------------------------- /drivers/partition/partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/partition/partition.c -------------------------------------------------------------------------------- /drivers/rambus/trng_ip_76.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/rambus/trng_ip_76.c -------------------------------------------------------------------------------- /drivers/renesas/common/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/renesas/common/common.c -------------------------------------------------------------------------------- /drivers/renesas/common/qos_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/renesas/common/qos_reg.h -------------------------------------------------------------------------------- /drivers/renesas/rcar/pfc/pfc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/renesas/rcar/pfc/pfc.mk -------------------------------------------------------------------------------- /drivers/renesas/rcar/qos/qos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/renesas/rcar/qos/qos.mk -------------------------------------------------------------------------------- /drivers/renesas/rzg/pfc/pfc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/renesas/rzg/pfc/pfc.mk -------------------------------------------------------------------------------- /drivers/renesas/rzg/qos/qos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/renesas/rzg/qos/qos.mk -------------------------------------------------------------------------------- /drivers/rpi3/gpio/rpi3_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/rpi3/gpio/rpi3_gpio.c -------------------------------------------------------------------------------- /drivers/rpi3/mailbox/rpi3_mbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/rpi3/mailbox/rpi3_mbox.c -------------------------------------------------------------------------------- /drivers/rpi3/rng/rpi3_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/rpi3/rng/rpi3_rng.c -------------------------------------------------------------------------------- /drivers/scmi-msg/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/scmi-msg/base.c -------------------------------------------------------------------------------- /drivers/scmi-msg/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/scmi-msg/base.h -------------------------------------------------------------------------------- /drivers/scmi-msg/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/scmi-msg/clock.c -------------------------------------------------------------------------------- /drivers/scmi-msg/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/scmi-msg/clock.h -------------------------------------------------------------------------------- /drivers/scmi-msg/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/scmi-msg/common.h -------------------------------------------------------------------------------- /drivers/scmi-msg/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/scmi-msg/entry.c -------------------------------------------------------------------------------- /drivers/scmi-msg/reset_domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/scmi-msg/reset_domain.c -------------------------------------------------------------------------------- /drivers/scmi-msg/reset_domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/scmi-msg/reset_domain.h -------------------------------------------------------------------------------- /drivers/scmi-msg/smt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/scmi-msg/smt.c -------------------------------------------------------------------------------- /drivers/st/bsec/bsec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/bsec/bsec.c -------------------------------------------------------------------------------- /drivers/st/clk/stm32mp1_clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/clk/stm32mp1_clk.c -------------------------------------------------------------------------------- /drivers/st/clk/stm32mp_clkfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/clk/stm32mp_clkfunc.c -------------------------------------------------------------------------------- /drivers/st/crypto/stm32_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/crypto/stm32_hash.c -------------------------------------------------------------------------------- /drivers/st/ddr/stm32mp1_ddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/ddr/stm32mp1_ddr.c -------------------------------------------------------------------------------- /drivers/st/ddr/stm32mp1_ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/ddr/stm32mp1_ram.c -------------------------------------------------------------------------------- /drivers/st/etzpc/etzpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/etzpc/etzpc.c -------------------------------------------------------------------------------- /drivers/st/fmc/stm32_fmc2_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/fmc/stm32_fmc2_nand.c -------------------------------------------------------------------------------- /drivers/st/gpio/stm32_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/gpio/stm32_gpio.c -------------------------------------------------------------------------------- /drivers/st/i2c/stm32_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/i2c/stm32_i2c.c -------------------------------------------------------------------------------- /drivers/st/io/io_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/io/io_mmc.c -------------------------------------------------------------------------------- /drivers/st/io/io_stm32image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/io/io_stm32image.c -------------------------------------------------------------------------------- /drivers/st/iwdg/stm32_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/iwdg/stm32_iwdg.c -------------------------------------------------------------------------------- /drivers/st/mmc/stm32_sdmmc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/mmc/stm32_sdmmc2.c -------------------------------------------------------------------------------- /drivers/st/pmic/stm32mp_pmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/pmic/stm32mp_pmic.c -------------------------------------------------------------------------------- /drivers/st/pmic/stpmic1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/pmic/stpmic1.c -------------------------------------------------------------------------------- /drivers/st/spi/stm32_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/st/spi/stm32_qspi.c -------------------------------------------------------------------------------- /drivers/synopsys/emmc/dw_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/synopsys/emmc/dw_mmc.c -------------------------------------------------------------------------------- /drivers/synopsys/ufs/dw_ufs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/synopsys/ufs/dw_ufs.c -------------------------------------------------------------------------------- /drivers/ufs/ufs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/drivers/ufs/ufs.c -------------------------------------------------------------------------------- /fdts/a5ds.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/a5ds.dts -------------------------------------------------------------------------------- /fdts/arm_fpga.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/arm_fpga.dts -------------------------------------------------------------------------------- /fdts/corstone700.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/corstone700.dtsi -------------------------------------------------------------------------------- /fdts/corstone700_fpga.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/corstone700_fpga.dts -------------------------------------------------------------------------------- /fdts/corstone700_fvp.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/corstone700_fvp.dts -------------------------------------------------------------------------------- /fdts/cot_descriptors.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/cot_descriptors.dtsi -------------------------------------------------------------------------------- /fdts/fvp-base-gicv2-psci.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/fvp-base-gicv2-psci.dts -------------------------------------------------------------------------------- /fdts/fvp-base-gicv3-psci-1t.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/fvp-base-gicv3-psci-1t.dts -------------------------------------------------------------------------------- /fdts/fvp-base-gicv3-psci.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/fvp-base-gicv3-psci.dts -------------------------------------------------------------------------------- /fdts/fvp-defs-dynamiq.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/fvp-defs-dynamiq.dtsi -------------------------------------------------------------------------------- /fdts/fvp-defs.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/fvp-defs.dtsi -------------------------------------------------------------------------------- /fdts/fvp-ve-Cortex-A5x1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/fvp-ve-Cortex-A5x1.dts -------------------------------------------------------------------------------- /fdts/fvp-ve-Cortex-A7x1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/fvp-ve-Cortex-A7x1.dts -------------------------------------------------------------------------------- /fdts/juno-ethosn.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/juno-ethosn.dtsi -------------------------------------------------------------------------------- /fdts/juno.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/juno.dts -------------------------------------------------------------------------------- /fdts/morello-fvp.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/morello-fvp.dts -------------------------------------------------------------------------------- /fdts/morello.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/morello.dtsi -------------------------------------------------------------------------------- /fdts/n1sdp-multi-chip.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/n1sdp-multi-chip.dts -------------------------------------------------------------------------------- /fdts/n1sdp-single-chip.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/n1sdp-single-chip.dts -------------------------------------------------------------------------------- /fdts/n1sdp.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/n1sdp.dtsi -------------------------------------------------------------------------------- /fdts/rtsm_ve-motherboard.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/rtsm_ve-motherboard.dtsi -------------------------------------------------------------------------------- /fdts/stm32mp15-ddr.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp15-ddr.dtsi -------------------------------------------------------------------------------- /fdts/stm32mp15-pinctrl.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp15-pinctrl.dtsi -------------------------------------------------------------------------------- /fdts/stm32mp151.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp151.dtsi -------------------------------------------------------------------------------- /fdts/stm32mp153.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp153.dtsi -------------------------------------------------------------------------------- /fdts/stm32mp157.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp157.dtsi -------------------------------------------------------------------------------- /fdts/stm32mp157a-avenger96.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp157a-avenger96.dts -------------------------------------------------------------------------------- /fdts/stm32mp157a-dk1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp157a-dk1.dts -------------------------------------------------------------------------------- /fdts/stm32mp157c-dk2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp157c-dk2.dts -------------------------------------------------------------------------------- /fdts/stm32mp157c-ed1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp157c-ed1.dts -------------------------------------------------------------------------------- /fdts/stm32mp157c-ev1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp157c-ev1.dts -------------------------------------------------------------------------------- /fdts/stm32mp157c-lxa-mc1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp157c-lxa-mc1.dts -------------------------------------------------------------------------------- /fdts/stm32mp157c-odyssey.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp157c-odyssey.dts -------------------------------------------------------------------------------- /fdts/stm32mp15xc.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp15xc.dtsi -------------------------------------------------------------------------------- /fdts/stm32mp15xx-dkx.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp15xx-dkx.dtsi -------------------------------------------------------------------------------- /fdts/stm32mp15xx-osd32.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp15xx-osd32.dtsi -------------------------------------------------------------------------------- /fdts/stm32mp15xxaa-pinctrl.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp15xxaa-pinctrl.dtsi -------------------------------------------------------------------------------- /fdts/stm32mp15xxab-pinctrl.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp15xxab-pinctrl.dtsi -------------------------------------------------------------------------------- /fdts/stm32mp15xxac-pinctrl.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp15xxac-pinctrl.dtsi -------------------------------------------------------------------------------- /fdts/stm32mp15xxad-pinctrl.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/stm32mp15xxad-pinctrl.dtsi -------------------------------------------------------------------------------- /fdts/tc0.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/fdts/tc0.dts -------------------------------------------------------------------------------- /include/arch/aarch32/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/arch/aarch32/arch.h -------------------------------------------------------------------------------- /include/arch/aarch64/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/arch/aarch64/arch.h -------------------------------------------------------------------------------- /include/bl1/bl1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/bl1/bl1.h -------------------------------------------------------------------------------- /include/bl1/tbbr/tbbr_img_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/bl1/tbbr/tbbr_img_desc.h -------------------------------------------------------------------------------- /include/bl2/bl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/bl2/bl2.h -------------------------------------------------------------------------------- /include/bl2u/bl2u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/bl2u/bl2u.h -------------------------------------------------------------------------------- /include/bl31/bl31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/bl31/bl31.h -------------------------------------------------------------------------------- /include/bl31/ea_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/bl31/ea_handle.h -------------------------------------------------------------------------------- /include/bl31/ehf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/bl31/ehf.h -------------------------------------------------------------------------------- /include/bl31/interrupt_mgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/bl31/interrupt_mgmt.h -------------------------------------------------------------------------------- /include/bl32/payloads/tlk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/bl32/payloads/tlk.h -------------------------------------------------------------------------------- /include/bl32/tsp/platform_tsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/bl32/tsp/platform_tsp.h -------------------------------------------------------------------------------- /include/bl32/tsp/tsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/bl32/tsp/tsp.h -------------------------------------------------------------------------------- /include/common/bl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/common/bl_common.h -------------------------------------------------------------------------------- /include/common/bl_common.ld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/common/bl_common.ld.h -------------------------------------------------------------------------------- /include/common/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/common/debug.h -------------------------------------------------------------------------------- /include/common/desc_image_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/common/desc_image_load.h -------------------------------------------------------------------------------- /include/common/ep_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/common/ep_info.h -------------------------------------------------------------------------------- /include/common/fdt_fixup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/common/fdt_fixup.h -------------------------------------------------------------------------------- /include/common/fdt_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/common/fdt_wrappers.h -------------------------------------------------------------------------------- /include/common/interrupt_props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/common/interrupt_props.h -------------------------------------------------------------------------------- /include/common/nv_cntr_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/common/nv_cntr_ids.h -------------------------------------------------------------------------------- /include/common/param_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/common/param_header.h -------------------------------------------------------------------------------- /include/common/romlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/common/romlib.h -------------------------------------------------------------------------------- /include/common/runtime_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/common/runtime_svc.h -------------------------------------------------------------------------------- /include/common/tbbr/cot_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/common/tbbr/cot_def.h -------------------------------------------------------------------------------- /include/common/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/common/uuid.h -------------------------------------------------------------------------------- /include/drivers/allwinner/axp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/allwinner/axp.h -------------------------------------------------------------------------------- /include/drivers/arm/cci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/cci.h -------------------------------------------------------------------------------- /include/drivers/arm/ccn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/ccn.h -------------------------------------------------------------------------------- /include/drivers/arm/css/scmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/css/scmi.h -------------------------------------------------------------------------------- /include/drivers/arm/css/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/css/sds.h -------------------------------------------------------------------------------- /include/drivers/arm/dcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/dcc.h -------------------------------------------------------------------------------- /include/drivers/arm/ethosn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/ethosn.h -------------------------------------------------------------------------------- /include/drivers/arm/gic_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/gic_common.h -------------------------------------------------------------------------------- /include/drivers/arm/gicv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/gicv2.h -------------------------------------------------------------------------------- /include/drivers/arm/gicv3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/gicv3.h -------------------------------------------------------------------------------- /include/drivers/arm/nic_400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/nic_400.h -------------------------------------------------------------------------------- /include/drivers/arm/pl011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/pl011.h -------------------------------------------------------------------------------- /include/drivers/arm/pl061_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/pl061_gpio.h -------------------------------------------------------------------------------- /include/drivers/arm/sbsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/sbsa.h -------------------------------------------------------------------------------- /include/drivers/arm/scu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/scu.h -------------------------------------------------------------------------------- /include/drivers/arm/smmu_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/smmu_v3.h -------------------------------------------------------------------------------- /include/drivers/arm/sp805.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/sp805.h -------------------------------------------------------------------------------- /include/drivers/arm/tzc380.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/tzc380.h -------------------------------------------------------------------------------- /include/drivers/arm/tzc400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/tzc400.h -------------------------------------------------------------------------------- /include/drivers/arm/tzc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/tzc_common.h -------------------------------------------------------------------------------- /include/drivers/arm/tzc_dmc500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/tzc_dmc500.h -------------------------------------------------------------------------------- /include/drivers/arm/tzc_dmc620.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/arm/tzc_dmc620.h -------------------------------------------------------------------------------- /include/drivers/auth/auth_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/auth/auth_mod.h -------------------------------------------------------------------------------- /include/drivers/brcm/chimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/brcm/chimp.h -------------------------------------------------------------------------------- /include/drivers/brcm/dmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/brcm/dmu.h -------------------------------------------------------------------------------- /include/drivers/brcm/fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/brcm/fru.h -------------------------------------------------------------------------------- /include/drivers/brcm/i2c/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/brcm/i2c/i2c.h -------------------------------------------------------------------------------- /include/drivers/brcm/mdio/mdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/brcm/mdio/mdio.h -------------------------------------------------------------------------------- /include/drivers/brcm/ocotp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/brcm/ocotp.h -------------------------------------------------------------------------------- /include/drivers/brcm/scp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/brcm/scp.h -------------------------------------------------------------------------------- /include/drivers/brcm/sf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/brcm/sf.h -------------------------------------------------------------------------------- /include/drivers/brcm/sotp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/brcm/sotp.h -------------------------------------------------------------------------------- /include/drivers/brcm/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/brcm/spi.h -------------------------------------------------------------------------------- /include/drivers/brcm/spi_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/brcm/spi_flash.h -------------------------------------------------------------------------------- /include/drivers/cfi/v2m_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/cfi/v2m_flash.h -------------------------------------------------------------------------------- /include/drivers/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/console.h -------------------------------------------------------------------------------- /include/drivers/delay_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/delay_timer.h -------------------------------------------------------------------------------- /include/drivers/dw_ufs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/dw_ufs.h -------------------------------------------------------------------------------- /include/drivers/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/gpio.h -------------------------------------------------------------------------------- /include/drivers/io/io_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/io/io_block.h -------------------------------------------------------------------------------- /include/drivers/io/io_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/io/io_driver.h -------------------------------------------------------------------------------- /include/drivers/io/io_dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/io/io_dummy.h -------------------------------------------------------------------------------- /include/drivers/io/io_fip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/io/io_fip.h -------------------------------------------------------------------------------- /include/drivers/io/io_memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/io/io_memmap.h -------------------------------------------------------------------------------- /include/drivers/io/io_mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/io/io_mtd.h -------------------------------------------------------------------------------- /include/drivers/io/io_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/io/io_storage.h -------------------------------------------------------------------------------- /include/drivers/marvell/aro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/marvell/aro.h -------------------------------------------------------------------------------- /include/drivers/marvell/ccu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/marvell/ccu.h -------------------------------------------------------------------------------- /include/drivers/marvell/gwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/marvell/gwin.h -------------------------------------------------------------------------------- /include/drivers/marvell/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/marvell/i2c.h -------------------------------------------------------------------------------- /include/drivers/marvell/io_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/marvell/io_win.h -------------------------------------------------------------------------------- /include/drivers/marvell/iob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/marvell/iob.h -------------------------------------------------------------------------------- /include/drivers/marvell/mci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/marvell/mci.h -------------------------------------------------------------------------------- /include/drivers/mentor/mi2cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/mentor/mi2cv.h -------------------------------------------------------------------------------- /include/drivers/mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/mmc.h -------------------------------------------------------------------------------- /include/drivers/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/nand.h -------------------------------------------------------------------------------- /include/drivers/partition/gpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/partition/gpt.h -------------------------------------------------------------------------------- /include/drivers/partition/mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/partition/mbr.h -------------------------------------------------------------------------------- /include/drivers/raw_nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/raw_nand.h -------------------------------------------------------------------------------- /include/drivers/scmi-msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/scmi-msg.h -------------------------------------------------------------------------------- /include/drivers/scmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/scmi.h -------------------------------------------------------------------------------- /include/drivers/spi_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/spi_mem.h -------------------------------------------------------------------------------- /include/drivers/spi_nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/spi_nand.h -------------------------------------------------------------------------------- /include/drivers/spi_nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/spi_nor.h -------------------------------------------------------------------------------- /include/drivers/st/bsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/st/bsec.h -------------------------------------------------------------------------------- /include/drivers/st/etzpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/st/etzpc.h -------------------------------------------------------------------------------- /include/drivers/st/io_mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/st/io_mmc.h -------------------------------------------------------------------------------- /include/drivers/st/stm32_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/st/stm32_gpio.h -------------------------------------------------------------------------------- /include/drivers/st/stm32_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/st/stm32_hash.h -------------------------------------------------------------------------------- /include/drivers/st/stm32_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/st/stm32_i2c.h -------------------------------------------------------------------------------- /include/drivers/st/stm32_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/st/stm32_iwdg.h -------------------------------------------------------------------------------- /include/drivers/st/stm32_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/st/stm32_qspi.h -------------------------------------------------------------------------------- /include/drivers/st/stpmic1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/st/stpmic1.h -------------------------------------------------------------------------------- /include/drivers/ufs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/drivers/ufs.h -------------------------------------------------------------------------------- /include/export/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/export/README -------------------------------------------------------------------------------- /include/lib/bakery_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/bakery_lock.h -------------------------------------------------------------------------------- /include/lib/cassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/cassert.h -------------------------------------------------------------------------------- /include/lib/coreboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/coreboot.h -------------------------------------------------------------------------------- /include/lib/cpus/errata_report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/cpus/errata_report.h -------------------------------------------------------------------------------- /include/lib/debugfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/debugfs.h -------------------------------------------------------------------------------- /include/lib/el3_runtime/pubsub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/el3_runtime/pubsub.h -------------------------------------------------------------------------------- /include/lib/extensions/amu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/extensions/amu.h -------------------------------------------------------------------------------- /include/lib/extensions/mpam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/extensions/mpam.h -------------------------------------------------------------------------------- /include/lib/extensions/ras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/extensions/ras.h -------------------------------------------------------------------------------- /include/lib/extensions/spe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/extensions/spe.h -------------------------------------------------------------------------------- /include/lib/extensions/sve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/extensions/sve.h -------------------------------------------------------------------------------- /include/lib/extensions/twed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/extensions/twed.h -------------------------------------------------------------------------------- /include/lib/fconf/fconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/fconf/fconf.h -------------------------------------------------------------------------------- /include/lib/libc/arm_acle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libc/arm_acle.h -------------------------------------------------------------------------------- /include/lib/libc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libc/assert.h -------------------------------------------------------------------------------- /include/lib/libc/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libc/cdefs.h -------------------------------------------------------------------------------- /include/lib/libc/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libc/endian.h -------------------------------------------------------------------------------- /include/lib/libc/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libc/errno.h -------------------------------------------------------------------------------- /include/lib/libc/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libc/limits.h -------------------------------------------------------------------------------- /include/lib/libc/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libc/setjmp.h -------------------------------------------------------------------------------- /include/lib/libc/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libc/stdarg.h -------------------------------------------------------------------------------- /include/lib/libc/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libc/stdbool.h -------------------------------------------------------------------------------- /include/lib/libc/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libc/stddef.h -------------------------------------------------------------------------------- /include/lib/libc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libc/stdint.h -------------------------------------------------------------------------------- /include/lib/libc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libc/stdio.h -------------------------------------------------------------------------------- /include/lib/libc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libc/stdlib.h -------------------------------------------------------------------------------- /include/lib/libc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libc/string.h -------------------------------------------------------------------------------- /include/lib/libc/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libc/time.h -------------------------------------------------------------------------------- /include/lib/libfdt/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libfdt/fdt.h -------------------------------------------------------------------------------- /include/lib/libfdt/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/libfdt/libfdt.h -------------------------------------------------------------------------------- /include/lib/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/mmio.h -------------------------------------------------------------------------------- /include/lib/object_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/object_pool.h -------------------------------------------------------------------------------- /include/lib/optee_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/optee_utils.h -------------------------------------------------------------------------------- /include/lib/pmf/pmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/pmf/pmf.h -------------------------------------------------------------------------------- /include/lib/pmf/pmf_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/pmf/pmf_helpers.h -------------------------------------------------------------------------------- /include/lib/psci/psci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/psci/psci.h -------------------------------------------------------------------------------- /include/lib/psci/psci_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/psci/psci_lib.h -------------------------------------------------------------------------------- /include/lib/runtime_instr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/runtime_instr.h -------------------------------------------------------------------------------- /include/lib/semihosting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/semihosting.h -------------------------------------------------------------------------------- /include/lib/smccc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/smccc.h -------------------------------------------------------------------------------- /include/lib/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/spinlock.h -------------------------------------------------------------------------------- /include/lib/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/utils.h -------------------------------------------------------------------------------- /include/lib/utils_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/utils_def.h -------------------------------------------------------------------------------- /include/lib/zlib/tf_gunzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/lib/zlib/tf_gunzip.h -------------------------------------------------------------------------------- /include/services/ffa_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/services/ffa_svc.h -------------------------------------------------------------------------------- /include/services/sdei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/services/sdei.h -------------------------------------------------------------------------------- /include/services/sdei_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/services/sdei_flags.h -------------------------------------------------------------------------------- /include/services/spm_mm_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/services/spm_mm_svc.h -------------------------------------------------------------------------------- /include/services/spmd_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/services/spmd_svc.h -------------------------------------------------------------------------------- /include/services/std_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/services/std_svc.h -------------------------------------------------------------------------------- /include/services/trng_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/services/trng_svc.h -------------------------------------------------------------------------------- /include/tools_share/sptool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/tools_share/sptool.h -------------------------------------------------------------------------------- /include/tools_share/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/include/tools_share/uuid.h -------------------------------------------------------------------------------- /lib/aarch32/armclang_printf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/aarch32/armclang_printf.S -------------------------------------------------------------------------------- /lib/aarch32/cache_helpers.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/aarch32/cache_helpers.S -------------------------------------------------------------------------------- /lib/aarch32/misc_helpers.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/aarch32/misc_helpers.S -------------------------------------------------------------------------------- /lib/aarch64/armclang_printf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/aarch64/armclang_printf.S -------------------------------------------------------------------------------- /lib/aarch64/cache_helpers.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/aarch64/cache_helpers.S -------------------------------------------------------------------------------- /lib/aarch64/misc_helpers.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/aarch64/misc_helpers.S -------------------------------------------------------------------------------- /lib/compiler-rt/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/compiler-rt/LICENSE.TXT -------------------------------------------------------------------------------- /lib/coreboot/coreboot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/coreboot/coreboot.mk -------------------------------------------------------------------------------- /lib/coreboot/coreboot_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/coreboot/coreboot_table.c -------------------------------------------------------------------------------- /lib/cpus/aarch32/cortex_a12.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch32/cortex_a12.S -------------------------------------------------------------------------------- /lib/cpus/aarch32/cortex_a15.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch32/cortex_a15.S -------------------------------------------------------------------------------- /lib/cpus/aarch32/cortex_a17.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch32/cortex_a17.S -------------------------------------------------------------------------------- /lib/cpus/aarch32/cortex_a32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch32/cortex_a32.S -------------------------------------------------------------------------------- /lib/cpus/aarch32/cortex_a5.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch32/cortex_a5.S -------------------------------------------------------------------------------- /lib/cpus/aarch32/cortex_a53.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch32/cortex_a53.S -------------------------------------------------------------------------------- /lib/cpus/aarch32/cortex_a57.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch32/cortex_a57.S -------------------------------------------------------------------------------- /lib/cpus/aarch32/cortex_a7.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch32/cortex_a7.S -------------------------------------------------------------------------------- /lib/cpus/aarch32/cortex_a72.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch32/cortex_a72.S -------------------------------------------------------------------------------- /lib/cpus/aarch32/cortex_a9.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch32/cortex_a9.S -------------------------------------------------------------------------------- /lib/cpus/aarch64/cortex_a35.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch64/cortex_a35.S -------------------------------------------------------------------------------- /lib/cpus/aarch64/cortex_a53.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch64/cortex_a53.S -------------------------------------------------------------------------------- /lib/cpus/aarch64/cortex_a55.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch64/cortex_a55.S -------------------------------------------------------------------------------- /lib/cpus/aarch64/cortex_a57.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch64/cortex_a57.S -------------------------------------------------------------------------------- /lib/cpus/aarch64/cortex_a65.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch64/cortex_a65.S -------------------------------------------------------------------------------- /lib/cpus/aarch64/cortex_a72.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch64/cortex_a72.S -------------------------------------------------------------------------------- /lib/cpus/aarch64/cortex_a73.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch64/cortex_a73.S -------------------------------------------------------------------------------- /lib/cpus/aarch64/cortex_a75.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch64/cortex_a75.S -------------------------------------------------------------------------------- /lib/cpus/aarch64/cortex_a76.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch64/cortex_a76.S -------------------------------------------------------------------------------- /lib/cpus/aarch64/cortex_a77.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch64/cortex_a77.S -------------------------------------------------------------------------------- /lib/cpus/aarch64/cortex_a78.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch64/cortex_a78.S -------------------------------------------------------------------------------- /lib/cpus/aarch64/cpuamu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch64/cpuamu.c -------------------------------------------------------------------------------- /lib/cpus/aarch64/denver.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch64/denver.S -------------------------------------------------------------------------------- /lib/cpus/aarch64/generic.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch64/generic.S -------------------------------------------------------------------------------- /lib/cpus/aarch64/qemu_max.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch64/qemu_max.S -------------------------------------------------------------------------------- /lib/cpus/aarch64/rainier.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/aarch64/rainier.S -------------------------------------------------------------------------------- /lib/cpus/cpu-ops.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/cpu-ops.mk -------------------------------------------------------------------------------- /lib/cpus/errata_report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/cpus/errata_report.c -------------------------------------------------------------------------------- /lib/debugfs/blobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/debugfs/blobs.h -------------------------------------------------------------------------------- /lib/debugfs/debugfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/debugfs/debugfs.mk -------------------------------------------------------------------------------- /lib/debugfs/debugfs_smc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/debugfs/debugfs_smc.c -------------------------------------------------------------------------------- /lib/debugfs/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/debugfs/dev.c -------------------------------------------------------------------------------- /lib/debugfs/dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/debugfs/dev.h -------------------------------------------------------------------------------- /lib/debugfs/devc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/debugfs/devc.c -------------------------------------------------------------------------------- /lib/debugfs/devfip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/debugfs/devfip.c -------------------------------------------------------------------------------- /lib/debugfs/devroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/debugfs/devroot.c -------------------------------------------------------------------------------- /lib/extensions/mpam/mpam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/extensions/mpam/mpam.c -------------------------------------------------------------------------------- /lib/extensions/spe/spe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/extensions/spe/spe.c -------------------------------------------------------------------------------- /lib/extensions/sve/sve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/extensions/sve/sve.c -------------------------------------------------------------------------------- /lib/fconf/fconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/fconf/fconf.c -------------------------------------------------------------------------------- /lib/fconf/fconf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/fconf/fconf.mk -------------------------------------------------------------------------------- /lib/fconf/fconf_cot_getter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/fconf/fconf_cot_getter.c -------------------------------------------------------------------------------- /lib/fconf/fconf_tbbr_getter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/fconf/fconf_tbbr_getter.c -------------------------------------------------------------------------------- /lib/libc/aarch32/memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/aarch32/memset.S -------------------------------------------------------------------------------- /lib/libc/aarch64/memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/aarch64/memset.S -------------------------------------------------------------------------------- /lib/libc/aarch64/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/aarch64/setjmp.S -------------------------------------------------------------------------------- /lib/libc/abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/abort.c -------------------------------------------------------------------------------- /lib/libc/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/assert.c -------------------------------------------------------------------------------- /lib/libc/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/exit.c -------------------------------------------------------------------------------- /lib/libc/libc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/libc.mk -------------------------------------------------------------------------------- /lib/libc/libc_asm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/libc_asm.mk -------------------------------------------------------------------------------- /lib/libc/memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/memchr.c -------------------------------------------------------------------------------- /lib/libc/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/memcmp.c -------------------------------------------------------------------------------- /lib/libc/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/memcpy.c -------------------------------------------------------------------------------- /lib/libc/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/memmove.c -------------------------------------------------------------------------------- /lib/libc/memrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/memrchr.c -------------------------------------------------------------------------------- /lib/libc/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/memset.c -------------------------------------------------------------------------------- /lib/libc/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/printf.c -------------------------------------------------------------------------------- /lib/libc/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/putchar.c -------------------------------------------------------------------------------- /lib/libc/puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/puts.c -------------------------------------------------------------------------------- /lib/libc/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/snprintf.c -------------------------------------------------------------------------------- /lib/libc/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/strchr.c -------------------------------------------------------------------------------- /lib/libc/strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/strcmp.c -------------------------------------------------------------------------------- /lib/libc/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/strlcat.c -------------------------------------------------------------------------------- /lib/libc/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/strlcpy.c -------------------------------------------------------------------------------- /lib/libc/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/strlen.c -------------------------------------------------------------------------------- /lib/libc/strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/strncmp.c -------------------------------------------------------------------------------- /lib/libc/strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/strnlen.c -------------------------------------------------------------------------------- /lib/libc/strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/strrchr.c -------------------------------------------------------------------------------- /lib/libc/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/strtok.c -------------------------------------------------------------------------------- /lib/libc/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/strtol.c -------------------------------------------------------------------------------- /lib/libc/strtoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/strtoll.c -------------------------------------------------------------------------------- /lib/libc/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/strtoul.c -------------------------------------------------------------------------------- /lib/libc/strtoull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libc/strtoull.c -------------------------------------------------------------------------------- /lib/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libfdt/fdt.c -------------------------------------------------------------------------------- /lib/libfdt/fdt_addresses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libfdt/fdt_addresses.c -------------------------------------------------------------------------------- /lib/libfdt/fdt_empty_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libfdt/fdt_empty_tree.c -------------------------------------------------------------------------------- /lib/libfdt/fdt_overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libfdt/fdt_overlay.c -------------------------------------------------------------------------------- /lib/libfdt/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libfdt/fdt_ro.c -------------------------------------------------------------------------------- /lib/libfdt/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libfdt/fdt_rw.c -------------------------------------------------------------------------------- /lib/libfdt/fdt_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libfdt/fdt_strerror.c -------------------------------------------------------------------------------- /lib/libfdt/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libfdt/fdt_sw.c -------------------------------------------------------------------------------- /lib/libfdt/fdt_wip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libfdt/fdt_wip.c -------------------------------------------------------------------------------- /lib/libfdt/libfdt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libfdt/libfdt.mk -------------------------------------------------------------------------------- /lib/libfdt/libfdt_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/libfdt/libfdt_internal.h -------------------------------------------------------------------------------- /lib/optee/optee_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/optee/optee_utils.c -------------------------------------------------------------------------------- /lib/pmf/pmf_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/pmf/pmf_main.c -------------------------------------------------------------------------------- /lib/pmf/pmf_smc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/pmf/pmf_smc.c -------------------------------------------------------------------------------- /lib/psci/psci_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/psci/psci_common.c -------------------------------------------------------------------------------- /lib/psci/psci_lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/psci/psci_lib.mk -------------------------------------------------------------------------------- /lib/psci/psci_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/psci/psci_main.c -------------------------------------------------------------------------------- /lib/psci/psci_mem_protect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/psci/psci_mem_protect.c -------------------------------------------------------------------------------- /lib/psci/psci_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/psci/psci_off.c -------------------------------------------------------------------------------- /lib/psci/psci_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/psci/psci_on.c -------------------------------------------------------------------------------- /lib/psci/psci_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/psci/psci_private.h -------------------------------------------------------------------------------- /lib/psci/psci_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/psci/psci_setup.c -------------------------------------------------------------------------------- /lib/psci/psci_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/psci/psci_stat.c -------------------------------------------------------------------------------- /lib/psci/psci_suspend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/psci/psci_suspend.c -------------------------------------------------------------------------------- /lib/psci/psci_system_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/psci/psci_system_off.c -------------------------------------------------------------------------------- /lib/romlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/romlib/Makefile -------------------------------------------------------------------------------- /lib/romlib/init.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/romlib/init.s -------------------------------------------------------------------------------- /lib/romlib/jmptbl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/romlib/jmptbl.i -------------------------------------------------------------------------------- /lib/romlib/romlib.ld.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/romlib/romlib.ld.S -------------------------------------------------------------------------------- /lib/semihosting/semihosting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/semihosting/semihosting.c -------------------------------------------------------------------------------- /lib/utils/mem_region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/utils/mem_region.c -------------------------------------------------------------------------------- /lib/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/zlib/adler32.c -------------------------------------------------------------------------------- /lib/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/zlib/crc32.c -------------------------------------------------------------------------------- /lib/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/zlib/crc32.h -------------------------------------------------------------------------------- /lib/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/zlib/inffast.c -------------------------------------------------------------------------------- /lib/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/zlib/inffast.h -------------------------------------------------------------------------------- /lib/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/zlib/inffixed.h -------------------------------------------------------------------------------- /lib/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/zlib/inflate.c -------------------------------------------------------------------------------- /lib/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/zlib/inflate.h -------------------------------------------------------------------------------- /lib/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/zlib/inftrees.c -------------------------------------------------------------------------------- /lib/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/zlib/inftrees.h -------------------------------------------------------------------------------- /lib/zlib/tf_gunzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/zlib/tf_gunzip.c -------------------------------------------------------------------------------- /lib/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/zlib/zconf.h -------------------------------------------------------------------------------- /lib/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/zlib/zlib.h -------------------------------------------------------------------------------- /lib/zlib/zlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/zlib/zlib.mk -------------------------------------------------------------------------------- /lib/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/zlib/zutil.c -------------------------------------------------------------------------------- /lib/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/lib/zlib/zutil.h -------------------------------------------------------------------------------- /license.rst: -------------------------------------------------------------------------------- 1 | See docs/license.rst 2 | -------------------------------------------------------------------------------- /licenses/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/licenses/LICENSE.MIT -------------------------------------------------------------------------------- /make_helpers/armv7-a-cpus.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/make_helpers/armv7-a-cpus.mk -------------------------------------------------------------------------------- /make_helpers/build_env.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/make_helpers/build_env.mk -------------------------------------------------------------------------------- /make_helpers/build_macros.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/make_helpers/build_macros.mk -------------------------------------------------------------------------------- /make_helpers/cygwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/make_helpers/cygwin.mk -------------------------------------------------------------------------------- /make_helpers/defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/make_helpers/defaults.mk -------------------------------------------------------------------------------- /make_helpers/msys.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/make_helpers/msys.mk -------------------------------------------------------------------------------- /make_helpers/plat_helpers.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/make_helpers/plat_helpers.mk -------------------------------------------------------------------------------- /make_helpers/unix.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/make_helpers/unix.mk -------------------------------------------------------------------------------- /make_helpers/windows.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/make_helpers/windows.mk -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/package.json -------------------------------------------------------------------------------- /plat/amlogic/axg/axg_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/amlogic/axg/axg_common.c -------------------------------------------------------------------------------- /plat/amlogic/axg/axg_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/amlogic/axg/axg_def.h -------------------------------------------------------------------------------- /plat/amlogic/axg/axg_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/amlogic/axg/axg_pm.c -------------------------------------------------------------------------------- /plat/amlogic/axg/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/amlogic/axg/platform.mk -------------------------------------------------------------------------------- /plat/amlogic/common/aml_mhu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/amlogic/common/aml_mhu.c -------------------------------------------------------------------------------- /plat/amlogic/g12a/g12a_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/amlogic/g12a/g12a_def.h -------------------------------------------------------------------------------- /plat/amlogic/g12a/g12a_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/amlogic/g12a/g12a_pm.c -------------------------------------------------------------------------------- /plat/amlogic/g12a/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/amlogic/g12a/platform.mk -------------------------------------------------------------------------------- /plat/amlogic/gxbb/gxbb_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/amlogic/gxbb/gxbb_def.h -------------------------------------------------------------------------------- /plat/amlogic/gxbb/gxbb_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/amlogic/gxbb/gxbb_pm.c -------------------------------------------------------------------------------- /plat/amlogic/gxbb/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/amlogic/gxbb/platform.mk -------------------------------------------------------------------------------- /plat/amlogic/gxl/gxl_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/amlogic/gxl/gxl_common.c -------------------------------------------------------------------------------- /plat/amlogic/gxl/gxl_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/amlogic/gxl/gxl_def.h -------------------------------------------------------------------------------- /plat/amlogic/gxl/gxl_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/amlogic/gxl/gxl_pm.c -------------------------------------------------------------------------------- /plat/amlogic/gxl/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/amlogic/gxl/platform.mk -------------------------------------------------------------------------------- /plat/arm/board/a5ds/a5ds_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/board/a5ds/a5ds_pm.c -------------------------------------------------------------------------------- /plat/arm/board/fvp/fvp_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/board/fvp/fvp_def.h -------------------------------------------------------------------------------- /plat/arm/board/fvp/fvp_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/board/fvp/fvp_err.c -------------------------------------------------------------------------------- /plat/arm/board/fvp/fvp_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/board/fvp/fvp_pm.c -------------------------------------------------------------------------------- /plat/arm/board/fvp/jmptbl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/board/fvp/jmptbl.i -------------------------------------------------------------------------------- /plat/arm/board/juno/jmptbl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/board/juno/jmptbl.i -------------------------------------------------------------------------------- /plat/arm/board/juno/juno_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/board/juno/juno_pm.c -------------------------------------------------------------------------------- /plat/arm/board/tc0/tc0_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/board/tc0/tc0_err.c -------------------------------------------------------------------------------- /plat/arm/board/tc0/tc0_plat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/board/tc0/tc0_plat.c -------------------------------------------------------------------------------- /plat/arm/common/arm_bl1_fwu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/common/arm_bl1_fwu.c -------------------------------------------------------------------------------- /plat/arm/common/arm_cci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/common/arm_cci.c -------------------------------------------------------------------------------- /plat/arm/common/arm_ccn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/common/arm_ccn.c -------------------------------------------------------------------------------- /plat/arm/common/arm_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/common/arm_common.c -------------------------------------------------------------------------------- /plat/arm/common/arm_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/common/arm_common.mk -------------------------------------------------------------------------------- /plat/arm/common/arm_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/common/arm_console.c -------------------------------------------------------------------------------- /plat/arm/common/arm_dyn_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/common/arm_dyn_cfg.c -------------------------------------------------------------------------------- /plat/arm/common/arm_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/common/arm_err.c -------------------------------------------------------------------------------- /plat/arm/common/arm_gicv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/common/arm_gicv2.c -------------------------------------------------------------------------------- /plat/arm/common/arm_gicv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/common/arm_gicv3.c -------------------------------------------------------------------------------- /plat/arm/common/arm_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/common/arm_pm.c -------------------------------------------------------------------------------- /plat/arm/common/arm_sip_svc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/common/arm_sip_svc.c -------------------------------------------------------------------------------- /plat/arm/common/arm_tzc400.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/common/arm_tzc400.c -------------------------------------------------------------------------------- /plat/arm/css/common/css_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/css/common/css_pm.c -------------------------------------------------------------------------------- /plat/arm/css/sgi/sgi_plat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/css/sgi/sgi_plat.c -------------------------------------------------------------------------------- /plat/arm/css/sgi/sgi_ras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/arm/css/sgi/sgi_ras.c -------------------------------------------------------------------------------- /plat/brcm/board/common/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/brcm/board/common/err.c -------------------------------------------------------------------------------- /plat/brcm/common/brcm_ccn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/brcm/common/brcm_ccn.c -------------------------------------------------------------------------------- /plat/brcm/common/brcm_gicv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/brcm/common/brcm_gicv3.c -------------------------------------------------------------------------------- /plat/brcm/common/brcm_mhu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/brcm/common/brcm_mhu.c -------------------------------------------------------------------------------- /plat/brcm/common/brcm_mhu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/brcm/common/brcm_mhu.h -------------------------------------------------------------------------------- /plat/brcm/common/brcm_scpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/brcm/common/brcm_scpi.c -------------------------------------------------------------------------------- /plat/brcm/common/brcm_scpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/brcm/common/brcm_scpi.h -------------------------------------------------------------------------------- /plat/common/plat_bl1_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/common/plat_bl1_common.c -------------------------------------------------------------------------------- /plat/common/plat_bl_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/common/plat_bl_common.c -------------------------------------------------------------------------------- /plat/common/plat_gicv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/common/plat_gicv2.c -------------------------------------------------------------------------------- /plat/common/plat_gicv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/common/plat_gicv3.c -------------------------------------------------------------------------------- /plat/common/plat_log_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/common/plat_log_common.c -------------------------------------------------------------------------------- /plat/common/tbbr/plat_tbbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/common/tbbr/plat_tbbr.c -------------------------------------------------------------------------------- /plat/common/ubsan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/common/ubsan.c -------------------------------------------------------------------------------- /plat/imx/common/imx7_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/common/imx7_clock.c -------------------------------------------------------------------------------- /plat/imx/common/imx8_psci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/common/imx8_psci.c -------------------------------------------------------------------------------- /plat/imx/common/imx_aips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/common/imx_aips.c -------------------------------------------------------------------------------- /plat/imx/common/imx_caam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/common/imx_caam.c -------------------------------------------------------------------------------- /plat/imx/common/imx_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/common/imx_clock.c -------------------------------------------------------------------------------- /plat/imx/common/imx_csu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/common/imx_csu.c -------------------------------------------------------------------------------- /plat/imx/common/imx_ehf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/common/imx_ehf.c -------------------------------------------------------------------------------- /plat/imx/common/imx_io_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/common/imx_io_mux.c -------------------------------------------------------------------------------- /plat/imx/common/imx_sdei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/common/imx_sdei.c -------------------------------------------------------------------------------- /plat/imx/common/imx_sip_svc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/common/imx_sip_svc.c -------------------------------------------------------------------------------- /plat/imx/common/imx_snvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/common/imx_snvs.c -------------------------------------------------------------------------------- /plat/imx/common/imx_wdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/common/imx_wdog.c -------------------------------------------------------------------------------- /plat/imx/common/sci/imx8_mu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/common/sci/imx8_mu.c -------------------------------------------------------------------------------- /plat/imx/common/sci/imx8_mu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/common/sci/imx8_mu.h -------------------------------------------------------------------------------- /plat/imx/common/sci/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/common/sci/ipc.c -------------------------------------------------------------------------------- /plat/imx/imx7/common/imx7.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/imx7/common/imx7.mk -------------------------------------------------------------------------------- /plat/imx/imx8m/gpc_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/imx8m/gpc_common.c -------------------------------------------------------------------------------- /plat/imx/imx8m/imx8m_caam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/imx8m/imx8m_caam.c -------------------------------------------------------------------------------- /plat/imx/imx8m/imx8mm/gpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/imx8m/imx8mm/gpc.c -------------------------------------------------------------------------------- /plat/imx/imx8m/imx8mn/gpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/imx8m/imx8mn/gpc.c -------------------------------------------------------------------------------- /plat/imx/imx8m/imx8mp/gpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/imx8m/imx8mp/gpc.c -------------------------------------------------------------------------------- /plat/imx/imx8m/imx8mq/gpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/imx8m/imx8mq/gpc.c -------------------------------------------------------------------------------- /plat/imx/imx8m/imx_aipstz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/imx8m/imx_aipstz.c -------------------------------------------------------------------------------- /plat/imx/imx8m/imx_rdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/imx8m/imx_rdc.c -------------------------------------------------------------------------------- /plat/imx/imx8m/include/gpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/imx8m/include/gpc.h -------------------------------------------------------------------------------- /plat/imx/imx8qm/imx8qm_psci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/imx8qm/imx8qm_psci.c -------------------------------------------------------------------------------- /plat/imx/imx8qm/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/imx8qm/platform.mk -------------------------------------------------------------------------------- /plat/imx/imx8qx/imx8qx_psci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/imx8qx/imx8qx_psci.c -------------------------------------------------------------------------------- /plat/imx/imx8qx/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/imx/imx8qx/platform.mk -------------------------------------------------------------------------------- /plat/marvell/marvell.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/marvell/marvell.mk -------------------------------------------------------------------------------- /plat/mediatek/mt6795/scu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/mediatek/mt6795/scu.c -------------------------------------------------------------------------------- /plat/mediatek/mt8173/scu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/mediatek/mt8173/scu.c -------------------------------------------------------------------------------- /plat/mediatek/mt8183/scu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/mediatek/mt8183/scu.c -------------------------------------------------------------------------------- /plat/nvidia/tegra/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/nvidia/tegra/platform.mk -------------------------------------------------------------------------------- /plat/nxp/common/psci/psci.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/nxp/common/psci/psci.mk -------------------------------------------------------------------------------- /plat/nxp/common/setup/core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/nxp/common/setup/core.mk -------------------------------------------------------------------------------- /plat/nxp/common/tbbr/tbbr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/nxp/common/tbbr/tbbr.mk -------------------------------------------------------------------------------- /plat/nxp/soc-lx2160a/soc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/nxp/soc-lx2160a/soc.c -------------------------------------------------------------------------------- /plat/nxp/soc-lx2160a/soc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/nxp/soc-lx2160a/soc.def -------------------------------------------------------------------------------- /plat/nxp/soc-lx2160a/soc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/nxp/soc-lx2160a/soc.mk -------------------------------------------------------------------------------- /plat/qemu/common/qemu_gicv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/qemu/common/qemu_gicv2.c -------------------------------------------------------------------------------- /plat/qemu/common/qemu_gicv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/qemu/common/qemu_gicv3.c -------------------------------------------------------------------------------- /plat/qemu/common/qemu_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/qemu/common/qemu_pm.c -------------------------------------------------------------------------------- /plat/qemu/common/qemu_rotpk.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/qemu/common/qemu_rotpk.S -------------------------------------------------------------------------------- /plat/qemu/common/qemu_spm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/qemu/common/qemu_spm.c -------------------------------------------------------------------------------- /plat/qemu/common/topology.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/qemu/common/topology.c -------------------------------------------------------------------------------- /plat/qemu/qemu/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/qemu/qemu/platform.mk -------------------------------------------------------------------------------- /plat/qemu/qemu_sbsa/sbsa_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/qemu/qemu_sbsa/sbsa_pm.c -------------------------------------------------------------------------------- /plat/qti/common/inc/qti_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/qti/common/inc/qti_cpu.h -------------------------------------------------------------------------------- /plat/qti/common/inc/qti_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/qti/common/inc/qti_rng.h -------------------------------------------------------------------------------- /plat/qti/common/src/pm8998.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/qti/common/src/pm8998.c -------------------------------------------------------------------------------- /plat/qti/common/src/qti_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/qti/common/src/qti_pm.c -------------------------------------------------------------------------------- /plat/qti/common/src/qti_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/qti/common/src/qti_rng.c -------------------------------------------------------------------------------- /plat/qti/sc7180/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/qti/sc7180/platform.mk -------------------------------------------------------------------------------- /plat/renesas/common/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/renesas/common/common.mk -------------------------------------------------------------------------------- /plat/renesas/common/plat_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/renesas/common/plat_pm.c -------------------------------------------------------------------------------- /plat/renesas/rcar/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/renesas/rcar/platform.mk -------------------------------------------------------------------------------- /plat/renesas/rzg/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/renesas/rzg/platform.mk -------------------------------------------------------------------------------- /plat/rockchip/px30/px30_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/rockchip/px30/px30_def.h -------------------------------------------------------------------------------- /plat/rpi/common/rpi3_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/rpi/common/rpi3_common.c -------------------------------------------------------------------------------- /plat/rpi/common/rpi3_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/rpi/common/rpi3_pm.c -------------------------------------------------------------------------------- /plat/rpi/common/rpi3_rotpk.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/rpi/common/rpi3_rotpk.S -------------------------------------------------------------------------------- /plat/rpi/rpi3/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/rpi/rpi3/platform.mk -------------------------------------------------------------------------------- /plat/rpi/rpi4/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/rpi/rpi4/platform.mk -------------------------------------------------------------------------------- /plat/st/common/stm32mp_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/st/common/stm32mp_auth.c -------------------------------------------------------------------------------- /plat/st/common/stm32mp_dt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/st/common/stm32mp_dt.c -------------------------------------------------------------------------------- /plat/st/stm32mp1/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/st/stm32mp1/platform.mk -------------------------------------------------------------------------------- /plat/st/stm32mp1/stm32mp1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/st/stm32mp1/stm32mp1.S -------------------------------------------------------------------------------- /plat/ti/k3/common/k3_gicv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/ti/k3/common/k3_gicv3.c -------------------------------------------------------------------------------- /plat/ti/k3/common/k3_psci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/ti/k3/common/k3_psci.c -------------------------------------------------------------------------------- /plat/ti/k3/include/k3_gicv3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/ti/k3/include/k3_gicv3.h -------------------------------------------------------------------------------- /plat/ti/k3/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/ti/k3/platform.mk -------------------------------------------------------------------------------- /plat/xilinx/common/ipi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/plat/xilinx/common/ipi.c -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/readme.rst -------------------------------------------------------------------------------- /services/spd/opteed/opteed.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/services/spd/opteed/opteed.mk -------------------------------------------------------------------------------- /services/spd/tlkd/tlkd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/services/spd/tlkd/tlkd.mk -------------------------------------------------------------------------------- /services/spd/tlkd/tlkd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/services/spd/tlkd/tlkd_main.c -------------------------------------------------------------------------------- /services/spd/tlkd/tlkd_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/services/spd/tlkd/tlkd_pm.c -------------------------------------------------------------------------------- /services/spd/trusty/sm_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/services/spd/trusty/sm_err.h -------------------------------------------------------------------------------- /services/spd/trusty/smcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/services/spd/trusty/smcall.h -------------------------------------------------------------------------------- /services/spd/trusty/trusty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/services/spd/trusty/trusty.c -------------------------------------------------------------------------------- /services/spd/trusty/trusty.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/services/spd/trusty/trusty.mk -------------------------------------------------------------------------------- /services/spd/tspd/tspd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/services/spd/tspd/tspd.mk -------------------------------------------------------------------------------- /services/spd/tspd/tspd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/services/spd/tspd/tspd_main.c -------------------------------------------------------------------------------- /services/spd/tspd/tspd_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/services/spd/tspd/tspd_pm.c -------------------------------------------------------------------------------- /services/std_svc/spmd/spmd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/services/std_svc/spmd/spmd.mk -------------------------------------------------------------------------------- /tools/amlogic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/amlogic/Makefile -------------------------------------------------------------------------------- /tools/amlogic/doimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/amlogic/doimage.c -------------------------------------------------------------------------------- /tools/cert_create/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/cert_create/Makefile -------------------------------------------------------------------------------- /tools/cert_create/src/cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/cert_create/src/cert.c -------------------------------------------------------------------------------- /tools/cert_create/src/ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/cert_create/src/ext.c -------------------------------------------------------------------------------- /tools/cert_create/src/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/cert_create/src/key.c -------------------------------------------------------------------------------- /tools/cert_create/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/cert_create/src/main.c -------------------------------------------------------------------------------- /tools/cert_create/src/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/cert_create/src/sha.c -------------------------------------------------------------------------------- /tools/encrypt_fw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/encrypt_fw/Makefile -------------------------------------------------------------------------------- /tools/encrypt_fw/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/encrypt_fw/src/main.c -------------------------------------------------------------------------------- /tools/fiptool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/fiptool/Makefile -------------------------------------------------------------------------------- /tools/fiptool/Makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/fiptool/Makefile.msvc -------------------------------------------------------------------------------- /tools/fiptool/fiptool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/fiptool/fiptool.c -------------------------------------------------------------------------------- /tools/fiptool/fiptool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/fiptool/fiptool.h -------------------------------------------------------------------------------- /tools/fiptool/tbbr_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/fiptool/tbbr_config.c -------------------------------------------------------------------------------- /tools/fiptool/tbbr_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/fiptool/tbbr_config.h -------------------------------------------------------------------------------- /tools/fiptool/win_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/fiptool/win_posix.c -------------------------------------------------------------------------------- /tools/fiptool/win_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/fiptool/win_posix.h -------------------------------------------------------------------------------- /tools/nxp/create_pbl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/nxp/create_pbl/Makefile -------------------------------------------------------------------------------- /tools/nxp/create_pbl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/nxp/create_pbl/README -------------------------------------------------------------------------------- /tools/sptool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/sptool/Makefile -------------------------------------------------------------------------------- /tools/sptool/sptool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/sptool/sptool.c -------------------------------------------------------------------------------- /tools/stm32image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/stm32image/Makefile -------------------------------------------------------------------------------- /tools/stm32image/stm32image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renesas-rcar/arm-trusted-firmware/HEAD/tools/stm32image/stm32image.c --------------------------------------------------------------------------------