blob: ae6b64ff6ea120018d2c698b0e94027e6105ab79 [file] [log] [blame]
Peng Fan0b2236d2018-12-21 06:21:34 +00001/*
2 * Copyright 2018 NXP
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
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 Fan0b2236d2018-12-21 06:21:34 +000012#include <spl.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060013#include <asm/global_data.h>
Peng Fan0b2236d2018-12-21 06:21:34 +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>
Fabio Estevamaf4d6e72020-04-15 15:01:34 -030019#include <asm/io.h>
20#include <asm/gpio.h>
21#include <asm/arch/sci/sci.h>
22#include <asm/arch/imx8-pins.h>
23#include <asm/arch/iomux.h>
Peng Fan1b9729a2020-05-05 20:28:40 +080024#include <asm/arch/sys_proto.h>
Peng Fan0b2236d2018-12-21 06:21:34 +000025
26DECLARE_GLOBAL_DATA_PTR;
27
Fabio Estevamaf4d6e72020-04-15 15:01:34 -030028#define GPIO_PAD_CTRL ((SC_PAD_CONFIG_NORMAL << PADRING_CONFIG_SHIFT) | \
29 (SC_PAD_ISO_OFF << PADRING_LPCONFIG_SHIFT) | \
30 (SC_PAD_28FDSOI_DSE_DV_HIGH << PADRING_DSE_SHIFT) | \
31 (SC_PAD_28FDSOI_PS_PU << PADRING_PULL_SHIFT))
32
33#define USDHC2_SD_PWR IMX_GPIO_NR(4, 19)
34static iomux_cfg_t usdhc2_sd_pwr[] = {
35 SC_P_USDHC1_RESET_B | MUX_PAD_CTRL(GPIO_PAD_CTRL),
36};
37
Peng Fan0b2236d2018-12-21 06:21:34 +000038void spl_board_init(void)
39{
40 struct udevice *dev;
Peng Fan0b2236d2018-12-21 06:21:34 +000041
42 uclass_find_first_device(UCLASS_MISC, &dev);
43
44 for (; dev; uclass_find_next_device(&dev)) {
45 if (device_probe(dev))
46 continue;
47 }
48
Peng Fan0b2236d2018-12-21 06:21:34 +000049 arch_cpu_init();
50
51 board_early_init_f();
52
53 timer_init();
54
Fabio Estevamaf4d6e72020-04-15 15:01:34 -030055 imx8_iomux_setup_multiple_pads(usdhc2_sd_pwr, ARRAY_SIZE(usdhc2_sd_pwr));
56 gpio_direction_output(USDHC2_SD_PWR, 0);
57
Peng Fan0b2236d2018-12-21 06:21:34 +000058 preloader_console_init();
59
60 puts("Normal Boot\n");
61}
62
Peng Fan1b9729a2020-05-05 20:28:40 +080063void spl_board_prepare_for_boot(void)
64{
Peng Fan2d65a162020-05-05 20:28:43 +080065 imx8_power_off_pd_devices(NULL, 0);
Peng Fan1b9729a2020-05-05 20:28:40 +080066}
67
Peng Fan0b2236d2018-12-21 06:21:34 +000068#ifdef CONFIG_SPL_LOAD_FIT
69int board_fit_config_name_match(const char *name)
70{
71 /* Just empty function now - can't decide what to choose */
72 debug("%s: %s\n", __func__, name);
73
74 return 0;
75}
76#endif
77
78void board_init_f(ulong dummy)
79{
80 /* Clear global data */
81 memset((void *)gd, 0, sizeof(gd_t));
82
83 /* Clear the BSS. */
84 memset(__bss_start, 0, __bss_end - __bss_start);
85
86 board_init_r(NULL, 0);
87}