Lines Matching refs:uintptr_t
43 static uintptr_t fip_dev_handle;
44 static uintptr_t boot_dev_handle;
58 uintptr_t a2_lba_offset;
66 static int check_fip(const uintptr_t spec);
67 static int check_dev(const uintptr_t spec);
78 uintptr_t *dev_handle;
79 uintptr_t image_spec;
80 int (*check)(const uintptr_t spec);
86 (uintptr_t)&fip_spec,
91 (uintptr_t)&bl2_uuid_spec,
96 (uintptr_t)&bl31_uuid_spec,
101 (uintptr_t) &bl33_uuid_spec,
106 (uintptr_t) &gpt_block_spec,
111 static int check_dev(const uintptr_t spec) in check_dev()
114 uintptr_t local_handle; in check_dev()
116 result = io_dev_init(boot_dev_handle, (uintptr_t)NULL); in check_dev()
125 static int check_fip(const uintptr_t spec) in check_fip()
128 uintptr_t local_image_handle; in check_fip()
130 result = io_dev_init(fip_dev_handle, (uintptr_t)FIP_IMAGE_ID); in check_fip()
181 result = io_dev_open(boot_dev_con, (uintptr_t)&nand_dev_spec, in socfpga_io_setup()
184 result = io_dev_open(boot_dev_con, (uintptr_t)&boot_dev_spec, in socfpga_io_setup()
189 result = io_dev_open(fip_dev_con, (uintptr_t)NULL, &fip_dev_handle); in socfpga_io_setup()
200 int plat_get_image_source(unsigned int image_id, uintptr_t *dev_handle, in plat_get_image_source()
201 uintptr_t *image_spec) in plat_get_image_source()