mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00

The rk3288 is a 4-core Cortex-A12 SoC and shares a lot of features with later SoCs. Working features are general non-secure mode (the gic needs special love for that), psci-based smp bringing cpu cores online and also taking them offline again, psci-based suspend (the simpler variant also included in the linux kernel, deeper suspend following later) and I was also already able to test HYP-mode and was able to boot a virtual kernel using kvm. Signed-off-by: Heiko Stuebner <heiko@sntech.de> Change-Id: Ibaaa583b2e78197591a91d254339706fe732476a
72 lines
1.6 KiB
ArmAsm
72 lines
1.6 KiB
ArmAsm
/*
|
|
* Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#ifndef ROCKCHIP_PLAT_LD_S
|
|
#define ROCKCHIP_PLAT_LD_S
|
|
|
|
#include <lib/xlat_tables/xlat_tables_defs.h>
|
|
|
|
MEMORY {
|
|
SRAM (rwx): ORIGIN = SRAM_BASE, LENGTH = SRAM_SIZE
|
|
PMUSRAM (rwx): ORIGIN = PMUSRAM_BASE, LENGTH = PMUSRAM_RSIZE
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
. = SRAM_BASE;
|
|
ASSERT(. == ALIGN(PAGE_SIZE),
|
|
"SRAM_BASE address is not aligned on a page boundary.")
|
|
|
|
.text_sram : ALIGN(PAGE_SIZE) {
|
|
__bl32_sram_text_start = .;
|
|
*(.sram.text)
|
|
*(.sram.rodata)
|
|
__bl32_sram_text_real_end = .;
|
|
. = ALIGN(PAGE_SIZE);
|
|
__bl32_sram_text_end = .;
|
|
} >SRAM
|
|
ASSERT((__bl32_sram_text_real_end - __bl32_sram_text_start) <=
|
|
SRAM_TEXT_LIMIT, ".text_sram has exceeded its limit")
|
|
|
|
.data_sram : ALIGN(PAGE_SIZE) {
|
|
__bl32_sram_data_start = .;
|
|
*(.sram.data)
|
|
__bl32_sram_data_real_end = .;
|
|
. = ALIGN(PAGE_SIZE);
|
|
__bl32_sram_data_end = .;
|
|
} >SRAM
|
|
ASSERT((__bl32_sram_data_real_end - __bl32_sram_data_start) <=
|
|
SRAM_DATA_LIMIT, ".data_sram has exceeded its limit")
|
|
|
|
.stack_sram : ALIGN(PAGE_SIZE) {
|
|
__bl32_sram_stack_start = .;
|
|
. += PAGE_SIZE;
|
|
__bl32_sram_stack_end = .;
|
|
} >SRAM
|
|
|
|
. = PMUSRAM_BASE;
|
|
|
|
/*
|
|
* pmu_cpuson_entrypoint request address
|
|
* align 64K when resume, so put it in the
|
|
* start of pmusram
|
|
*/
|
|
.pmusram : {
|
|
ASSERT(. == ALIGN(64 * 1024),
|
|
".pmusram.entry request 64K aligned.");
|
|
*(.pmusram.entry)
|
|
|
|
__bl32_pmusram_text_start = .;
|
|
*(.pmusram.text)
|
|
*(.pmusram.rodata)
|
|
__bl32_pmusram_text_end = .;
|
|
|
|
__bl32_pmusram_data_start = .;
|
|
*(.pmusram.data)
|
|
__bl32_pmusram_data_end = .;
|
|
} >PMUSRAM
|
|
}
|
|
|
|
#endif /* ROCKCHIP_PLAT_LD_S */
|