Lines Matching defs:dst
50 uintptr_t dst;
205 void rcar_read_certificate(uint64_t cert, uint32_t *len, uintptr_t *dst)
221 *dst = 0;
228 *dst = 0;
250 *dst = ((uintptr_t) mmio_read_32(dsth) << 32) +
259 *dst = ((uintptr_t) mmio_read_32(dsth) << 32) +
263 static int32_t check_load_area(uintptr_t dst, uintptr_t len)
265 uint32_t legacy = dst + len <= UINT32_MAX - 1 ? 1 : 0;
279 if (dst < dram_start || dst > dram_end - len) {
280 ERROR("BL2: dst address is on the protected area.\n");
286 if (dst >= prot_start && dst < prot_end) {
287 ERROR("BL2: dst address is on the protected area.\n");
291 if (dst < prot_start && dst > prot_start - len) {
297 ERROR("BL2: Out of range : dst=0x%lx len=0x%lx\n", dst, len);
306 uintptr_t dst, partition, handle;
335 rcar_read_certificate((uint64_t) cert, &len, &dst);
352 rc = check_load_area(dst, len);
359 rc = io_read(handle, dst, len, &cnt);
366 rc = auth_mod_verify_img(img[i], (void *)dst, len);
368 memset((void *)dst, 0x00, len);
484 uintptr_t partition, offset, dst;
508 current_file.dst = 0;
518 rcar_read_certificate((uint64_t) cert, &len, &dst);
532 current_file.dst = dst;