Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 1 | /* |
Jerry Huang | d37be07 | 2011-11-03 14:46:12 +0800 | [diff] [blame] | 2 | * Copyright (C) 2006,2011 Freescale Semiconductor, Inc. |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 3 | * |
| 4 | * Dave Liu <daveliu@freescale.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License as |
| 8 | * published by the Free Software Foundation; either version 2 of |
| 9 | * the License, or (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 19 | * MA 02111-1307 USA |
| 20 | */ |
| 21 | |
| 22 | #ifndef __CONFIG_H |
| 23 | #define __CONFIG_H |
| 24 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 25 | /* |
| 26 | * High Level Configuration Options |
| 27 | */ |
| 28 | #define CONFIG_E300 1 /* E300 family */ |
| 29 | #define CONFIG_QE 1 /* Has QE */ |
Peter Tyser | 0f89860 | 2009-05-22 17:23:24 -0500 | [diff] [blame] | 30 | #define CONFIG_MPC83xx 1 /* MPC83xx family */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 31 | #define CONFIG_MPC8360 1 /* MPC8360 CPU specific */ |
| 32 | #define CONFIG_MPC8360EMDS 1 /* MPC8360EMDS board specific */ |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 33 | |
| 34 | #define CONFIG_SYS_TEXT_BASE 0xFE000000 |
| 35 | |
Tony Li | 1477858 | 2007-08-17 10:35:59 +0800 | [diff] [blame] | 36 | #undef CONFIG_PQ_MDS_PIB /* POWERQUICC MDS Platform IO Board */ |
| 37 | #undef CONFIG_PQ_MDS_PIB_ATM /* QOC3 ATM card */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 38 | |
| 39 | /* |
| 40 | * System Clock Setup |
| 41 | */ |
Jerry Huang | 6be55ee | 2011-11-07 13:20:21 +0800 | [diff] [blame] | 42 | #ifdef CONFIG_CLKIN_33MHZ |
| 43 | #ifdef CONFIG_PCISLAVE |
| 44 | #define CONFIG_83XX_PCICLK 33330000 /* in HZ */ |
| 45 | #else |
| 46 | #define CONFIG_83XX_CLKIN 33330000 /* in Hz */ |
| 47 | #endif |
| 48 | |
| 49 | #ifndef CONFIG_SYS_CLK_FREQ |
| 50 | #define CONFIG_SYS_CLK_FREQ 33330000 |
| 51 | #endif |
| 52 | |
| 53 | #elif defined(CONFIG_CLKIN_66MHZ) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 54 | #ifdef CONFIG_PCISLAVE |
| 55 | #define CONFIG_83XX_PCICLK 66000000 /* in HZ */ |
| 56 | #else |
| 57 | #define CONFIG_83XX_CLKIN 66000000 /* in Hz */ |
| 58 | #endif |
| 59 | |
| 60 | #ifndef CONFIG_SYS_CLK_FREQ |
| 61 | #define CONFIG_SYS_CLK_FREQ 66000000 |
| 62 | #endif |
Jerry Huang | 6be55ee | 2011-11-07 13:20:21 +0800 | [diff] [blame] | 63 | #else |
| 64 | #error Unknown oscillator frequency. |
| 65 | #endif |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 66 | |
| 67 | /* |
| 68 | * Hardware Reset Configuration Word |
| 69 | */ |
Jerry Huang | 6be55ee | 2011-11-07 13:20:21 +0800 | [diff] [blame] | 70 | #ifdef CONFIG_CLKIN_33MHZ |
| 71 | #define CONFIG_SYS_HRCW_LOW (\ |
| 72 | HRCWL_LCL_BUS_TO_SCB_CLK_1X1 |\ |
| 73 | HRCWL_DDR_TO_SCB_CLK_1X1 |\ |
| 74 | HRCWL_CSB_TO_CLKIN_8X1 |\ |
| 75 | HRCWL_VCO_1X2 |\ |
| 76 | HRCWL_CE_PLL_VCO_DIV_4 |\ |
| 77 | HRCWL_CE_PLL_DIV_1X1 |\ |
| 78 | HRCWL_CE_TO_PLL_1X15 |\ |
| 79 | HRCWL_CORE_TO_CSB_2X1) |
| 80 | #elif defined(CONFIG_CLKIN_66MHZ) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 81 | #define CONFIG_SYS_HRCW_LOW (\ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 82 | HRCWL_LCL_BUS_TO_SCB_CLK_1X1 |\ |
| 83 | HRCWL_DDR_TO_SCB_CLK_1X1 |\ |
| 84 | HRCWL_CSB_TO_CLKIN_4X1 |\ |
| 85 | HRCWL_VCO_1X2 |\ |
| 86 | HRCWL_CE_PLL_VCO_DIV_4 |\ |
| 87 | HRCWL_CE_PLL_DIV_1X1 |\ |
| 88 | HRCWL_CE_TO_PLL_1X6 |\ |
| 89 | HRCWL_CORE_TO_CSB_2X1) |
Jerry Huang | 6be55ee | 2011-11-07 13:20:21 +0800 | [diff] [blame] | 90 | #endif |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 91 | |
| 92 | #ifdef CONFIG_PCISLAVE |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 93 | #define CONFIG_SYS_HRCW_HIGH (\ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 94 | HRCWH_PCI_AGENT |\ |
| 95 | HRCWH_PCI1_ARBITER_DISABLE |\ |
| 96 | HRCWH_PCICKDRV_DISABLE |\ |
| 97 | HRCWH_CORE_ENABLE |\ |
| 98 | HRCWH_FROM_0XFFF00100 |\ |
| 99 | HRCWH_BOOTSEQ_DISABLE |\ |
| 100 | HRCWH_SW_WATCHDOG_DISABLE |\ |
| 101 | HRCWH_ROM_LOC_LOCAL_16BIT) |
| 102 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 103 | #define CONFIG_SYS_HRCW_HIGH (\ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 104 | HRCWH_PCI_HOST |\ |
| 105 | HRCWH_PCI1_ARBITER_ENABLE |\ |
| 106 | HRCWH_PCICKDRV_ENABLE |\ |
| 107 | HRCWH_CORE_ENABLE |\ |
| 108 | HRCWH_FROM_0X00000100 |\ |
| 109 | HRCWH_BOOTSEQ_DISABLE |\ |
| 110 | HRCWH_SW_WATCHDOG_DISABLE |\ |
| 111 | HRCWH_ROM_LOC_LOCAL_16BIT) |
| 112 | #endif |
| 113 | |
| 114 | /* |
| 115 | * System IO Config |
| 116 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 117 | #define CONFIG_SYS_SICRH 0x00000000 |
| 118 | #define CONFIG_SYS_SICRL 0x40000000 |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 119 | |
| 120 | #define CONFIG_BOARD_EARLY_INIT_F /* call board_pre_init */ |
Tony Li | 1477858 | 2007-08-17 10:35:59 +0800 | [diff] [blame] | 121 | #define CONFIG_BOARD_EARLY_INIT_R |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 122 | |
| 123 | /* |
| 124 | * IMMR new address |
| 125 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 126 | #define CONFIG_SYS_IMMR 0xE0000000 |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 127 | |
| 128 | /* |
| 129 | * DDR Setup |
| 130 | */ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 131 | #define CONFIG_SYS_DDR_BASE 0x00000000 /* DDR is system memory */ |
| 132 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_BASE |
| 133 | /* + 256M */ |
| 134 | #define CONFIG_SYS_SDRAM_BASE2 (CONFIG_SYS_SDRAM_BASE + 0x10000000) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 135 | #define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_DDR_BASE |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 136 | #define CONFIG_SYS_DDR_SDRAM_CLK_CNTL (DDR_SDRAM_CLK_CNTL_SS_EN \ |
| 137 | | DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 138 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 139 | #define CONFIG_SYS_83XX_DDR_USES_CS0 |
Kim Phillips | bf0b542 | 2006-11-01 00:10:40 -0600 | [diff] [blame] | 140 | |
Xie Xiaobo | b110f40 | 2007-02-14 18:27:06 +0800 | [diff] [blame] | 141 | #define CONFIG_DDR_ECC /* support DDR ECC function */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 142 | #define CONFIG_DDR_ECC_CMD /* Use DDR ECC user commands */ |
| 143 | |
Xie Xiaobo | b110f40 | 2007-02-14 18:27:06 +0800 | [diff] [blame] | 144 | /* |
| 145 | * DDRCDR - DDR Control Driver Register |
| 146 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 147 | #define CONFIG_SYS_DDRCDR_VALUE 0x80080001 |
Xie Xiaobo | b110f40 | 2007-02-14 18:27:06 +0800 | [diff] [blame] | 148 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 149 | #define CONFIG_SPD_EEPROM /* Use SPD EEPROM for DDR setup */ |
| 150 | #if defined(CONFIG_SPD_EEPROM) |
| 151 | /* |
| 152 | * Determine DDR configuration from I2C interface. |
| 153 | */ |
| 154 | #define SPD_EEPROM_ADDRESS 0x52 /* DDR SODIMM */ |
| 155 | #else |
| 156 | /* |
| 157 | * Manually set up DDR parameters |
| 158 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 159 | #define CONFIG_SYS_DDR_SIZE 256 /* MB */ |
Xie Xiaobo | b110f40 | 2007-02-14 18:27:06 +0800 | [diff] [blame] | 160 | #if defined(CONFIG_DDR_II) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 161 | #define CONFIG_SYS_DDRCDR 0x80080001 |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 162 | #define CONFIG_SYS_DDR_CS0_BNDS 0x0000000f |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 163 | #define CONFIG_SYS_DDR_CS0_CONFIG 0x80330102 |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 164 | #define CONFIG_SYS_DDR_TIMING_0 0x00220802 |
| 165 | #define CONFIG_SYS_DDR_TIMING_1 0x38357322 |
| 166 | #define CONFIG_SYS_DDR_TIMING_2 0x2f9048c8 |
| 167 | #define CONFIG_SYS_DDR_TIMING_3 0x00000000 |
| 168 | #define CONFIG_SYS_DDR_CLK_CNTL 0x02000000 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 169 | #define CONFIG_SYS_DDR_MODE 0x47d00432 |
| 170 | #define CONFIG_SYS_DDR_MODE2 0x8000c000 |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 171 | #define CONFIG_SYS_DDR_INTERVAL 0x03cf0080 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 172 | #define CONFIG_SYS_DDR_SDRAM_CFG 0x43000000 |
| 173 | #define CONFIG_SYS_DDR_SDRAM_CFG2 0x00401000 |
Xie Xiaobo | b110f40 | 2007-02-14 18:27:06 +0800 | [diff] [blame] | 174 | #else |
Joe Hershberger | 2e651b2 | 2011-10-11 23:57:31 -0500 | [diff] [blame] | 175 | #define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN \ |
| 176 | | CSCONFIG_ROW_BIT_13 \ |
| 177 | | CSCONFIG_COL_BIT_9) |
| 178 | #define CONFIG_SYS_DDR_CS1_CONFIG CONFIG_SYS_DDR_CS0_CONFIG |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 179 | #define CONFIG_SYS_DDR_TIMING_1 0x37344321 /* tCL-tRCD-tRP-tRAS=2.5-3-3-7 */ |
| 180 | #define CONFIG_SYS_DDR_TIMING_2 0x00000800 /* may need tuning */ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 181 | #define CONFIG_SYS_DDR_CONTROL 0x42008000 /* Self refresh,2T timing */ |
| 182 | #define CONFIG_SYS_DDR_MODE 0x20000162 /* DLL,normal,seq,4/2.5 */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 183 | #define CONFIG_SYS_DDR_INTERVAL 0x045b0100 /* page mode */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 184 | #endif |
Xie Xiaobo | b110f40 | 2007-02-14 18:27:06 +0800 | [diff] [blame] | 185 | #endif |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 186 | |
| 187 | /* |
| 188 | * Memory test |
| 189 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 190 | #undef CONFIG_SYS_DRAM_TEST /* memory test, takes time */ |
| 191 | #define CONFIG_SYS_MEMTEST_START 0x00000000 /* memtest region */ |
| 192 | #define CONFIG_SYS_MEMTEST_END 0x00100000 |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 193 | |
| 194 | /* |
| 195 | * The reserved memory |
| 196 | */ |
| 197 | |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 198 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 199 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 200 | #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE) |
| 201 | #define CONFIG_SYS_RAMBOOT |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 202 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 203 | #undef CONFIG_SYS_RAMBOOT |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 204 | #endif |
| 205 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 206 | /* CONFIG_SYS_MONITOR_LEN must be a multiple of CONFIG_ENV_SECT_SIZE */ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 207 | #define CONFIG_SYS_MONITOR_LEN (384 * 1024) /* Reserve 384 kB for Mon */ |
Kim Phillips | c8a9064 | 2012-06-30 18:29:20 -0500 | [diff] [blame] | 208 | #define CONFIG_SYS_MALLOC_LEN (256 * 1024) /* Reserved for malloc */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 209 | |
| 210 | /* |
| 211 | * Initial RAM Base Address Setup |
| 212 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 213 | #define CONFIG_SYS_INIT_RAM_LOCK 1 |
| 214 | #define CONFIG_SYS_INIT_RAM_ADDR 0xE6000000 /* Initial RAM address */ |
Wolfgang Denk | 553f098 | 2010-10-26 13:32:32 +0200 | [diff] [blame] | 215 | #define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM */ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 216 | #define CONFIG_SYS_GBL_DATA_OFFSET \ |
| 217 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 218 | |
| 219 | /* |
| 220 | * Local Bus Configuration & Clock Setup |
| 221 | */ |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 222 | #define CONFIG_SYS_LCRR_DBYP LCRR_DBYP |
| 223 | #define CONFIG_SYS_LCRR_CLKDIV LCRR_CLKDIV_4 |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 224 | #define CONFIG_SYS_LBC_LBCR 0x00000000 |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 225 | |
| 226 | /* |
| 227 | * FLASH on the Local Bus |
| 228 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 229 | #define CONFIG_SYS_FLASH_CFI /* use the Common Flash Interface */ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 230 | #define CONFIG_FLASH_CFI_DRIVER /* use the CFI driver */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 231 | #define CONFIG_SYS_FLASH_BASE 0xFE000000 /* FLASH base address */ |
| 232 | #define CONFIG_SYS_FLASH_SIZE 32 /* max FLASH size is 32M */ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 233 | #define CONFIG_SYS_FLASH_PROTECTION 1 /* Use h/w Flash protection. */ |
| 234 | #define CONFIG_FLASH_SHOW_PROGRESS 45 /* count down from 45/5: 9..1 */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 235 | |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 236 | /* Window base at flash base */ |
| 237 | #define CONFIG_SYS_LBLAWBAR0_PRELIM CONFIG_SYS_FLASH_BASE |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 238 | #define CONFIG_SYS_LBLAWAR0_PRELIM (LBLAWAR_EN | LBLAWAR_32MB) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 239 | |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 240 | #define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE \ |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 241 | | BR_PS_16 /* 16 bit port */ \ |
| 242 | | BR_MS_GPCM /* MSEL = GPCM */ \ |
| 243 | | BR_V) /* valid */ |
| 244 | #define CONFIG_SYS_OR0_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH_SIZE) \ |
| 245 | | OR_GPCM_XAM \ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 246 | | OR_GPCM_CSNT \ |
| 247 | | OR_GPCM_ACS_DIV2 \ |
| 248 | | OR_GPCM_XACS \ |
| 249 | | OR_GPCM_SCY_15 \ |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 250 | | OR_GPCM_TRLX_SET \ |
| 251 | | OR_GPCM_EHTR_SET \ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 252 | | OR_GPCM_EAD) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 253 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 254 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */ |
| 255 | #define CONFIG_SYS_MAX_FLASH_SECT 256 /* max sectors per device */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 256 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 257 | #undef CONFIG_SYS_FLASH_CHECKSUM |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 258 | |
| 259 | /* |
| 260 | * BCSR on the Local Bus |
| 261 | */ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 262 | #define CONFIG_SYS_BCSR 0xF8000000 |
| 263 | /* Access window base at BCSR base */ |
| 264 | #define CONFIG_SYS_LBLAWBAR1_PRELIM CONFIG_SYS_BCSR |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 265 | #define CONFIG_SYS_LBLAWAR1_PRELIM (LBLAWAR_EN | LBLAWAR_64KB) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 266 | |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 267 | #define CONFIG_SYS_BR1_PRELIM (CONFIG_SYS_BCSR \ |
| 268 | | BR_PS_8 \ |
| 269 | | BR_MS_GPCM \ |
| 270 | | BR_V) |
| 271 | #define CONFIG_SYS_OR1_PRELIM (OR_AM_32KB \ |
| 272 | | OR_GPCM_XAM \ |
| 273 | | OR_GPCM_CSNT \ |
| 274 | | OR_GPCM_XACS \ |
| 275 | | OR_GPCM_SCY_15 \ |
| 276 | | OR_GPCM_TRLX_SET \ |
| 277 | | OR_GPCM_EHTR_SET \ |
| 278 | | OR_GPCM_EAD) |
| 279 | /* 0xFFFFE9F7 */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 280 | |
| 281 | /* |
| 282 | * SDRAM on the Local Bus |
| 283 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 284 | #define CONFIG_SYS_LBC_SDRAM_BASE 0xF0000000 /* SDRAM base address */ |
| 285 | #define CONFIG_SYS_LBC_SDRAM_SIZE 64 /* LBC SDRAM is 64MB */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 286 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 287 | #define CONFIG_SYS_LB_SDRAM /* if board has SRDAM on local bus */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 288 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 289 | #ifdef CONFIG_SYS_LB_SDRAM |
Anton Vorontsov | 5c2ff32 | 2008-09-10 18:12:37 +0400 | [diff] [blame] | 290 | #define CONFIG_SYS_LBLAWBAR2 0 |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 291 | #define CONFIG_SYS_LBLAWAR2 (LBLAWAR_EN | LBLAWAR_64MB) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 292 | |
| 293 | /*local bus BR2, OR2 definition for SDRAM if soldered on the EPB board */ |
| 294 | /* |
| 295 | * Base Register 2 and Option Register 2 configure SDRAM. |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 296 | * |
| 297 | * For BR2, need: |
Anton Vorontsov | 5c2ff32 | 2008-09-10 18:12:37 +0400 | [diff] [blame] | 298 | * Base address = BR[0:16] = dynamic |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 299 | * port size = 32-bits = BR2[19:20] = 11 |
| 300 | * no parity checking = BR2[21:22] = 00 |
| 301 | * SDRAM for MSEL = BR2[24:26] = 011 |
| 302 | * Valid = BR[31] = 1 |
| 303 | * |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 304 | * 0 4 8 12 16 20 24 28 |
Anton Vorontsov | 5c2ff32 | 2008-09-10 18:12:37 +0400 | [diff] [blame] | 305 | * xxxx xxxx xxxx xxxx x001 1000 0110 0001 = 00001861 |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 306 | */ |
| 307 | |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 308 | /* Port size=32bit, MSEL=DRAM */ |
| 309 | #define CONFIG_SYS_BR2 (BR_PS_32 | BR_MS_SDRAM | BR_V) /* 0xF0001861 */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 310 | |
| 311 | /* |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 312 | * The SDRAM size in MB, CONFIG_SYS_LBC_SDRAM_SIZE, is 64. |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 313 | * |
| 314 | * For OR2, need: |
| 315 | * 64MB mask for AM, OR2[0:7] = 1111 1100 |
| 316 | * XAM, OR2[17:18] = 11 |
| 317 | * 9 columns OR2[19-21] = 010 |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 318 | * 13 rows OR2[23-25] = 100 |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 319 | * EAD set for extra time OR[31] = 1 |
| 320 | * |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 321 | * 0 4 8 12 16 20 24 28 |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 322 | * 1111 1100 0000 0000 0110 1001 0000 0001 = fc006901 |
| 323 | */ |
| 324 | |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 325 | #define CONFIG_SYS_OR2 (MEG_TO_AM(CONFIG_SYS_LBC_SDRAM_SIZE) \ |
| 326 | | OR_SDRAM_XAM \ |
| 327 | | ((9 - OR_SDRAM_MIN_COLS) << OR_SDRAM_COLS_SHIFT) \ |
| 328 | | ((13 - OR_SDRAM_MIN_ROWS) << OR_SDRAM_ROWS_SHIFT) \ |
| 329 | | OR_SDRAM_EAD) |
| 330 | /* 0xFC006901 */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 331 | |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 332 | /* LB sdram refresh timer, about 6us */ |
| 333 | #define CONFIG_SYS_LBC_LSRT 0x32000000 |
| 334 | /* LB refresh timer prescal, 266MHz/32 */ |
| 335 | #define CONFIG_SYS_LBC_MRTPR 0x20000000 |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 336 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 337 | #define CONFIG_SYS_LBC_LSDMR_COMMON 0x0063b723 |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 338 | |
| 339 | /* |
| 340 | * SDRAM Controller configuration sequence. |
| 341 | */ |
Kumar Gala | 540dcf1 | 2009-03-26 01:34:39 -0500 | [diff] [blame] | 342 | #define CONFIG_SYS_LBC_LSDMR_1 (CONFIG_SYS_LBC_LSDMR_COMMON | LSDMR_OP_PCHALL) |
| 343 | #define CONFIG_SYS_LBC_LSDMR_2 (CONFIG_SYS_LBC_LSDMR_COMMON | LSDMR_OP_ARFRSH) |
| 344 | #define CONFIG_SYS_LBC_LSDMR_3 (CONFIG_SYS_LBC_LSDMR_COMMON | LSDMR_OP_ARFRSH) |
| 345 | #define CONFIG_SYS_LBC_LSDMR_4 (CONFIG_SYS_LBC_LSDMR_COMMON | LSDMR_OP_MRW) |
| 346 | #define CONFIG_SYS_LBC_LSDMR_5 (CONFIG_SYS_LBC_LSDMR_COMMON | LSDMR_OP_NORMAL) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 347 | |
| 348 | #endif |
| 349 | |
| 350 | /* |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 351 | * Windows to access Platform I/O Boards (PIB) via local bus |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 352 | */ |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 353 | #define CONFIG_SYS_PIB_BASE 0xF8008000 |
| 354 | #define CONFIG_SYS_PIB_WINDOW_SIZE (32 * 1024) |
| 355 | |
| 356 | /* [RFC] This LBLAW only covers the 2nd window (CS5) */ |
| 357 | #define CONFIG_SYS_LBLAWBAR3_PRELIM \ |
| 358 | CONFIG_SYS_PIB_BASE + CONFIG_SYS_PIB_WINDOW_SIZE |
| 359 | #define CONFIG_SYS_LBLAWAR3_PRELIM (LBLAWAR_EN | LBLAWAR_32KB) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 360 | |
| 361 | /* |
| 362 | * CS4 on Local Bus, to PIB |
| 363 | */ |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 364 | /* CS4 base address at 0xf8008000 */ |
| 365 | #define CONFIG_SYS_BR4_PRELIM (CONFIG_SYS_PIB_BASE \ |
| 366 | | BR_PS_8 \ |
| 367 | | BR_MS_GPCM \ |
| 368 | | BR_V) |
| 369 | /* 0xF8008801 */ |
| 370 | #define CONFIG_SYS_OR4_PRELIM (OR_AM_32KB \ |
| 371 | | OR_GPCM_XAM \ |
| 372 | | OR_GPCM_CSNT \ |
| 373 | | OR_GPCM_XACS \ |
| 374 | | OR_GPCM_SCY_15 \ |
| 375 | | OR_GPCM_TRLX_SET \ |
| 376 | | OR_GPCM_EHTR_SET \ |
| 377 | | OR_GPCM_EAD) |
| 378 | /* 0xffffe9f7 */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 379 | |
| 380 | /* |
| 381 | * CS5 on Local Bus, to PIB |
| 382 | */ |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 383 | /* CS5 base address at 0xf8010000 */ |
| 384 | #define CONFIG_SYS_BR5_PRELIM ((CONFIG_SYS_PIB_BASE + \ |
| 385 | CONFIG_SYS_PIB_WINDOW_SIZE) \ |
| 386 | | BR_PS_8 \ |
| 387 | | BR_MS_GPCM \ |
| 388 | | BR_V) |
| 389 | /* 0xF8010801 */ |
| 390 | #define CONFIG_SYS_OR5_PRELIM (CONFIG_SYS_PIB_BASE \ |
| 391 | | OR_GPCM_XAM \ |
| 392 | | OR_GPCM_CSNT \ |
| 393 | | OR_GPCM_XACS \ |
| 394 | | OR_GPCM_SCY_15 \ |
| 395 | | OR_GPCM_TRLX_SET \ |
| 396 | | OR_GPCM_EHTR_SET \ |
| 397 | | OR_GPCM_EAD) |
| 398 | /* 0xffffe9f7 */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 399 | |
| 400 | /* |
| 401 | * Serial Port |
| 402 | */ |
| 403 | #define CONFIG_CONS_INDEX 1 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 404 | #define CONFIG_SYS_NS16550 |
| 405 | #define CONFIG_SYS_NS16550_SERIAL |
| 406 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
| 407 | #define CONFIG_SYS_NS16550_CLK get_bus_freq(0) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 408 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 409 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 410 | {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200} |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 411 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 412 | #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500) |
| 413 | #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 414 | |
Kim Phillips | 22d71a7 | 2007-02-27 18:41:08 -0600 | [diff] [blame] | 415 | #define CONFIG_CMDLINE_EDITING 1 /* add command line history */ |
Kim Phillips | a059e90 | 2010-04-15 17:36:05 -0500 | [diff] [blame] | 416 | #define CONFIG_AUTO_COMPLETE /* add autocompletion support */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 417 | /* Use the HUSH parser */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 418 | #define CONFIG_SYS_HUSH_PARSER |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 419 | |
Kim Phillips | bf0b542 | 2006-11-01 00:10:40 -0600 | [diff] [blame] | 420 | /* pass open firmware flat tree */ |
Gerald Van Baren | 213bf8c | 2007-03-31 12:23:51 -0400 | [diff] [blame] | 421 | #define CONFIG_OF_LIBFDT 1 |
Kim Phillips | bf0b542 | 2006-11-01 00:10:40 -0600 | [diff] [blame] | 422 | #define CONFIG_OF_BOARD_SETUP 1 |
Kim Phillips | 5b8bc60 | 2007-12-20 14:09:22 -0600 | [diff] [blame] | 423 | #define CONFIG_OF_STDOUT_VIA_ALIAS 1 |
Kim Phillips | bf0b542 | 2006-11-01 00:10:40 -0600 | [diff] [blame] | 424 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 425 | /* I2C */ |
| 426 | #define CONFIG_HARD_I2C /* I2C with hardware support */ |
| 427 | #undef CONFIG_SOFT_I2C /* I2C bit-banged */ |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 428 | #define CONFIG_FSL_I2C |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 429 | #define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address */ |
| 430 | #define CONFIG_SYS_I2C_SLAVE 0x7F |
| 431 | #define CONFIG_SYS_I2C_NOPROBES {0x52} /* Don't probe these addrs */ |
| 432 | #define CONFIG_SYS_I2C_OFFSET 0x3000 |
| 433 | #define CONFIG_SYS_I2C2_OFFSET 0x3100 |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 434 | |
| 435 | /* |
| 436 | * Config on-board RTC |
| 437 | */ |
| 438 | #define CONFIG_RTC_DS1374 /* use ds1374 rtc via i2c */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 439 | #define CONFIG_SYS_I2C_RTC_ADDR 0x68 /* at address 0x68 */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 440 | |
| 441 | /* |
| 442 | * General PCI |
| 443 | * Addresses are mapped 1-1. |
| 444 | */ |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 445 | #define CONFIG_SYS_PCI1_MEM_BASE 0x80000000 |
| 446 | #define CONFIG_SYS_PCI1_MEM_PHYS CONFIG_SYS_PCI1_MEM_BASE |
| 447 | #define CONFIG_SYS_PCI1_MEM_SIZE 0x10000000 /* 256M */ |
| 448 | #define CONFIG_SYS_PCI1_MMIO_BASE 0x90000000 |
| 449 | #define CONFIG_SYS_PCI1_MMIO_PHYS CONFIG_SYS_PCI1_MMIO_BASE |
| 450 | #define CONFIG_SYS_PCI1_MMIO_SIZE 0x10000000 /* 256M */ |
| 451 | #define CONFIG_SYS_PCI1_IO_BASE 0x00000000 |
| 452 | #define CONFIG_SYS_PCI1_IO_PHYS 0xE0300000 |
| 453 | #define CONFIG_SYS_PCI1_IO_SIZE 0x100000 /* 1M */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 454 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 455 | #define CONFIG_SYS_PCI_SLV_MEM_LOCAL CONFIG_SYS_SDRAM_BASE |
| 456 | #define CONFIG_SYS_PCI_SLV_MEM_BUS 0x00000000 |
| 457 | #define CONFIG_SYS_PCI_SLV_MEM_SIZE 0x80000000 |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 458 | |
| 459 | |
| 460 | #ifdef CONFIG_PCI |
| 461 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 462 | #define CONFIG_PCI_PNP /* do pci plug-and-play */ |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 463 | #define CONFIG_83XX_PCI_STREAMING |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 464 | |
| 465 | #undef CONFIG_EEPRO100 |
| 466 | #undef CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 467 | #define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1957 /* Freescale */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 468 | |
| 469 | #endif /* CONFIG_PCI */ |
| 470 | |
| 471 | |
Anton Vorontsov | da6eea0 | 2009-09-16 23:22:08 +0400 | [diff] [blame] | 472 | #define CONFIG_HWCONFIG 1 |
| 473 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 474 | /* |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 475 | * QE UEC ethernet configuration |
| 476 | */ |
| 477 | #define CONFIG_UEC_ETH |
Kim Phillips | 78b7a8e | 2010-07-26 18:34:57 -0500 | [diff] [blame] | 478 | #define CONFIG_ETHPRIME "UEC0" |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 479 | #define CONFIG_PHY_MODE_NEED_CHANGE |
| 480 | |
| 481 | #define CONFIG_UEC_ETH1 /* GETH1 */ |
| 482 | |
| 483 | #ifdef CONFIG_UEC_ETH1 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 484 | #define CONFIG_SYS_UEC1_UCC_NUM 0 /* UCC1 */ |
| 485 | #define CONFIG_SYS_UEC1_RX_CLK QE_CLK_NONE |
| 486 | #define CONFIG_SYS_UEC1_TX_CLK QE_CLK9 |
| 487 | #define CONFIG_SYS_UEC1_ETH_TYPE GIGA_ETH |
| 488 | #define CONFIG_SYS_UEC1_PHY_ADDR 0 |
Andy Fleming | 865ff85 | 2011-04-13 00:37:12 -0500 | [diff] [blame] | 489 | #define CONFIG_SYS_UEC1_INTERFACE_TYPE PHY_INTERFACE_MODE_RGMII_ID |
Heiko Schocher | 582c55a | 2010-01-20 09:04:28 +0100 | [diff] [blame] | 490 | #define CONFIG_SYS_UEC1_INTERFACE_SPEED 1000 |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 491 | #endif |
| 492 | |
| 493 | #define CONFIG_UEC_ETH2 /* GETH2 */ |
| 494 | |
| 495 | #ifdef CONFIG_UEC_ETH2 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 496 | #define CONFIG_SYS_UEC2_UCC_NUM 1 /* UCC2 */ |
| 497 | #define CONFIG_SYS_UEC2_RX_CLK QE_CLK_NONE |
| 498 | #define CONFIG_SYS_UEC2_TX_CLK QE_CLK4 |
| 499 | #define CONFIG_SYS_UEC2_ETH_TYPE GIGA_ETH |
| 500 | #define CONFIG_SYS_UEC2_PHY_ADDR 1 |
Andy Fleming | 865ff85 | 2011-04-13 00:37:12 -0500 | [diff] [blame] | 501 | #define CONFIG_SYS_UEC2_INTERFACE_TYPE PHY_INTERFACE_MODE_RGMII_ID |
Heiko Schocher | 582c55a | 2010-01-20 09:04:28 +0100 | [diff] [blame] | 502 | #define CONFIG_SYS_UEC2_INTERFACE_SPEED 1000 |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 503 | #endif |
| 504 | |
| 505 | /* |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 506 | * Environment |
| 507 | */ |
| 508 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 509 | #ifndef CONFIG_SYS_RAMBOOT |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 510 | #define CONFIG_ENV_IS_IN_FLASH 1 |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 511 | #define CONFIG_ENV_ADDR \ |
| 512 | (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 513 | #define CONFIG_ENV_SECT_SIZE 0x20000 |
| 514 | #define CONFIG_ENV_SIZE 0x2000 |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 515 | #else |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 516 | #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] | 517 | #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] | 518 | #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000) |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 519 | #define CONFIG_ENV_SIZE 0x2000 |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 520 | #endif |
| 521 | |
| 522 | #define CONFIG_LOADS_ECHO 1 /* echo on for serial download */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 523 | #define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 524 | |
Jon Loeliger | 8ea5499 | 2007-07-04 22:30:06 -0500 | [diff] [blame] | 525 | /* |
Jon Loeliger | 659e2f6 | 2007-07-10 09:10:49 -0500 | [diff] [blame] | 526 | * BOOTP options |
| 527 | */ |
| 528 | #define CONFIG_BOOTP_BOOTFILESIZE |
| 529 | #define CONFIG_BOOTP_BOOTPATH |
| 530 | #define CONFIG_BOOTP_GATEWAY |
| 531 | #define CONFIG_BOOTP_HOSTNAME |
| 532 | |
| 533 | |
| 534 | /* |
Jon Loeliger | 8ea5499 | 2007-07-04 22:30:06 -0500 | [diff] [blame] | 535 | * Command line configuration. |
| 536 | */ |
| 537 | #include <config_cmd_default.h> |
| 538 | |
| 539 | #define CONFIG_CMD_PING |
| 540 | #define CONFIG_CMD_I2C |
| 541 | #define CONFIG_CMD_ASKENV |
Jerry Van Baren | b5cdd7d | 2008-01-12 13:24:14 -0500 | [diff] [blame] | 542 | #define CONFIG_CMD_SDRAM |
Jon Loeliger | 8ea5499 | 2007-07-04 22:30:06 -0500 | [diff] [blame] | 543 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 544 | #if defined(CONFIG_PCI) |
Jon Loeliger | 8ea5499 | 2007-07-04 22:30:06 -0500 | [diff] [blame] | 545 | #define CONFIG_CMD_PCI |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 546 | #endif |
| 547 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 548 | #if defined(CONFIG_SYS_RAMBOOT) |
Mike Frysinger | bdab39d | 2009-01-28 19:08:14 -0500 | [diff] [blame] | 549 | #undef CONFIG_CMD_SAVEENV |
Jon Loeliger | 8ea5499 | 2007-07-04 22:30:06 -0500 | [diff] [blame] | 550 | #undef CONFIG_CMD_LOADS |
| 551 | #endif |
| 552 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 553 | |
| 554 | #undef CONFIG_WATCHDOG /* watchdog disabled */ |
| 555 | |
| 556 | /* |
| 557 | * Miscellaneous configurable options |
| 558 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 559 | #define CONFIG_SYS_LONGHELP /* undef to save memory */ |
| 560 | #define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */ |
| 561 | #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 562 | |
Jon Loeliger | 8ea5499 | 2007-07-04 22:30:06 -0500 | [diff] [blame] | 563 | #if defined(CONFIG_CMD_KGDB) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 564 | #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 565 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 566 | #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 567 | #endif |
| 568 | |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 569 | /* Print Buffer Size */ |
| 570 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) |
| 571 | #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ |
| 572 | /* Boot Argument Buffer Size */ |
| 573 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE |
| 574 | #define CONFIG_SYS_HZ 1000 /* decrementer freq: 1ms ticks */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 575 | |
| 576 | /* |
| 577 | * For booting Linux, the board info and command line data |
Ira W. Snyder | 9f530d5 | 2010-09-10 15:42:32 -0700 | [diff] [blame] | 578 | * have to be in the first 256 MB of memory, since this is |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 579 | * the maximum mapped by the Linux kernel during initialization. |
| 580 | */ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 581 | #define CONFIG_SYS_BOOTMAPSZ (256 << 20) /* Initial Memory map for Linux */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 582 | |
| 583 | /* |
| 584 | * Core HID Setup |
| 585 | */ |
Kim Phillips | 1a2e203 | 2010-04-20 19:37:54 -0500 | [diff] [blame] | 586 | #define CONFIG_SYS_HID0_INIT 0x000000000 |
| 587 | #define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \ |
| 588 | HID0_ENABLE_INSTRUCTION_CACHE) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 589 | #define CONFIG_SYS_HID2 HID2_HBE |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 590 | |
| 591 | /* |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 592 | * MMU Setup |
| 593 | */ |
| 594 | |
Becky Bruce | 31d8267 | 2008-05-08 19:02:12 -0500 | [diff] [blame] | 595 | #define CONFIG_HIGH_BATS 1 /* High BATs supported */ |
Jerry Huang | d37be07 | 2011-11-03 14:46:12 +0800 | [diff] [blame] | 596 | #define CONFIG_BAT_RW |
Becky Bruce | 31d8267 | 2008-05-08 19:02:12 -0500 | [diff] [blame] | 597 | |
Anton Vorontsov | 5c2ff32 | 2008-09-10 18:12:37 +0400 | [diff] [blame] | 598 | /* DDR/LBC SDRAM: cacheable */ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 599 | #define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 600 | | BATL_PP_RW \ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 601 | | BATL_MEMCOHERENCE) |
| 602 | #define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE \ |
| 603 | | BATU_BL_256M \ |
| 604 | | BATU_VS \ |
| 605 | | BATU_VP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 606 | #define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L |
| 607 | #define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 608 | |
| 609 | /* IMMRBAR & PCI IO: cache-inhibit and guarded */ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 610 | #define CONFIG_SYS_IBAT1L (CONFIG_SYS_IMMR \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 611 | | BATL_PP_RW \ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 612 | | BATL_CACHEINHIBIT \ |
| 613 | | BATL_GUARDEDSTORAGE) |
| 614 | #define CONFIG_SYS_IBAT1U (CONFIG_SYS_IMMR \ |
| 615 | | BATU_BL_4M \ |
| 616 | | BATU_VS \ |
| 617 | | BATU_VP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 618 | #define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L |
| 619 | #define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 620 | |
| 621 | /* BCSR: cache-inhibit and guarded */ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 622 | #define CONFIG_SYS_IBAT2L (CONFIG_SYS_BCSR \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 623 | | BATL_PP_RW \ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 624 | | BATL_CACHEINHIBIT \ |
| 625 | | BATL_GUARDEDSTORAGE) |
| 626 | #define CONFIG_SYS_IBAT2U (CONFIG_SYS_BCSR \ |
| 627 | | BATU_BL_128K \ |
| 628 | | BATU_VS \ |
| 629 | | BATU_VP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 630 | #define CONFIG_SYS_DBAT2L CONFIG_SYS_IBAT2L |
| 631 | #define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 632 | |
| 633 | /* FLASH: icache cacheable, but dcache-inhibit and guarded */ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 634 | #define CONFIG_SYS_IBAT3L (CONFIG_SYS_FLASH_BASE \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 635 | | BATL_PP_RW \ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 636 | | BATL_MEMCOHERENCE) |
| 637 | #define CONFIG_SYS_IBAT3U (CONFIG_SYS_FLASH_BASE \ |
| 638 | | BATU_BL_32M \ |
| 639 | | BATU_VS \ |
| 640 | | BATU_VP) |
| 641 | #define CONFIG_SYS_DBAT3L (CONFIG_SYS_FLASH_BASE \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 642 | | BATL_PP_RW \ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 643 | | BATL_CACHEINHIBIT \ |
| 644 | | BATL_GUARDEDSTORAGE) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 645 | #define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 646 | |
Anton Vorontsov | 5c2ff32 | 2008-09-10 18:12:37 +0400 | [diff] [blame] | 647 | /* DDR/LBC SDRAM next 256M: cacheable */ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 648 | #define CONFIG_SYS_IBAT4L (CONFIG_SYS_SDRAM_BASE2 \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 649 | | BATL_PP_RW \ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 650 | | BATL_MEMCOHERENCE) |
| 651 | #define CONFIG_SYS_IBAT4U (CONFIG_SYS_SDRAM_BASE2 \ |
| 652 | | BATU_BL_256M \ |
| 653 | | BATU_VS \ |
| 654 | | BATU_VP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 655 | #define CONFIG_SYS_DBAT4L CONFIG_SYS_IBAT4L |
| 656 | #define CONFIG_SYS_DBAT4U CONFIG_SYS_IBAT4U |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 657 | |
| 658 | /* Stack in dcache: cacheable, no memory coherence */ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 659 | #define CONFIG_SYS_IBAT5L (CONFIG_SYS_INIT_RAM_ADDR | BATL_PP_RW) |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 660 | #define CONFIG_SYS_IBAT5U (CONFIG_SYS_INIT_RAM_ADDR \ |
| 661 | | BATU_BL_128K \ |
| 662 | | BATU_VS \ |
| 663 | | BATU_VP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 664 | #define CONFIG_SYS_DBAT5L CONFIG_SYS_IBAT5L |
| 665 | #define CONFIG_SYS_DBAT5U CONFIG_SYS_IBAT5U |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 666 | |
| 667 | #ifdef CONFIG_PCI |
| 668 | /* PCI MEM space: cacheable */ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 669 | #define CONFIG_SYS_IBAT6L (CONFIG_SYS_PCI1_MEM_PHYS \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 670 | | BATL_PP_RW \ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 671 | | BATL_MEMCOHERENCE) |
| 672 | #define CONFIG_SYS_IBAT6U (CONFIG_SYS_PCI1_MEM_PHYS \ |
| 673 | | BATU_BL_256M \ |
| 674 | | BATU_VS \ |
| 675 | | BATU_VP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 676 | #define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L |
| 677 | #define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 678 | /* PCI MMIO space: cache-inhibit and guarded */ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 679 | #define CONFIG_SYS_IBAT7L (CONFIG_SYS_PCI1_MMIO_PHYS \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 680 | | BATL_PP_RW \ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 681 | | BATL_CACHEINHIBIT \ |
| 682 | | BATL_GUARDEDSTORAGE) |
| 683 | #define CONFIG_SYS_IBAT7U (CONFIG_SYS_PCI1_MMIO_PHYS \ |
| 684 | | BATU_BL_256M \ |
| 685 | | BATU_VS \ |
| 686 | | BATU_VP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 687 | #define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L |
| 688 | #define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 689 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 690 | #define CONFIG_SYS_IBAT6L (0) |
| 691 | #define CONFIG_SYS_IBAT6U (0) |
| 692 | #define CONFIG_SYS_IBAT7L (0) |
| 693 | #define CONFIG_SYS_IBAT7U (0) |
| 694 | #define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L |
| 695 | #define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U |
| 696 | #define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L |
| 697 | #define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 698 | #endif |
| 699 | |
Jon Loeliger | 8ea5499 | 2007-07-04 22:30:06 -0500 | [diff] [blame] | 700 | #if defined(CONFIG_CMD_KGDB) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 701 | #define CONFIG_KGDB_BAUDRATE 230400 /* speed of kgdb serial port */ |
| 702 | #define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */ |
| 703 | #endif |
| 704 | |
| 705 | /* |
| 706 | * Environment Configuration |
| 707 | */ |
| 708 | |
| 709 | #define CONFIG_ENV_OVERWRITE |
| 710 | |
| 711 | #if defined(CONFIG_UEC_ETH) |
Kim Phillips | 977b575 | 2008-01-09 15:24:06 -0600 | [diff] [blame] | 712 | #define CONFIG_HAS_ETH0 |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 713 | #define CONFIG_HAS_ETH1 |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 714 | #endif |
| 715 | |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 716 | #define CONFIG_BAUDRATE 115200 |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 717 | |
Kim Phillips | 79f516b | 2009-08-21 16:34:38 -0500 | [diff] [blame] | 718 | #define CONFIG_LOADADDR 800000 /* default location for tftp and bootm */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 719 | |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 720 | #define CONFIG_BOOTDELAY 6 /* -1 disables auto-boot */ |
| 721 | #undef CONFIG_BOOTARGS /* the boot command will set bootargs */ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 722 | |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 723 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 724 | "netdev=eth0\0" \ |
| 725 | "consoledev=ttyS0\0" \ |
| 726 | "ramdiskaddr=1000000\0" \ |
| 727 | "ramdiskfile=ramfs.83xx\0" \ |
| 728 | "fdtaddr=780000\0" \ |
| 729 | "fdtfile=mpc836x_mds.dtb\0" \ |
| 730 | "" |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 731 | |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 732 | #define CONFIG_NFSBOOTCOMMAND \ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 733 | "setenv bootargs root=/dev/nfs rw " \ |
| 734 | "nfsroot=$serverip:$rootpath " \ |
| 735 | "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:" \ |
| 736 | "$netdev:off " \ |
| 737 | "console=$consoledev,$baudrate $othbootargs;" \ |
| 738 | "tftp $loadaddr $bootfile;" \ |
| 739 | "tftp $fdtaddr $fdtfile;" \ |
| 740 | "bootm $loadaddr - $fdtaddr" |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 741 | |
Kim Phillips | bf0b542 | 2006-11-01 00:10:40 -0600 | [diff] [blame] | 742 | #define CONFIG_RAMBOOTCOMMAND \ |
Joe Hershberger | 1f5cb79 | 2011-10-11 23:57:16 -0500 | [diff] [blame] | 743 | "setenv bootargs root=/dev/ram rw " \ |
| 744 | "console=$consoledev,$baudrate $othbootargs;" \ |
| 745 | "tftp $ramdiskaddr $ramdiskfile;" \ |
| 746 | "tftp $loadaddr $bootfile;" \ |
| 747 | "tftp $fdtaddr $fdtfile;" \ |
| 748 | "bootm $loadaddr $ramdiskaddr $fdtaddr" |
Kim Phillips | bf0b542 | 2006-11-01 00:10:40 -0600 | [diff] [blame] | 749 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 750 | |
| 751 | #define CONFIG_BOOTCOMMAND CONFIG_NFSBOOTCOMMAND |
| 752 | |
| 753 | #endif /* __CONFIG_H */ |