blob: 230850ad6c57b49ec974613f7ea465b2e286f193 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Philipp Tomsichfbbd3802017-06-12 10:33:20 +02002/*
3 * (C) Copyright 2017 Theobroma Systems Design und Consulting GmbH
Philipp Tomsichfbbd3802017-06-12 10:33:20 +02004 */
5
6#include <common.h>
7#include <debug_uart.h>
8#include <dm.h>
Philipp Tomsichfbbd3802017-06-12 10:33:20 +02009#include <ram.h>
10#include <spl.h>
11#include <asm/io.h>
12#include <asm/arch/cru_rk3368.h>
13#include <asm/arch/grf_rk3368.h>
14#include <asm/arch/hardware.h>
15#include <asm/arch/periph.h>
16#include <asm/arch/timer.h>
Simon Glassc35f8e52019-01-21 14:53:31 -070017#include <dm/pinctrl.h>
Philipp Tomsichfbbd3802017-06-12 10:33:20 +020018
Philipp Tomsichfbbd3802017-06-12 10:33:20 +020019void board_debug_uart_init(void)
20{
21}
22
23void board_init_f(ulong dummy)
24{
25 struct udevice *pinctrl;
26 struct udevice *dev;
27 int ret;
28
29 ret = spl_early_init();
30 if (ret) {
31 debug("spl_early_init() failed: %d\n", ret);
32 hang();
33 }
34
Philipp Tomsichfbbd3802017-06-12 10:33:20 +020035 /* Set up our preloader console */
36 ret = uclass_get_device(UCLASS_PINCTRL, 0, &pinctrl);
37 if (ret) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +090038 pr_err("%s: pinctrl init failed: %d\n", __func__, ret);
Philipp Tomsichfbbd3802017-06-12 10:33:20 +020039 hang();
40 }
41
42 ret = pinctrl_request_noflags(pinctrl, PERIPH_ID_UART0);
43 if (ret) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +090044 pr_err("%s: failed to set up console UART\n", __func__);
Philipp Tomsichfbbd3802017-06-12 10:33:20 +020045 hang();
46 }
47
48 preloader_console_init();
49
50 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
51 if (ret) {
52 debug("DRAM init failed: %d\n", ret);
53 return;
54 }
55}
56
Philipp Tomsichfbbd3802017-06-12 10:33:20 +020057u32 spl_boot_device(void)
58{
59 return BOOT_DEVICE_MMC1;
60}
61
62#ifdef CONFIG_SPL_LOAD_FIT
63int board_fit_config_name_match(const char *name)
64{
65 /* Just empty function now - can't decide what to choose */
66 debug("%s: %s\n", __func__, name);
67
68 return 0;
69}
70#endif