]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/include/asm/arch-fsl-layerscape/config.h
armv8/fsl_lsch3: Change arch to fsl-layerscape
[people/ms/u-boot.git] / arch / arm / include / asm / arch-fsl-layerscape / config.h
1 /*
2 * Copyright 2015, Freescale Semiconductor
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7 #ifndef _ASM_ARMV8_FSL_LAYERSCAPE_CONFIG_H_
8 #define _ASM_ARMV8_FSL_LAYERSCAPE_CONFIG_H_
9
10 #include <fsl_ddrc_version.h>
11
12 #ifdef CONFIG_SYS_FSL_DDR4
13 #define CONFIG_SYS_FSL_DDRC_GEN4
14 #else
15 #define CONFIG_SYS_FSL_DDRC_ARM_GEN3 /* Enable Freescale ARM DDR3 driver */
16 #endif
17 #define CONFIG_SYS_FSL_DDR /* Freescale DDR driver */
18 #define CONFIG_SYS_FSL_DDR_VER FSL_DDR_VER_5_0
19
20 #if defined(CONFIG_LS2085A)
21 #define CONFIG_MAX_CPUS 16
22 #define CONFIG_SYS_FSL_IFC_BANK_COUNT 8
23 #define CONFIG_NUM_DDR_CONTROLLERS 3
24 #define CONFIG_SYS_FSL_CLUSTER_CLOCKS { 1, 1, 4, 4 }
25 #define SRDS_MAX_LANES 8
26 #define CONFIG_SYS_FSL_SRDS_1
27 #define CONFIG_SYS_FSL_SRDS_2
28 #define CONFIG_SYS_PAGE_SIZE 0x10000
29 #define CONFIG_SYS_CACHELINE_SIZE 64
30 #ifndef L1_CACHE_BYTES
31 #define L1_CACHE_SHIFT 6
32 #define L1_CACHE_BYTES BIT(L1_CACHE_SHIFT)
33 #endif
34
35 #define CONFIG_SYS_FSL_OCRAM_BASE 0x18000000 /* initial RAM */
36 #define CONFIG_SYS_FSL_OCRAM_SIZE 0x00200000 /* 2M */
37
38 /* DDR */
39 #define CONFIG_SYS_FSL_DDR_LE
40 #define CONFIG_SYS_LS2_DDR_BLOCK1_SIZE ((phys_size_t)2 << 30)
41 #define CONFIG_MAX_MEM_MAPPED CONFIG_SYS_LS2_DDR_BLOCK1_SIZE
42
43 #define CONFIG_SYS_FSL_CCSR_GUR_LE
44 #define CONFIG_SYS_FSL_CCSR_SCFG_LE
45 #define CONFIG_SYS_FSL_ESDHC_LE
46 #define CONFIG_SYS_FSL_IFC_LE
47
48 #define CONFIG_SYS_MEMAC_LITTLE_ENDIAN
49
50 /* Generic Interrupt Controller Definitions */
51 #define GICD_BASE 0x06000000
52 #define GICR_BASE 0x06100000
53
54 /* SMMU Defintions */
55 #define SMMU_BASE 0x05000000 /* GR0 Base */
56
57 /* Cache Coherent Interconnect */
58 #define CCI_MN_BASE 0x04000000
59 #define CCI_MN_RNF_NODEID_LIST 0x180
60 #define CCI_MN_DVM_DOMAIN_CTL 0x200
61 #define CCI_MN_DVM_DOMAIN_CTL_SET 0x210
62
63 #define CCI_RN_I_0_BASE (CCI_MN_BASE + 0x800000)
64 #define CCI_RN_I_2_BASE (CCI_MN_BASE + 0x820000)
65 #define CCI_RN_I_6_BASE (CCI_MN_BASE + 0x860000)
66 #define CCI_RN_I_12_BASE (CCI_MN_BASE + 0x8C0000)
67 #define CCI_RN_I_16_BASE (CCI_MN_BASE + 0x900000)
68 #define CCI_RN_I_20_BASE (CCI_MN_BASE + 0x940000)
69
70 #define CCI_S0_QOS_CONTROL_BASE(x) ((CCI_RN_I_0_BASE + (x * 0x10000)) + 0x10)
71 #define CCI_S1_QOS_CONTROL_BASE(x) ((CCI_RN_I_0_BASE + (x * 0x10000)) + 0x110)
72 #define CCI_S2_QOS_CONTROL_BASE(x) ((CCI_RN_I_0_BASE + (x * 0x10000)) + 0x210)
73
74 /* TZ Protection Controller Definitions */
75 #define TZPC_BASE 0x02200000
76 #define TZPCR0SIZE_BASE (TZPC_BASE)
77 #define TZPCDECPROT_0_STAT_BASE (TZPC_BASE + 0x800)
78 #define TZPCDECPROT_0_SET_BASE (TZPC_BASE + 0x804)
79 #define TZPCDECPROT_0_CLR_BASE (TZPC_BASE + 0x808)
80 #define TZPCDECPROT_1_STAT_BASE (TZPC_BASE + 0x80C)
81 #define TZPCDECPROT_1_SET_BASE (TZPC_BASE + 0x810)
82 #define TZPCDECPROT_1_CLR_BASE (TZPC_BASE + 0x814)
83 #define TZPCDECPROT_2_STAT_BASE (TZPC_BASE + 0x818)
84 #define TZPCDECPROT_2_SET_BASE (TZPC_BASE + 0x81C)
85 #define TZPCDECPROT_2_CLR_BASE (TZPC_BASE + 0x820)
86
87 #define CONFIG_SYS_FSL_ERRATUM_A008336
88 #define CONFIG_SYS_FSL_ERRATUM_A008511
89 #define CONFIG_SYS_FSL_ERRATUM_A008514
90 #define CONFIG_SYS_FSL_ERRATUM_A008585
91 #define CONFIG_SYS_FSL_ERRATUM_A008751
92 #else
93 #error SoC not defined
94 #endif
95
96 #endif /* _ASM_ARMV8_FSL_LAYERSCAPE_CONFIG_H_ */