Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2010-2011 Freescale Semiconductor, Inc. |
Biwen Li | b0939dd | 2020-05-01 20:04:01 +0800 | [diff] [blame] | 4 | * Copyright 2020 NXP |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * QorIQ RDB boards configuration file |
| 9 | */ |
| 10 | #ifndef __CONFIG_H |
| 11 | #define __CONFIG_H |
| 12 | |
Simon Glass | fb64e36 | 2020-05-10 11:40:09 -0600 | [diff] [blame] | 13 | #include <linux/stringify.h> |
| 14 | |
York Sun | 443108bf | 2016-11-17 13:52:44 -0800 | [diff] [blame] | 15 | #if defined(CONFIG_TARGET_P1020RDB_PC) |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 16 | #define CONFIG_VSC7385_ENET |
| 17 | #define CONFIG_SLIC |
| 18 | #define __SW_BOOT_MASK 0x03 |
| 19 | #define __SW_BOOT_NOR 0x5c |
| 20 | #define __SW_BOOT_SPI 0x1c |
| 21 | #define __SW_BOOT_SD 0x9c |
| 22 | #define __SW_BOOT_NAND 0xec |
| 23 | #define __SW_BOOT_PCIE 0x6c |
Pali Rohár | 108bfdc | 2022-04-07 12:16:22 +0200 | [diff] [blame] | 24 | #define __SW_NOR_BANK_MASK 0xfd |
| 25 | #define __SW_NOR_BANK_UP 0x00 |
| 26 | #define __SW_NOR_BANK_LO 0x02 |
Pali Rohár | 6037f90 | 2022-04-25 16:50:43 +0200 | [diff] [blame] | 27 | #define __SW_BOOT_NOR_BANK_UP 0x5c /* (__SW_BOOT_NOR | __SW_NOR_BANK_UP) */ |
| 28 | #define __SW_BOOT_NOR_BANK_LO 0x5e /* (__SW_BOOT_NOR | __SW_NOR_BANK_LO) */ |
| 29 | #define __SW_BOOT_NOR_BANK_MASK 0x01 /* (__SW_BOOT_MASK & __SW_NOR_BANK_MASK) */ |
Scott Wood | 03fedda | 2012-10-12 18:02:24 -0500 | [diff] [blame] | 30 | #define CONFIG_SYS_L2_SIZE (256 << 10) |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 31 | #endif |
| 32 | |
Haijun.Zhang | a434d0a | 2013-06-28 10:47:09 +0800 | [diff] [blame] | 33 | /* |
| 34 | * P1020RDB-PD board has user selectable switches for evaluating different |
| 35 | * frequency and boot options for the P1020 device. The table that |
| 36 | * follow describe the available options. The front six binary number was in |
| 37 | * accordance with SW3[1:6]. |
| 38 | * 111101 533 533 267 667 NOR Core0 boot; Core1 hold-off |
| 39 | * 101101 667 667 333 667 NOR Core0 boot; Core1 hold-off |
| 40 | * 011001 800 800 400 667 NOR Core0 boot; Core1 hold-off |
| 41 | * 001001 800 800 400 667 SD/MMC Core0 boot; Core1 hold-off |
| 42 | * 001101 800 800 400 667 SPI Core0 boot; Core1 hold-off |
| 43 | * 010001 800 800 400 667 NAND Core0 boot; Core1 hold-off |
| 44 | * 011101 800 800 400 667 PCIe-2 Core0 boot; Core1 hold-off |
| 45 | */ |
York Sun | 0673238 | 2016-11-17 13:53:33 -0800 | [diff] [blame] | 46 | #if defined(CONFIG_TARGET_P1020RDB_PD) |
Haijun.Zhang | a434d0a | 2013-06-28 10:47:09 +0800 | [diff] [blame] | 47 | #define CONFIG_VSC7385_ENET |
| 48 | #define CONFIG_SLIC |
| 49 | #define __SW_BOOT_MASK 0x03 |
| 50 | #define __SW_BOOT_NOR 0x64 |
| 51 | #define __SW_BOOT_SPI 0x34 |
| 52 | #define __SW_BOOT_SD 0x24 |
| 53 | #define __SW_BOOT_NAND 0x44 |
| 54 | #define __SW_BOOT_PCIE 0x74 |
Pali Rohár | 108bfdc | 2022-04-07 12:16:22 +0200 | [diff] [blame] | 55 | #define __SW_NOR_BANK_MASK 0xfd |
| 56 | #define __SW_NOR_BANK_UP 0x00 |
| 57 | #define __SW_NOR_BANK_LO 0x02 |
Pali Rohár | 6037f90 | 2022-04-25 16:50:43 +0200 | [diff] [blame] | 58 | #define __SW_BOOT_NOR_BANK_UP 0x64 /* (__SW_BOOT_NOR | __SW_NOR_BANK_UP) */ |
| 59 | #define __SW_BOOT_NOR_BANK_LO 0x66 /* (__SW_BOOT_NOR | __SW_NOR_BANK_LO) */ |
| 60 | #define __SW_BOOT_NOR_BANK_MASK 0x01 /* (__SW_BOOT_MASK & __SW_NOR_BANK_MASK) */ |
Haijun.Zhang | a434d0a | 2013-06-28 10:47:09 +0800 | [diff] [blame] | 61 | #define CONFIG_SYS_L2_SIZE (256 << 10) |
Yangbo Lu | 140b2bb | 2014-10-16 10:58:55 +0800 | [diff] [blame] | 62 | /* |
| 63 | * Dynamic MTD Partition support with mtdparts |
| 64 | */ |
Haijun.Zhang | a434d0a | 2013-06-28 10:47:09 +0800 | [diff] [blame] | 65 | #endif |
| 66 | |
York Sun | 9c01ff2 | 2016-11-17 14:19:18 -0800 | [diff] [blame] | 67 | #if defined(CONFIG_TARGET_P2020RDB) |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 68 | #define CONFIG_VSC7385_ENET |
| 69 | #define __SW_BOOT_MASK 0x03 |
| 70 | #define __SW_BOOT_NOR 0xc8 |
| 71 | #define __SW_BOOT_SPI 0x28 |
Pali Rohár | 521973b | 2022-04-07 12:16:15 +0200 | [diff] [blame] | 72 | #define __SW_BOOT_SD 0x68 |
| 73 | #define __SW_BOOT_SD2 0x18 |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 74 | #define __SW_BOOT_NAND 0xe8 |
| 75 | #define __SW_BOOT_PCIE 0xa8 |
Pali Rohár | 108bfdc | 2022-04-07 12:16:22 +0200 | [diff] [blame] | 76 | #define __SW_NOR_BANK_MASK 0xfd |
| 77 | #define __SW_NOR_BANK_UP 0x00 |
| 78 | #define __SW_NOR_BANK_LO 0x02 |
Pali Rohár | 6037f90 | 2022-04-25 16:50:43 +0200 | [diff] [blame] | 79 | #define __SW_BOOT_NOR_BANK_UP 0xc8 /* (__SW_BOOT_NOR | __SW_NOR_BANK_UP) */ |
| 80 | #define __SW_BOOT_NOR_BANK_LO 0xca /* (__SW_BOOT_NOR | __SW_NOR_BANK_LO) */ |
| 81 | #define __SW_BOOT_NOR_BANK_MASK 0x01 /* (__SW_BOOT_MASK & __SW_NOR_BANK_MASK) */ |
Scott Wood | 03fedda | 2012-10-12 18:02:24 -0500 | [diff] [blame] | 82 | #define CONFIG_SYS_L2_SIZE (512 << 10) |
Yangbo Lu | 140b2bb | 2014-10-16 10:58:55 +0800 | [diff] [blame] | 83 | /* |
| 84 | * Dynamic MTD Partition support with mtdparts |
| 85 | */ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 86 | #endif |
| 87 | |
| 88 | #ifdef CONFIG_SDCARD |
Prabhakar Kushwaha | f203656 | 2014-01-14 11:34:26 +0530 | [diff] [blame] | 89 | #define CONFIG_SYS_MMC_U_BOOT_SIZE (768 << 10) |
Pali Rohár | 9f76410 | 2022-07-28 11:10:12 +0800 | [diff] [blame] | 90 | #define CONFIG_SYS_MMC_U_BOOT_DST CONFIG_SYS_TEXT_BASE |
| 91 | #define CONFIG_SYS_MMC_U_BOOT_START CONFIG_SYS_TEXT_BASE |
Pali Rohár | 78cc13c | 2022-08-01 14:50:12 +0200 | [diff] [blame] | 92 | #ifdef CONFIG_FSL_PREPBL_ESDHC_BOOT_SECTOR |
| 93 | #define CONFIG_SYS_MMC_U_BOOT_OFFS (CONFIG_SPL_PAD_TO - CONFIG_FSL_PREPBL_ESDHC_BOOT_SECTOR_DATA*512) |
| 94 | #else |
Pali Rohár | 9f76410 | 2022-07-28 11:10:12 +0800 | [diff] [blame] | 95 | #define CONFIG_SYS_MMC_U_BOOT_OFFS CONFIG_SPL_PAD_TO |
Pali Rohár | 78cc13c | 2022-08-01 14:50:12 +0200 | [diff] [blame] | 96 | #endif |
Tom Rini | a73788c | 2021-09-22 14:50:37 -0400 | [diff] [blame] | 97 | #elif defined(CONFIG_SPIFLASH) |
Prabhakar Kushwaha | f203656 | 2014-01-14 11:34:26 +0530 | [diff] [blame] | 98 | #define CONFIG_SYS_SPI_FLASH_U_BOOT_SIZE (768 << 10) |
Pali Rohár | 9f76410 | 2022-07-28 11:10:12 +0800 | [diff] [blame] | 99 | #define CONFIG_SYS_SPI_FLASH_U_BOOT_DST CONFIG_SYS_TEXT_BASE |
| 100 | #define CONFIG_SYS_SPI_FLASH_U_BOOT_START CONFIG_SYS_TEXT_BASE |
| 101 | #define CONFIG_SYS_SPI_FLASH_U_BOOT_OFFS CONFIG_SPL_PAD_TO |
Tom Rini | a73788c | 2021-09-22 14:50:37 -0400 | [diff] [blame] | 102 | #elif defined(CONFIG_MTD_RAW_NAND) |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 103 | #ifdef CONFIG_TPL_BUILD |
Prabhakar Kushwaha | f203656 | 2014-01-14 11:34:26 +0530 | [diff] [blame] | 104 | #define CONFIG_SYS_NAND_U_BOOT_SIZE (832 << 10) |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 105 | #define CONFIG_SYS_NAND_U_BOOT_DST (0x11000000) |
| 106 | #define CONFIG_SYS_NAND_U_BOOT_START (0x11000000) |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 107 | #elif defined(CONFIG_SPL_BUILD) |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 108 | #define CONFIG_SYS_NAND_U_BOOT_SIZE (128 << 10) |
| 109 | #define CONFIG_SYS_NAND_U_BOOT_DST 0xf8f80000 |
| 110 | #define CONFIG_SYS_NAND_U_BOOT_START 0xf8f80000 |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 111 | #endif /* not CONFIG_TPL_BUILD */ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 112 | #endif |
| 113 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 114 | #ifndef CONFIG_RESET_VECTOR_ADDRESS |
| 115 | #define CONFIG_RESET_VECTOR_ADDRESS 0xeffffffc |
| 116 | #endif |
| 117 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 118 | #define CONFIG_HWCONFIG |
| 119 | /* |
| 120 | * These can be toggled for performance analysis, otherwise use default. |
| 121 | */ |
| 122 | #define CONFIG_L2_CACHE |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 123 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 124 | #define CONFIG_SYS_CCSRBAR 0xffe00000 |
| 125 | #define CONFIG_SYS_CCSRBAR_PHYS_LOW CONFIG_SYS_CCSRBAR |
| 126 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 127 | /* DDR Setup */ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 128 | #define SPD_EEPROM_ADDRESS 0x52 |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 129 | |
Priyanka Jain | b1d2441 | 2020-09-21 11:56:39 +0530 | [diff] [blame] | 130 | #if defined(CONFIG_TARGET_P1020RDB_PD) |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 131 | #define CONFIG_SYS_SDRAM_SIZE_LAW LAW_SIZE_2G |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 132 | #else |
| 133 | #define CONFIG_SYS_SDRAM_SIZE_LAW LAW_SIZE_1G |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 134 | #endif |
| 135 | #define CONFIG_SYS_SDRAM_SIZE (1u << (CONFIG_SYS_SDRAM_SIZE_LAW - 19)) |
| 136 | #define CONFIG_SYS_DDR_SDRAM_BASE 0x00000000 |
| 137 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE |
| 138 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 139 | /* Default settings for DDR3 */ |
York Sun | 9c01ff2 | 2016-11-17 14:19:18 -0800 | [diff] [blame] | 140 | #ifndef CONFIG_TARGET_P2020RDB |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 141 | #define CONFIG_SYS_DDR_CS0_BNDS 0x0000003f |
| 142 | #define CONFIG_SYS_DDR_CS0_CONFIG 0x80014302 |
| 143 | #define CONFIG_SYS_DDR_CS0_CONFIG_2 0x00000000 |
| 144 | #define CONFIG_SYS_DDR_CS1_BNDS 0x0040007f |
| 145 | #define CONFIG_SYS_DDR_CS1_CONFIG 0x80014302 |
| 146 | #define CONFIG_SYS_DDR_CS1_CONFIG_2 0x00000000 |
| 147 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 148 | #define CONFIG_SYS_DDR_INIT_ADDR 0x00000000 |
| 149 | #define CONFIG_SYS_DDR_INIT_EXT_ADDR 0x00000000 |
| 150 | #define CONFIG_SYS_DDR_MODE_CONTROL 0x00000000 |
| 151 | |
| 152 | #define CONFIG_SYS_DDR_ZQ_CONTROL 0x89080600 |
| 153 | #define CONFIG_SYS_DDR_WRLVL_CONTROL 0x8655A608 |
| 154 | #define CONFIG_SYS_DDR_SR_CNTR 0x00000000 |
| 155 | #define CONFIG_SYS_DDR_RCW_1 0x00000000 |
| 156 | #define CONFIG_SYS_DDR_RCW_2 0x00000000 |
| 157 | #define CONFIG_SYS_DDR_CONTROL 0xC70C0000 /* Type = DDR3 */ |
| 158 | #define CONFIG_SYS_DDR_CONTROL_2 0x04401050 |
| 159 | #define CONFIG_SYS_DDR_TIMING_4 0x00220001 |
| 160 | #define CONFIG_SYS_DDR_TIMING_5 0x03402400 |
| 161 | |
| 162 | #define CONFIG_SYS_DDR_TIMING_3 0x00020000 |
| 163 | #define CONFIG_SYS_DDR_TIMING_0 0x00330004 |
| 164 | #define CONFIG_SYS_DDR_TIMING_1 0x6f6B4846 |
| 165 | #define CONFIG_SYS_DDR_TIMING_2 0x0FA8C8CF |
| 166 | #define CONFIG_SYS_DDR_CLK_CTRL 0x03000000 |
| 167 | #define CONFIG_SYS_DDR_MODE_1 0x40461520 |
| 168 | #define CONFIG_SYS_DDR_MODE_2 0x8000c000 |
| 169 | #define CONFIG_SYS_DDR_INTERVAL 0x0C300000 |
| 170 | #endif |
| 171 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 172 | /* |
| 173 | * Memory map |
| 174 | * |
Scott Wood | 5e62187 | 2012-10-02 19:35:18 -0500 | [diff] [blame] | 175 | * 0x0000_0000 0x7fff_ffff DDR Up to 2GB cacheable |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 176 | * 0x8000_0000 0xdfff_ffff PCI Express Mem 1.5G non-cacheable(PCIe * 3) |
Scott Wood | 5e62187 | 2012-10-02 19:35:18 -0500 | [diff] [blame] | 177 | * 0xec00_0000 0xefff_ffff NOR flash Up to 64M non-cacheable CS0/1 |
Scott Wood | 03fedda | 2012-10-12 18:02:24 -0500 | [diff] [blame] | 178 | * 0xf8f8_0000 0xf8ff_ffff L2 SRAM Up to 512K cacheable |
| 179 | * (early boot only) |
Scott Wood | 5e62187 | 2012-10-02 19:35:18 -0500 | [diff] [blame] | 180 | * 0xff80_0000 0xff80_7fff NAND flash 32K non-cacheable CS1/0 |
Scott Wood | 5e62187 | 2012-10-02 19:35:18 -0500 | [diff] [blame] | 181 | * 0xffa0_0000 0xffaf_ffff CPLD 1M non-cacheable CS3 |
| 182 | * 0xffb0_0000 0xffbf_ffff VSC7385 switch 1M non-cacheable CS2 |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 183 | * 0xffc0_0000 0xffc3_ffff PCI IO range 256k non-cacheable |
Scott Wood | 5e62187 | 2012-10-02 19:35:18 -0500 | [diff] [blame] | 184 | * 0xffd0_0000 0xffd0_3fff L1 for stack 16K cacheable |
Scott Wood | 5e62187 | 2012-10-02 19:35:18 -0500 | [diff] [blame] | 185 | * 0xffe0_0000 0xffef_ffff CCSR 1M non-cacheable |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 186 | */ |
| 187 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 188 | /* |
| 189 | * Local Bus Definitions |
| 190 | */ |
Priyanka Jain | b1d2441 | 2020-09-21 11:56:39 +0530 | [diff] [blame] | 191 | #if defined(CONFIG_TARGET_P1020RDB_PD) |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 192 | #define CONFIG_SYS_FLASH_BASE 0xec000000 |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 193 | #else |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 194 | #define CONFIG_SYS_FLASH_BASE 0xef000000 |
| 195 | #endif |
| 196 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 197 | #ifdef CONFIG_PHYS_64BIT |
| 198 | #define CONFIG_SYS_FLASH_BASE_PHYS (0xf00000000ull | CONFIG_SYS_FLASH_BASE) |
| 199 | #else |
| 200 | #define CONFIG_SYS_FLASH_BASE_PHYS CONFIG_SYS_FLASH_BASE |
| 201 | #endif |
| 202 | |
Timur Tabi | b56570c | 2012-07-06 07:39:26 +0000 | [diff] [blame] | 203 | #define CONFIG_FLASH_BR_PRELIM (BR_PHYS_ADDR(CONFIG_SYS_FLASH_BASE_PHYS) \ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 204 | | BR_PS_16 | BR_V) |
| 205 | |
| 206 | #define CONFIG_FLASH_OR_PRELIM 0xfc000ff7 |
| 207 | |
| 208 | #define CONFIG_SYS_FLASH_BANKS_LIST {CONFIG_SYS_FLASH_BASE_PHYS} |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 209 | #define CONFIG_FLASH_SHOW_PROGRESS 45 /* count down from 45/5: 9..1 */ |
| 210 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 211 | /* Nand Flash */ |
| 212 | #ifdef CONFIG_NAND_FSL_ELBC |
| 213 | #define CONFIG_SYS_NAND_BASE 0xff800000 |
| 214 | #ifdef CONFIG_PHYS_64BIT |
| 215 | #define CONFIG_SYS_NAND_BASE_PHYS 0xfff800000ull |
| 216 | #else |
| 217 | #define CONFIG_SYS_NAND_BASE_PHYS CONFIG_SYS_NAND_BASE |
| 218 | #endif |
| 219 | |
| 220 | #define CONFIG_SYS_NAND_BASE_LIST { CONFIG_SYS_NAND_BASE } |
| 221 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 222 | |
Timur Tabi | b56570c | 2012-07-06 07:39:26 +0000 | [diff] [blame] | 223 | #define CONFIG_SYS_NAND_BR_PRELIM (BR_PHYS_ADDR(CONFIG_SYS_NAND_BASE_PHYS) \ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 224 | | (2<<BR_DECC_SHIFT) /* Use HW ECC */ \ |
| 225 | | BR_PS_8 /* Port Size = 8 bit */ \ |
| 226 | | BR_MS_FCM /* MSEL = FCM */ \ |
| 227 | | BR_V) /* valid */ |
York Sun | 0673238 | 2016-11-17 13:53:33 -0800 | [diff] [blame] | 228 | #if defined(CONFIG_TARGET_P1020RDB_PD) |
Haijun.Zhang | a434d0a | 2013-06-28 10:47:09 +0800 | [diff] [blame] | 229 | #define CONFIG_SYS_NAND_OR_PRELIM (OR_AM_32KB \ |
| 230 | | OR_FCM_PGS /* Large Page*/ \ |
| 231 | | OR_FCM_CSCT \ |
| 232 | | OR_FCM_CST \ |
| 233 | | OR_FCM_CHT \ |
| 234 | | OR_FCM_SCY_1 \ |
| 235 | | OR_FCM_TRLX \ |
| 236 | | OR_FCM_EHTR) |
| 237 | #else |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 238 | #define CONFIG_SYS_NAND_OR_PRELIM (OR_AM_32KB /* small page */ \ |
| 239 | | OR_FCM_CSCT \ |
| 240 | | OR_FCM_CST \ |
| 241 | | OR_FCM_CHT \ |
| 242 | | OR_FCM_SCY_1 \ |
| 243 | | OR_FCM_TRLX \ |
| 244 | | OR_FCM_EHTR) |
Haijun.Zhang | a434d0a | 2013-06-28 10:47:09 +0800 | [diff] [blame] | 245 | #endif |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 246 | #endif /* CONFIG_NAND_FSL_ELBC */ |
| 247 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 248 | #define CONFIG_SYS_INIT_RAM_LOCK |
| 249 | #define CONFIG_SYS_INIT_RAM_ADDR 0xffd00000 /* stack in RAM */ |
| 250 | #ifdef CONFIG_PHYS_64BIT |
| 251 | #define CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH 0xf |
| 252 | #define CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW CONFIG_SYS_INIT_RAM_ADDR |
| 253 | /* The assembler doesn't like typecast */ |
| 254 | #define CONFIG_SYS_INIT_RAM_ADDR_PHYS \ |
| 255 | ((CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH * 1ull << 32) | \ |
| 256 | CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW) |
| 257 | #else |
| 258 | /* Initial L1 address */ |
| 259 | #define CONFIG_SYS_INIT_RAM_ADDR_PHYS CONFIG_SYS_INIT_RAM_ADDR |
| 260 | #define CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH 0 |
| 261 | #define CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW CONFIG_SYS_INIT_RAM_ADDR_PHYS |
| 262 | #endif |
| 263 | /* Size of used area in RAM */ |
| 264 | #define CONFIG_SYS_INIT_RAM_SIZE 0x00004000 |
| 265 | |
Tom Rini | 55f3756 | 2022-05-24 14:14:02 -0400 | [diff] [blame] | 266 | #define CONFIG_SYS_INIT_SP_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 267 | |
Prabhakar Kushwaha | f402731 | 2014-03-31 15:31:48 +0530 | [diff] [blame] | 268 | #define CONFIG_SYS_MONITOR_LEN (768 * 1024) |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 269 | |
| 270 | #define CONFIG_SYS_CPLD_BASE 0xffa00000 |
| 271 | #ifdef CONFIG_PHYS_64BIT |
| 272 | #define CONFIG_SYS_CPLD_BASE_PHYS 0xfffa00000ull |
| 273 | #else |
| 274 | #define CONFIG_SYS_CPLD_BASE_PHYS CONFIG_SYS_CPLD_BASE |
| 275 | #endif |
| 276 | /* CPLD config size: 1Mb */ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 277 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 278 | /* Vsc7385 switch */ |
| 279 | #ifdef CONFIG_VSC7385_ENET |
Pali Rohár | 3cac197 | 2022-04-07 12:16:20 +0200 | [diff] [blame] | 280 | #define __VSCFW_ADDR "vscfw_addr=ef000000\0" |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 281 | #define CONFIG_SYS_VSC7385_BASE 0xffb00000 |
| 282 | |
| 283 | #ifdef CONFIG_PHYS_64BIT |
| 284 | #define CONFIG_SYS_VSC7385_BASE_PHYS 0xfffb00000ull |
| 285 | #else |
| 286 | #define CONFIG_SYS_VSC7385_BASE_PHYS CONFIG_SYS_VSC7385_BASE |
| 287 | #endif |
| 288 | |
| 289 | #define CONFIG_SYS_VSC7385_BR_PRELIM \ |
| 290 | (BR_PHYS_ADDR(CONFIG_SYS_VSC7385_BASE_PHYS) | BR_PS_8 | BR_V) |
| 291 | #define CONFIG_SYS_VSC7385_OR_PRELIM (OR_AM_128KB | OR_GPCM_CSNT | \ |
| 292 | OR_GPCM_XACS | OR_GPCM_SCY_15 | OR_GPCM_SETA | \ |
| 293 | OR_GPCM_TRLX | OR_GPCM_EHTR | OR_GPCM_EAD) |
| 294 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 295 | /* The size of the VSC7385 firmware image */ |
| 296 | #define CONFIG_VSC7385_IMAGE_SIZE 8192 |
| 297 | #endif |
| 298 | |
Pali Rohár | 3cac197 | 2022-04-07 12:16:20 +0200 | [diff] [blame] | 299 | #ifndef __VSCFW_ADDR |
| 300 | #define __VSCFW_ADDR "" |
| 301 | #endif |
| 302 | |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 303 | /* |
| 304 | * Config the L2 Cache as L2 SRAM |
| 305 | */ |
| 306 | #if defined(CONFIG_SPL_BUILD) |
Ying Zhang | f74fd4e | 2013-09-06 17:30:57 +0800 | [diff] [blame] | 307 | #if defined(CONFIG_SDCARD) || defined(CONFIG_SPIFLASH) |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 308 | #define CONFIG_SYS_INIT_L2_ADDR 0xf8f80000 |
| 309 | #define CONFIG_SYS_INIT_L2_ADDR_PHYS CONFIG_SYS_INIT_L2_ADDR |
| 310 | #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] | 311 | #elif defined(CONFIG_MTD_RAW_NAND) |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 312 | #ifdef CONFIG_TPL_BUILD |
| 313 | #define CONFIG_SYS_INIT_L2_ADDR 0xf8f80000 |
| 314 | #define CONFIG_SYS_INIT_L2_ADDR_PHYS CONFIG_SYS_INIT_L2_ADDR |
| 315 | #define CONFIG_SYS_INIT_L2_END (CONFIG_SYS_INIT_L2_ADDR + CONFIG_SYS_L2_SIZE) |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 316 | #else |
| 317 | #define CONFIG_SYS_INIT_L2_ADDR 0xf8f80000 |
| 318 | #define CONFIG_SYS_INIT_L2_ADDR_PHYS CONFIG_SYS_INIT_L2_ADDR |
| 319 | #define CONFIG_SYS_INIT_L2_END (CONFIG_SYS_INIT_L2_ADDR + CONFIG_SYS_L2_SIZE) |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 320 | #endif /* CONFIG_TPL_BUILD */ |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 321 | #endif |
| 322 | #endif |
| 323 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 324 | /* Serial Port - controlled on board with jumper J8 |
| 325 | * open - index 2 |
| 326 | * shorted - index 1 |
| 327 | */ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 328 | #undef CONFIG_SERIAL_SOFTWARE_FIFO |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 329 | #define CONFIG_SYS_NS16550_SERIAL |
| 330 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
| 331 | #define CONFIG_SYS_NS16550_CLK get_bus_freq(0) |
Tom Rini | 6b15c16 | 2022-05-13 12:26:35 -0400 | [diff] [blame] | 332 | #if defined(CONFIG_SPL_BUILD) && CONFIG_IS_ENABLED(INIT_MINIMAL) |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 333 | #define CONFIG_NS16550_MIN_FUNCTIONS |
| 334 | #endif |
| 335 | |
| 336 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
| 337 | {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200} |
| 338 | |
| 339 | #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CCSRBAR+0x4500) |
| 340 | #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_CCSRBAR+0x4600) |
| 341 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 342 | /* I2C */ |
Igor Opaniuk | f7c9176 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 343 | #if !CONFIG_IS_ENABLED(DM_I2C) |
Heiko Schocher | f285074 | 2012-10-24 13:48:22 +0200 | [diff] [blame] | 344 | #define CONFIG_SYS_I2C_NOPROBES { {0, 0x29} } |
Biwen Li | b0939dd | 2020-05-01 20:04:01 +0800 | [diff] [blame] | 345 | #endif |
| 346 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 347 | /* |
| 348 | * I2C2 EEPROM |
| 349 | */ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 350 | |
| 351 | #define CONFIG_RTC_PT7C4338 |
| 352 | #define CONFIG_SYS_I2C_RTC_ADDR 0x68 |
| 353 | #define CONFIG_SYS_I2C_PCA9557_ADDR 0x18 |
| 354 | |
| 355 | /* enable read and write access to EEPROM */ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 356 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 357 | #if defined(CONFIG_PCI) |
| 358 | /* |
| 359 | * General PCI |
| 360 | * Memory space is mapped 1-1, but I/O space must start from 0. |
| 361 | */ |
| 362 | |
| 363 | /* controller 2, direct to uli, tgtid 2, Base address 9000 */ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 364 | #define CONFIG_SYS_PCIE2_MEM_VIRT 0xa0000000 |
| 365 | #ifdef CONFIG_PHYS_64BIT |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 366 | #define CONFIG_SYS_PCIE2_MEM_PHYS 0xc20000000ull |
| 367 | #else |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 368 | #define CONFIG_SYS_PCIE2_MEM_PHYS 0xa0000000 |
| 369 | #endif |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 370 | #define CONFIG_SYS_PCIE2_IO_VIRT 0xffc10000 |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 371 | #ifdef CONFIG_PHYS_64BIT |
| 372 | #define CONFIG_SYS_PCIE2_IO_PHYS 0xfffc10000ull |
| 373 | #else |
| 374 | #define CONFIG_SYS_PCIE2_IO_PHYS 0xffc10000 |
| 375 | #endif |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 376 | |
| 377 | /* controller 1, Slot 2, tgtid 1, Base address a000 */ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 378 | #define CONFIG_SYS_PCIE1_MEM_VIRT 0x80000000 |
| 379 | #ifdef CONFIG_PHYS_64BIT |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 380 | #define CONFIG_SYS_PCIE1_MEM_PHYS 0xc00000000ull |
| 381 | #else |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 382 | #define CONFIG_SYS_PCIE1_MEM_PHYS 0x80000000 |
| 383 | #endif |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 384 | #define CONFIG_SYS_PCIE1_IO_VIRT 0xffc00000 |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 385 | #ifdef CONFIG_PHYS_64BIT |
| 386 | #define CONFIG_SYS_PCIE1_IO_PHYS 0xfffc00000ull |
| 387 | #else |
| 388 | #define CONFIG_SYS_PCIE1_IO_PHYS 0xffc00000 |
| 389 | #endif |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 390 | #endif /* CONFIG_PCI */ |
| 391 | |
| 392 | #if defined(CONFIG_TSEC_ENET) |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 393 | #define CONFIG_TSEC1 |
| 394 | #define CONFIG_TSEC1_NAME "eTSEC1" |
| 395 | #define CONFIG_TSEC2 |
| 396 | #define CONFIG_TSEC2_NAME "eTSEC2" |
| 397 | #define CONFIG_TSEC3 |
| 398 | #define CONFIG_TSEC3_NAME "eTSEC3" |
| 399 | |
| 400 | #define TSEC1_PHY_ADDR 2 |
| 401 | #define TSEC2_PHY_ADDR 0 |
| 402 | #define TSEC3_PHY_ADDR 1 |
| 403 | |
| 404 | #define TSEC1_FLAGS (TSEC_GIGABIT | TSEC_REDUCED) |
| 405 | #define TSEC2_FLAGS (TSEC_GIGABIT | TSEC_REDUCED) |
| 406 | #define TSEC3_FLAGS (TSEC_GIGABIT | TSEC_REDUCED) |
| 407 | |
| 408 | #define TSEC1_PHYIDX 0 |
| 409 | #define TSEC2_PHYIDX 0 |
| 410 | #define TSEC3_PHYIDX 0 |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 411 | #endif /* CONFIG_TSEC_ENET */ |
| 412 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 413 | /* |
| 414 | * Environment |
| 415 | */ |
Tom Rini | 5989fd4 | 2022-06-20 08:07:42 -0400 | [diff] [blame] | 416 | #if defined(CONFIG_MTD_RAW_NAND) |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 417 | #ifdef CONFIG_TPL_BUILD |
Tom Rini | 5cd7ece | 2019-11-18 20:02:10 -0500 | [diff] [blame] | 418 | #define SPL_ENV_ADDR (CONFIG_SYS_INIT_L2_ADDR + (160 << 10)) |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 419 | #endif |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 420 | #endif |
| 421 | |
| 422 | #define CONFIG_LOADS_ECHO /* echo on for serial download */ |
| 423 | #define CONFIG_SYS_LOADS_BAUD_CHANGE /* allow baudrate change */ |
| 424 | |
| 425 | /* |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 426 | * USB |
| 427 | */ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 428 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 429 | #ifdef CONFIG_MMC |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 430 | #define CONFIG_SYS_FSL_ESDHC_ADDR CONFIG_SYS_MPC85xx_ESDHC_ADDR |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 431 | #endif |
| 432 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 433 | /* |
| 434 | * Miscellaneous configurable options |
| 435 | */ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 436 | |
| 437 | /* |
| 438 | * For booting Linux, the board info and command line data |
| 439 | * have to be in the first 64 MB of memory, since this is |
| 440 | * the maximum mapped by the Linux kernel during initialization. |
| 441 | */ |
| 442 | #define CONFIG_SYS_BOOTMAPSZ (64 << 20) /* Initial Memory for Linux*/ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 443 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 444 | /* |
| 445 | * Environment Configuration |
| 446 | */ |
Mario Six | 790d844 | 2018-03-28 14:38:20 +0200 | [diff] [blame] | 447 | #define CONFIG_HOSTNAME "unknown" |
Joe Hershberger | 257ff78 | 2011-10-13 13:03:47 +0000 | [diff] [blame] | 448 | #define CONFIG_ROOTPATH "/opt/nfsroot" |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 449 | #define CONFIG_UBOOTPATH u-boot.bin /* U-Boot image on TFTP server */ |
| 450 | |
Pali Rohár | edbaa2e | 2022-05-26 10:52:27 +0200 | [diff] [blame] | 451 | #include "p1_p2_bootsrc.h" |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 452 | |
| 453 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 454 | "netdev=eth0\0" \ |
Marek Vasut | 0b3176c | 2012-09-23 17:41:24 +0200 | [diff] [blame] | 455 | "uboot=" __stringify(CONFIG_UBOOTPATH) "\0" \ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 456 | "loadaddr=1000000\0" \ |
| 457 | "bootfile=uImage\0" \ |
| 458 | "tftpflash=tftpboot $loadaddr $uboot; " \ |
Marek Vasut | 0b3176c | 2012-09-23 17:41:24 +0200 | [diff] [blame] | 459 | "protect off " __stringify(CONFIG_SYS_TEXT_BASE) " +$filesize; " \ |
| 460 | "erase " __stringify(CONFIG_SYS_TEXT_BASE) " +$filesize; " \ |
| 461 | "cp.b $loadaddr " __stringify(CONFIG_SYS_TEXT_BASE) " $filesize; " \ |
| 462 | "protect on " __stringify(CONFIG_SYS_TEXT_BASE) " +$filesize; " \ |
| 463 | "cmp.b $loadaddr " __stringify(CONFIG_SYS_TEXT_BASE) " $filesize\0" \ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 464 | "hwconfig=usb1:dr_mode=host,phy_type=ulpi\0" \ |
| 465 | "consoledev=ttyS0\0" \ |
| 466 | "ramdiskaddr=2000000\0" \ |
| 467 | "ramdiskfile=rootfs.ext2.gz.uboot\0" \ |
Scott Wood | b7f4b85 | 2016-07-19 17:52:06 -0500 | [diff] [blame] | 468 | "fdtaddr=1e00000\0" \ |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 469 | "bdev=sda1\0" \ |
| 470 | "jffs2nor=mtdblock3\0" \ |
| 471 | "norbootaddr=ef080000\0" \ |
| 472 | "norfdtaddr=ef040000\0" \ |
| 473 | "jffs2nand=mtdblock9\0" \ |
| 474 | "nandbootaddr=100000\0" \ |
| 475 | "nandfdtaddr=80000\0" \ |
| 476 | "ramdisk_size=120000\0" \ |
Pali Rohár | 3cac197 | 2022-04-07 12:16:20 +0200 | [diff] [blame] | 477 | __VSCFW_ADDR \ |
Pali Rohár | edbaa2e | 2022-05-26 10:52:27 +0200 | [diff] [blame] | 478 | MAP_NOR_LO_CMD(map_lowernorbank) \ |
| 479 | MAP_NOR_UP_CMD(map_uppernorbank) \ |
| 480 | RST_NOR_CMD(norboot) \ |
Pali Rohár | 6037f90 | 2022-04-25 16:50:43 +0200 | [diff] [blame] | 481 | RST_NOR_LO_CMD(norlowerboot) \ |
| 482 | RST_NOR_UP_CMD(norupperboot) \ |
Pali Rohár | edbaa2e | 2022-05-26 10:52:27 +0200 | [diff] [blame] | 483 | RST_SPI_CMD(spiboot) \ |
| 484 | RST_SD_CMD(sdboot) \ |
Pali Rohár | 6037f90 | 2022-04-25 16:50:43 +0200 | [diff] [blame] | 485 | RST_SD2_CMD(sd2boot) \ |
Pali Rohár | edbaa2e | 2022-05-26 10:52:27 +0200 | [diff] [blame] | 486 | RST_NAND_CMD(nandboot) \ |
| 487 | RST_PCIE_CMD(pciboot) \ |
Pali Rohár | 6037f90 | 2022-04-25 16:50:43 +0200 | [diff] [blame] | 488 | RST_DEF_CMD(defboot) \ |
Pali Rohár | edbaa2e | 2022-05-26 10:52:27 +0200 | [diff] [blame] | 489 | "" |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 490 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 491 | #define CONFIG_USB_FAT_BOOT \ |
| 492 | "setenv bootargs root=/dev/ram rw " \ |
| 493 | "console=$consoledev,$baudrate $othbootargs " \ |
| 494 | "ramdisk_size=$ramdisk_size;" \ |
| 495 | "usb start;" \ |
| 496 | "fatload usb 0:2 $loadaddr $bootfile;" \ |
| 497 | "fatload usb 0:2 $fdtaddr $fdtfile;" \ |
| 498 | "fatload usb 0:2 $ramdiskaddr $ramdiskfile;" \ |
| 499 | "bootm $loadaddr $ramdiskaddr $fdtaddr" |
| 500 | |
| 501 | #define CONFIG_USB_EXT2_BOOT \ |
| 502 | "setenv bootargs root=/dev/ram rw " \ |
| 503 | "console=$consoledev,$baudrate $othbootargs " \ |
| 504 | "ramdisk_size=$ramdisk_size;" \ |
| 505 | "usb start;" \ |
| 506 | "ext2load usb 0:4 $loadaddr $bootfile;" \ |
| 507 | "ext2load usb 0:4 $fdtaddr $fdtfile;" \ |
| 508 | "ext2load usb 0:4 $ramdiskaddr $ramdiskfile;" \ |
| 509 | "bootm $loadaddr $ramdiskaddr $fdtaddr" |
| 510 | |
| 511 | #define CONFIG_NORBOOT \ |
| 512 | "setenv bootargs root=/dev/$jffs2nor rw " \ |
| 513 | "console=$consoledev,$baudrate rootfstype=jffs2 $othbootargs;" \ |
| 514 | "bootm $norbootaddr - $norfdtaddr" |
| 515 | |
Li Yang | 5f99973 | 2011-07-26 09:50:46 -0500 | [diff] [blame] | 516 | #endif /* __CONFIG_H */ |