summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-layerscape/xload.c
blob: 32ff158b1b5ec992af85cdca92cc426acba52ab9 (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
// SPDX-License-Identifier: GPL-2.0

#include <common.h>
#include <bootsource.h>
#include <mach/layerscape/layerscape.h>
#include <mach/layerscape/xload.h>

int ls1046a_xload_start_image(unsigned long r0, unsigned long r1,
			      unsigned long r2)
{
	enum bootsource src;

	src = ls1046a_bootsource_get();

	switch (src) {
	case BOOTSOURCE_SPI_NOR:
		return ls1046a_qspi_start_image(r0, r1, r2);
#if defined(CONFIG_MCI_IMX_ESDHC_PBL)
	case BOOTSOURCE_MMC:
		return ls1046a_esdhc_start_image(r0, r1, r2);
#endif
	default:
		pr_err("Unknown bootsource\n");
		return -EINVAL;
	}
}

int ls1021a_xload_start_image(unsigned long r0, unsigned long r1,
			      unsigned long r2)
{
	enum bootsource src;

	src = ls1021a_bootsource_get();

	switch (src) {
	case BOOTSOURCE_SPI_NOR:
		return ls1021a_qspi_start_image(r0, r1, r2);
	default:
		pr_err("Unknown bootsource\n");
		return -EINVAL;
	}
}