blob: 08eb5cf2b91e4b8bb56aa7d605f0302d62570d7c [file] [log] [blame]
Samuel Hollandb8566642017-08-12 04:07:39 -05001/*
2 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaz6f3ccc52018-07-20 09:17:26 +01007#ifndef PLATFORM_DEF_H
8#define PLATFORM_DEF_H
Samuel Hollandb8566642017-08-12 04:07:39 -05009
10#include <common_def.h>
11#include <sunxi_mmap.h>
12#include <tbbr/tbbr_img_def.h>
Antonio Nino Diaz6f3ccc52018-07-20 09:17:26 +010013#include <utils_def.h>
Samuel Hollandb8566642017-08-12 04:07:39 -050014
15#define BL31_BASE SUNXI_SRAM_A2_BASE
16#define BL31_LIMIT (SUNXI_SRAM_A2_BASE + SUNXI_SRAM_A2_SIZE)
17
18/* The traditional U-Boot load address is 160MB into DRAM, so at 0x4a000000 */
19#define PLAT_SUNXI_NS_IMAGE_OFFSET (SUNXI_DRAM_BASE + (160U << 20))
20
Andre Przywarab3fddff2018-09-20 21:13:55 +010021/* How much memory to reserve as secure for BL32, if configured */
22#define SUNXI_DRAM_SEC_SIZE (32U << 20)
23
Andre Przywaraea5fa472018-09-16 02:08:06 +010024/* How much DRAM to map (to map BL33, for fetching the DTB from U-Boot) */
Andre Przywarab3fddff2018-09-20 21:13:55 +010025#define SUNXI_DRAM_MAP_SIZE (64U << 20)
26
Samuel Hollandb8566642017-08-12 04:07:39 -050027#define CACHE_WRITEBACK_SHIFT 6
28#define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT)
29
Andre Przywara647a2e12018-10-11 22:14:30 +010030#define MAX_MMAP_REGIONS (3 + PLATFORM_MMAP_REGIONS)
Andre Przywarab3fddff2018-09-20 21:13:55 +010031#define MAX_XLAT_TABLES 1
Samuel Hollandb8566642017-08-12 04:07:39 -050032
Antonio Nino Diaz6f3ccc52018-07-20 09:17:26 +010033#define PLAT_MAX_PWR_LVL_STATES U(2)
34#define PLAT_MAX_RET_STATE U(1)
35#define PLAT_MAX_OFF_STATE U(2)
Samuel Hollandb8566642017-08-12 04:07:39 -050036
Antonio Nino Diaz6f3ccc52018-07-20 09:17:26 +010037#define PLAT_MAX_PWR_LVL U(2)
Samuel Hollandb8566642017-08-12 04:07:39 -050038#define PLAT_NUM_PWR_DOMAINS (1 + \
39 PLATFORM_CLUSTER_COUNT + \
40 PLATFORM_CORE_COUNT)
41
42#define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32)
Andre Przywarab3fddff2018-09-20 21:13:55 +010043#define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 28)
Samuel Hollandb8566642017-08-12 04:07:39 -050044
45#define PLATFORM_CLUSTER_COUNT 1
46#define PLATFORM_CORE_COUNT (PLATFORM_CLUSTER_COUNT * \
47 PLATFORM_MAX_CPUS_PER_CLUSTER)
48#define PLATFORM_MAX_CPUS_PER_CLUSTER 4
Andre Przywarab3fddff2018-09-20 21:13:55 +010049#define PLATFORM_MMAP_REGIONS 4
Samuel Hollandb8566642017-08-12 04:07:39 -050050#define PLATFORM_STACK_SIZE (0x1000 / PLATFORM_CORE_COUNT)
51
Amit Singh Tomar2f372242018-06-20 00:44:50 +053052#ifndef SPD_none
53#ifndef BL32_BASE
54#define BL32_BASE SUNXI_DRAM_BASE
55#endif
56#endif
57
Antonio Nino Diaz6f3ccc52018-07-20 09:17:26 +010058#endif /* PLATFORM_DEF_H */