summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-rockchip/bootrom.c
blob: cdd0536cda975db482984f29472df88555f9ea3a (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
// SPDX-License-Identifier: GPL-2.0-only
#include <mach/rockchip/bootrom.h>
#include <io.h>
#include <bootsource.h>
#include <linux/bitfield.h>
#include <linux/bitops.h>
#include <linux/kernel.h>
#include <errno.h>

#define BROM_BOOTSOURCE_ID	0x10
#define BROM_BOOTSOURCE_SLOT	0x14
#define	BROM_BOOTSOURCE_SLOT_ACTIVE	GENMASK(12, 10)

static const void __iomem *rk_iram;

int rockchip_bootsource_get_active_slot(void)
{
	if (!rk_iram)
		return -EINVAL;

	return FIELD_GET(BROM_BOOTSOURCE_SLOT_ACTIVE,
			 readl(IOMEM(rk_iram) + BROM_BOOTSOURCE_SLOT));
}

struct rk_bootsource {
	enum bootsource src;
	int instance;
};

static struct rk_bootsource bootdev_map[] = {
	[0x1] = { .src = BOOTSOURCE_NAND, .instance = 0 },
	[0x2] = { .src = BOOTSOURCE_MMC, .instance = 0 },
	[0x3] = { .src = BOOTSOURCE_SPI_NOR, .instance = 0 },
	[0x4] = { .src = BOOTSOURCE_SPI_NAND, .instance = 0 },
	[0x5] = { .src = BOOTSOURCE_MMC, .instance = 1 },
	[0xa] = { .src = BOOTSOURCE_USB, .instance = 0 },
};

void rockchip_parse_bootrom_iram(const void *iram)
{
	u32 v;

	rk_iram = iram;

	v = readl(iram + BROM_BOOTSOURCE_ID);

	if (v >= ARRAY_SIZE(bootdev_map))
		return;

	bootsource_set(bootdev_map[v].src, bootdev_map[v].instance);
}