Home
last modified time | relevance | path

Searched refs:path (Results 1 – 25 of 64) sorted by relevance

123

/tf-a-ffa_el3_spmc/plat/arm/board/fvp/
A Dfvp_io_storage.c46 .path = BL2_IMAGE_NAME,
50 .path = BL31_IMAGE_NAME,
54 .path = BL32_IMAGE_NAME,
58 .path = BL33_IMAGE_NAME,
62 .path = TB_FW_CONFIG_NAME,
66 .path = SOC_FW_CONFIG_NAME,
70 .path = TOS_FW_CONFIG_NAME,
74 .path = NT_FW_CONFIG_NAME,
78 .path = FW_CONFIG_NAME,
82 .path = HW_CONFIG_NAME,
[all …]
/tf-a-ffa_el3_spmc/tools/sptool/
A Dsp_mk_generator.py57 json_file = os.path.abspath(sys.argv[2])
58 json_dir = os.path.dirname(json_file)
59 gen_file = os.path.abspath(sys.argv[1])
60 out_dir = os.path.abspath(sys.argv[3])
98 dts = os.path.join(json_dir, data[key]['pm'])
99 dtb = dtb_dir + os.path.basename(data[key]['pm'][:-1] + "b")
A Dsptool.c158 FILE *f = fopen(path, "rb"); in load_file()
160 fprintf(stderr, "error: %s couldn't be opened.\n", path); in load_file()
167 fprintf(stderr, "error: Size of %s is 0\n", path); in load_file()
175 fprintf(stderr, "error: Not enough memory to load %s\n", path); in load_file()
180 fprintf(stderr, "error: Couldn't read %s\n", path); in load_file()
191 static void load_sp_pm(char *path, struct sp_pkg_info **sp_out) in load_sp_pm() argument
195 char *split_mark = strstr(path, ":"); in load_sp_pm()
199 char *sp_path = path; in load_sp_pm()
222 FILE *f = fopen(path, "wb"); in output_write()
224 fprintf(stderr, "error: Failed to open %s\n", path); in output_write()
[all …]
/tf-a-ffa_el3_spmc/plat/qemu/common/
A Dqemu_io_storage.c121 .path = BL2_IMAGE_NAME,
125 .path = BL31_IMAGE_NAME,
129 .path = BL32_IMAGE_NAME,
133 .path = BL32_EXTRA1_IMAGE_NAME,
137 .path = BL32_EXTRA2_IMAGE_NAME,
141 .path = BL33_IMAGE_NAME,
150 .path = TRUSTED_KEY_CERT_NAME,
154 .path = SOC_FW_KEY_CERT_NAME,
158 .path = TOS_FW_KEY_CERT_NAME,
162 .path = NT_FW_KEY_CERT_NAME,
[all …]
/tf-a-ffa_el3_spmc/lib/libfdt/
A Dfdt_overlay.c62 const char *path = NULL; in overlay_get_target() local
74 if (path) in overlay_get_target()
97 *pathp = path ? path : NULL; in overlay_get_target()
460 path = fixup_str; in overlay_fixup_phandle()
465 path_len = sep - path; in overlay_fixup_phandle()
700 const char *path; in overlay_symbol_update() local
727 if (!path) in overlay_symbol_update()
731 if (path_len < 1 || memchr(path, '\0', path_len) != &path[path_len - 1]) in overlay_symbol_update()
735 e = path + path_len; in overlay_symbol_update()
737 if (*path != '/') in overlay_symbol_update()
[all …]
A Dfdt_ro.c250 int fdt_path_offset_namelen(const void *fdt, const char *path, int namelen) in fdt_path_offset_namelen() argument
252 const char *end = path + namelen; in fdt_path_offset_namelen()
253 const char *p = path; in fdt_path_offset_namelen()
259 if (*path != '/') { in fdt_path_offset_namelen()
260 const char *q = memchr(path, '/', end - p); in fdt_path_offset_namelen()
295 int fdt_path_offset(const void *fdt, const char *path) in fdt_path_offset() argument
297 return fdt_path_offset_namelen(fdt, path, strlen(path)); in fdt_path_offset()
/tf-a-ffa_el3_spmc/docs/plat/arm/fvp/
A Dindex.rst206 -C bp.flashloader1.fname="<path-to>/<el3-payload>"
216 load <path-to>/el3-payload.elf
262 KERNEL_DTB=<path-to>/<fdt>
264 PATCHED_KERNEL_DTB=<path-to>/<patched-fdt>
268 INITRD=<path-to>/<ramdisk.img>
380 <path-to>/Foundation_Platform \
386 --data="<path-to>/<bl1-binary>"@0x0 \
387 --data="<path-to>/<FIP-binary>"@0x08000000 \
388 --data="<path-to>/<kernel-binary>"@0x80080000 \
389 --data="<path-to>/<ramdisk-binary>"@0x84000000
[all …]
/tf-a-ffa_el3_spmc/lib/debugfs/
A Ddev.c100 while (*path == '/') { in next()
101 ++path; in next()
105 cursor = path; in next()
106 if (*path != '\0') { in next()
266 if (path == NULL) { in path_to_channel()
270 switch (path[0]) { in path_to_channel()
273 path_next = path; in path_to_channel()
276 path_next = next(path + 1, elem); in path_to_channel()
480 if (path == NULL) { in open()
573 len = strlen(path); in stat()
[all …]
A Ddebugfs_smc.c46 char path[MAX_PATH_LEN]; member
173 ret = stat(parms.stat.path, &parms.stat.dir); in debugfs_smc_handler()
/tf-a-ffa_el3_spmc/docs/plat/arm/diphda/
A Dindex.rst39 BUILD_BASE=<path to the build folder> \
45 OPENSSL_DIR=<path to openssl usr folder> \
46 RUNTIME_SYSROOT=<path to the sysroot> \
57 BL32=<path to optee binary> \
58 BL33=<path to u-boot binary> \
/tf-a-ffa_el3_spmc/docs/resources/diagrams/plantuml/
A Dfip-secure-partitions.puml51 path to sp_binary_1
52 path to sp_manifest_1
54 path to sp_binary_2
55 path to sp_manifest_2
/tf-a-ffa_el3_spmc/tools/fiptool/
A Dwin_posix.h126 inline int access(const char *path, int mode) in access() argument
128 return _access(path, mode); in access()
/tf-a-ffa_el3_spmc/docs/getting_started/
A Dinitial-build.rst11 export CROSS_COMPILE=<path-to-aarch64-gcc>/bin/aarch64-none-elf-
17 export CROSS_COMPILE=<path-to-aarch32-gcc>/bin/arm-none-eabi-
29 Arm Compiler 6 will be selected when the base name of the path assigned
36 export CROSS_COMPILE=<path-to-aarch64-gcc>/bin/aarch64-none-elf-
37 make CC=<path-to-armclang>/bin/armclang PLAT=<platform> all
39 Clang will be selected when the base name of the path assigned to ``CC``
47 export CROSS_COMPILE=<path-to-aarch64-gcc>/bin/aarch64-none-elf-
48 make CC=<path-to-clang>/bin/clang PLAT=<platform> all
/tf-a-ffa_el3_spmc/docs/plat/
A Dti-k3.rst43 make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- SYSFW=<path to SYSFW>
50 make ARCH=arm CROSS_COMPILE=aarch64-linux-gnu- ATF=<path> TEE=<path>
A Dwarp7.rst61 It is also assumed copy of mbedtls is available on the path path ../mbedtls
68 cp /path/to/optee/out/arm-plat-imx/core/tee-header_v2.bin fiptool_images
69 cp /path/to/optee/out/arm-plat-imx/core/tee-pager_v2.bin fiptool_images
70 cp /path/to/optee/out/arm-plat-imx/core/tee-pageable_v2.bin fiptool_images
80 …/path/to/u-boot/tools/mkimage -n /path/to/u-boot/u-boot.cfgout -T imximage -e 0x9df00000 -d ./buil…
87 cp /path/to/uboot/u-boot.bin fiptool_images
88 cp /path/to/linux/arch/boot/dts/imx7s-warp.dtb fiptool_images
168 CST_PATH=/path/to/cst-2.3.2
176 …/path/to/u-boot/tools/mkimage -n u-boot.cfgout.warp7 -T imximage -e 0x9df00000 -d ./build/warp7/de…
A Dsocionext-uniphier.rst69 make CROSS_COMPILE=<gcc-prefix> PLAT=uniphier BL33=<path-to-BL33> bl2_gzip fip
88 TRUSTED_BOARD_BOOT=1 GENERATE_COT=1 MBEDTLS_DIR=<path-to-mbedtls>
98 SCP_BL2=<path-to-SCP>
104 SPD=<spd> BL32=<path-to-BL32>
106 If you use TSP for BL32, ``BL32=<path-to-BL32>`` is not required. Just add the
/tf-a-ffa_el3_spmc/docs/design/
A Dtrusted-board-boot-build.rst31 - ``MBEDTLS_DIR=<path of the directory containing mbed TLS sources>``
62 MBEDTLS_DIR=<path of the directory containing mbed TLS sources> \
66 BL33=<path-to>/<bl33_image> \
86 MBEDTLS_DIR=<path of the directory containing mbed TLS sources> \
90 BL33=<path-to>/<bl33_image> \
91 SCP_BL2=<path-to>/<scp_bl2_image> \
92 SCP_BL2U=<path-to>/<scp_bl2u_image> \
93 NS_BL2U=<path-to>/<ns_bl2u_image> \
98 The user may override this by adding ``BL2U=<path-to>/<bl2u_image>``
/tf-a-ffa_el3_spmc/include/lib/
A Ddebugfs.h54 int bind(const char *path, const char *where);
55 int stat(const char *path, dir_t *dir);
/tf-a-ffa_el3_spmc/plat/arm/board/fvp/fconf/
A Dfconf_hw_config_getter.c182 const char *path; in fconf_populate_uart_config() local
196 path = fdt_get_alias(hw_config_dtb, "serial1"); in fconf_populate_uart_config()
197 if (path == NULL) { in fconf_populate_uart_config()
203 uart_node = fdt_path_offset(hw_config_dtb, path); in fconf_populate_uart_config()
/tf-a-ffa_el3_spmc/tools/memory/
A Dprint_memory_map.py45 file_path = os.path.join(build_dir, image, '{}.map'.format(image))
46 if os.path.isfile(file_path):
/tf-a-ffa_el3_spmc/common/
A Dfdt_wrappers.c341 const char *prop, *path; in fdt_get_stdout_node_offset() local
359 path = strchr(prop, ':'); in fdt_get_stdout_node_offset()
360 if (path == NULL) { in fdt_get_stdout_node_offset()
363 len = path - prop; in fdt_get_stdout_node_offset()
372 path = fdt_get_alias_namelen(dtb, prop, len); in fdt_get_stdout_node_offset()
373 if (path == NULL) { in fdt_get_stdout_node_offset()
377 return fdt_path_offset(dtb, path); in fdt_get_stdout_node_offset()
/tf-a-ffa_el3_spmc/lib/romlib/
A Dromlib_generator.py38 parent = os.path.normpath(parent)
50 file_name = os.path.normpath(file_name)
71 included_file = os.path.normpath(line_elements[1])
89 TEMPLATE_DIR = os.path.dirname(os.path.realpath(__file__)) + "/templates/"
/tf-a-ffa_el3_spmc/docs/plat/marvell/armada/
A Dbuild.rst12 > export CROSS_COMPILE=/path/to/toolchain/aarch64-linux-gnu-
14 (2) Set path for FIP images:
16 Set U-Boot image path (relatively to TF-A root or absolute path)
20 > export BL33=path/to/u-boot.bin
29 Set MSS/SCP image path (mandatory only for A7K/8K/CN913x when MSS_SUPPORT=1)
33 > export SCP_BL2=path/to/mrvl_scp_bl2*.img
113 Specify path to the full checkout of Marvell mv-ddr-marvell git
240 The path of the binary can point to an image which
263 Specify path to the full checkout of Marvell A3700-utils-marvell git
307 MV_DDR_PATH=/path/to/mv-ddr-marvell/ WTP=/path/to/A3700-utils-marvell/ \
[all …]
/tf-a-ffa_el3_spmc/fdts/
A Dstm32mp157a-dk1.dts25 stdout-path = "serial0:115200n8";
A Dstm32mp157c-dk2.dts27 stdout-path = "serial0:115200n8";

Completed in 36 milliseconds

123