xref: /rk3399_ARM-atf/plat/arm/css/common/css_bl2_setup.c (revision f59821d51255f14e0ac00eef7bc98ef75c686876)
1b4315306SDan Handley /*
2b4315306SDan Handley  * Copyright (c) 2015, 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>
37b4315306SDan Handley #include "css_scp_bootloader.h"
38b4315306SDan Handley 
39b4315306SDan Handley /* Weak definition may be overridden in specific CSS based platform */
40*f59821d5SJuan Castillo #pragma weak bl2_plat_handle_scp_bl2
41b4315306SDan Handley 
42b4315306SDan Handley /*******************************************************************************
43*f59821d5SJuan Castillo  * Transfer SCP_BL2 from Trusted RAM using the SCP Download protocol.
44b4315306SDan Handley  * Return 0 on success, -1 otherwise.
45b4315306SDan Handley  ******************************************************************************/
46*f59821d5SJuan Castillo int bl2_plat_handle_scp_bl2(image_info_t *scp_bl2_image_info)
47b4315306SDan Handley {
48b4315306SDan Handley 	int ret;
49b4315306SDan Handley 
50*f59821d5SJuan Castillo 	INFO("BL2: Initiating SCP_BL2 transfer to SCP\n");
51e234ba03SSandrine Bailleux 
52*f59821d5SJuan Castillo 	ret = scp_bootloader_transfer((void *)scp_bl2_image_info->image_base,
53*f59821d5SJuan Castillo 		scp_bl2_image_info->image_size);
54b4315306SDan Handley 
55b4315306SDan Handley 	if (ret == 0)
56*f59821d5SJuan Castillo 		INFO("BL2: SCP_BL2 transferred to SCP\n");
57b4315306SDan Handley 	else
58*f59821d5SJuan Castillo 		ERROR("BL2: SCP_BL2 transfer failure\n");
59b4315306SDan Handley 
60b4315306SDan Handley 	return ret;
61b4315306SDan Handley }
624c117f6cSSandrine Bailleux 
634c117f6cSSandrine Bailleux #ifdef EL3_PAYLOAD_BASE
644c117f6cSSandrine Bailleux /*
654c117f6cSSandrine Bailleux  * We need to override some of the platform functions when booting an EL3
664c117f6cSSandrine Bailleux  * payload.
674c117f6cSSandrine Bailleux  */
684c117f6cSSandrine Bailleux 
694c117f6cSSandrine Bailleux static unsigned int scp_boot_config;
704c117f6cSSandrine Bailleux 
714c117f6cSSandrine Bailleux void bl2_early_platform_setup(meminfo_t *mem_layout)
724c117f6cSSandrine Bailleux {
734c117f6cSSandrine Bailleux 	arm_bl2_early_platform_setup(mem_layout);
744c117f6cSSandrine Bailleux 
75*f59821d5SJuan Castillo 	/* Save SCP Boot config before it gets overwritten by SCP_BL2 loading */
764c117f6cSSandrine Bailleux 	scp_boot_config = mmio_read_32(SCP_BOOT_CFG_ADDR);
774c117f6cSSandrine Bailleux 	VERBOSE("BL2: Saved SCP Boot config = 0x%x\n", scp_boot_config);
784c117f6cSSandrine Bailleux }
794c117f6cSSandrine Bailleux 
804c117f6cSSandrine Bailleux void bl2_platform_setup(void)
814c117f6cSSandrine Bailleux {
824c117f6cSSandrine Bailleux 	arm_bl2_platform_setup();
834c117f6cSSandrine Bailleux 
844c117f6cSSandrine Bailleux 	/*
854c117f6cSSandrine Bailleux 	 * Before releasing the AP cores out of reset, the SCP writes some data
864c117f6cSSandrine Bailleux 	 * at the beginning of the Trusted SRAM. It is is overwritten before
874c117f6cSSandrine Bailleux 	 * reaching this function. We need to restore this data, as if the
884c117f6cSSandrine Bailleux 	 * target had just come out of reset. This implies:
894c117f6cSSandrine Bailleux 	 *  - zeroing the first 128 bytes of Trusted SRAM;
904c117f6cSSandrine Bailleux 	 *  - restoring the SCP boot configuration.
914c117f6cSSandrine Bailleux 	 */
924c117f6cSSandrine Bailleux 	VERBOSE("BL2: Restoring SCP reset data in Trusted SRAM\n");
934c117f6cSSandrine Bailleux 	memset((void *) ARM_TRUSTED_SRAM_BASE, 0, 128);
944c117f6cSSandrine Bailleux 	mmio_write_32(SCP_BOOT_CFG_ADDR, scp_boot_config);
954c117f6cSSandrine Bailleux }
964c117f6cSSandrine Bailleux #endif /* EL3_PAYLOAD_BASE */
97