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