/trusted-firmware-a-3.7.0/ |
D | package-lock.json | 3 "version": "2.10.4", string 9 "version": "2.10.4", string 20 "standard-version": "^9.3.2" 27 "version": "7.18.6", string 39 "version": "7.19.1", string 48 "version": "7.18.6", string 62 "version": "3.2.1", string 74 "version": "2.4.2", string 88 "version": "1.9.3", string 97 "version": "1.1.3", string [all …]
|
D | .versionrc.js | 87 const _ver = contents.match(/version\s=.*"(\d+?)\.(\d+?)\.(\d+?)/); 92 "writeVersion": function (contents, version) { 93 const _ver = 'version = "' + version + '"' 95 return contents.replace(/^(version\s=\s")((\d).?)*$/m, _ver) 107 const _ver = contents.match(/version\s=.*"(\d+?)\.(\d+?)\.(\d+?)/); 112 "writeVersion": function (contents, version) { 113 const _ver = 'version = "' + version + '"' 114 const _rel = 'release = "' + version + '"' 116 contents = contents.replace(/^(version\s=\s")((\d).?)*$/m, _ver) 137 "writeVersion": function (contents, version) { [all …]
|
D | poetry.lock | 5 version = "0.7.13" 16 version = "2.8.0" 34 version = "2.12.1" 44 pytz = {version = ">=2015.7", markers = "python_version < \"3.9\""} 48 version = "0.10.0" 58 colorama = {version = "*", markers = "os_name == \"nt\""} 61 tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} 71 version = "2023.7.22" 82 version = "3.1.0" 166 version = "8.1.3" [all …]
|
D | package.json | 3 "version": "2.10.4", string 8 "release": "standard-version" 21 "standard-version": "^9.3.2"
|
/trusted-firmware-a-3.7.0/drivers/arm/css/scmi/ |
D | scmi_common.c | 88 * API to query the SCMI protocol version. 90 int scmi_proto_version(void *p, uint32_t proto_id, uint32_t *version) in scmi_proto_version() argument 110 SCMI_PAYLOAD_RET_VAL2(mbx_mem->payload, ret, *version); in scmi_proto_version() 159 uint32_t version; in scmi_init() local 174 ret = scmi_proto_version(ch, SCMI_PWR_DMN_PROTO_ID, &version); in scmi_init() 176 WARN("SCMI power domain protocol version message failed\n"); in scmi_init() 180 if (!is_scmi_version_compatible(SCMI_PWR_DMN_PROTO_VER, version)) { in scmi_init() 181 WARN("SCMI power domain protocol version 0x%x incompatible with driver version 0x%x\n", in scmi_init() 182 version, SCMI_PWR_DMN_PROTO_VER); in scmi_init() 186 VERBOSE("SCMI power domain protocol version 0x%x detected\n", version); in scmi_init() [all …]
|
/trusted-firmware-a-3.7.0/plat/arm/board/morello/fdts/ |
D | morello_nt_fw_config.dts | 28 * Placeholder for firmware-version node with default values. 32 firmware-version { 34 mcc-fw-version = <0x0>; 35 pcc-fw-version = <0x0>; 37 scp-fw-version = <0x0>; 39 tfa-fw-version = "unknown-dirty_00000000";
|
/trusted-firmware-a-3.7.0/lib/psa/ |
D | measured_boot.c | 41 const uint8_t *version, /* string */ in log_measurement() argument 54 INFO(" - version : %s\n", version); in log_measurement() 69 const uint8_t *version, in rss_measured_boot_extend_measurement() argument 91 if (version_size > 0 && version[version_size - 1] == '\0') { in rss_measured_boot_extend_measurement() 99 {.base = version, .len = version_size }, in rss_measured_boot_extend_measurement() 114 version, version_size, sw_type, sw_type_size, in rss_measured_boot_extend_measurement() 128 uint8_t *version, in rss_measured_boot_read_measurement() argument 171 memcpy(version, read_iov_out.version, read_iov_out.version_len); in rss_measured_boot_read_measurement() 185 const uint8_t *version, in rss_measured_boot_extend_measurement() argument 195 version, version_size, sw_type, sw_type_size, in rss_measured_boot_extend_measurement() [all …]
|
/trusted-firmware-a-3.7.0/include/lib/libfdt/ |
D | fdt.h | 18 fdt32_t version; /* format version */ member 19 fdt32_t last_comp_version; /* last compatible version */ 21 /* version 2 fields below */ 24 /* version 3 fields below */ 27 /* version 17 fields below */ 50 #define FDT_MAGIC 0xd00dfeed /* 4: version, 4: total size */
|
/trusted-firmware-a-3.7.0/include/lib/psa/ |
D | measured_boot.h | 25 /* The theoretical maximum image version is: "255.255.65535\0" */ 38 * version Pointer to version buffer. 39 * version_size Size of the version string in bytes. 68 const uint8_t *version, 86 * version Pointer to version buffer. 87 * version_size Size of the version buffer in bytes. 89 * version. 114 uint8_t *version,
|
/trusted-firmware-a-3.7.0/plat/arm/board/morello/ |
D | morello_image_load.c | 37 * firmware-version { 39 * mcc-fw-version = <0x0>; 40 * pcc-fw-version = <0x0>; 42 * scp-fw-version = <0x0>; 44 * tfa-fw-version = "unknown-dirty_00000000"; 77 nodeoffset_fw = fdt_subnode_offset(fdt, 0, "firmware-version"); in plat_morello_append_config_node() 79 ERROR("NT_FW_CONFIG: Failed to get firmware-version node offset\n"); in plat_morello_append_config_node() 116 err = fdt_setprop_u32(fdt, nodeoffset_fw, "mcc-fw-version", in plat_morello_append_config_node() 119 ERROR("NT_FW_CONFIG: Failed to set mcc-fw-version\n"); in plat_morello_append_config_node() 123 err = fdt_setprop_u32(fdt, nodeoffset_fw, "pcc-fw-version", in plat_morello_append_config_node() [all …]
|
/trusted-firmware-a-3.7.0/plat/arm/css/sgi/include/ |
D | sgi_variant.h | 13 /* SID Version values for RD-N1E1-Edge */ 17 /* SID Version values for RD-V1 */ 20 /* SID Version values for RD-N2 */ 23 /* SID Version values for RD-N2 variants */ 27 /* SID Version values for RD-V2 */
|
/trusted-firmware-a-3.7.0/plat/xilinx/versal_net/aarch64/ |
D | versal_net_common.c | 63 uint32_t version; in board_detection() local 65 version = mmio_read_32(PMC_TAP_VERSION); in board_detection() 66 platform_id = FIELD_GET(PLATFORM_MASK, version); in board_detection() 67 platform_version = FIELD_GET(PLATFORM_VERSION_MASK, version); in board_detection() 78 * 0 means 0.9 version in board_detection() 79 * 1 means 1.0 version in board_detection() 80 * 2 means 1.1 version in board_detection() 87 VERBOSE("Platform id: %d version: %d.%d\n", platform_id, in board_detection()
|
/trusted-firmware-a-3.7.0/include/services/ |
D | rmm_core_manifest.h | 20 * Manifest version encoding: 22 * - Bits [30:16] Major version 23 * - Bits [15:0] Minor version 65 uint32_t version; /* Manifest version */ member 71 CASSERT(offsetof(struct rmm_manifest, version) == 0UL,
|
/trusted-firmware-a-3.7.0/drivers/arm/ethosn/ |
D | ethosn_big_fw.c | 14 /* Supported big firmware version */ 23 /* Convert Arm(R) Ethos(TM)-N NPU architecture version to big firmware format */ 43 ERROR("ETHOSN: Unsupported firmware version: %u.%u.%u. Expected Version %u.x.x.\n", in ethosn_big_fw_verify_header() 51 ERROR("ETHOSN: Firmware is not compatbile with architecture version: 0x%02x\n", in ethosn_big_fw_verify_header()
|
/trusted-firmware-a-3.7.0/plat/amlogic/common/ |
D | aml_sip_svc.c | 17 uint32_t version; member 21 static int aml_sip_get_chip_id(uint64_t version) in aml_sip_get_chip_id() argument 26 if (version > 2) in aml_sip_get_chip_id() 31 if (version == 2) { in aml_sip_get_chip_id() 32 info->version = 2; in aml_sip_get_chip_id() 35 info->version = 1; in aml_sip_get_chip_id()
|
/trusted-firmware-a-3.7.0/include/lib/extensions/ |
D | ras.h | 42 .version = 1, \ 51 .version = 1, \ 98 /* Data structure version */ 99 unsigned int version; member 153 /* Data structure version */ 154 unsigned int version; member 181 assert(info->version == ERR_HANDLER_VERSION); in ras_err_ser_probe_memmap() 190 assert(info->version == ERR_HANDLER_VERSION); in ras_err_ser_probe_sysreg()
|
/trusted-firmware-a-3.7.0/plat/st/stm32mp2/include/ |
D | boot_api.h | 88 /* Definition of header version */ 219 * bootROM version information structure definition 223 /* Chip Version */ 226 /* Cut version within a fixed chip version */ 229 /* Version of ROM Mask within a fixed cut version */ 232 /* Internal Version of bootROM code */ 235 /* Version of bootROM adapted */ 324 /* Image header version : should have value BOOT_API_HEADER_VERSION */ 342 /* Image version to be compared by bootROM with FSBL_A or FSBL_M version
|
/trusted-firmware-a-3.7.0/plat/socionext/synquacer/drivers/scp/ |
D | sq_scmi.c | 205 uint32_t version; in scmi_ap_core_init() local 208 ret = scmi_proto_version(ch, SCMI_AP_CORE_PROTO_ID, &version); in scmi_ap_core_init() 210 WARN("SCMI AP core protocol version message failed\n"); in scmi_ap_core_init() 214 if (!is_scmi_version_compatible(SCMI_AP_CORE_PROTO_VER, version)) { in scmi_ap_core_init() 215 WARN("SCMI AP core protocol version 0x%x incompatible with driver version 0x%x\n", in scmi_ap_core_init() 216 version, SCMI_AP_CORE_PROTO_VER); in scmi_ap_core_init() 219 INFO("SCMI AP core protocol version 0x%x detected\n", version); in scmi_ap_core_init()
|
/trusted-firmware-a-3.7.0/services/std_svc/drtm/ |
D | drtm_main.h | 69 uint16_t version; /* Must be 1. */ member 81 } __aligned(__alignof(uint16_t /* First member's type, `uint16_t version' */)); 84 uint16_t version; /* Must be 1. */ member 93 } __aligned(__alignof(uint16_t /* First member's type, `uint16_t version'. */)); 101 * Version-independent type. May be used to avoid excessive line of code
|
/trusted-firmware-a-3.7.0/include/export/common/ |
D | param_header_exp.h | 23 /* Param header version */ 30 * This structure provides version information and the size of the 35 uint8_t version; /* version of this structure */ member
|
/trusted-firmware-a-3.7.0/plat/arm/board/tc/ |
D | rss_ap_test_stubs.c | 20 const uint8_t *version, in tfm_measured_boot_extend_measurement() argument 32 version, in tfm_measured_boot_extend_measurement() 47 uint8_t *version, in tfm_measured_boot_read_measurement() argument 63 version, in tfm_measured_boot_read_measurement()
|
/trusted-firmware-a-3.7.0/plat/xilinx/zynqmp/pm_service/ |
D | zynqmp_pm_api_sys.c | 51 /* Dependent APIs for TF-A to check their version from firmware */ 215 /* Expected firmware API version to TF-A */ 507 * pm_get_api_version() - Get version number of PMU PM firmware. 508 * @version: Returns 32-bit version number of PMU Power Management Firmware. 513 enum pm_ret_status pm_get_api_version(uint32_t *version) in pm_get_api_version() argument 519 return pm_ipi_send_sync(primary_proc, payload, version, 1); in pm_get_api_version() 739 * fw_api_version() - Returns API version implemented in firmware. 741 * @version: Returned supported API version. 747 static enum pm_ret_status fw_api_version(uint32_t id, uint32_t *version, in fw_api_version() argument 753 return pm_ipi_send_sync(primary_proc, payload, version, len); in fw_api_version() [all …]
|
/trusted-firmware-a-3.7.0/include/lib/ |
D | optee_utils.h | 40 * version: OPTEE header version: 49 uint8_t version; member
|
/trusted-firmware-a-3.7.0/plat/qemu/qemu_sbsa/ |
D | sbsa_sip_svc.c | 14 /* default platform version is 0.0 */ 26 * need version of whole 'virtual hardware platform'. 103 "machine-version-major", NULL)); in read_platform_version() 105 "machine-version-minor", NULL)); in read_platform_version() 129 INFO("Platform version: %d.%d\n", platform_version_major, platform_version_minor); in sip_svc_init() 157 INFO("Platform version requested\n"); in sbsa_sip_smc_handler()
|
/trusted-firmware-a-3.7.0/include/bl32/payloads/ |
D | tlk.h | 60 /* TLK implementation version numbers */ 61 #define TLK_VERSION_MAJOR 0x0 /* Major version */ 62 #define TLK_VERSION_MINOR 0x1 /* Minor version */ 70 #define TOS_CALL_VERSION 0xbf00ff03 /* Trusted OS Call Version */
|