]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - include/configs/tuda1.h
powerpc/83xx/km: remove obsolete defines for tuda1
[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  * Init Local Bus Memory Controller:
45  *
46  * Bank Bus     Machine PortSz  Size  Device
47  * ---- ---     ------- ------  -----  ------
48  *  2   Local   GPCM    8 bit  256MB    PAXG
49  *  3   Local   GPCM    8 bit  256MB    PINC3
50  *
51  */
52
53 /*
54  * PAXG on the local bus CS2
55  */
56 /* Window base at flash base */
57 #define CONFIG_SYS_LBLAWBAR2_PRELIM     CONFIG_SYS_APP1_BASE
58 /* Window size: 256 MB */
59 #define CONFIG_SYS_LBLAWAR2_PRELIM      (LBLAWAR_EN | LBLAWAR_256MB)
60
61 #define CONFIG_SYS_BR2_PRELIM   (CONFIG_SYS_APP1_BASE | \
62                                  BR_PS_8 | \
63                                  BR_MS_GPCM | \
64                                  BR_V)
65
66 #define CONFIG_SYS_OR2_PRELIM   (MEG_TO_AM(CONFIG_SYS_APP1_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  * PINC3 on the local bus CS3
75  */
76 /* Access window base at PINC3 base */
77 #define CONFIG_SYS_LBLAWBAR3_PRELIM     CONFIG_SYS_APP2_BASE
78 /* Window size: 256 MB */
79 #define CONFIG_SYS_LBLAWAR3_PRELIM      (LBLAWAR_EN | LBLAWAR_256MB)
80
81 #define CONFIG_SYS_BR3_PRELIM   (CONFIG_SYS_APP2_BASE | \
82                                  BR_PS_8 |              \
83                                  BR_MS_GPCM |           \
84                                  BR_V)
85
86 #define CONFIG_SYS_OR3_PRELIM   (MEG_TO_AM(CONFIG_SYS_APP2_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 /* PAXG:  icache cacheable, but dcache-inhibit and guarded */
101 #define CONFIG_SYS_IBAT5L       (CONFIG_SYS_APP1_BASE | \
102                                  BATL_PP_RW | \
103                                  BATL_MEMCOHERENCE)
104 /* 512M should also include APP2... */
105 #define CONFIG_SYS_IBAT5U       (CONFIG_SYS_APP1_BASE | \
106                                  BATU_BL_256M | \
107                                  BATU_VS | \
108                                  BATU_VP)
109 #define CONFIG_SYS_DBAT5L       (CONFIG_SYS_APP1_BASE | \
110                                  BATL_PP_RW | \
111                                  BATL_CACHEINHIBIT | \
112                                  BATL_GUARDEDSTORAGE)
113 #define CONFIG_SYS_DBAT5U       CONFIG_SYS_IBAT5U
114
115 /* PINC3:  icache cacheable, but dcache-inhibit and guarded */
116 #define CONFIG_SYS_IBAT6L       (CONFIG_SYS_APP2_BASE | \
117                                  BATL_PP_RW | \
118                                  BATL_MEMCOHERENCE)
119 #define CONFIG_SYS_IBAT6U       (CONFIG_SYS_APP2_BASE | \
120                                  BATU_BL_256M | \
121                                  BATU_VS | \
122                                  BATU_VP)
123 #define CONFIG_SYS_DBAT6L       (CONFIG_SYS_APP2_BASE | \
124                                  BATL_PP_RW | \
125                                  BATL_CACHEINHIBIT | \
126                                  BATL_GUARDEDSTORAGE)
127 #define CONFIG_SYS_DBAT6U       CONFIG_SYS_IBAT6U
128
129 #define CONFIG_SYS_IBAT7L       (0)
130 #define CONFIG_SYS_IBAT7U       (0)
131 #define CONFIG_SYS_DBAT7L       CONFIG_SYS_IBAT7L
132 #define CONFIG_SYS_DBAT7U       CONFIG_SYS_IBAT7U
133
134 #endif /* __CONFIG_H */