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

Also change header guards to fix defects of MISRA C-2012 Rule 21.1. Change-Id: Ied0d4b0e557ef6119ab669d106d2ac5d99620c57 Acked-by: Sumit Garg <sumit.garg@linaro.org> Acked-by: Anson Huang <Anson.Huang@nxp.com> Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
52 lines
1.4 KiB
C
52 lines
1.4 KiB
C
/*
|
|
* Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef PLATFORM_DEF_H
|
|
#define PLATFORM_DEF_H
|
|
|
|
#include <common_def.h>
|
|
#include <sunxi_mmap.h>
|
|
#include <tbbr/tbbr_img_def.h>
|
|
#include <utils_def.h>
|
|
|
|
#define BL31_BASE SUNXI_SRAM_A2_BASE
|
|
#define BL31_LIMIT (SUNXI_SRAM_A2_BASE + SUNXI_SRAM_A2_SIZE)
|
|
|
|
/* The traditional U-Boot load address is 160MB into DRAM, so at 0x4a000000 */
|
|
#define PLAT_SUNXI_NS_IMAGE_OFFSET (SUNXI_DRAM_BASE + (160U << 20))
|
|
|
|
#define CACHE_WRITEBACK_SHIFT 6
|
|
#define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT)
|
|
|
|
#define MAX_MMAP_REGIONS (4 + PLATFORM_MMAP_REGIONS)
|
|
#define MAX_XLAT_TABLES 2
|
|
|
|
#define PLAT_MAX_PWR_LVL_STATES U(2)
|
|
#define PLAT_MAX_RET_STATE U(1)
|
|
#define PLAT_MAX_OFF_STATE U(2)
|
|
|
|
#define PLAT_MAX_PWR_LVL U(2)
|
|
#define PLAT_NUM_PWR_DOMAINS (1 + \
|
|
PLATFORM_CLUSTER_COUNT + \
|
|
PLATFORM_CORE_COUNT)
|
|
|
|
#define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32)
|
|
#define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 32)
|
|
|
|
#define PLATFORM_CLUSTER_COUNT 1
|
|
#define PLATFORM_CORE_COUNT (PLATFORM_CLUSTER_COUNT * \
|
|
PLATFORM_MAX_CPUS_PER_CLUSTER)
|
|
#define PLATFORM_MAX_CPUS_PER_CLUSTER 4
|
|
#define PLATFORM_MMAP_REGIONS 3
|
|
#define PLATFORM_STACK_SIZE (0x1000 / PLATFORM_CORE_COUNT)
|
|
|
|
#ifndef SPD_none
|
|
#ifndef BL32_BASE
|
|
#define BL32_BASE SUNXI_DRAM_BASE
|
|
#endif
|
|
#endif
|
|
|
|
#endif /* PLATFORM_DEF_H */
|