blob: acc1f0e50db367937a1773f2dcff4da0f97c7f62 [file] [log] [blame]
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +02001/*
Yann Gautieradbf1d12021-03-22 14:21:15 +01002 * Copyright (c) 2017-2021, 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
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +02007#include <assert.h>
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +02008#include <errno.h>
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +02009#include <string.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010
11#include <platform_def.h>
12
13#include <arch_helpers.h>
14#include <common/bl_common.h>
15#include <common/debug.h>
16#include <common/tbbr/tbbr_img_def.h>
17#include <drivers/arm/pl011.h>
18#include <drivers/arm/pl061_gpio.h>
19#include <drivers/generic_delay_timer.h>
20#include <drivers/mmc.h>
21#include <drivers/synopsys/dw_mmc.h>
22#include <lib/mmio.h>
23#include <plat/common/platform.h>
24
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020025#include "hi3798cv200.h"
26#include "plat_private.h"
27
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020028/* Data structure which holds the extents of the trusted RAM for BL1 */
29static meminfo_t bl1_tzram_layout;
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010030static meminfo_t bl2_tzram_layout;
Andre Przywara2b1b1a52020-01-25 00:58:35 +000031static console_t console;
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020032
Yann Gautieradbf1d12021-03-22 14:21:15 +010033#if !POPLAR_RECOVERY
34static struct mmc_device_info mmc_info;
35#endif
36
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010037/*
38 * Cannot use default weak implementation in bl1_main.c because BL1 RW data is
39 * not at the top of the secure memory.
40 */
41int bl1_plat_handle_post_image_load(unsigned int image_id)
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020042{
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010043 image_desc_t *image_desc;
44 entry_point_info_t *ep_info;
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020045
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010046 if (image_id != BL2_IMAGE_ID)
47 return 0;
48
49 /* Get the image descriptor */
50 image_desc = bl1_plat_get_image_desc(BL2_IMAGE_ID);
51 assert(image_desc != NULL);
52
53 /* Get the entry point info */
54 ep_info = &image_desc->ep_info;
Victor Chong175dd8a2018-02-01 00:35:22 +090055
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010056 bl2_tzram_layout.total_base = BL2_BASE;
57 bl2_tzram_layout.total_size = BL32_LIMIT - BL2_BASE;
Victor Chong175dd8a2018-02-01 00:35:22 +090058
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010059 flush_dcache_range((uintptr_t)&bl2_tzram_layout, sizeof(meminfo_t));
Victor Chong175dd8a2018-02-01 00:35:22 +090060
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010061 ep_info->args.arg1 = (uintptr_t)&bl2_tzram_layout;
62
63 VERBOSE("BL1: BL2 memory layout address = %p\n",
64 (void *)&bl2_tzram_layout);
65
66 return 0;
Victor Chong175dd8a2018-02-01 00:35:22 +090067}
Victor Chong175dd8a2018-02-01 00:35:22 +090068
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020069void bl1_early_platform_setup(void)
70{
71 /* Initialize the console to provide early debug support */
Jerome Forissier74a19f22018-11-08 11:57:30 +000072 console_pl011_register(PL011_UART0_BASE, PL011_UART0_CLK_IN_HZ,
73 PL011_BAUDRATE, &console);
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020074
75 /* Allow BL1 to see the whole Trusted RAM */
Victor Chong175dd8a2018-02-01 00:35:22 +090076 bl1_tzram_layout.total_base = BL1_RW_BASE;
77 bl1_tzram_layout.total_size = BL1_RW_SIZE;
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020078
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020079 INFO("BL1: 0x%lx - 0x%lx [size = %zu]\n", BL1_RAM_BASE, BL1_RAM_LIMIT,
80 BL1_RAM_LIMIT - BL1_RAM_BASE);
81}
82
83void bl1_plat_arch_setup(void)
84{
85 plat_configure_mmu_el3(bl1_tzram_layout.total_base,
86 bl1_tzram_layout.total_size,
Victor Chong175dd8a2018-02-01 00:35:22 +090087 BL1_RO_BASE, /* l-loader and BL1 ROM */
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020088 BL1_RO_LIMIT,
Joel Hutton5cc3bc82018-03-21 11:40:57 +000089 BL_COHERENT_RAM_BASE,
90 BL_COHERENT_RAM_END);
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020091}
92
93void bl1_platform_setup(void)
94{
95 int i;
Victor Chongf0c7c612018-01-16 00:29:47 +090096#if !POPLAR_RECOVERY
Victor Chong539408d2018-01-03 01:53:08 +090097 dw_mmc_params_t params = EMMC_INIT_PARAMS(POPLAR_EMMC_DESC_BASE);
Victor Chongf0c7c612018-01-16 00:29:47 +090098#endif
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020099
100 generic_delay_timer_init();
101
102 pl061_gpio_init();
103 for (i = 0; i < GPIO_MAX; i++)
104 pl061_gpio_register(GPIO_BASE(i), i);
105
Victor Chongf0c7c612018-01-16 00:29:47 +0900106#if !POPLAR_RECOVERY
Victor Chong539408d2018-01-03 01:53:08 +0900107 /* SoC-specific emmc register are initialized/configured by bootrom */
108 INFO("BL1: initializing emmc\n");
Yann Gautieradbf1d12021-03-22 14:21:15 +0100109 mmc_info.mmc_dev_type = MMC_IS_EMMC;
110 dw_mmc_init(&params, &mmc_info);
Victor Chongf0c7c612018-01-16 00:29:47 +0900111#endif
Victor Chong539408d2018-01-03 01:53:08 +0900112
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +0200113 plat_io_setup();
114}
115
116unsigned int bl1_plat_get_next_image_id(void)
117{
118 return BL2_IMAGE_ID;
119}