Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
Simon Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 3 | * Bootmethod for extlinux boot from a block device |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 4 | * |
| 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 Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 17 | #include <dm.h> |
Simon Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 18 | #include <extlinux.h> |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 19 | #include <fs.h> |
| 20 | #include <malloc.h> |
| 21 | #include <mapmem.h> |
| 22 | #include <mmc.h> |
| 23 | #include <pxe_utils.h> |
| 24 | |
Simon Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 25 | static int extlinux_get_state_desc(struct udevice *dev, char *buf, int maxsize) |
Simon Glass | 988caca | 2022-07-30 15:52:19 -0600 | [diff] [blame] | 26 | { |
| 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 Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 38 | static int extlinux_getfile(struct pxe_context *ctx, const char *file_path, |
| 39 | char *file_addr, ulong *sizep) |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 40 | { |
Simon Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 41 | struct extlinux_info *info = ctx->userdata; |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 42 | 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 Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 57 | static int extlinux_check(struct udevice *dev, struct bootflow_iter *iter) |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 58 | { |
| 59 | int ret; |
| 60 | |
| 61 | /* This only works on block devices */ |
Simon Glass | 865328c | 2023-01-17 10:47:54 -0700 | [diff] [blame] | 62 | ret = bootflow_iter_check_blk(iter); |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 63 | if (ret) |
| 64 | return log_msg_ret("blk", ret); |
| 65 | |
| 66 | return 0; |
| 67 | } |
| 68 | |
Simon Glass | 2175e76 | 2023-01-06 08:52:33 -0600 | [diff] [blame] | 69 | /** |
Simon Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 70 | * extlinux_fill_info() - Decode the extlinux file to find out its info |
Simon Glass | 2175e76 | 2023-01-06 08:52:33 -0600 | [diff] [blame] | 71 | * |
| 72 | * @bflow: Bootflow to process |
| 73 | * @return 0 if OK, -ve on error |
| 74 | */ |
Simon Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 75 | static int extlinux_fill_info(struct bootflow *bflow) |
Simon Glass | 2175e76 | 2023-01-06 08:52:33 -0600 | [diff] [blame] | 76 | { |
| 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 Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 101 | static int extlinux_read_bootflow(struct udevice *dev, struct bootflow *bflow) |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 102 | { |
| 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 Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 124 | ret = bootmeth_try_file(bflow, desc, prefix, EXTLINUX_FNAME); |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 125 | } 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 Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 134 | ret = extlinux_fill_info(bflow); |
Simon Glass | 2175e76 | 2023-01-06 08:52:33 -0600 | [diff] [blame] | 135 | if (ret) |
| 136 | return log_msg_ret("inf", ret); |
| 137 | |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 138 | return 0; |
| 139 | } |
| 140 | |
Simon Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 141 | static int extlinux_boot(struct udevice *dev, struct bootflow *bflow) |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 142 | { |
| 143 | struct cmd_tbl cmdtp = {}; /* dummy */ |
| 144 | struct pxe_context ctx; |
Simon Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 145 | struct extlinux_info info; |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 146 | ulong addr; |
| 147 | int ret; |
| 148 | |
| 149 | addr = map_to_sysmem(bflow->buf); |
| 150 | info.dev = dev; |
| 151 | info.bflow = bflow; |
Simon Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 152 | ret = pxe_setup_ctx(&ctx, &cmdtp, extlinux_getfile, &info, true, |
Jonas Karlman | a7e4dff | 2023-06-09 14:59:01 +0000 | [diff] [blame] | 153 | bflow->fname, false); |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 154 | 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 Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 164 | static int extlinux_bootmeth_bind(struct udevice *dev) |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 165 | { |
| 166 | struct bootmeth_uc_plat *plat = dev_get_uclass_plat(dev); |
| 167 | |
| 168 | plat->desc = IS_ENABLED(CONFIG_BOOTSTD_FULL) ? |
Simon Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 169 | "Extlinux boot from a block device" : "extlinux"; |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 170 | |
| 171 | return 0; |
| 172 | } |
| 173 | |
Simon Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 174 | static 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 Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 178 | .read_file = bootmeth_common_read_file, |
Simon Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 179 | .boot = extlinux_boot, |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 180 | }; |
| 181 | |
Simon Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 182 | static const struct udevice_id extlinux_bootmeth_ids[] = { |
| 183 | { .compatible = "u-boot,extlinux" }, |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 184 | { } |
| 185 | }; |
| 186 | |
Simon Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 187 | U_BOOT_DRIVER(bootmeth_extlinux) = { |
| 188 | .name = "bootmeth_extlinux", |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 189 | .id = UCLASS_BOOTMETH, |
Simon Glass | 79f6635 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 190 | .of_match = extlinux_bootmeth_ids, |
| 191 | .ops = &extlinux_bootmeth_ops, |
| 192 | .bind = extlinux_bootmeth_bind, |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 193 | }; |