Home
last modified time | relevance | path

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

1234

/arm-trusted-firmware-2.8.0/plat/mediatek/lib/mtk_init/
A Dmtk_init.c21 const struct initcall *entry; in mtk_init_one_level() local
30 for (entry = initcall_list[level]; in mtk_init_one_level()
31 (entry != NULL) && (entry < initcall_list[level + 1]); in mtk_init_one_level()
32 entry++) { in mtk_init_one_level()
33 INFO("calling %s\n", entry->name); in mtk_init_one_level()
34 error = entry->fn(); in mtk_init_one_level()
36 ERROR("init %s fail, errno:%d\n", entry->name, error); in mtk_init_one_level()
/arm-trusted-firmware-2.8.0/drivers/partition/
A Dgpt.c41 int parse_gpt_entry(gpt_entry_t *gpt_entry, partition_entry_t *entry) in parse_gpt_entry() argument
45 assert((gpt_entry != NULL) && (entry != NULL)); in parse_gpt_entry()
51 zeromem(entry, sizeof(partition_entry_t)); in parse_gpt_entry()
52 result = unicode_to_ascii(gpt_entry->name, (uint8_t *)entry->name); in parse_gpt_entry()
56 entry->start = (uint64_t)gpt_entry->first_lba * in parse_gpt_entry()
58 entry->length = (uint64_t)(gpt_entry->last_lba - in parse_gpt_entry()
61 guidcpy(&entry->part_guid, &gpt_entry->unique_uuid); in parse_gpt_entry()
62 guidcpy(&entry->type_guid, &gpt_entry->type_uuid); in parse_gpt_entry()
A Dpartition.c180 static int load_gpt_entry(uintptr_t image_handle, gpt_entry_t *entry) in load_gpt_entry() argument
185 assert(entry != NULL); in load_gpt_entry()
186 result = io_read(image_handle, (uintptr_t)entry, sizeof(gpt_entry_t), in load_gpt_entry()
195 gpt_entry_t entry; in verify_partition_gpt() local
199 result = load_gpt_entry(image_handle, &entry); in verify_partition_gpt()
201 result = parse_gpt_entry(&entry, &list.list[i]); in verify_partition_gpt()
/arm-trusted-firmware-2.8.0/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 …]
/arm-trusted-firmware-2.8.0/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()
/arm-trusted-firmware-2.8.0/lib/xlat_tables_v2/
A Dxlat_tables_utils.c349 uint64_t *entry; in xlat_get_mem_attributes_internal() local
371 if (entry == NULL) { in xlat_get_mem_attributes_internal()
381 *table_entry = entry; in xlat_get_mem_attributes_internal()
388 desc = *entry; in xlat_get_mem_attributes_internal()
493 const uint64_t *entry; in xlat_change_mem_attributes_ctx() local
502 if (entry == NULL) { in xlat_change_mem_attributes_ctx()
507 desc = *entry; in xlat_change_mem_attributes_ctx()
543 uint64_t *entry = NULL; in xlat_change_mem_attributes_ctx() local
570 *entry = INVALID_DESC; in xlat_change_mem_attributes_ctx()
572 dccvac((uintptr_t)entry); in xlat_change_mem_attributes_ctx()
[all …]
/arm-trusted-firmware-2.8.0/plat/st/common/
A Dbl2_io_storage.c497 const partition_entry_t *entry; in bl2_plat_handle_pre_image_load() local
504 if (entry == NULL) { in bl2_plat_handle_pre_image_load()
506 if (entry == NULL) { in bl2_plat_handle_pre_image_load()
514 image_block_spec.offset = entry->start; in bl2_plat_handle_pre_image_load()
656 const partition_entry_t *entry; in plat_fwu_set_images_source() local
675 if (entry == NULL) { in plat_fwu_set_images_source()
680 image_spec->offset = entry->start; in plat_fwu_set_images_source()
681 image_spec->length = entry->length; in plat_fwu_set_images_source()
694 if (entry == NULL) { in plat_set_image_source()
702 spec->offset = entry->start; in plat_set_image_source()
[all …]
/arm-trusted-firmware-2.8.0/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()
/arm-trusted-firmware-2.8.0/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()
/arm-trusted-firmware-2.8.0/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()
/arm-trusted-firmware-2.8.0/plat/mediatek/drivers/cpu_pm/cpcv3_2/
A Dmt_smp.c38 void mt_smp_core_bootup_address_set(struct cpu_pwr_ctrl *pwr_ctrl, uintptr_t entry) in mt_smp_core_bootup_address_set() argument
43 mmio_write_32(pwr_ctrl->rvbaraddr_l, entry); in mt_smp_core_bootup_address_set()
A Dmt_smp.h22 void mt_smp_core_bootup_address_set(struct cpu_pwr_ctrl *pwr_ctrl, uintptr_t entry);
/arm-trusted-firmware-2.8.0/tools/stm32image/
A Dstm32image.c191 uint32_t loadaddr, uint32_t entry, in stm32image_create_header_file() argument
272 entry, version, major, minor, in stm32image_create_header_file()
288 int entry = -1; in main() local
312 entry = strtol(optarg, NULL, 0); in main()
346 if (entry == -1) { in main()
357 entry, version, major, minor, in main()
/arm-trusted-firmware-2.8.0/plat/hisilicon/hikey960/
A Dhikey960_io_storage.c339 const partition_entry_t *entry; in hikey960_set_fip_addr() local
343 entry = get_partition_entry(name); in hikey960_set_fip_addr()
344 if (entry == NULL) { in hikey960_set_fip_addr()
348 ufs_fip_spec.offset = entry->start; in hikey960_set_fip_addr()
349 ufs_fip_spec.length = entry->length; in hikey960_set_fip_addr()
/arm-trusted-firmware-2.8.0/plat/rockchip/rk3328/include/
A Dplat.ld.S25 *(.pmusram.entry)
/arm-trusted-firmware-2.8.0/plat/rockchip/rk3368/include/
A Dplat.ld.S25 *(.pmusram.entry)
/arm-trusted-firmware-2.8.0/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()
/arm-trusted-firmware-2.8.0/plat/rockchip/px30/include/
A Dplat.ld.S26 KEEP(*(.pmusram.entry))
/arm-trusted-firmware-2.8.0/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>;
/arm-trusted-firmware-2.8.0/include/drivers/partition/
A Dgpt.h50 int parse_gpt_entry(gpt_entry_t *gpt_entry, partition_entry_t *entry);
/arm-trusted-firmware-2.8.0/plat/imx/imx8m/
A Dimx_hab.c64 enum hab_status (*entry)(void); member
96 return g_hab_rvt_api->entry(); in imx_hab_handler()
/arm-trusted-firmware-2.8.0/plat/marvell/armada/a8k/common/ble/
A Dble.ld.S24 *ble_main.o(.entry*)
/arm-trusted-firmware-2.8.0/plat/rockchip/common/aarch64/
A Dpmu_sram_cpus_on.S13 .section .pmusram.entry, "ax"
/arm-trusted-firmware-2.8.0/plat/rockchip/common/aarch32/
A Dpmu_sram_cpus_on.S13 .section .pmusram.entry, "ax"

Completed in 24 milliseconds

1234