mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-15 06:26:07 +01:00
The older i.MX8M Mini Verdin SoMs may came with 20 MHz SPI CAN controller oscillator, the newer SoMs always use 40 MHz oscillator. Handle both by overriding the oscillator frequency just before booting the kernel. These are the known variants with 20 MHz oscillator: - 0055, V1.1A, V1.1B, V1.1C and V1.1D, use a 20MHz oscillator - 0059, V1.1A and V1.1B, use a 20MHz oscillator Signed-off-by: Marek Vasut <marex@denx.de> Reviewed-by: Francesco Dolcini <francesco.dolcini@toradex.com>
161 lines
3.6 KiB
C
161 lines
3.6 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2020-2021 Toradex
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <init.h>
|
|
#include <asm/arch/clock.h>
|
|
#include <asm/arch/sys_proto.h>
|
|
#include <asm/global_data.h>
|
|
#include <asm/io.h>
|
|
#include <hang.h>
|
|
#include <i2c.h>
|
|
#include <micrel.h>
|
|
#include <miiphy.h>
|
|
#include <netdev.h>
|
|
|
|
#include "../common/tdx-cfg-block.h"
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
#define I2C_PMIC 0
|
|
|
|
enum pcb_rev_t {
|
|
PCB_VERSION_1_0,
|
|
PCB_VERSION_1_1
|
|
};
|
|
|
|
#if IS_ENABLED(CONFIG_FEC_MXC)
|
|
static int setup_fec(void)
|
|
{
|
|
struct iomuxc_gpr_base_regs *gpr =
|
|
(struct iomuxc_gpr_base_regs *)IOMUXC_GPR_BASE_ADDR;
|
|
|
|
/* Use 125M anatop REF_CLK1 for ENET1, not from external */
|
|
clrsetbits_le32(&gpr->gpr[1], 0x2000, 0);
|
|
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
int board_init(void)
|
|
{
|
|
if (IS_ENABLED(CONFIG_FEC_MXC))
|
|
setup_fec();
|
|
|
|
return 0;
|
|
}
|
|
|
|
int board_mmc_get_env_dev(int devno)
|
|
{
|
|
return devno;
|
|
}
|
|
|
|
static enum pcb_rev_t get_pcb_revision(void)
|
|
{
|
|
struct udevice *bus;
|
|
struct udevice *i2c_dev = NULL;
|
|
int ret;
|
|
u8 is_bd71837 = 0;
|
|
|
|
ret = uclass_get_device_by_seq(UCLASS_I2C, I2C_PMIC, &bus);
|
|
if (!ret)
|
|
ret = dm_i2c_probe(bus, 0x4b, 0, &i2c_dev);
|
|
if (!ret)
|
|
ret = dm_i2c_read(i2c_dev, 0x0, &is_bd71837, 1);
|
|
|
|
/* BD71837_REV, High Nibble is major version, fix 1010 */
|
|
is_bd71837 = !ret && ((is_bd71837 & 0xf0) == 0xa0);
|
|
return is_bd71837 ? PCB_VERSION_1_0 : PCB_VERSION_1_1;
|
|
}
|
|
|
|
static void select_dt_from_module_version(void)
|
|
{
|
|
char variant[32];
|
|
char *env_variant = env_get("variant");
|
|
int is_wifi = 0;
|
|
|
|
if (IS_ENABLED(CONFIG_TDX_CFG_BLOCK)) {
|
|
/*
|
|
* If we have a valid config block and it says we are a
|
|
* module with Wi-Fi/Bluetooth make sure we use the -wifi
|
|
* device tree.
|
|
*/
|
|
is_wifi = (tdx_hw_tag.prodid == VERDIN_IMX8MMQ_WIFI_BT_IT) ||
|
|
(tdx_hw_tag.prodid == VERDIN_IMX8MMDL_WIFI_BT_IT) ||
|
|
(tdx_hw_tag.prodid == VERDIN_IMX8MMQ_WIFI_BT_IT_NO_CAN) ||
|
|
(tdx_hw_tag.prodid == VERDIN_IMX8MMQ_4G_WIFI_BT_ET);
|
|
}
|
|
|
|
switch (get_pcb_revision()) {
|
|
case PCB_VERSION_1_0:
|
|
printf("Detected a V1.0 module which is no longer supported in this BSP version\n");
|
|
hang();
|
|
default:
|
|
if (is_wifi)
|
|
strlcpy(&variant[0], "wifi", sizeof(variant));
|
|
else
|
|
strlcpy(&variant[0], "nonwifi", sizeof(variant));
|
|
break;
|
|
}
|
|
|
|
if (strcmp(variant, env_variant)) {
|
|
printf("Setting variant to %s\n", variant);
|
|
env_set("variant", variant);
|
|
}
|
|
}
|
|
|
|
int board_late_init(void)
|
|
{
|
|
select_dt_from_module_version();
|
|
|
|
return 0;
|
|
}
|
|
|
|
int board_phys_sdram_size(phys_size_t *size)
|
|
{
|
|
if (!size)
|
|
return -EINVAL;
|
|
|
|
*size = get_ram_size((void *)PHYS_SDRAM, PHYS_SDRAM_SIZE + PHYS_SDRAM_2_SIZE);
|
|
|
|
return 0;
|
|
}
|
|
|
|
#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
|
|
int ft_board_setup(void *blob, struct bd_info *bd)
|
|
{
|
|
const char *canoscpath = "/oscillator";
|
|
int freq = 40000000; /* 40 MHz is used on most variants */
|
|
int canoscoff, ret;
|
|
|
|
canoscoff = fdt_path_offset(blob, canoscpath);
|
|
if (canoscoff < 0) /* No CAN oscillator found. */
|
|
goto exit;
|
|
|
|
/*
|
|
* The following "prodid" (PID4 in Toradex naming) use
|
|
* a 20MHz CAN oscillator:
|
|
* - 0055, V1.1A, V1.1B, V1.1C and V1.1D
|
|
* - 0059, V1.1A and V1.1B
|
|
*/
|
|
if ((tdx_hw_tag.ver_major == 1 && tdx_hw_tag.ver_minor == 1) &&
|
|
((tdx_hw_tag.prodid == VERDIN_IMX8MMQ_IT &&
|
|
tdx_hw_tag.ver_assembly <= 1) || /* 0059 rev. A or B */
|
|
(tdx_hw_tag.prodid == VERDIN_IMX8MMQ_WIFI_BT_IT &&
|
|
tdx_hw_tag.ver_assembly <= 3))) { /* 0055 rev. A/B/C/D */
|
|
freq = 20000000;
|
|
}
|
|
|
|
ret = fdt_setprop_u32(blob, canoscoff, "clock-frequency", freq);
|
|
if (ret < 0) {
|
|
printf("Failed to set CAN oscillator clock-frequency, ret=%d\n",
|
|
ret);
|
|
}
|
|
|
|
exit:
|
|
return ft_common_board_setup(blob, bd);
|
|
}
|
|
#endif
|