Loading...
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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | // SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (c) 2023, Linaro Limited */ #include <dm.h> #include <dfu.h> #include <fwu.h> #include <fwu_mdata.h> #include <log.h> #include <malloc.h> #include <mtd.h> #include <u-boot/uuid.h> #include <stdio.h> #include <dm/ofnode.h> static struct fwu_mtd_image_info *mtd_img_by_uuid(const char *uuidbuf) { int num_images; struct fwu_mdata_mtd_priv *mtd_priv = dev_get_priv(fwu_get_dev()); struct fwu_mtd_image_info *image_info = mtd_priv->fwu_mtd_images; if (!image_info) return NULL; num_images = CONFIG_FWU_NUM_BANKS * CONFIG_FWU_NUM_IMAGES_PER_BANK; for (int i = 0; i < num_images; i++) if (!strcmp(uuidbuf, image_info[i].uuidbuf)) return &image_info[i]; return NULL; } int fwu_mtd_get_alt_num(efi_guid_t *image_id, u8 *alt_num, const char *mtd_dev) { struct fwu_mtd_image_info *mtd_img_info; char uuidbuf[UUID_STR_LEN + 1]; fdt_addr_t offset, size = 0; struct dfu_entity *dfu; int i, nalt, ret; mtd_probe_devices(); uuid_bin_to_str(image_id->b, uuidbuf, UUID_STR_FORMAT_STD); mtd_img_info = mtd_img_by_uuid(uuidbuf); if (!mtd_img_info) { log_err("%s: Not found partition for image %s\n", __func__, uuidbuf); return -ENOENT; } offset = mtd_img_info->start; size = mtd_img_info->size; ret = dfu_init_env_entities(NULL, NULL); if (ret) return -ENOENT; nalt = list_count_nodes(&dfu_list); if (!nalt) { log_warning("No entities in dfu_alt_info\n"); dfu_free_entities(); return -ENOENT; } ret = -ENOENT; for (i = 0; i < nalt; i++) { dfu = dfu_get_entity(i); /* Only MTD RAW access */ if (!dfu || dfu->dev_type != DFU_DEV_MTD || dfu->layout != DFU_RAW_ADDR || dfu->data.mtd.start != offset || dfu->data.mtd.size != size) continue; *alt_num = dfu->alt; ret = 0; break; } dfu_free_entities(); log_debug("%s: %s -> %d\n", __func__, uuidbuf, *alt_num); return ret; } /** * fwu_plat_get_alt_num() - Get the DFU Alt Num for the image from the platform * @dev: FWU device * @image_id: Image GUID for which DFU alt number needs to be retrieved * @alt_num: Pointer to the alt_num * * Get the DFU alt number from the platform for the image specified by the * image GUID. * * Note: This is a weak function and platforms can override this with * their own implementation for obtaining the alt number value. * * Return: 0 if OK, -ve on error */ __weak int fwu_plat_get_alt_num(struct udevice *dev, efi_guid_t *image_id, u8 *alt_num) { return fwu_mtd_get_alt_num(image_id, alt_num, "nor1"); } static int gen_image_alt_info(char *buf, size_t len, struct fwu_image_entry *img, struct mtd_info *mtd) { char *p = buf, *end = buf + len; int i; p += snprintf(p, end - p, "mtd %s", mtd->name); if (end < p) { log_err("%s:%d Run out of buffer\n", __func__, __LINE__); return -E2BIG; } /* * List the image banks in the FWU mdata and search the corresponding * partition based on partition's uuid. */ for (i = 0; i < CONFIG_FWU_NUM_BANKS; i++) { struct fwu_mtd_image_info *mtd_img_info; struct fwu_image_bank_info *bank; char uuidbuf[UUID_STR_LEN + 1]; u32 offset, size; /* Query a partition by image UUID */ bank = &img->img_bank_info[i]; uuid_bin_to_str(bank->image_guid.b, uuidbuf, UUID_STR_FORMAT_STD); mtd_img_info = mtd_img_by_uuid(uuidbuf); if (!mtd_img_info) { log_err("%s: Not found partition for image %s\n", __func__, uuidbuf); break; } offset = mtd_img_info->start; size = mtd_img_info->size; p += snprintf(p, end - p, "%sbank%d raw %x %x", i == 0 ? "=" : ";", i, offset, size); if (end < p) { log_err("%s:%d Run out of buffer\n", __func__, __LINE__); return -E2BIG; } } if (i == CONFIG_FWU_NUM_BANKS) return 0; return -ENOENT; } int fwu_gen_alt_info_from_mtd(char *buf, size_t len, struct mtd_info *mtd) { int i, l, ret; struct fwu_data *data = fwu_get_data(); struct fwu_image_entry *img_entry; for (i = 0; i < CONFIG_FWU_NUM_IMAGES_PER_BANK; i++) { img_entry = &data->fwu_images[i]; ret = gen_image_alt_info(buf, len, img_entry, mtd); if (ret) break; l = strlen(buf); /* Replace the last ';' with '&' if there is another image. */ if (i != CONFIG_FWU_NUM_IMAGES_PER_BANK - 1 && l) { buf[l] = '&'; buf++; } len -= l; buf += l; } return ret; } |