123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- /*
- * Copyright (c) 2017-2021, ARM Limited and Contributors. All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
- #include <assert.h>
- #include <errno.h>
- #include <inttypes.h>
- #include <stdint.h>
- #include <string.h>
- #include <arch_helpers.h>
- #include <bl1/tbbr/tbbr_img_desc.h>
- #include <common/bl_common.h>
- #include <common/debug.h>
- #include <drivers/arm/pl011.h>
- #include <drivers/mmc.h>
- #include <drivers/synopsys/dw_mmc.h>
- #include <lib/mmio.h>
- #include <plat/common/platform.h>
- #include <hi6220.h>
- #include <hikey_def.h>
- #include <hikey_layout.h>
- #include "hikey_private.h"
- /* Data structure which holds the extents of the trusted RAM for BL1 */
- static meminfo_t bl1_tzram_layout;
- static console_t console;
- static struct mmc_device_info mmc_info;
- enum {
- BOOT_NORMAL = 0,
- BOOT_USB_DOWNLOAD,
- BOOT_UART_DOWNLOAD,
- };
- meminfo_t *bl1_plat_sec_mem_layout(void)
- {
- return &bl1_tzram_layout;
- }
- /*
- * Perform any BL1 specific platform actions.
- */
- void bl1_early_platform_setup(void)
- {
- /* Initialize the console to provide early debug support */
- console_pl011_register(CONSOLE_BASE, PL011_UART_CLK_IN_HZ,
- PL011_BAUDRATE, &console);
- /* Allow BL1 to see the whole Trusted RAM */
- bl1_tzram_layout.total_base = BL1_RW_BASE;
- bl1_tzram_layout.total_size = BL1_RW_SIZE;
- INFO("BL1: 0x%lx - 0x%lx [size = %lu]\n", BL1_RAM_BASE, BL1_RAM_LIMIT,
- BL1_RAM_LIMIT - BL1_RAM_BASE); /* bl1_size */
- }
- /*
- * Perform the very early platform specific architecture setup here. At the
- * moment this only does basic initialization. Later architectural setup
- * (bl1_arch_setup()) does not do anything platform specific.
- */
- void bl1_plat_arch_setup(void)
- {
- hikey_init_mmu_el3(bl1_tzram_layout.total_base,
- bl1_tzram_layout.total_size,
- BL1_RO_BASE,
- BL1_RO_LIMIT,
- BL_COHERENT_RAM_BASE,
- BL_COHERENT_RAM_END);
- }
- /*
- * Function which will perform any remaining platform-specific setup that can
- * occur after the MMU and data cache have been enabled.
- */
- void bl1_platform_setup(void)
- {
- dw_mmc_params_t params;
- assert((HIKEY_BL1_MMC_DESC_BASE >= SRAM_BASE) &&
- ((SRAM_BASE + SRAM_SIZE) >=
- (HIKEY_BL1_MMC_DATA_BASE + HIKEY_BL1_MMC_DATA_SIZE)));
- hikey_sp804_init();
- hikey_gpio_init();
- hikey_pmussi_init();
- hikey_hi6553_init();
- hikey_rtc_init();
- hikey_mmc_pll_init();
- memset(¶ms, 0, sizeof(dw_mmc_params_t));
- params.reg_base = DWMMC0_BASE;
- params.desc_base = HIKEY_BL1_MMC_DESC_BASE;
- params.desc_size = 1 << 20;
- params.clk_rate = 24 * 1000 * 1000;
- params.bus_width = MMC_BUS_WIDTH_8;
- params.flags = MMC_FLAG_CMD23;
- mmc_info.mmc_dev_type = MMC_IS_EMMC;
- dw_mmc_init(¶ms, &mmc_info);
- hikey_io_setup();
- }
- /*
- * The following function checks if Firmware update is needed,
- * by checking if TOC in FIP image is valid or not.
- */
- unsigned int bl1_plat_get_next_image_id(void)
- {
- int32_t boot_mode;
- unsigned int ret;
- boot_mode = mmio_read_32(ONCHIPROM_PARAM_BASE);
- switch (boot_mode) {
- case BOOT_USB_DOWNLOAD:
- case BOOT_UART_DOWNLOAD:
- ret = NS_BL1U_IMAGE_ID;
- break;
- default:
- WARN("Invalid boot mode is found:%d\n", boot_mode);
- panic();
- }
- return ret;
- }
- image_desc_t *bl1_plat_get_image_desc(unsigned int image_id)
- {
- unsigned int index = 0;
- while (bl1_tbbr_image_descs[index].image_id != INVALID_IMAGE_ID) {
- if (bl1_tbbr_image_descs[index].image_id == image_id)
- return &bl1_tbbr_image_descs[index];
- index++;
- }
- return NULL;
- }
- void bl1_plat_set_ep_info(unsigned int image_id,
- entry_point_info_t *ep_info)
- {
- uint64_t data = 0;
- if (image_id == BL2_IMAGE_ID)
- panic();
- inv_dcache_range(NS_BL1U_BASE, NS_BL1U_SIZE);
- __asm__ volatile ("mrs %0, cpacr_el1" : "=r"(data));
- do {
- data |= 3 << 20;
- __asm__ volatile ("msr cpacr_el1, %0" : : "r"(data));
- __asm__ volatile ("mrs %0, cpacr_el1" : "=r"(data));
- } while ((data & (3 << 20)) != (3 << 20));
- INFO("cpacr_el1:0x%" PRIx64 "\n", data);
- ep_info->args.arg0 = 0xffff & read_mpidr();
- ep_info->spsr = SPSR_64(MODE_EL1, MODE_SP_ELX,
- DISABLE_ALL_EXCEPTIONS);
- }
|