Merge tag 'efi-2020-07-rc6' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
[oweals/u-boot.git] / board / freescale / imx8mq_evk / imx8mq_evk.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2018 NXP
4  */
5
6 #include <common.h>
7 #include <env.h>
8 #include <init.h>
9 #include <malloc.h>
10 #include <errno.h>
11 #include <asm/io.h>
12 #include <miiphy.h>
13 #include <netdev.h>
14 #include <asm/mach-imx/iomux-v3.h>
15 #include <asm-generic/gpio.h>
16 #include <fsl_esdhc_imx.h>
17 #include <mmc.h>
18 #include <asm/arch/imx8mq_pins.h>
19 #include <asm/arch/sys_proto.h>
20 #include <asm/mach-imx/gpio.h>
21 #include <asm/mach-imx/mxc_i2c.h>
22 #include <asm/arch/clock.h>
23 #include <spl.h>
24 #include <linux/bitops.h>
25 #include <power/pmic.h>
26 #include <power/pfuze100_pmic.h>
27 #include "../common/pfuze.h"
28
29 DECLARE_GLOBAL_DATA_PTR;
30
31 #define UART_PAD_CTRL   (PAD_CTL_DSE6 | PAD_CTL_FSEL1)
32
33 #define WDOG_PAD_CTRL   (PAD_CTL_DSE6 | PAD_CTL_HYS | PAD_CTL_PUE)
34
35 static iomux_v3_cfg_t const wdog_pads[] = {
36         IMX8MQ_PAD_GPIO1_IO02__WDOG1_WDOG_B | MUX_PAD_CTRL(WDOG_PAD_CTRL),
37 };
38
39 static iomux_v3_cfg_t const uart_pads[] = {
40         IMX8MQ_PAD_UART1_RXD__UART1_RX | MUX_PAD_CTRL(UART_PAD_CTRL),
41         IMX8MQ_PAD_UART1_TXD__UART1_TX | MUX_PAD_CTRL(UART_PAD_CTRL),
42 };
43
44 int board_early_init_f(void)
45 {
46         struct wdog_regs *wdog = (struct wdog_regs *)WDOG1_BASE_ADDR;
47
48         imx_iomux_v3_setup_multiple_pads(wdog_pads, ARRAY_SIZE(wdog_pads));
49         set_wdog_reset(wdog);
50
51         imx_iomux_v3_setup_multiple_pads(uart_pads, ARRAY_SIZE(uart_pads));
52
53         return 0;
54 }
55
56 int dram_init(void)
57 {
58         /* rom_pointer[1] contains the size of TEE occupies */
59         if (rom_pointer[1])
60                 gd->ram_size = PHYS_SDRAM_SIZE - rom_pointer[1];
61         else
62                 gd->ram_size = PHYS_SDRAM_SIZE;
63
64         return 0;
65 }
66
67 #ifdef CONFIG_FEC_MXC
68 static int setup_fec(void)
69 {
70         struct iomuxc_gpr_base_regs *gpr =
71                 (struct iomuxc_gpr_base_regs *)IOMUXC_GPR_BASE_ADDR;
72
73         /* Use 125M anatop REF_CLK1 for ENET1, not from external */
74         clrsetbits_le32(&gpr->gpr[1], BIT(13) | BIT(17), 0);
75         return set_clk_enet(ENET_125MHZ);
76 }
77
78 int board_phy_config(struct phy_device *phydev)
79 {
80         /* enable rgmii rxc skew and phy mode select to RGMII copper */
81         phy_write(phydev, MDIO_DEVAD_NONE, 0x1d, 0x1f);
82         phy_write(phydev, MDIO_DEVAD_NONE, 0x1e, 0x8);
83
84         phy_write(phydev, MDIO_DEVAD_NONE, 0x1d, 0x05);
85         phy_write(phydev, MDIO_DEVAD_NONE, 0x1e, 0x100);
86
87         if (phydev->drv->config)
88                 phydev->drv->config(phydev);
89         return 0;
90 }
91 #endif
92
93 int board_init(void)
94 {
95 #ifdef CONFIG_FEC_MXC
96         setup_fec();
97 #endif
98
99         return 0;
100 }
101
102 int board_mmc_get_env_dev(int devno)
103 {
104         return devno;
105 }
106
107 int board_late_init(void)
108 {
109 #ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
110         env_set("board_name", "EVK");
111         env_set("board_rev", "iMX8MQ");
112 #endif
113
114         return 0;
115 }