blob: 2fe321b223887c74bdadcb54481318b568a0010a [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)
Jeetesh Burman48fef882018-01-22 15:40:08 +053044#define TEGRA_GPU_RESET_GPU_SET_OFFSET U(0x290)
Varun Wadekara59a7c52017-04-26 08:31:50 -070045#define GPU_RESET_BIT (U(1) << 24)
Jeetesh Burman48fef882018-01-22 15:40:08 +053046#define GPU_SET_BIT (U(1) << 24)
Varun Wadekar0f3baa02015-07-16 11:36:33 +053047
48/*******************************************************************************
49 * Tegra Flow Controller constants
50 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070051#define TEGRA_FLOWCTRL_BASE U(0x60007000)
Varun Wadekar0f3baa02015-07-16 11:36:33 +053052
53/*******************************************************************************
54 * Tegra Secure Boot Controller constants
55 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070056#define TEGRA_SB_BASE U(0x6000C200)
Varun Wadekar0f3baa02015-07-16 11:36:33 +053057
58/*******************************************************************************
59 * Tegra Exception Vectors constants
60 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070061#define TEGRA_EVP_BASE U(0x6000F000)
Varun Wadekar0f3baa02015-07-16 11:36:33 +053062
63/*******************************************************************************
Varun Wadekar28dcc212016-07-20 10:28:51 -070064 * Tegra Miscellaneous register constants
65 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070066#define TEGRA_MISC_BASE U(0x70000000)
67#define HARDWARE_REVISION_OFFSET U(0x804)
Varun Wadekar28dcc212016-07-20 10:28:51 -070068
69/*******************************************************************************
Varun Wadekard2014c62015-10-29 10:37:28 +053070 * Tegra UART controller base addresses
71 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070072#define TEGRA_UARTA_BASE U(0x70006000)
73#define TEGRA_UARTB_BASE U(0x70006040)
74#define TEGRA_UARTC_BASE U(0x70006200)
75#define TEGRA_UARTD_BASE U(0x70006300)
76#define TEGRA_UARTE_BASE U(0x70006400)
Varun Wadekard2014c62015-10-29 10:37:28 +053077
78/*******************************************************************************
Varun Wadekar0f3baa02015-07-16 11:36:33 +053079 * Tegra Power Mgmt Controller constants
80 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070081#define TEGRA_PMC_BASE U(0x7000E400)
Varun Wadekar0f3baa02015-07-16 11:36:33 +053082
83/*******************************************************************************
84 * Tegra Memory Controller constants
85 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -070086#define TEGRA_MC_BASE U(0x70019000)
Varun Wadekar0f3baa02015-07-16 11:36:33 +053087
Harvey Hsieh359be952017-08-21 15:01:53 +080088/* Memory Controller Interrupt Status */
89#define MC_INTSTATUS 0x00U
90
Varun Wadekar64443ca2016-12-12 16:14:57 -080091/* TZDRAM carveout configuration registers */
Varun Wadekar761ca732017-04-24 14:17:12 -070092#define MC_SECURITY_CFG0_0 U(0x70)
93#define MC_SECURITY_CFG1_0 U(0x74)
94#define MC_SECURITY_CFG3_0 U(0x9BC)
Varun Wadekar64443ca2016-12-12 16:14:57 -080095
96/* Video Memory carveout configuration registers */
Varun Wadekar761ca732017-04-24 14:17:12 -070097#define MC_VIDEO_PROTECT_BASE_HI U(0x978)
98#define MC_VIDEO_PROTECT_BASE_LO U(0x648)
99#define MC_VIDEO_PROTECT_SIZE_MB U(0x64c)
Varun Wadekar64443ca2016-12-12 16:14:57 -0800100
Varun Wadekar0dc91812015-12-30 15:06:41 -0800101/*******************************************************************************
102 * Tegra TZRAM constants
103 ******************************************************************************/
Varun Wadekar761ca732017-04-24 14:17:12 -0700104#define TEGRA_TZRAM_BASE U(0x7C010000)
105#define TEGRA_TZRAM_SIZE U(0x10000)
Varun Wadekar0dc91812015-12-30 15:06:41 -0800106
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +0000107#endif /* TEGRA_DEF_H */