Home
last modified time | relevance | path

Searched full:version (Results 1 – 25 of 468) sorted by relevance

12345678910>>...19

/rk3399_ARM-atf/plat/ti/k3/common/
H A Dk3_bl31_setup.c28 struct ti_sci_msg_version version; in ti_soc_init() local
31 ret = ti_sci_get_revision(&version); in ti_soc_init()
38 version.abi_major, version.abi_minor, in ti_soc_init()
39 version.firmware_revision, in ti_soc_init()
40 version.firmware_description); in ti_soc_init()
45 * to detect what current DM version we are running - we rely on the in ti_soc_init()
49 * Upgrading to TIFS version 9.1.7 along with the corresponding DM from in ti_soc_init()
52 if (version.firmware_revision > 9 || in ti_soc_init()
53 (version.firmware_revision == 9 && version.sub_version > 1) || in ti_soc_init()
54 (version.firmware_revision == 9 && version.sub_version == 1 && in ti_soc_init()
[all …]
/rk3399_ARM-atf/
H A Dpackage-lock.json3 "version": "2.14.0", string
9 "version": "2.14.0", string
19 "standard-version": "^9.5.0"
26 "version": "7.23.5", string
39 "version": "3.2.1", string
51 "version": "2.4.2", string
65 "version": "1.9.3", string
74 "version": "1.1.3", string
80 "version": "3.0.0", string
89 "version": "5.5.0", string
[all …]
H A D.versionrc.cjs87 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 …]
H A Dpoetry.lock5 version = "0.7.13"
17 version = "2.12.1"
32 version = "2.17.0"
43 pytz = {version = ">=2015.7", markers = "python_version < \"3.9\""}
50 version = "1.2.2.post1"
61 colorama = {version = "*", markers = "os_name == \"nt\""}
62 importlib-metadata = {version = ">=4.6", markers = "python_full_version < \"3.10.2\""}
65 tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""}
76 version = "5.5.2"
88 version = "2025.8.3"
[all …]
H A Dpackage.json3 "version": "2.14.0", string
9 "release": "standard-version"
22 "standard-version": "^9.5.0"
/rk3399_ARM-atf/drivers/arm/css/scmi/
H A Dscmi_common.c91 * API to query the SCMI protocol version.
93 int scmi_proto_version(void *p, uint32_t proto_id, uint32_t *version) in scmi_proto_version() argument
113 SCMI_PAYLOAD_RET_VAL2(mbx_mem->payload, ret, *version); in scmi_proto_version()
162 uint32_t version; in scmi_init() local
177 ret = scmi_proto_version(ch, SCMI_PWR_DMN_PROTO_ID, &version); in scmi_init()
179 WARN("SCMI power domain protocol version message failed\n"); in scmi_init()
183 if (!is_scmi_version_compatible(SCMI_PWR_DMN_PROTO_VER, version)) { in scmi_init()
184 WARN("SCMI power domain protocol version 0x%x incompatible with driver version 0x%x\n", in scmi_init()
185 version, SCMI_PWR_DMN_PROTO_VER); in scmi_init()
189 VERBOSE("SCMI power domain protocol version 0x%x detected\n", version); in scmi_init()
[all …]
/rk3399_ARM-atf/include/lib/psa/
H A Dmeasured_boot.h23 * version Pointer to version buffer.
24 * version_size Size of the version string in bytes.
53 const uint8_t *version,
71 * version Pointer to version buffer.
72 * version_size Size of the version buffer in bytes.
74 * version.
99 uint8_t *version,
/rk3399_ARM-atf/plat/arm/board/morello/fdts/
H A Dmorello_nt_fw_config.dts28 * 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";
/rk3399_ARM-atf/lib/libfdt/
H A Dfdt.h18 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 */
H A Dmeson.build1 version_script = '-Wl,--version-script=@0@'.format(meson.current_source_dir() / 'version.lds')
31 version: meson.project_version(),
33 link_depends: 'version.lds',
62 version: meson.project_version(),
/rk3399_ARM-atf/plat/arm/board/morello/
H A Dmorello_image_load.c41 * firmware-version {
43 * mcc-fw-version = <0x0>;
44 * pcc-fw-version = <0x0>;
46 * scp-fw-version = <0x0>;
48 * tfa-fw-version = "unknown-dirty_00000000";
81 nodeoffset_fw = fdt_subnode_offset(fdt, 0, "firmware-version"); in plat_morello_append_config_node()
83 ERROR("NT_FW_CONFIG: Failed to get firmware-version node offset\n"); in plat_morello_append_config_node()
120 err = fdt_setprop_u32(fdt, nodeoffset_fw, "mcc-fw-version", in plat_morello_append_config_node()
123 ERROR("NT_FW_CONFIG: Failed to set mcc-fw-version\n"); in plat_morello_append_config_node()
127 err = fdt_setprop_u32(fdt, nodeoffset_fw, "pcc-fw-version", in plat_morello_append_config_node()
[all …]
/rk3399_ARM-atf/lib/psa/
H A Dmeasured_boot.c42 const uint8_t *version, /* string */ in log_measurement() argument
55 INFO(" - version : %s\n", version); in log_measurement()
69 const uint8_t *version, in rse_measured_boot_extend_measurement() argument
91 if (version_size > 0 && version[version_size - 1] == '\0') { in rse_measured_boot_extend_measurement()
99 {.base = version, .len = version_size }, in rse_measured_boot_extend_measurement()
114 version, version_size, sw_type, sw_type_size, in rse_measured_boot_extend_measurement()
128 uint8_t *version, in rse_measured_boot_read_measurement() argument
171 memcpy(version, read_iov_out.version, read_iov_out.version_len); in rse_measured_boot_read_measurement()
/rk3399_ARM-atf/plat/ti/k3low/common/
H A Dam62l_bl31_setup.c29 struct ti_sci_msg_version version; in ti_soc_init() local
40 ret = ti_sci_get_revision(&version); in ti_soc_init()
47 version.abi_major, version.abi_minor, in ti_soc_init()
48 version.firmware_revision, in ti_soc_init()
49 version.firmware_description); in ti_soc_init()
/rk3399_ARM-atf/plat/arm/board/neoverse_rd/common/include/
H A Dnrd_variant.h10 /* SID Version values for RD-N2 */
13 /* SID Version values for RD-N2 variants */
17 /* SID Version values for RD-V2 */
21 /* SID Version values for RD-V3 */
25 /* SID Version values for RD-V3 variants */
/rk3399_ARM-atf/drivers/arm/ethosn/
H A Dethosn_big_fw.c14 /* 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()
/rk3399_ARM-atf/plat/imx/imx9/common/scmi/
H A Dscmi_client.c45 uint32_t version; in scmi_ap_core_init() local
48 ret = scmi_proto_version(ch, SCMI_CORE_PROTO_ID, &version); in scmi_ap_core_init()
50 WARN("SCMI AP core protocol version message failed\n"); in scmi_ap_core_init()
54 INFO("SCMI AP core protocol version 0x%x detected\n", version); in scmi_ap_core_init()
/rk3399_ARM-atf/plat/amlogic/common/
H A Daml_sip_svc.c17 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()
/rk3399_ARM-atf/docs/plat/arm/fvp/
H A Dfvp-support.rst15 The latest version of the AArch64 build of TF-A has been tested on the following
20 The FVP models used are version 11.28 Build 23.
53 The latest version of the AArch32 build of TF-A has been tested on the
71 with the ``--version`` parameter.
81 The software will not work on Version 1.0 of the Foundation FVP.
90 Since FVP model Version 11.0 Build 11.0.34 and Version 8.5 Build 0.8.5202
/rk3399_ARM-atf/plat/st/stm32mp2/include/
H A Dboot_api.h88 /* 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
/rk3399_ARM-atf/include/lib/extensions/
H A Dras.h42 .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()
/rk3399_ARM-atf/plat/socionext/synquacer/drivers/scp/
H A Dsq_scmi.c205 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()
/rk3399_ARM-atf/tools/cot_dt2c/
H A Dpoetry.lock5 version = "8.1.8"
16 colorama = {version = "*", markers = "platform_system == \"Windows\""}
20 version = "0.4.6"
33 version = "1.2.2"
49 version = "0.11.8"
110 version = "2.0.0"
122 version = "0.910"
164 version = "0.4.4"
175 version = "24.1"
187 version = "5.24.1"
[all …]
H A D.gitignore92 # .python-version
95 # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
102 # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105 # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
109 # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
112 # in version control.
/rk3399_ARM-atf/make_helpers/
H A Darch_features.mk8 # and enables them based on the configured architecture version.
11 # - Enable mandatory feature if not updated, as applicable to an Arch Version.
21 # Enable the features which are mandatory from ARCH version 8.1 and upwards.
28 # Enable the features which are mandatory from ARCH version 8.2 and upwards.
37 # Enable the features which are mandatory from ARCH version 8.3 and upwards.
45 # Enable the features which are mandatory from ARCH version 8.4 and upwards.
54 # Enable the features which are mandatory from ARCH version 8.5 and upwards.
63 # Enable the features which are mandatory from ARCH version 8.6 and upwards.
71 # Enable the features which are mandatory from ARCH version 8.7 and upwards.
79 # Enable the features which are mandatory from ARCH version 8.8 and upwards.
[all …]
/rk3399_ARM-atf/include/export/common/
H A Dparam_header_exp.h23 /* Param header version */
30 * This structure provides version information and the size of the
35 uint8_t version; /* version of this structure */ member

12345678910>>...19