blob: 32190e41f94c149390d23e8d408f75c5207d7853 [file] [log] [blame]
Soren Brinkmann76fcae32016-03-06 20:16:27 -08001/*
2 * Copyright (c) 2014-2016, ARM Limited and Contributors. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 *
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 *
14 * Neither the name of ARM nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without specific
16 * prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#ifndef __ZYNQMP_DEF_H__
32#define __ZYNQMP_DEF_H__
33
34#include <common_def.h>
35
36/* Firmware Image Package */
37#define ZYNQMP_PRIMARY_CPU 0
38
39/* Memory location options for Shared data and TSP in ZYNQMP */
40#define ZYNQMP_IN_TRUSTED_SRAM 0
41#define ZYNQMP_IN_TRUSTED_DRAM 1
42
43/*******************************************************************************
44 * ZYNQMP memory map related constants
45 ******************************************************************************/
46
47#define ZYNQMP_TRUSTED_SRAM_BASE 0xFFFC0000
48#define ZYNQMP_TRUSTED_SRAM_SIZE 0x00040000
49#define ZYNQMP_TRUSTED_SRAM_LIMIT (ZYNQMP_TRUSTED_SRAM_BASE + \
50 ZYNQMP_TRUSTED_SRAM_SIZE)
51
52
53/* Location of trusted dram on the base zynqmp */
54#define ZYNQMP_TRUSTED_DRAM_BASE 0x30000000 /* Can't overlap TZROM area */
55#define ZYNQMP_TRUSTED_DRAM_SIZE 0x10000000
56#define ZYNQMP_TRUSTED_DRAM_LIMIT (ZYNQMP_TRUSTED_DRAM_BASE + \
57 ZYNQMP_TRUSTED_DRAM_SIZE)
58
59/* Aggregate of all devices in the first GB */
60#define DEVICE0_BASE 0xFF000000
61#define DEVICE0_SIZE 0x00E00000
62#define DEVICE1_BASE 0xF9000000
63#define DEVICE1_SIZE 0x01000000
64
65/* For cpu reset APU space here too 0xFE5F1000 CRF_APB*/
66#define CRF_APB_BASE 0xFD1A0000
67#define CRF_APB_SIZE 0x00600000
68
69/* CRF registers and bitfields */
70#define CRF_APB_RST_FPD_APU (CRF_APB_BASE + 0X00000104)
71
72#define CRF_APB_RST_FPD_APU_ACPU_RESET (1 << 0)
73#define CRF_APB_RST_FPD_APU_ACPU_PWRON_RESET (1 << 10)
74
75/* CRL registers and bitfields */
76#define CRL_APB_BASE 0xFF5E0000
77#define CRL_APB_RPLL_CTRL (CRL_APB_BASE + 0x30)
78#define CRL_APB_TIMESTAMP_REF_CTRL (CRL_APB_BASE + 0x128)
79#define CRL_APB_RESET_CTRL (CRL_APB_BASE + 0x218)
80
81#define CRL_APB_TIMESTAMP_REF_CTRL_CLKACT_BIT (1 << 24)
82
83#define CRL_APB_RPLL_CTRL_BYPASS (1 << 3)
84
85#define CRL_APB_RESET_CTRL_SOFT_RESET (1 << 4)
86
87/* system counter registers and bitfields */
88#define IOU_SCNTRS_BASE 0xFF260000
89#define IOU_SCNTRS_CONTROL (IOU_SCNTRS_BASE + 0)
90#define IOU_SCNTRS_BASEFREQ (IOU_SCNTRS_BASE + 0x20)
91
92#define IOU_SCNTRS_CONTROL_EN (1 << 0)
93
94/* APU registers and bitfields */
95#define APU_BASE 0xFD5C0000
96#define APU_CONFIG_0 (APU_BASE + 0x20)
97#define APU_RVBAR_L_0 (APU_BASE + 0x40)
98#define APU_RVBAR_H_0 (APU_BASE + 0x44)
99#define APU_PWRCTL (APU_BASE + 0x90)
100
101#define APU_CONFIG_0_VINITHI_SHIFT 8
102#define APU_0_PWRCTL_CPUPWRDWNREQ_MASK 1
103#define APU_1_PWRCTL_CPUPWRDWNREQ_MASK 2
104#define APU_2_PWRCTL_CPUPWRDWNREQ_MASK 4
105#define APU_3_PWRCTL_CPUPWRDWNREQ_MASK 8
106
107/* PMU registers and bitfields */
108#define PMU_GLOBAL_BASE 0xFFD80000
109#define PMU_GLOBAL_CNTRL (PMU_GLOBAL_BASE + 0)
110#define PMU_GLOBAL_REQ_PWRUP_STATUS (PMU_GLOBAL_BASE + 0x110)
111#define PMU_GLOBAL_REQ_PWRUP_EN (PMU_GLOBAL_BASE + 0x118)
112#define PMU_GLOBAL_REQ_PWRUP_DIS (PMU_GLOBAL_BASE + 0x11c)
113#define PMU_GLOBAL_REQ_PWRUP_TRIG (PMU_GLOBAL_BASE + 0x120)
114
115#define PMU_GLOBAL_CNTRL_FW_IS_PRESENT (1 << 4)
116
117#define DRAM1_BASE 0x00000000ull
118#define DRAM1_SIZE 0x10000000ull
119#define DRAM1_END (DRAM1_BASE + DRAM1_SIZE - 1)
120
121#define DRAM_BASE DRAM1_BASE
122#define DRAM_SIZE DRAM1_SIZE
123
124/* Load address of BL33 in the ZYNQMP port */
125#define PLAT_ARM_NS_IMAGE_OFFSET (DRAM1_BASE + 0x8000000) /* DRAM + 128MB */
126
127/*******************************************************************************
128 * CCI-400 related constants
129 ******************************************************************************/
130#define PLAT_ARM_CCI_BASE 0xFD6E0000
131#define PLAT_ARM_CCI_CLUSTER0_SL_IFACE_IX 3
132#define PLAT_ARM_CCI_CLUSTER1_SL_IFACE_IX 4
133
134/*******************************************************************************
135 * GIC-400 & interrupt handling related constants
136 ******************************************************************************/
137#define BASE_GICD_BASE 0xF9010000
138#define BASE_GICC_BASE 0xF9020000
139#define BASE_GICH_BASE 0xF9040000
140#define BASE_GICV_BASE 0xF9060000
141
142#define IRQ_SEC_IPI_APU 67
143#define ARM_IRQ_SEC_PHY_TIMER 29
144
145#define ARM_IRQ_SEC_SGI_0 8
146#define ARM_IRQ_SEC_SGI_1 9
147#define ARM_IRQ_SEC_SGI_2 10
148#define ARM_IRQ_SEC_SGI_3 11
149#define ARM_IRQ_SEC_SGI_4 12
150#define ARM_IRQ_SEC_SGI_5 13
151#define ARM_IRQ_SEC_SGI_6 14
152#define ARM_IRQ_SEC_SGI_7 15
153
154#define MAX_INTR_EL3 128
155
156/*******************************************************************************
157 * UART related constants
158 ******************************************************************************/
159#define ZYNQMP_UART0_BASE 0xFF000000
160#define ZYNQMP_UART1_BASE 0xFF001000
161
162#define PLAT_ARM_CRASH_UART_BASE ZYNQMP_UART0_BASE
163/* impossible to call C routine how it is done now - hardcode any value */
164#define PLAT_ARM_CRASH_UART_CLK_IN_HZ 100000000 /* FIXME */
165
166/* Must be non zero */
167#define ZYNQMP_UART_BAUDRATE 115200
168#define ARM_CONSOLE_BAUDRATE ZYNQMP_UART_BAUDRATE
169
170/* Silicon version detection */
171#define ZYNQMP_SILICON_VER_MASK 0xF000
172#define ZYNQMP_SILICON_VER_SHIFT 12
173#define ZYNQMP_CSU_VERSION_SILICON 0
174#define ZYNQMP_CSU_VERSION_EP108 1
175#define ZYNQMP_CSU_VERSION_VELOCE 2
176#define ZYNQMP_CSU_VERSION_QEMU 3
177
178#define ZYNQMP_RTL_VER_MASK 0xFF0
179#define ZYNQMP_RTL_VER_SHIFT 4
180
181#define ZYNQMP_PS_VER_MASK 0xF
182#define ZYNQMP_PS_VER_SHIFT 0
183
184#define ZYNQMP_CSU_BASEADDR 0xFFCA0000
185#define ZYNQMP_CSU_IDCODE_OFFSET 0x40
186
187#define ZYNQMP_CSU_IDCODE_XILINX_ID_SHIFT 0
188#define ZYNQMP_CSU_IDCODE_XILINX_ID_MASK (0xFFF << ZYNQMP_CSU_IDCODE_XILINX_ID_SHIFT)
189#define ZYNQMP_CSU_IDCODE_XILINX_ID 0x093
190
191#define ZYNQMP_CSU_IDCODE_SVD_SHIFT 12
192#define ZYNQMP_CSU_IDCODE_SVD_MASK (0xE << ZYNQMP_CSU_IDCODE_SVD_SHIFT)
193#define ZYNQMP_CSU_IDCODE_DEVICE_CODE_SHIFT 15
194#define ZYNQMP_CSU_IDCODE_DEVICE_CODE_MASK (0xF << ZYNQMP_CSU_IDCODE_DEVICE_CODE_SHIFT)
195#define ZYNQMP_CSU_IDCODE_SUB_FAMILY_SHIFT 19
196#define ZYNQMP_CSU_IDCODE_SUB_FAMILY_MASK (0x3 << ZYNQMP_CSU_IDCODE_SUB_FAMILY_SHIFT)
197#define ZYNQMP_CSU_IDCODE_FAMILY_SHIFT 21
198#define ZYNQMP_CSU_IDCODE_FAMILY_MASK (0x7F << ZYNQMP_CSU_IDCODE_FAMILY_SHIFT)
199#define ZYNQMP_CSU_IDCODE_FAMILY 0x23
200
201#define ZYNQMP_CSU_IDCODE_REVISION_SHIFT 28
202#define ZYNQMP_CSU_IDCODE_REVISION_MASK (0xF << ZYNQMP_CSU_IDCODE_REVISION_SHIFT)
203#define ZYNQMP_CSU_IDCODE_REVISION 0
204
205#define ZYNQMP_CSU_VERSION_OFFSET 0x44
206
207#endif /* __ZYNQMP_DEF_H__ */