Home
last modified time | relevance | path

Searched refs:image_handle (Results 1 – 4 of 4) sorted by relevance

/rk3399_ARM-atf/drivers/partition/
H A Dpartition.c49 static int load_mbr_header(uintptr_t image_handle, mbr_entry_t *mbr_entry) in load_mbr_header() argument
57 result = io_seek(image_handle, IO_SEEK_SET, MBR_OFFSET); in load_mbr_header()
62 result = io_read(image_handle, (uintptr_t)&mbr_sector, in load_mbr_header()
91 static int load_gpt_header(uintptr_t image_handle, size_t header_offset, in load_gpt_header() argument
98 result = io_seek(image_handle, IO_SEEK_SET, header_offset); in load_gpt_header()
104 result = io_read(image_handle, (uintptr_t)header, in load_gpt_header()
147 static int load_mbr_entry(uintptr_t image_handle, mbr_entry_t *mbr_entry, in load_mbr_entry() argument
156 result = io_seek(image_handle, IO_SEEK_SET, MBR_OFFSET); in load_mbr_entry()
161 result = io_read(image_handle, (uintptr_t)&mbr_sector, in load_mbr_entry()
185 static int load_mbr_entries(uintptr_t image_handle) in load_mbr_entries() argument
[all …]
/rk3399_ARM-atf/docs/resources/diagrams/plantuml/
H A Dio_framework_usage_overview.puml36 bl_common -> io_storage : io_open(dev_handle, image_spec, &image_handle)
38 bl_common <-- io_storage : image_handle
39 bl_common -> io_storage : io_size(image_handle, &image_size)
41 bl_common -> io_storage : io_read(image_handle, image_base, image_size, &bytes_read)
43 bl_common -> io_storage : io_close(image_handle)
/rk3399_ARM-atf/common/
H A Dbl_common.c76 uintptr_t image_handle = 0ULL; in load_image() local
97 io_result = io_open(dev_handle, image_spec, &image_handle); in load_image()
107 io_result = io_size(image_handle, &image_size); in load_image()
135 io_result = io_read(image_handle, image_base, image_size, &bytes_read); in load_image()
145 (void)io_close(image_handle); in load_image()
/rk3399_ARM-atf/drivers/fwu/
H A Dfwu.c127 uintptr_t dev_handle, image_handle, image_spec; in fwu_metadata_load() local
142 result = io_open(dev_handle, image_spec, &image_handle); in fwu_metadata_load()
149 result = io_read(image_handle, (uintptr_t)&metadata, in fwu_metadata_load()
179 (void)io_close(image_handle); in fwu_metadata_load()