You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
817 B
27 lines
817 B
/*
|
|
* Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef BL32_PARAM_H
|
|
#define BL32_PARAM_H
|
|
|
|
/*******************************************************************************
|
|
* Platform memory map related constants
|
|
******************************************************************************/
|
|
/* TF text, ro, rw, Size: 1MB */
|
|
#define TZRAM_BASE (0x0)
|
|
#define TZRAM_SIZE (0x100000)
|
|
|
|
/*******************************************************************************
|
|
* BL32 specific defines.
|
|
******************************************************************************/
|
|
/*
|
|
* Put BL32 at the top of the Trusted RAM
|
|
*/
|
|
#define BL32_BASE (TZRAM_BASE + 0x40000)
|
|
#define BL32_LIMIT (TZRAM_BASE + TZRAM_SIZE)
|
|
|
|
#endif /* BL32_PARAM_H */
|