blob: 84516bb9bb7c62724c05190886a563c8f1d9137a [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Holger Brunck3bf8b982012-03-21 13:42:46 +01002/*
3 * (C) Copyright 2012
4 * Holger Brunck, Keymile GmbH Hannover, <holger.brunck@keymile.com>
5 * Christian Herzig, Keymile AG Switzerland, <christian.herzig@keymile.com>
Holger Brunck3bf8b982012-03-21 13:42:46 +01006 */
7
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
11/* KMBEC FPGA (PRIO) */
12#define CONFIG_SYS_KMBEC_FPGA_BASE 0xE8000000
13#define CONFIG_SYS_KMBEC_FPGA_SIZE 64
14
Mario Six790d8442018-03-28 14:38:20 +020015#define CONFIG_HOSTNAME "kmeter1"
Holger Brunck3bf8b982012-03-21 13:42:46 +010016#define CONFIG_KM_BOARD_NAME "kmeter1"
17#define CONFIG_KM_DEF_NETDEV "netdev=eth2\0"
Holger Brunck3bf8b982012-03-21 13:42:46 +010018
19/*
20 * High Level Configuration Options
21 */
22#define CONFIG_QE /* Has QE */
Holger Brunck3bf8b982012-03-21 13:42:46 +010023
Mario Sixcb791a82019-01-21 09:17:34 +010024/* include common defines/options for all Keymile boards */
25#include "km/keymile-common.h"
26#include "km/km-powerpc.h"
27
28/*
Mario Sixcb791a82019-01-21 09:17:34 +010029 * IMMR new address
30 */
31#define CONFIG_SYS_IMMR 0xE0000000
32
33/*
34 * Bus Arbitration Configuration Register (ACR)
35 */
36#define CONFIG_SYS_ACR_PIPE_DEP 3 /* pipeline depth 4 transactions */
37#define CONFIG_SYS_ACR_RPTCNT 3 /* 4 consecutive transactions */
38#define CONFIG_SYS_ACR_APARK 0 /* park bus to master (below) */
39#define CONFIG_SYS_ACR_PARKM 3 /* parking master = QuiccEngine */
40
41/*
42 * DDR Setup
43 */
44#define CONFIG_SYS_DDR_BASE 0x00000000 /* DDR is system memory */
45#define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_BASE
46#define CONFIG_SYS_SDRAM_BASE2 (CONFIG_SYS_SDRAM_BASE + 0x10000000) /* +256M */
47
48#define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_DDR_BASE
49#define CONFIG_SYS_DDR_SDRAM_CLK_CNTL (DDR_SDRAM_CLK_CNTL_SS_EN | \
50 DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05)
51
52#define CFG_83XX_DDR_USES_CS0
53
54/*
55 * Manually set up DDR parameters
56 */
57#define CONFIG_DDR_II
58#define CONFIG_SYS_DDR_SIZE 2048 /* MB */
59
60/*
61 * The reserved memory
62 */
63#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */
64#define CONFIG_SYS_FLASH_BASE 0xF0000000
65
66#if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
67#define CONFIG_SYS_RAMBOOT
68#endif
69
70/* Reserve 768 kB for Mon */
71#define CONFIG_SYS_MONITOR_LEN (768 * 1024)
72
73/*
74 * Initial RAM Base Address Setup
75 */
76#define CONFIG_SYS_INIT_RAM_LOCK
77#define CONFIG_SYS_INIT_RAM_ADDR 0xE6000000 /* Initial RAM address */
78#define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* End of used area in RAM */
79#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - \
80 GENERATED_GBL_DATA_SIZE)
81
82/*
83 * Init Local Bus Memory Controller:
84 *
85 * Bank Bus Machine PortSz Size Device
86 * ---- --- ------- ------ ----- ------
87 * 0 Local GPCM 16 bit 256MB FLASH
88 * 1 Local GPCM 8 bit 128MB GPIO/PIGGY
89 *
90 */
91/*
92 * FLASH on the Local Bus
93 */
94#define CONFIG_SYS_FLASH_SIZE 256 /* max FLASH size is 256M */
95
Mario Sixc1e29d92019-01-21 09:18:01 +010096/* FLASH */
97#define CONFIG_SYS_BR0_PRELIM (0xF0000000 | BR_PS_16 | BR_MS_GPCM | BR_V)
98#define CONFIG_SYS_OR0_PRELIM (OR_AM_256MB | OR_GPCM_CSNT | OR_GPCM_ACS_DIV2 | OR_GPCM_SCY_5 | OR_GPCM_TRLX_SET | OR_GPCM_EAD)
Mario Sixcb791a82019-01-21 09:17:34 +010099
100#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max num of flash banks */
101#define CONFIG_SYS_MAX_FLASH_SECT 512 /* max num of sects on one chip */
102#define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE }
103
104/*
105 * PRIO1/PIGGY on the local bus CS1
106 */
Mario Sixc1e29d92019-01-21 09:18:01 +0100107
108/* KMBEC_FPGA */
109#define CONFIG_SYS_BR1_PRELIM (0xE8000000 | BR_PS_8 | BR_MS_GPCM | BR_V)
110#define CONFIG_SYS_OR1_PRELIM (OR_AM_64MB | OR_GPCM_CSNT | OR_GPCM_ACS_DIV2 | OR_GPCM_SCY_2 | OR_GPCM_TRLX_SET | OR_GPCM_EAD)
Mario Sixcb791a82019-01-21 09:17:34 +0100111
112/*
113 * Serial Port
114 */
Mario Six92e20d92019-01-21 09:17:35 +0100115#define CONFIG_CONS_INDEX 1
Mario Sixcb791a82019-01-21 09:17:34 +0100116#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
Mario Sixcb791a82019-01-21 09:17:34 +0100129#define CONFIG_UEC_ETH1 /* GETH1 */
130#define UEC_VERBOSE_DEBUG 1
Mario Sixcb791a82019-01-21 09:17:34 +0100131
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/*
199 * Core HID Setup
200 */
201#define CONFIG_SYS_HID0_INIT 0x000000000
202#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
203 HID0_ENABLE_INSTRUCTION_CACHE)
204#define CONFIG_SYS_HID2 HID2_HBE
205
206/*
Mario Sixcb791a82019-01-21 09:17:34 +0100207 * Internal Definitions
208 */
209#define BOOTFLASH_START 0xF0000000
210
211#define CONFIG_KM_CONSOLE_TTY "ttyS0"
212
213/*
214 * Environment Configuration
215 */
216#define CONFIG_ENV_OVERWRITE
217#ifndef CONFIG_KM_DEF_ENV /* if not set by keymile-common.h */
218#define CONFIG_KM_DEF_ENV "km-common=empty\0"
219#endif
220
221#ifndef CONFIG_KM_DEF_ARCH
222#define CONFIG_KM_DEF_ARCH "arch=ppc_82xx\0"
223#endif
224
225#define CONFIG_EXTRA_ENV_SETTINGS \
226 CONFIG_KM_DEF_ENV \
227 CONFIG_KM_DEF_ARCH \
228 "newenv=" \
229 "prot off "__stringify(CONFIG_ENV_ADDR)" +0x40000 && " \
230 "era "__stringify(CONFIG_ENV_ADDR)" +0x40000\0" \
231 "unlock=yes\0" \
232 ""
233
234#if defined(CONFIG_UEC_ETH)
235#define CONFIG_HAS_ETH0
236#endif
Holger Brunck3bf8b982012-03-21 13:42:46 +0100237
238/*
239 * System IO Setup
240 */
241#define CONFIG_SYS_SICRH (SICRH_UC1EOBI | SICRH_UC2E1OBI)
242
Holger Brunck3bf8b982012-03-21 13:42:46 +0100243/**
244 * DDR RAM settings
245 */
246#define CONFIG_SYS_DDR_SDRAM_CFG (\
247 SDRAM_CFG_SDRAM_TYPE_DDR2 | \
248 SDRAM_CFG_SREN | \
249 SDRAM_CFG_HSE)
250
251#define CONFIG_SYS_DDR_SDRAM_CFG2 0x00401000
252
Holger Brunck3bf8b982012-03-21 13:42:46 +0100253#define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN | CSCONFIG_AP | \
254 CSCONFIG_ROW_BIT_13 | \
255 CSCONFIG_COL_BIT_10 | \
Valentin Longchamp9c36b472015-11-17 10:53:33 +0100256 CSCONFIG_ODT_WR_ONLY_CURRENT)
Holger Brunck3bf8b982012-03-21 13:42:46 +0100257
258#define CONFIG_SYS_DDR_CLK_CNTL (\
259 DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05)
260
261#define CONFIG_SYS_DDR_INTERVAL (\
262 (0x080 << SDRAM_INTERVAL_BSTOPRE_SHIFT) | \
263 (0x203 << SDRAM_INTERVAL_REFINT_SHIFT))
264
265#define CONFIG_SYS_DDR_CS0_BNDS 0x0000007f
266
267#define CONFIG_SYS_DDRCDR (\
268 DDRCDR_EN | \
269 DDRCDR_Q_DRN)
270#define CONFIG_SYS_DDR_MODE 0x47860452
271#define CONFIG_SYS_DDR_MODE2 0x8080c000
272
273#define CONFIG_SYS_DDR_TIMING_0 (\
274 (2 << TIMING_CFG0_MRS_CYC_SHIFT) | \
275 (8 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) | \
276 (6 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) | \
277 (2 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) | \
278 (0 << TIMING_CFG0_WWT_SHIFT) | \
279 (0 << TIMING_CFG0_RRT_SHIFT) | \
280 (0 << TIMING_CFG0_WRT_SHIFT) | \
281 (0 << TIMING_CFG0_RWT_SHIFT))
282
283#define CONFIG_SYS_DDR_TIMING_1 ((TIMING_CFG1_CASLAT_50) | \
284 (2 << TIMING_CFG1_WRTORD_SHIFT) | \
285 (2 << TIMING_CFG1_ACTTOACT_SHIFT) | \
286 (3 << TIMING_CFG1_WRREC_SHIFT) | \
287 (7 << TIMING_CFG1_REFREC_SHIFT) | \
288 (3 << TIMING_CFG1_ACTTORW_SHIFT) | \
289 (8 << TIMING_CFG1_ACTTOPRE_SHIFT) | \
290 (3 << TIMING_CFG1_PRETOACT_SHIFT))
291
292#define CONFIG_SYS_DDR_TIMING_2 (\
293 (0xa << TIMING_CFG2_FOUR_ACT_SHIFT) | \
294 (3 << TIMING_CFG2_CKE_PLS_SHIFT) | \
295 (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) | \
296 (2 << TIMING_CFG2_RD_TO_PRE_SHIFT) | \
297 (4 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) | \
298 (5 << TIMING_CFG2_CPO_SHIFT) | \
299 (0 << TIMING_CFG2_ADD_LAT_SHIFT))
300
301#define CONFIG_SYS_DDR_TIMING_3 0x00000000
302
303/* EEprom support */
304#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
305
306/*
307 * Local Bus Configuration & Clock Setup
308 */
309#define CONFIG_SYS_LCRR_DBYP LCRR_DBYP
310#define CONFIG_SYS_LCRR_EADC LCRR_EADC_2
311#define CONFIG_SYS_LCRR_CLKDIV LCRR_CLKDIV_4
312
313/*
314 * PAXE on the local bus CS3
315 */
316#define CONFIG_SYS_PAXE_BASE 0xA0000000
317#define CONFIG_SYS_PAXE_SIZE 256
318
Mario Sixc1e29d92019-01-21 09:18:01 +0100319/* PAXE */
320#define CONFIG_SYS_BR3_PRELIM (0xA0000000 | BR_PS_8 | BR_V)
321#define CONFIG_SYS_OR3_PRELIM (OR_AM_256MB | OR_GPCM_CSNT | OR_GPCM_ACS_DIV2 | OR_GPCM_SCY_2 | OR_GPCM_TRLX_SET | OR_GPCM_EAD)
Holger Brunck3bf8b982012-03-21 13:42:46 +0100322
Holger Brunck3bf8b982012-03-21 13:42:46 +0100323#endif /* CONFIG */