blob: 103639e347579410b8005ba36e773b97afbf048a [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Heiko Schocher565a09c2011-11-01 20:00:29 +00002/*
3 * Copyright (C) 2011
4 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
Heiko Schocher565a09c2011-11-01 20:00:29 +00005 */
6#include <common.h>
Tom Rini12938582012-08-14 12:27:13 -07007#include <config.h>
8#include <spl.h>
Heiko Schocher565a09c2011-11-01 20:00:29 +00009#include <asm/u-boot.h>
10#include <asm/utils.h>
11#include <nand.h>
12#include <asm/arch/dm365_lowlevel.h>
13#include <ns16550.h>
Christian Riesch17a6a2f2011-12-09 09:47:36 +000014#include <malloc.h>
15#include <spi_flash.h>
Lad, Prabhakar8dc6df82012-06-24 21:35:20 +000016#include <mmc.h>
Christian Riesch17a6a2f2011-12-09 09:47:36 +000017
Tom Rini12938582012-08-14 12:27:13 -070018#ifndef CONFIG_SPL_LIBCOMMON_SUPPORT
Heiko Schocher565a09c2011-11-01 20:00:29 +000019void puts(const char *str)
20{
21 while (*str)
22 putc(*str++);
23}
24
25void putc(char c)
26{
27 if (c == '\n')
28 NS16550_putc((NS16550_t)(CONFIG_SYS_NS16550_COM1), '\r');
29
30 NS16550_putc((NS16550_t)(CONFIG_SYS_NS16550_COM1), c);
31}
Christian Riesch17a6a2f2011-12-09 09:47:36 +000032#endif /* CONFIG_SPL_LIBCOMMON_SUPPORT */
33
Tom Rini35d908c2015-01-22 09:38:10 -050034void spl_board_init(void)
Heiko Schocher565a09c2011-11-01 20:00:29 +000035{
Christian Riesch17a6a2f2011-12-09 09:47:36 +000036 arch_cpu_init();
Tom Rini12938582012-08-14 12:27:13 -070037 preloader_console_init();
38}
Lad, Prabhakar5dad9212012-06-24 21:35:18 +000039
Tom Rini12938582012-08-14 12:27:13 -070040u32 spl_boot_device(void)
41{
Fabien Parent9efa10f2017-01-09 11:06:36 +010042 switch (davinci_syscfg_regs->bootcfg) {
43#ifdef CONFIG_SPL_NAND_SUPPORT
44 case DAVINCI_NAND8_BOOT:
45 case DAVINCI_NAND16_BOOT:
46 return BOOT_DEVICE_NAND;
47#endif
48
49#ifdef CONFIG_SPL_MMC_SUPPORT
50 case DAVINCI_SD_OR_MMC_BOOT:
51 case DAVINCI_MMC_ONLY_BOOT:
52 return BOOT_DEVICE_MMC1;
53#endif
54
55#ifdef CONFIG_SPL_SPI_FLASH_SUPPORT
56 case DAVINCI_SPI0_FLASH_BOOT:
57 case DAVINCI_SPI1_FLASH_BOOT:
58 return BOOT_DEVICE_SPI;
Lad, Prabhakar8dc6df82012-06-24 21:35:20 +000059#endif
Fabien Parent9efa10f2017-01-09 11:06:36 +010060
61 default:
62 puts("Unknown boot device\n");
63 hang();
64 }
Heiko Schocher565a09c2011-11-01 20:00:29 +000065}