blob: 1f58caabb5206beb841bc390055e44a601a9e4e1 [file] [log] [blame]
Varun Wadekar0f3baa02015-07-16 11:36:33 +05301/*
Steven Kao4d160ac2016-12-23 16:05:13 +08002 * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
Varun Wadekar0f3baa02015-07-16 11:36:33 +05303 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Varun Wadekar0f3baa02015-07-16 11:36:33 +05305 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef TEGRA_DEF_H
8#define TEGRA_DEF_H
Varun Wadekar0f3baa02015-07-16 11:36:33 +05309
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <lib/utils_def.h>
Varun Wadekar761ca732017-04-24 14:17:12 -070011
Varun Wadekar0f3baa02015-07-16 11:36:33 +053012/*******************************************************************************
13 * This value is used by the PSCI implementation during the `SYSTEM_SUSPEND`
14 * call as the `state-id` field in the 'power state' parameter.
15 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070016#define PSTATE_ID_SOC_POWERDN U(0xD)
Varun Wadekar0f3baa02015-07-16 11:36:33 +053017
18/*******************************************************************************
Varun Wadekar3ce54992016-01-19 13:55:19 -080019 * Platform power states (used by PSCI framework)
20 *
21 * - PLAT_MAX_RET_STATE should be less than lowest PSTATE_ID
22 * - PLAT_MAX_OFF_STATE should be greater than the highest PSTATE_ID
23 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070024#define PLAT_MAX_RET_STATE U(1)
25#define PLAT_MAX_OFF_STATE (PSTATE_ID_SOC_POWERDN + U(1))
Varun Wadekar3ce54992016-01-19 13:55:19 -080026
27/*******************************************************************************
Varun Wadekar0f3baa02015-07-16 11:36:33 +053028 * GIC memory map
29 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070030#define TEGRA_GICD_BASE U(0x50041000)
31#define TEGRA_GICC_BASE U(0x50042000)
Varun Wadekar0f3baa02015-07-16 11:36:33 +053032
33/*******************************************************************************
34 * Tegra micro-seconds timer constants
35 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070036#define TEGRA_TMRUS_BASE U(0x60005010)
37#define TEGRA_TMRUS_SIZE U(0x1000)
Varun Wadekar0f3baa02015-07-16 11:36:33 +053038
39/*******************************************************************************
40 * Tegra Clock and Reset Controller constants
41 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070042#define TEGRA_CAR_RESET_BASE U(0x60006000)
Varun Wadekara59a7c52017-04-26 08:31:50 -070043#define TEGRA_GPU_RESET_REG_OFFSET U(0x28C)
44#define GPU_RESET_BIT (U(1) << 24)
Varun Wadekar0f3baa02015-07-16 11:36:33 +053045
46/*******************************************************************************
47 * Tegra Flow Controller constants
48 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070049#define TEGRA_FLOWCTRL_BASE U(0x60007000)
Varun Wadekar0f3baa02015-07-16 11:36:33 +053050
51/*******************************************************************************
52 * Tegra Secure Boot Controller constants
53 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070054#define TEGRA_SB_BASE U(0x6000C200)
Varun Wadekar0f3baa02015-07-16 11:36:33 +053055
56/*******************************************************************************
57 * Tegra Exception Vectors constants
58 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070059#define TEGRA_EVP_BASE U(0x6000F000)
Varun Wadekar0f3baa02015-07-16 11:36:33 +053060
61/*******************************************************************************
Varun Wadekar28dcc212016-07-20 10:28:51 -070062 * Tegra Miscellaneous register constants
63 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070064#define TEGRA_MISC_BASE U(0x70000000)
65#define HARDWARE_REVISION_OFFSET U(0x804)
Varun Wadekar28dcc212016-07-20 10:28:51 -070066
67/*******************************************************************************
Varun Wadekard2014c62015-10-29 10:37:28 +053068 * Tegra UART controller base addresses
69 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070070#define TEGRA_UARTA_BASE U(0x70006000)
71#define TEGRA_UARTB_BASE U(0x70006040)
72#define TEGRA_UARTC_BASE U(0x70006200)
73#define TEGRA_UARTD_BASE U(0x70006300)
74#define TEGRA_UARTE_BASE U(0x70006400)
Varun Wadekard2014c62015-10-29 10:37:28 +053075
76/*******************************************************************************
Varun Wadekar0f3baa02015-07-16 11:36:33 +053077 * Tegra Power Mgmt Controller constants
78 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070079#define TEGRA_PMC_BASE U(0x7000E400)
Varun Wadekar0f3baa02015-07-16 11:36:33 +053080
81/*******************************************************************************
82 * Tegra Memory Controller constants
83 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070084#define TEGRA_MC_BASE U(0x70019000)
Varun Wadekar0f3baa02015-07-16 11:36:33 +053085
Varun Wadekar64443ca2016-12-12 16:14:57 -080086/* TZDRAM carveout configuration registers */
Varun Wadekar761ca732017-04-24 14:17:12 -070087#define MC_SECURITY_CFG0_0 U(0x70)
88#define MC_SECURITY_CFG1_0 U(0x74)
89#define MC_SECURITY_CFG3_0 U(0x9BC)
Varun Wadekar64443ca2016-12-12 16:14:57 -080090
91/* Video Memory carveout configuration registers */
Varun Wadekar761ca732017-04-24 14:17:12 -070092#define MC_VIDEO_PROTECT_BASE_HI U(0x978)
93#define MC_VIDEO_PROTECT_BASE_LO U(0x648)
94#define MC_VIDEO_PROTECT_SIZE_MB U(0x64c)
Varun Wadekar64443ca2016-12-12 16:14:57 -080095
Varun Wadekar0dc91812015-12-30 15:06:41 -080096/*******************************************************************************
97 * Tegra TZRAM constants
98 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070099#define TEGRA_TZRAM_BASE U(0x7C010000)
100#define TEGRA_TZRAM_SIZE U(0x10000)
Varun Wadekar0dc91812015-12-30 15:06:41 -0800101
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +0000102#endif /* TEGRA_DEF_H */