Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 1 | /* |
Wolfgang Grandegger | 1287e0c | 2008-06-05 13:12:07 +0200 | [diff] [blame] | 2 | * (C) Copyright 2007 |
| 3 | * Thomas Waehner, TQ-System GmbH, thomas.waehner@tqs.de. |
| 4 | * |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 5 | * (C) Copyright 2005 |
| 6 | * Stefan Roese, DENX Software Engineering, sr@denx.de. |
| 7 | * |
| 8 | * Wolfgang Denk <wd@denx.de> |
| 9 | * Copyright 2004 Freescale Semiconductor. |
| 10 | * (C) Copyright 2002,2003 Motorola,Inc. |
| 11 | * Xianghua Xiao <X.Xiao@motorola.com> |
| 12 | * |
| 13 | * See file CREDITS for list of people who contributed to this |
| 14 | * project. |
| 15 | * |
| 16 | * This program is free software; you can redistribute it and/or |
| 17 | * modify it under the terms of the GNU General Public License as |
| 18 | * published by the Free Software Foundation; either version 2 of |
| 19 | * the License, or (at your option) any later version. |
| 20 | * |
| 21 | * This program is distributed in the hope that it will be useful, |
| 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 24 | * GNU General Public License for more details. |
| 25 | * |
| 26 | * You should have received a copy of the GNU General Public License |
| 27 | * along with this program; if not, write to the Free Software |
| 28 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 29 | * MA 02111-1307 USA |
| 30 | */ |
| 31 | |
| 32 | /* |
Wolfgang Grandegger | 1287e0c | 2008-06-05 13:12:07 +0200 | [diff] [blame] | 33 | * TQM85xx (8560/40/55/41/48) board configuration file |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 34 | */ |
| 35 | |
| 36 | #ifndef __CONFIG_H |
| 37 | #define __CONFIG_H |
| 38 | |
| 39 | /* High Level Configuration Options */ |
| 40 | #define CONFIG_BOOKE 1 /* BOOKE */ |
| 41 | #define CONFIG_E500 1 /* BOOKE e500 family */ |
| 42 | #define CONFIG_MPC85xx 1 /* MPC8540/60/55/41 */ |
| 43 | |
| 44 | #define CONFIG_PCI |
Wolfgang Grandegger | b9e8078 | 2008-06-05 13:12:08 +0200 | [diff] [blame] | 45 | #define CONFIG_FSL_PCI_INIT 1 /* Use common FSL init code */ |
| 46 | #define CONFIG_PCIX_CHECK /* PCIX olny works at 66 MHz */ |
| 47 | #ifdef CONFIG_TQM8548 |
| 48 | #define CONFIG_PCI1 |
| 49 | #define CONFIG_PCIE1 |
| 50 | #define CONFIG_FSL_PCIE_RESET 1 /* need PCIe reset errata */ |
| 51 | #endif |
| 52 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 53 | #define CONFIG_TSEC_ENET /* tsec ethernet support */ |
| 54 | |
| 55 | #define CONFIG_MISC_INIT_R 1 /* Call misc_init_r */ |
| 56 | |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 57 | /* |
| 58 | * Configuration for big NOR Flashes |
| 59 | * |
| 60 | * Define CONFIG_TQM_BIGFLASH for boards with more than 128 MiB NOR Flash. |
| 61 | * Please be aware, that this changes the whole memory map (new CCSRBAR |
| 62 | * address, etc). You have to use an adapted Linux kernel or FDT blob |
| 63 | * if this option is set. |
| 64 | */ |
| 65 | #undef CONFIG_TQM_BIGFLASH |
| 66 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 67 | /* |
Wolfgang Grandegger | 1c2deff | 2008-06-05 13:12:09 +0200 | [diff] [blame] | 68 | * NAND flash support (disabled by default) |
| 69 | * |
| 70 | * Warning: NAND support will likely increase the U-Boot image size |
| 71 | * to more than 256 KB. Please adjust TEXT_BASE if necessary. |
| 72 | */ |
| 73 | #undef CONFIG_NAND |
| 74 | |
| 75 | /* |
Wolfgang Grandegger | 1287e0c | 2008-06-05 13:12:07 +0200 | [diff] [blame] | 76 | * MPC8540 and MPC8548 don't have CPM module |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 77 | */ |
Wolfgang Grandegger | 1287e0c | 2008-06-05 13:12:07 +0200 | [diff] [blame] | 78 | #if !defined(CONFIG_MPC8540) && !defined(CONFIG_MPC8548) |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 79 | #define CONFIG_CPM2 1 /* has CPM2 */ |
| 80 | #endif |
| 81 | |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame] | 82 | #define CONFIG_FSL_LAW 1 /* Use common FSL init code */ |
Kumar Gala | 4d3521c | 2008-01-16 09:15:29 -0600 | [diff] [blame] | 83 | |
Wolfgang Grandegger | d9ee843 | 2008-06-05 13:12:05 +0200 | [diff] [blame] | 84 | #undef CONFIG_CAN_DRIVER /* CAN Driver support */ |
| 85 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 86 | /* |
| 87 | * sysclk for MPC85xx |
| 88 | * |
| 89 | * Two valid values are: |
Wolfgang Grandegger | 1287e0c | 2008-06-05 13:12:07 +0200 | [diff] [blame] | 90 | * 33333333 |
| 91 | * 66666666 |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 92 | * |
| 93 | * Most PCI cards are still 33Mhz, so in the presence of PCI, 33MHz |
| 94 | * is likely the desired value here, so that is now the default. |
| 95 | * The board, however, can run at 66MHz. In any event, this value |
| 96 | * must match the settings of some switches. Details can be found |
| 97 | * in the README.mpc85xxads. |
| 98 | */ |
| 99 | |
| 100 | #ifndef CONFIG_SYS_CLK_FREQ |
| 101 | #define CONFIG_SYS_CLK_FREQ 33333333 |
| 102 | #endif |
| 103 | |
| 104 | /* |
| 105 | * These can be toggled for performance analysis, otherwise use default. |
| 106 | */ |
| 107 | #define CONFIG_L2_CACHE /* toggle L2 cache */ |
| 108 | #define CONFIG_BTB /* toggle branch predition */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 109 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 110 | #define CONFIG_SYS_INIT_DBCR DBCR_IDM /* Enable Debug Exceptions */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 111 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 112 | #undef CONFIG_SYS_DRAM_TEST /* memory test, takes time */ |
| 113 | #define CONFIG_SYS_MEMTEST_START 0x00000000 |
| 114 | #define CONFIG_SYS_MEMTEST_END 0x10000000 |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 115 | |
| 116 | /* |
| 117 | * Base addresses -- Note these are effective addresses where the |
| 118 | * actual resources get mapped (not physical addresses) |
| 119 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 120 | #define CONFIG_SYS_CCSRBAR_DEFAULT 0xFF700000 /* CCSRBAR Default */ |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 121 | #ifdef CONFIG_TQM_BIGFLASH |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 122 | #define CONFIG_SYS_CCSRBAR 0xA0000000 /* relocated CCSRBAR */ |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 123 | #else /* !CONFIG_TQM_BIGFLASH */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 124 | #define CONFIG_SYS_CCSRBAR 0xE0000000 /* relocated CCSRBAR */ |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 125 | #endif /* CONFIG_TQM_BIGFLASH */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 126 | #define CONFIG_SYS_CCSRBAR_PHYS CONFIG_SYS_CCSRBAR /* physical addr of CCSRBAR */ |
| 127 | #define CONFIG_SYS_IMMR CONFIG_SYS_CCSRBAR /* PQII uses CONFIG_SYS_IMMR */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 128 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 129 | #define CONFIG_SYS_PCI1_ADDR (CONFIG_SYS_CCSRBAR + 0x8000) |
| 130 | #define CONFIG_SYS_PCI2_ADDR (CONFIG_SYS_CCSRBAR + 0x9000) |
| 131 | #define CONFIG_SYS_PCIE1_ADDR (CONFIG_SYS_CCSRBAR + 0xa000) |
Wolfgang Grandegger | b9e8078 | 2008-06-05 13:12:08 +0200 | [diff] [blame] | 132 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 133 | /* |
| 134 | * DDR Setup |
| 135 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 136 | #define CONFIG_SYS_DDR_SDRAM_BASE 0x00000000 /* DDR is system memory */ |
| 137 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 138 | |
Kumar Gala | 457caec | 2008-08-27 01:05:35 -0500 | [diff] [blame] | 139 | #define CONFIG_NUM_DDR_CONTROLLERS 1 |
| 140 | #define CONFIG_DIMM_SLOTS_PER_CTLR 1 |
| 141 | #define CONFIG_CHIP_SELECTS_PER_CTRL 2 |
| 142 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 143 | #if defined(CONFIG_TQM8540) || defined(CONFIG_TQM8560) |
| 144 | /* TQM8540 & 8560 need DLL-override */ |
| 145 | #define CONFIG_DDR_DLL /* DLL fix needed */ |
| 146 | #define CONFIG_DDR_DEFAULT_CL 25 /* CAS latency 2,5 */ |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame] | 147 | #endif /* CONFIG_TQM8540 || CONFIG_TQM8560 */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 148 | |
Wolfgang Grandegger | 1287e0c | 2008-06-05 13:12:07 +0200 | [diff] [blame] | 149 | #if defined(CONFIG_TQM8541) || defined(CONFIG_TQM8555) || \ |
| 150 | defined(CONFIG_TQM8548) |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 151 | #define CONFIG_DDR_DEFAULT_CL 30 /* CAS latency 3 */ |
Wolfgang Grandegger | 1287e0c | 2008-06-05 13:12:07 +0200 | [diff] [blame] | 152 | #endif /* CONFIG_TQM8541 || CONFIG_TQM8555 || CONFIG_TQM8548 */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 153 | |
| 154 | /* |
Wolfgang Grandegger | 46346f2 | 2008-06-05 13:12:02 +0200 | [diff] [blame] | 155 | * Old TQM85xx boards have 'M' type Spansion Flashes from the S29GLxxxM |
| 156 | * series while new boards have 'N' type Flashes from the S29GLxxxN |
| 157 | * series, which have bigger sectors: 2 x 128 instead of 2 x 64 KB. |
| 158 | */ |
Wolfgang Grandegger | 1287e0c | 2008-06-05 13:12:07 +0200 | [diff] [blame] | 159 | #ifdef CONFIG_TQM8548 |
| 160 | #define CONFIG_TQM_FLASH_N_TYPE |
| 161 | #endif /* CONFIG_TQM8548 */ |
Wolfgang Grandegger | 46346f2 | 2008-06-05 13:12:02 +0200 | [diff] [blame] | 162 | |
| 163 | /* |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 164 | * Flash on the Local Bus |
| 165 | */ |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 166 | #ifdef CONFIG_TQM_BIGFLASH |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 167 | #define CONFIG_SYS_FLASH0 0xE0000000 |
| 168 | #define CONFIG_SYS_FLASH1 0xC0000000 |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 169 | #else /* !CONFIG_TQM_BIGFLASH */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 170 | #define CONFIG_SYS_FLASH0 0xFC000000 |
| 171 | #define CONFIG_SYS_FLASH1 0xF8000000 |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 172 | #endif /* CONFIG_TQM_BIGFLASH */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 173 | #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH1, CONFIG_SYS_FLASH0 } |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 174 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 175 | #define CONFIG_SYS_LBC_FLASH_BASE CONFIG_SYS_FLASH1 /* Localbus flash start */ |
| 176 | #define CONFIG_SYS_FLASH_BASE CONFIG_SYS_LBC_FLASH_BASE /* start of FLASH */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 177 | |
Wolfgang Grandegger | 1287e0c | 2008-06-05 13:12:07 +0200 | [diff] [blame] | 178 | /* Default ORx timings are for <= 41.7 MHz Local Bus Clock. |
| 179 | * |
| 180 | * Note: According to timing specifications external addr latch delay |
| 181 | * (EAD, bit #0) must be set if Local Bus Clock is > 83 MHz. |
| 182 | * |
| 183 | * For other Local Bus Clocks see following table: |
| 184 | * |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 185 | * Clock/MHz CONFIG_SYS_ORx_PRELIM |
Wolfgang Grandegger | 1287e0c | 2008-06-05 13:12:07 +0200 | [diff] [blame] | 186 | * 166 0x.....CA5 |
| 187 | * 133 0x.....C85 |
| 188 | * 100 0x.....C65 |
| 189 | * 83 0x.....FA2 |
| 190 | * 66 0x.....C82 |
| 191 | * 50 0x.....C60 |
| 192 | * 42 0x.....040 |
| 193 | * 33 0x.....030 |
| 194 | * 25 0x.....020 |
| 195 | * |
| 196 | */ |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 197 | #ifdef CONFIG_TQM_BIGFLASH |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 198 | #define CONFIG_SYS_BR0_PRELIM 0xE0001801 /* port size 32bit */ |
| 199 | #define CONFIG_SYS_OR0_PRELIM 0xE0000040 /* 512MB Flash */ |
| 200 | #define CONFIG_SYS_BR1_PRELIM 0xC0001801 /* port size 32bit */ |
| 201 | #define CONFIG_SYS_OR1_PRELIM 0xE0000040 /* 512MB Flash */ |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 202 | #else /* !CONFIG_TQM_BIGFLASH */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 203 | #define CONFIG_SYS_BR0_PRELIM 0xfc001801 /* port size 32bit */ |
| 204 | #define CONFIG_SYS_OR0_PRELIM 0xfc000040 /* 64MB Flash */ |
| 205 | #define CONFIG_SYS_BR1_PRELIM 0xf8001801 /* port size 32bit */ |
| 206 | #define CONFIG_SYS_OR1_PRELIM 0xfc000040 /* 64MB Flash */ |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 207 | #endif /* CONFIG_TQM_BIGFLASH */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 208 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 209 | #define CONFIG_SYS_FLASH_CFI /* flash is CFI compat. */ |
Jean-Christophe PLAGNIOL-VILLARD | 00b1883 | 2008-08-13 01:40:42 +0200 | [diff] [blame] | 210 | #define CONFIG_FLASH_CFI_DRIVER /* Use common CFI driver */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 211 | #define CONFIG_SYS_FLASH_EMPTY_INFO /* print 'E' for empty sector */ |
| 212 | #define CONFIG_SYS_FLASH_QUIET_TEST 1 /* don't warn upon unknown flash*/ |
| 213 | #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1 /* speed up output to Flash */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 214 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 215 | #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* number of banks */ |
| 216 | #define CONFIG_SYS_MAX_FLASH_SECT 512 /* sectors per device */ |
| 217 | #undef CONFIG_SYS_FLASH_CHECKSUM |
| 218 | #define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */ |
| 219 | #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 220 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 221 | #define CONFIG_SYS_MONITOR_BASE TEXT_BASE /* start of monitor */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 222 | |
Wolfgang Grandegger | 1287e0c | 2008-06-05 13:12:07 +0200 | [diff] [blame] | 223 | /* |
| 224 | * Note: when changing the Local Bus clock divider you have to |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 225 | * change the timing values in CONFIG_SYS_ORx_PRELIM. |
Wolfgang Grandegger | 1287e0c | 2008-06-05 13:12:07 +0200 | [diff] [blame] | 226 | * |
| 227 | * LCRR[00:03] CLKDIV: System (CCB) clock divider. Valid values are 2, 4, 8. |
| 228 | * LCRR[16:17] EADC : External address delay cycles. It should be set to 2 |
| 229 | * for Local Bus Clock > 83.3 MHz. |
| 230 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 231 | #define CONFIG_SYS_LBC_LCRR 0x00030008 /* LB clock ratio reg */ |
| 232 | #define CONFIG_SYS_LBC_LBCR 0x00000000 /* LB config reg */ |
| 233 | #define CONFIG_SYS_LBC_LSRT 0x20000000 /* LB sdram refresh timer */ |
| 234 | #define CONFIG_SYS_LBC_MRTPR 0x20000000 /* LB refresh timer presc.*/ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 235 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 236 | #define CONFIG_SYS_INIT_RAM_LOCK 1 |
| 237 | #define CONFIG_SYS_INIT_RAM_ADDR (CONFIG_SYS_CCSRBAR \ |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 238 | + 0x04010000) /* Initial RAM address */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 239 | #define CONFIG_SYS_INIT_RAM_END 0x4000 /* End used area in RAM */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 240 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 241 | #define CONFIG_SYS_GBL_DATA_SIZE 128 /* num bytes initial data */ |
| 242 | #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE) |
| 243 | #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 244 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 245 | #define CONFIG_SYS_MONITOR_LEN (~TEXT_BASE + 1)/* Reserved for Monitor */ |
| 246 | #define CONFIG_SYS_MALLOC_LEN (384 * 1024) /* Reserved for malloc */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 247 | |
| 248 | /* Serial Port */ |
| 249 | #if defined(CONFIG_TQM8560) |
| 250 | |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame] | 251 | #define CONFIG_CONS_ON_SCC /* define if console on SCC */ |
| 252 | #undef CONFIG_CONS_NONE /* define if console on something else */ |
| 253 | #define CONFIG_CONS_INDEX 1 /* which serial channel for console */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 254 | |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame] | 255 | #else /* !CONFIG_TQM8560 */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 256 | |
| 257 | #define CONFIG_CONS_INDEX 1 |
| 258 | #undef CONFIG_SERIAL_SOFTWARE_FIFO |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 259 | #define CONFIG_SYS_NS16550 |
| 260 | #define CONFIG_SYS_NS16550_SERIAL |
| 261 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
| 262 | #define CONFIG_SYS_NS16550_CLK get_bus_freq(0) |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 263 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 264 | #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CCSRBAR+0x4500) |
| 265 | #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_CCSRBAR+0x4600) |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 266 | |
Wolfgang Denk | bc8bb6d | 2006-06-16 16:40:54 +0200 | [diff] [blame] | 267 | /* PS/2 Keyboard */ |
| 268 | #define CONFIG_PS2KBD /* AT-PS/2 Keyboard */ |
| 269 | #define CONFIG_PS2MULT /* .. on PS/2 Multiplexer */ |
| 270 | #define CONFIG_PS2SERIAL 2 /* .. on DUART2 */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 271 | #define CONFIG_PS2MULT_DELAY (CONFIG_SYS_HZ/2) /* Initial delay */ |
Wolfgang Denk | bc8bb6d | 2006-06-16 16:40:54 +0200 | [diff] [blame] | 272 | #define CONFIG_BOARD_EARLY_INIT_R 1 |
| 273 | |
Wolfgang Denk | 966083e | 2006-07-21 15:24:56 +0200 | [diff] [blame] | 274 | #endif /* CONFIG_TQM8560 */ |
| 275 | |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame] | 276 | #define CONFIG_BAUDRATE 115200 |
Wolfgang Denk | 966083e | 2006-07-21 15:24:56 +0200 | [diff] [blame] | 277 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 278 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame] | 279 | {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200} |
Wolfgang Denk | 966083e | 2006-07-21 15:24:56 +0200 | [diff] [blame] | 280 | |
Wolfgang Denk | 2751a95 | 2006-10-28 02:29:14 +0200 | [diff] [blame] | 281 | #define CONFIG_CMDLINE_EDITING 1 /* add command line history */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 282 | #define CONFIG_SYS_HUSH_PARSER 1 /* Use the HUSH parser */ |
| 283 | #ifdef CONFIG_SYS_HUSH_PARSER |
| 284 | #define CONFIG_SYS_PROMPT_HUSH_PS2 "> " |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 285 | #endif |
| 286 | |
Wolfgang Grandegger | 2599135 | 2008-06-05 13:12:06 +0200 | [diff] [blame] | 287 | /* pass open firmware flat tree */ |
| 288 | #define CONFIG_OF_LIBFDT 1 |
| 289 | #define CONFIG_OF_BOARD_SETUP 1 |
| 290 | #define CONFIG_OF_STDOUT_VIA_ALIAS 1 |
| 291 | |
Wolfgang Grandegger | d9ee843 | 2008-06-05 13:12:05 +0200 | [diff] [blame] | 292 | /* CAN */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 293 | #define CONFIG_SYS_CAN_BASE (CONFIG_SYS_CCSRBAR \ |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 294 | + 0x03000000) /* CAN base address */ |
Wolfgang Grandegger | 1c2deff | 2008-06-05 13:12:09 +0200 | [diff] [blame] | 295 | #ifdef CONFIG_CAN_DRIVER |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 296 | #define CONFIG_SYS_CAN_OR_AM 0xFFFF8000 /* 32 KiB address mask */ |
| 297 | #define CONFIG_SYS_OR2_CAN (CONFIG_SYS_CAN_OR_AM | OR_UPM_BI) |
| 298 | #define CONFIG_SYS_BR2_CAN ((CONFIG_SYS_CAN_BASE & BR_BA) | \ |
Wolfgang Grandegger | d9ee843 | 2008-06-05 13:12:05 +0200 | [diff] [blame] | 299 | BR_PS_8 | BR_MS_UPMC | BR_V) |
| 300 | #endif /* CONFIG_CAN_DRIVER */ |
| 301 | |
Jon Loeliger | 2047672 | 2006-10-20 15:50:15 -0500 | [diff] [blame] | 302 | /* |
| 303 | * I2C |
| 304 | */ |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame] | 305 | #define CONFIG_FSL_I2C /* Use FSL common I2C driver */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 306 | #define CONFIG_HARD_I2C /* I2C with hardware support */ |
| 307 | #undef CONFIG_SOFT_I2C /* I2C bit-banged */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 308 | #define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address */ |
| 309 | #define CONFIG_SYS_I2C_SLAVE 0x7F |
| 310 | #define CONFIG_SYS_I2C_NOPROBES {0x48} /* Don't probe these addrs */ |
| 311 | #define CONFIG_SYS_I2C_OFFSET 0x3000 |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 312 | |
| 313 | /* I2C RTC */ |
| 314 | #define CONFIG_RTC_DS1337 /* Use ds1337 rtc via i2c */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 315 | #define CONFIG_SYS_I2C_RTC_ADDR 0x68 /* at address 0x68 */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 316 | |
| 317 | /* I2C EEPROM */ |
| 318 | /* |
| 319 | * EEPROM configuration for onboard EEPROM M24C32 (M24C64 should work also). |
| 320 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 321 | #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* 1010000x */ |
| 322 | #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2 |
| 323 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 5 /* =32 Bytes per write */ |
| 324 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 20 |
| 325 | #define CONFIG_SYS_I2C_MULTI_EEPROMS 1 /* more than one eeprom */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 326 | |
| 327 | /* I2C SYSMON (LM75) */ |
| 328 | #define CONFIG_DTT_LM75 1 /* ON Semi's LM75 */ |
| 329 | #define CONFIG_DTT_SENSORS {0} /* Sensor addresses */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 330 | #define CONFIG_SYS_DTT_MAX_TEMP 70 |
| 331 | #define CONFIG_SYS_DTT_LOW_TEMP -30 |
| 332 | #define CONFIG_SYS_DTT_HYSTERESIS 3 |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 333 | |
Wolfgang Grandegger | b9e8078 | 2008-06-05 13:12:08 +0200 | [diff] [blame] | 334 | #ifndef CONFIG_PCIE1 |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 335 | /* RapidIO MMU */ |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 336 | #ifdef CONFIG_TQM_BIGFLASH |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 337 | #define CONFIG_SYS_RIO_MEM_BASE 0xb0000000 /* base address */ |
| 338 | #define CONFIG_SYS_RIO_MEM_SIZE 0x10000000 /* 256M */ |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 339 | #else /* !CONFIG_TQM_BIGFLASH */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 340 | #define CONFIG_SYS_RIO_MEM_BASE 0xc0000000 /* base address */ |
| 341 | #define CONFIG_SYS_RIO_MEM_SIZE 0x20000000 /* 512M */ |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 342 | #endif /* CONFIG_TQM_BIGFLASH */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 343 | #define CONFIG_SYS_RIO_MEM_PHYS CONFIG_SYS_RIO_MEM_BASE |
Wolfgang Grandegger | b9e8078 | 2008-06-05 13:12:08 +0200 | [diff] [blame] | 344 | #endif /* CONFIG_PCIE1 */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 345 | |
Wolfgang Grandegger | 1c2deff | 2008-06-05 13:12:09 +0200 | [diff] [blame] | 346 | /* NAND FLASH */ |
| 347 | #ifdef CONFIG_NAND |
| 348 | |
Jean-Christophe PLAGNIOL-VILLARD | cc4a0ce | 2008-08-13 01:40:43 +0200 | [diff] [blame] | 349 | #undef CONFIG_NAND_LEGACY |
Wolfgang Grandegger | 1c2deff | 2008-06-05 13:12:09 +0200 | [diff] [blame] | 350 | |
| 351 | #define CONFIG_NAND_FSL_UPM 1 |
| 352 | |
| 353 | #define CONFIG_MTD_NAND_ECC_JFFS2 1 /* use JFFS2 ECC */ |
| 354 | |
| 355 | /* address distance between chip selects */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 356 | #define CONFIG_SYS_NAND_SELECT_DEVICE 1 |
| 357 | #define CONFIG_SYS_NAND_CS_DIST 0x200 |
Wolfgang Grandegger | 1c2deff | 2008-06-05 13:12:09 +0200 | [diff] [blame] | 358 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 359 | #define CONFIG_SYS_NAND_SIZE 0x8000 |
| 360 | #define CONFIG_SYS_NAND0_BASE (CONFIG_SYS_CCSRBAR + 0x03010000) |
| 361 | #define CONFIG_SYS_NAND1_BASE (CONFIG_SYS_NAND0_BASE + CONFIG_SYS_NAND_CS_DIST) |
| 362 | #define CONFIG_SYS_NAND2_BASE (CONFIG_SYS_NAND1_BASE + CONFIG_SYS_NAND_CS_DIST) |
| 363 | #define CONFIG_SYS_NAND3_BASE (CONFIG_SYS_NAND2_BASE + CONFIG_SYS_NAND_CS_DIST) |
Wolfgang Grandegger | 1c2deff | 2008-06-05 13:12:09 +0200 | [diff] [blame] | 364 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 365 | #define CONFIG_SYS_MAX_NAND_DEVICE 2 /* Max number of NAND devices */ |
Wolfgang Grandegger | 1c2deff | 2008-06-05 13:12:09 +0200 | [diff] [blame] | 366 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 367 | #if (CONFIG_SYS_MAX_NAND_DEVICE == 1) |
| 368 | #define CONFIG_SYS_NAND_BASE_LIST { CONFIG_SYS_NAND0_BASE } |
| 369 | #elif (CONFIG_SYS_MAX_NAND_DEVICE == 2) |
| 370 | #define CONFIG_SYS_NAND_QUIET_TEST 1 |
| 371 | #define CONFIG_SYS_NAND_BASE_LIST { CONFIG_SYS_NAND0_BASE, \ |
| 372 | CONFIG_SYS_NAND1_BASE, \ |
Wolfgang Grandegger | 1c2deff | 2008-06-05 13:12:09 +0200 | [diff] [blame] | 373 | } |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 374 | #elif (CONFIG_SYS_MAX_NAND_DEVICE == 4) |
| 375 | #define CONFIG_SYS_NAND_QUIET_TEST 1 |
| 376 | #define CONFIG_SYS_NAND_BASE_LIST { CONFIG_SYS_NAND0_BASE, \ |
| 377 | CONFIG_SYS_NAND1_BASE, \ |
| 378 | CONFIG_SYS_NAND2_BASE, \ |
| 379 | CONFIG_SYS_NAND3_BASE, \ |
Wolfgang Grandegger | 1c2deff | 2008-06-05 13:12:09 +0200 | [diff] [blame] | 380 | } |
| 381 | #endif |
| 382 | |
| 383 | /* CS3 for NAND Flash */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 384 | #define CONFIG_SYS_BR3_PRELIM ((CONFIG_SYS_NAND0_BASE & BR_BA) | BR_PS_8 | \ |
Wolfgang Grandegger | 1c2deff | 2008-06-05 13:12:09 +0200 | [diff] [blame] | 385 | BR_MS_UPMB | BR_V) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 386 | #define CONFIG_SYS_OR3_PRELIM (P2SZ_TO_AM(CONFIG_SYS_NAND_SIZE) | OR_UPM_BI) |
Wolfgang Grandegger | 1c2deff | 2008-06-05 13:12:09 +0200 | [diff] [blame] | 387 | |
| 388 | #define NAND_BIG_DELAY_US 25 /* max tR for Samsung devices */ |
| 389 | |
| 390 | #endif /* CONFIG_NAND */ |
| 391 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 392 | /* |
| 393 | * General PCI |
| 394 | * Addresses are mapped 1-1. |
| 395 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 396 | #define CONFIG_SYS_PCI1_MEM_BASE 0x80000000 |
| 397 | #define CONFIG_SYS_PCI1_MEM_PHYS CONFIG_SYS_PCI1_MEM_BASE |
| 398 | #define CONFIG_SYS_PCI1_MEM_SIZE 0x20000000 /* 512M */ |
| 399 | #define CONFIG_SYS_PCI1_IO_BASE (CONFIG_SYS_CCSRBAR + 0x02000000) |
| 400 | #define CONFIG_SYS_PCI1_IO_PHYS CONFIG_SYS_PCI1_IO_BASE |
| 401 | #define CONFIG_SYS_PCI1_IO_SIZE 0x1000000 /* 16M */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 402 | |
Wolfgang Grandegger | b9e8078 | 2008-06-05 13:12:08 +0200 | [diff] [blame] | 403 | #ifdef CONFIG_PCIE1 |
| 404 | /* |
| 405 | * General PCI express |
| 406 | * Addresses are mapped 1-1. |
| 407 | */ |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 408 | #ifdef CONFIG_TQM_BIGFLASH |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 409 | #define CONFIG_SYS_PCIE1_MEM_BASE 0xb0000000 |
| 410 | #define CONFIG_SYS_PCIE1_MEM_SIZE 0x10000000 /* 512M */ |
| 411 | #define CONFIG_SYS_PCIE1_IO_BASE 0xaf000000 |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 412 | #else /* !CONFIG_TQM_BIGFLASH */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 413 | #define CONFIG_SYS_PCIE1_MEM_BASE 0xc0000000 |
| 414 | #define CONFIG_SYS_PCIE1_MEM_SIZE 0x20000000 /* 512M */ |
| 415 | #define CONFIG_SYS_PCIE1_IO_BASE 0xef000000 |
Wolfgang Grandegger | e8cc3f0 | 2008-06-05 13:12:10 +0200 | [diff] [blame] | 416 | #endif /* CONFIG_TQM_BIGFLASH */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 417 | #define CONFIG_SYS_PCIE1_MEM_PHYS CONFIG_SYS_PCIE1_MEM_BASE |
| 418 | #define CONFIG_SYS_PCIE1_IO_PHYS CONFIG_SYS_PCIE1_IO_BASE |
| 419 | #define CONFIG_SYS_PCIE1_IO_SIZE 0x1000000 /* 16M */ |
Wolfgang Grandegger | b9e8078 | 2008-06-05 13:12:08 +0200 | [diff] [blame] | 420 | #endif /* CONFIG_PCIE1 */ |
| 421 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 422 | #if defined(CONFIG_PCI) |
| 423 | |
| 424 | #define CONFIG_PCI_PNP /* do pci plug-and-play */ |
| 425 | |
| 426 | #define CONFIG_EEPRO100 |
| 427 | #undef CONFIG_TULIP |
| 428 | |
| 429 | #undef CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 430 | #define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1057 /* Motorola */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 431 | |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame] | 432 | #endif /* CONFIG_PCI */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 433 | |
| 434 | #define CONFIG_NET_MULTI 1 |
| 435 | |
| 436 | #define CONFIG_MII 1 /* MII PHY management */ |
Kim Phillips | 255a3577 | 2007-05-16 16:52:19 -0500 | [diff] [blame] | 437 | #define CONFIG_TSEC1 1 |
| 438 | #define CONFIG_TSEC1_NAME "TSEC0" |
| 439 | #define CONFIG_TSEC2 1 |
| 440 | #define CONFIG_TSEC2_NAME "TSEC1" |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 441 | #define TSEC1_PHY_ADDR 2 |
| 442 | #define TSEC2_PHY_ADDR 1 |
| 443 | #define TSEC1_PHYIDX 0 |
| 444 | #define TSEC2_PHYIDX 0 |
Andy Fleming | 3a79013 | 2007-08-15 20:03:25 -0500 | [diff] [blame] | 445 | #define TSEC1_FLAGS TSEC_GIGABIT |
| 446 | #define TSEC2_FLAGS TSEC_GIGABIT |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 447 | #define FEC_PHY_ADDR 3 |
| 448 | #define FEC_PHYIDX 0 |
Andy Fleming | 3a79013 | 2007-08-15 20:03:25 -0500 | [diff] [blame] | 449 | #define FEC_FLAGS 0 |
Andy Fleming | 10327dc | 2007-08-16 16:35:02 -0500 | [diff] [blame] | 450 | #define CONFIG_HAS_ETH0 |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 451 | #define CONFIG_HAS_ETH1 |
| 452 | #define CONFIG_HAS_ETH2 |
| 453 | |
Wolfgang Grandegger | 1287e0c | 2008-06-05 13:12:07 +0200 | [diff] [blame] | 454 | #ifdef CONFIG_TQM8548 |
| 455 | /* |
| 456 | * TQM8548 has 4 ethernet ports. 4 ETSEC's. |
| 457 | * |
| 458 | * On the STK85xx Starterkit the ETSEC3/4 ports are on an |
| 459 | * additional adapter (AIO) between module and Starterkit. |
| 460 | */ |
| 461 | #define CONFIG_TSEC3 1 |
| 462 | #define CONFIG_TSEC3_NAME "TSEC2" |
| 463 | #define CONFIG_TSEC4 1 |
| 464 | #define CONFIG_TSEC4_NAME "TSEC3" |
| 465 | #define TSEC3_PHY_ADDR 4 |
| 466 | #define TSEC4_PHY_ADDR 5 |
| 467 | #define TSEC3_PHYIDX 0 |
| 468 | #define TSEC4_PHYIDX 0 |
| 469 | #define TSEC3_FLAGS (TSEC_GIGABIT | TSEC_REDUCED) |
| 470 | #define TSEC4_FLAGS (TSEC_GIGABIT | TSEC_REDUCED) |
| 471 | #define CONFIG_HAS_ETH3 |
| 472 | #define CONFIG_HAS_ETH4 |
| 473 | #endif /* CONFIG_TQM8548 */ |
| 474 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 475 | /* Options are TSEC[0-1], FEC */ |
| 476 | #define CONFIG_ETHPRIME "TSEC0" |
| 477 | |
| 478 | #if defined(CONFIG_TQM8540) |
| 479 | /* |
| 480 | * TQM8540 has 3 ethernet ports. 2 TSEC's and one FEC. |
| 481 | * The FEC port is connected on the same signals as the FCC3 port |
| 482 | * of the TQM8560 to the baseboard (STK85xx Starterkit). |
| 483 | * |
| 484 | * On the STK85xx Starterkit the X47/X50 jumper has to be set to |
| 485 | * a - d (X50.2 - 3) to enable the FEC port. |
| 486 | */ |
| 487 | #define CONFIG_MPC85XX_FEC 1 |
| 488 | #define CONFIG_MPC85XX_FEC_NAME "FEC" |
| 489 | #endif |
| 490 | |
| 491 | #if defined(CONFIG_TQM8541) || defined(CONFIG_TQM8555) |
| 492 | /* |
| 493 | * TQM8541/55 have 4 ethernet ports. 2 TSEC's and 2 FCC's. Only one FCC port |
| 494 | * can be used at once, since only one FCC port is available on the STK85xx |
| 495 | * Starterkit. |
| 496 | * |
| 497 | * To use this port you have to configure U-Boot to use the FCC port 1...2 |
| 498 | * and set the X47/X50 jumper to: |
| 499 | * FCC1: a - b (X47.2 - X50.2) |
| 500 | * FCC2: a - c (X50.2 - 1) |
| 501 | */ |
| 502 | #define CONFIG_ETHER_ON_FCC |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame] | 503 | #define CONFIG_ETHER_INDEX 1 /* FCC channel for ethernet */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 504 | #endif |
| 505 | |
| 506 | #if defined(CONFIG_TQM8560) |
| 507 | /* |
| 508 | * TQM8560 has 5 ethernet ports. 2 TSEC's and 3 FCC's. Only one FCC port |
| 509 | * can be used at once, since only one FCC port is available on the STK85xx |
| 510 | * Starterkit. |
| 511 | * |
| 512 | * To use this port you have to configure U-Boot to use the FCC port 1...3 |
| 513 | * and set the X47/X50 jumper to: |
| 514 | * FCC1: a - b (X47.2 - X50.2) |
| 515 | * FCC2: a - c (X50.2 - 1) |
| 516 | * FCC3: a - d (X50.2 - 3) |
| 517 | */ |
| 518 | #define CONFIG_ETHER_ON_FCC |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame] | 519 | #define CONFIG_ETHER_INDEX 3 /* FCC channel for ethernet */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 520 | #endif |
| 521 | |
| 522 | #if defined(CONFIG_ETHER_ON_FCC) && (CONFIG_ETHER_INDEX == 1) |
| 523 | #define CONFIG_ETHER_ON_FCC1 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 524 | #define CONFIG_SYS_CMXFCR_MASK1 (CMXFCR_FC1 | CMXFCR_RF1CS_MSK | \ |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame] | 525 | CMXFCR_TF1CS_MSK) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 526 | #define CONFIG_SYS_CMXFCR_VALUE1 (CMXFCR_RF1CS_CLK11 | CMXFCR_TF1CS_CLK12) |
| 527 | #define CONFIG_SYS_CPMFCR_RAMTYPE 0 |
| 528 | #define CONFIG_SYS_FCC_PSMR (FCC_PSMR_FDE | FCC_PSMR_LPB) |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 529 | #endif |
| 530 | |
| 531 | #if defined(CONFIG_ETHER_ON_FCC) && (CONFIG_ETHER_INDEX == 2) |
| 532 | #define CONFIG_ETHER_ON_FCC2 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 533 | #define CONFIG_SYS_CMXFCR_MASK2 (CMXFCR_FC2 | CMXFCR_RF2CS_MSK | \ |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame] | 534 | CMXFCR_TF2CS_MSK) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 535 | #define CONFIG_SYS_CMXFCR_VALUE2 (CMXFCR_RF2CS_CLK16 | CMXFCR_TF2CS_CLK13) |
| 536 | #define CONFIG_SYS_CPMFCR_RAMTYPE 0 |
| 537 | #define CONFIG_SYS_FCC_PSMR (FCC_PSMR_FDE | FCC_PSMR_LPB) |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 538 | #endif |
| 539 | |
| 540 | #if defined(CONFIG_ETHER_ON_FCC) && (CONFIG_ETHER_INDEX == 3) |
| 541 | #define CONFIG_ETHER_ON_FCC3 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 542 | #define CONFIG_SYS_CMXFCR_MASK3 (CMXFCR_FC3 | CMXFCR_RF3CS_MSK | \ |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame] | 543 | CMXFCR_TF3CS_MSK) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 544 | #define CONFIG_SYS_CMXFCR_VALUE3 (CMXFCR_RF3CS_CLK15 | CMXFCR_TF3CS_CLK14) |
| 545 | #define CONFIG_SYS_CPMFCR_RAMTYPE 0 |
| 546 | #define CONFIG_SYS_FCC_PSMR (FCC_PSMR_FDE | FCC_PSMR_LPB) |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 547 | #endif |
| 548 | |
| 549 | /* |
| 550 | * Environment |
| 551 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 552 | #define CONFIG_ENV_IS_IN_FLASH 1 |
Wolfgang Grandegger | 46346f2 | 2008-06-05 13:12:02 +0200 | [diff] [blame] | 553 | |
| 554 | #ifdef CONFIG_TQM_FLASH_N_TYPE |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 555 | #define CONFIG_ENV_SECT_SIZE 0x40000 /* 256K (one sector) for env */ |
Wolfgang Grandegger | 46346f2 | 2008-06-05 13:12:02 +0200 | [diff] [blame] | 556 | #else /* !CONFIG_TQM_FLASH_N_TYPE */ |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 557 | #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K (one sector) for env */ |
Wolfgang Grandegger | 46346f2 | 2008-06-05 13:12:02 +0200 | [diff] [blame] | 558 | #endif /* CONFIG_TQM_FLASH_N_TYPE */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 559 | #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE) |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 560 | #define CONFIG_ENV_SIZE 0x2000 |
| 561 | #define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR - CONFIG_ENV_SECT_SIZE) |
| 562 | #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE) |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 563 | |
| 564 | #define CONFIG_LOADS_ECHO 1 /* echo on for serial download */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 565 | #define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 566 | |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame] | 567 | #define CONFIG_TIMESTAMP /* Print image info with ts */ |
Jon Loeliger | 2835e51 | 2007-06-13 13:22:08 -0500 | [diff] [blame] | 568 | |
| 569 | /* |
Jon Loeliger | a1aa0bb | 2007-07-10 09:22:23 -0500 | [diff] [blame] | 570 | * BOOTP options |
| 571 | */ |
| 572 | #define CONFIG_BOOTP_BOOTFILESIZE |
| 573 | #define CONFIG_BOOTP_BOOTPATH |
| 574 | #define CONFIG_BOOTP_GATEWAY |
| 575 | #define CONFIG_BOOTP_HOSTNAME |
| 576 | |
Wolfgang Grandegger | 1c2deff | 2008-06-05 13:12:09 +0200 | [diff] [blame] | 577 | #ifdef CONFIG_NAND |
| 578 | /* |
| 579 | * Use NAND-FLash as JFFS2 device |
| 580 | */ |
| 581 | #define CONFIG_CMD_NAND |
| 582 | #define CONFIG_CMD_JFFS2 |
| 583 | |
| 584 | #define CONFIG_JFFS2_NAND 1 |
| 585 | |
| 586 | #ifdef CONFIG_JFFS2_CMDLINE |
| 587 | #define MTDIDS_DEFAULT "nand0=TQM85xx-nand" |
| 588 | #define MTDPARTS_DEFAULT "mtdparts=TQM85xx-nand:-" |
| 589 | #else |
| 590 | #define CONFIG_JFFS2_DEV "nand0" /* NAND device jffs2 lives on */ |
| 591 | #define CONFIG_JFFS2_PART_OFFSET 0 /* start of jffs2 partition */ |
| 592 | #define CONFIG_JFFS2_PART_SIZE 0x200000 /* size of jffs2 partition */ |
| 593 | #endif /* CONFIG_JFFS2_CMDLINE */ |
| 594 | |
| 595 | #endif /* CONFIG_NAND */ |
| 596 | |
Jon Loeliger | a1aa0bb | 2007-07-10 09:22:23 -0500 | [diff] [blame] | 597 | /* |
Jon Loeliger | 2835e51 | 2007-06-13 13:22:08 -0500 | [diff] [blame] | 598 | * Command line configuration. |
| 599 | */ |
| 600 | #include <config_cmd_default.h> |
| 601 | |
| 602 | #define CONFIG_CMD_PING |
| 603 | #define CONFIG_CMD_I2C |
| 604 | #define CONFIG_CMD_DHCP |
| 605 | #define CONFIG_CMD_NFS |
| 606 | #define CONFIG_CMD_SNTP |
| 607 | #define CONFIG_CMD_DATE |
| 608 | #define CONFIG_CMD_EEPROM |
| 609 | #define CONFIG_CMD_DTT |
| 610 | #define CONFIG_CMD_MII |
| 611 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 612 | #if defined(CONFIG_PCI) |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame] | 613 | #define CONFIG_CMD_PCI |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 614 | #endif |
| 615 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 616 | #undef CONFIG_WATCHDOG /* watchdog disabled */ |
| 617 | |
| 618 | /* |
| 619 | * Miscellaneous configurable options |
| 620 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 621 | #define CONFIG_SYS_LONGHELP /* undef to save memory */ |
| 622 | #define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */ |
| 623 | #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 624 | |
Jon Loeliger | 2835e51 | 2007-06-13 13:22:08 -0500 | [diff] [blame] | 625 | #if defined(CONFIG_CMD_KGDB) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 626 | #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 627 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 628 | #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 629 | #endif |
| 630 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 631 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ |
| 632 | sizeof(CONFIG_SYS_PROMPT) + 16) /* Print Buf Size */ |
| 633 | #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ |
| 634 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */ |
| 635 | #define CONFIG_SYS_HZ 1000 /* decrementer freq: 1ms ticks */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 636 | |
| 637 | /* |
| 638 | * For booting Linux, the board info and command line data |
| 639 | * have to be in the first 8 MB of memory, since this is |
| 640 | * the maximum mapped by the Linux kernel during initialization. |
| 641 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 642 | #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 643 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 644 | /* |
| 645 | * Internal Definitions |
| 646 | * |
| 647 | * Boot Flags |
| 648 | */ |
| 649 | #define BOOTFLAG_COLD 0x01 /* Power-On: Boot from FLASH */ |
| 650 | #define BOOTFLAG_WARM 0x02 /* Software reboot */ |
| 651 | |
Jon Loeliger | 2835e51 | 2007-06-13 13:22:08 -0500 | [diff] [blame] | 652 | #if defined(CONFIG_CMD_KGDB) |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 653 | #define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port*/ |
| 654 | #define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */ |
| 655 | #endif |
| 656 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 657 | #define CONFIG_LOADADDR 200000 /* default addr for tftp & bootm*/ |
| 658 | |
| 659 | #define CONFIG_BOOTDELAY 5 /* -1 disables auto-boot */ |
| 660 | |
| 661 | #define CONFIG_PREBOOT "echo;" \ |
Wolfgang Denk | d8519dc | 2006-08-11 17:33:42 +0200 | [diff] [blame] | 662 | "echo Type \\\"run flash_nfs\\\" to mount root filesystem over NFS;" \ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 663 | "echo" |
| 664 | |
| 665 | #undef CONFIG_BOOTARGS /* the boot command will set bootargs */ |
| 666 | |
Wolfgang Grandegger | 2599135 | 2008-06-05 13:12:06 +0200 | [diff] [blame] | 667 | |
| 668 | /* |
| 669 | * Setup some board specific values for the default environment variables |
| 670 | */ |
| 671 | #ifdef CONFIG_CPM2 |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 672 | #define CONFIG_ENV_CONSDEV "consdev=ttyCPM0\0" |
Wolfgang Grandegger | 2599135 | 2008-06-05 13:12:06 +0200 | [diff] [blame] | 673 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 674 | #define CONFIG_ENV_CONSDEV "consdev=ttyS0\0" |
Wolfgang Grandegger | 2599135 | 2008-06-05 13:12:06 +0200 | [diff] [blame] | 675 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 676 | #define CONFIG_ENV_FDT_FILE "fdt_file="MK_STR(CONFIG_HOSTNAME)"/" \ |
Wolfgang Grandegger | 2599135 | 2008-06-05 13:12:06 +0200 | [diff] [blame] | 677 | MK_STR(CONFIG_HOSTNAME)".dtb\0" |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 678 | #define CONFIG_ENV_BOOTFILE "bootfile="MK_STR(CONFIG_HOSTNAME)"/uImage\0" |
| 679 | #define CONFIG_ENV_UBOOT "uboot="MK_STR(CONFIG_HOSTNAME)"/u-boot.bin\0" \ |
Wolfgang Grandegger | 2599135 | 2008-06-05 13:12:06 +0200 | [diff] [blame] | 680 | "uboot_addr="MK_STR(TEXT_BASE)"\0" |
| 681 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 682 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 683 | CONFIG_ENV_BOOTFILE \ |
| 684 | CONFIG_ENV_FDT_FILE \ |
| 685 | CONFIG_ENV_CONSDEV \ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 686 | "netdev=eth0\0" \ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 687 | "nfsargs=setenv bootargs root=/dev/nfs rw " \ |
| 688 | "nfsroot=$serverip:$rootpath\0" \ |
| 689 | "ramargs=setenv bootargs root=/dev/ram rw\0" \ |
| 690 | "addip=setenv bootargs $bootargs " \ |
| 691 | "ip=$ipaddr:$serverip:$gatewayip:$netmask" \ |
| 692 | ":$hostname:$netdev:off panic=1\0" \ |
| 693 | "addcons=setenv bootargs $bootargs " \ |
| 694 | "console=$consdev,$baudrate\0" \ |
| 695 | "flash_nfs=run nfsargs addip addcons;" \ |
Wolfgang Grandegger | 2599135 | 2008-06-05 13:12:06 +0200 | [diff] [blame] | 696 | "bootm $kernel_addr - $fdt_addr\0" \ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 697 | "flash_self=run ramargs addip addcons;" \ |
Wolfgang Grandegger | 2599135 | 2008-06-05 13:12:06 +0200 | [diff] [blame] | 698 | "bootm $kernel_addr $ramdisk_addr $fdt_addr\0" \ |
| 699 | "net_nfs=tftp $kernel_addr_r $bootfile;" \ |
| 700 | "tftp $fdt_addr_r $fdt_file;" \ |
| 701 | "run nfsargs addip addcons;" \ |
| 702 | "bootm $kernel_addr_r - $fdt_addr_r\0" \ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 703 | "rootpath=/opt/eldk/ppc_85xx\0" \ |
Wolfgang Grandegger | 2599135 | 2008-06-05 13:12:06 +0200 | [diff] [blame] | 704 | "fdt_addr_r=900000\0" \ |
| 705 | "kernel_addr_r=1000000\0" \ |
| 706 | "fdt_addr=ffec0000\0" \ |
| 707 | "kernel_addr=ffd00000\0" \ |
| 708 | "ramdisk_addr=ff800000\0" \ |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 709 | CONFIG_ENV_UBOOT \ |
Wolfgang Grandegger | 2599135 | 2008-06-05 13:12:06 +0200 | [diff] [blame] | 710 | "load=tftp 100000 $uboot\0" \ |
| 711 | "update=protect off $uboot_addr +$filesize;" \ |
| 712 | "erase $uboot_addr +$filesize;" \ |
| 713 | "cp.b 100000 $uboot_addr $filesize;" \ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 714 | "setenv filesize;saveenv\0" \ |
Detlev Zundel | d8ab58b | 2008-03-06 16:45:53 +0100 | [diff] [blame] | 715 | "upd=run load update\0" \ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 716 | "" |
| 717 | #define CONFIG_BOOTCOMMAND "run flash_self" |
| 718 | |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame] | 719 | #endif /* __CONFIG_H */ |