blob: 35657852595128f5f860615149fdf3393ee3f870 [file] [log] [blame]
Marcel Ziswiler99d768b2019-05-31 18:56:39 +03001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2019 Toradex
4 */
5
Tom Riniabb9a042024-05-18 20:20:43 -06006#include <common.h>
Simon Glassafb02152019-12-28 10:45:01 -07007#include <cpu_func.h>
Simon Glassa7b51302019-11-14 12:57:46 -07008#include <init.h>
Simon Glass3ba929a2020-10-30 21:38:53 -06009#include <asm/global_data.h>
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030010
11#include <asm/arch/clock.h>
12#include <asm/arch/imx8-pins.h>
13#include <asm/arch/iomux.h>
Peng Fan2e0644a2023-04-28 12:08:09 +080014#include <firmware/imx/sci/sci.h>
Andrejs Cainikovs4a5a9e92023-04-03 13:14:26 +020015#include <asm/arch/snvs_security_sc.h>
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030016#include <asm/arch/sys_proto.h>
17#include <asm/gpio.h>
18#include <asm/io.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060019#include <env.h>
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030020#include <errno.h>
21#include <linux/libfdt.h>
22
23#include "../common/tdx-cfg-block.h"
24
25DECLARE_GLOBAL_DATA_PTR;
26
27#define UART_PAD_CTRL ((SC_PAD_CONFIG_OUT_IN << 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
32static iomux_cfg_t uart3_pads[] = {
33 SC_P_FLEXCAN2_RX | MUX_MODE_ALT(2) | MUX_PAD_CTRL(UART_PAD_CTRL),
34 SC_P_FLEXCAN2_TX | MUX_MODE_ALT(2) | MUX_PAD_CTRL(UART_PAD_CTRL),
35 /* Transceiver FORCEOFF# signal, mux to use pull-up */
36 SC_P_QSPI0B_DQS | MUX_MODE_ALT(4) | MUX_PAD_CTRL(UART_PAD_CTRL),
37};
38
39static void setup_iomux_uart(void)
40{
41 imx8_iomux_setup_multiple_pads(uart3_pads, ARRAY_SIZE(uart3_pads));
42}
43
Max Krummenacher88c70712023-03-03 14:26:32 +010044static int is_imx8dx(void)
Igor Opaniukdcc63c12020-10-22 11:21:43 +030045{
Max Krummenacher88c70712023-03-03 14:26:32 +010046 u32 val = 0;
Peng Fanbffd4dc2023-06-15 18:09:00 +080047 int sc_err = sc_misc_otp_fuse_read(-1, 6, &val);
Igor Opaniukdcc63c12020-10-22 11:21:43 +030048
Fabio Estevame4339b82024-03-12 21:36:41 -030049 if (!sc_err) {
Igor Opaniukdcc63c12020-10-22 11:21:43 +030050 /* DX has two A35 cores disabled */
Max Krummenacher88c70712023-03-03 14:26:32 +010051 return (val & 0xf) != 0x0;
Igor Opaniukdcc63c12020-10-22 11:21:43 +030052 }
Max Krummenacher88c70712023-03-03 14:26:32 +010053 return false;
54}
Igor Opaniukdcc63c12020-10-22 11:21:43 +030055
Max Krummenacher88c70712023-03-03 14:26:32 +010056void board_mem_get_layout(u64 *phys_sdram_1_start,
57 u64 *phys_sdram_1_size,
58 u64 *phys_sdram_2_start,
59 u64 *phys_sdram_2_size)
60{
Igor Opaniukdcc63c12020-10-22 11:21:43 +030061 *phys_sdram_1_start = PHYS_SDRAM_1;
Max Krummenacher88c70712023-03-03 14:26:32 +010062 if (is_imx8dx())
Igor Opaniukdcc63c12020-10-22 11:21:43 +030063 /* Our DX based SKUs only have 1 GB RAM */
64 *phys_sdram_1_size = SZ_1G;
65 else
66 *phys_sdram_1_size = PHYS_SDRAM_1_SIZE;
67 *phys_sdram_2_start = PHYS_SDRAM_2;
68 *phys_sdram_2_size = PHYS_SDRAM_2_SIZE;
69}
70
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030071int board_early_init_f(void)
72{
73 sc_pm_clock_rate_t rate;
Peng Fanbffd4dc2023-06-15 18:09:00 +080074 int err;
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030075
76 /*
77 * This works around that having only UART3 up the baudrate is 1.2M
78 * instead of 115.2k. Set UART0 clock root to 80 MHz
79 */
80 rate = 80000000;
81 err = sc_pm_set_clock_rate(-1, SC_R_UART_0, SC_PM_CLK_PER, &rate);
Peng Fanbffd4dc2023-06-15 18:09:00 +080082 if (err)
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030083 return 0;
84
Anatolij Gustschinef156d22019-06-12 13:35:25 +020085 /* Set UART3 clock root to 80 MHz and enable it */
86 rate = SC_80MHZ;
87 err = sc_pm_setup_uart(SC_R_UART_3, rate);
Peng Fanbffd4dc2023-06-15 18:09:00 +080088 if (err)
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030089 return 0;
90
91 setup_iomux_uart();
92
93 return 0;
94}
95
Marcel Ziswiler99d768b2019-05-31 18:56:39 +030096#if IS_ENABLED(CONFIG_FEC_MXC)
97#include <miiphy.h>
98
99int board_phy_config(struct phy_device *phydev)
100{
101 if (phydev->drv->config)
102 phydev->drv->config(phydev);
103
104 return 0;
105}
106#endif
107
Andrejs Cainikovsa4d81542023-03-03 14:26:33 +0100108static void select_dt_from_module_version(void)
109{
110 /*
111 * The dtb filename is constructed from ${soc}-colibri-${fdt_board}.dtb.
112 * Set soc depending on the used SoC.
113 */
114 if (is_imx8dx())
115 env_set("soc", "imx8dx");
116 else
117 env_set("soc", "imx8qxp");
118}
119
Marcel Ziswiler99d768b2019-05-31 18:56:39 +0300120int board_init(void)
121{
Andrejs Cainikovs4a5a9e92023-04-03 13:14:26 +0200122 if (IS_ENABLED(CONFIG_IMX_SNVS_SEC_SC_AUTO)) {
123 int ret = snvs_security_sc_init();
124
125 if (ret)
126 return ret;
127 }
128
Marcel Ziswiler99d768b2019-05-31 18:56:39 +0300129 return 0;
130}
131
Marcel Ziswiler99d768b2019-05-31 18:56:39 +0300132#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900133int ft_board_setup(void *blob, struct bd_info *bd)
Marcel Ziswiler99d768b2019-05-31 18:56:39 +0300134{
135 return ft_common_board_setup(blob, bd);
136}
137#endif
138
139int board_mmc_get_env_dev(int devno)
140{
141 return devno;
142}
143
144int board_late_init(void)
145{
146#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
147/* TODO move to common */
148 env_set("board_name", "Colibri iMX8QXP");
149 env_set("board_rev", "v1.0");
150#endif
151
Andrejs Cainikovsaa390ed2023-04-03 13:14:25 +0200152 build_info();
153
Andrejs Cainikovsa4d81542023-03-03 14:26:33 +0100154 select_dt_from_module_version();
155
Marcel Ziswiler99d768b2019-05-31 18:56:39 +0300156 return 0;
157}