Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 Freescale Semiconductor |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #ifndef __LS1046ARDB_H__ |
| 8 | #define __LS1046ARDB_H__ |
| 9 | |
| 10 | #include "ls1046a_common.h" |
| 11 | |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 12 | #define CONFIG_SYS_CLK_FREQ 100000000 |
| 13 | #define CONFIG_DDR_CLK_FREQ 100000000 |
| 14 | |
| 15 | #define CONFIG_LAYERSCAPE_NS_ACCESS |
| 16 | #define CONFIG_MISC_INIT_R |
| 17 | |
| 18 | #define CONFIG_DIMM_SLOTS_PER_CTLR 1 |
| 19 | /* Physical Memory Map */ |
| 20 | #define CONFIG_CHIP_SELECTS_PER_CTRL 4 |
| 21 | #define CONFIG_NR_DRAM_BANKS 2 |
| 22 | |
| 23 | #define CONFIG_DDR_SPD |
| 24 | #define SPD_EEPROM_ADDRESS 0x51 |
| 25 | #define CONFIG_SYS_SPD_BUS_NUM 0 |
| 26 | |
| 27 | #define CONFIG_DDR_ECC |
| 28 | #define CONFIG_ECC_INIT_VIA_DDRCONTROLLER |
| 29 | #define CONFIG_MEM_INIT_VALUE 0xdeadbeef |
| 30 | #define CONFIG_FSL_DDR_BIST /* enable built-in memory test */ |
Hou Zhiqiang | dc760ae | 2017-02-06 11:29:00 +0800 | [diff] [blame] | 31 | #ifndef CONFIG_SPL |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 32 | #define CONFIG_FSL_DDR_INTERACTIVE /* Interactive debugging */ |
Hou Zhiqiang | dc760ae | 2017-02-06 11:29:00 +0800 | [diff] [blame] | 33 | #endif |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 34 | |
| 35 | #ifdef CONFIG_RAMBOOT_PBL |
| 36 | #define CONFIG_SYS_FSL_PBL_PBI board/freescale/ls1046ardb/ls1046ardb_pbi.cfg |
| 37 | #endif |
| 38 | |
| 39 | #ifdef CONFIG_SD_BOOT |
| 40 | #ifdef CONFIG_EMMC_BOOT |
| 41 | #define CONFIG_SYS_FSL_PBL_RCW \ |
| 42 | board/freescale/ls1046ardb/ls1046ardb_rcw_emmc.cfg |
| 43 | #else |
| 44 | #define CONFIG_SYS_FSL_PBL_RCW board/freescale/ls1046ardb/ls1046ardb_rcw_sd.cfg |
| 45 | #endif |
| 46 | #endif |
| 47 | |
Sumit Garg | a52ff33 | 2017-03-30 09:53:13 +0530 | [diff] [blame] | 48 | #ifndef SPL_NO_IFC |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 49 | /* IFC */ |
| 50 | #define CONFIG_FSL_IFC |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 51 | /* |
| 52 | * NAND Flash Definitions |
| 53 | */ |
| 54 | #define CONFIG_NAND_FSL_IFC |
Sumit Garg | a52ff33 | 2017-03-30 09:53:13 +0530 | [diff] [blame] | 55 | #endif |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 56 | |
| 57 | #define CONFIG_SYS_NAND_BASE 0x7e800000 |
| 58 | #define CONFIG_SYS_NAND_BASE_PHYS CONFIG_SYS_NAND_BASE |
| 59 | |
| 60 | #define CONFIG_SYS_NAND_CSPR_EXT (0x0) |
| 61 | #define CONFIG_SYS_NAND_CSPR (CSPR_PHYS_ADDR(CONFIG_SYS_NAND_BASE_PHYS) \ |
| 62 | | CSPR_PORT_SIZE_8 \ |
| 63 | | CSPR_MSEL_NAND \ |
| 64 | | CSPR_V) |
| 65 | #define CONFIG_SYS_NAND_AMASK IFC_AMASK(64 * 1024) |
| 66 | #define CONFIG_SYS_NAND_CSOR (CSOR_NAND_ECC_ENC_EN /* ECC on encode */ \ |
| 67 | | CSOR_NAND_ECC_DEC_EN /* ECC on decode */ \ |
| 68 | | CSOR_NAND_ECC_MODE_8 /* 8-bit ECC */ \ |
| 69 | | CSOR_NAND_RAL_3 /* RAL = 3 Bytes */ \ |
| 70 | | CSOR_NAND_PGS_4K /* Page Size = 4K */ \ |
| 71 | | CSOR_NAND_SPRZ_224 /* Spare size = 224 */ \ |
| 72 | | CSOR_NAND_PB(64)) /* 64 Pages Per Block */ |
| 73 | |
| 74 | #define CONFIG_SYS_NAND_ONFI_DETECTION |
| 75 | |
| 76 | #define CONFIG_SYS_NAND_FTIM0 (FTIM0_NAND_TCCST(0x7) | \ |
| 77 | FTIM0_NAND_TWP(0x18) | \ |
| 78 | FTIM0_NAND_TWCHT(0x7) | \ |
| 79 | FTIM0_NAND_TWH(0xa)) |
| 80 | #define CONFIG_SYS_NAND_FTIM1 (FTIM1_NAND_TADLE(0x32) | \ |
| 81 | FTIM1_NAND_TWBE(0x39) | \ |
| 82 | FTIM1_NAND_TRR(0xe) | \ |
| 83 | FTIM1_NAND_TRP(0x18)) |
| 84 | #define CONFIG_SYS_NAND_FTIM2 (FTIM2_NAND_TRAD(0xf) | \ |
| 85 | FTIM2_NAND_TREH(0xa) | \ |
| 86 | FTIM2_NAND_TWHRE(0x1e)) |
| 87 | #define CONFIG_SYS_NAND_FTIM3 0x0 |
| 88 | |
| 89 | #define CONFIG_SYS_NAND_BASE_LIST { CONFIG_SYS_NAND_BASE } |
| 90 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
| 91 | #define CONFIG_MTD_NAND_VERIFY_WRITE |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 92 | |
| 93 | #define CONFIG_SYS_NAND_BLOCK_SIZE (128 * 1024) |
| 94 | |
| 95 | /* |
| 96 | * CPLD |
| 97 | */ |
| 98 | #define CONFIG_SYS_CPLD_BASE 0x7fb00000 |
| 99 | #define CPLD_BASE_PHYS CONFIG_SYS_CPLD_BASE |
| 100 | |
| 101 | #define CONFIG_SYS_CPLD_CSPR_EXT (0x0) |
| 102 | #define CONFIG_SYS_CPLD_CSPR (CSPR_PHYS_ADDR(CPLD_BASE_PHYS) | \ |
| 103 | CSPR_PORT_SIZE_8 | \ |
| 104 | CSPR_MSEL_GPCM | \ |
| 105 | CSPR_V) |
| 106 | #define CONFIG_SYS_CPLD_AMASK IFC_AMASK(64 * 1024) |
| 107 | #define CONFIG_SYS_CPLD_CSOR CSOR_NOR_ADM_SHIFT(16) |
| 108 | |
| 109 | /* CPLD Timing parameters for IFC GPCM */ |
| 110 | #define CONFIG_SYS_CPLD_FTIM0 (FTIM0_GPCM_TACSE(0x0e) | \ |
| 111 | FTIM0_GPCM_TEADC(0x0e) | \ |
| 112 | FTIM0_GPCM_TEAHC(0x0e)) |
| 113 | #define CONFIG_SYS_CPLD_FTIM1 (FTIM1_GPCM_TACO(0xff) | \ |
| 114 | FTIM1_GPCM_TRAD(0x3f)) |
| 115 | #define CONFIG_SYS_CPLD_FTIM2 (FTIM2_GPCM_TCS(0xf) | \ |
| 116 | FTIM2_GPCM_TCH(0xf) | \ |
| 117 | FTIM2_GPCM_TWP(0x3E)) |
| 118 | #define CONFIG_SYS_CPLD_FTIM3 0x0 |
| 119 | |
| 120 | /* IFC Timing Params */ |
| 121 | #define CONFIG_SYS_CSPR0_EXT CONFIG_SYS_NAND_CSPR_EXT |
| 122 | #define CONFIG_SYS_CSPR0 CONFIG_SYS_NAND_CSPR |
| 123 | #define CONFIG_SYS_AMASK0 CONFIG_SYS_NAND_AMASK |
| 124 | #define CONFIG_SYS_CSOR0 CONFIG_SYS_NAND_CSOR |
| 125 | #define CONFIG_SYS_CS0_FTIM0 CONFIG_SYS_NAND_FTIM0 |
| 126 | #define CONFIG_SYS_CS0_FTIM1 CONFIG_SYS_NAND_FTIM1 |
| 127 | #define CONFIG_SYS_CS0_FTIM2 CONFIG_SYS_NAND_FTIM2 |
| 128 | #define CONFIG_SYS_CS0_FTIM3 CONFIG_SYS_NAND_FTIM3 |
| 129 | |
| 130 | #define CONFIG_SYS_CSPR2_EXT CONFIG_SYS_CPLD_CSPR_EXT |
| 131 | #define CONFIG_SYS_CSPR2 CONFIG_SYS_CPLD_CSPR |
| 132 | #define CONFIG_SYS_AMASK2 CONFIG_SYS_CPLD_AMASK |
| 133 | #define CONFIG_SYS_CSOR2 CONFIG_SYS_CPLD_CSOR |
| 134 | #define CONFIG_SYS_CS2_FTIM0 CONFIG_SYS_CPLD_FTIM0 |
| 135 | #define CONFIG_SYS_CS2_FTIM1 CONFIG_SYS_CPLD_FTIM1 |
| 136 | #define CONFIG_SYS_CS2_FTIM2 CONFIG_SYS_CPLD_FTIM2 |
| 137 | #define CONFIG_SYS_CS2_FTIM3 CONFIG_SYS_CPLD_FTIM3 |
| 138 | |
| 139 | /* EEPROM */ |
| 140 | #define CONFIG_ID_EEPROM |
| 141 | #define CONFIG_SYS_I2C_EEPROM_NXID |
| 142 | #define CONFIG_SYS_EEPROM_BUS_NUM 0 |
| 143 | #define CONFIG_SYS_I2C_EEPROM_ADDR 0x53 |
| 144 | #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 |
| 145 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3 |
| 146 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 5 |
| 147 | #define I2C_RETIMER_ADDR 0x18 |
| 148 | |
Hou Zhiqiang | dccef2e | 2016-12-09 16:09:01 +0800 | [diff] [blame] | 149 | /* PMIC */ |
| 150 | #define CONFIG_POWER |
| 151 | #ifdef CONFIG_POWER |
| 152 | #define CONFIG_POWER_I2C |
| 153 | #endif |
| 154 | |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 155 | /* |
| 156 | * Environment |
| 157 | */ |
Sumit Garg | a52ff33 | 2017-03-30 09:53:13 +0530 | [diff] [blame] | 158 | #ifndef SPL_NO_ENV |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 159 | #define CONFIG_ENV_OVERWRITE |
Sumit Garg | a52ff33 | 2017-03-30 09:53:13 +0530 | [diff] [blame] | 160 | #endif |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 161 | |
| 162 | #if defined(CONFIG_SD_BOOT) |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 163 | #define CONFIG_SYS_MMC_ENV_DEV 0 |
Alison Wang | 8104deb | 2017-05-16 10:45:59 +0800 | [diff] [blame] | 164 | #define CONFIG_ENV_OFFSET (3 * 1024 * 1024) |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 165 | #define CONFIG_ENV_SIZE 0x2000 |
| 166 | #else |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 167 | #define CONFIG_ENV_SIZE 0x2000 /* 8KB */ |
Alison Wang | 8104deb | 2017-05-16 10:45:59 +0800 | [diff] [blame] | 168 | #define CONFIG_ENV_OFFSET 0x300000 /* 3MB */ |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 169 | #define CONFIG_ENV_SECT_SIZE 0x40000 /* 256KB */ |
| 170 | #endif |
| 171 | |
York Sun | 99b47c2 | 2017-04-25 08:39:51 -0700 | [diff] [blame] | 172 | #define AQR105_IRQ_MASK 0x80000000 |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 173 | /* FMan */ |
Sumit Garg | a52ff33 | 2017-03-30 09:53:13 +0530 | [diff] [blame] | 174 | #ifndef SPL_NO_FMAN |
York Sun | 99b47c2 | 2017-04-25 08:39:51 -0700 | [diff] [blame] | 175 | |
| 176 | #ifdef CONFIG_NET |
York Sun | 99b47c2 | 2017-04-25 08:39:51 -0700 | [diff] [blame] | 177 | #define CONFIG_PHY_REALTEK |
| 178 | #endif |
| 179 | |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 180 | #ifdef CONFIG_SYS_DPAA_FMAN |
| 181 | #define CONFIG_FMAN_ENET |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 182 | #define CONFIG_PHY_AQUANTIA |
York Sun | 99b47c2 | 2017-04-25 08:39:51 -0700 | [diff] [blame] | 183 | #define CONFIG_PHYLIB_10G |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 184 | #define RGMII_PHY1_ADDR 0x1 |
| 185 | #define RGMII_PHY2_ADDR 0x2 |
| 186 | |
| 187 | #define SGMII_PHY1_ADDR 0x3 |
| 188 | #define SGMII_PHY2_ADDR 0x4 |
| 189 | |
| 190 | #define FM1_10GEC1_PHY_ADDR 0x0 |
| 191 | |
Prabhakar Kushwaha | 4ace304 | 2017-11-23 16:51:48 +0530 | [diff] [blame] | 192 | #define FDT_SEQ_MACADDR_FROM_ENV |
| 193 | |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 194 | #define CONFIG_ETHPRIME "FM1@DTSEC3" |
| 195 | #endif |
York Sun | 99b47c2 | 2017-04-25 08:39:51 -0700 | [diff] [blame] | 196 | |
Sumit Garg | a52ff33 | 2017-03-30 09:53:13 +0530 | [diff] [blame] | 197 | #endif |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 198 | |
| 199 | /* QSPI device */ |
Sumit Garg | a52ff33 | 2017-03-30 09:53:13 +0530 | [diff] [blame] | 200 | #ifndef SPL_NO_QSPI |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 201 | #ifdef CONFIG_FSL_QSPI |
| 202 | #define CONFIG_SPI_FLASH_SPANSION |
| 203 | #define FSL_QSPI_FLASH_SIZE (1 << 26) |
| 204 | #define FSL_QSPI_FLASH_NUM 2 |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 205 | #endif |
Sumit Garg | a52ff33 | 2017-03-30 09:53:13 +0530 | [diff] [blame] | 206 | #endif |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 207 | |
Sumit Garg | a52ff33 | 2017-03-30 09:53:13 +0530 | [diff] [blame] | 208 | #ifndef SPL_NO_MISC |
Qianyu Gong | 8de227e | 2017-06-15 11:10:09 +0800 | [diff] [blame] | 209 | #undef CONFIG_BOOTCOMMAND |
Shengzhou Liu | aab2ef9 | 2017-11-09 17:57:56 +0800 | [diff] [blame] | 210 | #if defined(CONFIG_QSPI_BOOT) |
Vinitha Pillai-B57223 | 9b457cc | 2017-11-22 10:38:35 +0530 | [diff] [blame] | 211 | #define CONFIG_BOOTCOMMAND "run distro_bootcmd; run qspi_bootcmd; " \ |
| 212 | "env exists secureboot && esbc_halt;;" |
Shengzhou Liu | aab2ef9 | 2017-11-09 17:57:56 +0800 | [diff] [blame] | 213 | #elif defined(CONFIG_SD_BOOT) |
Vinitha Pillai-B57223 | 9b457cc | 2017-11-22 10:38:35 +0530 | [diff] [blame] | 214 | #define CONFIG_BOOTCOMMAND "run distro_bootcmd;run sd_bootcmd; " \ |
| 215 | "env exists secureboot && esbc_halt;" |
Shengzhou Liu | aab2ef9 | 2017-11-09 17:57:56 +0800 | [diff] [blame] | 216 | #endif |
Sumit Garg | a52ff33 | 2017-03-30 09:53:13 +0530 | [diff] [blame] | 217 | #endif |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 218 | |
Vinitha Pillai-B57223 | f7244f2 | 2017-03-23 13:48:18 +0530 | [diff] [blame] | 219 | #include <asm/fsl_secure_boot.h> |
| 220 | |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 221 | #endif /* __LS1046ARDB_H__ */ |