mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-28 16:48:18 +00:00

Add support for the Variscite VAR-SOM-IMX93 evaluation kit. The SoM consists of an NXP iMX93 dual A55 CPU. The SoM is mounted on a Variscite Symphony SBC. Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com>
47 lines
889 B
C
47 lines
889 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2016 Freescale Semiconductor, Inc.
|
|
* Copyright 2018 NXP
|
|
*
|
|
*/
|
|
#include <command.h>
|
|
#include <asm/arch/sys_proto.h>
|
|
#include <linux/errno.h>
|
|
#include <asm/io.h>
|
|
#include <stdbool.h>
|
|
#include <mmc.h>
|
|
#include <vsprintf.h>
|
|
#include <env.h>
|
|
|
|
static int check_mmc_autodetect(void)
|
|
{
|
|
char *autodetect_str = env_get("mmcautodetect");
|
|
|
|
if (autodetect_str && (strcmp(autodetect_str, "yes") == 0))
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* This should be defined for each board */
|
|
__weak int mmc_map_to_kernel_blk(int dev_no)
|
|
{
|
|
return dev_no;
|
|
}
|
|
|
|
void board_late_mmc_env_init(void)
|
|
{
|
|
char cmd[32];
|
|
u32 dev_no = mmc_get_env_dev();
|
|
|
|
if (!check_mmc_autodetect())
|
|
return;
|
|
|
|
env_set_ulong("mmcdev", dev_no);
|
|
|
|
/* Set mmcblk env */
|
|
env_set_ulong("mmcblk", mmc_map_to_kernel_blk(dev_no));
|
|
|
|
sprintf(cmd, "mmc dev %d", dev_no);
|
|
run_command(cmd, 0);
|
|
}
|