blob: 944ba745c09ffaebfeb71522d9fb41c36e2167d0 [file] [log] [blame]
Peng Fan0d331c02019-03-05 02:32:49 +00001/*
2 * Copyright 2018 NXP
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <dm.h>
Simon Glass4d72caa2020-05-10 11:40:01 -06009#include <image.h>
Simon Glass691d7192020-05-10 11:40:02 -060010#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.h>
Peng Fan0d331c02019-03-05 02:32:49 +000012#include <spl.h>
Simon Glass401d1c42020-10-30 21:38:53 -060013#include <asm/global_data.h>
Peng Fan0d331c02019-03-05 02:32:49 +000014#include <dm/uclass.h>
15#include <dm/device.h>
16#include <dm/uclass-internal.h>
17#include <dm/device-internal.h>
18#include <dm/lists.h>
Peng Fan231401d2020-05-05 20:28:40 +080019#include <asm/arch/sys_proto.h>
Peng Fan0d331c02019-03-05 02:32:49 +000020
21DECLARE_GLOBAL_DATA_PTR;
22
23void spl_board_init(void)
24{
25 struct udevice *dev;
Peng Fan0d331c02019-03-05 02:32:49 +000026
27 uclass_find_first_device(UCLASS_MISC, &dev);
28
29 for (; dev; uclass_find_next_device(&dev)) {
30 if (device_probe(dev))
31 continue;
32 }
33
Peng Fan0d331c02019-03-05 02:32:49 +000034 arch_cpu_init();
35
36 board_early_init_f();
37
38 timer_init();
39
40 preloader_console_init();
41
42 puts("Normal Boot\n");
43}
44
Peng Fan231401d2020-05-05 20:28:40 +080045void spl_board_prepare_for_boot(void)
46{
47 imx8_power_off_pd_devices(NULL, 0);
48}
49
Peng Fan0d331c02019-03-05 02:32:49 +000050#ifdef CONFIG_SPL_LOAD_FIT
51int board_fit_config_name_match(const char *name)
52{
53 /* Just empty function now - can't decide what to choose */
54 debug("%s: %s\n", __func__, name);
55
56 return 0;
57}
58#endif
59
60void board_init_f(ulong dummy)
61{
62 /* Clear global data */
63 memset((void *)gd, 0, sizeof(gd_t));
64
65 /* Clear the BSS. */
66 memset(__bss_start, 0, __bss_end - __bss_start);
67
68 board_init_r(NULL, 0);
69}