summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-layerscape/pblimage.c
blob: deaf7143b92b01900ea4252b4c055dfd8d96f08c (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
50
51
52
53
54
55
56
57
58
#define pr_fmt(fmt) "pblimage: " fmt

#include <bootm.h>
#include <common.h>
#include <init.h>
#include <memory.h>
#include <linux/sizes.h>

#define BAREBOX_STAGE2_OFFSET	SZ_128K

static int do_bootm_layerscape_pblimage(struct image_data *data)
{
	void (*barebox)(unsigned long x0, unsigned long x1, unsigned long x2,
		       unsigned long x3);
	resource_size_t start, end;
	int ret;

	ret = memory_bank_first_find_space(&start, &end);
	if (ret)
		return ret;

	ret = bootm_load_os(data, start);
	if (ret)
		return ret;

	barebox = (void*)start + BAREBOX_STAGE2_OFFSET;

	if (data->verbose)
		printf("Loaded barebox image to 0x%08lx\n",
		       (unsigned long)barebox);

	shutdown_barebox();

	barebox(0, 0, 0, 0);

	return -EIO;
}

static struct image_handler image_handler_layerscape_pbl_image = {
	.name = "Layerscape image",
	.bootm = do_bootm_layerscape_pblimage,
	.filetype = filetype_layerscape_image,
};

static struct image_handler image_handler_layerscape_qspi_pbl_image = {
	.name = "Layerscape QSPI image",
	.bootm = do_bootm_layerscape_pblimage,
	.filetype = filetype_layerscape_qspi_image,
};

static int layerscape_register_pbl_image_handler(void)
{
	register_image_handler(&image_handler_layerscape_pbl_image);
	register_image_handler(&image_handler_layerscape_qspi_pbl_image);

	return 0;
}
late_initcall(layerscape_register_pbl_image_handler);