xref: /rk3399_ARM-atf/plat/arm/css/common/css_bl2_setup.c (revision 4c117f6c49330682cabdbf6d082e7c02dd32e84b)
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>
32*4c117f6cSSandrine Bailleux #include <css_def.h>
33b4315306SDan Handley #include <debug.h>
34*4c117f6cSSandrine Bailleux #include <mmio.h>
35*4c117f6cSSandrine Bailleux #include <plat_arm.h>
36*4c117f6cSSandrine 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 */
40b4315306SDan Handley #pragma weak bl2_plat_handle_bl30
41b4315306SDan Handley 
42b4315306SDan Handley /*******************************************************************************
43b4315306SDan Handley  * Transfer BL3-0 from Trusted RAM using the SCP Download protocol.
44b4315306SDan Handley  * Return 0 on success, -1 otherwise.
45b4315306SDan Handley  ******************************************************************************/
46b4315306SDan Handley int bl2_plat_handle_bl30(image_info_t *bl30_image_info)
47b4315306SDan Handley {
48b4315306SDan Handley 	int ret;
49b4315306SDan Handley 
50e234ba03SSandrine Bailleux 	INFO("BL2: Initiating BL3-0 transfer to SCP\n");
51e234ba03SSandrine Bailleux 
52b4315306SDan Handley 	ret = scp_bootloader_transfer((void *)bl30_image_info->image_base,
53b4315306SDan Handley 		bl30_image_info->image_size);
54b4315306SDan Handley 
55b4315306SDan Handley 	if (ret == 0)
56e234ba03SSandrine Bailleux 		INFO("BL2: BL3-0 transferred to SCP\n");
57b4315306SDan Handley 	else
58e234ba03SSandrine Bailleux 		ERROR("BL2: BL3-0 transfer failure\n");
59b4315306SDan Handley 
60b4315306SDan Handley 	return ret;
61b4315306SDan Handley }
62*4c117f6cSSandrine Bailleux 
63*4c117f6cSSandrine Bailleux #ifdef EL3_PAYLOAD_BASE
64*4c117f6cSSandrine Bailleux /*
65*4c117f6cSSandrine Bailleux  * We need to override some of the platform functions when booting an EL3
66*4c117f6cSSandrine Bailleux  * payload.
67*4c117f6cSSandrine Bailleux  */
68*4c117f6cSSandrine Bailleux 
69*4c117f6cSSandrine Bailleux static unsigned int scp_boot_config;
70*4c117f6cSSandrine Bailleux 
71*4c117f6cSSandrine Bailleux void bl2_early_platform_setup(meminfo_t *mem_layout)
72*4c117f6cSSandrine Bailleux {
73*4c117f6cSSandrine Bailleux 	arm_bl2_early_platform_setup(mem_layout);
74*4c117f6cSSandrine Bailleux 
75*4c117f6cSSandrine Bailleux 	/* Save SCP Boot config before it gets overwritten by BL30 loading */
76*4c117f6cSSandrine Bailleux 	scp_boot_config = mmio_read_32(SCP_BOOT_CFG_ADDR);
77*4c117f6cSSandrine Bailleux 	VERBOSE("BL2: Saved SCP Boot config = 0x%x\n", scp_boot_config);
78*4c117f6cSSandrine Bailleux }
79*4c117f6cSSandrine Bailleux 
80*4c117f6cSSandrine Bailleux void bl2_platform_setup(void)
81*4c117f6cSSandrine Bailleux {
82*4c117f6cSSandrine Bailleux 	arm_bl2_platform_setup();
83*4c117f6cSSandrine Bailleux 
84*4c117f6cSSandrine Bailleux 	/*
85*4c117f6cSSandrine Bailleux 	 * Before releasing the AP cores out of reset, the SCP writes some data
86*4c117f6cSSandrine Bailleux 	 * at the beginning of the Trusted SRAM. It is is overwritten before
87*4c117f6cSSandrine Bailleux 	 * reaching this function. We need to restore this data, as if the
88*4c117f6cSSandrine Bailleux 	 * target had just come out of reset. This implies:
89*4c117f6cSSandrine Bailleux 	 *  - zeroing the first 128 bytes of Trusted SRAM;
90*4c117f6cSSandrine Bailleux 	 *  - restoring the SCP boot configuration.
91*4c117f6cSSandrine Bailleux 	 */
92*4c117f6cSSandrine Bailleux 	VERBOSE("BL2: Restoring SCP reset data in Trusted SRAM\n");
93*4c117f6cSSandrine Bailleux 	memset((void *) ARM_TRUSTED_SRAM_BASE, 0, 128);
94*4c117f6cSSandrine Bailleux 	mmio_write_32(SCP_BOOT_CFG_ADDR, scp_boot_config);
95*4c117f6cSSandrine Bailleux }
96*4c117f6cSSandrine Bailleux #endif /* EL3_PAYLOAD_BASE */
97