Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) Freescale Semiconductor, Inc. 2006. |
| 4 | * |
| 5 | * (C) Copyright 2010 |
| 6 | * Heiko Schocher, DENX Software Engineering, hs@denx.de. |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 7 | */ |
| 8 | /* |
| 9 | * ve8313 board configuration file |
| 10 | */ |
| 11 | |
| 12 | #ifndef __CONFIG_H |
| 13 | #define __CONFIG_H |
| 14 | |
| 15 | /* |
| 16 | * High Level Configuration Options |
| 17 | */ |
| 18 | #define CONFIG_E300 1 |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 19 | |
Gabor Juhos | 842033e | 2013-05-30 07:06:12 +0000 | [diff] [blame] | 20 | #define CONFIG_PCI_INDIRECT_BRIDGE 1 |
Kumar Gala | a2243b8 | 2010-08-19 01:48:14 -0500 | [diff] [blame] | 21 | #define CONFIG_FSL_ELBC 1 |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 22 | |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 23 | /* |
| 24 | * On-board devices |
| 25 | * |
| 26 | */ |
| 27 | #define CONFIG_83XX_CLKIN 32000000 /* in Hz */ |
| 28 | |
| 29 | #define CONFIG_SYS_CLK_FREQ CONFIG_83XX_CLKIN |
| 30 | |
| 31 | #define CONFIG_SYS_IMMR 0xE0000000 |
| 32 | |
| 33 | #define CONFIG_SYS_MEMTEST_START 0x00001000 |
| 34 | #define CONFIG_SYS_MEMTEST_END 0x07000000 |
| 35 | |
| 36 | #define CONFIG_SYS_ACR_PIPE_DEP 3 /* Arbiter pipeline depth */ |
| 37 | #define CONFIG_SYS_ACR_RPTCNT 3 /* Arbiter repeat count */ |
| 38 | |
| 39 | /* |
| 40 | * Device configurations |
| 41 | */ |
| 42 | |
| 43 | /* |
| 44 | * DDR Setup |
| 45 | */ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 46 | #define CONFIG_SYS_DDR_BASE 0x00000000 /* DDR is system memory*/ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 47 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_BASE |
| 48 | #define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_DDR_BASE |
| 49 | |
| 50 | /* |
| 51 | * Manually set up DDR parameters, as this board does not |
| 52 | * have the SPD connected to I2C. |
| 53 | */ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 54 | #define CONFIG_SYS_DDR_SIZE 128 /* MB */ |
Joe Hershberger | 2e651b2 | 2011-10-11 23:57:31 -0500 | [diff] [blame] | 55 | #define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN \ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 56 | | CSCONFIG_AP \ |
Joe Hershberger | 2fef402 | 2011-10-11 23:57:29 -0500 | [diff] [blame] | 57 | | CSCONFIG_ODT_RD_NEVER \ |
| 58 | | CSCONFIG_ODT_WR_ALL \ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 59 | | CSCONFIG_ROW_BIT_13 \ |
| 60 | | CSCONFIG_COL_BIT_10) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 61 | /* 0x80840102 */ |
| 62 | |
| 63 | #define CONFIG_SYS_DDR_TIMING_3 0x00000000 |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 64 | #define CONFIG_SYS_DDR_TIMING_0 ((0 << TIMING_CFG0_RWT_SHIFT) \ |
| 65 | | (0 << TIMING_CFG0_WRT_SHIFT) \ |
| 66 | | (3 << TIMING_CFG0_RRT_SHIFT) \ |
| 67 | | (2 << TIMING_CFG0_WWT_SHIFT) \ |
| 68 | | (7 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) \ |
| 69 | | (2 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) \ |
| 70 | | (8 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) \ |
| 71 | | (2 << TIMING_CFG0_MRS_CYC_SHIFT)) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 72 | /* 0x0e720802 */ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 73 | #define CONFIG_SYS_DDR_TIMING_1 ((2 << TIMING_CFG1_PRETOACT_SHIFT) \ |
| 74 | | (6 << TIMING_CFG1_ACTTOPRE_SHIFT) \ |
| 75 | | (2 << TIMING_CFG1_ACTTORW_SHIFT) \ |
| 76 | | (5 << TIMING_CFG1_CASLAT_SHIFT) \ |
| 77 | | (6 << TIMING_CFG1_REFREC_SHIFT) \ |
| 78 | | (2 << TIMING_CFG1_WRREC_SHIFT) \ |
| 79 | | (2 << TIMING_CFG1_ACTTOACT_SHIFT) \ |
| 80 | | (2 << TIMING_CFG1_WRTORD_SHIFT)) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 81 | /* 0x26256222 */ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 82 | #define CONFIG_SYS_DDR_TIMING_2 ((0 << TIMING_CFG2_ADD_LAT_SHIFT) \ |
| 83 | | (5 << TIMING_CFG2_CPO_SHIFT) \ |
| 84 | | (2 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) \ |
| 85 | | (1 << TIMING_CFG2_RD_TO_PRE_SHIFT) \ |
| 86 | | (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) \ |
| 87 | | (3 << TIMING_CFG2_CKE_PLS_SHIFT) \ |
| 88 | | (7 << TIMING_CFG2_FOUR_ACT_SHIFT)) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 89 | /* 0x029028c7 */ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 90 | #define CONFIG_SYS_DDR_INTERVAL ((0x320 << SDRAM_INTERVAL_REFINT_SHIFT) \ |
| 91 | | (0x2000 << SDRAM_INTERVAL_BSTOPRE_SHIFT)) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 92 | /* 0x03202000 */ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 93 | #define CONFIG_SYS_SDRAM_CFG (SDRAM_CFG_SREN \ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 94 | | SDRAM_CFG_SDRAM_TYPE_DDR2 \ |
Joe Hershberger | 2fef402 | 2011-10-11 23:57:29 -0500 | [diff] [blame] | 95 | | SDRAM_CFG_DBW_32) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 96 | /* 0x43080000 */ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 97 | #define CONFIG_SYS_SDRAM_CFG2 0x00401000 |
| 98 | #define CONFIG_SYS_DDR_MODE ((0x4440 << SDRAM_MODE_ESD_SHIFT) \ |
| 99 | | (0x0232 << SDRAM_MODE_SD_SHIFT)) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 100 | /* 0x44400232 */ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 101 | #define CONFIG_SYS_DDR_MODE_2 0x8000C000 |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 102 | |
| 103 | #define CONFIG_SYS_DDR_CLK_CNTL DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05 |
| 104 | /*0x02000000*/ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 105 | #define CONFIG_SYS_DDRCDR_VALUE (DDRCDR_EN \ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 106 | | DDRCDR_PZ_NOMZ \ |
| 107 | | DDRCDR_NZ_NOMZ \ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 108 | | DDRCDR_M_ODR) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 109 | /* 0x73000002 */ |
| 110 | |
| 111 | /* |
| 112 | * FLASH on the Local Bus |
| 113 | */ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 114 | #define CONFIG_SYS_FLASH_BASE 0xFE000000 |
| 115 | #define CONFIG_SYS_FLASH_SIZE 32 /* size in MB */ |
| 116 | #define CONFIG_SYS_FLASH_EMPTY_INFO /* display empty sectors */ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 117 | |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 118 | #define CONFIG_SYS_NOR_BR_PRELIM (CONFIG_SYS_FLASH_BASE \ |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 119 | | BR_PS_16 /* 16 bit */ \ |
| 120 | | BR_MS_GPCM /* MSEL = GPCM */ \ |
| 121 | | BR_V) /* valid */ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 122 | #define CONFIG_SYS_NOR_OR_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH_SIZE) \ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 123 | | OR_GPCM_CSNT \ |
| 124 | | OR_GPCM_ACS_DIV4 \ |
| 125 | | OR_GPCM_SCY_5 \ |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 126 | | OR_GPCM_TRLX_SET \ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 127 | | OR_GPCM_EAD) |
| 128 | /* 0xfe000c55 */ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 129 | |
| 130 | #define CONFIG_SYS_LBLAWBAR0_PRELIM CONFIG_SYS_FLASH_BASE |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 131 | #define CONFIG_SYS_LBLAWAR0_PRELIM (LBLAWAR_EN | LBLAWAR_32MB) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 132 | |
| 133 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */ |
| 134 | #define CONFIG_SYS_MAX_FLASH_SECT 256 /* sectors per dev */ |
| 135 | |
| 136 | #define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */ |
| 137 | #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */ |
| 138 | |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 139 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 140 | |
| 141 | #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE) |
| 142 | #define CONFIG_SYS_RAMBOOT |
| 143 | #endif |
| 144 | |
| 145 | #define CONFIG_SYS_INIT_RAM_LOCK 1 |
| 146 | #define CONFIG_SYS_INIT_RAM_ADDR 0xFD000000 /* Initial RAM address */ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 147 | #define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM*/ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 148 | |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 149 | #define CONFIG_SYS_GBL_DATA_OFFSET \ |
| 150 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 151 | #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET |
| 152 | |
| 153 | /* CONFIG_SYS_MONITOR_LEN must be a multiple of CONFIG_ENV_SECT_SIZE */ |
| 154 | #define CONFIG_SYS_MONITOR_LEN (384 * 1024) |
| 155 | #define CONFIG_SYS_MALLOC_LEN (512 * 1024) |
| 156 | |
| 157 | /* |
| 158 | * Local Bus LCRR and LBCR regs |
| 159 | */ |
| 160 | #define CONFIG_SYS_LCRR_EADC LCRR_EADC_3 |
| 161 | #define CONFIG_SYS_LCRR_CLKDIV LCRR_CLKDIV_2 |
| 162 | |
| 163 | #define CONFIG_SYS_LBC_LBCR 0x00040000 |
| 164 | |
| 165 | #define CONFIG_SYS_LBC_MRTPR 0x20000000 |
| 166 | |
| 167 | /* |
| 168 | * NAND settings |
| 169 | */ |
| 170 | #define CONFIG_SYS_NAND_BASE 0x61000000 |
| 171 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 172 | #define CONFIG_NAND_FSL_ELBC 1 |
| 173 | #define CONFIG_SYS_NAND_BLOCK_SIZE 16384 |
| 174 | |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 175 | #define CONFIG_SYS_NAND_BR_PRELIM (CONFIG_SYS_NAND_BASE \ |
| 176 | | BR_PS_8 \ |
| 177 | | BR_DECC_CHK_GEN \ |
| 178 | | BR_MS_FCM \ |
| 179 | | BR_V) /* valid */ |
| 180 | /* 0x61000c21 */ |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 181 | #define CONFIG_SYS_NAND_OR_PRELIM (OR_AM_32KB \ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 182 | | OR_FCM_BCTLD \ |
| 183 | | OR_FCM_CHT \ |
| 184 | | OR_FCM_SCY_2 \ |
| 185 | | OR_FCM_RST \ |
| 186 | | OR_FCM_TRLX) |
| 187 | /* 0xffff90ac */ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 188 | |
| 189 | #define CONFIG_SYS_BR0_PRELIM CONFIG_SYS_NOR_BR_PRELIM |
| 190 | #define CONFIG_SYS_OR0_PRELIM CONFIG_SYS_NOR_OR_PRELIM |
| 191 | #define CONFIG_SYS_BR1_PRELIM CONFIG_SYS_NAND_BR_PRELIM |
| 192 | #define CONFIG_SYS_OR1_PRELIM CONFIG_SYS_NAND_OR_PRELIM |
| 193 | |
| 194 | #define CONFIG_SYS_LBLAWBAR1_PRELIM CONFIG_SYS_NAND_BASE |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 195 | #define CONFIG_SYS_LBLAWAR1_PRELIM (LBLAWAR_EN | LBLAWAR_32KB) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 196 | |
| 197 | #define CONFIG_SYS_NAND_LBLAWBAR_PRELIM CONFIG_SYS_LBLAWBAR1_PRELIM |
| 198 | #define CONFIG_SYS_NAND_LBLAWAR_PRELIM CONFIG_SYS_LBLAWAR1_PRELIM |
| 199 | |
| 200 | /* CS2 NvRAM */ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 201 | #define CONFIG_SYS_BR2_PRELIM (0x60000000 \ |
| 202 | | BR_PS_8 \ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 203 | | BR_V) |
| 204 | /* 0x60000801 */ |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 205 | #define CONFIG_SYS_OR2_PRELIM (OR_AM_128KB \ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 206 | | OR_GPCM_CSNT \ |
| 207 | | OR_GPCM_XACS \ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 208 | | OR_GPCM_SCY_3 \ |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 209 | | OR_GPCM_TRLX_SET \ |
| 210 | | OR_GPCM_EHTR_SET \ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 211 | | OR_GPCM_EAD) |
| 212 | /* 0xfffe0937 */ |
| 213 | /* local bus read write buffer mapping SRAM@0x64000000 */ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 214 | #define CONFIG_SYS_BR3_PRELIM (0x62000000 \ |
| 215 | | BR_PS_16 \ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 216 | | BR_V) |
| 217 | /* 0x62001001 */ |
| 218 | |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 219 | #define CONFIG_SYS_OR3_PRELIM (OR_AM_32MB \ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 220 | | OR_GPCM_CSNT \ |
| 221 | | OR_GPCM_XACS \ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 222 | | OR_GPCM_SCY_15 \ |
Joe Hershberger | 7d6a098 | 2011-10-11 23:57:30 -0500 | [diff] [blame] | 223 | | OR_GPCM_TRLX_SET \ |
| 224 | | OR_GPCM_EHTR_SET \ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 225 | | OR_GPCM_EAD) |
| 226 | /* 0xfe0009f7 */ |
| 227 | |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 228 | /* |
| 229 | * Serial Port |
| 230 | */ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 231 | #define CONFIG_SYS_NS16550_SERIAL |
| 232 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
| 233 | #define CONFIG_SYS_NS16550_CLK get_bus_freq(0) |
| 234 | |
| 235 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
| 236 | {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200} |
| 237 | |
| 238 | #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500) |
| 239 | #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600) |
| 240 | |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 241 | #if defined(CONFIG_PCI) |
| 242 | /* |
| 243 | * General PCI |
| 244 | * Addresses are mapped 1-1. |
| 245 | */ |
| 246 | #define CONFIG_SYS_PCI1_MEM_BASE 0x80000000 |
| 247 | #define CONFIG_SYS_PCI1_MEM_PHYS CONFIG_SYS_PCI1_MEM_BASE |
| 248 | #define CONFIG_SYS_PCI1_MEM_SIZE 0x10000000 /* 256M */ |
| 249 | #define CONFIG_SYS_PCI1_MMIO_BASE 0x90000000 |
| 250 | #define CONFIG_SYS_PCI1_MMIO_PHYS CONFIG_SYS_PCI1_MMIO_BASE |
| 251 | #define CONFIG_SYS_PCI1_MMIO_SIZE 0x10000000 /* 256M */ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 252 | #define CONFIG_SYS_PCI1_IO_BASE 0x00000000 |
| 253 | #define CONFIG_SYS_PCI1_IO_PHYS 0xE2000000 |
| 254 | #define CONFIG_SYS_PCI1_IO_SIZE 0x00100000 /* 1M */ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 255 | |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 256 | #define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1957 /* Freescale */ |
| 257 | #endif |
| 258 | |
| 259 | /* |
| 260 | * TSEC |
| 261 | */ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 262 | |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 263 | #define CONFIG_TSEC1 |
| 264 | #ifdef CONFIG_TSEC1 |
| 265 | #define CONFIG_HAS_ETH0 |
| 266 | #define CONFIG_TSEC1_NAME "TSEC1" |
| 267 | #define CONFIG_SYS_TSEC1_OFFSET 0x24000 |
| 268 | #define TSEC1_PHY_ADDR 0x01 |
| 269 | #define TSEC1_FLAGS 0 |
| 270 | #define TSEC1_PHYIDX 0 |
| 271 | #endif |
| 272 | |
| 273 | /* Options are: TSEC[0-1] */ |
| 274 | #define CONFIG_ETHPRIME "TSEC1" |
| 275 | |
| 276 | /* |
| 277 | * Environment |
| 278 | */ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 279 | #define CONFIG_ENV_ADDR \ |
| 280 | (CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 281 | #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K(one sector) for env */ |
| 282 | #define CONFIG_ENV_SIZE 0x4000 |
| 283 | /* Address and size of Redundant Environment Sector */ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 284 | #define CONFIG_ENV_OFFSET_REDUND \ |
| 285 | (CONFIG_ENV_OFFSET + CONFIG_ENV_SECT_SIZE) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 286 | #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE) |
| 287 | |
| 288 | #define CONFIG_LOADS_ECHO 1 /* echo on for serial download */ |
| 289 | #define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */ |
| 290 | |
| 291 | /* |
| 292 | * BOOTP options |
| 293 | */ |
| 294 | #define CONFIG_BOOTP_BOOTFILESIZE |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 295 | |
| 296 | /* |
| 297 | * Command line configuration. |
| 298 | */ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 299 | |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 300 | /* |
| 301 | * Miscellaneous configurable options |
| 302 | */ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 303 | #define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 304 | #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |
| 305 | |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 306 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot arg Buffer size */ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 307 | |
| 308 | /* |
| 309 | * For booting Linux, the board info and command line data |
Ira W. Snyder | 9f530d5 | 2010-09-10 15:42:32 -0700 | [diff] [blame] | 310 | * have to be in the first 256 MB of memory, since this is |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 311 | * the maximum mapped by the Linux kernel during initialization. |
| 312 | */ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 313 | /* Initial Memory map for Linux*/ |
| 314 | #define CONFIG_SYS_BOOTMAPSZ (256 << 20) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 315 | |
| 316 | /* 0x64050000 */ |
| 317 | #define CONFIG_SYS_HRCW_LOW (\ |
| 318 | 0x20000000 /* reserved, must be set */ |\ |
| 319 | HRCWL_DDRCM |\ |
| 320 | HRCWL_CSB_TO_CLKIN_4X1 | \ |
| 321 | HRCWL_CORE_TO_CSB_2_5X1) |
| 322 | |
| 323 | /* 0xa0600004 */ |
| 324 | #define CONFIG_SYS_HRCW_HIGH (HRCWH_PCI_HOST | \ |
| 325 | HRCWH_PCI_ARBITER_ENABLE | \ |
| 326 | HRCWH_CORE_ENABLE | \ |
| 327 | HRCWH_FROM_0X00000100 | \ |
| 328 | HRCWH_BOOTSEQ_DISABLE |\ |
| 329 | HRCWH_SW_WATCHDOG_DISABLE |\ |
| 330 | HRCWH_ROM_LOC_LOCAL_16BIT | \ |
| 331 | HRCWH_TSEC1M_IN_MII | \ |
| 332 | HRCWH_BIG_ENDIAN | \ |
| 333 | HRCWH_LALE_EARLY) |
| 334 | |
| 335 | /* System IO Config */ |
| 336 | #define CONFIG_SYS_SICRH (0x01000000 | \ |
| 337 | SICRH_ETSEC2_B | \ |
| 338 | SICRH_ETSEC2_C | \ |
| 339 | SICRH_ETSEC2_D | \ |
| 340 | SICRH_ETSEC2_E | \ |
| 341 | SICRH_ETSEC2_F | \ |
| 342 | SICRH_ETSEC2_G | \ |
| 343 | SICRH_TSOBI1 | \ |
| 344 | SICRH_TSOBI2) |
| 345 | /* 0x010fff03 */ |
| 346 | #define CONFIG_SYS_SICRL (SICRL_LBC | \ |
| 347 | SICRL_SPI_A | \ |
| 348 | SICRL_SPI_B | \ |
| 349 | SICRL_SPI_C | \ |
| 350 | SICRL_SPI_D | \ |
| 351 | SICRL_ETSEC2_A) |
| 352 | /* 0x33fc0003) */ |
| 353 | |
| 354 | #define CONFIG_SYS_HID0_INIT 0x000000000 |
| 355 | #define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \ |
| 356 | HID0_ENABLE_INSTRUCTION_CACHE) |
| 357 | |
| 358 | #define CONFIG_SYS_HID2 HID2_HBE |
| 359 | |
| 360 | #define CONFIG_HIGH_BATS 1 /* High BATs supported */ |
| 361 | |
| 362 | /* DDR @ 0x00000000 */ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 363 | #define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE | BATL_PP_RW) |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 364 | #define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE \ |
| 365 | | BATU_BL_256M \ |
| 366 | | BATU_VS \ |
| 367 | | BATU_VP) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 368 | |
| 369 | #if defined(CONFIG_PCI) |
| 370 | /* PCI @ 0x80000000 */ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 371 | #define CONFIG_SYS_IBAT1L (CONFIG_SYS_PCI1_MEM_BASE | BATL_PP_RW) |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 372 | #define CONFIG_SYS_IBAT1U (CONFIG_SYS_PCI1_MEM_BASE \ |
| 373 | | BATU_BL_256M \ |
| 374 | | BATU_VS \ |
| 375 | | BATU_VP) |
| 376 | #define CONFIG_SYS_IBAT2L (CONFIG_SYS_PCI1_MMIO_BASE \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 377 | | BATL_PP_RW \ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 378 | | BATL_CACHEINHIBIT \ |
| 379 | | BATL_GUARDEDSTORAGE) |
| 380 | #define CONFIG_SYS_IBAT2U (CONFIG_SYS_PCI1_MMIO_BASE \ |
| 381 | | BATU_BL_256M \ |
| 382 | | BATU_VS \ |
| 383 | | BATU_VP) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 384 | #else |
| 385 | #define CONFIG_SYS_IBAT1L (0) |
| 386 | #define CONFIG_SYS_IBAT1U (0) |
| 387 | #define CONFIG_SYS_IBAT2L (0) |
| 388 | #define CONFIG_SYS_IBAT2U (0) |
| 389 | #endif |
| 390 | |
| 391 | /* PCI2 not supported on 8313 */ |
| 392 | #define CONFIG_SYS_IBAT3L (0) |
| 393 | #define CONFIG_SYS_IBAT3U (0) |
| 394 | #define CONFIG_SYS_IBAT4L (0) |
| 395 | #define CONFIG_SYS_IBAT4U (0) |
| 396 | |
| 397 | /* IMMRBAR @ 0xE0000000, PCI IO @ 0xE2000000 & BCSR @ 0xE2400000 */ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 398 | #define CONFIG_SYS_IBAT5L (CONFIG_SYS_IMMR \ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 399 | | BATL_PP_RW \ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 400 | | BATL_CACHEINHIBIT \ |
| 401 | | BATL_GUARDEDSTORAGE) |
| 402 | #define CONFIG_SYS_IBAT5U (CONFIG_SYS_IMMR \ |
| 403 | | BATU_BL_256M \ |
| 404 | | BATU_VS \ |
| 405 | | BATU_VP) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 406 | |
| 407 | /* stack in DCACHE 0xFDF00000 & FLASH @ 0xFE000000 */ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 408 | #define CONFIG_SYS_IBAT6L (0xF0000000 | BATL_PP_RW | BATL_GUARDEDSTORAGE) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 409 | #define CONFIG_SYS_IBAT6U (0xF0000000 | BATU_BL_256M | BATU_VS | BATU_VP) |
| 410 | |
| 411 | /* FPGA, SRAM, NAND @ 0x60000000 */ |
Joe Hershberger | 72cd408 | 2011-10-11 23:57:28 -0500 | [diff] [blame] | 412 | #define CONFIG_SYS_IBAT7L (0x60000000 | BATL_PP_RW | BATL_GUARDEDSTORAGE) |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 413 | #define CONFIG_SYS_IBAT7U (0x60000000 | BATU_BL_256M | BATU_VS | BATU_VP) |
| 414 | |
| 415 | #define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L |
| 416 | #define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U |
| 417 | #define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L |
| 418 | #define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U |
| 419 | #define CONFIG_SYS_DBAT2L CONFIG_SYS_IBAT2L |
| 420 | #define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U |
| 421 | #define CONFIG_SYS_DBAT3L CONFIG_SYS_IBAT3L |
| 422 | #define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U |
| 423 | #define CONFIG_SYS_DBAT4L CONFIG_SYS_IBAT4L |
| 424 | #define CONFIG_SYS_DBAT4U CONFIG_SYS_IBAT4U |
| 425 | #define CONFIG_SYS_DBAT5L CONFIG_SYS_IBAT5L |
| 426 | #define CONFIG_SYS_DBAT5U CONFIG_SYS_IBAT5U |
| 427 | #define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L |
| 428 | #define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U |
| 429 | #define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L |
| 430 | #define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U |
| 431 | |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 432 | #define CONFIG_NETDEV eth0 |
| 433 | |
Mario Six | 5bc0543 | 2018-03-28 14:38:20 +0200 | [diff] [blame] | 434 | #define CONFIG_HOSTNAME "ve8313" |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 435 | #define CONFIG_UBOOTPATH ve8313/u-boot.bin |
| 436 | |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 437 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Marek Vasut | 5368c55 | 2012-09-23 17:41:24 +0200 | [diff] [blame] | 438 | "netdev=" __stringify(CONFIG_NETDEV) "\0" \ |
| 439 | "ethprime=" __stringify(CONFIG_TSEC1_NAME) "\0" \ |
| 440 | "u-boot=" __stringify(CONFIG_UBOOTPATH) "\0" \ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 441 | "u-boot_addr_r=100000\0" \ |
| 442 | "load=tftp ${u-boot_addr_r} ${u-boot}\0" \ |
Marek Vasut | 5368c55 | 2012-09-23 17:41:24 +0200 | [diff] [blame] | 443 | "update=protect off " __stringify(CONFIG_SYS_FLASH_BASE) \ |
| 444 | " +${filesize};" \ |
| 445 | "erase " __stringify(CONFIG_SYS_FLASH_BASE) " +${filesize};" \ |
| 446 | "cp.b ${u-boot_addr_r} " __stringify(CONFIG_SYS_FLASH_BASE) \ |
Joe Hershberger | be29fa7 | 2011-10-11 23:57:26 -0500 | [diff] [blame] | 447 | " ${filesize};" \ |
Marek Vasut | 5368c55 | 2012-09-23 17:41:24 +0200 | [diff] [blame] | 448 | "protect on " __stringify(CONFIG_SYS_FLASH_BASE) " +${filesize}\0" \ |
Heiko Schocher | 4e43b2e | 2010-07-07 12:26:34 +0200 | [diff] [blame] | 449 | |
| 450 | #endif /* __CONFIG_H */ |