blob: c51c99b5156cbd2cf10d50c7c7acb9a1ad9cca3f [file] [log] [blame]
Igor Opaniuk309e65b2020-01-28 14:42:25 +01001// SPDX-License-Identifier: GPL-2.0+
2/*
Marcel Ziswilerd7f9a202021-10-09 22:41:09 +02003 * Copyright 2020-2021 Toradex
Igor Opaniuk309e65b2020-01-28 14:42:25 +01004 */
5
6#include <common.h>
Simon Glass97589732020-05-10 11:40:02 -06007#include <init.h>
Igor Opaniuk309e65b2020-01-28 14:42:25 +01008#include <asm/arch/clock.h>
Igor Opaniukd1b4d0d2020-03-27 12:28:18 +02009#include <asm/arch/sys_proto.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060010#include <asm/global_data.h>
Igor Opaniuk309e65b2020-01-28 14:42:25 +010011#include <asm/io.h>
Max Krummenacher34515ca2021-10-09 22:41:10 +020012#include <hang.h>
Max Krummenacher4b13b562020-10-28 11:58:13 +020013#include <i2c.h>
Marcel Ziswilerd7f9a202021-10-09 22:41:09 +020014#include <micrel.h>
Igor Opaniuk309e65b2020-01-28 14:42:25 +010015#include <miiphy.h>
16#include <netdev.h>
17
Max Krummenacher4b13b562020-10-28 11:58:13 +020018#include "../common/tdx-cfg-block.h"
19
Igor Opaniuk309e65b2020-01-28 14:42:25 +010020DECLARE_GLOBAL_DATA_PTR;
21
Max Krummenacher4b13b562020-10-28 11:58:13 +020022#define I2C_PMIC 0
23
24enum pcb_rev_t {
25 PCB_VERSION_1_0,
26 PCB_VERSION_1_1
27};
28
Igor Opaniuk309e65b2020-01-28 14:42:25 +010029#if IS_ENABLED(CONFIG_FEC_MXC)
30static int setup_fec(void)
31{
32 struct iomuxc_gpr_base_regs *gpr =
33 (struct iomuxc_gpr_base_regs *)IOMUXC_GPR_BASE_ADDR;
34
35 /* Use 125M anatop REF_CLK1 for ENET1, not from external */
36 clrsetbits_le32(&gpr->gpr[1], 0x2000, 0);
37
38 return 0;
39}
Igor Opaniuk309e65b2020-01-28 14:42:25 +010040#endif
41
42int board_init(void)
43{
44 if (IS_ENABLED(CONFIG_FEC_MXC))
45 setup_fec();
46
47 return 0;
48}
49
50int board_mmc_get_env_dev(int devno)
51{
52 return devno;
53}
54
Max Krummenacher4b13b562020-10-28 11:58:13 +020055static enum pcb_rev_t get_pcb_revision(void)
56{
57 struct udevice *bus;
58 struct udevice *i2c_dev = NULL;
59 int ret;
60 u8 is_bd71837 = 0;
61
62 ret = uclass_get_device_by_seq(UCLASS_I2C, I2C_PMIC, &bus);
63 if (!ret)
64 ret = dm_i2c_probe(bus, 0x4b, 0, &i2c_dev);
65 if (!ret)
66 ret = dm_i2c_read(i2c_dev, 0x0, &is_bd71837, 1);
67
68 /* BD71837_REV, High Nibble is major version, fix 1010 */
69 is_bd71837 = !ret && ((is_bd71837 & 0xf0) == 0xa0);
70 return is_bd71837 ? PCB_VERSION_1_0 : PCB_VERSION_1_1;
71}
72
73static void select_dt_from_module_version(void)
74{
75 char variant[32];
76 char *env_variant = env_get("variant");
77 int is_wifi = 0;
78
79 if (IS_ENABLED(CONFIG_TDX_CFG_BLOCK)) {
80 /*
81 * If we have a valid config block and it says we are a
82 * module with Wi-Fi/Bluetooth make sure we use the -wifi
83 * device tree.
84 */
85 is_wifi = (tdx_hw_tag.prodid == VERDIN_IMX8MMQ_WIFI_BT_IT) ||
86 (tdx_hw_tag.prodid == VERDIN_IMX8MMDL_WIFI_BT_IT);
87 }
88
89 switch (get_pcb_revision()) {
90 case PCB_VERSION_1_0:
Max Krummenacher34515ca2021-10-09 22:41:10 +020091 printf("Detected a V1.0 module which is no longer supported in this BSP version\n");
92 hang();
Max Krummenacher4b13b562020-10-28 11:58:13 +020093 default:
94 if (is_wifi)
Max Krummenacher34515ca2021-10-09 22:41:10 +020095 strlcpy(&variant[0], "wifi", sizeof(variant));
Max Krummenacher4b13b562020-10-28 11:58:13 +020096 else
Max Krummenacher34515ca2021-10-09 22:41:10 +020097 strlcpy(&variant[0], "nonwifi", sizeof(variant));
Max Krummenacher4b13b562020-10-28 11:58:13 +020098 break;
99 }
100
101 if (strcmp(variant, env_variant)) {
102 printf("Setting variant to %s\n", variant);
103 env_set("variant", variant);
104
105 if (IS_ENABLED(CONFIG_ENV_IS_NOWHERE))
106 env_save();
107 }
108}
109
Igor Opaniuk309e65b2020-01-28 14:42:25 +0100110int board_late_init(void)
111{
Max Krummenacher4b13b562020-10-28 11:58:13 +0200112 select_dt_from_module_version();
113
Igor Opaniuk309e65b2020-01-28 14:42:25 +0100114 return 0;
115}
116
Marcel Ziswiler6b17fd12020-10-28 11:58:16 +0200117int board_phys_sdram_size(phys_size_t *size)
118{
119 if (!size)
120 return -EINVAL;
121
122 *size = get_ram_size((void *)PHYS_SDRAM, PHYS_SDRAM_SIZE);
123
124 return 0;
125}
126
Igor Opaniuk309e65b2020-01-28 14:42:25 +0100127#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900128int ft_board_setup(void *blob, struct bd_info *bd)
Igor Opaniuk309e65b2020-01-28 14:42:25 +0100129{
130 return 0;
131}
132#endif