Mario Six | 71c7900 | 2019-01-21 09:17:33 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright (C) 2006 Freescale Semiconductor, Inc. |
| 4 | * Dave Liu <daveliu@freescale.com> |
| 5 | * |
| 6 | * Copyright (C) 2007 Logic Product Development, Inc. |
| 7 | * Peter Barada <peterb@logicpd.com> |
| 8 | * |
| 9 | * Copyright (C) 2007 MontaVista Software, Inc. |
| 10 | * Anton Vorontsov <avorontsov@ru.mvista.com> |
| 11 | * |
| 12 | * (C) Copyright 2008 |
| 13 | * Heiko Schocher, DENX Software Engineering, hs@denx.de. |
| 14 | * |
| 15 | * (C) Copyright 2010-2013 |
| 16 | * Lukas Roggli, KEYMILE Ltd, lukas.roggli@keymile.com |
| 17 | * Holger Brunck, Keymile GmbH, holger.bruncl@keymile.com |
| 18 | */ |
| 19 | |
| 20 | #ifndef __CONFIG_H |
| 21 | #define __CONFIG_H |
| 22 | |
| 23 | /* |
| 24 | * High Level Configuration Options |
| 25 | */ |
| 26 | #define CONFIG_KM_BOARD_NAME "kmopti2" |
| 27 | #define CONFIG_HOSTNAME "kmopti2" |
| 28 | |
| 29 | /* |
| 30 | * High Level Configuration Options |
| 31 | */ |
| 32 | #define CONFIG_QE /* Has QE */ |
| 33 | #define CONFIG_KM8321 /* Keymile PBEC8321 board specific */ |
| 34 | |
| 35 | #define CONFIG_KM_DEF_ARCH "arch=ppc_8xx\0" |
| 36 | |
Mario Six | fb1b099 | 2019-01-21 09:17:34 +0100 | [diff] [blame] | 37 | /* include common defines/options for all Keymile boards */ |
| 38 | #include "km/keymile-common.h" |
| 39 | #include "km/km-powerpc.h" |
| 40 | |
| 41 | /* |
| 42 | * System Clock Setup |
| 43 | */ |
| 44 | #define CONFIG_83XX_CLKIN 66000000 |
| 45 | #define CONFIG_SYS_CLK_FREQ 66000000 |
| 46 | #define CONFIG_83XX_PCICLK 66000000 |
| 47 | |
| 48 | /* |
Mario Six | fb1b099 | 2019-01-21 09:17:34 +0100 | [diff] [blame] | 49 | * DDR Setup |
| 50 | */ |
| 51 | #define CONFIG_SYS_DDR_BASE 0x00000000 /* DDR is system memory */ |
| 52 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_BASE |
| 53 | #define CONFIG_SYS_SDRAM_BASE2 (CONFIG_SYS_SDRAM_BASE + 0x10000000) /* +256M */ |
| 54 | |
| 55 | #define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_DDR_BASE |
| 56 | #define CONFIG_SYS_DDR_SDRAM_CLK_CNTL (DDR_SDRAM_CLK_CNTL_SS_EN | \ |
| 57 | DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05) |
| 58 | |
| 59 | #define CFG_83XX_DDR_USES_CS0 |
| 60 | |
| 61 | /* |
| 62 | * Manually set up DDR parameters |
| 63 | */ |
| 64 | #define CONFIG_DDR_II |
| 65 | #define CONFIG_SYS_DDR_SIZE 2048 /* MB */ |
| 66 | |
| 67 | /* |
| 68 | * The reserved memory |
| 69 | */ |
| 70 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */ |
| 71 | #define CONFIG_SYS_FLASH_BASE 0xF0000000 |
| 72 | |
| 73 | #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE) |
| 74 | #define CONFIG_SYS_RAMBOOT |
| 75 | #endif |
| 76 | |
| 77 | /* Reserve 768 kB for Mon */ |
| 78 | #define CONFIG_SYS_MONITOR_LEN (768 * 1024) |
| 79 | |
| 80 | /* |
| 81 | * Initial RAM Base Address Setup |
| 82 | */ |
| 83 | #define CONFIG_SYS_INIT_RAM_LOCK |
| 84 | #define CONFIG_SYS_INIT_RAM_ADDR 0xE6000000 /* Initial RAM address */ |
| 85 | #define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* End of used area in RAM */ |
| 86 | #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - \ |
| 87 | GENERATED_GBL_DATA_SIZE) |
| 88 | |
| 89 | /* |
| 90 | * Init Local Bus Memory Controller: |
| 91 | * |
| 92 | * Bank Bus Machine PortSz Size Device |
| 93 | * ---- --- ------- ------ ----- ------ |
| 94 | * 0 Local GPCM 16 bit 256MB FLASH |
| 95 | * 1 Local GPCM 8 bit 128MB GPIO/PIGGY |
| 96 | * |
| 97 | */ |
| 98 | /* |
| 99 | * FLASH on the Local Bus |
| 100 | */ |
| 101 | #define CONFIG_SYS_FLASH_SIZE 256 /* max FLASH size is 256M */ |
| 102 | |
Mario Six | fb1b099 | 2019-01-21 09:17:34 +0100 | [diff] [blame] | 103 | |
| 104 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max num of flash banks */ |
| 105 | #define CONFIG_SYS_MAX_FLASH_SECT 512 /* max num of sects on one chip */ |
| 106 | #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE } |
| 107 | |
| 108 | /* |
| 109 | * PRIO1/PIGGY on the local bus CS1 |
| 110 | */ |
Mario Six | a8f9753 | 2019-01-21 09:18:01 +0100 | [diff] [blame] | 111 | |
Mario Six | fb1b099 | 2019-01-21 09:17:34 +0100 | [diff] [blame] | 112 | |
| 113 | /* |
| 114 | * Serial Port |
| 115 | */ |
| 116 | #define CONFIG_SYS_NS16550_SERIAL |
| 117 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
| 118 | #define CONFIG_SYS_NS16550_CLK get_bus_freq(0) |
| 119 | |
| 120 | #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500) |
| 121 | #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600) |
| 122 | |
| 123 | /* |
| 124 | * QE UEC ethernet configuration |
| 125 | */ |
| 126 | #define CONFIG_UEC_ETH |
| 127 | #define CONFIG_ETHPRIME "UEC0" |
| 128 | |
| 129 | #define CONFIG_UEC_ETH1 /* GETH1 */ |
| 130 | #define UEC_VERBOSE_DEBUG 1 |
| 131 | |
| 132 | #ifdef CONFIG_UEC_ETH1 |
| 133 | #define CONFIG_SYS_UEC1_UCC_NUM 3 /* UCC4 */ |
| 134 | #define CONFIG_SYS_UEC1_RX_CLK QE_CLK_NONE /* not used in RMII Mode */ |
| 135 | #define CONFIG_SYS_UEC1_TX_CLK QE_CLK17 |
| 136 | #define CONFIG_SYS_UEC1_ETH_TYPE FAST_ETH |
| 137 | #define CONFIG_SYS_UEC1_PHY_ADDR 0 |
| 138 | #define CONFIG_SYS_UEC1_INTERFACE_TYPE PHY_INTERFACE_MODE_RMII |
| 139 | #define CONFIG_SYS_UEC1_INTERFACE_SPEED 100 |
| 140 | #endif |
| 141 | |
| 142 | /* |
| 143 | * Environment |
| 144 | */ |
| 145 | |
| 146 | #ifndef CONFIG_SYS_RAMBOOT |
| 147 | #ifndef CONFIG_ENV_ADDR |
| 148 | #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + \ |
| 149 | CONFIG_SYS_MONITOR_LEN) |
| 150 | #endif |
| 151 | #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K(one sector) for env */ |
| 152 | #ifndef CONFIG_ENV_OFFSET |
| 153 | #define CONFIG_ENV_OFFSET (CONFIG_SYS_MONITOR_LEN) |
| 154 | #endif |
| 155 | |
| 156 | /* Address and size of Redundant Environment Sector */ |
| 157 | #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + \ |
| 158 | CONFIG_ENV_SECT_SIZE) |
| 159 | #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE) |
| 160 | |
| 161 | #else /* CFG_SYS_RAMBOOT */ |
| 162 | #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000) |
| 163 | #define CONFIG_ENV_SIZE 0x2000 |
| 164 | #endif /* CFG_SYS_RAMBOOT */ |
| 165 | |
| 166 | /* I2C */ |
| 167 | #define CONFIG_SYS_I2C |
| 168 | #define CONFIG_SYS_NUM_I2C_BUSES 4 |
| 169 | #define CONFIG_SYS_I2C_MAX_HOPS 1 |
| 170 | #define CONFIG_SYS_I2C_FSL |
| 171 | #define CONFIG_SYS_FSL_I2C_SPEED 200000 |
| 172 | #define CONFIG_SYS_FSL_I2C_SLAVE 0x7F |
| 173 | #define CONFIG_SYS_FSL_I2C_OFFSET 0x3000 |
| 174 | #define CONFIG_SYS_I2C_OFFSET 0x3000 |
| 175 | #define CONFIG_SYS_FSL_I2C2_SPEED 200000 |
| 176 | #define CONFIG_SYS_FSL_I2C2_SLAVE 0x7F |
| 177 | #define CONFIG_SYS_FSL_I2C2_OFFSET 0x3100 |
| 178 | #define CONFIG_SYS_I2C_BUSES {{0, {I2C_NULL_HOP} }, \ |
| 179 | {0, {{I2C_MUX_PCA9547, 0x70, 2} } }, \ |
| 180 | {0, {{I2C_MUX_PCA9547, 0x70, 1} } }, \ |
| 181 | {1, {I2C_NULL_HOP} } } |
| 182 | |
| 183 | #define CONFIG_KM_IVM_BUS 2 /* I2C2 (Mux-Port 1)*/ |
| 184 | |
| 185 | #if defined(CONFIG_CMD_NAND) |
| 186 | #define CONFIG_NAND_KMETER1 |
| 187 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
| 188 | #define CONFIG_SYS_NAND_BASE CONFIG_SYS_KMBEC_FPGA_BASE |
| 189 | #endif |
| 190 | |
| 191 | /* |
| 192 | * For booting Linux, the board info and command line data |
| 193 | * have to be in the first 8 MB of memory, since this is |
| 194 | * the maximum mapped by the Linux kernel during initialization. |
| 195 | */ |
| 196 | #define CONFIG_SYS_BOOTMAPSZ (8 << 20) |
| 197 | |
| 198 | /* |
Mario Six | fb1b099 | 2019-01-21 09:17:34 +0100 | [diff] [blame] | 199 | * Internal Definitions |
| 200 | */ |
| 201 | #define BOOTFLASH_START 0xF0000000 |
| 202 | |
| 203 | #define CONFIG_KM_CONSOLE_TTY "ttyS0" |
| 204 | |
| 205 | /* |
| 206 | * Environment Configuration |
| 207 | */ |
| 208 | #define CONFIG_ENV_OVERWRITE |
| 209 | #ifndef CONFIG_KM_DEF_ENV /* if not set by keymile-common.h */ |
| 210 | #define CONFIG_KM_DEF_ENV "km-common=empty\0" |
| 211 | #endif |
| 212 | |
| 213 | #ifndef CONFIG_KM_DEF_ARCH |
| 214 | #define CONFIG_KM_DEF_ARCH "arch=ppc_82xx\0" |
| 215 | #endif |
| 216 | |
| 217 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 218 | CONFIG_KM_DEF_ENV \ |
| 219 | CONFIG_KM_DEF_ARCH \ |
| 220 | "newenv=" \ |
| 221 | "prot off "__stringify(CONFIG_ENV_ADDR)" +0x40000 && " \ |
| 222 | "era "__stringify(CONFIG_ENV_ADDR)" +0x40000\0" \ |
| 223 | "unlock=yes\0" \ |
| 224 | "" |
| 225 | |
| 226 | #if defined(CONFIG_UEC_ETH) |
| 227 | #define CONFIG_HAS_ETH0 |
| 228 | #endif |
Mario Six | 71c7900 | 2019-01-21 09:17:33 +0100 | [diff] [blame] | 229 | |
| 230 | /* |
| 231 | * System IO Config |
| 232 | */ |
| 233 | #define CONFIG_SYS_SICRL SICRL_IRQ_CKS |
| 234 | |
Mario Six | 71c7900 | 2019-01-21 09:17:33 +0100 | [diff] [blame] | 235 | #define CONFIG_SYS_DDRCDR (\ |
| 236 | DDRCDR_EN | \ |
| 237 | DDRCDR_PZ_MAXZ | \ |
| 238 | DDRCDR_NZ_MAXZ | \ |
| 239 | DDRCDR_M_ODR) |
| 240 | |
| 241 | #define CONFIG_SYS_DDR_CS0_BNDS 0x0000007f |
| 242 | #define CONFIG_SYS_DDR_SDRAM_CFG (SDRAM_CFG_SDRAM_TYPE_DDR2 | \ |
| 243 | SDRAM_CFG_32_BE | \ |
| 244 | SDRAM_CFG_SREN | \ |
| 245 | SDRAM_CFG_HSE) |
| 246 | |
| 247 | #define CONFIG_SYS_DDR_SDRAM_CFG2 0x00401000 |
| 248 | #define CONFIG_SYS_DDR_CLK_CNTL (DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05) |
| 249 | #define CONFIG_SYS_DDR_INTERVAL ((0x064 << SDRAM_INTERVAL_BSTOPRE_SHIFT) | \ |
| 250 | (0x200 << SDRAM_INTERVAL_REFINT_SHIFT)) |
| 251 | |
| 252 | #define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN | CSCONFIG_AP | \ |
| 253 | CSCONFIG_ODT_WR_CFG | \ |
| 254 | CSCONFIG_ROW_BIT_13 | \ |
| 255 | CSCONFIG_COL_BIT_10) |
| 256 | |
| 257 | #define CONFIG_SYS_DDR_MODE 0x47860242 |
| 258 | #define CONFIG_SYS_DDR_MODE2 0x8080c000 |
| 259 | |
| 260 | #define CONFIG_SYS_DDR_TIMING_0 ((2 << TIMING_CFG0_MRS_CYC_SHIFT) | \ |
| 261 | (8 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) | \ |
| 262 | (2 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) | \ |
| 263 | (2 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) | \ |
| 264 | (0 << TIMING_CFG0_WWT_SHIFT) | \ |
| 265 | (0 << TIMING_CFG0_RRT_SHIFT) | \ |
| 266 | (0 << TIMING_CFG0_WRT_SHIFT) | \ |
| 267 | (0 << TIMING_CFG0_RWT_SHIFT)) |
| 268 | |
| 269 | #define CONFIG_SYS_DDR_TIMING_1 ((TIMING_CFG1_CASLAT_40) | \ |
| 270 | (2 << TIMING_CFG1_WRTORD_SHIFT) | \ |
| 271 | (2 << TIMING_CFG1_ACTTOACT_SHIFT) | \ |
| 272 | (3 << TIMING_CFG1_WRREC_SHIFT) | \ |
| 273 | (7 << TIMING_CFG1_REFREC_SHIFT) | \ |
| 274 | (3 << TIMING_CFG1_ACTTORW_SHIFT) | \ |
| 275 | (7 << TIMING_CFG1_ACTTOPRE_SHIFT) | \ |
| 276 | (3 << TIMING_CFG1_PRETOACT_SHIFT)) |
| 277 | |
| 278 | #define CONFIG_SYS_DDR_TIMING_2 ((8 << TIMING_CFG2_FOUR_ACT_SHIFT) | \ |
| 279 | (3 << TIMING_CFG2_CKE_PLS_SHIFT) | \ |
| 280 | (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) | \ |
| 281 | (2 << TIMING_CFG2_RD_TO_PRE_SHIFT) | \ |
| 282 | (3 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) | \ |
| 283 | (0 << TIMING_CFG2_ADD_LAT_SHIFT) | \ |
| 284 | (5 << TIMING_CFG2_CPO_SHIFT)) |
| 285 | |
| 286 | #define CONFIG_SYS_DDR_TIMING_3 0x00000000 |
| 287 | |
| 288 | #define CONFIG_SYS_KMBEC_FPGA_BASE 0xE8000000 |
| 289 | #define CONFIG_SYS_KMBEC_FPGA_SIZE 128 |
| 290 | |
| 291 | /* EEprom support */ |
| 292 | #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 |
| 293 | |
| 294 | /* |
| 295 | * Local Bus Configuration & Clock Setup |
| 296 | */ |
Mario Six | 71c7900 | 2019-01-21 09:17:33 +0100 | [diff] [blame] | 297 | #define CONFIG_SYS_LBC_LBCR 0x00000000 |
| 298 | |
Mario Six | 71c7900 | 2019-01-21 09:17:33 +0100 | [diff] [blame] | 299 | #define CONFIG_SYS_APP1_BASE 0xA0000000 /* PAXG */ |
| 300 | #define CONFIG_SYS_APP1_SIZE 256 /* Megabytes */ |
| 301 | #define CONFIG_SYS_APP2_BASE 0xB0000000 /* PINC3 */ |
| 302 | #define CONFIG_SYS_APP2_SIZE 256 /* Megabytes */ |
| 303 | |
| 304 | /* |
| 305 | * Init Local Bus Memory Controller: |
| 306 | * Device on board |
| 307 | * Bank Bus Machine PortSz Size TUDA1 TUXA1 TUGE1 KMSUPX4 KMOPTI2 |
| 308 | * ----------------------------------------------------------------------------- |
| 309 | * 2 Local GPCM 8 bit 256MB PAXG LPXF PAXI LPXF PAXE |
| 310 | * 3 Local GPCM 8 bit 256MB PINC3 PINC2 unused unused OPI2(16 bit) |
| 311 | * |
| 312 | * Device on board (continued) |
| 313 | * Bank Bus Machine PortSz Size KMTEPR2 |
| 314 | * ----------------------------------------------------------------------------- |
| 315 | * 2 Local GPCM 8 bit 256MB NVRAM |
| 316 | * 3 Local GPCM 8 bit 256MB TEP2 (16 bit) |
| 317 | */ |
| 318 | |
| 319 | /* |
| 320 | * Configuration for C2 on the local bus |
| 321 | */ |
Mario Six | 71c7900 | 2019-01-21 09:17:33 +0100 | [diff] [blame] | 322 | |
Mario Six | 71c7900 | 2019-01-21 09:17:33 +0100 | [diff] [blame] | 323 | |
| 324 | /* |
| 325 | * Configuration for C3 on the local bus |
| 326 | */ |
Mario Six | a8f9753 | 2019-01-21 09:18:01 +0100 | [diff] [blame] | 327 | |
Mario Six | 71c7900 | 2019-01-21 09:17:33 +0100 | [diff] [blame] | 328 | |
| 329 | #endif /* __CONFIG_H */ |