Merge branch 'master' of git://git.denx.de/u-boot-nios
[platform/kernel/u-boot.git] / include / configs / tuxa1.h
1 /*
2  * Copyright (C) 2006 Freescale Semiconductor, Inc.
3  *                    Dave Liu <daveliu@freescale.com>
4  *
5  * Copyright (C) 2007 Logic Product Development, Inc.
6  *                    Peter Barada <peterb@logicpd.com>
7  *
8  * Copyright (C) 2007 MontaVista Software, Inc.
9  *                    Anton Vorontsov <avorontsov@ru.mvista.com>
10  *
11  * (C) Copyright 2008
12  * Heiko Schocher, DENX Software Engineering, hs@denx.de.
13  *
14  * (C) Copyright 2010
15  * Yan Bin, Lukas Roggli, KEYMILE Ltd, lukas.roggli@keymile.com
16  *
17  * This program is free software; you can redistribute it and/or
18  * modify it under the terms of the GNU General Public License as
19  * published by the Free Software Foundation; either version 2 of
20  * the License, or (at your option) any later version.
21  */
22
23 #ifndef __CONFIG_H
24 #define __CONFIG_H
25
26 /*
27  * High Level Configuration Options
28  */
29 #define CONFIG_TUXA1            /* TUXA1 board specific */
30 #define CONFIG_HOSTNAME         tuxa1
31 #define CONFIG_KM_BOARD_NAME   "tuxa1"
32
33 #define CONFIG_SYS_TEXT_BASE    0xF0000000
34
35 /* include common defines/options for all 8321 Keymile boards */
36 #include "km/km8321-common.h"
37
38 #define CONFIG_SYS_LPXF_BASE            0xA0000000    /* LPXF */
39 #define CONFIG_SYS_LPXF_SIZE            256 /* Megabytes */
40 #define CONFIG_SYS_PINC2_BASE           0xB0000000    /* PINC2 */
41 #define CONFIG_SYS_PINC2_SIZE           256 /* Megabytes */
42
43 /*
44  * Init Local Bus Memory Controller:
45  *
46  * Bank Bus     Machine PortSz  Size  Device
47  * ---- ---     ------- ------  -----  ------
48  *  2   Local   GPCM    8 bit  256MB    LPXF
49  *  3   Local   GPCM    8 bit  256MB    PINC2
50  *
51  */
52
53 /*
54  * LPXF on the local bus CS2
55  * Window base at flash base
56  * Window size: 256 MB
57  */
58 #define CONFIG_SYS_LBLAWBAR2_PRELIM     CONFIG_SYS_LPXF_BASE
59 #define CONFIG_SYS_LBLAWAR2_PRELIM      (LBLAWAR_EN | LBLAWAR_256MB)
60
61 #define CONFIG_SYS_BR2_PRELIM       (CONFIG_SYS_LPXF_BASE | \
62                                 BR_PS_8 | \
63                                 BR_MS_GPCM | \
64                                 BR_V)
65
66 #define CONFIG_SYS_OR2_PRELIM   (MEG_TO_AM(CONFIG_SYS_LPXF_SIZE) | \
67                                  OR_GPCM_CSNT | \
68                                  OR_GPCM_ACS_DIV4 | \
69                                  OR_GPCM_SCY_2 | \
70                                  OR_GPCM_TRLX_SET | \
71                                  OR_GPCM_EHTR_CLEAR | \
72                                  OR_GPCM_EAD)
73 /*
74  * PINC2 on the local bus CS3
75  * Access window base at PINC2 base
76  * Window size: 256 MB
77  */
78 #define CONFIG_SYS_LBLAWBAR3_PRELIM     CONFIG_SYS_PINC2_BASE
79 #define CONFIG_SYS_LBLAWAR3_PRELIM      (LBLAWAR_EN | LBLAWAR_256MB)
80
81 #define CONFIG_SYS_BR3_PRELIM   (CONFIG_SYS_PINC2_BASE | \
82                                  BR_PS_8 | \
83                                  BR_MS_GPCM | \
84                                  BR_V)
85
86 #define CONFIG_SYS_OR3_PRELIM   (MEG_TO_AM(CONFIG_SYS_PINC2_SIZE) | \
87                                  OR_GPCM_CSNT | \
88                                  OR_GPCM_ACS_DIV2 | \
89                                  OR_GPCM_SCY_2 | \
90                                  OR_GPCM_TRLX_SET | \
91                                  OR_GPCM_EHTR_CLEAR)
92
93 #define CONFIG_SYS_MAMR         (MxMR_GPL_x4DIS | \
94                                  0x0000c000 | \
95                                  MxMR_WLFx_2X)
96
97 /*
98  * MMU Setup
99  */
100 /* LPXF:  icache cacheable, but dcache-inhibit and guarded */
101 #define CONFIG_SYS_IBAT5L       (CONFIG_SYS_LPXF_BASE | BATL_PP_RW | \
102                                  BATL_MEMCOHERENCE)
103 #define CONFIG_SYS_IBAT5U       (CONFIG_SYS_LPXF_BASE | BATU_BL_256M | \
104                                  BATU_VS | BATU_VP)
105 #define CONFIG_SYS_DBAT5L       (CONFIG_SYS_LPXF_BASE | BATL_PP_RW | \
106                                  BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
107 #define CONFIG_SYS_DBAT5U       CONFIG_SYS_IBAT5U
108
109 /* PINC2:  icache cacheable, but dcache-inhibit and guarded */
110 #define CONFIG_SYS_IBAT6L       (CONFIG_SYS_PINC2_BASE | BATL_PP_RW | \
111                                  BATL_MEMCOHERENCE)
112 #define CONFIG_SYS_IBAT6U       (CONFIG_SYS_PINC2_BASE | BATU_BL_256M | \
113                                  BATU_VS | BATU_VP)
114 #define CONFIG_SYS_DBAT6L       (CONFIG_SYS_PINC2_BASE | BATL_PP_RW | \
115                                  BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
116 #define CONFIG_SYS_DBAT6U       CONFIG_SYS_IBAT6U
117
118 #define CONFIG_SYS_IBAT7L       (0)
119 #define CONFIG_SYS_IBAT7U       (0)
120 #define CONFIG_SYS_DBAT7L       CONFIG_SYS_IBAT7L
121 #define CONFIG_SYS_DBAT7U       CONFIG_SYS_IBAT7U
122
123 #endif /* __CONFIG_H */