blob: 17fd437116d35da1544163e13414ab19b76ebad6 [file] [log] [blame]
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +05301// SPDX-License-Identifier: GPL-2.0-or-later
Peng Fan203a2272019-03-05 02:32:49 +00002/*
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +05303 * Copyright 2018, 2021 NXP
Peng Fan203a2272019-03-05 02:32:49 +00004 *
Peng Fan203a2272019-03-05 02:32:49 +00005 */
6
7#include <common.h>
8#include <dm.h>
Simon Glass2dc9c342020-05-10 11:40:01 -06009#include <image.h>
Simon Glass97589732020-05-10 11:40:02 -060010#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Peng Fan203a2272019-03-05 02:32:49 +000012#include <spl.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060013#include <asm/global_data.h>
Peng Fan203a2272019-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 Fan1b9729a2020-05-05 20:28:40 +080019#include <asm/arch/sys_proto.h>
Shiji Yangbb112342023-08-03 09:47:16 +080020#include <asm/sections.h>
Peng Fan203a2272019-03-05 02:32:49 +000021
22DECLARE_GLOBAL_DATA_PTR;
23
24void spl_board_init(void)
25{
26 struct udevice *dev;
Peng Fan203a2272019-03-05 02:32:49 +000027
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +053028 uclass_get_device_by_driver(UCLASS_MISC, DM_DRIVER_GET(imx8_scu), &dev);
29
Peng Fan203a2272019-03-05 02:32:49 +000030 uclass_find_first_device(UCLASS_MISC, &dev);
31
32 for (; dev; uclass_find_next_device(&dev)) {
33 if (device_probe(dev))
34 continue;
35 }
36
Peng Fan203a2272019-03-05 02:32:49 +000037 arch_cpu_init();
38
39 board_early_init_f();
40
41 timer_init();
42
43 preloader_console_init();
44
45 puts("Normal Boot\n");
46}
47
Peng Fan1b9729a2020-05-05 20:28:40 +080048void spl_board_prepare_for_boot(void)
49{
50 imx8_power_off_pd_devices(NULL, 0);
51}
52
Peng Fan203a2272019-03-05 02:32:49 +000053#ifdef CONFIG_SPL_LOAD_FIT
54int board_fit_config_name_match(const char *name)
55{
56 /* Just empty function now - can't decide what to choose */
57 debug("%s: %s\n", __func__, name);
58
59 return 0;
60}
61#endif
62
63void board_init_f(ulong dummy)
64{
65 /* Clear global data */
66 memset((void *)gd, 0, sizeof(gd_t));
67
68 /* Clear the BSS. */
69 memset(__bss_start, 0, __bss_end - __bss_start);
70
71 board_init_r(NULL, 0);
72}