Lines Matching defs:image
104 int css_scp_boot_image_xfer(void *image, unsigned int image_size)
111 assert((uintptr_t) image == SCP_BL2_BASE);
114 ERROR("Invalid size for the SCP_BL2 image. Must be a multiple of "
120 /* Extract the checksum from the image */
121 checksum = *(uint32_t *) image;
122 image = (char *) image + sizeof(checksum);
127 VERBOSE("Send info about the SCP_BL2 image to be transferred to SCP\n");
130 * Send information about the SCP firmware image about to be transferred
167 VERBOSE("Transferring SCP_BL2 image to SCP\n");
169 /* Transfer SCP_BL2 image to SCP */
174 cmd_data_payload->offset = (uintptr_t) image - ARM_TRUSTED_SRAM_BASE;