blob: 41d771c037da7c29e8e388b5825c9977b5925d70 [file] [log] [blame]
Varun Wadekarb316e242015-05-19 16:48:04 +05301/*
Varun Wadekarb5132322017-04-10 15:30:17 -07002 * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
Varun Wadekarb316e242015-05-19 16:48:04 +05303 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Varun Wadekarb316e242015-05-19 16:48:04 +05305 */
6
7#ifndef __PLATFORM_DEF_H__
8#define __PLATFORM_DEF_H__
9
10#include <arch.h>
11#include <common_def.h>
Varun Wadekara78bb1b2015-08-07 10:03:00 +053012#include <tegra_def.h>
Varun Wadekarb316e242015-05-19 16:48:04 +053013
14/*******************************************************************************
15 * Generic platform constants
16 ******************************************************************************/
17
18/* Size of cacheable stacks */
Masahiro Yamada441bfdd2016-12-25 23:36:24 +090019#ifdef IMAGE_BL31
Varun Wadekarb316e242015-05-19 16:48:04 +053020#define PLATFORM_STACK_SIZE 0x400
21#endif
22
23#define TEGRA_PRIMARY_CPU 0x0
24
Varun Wadekara78bb1b2015-08-07 10:03:00 +053025#define PLAT_MAX_PWR_LVL MPIDR_AFFLVL2
Varun Wadekar88c4d222015-08-12 09:24:50 +053026#define PLATFORM_CORE_COUNT (PLATFORM_CLUSTER_COUNT * \
27 PLATFORM_MAX_CPUS_PER_CLUSTER)
Varun Wadekara78bb1b2015-08-07 10:03:00 +053028#define PLAT_NUM_PWR_DOMAINS (PLATFORM_CORE_COUNT + \
Varun Wadekar88c4d222015-08-12 09:24:50 +053029 PLATFORM_CLUSTER_COUNT + 1)
Varun Wadekarb316e242015-05-19 16:48:04 +053030
31/*******************************************************************************
32 * Platform console related constants
33 ******************************************************************************/
34#define TEGRA_CONSOLE_BAUDRATE 115200
35#define TEGRA_BOOT_UART_CLK_IN_HZ 408000000
36
37/*******************************************************************************
38 * Platform memory map related constants
39 ******************************************************************************/
40/* Size of trusted dram */
41#define TZDRAM_SIZE 0x00400000
42#define TZDRAM_END (TZDRAM_BASE + TZDRAM_SIZE)
43
44/*******************************************************************************
45 * BL31 specific defines.
46 ******************************************************************************/
Varun Wadekare0323632016-03-03 18:27:28 -080047#define BL31_SIZE 0x40000
Varun Wadekarb316e242015-05-19 16:48:04 +053048#define BL31_BASE TZDRAM_BASE
Varun Wadekar52a15982015-06-05 12:57:27 +053049#define BL31_LIMIT (TZDRAM_BASE + BL31_SIZE - 1)
50#define BL32_BASE (TZDRAM_BASE + BL31_SIZE)
51#define BL32_LIMIT TZDRAM_END
Varun Wadekarb316e242015-05-19 16:48:04 +053052
53/*******************************************************************************
54 * Platform specific page table and MMU setup constants
55 ******************************************************************************/
Varun Wadekarb5132322017-04-10 15:30:17 -070056#define PLAT_PHY_ADDR_SPACE_SIZE (1ull << 35)
57#define PLAT_VIRT_ADDR_SPACE_SIZE (1ull << 35)
Varun Wadekarb316e242015-05-19 16:48:04 +053058
59/*******************************************************************************
60 * Some data must be aligned on the biggest cache line size in the platform.
61 * This is known only to the platform as it might have a combination of
62 * integrated and external caches.
63 ******************************************************************************/
64#define CACHE_WRITEBACK_SHIFT 6
65#define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT)
66
67#endif /* __PLATFORM_DEF_H__ */