Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1 | /* |
| 2 | * EFI device path from u-boot device-model mapping |
| 3 | * |
| 4 | * (C) Copyright 2017 Rob Clark |
| 5 | * |
| 6 | * SPDX-License-Identifier: GPL-2.0+ |
| 7 | */ |
| 8 | |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 9 | #define LOG_CATEGORY LOGL_ERR |
| 10 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 11 | #include <common.h> |
| 12 | #include <blk.h> |
| 13 | #include <dm.h> |
| 14 | #include <usb.h> |
| 15 | #include <mmc.h> |
| 16 | #include <efi_loader.h> |
| 17 | #include <inttypes.h> |
| 18 | #include <part.h> |
| 19 | |
| 20 | /* template END node: */ |
| 21 | static const struct efi_device_path END = { |
| 22 | .type = DEVICE_PATH_TYPE_END, |
| 23 | .sub_type = DEVICE_PATH_SUB_TYPE_END, |
| 24 | .length = sizeof(END), |
| 25 | }; |
| 26 | |
| 27 | #define U_BOOT_GUID \ |
| 28 | EFI_GUID(0xe61d73b9, 0xa384, 0x4acc, \ |
| 29 | 0xae, 0xab, 0x82, 0xe8, 0x28, 0xf3, 0x62, 0x8b) |
| 30 | |
| 31 | /* template ROOT node: */ |
| 32 | static const struct efi_device_path_vendor ROOT = { |
| 33 | .dp = { |
| 34 | .type = DEVICE_PATH_TYPE_HARDWARE_DEVICE, |
| 35 | .sub_type = DEVICE_PATH_SUB_TYPE_VENDOR, |
| 36 | .length = sizeof(ROOT), |
| 37 | }, |
| 38 | .guid = U_BOOT_GUID, |
| 39 | }; |
| 40 | |
Heinrich Schuchardt | 7d569db | 2017-12-11 12:56:39 +0100 | [diff] [blame] | 41 | #if defined(CONFIG_DM_MMC) && defined(CONFIG_MMC) |
| 42 | /* |
| 43 | * Determine if an MMC device is an SD card. |
| 44 | * |
| 45 | * @desc block device descriptor |
| 46 | * @return true if the device is an SD card |
| 47 | */ |
| 48 | static bool is_sd(struct blk_desc *desc) |
| 49 | { |
| 50 | struct mmc *mmc = find_mmc_device(desc->devnum); |
| 51 | |
| 52 | if (!mmc) |
| 53 | return false; |
| 54 | |
| 55 | return IS_SD(mmc) != 0U; |
| 56 | } |
| 57 | #endif |
| 58 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 59 | static void *dp_alloc(size_t sz) |
| 60 | { |
| 61 | void *buf; |
| 62 | |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 63 | if (efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES, sz, &buf) != |
| 64 | EFI_SUCCESS) { |
| 65 | debug("EFI: ERROR: out of memory in %s\n", __func__); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 66 | return NULL; |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 67 | } |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 68 | |
| 69 | return buf; |
| 70 | } |
| 71 | |
| 72 | /* |
| 73 | * Iterate to next block in device-path, terminating (returning NULL) |
| 74 | * at /End* node. |
| 75 | */ |
| 76 | struct efi_device_path *efi_dp_next(const struct efi_device_path *dp) |
| 77 | { |
| 78 | if (dp == NULL) |
| 79 | return NULL; |
| 80 | if (dp->type == DEVICE_PATH_TYPE_END) |
| 81 | return NULL; |
| 82 | dp = ((void *)dp) + dp->length; |
| 83 | if (dp->type == DEVICE_PATH_TYPE_END) |
| 84 | return NULL; |
| 85 | return (struct efi_device_path *)dp; |
| 86 | } |
| 87 | |
| 88 | /* |
| 89 | * Compare two device-paths, stopping when the shorter of the two hits |
| 90 | * an End* node. This is useful to, for example, compare a device-path |
| 91 | * representing a device with one representing a file on the device, or |
| 92 | * a device with a parent device. |
| 93 | */ |
Heinrich Schuchardt | 753e248 | 2017-10-26 19:25:48 +0200 | [diff] [blame] | 94 | int efi_dp_match(const struct efi_device_path *a, |
| 95 | const struct efi_device_path *b) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 96 | { |
| 97 | while (1) { |
| 98 | int ret; |
| 99 | |
| 100 | ret = memcmp(&a->length, &b->length, sizeof(a->length)); |
| 101 | if (ret) |
| 102 | return ret; |
| 103 | |
| 104 | ret = memcmp(a, b, a->length); |
| 105 | if (ret) |
| 106 | return ret; |
| 107 | |
| 108 | a = efi_dp_next(a); |
| 109 | b = efi_dp_next(b); |
| 110 | |
| 111 | if (!a || !b) |
| 112 | return 0; |
| 113 | } |
| 114 | } |
| 115 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 116 | /* |
| 117 | * See UEFI spec (section 3.1.2, about short-form device-paths.. |
| 118 | * tl;dr: we can have a device-path that starts with a USB WWID |
| 119 | * or USB Class node, and a few other cases which don't encode |
| 120 | * the full device path with bus hierarchy: |
| 121 | * |
| 122 | * - MESSAGING:USB_WWID |
| 123 | * - MESSAGING:USB_CLASS |
| 124 | * - MEDIA:FILE_PATH |
| 125 | * - MEDIA:HARD_DRIVE |
| 126 | * - MESSAGING:URI |
| 127 | */ |
| 128 | static struct efi_device_path *shorten_path(struct efi_device_path *dp) |
| 129 | { |
| 130 | while (dp) { |
| 131 | /* |
| 132 | * TODO: Add MESSAGING:USB_WWID and MESSAGING:URI.. |
| 133 | * in practice fallback.efi just uses MEDIA:HARD_DRIVE |
| 134 | * so not sure when we would see these other cases. |
| 135 | */ |
| 136 | if (EFI_DP_TYPE(dp, MESSAGING_DEVICE, MSG_USB_CLASS) || |
| 137 | EFI_DP_TYPE(dp, MEDIA_DEVICE, HARD_DRIVE_PATH) || |
| 138 | EFI_DP_TYPE(dp, MEDIA_DEVICE, FILE_PATH)) |
| 139 | return dp; |
| 140 | |
| 141 | dp = efi_dp_next(dp); |
| 142 | } |
| 143 | |
| 144 | return dp; |
| 145 | } |
| 146 | |
| 147 | static struct efi_object *find_obj(struct efi_device_path *dp, bool short_path, |
| 148 | struct efi_device_path **rem) |
| 149 | { |
| 150 | struct efi_object *efiobj; |
Alexander Graf | f9360fb | 2017-12-11 14:29:46 +0100 | [diff] [blame] | 151 | unsigned int dp_size = efi_dp_size(dp); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 152 | |
| 153 | list_for_each_entry(efiobj, &efi_obj_list, link) { |
Heinrich Schuchardt | 6953c10 | 2017-11-26 14:05:16 +0100 | [diff] [blame] | 154 | struct efi_handler *handler; |
| 155 | struct efi_device_path *obj_dp; |
| 156 | efi_status_t ret; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 157 | |
Heinrich Schuchardt | 6953c10 | 2017-11-26 14:05:16 +0100 | [diff] [blame] | 158 | ret = efi_search_protocol(efiobj->handle, |
| 159 | &efi_guid_device_path, &handler); |
| 160 | if (ret != EFI_SUCCESS) |
| 161 | continue; |
| 162 | obj_dp = handler->protocol_interface; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 163 | |
Heinrich Schuchardt | 6953c10 | 2017-11-26 14:05:16 +0100 | [diff] [blame] | 164 | do { |
| 165 | if (efi_dp_match(dp, obj_dp) == 0) { |
| 166 | if (rem) { |
Alexander Graf | f9360fb | 2017-12-11 14:29:46 +0100 | [diff] [blame] | 167 | /* |
| 168 | * Allow partial matches, but inform |
| 169 | * the caller. |
| 170 | */ |
Heinrich Schuchardt | 6953c10 | 2017-11-26 14:05:16 +0100 | [diff] [blame] | 171 | *rem = ((void *)dp) + |
| 172 | efi_dp_size(obj_dp); |
Alexander Graf | f9360fb | 2017-12-11 14:29:46 +0100 | [diff] [blame] | 173 | return efiobj; |
| 174 | } else { |
| 175 | /* Only return on exact matches */ |
| 176 | if (efi_dp_size(obj_dp) == dp_size) |
| 177 | return efiobj; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 178 | } |
Heinrich Schuchardt | 6953c10 | 2017-11-26 14:05:16 +0100 | [diff] [blame] | 179 | } |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 180 | |
Heinrich Schuchardt | 6953c10 | 2017-11-26 14:05:16 +0100 | [diff] [blame] | 181 | obj_dp = shorten_path(efi_dp_next(obj_dp)); |
| 182 | } while (short_path && obj_dp); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | return NULL; |
| 186 | } |
| 187 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 188 | /* |
| 189 | * Find an efiobj from device-path, if 'rem' is not NULL, returns the |
| 190 | * remaining part of the device path after the matched object. |
| 191 | */ |
| 192 | struct efi_object *efi_dp_find_obj(struct efi_device_path *dp, |
| 193 | struct efi_device_path **rem) |
| 194 | { |
| 195 | struct efi_object *efiobj; |
| 196 | |
Alexander Graf | f9360fb | 2017-12-11 14:29:46 +0100 | [diff] [blame] | 197 | /* Search for an exact match first */ |
| 198 | efiobj = find_obj(dp, false, NULL); |
| 199 | |
| 200 | /* Then for a fuzzy match */ |
| 201 | if (!efiobj) |
| 202 | efiobj = find_obj(dp, false, rem); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 203 | |
Alexander Graf | f9360fb | 2017-12-11 14:29:46 +0100 | [diff] [blame] | 204 | /* And now for a fuzzy short match */ |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 205 | if (!efiobj) |
| 206 | efiobj = find_obj(dp, true, rem); |
| 207 | |
| 208 | return efiobj; |
| 209 | } |
| 210 | |
Heinrich Schuchardt | 0976f8b | 2018-01-19 20:24:49 +0100 | [diff] [blame] | 211 | /* |
| 212 | * Determine the last device path node that is not the end node. |
| 213 | * |
| 214 | * @dp device path |
| 215 | * @return last node before the end node if it exists |
| 216 | * otherwise NULL |
| 217 | */ |
| 218 | const struct efi_device_path *efi_dp_last_node(const struct efi_device_path *dp) |
| 219 | { |
| 220 | struct efi_device_path *ret; |
| 221 | |
| 222 | if (!dp || dp->type == DEVICE_PATH_TYPE_END) |
| 223 | return NULL; |
| 224 | while (dp) { |
| 225 | ret = (struct efi_device_path *)dp; |
| 226 | dp = efi_dp_next(dp); |
| 227 | } |
| 228 | return ret; |
| 229 | } |
| 230 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 231 | /* return size not including End node: */ |
| 232 | unsigned efi_dp_size(const struct efi_device_path *dp) |
| 233 | { |
| 234 | unsigned sz = 0; |
| 235 | |
| 236 | while (dp) { |
| 237 | sz += dp->length; |
| 238 | dp = efi_dp_next(dp); |
| 239 | } |
| 240 | |
| 241 | return sz; |
| 242 | } |
| 243 | |
| 244 | struct efi_device_path *efi_dp_dup(const struct efi_device_path *dp) |
| 245 | { |
| 246 | struct efi_device_path *ndp; |
| 247 | unsigned sz = efi_dp_size(dp) + sizeof(END); |
| 248 | |
| 249 | if (!dp) |
| 250 | return NULL; |
| 251 | |
| 252 | ndp = dp_alloc(sz); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 253 | if (!ndp) |
| 254 | return NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 255 | memcpy(ndp, dp, sz); |
| 256 | |
| 257 | return ndp; |
| 258 | } |
| 259 | |
| 260 | struct efi_device_path *efi_dp_append(const struct efi_device_path *dp1, |
| 261 | const struct efi_device_path *dp2) |
| 262 | { |
| 263 | struct efi_device_path *ret; |
| 264 | |
| 265 | if (!dp1) { |
| 266 | ret = efi_dp_dup(dp2); |
| 267 | } else if (!dp2) { |
| 268 | ret = efi_dp_dup(dp1); |
| 269 | } else { |
| 270 | /* both dp1 and dp2 are non-null */ |
| 271 | unsigned sz1 = efi_dp_size(dp1); |
| 272 | unsigned sz2 = efi_dp_size(dp2); |
| 273 | void *p = dp_alloc(sz1 + sz2 + sizeof(END)); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 274 | if (!p) |
| 275 | return NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 276 | memcpy(p, dp1, sz1); |
| 277 | memcpy(p + sz1, dp2, sz2); |
| 278 | memcpy(p + sz1 + sz2, &END, sizeof(END)); |
| 279 | ret = p; |
| 280 | } |
| 281 | |
| 282 | return ret; |
| 283 | } |
| 284 | |
| 285 | struct efi_device_path *efi_dp_append_node(const struct efi_device_path *dp, |
| 286 | const struct efi_device_path *node) |
| 287 | { |
| 288 | struct efi_device_path *ret; |
| 289 | |
| 290 | if (!node && !dp) { |
| 291 | ret = efi_dp_dup(&END); |
| 292 | } else if (!node) { |
| 293 | ret = efi_dp_dup(dp); |
| 294 | } else if (!dp) { |
| 295 | unsigned sz = node->length; |
| 296 | void *p = dp_alloc(sz + sizeof(END)); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 297 | if (!p) |
| 298 | return NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 299 | memcpy(p, node, sz); |
| 300 | memcpy(p + sz, &END, sizeof(END)); |
| 301 | ret = p; |
| 302 | } else { |
| 303 | /* both dp and node are non-null */ |
| 304 | unsigned sz = efi_dp_size(dp); |
| 305 | void *p = dp_alloc(sz + node->length + sizeof(END)); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 306 | if (!p) |
| 307 | return NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 308 | memcpy(p, dp, sz); |
| 309 | memcpy(p + sz, node, node->length); |
| 310 | memcpy(p + sz + node->length, &END, sizeof(END)); |
| 311 | ret = p; |
| 312 | } |
| 313 | |
| 314 | return ret; |
| 315 | } |
| 316 | |
| 317 | #ifdef CONFIG_DM |
| 318 | /* size of device-path not including END node for device and all parents |
| 319 | * up to the root device. |
| 320 | */ |
| 321 | static unsigned dp_size(struct udevice *dev) |
| 322 | { |
| 323 | if (!dev || !dev->driver) |
| 324 | return sizeof(ROOT); |
| 325 | |
| 326 | switch (dev->driver->id) { |
| 327 | case UCLASS_ROOT: |
| 328 | case UCLASS_SIMPLE_BUS: |
| 329 | /* stop traversing parents at this point: */ |
| 330 | return sizeof(ROOT); |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 331 | case UCLASS_ETH: |
| 332 | return dp_size(dev->parent) + |
| 333 | sizeof(struct efi_device_path_mac_addr); |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 334 | #ifdef CONFIG_BLK |
| 335 | case UCLASS_BLK: |
| 336 | switch (dev->parent->uclass->uc_drv->id) { |
| 337 | #ifdef CONFIG_IDE |
| 338 | case UCLASS_IDE: |
| 339 | return dp_size(dev->parent) + |
| 340 | sizeof(struct efi_device_path_atapi); |
| 341 | #endif |
| 342 | #if defined(CONFIG_SCSI) && defined(CONFIG_DM_SCSI) |
| 343 | case UCLASS_SCSI: |
| 344 | return dp_size(dev->parent) + |
| 345 | sizeof(struct efi_device_path_scsi); |
| 346 | #endif |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 347 | #if defined(CONFIG_DM_MMC) && defined(CONFIG_MMC) |
| 348 | case UCLASS_MMC: |
| 349 | return dp_size(dev->parent) + |
| 350 | sizeof(struct efi_device_path_sd_mmc_path); |
| 351 | #endif |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 352 | default: |
| 353 | return dp_size(dev->parent); |
| 354 | } |
| 355 | #endif |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 356 | #if defined(CONFIG_DM_MMC) && defined(CONFIG_MMC) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 357 | case UCLASS_MMC: |
| 358 | return dp_size(dev->parent) + |
| 359 | sizeof(struct efi_device_path_sd_mmc_path); |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 360 | #endif |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 361 | case UCLASS_MASS_STORAGE: |
| 362 | case UCLASS_USB_HUB: |
| 363 | return dp_size(dev->parent) + |
| 364 | sizeof(struct efi_device_path_usb_class); |
| 365 | default: |
| 366 | /* just skip over unknown classes: */ |
| 367 | return dp_size(dev->parent); |
| 368 | } |
| 369 | } |
| 370 | |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 371 | /* |
| 372 | * Recursively build a device path. |
| 373 | * |
| 374 | * @buf pointer to the end of the device path |
| 375 | * @dev device |
| 376 | * @return pointer to the end of the device path |
| 377 | */ |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 378 | static void *dp_fill(void *buf, struct udevice *dev) |
| 379 | { |
| 380 | if (!dev || !dev->driver) |
| 381 | return buf; |
| 382 | |
| 383 | switch (dev->driver->id) { |
| 384 | case UCLASS_ROOT: |
| 385 | case UCLASS_SIMPLE_BUS: { |
| 386 | /* stop traversing parents at this point: */ |
| 387 | struct efi_device_path_vendor *vdp = buf; |
| 388 | *vdp = ROOT; |
| 389 | return &vdp[1]; |
| 390 | } |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 391 | #ifdef CONFIG_DM_ETH |
| 392 | case UCLASS_ETH: { |
| 393 | struct efi_device_path_mac_addr *dp = |
| 394 | dp_fill(buf, dev->parent); |
| 395 | struct eth_pdata *pdata = dev->platdata; |
| 396 | |
| 397 | dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
| 398 | dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_MAC_ADDR; |
| 399 | dp->dp.length = sizeof(*dp); |
| 400 | memset(&dp->mac, 0, sizeof(dp->mac)); |
| 401 | /* We only support IPv4 */ |
| 402 | memcpy(&dp->mac, &pdata->enetaddr, ARP_HLEN); |
| 403 | /* Ethernet */ |
| 404 | dp->if_type = 1; |
| 405 | return &dp[1]; |
| 406 | } |
| 407 | #endif |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 408 | #ifdef CONFIG_BLK |
| 409 | case UCLASS_BLK: |
| 410 | switch (dev->parent->uclass->uc_drv->id) { |
| 411 | #ifdef CONFIG_IDE |
| 412 | case UCLASS_IDE: { |
| 413 | struct efi_device_path_atapi *dp = |
| 414 | dp_fill(buf, dev->parent); |
| 415 | struct blk_desc *desc = dev_get_uclass_platdata(dev); |
| 416 | |
| 417 | dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
| 418 | dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_ATAPI; |
| 419 | dp->dp.length = sizeof(*dp); |
| 420 | dp->logical_unit_number = desc->devnum; |
| 421 | dp->primary_secondary = IDE_BUS(desc->devnum); |
| 422 | dp->slave_master = desc->devnum % |
| 423 | (CONFIG_SYS_IDE_MAXDEVICE / |
| 424 | CONFIG_SYS_IDE_MAXBUS); |
| 425 | return &dp[1]; |
| 426 | } |
| 427 | #endif |
| 428 | #if defined(CONFIG_SCSI) && defined(CONFIG_DM_SCSI) |
| 429 | case UCLASS_SCSI: { |
| 430 | struct efi_device_path_scsi *dp = |
| 431 | dp_fill(buf, dev->parent); |
| 432 | struct blk_desc *desc = dev_get_uclass_platdata(dev); |
| 433 | |
| 434 | dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
| 435 | dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_SCSI; |
| 436 | dp->dp.length = sizeof(*dp); |
| 437 | dp->logical_unit_number = desc->lun; |
| 438 | dp->target_id = desc->target; |
| 439 | return &dp[1]; |
| 440 | } |
| 441 | #endif |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 442 | #if defined(CONFIG_DM_MMC) && defined(CONFIG_MMC) |
| 443 | case UCLASS_MMC: { |
| 444 | struct efi_device_path_sd_mmc_path *sddp = |
| 445 | dp_fill(buf, dev->parent); |
| 446 | struct blk_desc *desc = dev_get_uclass_platdata(dev); |
| 447 | |
| 448 | sddp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
| 449 | sddp->dp.sub_type = is_sd(desc) ? |
| 450 | DEVICE_PATH_SUB_TYPE_MSG_SD : |
| 451 | DEVICE_PATH_SUB_TYPE_MSG_MMC; |
| 452 | sddp->dp.length = sizeof(*sddp); |
| 453 | sddp->slot_number = dev->seq; |
| 454 | return &sddp[1]; |
| 455 | } |
| 456 | #endif |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 457 | default: |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 458 | debug("%s(%u) %s: unhandled parent class: %s (%u)\n", |
| 459 | __FILE__, __LINE__, __func__, |
| 460 | dev->name, dev->parent->uclass->uc_drv->id); |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 461 | return dp_fill(buf, dev->parent); |
| 462 | } |
| 463 | #endif |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 464 | #if defined(CONFIG_DM_MMC) && defined(CONFIG_MMC) |
| 465 | case UCLASS_MMC: { |
| 466 | struct efi_device_path_sd_mmc_path *sddp = |
| 467 | dp_fill(buf, dev->parent); |
| 468 | struct mmc *mmc = mmc_get_mmc_dev(dev); |
| 469 | struct blk_desc *desc = mmc_get_blk_desc(mmc); |
| 470 | |
| 471 | sddp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
Heinrich Schuchardt | 7d569db | 2017-12-11 12:56:39 +0100 | [diff] [blame] | 472 | sddp->dp.sub_type = is_sd(desc) ? |
| 473 | DEVICE_PATH_SUB_TYPE_MSG_SD : |
| 474 | DEVICE_PATH_SUB_TYPE_MSG_MMC; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 475 | sddp->dp.length = sizeof(*sddp); |
| 476 | sddp->slot_number = dev->seq; |
| 477 | |
| 478 | return &sddp[1]; |
| 479 | } |
| 480 | #endif |
| 481 | case UCLASS_MASS_STORAGE: |
| 482 | case UCLASS_USB_HUB: { |
| 483 | struct efi_device_path_usb_class *udp = |
| 484 | dp_fill(buf, dev->parent); |
| 485 | struct usb_device *udev = dev_get_parent_priv(dev); |
| 486 | struct usb_device_descriptor *desc = &udev->descriptor; |
| 487 | |
| 488 | udp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
| 489 | udp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_USB_CLASS; |
| 490 | udp->dp.length = sizeof(*udp); |
| 491 | udp->vendor_id = desc->idVendor; |
| 492 | udp->product_id = desc->idProduct; |
| 493 | udp->device_class = desc->bDeviceClass; |
| 494 | udp->device_subclass = desc->bDeviceSubClass; |
| 495 | udp->device_protocol = desc->bDeviceProtocol; |
| 496 | |
| 497 | return &udp[1]; |
| 498 | } |
| 499 | default: |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 500 | debug("%s(%u) %s: unhandled device class: %s (%u)\n", |
| 501 | __FILE__, __LINE__, __func__, |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 502 | dev->name, dev->driver->id); |
| 503 | return dp_fill(buf, dev->parent); |
| 504 | } |
| 505 | } |
| 506 | |
| 507 | /* Construct a device-path from a device: */ |
| 508 | struct efi_device_path *efi_dp_from_dev(struct udevice *dev) |
| 509 | { |
| 510 | void *buf, *start; |
| 511 | |
| 512 | start = buf = dp_alloc(dp_size(dev) + sizeof(END)); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 513 | if (!buf) |
| 514 | return NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 515 | buf = dp_fill(buf, dev); |
| 516 | *((struct efi_device_path *)buf) = END; |
| 517 | |
| 518 | return start; |
| 519 | } |
| 520 | #endif |
| 521 | |
| 522 | static unsigned dp_part_size(struct blk_desc *desc, int part) |
| 523 | { |
| 524 | unsigned dpsize; |
| 525 | |
| 526 | #ifdef CONFIG_BLK |
Heinrich Schuchardt | 3a615c8 | 2017-12-11 12:56:43 +0100 | [diff] [blame] | 527 | { |
| 528 | struct udevice *dev; |
| 529 | int ret = blk_find_device(desc->if_type, desc->devnum, &dev); |
| 530 | |
| 531 | if (ret) |
| 532 | dev = desc->bdev->parent; |
| 533 | dpsize = dp_size(dev); |
| 534 | } |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 535 | #else |
| 536 | dpsize = sizeof(ROOT) + sizeof(struct efi_device_path_usb); |
| 537 | #endif |
| 538 | |
| 539 | if (part == 0) /* the actual disk, not a partition */ |
| 540 | return dpsize; |
| 541 | |
| 542 | if (desc->part_type == PART_TYPE_ISO) |
| 543 | dpsize += sizeof(struct efi_device_path_cdrom_path); |
| 544 | else |
| 545 | dpsize += sizeof(struct efi_device_path_hard_drive_path); |
| 546 | |
| 547 | return dpsize; |
| 548 | } |
| 549 | |
Heinrich Schuchardt | 8983ffd | 2017-12-11 12:56:42 +0100 | [diff] [blame] | 550 | /* |
Heinrich Schuchardt | 6c6307c | 2018-01-19 20:24:46 +0100 | [diff] [blame] | 551 | * Create a device node for a block device partition. |
Heinrich Schuchardt | 8983ffd | 2017-12-11 12:56:42 +0100 | [diff] [blame] | 552 | * |
| 553 | * @buf buffer to which the device path is wirtten |
| 554 | * @desc block device descriptor |
| 555 | * @part partition number, 0 identifies a block device |
| 556 | */ |
Heinrich Schuchardt | 6c6307c | 2018-01-19 20:24:46 +0100 | [diff] [blame] | 557 | static void *dp_part_node(void *buf, struct blk_desc *desc, int part) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 558 | { |
| 559 | disk_partition_t info; |
| 560 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 561 | part_get_info(desc, part, &info); |
| 562 | |
| 563 | if (desc->part_type == PART_TYPE_ISO) { |
| 564 | struct efi_device_path_cdrom_path *cddp = buf; |
| 565 | |
Heinrich Schuchardt | 2aae6db | 2017-12-11 12:56:40 +0100 | [diff] [blame] | 566 | cddp->boot_entry = part; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 567 | cddp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE; |
| 568 | cddp->dp.sub_type = DEVICE_PATH_SUB_TYPE_CDROM_PATH; |
| 569 | cddp->dp.length = sizeof(*cddp); |
| 570 | cddp->partition_start = info.start; |
| 571 | cddp->partition_end = info.size; |
| 572 | |
| 573 | buf = &cddp[1]; |
| 574 | } else { |
| 575 | struct efi_device_path_hard_drive_path *hddp = buf; |
| 576 | |
| 577 | hddp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE; |
| 578 | hddp->dp.sub_type = DEVICE_PATH_SUB_TYPE_HARD_DRIVE_PATH; |
| 579 | hddp->dp.length = sizeof(*hddp); |
Heinrich Schuchardt | 2aae6db | 2017-12-11 12:56:40 +0100 | [diff] [blame] | 580 | hddp->partition_number = part; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 581 | hddp->partition_start = info.start; |
| 582 | hddp->partition_end = info.size; |
| 583 | if (desc->part_type == PART_TYPE_EFI) |
| 584 | hddp->partmap_type = 2; |
| 585 | else |
| 586 | hddp->partmap_type = 1; |
Jonathan Gray | 84b4d70 | 2017-11-22 14:18:59 +1100 | [diff] [blame] | 587 | |
| 588 | switch (desc->sig_type) { |
| 589 | case SIG_TYPE_NONE: |
| 590 | default: |
| 591 | hddp->signature_type = 0; |
| 592 | memset(hddp->partition_signature, 0, |
| 593 | sizeof(hddp->partition_signature)); |
| 594 | break; |
| 595 | case SIG_TYPE_MBR: |
| 596 | hddp->signature_type = 1; |
| 597 | memset(hddp->partition_signature, 0, |
| 598 | sizeof(hddp->partition_signature)); |
| 599 | memcpy(hddp->partition_signature, &desc->mbr_sig, |
| 600 | sizeof(desc->mbr_sig)); |
| 601 | break; |
| 602 | case SIG_TYPE_GUID: |
| 603 | hddp->signature_type = 2; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 604 | memcpy(hddp->partition_signature, &desc->guid_sig, |
| 605 | sizeof(hddp->partition_signature)); |
Jonathan Gray | 84b4d70 | 2017-11-22 14:18:59 +1100 | [diff] [blame] | 606 | break; |
| 607 | } |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 608 | |
| 609 | buf = &hddp[1]; |
| 610 | } |
| 611 | |
| 612 | return buf; |
| 613 | } |
| 614 | |
Heinrich Schuchardt | 6c6307c | 2018-01-19 20:24:46 +0100 | [diff] [blame] | 615 | /* |
| 616 | * Create a device path for a block device or one of its partitions. |
| 617 | * |
| 618 | * @buf buffer to which the device path is wirtten |
| 619 | * @desc block device descriptor |
| 620 | * @part partition number, 0 identifies a block device |
| 621 | */ |
| 622 | static void *dp_part_fill(void *buf, struct blk_desc *desc, int part) |
| 623 | { |
| 624 | #ifdef CONFIG_BLK |
| 625 | { |
| 626 | struct udevice *dev; |
| 627 | int ret = blk_find_device(desc->if_type, desc->devnum, &dev); |
| 628 | |
| 629 | if (ret) |
| 630 | dev = desc->bdev->parent; |
| 631 | buf = dp_fill(buf, dev); |
| 632 | } |
| 633 | #else |
| 634 | /* |
| 635 | * We *could* make a more accurate path, by looking at if_type |
| 636 | * and handling all the different cases like we do for non- |
| 637 | * legacy (ie CONFIG_BLK=y) case. But most important thing |
| 638 | * is just to have a unique device-path for if_type+devnum. |
| 639 | * So map things to a fictitious USB device. |
| 640 | */ |
| 641 | struct efi_device_path_usb *udp; |
| 642 | |
| 643 | memcpy(buf, &ROOT, sizeof(ROOT)); |
| 644 | buf += sizeof(ROOT); |
| 645 | |
| 646 | udp = buf; |
| 647 | udp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
| 648 | udp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_USB; |
| 649 | udp->dp.length = sizeof(*udp); |
| 650 | udp->parent_port_number = desc->if_type; |
| 651 | udp->usb_interface = desc->devnum; |
| 652 | buf = &udp[1]; |
| 653 | #endif |
| 654 | |
| 655 | if (part == 0) /* the actual disk, not a partition */ |
| 656 | return buf; |
| 657 | |
| 658 | return dp_part_node(buf, desc, part); |
| 659 | } |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 660 | |
| 661 | /* Construct a device-path from a partition on a blk device: */ |
| 662 | struct efi_device_path *efi_dp_from_part(struct blk_desc *desc, int part) |
| 663 | { |
| 664 | void *buf, *start; |
| 665 | |
| 666 | start = buf = dp_alloc(dp_part_size(desc, part) + sizeof(END)); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 667 | if (!buf) |
| 668 | return NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 669 | |
| 670 | buf = dp_part_fill(buf, desc, part); |
| 671 | |
| 672 | *((struct efi_device_path *)buf) = END; |
| 673 | |
| 674 | return start; |
| 675 | } |
| 676 | |
Heinrich Schuchardt | 6c6307c | 2018-01-19 20:24:46 +0100 | [diff] [blame] | 677 | /* |
| 678 | * Create a device node for a block device partition. |
| 679 | * |
| 680 | * @buf buffer to which the device path is wirtten |
| 681 | * @desc block device descriptor |
| 682 | * @part partition number, 0 identifies a block device |
| 683 | */ |
| 684 | struct efi_device_path *efi_dp_part_node(struct blk_desc *desc, int part) |
| 685 | { |
| 686 | efi_uintn_t dpsize; |
| 687 | void *buf; |
| 688 | |
| 689 | if (desc->part_type == PART_TYPE_ISO) |
| 690 | dpsize = sizeof(struct efi_device_path_cdrom_path); |
| 691 | else |
| 692 | dpsize = sizeof(struct efi_device_path_hard_drive_path); |
| 693 | buf = dp_alloc(dpsize); |
| 694 | |
| 695 | dp_part_node(buf, desc, part); |
| 696 | |
| 697 | return buf; |
| 698 | } |
| 699 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 700 | /* convert path to an UEFI style path (ie. DOS style backslashes and utf16) */ |
| 701 | static void path_to_uefi(u16 *uefi, const char *path) |
| 702 | { |
| 703 | while (*path) { |
| 704 | char c = *(path++); |
| 705 | if (c == '/') |
| 706 | c = '\\'; |
| 707 | *(uefi++) = c; |
| 708 | } |
| 709 | *uefi = '\0'; |
| 710 | } |
| 711 | |
| 712 | /* |
| 713 | * If desc is NULL, this creates a path with only the file component, |
| 714 | * otherwise it creates a full path with both device and file components |
| 715 | */ |
| 716 | struct efi_device_path *efi_dp_from_file(struct blk_desc *desc, int part, |
| 717 | const char *path) |
| 718 | { |
| 719 | struct efi_device_path_file_path *fp; |
| 720 | void *buf, *start; |
| 721 | unsigned dpsize = 0, fpsize; |
| 722 | |
| 723 | if (desc) |
| 724 | dpsize = dp_part_size(desc, part); |
| 725 | |
| 726 | fpsize = sizeof(struct efi_device_path) + 2 * (strlen(path) + 1); |
| 727 | dpsize += fpsize; |
| 728 | |
| 729 | start = buf = dp_alloc(dpsize + sizeof(END)); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 730 | if (!buf) |
| 731 | return NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 732 | |
| 733 | if (desc) |
| 734 | buf = dp_part_fill(buf, desc, part); |
| 735 | |
| 736 | /* add file-path: */ |
| 737 | fp = buf; |
| 738 | fp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE; |
| 739 | fp->dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH; |
| 740 | fp->dp.length = fpsize; |
| 741 | path_to_uefi(fp->str, path); |
| 742 | buf += fpsize; |
| 743 | |
| 744 | *((struct efi_device_path *)buf) = END; |
| 745 | |
| 746 | return start; |
| 747 | } |
| 748 | |
Michal Simek | 2f785a1 | 2018-02-26 16:01:02 +0100 | [diff] [blame] | 749 | #ifdef CONFIG_CMD_NET |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 750 | struct efi_device_path *efi_dp_from_eth(void) |
| 751 | { |
Alexander Graf | c4e983f | 2018-03-15 17:33:38 +0100 | [diff] [blame] | 752 | #ifndef CONFIG_DM_ETH |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 753 | struct efi_device_path_mac_addr *ndp; |
Alexander Graf | c4e983f | 2018-03-15 17:33:38 +0100 | [diff] [blame] | 754 | #endif |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 755 | void *buf, *start; |
| 756 | unsigned dpsize = 0; |
| 757 | |
| 758 | assert(eth_get_dev()); |
| 759 | |
| 760 | #ifdef CONFIG_DM_ETH |
| 761 | dpsize += dp_size(eth_get_dev()); |
| 762 | #else |
| 763 | dpsize += sizeof(ROOT); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 764 | dpsize += sizeof(*ndp); |
Alexander Graf | c4e983f | 2018-03-15 17:33:38 +0100 | [diff] [blame] | 765 | #endif |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 766 | |
| 767 | start = buf = dp_alloc(dpsize + sizeof(END)); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 768 | if (!buf) |
| 769 | return NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 770 | |
| 771 | #ifdef CONFIG_DM_ETH |
| 772 | buf = dp_fill(buf, eth_get_dev()); |
| 773 | #else |
| 774 | memcpy(buf, &ROOT, sizeof(ROOT)); |
| 775 | buf += sizeof(ROOT); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 776 | |
| 777 | ndp = buf; |
| 778 | ndp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
| 779 | ndp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_MAC_ADDR; |
| 780 | ndp->dp.length = sizeof(*ndp); |
Alexander Graf | c4e983f | 2018-03-15 17:33:38 +0100 | [diff] [blame] | 781 | ndp->if_type = 1; /* Ethernet */ |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 782 | memcpy(ndp->mac.addr, eth_get_ethaddr(), ARP_HLEN); |
| 783 | buf = &ndp[1]; |
Alexander Graf | c4e983f | 2018-03-15 17:33:38 +0100 | [diff] [blame] | 784 | #endif |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 785 | |
| 786 | *((struct efi_device_path *)buf) = END; |
| 787 | |
| 788 | return start; |
| 789 | } |
| 790 | #endif |
| 791 | |
Rob Clark | 18ceba7 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 792 | /* Construct a device-path for memory-mapped image */ |
| 793 | struct efi_device_path *efi_dp_from_mem(uint32_t memory_type, |
| 794 | uint64_t start_address, |
| 795 | uint64_t end_address) |
| 796 | { |
| 797 | struct efi_device_path_memory *mdp; |
| 798 | void *buf, *start; |
| 799 | |
| 800 | start = buf = dp_alloc(sizeof(*mdp) + sizeof(END)); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 801 | if (!buf) |
| 802 | return NULL; |
Rob Clark | 18ceba7 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 803 | |
| 804 | mdp = buf; |
| 805 | mdp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE; |
| 806 | mdp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MEMORY; |
| 807 | mdp->dp.length = sizeof(*mdp); |
| 808 | mdp->memory_type = memory_type; |
| 809 | mdp->start_address = start_address; |
| 810 | mdp->end_address = end_address; |
| 811 | buf = &mdp[1]; |
| 812 | |
| 813 | *((struct efi_device_path *)buf) = END; |
| 814 | |
| 815 | return start; |
| 816 | } |
| 817 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 818 | /* |
| 819 | * Helper to split a full device path (containing both device and file |
| 820 | * parts) into it's constituent parts. |
| 821 | */ |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 822 | efi_status_t efi_dp_split_file_path(struct efi_device_path *full_path, |
| 823 | struct efi_device_path **device_path, |
| 824 | struct efi_device_path **file_path) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 825 | { |
| 826 | struct efi_device_path *p, *dp, *fp; |
| 827 | |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 828 | *device_path = NULL; |
| 829 | *file_path = NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 830 | dp = efi_dp_dup(full_path); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 831 | if (!dp) |
| 832 | return EFI_OUT_OF_RESOURCES; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 833 | p = dp; |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 834 | while (!EFI_DP_TYPE(p, MEDIA_DEVICE, FILE_PATH)) { |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 835 | p = efi_dp_next(p); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 836 | if (!p) |
| 837 | return EFI_OUT_OF_RESOURCES; |
| 838 | } |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 839 | fp = efi_dp_dup(p); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 840 | if (!fp) |
| 841 | return EFI_OUT_OF_RESOURCES; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 842 | p->type = DEVICE_PATH_TYPE_END; |
| 843 | p->sub_type = DEVICE_PATH_SUB_TYPE_END; |
| 844 | p->length = sizeof(*p); |
| 845 | |
| 846 | *device_path = dp; |
| 847 | *file_path = fp; |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 848 | return EFI_SUCCESS; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 849 | } |