Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2006 Freescale Semiconductor, Inc. |
| 3 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __CONFIG_H |
| 8 | #define __CONFIG_H |
| 9 | |
Kim Phillips | fdfaa29 | 2015-03-17 12:00:45 -0500 | [diff] [blame] | 10 | #define CONFIG_SYS_GENERIC_BOARD |
| 11 | #define CONFIG_DISPLAY_BOARDINFO |
| 12 | |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 13 | /* |
| 14 | * High Level Configuration Options |
| 15 | */ |
| 16 | #define CONFIG_E300 1 /* E300 family */ |
| 17 | #define CONFIG_QE 1 /* Has QE */ |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 18 | #define CONFIG_MPC832x 1 /* MPC832x CPU specific */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 19 | #define CONFIG_MPC832XEMDS 1 /* MPC832XEMDS board specific */ |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 20 | |
| 21 | #define CONFIG_SYS_TEXT_BASE 0xFE000000 |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 22 | |
| 23 | /* |
| 24 | * System Clock Setup |
| 25 | */ |
| 26 | #ifdef CONFIG_PCISLAVE |
| 27 | #define CONFIG_83XX_PCICLK 66000000 /* in HZ */ |
| 28 | #else |
| 29 | #define CONFIG_83XX_CLKIN 66000000 /* in Hz */ |
| 30 | #endif |
| 31 | |
| 32 | #ifndef CONFIG_SYS_CLK_FREQ |
| 33 | #define CONFIG_SYS_CLK_FREQ 66000000 |
| 34 | #endif |
| 35 | |
| 36 | /* |
| 37 | * Hardware Reset Configuration Word |
| 38 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 39 | #define CONFIG_SYS_HRCW_LOW (\ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 40 | HRCWL_LCL_BUS_TO_SCB_CLK_1X1 |\ |
| 41 | HRCWL_DDR_TO_SCB_CLK_2X1 |\ |
| 42 | HRCWL_VCO_1X2 |\ |
| 43 | HRCWL_CSB_TO_CLKIN_2X1 |\ |
| 44 | HRCWL_CORE_TO_CSB_2X1 |\ |
| 45 | HRCWL_CE_PLL_VCO_DIV_2 |\ |
| 46 | HRCWL_CE_PLL_DIV_1X1 |\ |
| 47 | HRCWL_CE_TO_PLL_1X3) |
| 48 | |
| 49 | #ifdef CONFIG_PCISLAVE |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 50 | #define CONFIG_SYS_HRCW_HIGH (\ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 51 | HRCWH_PCI_AGENT |\ |
| 52 | HRCWH_PCI1_ARBITER_DISABLE |\ |
| 53 | HRCWH_CORE_ENABLE |\ |
| 54 | HRCWH_FROM_0XFFF00100 |\ |
| 55 | HRCWH_BOOTSEQ_DISABLE |\ |
| 56 | HRCWH_SW_WATCHDOG_DISABLE |\ |
| 57 | HRCWH_ROM_LOC_LOCAL_16BIT |\ |
| 58 | HRCWH_BIG_ENDIAN |\ |
| 59 | HRCWH_LALE_NORMAL) |
| 60 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 61 | #define CONFIG_SYS_HRCW_HIGH (\ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 62 | HRCWH_PCI_HOST |\ |
| 63 | HRCWH_PCI1_ARBITER_ENABLE |\ |
| 64 | HRCWH_CORE_ENABLE |\ |
| 65 | HRCWH_FROM_0X00000100 |\ |
| 66 | HRCWH_BOOTSEQ_DISABLE |\ |
| 67 | HRCWH_SW_WATCHDOG_DISABLE |\ |
| 68 | HRCWH_ROM_LOC_LOCAL_16BIT |\ |
| 69 | HRCWH_BIG_ENDIAN |\ |
| 70 | HRCWH_LALE_NORMAL) |
| 71 | #endif |
| 72 | |
| 73 | /* |
| 74 | * System IO Config |
| 75 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 76 | #define CONFIG_SYS_SICRL 0x00000000 |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 77 | |
| 78 | #define CONFIG_BOARD_EARLY_INIT_F /* call board_pre_init */ |
Tony Li | 1477858 | 2007-08-17 10:35:59 +0800 | [diff] [blame] | 79 | #define CONFIG_BOARD_EARLY_INIT_R |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 80 | |
| 81 | /* |
| 82 | * IMMR new address |
| 83 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 84 | #define CONFIG_SYS_IMMR 0xE0000000 |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 85 | |
| 86 | /* |
| 87 | * DDR Setup |
| 88 | */ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 89 | #define CONFIG_SYS_DDR_BASE 0x00000000 /* DDR is system memory */ |
| 90 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_BASE |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 91 | #define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_DDR_BASE |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 92 | #define CONFIG_SYS_DDRCDR 0x73000002 /* DDR II voltage is 1.8V */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 93 | |
| 94 | #undef CONFIG_SPD_EEPROM |
| 95 | #if defined(CONFIG_SPD_EEPROM) |
| 96 | /* Determine DDR configuration from I2C interface |
| 97 | */ |
| 98 | #define SPD_EEPROM_ADDRESS 0x51 /* DDR SODIMM */ |
| 99 | #else |
| 100 | /* Manually set up DDR parameters |
| 101 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 102 | #define CONFIG_SYS_DDR_SIZE 128 /* MB */ |
Joe Hershberger | 2fef402 | 2011-10-11 23:57:29 -0500 | [diff] [blame] | 103 | #define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN \ |
| 104 | | CSCONFIG_AP \ |
| 105 | | CSCONFIG_ODT_WR_CFG \ |
| 106 | | CSCONFIG_ROW_BIT_13 \ |
| 107 | | CSCONFIG_COL_BIT_10) |
| 108 | /* 0x80840102 */ |
| 109 | #define CONFIG_SYS_DDR_TIMING_0 ((0 << TIMING_CFG0_RWT_SHIFT) \ |
| 110 | | (0 << TIMING_CFG0_WRT_SHIFT) \ |
| 111 | | (0 << TIMING_CFG0_RRT_SHIFT) \ |
| 112 | | (0 << TIMING_CFG0_WWT_SHIFT) \ |
| 113 | | (2 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) \ |
| 114 | | (2 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) \ |
| 115 | | (8 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) \ |
| 116 | | (2 << TIMING_CFG0_MRS_CYC_SHIFT)) |
| 117 | /* 0x00220802 */ |
| 118 | #define CONFIG_SYS_DDR_TIMING_1 ((3 << TIMING_CFG1_PRETOACT_SHIFT) \ |
| 119 | | (9 << TIMING_CFG1_ACTTOPRE_SHIFT) \ |
| 120 | | (3 << TIMING_CFG1_ACTTORW_SHIFT) \ |
| 121 | | (5 << TIMING_CFG1_CASLAT_SHIFT) \ |
| 122 | | (13 << TIMING_CFG1_REFREC_SHIFT) \ |
| 123 | | (3 << TIMING_CFG1_WRREC_SHIFT) \ |
| 124 | | (2 << TIMING_CFG1_ACTTOACT_SHIFT) \ |
| 125 | | (2 << TIMING_CFG1_WRTORD_SHIFT)) |
| 126 | /* 0x3935D322 */ |
| 127 | #define CONFIG_SYS_DDR_TIMING_2 ((0 << TIMING_CFG2_ADD_LAT_SHIFT) \ |
| 128 | | (31 << TIMING_CFG2_CPO_SHIFT) \ |
| 129 | | (2 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) \ |
| 130 | | (2 << TIMING_CFG2_RD_TO_PRE_SHIFT) \ |
| 131 | | (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) \ |
| 132 | | (3 << TIMING_CFG2_CKE_PLS_SHIFT) \ |
| 133 | | (10 << TIMING_CFG2_FOUR_ACT_SHIFT)) |
| 134 | /* 0x0F9048CA */ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 135 | #define CONFIG_SYS_DDR_TIMING_3 0x00000000 |
Joe Hershberger | 2fef402 | 2011-10-11 23:57:29 -0500 | [diff] [blame] | 136 | #define CONFIG_SYS_DDR_CLK_CNTL DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05 |
| 137 | /* 0x02000000 */ |
| 138 | #define CONFIG_SYS_DDR_MODE ((0x4440 << SDRAM_MODE_ESD_SHIFT) \ |
| 139 | | (0x0232 << SDRAM_MODE_SD_SHIFT)) |
| 140 | /* 0x44400232 */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 141 | #define CONFIG_SYS_DDR_MODE2 0x8000c000 |
Joe Hershberger | 2fef402 | 2011-10-11 23:57:29 -0500 | [diff] [blame] | 142 | #define CONFIG_SYS_DDR_INTERVAL ((800 << SDRAM_INTERVAL_REFINT_SHIFT) \ |
| 143 | | (100 << SDRAM_INTERVAL_BSTOPRE_SHIFT)) |
| 144 | /* 0x03200064 */ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 145 | #define CONFIG_SYS_DDR_CS0_BNDS 0x00000007 |
Joe Hershberger | 2fef402 | 2011-10-11 23:57:29 -0500 | [diff] [blame] | 146 | #define CONFIG_SYS_DDR_SDRAM_CFG (SDRAM_CFG_SREN \ |
| 147 | | SDRAM_CFG_SDRAM_TYPE_DDR2 \ |
| 148 | | SDRAM_CFG_32_BE) |
| 149 | /* 0x43080000 */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 150 | #define CONFIG_SYS_DDR_SDRAM_CFG2 0x00401000 |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 151 | #endif |
| 152 | |
| 153 | /* |
| 154 | * Memory test |
| 155 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 156 | #undef CONFIG_SYS_DRAM_TEST /* memory test, takes time */ |
| 157 | #define CONFIG_SYS_MEMTEST_START 0x00000000 /* memtest region */ |
| 158 | #define CONFIG_SYS_MEMTEST_END 0x00100000 |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 159 | |
| 160 | /* |
| 161 | * The reserved memory |
| 162 | */ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 163 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 164 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 165 | #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE) |
| 166 | #define CONFIG_SYS_RAMBOOT |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 167 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 168 | #undef CONFIG_SYS_RAMBOOT |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 169 | #endif |
| 170 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 171 | /* CONFIG_SYS_MONITOR_LEN must be a multiple of CONFIG_ENV_SECT_SIZE */ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 172 | #define CONFIG_SYS_MONITOR_LEN (384 * 1024) /* Reserve 384 kB for Mon */ |
Timur Tabi | 3b6b256 | 2012-03-17 17:44:00 -0500 | [diff] [blame] | 173 | #define CONFIG_SYS_MALLOC_LEN (256 * 1024) /* Reserved for malloc */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 174 | |
| 175 | /* |
| 176 | * Initial RAM Base Address Setup |
| 177 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 178 | #define CONFIG_SYS_INIT_RAM_LOCK 1 |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 179 | #define CONFIG_SYS_INIT_RAM_ADDR 0xE6000000 /* Initial RAM addr */ |
| 180 | #define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM */ |
| 181 | #define CONFIG_SYS_GBL_DATA_OFFSET \ |
| 182 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 183 | |
| 184 | /* |
| 185 | * Local Bus Configuration & Clock Setup |
| 186 | */ |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 187 | #define CONFIG_SYS_LCRR_DBYP LCRR_DBYP |
| 188 | #define CONFIG_SYS_LCRR_CLKDIV LCRR_CLKDIV_2 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 189 | #define CONFIG_SYS_LBC_LBCR 0x00000000 |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 190 | |
| 191 | /* |
| 192 | * FLASH on the Local Bus |
| 193 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 194 | #define CONFIG_SYS_FLASH_CFI /* use the Common Flash Interface */ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 195 | #define CONFIG_FLASH_CFI_DRIVER /* use the CFI driver */ |
| 196 | #define CONFIG_SYS_FLASH_BASE 0xFE000000 /* FLASH base address */ |
| 197 | #define CONFIG_SYS_FLASH_SIZE 16 /* FLASH size is 16M */ |
| 198 | #define CONFIG_SYS_FLASH_PROTECTION 1 /* Use h/w Flash protection. */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 199 | |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 200 | /* Window base at flash base */ |
| 201 | #define CONFIG_SYS_LBLAWBAR0_PRELIM CONFIG_SYS_FLASH_BASE |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 202 | #define CONFIG_SYS_LBLAWAR0_PRELIM (LBLAWAR_EN | LBLAWAR_32MB) |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 203 | |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 204 | #define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE \ |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 205 | | BR_PS_16 /* 16 bit port */ \ |
| 206 | | BR_MS_GPCM /* MSEL = GPCM */ \ |
| 207 | | BR_V) /* valid */ |
| 208 | #define CONFIG_SYS_OR0_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH_SIZE) \ |
| 209 | | OR_GPCM_XAM \ |
| 210 | | OR_GPCM_CSNT \ |
| 211 | | OR_GPCM_ACS_DIV2 \ |
| 212 | | OR_GPCM_XACS \ |
| 213 | | OR_GPCM_SCY_15 \ |
| 214 | | OR_GPCM_TRLX_SET \ |
| 215 | | OR_GPCM_EHTR_SET \ |
| 216 | | OR_GPCM_EAD) |
| 217 | /* 0xfe006ff7 */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 218 | |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 219 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */ |
| 220 | #define CONFIG_SYS_MAX_FLASH_SECT 128 /* sectors per device */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 221 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 222 | #undef CONFIG_SYS_FLASH_CHECKSUM |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 223 | |
| 224 | /* |
| 225 | * BCSR on the Local Bus |
| 226 | */ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 227 | #define CONFIG_SYS_BCSR 0xF8000000 |
| 228 | /* Access window base at BCSR base */ |
| 229 | #define CONFIG_SYS_LBLAWBAR1_PRELIM CONFIG_SYS_BCSR |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 230 | #define CONFIG_SYS_LBLAWAR1_PRELIM (LBLAWAR_EN | LBLAWAR_32KB) |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 231 | |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 232 | #define CONFIG_SYS_BR1_PRELIM (CONFIG_SYS_BCSR \ |
| 233 | | BR_PS_8 \ |
| 234 | | BR_MS_GPCM \ |
| 235 | | BR_V) |
| 236 | #define CONFIG_SYS_OR1_PRELIM (OR_AM_32KB \ |
| 237 | | OR_GPCM_XAM \ |
| 238 | | OR_GPCM_CSNT \ |
| 239 | | OR_GPCM_XACS \ |
| 240 | | OR_GPCM_SCY_15 \ |
| 241 | | OR_GPCM_TRLX_SET \ |
| 242 | | OR_GPCM_EHTR_SET \ |
| 243 | | OR_GPCM_EAD) |
| 244 | /* 0xFFFFE9F7 */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 245 | |
| 246 | /* |
| 247 | * Windows to access PIB via local bus |
| 248 | */ |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 249 | /* PIB window base 0xF8008000 */ |
| 250 | #define CONFIG_SYS_PIB_BASE 0xF8008000 |
| 251 | #define CONFIG_SYS_PIB_WINDOW_SIZE (32 * 1024) |
| 252 | #define CONFIG_SYS_LBLAWBAR3_PRELIM CONFIG_SYS_PIB_BASE |
| 253 | #define CONFIG_SYS_LBLAWAR3_PRELIM (LBLAWAR_EN | LBLAWAR_64KB) |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 254 | |
| 255 | /* |
| 256 | * CS2 on Local Bus, to PIB |
| 257 | */ |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 258 | #define CONFIG_SYS_BR2_PRELIM (CONFIG_SYS_PIB_BASE \ |
| 259 | | BR_PS_8 \ |
| 260 | | BR_MS_GPCM \ |
| 261 | | BR_V) |
| 262 | /* 0xF8008801 */ |
| 263 | #define CONFIG_SYS_OR2_PRELIM (P2SZ_TO_AM(CONFIG_SYS_PIB_WINDOW_SIZE) \ |
| 264 | | OR_GPCM_XAM \ |
| 265 | | OR_GPCM_CSNT \ |
| 266 | | OR_GPCM_XACS \ |
| 267 | | OR_GPCM_SCY_15 \ |
| 268 | | OR_GPCM_TRLX_SET \ |
| 269 | | OR_GPCM_EHTR_SET \ |
| 270 | | OR_GPCM_EAD) |
| 271 | /* 0xffffe9f7 */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 272 | |
| 273 | /* |
| 274 | * CS3 on Local Bus, to PIB |
| 275 | */ |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 276 | #define CONFIG_SYS_BR3_PRELIM ((CONFIG_SYS_PIB_BASE + \ |
| 277 | CONFIG_SYS_PIB_WINDOW_SIZE) \ |
| 278 | | BR_PS_8 \ |
| 279 | | BR_MS_GPCM \ |
| 280 | | BR_V) |
| 281 | /* 0xF8010801 */ |
| 282 | #define CONFIG_SYS_OR3_PRELIM (P2SZ_TO_AM(CONFIG_SYS_PIB_WINDOW_SIZE) \ |
| 283 | | OR_GPCM_XAM \ |
| 284 | | OR_GPCM_CSNT \ |
| 285 | | OR_GPCM_XACS \ |
| 286 | | OR_GPCM_SCY_15 \ |
| 287 | | OR_GPCM_TRLX_SET \ |
| 288 | | OR_GPCM_EHTR_SET \ |
| 289 | | OR_GPCM_EAD) |
| 290 | /* 0xffffe9f7 */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 291 | |
| 292 | /* |
| 293 | * Serial Port |
| 294 | */ |
| 295 | #define CONFIG_CONS_INDEX 1 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 296 | #define CONFIG_SYS_NS16550 |
| 297 | #define CONFIG_SYS_NS16550_SERIAL |
| 298 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
| 299 | #define CONFIG_SYS_NS16550_CLK get_bus_freq(0) |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 300 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 301 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 302 | {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200} |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 303 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 304 | #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500) |
| 305 | #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600) |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 306 | |
Kim Phillips | 22d71a7 | 2007-02-27 18:41:08 -0600 | [diff] [blame] | 307 | #define CONFIG_CMDLINE_EDITING 1 /* add command line history */ |
Kim Phillips | a059e90 | 2010-04-15 17:36:05 -0500 | [diff] [blame] | 308 | #define CONFIG_AUTO_COMPLETE /* add autocompletion support */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 309 | /* Use the HUSH parser */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 310 | #define CONFIG_SYS_HUSH_PARSER |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 311 | |
| 312 | /* pass open firmware flat tree */ |
Kim Phillips | 35cc4e4 | 2007-08-15 22:30:39 -0500 | [diff] [blame] | 313 | #define CONFIG_OF_LIBFDT 1 |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 314 | #define CONFIG_OF_BOARD_SETUP 1 |
Kim Phillips | 5b8bc60 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 315 | #define CONFIG_OF_STDOUT_VIA_ALIAS 1 |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 316 | |
| 317 | /* I2C */ |
Heiko Schocher | 00f792e | 2012-10-24 13:48:22 +0200 | [diff] [blame] | 318 | #define CONFIG_SYS_I2C |
| 319 | #define CONFIG_SYS_I2C_FSL |
| 320 | #define CONFIG_SYS_FSL_I2C_SPEED 400000 |
| 321 | #define CONFIG_SYS_FSL_I2C_SLAVE 0x7F |
| 322 | #define CONFIG_SYS_FSL_I2C_OFFSET 0x3000 |
| 323 | #define CONFIG_SYS_I2C_NOPROBES { {0, 0x51} } |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 324 | |
| 325 | /* |
| 326 | * Config on-board RTC |
| 327 | */ |
| 328 | #define CONFIG_RTC_DS1374 /* use ds1374 rtc via i2c */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 329 | #define CONFIG_SYS_I2C_RTC_ADDR 0x68 /* at address 0x68 */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 330 | |
| 331 | /* |
| 332 | * General PCI |
| 333 | * Addresses are mapped 1-1. |
| 334 | */ |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 335 | #define CONFIG_SYS_PCI1_MEM_BASE 0x80000000 |
| 336 | #define CONFIG_SYS_PCI1_MEM_PHYS CONFIG_SYS_PCI1_MEM_BASE |
| 337 | #define CONFIG_SYS_PCI1_MEM_SIZE 0x10000000 /* 256M */ |
| 338 | #define CONFIG_SYS_PCI1_MMIO_BASE 0x90000000 |
| 339 | #define CONFIG_SYS_PCI1_MMIO_PHYS CONFIG_SYS_PCI1_MMIO_BASE |
| 340 | #define CONFIG_SYS_PCI1_MMIO_SIZE 0x10000000 /* 256M */ |
| 341 | #define CONFIG_SYS_PCI1_IO_BASE 0x00000000 |
| 342 | #define CONFIG_SYS_PCI1_IO_PHYS 0xE0300000 |
| 343 | #define CONFIG_SYS_PCI1_IO_SIZE 0x100000 /* 1M */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 344 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 345 | #define CONFIG_SYS_PCI_SLV_MEM_LOCAL CONFIG_SYS_SDRAM_BASE |
| 346 | #define CONFIG_SYS_PCI_SLV_MEM_BUS 0x00000000 |
| 347 | #define CONFIG_SYS_PCI_SLV_MEM_SIZE 0x80000000 |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 348 | |
| 349 | |
| 350 | #ifdef CONFIG_PCI |
Gabor Juhos | 842033e | 2013-05-30 07:06:12 +0000 | [diff] [blame] | 351 | #define CONFIG_PCI_INDIRECT_BRIDGE |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 352 | |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 353 | #define CONFIG_PCI_PNP /* do pci plug-and-play */ |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 354 | #define CONFIG_83XX_PCI_STREAMING |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 355 | |
| 356 | #undef CONFIG_EEPRO100 |
| 357 | #undef CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 358 | #define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1957 /* Freescale */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 359 | |
| 360 | #endif /* CONFIG_PCI */ |
| 361 | |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 362 | /* |
| 363 | * QE UEC ethernet configuration |
| 364 | */ |
| 365 | #define CONFIG_UEC_ETH |
Kim Phillips | 78b7a8e | 2010-07-26 18:34:57 -0500 | [diff] [blame] | 366 | #define CONFIG_ETHPRIME "UEC0" |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 367 | |
| 368 | #define CONFIG_UEC_ETH1 /* ETH3 */ |
| 369 | |
| 370 | #ifdef CONFIG_UEC_ETH1 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 371 | #define CONFIG_SYS_UEC1_UCC_NUM 2 /* UCC3 */ |
| 372 | #define CONFIG_SYS_UEC1_RX_CLK QE_CLK9 |
| 373 | #define CONFIG_SYS_UEC1_TX_CLK QE_CLK10 |
| 374 | #define CONFIG_SYS_UEC1_ETH_TYPE FAST_ETH |
| 375 | #define CONFIG_SYS_UEC1_PHY_ADDR 3 |
Andy Fleming | 865ff85 | 2011-04-13 00:37:12 -0500 | [diff] [blame] | 376 | #define CONFIG_SYS_UEC1_INTERFACE_TYPE PHY_INTERFACE_MODE_MII |
Heiko Schocher | 582c55a | 2010-01-20 09:04:28 +0100 | [diff] [blame] | 377 | #define CONFIG_SYS_UEC1_INTERFACE_SPEED 100 |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 378 | #endif |
| 379 | |
| 380 | #define CONFIG_UEC_ETH2 /* ETH4 */ |
| 381 | |
| 382 | #ifdef CONFIG_UEC_ETH2 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 383 | #define CONFIG_SYS_UEC2_UCC_NUM 3 /* UCC4 */ |
| 384 | #define CONFIG_SYS_UEC2_RX_CLK QE_CLK7 |
| 385 | #define CONFIG_SYS_UEC2_TX_CLK QE_CLK8 |
| 386 | #define CONFIG_SYS_UEC2_ETH_TYPE FAST_ETH |
| 387 | #define CONFIG_SYS_UEC2_PHY_ADDR 4 |
Andy Fleming | 865ff85 | 2011-04-13 00:37:12 -0500 | [diff] [blame] | 388 | #define CONFIG_SYS_UEC2_INTERFACE_TYPE PHY_INTERFACE_MODE_MII |
Heiko Schocher | 582c55a | 2010-01-20 09:04:28 +0100 | [diff] [blame] | 389 | #define CONFIG_SYS_UEC2_INTERFACE_SPEED 100 |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 390 | #endif |
| 391 | |
| 392 | /* |
| 393 | * Environment |
| 394 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 395 | #ifndef CONFIG_SYS_RAMBOOT |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 396 | #define CONFIG_ENV_IS_IN_FLASH 1 |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 397 | #define CONFIG_ENV_ADDR \ |
| 398 | (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 399 | #define CONFIG_ENV_SECT_SIZE 0x20000 |
| 400 | #define CONFIG_ENV_SIZE 0x2000 |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 401 | #else |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 402 | #define CONFIG_SYS_NO_FLASH 1 /* Flash is not usable now */ |
Jean-Christophe PLAGNIOL-VILLARD | 93f6d72 | 2008-09-10 22:48:00 +0200 | [diff] [blame] | 403 | #define CONFIG_ENV_IS_NOWHERE 1 /* Store ENV in memory only */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 404 | #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000) |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 405 | #define CONFIG_ENV_SIZE 0x2000 |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 406 | #endif |
| 407 | |
| 408 | #define CONFIG_LOADS_ECHO 1 /* echo on for serial download */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 409 | #define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 410 | |
Jon Loeliger | 8ea5499 | 2007-07-04 22:30:06 -0500 | [diff] [blame] | 411 | /* |
Jon Loeliger | 079a136 | 2007-07-10 10:12:10 -0500 | [diff] [blame] | 412 | * BOOTP options |
| 413 | */ |
| 414 | #define CONFIG_BOOTP_BOOTFILESIZE |
| 415 | #define CONFIG_BOOTP_BOOTPATH |
| 416 | #define CONFIG_BOOTP_GATEWAY |
| 417 | #define CONFIG_BOOTP_HOSTNAME |
| 418 | |
| 419 | |
| 420 | /* |
Jon Loeliger | 8ea5499 | 2007-07-04 22:30:06 -0500 | [diff] [blame] | 421 | * Command line configuration. |
| 422 | */ |
| 423 | #include <config_cmd_default.h> |
| 424 | |
| 425 | #define CONFIG_CMD_PING |
| 426 | #define CONFIG_CMD_I2C |
| 427 | #define CONFIG_CMD_ASKENV |
| 428 | |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 429 | #if defined(CONFIG_PCI) |
Jon Loeliger | 8ea5499 | 2007-07-04 22:30:06 -0500 | [diff] [blame] | 430 | #define CONFIG_CMD_PCI |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 431 | #endif |
| 432 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 433 | #if defined(CONFIG_SYS_RAMBOOT) |
Mike Frysinger | bdab39d | 2009-01-28 19:08:14 -0500 | [diff] [blame] | 434 | #undef CONFIG_CMD_SAVEENV |
Jon Loeliger | 8ea5499 | 2007-07-04 22:30:06 -0500 | [diff] [blame] | 435 | #undef CONFIG_CMD_LOADS |
| 436 | #endif |
| 437 | |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 438 | |
| 439 | #undef CONFIG_WATCHDOG /* watchdog disabled */ |
| 440 | |
| 441 | /* |
| 442 | * Miscellaneous configurable options |
| 443 | */ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 444 | #define CONFIG_SYS_LONGHELP /* undef to save memory */ |
| 445 | #define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 446 | |
Jon Loeliger | 8ea5499 | 2007-07-04 22:30:06 -0500 | [diff] [blame] | 447 | #if defined(CONFIG_CMD_KGDB) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 448 | #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 449 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 450 | #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 451 | #endif |
| 452 | |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 453 | /* Print Buffer Size */ |
| 454 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) |
| 455 | #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ |
| 456 | /* Boot Argument Buffer Size */ |
| 457 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 458 | |
| 459 | /* |
| 460 | * For booting Linux, the board info and command line data |
Ira W. Snyder | 9f530d5 | 2010-09-10 15:42:32 -0700 | [diff] [blame] | 461 | * have to be in the first 256 MB of memory, since this is |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 462 | * the maximum mapped by the Linux kernel during initialization. |
| 463 | */ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 464 | /* Initial Memory map for Linux */ |
| 465 | #define CONFIG_SYS_BOOTMAPSZ (256 << 20) |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 466 | |
| 467 | /* |
| 468 | * Core HID Setup |
| 469 | */ |
Kim Phillips | 1a2e203 | 2010-04-20 19:37:54 -0500 | [diff] [blame] | 470 | #define CONFIG_SYS_HID0_INIT 0x000000000 |
| 471 | #define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \ |
| 472 | HID0_ENABLE_INSTRUCTION_CACHE) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 473 | #define CONFIG_SYS_HID2 HID2_HBE |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 474 | |
| 475 | /* |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 476 | * MMU Setup |
| 477 | */ |
| 478 | |
Becky Bruce | 31d8267 | 2008-05-08 19:02:12 -0500 | [diff] [blame] | 479 | #define CONFIG_HIGH_BATS 1 /* High BATs supported */ |
| 480 | |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 481 | /* DDR: cache cacheable */ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 482 | #define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 483 | | BATL_PP_RW \ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 484 | | BATL_MEMCOHERENCE) |
| 485 | #define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE \ |
| 486 | | BATU_BL_256M \ |
| 487 | | BATU_VS \ |
| 488 | | BATU_VP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 489 | #define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L |
| 490 | #define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 491 | |
| 492 | /* IMMRBAR & PCI IO: cache-inhibit and guarded */ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 493 | #define CONFIG_SYS_IBAT1L (CONFIG_SYS_IMMR \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 494 | | BATL_PP_RW \ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 495 | | BATL_CACHEINHIBIT \ |
| 496 | | BATL_GUARDEDSTORAGE) |
| 497 | #define CONFIG_SYS_IBAT1U (CONFIG_SYS_IMMR \ |
| 498 | | BATU_BL_4M \ |
| 499 | | BATU_VS \ |
| 500 | | BATU_VP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 501 | #define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L |
| 502 | #define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 503 | |
| 504 | /* BCSR: cache-inhibit and guarded */ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 505 | #define CONFIG_SYS_IBAT2L (CONFIG_SYS_BCSR \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 506 | | BATL_PP_RW \ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 507 | | BATL_CACHEINHIBIT \ |
| 508 | | BATL_GUARDEDSTORAGE) |
| 509 | #define CONFIG_SYS_IBAT2U (CONFIG_SYS_BCSR \ |
| 510 | | BATU_BL_128K \ |
| 511 | | BATU_VS \ |
| 512 | | BATU_VP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 513 | #define CONFIG_SYS_DBAT2L CONFIG_SYS_IBAT2L |
| 514 | #define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 515 | |
| 516 | /* FLASH: icache cacheable, but dcache-inhibit and guarded */ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 517 | #define CONFIG_SYS_IBAT3L (CONFIG_SYS_FLASH_BASE \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 518 | | BATL_PP_RW \ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 519 | | BATL_MEMCOHERENCE) |
| 520 | #define CONFIG_SYS_IBAT3U (CONFIG_SYS_FLASH_BASE \ |
| 521 | | BATU_BL_32M \ |
| 522 | | BATU_VS \ |
| 523 | | BATU_VP) |
| 524 | #define CONFIG_SYS_DBAT3L (CONFIG_SYS_FLASH_BASE \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 525 | | BATL_PP_RW \ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 526 | | BATL_CACHEINHIBIT \ |
| 527 | | BATL_GUARDEDSTORAGE) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 528 | #define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 529 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 530 | #define CONFIG_SYS_IBAT4L (0) |
| 531 | #define CONFIG_SYS_IBAT4U (0) |
| 532 | #define CONFIG_SYS_DBAT4L CONFIG_SYS_IBAT4L |
| 533 | #define CONFIG_SYS_DBAT4U CONFIG_SYS_IBAT4U |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 534 | |
| 535 | /* Stack in dcache: cacheable, no memory coherence */ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 536 | #define CONFIG_SYS_IBAT5L (CONFIG_SYS_INIT_RAM_ADDR | BATL_PP_RW) |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 537 | #define CONFIG_SYS_IBAT5U (CONFIG_SYS_INIT_RAM_ADDR \ |
| 538 | | BATU_BL_128K \ |
| 539 | | BATU_VS \ |
| 540 | | BATU_VP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 541 | #define CONFIG_SYS_DBAT5L CONFIG_SYS_IBAT5L |
| 542 | #define CONFIG_SYS_DBAT5U CONFIG_SYS_IBAT5U |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 543 | |
| 544 | #ifdef CONFIG_PCI |
| 545 | /* PCI MEM space: cacheable */ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 546 | #define CONFIG_SYS_IBAT6L (CONFIG_SYS_PCI1_MEM_PHYS \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 547 | | BATL_PP_RW \ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 548 | | BATL_MEMCOHERENCE) |
| 549 | #define CONFIG_SYS_IBAT6U (CONFIG_SYS_PCI1_MEM_PHYS \ |
| 550 | | BATU_BL_256M \ |
| 551 | | BATU_VS \ |
| 552 | | BATU_VP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 553 | #define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L |
| 554 | #define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 555 | /* PCI MMIO space: cache-inhibit and guarded */ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 556 | #define CONFIG_SYS_IBAT7L (CONFIG_SYS_PCI1_MMIO_PHYS \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 557 | | BATL_PP_RW \ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 558 | | BATL_CACHEINHIBIT \ |
| 559 | | BATL_GUARDEDSTORAGE) |
| 560 | #define CONFIG_SYS_IBAT7U (CONFIG_SYS_PCI1_MMIO_PHYS \ |
| 561 | | BATU_BL_256M \ |
| 562 | | BATU_VS \ |
| 563 | | BATU_VP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 564 | #define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L |
| 565 | #define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 566 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 567 | #define CONFIG_SYS_IBAT6L (0) |
| 568 | #define CONFIG_SYS_IBAT6U (0) |
| 569 | #define CONFIG_SYS_IBAT7L (0) |
| 570 | #define CONFIG_SYS_IBAT7U (0) |
| 571 | #define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L |
| 572 | #define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U |
| 573 | #define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L |
| 574 | #define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 575 | #endif |
| 576 | |
Jon Loeliger | 8ea5499 | 2007-07-04 22:30:06 -0500 | [diff] [blame] | 577 | #if defined(CONFIG_CMD_KGDB) |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 578 | #define CONFIG_KGDB_BAUDRATE 230400 /* speed of kgdb serial port */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 579 | #endif |
| 580 | |
| 581 | /* |
| 582 | * Environment Configuration |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 583 | */ #define CONFIG_ENV_OVERWRITE |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 584 | |
| 585 | #if defined(CONFIG_UEC_ETH) |
Kim Phillips | 977b575 | 2008-01-09 15:24:06 -0600 | [diff] [blame] | 586 | #define CONFIG_HAS_ETH0 |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 587 | #define CONFIG_HAS_ETH1 |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 588 | #endif |
| 589 | |
| 590 | #define CONFIG_BAUDRATE 115200 |
| 591 | |
Kim Phillips | 79f516b | 2009-08-21 16:34:38 -0500 | [diff] [blame] | 592 | #define CONFIG_LOADADDR 800000 /* default location for tftp and bootm */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 593 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 594 | #define CONFIG_BOOTDELAY 6 /* -1 disables auto-boot */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 595 | #undef CONFIG_BOOTARGS /* the boot command will set bootargs */ |
| 596 | |
| 597 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 598 | "netdev=eth0\0" \ |
| 599 | "consoledev=ttyS0\0" \ |
| 600 | "ramdiskaddr=1000000\0" \ |
| 601 | "ramdiskfile=ramfs.83xx\0" \ |
| 602 | "fdtaddr=780000\0" \ |
| 603 | "fdtfile=mpc832x_mds.dtb\0" \ |
| 604 | "" |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 605 | |
| 606 | #define CONFIG_NFSBOOTCOMMAND \ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 607 | "setenv bootargs root=/dev/nfs rw " \ |
| 608 | "nfsroot=$serverip:$rootpath " \ |
| 609 | "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:" \ |
| 610 | "$netdev:off " \ |
| 611 | "console=$consoledev,$baudrate $othbootargs;" \ |
| 612 | "tftp $loadaddr $bootfile;" \ |
| 613 | "tftp $fdtaddr $fdtfile;" \ |
| 614 | "bootm $loadaddr - $fdtaddr" |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 615 | |
| 616 | #define CONFIG_RAMBOOTCOMMAND \ |
Joe Hershberger | 989091a | 2011-10-11 23:57:13 -0500 | [diff] [blame] | 617 | "setenv bootargs root=/dev/ram rw " \ |
| 618 | "console=$consoledev,$baudrate $othbootargs;" \ |
| 619 | "tftp $ramdiskaddr $ramdiskfile;" \ |
| 620 | "tftp $loadaddr $bootfile;" \ |
| 621 | "tftp $fdtaddr $fdtfile;" \ |
| 622 | "bootm $loadaddr $ramdiskaddr $fdtaddr" |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 623 | |
| 624 | |
| 625 | #define CONFIG_BOOTCOMMAND CONFIG_NFSBOOTCOMMAND |
| 626 | |
| 627 | #endif /* __CONFIG_H */ |