Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) Matrix Vision GmbH 2008 |
| 3 | * |
| 4 | * Matrix Vision mvBlueLYNX-M7 configuration file |
| 5 | * based on Freescale's MPC8349ITX. |
| 6 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | |
| 11 | #ifndef __CONFIG_H |
| 12 | #define __CONFIG_H |
| 13 | |
Andre Schwarz | 5ed546f | 2008-07-02 18:54:08 +0200 | [diff] [blame] | 14 | #include <version.h> |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 15 | |
| 16 | /* |
| 17 | * High Level Configuration Options |
| 18 | */ |
| 19 | #define CONFIG_E300 1 |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 20 | #define CONFIG_MPC834x 1 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 21 | #define CONFIG_MPC8343 1 |
| 22 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 23 | #define CONFIG_SYS_TEXT_BASE 0xFFF00000 |
| 24 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 25 | #define CONFIG_SYS_IMMR 0xE0000000 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 26 | |
| 27 | #define CONFIG_PCI |
Gabor Juhos | 842033e | 2013-05-30 07:06:12 +0000 | [diff] [blame] | 28 | #define CONFIG_PCI_INDIRECT_BRIDGE |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 29 | #define CONFIG_PCI_SKIP_HOST_BRIDGE |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 30 | #define CONFIG_TSEC_ENET |
| 31 | #define CONFIG_MPC8XXX_SPI |
| 32 | #define CONFIG_HARD_SPI |
| 33 | #define MVBLM7_MMC_CS 0x04000000 |
André Schwarz | 28887d8 | 2009-08-27 14:48:35 +0200 | [diff] [blame] | 34 | #define CONFIG_MISC_INIT_R |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 35 | |
| 36 | /* I2C */ |
Heiko Schocher | 00f792e | 2012-10-24 13:48:22 +0200 | [diff] [blame] | 37 | #define CONFIG_SYS_I2C |
| 38 | #define CONFIG_SYS_I2C_FSL |
| 39 | #define CONFIG_SYS_FSL_I2C_SPEED 100000 |
| 40 | #define CONFIG_SYS_FSL_I2C_SLAVE 0x7F |
| 41 | #define CONFIG_SYS_FSL_I2C_OFFSET 0x3000 |
| 42 | #define CONFIG_SYS_FSL_I2C2_SPEED 100000 |
| 43 | #define CONFIG_SYS_FSL_I2C2_SLAVE 0x7F |
| 44 | #define CONFIG_SYS_FSL_I2C2_OFFSET 0x3100 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 45 | |
| 46 | /* |
| 47 | * DDR Setup |
| 48 | */ |
André Schwarz | 28887d8 | 2009-08-27 14:48:35 +0200 | [diff] [blame] | 49 | #undef CONFIG_SPD_EEPROM |
| 50 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 51 | #define CONFIG_SYS_DDR_BASE 0x00000000 |
| 52 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_BASE |
| 53 | #define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_DDR_BASE |
| 54 | #define CONFIG_SYS_83XX_DDR_USES_CS0 1 |
| 55 | #define CONFIG_SYS_MEMTEST_START (60<<20) |
| 56 | #define CONFIG_SYS_MEMTEST_END (70<<20) |
André Schwarz | 28887d8 | 2009-08-27 14:48:35 +0200 | [diff] [blame] | 57 | #define CONFIG_VERY_BIG_RAM |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 58 | |
Joe Hershberger | 2fef402 | 2011-10-11 23:57:29 -0500 | [diff] [blame] | 59 | #define CONFIG_SYS_DDRCDR (DDRCDR_PZ_HIZ \ |
| 60 | | DDRCDR_NZ_HIZ \ |
| 61 | | DDRCDR_Q_DRN) |
| 62 | /* 0x22000001 */ |
André Schwarz | 28887d8 | 2009-08-27 14:48:35 +0200 | [diff] [blame] | 63 | #define CONFIG_SYS_DDR_SDRAM_CLK_CNTL DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 64 | |
André Schwarz | 28887d8 | 2009-08-27 14:48:35 +0200 | [diff] [blame] | 65 | #define CONFIG_SYS_DDR_SIZE 512 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 66 | |
André Schwarz | 28887d8 | 2009-08-27 14:48:35 +0200 | [diff] [blame] | 67 | #define CONFIG_SYS_DDR_CS0_CONFIG 0x80014202 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 68 | |
André Schwarz | 28887d8 | 2009-08-27 14:48:35 +0200 | [diff] [blame] | 69 | #define CONFIG_SYS_DDR_CS0_BNDS 0x0000003f |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 70 | |
André Schwarz | 28887d8 | 2009-08-27 14:48:35 +0200 | [diff] [blame] | 71 | #define CONFIG_SYS_DDR_TIMING_0 0x00260802 |
| 72 | #define CONFIG_SYS_DDR_TIMING_1 0x3837c322 |
| 73 | #define CONFIG_SYS_DDR_TIMING_2 0x0f9848c6 |
| 74 | #define CONFIG_SYS_DDR_TIMING_3 0x00000000 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 75 | |
André Schwarz | 28887d8 | 2009-08-27 14:48:35 +0200 | [diff] [blame] | 76 | #define CONFIG_SYS_DDR_SDRAM_CFG 0x43080008 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 77 | #define CONFIG_SYS_DDR_SDRAM_CFG2 0x00401000 |
André Schwarz | 28887d8 | 2009-08-27 14:48:35 +0200 | [diff] [blame] | 78 | #define CONFIG_SYS_DDR_INTERVAL 0x02000100 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 79 | |
André Schwarz | 28887d8 | 2009-08-27 14:48:35 +0200 | [diff] [blame] | 80 | #define CONFIG_SYS_DDR_MODE 0x04040242 |
| 81 | #define CONFIG_SYS_DDR_MODE2 0x00800000 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 82 | |
| 83 | /* Flash */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 84 | #define CONFIG_SYS_FLASH_CFI |
Jean-Christophe PLAGNIOL-VILLARD | 00b1883 | 2008-08-13 01:40:42 +0200 | [diff] [blame] | 85 | #define CONFIG_FLASH_CFI_DRIVER |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 86 | #define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_16BIT |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 87 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 88 | #define CONFIG_SYS_FLASH_BASE 0xFF800000 |
| 89 | #define CONFIG_SYS_FLASH_SIZE 8 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 90 | #define CONFIG_SYS_FLASH_EMPTY_INFO |
| 91 | #define CONFIG_SYS_FLASH_ERASE_TOUT 60000 |
| 92 | #define CONFIG_SYS_FLASH_WRITE_TOUT 500 |
| 93 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 |
| 94 | #define CONFIG_SYS_MAX_FLASH_SECT 256 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 95 | |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 96 | #define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE \ |
| 97 | | BR_PS_16 \ |
| 98 | | BR_MS_GPCM \ |
| 99 | | BR_V) |
| 100 | #define CONFIG_SYS_OR0_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH_SIZE) \ |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 101 | | OR_UPM_XAM \ |
| 102 | | OR_GPCM_CSNT \ |
| 103 | | OR_GPCM_ACS_DIV2 \ |
| 104 | | OR_GPCM_XACS \ |
| 105 | | OR_GPCM_SCY_15 \ |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 106 | | OR_GPCM_TRLX_SET \ |
| 107 | | OR_GPCM_EHTR_SET \ |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 108 | | OR_GPCM_EAD) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 109 | #define CONFIG_SYS_LBLAWBAR0_PRELIM CONFIG_SYS_FLASH_BASE |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 110 | #define CONFIG_SYS_LBLAWAR0_PRELIM (LBLAWAR_EN | LBLAWAR_8MB) |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 111 | |
| 112 | /* |
| 113 | * U-Boot memory configuration |
| 114 | */ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 115 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 116 | #undef CONFIG_SYS_RAMBOOT |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 117 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 118 | #define CONFIG_SYS_INIT_RAM_LOCK |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 119 | #define CONFIG_SYS_INIT_RAM_ADDR 0xFD000000 /* Initial RAM address */ |
| 120 | #define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM*/ |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 121 | |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 122 | #define CONFIG_SYS_GBL_DATA_OFFSET \ |
| 123 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 124 | #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 125 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 126 | /* CONFIG_SYS_MONITOR_LEN must be a multiple of CONFIG_ENV_SECT_SIZE */ |
| 127 | #define CONFIG_SYS_MONITOR_LEN (512 * 1024) |
| 128 | #define CONFIG_SYS_MALLOC_LEN (512 * 1024) |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 129 | |
| 130 | /* |
| 131 | * Local Bus LCRR and LBCR regs |
| 132 | * LCRR: DLL bypass, Clock divider is 4 |
| 133 | * External Local Bus rate is |
| 134 | * CLKIN * HRCWL_CSB_TO_CLKIN / HRCWL_LCL_BUS_TO_SCB_CLK / LCRR_CLKDIV |
| 135 | */ |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 136 | #define CONFIG_SYS_LCRR_DBYP LCRR_DBYP |
| 137 | #define CONFIG_SYS_LCRR_CLKDIV LCRR_CLKDIV_4 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 138 | #define CONFIG_SYS_LBC_LBCR 0x00000000 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 139 | |
| 140 | /* LB sdram refresh timer, about 6us */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 141 | #define CONFIG_SYS_LBC_LSRT 0x32000000 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 142 | /* LB refresh timer prescal, 266MHz/32*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 143 | #define CONFIG_SYS_LBC_MRTPR 0x20000000 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 144 | |
| 145 | /* |
| 146 | * Serial Port |
| 147 | */ |
| 148 | #define CONFIG_CONS_INDEX 1 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 149 | #define CONFIG_SYS_NS16550 |
| 150 | #define CONFIG_SYS_NS16550_SERIAL |
| 151 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
| 152 | #define CONFIG_SYS_NS16550_CLK get_bus_freq(0) |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 153 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 154 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 155 | {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200} |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 156 | |
| 157 | #define CONFIG_CONSOLE ttyS0 |
| 158 | #define CONFIG_BAUDRATE 115200 |
| 159 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 160 | #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR + 0x4500) |
| 161 | #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR + 0x4600) |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 162 | |
| 163 | /* pass open firmware flat tree */ |
| 164 | #define CONFIG_OF_LIBFDT 1 |
| 165 | #define CONFIG_OF_BOARD_SETUP 1 |
| 166 | #define CONFIG_OF_STDOUT_VIA_ALIAS 1 |
| 167 | #define MV_DTB_NAME "mvblm7.dtb" |
| 168 | |
| 169 | /* |
| 170 | * PCI |
| 171 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 172 | #define CONFIG_SYS_PCI1_MEM_BASE 0x80000000 |
| 173 | #define CONFIG_SYS_PCI1_MEM_PHYS CONFIG_SYS_PCI1_MEM_BASE |
| 174 | #define CONFIG_SYS_PCI1_MEM_SIZE 0x10000000 |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 175 | #define CONFIG_SYS_PCI1_MMIO_BASE \ |
| 176 | (CONFIG_SYS_PCI1_MEM_BASE + CONFIG_SYS_PCI1_MEM_SIZE) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 177 | #define CONFIG_SYS_PCI1_MMIO_PHYS CONFIG_SYS_PCI1_MMIO_BASE |
| 178 | #define CONFIG_SYS_PCI1_MMIO_SIZE 0x10000000 |
| 179 | #define CONFIG_SYS_PCI1_IO_BASE 0x00000000 |
| 180 | #define CONFIG_SYS_PCI1_IO_PHYS 0xE2000000 |
| 181 | #define CONFIG_SYS_PCI1_IO_SIZE 0x01000000 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 182 | |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 183 | #define CONFIG_NET_RETRY_COUNT 3 |
| 184 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 185 | #define CONFIG_PCI_66M |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 186 | #define CONFIG_83XX_CLKIN 66666667 |
| 187 | #define CONFIG_PCI_PNP |
| 188 | #define CONFIG_PCI_SCAN_SHOW |
| 189 | |
| 190 | /* TSEC */ |
| 191 | #define CONFIG_GMII |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 192 | #define CONFIG_SYS_VSC8601_SKEWFIX |
| 193 | #define CONFIG_SYS_VSC8601_SKEW_TX 3 |
| 194 | #define CONFIG_SYS_VSC8601_SKEW_RX 3 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 195 | |
| 196 | #define CONFIG_TSEC1 |
| 197 | #define CONFIG_TSEC2 |
| 198 | |
| 199 | #define CONFIG_HAS_ETH0 |
| 200 | #define CONFIG_TSEC1_NAME "TSEC0" |
| 201 | #define CONFIG_FEC1_PHY_NORXERR |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 202 | #define CONFIG_SYS_TSEC1_OFFSET 0x24000 |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 203 | #define CONFIG_SYS_TSEC1 (CONFIG_SYS_IMMR+CONFIG_SYS_TSEC1_OFFSET) |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 204 | #define TSEC1_PHY_ADDR 0x10 |
| 205 | #define TSEC1_PHYIDX 0 |
| 206 | #define TSEC1_FLAGS (TSEC_GIGABIT|TSEC_REDUCED) |
| 207 | |
| 208 | #define CONFIG_HAS_ETH1 |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 209 | #define CONFIG_TSEC2_NAME "TSEC1" |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 210 | #define CONFIG_FEC2_PHY_NORXERR |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 211 | #define CONFIG_SYS_TSEC2_OFFSET 0x25000 |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 212 | #define CONFIG_SYS_TSEC2 (CONFIG_SYS_IMMR+CONFIG_SYS_TSEC2_OFFSET) |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 213 | #define TSEC2_PHY_ADDR 0x11 |
| 214 | #define TSEC2_PHYIDX 0 |
| 215 | #define TSEC2_FLAGS (TSEC_GIGABIT|TSEC_REDUCED) |
| 216 | |
| 217 | #define CONFIG_ETHPRIME "TSEC0" |
| 218 | |
| 219 | #define CONFIG_BOOTP_VENDOREX |
| 220 | #define CONFIG_BOOTP_SUBNETMASK |
| 221 | #define CONFIG_BOOTP_GATEWAY |
| 222 | #define CONFIG_BOOTP_DNS |
| 223 | #define CONFIG_BOOTP_DNS2 |
| 224 | #define CONFIG_BOOTP_HOSTNAME |
| 225 | #define CONFIG_BOOTP_BOOTFILESIZE |
| 226 | #define CONFIG_BOOTP_BOOTPATH |
| 227 | #define CONFIG_BOOTP_NTPSERVER |
| 228 | #define CONFIG_BOOTP_RANDOM_DELAY |
| 229 | #define CONFIG_BOOTP_SEND_HOSTNAME |
| 230 | |
| 231 | /* USB */ |
Andre Schwarz | fd194f8 | 2010-05-03 13:22:31 +0200 | [diff] [blame] | 232 | #define CONFIG_SYS_USB_HOST |
| 233 | #define CONFIG_USB_EHCI |
| 234 | #define CONFIG_USB_EHCI_FSL |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 235 | #define CONFIG_HAS_FSL_DR_USB |
Andre Schwarz | fd194f8 | 2010-05-03 13:22:31 +0200 | [diff] [blame] | 236 | #define CONFIG_EHCI_HCD_INIT_AFTER_RESET |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 237 | |
| 238 | /* |
| 239 | * Environment |
| 240 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 241 | #undef CONFIG_SYS_FLASH_PROTECTION |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 242 | #define CONFIG_ENV_OVERWRITE |
| 243 | |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 244 | #define CONFIG_ENV_IS_IN_FLASH 1 |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 245 | #define CONFIG_ENV_ADDR 0xFF800000 |
| 246 | #define CONFIG_ENV_SIZE 0x2000 |
| 247 | #define CONFIG_ENV_SECT_SIZE 0x2000 |
| 248 | #define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE) |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 249 | #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 250 | |
Wolfgang Denk | e093a24 | 2008-06-28 23:34:37 +0200 | [diff] [blame] | 251 | #define CONFIG_LOADS_ECHO |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 252 | #define CONFIG_SYS_LOADS_BAUD_CHANGE |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 253 | |
| 254 | /* |
| 255 | * Command line configuration. |
| 256 | */ |
| 257 | #include <config_cmd_default.h> |
| 258 | |
| 259 | #define CONFIG_CMD_CACHE |
| 260 | #define CONFIG_CMD_IRQ |
| 261 | #define CONFIG_CMD_NET |
| 262 | #define CONFIG_CMD_MII |
| 263 | #define CONFIG_CMD_PING |
| 264 | #define CONFIG_CMD_DHCP |
| 265 | #define CONFIG_CMD_SDRAM |
| 266 | #define CONFIG_CMD_PCI |
| 267 | #define CONFIG_CMD_I2C |
| 268 | #define CONFIG_CMD_FPGA |
Andre Schwarz | fd194f8 | 2010-05-03 13:22:31 +0200 | [diff] [blame] | 269 | #define CONFIG_CMD_USB |
| 270 | #define CONFIG_DOS_PARTITION |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 271 | |
| 272 | #undef CONFIG_WATCHDOG |
| 273 | |
| 274 | /* |
| 275 | * Miscellaneous configurable options |
| 276 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 277 | #define CONFIG_SYS_LONGHELP |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 278 | #define CONFIG_CMDLINE_EDITING |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 279 | #define CONFIG_AUTO_COMPLETE /* add autocompletion support */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 280 | #define CONFIG_SYS_HUSH_PARSER |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 281 | |
| 282 | /* default load address */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 283 | #define CONFIG_SYS_LOAD_ADDR 0x2000000 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 284 | /* default location for tftp and bootm */ |
| 285 | #define CONFIG_LOADADDR 0x200000 |
| 286 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 287 | #define CONFIG_SYS_PROMPT "mvBL-M7> " |
| 288 | #define CONFIG_SYS_CBSIZE 256 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 289 | |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 290 | #define CONFIG_SYS_PBSIZE \ |
| 291 | (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 292 | #define CONFIG_SYS_MAXARGS 16 |
| 293 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 294 | |
| 295 | /* |
| 296 | * For booting Linux, the board info and command line data |
Ira W. Snyder | 9f530d5 | 2010-09-10 15:42:32 -0700 | [diff] [blame] | 297 | * have to be in the first 256 MB of memory, since this is |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 298 | * the maximum mapped by the Linux kernel during initialization. |
| 299 | */ |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 300 | /* Initial Memory map for Linux*/ |
| 301 | #define CONFIG_SYS_BOOTMAPSZ (256 << 20) |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 302 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 303 | #define CONFIG_SYS_HRCW_LOW 0x0 |
| 304 | #define CONFIG_SYS_HRCW_HIGH 0x0 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 305 | |
| 306 | /* |
| 307 | * System performance |
| 308 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 309 | #define CONFIG_SYS_ACR_PIPE_DEP 3 /* Arbiter pipeline depth (0-3) */ |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 310 | #define CONFIG_SYS_ACR_RPTCNT 3 /* Arbiter repeat count (0-7) */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 311 | #define CONFIG_SYS_SPCR_TSEC1EP 3 /* TSEC1 emergency priority (0-3) */ |
| 312 | #define CONFIG_SYS_SPCR_TSEC2EP 3 /* TSEC2 emergency priority (0-3) */ |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 313 | |
| 314 | /* clocking */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 315 | #define CONFIG_SYS_SCCR_ENCCM 0 |
| 316 | #define CONFIG_SYS_SCCR_USBMPHCM 0 |
| 317 | #define CONFIG_SYS_SCCR_USBDRCM 2 |
| 318 | #define CONFIG_SYS_SCCR_TSEC1CM 1 |
| 319 | #define CONFIG_SYS_SCCR_TSEC2CM 1 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 320 | |
Andre Schwarz | 116ef54 | 2010-10-22 11:21:46 +0200 | [diff] [blame] | 321 | #define CONFIG_SYS_SICRH 0x1fef0003 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 322 | #define CONFIG_SYS_SICRL (SICRL_LDP_A | SICRL_USB1 | SICRL_USB0) |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 323 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 324 | #define CONFIG_SYS_HID0_INIT 0x000000000 |
Kim Phillips | 1a2e203 | 2010-04-20 19:37:54 -0500 | [diff] [blame] | 325 | #define CONFIG_SYS_HID0_FINAL (CONFIG_SYS_HID0_INIT | \ |
| 326 | HID0_ENABLE_INSTRUCTION_CACHE) |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 327 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 328 | #define CONFIG_SYS_HID2 HID2_HBE |
Andre Schwarz | 5ed546f | 2008-07-02 18:54:08 +0200 | [diff] [blame] | 329 | #define CONFIG_HIGH_BATS 1 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 330 | |
| 331 | /* DDR */ |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 332 | #define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 333 | | BATL_PP_RW \ |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 334 | | BATL_MEMCOHERENCE) |
| 335 | #define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE \ |
| 336 | | BATU_BL_256M \ |
| 337 | | BATU_VS \ |
| 338 | | BATU_VP) |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 339 | |
| 340 | /* PCI */ |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 341 | #define CONFIG_SYS_IBAT1L (CONFIG_SYS_PCI1_MEM_BASE \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 342 | | BATL_PP_RW \ |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 343 | | BATL_MEMCOHERENCE) |
| 344 | #define CONFIG_SYS_IBAT1U (CONFIG_SYS_PCI1_MEM_BASE \ |
| 345 | | BATU_BL_256M \ |
| 346 | | BATU_VS \ |
| 347 | | BATU_VP) |
| 348 | #define CONFIG_SYS_IBAT2L (CONFIG_SYS_PCI1_MMIO_BASE \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 349 | | BATL_PP_RW \ |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 350 | | BATL_CACHEINHIBIT \ |
| 351 | | BATL_GUARDEDSTORAGE) |
| 352 | #define CONFIG_SYS_IBAT2U (CONFIG_SYS_PCI1_MMIO_BASE \ |
| 353 | | BATU_BL_256M \ |
| 354 | | BATU_VS \ |
| 355 | | BATU_VP) |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 356 | |
| 357 | /* no PCI2 */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 358 | #define CONFIG_SYS_IBAT3L 0 |
| 359 | #define CONFIG_SYS_IBAT3U 0 |
| 360 | #define CONFIG_SYS_IBAT4L 0 |
| 361 | #define CONFIG_SYS_IBAT4U 0 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 362 | |
| 363 | /* IMMRBAR @ 0xE0000000, PCI IO @ 0xE2000000 & BCSR @ 0xE2400000 */ |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 364 | #define CONFIG_SYS_IBAT5L (CONFIG_SYS_IMMR \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 365 | | BATL_PP_RW \ |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 366 | | BATL_CACHEINHIBIT \ |
| 367 | | BATL_GUARDEDSTORAGE) |
| 368 | #define CONFIG_SYS_IBAT5U (CONFIG_SYS_IMMR \ |
| 369 | | BATU_BL_256M \ |
| 370 | | BATU_VS \ |
| 371 | | BATU_VP) |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 372 | |
| 373 | /* stack in DCACHE 0xFDF00000 & FLASH @ 0xFF800000 */ |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 374 | #define CONFIG_SYS_IBAT6L (0xF0000000 \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 375 | | BATL_PP_RW \ |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 376 | | BATL_MEMCOHERENCE \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 377 | | BATL_GUARDEDSTORAGE) |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 378 | #define CONFIG_SYS_IBAT6U (0xF0000000 \ |
| 379 | | BATU_BL_256M \ |
| 380 | | BATU_VS \ |
| 381 | | BATU_VP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 382 | #define CONFIG_SYS_IBAT7L 0 |
| 383 | #define CONFIG_SYS_IBAT7U 0 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 384 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 385 | #define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L |
| 386 | #define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U |
| 387 | #define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L |
| 388 | #define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U |
| 389 | #define CONFIG_SYS_DBAT2L CONFIG_SYS_IBAT2L |
| 390 | #define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U |
| 391 | #define CONFIG_SYS_DBAT3L CONFIG_SYS_IBAT3L |
| 392 | #define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U |
| 393 | #define CONFIG_SYS_DBAT4L CONFIG_SYS_IBAT4L |
| 394 | #define CONFIG_SYS_DBAT4U CONFIG_SYS_IBAT4U |
| 395 | #define CONFIG_SYS_DBAT5L CONFIG_SYS_IBAT5L |
| 396 | #define CONFIG_SYS_DBAT5U CONFIG_SYS_IBAT5U |
| 397 | #define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L |
| 398 | #define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U |
| 399 | #define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L |
| 400 | #define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 401 | |
| 402 | /* |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 403 | * Environment Configuration |
| 404 | */ |
| 405 | #define CONFIG_ENV_OVERWRITE |
| 406 | |
| 407 | #define CONFIG_NETDEV eth0 |
| 408 | |
| 409 | /* Default path and filenames */ |
| 410 | #define CONFIG_BOOTDELAY 5 |
| 411 | #define CONFIG_AUTOBOOT_KEYED |
| 412 | #define CONFIG_AUTOBOOT_STOP_STR "s" |
| 413 | #define CONFIG_ZERO_BOOTDELAY_CHECK |
| 414 | #define CONFIG_RESET_TO_RETRY 1000 |
| 415 | |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 416 | #define MV_CI "mvBL-M7" |
| 417 | #define MV_VCI "mvBL-M7" |
André Schwarz | 28887d8 | 2009-08-27 14:48:35 +0200 | [diff] [blame] | 418 | #define MV_FPGA_DATA 0xfff40000 |
| 419 | #define MV_FPGA_SIZE 0 |
Andre Schwarz | 1a9eeb7 | 2008-08-20 11:11:52 +0200 | [diff] [blame] | 420 | #define MV_KERNEL_ADDR 0xff810000 |
| 421 | #define MV_INITRD_ADDR 0xffb00000 |
Peter Tyser | 3202d33 | 2009-09-16 21:38:10 -0500 | [diff] [blame] | 422 | #define MV_SCRIPT_ADDR 0xff804000 |
| 423 | #define MV_SCRIPT_ADDR2 0xff806000 |
Andre Schwarz | 1a9eeb7 | 2008-08-20 11:11:52 +0200 | [diff] [blame] | 424 | #define MV_DTB_ADDR 0xff808000 |
| 425 | #define MV_INITRD_LENGTH 0x00400000 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 426 | |
| 427 | #define CONFIG_SHOW_BOOT_PROGRESS 1 |
| 428 | |
Andre Schwarz | 1a9eeb7 | 2008-08-20 11:11:52 +0200 | [diff] [blame] | 429 | #define MV_KERNEL_ADDR_RAM 0x00100000 |
| 430 | #define MV_DTB_ADDR_RAM 0x00600000 |
| 431 | #define MV_INITRD_ADDR_RAM 0x01000000 |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 432 | |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 433 | #define CONFIG_BOOTCOMMAND "if imi ${script_addr}; " \ |
| 434 | "then source ${script_addr}; " \ |
| 435 | "else source ${script_addr2}; " \ |
| 436 | "fi;" |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 437 | #define CONFIG_BOOTARGS "root=/dev/ram ro rootfstype=squashfs" |
| 438 | |
| 439 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 440 | "console_nr=0\0" \ |
Marek Vasut | 5368c55 | 2012-09-23 17:41:24 +0200 | [diff] [blame] | 441 | "baudrate=" __stringify(CONFIG_BAUDRATE) "\0" \ |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 442 | "stdin=serial\0" \ |
| 443 | "stdout=serial\0" \ |
| 444 | "stderr=serial\0" \ |
| 445 | "fpga=0\0" \ |
Marek Vasut | 5368c55 | 2012-09-23 17:41:24 +0200 | [diff] [blame] | 446 | "fpgadata=" __stringify(MV_FPGA_DATA) "\0" \ |
| 447 | "fpgadatasize=" __stringify(MV_FPGA_SIZE) "\0" \ |
| 448 | "script_addr=" __stringify(MV_SCRIPT_ADDR) "\0" \ |
| 449 | "script_addr2=" __stringify(MV_SCRIPT_ADDR2) "\0" \ |
| 450 | "mv_kernel_addr=" __stringify(MV_KERNEL_ADDR) "\0" \ |
| 451 | "mv_kernel_addr_ram=" __stringify(MV_KERNEL_ADDR_RAM) "\0" \ |
| 452 | "mv_initrd_addr=" __stringify(MV_INITRD_ADDR) "\0" \ |
| 453 | "mv_initrd_addr_ram=" __stringify(MV_INITRD_ADDR_RAM) "\0" \ |
| 454 | "mv_initrd_length=" __stringify(MV_INITRD_LENGTH) "\0" \ |
| 455 | "mv_dtb_addr=" __stringify(MV_DTB_ADDR) "\0" \ |
| 456 | "mv_dtb_addr_ram=" __stringify(MV_DTB_ADDR_RAM) "\0" \ |
| 457 | "dtb_name=" __stringify(MV_DTB_NAME) "\0" \ |
Andre Schwarz | 5ed546f | 2008-07-02 18:54:08 +0200 | [diff] [blame] | 458 | "mv_version=" U_BOOT_VERSION "\0" \ |
Joe Hershberger | b2773a5 | 2011-10-11 23:57:20 -0500 | [diff] [blame] | 459 | "dhcp_client_id=" MV_CI "\0" \ |
| 460 | "dhcp_vendor-class-identifier=" MV_VCI "\0" \ |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 461 | "netretry=no\0" \ |
| 462 | "use_static_ipaddr=no\0" \ |
| 463 | "static_ipaddr=192.168.90.10\0" \ |
| 464 | "static_netmask=255.255.255.0\0" \ |
| 465 | "static_gateway=0.0.0.0\0" \ |
André Schwarz | 28887d8 | 2009-08-27 14:48:35 +0200 | [diff] [blame] | 466 | "initrd_name=uInitrd.mvBL-M7-rfs\0" \ |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 467 | "zcip=no\0" \ |
| 468 | "netboot=yes\0" \ |
| 469 | "mvtest=Ff\0" \ |
| 470 | "tried_bootfromflash=no\0" \ |
| 471 | "tried_bootfromnet=no\0" \ |
| 472 | "bootfile=mvblm72625.boot\0" \ |
| 473 | "use_dhcp=yes\0" \ |
| 474 | "gev_start=yes\0" \ |
| 475 | "mvbcdma_debug=0\0" \ |
| 476 | "mvbcia_debug=0\0" \ |
| 477 | "propdev_debug=0\0" \ |
| 478 | "gevss_debug=0\0" \ |
| 479 | "watchdog=0\0" \ |
| 480 | "usb_dr_mode=host\0" \ |
Andre Schwarz | 1a9eeb7 | 2008-08-20 11:11:52 +0200 | [diff] [blame] | 481 | "sensor_cnt=2\0" \ |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 482 | "" |
| 483 | |
| 484 | #define CONFIG_FPGA_COUNT 1 |
Michal Simek | b03b25c | 2013-05-01 18:05:56 +0200 | [diff] [blame] | 485 | #define CONFIG_FPGA |
Andre Schwarz | c005b93 | 2008-06-10 09:13:16 +0200 | [diff] [blame] | 486 | #define CONFIG_FPGA_ALTERA |
| 487 | #define CONFIG_FPGA_CYCLON2 |
| 488 | |
| 489 | #endif |