Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright 2018 NXP |
| 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | afb0215 | 2019-12-28 10:45:01 -0700 | [diff] [blame] | 7 | #include <cpu_func.h> |
Simon Glass | 5e6201b | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 8 | #include <env.h> |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 9 | #include <errno.h> |
Simon Glass | a7b5130 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 10 | #include <init.h> |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 11 | #include <linux/libfdt.h> |
Alifer Moraes | ca43acf | 2020-01-16 12:43:07 -0300 | [diff] [blame] | 12 | #include <fdt_support.h> |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 13 | #include <asm/io.h> |
| 14 | #include <asm/gpio.h> |
| 15 | #include <asm/arch/clock.h> |
| 16 | #include <asm/arch/sci/sci.h> |
| 17 | #include <asm/arch/imx8-pins.h> |
| 18 | #include <asm/arch/iomux.h> |
| 19 | #include <asm/arch/sys_proto.h> |
| 20 | |
| 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
| 23 | #define UART_PAD_CTRL ((SC_PAD_CONFIG_OUT_IN << PADRING_CONFIG_SHIFT) | \ |
| 24 | (SC_PAD_ISO_OFF << PADRING_LPCONFIG_SHIFT) | \ |
| 25 | (SC_PAD_28FDSOI_DSE_DV_HIGH << PADRING_DSE_SHIFT) | \ |
| 26 | (SC_PAD_28FDSOI_PS_PU << PADRING_PULL_SHIFT)) |
| 27 | |
| 28 | static iomux_cfg_t uart0_pads[] = { |
| 29 | SC_P_UART0_RX | MUX_PAD_CTRL(UART_PAD_CTRL), |
| 30 | SC_P_UART0_TX | MUX_PAD_CTRL(UART_PAD_CTRL), |
| 31 | }; |
| 32 | |
| 33 | static void setup_iomux_uart(void) |
| 34 | { |
| 35 | imx8_iomux_setup_multiple_pads(uart0_pads, ARRAY_SIZE(uart0_pads)); |
| 36 | } |
| 37 | |
| 38 | int board_early_init_f(void) |
| 39 | { |
Anatolij Gustschin | ef156d2 | 2019-06-12 13:35:25 +0200 | [diff] [blame] | 40 | sc_pm_clock_rate_t rate = SC_80MHZ; |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 41 | int ret; |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 42 | |
Anatolij Gustschin | ef156d2 | 2019-06-12 13:35:25 +0200 | [diff] [blame] | 43 | /* Set UART0 clock root to 80 MHz */ |
| 44 | ret = sc_pm_setup_uart(SC_R_UART_0, rate); |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 45 | if (ret) |
| 46 | return ret; |
| 47 | |
| 48 | setup_iomux_uart(); |
| 49 | |
| 50 | sc_pm_set_resource_power_mode(-1, SC_R_GPIO_5, SC_PM_PW_MODE_ON); |
| 51 | |
| 52 | return 0; |
| 53 | } |
| 54 | |
Simon Glass | fa4689a | 2019-12-06 21:41:35 -0700 | [diff] [blame] | 55 | #if CONFIG_IS_ENABLED(DM_GPIO) |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 56 | static void board_gpio_init(void) |
| 57 | { |
| 58 | /* TODO */ |
| 59 | } |
| 60 | #else |
| 61 | static inline void board_gpio_init(void) {} |
| 62 | #endif |
| 63 | |
| 64 | #if IS_ENABLED(CONFIG_FEC_MXC) |
| 65 | #include <miiphy.h> |
| 66 | |
| 67 | int board_phy_config(struct phy_device *phydev) |
| 68 | { |
| 69 | phy_write(phydev, MDIO_DEVAD_NONE, 0x1d, 0x1f); |
| 70 | phy_write(phydev, MDIO_DEVAD_NONE, 0x1e, 0x8); |
| 71 | |
| 72 | phy_write(phydev, MDIO_DEVAD_NONE, 0x1d, 0x00); |
| 73 | phy_write(phydev, MDIO_DEVAD_NONE, 0x1e, 0x82ee); |
| 74 | phy_write(phydev, MDIO_DEVAD_NONE, 0x1d, 0x05); |
| 75 | phy_write(phydev, MDIO_DEVAD_NONE, 0x1e, 0x100); |
| 76 | |
| 77 | if (phydev->drv->config) |
| 78 | phydev->drv->config(phydev); |
| 79 | |
| 80 | return 0; |
| 81 | } |
| 82 | #endif |
| 83 | |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 84 | int checkboard(void) |
| 85 | { |
| 86 | puts("Board: iMX8QM MEK\n"); |
| 87 | |
| 88 | build_info(); |
| 89 | print_bootinfo(); |
| 90 | |
| 91 | return 0; |
| 92 | } |
| 93 | |
| 94 | int board_init(void) |
| 95 | { |
| 96 | /* Power up base board */ |
| 97 | sc_pm_set_resource_power_mode(-1, SC_R_BOARD_R1, SC_PM_PW_MODE_ON); |
| 98 | |
| 99 | board_gpio_init(); |
| 100 | |
| 101 | return 0; |
| 102 | } |
| 103 | |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 104 | /* |
| 105 | * Board specific reset that is system reset. |
| 106 | */ |
| 107 | void reset_cpu(ulong addr) |
| 108 | { |
| 109 | /* TODO */ |
| 110 | } |
| 111 | |
| 112 | #ifdef CONFIG_OF_BOARD_SETUP |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 113 | int ft_board_setup(void *blob, struct bd_info *bd) |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 114 | { |
| 115 | return 0; |
| 116 | } |
| 117 | #endif |
| 118 | |
| 119 | int board_mmc_get_env_dev(int devno) |
| 120 | { |
| 121 | return devno; |
| 122 | } |
| 123 | |
| 124 | int board_late_init(void) |
| 125 | { |
Peng Fan | 88b119e | 2020-05-05 20:28:44 +0800 | [diff] [blame] | 126 | char *fdt_file; |
| 127 | bool m4_booted; |
| 128 | |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 129 | #ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG |
| 130 | env_set("board_name", "MEK"); |
| 131 | env_set("board_rev", "iMX8QM"); |
| 132 | #endif |
| 133 | |
Peng Fan | 88b119e | 2020-05-05 20:28:44 +0800 | [diff] [blame] | 134 | fdt_file = env_get("fdt_file"); |
| 135 | m4_booted = m4_parts_booted(); |
| 136 | |
| 137 | if (fdt_file && !strcmp(fdt_file, "undefined")) { |
| 138 | if (m4_booted) |
| 139 | env_set("fdt_file", "imx8qm-mek-rpmsg.dtb"); |
| 140 | else |
| 141 | env_set("fdt_file", "imx8qm-mek.dtb"); |
| 142 | } |
| 143 | |
Peng Fan | 203a227 | 2019-03-05 02:32:49 +0000 | [diff] [blame] | 144 | return 0; |
| 145 | } |