mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-22 20:38:03 +00:00

The DDR driver is under dual license, BSD and GPLv2. The configuration parameters are taken from device tree. Signed-off-by: Yann Gautier <yann.gautier@st.com> Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com> Signed-off-by: Nicolas Le Bayon <nicolas.le.bayon@st.com> Signed-off-by: Lionel Debieve <lionel.debieve@st.com>
83 lines
1.6 KiB
C
83 lines
1.6 KiB
C
/*
|
|
* Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <arch_helpers.h>
|
|
#include <assert.h>
|
|
#include <bl_common.h>
|
|
#include <debug.h>
|
|
#include <gicv2.h>
|
|
#include <mmio.h>
|
|
#include <platform_def.h>
|
|
#include <platform.h>
|
|
#include <stm32mp1_private.h>
|
|
#include <xlat_tables_v2.h>
|
|
|
|
#define MAP_SRAM MAP_REGION_FLAT(STM32MP1_SRAM_BASE, \
|
|
STM32MP1_SRAM_SIZE, \
|
|
MT_MEMORY | \
|
|
MT_RW | \
|
|
MT_SECURE | \
|
|
MT_EXECUTE_NEVER)
|
|
|
|
#define MAP_DEVICE1 MAP_REGION_FLAT(STM32MP1_DEVICE1_BASE, \
|
|
STM32MP1_DEVICE1_SIZE, \
|
|
MT_DEVICE | \
|
|
MT_RW | \
|
|
MT_SECURE | \
|
|
MT_EXECUTE_NEVER)
|
|
|
|
#define MAP_DEVICE2 MAP_REGION_FLAT(STM32MP1_DEVICE2_BASE, \
|
|
STM32MP1_DEVICE2_SIZE, \
|
|
MT_DEVICE | \
|
|
MT_RW | \
|
|
MT_SECURE | \
|
|
MT_EXECUTE_NEVER)
|
|
|
|
#define MAP_DDR MAP_REGION_FLAT(STM32MP1_DDR_BASE, \
|
|
STM32MP1_DDR_MAX_SIZE, \
|
|
MT_MEMORY | \
|
|
MT_RW | \
|
|
MT_SECURE | \
|
|
MT_EXECUTE_NEVER)
|
|
|
|
static const mmap_region_t stm32mp1_mmap[] = {
|
|
MAP_SRAM,
|
|
MAP_DEVICE1,
|
|
MAP_DEVICE2,
|
|
MAP_DDR,
|
|
{0}
|
|
};
|
|
|
|
void configure_mmu(void)
|
|
{
|
|
mmap_add(stm32mp1_mmap);
|
|
init_xlat_tables();
|
|
|
|
enable_mmu_secure(0);
|
|
}
|
|
|
|
uintptr_t plat_get_ns_image_entrypoint(void)
|
|
{
|
|
return BL33_BASE;
|
|
}
|
|
|
|
unsigned int plat_get_syscnt_freq2(void)
|
|
{
|
|
return read_cntfrq_el0();
|
|
}
|
|
|
|
/* Functions to save and get boot context address given by ROM code */
|
|
static uintptr_t boot_ctx_address;
|
|
|
|
void stm32mp1_save_boot_ctx_address(uintptr_t address)
|
|
{
|
|
boot_ctx_address = address;
|
|
}
|
|
|
|
uintptr_t stm32mp1_get_boot_ctx_address(void)
|
|
{
|
|
return boot_ctx_address;
|
|
}
|