bump up revision to 1.5.0
[pandora-x-loader.git] / lib / board.c
1 /*
2  * Copyright (C) 2005 Texas Instruments.
3  *
4  * (C) Copyright 2004
5  * Jian Zhang, Texas Instruments, jzhang@ti.com.
6  *
7  * (C) Copyright 2002
8  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9  *
10  * (C) Copyright 2002
11  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
12  * Marius Groeger <mgroeger@sysgo.de>
13  *
14  * See file CREDITS for list of people who contributed to this
15  * project.
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  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  *
27  * You should have received a copy of the GNU General Public License
28  * along with this program; if not, write to the Free Software
29  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30  * MA 02111-1307 USA
31  */
32
33 #include <common.h>
34 #include <part.h>
35 #include <fat.h>
36 #include <asm/arch/mem.h>
37
38 const char version_string[] =
39         "Texas Instruments X-Loader 1.5.0 (" __DATE__ " - " __TIME__ ")";
40
41 int print_info(void)
42 {
43 #ifdef CFG_PRINTF
44         printf("\n\n%s\n", version_string);
45 #endif
46         return 0;
47 }
48
49 /* !!! why is I2C dependent on MMC? */
50
51 #ifdef CONFIG_MMC
52 #ifdef CONFIG_DRIVER_OMAP34XX_I2C
53 static int init_func_i2c (void)
54 {
55         i2c_init (CFG_I2C_SPEED, CFG_I2C_SLAVE);
56         return 0;
57 }
58 #endif
59 #endif
60
61 typedef int (init_fnc_t) (void);
62
63 init_fnc_t *init_sequence[] = {
64         cpu_init,               /* basic cpu dependent setup */
65         board_init,             /* basic board dependent setup */
66 #ifdef CFG_NS16550_SERIAL
67         serial_init,            /* serial communications setup */
68 #endif
69         print_info,
70         nand_init,              /* board specific nand init */
71 #ifdef CONFIG_MMC
72 #ifdef CONFIG_DRIVER_OMAP34XX_I2C
73         init_func_i2c,
74 #endif
75 #endif
76         NULL,
77 };
78
79 void start_armboot (void)
80 {
81         init_fnc_t **init_fnc_ptr;
82         int size;
83         uchar *buf;
84         int *first_instruction;
85 #if defined(CFG_ONENAND) || defined(CFG_NAND_K9F1G08R0A)
86         int i;
87 #endif
88
89         for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr)
90                 if ((*init_fnc_ptr)())
91                         hang ();
92
93         misc_init_r();
94
95         buf =  (uchar*) CFG_LOADADDR;
96         *(int *)buf = 0xffffffff;
97
98 #ifdef CONFIG_MMC
99         /* first try mmc */
100         if (mmc_init(1)) {
101                 size = file_fat_read("u-boot.bin", buf, 0);
102                 if (size > 0) {
103 #ifdef CFG_PRINTF
104                         printf("Loading u-boot.bin from mmc\n");
105 #endif
106                         buf += size;
107                 }
108         }
109 #endif
110
111         if (buf == (uchar *)CFG_LOADADDR) {
112                 /* if no u-boot on mmc, try onenand or nand, depending upon sysboot */
113                 if (get_mem_type() == GPMC_ONENAND){
114 #ifdef CFG_ONENAND
115 #ifdef CFG_PRINTF
116                         printf("Loading u-boot.bin from onenand\n");
117 #endif
118                         for (i = ONENAND_START_BLOCK; i < ONENAND_END_BLOCK; i++){
119                                 if (!onenand_read_block(buf, i))
120                                         buf += ONENAND_BLOCK_SIZE;
121                         }
122 #endif
123                 } else if (get_mem_type() == GPMC_NAND){
124 #ifdef CFG_NAND_K9F1G08R0A
125 #ifdef CFG_PRINTF
126                         printf("Loading u-boot.bin from nand\n");
127 #endif
128                         for (i = NAND_UBOOT_START; i < NAND_UBOOT_END; i+= NAND_BLOCK_SIZE){
129                                 if (!nand_read_block(buf, i))
130                                         buf += NAND_BLOCK_SIZE; /* advance buf ptr */
131                         }
132 #endif
133                 }
134         }
135
136         /* if u-boot not found on mmc or
137          * nand read result is erased data
138          * then serial boot 
139          */
140         first_instruction = (int *)CFG_LOADADDR;
141         if((buf == (uchar *)CFG_LOADADDR) || (*first_instruction == 0xffffffff)) {
142                 printf("u-boot.bin not found or blank nand contents - attempting serial boot . . .\n");
143                 do_load_serial_bin(CFG_LOADADDR, 115200);
144         }
145
146         /* go run U-Boot and never return */
147         ((init_fnc_t *)CFG_LOADADDR)();
148
149         /* should never come here */
150 }
151
152 void hang (void)
153 {
154         /* call board specific hang function */
155         board_hang();
156
157         /* if board_hang() returns, hang here */
158 #ifdef CFG_PRINTF
159         printf("X-Loader hangs\n");
160 #endif
161         for (;;);
162 }