xref: /rk3399_ARM-atf/plat/arm/css/common/css_bl2_setup.c (revision 53d9c9c85bc49845c4c40315e1ab29d627a1f8c3)
1b4315306SDan Handley /*
2308d359bSDouglas Raillard  * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
3b4315306SDan Handley  *
4b4315306SDan Handley  * Redistribution and use in source and binary forms, with or without
5b4315306SDan Handley  * modification, are permitted provided that the following conditions are met:
6b4315306SDan Handley  *
7b4315306SDan Handley  * Redistributions of source code must retain the above copyright notice, this
8b4315306SDan Handley  * list of conditions and the following disclaimer.
9b4315306SDan Handley  *
10b4315306SDan Handley  * Redistributions in binary form must reproduce the above copyright notice,
11b4315306SDan Handley  * this list of conditions and the following disclaimer in the documentation
12b4315306SDan Handley  * and/or other materials provided with the distribution.
13b4315306SDan Handley  *
14b4315306SDan Handley  * Neither the name of ARM nor the names of its contributors may be used
15b4315306SDan Handley  * to endorse or promote products derived from this software without specific
16b4315306SDan Handley  * prior written permission.
17b4315306SDan Handley  *
18b4315306SDan Handley  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19b4315306SDan Handley  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20b4315306SDan Handley  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21b4315306SDan Handley  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22b4315306SDan Handley  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23b4315306SDan Handley  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24b4315306SDan Handley  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25b4315306SDan Handley  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26b4315306SDan Handley  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27b4315306SDan Handley  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28b4315306SDan Handley  * POSSIBILITY OF SUCH DAMAGE.
29b4315306SDan Handley  */
30b4315306SDan Handley 
31b4315306SDan Handley #include <bl_common.h>
324c117f6cSSandrine Bailleux #include <css_def.h>
33b4315306SDan Handley #include <debug.h>
344c117f6cSSandrine Bailleux #include <mmio.h>
354c117f6cSSandrine Bailleux #include <plat_arm.h>
364c117f6cSSandrine Bailleux #include <string.h>
37*53d9c9c8SScott Branden #include <utils.h>
38b4315306SDan Handley #include "css_scp_bootloader.h"
39b4315306SDan Handley 
40b4315306SDan Handley /* Weak definition may be overridden in specific CSS based platform */
41a8aa7fecSYatharth Kochar #if LOAD_IMAGE_V2
42a8aa7fecSYatharth Kochar #pragma weak plat_arm_bl2_handle_scp_bl2
43a8aa7fecSYatharth Kochar #else
44f59821d5SJuan Castillo #pragma weak bl2_plat_handle_scp_bl2
45a8aa7fecSYatharth Kochar #endif
46b4315306SDan Handley 
47b4315306SDan Handley /*******************************************************************************
48f59821d5SJuan Castillo  * Transfer SCP_BL2 from Trusted RAM using the SCP Download protocol.
49b4315306SDan Handley  * Return 0 on success, -1 otherwise.
50b4315306SDan Handley  ******************************************************************************/
51a8aa7fecSYatharth Kochar #if LOAD_IMAGE_V2
52a8aa7fecSYatharth Kochar int plat_arm_bl2_handle_scp_bl2(image_info_t *scp_bl2_image_info)
53a8aa7fecSYatharth Kochar #else
54f59821d5SJuan Castillo int bl2_plat_handle_scp_bl2(image_info_t *scp_bl2_image_info)
55a8aa7fecSYatharth Kochar #endif
56b4315306SDan Handley {
57b4315306SDan Handley 	int ret;
58b4315306SDan Handley 
59f59821d5SJuan Castillo 	INFO("BL2: Initiating SCP_BL2 transfer to SCP\n");
60e234ba03SSandrine Bailleux 
61f59821d5SJuan Castillo 	ret = scp_bootloader_transfer((void *)scp_bl2_image_info->image_base,
62f59821d5SJuan Castillo 		scp_bl2_image_info->image_size);
63b4315306SDan Handley 
64b4315306SDan Handley 	if (ret == 0)
65f59821d5SJuan Castillo 		INFO("BL2: SCP_BL2 transferred to SCP\n");
66b4315306SDan Handley 	else
67f59821d5SJuan Castillo 		ERROR("BL2: SCP_BL2 transfer failure\n");
68b4315306SDan Handley 
69b4315306SDan Handley 	return ret;
70b4315306SDan Handley }
714c117f6cSSandrine Bailleux 
724c117f6cSSandrine Bailleux #ifdef EL3_PAYLOAD_BASE
734c117f6cSSandrine Bailleux /*
744c117f6cSSandrine Bailleux  * We need to override some of the platform functions when booting an EL3
754c117f6cSSandrine Bailleux  * payload.
764c117f6cSSandrine Bailleux  */
774c117f6cSSandrine Bailleux 
784c117f6cSSandrine Bailleux static unsigned int scp_boot_config;
794c117f6cSSandrine Bailleux 
804c117f6cSSandrine Bailleux void bl2_early_platform_setup(meminfo_t *mem_layout)
814c117f6cSSandrine Bailleux {
824c117f6cSSandrine Bailleux 	arm_bl2_early_platform_setup(mem_layout);
834c117f6cSSandrine Bailleux 
84f59821d5SJuan Castillo 	/* Save SCP Boot config before it gets overwritten by SCP_BL2 loading */
854c117f6cSSandrine Bailleux 	scp_boot_config = mmio_read_32(SCP_BOOT_CFG_ADDR);
864c117f6cSSandrine Bailleux 	VERBOSE("BL2: Saved SCP Boot config = 0x%x\n", scp_boot_config);
874c117f6cSSandrine Bailleux }
884c117f6cSSandrine Bailleux 
894c117f6cSSandrine Bailleux void bl2_platform_setup(void)
904c117f6cSSandrine Bailleux {
914c117f6cSSandrine Bailleux 	arm_bl2_platform_setup();
924c117f6cSSandrine Bailleux 
934c117f6cSSandrine Bailleux 	/*
944c117f6cSSandrine Bailleux 	 * Before releasing the AP cores out of reset, the SCP writes some data
954c117f6cSSandrine Bailleux 	 * at the beginning of the Trusted SRAM. It is is overwritten before
964c117f6cSSandrine Bailleux 	 * reaching this function. We need to restore this data, as if the
974c117f6cSSandrine Bailleux 	 * target had just come out of reset. This implies:
984c117f6cSSandrine Bailleux 	 *  - zeroing the first 128 bytes of Trusted SRAM;
994c117f6cSSandrine Bailleux 	 *  - restoring the SCP boot configuration.
1004c117f6cSSandrine Bailleux 	 */
1014c117f6cSSandrine Bailleux 	VERBOSE("BL2: Restoring SCP reset data in Trusted SRAM\n");
102308d359bSDouglas Raillard 	zero_normalmem((void *)ARM_TRUSTED_SRAM_BASE, 128);
1034c117f6cSSandrine Bailleux 	mmio_write_32(SCP_BOOT_CFG_ADDR, scp_boot_config);
1044c117f6cSSandrine Bailleux }
1054c117f6cSSandrine Bailleux #endif /* EL3_PAYLOAD_BASE */
106