blob: c2adc44ecc78fc9f26210dea39ddf1768493b7a3 [file] [log] [blame]
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +02001/*
Joel Hutton5cc3bc82018-03-21 11:40:57 +00002 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +02003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arch_helpers.h>
8#include <assert.h>
9#include <bl_common.h>
10#include <console.h>
11#include <debug.h>
Victor Chong539408d2018-01-03 01:53:08 +090012#include <dw_mmc.h>
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020013#include <errno.h>
14#include <generic_delay_timer.h>
Haojian Zhuang3eff4092018-08-04 18:07:26 +080015#include <mmc.h>
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020016#include <mmio.h>
17#include <pl061_gpio.h>
18#include <platform.h>
19#include <platform_def.h>
20#include <string.h>
21#include <tbbr_img_def.h>
22#include "../../bl1/bl1_private.h"
23#include "hi3798cv200.h"
24#include "plat_private.h"
25
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020026/* Data structure which holds the extents of the trusted RAM for BL1 */
27static meminfo_t bl1_tzram_layout;
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010028static meminfo_t bl2_tzram_layout;
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020029
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010030/*
31 * Cannot use default weak implementation in bl1_main.c because BL1 RW data is
32 * not at the top of the secure memory.
33 */
34int bl1_plat_handle_post_image_load(unsigned int image_id)
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020035{
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010036 image_desc_t *image_desc;
37 entry_point_info_t *ep_info;
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020038
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010039 if (image_id != BL2_IMAGE_ID)
40 return 0;
41
42 /* Get the image descriptor */
43 image_desc = bl1_plat_get_image_desc(BL2_IMAGE_ID);
44 assert(image_desc != NULL);
45
46 /* Get the entry point info */
47 ep_info = &image_desc->ep_info;
Victor Chong175dd8a2018-02-01 00:35:22 +090048
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010049 bl2_tzram_layout.total_base = BL2_BASE;
50 bl2_tzram_layout.total_size = BL32_LIMIT - BL2_BASE;
Victor Chong175dd8a2018-02-01 00:35:22 +090051
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010052 flush_dcache_range((uintptr_t)&bl2_tzram_layout, sizeof(meminfo_t));
Victor Chong175dd8a2018-02-01 00:35:22 +090053
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010054 ep_info->args.arg1 = (uintptr_t)&bl2_tzram_layout;
55
56 VERBOSE("BL1: BL2 memory layout address = %p\n",
57 (void *)&bl2_tzram_layout);
58
59 return 0;
Victor Chong175dd8a2018-02-01 00:35:22 +090060}
Victor Chong175dd8a2018-02-01 00:35:22 +090061
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020062void bl1_early_platform_setup(void)
63{
64 /* Initialize the console to provide early debug support */
65 console_init(PL011_UART0_BASE, PL011_UART0_CLK_IN_HZ, PL011_BAUDRATE);
66
67 /* Allow BL1 to see the whole Trusted RAM */
Victor Chong175dd8a2018-02-01 00:35:22 +090068 bl1_tzram_layout.total_base = BL1_RW_BASE;
69 bl1_tzram_layout.total_size = BL1_RW_SIZE;
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020070
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020071 INFO("BL1: 0x%lx - 0x%lx [size = %zu]\n", BL1_RAM_BASE, BL1_RAM_LIMIT,
72 BL1_RAM_LIMIT - BL1_RAM_BASE);
73}
74
75void bl1_plat_arch_setup(void)
76{
77 plat_configure_mmu_el3(bl1_tzram_layout.total_base,
78 bl1_tzram_layout.total_size,
Victor Chong175dd8a2018-02-01 00:35:22 +090079 BL1_RO_BASE, /* l-loader and BL1 ROM */
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020080 BL1_RO_LIMIT,
Joel Hutton5cc3bc82018-03-21 11:40:57 +000081 BL_COHERENT_RAM_BASE,
82 BL_COHERENT_RAM_END);
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020083}
84
85void bl1_platform_setup(void)
86{
87 int i;
Victor Chongf0c7c612018-01-16 00:29:47 +090088#if !POPLAR_RECOVERY
Shawn Guod793ff02018-09-27 16:48:00 +080089 struct mmc_device_info info;
Victor Chong539408d2018-01-03 01:53:08 +090090 dw_mmc_params_t params = EMMC_INIT_PARAMS(POPLAR_EMMC_DESC_BASE);
Victor Chongf0c7c612018-01-16 00:29:47 +090091#endif
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020092
93 generic_delay_timer_init();
94
95 pl061_gpio_init();
96 for (i = 0; i < GPIO_MAX; i++)
97 pl061_gpio_register(GPIO_BASE(i), i);
98
Victor Chongf0c7c612018-01-16 00:29:47 +090099#if !POPLAR_RECOVERY
Victor Chong539408d2018-01-03 01:53:08 +0900100 /* SoC-specific emmc register are initialized/configured by bootrom */
101 INFO("BL1: initializing emmc\n");
Haojian Zhuang3eff4092018-08-04 18:07:26 +0800102 info.mmc_dev_type = MMC_IS_EMMC;
103 dw_mmc_init(&params, &info);
Victor Chongf0c7c612018-01-16 00:29:47 +0900104#endif
Victor Chong539408d2018-01-03 01:53:08 +0900105
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +0200106 plat_io_setup();
107}
108
109unsigned int bl1_plat_get_next_image_id(void)
110{
111 return BL2_IMAGE_ID;
112}