common: Drop log.h from common header
[platform/kernel/u-boot.git] / board / freescale / imx8qxp_mek / spl.c
1 /*
2  * Copyright 2018 NXP
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #include <common.h>
8 #include <dm.h>
9 #include <image.h>
10 #include <init.h>
11 #include <log.h>
12 #include <spl.h>
13 #include <dm/uclass.h>
14 #include <dm/device.h>
15 #include <dm/uclass-internal.h>
16 #include <dm/device-internal.h>
17 #include <dm/lists.h>
18 #include <asm/io.h>
19 #include <asm/gpio.h>
20 #include <asm/arch/sci/sci.h>
21 #include <asm/arch/imx8-pins.h>
22 #include <asm/arch/iomux.h>
23 #include <asm/arch/sys_proto.h>
24
25 DECLARE_GLOBAL_DATA_PTR;
26
27 #define GPIO_PAD_CTRL   ((SC_PAD_CONFIG_NORMAL << PADRING_CONFIG_SHIFT) | \
28                          (SC_PAD_ISO_OFF << PADRING_LPCONFIG_SHIFT) | \
29                          (SC_PAD_28FDSOI_DSE_DV_HIGH << PADRING_DSE_SHIFT) | \
30                          (SC_PAD_28FDSOI_PS_PU << PADRING_PULL_SHIFT))
31
32 #define USDHC2_SD_PWR IMX_GPIO_NR(4, 19)
33 static iomux_cfg_t usdhc2_sd_pwr[] = {
34         SC_P_USDHC1_RESET_B | MUX_PAD_CTRL(GPIO_PAD_CTRL),
35 };
36
37 void spl_board_init(void)
38 {
39         struct udevice *dev;
40
41         uclass_find_first_device(UCLASS_MISC, &dev);
42
43         for (; dev; uclass_find_next_device(&dev)) {
44                 if (device_probe(dev))
45                         continue;
46         }
47
48         arch_cpu_init();
49
50         board_early_init_f();
51
52         timer_init();
53
54         imx8_iomux_setup_multiple_pads(usdhc2_sd_pwr, ARRAY_SIZE(usdhc2_sd_pwr));
55         gpio_direction_output(USDHC2_SD_PWR, 0);
56
57         preloader_console_init();
58
59         puts("Normal Boot\n");
60 }
61
62 void spl_board_prepare_for_boot(void)
63 {
64         imx8_power_off_pd_devices(NULL, 0);
65 }
66
67 #ifdef CONFIG_SPL_LOAD_FIT
68 int board_fit_config_name_match(const char *name)
69 {
70         /* Just empty function now - can't decide what to choose */
71         debug("%s: %s\n", __func__, name);
72
73         return 0;
74 }
75 #endif
76
77 void board_init_f(ulong dummy)
78 {
79         /* Clear global data */
80         memset((void *)gd, 0, sizeof(gd_t));
81
82         /* Clear the BSS. */
83         memset(__bss_start, 0, __bss_end - __bss_start);
84
85         board_init_r(NULL, 0);
86 }