]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/tuda1.h
Merge branch 'master' of /home/wd/git/u-boot/master
[karo-tx-uboot.git] / include / configs / tuda1.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-2011
15  * 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_TUDA1            /* TUDA1 board specific */
30 #define CONFIG_HOSTNAME         tuda1
31 #define CONFIG_KM_BOARD_NAME   "tuda1"
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_APP1_BASE    0xA0000000    /* PAXG */
39 #define CONFIG_SYS_APP1_SIZE    256 /* Megabytes */
40 #define CONFIG_SYS_APP2_BASE    0xB0000000    /* PINC3 */
41 #define CONFIG_SYS_APP2_SIZE    256 /* Megabytes */
42
43 /*
44  * Local Bus Configuration & Clock Setup
45  */
46 #define CONFIG_SYS_LCRR         (LCRR_DBYP | LCRR_EADC_1 | LCRR_CLKDIV_2)
47 #define CONFIG_SYS_LBC_LBCR     0x00000000
48
49 /*
50  * Init Local Bus Memory Controller:
51  *
52  * Bank Bus     Machine PortSz  Size  Device
53  * ---- ---     ------- ------  -----  ------
54  *  2   Local   GPCM    8 bit  256MB    PAXG
55  *  3   Local   GPCM    8 bit  256MB    PINC3
56  *
57  */
58
59 /*
60  * PAXG on the local bus CS2
61  */
62 /* Window base at flash base */
63 #define CONFIG_SYS_LBLAWBAR2_PRELIM     CONFIG_SYS_APP1_BASE
64 /* Window size: 256 MB */
65 #define CONFIG_SYS_LBLAWAR2_PRELIM      (LBLAWAR_EN | LBLAWAR_256MB)
66
67 #define CONFIG_SYS_BR2_PRELIM   (CONFIG_SYS_APP1_BASE | \
68                                  BR_PS_8 | \
69                                  BR_MS_GPCM | \
70                                  BR_V)
71
72 #define CONFIG_SYS_OR2_PRELIM   (MEG_TO_AM(CONFIG_SYS_APP1_SIZE) | \
73                                  OR_GPCM_CSNT | \
74                                  OR_GPCM_ACS_DIV4 | \
75                                  OR_GPCM_SCY_2 | \
76                                  (OR_GPCM_TRLX & \
77                                  (~OR_GPCM_EHTR)) |  /* EHTR = 0 */ \
78                                  OR_GPCM_EAD)
79 /*
80  * PINC3 on the local bus CS3
81  */
82 /* Access window base at PINC3 base */
83 #define CONFIG_SYS_LBLAWBAR3_PRELIM     CONFIG_SYS_APP2_BASE
84 /* Window size: 256 MB */
85 #define CONFIG_SYS_LBLAWAR3_PRELIM      (LBLAWAR_EN | LBLAWAR_256MB)
86
87 #define CONFIG_SYS_BR3_PRELIM   (CONFIG_SYS_APP2_BASE | \
88                                  BR_PS_8 |              \
89                                  BR_MS_GPCM |           \
90                                  BR_V)
91
92 #define CONFIG_SYS_OR3_PRELIM   (MEG_TO_AM(CONFIG_SYS_APP2_SIZE) | \
93                                  OR_GPCM_CSNT | \
94                                  (OR_GPCM_ACS_DIV2 & /* ACS = 11 */\
95                                  (~OR_GPCM_XACS)) |  /* XACS = 0 */\
96                                  (OR_GPCM_SCY_2 & \
97                                  (~OR_GPCM_EHTR)) |  /* EHTR = 0 */ \
98                                  OR_GPCM_TRLX)
99
100 #define CONFIG_SYS_MAMR         (MxMR_GPL_x4DIS | \
101                                  0x0000c000 | \
102                                  MxMR_WLFx_2X)
103
104 /*
105  * MMU Setup
106  */
107 /* PAXG:  icache cacheable, but dcache-inhibit and guarded */
108 #define CONFIG_SYS_IBAT5L       (CONFIG_SYS_APP1_BASE | \
109                                  BATL_PP_10 | \
110                                  BATL_MEMCOHERENCE)
111 /* 512M should also include APP2... */
112 #define CONFIG_SYS_IBAT5U       (CONFIG_SYS_APP1_BASE | \
113                                  BATU_BL_256M | \
114                                  BATU_VS | \
115                                  BATU_VP)
116 #define CONFIG_SYS_DBAT5L       (CONFIG_SYS_APP1_BASE | \
117                                  BATL_PP_10 | \
118                                  BATL_CACHEINHIBIT | \
119                                  BATL_GUARDEDSTORAGE)
120 #define CONFIG_SYS_DBAT5U       CONFIG_SYS_IBAT5U
121
122 /* PINC3:  icache cacheable, but dcache-inhibit and guarded */
123 #define CONFIG_SYS_IBAT6L       (CONFIG_SYS_APP2_BASE | \
124                                  BATL_PP_10 | \
125                                  BATL_MEMCOHERENCE)
126 #define CONFIG_SYS_IBAT6U       (CONFIG_SYS_APP2_BASE | \
127                                  BATU_BL_256M | \
128                                  BATU_VS | \
129                                  BATU_VP)
130 #define CONFIG_SYS_DBAT6L       (CONFIG_SYS_APP2_BASE | \
131                                  BATL_PP_10 | \
132                                  BATL_CACHEINHIBIT | \
133                                  BATL_GUARDEDSTORAGE)
134 #define CONFIG_SYS_DBAT6U       CONFIG_SYS_IBAT6U
135
136 #define CONFIG_SYS_IBAT7L       (0)
137 #define CONFIG_SYS_IBAT7U       (0)
138 #define CONFIG_SYS_DBAT7L       CONFIG_SYS_IBAT7L
139 #define CONFIG_SYS_DBAT7U       CONFIG_SYS_IBAT7U
140
141 #endif /* __CONFIG_H */