2 * Copyright (C) 2005 Texas Instruments.
5 * Jian Zhang, Texas Instruments, jzhang@ti.com.
8 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
11 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
12 * Marius Groeger <mgroeger@sysgo.de>
14 * See file CREDITS for list of people who contributed to this
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.
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.
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,
36 #include <asm/arch/mem.h>
38 const char version_string[] =
39 "Texas Instruments X-Loader 1.4.4ss (" __DATE__ " - " __TIME__ ")";
44 printf("\n\n%s\n", version_string);
49 static int init_func_i2c (void)
52 #ifdef CONFIG_DRIVER_OMAP34XX_I2C
53 i2c_init (CFG_I2C_SPEED, CFG_I2C_SLAVE);
59 typedef int (init_fnc_t) (void);
61 init_fnc_t *init_sequence[] = {
62 cpu_init, /* basic cpu dependent setup */
63 board_init, /* basic board dependent setup */
64 #ifdef CFG_NS16550_SERIAL
65 serial_init, /* serial communications setup */
68 nand_init, /* board specific nand init */
70 #ifdef CONFIG_DRIVER_OMAP34XX_I2C
77 void start_armboot (void)
79 init_fnc_t **init_fnc_ptr;
82 int *first_instruction;
83 block_dev_desc_t *dev_desc = NULL;
85 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
86 if ((*init_fnc_ptr)() != 0) {
93 buf = (uchar*) CFG_LOADADDR;
94 *(int *)buf = 0xffffffff;
99 size = file_fat_read("u-boot.bin", buf, 0);
102 printf("Loading u-boot.bin from mmc\n");
109 if (buf == (uchar *)CFG_LOADADDR) {
110 /* if no u-boot on mmc, try onenand or nand, depending upon sysboot */
111 if (get_mem_type() == GPMC_ONENAND){
114 printf("Loading u-boot.bin from onenand\n");
116 for (i = ONENAND_START_BLOCK; i < ONENAND_END_BLOCK; i++){
117 if (!onenand_read_block(buf, i))
118 buf += ONENAND_BLOCK_SIZE;
121 } else if (get_mem_type() == GPMC_NAND){
122 #ifdef CFG_NAND_K9F1G08R0A
124 printf("Loading u-boot.bin from nand\n");
126 for (i = NAND_UBOOT_START; i < NAND_UBOOT_END; i+= NAND_BLOCK_SIZE){
127 if (!nand_read_block(buf, i))
128 buf += NAND_BLOCK_SIZE; /* advance buf ptr */
134 /* if u-boot not found on mmc or
135 * nand read result is erased data
138 first_instruction = (int *)CFG_LOADADDR;
139 if((buf == (uchar *)CFG_LOADADDR) || (*first_instruction == 0xffffffff)) {
140 printf("u-boot.bin not found or blank nand contents - attempting serial boot . . .\n");
141 do_load_serial_bin(CFG_LOADADDR, 115200);
144 /* go run U-Boot and never return */
145 ((init_fnc_t *)CFG_LOADADDR)();
147 /* should never come here */
152 /* call board specific hang function */
155 /* if board_hang() returns, hang here */
157 printf("X-Loader hangs\n");