summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/tqma8mpxl/board.c
blob: 648286d3b2217819537c9fbcfc00fca8b7430e5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (C) 2022 Holger Assmann <h.assmann@pengutronix.de>
 */

#include <asm/memory.h>
#include <bootsource.h>
#include <common.h>
#include <deep-probe.h>
#include <init.h>
#include <linux/phy.h>
#include <linux/sizes.h>
#include <mach/bbu.h>
#include <mach/iomux-mx8mp.h>
#include <gpio.h>
#include <envfs.h>

static int tqma8mpxl_probe(struct device_d *dev)
{
	int emmc_bbu_flag = 0;
	int sd_bbu_flag = 0;

	if (bootsource_get() == BOOTSOURCE_MMC && bootsource_get_instance() == 1) {
		of_device_enable_path("/chosen/environment-sd");
		sd_bbu_flag = BBU_HANDLER_FLAG_DEFAULT;
	} else {
		of_device_enable_path("/chosen/environment-emmc");
		emmc_bbu_flag = BBU_HANDLER_FLAG_DEFAULT;
	}

	imx8m_bbu_internal_mmc_register_handler("SD", "/dev/mmc1.barebox", sd_bbu_flag);
	imx8m_bbu_internal_mmcboot_register_handler("eMMC", "/dev/mmc2", emmc_bbu_flag);

	return 0;
}

static const struct of_device_id tqma8mpxl_of_match[] = {
	{ .compatible = "tq,imx8mp-tqma8mpdl-mba8mpxl"},
	{ .compatible = "tq,imx8mp-tqma8mpql-mba8mpxl"},
	{ /* sentinel */ },
};
BAREBOX_DEEP_PROBE_ENABLE(tqma8mpxl_of_match);

static struct driver_d tqma8mpxl_board_driver = {
	.name = "board-tqma8mpxl",
	.probe = tqma8mpxl_probe,
	.of_compatible = DRV_OF_COMPAT(tqma8mpxl_of_match),
};
device_platform_driver(tqma8mpxl_board_driver);