blob: 49349da1792972e7783fe309858768bd8500879b [file] [log] [blame]
Heiko Schocher565a09c2011-11-01 20:00:29 +00001/*
2 * Copyright (C) 2011
3 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Heiko Schocher565a09c2011-11-01 20:00:29 +00006 */
7#include <common.h>
Tom Rini12938582012-08-14 12:27:13 -07008#include <config.h>
9#include <spl.h>
Heiko Schocher565a09c2011-11-01 20:00:29 +000010#include <asm/u-boot.h>
11#include <asm/utils.h>
12#include <nand.h>
13#include <asm/arch/dm365_lowlevel.h>
14#include <ns16550.h>
Christian Riesch17a6a2f2011-12-09 09:47:36 +000015#include <malloc.h>
16#include <spi_flash.h>
Lad, Prabhakar8dc6df82012-06-24 21:35:20 +000017#include <mmc.h>
Christian Riesch17a6a2f2011-12-09 09:47:36 +000018
Christian Riesch2513db42011-12-14 09:54:36 +010019DECLARE_GLOBAL_DATA_PTR;
Heiko Schocher565a09c2011-11-01 20:00:29 +000020
Tom Rini12938582012-08-14 12:27:13 -070021#ifndef CONFIG_SPL_LIBCOMMON_SUPPORT
Heiko Schocher565a09c2011-11-01 20:00:29 +000022void puts(const char *str)
23{
24 while (*str)
25 putc(*str++);
26}
27
28void putc(char c)
29{
30 if (c == '\n')
31 NS16550_putc((NS16550_t)(CONFIG_SYS_NS16550_COM1), '\r');
32
33 NS16550_putc((NS16550_t)(CONFIG_SYS_NS16550_COM1), c);
34}
Christian Riesch17a6a2f2011-12-09 09:47:36 +000035#endif /* CONFIG_SPL_LIBCOMMON_SUPPORT */
36
Tom Rini35d908c2015-01-22 09:38:10 -050037void spl_board_init(void)
Heiko Schocher565a09c2011-11-01 20:00:29 +000038{
Christian Riesch17a6a2f2011-12-09 09:47:36 +000039#ifdef CONFIG_SOC_DM365
Heiko Schocher565a09c2011-11-01 20:00:29 +000040 dm36x_lowlevel_init(0);
Christian Riesch17a6a2f2011-12-09 09:47:36 +000041#endif
42#ifdef CONFIG_SOC_DA8XX
43 arch_cpu_init();
44#endif
Tom Rini12938582012-08-14 12:27:13 -070045 preloader_console_init();
46}
Lad, Prabhakar5dad9212012-06-24 21:35:18 +000047
Tom Rini12938582012-08-14 12:27:13 -070048u32 spl_boot_mode(void)
49{
50 return MMCSD_MODE_RAW;
51}
52
53u32 spl_boot_device(void)
54{
55#ifdef CONFIG_SPL_NAND_SIMPLE
56 return BOOT_DEVICE_NAND;
57#elif defined(CONFIG_SPL_SPI_LOAD)
58 return BOOT_DEVICE_SPI;
59#elif defined(CONFIG_SPL_MMC_LOAD)
60 return BOOT_DEVICE_MMC1;
61#else
62 puts("Unknown boot device\n");
63 hang();
Lad, Prabhakar8dc6df82012-06-24 21:35:20 +000064#endif
Heiko Schocher565a09c2011-11-01 20:00:29 +000065}