2 * Copyright (C) 2006 Freescale Semiconductor, Inc.
3 * Dave Liu <daveliu@freescale.com>
5 * Copyright (C) 2007 Logic Product Development, Inc.
6 * Peter Barada <peterb@logicpd.com>
8 * Copyright (C) 2007 MontaVista Software, Inc.
9 * Anton Vorontsov <avorontsov@ru.mvista.com>
12 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
14 * (C) Copyright 2010-2013
15 * Lukas Roggli, KEYMILE Ltd, lukas.roggli@keymile.com
16 * Holger Brunck, Keymile GmbH, holger.bruncl@keymile.com
18 * SPDX-License-Identifier: GPL-2.0+
25 * High Level Configuration Options
27 #if defined(CONFIG_KMSUPX5)
28 #define CONFIG_KM_BOARD_NAME "kmsupx5"
29 #define CONFIG_HOSTNAME kmsupx5
30 #elif defined(CONFIG_TUGE1)
31 #define CONFIG_KM_BOARD_NAME "tuge1"
32 #define CONFIG_HOSTNAME tuge1
33 #elif defined(CONFIG_TUXX1) /* TUXX1 board (tuxa1/tuda1) specific */
34 #define CONFIG_KM_BOARD_NAME "tuxx1"
35 #define CONFIG_HOSTNAME tuxx1
36 #elif defined(CONFIG_KMOPTI2)
37 #define CONFIG_KM_BOARD_NAME "kmopti2"
38 #define CONFIG_HOSTNAME kmopti2
39 #elif defined(CONFIG_KMTEPR2)
40 #define CONFIG_KM_BOARD_NAME "kmtepr2"
41 #define CONFIG_HOSTNAME kmtepr2
43 #error ("Board not supported")
46 #define CONFIG_SYS_TEXT_BASE 0xF0000000
48 /* include common defines/options for all 8321 Keymile boards */
49 #include "km/km8321-common.h"
51 #define CONFIG_SYS_APP1_BASE 0xA0000000 /* PAXG */
52 #define CONFIG_SYS_APP1_SIZE 256 /* Megabytes */
53 #if defined(CONFIG_TUXX1) || defined(CONFIG_KMOPTI2) || defined(CONFIG_KMTEPR2)
54 #define CONFIG_SYS_APP2_BASE 0xB0000000 /* PINC3 */
55 #define CONFIG_SYS_APP2_SIZE 256 /* Megabytes */
59 * Init Local Bus Memory Controller:
61 * Bank Bus Machine PortSz Size TUDA1 TUXA1 TUGE1 KMSUPX4 KMOPTI2
62 * -----------------------------------------------------------------------------
63 * 2 Local GPCM 8 bit 256MB PAXG LPXF PAXI LPXF PAXE
64 * 3 Local GPCM 8 bit 256MB PINC3 PINC2 unused unused OPI2(16 bit)
66 * Device on board (continued)
67 * Bank Bus Machine PortSz Size KMTEPR2
68 * -----------------------------------------------------------------------------
69 * 2 Local GPCM 8 bit 256MB NVRAM
70 * 3 Local GPCM 8 bit 256MB TEP2 (16 bit)
73 #if defined(CONFIG_KMTEPRO2)
75 * Configuration for C2 (NVRAM) on the local bus
77 #define CONFIG_SYS_LBLAWBAR2_PRELIM CONFIG_SYS_APP1_BASE
78 #define CONFIG_SYS_LBLAWAR2_PRELIM (LBLAWAR_EN | LBLAWAR_256MB)
79 #define CONFIG_SYS_BR2_PRELIM (CONFIG_SYS_APP1_BASE | \
83 #define CONFIG_SYS_OR2_PRELIM (MEG_TO_AM(CONFIG_SYS_APP1_SIZE) | \
93 * Configuration for C2 on the local bus
95 /* Window base at flash base */
96 #define CONFIG_SYS_LBLAWBAR2_PRELIM CONFIG_SYS_APP1_BASE
97 /* Window size: 256 MB */
98 #define CONFIG_SYS_LBLAWAR2_PRELIM (LBLAWAR_EN | LBLAWAR_256MB)
100 #define CONFIG_SYS_BR2_PRELIM (CONFIG_SYS_APP1_BASE | \
105 #define CONFIG_SYS_OR2_PRELIM (MEG_TO_AM(CONFIG_SYS_APP1_SIZE) | \
110 OR_GPCM_EHTR_CLEAR | \
114 #if defined(CONFIG_TUXX1)
116 * Configuration for C3 on the local bus
118 /* Access window base at PINC3 base */
119 #define CONFIG_SYS_LBLAWBAR3_PRELIM CONFIG_SYS_APP2_BASE
120 /* Window size: 256 MB */
121 #define CONFIG_SYS_LBLAWAR3_PRELIM (LBLAWAR_EN | LBLAWAR_256MB)
123 #define CONFIG_SYS_BR3_PRELIM (CONFIG_SYS_APP2_BASE | \
128 #define CONFIG_SYS_OR3_PRELIM (MEG_TO_AM(CONFIG_SYS_APP2_SIZE) | \
135 #define CONFIG_SYS_MAMR (MxMR_GPL_x4DIS | \
140 #if defined(CONFIG_KMOPTI2) || defined(CONFIG_KMTEPR2)
142 * Configuration for C3 on the local bus
144 #define CONFIG_SYS_LBLAWBAR3_PRELIM CONFIG_SYS_APP2_BASE
145 #define CONFIG_SYS_LBLAWAR3_PRELIM (LBLAWAR_EN | LBLAWAR_256MB)
146 #define CONFIG_SYS_BR3_PRELIM (CONFIG_SYS_APP2_BASE | \
150 #define CONFIG_SYS_OR3_PRELIM (MEG_TO_AM(CONFIG_SYS_APP2_SIZE) | \
152 OR_GPCM_TRLX_CLEAR | \
159 /* APP1: icache cacheable, but dcache-inhibit and guarded */
160 #define CONFIG_SYS_IBAT5L (CONFIG_SYS_APP1_BASE | \
163 /* 512M should also include APP2... */
164 #define CONFIG_SYS_IBAT5U (CONFIG_SYS_APP1_BASE | \
168 #define CONFIG_SYS_DBAT5L (CONFIG_SYS_APP1_BASE | \
170 BATL_CACHEINHIBIT | \
172 #define CONFIG_SYS_DBAT5U CONFIG_SYS_IBAT5U
174 #if defined(CONFIG_TUGE1) || defined(CONFIG_KMSUPX5)
175 #define CONFIG_SYS_IBAT6L (0)
176 #define CONFIG_SYS_IBAT6U (0)
177 #define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L
179 /* APP2: icache cacheable, but dcache-inhibit and guarded */
180 #define CONFIG_SYS_IBAT6L (CONFIG_SYS_APP2_BASE | \
183 #define CONFIG_SYS_IBAT6U (CONFIG_SYS_APP2_BASE | \
187 #define CONFIG_SYS_DBAT6L (CONFIG_SYS_APP2_BASE | \
189 BATL_CACHEINHIBIT | \
192 #define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U
194 #define CONFIG_SYS_IBAT7L (0)
195 #define CONFIG_SYS_IBAT7U (0)
196 #define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L
197 #define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U
199 #endif /* __CONFIG_H */