summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/ac-sxb/board.c
blob: 3ea40dfb7dedaea46d0478917512e8764ff9c3a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-License-Identifier: GPL-2.0+

/*
 * Copyright (C) 2017 Atlas Copco Industrial Technique
 */

#include <common.h>
#include <init.h>
#include <mach/bbu.h>

static int sxb_coredevices_init(void)
{
	if (!of_machine_is_compatible("ac,imx7d-sxb"))
		return 0;

	imx7_bbu_internal_mmcboot_register_handler("eMMC", "/dev/mmc2", 0);

	return 0;
}
coredevice_initcall(sxb_coredevices_init);