summaryrefslogtreecommitdiff
path: root/fs/sandbox/host_bootdev.c
blob: 0d12ee4ef74fda3f3982d914a0c142deceec5d96 (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
// SPDX-License-Identifier: GPL-2.0+
/*
 * Bootdevice for MMC
 *
 * Copyright 2021 Google LLC
 * Written by Simon Glass <sjg@chromium.org>
 */

#include <common.h>
#include <bootdev.h>
#include <bootflow.h>
#include <bootmeth.h>
#include <dm.h>
#include <fs.h>

static int host_get_bootflow(struct udevice *dev, struct bootflow_iter *iter,
			     struct bootflow *bflow)
{
	int ret;

	if (iter->part)
		return log_msg_ret("max", -ESHUTDOWN);

	bflow->name = strdup(dev->name);
	if (!bflow->name)
		return log_msg_ret("name", -ENOMEM);

	ret = bootmeth_check(bflow->method, iter);
	if (ret)
		return log_msg_ret("check", ret);

	bflow->state = BOOTFLOWST_MEDIA;
	bflow->fs_type = FS_TYPE_SANDBOX;

	ret = bootmeth_read_bootflow(bflow->method, bflow);
	if (ret)
		return log_msg_ret("method", ret);

	return 0;
}

struct bootdev_ops host_bootdev_ops = {
	.get_bootflow	= host_get_bootflow,
};

static const struct udevice_id host_bootdev_ids[] = {
	{ .compatible = "sandbox,bootdev-host" },
	{ }
};

U_BOOT_DRIVER(host_bootdev) = {
	.name		= "host_bootdev",
	.id		= UCLASS_BOOTDEV,
	.ops		= &host_bootdev_ops,
	.of_match	= host_bootdev_ids,
};