]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/freescale/mpc8641hpcn/mpc8641hpcn.c
Merge branch 'master' of git://www.denx.de/git/u-boot into new-image
[karo-tx-uboot.git] / board / freescale / mpc8641hpcn / mpc8641hpcn.c
1 /*
2  * Copyright 2006, 2007 Freescale Semiconductor.
3  *
4  * See file CREDITS for list of people who contributed to this
5  * project.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of
10  * the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20  * MA 02111-1307 USA
21  */
22
23 #include <common.h>
24 #include <pci.h>
25 #include <asm/processor.h>
26 #include <asm/immap_86xx.h>
27 #include <asm/immap_fsl_pci.h>
28 #include <spd.h>
29 #include <asm/io.h>
30 #include <libfdt.h>
31 #include <fdt_support.h>
32
33 #include "../common/pixis.h"
34
35 #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
36 extern void ddr_enable_ecc(unsigned int dram_size);
37 #endif
38
39 #if defined(CONFIG_SPD_EEPROM)
40 #include "spd_sdram.h"
41 #endif
42
43 void sdram_init(void);
44 long int fixed_sdram(void);
45
46
47 int board_early_init_f(void)
48 {
49         return 0;
50 }
51
52 int checkboard(void)
53 {
54         puts("Board: MPC8641HPCN\n");
55
56         return 0;
57 }
58
59
60 long int
61 initdram(int board_type)
62 {
63         long dram_size = 0;
64
65 #if defined(CONFIG_SPD_EEPROM)
66         dram_size = spd_sdram();
67 #else
68         dram_size = fixed_sdram();
69 #endif
70
71 #if defined(CFG_RAMBOOT)
72         puts("    DDR: ");
73         return dram_size;
74 #endif
75
76 #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
77         /*
78          * Initialize and enable DDR ECC.
79          */
80         ddr_enable_ecc(dram_size);
81 #endif
82
83         puts("    DDR: ");
84         return dram_size;
85 }
86
87
88 #if defined(CFG_DRAM_TEST)
89 int
90 testdram(void)
91 {
92         uint *pstart = (uint *) CFG_MEMTEST_START;
93         uint *pend = (uint *) CFG_MEMTEST_END;
94         uint *p;
95
96         puts("SDRAM test phase 1:\n");
97         for (p = pstart; p < pend; p++)
98                 *p = 0xaaaaaaaa;
99
100         for (p = pstart; p < pend; p++) {
101                 if (*p != 0xaaaaaaaa) {
102                         printf("SDRAM test fails at: %08x\n", (uint) p);
103                         return 1;
104                 }
105         }
106
107         puts("SDRAM test phase 2:\n");
108         for (p = pstart; p < pend; p++)
109                 *p = 0x55555555;
110
111         for (p = pstart; p < pend; p++) {
112                 if (*p != 0x55555555) {
113                         printf("SDRAM test fails at: %08x\n", (uint) p);
114                         return 1;
115                 }
116         }
117
118         puts("SDRAM test passed.\n");
119         return 0;
120 }
121 #endif
122
123
124 #if !defined(CONFIG_SPD_EEPROM)
125 /*
126  * Fixed sdram init -- doesn't use serial presence detect.
127  */
128 long int
129 fixed_sdram(void)
130 {
131 #if !defined(CFG_RAMBOOT)
132         volatile immap_t *immap = (immap_t *) CFG_IMMR;
133         volatile ccsr_ddr_t *ddr = &immap->im_ddr1;
134
135         ddr->cs0_bnds = CFG_DDR_CS0_BNDS;
136         ddr->cs0_config = CFG_DDR_CS0_CONFIG;
137         ddr->ext_refrec = CFG_DDR_EXT_REFRESH;
138         ddr->timing_cfg_0 = CFG_DDR_TIMING_0;
139         ddr->timing_cfg_1 = CFG_DDR_TIMING_1;
140         ddr->timing_cfg_2 = CFG_DDR_TIMING_2;
141         ddr->sdram_mode_1 = CFG_DDR_MODE_1;
142         ddr->sdram_mode_2 = CFG_DDR_MODE_2;
143         ddr->sdram_interval = CFG_DDR_INTERVAL;
144         ddr->sdram_data_init = CFG_DDR_DATA_INIT;
145         ddr->sdram_clk_cntl = CFG_DDR_CLK_CTRL;
146         ddr->sdram_ocd_cntl = CFG_DDR_OCD_CTRL;
147         ddr->sdram_ocd_status = CFG_DDR_OCD_STATUS;
148
149 #if defined (CONFIG_DDR_ECC)
150         ddr->err_disable = 0x0000008D;
151         ddr->err_sbe = 0x00ff0000;
152 #endif
153         asm("sync;isync");
154
155         udelay(500);
156
157 #if defined (CONFIG_DDR_ECC)
158         /* Enable ECC checking */
159         ddr->sdram_cfg_1 = (CFG_DDR_CONTROL | 0x20000000);
160 #else
161         ddr->sdram_cfg_1 = CFG_DDR_CONTROL;
162         ddr->sdram_cfg_2 = CFG_DDR_CONTROL2;
163 #endif
164         asm("sync; isync");
165
166         udelay(500);
167 #endif
168         return CFG_SDRAM_SIZE * 1024 * 1024;
169 }
170 #endif  /* !defined(CONFIG_SPD_EEPROM) */
171
172
173 #if defined(CONFIG_PCI)
174 /*
175  * Initialize PCI Devices, report devices found.
176  */
177
178 #ifndef CONFIG_PCI_PNP
179 static struct pci_config_table pci_fsl86xxads_config_table[] = {
180         {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
181          PCI_IDSEL_NUMBER, PCI_ANY_ID,
182          pci_cfgfunc_config_device, {PCI_ENET0_IOADDR,
183                                      PCI_ENET0_MEMADDR,
184                                      PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER}},
185         {}
186 };
187 #endif
188
189
190 static struct pci_controller pci1_hose = {
191 #ifndef CONFIG_PCI_PNP
192         config_table:pci_mpc86xxcts_config_table
193 #endif
194 };
195 #endif /* CONFIG_PCI */
196
197 #ifdef CONFIG_PCI2
198 static struct pci_controller pci2_hose;
199 #endif  /* CONFIG_PCI2 */
200
201 int first_free_busno = 0;
202
203
204 void pci_init_board(void)
205 {
206         volatile immap_t *immap = (immap_t *) CFG_CCSRBAR;
207         volatile ccsr_gur_t *gur = &immap->im_gur;
208         uint devdisr = gur->devdisr;
209         uint io_sel = (gur->pordevsr & MPC8641_PORDEVSR_IO_SEL)
210                 >> MPC8641_PORDEVSR_IO_SEL_SHIFT;
211
212 #ifdef CONFIG_PCI1
213 {
214         volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CFG_PCI1_ADDR;
215         extern void fsl_pci_init(struct pci_controller *hose);
216         struct pci_controller *hose = &pci1_hose;
217 #ifdef DEBUG
218         uint host1_agent = (gur->porbmsr & MPC8641_PORBMSR_HA)
219                 >> MPC8641_PORBMSR_HA_SHIFT;
220         uint pex1_agent = (host1_agent == 0) || (host1_agent == 1);
221 #endif
222         if ((io_sel == 2 || io_sel == 3 || io_sel == 5
223              || io_sel == 6 || io_sel == 7 || io_sel == 0xF)
224             && !(devdisr & MPC86xx_DEVDISR_PCIEX1)) {
225                 debug("PCI-EXPRESS 1: %s \n", pex1_agent ? "Agent" : "Host");
226                 debug("0x%08x=0x%08x ", &pci->pme_msg_det, pci->pme_msg_det);
227                 if (pci->pme_msg_det) {
228                         pci->pme_msg_det = 0xffffffff;
229                         debug(" with errors.  Clearing.  Now 0x%08x",
230                               pci->pme_msg_det);
231                 }
232                 debug("\n");
233
234                 /* inbound */
235                 pci_set_region(hose->regions + 0,
236                                CFG_PCI_MEMORY_BUS,
237                                CFG_PCI_MEMORY_PHYS,
238                                CFG_PCI_MEMORY_SIZE,
239                                PCI_REGION_MEM | PCI_REGION_MEMORY);
240
241                 /* outbound memory */
242                 pci_set_region(hose->regions + 1,
243                                CFG_PCI1_MEM_BASE,
244                                CFG_PCI1_MEM_PHYS,
245                                CFG_PCI1_MEM_SIZE,
246                                PCI_REGION_MEM);
247
248                 /* outbound io */
249                 pci_set_region(hose->regions + 2,
250                                CFG_PCI1_IO_BASE,
251                                CFG_PCI1_IO_PHYS,
252                                CFG_PCI1_IO_SIZE,
253                                PCI_REGION_IO);
254
255                 hose->region_count = 3;
256
257                 hose->first_busno=first_free_busno;
258                 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
259
260                 fsl_pci_init(hose);
261
262                 first_free_busno=hose->last_busno+1;
263                 printf ("    PCI-EXPRESS 1 on bus %02x - %02x\n",
264                         hose->first_busno,hose->last_busno);
265
266                 /*
267                  * Activate ULI1575 legacy chip by performing a fake
268                  * memory access.  Needed to make ULI RTC work.
269                  */
270                 in_be32((unsigned *) ((char *)(CFG_PCI1_MEM_BASE
271                                        + CFG_PCI1_MEM_SIZE - 0x1000000)));
272
273         } else {
274                 puts("PCI-EXPRESS 1: Disabled\n");
275         }
276 }
277 #else
278         puts("PCI-EXPRESS1: Disabled\n");
279 #endif /* CONFIG_PCI1 */
280
281 #ifdef CONFIG_PCI2
282 {
283         volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CFG_PCI2_ADDR;
284         extern void fsl_pci_init(struct pci_controller *hose);
285         struct pci_controller *hose = &pci2_hose;
286
287
288         /* inbound */
289         pci_set_region(hose->regions + 0,
290                        CFG_PCI_MEMORY_BUS,
291                        CFG_PCI_MEMORY_PHYS,
292                        CFG_PCI_MEMORY_SIZE,
293                        PCI_REGION_MEM | PCI_REGION_MEMORY);
294
295         /* outbound memory */
296         pci_set_region(hose->regions + 1,
297                        CFG_PCI2_MEM_BASE,
298                        CFG_PCI2_MEM_PHYS,
299                        CFG_PCI2_MEM_SIZE,
300                        PCI_REGION_MEM);
301
302         /* outbound io */
303         pci_set_region(hose->regions + 2,
304                        CFG_PCI2_IO_BASE,
305                        CFG_PCI2_IO_PHYS,
306                        CFG_PCI2_IO_SIZE,
307                        PCI_REGION_IO);
308
309         hose->region_count = 3;
310
311         hose->first_busno=first_free_busno;
312         pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
313
314         fsl_pci_init(hose);
315
316         first_free_busno=hose->last_busno+1;
317         printf ("    PCI-EXPRESS 2 on bus %02x - %02x\n",
318                 hose->first_busno,hose->last_busno);
319 }
320 #else
321         puts("PCI-EXPRESS 2: Disabled\n");
322 #endif /* CONFIG_PCI2 */
323
324 }
325
326
327 #if defined(CONFIG_OF_BOARD_SETUP)
328
329 void
330 ft_board_setup(void *blob, bd_t *bd)
331 {
332         int node, tmp[2];
333         const char *path;
334
335         ft_cpu_setup(blob, bd);
336
337         node = fdt_path_offset(blob, "/aliases");
338         tmp[0] = 0;
339         if (node >= 0) {
340 #ifdef CONFIG_PCI1
341                 path = fdt_getprop(blob, node, "pci0", NULL);
342                 if (path) {
343                         tmp[1] = pci1_hose.last_busno - pci1_hose.first_busno;
344                         do_fixup_by_path(blob, path, "bus-range", &tmp, 8, 1);
345                 }
346 #endif
347 #ifdef CONFIG_PCI2
348                 path = fdt_getprop(blob, node, "pci1", NULL);
349                 if (path) {
350                         tmp[1] = pci2_hose.last_busno - pci2_hose.first_busno;
351                         do_fixup_by_path(blob, path, "bus-range", &tmp, 8, 1);
352                 }
353 #endif
354         }
355 }
356 #endif
357
358
359 /*
360  * get_board_sys_clk
361  *      Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
362  */
363
364 unsigned long
365 get_board_sys_clk(ulong dummy)
366 {
367         u8 i, go_bit, rd_clks;
368         ulong val = 0;
369
370         go_bit = in8(PIXIS_BASE + PIXIS_VCTL);
371         go_bit &= 0x01;
372
373         rd_clks = in8(PIXIS_BASE + PIXIS_VCFGEN0);
374         rd_clks &= 0x1C;
375
376         /*
377          * Only if both go bit and the SCLK bit in VCFGEN0 are set
378          * should we be using the AUX register. Remember, we also set the
379          * GO bit to boot from the alternate bank on the on-board flash
380          */
381
382         if (go_bit) {
383                 if (rd_clks == 0x1c)
384                         i = in8(PIXIS_BASE + PIXIS_AUX);
385                 else
386                         i = in8(PIXIS_BASE + PIXIS_SPD);
387         } else {
388                 i = in8(PIXIS_BASE + PIXIS_SPD);
389         }
390
391         i &= 0x07;
392
393         switch (i) {
394         case 0:
395                 val = 33000000;
396                 break;
397         case 1:
398                 val = 40000000;
399                 break;
400         case 2:
401                 val = 50000000;
402                 break;
403         case 3:
404                 val = 66000000;
405                 break;
406         case 4:
407                 val = 83000000;
408                 break;
409         case 5:
410                 val = 100000000;
411                 break;
412         case 6:
413                 val = 134000000;
414                 break;
415         case 7:
416                 val = 166000000;
417                 break;
418         }
419
420         return val;
421 }