blob: 6b2b84003836accb6be84aa266eeab92689e93a7 [file] [log] [blame]
Simon Glass31aefaf2022-04-24 23:31:13 -06001// SPDX-License-Identifier: GPL-2.0+
2/*
Simon Glass79f66352023-05-10 16:34:46 -06003 * Bootmethod for extlinux boot from a block device
Simon Glass31aefaf2022-04-24 23:31:13 -06004 *
5 * Copyright 2021 Google LLC
6 * Written by Simon Glass <sjg@chromium.org>
7 */
8
9#define LOG_CATEGORY UCLASS_BOOTSTD
10
11#include <common.h>
12#include <bootdev.h>
13#include <bootflow.h>
14#include <bootmeth.h>
15#include <bootstd.h>
16#include <command.h>
Simon Glass31aefaf2022-04-24 23:31:13 -060017#include <dm.h>
Simon Glass79f66352023-05-10 16:34:46 -060018#include <extlinux.h>
Simon Glass31aefaf2022-04-24 23:31:13 -060019#include <fs.h>
20#include <malloc.h>
21#include <mapmem.h>
22#include <mmc.h>
23#include <pxe_utils.h>
24
Simon Glass79f66352023-05-10 16:34:46 -060025static int extlinux_get_state_desc(struct udevice *dev, char *buf, int maxsize)
Simon Glass988caca2022-07-30 15:52:19 -060026{
27 if (IS_ENABLED(CONFIG_SANDBOX)) {
28 int len;
29
30 len = snprintf(buf, maxsize, "OK");
31
32 return len + 1 < maxsize ? 0 : -ENOSPC;
33 }
34
35 return 0;
36}
37
Simon Glass79f66352023-05-10 16:34:46 -060038static int extlinux_getfile(struct pxe_context *ctx, const char *file_path,
39 char *file_addr, ulong *sizep)
Simon Glass31aefaf2022-04-24 23:31:13 -060040{
Simon Glass79f66352023-05-10 16:34:46 -060041 struct extlinux_info *info = ctx->userdata;
Simon Glass31aefaf2022-04-24 23:31:13 -060042 ulong addr;
43 int ret;
44
45 addr = simple_strtoul(file_addr, NULL, 16);
46
47 /* Allow up to 1GB */
48 *sizep = 1 << 30;
49 ret = bootmeth_read_file(info->dev, info->bflow, file_path, addr,
50 sizep);
51 if (ret)
52 return log_msg_ret("read", ret);
53
54 return 0;
55}
56
Simon Glass79f66352023-05-10 16:34:46 -060057static int extlinux_check(struct udevice *dev, struct bootflow_iter *iter)
Simon Glass31aefaf2022-04-24 23:31:13 -060058{
59 int ret;
60
61 /* This only works on block devices */
Simon Glass865328c2023-01-17 10:47:54 -070062 ret = bootflow_iter_check_blk(iter);
Simon Glass31aefaf2022-04-24 23:31:13 -060063 if (ret)
64 return log_msg_ret("blk", ret);
65
66 return 0;
67}
68
Simon Glass2175e762023-01-06 08:52:33 -060069/**
Simon Glass79f66352023-05-10 16:34:46 -060070 * extlinux_fill_info() - Decode the extlinux file to find out its info
Simon Glass2175e762023-01-06 08:52:33 -060071 *
72 * @bflow: Bootflow to process
73 * @return 0 if OK, -ve on error
74 */
Simon Glass79f66352023-05-10 16:34:46 -060075static int extlinux_fill_info(struct bootflow *bflow)
Simon Glass2175e762023-01-06 08:52:33 -060076{
77 struct membuff mb;
78 char line[200];
79 char *data;
80 int len;
81
82 log_debug("parsing bflow file size %x\n", bflow->size);
83 membuff_init(&mb, bflow->buf, bflow->size);
84 membuff_putraw(&mb, bflow->size, true, &data);
85 while (len = membuff_readline(&mb, line, sizeof(line) - 1, ' '), len) {
86 char *tok, *p = line;
87
88 tok = strsep(&p, " ");
89 if (p) {
90 if (!strcmp("label", tok)) {
91 bflow->os_name = strdup(p);
92 if (!bflow->os_name)
93 return log_msg_ret("os", -ENOMEM);
94 }
95 }
96 }
97
98 return 0;
99}
100
Simon Glass79f66352023-05-10 16:34:46 -0600101static int extlinux_read_bootflow(struct udevice *dev, struct bootflow *bflow)
Simon Glass31aefaf2022-04-24 23:31:13 -0600102{
103 struct blk_desc *desc;
104 const char *const *prefixes;
105 struct udevice *bootstd;
106 const char *prefix;
107 loff_t size;
108 int ret, i;
109
110 ret = uclass_first_device_err(UCLASS_BOOTSTD, &bootstd);
111 if (ret)
112 return log_msg_ret("std", ret);
113
114 /* If a block device, we require a partition table */
115 if (bflow->blk && !bflow->part)
116 return -ENOENT;
117
118 prefixes = bootstd_get_prefixes(bootstd);
119 i = 0;
120 desc = bflow->blk ? dev_get_uclass_plat(bflow->blk) : NULL;
121 do {
122 prefix = prefixes ? prefixes[i] : NULL;
123
Simon Glass79f66352023-05-10 16:34:46 -0600124 ret = bootmeth_try_file(bflow, desc, prefix, EXTLINUX_FNAME);
Simon Glass31aefaf2022-04-24 23:31:13 -0600125 } while (ret && prefixes && prefixes[++i]);
126 if (ret)
127 return log_msg_ret("try", ret);
128 size = bflow->size;
129
130 ret = bootmeth_alloc_file(bflow, 0x10000, 1);
131 if (ret)
132 return log_msg_ret("read", ret);
133
Simon Glass79f66352023-05-10 16:34:46 -0600134 ret = extlinux_fill_info(bflow);
Simon Glass2175e762023-01-06 08:52:33 -0600135 if (ret)
136 return log_msg_ret("inf", ret);
137
Simon Glass31aefaf2022-04-24 23:31:13 -0600138 return 0;
139}
140
Simon Glass79f66352023-05-10 16:34:46 -0600141static int extlinux_boot(struct udevice *dev, struct bootflow *bflow)
Simon Glass31aefaf2022-04-24 23:31:13 -0600142{
143 struct cmd_tbl cmdtp = {}; /* dummy */
144 struct pxe_context ctx;
Simon Glass79f66352023-05-10 16:34:46 -0600145 struct extlinux_info info;
Simon Glass31aefaf2022-04-24 23:31:13 -0600146 ulong addr;
147 int ret;
148
149 addr = map_to_sysmem(bflow->buf);
150 info.dev = dev;
151 info.bflow = bflow;
Simon Glass79f66352023-05-10 16:34:46 -0600152 ret = pxe_setup_ctx(&ctx, &cmdtp, extlinux_getfile, &info, true,
Jonas Karlmana7e4dff2023-06-09 14:59:01 +0000153 bflow->fname, false);
Simon Glass31aefaf2022-04-24 23:31:13 -0600154 if (ret)
155 return log_msg_ret("ctx", -EINVAL);
156
157 ret = pxe_process(&ctx, addr, false);
158 if (ret)
159 return log_msg_ret("bread", -EINVAL);
160
161 return 0;
162}
163
Simon Glass79f66352023-05-10 16:34:46 -0600164static int extlinux_bootmeth_bind(struct udevice *dev)
Simon Glass31aefaf2022-04-24 23:31:13 -0600165{
166 struct bootmeth_uc_plat *plat = dev_get_uclass_plat(dev);
167
168 plat->desc = IS_ENABLED(CONFIG_BOOTSTD_FULL) ?
Simon Glass79f66352023-05-10 16:34:46 -0600169 "Extlinux boot from a block device" : "extlinux";
Simon Glass31aefaf2022-04-24 23:31:13 -0600170
171 return 0;
172}
173
Simon Glass79f66352023-05-10 16:34:46 -0600174static struct bootmeth_ops extlinux_bootmeth_ops = {
175 .get_state_desc = extlinux_get_state_desc,
176 .check = extlinux_check,
177 .read_bootflow = extlinux_read_bootflow,
Simon Glass31aefaf2022-04-24 23:31:13 -0600178 .read_file = bootmeth_common_read_file,
Simon Glass79f66352023-05-10 16:34:46 -0600179 .boot = extlinux_boot,
Simon Glass31aefaf2022-04-24 23:31:13 -0600180};
181
Simon Glass79f66352023-05-10 16:34:46 -0600182static const struct udevice_id extlinux_bootmeth_ids[] = {
183 { .compatible = "u-boot,extlinux" },
Simon Glass31aefaf2022-04-24 23:31:13 -0600184 { }
185};
186
Simon Glass79f66352023-05-10 16:34:46 -0600187U_BOOT_DRIVER(bootmeth_extlinux) = {
188 .name = "bootmeth_extlinux",
Simon Glass31aefaf2022-04-24 23:31:13 -0600189 .id = UCLASS_BOOTMETH,
Simon Glass79f66352023-05-10 16:34:46 -0600190 .of_match = extlinux_bootmeth_ids,
191 .ops = &extlinux_bootmeth_ops,
192 .bind = extlinux_bootmeth_bind,
Simon Glass31aefaf2022-04-24 23:31:13 -0600193};