blob: 714fa928465bfc9aac2cb979d97318c46781e139 [file] [log] [blame]
Heiko Schocher435199f2011-11-01 20:00:29 +00001/*
2 * Copyright (C) 2011
3 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23#include <common.h>
Tom Rini3f7f2412012-08-14 12:27:13 -070024#include <config.h>
25#include <spl.h>
Heiko Schocher435199f2011-11-01 20:00:29 +000026#include <asm/u-boot.h>
27#include <asm/utils.h>
28#include <nand.h>
29#include <asm/arch/dm365_lowlevel.h>
30#include <ns16550.h>
Christian Riesch620fd272011-12-09 09:47:36 +000031#include <malloc.h>
32#include <spi_flash.h>
Lad, Prabhakar0d986e62012-06-24 21:35:20 +000033#include <mmc.h>
Christian Riesch620fd272011-12-09 09:47:36 +000034
Christian Riesch8f743142011-12-14 09:54:36 +010035DECLARE_GLOBAL_DATA_PTR;
Christian Riesch620fd272011-12-09 09:47:36 +000036
Tom Rini3f7f2412012-08-14 12:27:13 -070037#ifndef CONFIG_SPL_LIBCOMMON_SUPPORT
Heiko Schocher435199f2011-11-01 20:00:29 +000038void puts(const char *str)
39{
40 while (*str)
41 putc(*str++);
42}
43
44void putc(char c)
45{
46 if (c == '\n')
47 NS16550_putc((NS16550_t)(CONFIG_SYS_NS16550_COM1), '\r');
48
49 NS16550_putc((NS16550_t)(CONFIG_SYS_NS16550_COM1), c);
50}
Christian Riesch620fd272011-12-09 09:47:36 +000051#endif /* CONFIG_SPL_LIBCOMMON_SUPPORT */
52
Heiko Schocher435199f2011-11-01 20:00:29 +000053void board_init_f(ulong dummy)
54{
Tom Rini3f7f2412012-08-14 12:27:13 -070055 /* First, setup our stack pointer. */
56 asm volatile("mov sp, %0\n" : : "r"(CONFIG_SPL_STACK));
57
58 /* Second, perform our low-level init. */
Christian Riesch620fd272011-12-09 09:47:36 +000059#ifdef CONFIG_SOC_DM365
Heiko Schocher435199f2011-11-01 20:00:29 +000060 dm36x_lowlevel_init(0);
Christian Riesch620fd272011-12-09 09:47:36 +000061#endif
62#ifdef CONFIG_SOC_DA8XX
63 arch_cpu_init();
64#endif
Tom Rini3f7f2412012-08-14 12:27:13 -070065
66 /* Third, we clear the BSS. */
67 memset(__bss_start, 0, __bss_end__ - __bss_start);
68
69 /* Finally, setup gd and move to the next step. */
70 gd = &gdata;
71 board_init_r(NULL, 0);
Heiko Schocher435199f2011-11-01 20:00:29 +000072}
73
Tom Rini3f7f2412012-08-14 12:27:13 -070074void spl_board_init(void)
Heiko Schocher435199f2011-11-01 20:00:29 +000075{
Tom Rini3f7f2412012-08-14 12:27:13 -070076 preloader_console_init();
77}
Christian Riesch620fd272011-12-09 09:47:36 +000078
Tom Rini3f7f2412012-08-14 12:27:13 -070079u32 spl_boot_mode(void)
80{
81 return MMCSD_MODE_RAW;
82}
Christian Riesch620fd272011-12-09 09:47:36 +000083
Tom Rini3f7f2412012-08-14 12:27:13 -070084u32 spl_boot_device(void)
85{
86#ifdef CONFIG_SPL_NAND_SIMPLE
87 return BOOT_DEVICE_NAND;
88#elif defined(CONFIG_SPL_SPI_LOAD)
89 return BOOT_DEVICE_SPI;
90#elif defined(CONFIG_SPL_MMC_LOAD)
91 return BOOT_DEVICE_MMC1;
92#else
93 puts("Unknown boot device\n");
94 hang();
Lad, Prabhakar0d986e62012-06-24 21:35:20 +000095#endif
Heiko Schocher435199f2011-11-01 20:00:29 +000096}