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 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
24 * High Level Configuration Options
26 #define CONFIG_SUVD3 /* SUVD3 board specific */
27 #define CONFIG_HOSTNAME suvd3
28 #define CONFIG_KM_BOARD_NAME "suvd3"
30 #define CONFIG_SYS_TEXT_BASE 0xF0000000
32 /* include common defines/options for all 8321 Keymile boards */
33 #include "km/km8321-common.h"
35 #define CONFIG_SYS_APP1_BASE 0xA0000000
36 #define CONFIG_SYS_APP1_SIZE 256 /* Megabytes */
37 #define CONFIG_SYS_APP2_BASE 0xB0000000
38 #define CONFIG_SYS_APP2_SIZE 256 /* Megabytes */
41 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
44 * Init Local Bus Memory Controller:
46 * Bank Bus Machine PortSz Size Device
47 * ---- --- ------- ------ ----- ------
48 * 2 Local UPMA 16 bit 256MB APP1
49 * 3 Local GPCM 16 bit 256MB APP2
54 * APP1 on the local bus CS2
56 #define CONFIG_SYS_LBLAWBAR2_PRELIM CONFIG_SYS_APP1_BASE
57 #define CONFIG_SYS_LBLAWAR2_PRELIM (LBLAWAR_EN | LBLAWAR_256MB)
59 #define CONFIG_SYS_BR2_PRELIM (CONFIG_SYS_APP1_BASE | \
63 #define CONFIG_SYS_OR2_PRELIM (MEG_TO_AM(CONFIG_SYS_APP1_SIZE))
65 #define CONFIG_SYS_BR3_PRELIM (CONFIG_SYS_APP2_BASE | \
69 #define CONFIG_SYS_OR3_PRELIM (MEG_TO_AM(CONFIG_SYS_APP2_SIZE) | \
75 #define CONFIG_SYS_MAMR (MxMR_GPL_x4DIS | \
79 #define CONFIG_SYS_LBLAWBAR3_PRELIM CONFIG_SYS_APP2_BASE
80 #define CONFIG_SYS_LBLAWAR3_PRELIM (LBLAWAR_EN | LBLAWAR_256MB)
87 /* APP1: icache cacheable, but dcache-inhibit and guarded */
88 #define CONFIG_SYS_IBAT5L (CONFIG_SYS_APP1_BASE | BATL_PP_RW | \
90 #define CONFIG_SYS_IBAT5U (CONFIG_SYS_APP1_BASE | BATU_BL_256M | \
92 #define CONFIG_SYS_DBAT5L (CONFIG_SYS_APP1_BASE | BATL_PP_RW | \
93 BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
94 #define CONFIG_SYS_DBAT5U CONFIG_SYS_IBAT5U
96 #define CONFIG_SYS_IBAT6L (CONFIG_SYS_APP2_BASE | BATL_PP_RW | \
98 #define CONFIG_SYS_IBAT6U (CONFIG_SYS_APP2_BASE | BATU_BL_256M | \
100 #define CONFIG_SYS_DBAT6L (CONFIG_SYS_APP2_BASE | BATL_PP_RW | \
101 BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
102 #define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U
104 #endif /* __CONFIG_H */