1 // SPDX-License-Identifier: GPL-2.0+
3 * K3: Common Architecture initialization
5 * Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com/
6 * Lokesh Vutla <lokeshvutla@ti.com>
13 #include <remoteproc.h>
15 #ifdef CONFIG_SYS_K3_SPL_ATF
16 void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
21 * It is assumed that remoteproc device 1 is the corresponding
22 * cortex A core which runs ATF. Make sure DT reflects the same.
24 ret = rproc_dev_init(1);
26 printf("%s: ATF failed to Initialize on rproc: ret= %d\n",
31 ret = rproc_load(1, spl_image->entry_point, 0x200);
33 printf("%s: ATF failed to load on rproc: ret= %d\n",
38 /* Add an extra newline to differentiate the ATF logs from SPL*/
39 printf("Starting ATF on ARM64 core...\n\n");
43 printf("%s: ATF failed to start on rproc: ret= %d\n",
48 debug("ATF started. Wait indefiniely\n");