]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/inka4x0/inka4x0.c
Coding Style cleanup: remove trailing white space
[karo-tx-uboot.git] / board / inka4x0 / inka4x0.c
1 /*
2  * (C) Copyright 2008-2009
3  * Andreas Pfefferle, DENX Software Engineering, ap@denx.de.
4  *
5  * (C) Copyright 2009
6  * Detlev Zundel, DENX Software Engineering, dzu@denx.de.
7  *
8  * (C) Copyright 2004
9  * Mark Jonas, Freescale Semiconductor, mark.jonas@motorola.com.
10  *
11  * (C) Copyright 2004
12  * Martin Krause, TQ-Systems GmbH, martin.krause@tqs.de
13  *
14  * (C) Copyright 2003-2004
15  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
16  *
17  * SPDX-License-Identifier:     GPL-2.0+
18  */
19
20 #include <asm/io.h>
21 #include <common.h>
22 #include <mpc5xxx.h>
23 #include <pci.h>
24
25 #if defined(CONFIG_DDR_MT46V16M16)
26 #include "mt46v16m16-75.h"
27 #elif defined(CONFIG_SDR_MT48LC16M16A2)
28 #include "mt48lc16m16a2-75.h"
29 #elif defined(CONFIG_DDR_MT46V32M16)
30 #include "mt46v32m16.h"
31 #elif defined(CONFIG_DDR_HYB25D512160BF)
32 #include "hyb25d512160bf.h"
33 #elif defined(CONFIG_DDR_K4H511638C)
34 #include "k4h511638c.h"
35 #else
36 #error "INKA4x0 SDRAM: invalid chip type specified!"
37 #endif
38
39 #ifndef CONFIG_SYS_RAMBOOT
40 static void sdram_start (int hi_addr)
41 {
42         volatile struct mpc5xxx_sdram *sdram =
43                 (struct mpc5xxx_sdram *)MPC5XXX_SDRAM;
44         long hi_addr_bit = hi_addr ? 0x01000000 : 0;
45
46         /* unlock mode register */
47         out_be32(&sdram->ctrl, SDRAM_CONTROL | 0x80000000 | hi_addr_bit);
48
49         /* precharge all banks */
50         out_be32(&sdram->ctrl, SDRAM_CONTROL | 0x80000002 | hi_addr_bit);
51
52 #if SDRAM_DDR
53         /* set mode register: extended mode */
54         out_be32(&sdram->mode, SDRAM_EMODE);
55
56         /* set mode register: reset DLL */
57         out_be32(&sdram->mode, SDRAM_MODE | 0x04000000);
58 #endif
59
60         /* precharge all banks */
61         out_be32(&sdram->ctrl, SDRAM_CONTROL | 0x80000002 | hi_addr_bit);
62
63         /* auto refresh */
64         out_be32(&sdram->ctrl, SDRAM_CONTROL | 0x80000004 | hi_addr_bit);
65
66         /* set mode register */
67         out_be32(&sdram->mode, SDRAM_MODE);
68
69         /* normal operation */
70         out_be32(&sdram->ctrl, SDRAM_CONTROL | hi_addr_bit);
71 }
72 #endif
73
74 /*
75  * ATTENTION: Although partially referenced initdram does NOT make real use
76  *            use of CONFIG_SYS_SDRAM_BASE. The code does not work if CONFIG_SYS_SDRAM_BASE
77  *            is something else than 0x00000000.
78  */
79
80 phys_size_t initdram (int board_type)
81 {
82         volatile struct mpc5xxx_mmap_ctl *mm =
83                 (struct mpc5xxx_mmap_ctl *) CONFIG_SYS_MBAR;
84         volatile struct mpc5xxx_cdm     *cdm =
85                 (struct mpc5xxx_cdm *)      MPC5XXX_CDM;
86         volatile struct mpc5xxx_sdram *sdram =
87                 (struct mpc5xxx_sdram *)    MPC5XXX_SDRAM;
88         ulong dramsize = 0;
89 #ifndef CONFIG_SYS_RAMBOOT
90         long test1, test2;
91
92         /* setup SDRAM chip selects */
93         out_be32(&mm->sdram0, 0x0000001c);      /* 512MB at 0x0 */
94         out_be32(&mm->sdram1, 0x40000000);      /* disabled */
95
96         /* setup config registers */
97         out_be32(&sdram->config1, SDRAM_CONFIG1);
98         out_be32(&sdram->config2, SDRAM_CONFIG2);
99
100 #if SDRAM_DDR
101         /* set tap delay */
102         out_be32(&cdm->porcfg, SDRAM_TAPDELAY);
103 #endif
104
105         /* find RAM size using SDRAM CS0 only */
106         sdram_start(0);
107         test1 = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE, 0x20000000);
108         sdram_start(1);
109         test2 = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE, 0x20000000);
110         if (test1 > test2) {
111                 sdram_start(0);
112                 dramsize = test1;
113         } else {
114                 dramsize = test2;
115         }
116
117         /* memory smaller than 1MB is impossible */
118         if (dramsize < (1 << 20)) {
119                 dramsize = 0;
120         }
121
122         /* set SDRAM CS0 size according to the amount of RAM found */
123         if (dramsize > 0) {
124                 out_be32(&mm->sdram0, 0x13 +
125                          __builtin_ffs(dramsize >> 20) - 1);
126         } else {
127                 out_be32(&mm->sdram0, 0); /* disabled */
128         }
129
130         out_be32(&mm->sdram1, dramsize); /* disabled */
131 #else /* CONFIG_SYS_RAMBOOT */
132
133         /* retrieve size of memory connected to SDRAM CS0 */
134         dramsize = in_be32(&mm->sdram0) & 0xFF;
135         if (dramsize >= 0x13) {
136                 dramsize = (1 << (dramsize - 0x13)) << 20;
137         } else {
138                 dramsize = 0;
139         }
140 #endif /* CONFIG_SYS_RAMBOOT */
141
142         return dramsize;
143 }
144
145 int checkboard (void)
146 {
147         puts ("Board: INKA 4X0\n");
148         return 0;
149 }
150
151 void flash_preinit(void)
152 {
153         volatile struct mpc5xxx_lpb *lpb = (struct mpc5xxx_lpb *)MPC5XXX_LPB;
154
155         /*
156          * Now, when we are in RAM, enable flash write
157          * access for detection process.
158          * Note that CS_BOOT (CS0) cannot be cleared when
159          * executing in flash.
160          */
161         clrbits_be32(&lpb->cs0_cfg, 0x1); /* clear RO */
162 }
163
164 int misc_init_f (void)
165 {
166         volatile struct mpc5xxx_gpio    *gpio    =
167                 (struct mpc5xxx_gpio *)   MPC5XXX_GPIO;
168         volatile struct mpc5xxx_wu_gpio *wu_gpio =
169                 (struct mpc5xxx_wu_gpio *)MPC5XXX_WU_GPIO;
170         volatile struct mpc5xxx_gpt     *gpt;
171         char tmp[10];
172         int i, br;
173
174         i = getenv_f("brightness", tmp, sizeof(tmp));
175         br = (i > 0)
176                 ? (int) simple_strtoul (tmp, NULL, 10)
177                 : CONFIG_SYS_BRIGHTNESS;
178         if (br > 255)
179                 br = 255;
180
181         /* Initialize GPIO output pins.
182          */
183         /* Configure GPT as GPIO output (and set them as they control low-active LEDs */
184         for (i = 0; i <= 5; i++) {
185                 gpt = (struct mpc5xxx_gpt *)(MPC5XXX_GPT + (i * 0x10));
186                 out_be32(&gpt->emsr, 0x34);
187         }
188
189         /* Configure GPT7 as PWM timer, 1kHz, no ints. */
190         gpt = (struct mpc5xxx_gpt *)(MPC5XXX_GPT + (7 * 0x10));
191         out_be32(&gpt->emsr,  0);               /* Disable */
192         out_be32(&gpt->cir,   0x020000fe);
193         out_be32(&gpt->pwmcr, (br << 16));
194         out_be32(&gpt->emsr,  0x3);             /* Enable PWM mode and start */
195
196         /* Configure PSC3_6,7 as GPIO output */
197         setbits_be32(&gpio->simple_gpioe, MPC5XXX_GPIO_SIMPLE_PSC3_6 |
198                                           MPC5XXX_GPIO_SIMPLE_PSC3_7);
199         setbits_be32(&gpio->simple_ddr,   MPC5XXX_GPIO_SIMPLE_PSC3_6 |
200                                           MPC5XXX_GPIO_SIMPLE_PSC3_7);
201
202         /* Configure PSC3_9 and GPIO_WKUP6,7 as GPIO output */
203         setbits_8(&wu_gpio->enable,  MPC5XXX_GPIO_WKUP_6 |
204                                      MPC5XXX_GPIO_WKUP_7 |
205                                      MPC5XXX_GPIO_WKUP_PSC3_9);
206         setbits_8(&wu_gpio->ddr,     MPC5XXX_GPIO_WKUP_6 |
207                                      MPC5XXX_GPIO_WKUP_7 |
208                                      MPC5XXX_GPIO_WKUP_PSC3_9);
209
210         /* Set LR mirror bit because it is low-active */
211         setbits_8(&wu_gpio->dvo,     MPC5XXX_GPIO_WKUP_7);
212
213         /* Reset Coral-P graphics controller */
214         setbits_8(&wu_gpio->dvo,     MPC5XXX_GPIO_WKUP_PSC3_9);
215
216         /* Enable display backlight */
217         clrbits_8(&gpio->sint_inten, MPC5XXX_GPIO_SINT_PSC3_8);
218         setbits_8(&gpio->sint_gpioe, MPC5XXX_GPIO_SINT_PSC3_8);
219         setbits_8(&gpio->sint_ddr,   MPC5XXX_GPIO_SINT_PSC3_8);
220         setbits_8(&gpio->sint_dvo,   MPC5XXX_GPIO_SINT_PSC3_8);
221
222         /*
223          * Configure three wire serial interface to RTC (PSC1_4,
224          * PSC2_4, PSC3_4, PSC3_5)
225          */
226         setbits_8(&wu_gpio->enable,  MPC5XXX_GPIO_WKUP_PSC1_4 |
227                                      MPC5XXX_GPIO_WKUP_PSC2_4);
228         setbits_8(&wu_gpio->ddr,     MPC5XXX_GPIO_WKUP_PSC1_4 |
229                                      MPC5XXX_GPIO_WKUP_PSC2_4);
230         clrbits_8(&wu_gpio->dvo,     MPC5XXX_GPIO_WKUP_PSC1_4);
231         clrbits_8(&gpio->sint_inten, MPC5XXX_GPIO_SINT_PSC3_4 |
232                                      MPC5XXX_GPIO_SINT_PSC3_5);
233         setbits_8(&gpio->sint_gpioe, MPC5XXX_GPIO_SINT_PSC3_4 |
234                                      MPC5XXX_GPIO_SINT_PSC3_5);
235         setbits_8(&gpio->sint_ddr,   MPC5XXX_GPIO_SINT_PSC3_5);
236         clrbits_8(&gpio->sint_dvo,   MPC5XXX_GPIO_SINT_PSC3_5);
237
238         return 0;
239 }
240
241 #ifdef  CONFIG_PCI
242 static struct pci_controller hose;
243
244 extern void pci_mpc5xxx_init(struct pci_controller *);
245
246 void pci_init_board(void)
247 {
248         pci_mpc5xxx_init(&hose);
249 }
250 #endif