blob: a97d763201e305097f3d5862895dd8f0d299429b [file] [log] [blame]
Haojian Zhuang5f281b32017-05-24 08:45:05 +08001/*
Haojian Zhuangb755da32018-01-25 16:10:14 +08002 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
Haojian Zhuang5f281b32017-05-24 08:45:05 +08003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Haojian Zhuang5f281b32017-05-24 08:45:05 +08007#include <assert.h>
Haojian Zhuang5f281b32017-05-24 08:45:05 +08008#include <errno.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009#include <string.h>
10
11#include <arch_helpers.h>
12#include <bl1/tbbr/tbbr_img_desc.h>
13#include <common/bl_common.h>
14#include <common/debug.h>
15#include <drivers/arm/pl011.h>
16#include <drivers/mmc.h>
17#include <drivers/synopsys/dw_mmc.h>
18#include <lib/mmio.h>
19#include <plat/common/platform.h>
20
Haojian Zhuang5f281b32017-05-24 08:45:05 +080021#include <hi6220.h>
Michael Brandlafdff3c2018-02-22 16:30:30 +010022#include <hikey_def.h>
23#include <hikey_layout.h>
Haojian Zhuang5f281b32017-05-24 08:45:05 +080024
Haojian Zhuang5f281b32017-05-24 08:45:05 +080025#include "hikey_private.h"
26
Haojian Zhuang5f281b32017-05-24 08:45:05 +080027/* Data structure which holds the extents of the trusted RAM for BL1 */
28static meminfo_t bl1_tzram_layout;
Jerome Forissieraebe95d2018-11-08 10:17:47 +000029static console_pl011_t console;
Haojian Zhuang5f281b32017-05-24 08:45:05 +080030
31enum {
32 BOOT_NORMAL = 0,
33 BOOT_USB_DOWNLOAD,
34 BOOT_UART_DOWNLOAD,
35};
36
37meminfo_t *bl1_plat_sec_mem_layout(void)
38{
39 return &bl1_tzram_layout;
40}
41
42/*
43 * Perform any BL1 specific platform actions.
44 */
45void bl1_early_platform_setup(void)
46{
Haojian Zhuang5f281b32017-05-24 08:45:05 +080047 /* Initialize the console to provide early debug support */
Jerome Forissieraebe95d2018-11-08 10:17:47 +000048 console_pl011_register(CONSOLE_BASE, PL011_UART_CLK_IN_HZ,
49 PL011_BAUDRATE, &console);
Haojian Zhuang5f281b32017-05-24 08:45:05 +080050
51 /* Allow BL1 to see the whole Trusted RAM */
52 bl1_tzram_layout.total_base = BL1_RW_BASE;
53 bl1_tzram_layout.total_size = BL1_RW_SIZE;
54
Haojian Zhuang5f281b32017-05-24 08:45:05 +080055 INFO("BL1: 0x%lx - 0x%lx [size = %lu]\n", BL1_RAM_BASE, BL1_RAM_LIMIT,
Victor Chong2d9a42d2017-08-17 15:21:10 +090056 BL1_RAM_LIMIT - BL1_RAM_BASE); /* bl1_size */
Haojian Zhuang5f281b32017-05-24 08:45:05 +080057}
58
59/*
60 * Perform the very early platform specific architecture setup here. At the
61 * moment this only does basic initialization. Later architectural setup
62 * (bl1_arch_setup()) does not do anything platform specific.
63 */
64void bl1_plat_arch_setup(void)
65{
66 hikey_init_mmu_el3(bl1_tzram_layout.total_base,
67 bl1_tzram_layout.total_size,
68 BL1_RO_BASE,
69 BL1_RO_LIMIT,
Joel Hutton5cc3bc82018-03-21 11:40:57 +000070 BL_COHERENT_RAM_BASE,
71 BL_COHERENT_RAM_END);
Haojian Zhuang5f281b32017-05-24 08:45:05 +080072}
73
Haojian Zhuang5f281b32017-05-24 08:45:05 +080074/*
75 * Function which will perform any remaining platform-specific setup that can
76 * occur after the MMU and data cache have been enabled.
77 */
78void bl1_platform_setup(void)
79{
80 dw_mmc_params_t params;
Haojian Zhuange9713772018-08-04 18:07:10 +080081 struct mmc_device_info info;
Haojian Zhuang5f281b32017-05-24 08:45:05 +080082
83 assert((HIKEY_BL1_MMC_DESC_BASE >= SRAM_BASE) &&
84 ((SRAM_BASE + SRAM_SIZE) >=
85 (HIKEY_BL1_MMC_DATA_BASE + HIKEY_BL1_MMC_DATA_SIZE)));
86 hikey_sp804_init();
87 hikey_gpio_init();
88 hikey_pmussi_init();
89 hikey_hi6553_init();
90
Haojian Zhuange1be9042017-10-18 19:56:02 +080091 hikey_rtc_init();
92
Haojian Zhuang5f281b32017-05-24 08:45:05 +080093 hikey_mmc_pll_init();
94
95 memset(&params, 0, sizeof(dw_mmc_params_t));
96 params.reg_base = DWMMC0_BASE;
97 params.desc_base = HIKEY_BL1_MMC_DESC_BASE;
98 params.desc_size = 1 << 20;
99 params.clk_rate = 24 * 1000 * 1000;
Haojian Zhuange9713772018-08-04 18:07:10 +0800100 params.bus_width = MMC_BUS_WIDTH_8;
101 params.flags = MMC_FLAG_CMD23;
102 info.mmc_dev_type = MMC_IS_EMMC;
103 dw_mmc_init(&params, &info);
Haojian Zhuang5f281b32017-05-24 08:45:05 +0800104
105 hikey_io_setup();
106}
107
108/*
109 * The following function checks if Firmware update is needed,
110 * by checking if TOC in FIP image is valid or not.
111 */
112unsigned int bl1_plat_get_next_image_id(void)
113{
114 int32_t boot_mode;
115 unsigned int ret;
116
117 boot_mode = mmio_read_32(ONCHIPROM_PARAM_BASE);
118 switch (boot_mode) {
Haojian Zhuang5f281b32017-05-24 08:45:05 +0800119 case BOOT_USB_DOWNLOAD:
120 case BOOT_UART_DOWNLOAD:
121 ret = NS_BL1U_IMAGE_ID;
122 break;
123 default:
124 WARN("Invalid boot mode is found:%d\n", boot_mode);
125 panic();
126 }
127 return ret;
128}
129
130image_desc_t *bl1_plat_get_image_desc(unsigned int image_id)
131{
132 unsigned int index = 0;
133
134 while (bl1_tbbr_image_descs[index].image_id != INVALID_IMAGE_ID) {
135 if (bl1_tbbr_image_descs[index].image_id == image_id)
136 return &bl1_tbbr_image_descs[index];
137
138 index++;
139 }
140
141 return NULL;
142}
143
144void bl1_plat_set_ep_info(unsigned int image_id,
145 entry_point_info_t *ep_info)
146{
Haojian Zhuang24c83372018-03-02 14:25:41 +0800147 uint64_t data = 0;
Haojian Zhuang5f281b32017-05-24 08:45:05 +0800148
149 if (image_id == BL2_IMAGE_ID)
Haojian Zhuangb755da32018-01-25 16:10:14 +0800150 panic();
Haojian Zhuang5f281b32017-05-24 08:45:05 +0800151 inv_dcache_range(NS_BL1U_BASE, NS_BL1U_SIZE);
152 __asm__ volatile ("mrs %0, cpacr_el1" : "=r"(data));
153 do {
154 data |= 3 << 20;
155 __asm__ volatile ("msr cpacr_el1, %0" : : "r"(data));
156 __asm__ volatile ("mrs %0, cpacr_el1" : "=r"(data));
157 } while ((data & (3 << 20)) != (3 << 20));
Masahiro Yamadae93a0f42018-02-02 15:09:36 +0900158 INFO("cpacr_el1:0x%llx\n", data);
Haojian Zhuang5f281b32017-05-24 08:45:05 +0800159
160 ep_info->args.arg0 = 0xffff & read_mpidr();
161 ep_info->spsr = SPSR_64(MODE_EL1, MODE_SP_ELX,
162 DISABLE_ALL_EXCEPTIONS);
163}