Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2010-2011 Freescale Semiconductor, Inc. |
Biwen Li | 6a2d8d1 | 2020-05-01 20:04:13 +0800 | [diff] [blame] | 4 | * Copyright 2020 NXP |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * P010 RDB board configuration file |
| 9 | */ |
| 10 | |
| 11 | #ifndef __CONFIG_H |
| 12 | #define __CONFIG_H |
| 13 | |
Simon Glass | fb64e36 | 2020-05-10 11:40:09 -0600 | [diff] [blame] | 14 | #include <linux/stringify.h> |
| 15 | |
Prabhakar Kushwaha | d324f47 | 2013-04-16 13:27:44 +0530 | [diff] [blame] | 16 | #include <asm/config_mpc85xx.h> |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 17 | |
| 18 | #ifdef CONFIG_SDCARD |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 19 | #define CONFIG_SYS_MMC_U_BOOT_SIZE (512 << 10) |
| 20 | #define CONFIG_SYS_MMC_U_BOOT_DST (0x11000000) |
| 21 | #define CONFIG_SYS_MMC_U_BOOT_START (0x11000000) |
| 22 | #define CONFIG_SYS_MMC_U_BOOT_OFFS (96 << 10) |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 23 | #endif |
| 24 | |
| 25 | #ifdef CONFIG_SPIFLASH |
Udit Agarwal | d2dd2f7 | 2019-11-07 16:11:39 +0000 | [diff] [blame] | 26 | #ifdef CONFIG_NXP_ESBC |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 27 | #define CONFIG_RAMBOOT_SPIFLASH |
Ruchika Gupta | 604a959 | 2014-09-29 11:14:35 +0530 | [diff] [blame] | 28 | #define CONFIG_RESET_VECTOR_ADDRESS 0x110bfffc |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 29 | #else |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 30 | #define CONFIG_SYS_SPI_FLASH_U_BOOT_SIZE (512 << 10) |
| 31 | #define CONFIG_SYS_SPI_FLASH_U_BOOT_DST (0x11000000) |
| 32 | #define CONFIG_SYS_SPI_FLASH_U_BOOT_START (0x11000000) |
| 33 | #define CONFIG_SYS_SPI_FLASH_U_BOOT_OFFS (96 << 10) |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 34 | #endif |
| 35 | #endif |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 36 | |
Miquel Raynal | d093536 | 2019-10-03 19:50:03 +0200 | [diff] [blame] | 37 | #ifdef CONFIG_MTD_RAW_NAND |
Udit Agarwal | d2dd2f7 | 2019-11-07 16:11:39 +0000 | [diff] [blame] | 38 | #ifdef CONFIG_NXP_ESBC |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 39 | #define CFG_SYS_NAND_U_BOOT_SIZE ((768 << 10) - 0x2000) |
| 40 | #define CFG_SYS_NAND_U_BOOT_DST (0x00200000 - CONFIG_SPL_MAX_SIZE) |
| 41 | #define CFG_SYS_NAND_U_BOOT_START 0x00200000 |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 42 | #else |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 43 | #ifdef CONFIG_TPL_BUILD |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 44 | #define CFG_SYS_NAND_U_BOOT_SIZE (576 << 10) |
| 45 | #define CFG_SYS_NAND_U_BOOT_DST (0x11000000) |
| 46 | #define CFG_SYS_NAND_U_BOOT_START (0x11000000) |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 47 | #elif defined(CONFIG_SPL_BUILD) |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 48 | #define CFG_SYS_NAND_U_BOOT_SIZE (128 << 10) |
| 49 | #define CFG_SYS_NAND_U_BOOT_DST 0xD0000000 |
| 50 | #define CFG_SYS_NAND_U_BOOT_START 0xD0000000 |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 51 | #endif |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 52 | #endif |
| 53 | #endif |
Ruchika Gupta | b36ccc5 | 2011-06-08 22:52:48 -0500 | [diff] [blame] | 54 | |
| 55 | #ifdef CONFIG_NAND_SECBOOT /* NAND Boot */ |
Prabhakar Kushwaha | f203656 | 2014-01-14 11:34:26 +0530 | [diff] [blame] | 56 | #define CONFIG_RESET_VECTOR_ADDRESS 0x110bfffc |
Ruchika Gupta | b36ccc5 | 2011-06-08 22:52:48 -0500 | [diff] [blame] | 57 | #endif |
| 58 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 59 | #ifndef CONFIG_RESET_VECTOR_ADDRESS |
| 60 | #define CONFIG_RESET_VECTOR_ADDRESS 0xeffffffc |
| 61 | #endif |
| 62 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 63 | /* High Level Configuration Options */ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 64 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 65 | #if defined(CONFIG_PCI) |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 66 | /* |
| 67 | * PCI Windows |
| 68 | * Memory space is mapped 1-1, but I/O space must start from 0. |
| 69 | */ |
| 70 | /* controller 1, Slot 1, tgtid 1, Base address a000 */ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 71 | #define CONFIG_SYS_PCIE1_MEM_VIRT 0x80000000 |
| 72 | #ifdef CONFIG_PHYS_64BIT |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 73 | #define CONFIG_SYS_PCIE1_MEM_PHYS 0xc00000000ull |
| 74 | #else |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 75 | #define CONFIG_SYS_PCIE1_MEM_PHYS 0x80000000 |
| 76 | #endif |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 77 | #define CONFIG_SYS_PCIE1_IO_VIRT 0xffc00000 |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 78 | #ifdef CONFIG_PHYS_64BIT |
| 79 | #define CONFIG_SYS_PCIE1_IO_PHYS 0xfffc00000ull |
| 80 | #else |
| 81 | #define CONFIG_SYS_PCIE1_IO_PHYS 0xffc00000 |
| 82 | #endif |
| 83 | |
| 84 | /* controller 2, Slot 2, tgtid 2, Base address 9000 */ |
Hou Zhiqiang | d3cb881 | 2020-05-01 19:06:28 +0800 | [diff] [blame] | 85 | #define CONFIG_SYS_PCIE2_MEM_VIRT 0xa0000000 |
| 86 | #ifdef CONFIG_PHYS_64BIT |
| 87 | #define CONFIG_SYS_PCIE2_MEM_PHYS 0xc20000000ull |
| 88 | #else |
| 89 | #define CONFIG_SYS_PCIE2_MEM_PHYS 0xa0000000 |
| 90 | #endif |
| 91 | #define CONFIG_SYS_PCIE2_IO_VIRT 0xffc10000 |
| 92 | #ifdef CONFIG_PHYS_64BIT |
| 93 | #define CONFIG_SYS_PCIE2_IO_PHYS 0xfffc10000ull |
| 94 | #else |
| 95 | #define CONFIG_SYS_PCIE2_IO_PHYS 0xffc10000 |
| 96 | #endif |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 97 | #endif |
| 98 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 99 | #define CONFIG_HWCONFIG |
| 100 | /* |
| 101 | * These can be toggled for performance analysis, otherwise use default. |
| 102 | */ |
| 103 | #define CONFIG_L2_CACHE /* toggle L2 cache */ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 104 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 105 | /* DDR Setup */ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 106 | #define SPD_EEPROM_ADDRESS 0x52 |
| 107 | |
| 108 | #define CONFIG_MEM_INIT_VALUE 0xDeadBeef |
| 109 | |
| 110 | #ifndef __ASSEMBLY__ |
| 111 | extern unsigned long get_sdram_size(void); |
| 112 | #endif |
| 113 | #define CONFIG_SYS_SDRAM_SIZE get_sdram_size() /* DDR size */ |
| 114 | #define CONFIG_SYS_DDR_SDRAM_BASE 0x00000000 |
| 115 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE |
| 116 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 117 | #define CONFIG_SYS_CCSRBAR 0xffe00000 |
| 118 | #define CONFIG_SYS_CCSRBAR_PHYS_LOW CONFIG_SYS_CCSRBAR |
| 119 | |
| 120 | /* |
| 121 | * Memory map |
| 122 | * |
| 123 | * 0x0000_0000 0x3fff_ffff DDR 1G cacheable |
| 124 | * 0x8000_0000 0xbfff_ffff PCI Express Mem 1.5G non-cacheable |
| 125 | * 0xffc0_0000 0xffc3_ffff PCI IO range 256k non-cacheable |
| 126 | * |
| 127 | * Localbus non-cacheable |
| 128 | * 0xff80_0000 0xff8f_ffff NAND Flash 1M non-cacheable |
| 129 | * 0xffb0_0000 0xffbf_ffff Board CPLD 1M non-cacheable |
| 130 | * 0xffd0_0000 0xffd0_3fff L1 for stack 16K Cacheable TLB0 |
| 131 | * 0xffe0_0000 0xffef_ffff CCSR 1M non-cacheable |
| 132 | */ |
| 133 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 134 | /* |
| 135 | * IFC Definitions |
| 136 | */ |
| 137 | /* NOR Flash on IFC */ |
Prabhakar Kushwaha | 66d6aa8 | 2013-04-16 13:28:12 +0530 | [diff] [blame] | 138 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 139 | #define CONFIG_SYS_FLASH_BASE 0xee000000 |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 140 | |
| 141 | #ifdef CONFIG_PHYS_64BIT |
| 142 | #define CONFIG_SYS_FLASH_BASE_PHYS (0xf00000000ull | CONFIG_SYS_FLASH_BASE) |
| 143 | #else |
| 144 | #define CONFIG_SYS_FLASH_BASE_PHYS CONFIG_SYS_FLASH_BASE |
| 145 | #endif |
| 146 | |
Tom Rini | 7b577ba | 2022-11-16 13:10:25 -0500 | [diff] [blame^] | 147 | #define CFG_SYS_NOR_CSPR (CSPR_PHYS_ADDR(CONFIG_SYS_FLASH_BASE_PHYS) | \ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 148 | CSPR_PORT_SIZE_16 | \ |
| 149 | CSPR_MSEL_NOR | \ |
| 150 | CSPR_V) |
Tom Rini | 7b577ba | 2022-11-16 13:10:25 -0500 | [diff] [blame^] | 151 | #define CFG_SYS_NOR_AMASK IFC_AMASK(32*1024*1024) |
| 152 | #define CFG_SYS_NOR_CSOR CSOR_NOR_ADM_SHIFT(7) |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 153 | /* NOR Flash Timing Params */ |
Tom Rini | 7b577ba | 2022-11-16 13:10:25 -0500 | [diff] [blame^] | 154 | #define CFG_SYS_NOR_FTIM0 FTIM0_NOR_TACSE(0x4) | \ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 155 | FTIM0_NOR_TEADC(0x5) | \ |
| 156 | FTIM0_NOR_TEAHC(0x5) |
Tom Rini | 7b577ba | 2022-11-16 13:10:25 -0500 | [diff] [blame^] | 157 | #define CFG_SYS_NOR_FTIM1 FTIM1_NOR_TACO(0x1e) | \ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 158 | FTIM1_NOR_TRAD_NOR(0x0f) |
Tom Rini | 7b577ba | 2022-11-16 13:10:25 -0500 | [diff] [blame^] | 159 | #define CFG_SYS_NOR_FTIM2 FTIM2_NOR_TCS(0x4) | \ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 160 | FTIM2_NOR_TCH(0x4) | \ |
| 161 | FTIM2_NOR_TWP(0x1c) |
Tom Rini | 7b577ba | 2022-11-16 13:10:25 -0500 | [diff] [blame^] | 162 | #define CFG_SYS_NOR_FTIM3 0x0 |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 163 | |
| 164 | #define CONFIG_SYS_FLASH_BANKS_LIST {CONFIG_SYS_FLASH_BASE_PHYS} |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 165 | #define CONFIG_FLASH_SHOW_PROGRESS 45 /* count down from 45/5: 9..1 */ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 166 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 167 | /* CFI for NOR Flash */ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 168 | |
| 169 | /* NAND Flash on IFC */ |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 170 | #define CFG_SYS_NAND_BASE 0xff800000 |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 171 | #ifdef CONFIG_PHYS_64BIT |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 172 | #define CFG_SYS_NAND_BASE_PHYS 0xfff800000ull |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 173 | #else |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 174 | #define CFG_SYS_NAND_BASE_PHYS CFG_SYS_NAND_BASE |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 175 | #endif |
| 176 | |
Zhao Qiang | c655ef1 | 2013-09-26 09:10:32 +0800 | [diff] [blame] | 177 | #define CONFIG_MTD_PARTITION |
Zhao Qiang | c655ef1 | 2013-09-26 09:10:32 +0800 | [diff] [blame] | 178 | |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 179 | #define CFG_SYS_NAND_CSPR (CSPR_PHYS_ADDR(CFG_SYS_NAND_BASE_PHYS) \ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 180 | | CSPR_PORT_SIZE_8 \ |
| 181 | | CSPR_MSEL_NAND \ |
| 182 | | CSPR_V) |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 183 | #define CFG_SYS_NAND_AMASK IFC_AMASK(64*1024) |
Shengzhou Liu | f0af438 | 2013-09-13 14:46:03 +0800 | [diff] [blame] | 184 | |
York Sun | 7f945ca | 2016-11-16 13:30:06 -0800 | [diff] [blame] | 185 | #if defined(CONFIG_TARGET_P1010RDB_PA) |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 186 | #define CFG_SYS_NAND_CSOR (CSOR_NAND_ECC_ENC_EN /* ECC on encode */ \ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 187 | | CSOR_NAND_ECC_DEC_EN /* ECC on decode */ \ |
| 188 | | CSOR_NAND_ECC_MODE_4 /* 4-bit ECC */ \ |
| 189 | | CSOR_NAND_RAL_2 /* RAL = 2 Bytes */ \ |
| 190 | | CSOR_NAND_PGS_512 /* Page Size = 512b */ \ |
| 191 | | CSOR_NAND_SPRZ_16 /* Spare size = 16 */ \ |
| 192 | | CSOR_NAND_PB(32)) /* 32 Pages Per Block */ |
Shengzhou Liu | f0af438 | 2013-09-13 14:46:03 +0800 | [diff] [blame] | 193 | |
York Sun | 7f945ca | 2016-11-16 13:30:06 -0800 | [diff] [blame] | 194 | #elif defined(CONFIG_TARGET_P1010RDB_PB) |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 195 | #define CFG_SYS_NAND_CSOR (CSOR_NAND_ECC_ENC_EN /* ECC on encode */ \ |
Shengzhou Liu | f0af438 | 2013-09-13 14:46:03 +0800 | [diff] [blame] | 196 | | CSOR_NAND_ECC_DEC_EN /* ECC on decode */ \ |
| 197 | | CSOR_NAND_ECC_MODE_4 /* 4-bit ECC */ \ |
| 198 | | CSOR_NAND_RAL_3 /* RAL = 3Byes */ \ |
| 199 | | CSOR_NAND_PGS_4K /* Page Size = 4K */ \ |
| 200 | | CSOR_NAND_SPRZ_224 /* Spare size = 224 */ \ |
| 201 | | CSOR_NAND_PB(128)) /*Pages Per Block = 128 */ |
Shengzhou Liu | f0af438 | 2013-09-13 14:46:03 +0800 | [diff] [blame] | 202 | #endif |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 203 | |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 204 | #define CFG_SYS_NAND_BASE_LIST { CFG_SYS_NAND_BASE } |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 205 | |
York Sun | 7f945ca | 2016-11-16 13:30:06 -0800 | [diff] [blame] | 206 | #if defined(CONFIG_TARGET_P1010RDB_PA) |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 207 | /* NAND Flash Timing Params */ |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 208 | #define CFG_SYS_NAND_FTIM0 FTIM0_NAND_TCCST(0x01) | \ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 209 | FTIM0_NAND_TWP(0x0C) | \ |
| 210 | FTIM0_NAND_TWCHT(0x04) | \ |
| 211 | FTIM0_NAND_TWH(0x05) |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 212 | #define CFG_SYS_NAND_FTIM1 FTIM1_NAND_TADLE(0x1d) | \ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 213 | FTIM1_NAND_TWBE(0x1d) | \ |
| 214 | FTIM1_NAND_TRR(0x07) | \ |
| 215 | FTIM1_NAND_TRP(0x0c) |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 216 | #define CFG_SYS_NAND_FTIM2 FTIM2_NAND_TRAD(0x0c) | \ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 217 | FTIM2_NAND_TREH(0x05) | \ |
| 218 | FTIM2_NAND_TWHRE(0x0f) |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 219 | #define CFG_SYS_NAND_FTIM3 FTIM3_NAND_TWW(0x04) |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 220 | |
York Sun | 7f945ca | 2016-11-16 13:30:06 -0800 | [diff] [blame] | 221 | #elif defined(CONFIG_TARGET_P1010RDB_PB) |
Shengzhou Liu | f0af438 | 2013-09-13 14:46:03 +0800 | [diff] [blame] | 222 | /* support MT29F16G08ABABAWP 4k-pagesize 2G-bytes NAND */ |
| 223 | /* ONFI NAND Flash mode0 Timing Params */ |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 224 | #define CFG_SYS_NAND_FTIM0 (FTIM0_NAND_TCCST(0x07)| \ |
Shengzhou Liu | f0af438 | 2013-09-13 14:46:03 +0800 | [diff] [blame] | 225 | FTIM0_NAND_TWP(0x18) | \ |
| 226 | FTIM0_NAND_TWCHT(0x07) | \ |
| 227 | FTIM0_NAND_TWH(0x0a)) |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 228 | #define CFG_SYS_NAND_FTIM1 (FTIM1_NAND_TADLE(0x32)| \ |
Shengzhou Liu | f0af438 | 2013-09-13 14:46:03 +0800 | [diff] [blame] | 229 | FTIM1_NAND_TWBE(0x39) | \ |
| 230 | FTIM1_NAND_TRR(0x0e) | \ |
| 231 | FTIM1_NAND_TRP(0x18)) |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 232 | #define CFG_SYS_NAND_FTIM2 (FTIM2_NAND_TRAD(0x0f) | \ |
Shengzhou Liu | f0af438 | 2013-09-13 14:46:03 +0800 | [diff] [blame] | 233 | FTIM2_NAND_TREH(0x0a) | \ |
| 234 | FTIM2_NAND_TWHRE(0x1e)) |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 235 | #define CFG_SYS_NAND_FTIM3 0x0 |
Shengzhou Liu | f0af438 | 2013-09-13 14:46:03 +0800 | [diff] [blame] | 236 | #endif |
| 237 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 238 | /* Set up IFC registers for boot location NOR/NAND */ |
Miquel Raynal | d093536 | 2019-10-03 19:50:03 +0200 | [diff] [blame] | 239 | #if defined(CONFIG_MTD_RAW_NAND) || defined(CONFIG_NAND_SECBOOT) |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 240 | #define CONFIG_SYS_CSPR0 CFG_SYS_NAND_CSPR |
| 241 | #define CONFIG_SYS_AMASK0 CFG_SYS_NAND_AMASK |
| 242 | #define CONFIG_SYS_CSOR0 CFG_SYS_NAND_CSOR |
| 243 | #define CONFIG_SYS_CS0_FTIM0 CFG_SYS_NAND_FTIM0 |
| 244 | #define CONFIG_SYS_CS0_FTIM1 CFG_SYS_NAND_FTIM1 |
| 245 | #define CONFIG_SYS_CS0_FTIM2 CFG_SYS_NAND_FTIM2 |
| 246 | #define CONFIG_SYS_CS0_FTIM3 CFG_SYS_NAND_FTIM3 |
Tom Rini | 7b577ba | 2022-11-16 13:10:25 -0500 | [diff] [blame^] | 247 | #define CONFIG_SYS_CSPR1 CFG_SYS_NOR_CSPR |
| 248 | #define CONFIG_SYS_AMASK1 CFG_SYS_NOR_AMASK |
| 249 | #define CONFIG_SYS_CSOR1 CFG_SYS_NOR_CSOR |
| 250 | #define CONFIG_SYS_CS1_FTIM0 CFG_SYS_NOR_FTIM0 |
| 251 | #define CONFIG_SYS_CS1_FTIM1 CFG_SYS_NOR_FTIM1 |
| 252 | #define CONFIG_SYS_CS1_FTIM2 CFG_SYS_NOR_FTIM2 |
| 253 | #define CONFIG_SYS_CS1_FTIM3 CFG_SYS_NOR_FTIM3 |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 254 | #else |
Tom Rini | 7b577ba | 2022-11-16 13:10:25 -0500 | [diff] [blame^] | 255 | #define CONFIG_SYS_CSPR0 CFG_SYS_NOR_CSPR |
| 256 | #define CONFIG_SYS_AMASK0 CFG_SYS_NOR_AMASK |
| 257 | #define CONFIG_SYS_CSOR0 CFG_SYS_NOR_CSOR |
| 258 | #define CONFIG_SYS_CS0_FTIM0 CFG_SYS_NOR_FTIM0 |
| 259 | #define CONFIG_SYS_CS0_FTIM1 CFG_SYS_NOR_FTIM1 |
| 260 | #define CONFIG_SYS_CS0_FTIM2 CFG_SYS_NOR_FTIM2 |
| 261 | #define CONFIG_SYS_CS0_FTIM3 CFG_SYS_NOR_FTIM3 |
Tom Rini | b421349 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 262 | #define CONFIG_SYS_CSPR1 CFG_SYS_NAND_CSPR |
| 263 | #define CONFIG_SYS_AMASK1 CFG_SYS_NAND_AMASK |
| 264 | #define CONFIG_SYS_CSOR1 CFG_SYS_NAND_CSOR |
| 265 | #define CONFIG_SYS_CS1_FTIM0 CFG_SYS_NAND_FTIM0 |
| 266 | #define CONFIG_SYS_CS1_FTIM1 CFG_SYS_NAND_FTIM1 |
| 267 | #define CONFIG_SYS_CS1_FTIM2 CFG_SYS_NAND_FTIM2 |
| 268 | #define CONFIG_SYS_CS1_FTIM3 CFG_SYS_NAND_FTIM3 |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 269 | #endif |
| 270 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 271 | /* CPLD on IFC */ |
| 272 | #define CONFIG_SYS_CPLD_BASE 0xffb00000 |
| 273 | |
| 274 | #ifdef CONFIG_PHYS_64BIT |
| 275 | #define CONFIG_SYS_CPLD_BASE_PHYS 0xfffb00000ull |
| 276 | #else |
| 277 | #define CONFIG_SYS_CPLD_BASE_PHYS CONFIG_SYS_CPLD_BASE |
| 278 | #endif |
| 279 | |
| 280 | #define CONFIG_SYS_CSPR3 (CSPR_PHYS_ADDR(CONFIG_SYS_CPLD_BASE_PHYS) \ |
| 281 | | CSPR_PORT_SIZE_8 \ |
| 282 | | CSPR_MSEL_GPCM \ |
| 283 | | CSPR_V) |
| 284 | #define CONFIG_SYS_AMASK3 IFC_AMASK(64*1024) |
| 285 | #define CONFIG_SYS_CSOR3 0x0 |
| 286 | /* CPLD Timing parameters for IFC CS3 */ |
| 287 | #define CONFIG_SYS_CS3_FTIM0 (FTIM0_GPCM_TACSE(0x0e) | \ |
| 288 | FTIM0_GPCM_TEADC(0x0e) | \ |
| 289 | FTIM0_GPCM_TEAHC(0x0e)) |
| 290 | #define CONFIG_SYS_CS3_FTIM1 (FTIM1_GPCM_TACO(0x0e) | \ |
| 291 | FTIM1_GPCM_TRAD(0x1f)) |
| 292 | #define CONFIG_SYS_CS3_FTIM2 (FTIM2_GPCM_TCS(0x0e) | \ |
Shaohui Xie | c2bc460 | 2014-06-26 14:41:33 +0800 | [diff] [blame] | 293 | FTIM2_GPCM_TCH(0x8) | \ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 294 | FTIM2_GPCM_TWP(0x1f)) |
| 295 | #define CONFIG_SYS_CS3_FTIM3 0x0 |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 296 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 297 | #define CONFIG_SYS_INIT_RAM_ADDR 0xffd00000 /* stack in RAM */ |
York Sun | 515fbb4 | 2016-04-06 13:22:10 -0700 | [diff] [blame] | 298 | #define CONFIG_SYS_INIT_RAM_SIZE 0x00004000 /* End of used area in RAM */ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 299 | |
Tom Rini | 55f3756 | 2022-05-24 14:14:02 -0400 | [diff] [blame] | 300 | #define CONFIG_SYS_INIT_SP_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 301 | |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 302 | /* |
| 303 | * Config the L2 Cache as L2 SRAM |
| 304 | */ |
| 305 | #if defined(CONFIG_SPL_BUILD) |
| 306 | #if defined(CONFIG_SDCARD) || defined(CONFIG_SPIFLASH) |
| 307 | #define CONFIG_SYS_INIT_L2_ADDR 0xD0000000 |
| 308 | #define CONFIG_SYS_INIT_L2_ADDR_PHYS CONFIG_SYS_INIT_L2_ADDR |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 309 | #define CONFIG_SYS_INIT_L2_END (CONFIG_SYS_INIT_L2_ADDR + CONFIG_SYS_L2_SIZE) |
Miquel Raynal | d093536 | 2019-10-03 19:50:03 +0200 | [diff] [blame] | 310 | #elif defined(CONFIG_MTD_RAW_NAND) |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 311 | #ifdef CONFIG_TPL_BUILD |
| 312 | #define CONFIG_SYS_INIT_L2_ADDR 0xD0000000 |
| 313 | #define CONFIG_SYS_INIT_L2_ADDR_PHYS CONFIG_SYS_INIT_L2_ADDR |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 314 | #define CONFIG_SYS_INIT_L2_END (CONFIG_SYS_INIT_L2_ADDR + CONFIG_SYS_L2_SIZE) |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 315 | #else |
| 316 | #define CONFIG_SYS_INIT_L2_ADDR 0xD0000000 |
| 317 | #define CONFIG_SYS_INIT_L2_ADDR_PHYS CONFIG_SYS_INIT_L2_ADDR |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 318 | #define CONFIG_SYS_INIT_L2_END (CONFIG_SYS_INIT_L2_ADDR + CONFIG_SYS_L2_SIZE) |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 319 | #endif |
| 320 | #endif |
| 321 | #endif |
| 322 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 323 | /* Serial Port */ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 324 | #undef CONFIG_SERIAL_SOFTWARE_FIFO |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 325 | #define CONFIG_SYS_NS16550_SERIAL |
| 326 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
| 327 | #define CONFIG_SYS_NS16550_CLK get_bus_freq(0) |
Tom Rini | 6b15c16 | 2022-05-13 12:26:35 -0400 | [diff] [blame] | 328 | #if defined(CONFIG_SPL_BUILD) && CONFIG_IS_ENABLED(INIT_MINIMAL) |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 329 | #define CONFIG_NS16550_MIN_FUNCTIONS |
| 330 | #endif |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 331 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 332 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
| 333 | {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200} |
| 334 | |
| 335 | #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CCSRBAR+0x4500) |
| 336 | #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_CCSRBAR+0x4600) |
| 337 | |
Heiko Schocher | f285074 | 2012-10-24 13:48:22 +0200 | [diff] [blame] | 338 | /* I2C */ |
Shengzhou Liu | 36446ef | 2013-09-13 14:46:02 +0800 | [diff] [blame] | 339 | #define I2C_PCA9557_ADDR1 0x18 |
Shengzhou Liu | f0af438 | 2013-09-13 14:46:03 +0800 | [diff] [blame] | 340 | #define I2C_PCA9557_ADDR2 0x19 |
Shengzhou Liu | 36446ef | 2013-09-13 14:46:02 +0800 | [diff] [blame] | 341 | #define I2C_PCA9557_BUS_NUM 0 |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 342 | |
| 343 | /* I2C EEPROM */ |
York Sun | 7f945ca | 2016-11-16 13:30:06 -0800 | [diff] [blame] | 344 | #if defined(CONFIG_TARGET_P1010RDB_PB) |
Shengzhou Liu | f0af438 | 2013-09-13 14:46:03 +0800 | [diff] [blame] | 345 | #define MAX_NUM_PORTS 9 /* for 128Bytes EEPROM */ |
| 346 | #endif |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 347 | /* enable read and write access to EEPROM */ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 348 | |
| 349 | /* RTC */ |
| 350 | #define CONFIG_RTC_PT7C4338 |
| 351 | #define CONFIG_SYS_I2C_RTC_ADDR 0x68 |
| 352 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 353 | /* |
| 354 | * SPI interface will not be available in case of NAND boot SPI CS0 will be |
| 355 | * used for SLIC |
| 356 | */ |
Miquel Raynal | d093536 | 2019-10-03 19:50:03 +0200 | [diff] [blame] | 357 | #if !defined(CONFIG_MTD_RAW_NAND) || !defined(CONFIG_NAND_SECBOOT) |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 358 | /* eSPI - Enhanced SPI */ |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 359 | #endif |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 360 | |
| 361 | #if defined(CONFIG_TSEC_ENET) |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 362 | #define CONFIG_MII_DEFAULT_TSEC 1 /* Allow unregistered phys */ |
| 363 | #define CONFIG_TSEC1 1 |
| 364 | #define CONFIG_TSEC1_NAME "eTSEC1" |
| 365 | #define CONFIG_TSEC2 1 |
| 366 | #define CONFIG_TSEC2_NAME "eTSEC2" |
| 367 | #define CONFIG_TSEC3 1 |
| 368 | #define CONFIG_TSEC3_NAME "eTSEC3" |
| 369 | |
| 370 | #define TSEC1_PHY_ADDR 1 |
| 371 | #define TSEC2_PHY_ADDR 0 |
| 372 | #define TSEC3_PHY_ADDR 2 |
| 373 | |
| 374 | #define TSEC1_FLAGS (TSEC_GIGABIT | TSEC_REDUCED) |
| 375 | #define TSEC2_FLAGS (TSEC_GIGABIT | TSEC_REDUCED) |
| 376 | #define TSEC3_FLAGS (TSEC_GIGABIT | TSEC_REDUCED) |
| 377 | |
| 378 | #define TSEC1_PHYIDX 0 |
| 379 | #define TSEC2_PHYIDX 0 |
| 380 | #define TSEC3_PHYIDX 0 |
| 381 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 382 | /* TBI PHY configuration for SGMII mode */ |
| 383 | #define CONFIG_TSEC_TBICR_SETTINGS ( \ |
| 384 | TBICR_PHY_RESET \ |
| 385 | | TBICR_ANEG_ENABLE \ |
| 386 | | TBICR_FULL_DUPLEX \ |
| 387 | | TBICR_SPEED1_SET \ |
| 388 | ) |
| 389 | |
| 390 | #endif /* CONFIG_TSEC_ENET */ |
| 391 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 392 | #ifdef CONFIG_MMC |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 393 | #define CFG_SYS_FSL_ESDHC_ADDR CFG_SYS_MPC85xx_ESDHC_ADDR |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 394 | #endif |
| 395 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 396 | /* |
| 397 | * Environment |
| 398 | */ |
Tom Rini | 5989fd4 | 2022-06-20 08:07:42 -0400 | [diff] [blame] | 399 | #if defined(CONFIG_MTD_RAW_NAND) |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 400 | #ifdef CONFIG_TPL_BUILD |
Tom Rini | 5cd7ece | 2019-11-18 20:02:10 -0500 | [diff] [blame] | 401 | #define SPL_ENV_ADDR (CONFIG_SYS_INIT_L2_ADDR + (160 << 10)) |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 402 | #endif |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 403 | #endif |
| 404 | |
Tom Rini | ceed5d2 | 2017-05-12 22:33:27 -0400 | [diff] [blame] | 405 | #if defined(CONFIG_MMC) || defined(CONFIG_USB_EHCI_HCD) \ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 406 | || defined(CONFIG_FSL_SATA) |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 407 | #endif |
| 408 | |
| 409 | /* |
| 410 | * Miscellaneous configurable options |
| 411 | */ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 412 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 413 | /* |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 414 | * For booting Linux, the board info and command line data |
| 415 | * have to be in the first 64 MB of memory, since this is |
| 416 | * the maximum mapped by the Linux kernel during initialization. |
| 417 | */ |
| 418 | #define CONFIG_SYS_BOOTMAPSZ (64 << 20) /* Initial Memory map for Linux */ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 419 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 420 | /* |
| 421 | * Environment Configuration |
| 422 | */ |
| 423 | |
Joe Hershberger | 257ff78 | 2011-10-13 13:03:47 +0000 | [diff] [blame] | 424 | #define CONFIG_ROOTPATH "/opt/nfsroot" |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 425 | #define CONFIG_UBOOTPATH u-boot.bin/* U-Boot image on TFTP server */ |
| 426 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 427 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Marek Vasut | 0b3176c | 2012-09-23 17:41:24 +0200 | [diff] [blame] | 428 | "hwconfig=" __stringify(CONFIG_DEF_HWCONFIG) "\0" \ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 429 | "netdev=eth0\0" \ |
Marek Vasut | 0b3176c | 2012-09-23 17:41:24 +0200 | [diff] [blame] | 430 | "uboot=" __stringify(CONFIG_UBOOTPATH) "\0" \ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 431 | "loadaddr=1000000\0" \ |
| 432 | "consoledev=ttyS0\0" \ |
| 433 | "ramdiskaddr=2000000\0" \ |
| 434 | "ramdiskfile=rootfs.ext2.gz.uboot\0" \ |
Scott Wood | b7f4b85 | 2016-07-19 17:52:06 -0500 | [diff] [blame] | 435 | "fdtaddr=1e00000\0" \ |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 436 | "fdtfile=p1010rdb.dtb\0" \ |
| 437 | "bdev=sda1\0" \ |
| 438 | "hwconfig=usb1:dr_mode=host,phy_type=utmi\0" \ |
| 439 | "othbootargs=ramdisk_size=600000\0" \ |
| 440 | "usbfatboot=setenv bootargs root=/dev/ram rw " \ |
| 441 | "console=$consoledev,$baudrate $othbootargs; " \ |
| 442 | "usb start;" \ |
| 443 | "fatload usb 0:2 $loadaddr $bootfile;" \ |
| 444 | "fatload usb 0:2 $fdtaddr $fdtfile;" \ |
| 445 | "fatload usb 0:2 $ramdiskaddr $ramdiskfile;" \ |
| 446 | "bootm $loadaddr $ramdiskaddr $fdtaddr\0" \ |
| 447 | "usbext2boot=setenv bootargs root=/dev/ram rw " \ |
| 448 | "console=$consoledev,$baudrate $othbootargs; " \ |
| 449 | "usb start;" \ |
| 450 | "ext2load usb 0:4 $loadaddr $bootfile;" \ |
| 451 | "ext2load usb 0:4 $fdtaddr $fdtfile;" \ |
| 452 | "ext2load usb 0:4 $ramdiskaddr $ramdiskfile;" \ |
Shengzhou Liu | f0af438 | 2013-09-13 14:46:03 +0800 | [diff] [blame] | 453 | "bootm $loadaddr $ramdiskaddr $fdtaddr\0" \ |
Tom Rini | 8cd5d37 | 2022-02-25 11:19:49 -0500 | [diff] [blame] | 454 | BOOTMODE |
Shengzhou Liu | f0af438 | 2013-09-13 14:46:03 +0800 | [diff] [blame] | 455 | |
York Sun | 7f945ca | 2016-11-16 13:30:06 -0800 | [diff] [blame] | 456 | #if defined(CONFIG_TARGET_P1010RDB_PA) |
Tom Rini | 8cd5d37 | 2022-02-25 11:19:49 -0500 | [diff] [blame] | 457 | #define BOOTMODE \ |
Shengzhou Liu | f0af438 | 2013-09-13 14:46:03 +0800 | [diff] [blame] | 458 | "boot_bank0=i2c dev 0; i2c mw 18 1 f1; i2c mw 18 3 f0;" \ |
| 459 | "mw.b ffb00011 0; mw.b ffb00009 0; reset\0" \ |
| 460 | "boot_bank1=i2c dev 0; i2c mw 18 1 f1; i2c mw 18 3 f0;" \ |
| 461 | "mw.b ffb00011 0; mw.b ffb00009 1; reset\0" \ |
| 462 | "boot_nand=i2c dev 0; i2c mw 18 1 f9; i2c mw 18 3 f0;" \ |
| 463 | "mw.b ffb00011 0; mw.b ffb00017 1; reset\0" |
| 464 | |
York Sun | 7f945ca | 2016-11-16 13:30:06 -0800 | [diff] [blame] | 465 | #elif defined(CONFIG_TARGET_P1010RDB_PB) |
Tom Rini | 8cd5d37 | 2022-02-25 11:19:49 -0500 | [diff] [blame] | 466 | #define BOOTMODE \ |
Shengzhou Liu | f0af438 | 2013-09-13 14:46:03 +0800 | [diff] [blame] | 467 | "boot_bank0=i2c dev 0; i2c mw 18 1 fe; i2c mw 18 3 0;" \ |
| 468 | "i2c mw 19 1 2; i2c mw 19 3 e1; reset\0" \ |
| 469 | "boot_bank1=i2c dev 0; i2c mw 18 1 fe; i2c mw 18 3 0;" \ |
| 470 | "i2c mw 19 1 12; i2c mw 19 3 e1; reset\0" \ |
| 471 | "boot_nand=i2c dev 0; i2c mw 18 1 fc; i2c mw 18 3 0;" \ |
| 472 | "i2c mw 19 1 8; i2c mw 19 3 f7; reset\0" \ |
| 473 | "boot_spi=i2c dev 0; i2c mw 18 1 fa; i2c mw 18 3 0;" \ |
| 474 | "i2c mw 19 1 0; i2c mw 19 3 f7; reset\0" \ |
| 475 | "boot_sd=i2c dev 0; i2c mw 18 1 f8; i2c mw 18 3 0;" \ |
| 476 | "i2c mw 19 1 4; i2c mw 19 3 f3; reset\0" |
| 477 | #endif |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 478 | |
Ruchika Gupta | b36ccc5 | 2011-06-08 22:52:48 -0500 | [diff] [blame] | 479 | #include <asm/fsl_secure_boot.h> |
Ruchika Gupta | b36ccc5 | 2011-06-08 22:52:48 -0500 | [diff] [blame] | 480 | |
Poonam Aggrwal | a2ec135 | 2011-02-09 19:17:53 +0000 | [diff] [blame] | 481 | #endif /* __CONFIG_H */ |