blob: 15f0432b394a3a1dca91c1b365362171056955cb [file] [log] [blame]
Yann Gautier4b0c72a2018-07-16 10:54:09 +02001/*
2 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef STM32MP1_DEF_H
8#define STM32MP1_DEF_H
9
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <common/tbbr/tbbr_img_def.h>
11#include <lib/utils_def.h>
12#include <lib/xlat_tables/xlat_tables_defs.h>
Yann Gautier4b0c72a2018-07-16 10:54:09 +020013
Yann Gautier57e282b2019-01-07 11:17:24 +010014#ifndef __ASSEMBLY__
15#include <boot_api.h>
16#include <stm32mp1_dt.h>
17#include <stm32mp1_private.h>
18#endif
19
Yann Gautier4b0c72a2018-07-16 10:54:09 +020020/*******************************************************************************
21 * STM32MP1 memory map related constants
22 ******************************************************************************/
23
24#define STM32MP1_SRAM_BASE U(0x2FFC0000)
25#define STM32MP1_SRAM_SIZE U(0x00040000)
26
27/* DDR configuration */
28#define STM32MP1_DDR_BASE U(0xC0000000)
29#define STM32MP1_DDR_SIZE_DFLT U(0x20000000) /* 512 MB */
30#define STM32MP1_DDR_MAX_SIZE U(0x40000000) /* Max 1GB */
31#define STM32MP1_DDR_SPEED_DFLT 528
32
33/* DDR power initializations */
34#ifndef __ASSEMBLY__
35enum ddr_type {
36 STM32MP_DDR3,
37 STM32MP_LPDDR2,
38};
39#endif
40
41/* Section used inside TF binaries */
42#define STM32MP1_PARAM_LOAD_SIZE U(0x00002400) /* 9 Ko for param */
43/* 256 Octets reserved for header */
44#define STM32MP1_HEADER_SIZE U(0x00000100)
45
46#define STM32MP1_BINARY_BASE (STM32MP1_SRAM_BASE + \
47 STM32MP1_PARAM_LOAD_SIZE + \
48 STM32MP1_HEADER_SIZE)
49
50#define STM32MP1_BINARY_SIZE (STM32MP1_SRAM_SIZE - \
51 (STM32MP1_PARAM_LOAD_SIZE + \
52 STM32MP1_HEADER_SIZE))
53
54#if STACK_PROTECTOR_ENABLED
55#define STM32MP1_BL32_SIZE U(0x00012000) /* 72 Ko for BL32 */
56#else
57#define STM32MP1_BL32_SIZE U(0x00011000) /* 68 Ko for BL32 */
58#endif
59
60#define STM32MP1_BL32_BASE (STM32MP1_SRAM_BASE + \
61 STM32MP1_SRAM_SIZE - \
62 STM32MP1_BL32_SIZE)
63
64#if STACK_PROTECTOR_ENABLED
65#define STM32MP1_BL2_SIZE U(0x00015000) /* 84 Ko for BL2 */
66#else
67#define STM32MP1_BL2_SIZE U(0x00013000) /* 76 Ko for BL2 */
68#endif
69
70#define STM32MP1_BL2_BASE (STM32MP1_BL32_BASE - \
71 STM32MP1_BL2_SIZE)
72
73/* BL2 and BL32/sp_min require 5 tables */
74#define MAX_XLAT_TABLES 5
75
76/*
77 * MAX_MMAP_REGIONS is usually:
78 * BL stm32mp1_mmap size + mmap regions in *_plat_arch_setup
79 */
Yann Gautier9d135e42018-07-16 19:36:06 +020080#if defined(IMAGE_BL2)
81 #define MAX_MMAP_REGIONS 11
82#endif
83#if defined(IMAGE_BL32)
84 #define MAX_MMAP_REGIONS 6
85#endif
Yann Gautier4b0c72a2018-07-16 10:54:09 +020086
87/* DTB initialization value */
88#define STM32MP1_DTB_SIZE U(0x00004000) /* 16Ko for DTB */
89
90#define STM32MP1_DTB_BASE (STM32MP1_BL2_BASE - \
91 STM32MP1_DTB_SIZE)
92
93#define STM32MP1_BL33_BASE (STM32MP1_DDR_BASE + U(0x100000))
94
95/*******************************************************************************
96 * STM32MP1 device/io map related constants (used for MMU)
97 ******************************************************************************/
98#define STM32MP1_DEVICE1_BASE U(0x40000000)
99#define STM32MP1_DEVICE1_SIZE U(0x40000000)
100
101#define STM32MP1_DEVICE2_BASE U(0x80000000)
102#define STM32MP1_DEVICE2_SIZE U(0x40000000)
103
104/*******************************************************************************
105 * STM32MP1 RCC
106 ******************************************************************************/
107#define RCC_BASE U(0x50000000)
108
109/*******************************************************************************
110 * STM32MP1 PWR
111 ******************************************************************************/
112#define PWR_BASE U(0x50001000)
113
114/*******************************************************************************
115 * STM32MP1 UART
116 ******************************************************************************/
117#define USART1_BASE U(0x5C000000)
118#define USART2_BASE U(0x4000E000)
119#define USART3_BASE U(0x4000F000)
120#define UART4_BASE U(0x40010000)
121#define UART5_BASE U(0x40011000)
122#define USART6_BASE U(0x44003000)
123#define UART7_BASE U(0x40018000)
124#define UART8_BASE U(0x40019000)
125#define STM32MP1_DEBUG_USART_BASE UART4_BASE
126#define STM32MP1_UART_BAUDRATE 115200
127
128/*******************************************************************************
129 * STM32MP1 GIC-400
130 ******************************************************************************/
131#define STM32MP1_GICD_BASE U(0xA0021000)
132#define STM32MP1_GICC_BASE U(0xA0022000)
133#define STM32MP1_GICH_BASE U(0xA0024000)
134#define STM32MP1_GICV_BASE U(0xA0026000)
135
136/*******************************************************************************
137 * STM32MP1 TZC (TZ400)
138 ******************************************************************************/
139#define STM32MP1_TZC_BASE U(0x5C006000)
140
141#define STM32MP1_TZC_A7_ID U(0)
142#define STM32MP1_TZC_LCD_ID U(3)
143#define STM32MP1_TZC_GPU_ID U(4)
144#define STM32MP1_TZC_MDMA_ID U(5)
145#define STM32MP1_TZC_DMA_ID U(6)
146#define STM32MP1_TZC_USB_HOST_ID U(7)
147#define STM32MP1_TZC_USB_OTG_ID U(8)
148#define STM32MP1_TZC_SDMMC_ID U(9)
149#define STM32MP1_TZC_ETH_ID U(10)
150#define STM32MP1_TZC_DAP_ID U(15)
151
152#define STM32MP1_MEMORY_NS 0
153#define STM32MP1_MEMORY_SECURE 1
154
155#define STM32MP1_FILTER_BIT_ALL 3
156
157/*******************************************************************************
158 * STM32MP1 SDMMC
159 ******************************************************************************/
160#define STM32MP1_SDMMC1_BASE U(0x58005000)
161#define STM32MP1_SDMMC2_BASE U(0x58007000)
162#define STM32MP1_SDMMC3_BASE U(0x48004000)
163
Yann Gautier5380b0d2018-10-15 09:36:04 +0200164#define STM32MP1_MMC_INIT_FREQ 400000 /*400 KHz*/
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200165#define STM32MP1_SD_NORMAL_SPEED_MAX_FREQ 25000000 /*25 MHz*/
166#define STM32MP1_SD_HIGH_SPEED_MAX_FREQ 50000000 /*50 MHz*/
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200167#define STM32MP1_EMMC_NORMAL_SPEED_MAX_FREQ 26000000 /*26 MHz*/
168#define STM32MP1_EMMC_HIGH_SPEED_MAX_FREQ 52000000 /*52 MHz*/
169
170/*******************************************************************************
Yann Gautier41934662018-07-20 11:36:05 +0200171 * STM32MP1 TAMP
172 ******************************************************************************/
173#define TAMP_BASE U(0x5C00A000)
174#define TAMP_BKP_REGISTER_BASE (TAMP_BASE + U(0x100))
175
176#if !(defined(__LINKER__) || defined(__ASSEMBLY__))
177static inline uint32_t tamp_bkpr(uint32_t idx)
178{
179 return TAMP_BKP_REGISTER_BASE + (idx << 2);
180}
181#endif
182
183/*******************************************************************************
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200184 * STM32MP1 DDRCTRL
185 ******************************************************************************/
186#define DDRCTRL_BASE U(0x5A003000)
187
188/*******************************************************************************
189 * STM32MP1 DDRPHYC
190 ******************************************************************************/
191#define DDRPHYC_BASE U(0x5A004000)
192
193/*******************************************************************************
194 * STM32MP1 I2C4
195 ******************************************************************************/
196#define I2C4_BASE U(0x5C002000)
197
198#endif /* STM32MP1_DEF_H */