Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 2 | /* |
ramneek mehresh | 3d33963 | 2012-04-18 19:39:53 +0000 | [diff] [blame] | 3 | * Copyright 2010-2012 Freescale Semiconductor, Inc. |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 4 | * Authors: Srikanth Srinivasan <srikanth.srinivasan@freescale.com> |
| 5 | * Timur Tabi <timur@freescale.com> |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __CONFIG_H |
| 9 | #define __CONFIG_H |
| 10 | |
| 11 | #include "../board/freescale/common/ics307_clk.h" |
| 12 | |
Matthew McClintock | c4253e9 | 2012-05-18 06:04:17 +0000 | [diff] [blame] | 13 | #ifdef CONFIG_SDCARD |
Ying Zhang | dfb2b15 | 2013-08-16 15:16:12 +0800 | [diff] [blame] | 14 | #define CONFIG_SPL_FLUSH_IMAGE |
| 15 | #define CONFIG_SPL_TARGET "u-boot-with-spl.bin" |
Ying Zhang | dfb2b15 | 2013-08-16 15:16:12 +0800 | [diff] [blame] | 16 | #define CONFIG_SPL_TEXT_BASE 0xf8f81000 |
Ying Zhang | 25daf57 | 2014-01-24 15:50:06 +0800 | [diff] [blame] | 17 | #define CONFIG_SPL_PAD_TO 0x20000 |
| 18 | #define CONFIG_SPL_MAX_SIZE (128 * 1024) |
Prabhakar Kushwaha | f203656 | 2014-01-14 11:34:26 +0530 | [diff] [blame] | 19 | #define CONFIG_SYS_MMC_U_BOOT_SIZE (768 << 10) |
Ying Zhang | dfb2b15 | 2013-08-16 15:16:12 +0800 | [diff] [blame] | 20 | #define CONFIG_SYS_MMC_U_BOOT_DST (0x11000000) |
| 21 | #define CONFIG_SYS_MMC_U_BOOT_START (0x11000000) |
Ying Zhang | 25daf57 | 2014-01-24 15:50:06 +0800 | [diff] [blame] | 22 | #define CONFIG_SYS_MMC_U_BOOT_OFFS (128 << 10) |
Ying Zhang | dfb2b15 | 2013-08-16 15:16:12 +0800 | [diff] [blame] | 23 | #define CONFIG_SYS_MPC85XX_NO_RESETVEC |
| 24 | #define CONFIG_SYS_LDSCRIPT "arch/powerpc/cpu/mpc85xx/u-boot.lds" |
| 25 | #define CONFIG_SPL_MMC_BOOT |
| 26 | #ifdef CONFIG_SPL_BUILD |
| 27 | #define CONFIG_SPL_COMMON_INIT_DDR |
| 28 | #endif |
Matthew McClintock | c4253e9 | 2012-05-18 06:04:17 +0000 | [diff] [blame] | 29 | #endif |
| 30 | |
| 31 | #ifdef CONFIG_SPIFLASH |
Ying Zhang | 9b155ca | 2013-08-16 15:16:14 +0800 | [diff] [blame] | 32 | #define CONFIG_SPL_SPI_FLASH_MINIMAL |
| 33 | #define CONFIG_SPL_FLUSH_IMAGE |
| 34 | #define CONFIG_SPL_TARGET "u-boot-with-spl.bin" |
Ying Zhang | 9b155ca | 2013-08-16 15:16:14 +0800 | [diff] [blame] | 35 | #define CONFIG_SPL_TEXT_BASE 0xf8f81000 |
Ying Zhang | 25daf57 | 2014-01-24 15:50:06 +0800 | [diff] [blame] | 36 | #define CONFIG_SPL_PAD_TO 0x20000 |
| 37 | #define CONFIG_SPL_MAX_SIZE (128 * 1024) |
Prabhakar Kushwaha | f203656 | 2014-01-14 11:34:26 +0530 | [diff] [blame] | 38 | #define CONFIG_SYS_SPI_FLASH_U_BOOT_SIZE (768 << 10) |
Ying Zhang | 9b155ca | 2013-08-16 15:16:14 +0800 | [diff] [blame] | 39 | #define CONFIG_SYS_SPI_FLASH_U_BOOT_DST (0x11000000) |
| 40 | #define CONFIG_SYS_SPI_FLASH_U_BOOT_START (0x11000000) |
Ying Zhang | 25daf57 | 2014-01-24 15:50:06 +0800 | [diff] [blame] | 41 | #define CONFIG_SYS_SPI_FLASH_U_BOOT_OFFS (128 << 10) |
Ying Zhang | 9b155ca | 2013-08-16 15:16:14 +0800 | [diff] [blame] | 42 | #define CONFIG_SYS_MPC85XX_NO_RESETVEC |
| 43 | #define CONFIG_SYS_LDSCRIPT "arch/powerpc/cpu/mpc85xx/u-boot.lds" |
| 44 | #define CONFIG_SPL_SPI_BOOT |
| 45 | #ifdef CONFIG_SPL_BUILD |
| 46 | #define CONFIG_SPL_COMMON_INIT_DDR |
| 47 | #endif |
Matthew McClintock | c4253e9 | 2012-05-18 06:04:17 +0000 | [diff] [blame] | 48 | #endif |
| 49 | |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 50 | #define CONFIG_NAND_FSL_ELBC |
York Sun | 4a34305 | 2013-12-17 11:21:08 -0800 | [diff] [blame] | 51 | #define CONFIG_SYS_NAND_MAX_ECCPOS 56 |
| 52 | #define CONFIG_SYS_NAND_MAX_OOBFREE 5 |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 53 | |
| 54 | #ifdef CONFIG_NAND |
Ying Zhang | 9c2e84f | 2013-08-16 15:16:16 +0800 | [diff] [blame] | 55 | #ifdef CONFIG_TPL_BUILD |
| 56 | #define CONFIG_SPL_NAND_BOOT |
| 57 | #define CONFIG_SPL_FLUSH_IMAGE |
Simon Glass | 7db65a8 | 2016-09-12 23:18:45 -0600 | [diff] [blame] | 58 | #define CONFIG_SPL_NAND_INIT |
Ying Zhang | 9c2e84f | 2013-08-16 15:16:16 +0800 | [diff] [blame] | 59 | #define CONFIG_SPL_COMMON_INIT_DDR |
| 60 | #define CONFIG_SPL_MAX_SIZE (128 << 10) |
| 61 | #define CONFIG_SPL_TEXT_BASE 0xf8f81000 |
| 62 | #define CONFIG_SYS_MPC85XX_NO_RESETVEC |
Prabhakar Kushwaha | f203656 | 2014-01-14 11:34:26 +0530 | [diff] [blame] | 63 | #define CONFIG_SYS_NAND_U_BOOT_SIZE (832 << 10) |
Ying Zhang | 9c2e84f | 2013-08-16 15:16:16 +0800 | [diff] [blame] | 64 | #define CONFIG_SYS_NAND_U_BOOT_DST (0x11000000) |
| 65 | #define CONFIG_SYS_NAND_U_BOOT_START (0x11000000) |
| 66 | #define CONFIG_SYS_NAND_U_BOOT_OFFS ((128 + 128) << 10) |
| 67 | #elif defined(CONFIG_SPL_BUILD) |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 68 | #define CONFIG_SPL_INIT_MINIMAL |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 69 | #define CONFIG_SPL_FLUSH_IMAGE |
Ying Zhang | 9c2e84f | 2013-08-16 15:16:16 +0800 | [diff] [blame] | 70 | #define CONFIG_SPL_TEXT_BASE 0xff800000 |
| 71 | #define CONFIG_SPL_MAX_SIZE 4096 |
| 72 | #define CONFIG_SYS_NAND_U_BOOT_SIZE (128 << 10) |
| 73 | #define CONFIG_SYS_NAND_U_BOOT_DST 0xf8f80000 |
| 74 | #define CONFIG_SYS_NAND_U_BOOT_START 0xf8f80000 |
| 75 | #define CONFIG_SYS_NAND_U_BOOT_OFFS (128 << 10) |
| 76 | #endif |
| 77 | #define CONFIG_SPL_PAD_TO 0x20000 |
| 78 | #define CONFIG_TPL_PAD_TO 0x20000 |
| 79 | #define CONFIG_SPL_TARGET "u-boot-with-spl.bin" |
Ying Zhang | 9c2e84f | 2013-08-16 15:16:16 +0800 | [diff] [blame] | 80 | #define CONFIG_SYS_LDSCRIPT "arch/powerpc/cpu/mpc85xx/u-boot-nand.lds" |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 81 | #endif |
| 82 | |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 83 | /* High Level Configuration Options */ |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 84 | |
Kumar Gala | e727a36 | 2011-01-12 02:48:53 -0600 | [diff] [blame] | 85 | #ifndef CONFIG_RESET_VECTOR_ADDRESS |
| 86 | #define CONFIG_RESET_VECTOR_ADDRESS 0xeffffffc |
| 87 | #endif |
| 88 | |
Robert P. J. Day | a809981 | 2016-05-03 19:52:49 -0400 | [diff] [blame] | 89 | #define CONFIG_PCIE1 /* PCIE controller 1 (slot 1) */ |
| 90 | #define CONFIG_PCIE2 /* PCIE controller 2 (slot 2) */ |
| 91 | #define CONFIG_PCIE3 /* PCIE controller 3 (ULI bridge) */ |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 92 | #define CONFIG_FSL_PCI_INIT /* Use common FSL init code */ |
| 93 | #define CONFIG_FSL_PCIE_RESET /* need PCIe reset errata */ |
| 94 | #define CONFIG_SYS_PCI_64BIT /* enable 64-bit PCI resources */ |
| 95 | |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 96 | #define CONFIG_ENABLE_36BIT_PHYS |
Timur Tabi | 6a873c9 | 2011-09-06 09:36:06 -0500 | [diff] [blame] | 97 | |
| 98 | #ifdef CONFIG_PHYS_64BIT |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 99 | #define CONFIG_ADDR_MAP |
| 100 | #define CONFIG_SYS_NUM_ADDR_MAP 16 /* number of TLB1 entries */ |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 101 | #endif |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 102 | |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 103 | #define CONFIG_SYS_CLK_FREQ get_board_sys_clk() |
| 104 | #define CONFIG_DDR_CLK_FREQ get_board_ddr_clk() |
| 105 | #define CONFIG_ICS307_REFCLK_HZ 33333000 /* ICS307 clock chip ref freq */ |
| 106 | |
| 107 | /* |
| 108 | * These can be toggled for performance analysis, otherwise use default. |
| 109 | */ |
| 110 | #define CONFIG_L2_CACHE |
| 111 | #define CONFIG_BTB |
| 112 | |
| 113 | #define CONFIG_SYS_MEMTEST_START 0x00000000 |
| 114 | #define CONFIG_SYS_MEMTEST_END 0x7fffffff |
| 115 | |
Timur Tabi | d8f341c | 2011-08-04 18:03:41 -0500 | [diff] [blame] | 116 | #define CONFIG_SYS_CCSRBAR 0xffe00000 |
| 117 | #define CONFIG_SYS_CCSRBAR_PHYS_LOW CONFIG_SYS_CCSRBAR |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 118 | |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 119 | /* IN case of NAND bootloader relocate CCSRBAR in RAMboot code not in the 4k |
| 120 | SPL code*/ |
| 121 | #ifdef CONFIG_SPL_BUILD |
| 122 | #define CONFIG_SYS_CCSR_DO_NOT_RELOCATE |
| 123 | #endif |
| 124 | |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 125 | /* DDR Setup */ |
| 126 | #define CONFIG_DDR_SPD |
| 127 | #define CONFIG_VERY_BIG_RAM |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 128 | |
| 129 | #ifdef CONFIG_DDR_ECC |
| 130 | #define CONFIG_ECC_INIT_VIA_DDRCONTROLLER |
| 131 | #define CONFIG_MEM_INIT_VALUE 0xdeadbeef |
| 132 | #endif |
| 133 | |
| 134 | #define CONFIG_SYS_DDR_SDRAM_BASE 0x00000000 |
| 135 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE |
| 136 | |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 137 | #define CONFIG_DIMM_SLOTS_PER_CTLR 1 |
| 138 | #define CONFIG_CHIP_SELECTS_PER_CTRL (2 * CONFIG_DIMM_SLOTS_PER_CTLR) |
| 139 | |
| 140 | /* I2C addresses of SPD EEPROMs */ |
| 141 | #define CONFIG_SYS_SPD_BUS_NUM 1 |
Kumar Gala | c68e86c | 2011-01-31 22:18:47 -0600 | [diff] [blame] | 142 | #define SPD_EEPROM_ADDRESS 0x51 /* CTLR 0 DIMM 0 */ |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 143 | |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 144 | /* These are used when DDR doesn't use SPD. */ |
| 145 | #define CONFIG_SYS_SDRAM_SIZE 2048 |
| 146 | #define CONFIG_SYS_SDRAM_SIZE_LAW LAW_SIZE_2G |
| 147 | #define CONFIG_SYS_DDR_CS0_BNDS 0x0000003F |
| 148 | #define CONFIG_SYS_DDR_CS0_CONFIG 0x80014202 |
| 149 | #define CONFIG_SYS_DDR_CS1_BNDS 0x0040007F |
| 150 | #define CONFIG_SYS_DDR_CS1_CONFIG 0x80014202 |
| 151 | #define CONFIG_SYS_DDR_TIMING_3 0x00010000 |
| 152 | #define CONFIG_SYS_DDR_TIMING_0 0x40110104 |
| 153 | #define CONFIG_SYS_DDR_TIMING_1 0x5c5bd746 |
| 154 | #define CONFIG_SYS_DDR_TIMING_2 0x0fa8d4ca |
| 155 | #define CONFIG_SYS_DDR_MODE_1 0x00441221 |
| 156 | #define CONFIG_SYS_DDR_MODE_2 0x00000000 |
| 157 | #define CONFIG_SYS_DDR_INTERVAL 0x0a280100 |
| 158 | #define CONFIG_SYS_DDR_DATA_INIT 0xdeadbeef |
| 159 | #define CONFIG_SYS_DDR_CLK_CTRL 0x02800000 |
| 160 | #define CONFIG_SYS_DDR_CONTROL 0xc7000008 |
| 161 | #define CONFIG_SYS_DDR_CONTROL_2 0x24401041 |
| 162 | #define CONFIG_SYS_DDR_TIMING_4 0x00220001 |
| 163 | #define CONFIG_SYS_DDR_TIMING_5 0x02401400 |
| 164 | #define CONFIG_SYS_DDR_ZQ_CONTROL 0x89080600 |
| 165 | #define CONFIG_SYS_DDR_WRLVL_CONTROL 0x8675f608 |
| 166 | |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 167 | /* |
| 168 | * Memory map |
| 169 | * |
| 170 | * 0x0000_0000 0x7fff_ffff DDR 2G Cacheable |
| 171 | * 0x8000_0000 0xdfff_ffff PCI Express Mem 1.5G non-cacheable |
| 172 | * 0xffc0_0000 0xffc2_ffff PCI IO range 192K non-cacheable |
| 173 | * |
| 174 | * Localbus cacheable (TBD) |
| 175 | * 0xXXXX_XXXX 0xXXXX_XXXX SRAM YZ M Cacheable |
| 176 | * |
| 177 | * Localbus non-cacheable |
| 178 | * 0xe000_0000 0xe80f_ffff Promjet/free 128M non-cacheable |
| 179 | * 0xe800_0000 0xefff_ffff FLASH 128M non-cacheable |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 180 | * 0xff80_0000 0xff80_7fff NAND 32K non-cacheable |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 181 | * 0xffdf_0000 0xffdf_7fff PIXIS 32K non-cacheable TLB0 |
| 182 | * 0xffd0_0000 0xffd0_3fff L1 for stack 16K Cacheable TLB0 |
| 183 | * 0xffe0_0000 0xffef_ffff CCSR 1M non-cacheable |
| 184 | */ |
| 185 | |
| 186 | /* |
| 187 | * Local Bus Definitions |
| 188 | */ |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 189 | #define CONFIG_SYS_FLASH_BASE 0xe8000000 /* start of FLASH 128M */ |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 190 | #ifdef CONFIG_PHYS_64BIT |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 191 | #define CONFIG_SYS_FLASH_BASE_PHYS 0xfe8000000ull |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 192 | #else |
| 193 | #define CONFIG_SYS_FLASH_BASE_PHYS CONFIG_SYS_FLASH_BASE |
| 194 | #endif |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 195 | |
| 196 | #define CONFIG_FLASH_BR_PRELIM \ |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 197 | (BR_PHYS_ADDR(CONFIG_SYS_FLASH_BASE_PHYS) | BR_PS_16 | BR_V) |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 198 | #define CONFIG_FLASH_OR_PRELIM (OR_AM_128MB | 0xff7) |
| 199 | |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 200 | #ifdef CONFIG_NAND |
| 201 | #define CONFIG_SYS_BR1_PRELIM CONFIG_FLASH_BR_PRELIM /* NOR Base Address */ |
| 202 | #define CONFIG_SYS_OR1_PRELIM CONFIG_FLASH_OR_PRELIM /* NOR Options */ |
| 203 | #else |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 204 | #define CONFIG_SYS_BR0_PRELIM CONFIG_FLASH_BR_PRELIM /* NOR Base Address */ |
| 205 | #define CONFIG_SYS_OR0_PRELIM CONFIG_FLASH_OR_PRELIM /* NOR Options */ |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 206 | #endif |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 207 | |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 208 | #define CONFIG_SYS_FLASH_BANKS_LIST {CONFIG_SYS_FLASH_BASE_PHYS} |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 209 | #define CONFIG_SYS_FLASH_QUIET_TEST |
| 210 | #define CONFIG_FLASH_SHOW_PROGRESS 45 /* count down from 45/5: 9..1 */ |
| 211 | |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 212 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 213 | #define CONFIG_SYS_MAX_FLASH_SECT 1024 |
| 214 | |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 215 | #ifndef CONFIG_SYS_MONITOR_BASE |
| 216 | #ifdef CONFIG_SPL_BUILD |
| 217 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SPL_TEXT_BASE |
| 218 | #else |
Wolfgang Denk | 0708bc6 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 219 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */ |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 220 | #endif |
| 221 | #endif |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 222 | |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 223 | #define CONFIG_SYS_FLASH_EMPTY_INFO |
| 224 | |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 225 | /* Nand Flash */ |
| 226 | #if defined(CONFIG_NAND_FSL_ELBC) |
| 227 | #define CONFIG_SYS_NAND_BASE 0xff800000 |
| 228 | #ifdef CONFIG_PHYS_64BIT |
| 229 | #define CONFIG_SYS_NAND_BASE_PHYS 0xfff800000ull |
| 230 | #else |
| 231 | #define CONFIG_SYS_NAND_BASE_PHYS CONFIG_SYS_NAND_BASE |
| 232 | #endif |
| 233 | |
Ying Zhang | 9c2e84f | 2013-08-16 15:16:16 +0800 | [diff] [blame] | 234 | #define CONFIG_SYS_NAND_BASE_LIST {CONFIG_SYS_NAND_BASE} |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 235 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
Ying Zhang | 9c2e84f | 2013-08-16 15:16:16 +0800 | [diff] [blame] | 236 | #define CONFIG_SYS_NAND_BLOCK_SIZE (256 * 1024) |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 237 | #define CONFIG_ELBC_NAND_SPL_STATIC_PGSIZE |
| 238 | |
| 239 | /* NAND flash config */ |
| 240 | #define CONFIG_SYS_NAND_BR_PRELIM (BR_PHYS_ADDR(CONFIG_SYS_NAND_BASE_PHYS) \ |
| 241 | | (2<<BR_DECC_SHIFT) /* Use HW ECC */ \ |
| 242 | | BR_PS_8 /* Port Size = 8 bit */ \ |
| 243 | | BR_MS_FCM /* MSEL = FCM */ \ |
| 244 | | BR_V) /* valid */ |
| 245 | #define CONFIG_SYS_NAND_OR_PRELIM (OR_AM_32KB /* length 256K */ \ |
| 246 | | OR_FCM_PGS /* Large Page*/ \ |
| 247 | | OR_FCM_CSCT \ |
| 248 | | OR_FCM_CST \ |
| 249 | | OR_FCM_CHT \ |
| 250 | | OR_FCM_SCY_1 \ |
| 251 | | OR_FCM_TRLX \ |
| 252 | | OR_FCM_EHTR) |
| 253 | #ifdef CONFIG_NAND |
| 254 | #define CONFIG_SYS_BR0_PRELIM CONFIG_SYS_NAND_BR_PRELIM /* NAND Base Address */ |
| 255 | #define CONFIG_SYS_OR0_PRELIM CONFIG_SYS_NAND_OR_PRELIM /* NAND Options */ |
| 256 | #else |
| 257 | #define CONFIG_SYS_BR1_PRELIM CONFIG_SYS_NAND_BR_PRELIM /* NAND Base Address */ |
| 258 | #define CONFIG_SYS_OR1_PRELIM CONFIG_SYS_NAND_OR_PRELIM /* NAND Options */ |
| 259 | #endif |
| 260 | |
| 261 | #endif /* CONFIG_NAND_FSL_ELBC */ |
| 262 | |
Timur Tabi | 8848d47 | 2010-07-21 16:56:19 -0500 | [diff] [blame] | 263 | #define CONFIG_HWCONFIG |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 264 | |
| 265 | #define CONFIG_FSL_NGPIXIS |
| 266 | #define PIXIS_BASE 0xffdf0000 /* PIXIS registers */ |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 267 | #ifdef CONFIG_PHYS_64BIT |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 268 | #define PIXIS_BASE_PHYS 0xfffdf0000ull |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 269 | #else |
| 270 | #define PIXIS_BASE_PHYS PIXIS_BASE |
| 271 | #endif |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 272 | |
| 273 | #define CONFIG_SYS_BR2_PRELIM (BR_PHYS_ADDR(PIXIS_BASE_PHYS) | BR_PS_8 | BR_V) |
| 274 | #define CONFIG_SYS_OR2_PRELIM (OR_AM_32KB | 0x6ff7) |
| 275 | |
| 276 | #define PIXIS_LBMAP_SWITCH 7 |
York Sun | 362c993 | 2011-01-26 10:30:00 -0800 | [diff] [blame] | 277 | #define PIXIS_LBMAP_MASK 0xF0 |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 278 | #define PIXIS_LBMAP_ALTBANK 0x20 |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 279 | #define PIXIS_SPD 0x07 |
| 280 | #define PIXIS_SPD_SYSCLK_MASK 0x07 |
Jiang Yutang | 382e357 | 2011-02-24 16:11:56 +0800 | [diff] [blame] | 281 | #define PIXIS_ELBC_SPI_MASK 0xc0 |
| 282 | #define PIXIS_SPI 0x80 |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 283 | |
| 284 | #define CONFIG_SYS_INIT_RAM_LOCK |
| 285 | #define CONFIG_SYS_INIT_RAM_ADDR 0xffd00000 /* Initial L1 address */ |
Wolfgang Denk | 1c2e98e | 2010-10-26 13:32:32 +0200 | [diff] [blame] | 286 | #define CONFIG_SYS_INIT_RAM_SIZE 0x00004000 /* Size of used area in RAM */ |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 287 | |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 288 | #define CONFIG_SYS_GBL_DATA_OFFSET \ |
Wolfgang Denk | 0191e47 | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 289 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 290 | #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET |
| 291 | |
Prabhakar Kushwaha | f402731 | 2014-03-31 15:31:48 +0530 | [diff] [blame] | 292 | #define CONFIG_SYS_MONITOR_LEN (768 * 1024) |
Jerry Huang | 5b5bd37 | 2011-11-02 09:16:44 +0800 | [diff] [blame] | 293 | #define CONFIG_SYS_MALLOC_LEN (10 * 1024 * 1024) |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 294 | |
| 295 | /* |
Ying Zhang | dfb2b15 | 2013-08-16 15:16:12 +0800 | [diff] [blame] | 296 | * Config the L2 Cache as L2 SRAM |
| 297 | */ |
| 298 | #if defined(CONFIG_SPL_BUILD) |
Ying Zhang | 9b155ca | 2013-08-16 15:16:14 +0800 | [diff] [blame] | 299 | #if defined(CONFIG_SDCARD) || defined(CONFIG_SPIFLASH) |
Ying Zhang | dfb2b15 | 2013-08-16 15:16:12 +0800 | [diff] [blame] | 300 | #define CONFIG_SYS_INIT_L2_ADDR 0xf8f80000 |
| 301 | #define CONFIG_SYS_INIT_L2_ADDR_PHYS CONFIG_SYS_INIT_L2_ADDR |
| 302 | #define CONFIG_SYS_L2_SIZE (256 << 10) |
| 303 | #define CONFIG_SYS_INIT_L2_END (CONFIG_SYS_INIT_L2_ADDR + CONFIG_SYS_L2_SIZE) |
| 304 | #define CONFIG_SPL_RELOC_TEXT_BASE 0xf8f81000 |
Ying Zhang | 3587a83 | 2014-01-24 15:50:08 +0800 | [diff] [blame] | 305 | #define CONFIG_SPL_RELOC_STACK (CONFIG_SYS_INIT_L2_ADDR + 116 * 1024) |
Ying Zhang | 3587a83 | 2014-01-24 15:50:08 +0800 | [diff] [blame] | 306 | #define CONFIG_SPL_RELOC_MALLOC_ADDR (CONFIG_SYS_INIT_L2_ADDR + 148 * 1024) |
| 307 | #define CONFIG_SPL_RELOC_MALLOC_SIZE (108 << 10) |
Ying Zhang | dfb2b15 | 2013-08-16 15:16:12 +0800 | [diff] [blame] | 308 | #define CONFIG_SPL_GD_ADDR (CONFIG_SYS_INIT_L2_ADDR + 112 * 1024) |
Ying Zhang | 9c2e84f | 2013-08-16 15:16:16 +0800 | [diff] [blame] | 309 | #elif defined(CONFIG_NAND) |
| 310 | #ifdef CONFIG_TPL_BUILD |
| 311 | #define CONFIG_SYS_INIT_L2_ADDR 0xf8f80000 |
| 312 | #define CONFIG_SYS_INIT_L2_ADDR_PHYS CONFIG_SYS_INIT_L2_ADDR |
| 313 | #define CONFIG_SYS_L2_SIZE (256 << 10) |
| 314 | #define CONFIG_SYS_INIT_L2_END (CONFIG_SYS_INIT_L2_ADDR + CONFIG_SYS_L2_SIZE) |
| 315 | #define CONFIG_SPL_RELOC_TEXT_BASE 0xf8f81000 |
| 316 | #define CONFIG_SPL_RELOC_STACK (CONFIG_SYS_INIT_L2_ADDR + 192 * 1024) |
| 317 | #define CONFIG_SPL_RELOC_MALLOC_ADDR (CONFIG_SYS_INIT_L2_ADDR + 208 * 1024) |
| 318 | #define CONFIG_SPL_RELOC_MALLOC_SIZE (48 << 10) |
| 319 | #define CONFIG_SPL_GD_ADDR (CONFIG_SYS_INIT_L2_ADDR + 176 * 1024) |
| 320 | #else |
| 321 | #define CONFIG_SYS_INIT_L2_ADDR 0xf8f80000 |
| 322 | #define CONFIG_SYS_INIT_L2_ADDR_PHYS CONFIG_SYS_INIT_L2_ADDR |
| 323 | #define CONFIG_SYS_L2_SIZE (256 << 10) |
| 324 | #define CONFIG_SYS_INIT_L2_END (CONFIG_SYS_INIT_L2_ADDR + CONFIG_SYS_L2_SIZE) |
| 325 | #define CONFIG_SPL_RELOC_TEXT_BASE (CONFIG_SYS_INIT_L2_END - 0x2000) |
| 326 | #define CONFIG_SPL_RELOC_STACK ((CONFIG_SYS_INIT_L2_END - 1) & ~0xF) |
| 327 | #endif |
Ying Zhang | dfb2b15 | 2013-08-16 15:16:12 +0800 | [diff] [blame] | 328 | #endif |
| 329 | #endif |
| 330 | |
| 331 | /* |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 332 | * Serial Port |
| 333 | */ |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 334 | #define CONFIG_SYS_NS16550_SERIAL |
| 335 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
| 336 | #define CONFIG_SYS_NS16550_CLK get_bus_freq(0) |
Ying Zhang | dfb2b15 | 2013-08-16 15:16:12 +0800 | [diff] [blame] | 337 | #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_INIT_MINIMAL) |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 338 | #define CONFIG_NS16550_MIN_FUNCTIONS |
| 339 | #endif |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 340 | |
| 341 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
| 342 | {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200} |
| 343 | |
| 344 | #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CCSRBAR+0x4500) |
| 345 | #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_CCSRBAR+0x4600) |
| 346 | |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 347 | /* Video */ |
Timur Tabi | 32f709e | 2011-04-11 14:18:22 -0500 | [diff] [blame] | 348 | |
Timur Tabi | 209c072 | 2010-09-24 01:25:53 +0200 | [diff] [blame] | 349 | #ifdef CONFIG_FSL_DIU_FB |
| 350 | #define CONFIG_SYS_DIU_ADDR (CONFIG_SYS_CCSRBAR + 0x10000) |
Timur Tabi | 209c072 | 2010-09-24 01:25:53 +0200 | [diff] [blame] | 351 | #define CONFIG_VIDEO_LOGO |
| 352 | #define CONFIG_VIDEO_BMP_LOGO |
Timur Tabi | 970c01f | 2010-09-16 16:35:44 -0500 | [diff] [blame] | 353 | #define CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS |
| 354 | /* |
| 355 | * With CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS, flash I/O is really slow, so |
| 356 | * disable empty flash sector detection, which is I/O-intensive. |
| 357 | */ |
| 358 | #undef CONFIG_SYS_FLASH_EMPTY_INFO |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 359 | #endif |
| 360 | |
Jiang Yutang | 6c698c0 | 2011-01-24 18:21:19 +0800 | [diff] [blame] | 361 | #ifdef CONFIG_ATI |
| 362 | #define VIDEO_IO_OFFSET CONFIG_SYS_PCIE1_IO_VIRT |
Jiang Yutang | 6c698c0 | 2011-01-24 18:21:19 +0800 | [diff] [blame] | 363 | #define CONFIG_BIOSEMU |
Jiang Yutang | 6c698c0 | 2011-01-24 18:21:19 +0800 | [diff] [blame] | 364 | #define CONFIG_ATI_RADEON_FB |
| 365 | #define CONFIG_VIDEO_LOGO |
| 366 | #define CONFIG_SYS_ISA_IO_BASE_ADDRESS VIDEO_IO_OFFSET |
Jiang Yutang | 6c698c0 | 2011-01-24 18:21:19 +0800 | [diff] [blame] | 367 | #endif |
| 368 | |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 369 | /* I2C */ |
Heiko Schocher | f285074 | 2012-10-24 13:48:22 +0200 | [diff] [blame] | 370 | #define CONFIG_SYS_I2C |
| 371 | #define CONFIG_SYS_I2C_FSL |
| 372 | #define CONFIG_SYS_FSL_I2C_SPEED 400000 |
| 373 | #define CONFIG_SYS_FSL_I2C_SLAVE 0x7F |
| 374 | #define CONFIG_SYS_FSL_I2C_OFFSET 0x3000 |
| 375 | #define CONFIG_SYS_FSL_I2C2_SPEED 400000 |
| 376 | #define CONFIG_SYS_FSL_I2C2_SLAVE 0x7F |
| 377 | #define CONFIG_SYS_FSL_I2C2_OFFSET 0x3100 |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 378 | #define CONFIG_SYS_I2C_NOPROBES {{0, 0x29}} |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 379 | |
| 380 | /* |
| 381 | * I2C2 EEPROM |
| 382 | */ |
| 383 | #define CONFIG_ID_EEPROM |
| 384 | #define CONFIG_SYS_I2C_EEPROM_NXID |
| 385 | #define CONFIG_SYS_I2C_EEPROM_ADDR 0x57 |
| 386 | #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 |
| 387 | #define CONFIG_SYS_EEPROM_BUS_NUM 1 |
| 388 | |
| 389 | /* |
Jiang Yutang | 382e357 | 2011-02-24 16:11:56 +0800 | [diff] [blame] | 390 | * eSPI - Enhanced SPI |
| 391 | */ |
Jiang Yutang | 382e357 | 2011-02-24 16:11:56 +0800 | [diff] [blame] | 392 | |
| 393 | #define CONFIG_HARD_SPI |
Jiang Yutang | 382e357 | 2011-02-24 16:11:56 +0800 | [diff] [blame] | 394 | |
Jiang Yutang | 382e357 | 2011-02-24 16:11:56 +0800 | [diff] [blame] | 395 | #define CONFIG_SF_DEFAULT_SPEED 10000000 |
| 396 | #define CONFIG_SF_DEFAULT_MODE 0 |
| 397 | |
| 398 | /* |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 399 | * General PCI |
| 400 | * Memory space is mapped 1-1, but I/O space must start from 0. |
| 401 | */ |
| 402 | |
| 403 | /* controller 1, Slot 2, tgtid 1, Base address a000 */ |
| 404 | #define CONFIG_SYS_PCIE1_MEM_VIRT 0xc0000000 |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 405 | #ifdef CONFIG_PHYS_64BIT |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 406 | #define CONFIG_SYS_PCIE1_MEM_BUS 0xe0000000 |
| 407 | #define CONFIG_SYS_PCIE1_MEM_PHYS 0xc40000000ull |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 408 | #else |
| 409 | #define CONFIG_SYS_PCIE1_MEM_BUS 0xc0000000 |
| 410 | #define CONFIG_SYS_PCIE1_MEM_PHYS 0xc0000000 |
| 411 | #endif |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 412 | #define CONFIG_SYS_PCIE1_MEM_SIZE 0x20000000 /* 512M */ |
| 413 | #define CONFIG_SYS_PCIE1_IO_VIRT 0xffc20000 |
| 414 | #define CONFIG_SYS_PCIE1_IO_BUS 0x00000000 |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 415 | #ifdef CONFIG_PHYS_64BIT |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 416 | #define CONFIG_SYS_PCIE1_IO_PHYS 0xfffc20000ull |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 417 | #else |
| 418 | #define CONFIG_SYS_PCIE1_IO_PHYS 0xffc20000 |
| 419 | #endif |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 420 | #define CONFIG_SYS_PCIE1_IO_SIZE 0x00010000 /* 64k */ |
| 421 | |
| 422 | /* controller 2, direct to uli, tgtid 2, Base address 9000 */ |
| 423 | #define CONFIG_SYS_PCIE2_MEM_VIRT 0xa0000000 |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 424 | #ifdef CONFIG_PHYS_64BIT |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 425 | #define CONFIG_SYS_PCIE2_MEM_BUS 0xe0000000 |
| 426 | #define CONFIG_SYS_PCIE2_MEM_PHYS 0xc20000000ull |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 427 | #else |
| 428 | #define CONFIG_SYS_PCIE2_MEM_BUS 0xa0000000 |
| 429 | #define CONFIG_SYS_PCIE2_MEM_PHYS 0xa0000000 |
| 430 | #endif |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 431 | #define CONFIG_SYS_PCIE2_MEM_SIZE 0x20000000 /* 512M */ |
| 432 | #define CONFIG_SYS_PCIE2_IO_VIRT 0xffc10000 |
| 433 | #define CONFIG_SYS_PCIE2_IO_BUS 0x00000000 |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 434 | #ifdef CONFIG_PHYS_64BIT |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 435 | #define CONFIG_SYS_PCIE2_IO_PHYS 0xfffc10000ull |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 436 | #else |
| 437 | #define CONFIG_SYS_PCIE2_IO_PHYS 0xffc10000 |
| 438 | #endif |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 439 | #define CONFIG_SYS_PCIE2_IO_SIZE 0x00010000 /* 64k */ |
| 440 | |
| 441 | /* controller 3, Slot 1, tgtid 3, Base address b000 */ |
| 442 | #define CONFIG_SYS_PCIE3_MEM_VIRT 0x80000000 |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 443 | #ifdef CONFIG_PHYS_64BIT |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 444 | #define CONFIG_SYS_PCIE3_MEM_BUS 0xe0000000 |
| 445 | #define CONFIG_SYS_PCIE3_MEM_PHYS 0xc00000000ull |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 446 | #else |
| 447 | #define CONFIG_SYS_PCIE3_MEM_BUS 0x80000000 |
| 448 | #define CONFIG_SYS_PCIE3_MEM_PHYS 0x80000000 |
| 449 | #endif |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 450 | #define CONFIG_SYS_PCIE3_MEM_SIZE 0x20000000 /* 512M */ |
| 451 | #define CONFIG_SYS_PCIE3_IO_VIRT 0xffc00000 |
| 452 | #define CONFIG_SYS_PCIE3_IO_BUS 0x00000000 |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 453 | #ifdef CONFIG_PHYS_64BIT |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 454 | #define CONFIG_SYS_PCIE3_IO_PHYS 0xfffc00000ull |
Jiang Yutang | b7738b5 | 2011-01-24 18:21:15 +0800 | [diff] [blame] | 455 | #else |
| 456 | #define CONFIG_SYS_PCIE3_IO_PHYS 0xffc00000 |
| 457 | #endif |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 458 | #define CONFIG_SYS_PCIE3_IO_SIZE 0x00010000 /* 64k */ |
| 459 | |
| 460 | #ifdef CONFIG_PCI |
Gabor Juhos | b445873 | 2013-05-30 07:06:12 +0000 | [diff] [blame] | 461 | #define CONFIG_PCI_INDIRECT_BRIDGE |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 462 | #define CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */ |
| 463 | #endif |
| 464 | |
| 465 | /* SATA */ |
Zang Roy-R61911 | 2ce421a | 2012-11-26 00:05:38 +0000 | [diff] [blame] | 466 | #define CONFIG_FSL_SATA_V2 |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 467 | |
| 468 | #define CONFIG_SYS_SATA_MAX_DEVICE 2 |
| 469 | #define CONFIG_SATA1 |
| 470 | #define CONFIG_SYS_SATA1 CONFIG_SYS_MPC85xx_SATA1_ADDR |
| 471 | #define CONFIG_SYS_SATA1_FLAGS FLAGS_DMA |
| 472 | #define CONFIG_SATA2 |
| 473 | #define CONFIG_SYS_SATA2 CONFIG_SYS_MPC85xx_SATA2_ADDR |
| 474 | #define CONFIG_SYS_SATA2_FLAGS FLAGS_DMA |
| 475 | |
| 476 | #ifdef CONFIG_FSL_SATA |
| 477 | #define CONFIG_LBA48 |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 478 | #endif |
| 479 | |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 480 | #ifdef CONFIG_MMC |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 481 | #define CONFIG_SYS_FSL_ESDHC_ADDR CONFIG_SYS_MPC85xx_ESDHC_ADDR |
| 482 | #endif |
| 483 | |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 484 | #ifdef CONFIG_TSEC_ENET |
| 485 | |
| 486 | #define CONFIG_TSECV2 |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 487 | |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 488 | #define CONFIG_TSEC1 1 |
| 489 | #define CONFIG_TSEC1_NAME "eTSEC1" |
| 490 | #define CONFIG_TSEC2 1 |
| 491 | #define CONFIG_TSEC2_NAME "eTSEC2" |
| 492 | |
| 493 | #define TSEC1_PHY_ADDR 1 |
| 494 | #define TSEC2_PHY_ADDR 2 |
| 495 | |
| 496 | #define TSEC1_FLAGS (TSEC_GIGABIT | TSEC_REDUCED) |
| 497 | #define TSEC2_FLAGS (TSEC_GIGABIT | TSEC_REDUCED) |
| 498 | |
| 499 | #define TSEC1_PHYIDX 0 |
| 500 | #define TSEC2_PHYIDX 0 |
| 501 | |
| 502 | #define CONFIG_ETHPRIME "eTSEC1" |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 503 | #endif |
| 504 | |
| 505 | /* |
Yangbo Lu | 140b2bb | 2014-10-16 10:58:55 +0800 | [diff] [blame] | 506 | * Dynamic MTD Partition support with mtdparts |
| 507 | */ |
Yangbo Lu | 140b2bb | 2014-10-16 10:58:55 +0800 | [diff] [blame] | 508 | |
| 509 | /* |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 510 | * Environment |
| 511 | */ |
Ying Zhang | 9b155ca | 2013-08-16 15:16:14 +0800 | [diff] [blame] | 512 | #ifdef CONFIG_SPIFLASH |
Matthew McClintock | c4253e9 | 2012-05-18 06:04:17 +0000 | [diff] [blame] | 513 | #define CONFIG_ENV_SPI_BUS 0 |
| 514 | #define CONFIG_ENV_SPI_CS 0 |
| 515 | #define CONFIG_ENV_SPI_MAX_HZ 10000000 |
| 516 | #define CONFIG_ENV_SPI_MODE 0 |
| 517 | #define CONFIG_ENV_SIZE 0x2000 /* 8KB */ |
| 518 | #define CONFIG_ENV_OFFSET 0x100000 /* 1MB */ |
| 519 | #define CONFIG_ENV_SECT_SIZE 0x10000 |
Ying Zhang | dfb2b15 | 2013-08-16 15:16:12 +0800 | [diff] [blame] | 520 | #elif defined(CONFIG_SDCARD) |
Ying Zhang | dfb2b15 | 2013-08-16 15:16:12 +0800 | [diff] [blame] | 521 | #define CONFIG_FSL_FIXED_MMC_LOCATION |
Matthew McClintock | c4253e9 | 2012-05-18 06:04:17 +0000 | [diff] [blame] | 522 | #define CONFIG_ENV_SIZE 0x2000 |
| 523 | #define CONFIG_SYS_MMC_ENV_DEV 0 |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 524 | #elif defined(CONFIG_NAND) |
Ying Zhang | 9c2e84f | 2013-08-16 15:16:16 +0800 | [diff] [blame] | 525 | #ifdef CONFIG_TPL_BUILD |
| 526 | #define CONFIG_ENV_SIZE 0x2000 |
| 527 | #define CONFIG_ENV_ADDR (CONFIG_SYS_INIT_L2_ADDR + (160 << 10)) |
| 528 | #else |
Matthew McClintock | c4253e9 | 2012-05-18 06:04:17 +0000 | [diff] [blame] | 529 | #define CONFIG_ENV_SIZE CONFIG_SYS_NAND_BLOCK_SIZE |
Ying Zhang | 9c2e84f | 2013-08-16 15:16:16 +0800 | [diff] [blame] | 530 | #endif |
Ying Zhang | 9c2e84f | 2013-08-16 15:16:16 +0800 | [diff] [blame] | 531 | #define CONFIG_ENV_OFFSET (1024 * 1024) |
Matthew McClintock | c4253e9 | 2012-05-18 06:04:17 +0000 | [diff] [blame] | 532 | #define CONFIG_ENV_RANGE (3 * CONFIG_ENV_SIZE) |
Matthew McClintock | cd99caa | 2013-02-18 10:02:19 +0000 | [diff] [blame] | 533 | #elif defined(CONFIG_SYS_RAMBOOT) |
Matthew McClintock | c4253e9 | 2012-05-18 06:04:17 +0000 | [diff] [blame] | 534 | #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000) |
| 535 | #define CONFIG_ENV_SIZE 0x2000 |
Matthew McClintock | c4253e9 | 2012-05-18 06:04:17 +0000 | [diff] [blame] | 536 | #else |
Matthew McClintock | c4253e9 | 2012-05-18 06:04:17 +0000 | [diff] [blame] | 537 | #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE) |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 538 | #define CONFIG_ENV_SIZE 0x2000 |
Matthew McClintock | c4253e9 | 2012-05-18 06:04:17 +0000 | [diff] [blame] | 539 | #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K (one sector) */ |
| 540 | #endif |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 541 | |
| 542 | #define CONFIG_LOADS_ECHO |
| 543 | #define CONFIG_SYS_LOADS_BAUD_CHANGE |
| 544 | |
| 545 | /* |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 546 | * USB |
| 547 | */ |
ramneek mehresh | 3d33963 | 2012-04-18 19:39:53 +0000 | [diff] [blame] | 548 | #define CONFIG_HAS_FSL_DR_USB |
| 549 | #ifdef CONFIG_HAS_FSL_DR_USB |
Tom Rini | ceed5d2 | 2017-05-12 22:33:27 -0400 | [diff] [blame] | 550 | #ifdef CONFIG_USB_EHCI_HCD |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 551 | #define CONFIG_EHCI_HCD_INIT_AFTER_RESET |
| 552 | #define CONFIG_USB_EHCI_FSL |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 553 | #endif |
ramneek mehresh | 3d33963 | 2012-04-18 19:39:53 +0000 | [diff] [blame] | 554 | #endif |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 555 | |
| 556 | /* |
| 557 | * Miscellaneous configurable options |
| 558 | */ |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 559 | #define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */ |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 560 | |
| 561 | /* |
| 562 | * For booting Linux, the board info and command line data |
Kumar Gala | 39ffcc1 | 2011-04-28 10:13:41 -0500 | [diff] [blame] | 563 | * have to be in the first 64 MB of memory, since this is |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 564 | * the maximum mapped by the Linux kernel during initialization. |
| 565 | */ |
Kumar Gala | 39ffcc1 | 2011-04-28 10:13:41 -0500 | [diff] [blame] | 566 | #define CONFIG_SYS_BOOTMAPSZ (64 << 20) /* Initial Memory map for Linux*/ |
| 567 | #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */ |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 568 | |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 569 | #ifdef CONFIG_CMD_KGDB |
| 570 | #define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */ |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 571 | #endif |
| 572 | |
| 573 | /* |
| 574 | * Environment Configuration |
| 575 | */ |
| 576 | |
Mario Six | 790d844 | 2018-03-28 14:38:20 +0200 | [diff] [blame] | 577 | #define CONFIG_HOSTNAME "p1022ds" |
Joe Hershberger | 257ff78 | 2011-10-13 13:03:47 +0000 | [diff] [blame] | 578 | #define CONFIG_ROOTPATH "/opt/nfsroot" |
Joe Hershberger | e4da248 | 2011-10-13 13:03:48 +0000 | [diff] [blame] | 579 | #define CONFIG_BOOTFILE "uImage" |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 580 | #define CONFIG_UBOOTPATH u-boot.bin /* U-Boot image on TFTP server */ |
| 581 | |
| 582 | #define CONFIG_LOADADDR 1000000 |
| 583 | |
Timur Tabi | 1a70b23 | 2012-05-04 12:21:29 +0000 | [diff] [blame] | 584 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 585 | "netdev=eth0\0" \ |
Marek Vasut | 0b3176c | 2012-09-23 17:41:24 +0200 | [diff] [blame] | 586 | "uboot=" __stringify(CONFIG_UBOOTPATH) "\0" \ |
| 587 | "ubootaddr=" __stringify(CONFIG_SYS_TEXT_BASE) "\0" \ |
Timur Tabi | 1a70b23 | 2012-05-04 12:21:29 +0000 | [diff] [blame] | 588 | "tftpflash=tftpboot $loadaddr $uboot && " \ |
| 589 | "protect off $ubootaddr +$filesize && " \ |
| 590 | "erase $ubootaddr +$filesize && " \ |
| 591 | "cp.b $loadaddr $ubootaddr $filesize && " \ |
| 592 | "protect on $ubootaddr +$filesize && " \ |
| 593 | "cmp.b $loadaddr $ubootaddr $filesize\0" \ |
| 594 | "consoledev=ttyS0\0" \ |
| 595 | "ramdiskaddr=2000000\0" \ |
| 596 | "ramdiskfile=rootfs.ext2.gz.uboot\0" \ |
Scott Wood | b7f4b85 | 2016-07-19 17:52:06 -0500 | [diff] [blame] | 597 | "fdtaddr=1e00000\0" \ |
Timur Tabi | 1a70b23 | 2012-05-04 12:21:29 +0000 | [diff] [blame] | 598 | "fdtfile=p1022ds.dtb\0" \ |
| 599 | "bdev=sda3\0" \ |
Timur Tabi | 32f709e | 2011-04-11 14:18:22 -0500 | [diff] [blame] | 600 | "hwconfig=esdhc;audclk:12\0" |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 601 | |
| 602 | #define CONFIG_HDBOOT \ |
| 603 | "setenv bootargs root=/dev/$bdev rw " \ |
Timur Tabi | 1a70b23 | 2012-05-04 12:21:29 +0000 | [diff] [blame] | 604 | "console=$consoledev,$baudrate $othbootargs $videobootargs;" \ |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 605 | "tftp $loadaddr $bootfile;" \ |
| 606 | "tftp $fdtaddr $fdtfile;" \ |
| 607 | "bootm $loadaddr - $fdtaddr" |
| 608 | |
| 609 | #define CONFIG_NFSBOOTCOMMAND \ |
| 610 | "setenv bootargs root=/dev/nfs rw " \ |
| 611 | "nfsroot=$serverip:$rootpath " \ |
| 612 | "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \ |
Timur Tabi | 1a70b23 | 2012-05-04 12:21:29 +0000 | [diff] [blame] | 613 | "console=$consoledev,$baudrate $othbootargs $videobootargs;" \ |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 614 | "tftp $loadaddr $bootfile;" \ |
| 615 | "tftp $fdtaddr $fdtfile;" \ |
| 616 | "bootm $loadaddr - $fdtaddr" |
| 617 | |
| 618 | #define CONFIG_RAMBOOTCOMMAND \ |
| 619 | "setenv bootargs root=/dev/ram rw " \ |
Timur Tabi | 1a70b23 | 2012-05-04 12:21:29 +0000 | [diff] [blame] | 620 | "console=$consoledev,$baudrate $othbootargs $videobootargs;" \ |
Timur Tabi | 9b45b5a | 2010-06-14 15:28:24 -0500 | [diff] [blame] | 621 | "tftp $ramdiskaddr $ramdiskfile;" \ |
| 622 | "tftp $loadaddr $bootfile;" \ |
| 623 | "tftp $fdtaddr $fdtfile;" \ |
| 624 | "bootm $loadaddr $ramdiskaddr $fdtaddr" |
| 625 | |
| 626 | #define CONFIG_BOOTCOMMAND CONFIG_RAMBOOTCOMMAND |
| 627 | |
| 628 | #endif |