blob: 74a189ab4d7f4d2920744f57db6c79b1d6e57128 [file] [log] [blame]
Oliver Grauteaf5e29b2021-05-31 15:50:40 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2016 Freescale Semiconductor, Inc.
4 * Copyright 2018 NXP
5 *
6 */
Tom Rinidec7ea02024-05-20 13:35:03 -06007
8#include <vsprintf.h>
Oliver Grauteaf5e29b2021-05-31 15:50:40 +02009#include <linux/errno.h>
10#include <asm/io.h>
11#include <env.h>
12#include <command.h>
13#include <stdbool.h>
14#include <mmc.h>
15
16static int check_mmc_autodetect(void)
17{
18 char *autodetect_str = env_get("mmcautodetect");
19
20 if ((autodetect_str) && (strcmp(autodetect_str, "yes") == 0))
21 return 1;
22
23 return 0;
24}
25
26/* This should be defined for each board */
27__weak int mmc_map_to_kernel_blk(int dev_no)
28{
29 return dev_no;
30}
31
32void board_late_mmc_env_init(void)
33{
34 char cmd[32];
35 char mmcblk[32];
36 u32 dev_no = mmc_get_env_dev();
37
38 if (!check_mmc_autodetect())
39 return;
40
41 env_set_ulong("mmcdev", dev_no);
42
43 /* Set mmcblk env */
44 sprintf(mmcblk, "/dev/mmcblk%dp2 rootwait rw",
45 mmc_map_to_kernel_blk(dev_no));
46 env_set("mmcroot", mmcblk);
47
48 sprintf(cmd, "mmc dev %d", dev_no);
49 run_command(cmd, 0);
50}