]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/inka4x0/inka4x0.c
Merge branch 'master' of /home/wd/git/u-boot/master/
[karo-tx-uboot.git] / board / inka4x0 / inka4x0.c
1 /*
2  * (C) Copyright 2003-2004
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * (C) Copyright 2004
6  * Mark Jonas, Freescale Semiconductor, mark.jonas@motorola.com.
7  *
8  * (C) Copyright 2004
9  * Martin Krause, TQ-Systems GmbH, martin.krause@tqs.de
10  *
11  * See file CREDITS for list of people who contributed to this
12  * project.
13  *
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.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27  * MA 02111-1307 USA
28  */
29
30 #include <common.h>
31 #include <mpc5xxx.h>
32 #include <pci.h>
33
34 #if defined(CONFIG_DDR_MT46V16M16)
35 #include "mt46v16m16-75.h"
36 #elif defined(CONFIG_SDR_MT48LC16M16A2)
37 #include "mt48lc16m16a2-75.h"
38 #elif defined(CONFIG_DDR_MT46V32M16)
39 #include "mt46v32m16.h"
40 #elif defined(CONFIG_DDR_HYB25D512160BF)
41 #include "hyb25d512160bf.h"
42 #elif defined(CONFIG_DDR_K4H511638C)
43 #include "k4h511638c.h"
44 #else
45 #error "INKA4x0 SDRAM: invalid chip type specified!"
46 #endif
47
48 #ifndef CFG_RAMBOOT
49 static void sdram_start (int hi_addr)
50 {
51         long hi_addr_bit = hi_addr ? 0x01000000 : 0;
52
53         /* unlock mode register */
54         *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000000 | hi_addr_bit;
55         __asm__ volatile ("sync");
56
57         /* precharge all banks */
58         *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000002 | hi_addr_bit;
59         __asm__ volatile ("sync");
60
61 #if SDRAM_DDR
62         /* set mode register: extended mode */
63         *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_EMODE;
64         __asm__ volatile ("sync");
65
66         /* set mode register: reset DLL */
67         *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_MODE | 0x04000000;
68         __asm__ volatile ("sync");
69 #endif
70
71         /* precharge all banks */
72         *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000002 | hi_addr_bit;
73         __asm__ volatile ("sync");
74
75         /* auto refresh */
76         *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000004 | hi_addr_bit;
77         __asm__ volatile ("sync");
78
79         /* set mode register */
80         *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_MODE;
81         __asm__ volatile ("sync");
82
83         /* normal operation */
84         *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | hi_addr_bit;
85         __asm__ volatile ("sync");
86 }
87 #endif
88
89 /*
90  * ATTENTION: Although partially referenced initdram does NOT make real use
91  *            use of CFG_SDRAM_BASE. The code does not work if CFG_SDRAM_BASE
92  *            is something else than 0x00000000.
93  */
94
95 long int initdram (int board_type)
96 {
97         ulong dramsize = 0;
98 #ifndef CFG_RAMBOOT
99         long test1, test2;
100
101         /* setup SDRAM chip selects */
102         *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x0000001c; /* 512MB at 0x0 */
103         *(vu_long *)MPC5XXX_SDRAM_CS1CFG = 0x40000000; /* disabled */
104         __asm__ volatile ("sync");
105
106         /* setup config registers */
107         *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = SDRAM_CONFIG1;
108         *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = SDRAM_CONFIG2;
109         __asm__ volatile ("sync");
110
111 #if SDRAM_DDR
112         /* set tap delay */
113         *(vu_long *)MPC5XXX_CDM_PORCFG = SDRAM_TAPDELAY;
114         __asm__ volatile ("sync");
115 #endif
116
117         /* find RAM size using SDRAM CS0 only */
118         sdram_start(0);
119         test1 = get_ram_size((long *)CFG_SDRAM_BASE, 0x20000000);
120         sdram_start(1);
121         test2 = get_ram_size((long *)CFG_SDRAM_BASE, 0x20000000);
122         if (test1 > test2) {
123                 sdram_start(0);
124                 dramsize = test1;
125         } else {
126                 dramsize = test2;
127         }
128
129         /* memory smaller than 1MB is impossible */
130         if (dramsize < (1 << 20)) {
131                 dramsize = 0;
132         }
133
134         /* set SDRAM CS0 size according to the amount of RAM found */
135         if (dramsize > 0) {
136                 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x13 +
137                         __builtin_ffs(dramsize >> 20) - 1;
138         } else {
139                 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0; /* disabled */
140         }
141
142         *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize; /* disabled */
143 #else /* CFG_RAMBOOT */
144
145         /* retrieve size of memory connected to SDRAM CS0 */
146         dramsize = *(vu_long *)MPC5XXX_SDRAM_CS0CFG & 0xFF;
147         if (dramsize >= 0x13) {
148                 dramsize = (1 << (dramsize - 0x13)) << 20;
149         } else {
150                 dramsize = 0;
151         }
152
153         /* retrieve size of memory connected to SDRAM CS1 */
154         dramsize2 = *(vu_long *)MPC5XXX_SDRAM_CS1CFG & 0xFF;
155         if (dramsize2 >= 0x13) {
156                 dramsize2 = (1 << (dramsize2 - 0x13)) << 20;
157         } else {
158                 dramsize2 = 0;
159         }
160
161 #endif /* CFG_RAMBOOT */
162
163 /*      return dramsize + dramsize2; */
164         return dramsize;
165 }
166
167 int checkboard (void)
168 {
169         puts ("Board: INKA 4X0\n");
170         return 0;
171 }
172
173 void flash_preinit(void)
174 {
175         /*
176          * Now, when we are in RAM, enable flash write
177          * access for detection process.
178          * Note that CS_BOOT cannot be cleared when
179          * executing in flash.
180          */
181         *(vu_long *)MPC5XXX_BOOTCS_CFG &= ~0x1; /* clear RO */
182 }
183
184 int misc_init_f (void)
185 {
186         char tmp[10];
187         int i, br;
188
189         i = getenv_r("brightness", tmp, sizeof(tmp));
190         br = (i > 0)
191                 ? (int) simple_strtoul (tmp, NULL, 10)
192                 : CFG_BRIGHTNESS;
193         if (br > 255)
194                 br = 255;
195
196         /* Initialize GPIO output pins.
197          */
198         /* Configure GPT as GPIO output (and set them as they control low-active LEDs */
199         *(vu_long *)MPC5XXX_GPT0_ENABLE =
200         *(vu_long *)MPC5XXX_GPT1_ENABLE =
201         *(vu_long *)MPC5XXX_GPT2_ENABLE =
202         *(vu_long *)MPC5XXX_GPT3_ENABLE =
203         *(vu_long *)MPC5XXX_GPT4_ENABLE =
204         *(vu_long *)MPC5XXX_GPT5_ENABLE = 0x34;
205
206         /* Configure GPT7 as PWM timer, 1kHz, no ints. */
207         *(vu_long *)MPC5XXX_GPT7_ENABLE = 0;/* Disable */
208         *(vu_long *)MPC5XXX_GPT7_COUNTER = 0x020000fe;
209         *(vu_long *)MPC5XXX_GPT7_PWMCFG = (br << 16);
210         *(vu_long *)MPC5XXX_GPT7_ENABLE = 0x3;/* Enable PWM mode and start */
211
212         /* Configure PSC3_6,7 as GPIO output */
213         *(vu_long *)MPC5XXX_GPIO_ENABLE |= 0x00003000;
214         *(vu_long *)MPC5XXX_GPIO_DIR |= 0x00003000;
215
216         /* Configure PSC3_8 as GPIO output, no interrupt */
217         *(vu_long *)MPC5XXX_GPIO_SI_ENABLE |= 0x04000000;
218         *(vu_long *)MPC5XXX_GPIO_SI_DIR |= 0x04000000;
219         *(vu_long *)MPC5XXX_GPIO_SI_IEN &= ~0x04000000;
220
221         /* Configure PSC3_9 and GPIO_WKUP6,7 as GPIO output */
222         *(vu_long *)MPC5XXX_WU_GPIO_ENABLE |= 0xc4000000;
223         *(vu_long *)MPC5XXX_WU_GPIO_DIR |= 0xc4000000;
224
225         /* Set LR mirror bit because it is low-active */
226         *(vu_long *) MPC5XXX_WU_GPIO_DATA_O    |= GPIO_WKUP_7;
227         /*
228          * Reset Coral-P graphics controller
229          */
230         *(vu_long *) MPC5XXX_WU_GPIO_ENABLE |= GPIO_PSC3_9;
231         *(vu_long *) MPC5XXX_WU_GPIO_DIR    |= GPIO_PSC3_9;
232         *(vu_long *) MPC5XXX_WU_GPIO_DATA_O   |= GPIO_PSC3_9;
233         return 0;
234 }
235
236 #ifdef  CONFIG_PCI
237 static struct pci_controller hose;
238
239 extern void pci_mpc5xxx_init(struct pci_controller *);
240
241 void pci_init_board(void)
242 {
243         pci_mpc5xxx_init(&hose);
244 }
245 #endif
246
247 #if defined(CONFIG_CMD_IDE) && defined(CONFIG_IDE_RESET)
248
249 void init_ide_reset (void)
250 {
251         debug ("init_ide_reset\n");
252
253         /* Configure PSC1_4 as GPIO output for ATA reset */
254         *(vu_long *) MPC5XXX_WU_GPIO_ENABLE |= GPIO_PSC1_4;
255         *(vu_long *) MPC5XXX_WU_GPIO_DIR    |= GPIO_PSC1_4;
256         /* Deassert reset */
257         *(vu_long *) MPC5XXX_WU_GPIO_DATA_O   |= GPIO_PSC1_4;
258 }
259
260 void ide_set_reset (int idereset)
261 {
262         debug ("ide_reset(%d)\n", idereset);
263
264         if (idereset) {
265                 *(vu_long *) MPC5XXX_WU_GPIO_DATA_O &= ~GPIO_PSC1_4;
266                 /* Make a delay. MPC5200 spec says 25 usec min */
267                 udelay(500000);
268         } else {
269                 *(vu_long *) MPC5XXX_WU_GPIO_DATA_O |=  GPIO_PSC1_4;
270         }
271 }
272 #endif