]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - nand_spl/board/freescale/mpc8536ds/nand_boot.c
NAND boot: MPC8536DS support
[karo-tx-uboot.git] / nand_spl / board / freescale / mpc8536ds / nand_boot.c
1 /*
2  * Copyright 2009 Freescale Semiconductor, Inc.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of
7  * the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  *
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
18  * MA 02111-1307 USA
19  *
20  */
21
22 #include <common.h>
23 #include <ns16550.h>
24 #include <asm/io.h>
25 #include <nand.h>
26
27 u32 sysclk_tbl[] = {
28         33333000, 39999600, 49999500, 66666000,
29         83332500, 99999000, 133332000, 166665000
30 };
31
32 void board_init_f(ulong bootflag)
33 {
34         int px_spd;
35         u32 plat_ratio, bus_clk, sys_clk;
36         ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
37         ccsr_lbc_t *lbc = (void *)CONFIG_SYS_MPC85xx_LBC_ADDR;
38
39 #if defined(CONFIG_SYS_BR3_PRELIM) && defined(CONFIG_SYS_OR3_PRELIM)
40         /* for FPGA */
41         out_be32(&lbc->br3, CONFIG_SYS_BR3_PRELIM);
42         out_be32(&lbc->or3, CONFIG_SYS_OR3_PRELIM);
43 #else
44 #error CONFIG_SYS_BR3_PRELIM, CONFIG_SYS_OR3_PRELIM must be defined
45 #endif
46
47         /* initialize selected port with appropriate baud rate */
48         px_spd = in_8((unsigned char *)(PIXIS_BASE + PIXIS_SPD));
49         sys_clk = sysclk_tbl[px_spd & PIXIS_SPD_SYSCLK];
50         plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO;
51         bus_clk = sys_clk * plat_ratio / 2;
52
53         NS16550_init((NS16550_t)CONFIG_SYS_NS16550_COM1,
54                         bus_clk / 16 / CONFIG_BAUDRATE);
55
56         puts("\nNAND boot... ");
57
58         /* copy code to RAM and jump to it - this should not return */
59         /* NOTE - code has to be copied out of NAND buffer before
60          * other blocks can be read.
61          */
62         relocate_code(CONFIG_SYS_NAND_U_BOOT_RELOC_SP, 0,
63                         CONFIG_SYS_NAND_U_BOOT_RELOC);
64 }
65
66 void board_init_r(gd_t *gd, ulong dest_addr)
67 {
68         nand_boot();
69 }
70
71 void putc(char c)
72 {
73         if (c == '\n')
74                 NS16550_putc((NS16550_t)CONFIG_SYS_NS16550_COM1, '\r');
75
76         NS16550_putc((NS16550_t)CONFIG_SYS_NS16550_COM1, c);
77 }
78
79 void puts(const char *str)
80 {
81         while (*str)
82                 putc(*str++);
83 }