blob: 17a0c5bb450cc6aef769c5866b722aaf9d389533 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Rob Clarkb66c60d2017-09-13 18:05:28 -04002/*
3 * EFI device path from u-boot device-model mapping
4 *
5 * (C) Copyright 2017 Rob Clark
Rob Clarkb66c60d2017-09-13 18:05:28 -04006 */
7
8#include <common.h>
9#include <blk.h>
10#include <dm.h>
11#include <usb.h>
12#include <mmc.h>
Patrick Wildtf2d247d2019-10-03 16:24:17 +020013#include <nvme.h>
Rob Clarkb66c60d2017-09-13 18:05:28 -040014#include <efi_loader.h>
Rob Clarkb66c60d2017-09-13 18:05:28 -040015#include <part.h>
AKASHI Takahiro23ad52f2019-09-12 13:52:35 +090016#include <sandboxblockdev.h>
Heinrich Schuchardt046fe7b2019-07-14 19:26:47 +020017#include <asm-generic/unaligned.h>
AKASHI Takahiro08c51ff2019-10-09 16:19:52 +090018#include <linux/compat.h> /* U16_MAX */
Rob Clarkb66c60d2017-09-13 18:05:28 -040019
AKASHI Takahiro23ad52f2019-09-12 13:52:35 +090020#ifdef CONFIG_SANDBOX
21const efi_guid_t efi_guid_host_dev = U_BOOT_HOST_DEV_GUID;
22#endif
23
Rob Clarkb66c60d2017-09-13 18:05:28 -040024/* template END node: */
25static const struct efi_device_path END = {
26 .type = DEVICE_PATH_TYPE_END,
27 .sub_type = DEVICE_PATH_SUB_TYPE_END,
28 .length = sizeof(END),
29};
30
Rob Clarkb66c60d2017-09-13 18:05:28 -040031/* template ROOT node: */
32static 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 Schuchardt66b051d2017-12-11 12:56:39 +010041#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 */
48static 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 Clarkb66c60d2017-09-13 18:05:28 -040059static void *dp_alloc(size_t sz)
60{
61 void *buf;
62
Heinrich Schuchardt04298682018-01-19 20:24:37 +010063 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 Clarkb66c60d2017-09-13 18:05:28 -040066 return NULL;
Heinrich Schuchardt04298682018-01-19 20:24:37 +010067 }
Rob Clarkb66c60d2017-09-13 18:05:28 -040068
Patrick Wildteab2dc32018-03-25 19:54:03 +020069 memset(buf, 0, sz);
Rob Clarkb66c60d2017-09-13 18:05:28 -040070 return buf;
71}
72
73/*
74 * Iterate to next block in device-path, terminating (returning NULL)
75 * at /End* node.
76 */
77struct efi_device_path *efi_dp_next(const struct efi_device_path *dp)
78{
79 if (dp == NULL)
80 return NULL;
81 if (dp->type == DEVICE_PATH_TYPE_END)
82 return NULL;
83 dp = ((void *)dp) + dp->length;
84 if (dp->type == DEVICE_PATH_TYPE_END)
85 return NULL;
86 return (struct efi_device_path *)dp;
87}
88
89/*
90 * Compare two device-paths, stopping when the shorter of the two hits
Heinrich Schuchardteb3bc8b2018-10-17 21:55:24 +020091 * an End* node. This is useful to, for example, compare a device-path
Rob Clarkb66c60d2017-09-13 18:05:28 -040092 * representing a device with one representing a file on the device, or
93 * a device with a parent device.
94 */
Heinrich Schuchardtff401d32017-10-26 19:25:48 +020095int efi_dp_match(const struct efi_device_path *a,
96 const struct efi_device_path *b)
Rob Clarkb66c60d2017-09-13 18:05:28 -040097{
98 while (1) {
99 int ret;
100
101 ret = memcmp(&a->length, &b->length, sizeof(a->length));
102 if (ret)
103 return ret;
104
105 ret = memcmp(a, b, a->length);
106 if (ret)
107 return ret;
108
109 a = efi_dp_next(a);
110 b = efi_dp_next(b);
111
112 if (!a || !b)
113 return 0;
114 }
115}
116
Rob Clarkb66c60d2017-09-13 18:05:28 -0400117/*
Heinrich Schuchardteb3bc8b2018-10-17 21:55:24 +0200118 * We can have device paths that start with a USB WWID or a USB Class node,
119 * and a few other cases which don't encode the full device path with bus
120 * hierarchy:
Rob Clarkb66c60d2017-09-13 18:05:28 -0400121 *
122 * - MESSAGING:USB_WWID
123 * - MESSAGING:USB_CLASS
124 * - MEDIA:FILE_PATH
125 * - MEDIA:HARD_DRIVE
126 * - MESSAGING:URI
Heinrich Schuchardteb3bc8b2018-10-17 21:55:24 +0200127 *
128 * See UEFI spec (section 3.1.2, about short-form device-paths)
Rob Clarkb66c60d2017-09-13 18:05:28 -0400129 */
130static struct efi_device_path *shorten_path(struct efi_device_path *dp)
131{
132 while (dp) {
133 /*
134 * TODO: Add MESSAGING:USB_WWID and MESSAGING:URI..
135 * in practice fallback.efi just uses MEDIA:HARD_DRIVE
136 * so not sure when we would see these other cases.
137 */
138 if (EFI_DP_TYPE(dp, MESSAGING_DEVICE, MSG_USB_CLASS) ||
139 EFI_DP_TYPE(dp, MEDIA_DEVICE, HARD_DRIVE_PATH) ||
140 EFI_DP_TYPE(dp, MEDIA_DEVICE, FILE_PATH))
141 return dp;
142
143 dp = efi_dp_next(dp);
144 }
145
146 return dp;
147}
148
149static struct efi_object *find_obj(struct efi_device_path *dp, bool short_path,
150 struct efi_device_path **rem)
151{
152 struct efi_object *efiobj;
Heinrich Schuchardtf6dd3f32018-04-16 07:59:08 +0200153 efi_uintn_t dp_size = efi_dp_instance_size(dp);
Rob Clarkb66c60d2017-09-13 18:05:28 -0400154
155 list_for_each_entry(efiobj, &efi_obj_list, link) {
Heinrich Schuchardt72292ab2017-11-26 14:05:16 +0100156 struct efi_handler *handler;
157 struct efi_device_path *obj_dp;
158 efi_status_t ret;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400159
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200160 ret = efi_search_protocol(efiobj,
Heinrich Schuchardt72292ab2017-11-26 14:05:16 +0100161 &efi_guid_device_path, &handler);
162 if (ret != EFI_SUCCESS)
163 continue;
164 obj_dp = handler->protocol_interface;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400165
Heinrich Schuchardt72292ab2017-11-26 14:05:16 +0100166 do {
167 if (efi_dp_match(dp, obj_dp) == 0) {
168 if (rem) {
Alexander Graf905cb9e2017-12-11 14:29:46 +0100169 /*
170 * Allow partial matches, but inform
171 * the caller.
172 */
Heinrich Schuchardt72292ab2017-11-26 14:05:16 +0100173 *rem = ((void *)dp) +
Heinrich Schuchardtf6dd3f32018-04-16 07:59:08 +0200174 efi_dp_instance_size(obj_dp);
Alexander Graf905cb9e2017-12-11 14:29:46 +0100175 return efiobj;
176 } else {
177 /* Only return on exact matches */
Heinrich Schuchardtf6dd3f32018-04-16 07:59:08 +0200178 if (efi_dp_instance_size(obj_dp) ==
179 dp_size)
Alexander Graf905cb9e2017-12-11 14:29:46 +0100180 return efiobj;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400181 }
Heinrich Schuchardt72292ab2017-11-26 14:05:16 +0100182 }
Rob Clarkb66c60d2017-09-13 18:05:28 -0400183
Heinrich Schuchardt72292ab2017-11-26 14:05:16 +0100184 obj_dp = shorten_path(efi_dp_next(obj_dp));
185 } while (short_path && obj_dp);
Rob Clarkb66c60d2017-09-13 18:05:28 -0400186 }
187
188 return NULL;
189}
190
Rob Clarkb66c60d2017-09-13 18:05:28 -0400191/*
192 * Find an efiobj from device-path, if 'rem' is not NULL, returns the
193 * remaining part of the device path after the matched object.
194 */
195struct efi_object *efi_dp_find_obj(struct efi_device_path *dp,
196 struct efi_device_path **rem)
197{
198 struct efi_object *efiobj;
199
Alexander Graf905cb9e2017-12-11 14:29:46 +0100200 /* Search for an exact match first */
201 efiobj = find_obj(dp, false, NULL);
Rob Clarkb66c60d2017-09-13 18:05:28 -0400202
Alexander Graf905cb9e2017-12-11 14:29:46 +0100203 /* Then for a fuzzy match */
204 if (!efiobj)
205 efiobj = find_obj(dp, false, rem);
206
207 /* And now for a fuzzy short match */
Rob Clarkb66c60d2017-09-13 18:05:28 -0400208 if (!efiobj)
209 efiobj = find_obj(dp, true, rem);
210
211 return efiobj;
212}
213
Heinrich Schuchardt65436f92018-01-19 20:24:49 +0100214/*
215 * Determine the last device path node that is not the end node.
216 *
217 * @dp device path
218 * @return last node before the end node if it exists
219 * otherwise NULL
220 */
221const struct efi_device_path *efi_dp_last_node(const struct efi_device_path *dp)
222{
223 struct efi_device_path *ret;
224
225 if (!dp || dp->type == DEVICE_PATH_TYPE_END)
226 return NULL;
227 while (dp) {
228 ret = (struct efi_device_path *)dp;
229 dp = efi_dp_next(dp);
230 }
231 return ret;
232}
233
Heinrich Schuchardtf6dd3f32018-04-16 07:59:08 +0200234/* get size of the first device path instance excluding end node */
235efi_uintn_t efi_dp_instance_size(const struct efi_device_path *dp)
Rob Clarkb66c60d2017-09-13 18:05:28 -0400236{
Heinrich Schuchardtf6dd3f32018-04-16 07:59:08 +0200237 efi_uintn_t sz = 0;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400238
Heinrich Schuchardtadb57512018-04-16 07:59:07 +0200239 if (!dp || dp->type == DEVICE_PATH_TYPE_END)
240 return 0;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400241 while (dp) {
242 sz += dp->length;
243 dp = efi_dp_next(dp);
244 }
245
246 return sz;
247}
248
Heinrich Schuchardtf6dd3f32018-04-16 07:59:08 +0200249/* get size of multi-instance device path excluding end node */
250efi_uintn_t efi_dp_size(const struct efi_device_path *dp)
251{
252 const struct efi_device_path *p = dp;
253
254 if (!p)
255 return 0;
256 while (p->type != DEVICE_PATH_TYPE_END ||
257 p->sub_type != DEVICE_PATH_SUB_TYPE_END)
258 p = (void *)p + p->length;
259
260 return (void *)p - (void *)dp;
261}
262
263/* copy multi-instance device path */
Rob Clarkb66c60d2017-09-13 18:05:28 -0400264struct efi_device_path *efi_dp_dup(const struct efi_device_path *dp)
265{
266 struct efi_device_path *ndp;
Heinrich Schuchardtf6dd3f32018-04-16 07:59:08 +0200267 size_t sz = efi_dp_size(dp) + sizeof(END);
Rob Clarkb66c60d2017-09-13 18:05:28 -0400268
269 if (!dp)
270 return NULL;
271
272 ndp = dp_alloc(sz);
Heinrich Schuchardt04298682018-01-19 20:24:37 +0100273 if (!ndp)
274 return NULL;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400275 memcpy(ndp, dp, sz);
276
277 return ndp;
278}
279
280struct efi_device_path *efi_dp_append(const struct efi_device_path *dp1,
281 const struct efi_device_path *dp2)
282{
283 struct efi_device_path *ret;
284
Heinrich Schuchardt07836342018-04-16 07:59:06 +0200285 if (!dp1 && !dp2) {
286 /* return an end node */
287 ret = efi_dp_dup(&END);
288 } else if (!dp1) {
Rob Clarkb66c60d2017-09-13 18:05:28 -0400289 ret = efi_dp_dup(dp2);
290 } else if (!dp2) {
291 ret = efi_dp_dup(dp1);
292 } else {
293 /* both dp1 and dp2 are non-null */
294 unsigned sz1 = efi_dp_size(dp1);
295 unsigned sz2 = efi_dp_size(dp2);
296 void *p = dp_alloc(sz1 + sz2 + sizeof(END));
Heinrich Schuchardt04298682018-01-19 20:24:37 +0100297 if (!p)
298 return NULL;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400299 memcpy(p, dp1, sz1);
Heinrich Schuchardt07836342018-04-16 07:59:06 +0200300 /* the end node of the second device path has to be retained */
301 memcpy(p + sz1, dp2, sz2 + sizeof(END));
Rob Clarkb66c60d2017-09-13 18:05:28 -0400302 ret = p;
303 }
304
305 return ret;
306}
307
308struct efi_device_path *efi_dp_append_node(const struct efi_device_path *dp,
309 const struct efi_device_path *node)
310{
311 struct efi_device_path *ret;
312
313 if (!node && !dp) {
314 ret = efi_dp_dup(&END);
315 } else if (!node) {
316 ret = efi_dp_dup(dp);
317 } else if (!dp) {
Heinrich Schuchardtf6dd3f32018-04-16 07:59:08 +0200318 size_t sz = node->length;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400319 void *p = dp_alloc(sz + sizeof(END));
Heinrich Schuchardt04298682018-01-19 20:24:37 +0100320 if (!p)
321 return NULL;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400322 memcpy(p, node, sz);
323 memcpy(p + sz, &END, sizeof(END));
324 ret = p;
325 } else {
326 /* both dp and node are non-null */
Heinrich Schuchardtf6dd3f32018-04-16 07:59:08 +0200327 size_t sz = efi_dp_size(dp);
Rob Clarkb66c60d2017-09-13 18:05:28 -0400328 void *p = dp_alloc(sz + node->length + sizeof(END));
Heinrich Schuchardt04298682018-01-19 20:24:37 +0100329 if (!p)
330 return NULL;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400331 memcpy(p, dp, sz);
332 memcpy(p + sz, node, node->length);
333 memcpy(p + sz + node->length, &END, sizeof(END));
334 ret = p;
335 }
336
337 return ret;
338}
339
Heinrich Schuchardt211314c2018-04-16 07:59:05 +0200340struct efi_device_path *efi_dp_create_device_node(const u8 type,
341 const u8 sub_type,
342 const u16 length)
343{
344 struct efi_device_path *ret;
345
Heinrich Schuchardt7d1e4b72019-04-23 00:51:01 +0200346 if (length < sizeof(struct efi_device_path))
347 return NULL;
348
Heinrich Schuchardt211314c2018-04-16 07:59:05 +0200349 ret = dp_alloc(length);
350 if (!ret)
351 return ret;
352 ret->type = type;
353 ret->sub_type = sub_type;
354 ret->length = length;
355 return ret;
356}
357
Heinrich Schuchardt3acef5d2018-04-16 07:59:09 +0200358struct efi_device_path *efi_dp_append_instance(
359 const struct efi_device_path *dp,
360 const struct efi_device_path *dpi)
361{
362 size_t sz, szi;
363 struct efi_device_path *p, *ret;
364
365 if (!dpi)
366 return NULL;
367 if (!dp)
368 return efi_dp_dup(dpi);
369 sz = efi_dp_size(dp);
370 szi = efi_dp_instance_size(dpi);
371 p = dp_alloc(sz + szi + 2 * sizeof(END));
372 if (!p)
373 return NULL;
374 ret = p;
375 memcpy(p, dp, sz + sizeof(END));
376 p = (void *)p + sz;
377 p->sub_type = DEVICE_PATH_SUB_TYPE_INSTANCE_END;
378 p = (void *)p + sizeof(END);
379 memcpy(p, dpi, szi);
380 p = (void *)p + szi;
381 memcpy(p, &END, sizeof(END));
382 return ret;
383}
384
385struct efi_device_path *efi_dp_get_next_instance(struct efi_device_path **dp,
386 efi_uintn_t *size)
387{
388 size_t sz;
389 struct efi_device_path *p;
390
391 if (size)
392 *size = 0;
393 if (!dp || !*dp)
394 return NULL;
Heinrich Schuchardt3acef5d2018-04-16 07:59:09 +0200395 sz = efi_dp_instance_size(*dp);
396 p = dp_alloc(sz + sizeof(END));
397 if (!p)
398 return NULL;
399 memcpy(p, *dp, sz + sizeof(END));
400 *dp = (void *)*dp + sz;
401 if ((*dp)->sub_type == DEVICE_PATH_SUB_TYPE_INSTANCE_END)
402 *dp = (void *)*dp + sizeof(END);
403 else
404 *dp = NULL;
405 if (size)
406 *size = sz + sizeof(END);
407 return p;
408}
409
410bool efi_dp_is_multi_instance(const struct efi_device_path *dp)
411{
412 const struct efi_device_path *p = dp;
413
414 if (!p)
415 return false;
416 while (p->type != DEVICE_PATH_TYPE_END)
417 p = (void *)p + p->length;
418 return p->sub_type == DEVICE_PATH_SUB_TYPE_INSTANCE_END;
419}
420
Rob Clarkb66c60d2017-09-13 18:05:28 -0400421#ifdef CONFIG_DM
422/* size of device-path not including END node for device and all parents
423 * up to the root device.
424 */
425static unsigned dp_size(struct udevice *dev)
426{
427 if (!dev || !dev->driver)
428 return sizeof(ROOT);
429
430 switch (dev->driver->id) {
431 case UCLASS_ROOT:
432 case UCLASS_SIMPLE_BUS:
433 /* stop traversing parents at this point: */
434 return sizeof(ROOT);
Heinrich Schuchardt9dfd84d2018-01-20 21:02:18 +0100435 case UCLASS_ETH:
436 return dp_size(dev->parent) +
437 sizeof(struct efi_device_path_mac_addr);
Heinrich Schuchardtaf3106a2017-12-11 12:56:44 +0100438#ifdef CONFIG_BLK
439 case UCLASS_BLK:
440 switch (dev->parent->uclass->uc_drv->id) {
441#ifdef CONFIG_IDE
442 case UCLASS_IDE:
443 return dp_size(dev->parent) +
444 sizeof(struct efi_device_path_atapi);
445#endif
446#if defined(CONFIG_SCSI) && defined(CONFIG_DM_SCSI)
447 case UCLASS_SCSI:
448 return dp_size(dev->parent) +
449 sizeof(struct efi_device_path_scsi);
450#endif
Heinrich Schuchardt9dfd84d2018-01-20 21:02:18 +0100451#if defined(CONFIG_DM_MMC) && defined(CONFIG_MMC)
452 case UCLASS_MMC:
453 return dp_size(dev->parent) +
454 sizeof(struct efi_device_path_sd_mmc_path);
455#endif
Patrick Wildtf2d247d2019-10-03 16:24:17 +0200456#if defined(CONFIG_NVME)
457 case UCLASS_NVME:
458 return dp_size(dev->parent) +
459 sizeof(struct efi_device_path_nvme);
460#endif
AKASHI Takahiro23ad52f2019-09-12 13:52:35 +0900461#ifdef CONFIG_SANDBOX
462 case UCLASS_ROOT:
463 /*
464 * Sandbox's host device will be represented
465 * as vendor device with extra one byte for
466 * device number
467 */
468 return dp_size(dev->parent)
469 + sizeof(struct efi_device_path_vendor) + 1;
470#endif
Heinrich Schuchardtaf3106a2017-12-11 12:56:44 +0100471 default:
472 return dp_size(dev->parent);
473 }
474#endif
Heinrich Schuchardt9dfd84d2018-01-20 21:02:18 +0100475#if defined(CONFIG_DM_MMC) && defined(CONFIG_MMC)
Rob Clarkb66c60d2017-09-13 18:05:28 -0400476 case UCLASS_MMC:
477 return dp_size(dev->parent) +
478 sizeof(struct efi_device_path_sd_mmc_path);
Heinrich Schuchardt9dfd84d2018-01-20 21:02:18 +0100479#endif
Rob Clarkb66c60d2017-09-13 18:05:28 -0400480 case UCLASS_MASS_STORAGE:
481 case UCLASS_USB_HUB:
482 return dp_size(dev->parent) +
483 sizeof(struct efi_device_path_usb_class);
484 default:
485 /* just skip over unknown classes: */
486 return dp_size(dev->parent);
487 }
488}
489
Heinrich Schuchardtaf3106a2017-12-11 12:56:44 +0100490/*
491 * Recursively build a device path.
492 *
493 * @buf pointer to the end of the device path
494 * @dev device
495 * @return pointer to the end of the device path
496 */
Rob Clarkb66c60d2017-09-13 18:05:28 -0400497static void *dp_fill(void *buf, struct udevice *dev)
498{
499 if (!dev || !dev->driver)
500 return buf;
501
502 switch (dev->driver->id) {
503 case UCLASS_ROOT:
504 case UCLASS_SIMPLE_BUS: {
505 /* stop traversing parents at this point: */
506 struct efi_device_path_vendor *vdp = buf;
507 *vdp = ROOT;
508 return &vdp[1];
509 }
Heinrich Schuchardt9dfd84d2018-01-20 21:02:18 +0100510#ifdef CONFIG_DM_ETH
511 case UCLASS_ETH: {
512 struct efi_device_path_mac_addr *dp =
513 dp_fill(buf, dev->parent);
514 struct eth_pdata *pdata = dev->platdata;
515
516 dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
517 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_MAC_ADDR;
518 dp->dp.length = sizeof(*dp);
519 memset(&dp->mac, 0, sizeof(dp->mac));
520 /* We only support IPv4 */
521 memcpy(&dp->mac, &pdata->enetaddr, ARP_HLEN);
522 /* Ethernet */
523 dp->if_type = 1;
524 return &dp[1];
525 }
526#endif
Heinrich Schuchardtaf3106a2017-12-11 12:56:44 +0100527#ifdef CONFIG_BLK
528 case UCLASS_BLK:
529 switch (dev->parent->uclass->uc_drv->id) {
AKASHI Takahiro23ad52f2019-09-12 13:52:35 +0900530#ifdef CONFIG_SANDBOX
531 case UCLASS_ROOT: {
532 /* stop traversing parents at this point: */
533 struct efi_device_path_vendor *dp = buf;
534 struct blk_desc *desc = dev_get_uclass_platdata(dev);
535
536 dp_fill(buf, dev->parent);
537 dp = buf;
538 ++dp;
539 dp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE;
540 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_VENDOR;
541 dp->dp.length = sizeof(*dp) + 1;
542 memcpy(&dp->guid, &efi_guid_host_dev,
543 sizeof(efi_guid_t));
544 dp->vendor_data[0] = desc->devnum;
545 return &dp->vendor_data[1];
546 }
547#endif
Heinrich Schuchardtaf3106a2017-12-11 12:56:44 +0100548#ifdef CONFIG_IDE
549 case UCLASS_IDE: {
550 struct efi_device_path_atapi *dp =
551 dp_fill(buf, dev->parent);
552 struct blk_desc *desc = dev_get_uclass_platdata(dev);
553
554 dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
555 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_ATAPI;
556 dp->dp.length = sizeof(*dp);
557 dp->logical_unit_number = desc->devnum;
558 dp->primary_secondary = IDE_BUS(desc->devnum);
559 dp->slave_master = desc->devnum %
560 (CONFIG_SYS_IDE_MAXDEVICE /
561 CONFIG_SYS_IDE_MAXBUS);
562 return &dp[1];
563 }
564#endif
565#if defined(CONFIG_SCSI) && defined(CONFIG_DM_SCSI)
566 case UCLASS_SCSI: {
567 struct efi_device_path_scsi *dp =
568 dp_fill(buf, dev->parent);
569 struct blk_desc *desc = dev_get_uclass_platdata(dev);
570
571 dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
572 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_SCSI;
573 dp->dp.length = sizeof(*dp);
574 dp->logical_unit_number = desc->lun;
575 dp->target_id = desc->target;
576 return &dp[1];
577 }
578#endif
Heinrich Schuchardt9dfd84d2018-01-20 21:02:18 +0100579#if defined(CONFIG_DM_MMC) && defined(CONFIG_MMC)
580 case UCLASS_MMC: {
581 struct efi_device_path_sd_mmc_path *sddp =
582 dp_fill(buf, dev->parent);
583 struct blk_desc *desc = dev_get_uclass_platdata(dev);
584
585 sddp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
586 sddp->dp.sub_type = is_sd(desc) ?
587 DEVICE_PATH_SUB_TYPE_MSG_SD :
588 DEVICE_PATH_SUB_TYPE_MSG_MMC;
589 sddp->dp.length = sizeof(*sddp);
590 sddp->slot_number = dev->seq;
591 return &sddp[1];
592 }
593#endif
Patrick Wildtf2d247d2019-10-03 16:24:17 +0200594#if defined(CONFIG_NVME)
595 case UCLASS_NVME: {
596 struct efi_device_path_nvme *dp =
597 dp_fill(buf, dev->parent);
598 u32 ns_id;
599
600 dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
601 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_NVME;
602 dp->dp.length = sizeof(*dp);
603 nvme_get_namespace_id(dev, &ns_id, dp->eui64);
604 memcpy(&dp->ns_id, &ns_id, sizeof(ns_id));
605 return &dp[1];
606 }
607#endif
Heinrich Schuchardtaf3106a2017-12-11 12:56:44 +0100608 default:
Heinrich Schuchardt9dfd84d2018-01-20 21:02:18 +0100609 debug("%s(%u) %s: unhandled parent class: %s (%u)\n",
610 __FILE__, __LINE__, __func__,
611 dev->name, dev->parent->uclass->uc_drv->id);
Heinrich Schuchardtaf3106a2017-12-11 12:56:44 +0100612 return dp_fill(buf, dev->parent);
613 }
614#endif
Rob Clarkb66c60d2017-09-13 18:05:28 -0400615#if defined(CONFIG_DM_MMC) && defined(CONFIG_MMC)
616 case UCLASS_MMC: {
617 struct efi_device_path_sd_mmc_path *sddp =
618 dp_fill(buf, dev->parent);
619 struct mmc *mmc = mmc_get_mmc_dev(dev);
620 struct blk_desc *desc = mmc_get_blk_desc(mmc);
621
622 sddp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
Heinrich Schuchardt66b051d2017-12-11 12:56:39 +0100623 sddp->dp.sub_type = is_sd(desc) ?
624 DEVICE_PATH_SUB_TYPE_MSG_SD :
625 DEVICE_PATH_SUB_TYPE_MSG_MMC;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400626 sddp->dp.length = sizeof(*sddp);
627 sddp->slot_number = dev->seq;
628
629 return &sddp[1];
630 }
631#endif
632 case UCLASS_MASS_STORAGE:
633 case UCLASS_USB_HUB: {
634 struct efi_device_path_usb_class *udp =
635 dp_fill(buf, dev->parent);
636 struct usb_device *udev = dev_get_parent_priv(dev);
637 struct usb_device_descriptor *desc = &udev->descriptor;
638
639 udp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
640 udp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_USB_CLASS;
641 udp->dp.length = sizeof(*udp);
642 udp->vendor_id = desc->idVendor;
643 udp->product_id = desc->idProduct;
644 udp->device_class = desc->bDeviceClass;
645 udp->device_subclass = desc->bDeviceSubClass;
646 udp->device_protocol = desc->bDeviceProtocol;
647
648 return &udp[1];
649 }
650 default:
Heinrich Schuchardt9dfd84d2018-01-20 21:02:18 +0100651 debug("%s(%u) %s: unhandled device class: %s (%u)\n",
652 __FILE__, __LINE__, __func__,
Rob Clarkb66c60d2017-09-13 18:05:28 -0400653 dev->name, dev->driver->id);
654 return dp_fill(buf, dev->parent);
655 }
656}
657
658/* Construct a device-path from a device: */
659struct efi_device_path *efi_dp_from_dev(struct udevice *dev)
660{
661 void *buf, *start;
662
663 start = buf = dp_alloc(dp_size(dev) + sizeof(END));
Heinrich Schuchardt04298682018-01-19 20:24:37 +0100664 if (!buf)
665 return NULL;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400666 buf = dp_fill(buf, dev);
667 *((struct efi_device_path *)buf) = END;
668
669 return start;
670}
671#endif
672
673static unsigned dp_part_size(struct blk_desc *desc, int part)
674{
675 unsigned dpsize;
676
677#ifdef CONFIG_BLK
Heinrich Schuchardt2bc61b82017-12-11 12:56:43 +0100678 {
679 struct udevice *dev;
680 int ret = blk_find_device(desc->if_type, desc->devnum, &dev);
681
682 if (ret)
683 dev = desc->bdev->parent;
684 dpsize = dp_size(dev);
685 }
Rob Clarkb66c60d2017-09-13 18:05:28 -0400686#else
687 dpsize = sizeof(ROOT) + sizeof(struct efi_device_path_usb);
688#endif
689
690 if (part == 0) /* the actual disk, not a partition */
691 return dpsize;
692
693 if (desc->part_type == PART_TYPE_ISO)
694 dpsize += sizeof(struct efi_device_path_cdrom_path);
695 else
696 dpsize += sizeof(struct efi_device_path_hard_drive_path);
697
698 return dpsize;
699}
700
Heinrich Schuchardtbde6bfe2017-12-11 12:56:42 +0100701/*
Heinrich Schuchardt98d48bd2018-01-19 20:24:46 +0100702 * Create a device node for a block device partition.
Heinrich Schuchardtbde6bfe2017-12-11 12:56:42 +0100703 *
Heinrich Schuchardteb3bc8b2018-10-17 21:55:24 +0200704 * @buf buffer to which the device path is written
Heinrich Schuchardtbde6bfe2017-12-11 12:56:42 +0100705 * @desc block device descriptor
706 * @part partition number, 0 identifies a block device
707 */
Heinrich Schuchardt98d48bd2018-01-19 20:24:46 +0100708static void *dp_part_node(void *buf, struct blk_desc *desc, int part)
Rob Clarkb66c60d2017-09-13 18:05:28 -0400709{
710 disk_partition_t info;
711
Rob Clarkb66c60d2017-09-13 18:05:28 -0400712 part_get_info(desc, part, &info);
713
714 if (desc->part_type == PART_TYPE_ISO) {
715 struct efi_device_path_cdrom_path *cddp = buf;
716
Heinrich Schuchardt7b982f02017-12-11 12:56:40 +0100717 cddp->boot_entry = part;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400718 cddp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE;
719 cddp->dp.sub_type = DEVICE_PATH_SUB_TYPE_CDROM_PATH;
720 cddp->dp.length = sizeof(*cddp);
721 cddp->partition_start = info.start;
Heinrich Schuchardtd0384d52019-09-04 13:56:01 +0200722 cddp->partition_size = info.size;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400723
724 buf = &cddp[1];
725 } else {
726 struct efi_device_path_hard_drive_path *hddp = buf;
727
728 hddp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE;
729 hddp->dp.sub_type = DEVICE_PATH_SUB_TYPE_HARD_DRIVE_PATH;
730 hddp->dp.length = sizeof(*hddp);
Heinrich Schuchardt7b982f02017-12-11 12:56:40 +0100731 hddp->partition_number = part;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400732 hddp->partition_start = info.start;
733 hddp->partition_end = info.size;
734 if (desc->part_type == PART_TYPE_EFI)
735 hddp->partmap_type = 2;
736 else
737 hddp->partmap_type = 1;
Jonathan Grayb6e9e092017-11-22 14:18:59 +1100738
739 switch (desc->sig_type) {
740 case SIG_TYPE_NONE:
741 default:
742 hddp->signature_type = 0;
743 memset(hddp->partition_signature, 0,
744 sizeof(hddp->partition_signature));
745 break;
746 case SIG_TYPE_MBR:
747 hddp->signature_type = 1;
748 memset(hddp->partition_signature, 0,
749 sizeof(hddp->partition_signature));
750 memcpy(hddp->partition_signature, &desc->mbr_sig,
751 sizeof(desc->mbr_sig));
752 break;
753 case SIG_TYPE_GUID:
754 hddp->signature_type = 2;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400755 memcpy(hddp->partition_signature, &desc->guid_sig,
756 sizeof(hddp->partition_signature));
Jonathan Grayb6e9e092017-11-22 14:18:59 +1100757 break;
758 }
Rob Clarkb66c60d2017-09-13 18:05:28 -0400759
760 buf = &hddp[1];
761 }
762
763 return buf;
764}
765
Heinrich Schuchardt98d48bd2018-01-19 20:24:46 +0100766/*
767 * Create a device path for a block device or one of its partitions.
768 *
Heinrich Schuchardteb3bc8b2018-10-17 21:55:24 +0200769 * @buf buffer to which the device path is written
Heinrich Schuchardt98d48bd2018-01-19 20:24:46 +0100770 * @desc block device descriptor
771 * @part partition number, 0 identifies a block device
772 */
773static void *dp_part_fill(void *buf, struct blk_desc *desc, int part)
774{
775#ifdef CONFIG_BLK
776 {
777 struct udevice *dev;
778 int ret = blk_find_device(desc->if_type, desc->devnum, &dev);
779
780 if (ret)
781 dev = desc->bdev->parent;
782 buf = dp_fill(buf, dev);
783 }
784#else
785 /*
786 * We *could* make a more accurate path, by looking at if_type
787 * and handling all the different cases like we do for non-
Heinrich Schuchardteb3bc8b2018-10-17 21:55:24 +0200788 * legacy (i.e. CONFIG_BLK=y) case. But most important thing
Heinrich Schuchardt98d48bd2018-01-19 20:24:46 +0100789 * is just to have a unique device-path for if_type+devnum.
790 * So map things to a fictitious USB device.
791 */
792 struct efi_device_path_usb *udp;
793
794 memcpy(buf, &ROOT, sizeof(ROOT));
795 buf += sizeof(ROOT);
796
797 udp = buf;
798 udp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
799 udp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_USB;
800 udp->dp.length = sizeof(*udp);
801 udp->parent_port_number = desc->if_type;
802 udp->usb_interface = desc->devnum;
803 buf = &udp[1];
804#endif
805
806 if (part == 0) /* the actual disk, not a partition */
807 return buf;
808
809 return dp_part_node(buf, desc, part);
810}
Rob Clarkb66c60d2017-09-13 18:05:28 -0400811
Heinrich Schuchardteb3bc8b2018-10-17 21:55:24 +0200812/* Construct a device-path from a partition on a block device: */
Rob Clarkb66c60d2017-09-13 18:05:28 -0400813struct efi_device_path *efi_dp_from_part(struct blk_desc *desc, int part)
814{
815 void *buf, *start;
816
817 start = buf = dp_alloc(dp_part_size(desc, part) + sizeof(END));
Heinrich Schuchardt04298682018-01-19 20:24:37 +0100818 if (!buf)
819 return NULL;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400820
821 buf = dp_part_fill(buf, desc, part);
822
823 *((struct efi_device_path *)buf) = END;
824
825 return start;
826}
827
Heinrich Schuchardt98d48bd2018-01-19 20:24:46 +0100828/*
829 * Create a device node for a block device partition.
830 *
Heinrich Schuchardteb3bc8b2018-10-17 21:55:24 +0200831 * @buf buffer to which the device path is written
Heinrich Schuchardt98d48bd2018-01-19 20:24:46 +0100832 * @desc block device descriptor
833 * @part partition number, 0 identifies a block device
834 */
835struct efi_device_path *efi_dp_part_node(struct blk_desc *desc, int part)
836{
837 efi_uintn_t dpsize;
838 void *buf;
839
840 if (desc->part_type == PART_TYPE_ISO)
841 dpsize = sizeof(struct efi_device_path_cdrom_path);
842 else
843 dpsize = sizeof(struct efi_device_path_hard_drive_path);
844 buf = dp_alloc(dpsize);
845
846 dp_part_node(buf, desc, part);
847
848 return buf;
849}
850
Heinrich Schuchardt046fe7b2019-07-14 19:26:47 +0200851/**
852 * path_to_uefi() - convert UTF-8 path to an UEFI style path
853 *
854 * Convert UTF-8 path to a UEFI style path (i.e. with backslashes as path
855 * separators and UTF-16).
856 *
857 * @src: source buffer
858 * @uefi: target buffer, possibly unaligned
859 */
860static void path_to_uefi(void *uefi, const char *src)
Rob Clarkb66c60d2017-09-13 18:05:28 -0400861{
Heinrich Schuchardt046fe7b2019-07-14 19:26:47 +0200862 u16 *pos = uefi;
863
864 /*
865 * efi_set_bootdev() calls this routine indirectly before the UEFI
866 * subsystem is initialized. So we cannot assume unaligned access to be
867 * enabled.
868 */
869 allow_unaligned();
870
871 while (*src) {
872 s32 code = utf8_get(&src);
873
874 if (code < 0)
875 code = '?';
876 else if (code == '/')
877 code = '\\';
878 utf16_put(code, &pos);
Rob Clarkb66c60d2017-09-13 18:05:28 -0400879 }
Heinrich Schuchardt046fe7b2019-07-14 19:26:47 +0200880 *pos = 0;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400881}
882
883/*
884 * If desc is NULL, this creates a path with only the file component,
885 * otherwise it creates a full path with both device and file components
886 */
887struct efi_device_path *efi_dp_from_file(struct blk_desc *desc, int part,
888 const char *path)
889{
890 struct efi_device_path_file_path *fp;
891 void *buf, *start;
AKASHI Takahiro08c51ff2019-10-09 16:19:52 +0900892 size_t dpsize = 0, fpsize;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400893
894 if (desc)
895 dpsize = dp_part_size(desc, part);
896
Heinrich Schuchardt046fe7b2019-07-14 19:26:47 +0200897 fpsize = sizeof(struct efi_device_path) +
898 2 * (utf8_utf16_strlen(path) + 1);
AKASHI Takahiro08c51ff2019-10-09 16:19:52 +0900899 if (fpsize > U16_MAX)
900 return NULL;
901
Rob Clarkb66c60d2017-09-13 18:05:28 -0400902 dpsize += fpsize;
903
904 start = buf = dp_alloc(dpsize + sizeof(END));
Heinrich Schuchardt04298682018-01-19 20:24:37 +0100905 if (!buf)
906 return NULL;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400907
908 if (desc)
909 buf = dp_part_fill(buf, desc, part);
910
911 /* add file-path: */
912 fp = buf;
913 fp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE;
914 fp->dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH;
AKASHI Takahiro08c51ff2019-10-09 16:19:52 +0900915 fp->dp.length = (u16)fpsize;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400916 path_to_uefi(fp->str, path);
917 buf += fpsize;
918
919 *((struct efi_device_path *)buf) = END;
920
921 return start;
922}
923
Joe Hershberger092f2f32018-04-13 15:26:39 -0500924#ifdef CONFIG_NET
Rob Clarkb66c60d2017-09-13 18:05:28 -0400925struct efi_device_path *efi_dp_from_eth(void)
926{
Alexander Graff9cfad12018-03-15 17:33:38 +0100927#ifndef CONFIG_DM_ETH
Rob Clarkb66c60d2017-09-13 18:05:28 -0400928 struct efi_device_path_mac_addr *ndp;
Alexander Graff9cfad12018-03-15 17:33:38 +0100929#endif
Rob Clarkb66c60d2017-09-13 18:05:28 -0400930 void *buf, *start;
931 unsigned dpsize = 0;
932
933 assert(eth_get_dev());
934
935#ifdef CONFIG_DM_ETH
936 dpsize += dp_size(eth_get_dev());
937#else
938 dpsize += sizeof(ROOT);
Rob Clarkb66c60d2017-09-13 18:05:28 -0400939 dpsize += sizeof(*ndp);
Alexander Graff9cfad12018-03-15 17:33:38 +0100940#endif
Rob Clarkb66c60d2017-09-13 18:05:28 -0400941
942 start = buf = dp_alloc(dpsize + sizeof(END));
Heinrich Schuchardt04298682018-01-19 20:24:37 +0100943 if (!buf)
944 return NULL;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400945
946#ifdef CONFIG_DM_ETH
947 buf = dp_fill(buf, eth_get_dev());
948#else
949 memcpy(buf, &ROOT, sizeof(ROOT));
950 buf += sizeof(ROOT);
Rob Clarkb66c60d2017-09-13 18:05:28 -0400951
952 ndp = buf;
953 ndp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
954 ndp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_MAC_ADDR;
955 ndp->dp.length = sizeof(*ndp);
Alexander Graff9cfad12018-03-15 17:33:38 +0100956 ndp->if_type = 1; /* Ethernet */
Rob Clarkb66c60d2017-09-13 18:05:28 -0400957 memcpy(ndp->mac.addr, eth_get_ethaddr(), ARP_HLEN);
958 buf = &ndp[1];
Alexander Graff9cfad12018-03-15 17:33:38 +0100959#endif
Rob Clarkb66c60d2017-09-13 18:05:28 -0400960
961 *((struct efi_device_path *)buf) = END;
962
963 return start;
964}
965#endif
966
Rob Clarkbf192732017-10-10 08:23:06 -0400967/* Construct a device-path for memory-mapped image */
968struct efi_device_path *efi_dp_from_mem(uint32_t memory_type,
969 uint64_t start_address,
970 uint64_t end_address)
971{
972 struct efi_device_path_memory *mdp;
973 void *buf, *start;
974
975 start = buf = dp_alloc(sizeof(*mdp) + sizeof(END));
Heinrich Schuchardt04298682018-01-19 20:24:37 +0100976 if (!buf)
977 return NULL;
Rob Clarkbf192732017-10-10 08:23:06 -0400978
979 mdp = buf;
980 mdp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE;
981 mdp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MEMORY;
982 mdp->dp.length = sizeof(*mdp);
983 mdp->memory_type = memory_type;
984 mdp->start_address = start_address;
985 mdp->end_address = end_address;
986 buf = &mdp[1];
987
988 *((struct efi_device_path *)buf) = END;
989
990 return start;
991}
992
Heinrich Schuchardtcaf6d2f2019-02-04 12:49:43 +0100993/**
994 * efi_dp_split_file_path() - split of relative file path from device path
995 *
996 * Given a device path indicating a file on a device, separate the device
997 * path in two: the device path of the actual device and the file path
998 * relative to this device.
999 *
1000 * @full_path: device path including device and file path
1001 * @device_path: path of the device
AKASHI Takahirof86076d2019-04-16 17:39:26 +02001002 * @file_path: relative path of the file or NULL if there is none
Heinrich Schuchardtcaf6d2f2019-02-04 12:49:43 +01001003 * Return: status code
Rob Clarkb66c60d2017-09-13 18:05:28 -04001004 */
Heinrich Schuchardt04298682018-01-19 20:24:37 +01001005efi_status_t efi_dp_split_file_path(struct efi_device_path *full_path,
1006 struct efi_device_path **device_path,
1007 struct efi_device_path **file_path)
Rob Clarkb66c60d2017-09-13 18:05:28 -04001008{
AKASHI Takahirof86076d2019-04-16 17:39:26 +02001009 struct efi_device_path *p, *dp, *fp = NULL;
Rob Clarkb66c60d2017-09-13 18:05:28 -04001010
Heinrich Schuchardt04298682018-01-19 20:24:37 +01001011 *device_path = NULL;
1012 *file_path = NULL;
Rob Clarkb66c60d2017-09-13 18:05:28 -04001013 dp = efi_dp_dup(full_path);
Heinrich Schuchardt04298682018-01-19 20:24:37 +01001014 if (!dp)
1015 return EFI_OUT_OF_RESOURCES;
Rob Clarkb66c60d2017-09-13 18:05:28 -04001016 p = dp;
Heinrich Schuchardt04298682018-01-19 20:24:37 +01001017 while (!EFI_DP_TYPE(p, MEDIA_DEVICE, FILE_PATH)) {
Rob Clarkb66c60d2017-09-13 18:05:28 -04001018 p = efi_dp_next(p);
Heinrich Schuchardt04298682018-01-19 20:24:37 +01001019 if (!p)
AKASHI Takahirof86076d2019-04-16 17:39:26 +02001020 goto out;
Heinrich Schuchardt04298682018-01-19 20:24:37 +01001021 }
Rob Clarkb66c60d2017-09-13 18:05:28 -04001022 fp = efi_dp_dup(p);
Heinrich Schuchardt04298682018-01-19 20:24:37 +01001023 if (!fp)
1024 return EFI_OUT_OF_RESOURCES;
Rob Clarkb66c60d2017-09-13 18:05:28 -04001025 p->type = DEVICE_PATH_TYPE_END;
1026 p->sub_type = DEVICE_PATH_SUB_TYPE_END;
1027 p->length = sizeof(*p);
1028
AKASHI Takahirof86076d2019-04-16 17:39:26 +02001029out:
Rob Clarkb66c60d2017-09-13 18:05:28 -04001030 *device_path = dp;
1031 *file_path = fp;
Heinrich Schuchardt04298682018-01-19 20:24:37 +01001032 return EFI_SUCCESS;
Rob Clarkb66c60d2017-09-13 18:05:28 -04001033}
AKASHI Takahirof1589ff2018-10-17 16:32:03 +09001034
Heinrich Schuchardtcab6f062019-10-30 20:13:24 +01001035/**
1036 * efi_dp_from_name() - convert U-Boot device and file path to device path
1037 *
1038 * @dev: U-Boot device, e.g. 'mmc'
1039 * @devnr: U-Boot device number, e.g. 1 for 'mmc:1'
1040 * @path: file path relative to U-Boot device, may be NULL
1041 * @device: pointer to receive device path of the device
1042 * @file: pointer to receive device path for the file
1043 * Return: status code
1044 */
AKASHI Takahirof1589ff2018-10-17 16:32:03 +09001045efi_status_t efi_dp_from_name(const char *dev, const char *devnr,
1046 const char *path,
1047 struct efi_device_path **device,
1048 struct efi_device_path **file)
1049{
1050 int is_net;
1051 struct blk_desc *desc = NULL;
1052 disk_partition_t fs_partition;
1053 int part = 0;
1054 char filename[32] = { 0 }; /* dp->str is u16[32] long */
1055 char *s;
1056
AKASHI Takahiro2419b162018-11-05 18:06:40 +09001057 if (path && !file)
AKASHI Takahirof1589ff2018-10-17 16:32:03 +09001058 return EFI_INVALID_PARAMETER;
1059
1060 is_net = !strcmp(dev, "Net");
1061 if (!is_net) {
1062 part = blk_get_device_part_str(dev, devnr, &desc, &fs_partition,
1063 1);
Patrick Delaunay74f5baa2019-04-10 11:02:58 +02001064 if (part < 0 || !desc)
AKASHI Takahirof1589ff2018-10-17 16:32:03 +09001065 return EFI_INVALID_PARAMETER;
1066
AKASHI Takahiro2419b162018-11-05 18:06:40 +09001067 if (device)
1068 *device = efi_dp_from_part(desc, part);
AKASHI Takahirof1589ff2018-10-17 16:32:03 +09001069 } else {
1070#ifdef CONFIG_NET
AKASHI Takahiro2419b162018-11-05 18:06:40 +09001071 if (device)
1072 *device = efi_dp_from_eth();
AKASHI Takahirof1589ff2018-10-17 16:32:03 +09001073#endif
1074 }
1075
1076 if (!path)
1077 return EFI_SUCCESS;
1078
Heinrich Schuchardt30a231d2019-02-23 11:20:23 +01001079 snprintf(filename, sizeof(filename), "%s", path);
AKASHI Takahirof1589ff2018-10-17 16:32:03 +09001080 /* DOS style file path: */
1081 s = filename;
1082 while ((s = strchr(s, '/')))
1083 *s++ = '\\';
Heinrich Schuchardtcab6f062019-10-30 20:13:24 +01001084 *file = efi_dp_from_file(is_net ? NULL : desc, part, filename);
AKASHI Takahirof1589ff2018-10-17 16:32:03 +09001085
Heinrich Schuchardtcab6f062019-10-30 20:13:24 +01001086 if (!*file)
AKASHI Takahiro08c51ff2019-10-09 16:19:52 +09001087 return EFI_INVALID_PARAMETER;
1088
AKASHI Takahirof1589ff2018-10-17 16:32:03 +09001089 return EFI_SUCCESS;
1090}