blob: ba93254aac85be979c56dfea7a9bed8753746100 [file] [log] [blame]
Sandrine Bailleux798140d2014-07-17 16:06:39 +01001/*
Dan Handley7bef8002015-03-19 19:22:44 +00002 * Copyright (c) 2014-2015, ARM Limited and Contributors. All rights reserved.
Sandrine Bailleux798140d2014-07-17 16:06:39 +01003 *
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 __PLATFORM_DEF_H__
32#define __PLATFORM_DEF_H__
33
Dan Handley7bef8002015-03-19 19:22:44 +000034#include <arm_def.h>
35#include <board_arm_def.h>
36#include <board_css_def.h>
37#include <common_def.h>
38#include <css_def.h>
39#include <soc_css_def.h>
40#include <tzc400.h>
41#include <v2m_def.h>
Sandrine Bailleux1fe43362014-07-17 09:56:29 +010042#include "../juno_def.h"
Sandrine Bailleux798140d2014-07-17 16:06:39 +010043
Juan Castillo6ba59eb2014-11-07 09:44:58 +000044
45/*
Dan Handley7bef8002015-03-19 19:22:44 +000046 * Most platform porting definitions provided by included headers
Juan Castillo6ba59eb2014-11-07 09:44:58 +000047 */
Sandrine Bailleux798140d2014-07-17 16:06:39 +010048
Juan Castillo6ba59eb2014-11-07 09:44:58 +000049/*
Dan Handley7bef8002015-03-19 19:22:44 +000050 * Required ARM standard platform porting definitions
Juan Castillo6ba59eb2014-11-07 09:44:58 +000051 */
Dan Handley7bef8002015-03-19 19:22:44 +000052#define PLAT_ARM_CLUSTER0_CORE_COUNT 2
53#define PLAT_ARM_CLUSTER1_CORE_COUNT 4
Sandrine Bailleux798140d2014-07-17 16:06:39 +010054
Dan Handley7bef8002015-03-19 19:22:44 +000055/* Use the bypass address */
56#define PLAT_ARM_TRUSTED_ROM_BASE V2M_FLASH0_BASE + BL1_ROM_BYPASS_OFFSET
Sandrine Bailleux798140d2014-07-17 16:06:39 +010057
Juan Castillo6ba59eb2014-11-07 09:44:58 +000058/*
Dan Handley7bef8002015-03-19 19:22:44 +000059 * Actual ROM size on Juno is 64 KB, but TBB currently requires at least 80 KB
60 * in debug mode. We can test TBB on Juno bypassing the ROM and using 128 KB of
61 * flash
Juan Castillo6ba59eb2014-11-07 09:44:58 +000062 */
Dan Handley7bef8002015-03-19 19:22:44 +000063#if TRUSTED_BOARD_BOOT
64#define PLAT_ARM_TRUSTED_ROM_SIZE 0x00020000
Juan Castillo921b8772014-09-05 17:29:38 +010065#else
Dan Handley7bef8002015-03-19 19:22:44 +000066#define PLAT_ARM_TRUSTED_ROM_SIZE 0x00010000
67#endif /* TRUSTED_BOARD_BOOT */
Sandrine Bailleux798140d2014-07-17 16:06:39 +010068
Sandrine Bailleux798140d2014-07-17 16:06:39 +010069
Dan Handley7bef8002015-03-19 19:22:44 +000070/* CCI related constants */
71#define PLAT_ARM_CCI_BASE 0x2c090000
72#define PLAT_ARM_CCI_CLUSTER0_SL_IFACE_IX 4
73#define PLAT_ARM_CCI_CLUSTER1_SL_IFACE_IX 3
Juan Castillo921b8772014-09-05 17:29:38 +010074
Dan Handley7bef8002015-03-19 19:22:44 +000075/* TZC related constants */
76#define PLAT_ARM_TZC_NS_DEV_ACCESS ( \
77 TZC_REGION_ACCESS_RDWR(TZC400_NSAID_CCI400) | \
78 TZC_REGION_ACCESS_RDWR(TZC400_NSAID_PCIE) | \
79 TZC_REGION_ACCESS_RDWR(TZC400_NSAID_HDLCD0) | \
80 TZC_REGION_ACCESS_RDWR(TZC400_NSAID_HDLCD1) | \
81 TZC_REGION_ACCESS_RDWR(TZC400_NSAID_USB) | \
82 TZC_REGION_ACCESS_RDWR(TZC400_NSAID_DMA330) | \
83 TZC_REGION_ACCESS_RDWR(TZC400_NSAID_THINLINKS) | \
84 TZC_REGION_ACCESS_RDWR(TZC400_NSAID_AP) | \
85 TZC_REGION_ACCESS_RDWR(TZC400_NSAID_GPU) | \
86 TZC_REGION_ACCESS_RDWR(TZC400_NSAID_CORESIGHT))
Juan Castillo921b8772014-09-05 17:29:38 +010087
Dan Handley7bef8002015-03-19 19:22:44 +000088/*
89 * Required ARM CSS based platform porting definitions
90 */
Juan Castillo921b8772014-09-05 17:29:38 +010091
Dan Handley7bef8002015-03-19 19:22:44 +000092/* GIC related constants (no GICR in GIC-400) */
93#define PLAT_CSS_GICD_BASE 0x2c010000
94#define PLAT_CSS_GICR_BASE 0x0
95#define PLAT_CSS_GICC_BASE 0x2c02f000
96#define PLAT_CSS_GICH_BASE 0x2c04f000
97#define PLAT_CSS_GICV_BASE 0x2c06f000
Sandrine Bailleux798140d2014-07-17 16:06:39 +010098
Vikram Kanigirif3bcea22015-06-24 17:51:09 +010099#define PLAT_CSS_IRQ_SEC_LIST CSS_IRQ_MHU, \
100 CSS_IRQ_GPU_SMMU_0, \
101 CSS_IRQ_TZC, \
102 CSS_IRQ_TZ_WDOG, \
103 CSS_IRQ_SEC_SYS_TIMER, \
104 JUNO_IRQ_DMA_SMMU, \
105 JUNO_IRQ_HDLCD0_SMMU, \
106 JUNO_IRQ_HDLCD1_SMMU, \
107 JUNO_IRQ_USB_SMMU, \
108 JUNO_IRQ_THIN_LINKS_SMMU, \
109 JUNO_IRQ_SEC_I2C, \
110 JUNO_IRQ_GPU_SMMU_1, \
111 JUNO_IRQ_ETR_SMMU
Sandrine Bailleux798140d2014-07-17 16:06:39 +0100112
Dan Handley7bef8002015-03-19 19:22:44 +0000113/*
114 * Required ARM CSS SoC based platform porting definitions
115 */
116
117/* CSS SoC NIC-400 Global Programmers View (GPV) */
118#define PLAT_SOC_CSS_NIC400_BASE 0x2a000000
Sandrine Bailleux798140d2014-07-17 16:06:39 +0100119
Soby Mathew523d6332015-01-08 18:02:19 +0000120
Sandrine Bailleux798140d2014-07-17 16:06:39 +0100121#endif /* __PLATFORM_DEF_H__ */