Home
last modified time | relevance | path

Searched refs:entry (Results 1 – 25 of 108) sorted by relevance

12345

/trusted-firmware-a/lib/debugfs/
A Ddevfip.c109 if (entry->size == 0) { in get_entry()
124 struct fip_entry entry; in fipgen() local
148 r = get_entry(&nc, &entry); in fipgen()
153 off += sizeof(entry); in fipgen()
158 &entry.uuid, sizeof(uuid_t)) == 0) { in fipgen()
165 entry.size, n, O_READ); in fipgen()
249 struct fip_entry entry; in fipmount() local
289 switch (get_entry(cspec, &entry)) { in fipmount()
295 if ((entry.offset_address + entry.size) > dir.length) { in fipmount()
299 fip->offset[n] = entry.offset_address; in fipmount()
[all …]
/trusted-firmware-a/drivers/partition/
A Dgpt.c40 int parse_gpt_entry(gpt_entry_t *gpt_entry, partition_entry_t *entry) in parse_gpt_entry() argument
44 assert((gpt_entry != NULL) && (entry != NULL)); in parse_gpt_entry()
50 zeromem(entry, sizeof(partition_entry_t)); in parse_gpt_entry()
51 result = unicode_to_ascii(gpt_entry->name, (uint8_t *)entry->name); in parse_gpt_entry()
55 entry->start = (uint64_t)gpt_entry->first_lba * in parse_gpt_entry()
57 entry->length = (uint64_t)(gpt_entry->last_lba - in parse_gpt_entry()
A Dpartition.c160 static int load_gpt_entry(uintptr_t image_handle, gpt_entry_t *entry) in load_gpt_entry() argument
165 assert(entry != NULL); in load_gpt_entry()
166 result = io_read(image_handle, (uintptr_t)entry, sizeof(gpt_entry_t), in load_gpt_entry()
175 gpt_entry_t entry; in verify_partition_gpt() local
179 result = load_gpt_entry(image_handle, &entry); in verify_partition_gpt()
181 result = parse_gpt_entry(&entry, &list.list[i]); in verify_partition_gpt()
/trusted-firmware-a/lib/coreboot/
A Dcoreboot_table.c125 cb_entry_t *entry = ptr; in coreboot_table_setup() local
132 switch (read_le32(&entry->tag)) { in coreboot_table_setup()
134 size = read_le32(&entry->size) - in coreboot_table_setup()
140 memcpy(&coreboot_memranges, &entry->memranges, size); in coreboot_table_setup()
143 memcpy(&coreboot_serial, &entry->serial, in coreboot_table_setup()
147 setup_cbmem_console(read_le64(&entry->uint64)); in coreboot_table_setup()
154 ptr += read_le32(&entry->size); in coreboot_table_setup()
/trusted-firmware-a/lib/xlat_tables_v2/
A Dxlat_tables_utils.c348 uint64_t *entry; in xlat_get_mem_attributes_internal() local
370 if (entry == NULL) { in xlat_get_mem_attributes_internal()
380 *table_entry = entry; in xlat_get_mem_attributes_internal()
387 desc = *entry; in xlat_get_mem_attributes_internal()
492 const uint64_t *entry; in xlat_change_mem_attributes_ctx() local
501 if (entry == NULL) { in xlat_change_mem_attributes_ctx()
506 desc = *entry; in xlat_change_mem_attributes_ctx()
542 uint64_t *entry = NULL; in xlat_change_mem_attributes_ctx() local
569 *entry = INVALID_DESC; in xlat_change_mem_attributes_ctx()
571 dccvac((uintptr_t)entry); in xlat_change_mem_attributes_ctx()
[all …]
/trusted-firmware-a/drivers/io/
A Dio_fip.c38 fip_toc_entry_t entry; member
303 if (current_fip_file.entry.offset_address != 0U) { in fip_file_open()
329 (uintptr_t)&current_fip_file.entry, in fip_file_open()
330 sizeof(current_fip_file.entry), in fip_file_open()
333 if (compare_uuids(&current_fip_file.entry.uuid, in fip_file_open()
342 (compare_uuids(&current_fip_file.entry.uuid, in fip_file_open()
354 current_fip_file.entry.offset_address = 0; in fip_file_open()
372 *length = ((fip_file_state_t *)entity->info)->entry.size; in fip_file_len()
404 file_offset = fp->entry.offset_address + fp->file_pos; in fip_file_read()
440 if (current_fip_file.entry.offset_address != 0U) { in fip_file_close()
/trusted-firmware-a/tools/stm32image/
A Dstm32image.c124 uint32_t loadaddr, uint32_t entry, in stm32image_create_header_file() argument
187 stm32image_set_header(ptr, &sbuf, dest_fd, loadaddr, entry, version, in stm32image_create_header_file()
199 int opt, loadaddr = -1, entry = -1, err = 0, version = 0; in main() local
216 entry = strtol(optarg, NULL, 0); in main()
250 if (entry == -1) { in main()
256 entry, version, major, minor); in main()
/trusted-firmware-a/plat/hisilicon/hikey/
A Dhikey_io_storage.c281 const partition_entry_t *entry; in hikey_set_fip_addr() local
285 entry = get_partition_entry(name); in hikey_set_fip_addr()
286 if (entry == NULL) { in hikey_set_fip_addr()
290 emmc_fip_spec.offset = entry->start; in hikey_set_fip_addr()
291 emmc_fip_spec.length = entry->length; in hikey_set_fip_addr()
/trusted-firmware-a/plat/arm/common/
A Darm_io_storage.c165 const partition_entry_t *entry = get_partition_entry(part_name); in arm_set_image_source() local
167 if (entry == NULL) { in arm_set_image_source()
181 spec->offset = PLAT_ARM_FLASH_IMAGE_BASE + entry->start; in arm_set_image_source()
182 spec->length = entry->length; in arm_set_image_source()
/trusted-firmware-a/plat/hisilicon/hikey960/
A Dhikey960_io_storage.c267 const partition_entry_t *entry; in hikey960_set_fip_addr() local
271 entry = get_partition_entry(name); in hikey960_set_fip_addr()
272 if (entry == NULL) { in hikey960_set_fip_addr()
276 ufs_fip_spec.offset = entry->start; in hikey960_set_fip_addr()
277 ufs_fip_spec.length = entry->length; in hikey960_set_fip_addr()
/trusted-firmware-a/plat/st/common/
A Dbl2_io_storage.c362 const partition_entry_t *entry; in bl2_plat_handle_pre_image_load() local
365 entry = get_partition_entry(FIP_IMAGE_NAME); in bl2_plat_handle_pre_image_load()
366 if (entry == NULL) { in bl2_plat_handle_pre_image_load()
372 image_block_spec.offset = entry->start; in bl2_plat_handle_pre_image_load()
373 image_block_spec.length = entry->length; in bl2_plat_handle_pre_image_load()
/trusted-firmware-a/drivers/fwu/
A Dfwu.c148 struct fwu_image_entry *entry = &metadata.img_entry[i]; in fwu_is_trial_run_state() local
150 &entry->img_props[metadata.active_index]; in fwu_is_trial_run_state()
/trusted-firmware-a/fdts/
A Dfvp-foundation-gicv2-psci.dts56 entry-method = "arm,psci";
62 entry-latency-us = <40>;
71 entry-latency-us = <500>;
A Dfvp-foundation-gicv3-psci.dts56 entry-method = "arm,psci";
62 entry-latency-us = <40>;
71 entry-latency-us = <500>;
A Dfvp-base-gicv2-psci.dts55 entry-method = "arm,psci";
61 entry-latency-us = <40>;
70 entry-latency-us = <500>;
A Dfvp-base-gicv2-psci-aarch32.dts56 entry-method = "arm,psci";
62 entry-latency-us = <40>;
71 entry-latency-us = <500>;
A Dfvp-base-gicv3-psci-aarch32-common.dtsi48 entry-method = "arm,psci";
54 entry-latency-us = <40>;
63 entry-latency-us = <500>;
A Dfvp-base-gicv3-psci-common.dtsi112 entry-method = "arm,psci";
118 entry-latency-us = <40>;
127 entry-latency-us = <500>;
/trusted-firmware-a/plat/rockchip/rk3328/include/
A Dplat.ld.S25 *(.pmusram.entry)
/trusted-firmware-a/plat/rockchip/rk3368/include/
A Dplat.ld.S25 *(.pmusram.entry)
/trusted-firmware-a/plat/rockchip/px30/include/
A Dplat.ld.S26 KEEP(*(.pmusram.entry))
/trusted-firmware-a/include/drivers/partition/
A Dgpt.h49 int parse_gpt_entry(gpt_entry_t *gpt_entry, partition_entry_t *entry);
/trusted-firmware-a/plat/marvell/armada/a8k/common/ble/
A Dble.ld.S24 *ble_main.o(.entry*)
/trusted-firmware-a/plat/rockchip/common/aarch64/
A Dpmu_sram_cpus_on.S13 .section .pmusram.entry, "ax"
/trusted-firmware-a/plat/rockchip/common/aarch32/
A Dpmu_sram_cpus_on.S13 .section .pmusram.entry, "ax"

Completed in 23 milliseconds

12345