]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
20c700f8 FL |
2 | /* |
3 | * Copyright 2016 Freescale Semiconductor, Inc. | |
9ebde884 | 4 | * Copyright 2019 NXP |
20c700f8 FL |
5 | */ |
6 | ||
7 | #ifndef __CONFIG_H | |
8 | #define __CONFIG_H | |
9 | ||
20c700f8 FL |
10 | #define CONFIG_ARMV7_SECURE_BASE OCRAM_BASE_S_ADDR |
11 | ||
12 | #define CONFIG_SYS_FSL_CLK | |
13 | ||
20c700f8 FL |
14 | /* |
15 | * Size of malloc() pool | |
16 | */ | |
17 | #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 16 * 1024 * 1024) | |
18 | ||
19 | #define CONFIG_SYS_INIT_RAM_ADDR OCRAM_BASE_ADDR | |
20 | #define CONFIG_SYS_INIT_RAM_SIZE OCRAM_SIZE | |
21 | ||
20c700f8 | 22 | #define CONFIG_SYS_CLK_FREQ 100000000 |
20c700f8 FL |
23 | |
24 | /* | |
25 | * DDR: 800 MHz ( 1600 MT/s data rate ) | |
26 | */ | |
27 | ||
28 | #define DDR_SDRAM_CFG 0x470c0008 | |
29 | #define DDR_CS0_BNDS 0x008000bf | |
30 | #define DDR_CS0_CONFIG 0x80014302 | |
31 | #define DDR_TIMING_CFG_0 0x50550004 | |
32 | #define DDR_TIMING_CFG_1 0xbcb38c56 | |
33 | #define DDR_TIMING_CFG_2 0x0040d120 | |
34 | #define DDR_TIMING_CFG_3 0x010e1000 | |
35 | #define DDR_TIMING_CFG_4 0x00000001 | |
36 | #define DDR_TIMING_CFG_5 0x03401400 | |
37 | #define DDR_SDRAM_CFG_2 0x00401010 | |
38 | #define DDR_SDRAM_MODE 0x00061c60 | |
39 | #define DDR_SDRAM_MODE_2 0x00180000 | |
40 | #define DDR_SDRAM_INTERVAL 0x18600618 | |
41 | #define DDR_DDR_WRLVL_CNTL 0x8655f605 | |
42 | #define DDR_DDR_WRLVL_CNTL_2 0x05060607 | |
43 | #define DDR_DDR_WRLVL_CNTL_3 0x05050505 | |
44 | #define DDR_DDR_CDR1 0x80040000 | |
45 | #define DDR_DDR_CDR2 0x00000001 | |
46 | #define DDR_SDRAM_CLK_CNTL 0x02000000 | |
47 | #define DDR_DDR_ZQ_CNTL 0x89080600 | |
48 | #define DDR_CS0_CONFIG_2 0 | |
49 | #define DDR_SDRAM_CFG_MEM_EN 0x80000000 | |
50 | #define SDRAM_CFG2_D_INIT 0x00000010 | |
51 | #define DDR_CDR2_VREF_TRAIN_EN 0x00000080 | |
52 | #define SDRAM_CFG2_FRC_SR 0x80000000 | |
53 | #define SDRAM_CFG_BI 0x00000001 | |
54 | ||
55 | #ifdef CONFIG_RAMBOOT_PBL | |
56 | #define CONFIG_SYS_FSL_PBL_PBI \ | |
57 | board/freescale/ls1021aiot/ls102xa_pbi.cfg | |
58 | #endif | |
59 | ||
60 | #ifdef CONFIG_SD_BOOT | |
61 | #define CONFIG_SYS_FSL_PBL_RCW \ | |
62 | board/freescale/ls1021aiot/ls102xa_rcw_sd.cfg | |
20c700f8 FL |
63 | #define CONFIG_SPL_LIBCOMMON_SUPPORT |
64 | #define CONFIG_SPL_LIBGENERIC_SUPPORT | |
65 | #define CONFIG_SPL_ENV_SUPPORT | |
66 | #define CONFIG_SPL_MPC8XXX_INIT_DDR_SUPPORT | |
975e7cf3 | 67 | #define CONFIG_SPL_I2C |
078111b9 | 68 | #define CONFIG_SPL_WATCHDOG |
20c700f8 FL |
69 | #define CONFIG_SPL_MMC_SUPPORT |
70 | #define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0xe8 | |
20c700f8 | 71 | |
20c700f8 FL |
72 | #define CONFIG_SPL_MAX_SIZE 0x1a000 |
73 | #define CONFIG_SPL_STACK 0x1001d000 | |
74 | #define CONFIG_SPL_PAD_TO 0x1c000 | |
20c700f8 FL |
75 | |
76 | #define CONFIG_SYS_SPL_MALLOC_START (CONFIG_SYS_TEXT_BASE + \ | |
77 | CONFIG_SYS_MONITOR_LEN) | |
78 | #define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000 | |
79 | #define CONFIG_SPL_BSS_START_ADDR 0x80100000 | |
80 | #define CONFIG_SPL_BSS_MAX_SIZE 0x80000 | |
81 | #define CONFIG_SYS_MONITOR_LEN 0x80000 | |
20c700f8 FL |
82 | #endif |
83 | ||
20c700f8 FL |
84 | #define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000UL |
85 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE | |
86 | ||
15809705 AW |
87 | #define CONFIG_CHIP_SELECTS_PER_CTRL 4 |
88 | ||
20c700f8 FL |
89 | /* |
90 | * Serial Port | |
91 | */ | |
20c700f8 FL |
92 | #define CONFIG_SYS_NS16550_SERIAL |
93 | #define CONFIG_SYS_NS16550_REG_SIZE 1 | |
94 | #define CONFIG_SYS_NS16550_CLK get_serial_clock() | |
20c700f8 FL |
95 | |
96 | /* | |
97 | * I2C | |
98 | */ | |
9ebde884 | 99 | |
20c700f8 | 100 | /* EEPROM */ |
20c700f8 FL |
101 | #define CONFIG_SYS_I2C_EEPROM_NXID |
102 | #define CONFIG_SYS_EEPROM_BUS_NUM 0 | |
20c700f8 FL |
103 | |
104 | /* | |
105 | * MMC | |
106 | */ | |
20c700f8 FL |
107 | |
108 | /* SATA */ | |
20c700f8 FL |
109 | #define CONFIG_SCSI_AHCI_PLAT |
110 | #ifndef PCI_DEVICE_ID_FREESCALE_AHCI | |
111 | #define PCI_DEVICE_ID_FREESCALE_AHCI 0x0440 | |
112 | #endif | |
113 | #define CONFIG_SCSI_DEV_LIST {PCI_VENDOR_ID_FREESCALE, \ | |
114 | PCI_DEVICE_ID_FREESCALE_AHCI} | |
115 | ||
116 | #define CONFIG_SYS_SCSI_MAX_SCSI_ID 1 | |
117 | #define CONFIG_SYS_SCSI_MAX_LUN 1 | |
118 | #define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \ | |
119 | CONFIG_SYS_SCSI_MAX_LUN) | |
120 | ||
20c700f8 FL |
121 | /* SPI */ |
122 | #if defined(CONFIG_QSPI_BOOT) || defined(CONFIG_SD_BOOT_QSPI) | |
123 | #define CONFIG_SPI_FLASH_SPANSION | |
20c700f8 FL |
124 | #endif |
125 | ||
20c700f8 FL |
126 | /* |
127 | * eTSEC | |
128 | */ | |
20c700f8 FL |
129 | |
130 | #ifdef CONFIG_TSEC_ENET | |
20c700f8 FL |
131 | #define CONFIG_MII_DEFAULT_TSEC 1 |
132 | #define CONFIG_TSEC1 1 | |
133 | #define CONFIG_TSEC1_NAME "eTSEC1" | |
134 | #define CONFIG_TSEC2 1 | |
135 | #define CONFIG_TSEC2_NAME "eTSEC2" | |
136 | ||
137 | #define TSEC1_PHY_ADDR 1 | |
138 | #define TSEC2_PHY_ADDR 3 | |
139 | ||
140 | #define TSEC1_FLAGS (TSEC_GIGABIT | TSEC_REDUCED) | |
141 | #define TSEC2_FLAGS (TSEC_GIGABIT | TSEC_REDUCED) | |
142 | ||
143 | #define TSEC1_PHYIDX 0 | |
144 | #define TSEC2_PHYIDX 0 | |
145 | ||
146 | #define CONFIG_ETHPRIME "eTSEC2" | |
147 | ||
20c700f8 FL |
148 | #define CONFIG_HAS_ETH0 |
149 | #define CONFIG_HAS_ETH1 | |
150 | #define CONFIG_HAS_ETH2 | |
151 | #endif | |
152 | ||
153 | /* PCIe */ | |
20c700f8 FL |
154 | #define CONFIG_PCIE1 /* PCIE controler 1 */ |
155 | #define CONFIG_PCIE2 /* PCIE controler 2 */ | |
156 | ||
20c700f8 FL |
157 | #define FSL_PCIE_COMPAT "fsl,ls1021a-pcie" |
158 | ||
20c700f8 | 159 | #ifdef CONFIG_PCI |
20c700f8 | 160 | #define CONFIG_PCI_SCAN_SHOW |
20c700f8 FL |
161 | #endif |
162 | ||
20c700f8 | 163 | #define CONFIG_CMDLINE_TAG |
20c700f8 | 164 | |
20c700f8 FL |
165 | #define CONFIG_PEN_ADDR_BIG_ENDIAN |
166 | #define CONFIG_LAYERSCAPE_NS_ACCESS | |
167 | #define CONFIG_SMP_PEN_ADDR 0x01ee0200 | |
e4916e85 | 168 | #define COUNTER_FREQUENCY 12500000 |
20c700f8 FL |
169 | |
170 | #define CONFIG_HWCONFIG | |
171 | #define HWCONFIG_BUFFER_SIZE 256 | |
172 | ||
173 | #define CONFIG_FSL_DEVICE_DISABLE | |
174 | ||
175 | #define CONFIG_EXTRA_ENV_SETTINGS \ | |
176 | "bootargs=root=/dev/ram0 rw console=ttyS0,115200\0" \ | |
c463eeb4 | 177 | "initrd_high=0xffffffff\0" |
20c700f8 FL |
178 | |
179 | /* | |
180 | * Miscellaneous configurable options | |
181 | */ | |
c463eeb4 AW |
182 | #define CONFIG_SYS_BOOTMAPSZ (256 << 20) |
183 | ||
20c700f8 FL |
184 | #define CONFIG_SYS_LOAD_ADDR 0x82000000 |
185 | ||
186 | #define CONFIG_LS102XA_STREAM_ID | |
187 | ||
20c700f8 FL |
188 | #define CONFIG_SYS_INIT_SP_OFFSET \ |
189 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) | |
190 | #define CONFIG_SYS_INIT_SP_ADDR \ | |
191 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) | |
192 | ||
193 | #ifdef CONFIG_SPL_BUILD | |
194 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SPL_TEXT_BASE | |
195 | #else | |
196 | /* start of monitor */ | |
197 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE | |
198 | #endif | |
199 | ||
200 | #define CONFIG_SYS_QE_FW_ADDR 0x67f40000 | |
201 | ||
20c700f8 FL |
202 | #define CONFIG_OF_BOARD_SETUP |
203 | #define CONFIG_OF_STDOUT_VIA_ALIAS | |
20c700f8 | 204 | |
20c700f8 FL |
205 | #include <asm/fsl_secure_boot.h> |
206 | ||
207 | #endif |