blob: c135e2883db70374d0b1af9f699c6aa20870dee5 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Rob Clarkf90cb9f2017-09-13 18:05:28 -04002/*
3 * EFI device path from u-boot device-model mapping
4 *
5 * (C) Copyright 2017 Rob Clark
Rob Clarkf90cb9f2017-09-13 18:05:28 -04006 */
7
Alfonso Sánchez-Beatof007a372021-07-15 15:31:42 +02008#define LOG_CATEGORY LOGC_EFI
9
Rob Clarkf90cb9f2017-09-13 18:05:28 -040010#include <common.h>
11#include <blk.h>
12#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
Simon Glass274e0b02020-05-10 11:39:56 -060014#include <net.h>
Rob Clarkf90cb9f2017-09-13 18:05:28 -040015#include <usb.h>
16#include <mmc.h>
Patrick Wildta3ca37e2019-10-03 16:24:17 +020017#include <nvme.h>
Rob Clarkf90cb9f2017-09-13 18:05:28 -040018#include <efi_loader.h>
Rob Clarkf90cb9f2017-09-13 18:05:28 -040019#include <part.h>
Alfonso Sánchez-Beatof007a372021-07-15 15:31:42 +020020#include <uuid.h>
Heinrich Schuchardt8d80af82019-07-14 19:26:47 +020021#include <asm-generic/unaligned.h>
AKASHI Takahirof1dbbae2019-10-09 16:19:52 +090022#include <linux/compat.h> /* U16_MAX */
Rob Clarkf90cb9f2017-09-13 18:05:28 -040023
Tobias Waldekranz32152682023-02-16 16:33:55 +010024#ifdef CONFIG_BLKMAP
25const efi_guid_t efi_guid_blkmap_dev = U_BOOT_BLKMAP_DEV_GUID;
26#endif
AKASHI Takahiro659a6262019-09-12 13:52:35 +090027#ifdef CONFIG_SANDBOX
28const efi_guid_t efi_guid_host_dev = U_BOOT_HOST_DEV_GUID;
29#endif
Heinrich Schuchardtc770aaa2020-05-20 22:39:35 +020030#ifdef CONFIG_VIRTIO_BLK
31const efi_guid_t efi_guid_virtio_dev = U_BOOT_VIRTIO_DEV_GUID;
32#endif
AKASHI Takahiro659a6262019-09-12 13:52:35 +090033
Rob Clarkf90cb9f2017-09-13 18:05:28 -040034/* template END node: */
Masahisa Kojima97bd9da2022-06-19 13:55:59 +090035const struct efi_device_path END = {
Rob Clarkf90cb9f2017-09-13 18:05:28 -040036 .type = DEVICE_PATH_TYPE_END,
37 .sub_type = DEVICE_PATH_SUB_TYPE_END,
38 .length = sizeof(END),
39};
40
Rob Clarkf90cb9f2017-09-13 18:05:28 -040041/* template ROOT node: */
42static const struct efi_device_path_vendor ROOT = {
43 .dp = {
44 .type = DEVICE_PATH_TYPE_HARDWARE_DEVICE,
45 .sub_type = DEVICE_PATH_SUB_TYPE_VENDOR,
46 .length = sizeof(ROOT),
47 },
48 .guid = U_BOOT_GUID,
49};
50
Simon Glass222f3cb2021-09-24 18:30:17 -060051#if defined(CONFIG_MMC)
Heinrich Schuchardt7d569db2017-12-11 12:56:39 +010052/*
53 * Determine if an MMC device is an SD card.
54 *
55 * @desc block device descriptor
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +010056 * Return: true if the device is an SD card
Heinrich Schuchardt7d569db2017-12-11 12:56:39 +010057 */
58static bool is_sd(struct blk_desc *desc)
59{
60 struct mmc *mmc = find_mmc_device(desc->devnum);
61
62 if (!mmc)
63 return false;
64
65 return IS_SD(mmc) != 0U;
66}
67#endif
68
Rob Clarkf90cb9f2017-09-13 18:05:28 -040069/*
70 * Iterate to next block in device-path, terminating (returning NULL)
71 * at /End* node.
72 */
73struct efi_device_path *efi_dp_next(const struct efi_device_path *dp)
74{
75 if (dp == NULL)
76 return NULL;
77 if (dp->type == DEVICE_PATH_TYPE_END)
78 return NULL;
79 dp = ((void *)dp) + dp->length;
80 if (dp->type == DEVICE_PATH_TYPE_END)
81 return NULL;
82 return (struct efi_device_path *)dp;
83}
84
85/*
86 * Compare two device-paths, stopping when the shorter of the two hits
Heinrich Schuchardtb21f8392018-10-17 21:55:24 +020087 * an End* node. This is useful to, for example, compare a device-path
Rob Clarkf90cb9f2017-09-13 18:05:28 -040088 * representing a device with one representing a file on the device, or
89 * a device with a parent device.
90 */
Heinrich Schuchardt753e2482017-10-26 19:25:48 +020091int efi_dp_match(const struct efi_device_path *a,
92 const struct efi_device_path *b)
Rob Clarkf90cb9f2017-09-13 18:05:28 -040093{
94 while (1) {
95 int ret;
96
97 ret = memcmp(&a->length, &b->length, sizeof(a->length));
98 if (ret)
99 return ret;
100
101 ret = memcmp(a, b, a->length);
102 if (ret)
103 return ret;
104
105 a = efi_dp_next(a);
106 b = efi_dp_next(b);
107
108 if (!a || !b)
109 return 0;
110 }
111}
112
Heinrich Schuchardt24f0e6a2022-02-26 12:10:10 +0100113/**
114 * efi_dp_shorten() - shorten device-path
115 *
Heinrich Schuchardta7ffd902023-03-26 12:22:40 +0200116 * When creating a short boot option we want to use a device-path that is
117 * independent of the location where the block device is plugged in.
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400118 *
Heinrich Schuchardta7ffd902023-03-26 12:22:40 +0200119 * UsbWwi() nodes contain a serial number, hard drive paths a partition
120 * UUID. Both should be unique.
Heinrich Schuchardtb21f8392018-10-17 21:55:24 +0200121 *
Heinrich Schuchardta7ffd902023-03-26 12:22:40 +0200122 * See UEFI spec, section 3.1.2 for "short-form device path".
Heinrich Schuchardt24f0e6a2022-02-26 12:10:10 +0100123 *
Heinrich Schuchardtdb17dbc2022-03-21 08:26:48 +0100124 * @dp: original device-path
Heinrich Schuchardt24f0e6a2022-02-26 12:10:10 +0100125 * @Return: shortened device-path or NULL
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400126 */
Heinrich Schuchardt24f0e6a2022-02-26 12:10:10 +0100127struct efi_device_path *efi_dp_shorten(struct efi_device_path *dp)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400128{
129 while (dp) {
Heinrich Schuchardta7ffd902023-03-26 12:22:40 +0200130 if (EFI_DP_TYPE(dp, MESSAGING_DEVICE, MSG_USB_WWI) ||
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400131 EFI_DP_TYPE(dp, MEDIA_DEVICE, HARD_DRIVE_PATH) ||
132 EFI_DP_TYPE(dp, MEDIA_DEVICE, FILE_PATH))
133 return dp;
134
135 dp = efi_dp_next(dp);
136 }
137
138 return dp;
139}
140
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100141/**
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100142 * find_handle() - find handle by device path and installed protocol
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100143 *
144 * If @rem is provided, the handle with the longest partial match is returned.
145 *
146 * @dp: device path to search
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100147 * @guid: GUID of protocol that must be installed on path or NULL
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100148 * @short_path: use short form device path for matching
149 * @rem: pointer to receive remaining device path
150 * Return: matching handle
151 */
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100152static efi_handle_t find_handle(struct efi_device_path *dp,
153 const efi_guid_t *guid, bool short_path,
154 struct efi_device_path **rem)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400155{
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100156 efi_handle_t handle, best_handle = NULL;
157 efi_uintn_t len, best_len = 0;
158
159 len = efi_dp_instance_size(dp);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400160
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100161 list_for_each_entry(handle, &efi_obj_list, link) {
Heinrich Schuchardt6953c102017-11-26 14:05:16 +0100162 struct efi_handler *handler;
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100163 struct efi_device_path *dp_current;
164 efi_uintn_t len_current;
Heinrich Schuchardt6953c102017-11-26 14:05:16 +0100165 efi_status_t ret;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400166
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100167 if (guid) {
168 ret = efi_search_protocol(handle, guid, &handler);
169 if (ret != EFI_SUCCESS)
170 continue;
171 }
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100172 ret = efi_search_protocol(handle, &efi_guid_device_path,
173 &handler);
Heinrich Schuchardt6953c102017-11-26 14:05:16 +0100174 if (ret != EFI_SUCCESS)
175 continue;
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100176 dp_current = handler->protocol_interface;
177 if (short_path) {
178 dp_current = efi_dp_shorten(dp_current);
179 if (!dp_current)
180 continue;
181 }
182 len_current = efi_dp_instance_size(dp_current);
183 if (rem) {
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100184 if (len_current > len)
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100185 continue;
186 } else {
187 if (len_current != len)
188 continue;
189 }
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100190 if (memcmp(dp_current, dp, len_current))
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100191 continue;
192 if (!rem)
193 return handle;
194 if (len_current > best_len) {
195 best_len = len_current;
196 best_handle = handle;
197 *rem = (void*)((u8 *)dp + len_current);
198 }
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400199 }
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100200 return best_handle;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400201}
202
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100203/**
204 * efi_dp_find_obj() - find handle by device path
205 *
206 * If @rem is provided, the handle with the longest partial match is returned.
207 *
208 * @dp: device path to search
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100209 * @guid: GUID of protocol that must be installed on path or NULL
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100210 * @rem: pointer to receive remaining device path
211 * Return: matching handle
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400212 */
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100213efi_handle_t efi_dp_find_obj(struct efi_device_path *dp,
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100214 const efi_guid_t *guid,
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100215 struct efi_device_path **rem)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400216{
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100217 efi_handle_t handle;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400218
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100219 handle = find_handle(dp, guid, false, rem);
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100220 if (!handle)
221 /* Match short form device path */
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100222 handle = find_handle(dp, guid, true, rem);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400223
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100224 return handle;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400225}
226
Heinrich Schuchardt0976f8b2018-01-19 20:24:49 +0100227/*
228 * Determine the last device path node that is not the end node.
229 *
230 * @dp device path
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100231 * Return: last node before the end node if it exists
Heinrich Schuchardt0976f8b2018-01-19 20:24:49 +0100232 * otherwise NULL
233 */
234const struct efi_device_path *efi_dp_last_node(const struct efi_device_path *dp)
235{
236 struct efi_device_path *ret;
237
238 if (!dp || dp->type == DEVICE_PATH_TYPE_END)
239 return NULL;
240 while (dp) {
241 ret = (struct efi_device_path *)dp;
242 dp = efi_dp_next(dp);
243 }
244 return ret;
245}
246
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +0200247/* get size of the first device path instance excluding end node */
248efi_uintn_t efi_dp_instance_size(const struct efi_device_path *dp)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400249{
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +0200250 efi_uintn_t sz = 0;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400251
Heinrich Schuchardt01d48ed2018-04-16 07:59:07 +0200252 if (!dp || dp->type == DEVICE_PATH_TYPE_END)
253 return 0;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400254 while (dp) {
255 sz += dp->length;
256 dp = efi_dp_next(dp);
257 }
258
259 return sz;
260}
261
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +0200262/* get size of multi-instance device path excluding end node */
263efi_uintn_t efi_dp_size(const struct efi_device_path *dp)
264{
265 const struct efi_device_path *p = dp;
266
267 if (!p)
268 return 0;
269 while (p->type != DEVICE_PATH_TYPE_END ||
270 p->sub_type != DEVICE_PATH_SUB_TYPE_END)
271 p = (void *)p + p->length;
272
273 return (void *)p - (void *)dp;
274}
275
276/* copy multi-instance device path */
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400277struct efi_device_path *efi_dp_dup(const struct efi_device_path *dp)
278{
279 struct efi_device_path *ndp;
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +0200280 size_t sz = efi_dp_size(dp) + sizeof(END);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400281
282 if (!dp)
283 return NULL;
284
Heinrich Schuchardt45640252023-03-19 09:20:22 +0100285 ndp = efi_alloc(sz);
Heinrich Schuchardt468bf972018-01-19 20:24:37 +0100286 if (!ndp)
287 return NULL;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400288 memcpy(ndp, dp, sz);
289
290 return ndp;
291}
292
Ilias Apalodimas483d28e2021-03-17 21:54:58 +0200293/**
294 * efi_dp_append_or_concatenate() - Append or concatenate two device paths.
295 * Concatenated device path will be separated
296 * by a sub-type 0xff end node
297 *
298 * @dp1: First device path
299 * @dp2: Second device path
300 * @concat: If true the two device paths will be concatenated and separated
301 * by an end of entrire device path sub-type 0xff end node.
302 * If true the second device path will be appended to the first and
303 * terminated by an end node
304 *
305 * Return:
306 * concatenated device path or NULL. Caller must free the returned value
307 */
308static struct
309efi_device_path *efi_dp_append_or_concatenate(const struct efi_device_path *dp1,
310 const struct efi_device_path *dp2,
311 bool concat)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400312{
313 struct efi_device_path *ret;
Ilias Apalodimas483d28e2021-03-17 21:54:58 +0200314 size_t end_size = sizeof(END);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400315
Ilias Apalodimas483d28e2021-03-17 21:54:58 +0200316 if (concat)
317 end_size = 2 * sizeof(END);
Heinrich Schuchardt60b5ab22018-04-16 07:59:06 +0200318 if (!dp1 && !dp2) {
319 /* return an end node */
320 ret = efi_dp_dup(&END);
321 } else if (!dp1) {
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400322 ret = efi_dp_dup(dp2);
323 } else if (!dp2) {
324 ret = efi_dp_dup(dp1);
325 } else {
326 /* both dp1 and dp2 are non-null */
327 unsigned sz1 = efi_dp_size(dp1);
328 unsigned sz2 = efi_dp_size(dp2);
Heinrich Schuchardt45640252023-03-19 09:20:22 +0100329 void *p = efi_alloc(sz1 + sz2 + end_size);
Heinrich Schuchardt468bf972018-01-19 20:24:37 +0100330 if (!p)
331 return NULL;
Ilias Apalodimas483d28e2021-03-17 21:54:58 +0200332 ret = p;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400333 memcpy(p, dp1, sz1);
Ilias Apalodimas483d28e2021-03-17 21:54:58 +0200334 p += sz1;
335
336 if (concat) {
337 memcpy(p, &END, sizeof(END));
338 p += sizeof(END);
339 }
340
Heinrich Schuchardt60b5ab22018-04-16 07:59:06 +0200341 /* the end node of the second device path has to be retained */
Ilias Apalodimas483d28e2021-03-17 21:54:58 +0200342 memcpy(p, dp2, sz2);
343 p += sz2;
344 memcpy(p, &END, sizeof(END));
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400345 }
346
347 return ret;
348}
349
Ilias Apalodimas483d28e2021-03-17 21:54:58 +0200350/**
351 * efi_dp_append() - Append a device to an existing device path.
352 *
353 * @dp1: First device path
354 * @dp2: Second device path
355 *
356 * Return:
357 * concatenated device path or NULL. Caller must free the returned value
358 */
359struct efi_device_path *efi_dp_append(const struct efi_device_path *dp1,
360 const struct efi_device_path *dp2)
361{
362 return efi_dp_append_or_concatenate(dp1, dp2, false);
363}
364
365/**
366 * efi_dp_concat() - Concatenate 2 device paths. The final device path will
367 * contain two device paths separated by and end node (0xff).
368 *
369 * @dp1: First device path
370 * @dp2: Second device path
371 *
372 * Return:
373 * concatenated device path or NULL. Caller must free the returned value
374 */
375struct efi_device_path *efi_dp_concat(const struct efi_device_path *dp1,
376 const struct efi_device_path *dp2)
377{
378 return efi_dp_append_or_concatenate(dp1, dp2, true);
379}
380
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400381struct efi_device_path *efi_dp_append_node(const struct efi_device_path *dp,
382 const struct efi_device_path *node)
383{
384 struct efi_device_path *ret;
385
386 if (!node && !dp) {
387 ret = efi_dp_dup(&END);
388 } else if (!node) {
389 ret = efi_dp_dup(dp);
390 } else if (!dp) {
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +0200391 size_t sz = node->length;
Heinrich Schuchardt45640252023-03-19 09:20:22 +0100392 void *p = efi_alloc(sz + sizeof(END));
Heinrich Schuchardt468bf972018-01-19 20:24:37 +0100393 if (!p)
394 return NULL;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400395 memcpy(p, node, sz);
396 memcpy(p + sz, &END, sizeof(END));
397 ret = p;
398 } else {
399 /* both dp and node are non-null */
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +0200400 size_t sz = efi_dp_size(dp);
Heinrich Schuchardt45640252023-03-19 09:20:22 +0100401 void *p = efi_alloc(sz + node->length + sizeof(END));
Heinrich Schuchardt468bf972018-01-19 20:24:37 +0100402 if (!p)
403 return NULL;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400404 memcpy(p, dp, sz);
405 memcpy(p + sz, node, node->length);
406 memcpy(p + sz + node->length, &END, sizeof(END));
407 ret = p;
408 }
409
410 return ret;
411}
412
Heinrich Schuchardtb41c8e22018-04-16 07:59:05 +0200413struct efi_device_path *efi_dp_create_device_node(const u8 type,
414 const u8 sub_type,
415 const u16 length)
416{
417 struct efi_device_path *ret;
418
Heinrich Schuchardtc96c5942019-04-23 00:51:01 +0200419 if (length < sizeof(struct efi_device_path))
420 return NULL;
421
Heinrich Schuchardt45640252023-03-19 09:20:22 +0100422 ret = efi_alloc(length);
Heinrich Schuchardtb41c8e22018-04-16 07:59:05 +0200423 if (!ret)
424 return ret;
425 ret->type = type;
426 ret->sub_type = sub_type;
427 ret->length = length;
428 return ret;
429}
430
Heinrich Schuchardtcb0f7ce2018-04-16 07:59:09 +0200431struct efi_device_path *efi_dp_append_instance(
432 const struct efi_device_path *dp,
433 const struct efi_device_path *dpi)
434{
435 size_t sz, szi;
436 struct efi_device_path *p, *ret;
437
438 if (!dpi)
439 return NULL;
440 if (!dp)
441 return efi_dp_dup(dpi);
442 sz = efi_dp_size(dp);
443 szi = efi_dp_instance_size(dpi);
Heinrich Schuchardt45640252023-03-19 09:20:22 +0100444 p = efi_alloc(sz + szi + 2 * sizeof(END));
Heinrich Schuchardtcb0f7ce2018-04-16 07:59:09 +0200445 if (!p)
446 return NULL;
447 ret = p;
448 memcpy(p, dp, sz + sizeof(END));
449 p = (void *)p + sz;
450 p->sub_type = DEVICE_PATH_SUB_TYPE_INSTANCE_END;
451 p = (void *)p + sizeof(END);
452 memcpy(p, dpi, szi);
453 p = (void *)p + szi;
454 memcpy(p, &END, sizeof(END));
455 return ret;
456}
457
458struct efi_device_path *efi_dp_get_next_instance(struct efi_device_path **dp,
459 efi_uintn_t *size)
460{
461 size_t sz;
462 struct efi_device_path *p;
463
464 if (size)
465 *size = 0;
466 if (!dp || !*dp)
467 return NULL;
Heinrich Schuchardtcb0f7ce2018-04-16 07:59:09 +0200468 sz = efi_dp_instance_size(*dp);
Heinrich Schuchardt45640252023-03-19 09:20:22 +0100469 p = efi_alloc(sz + sizeof(END));
Heinrich Schuchardtcb0f7ce2018-04-16 07:59:09 +0200470 if (!p)
471 return NULL;
472 memcpy(p, *dp, sz + sizeof(END));
473 *dp = (void *)*dp + sz;
474 if ((*dp)->sub_type == DEVICE_PATH_SUB_TYPE_INSTANCE_END)
475 *dp = (void *)*dp + sizeof(END);
476 else
477 *dp = NULL;
478 if (size)
479 *size = sz + sizeof(END);
480 return p;
481}
482
483bool efi_dp_is_multi_instance(const struct efi_device_path *dp)
484{
485 const struct efi_device_path *p = dp;
486
487 if (!p)
488 return false;
489 while (p->type != DEVICE_PATH_TYPE_END)
490 p = (void *)p + p->length;
491 return p->sub_type == DEVICE_PATH_SUB_TYPE_INSTANCE_END;
492}
493
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400494/* size of device-path not including END node for device and all parents
495 * up to the root device.
496 */
Heinrich Schuchardtc22d9e32019-11-10 02:16:33 +0100497__maybe_unused static unsigned int dp_size(struct udevice *dev)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400498{
499 if (!dev || !dev->driver)
500 return sizeof(ROOT);
501
Simon Glass56ada7b2022-01-29 14:58:38 -0700502 switch (device_get_uclass_id(dev)) {
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400503 case UCLASS_ROOT:
504 case UCLASS_SIMPLE_BUS:
505 /* stop traversing parents at this point: */
506 return sizeof(ROOT);
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100507 case UCLASS_ETH:
508 return dp_size(dev->parent) +
509 sizeof(struct efi_device_path_mac_addr);
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100510 case UCLASS_BLK:
511 switch (dev->parent->uclass->uc_drv->id) {
512#ifdef CONFIG_IDE
513 case UCLASS_IDE:
514 return dp_size(dev->parent) +
515 sizeof(struct efi_device_path_atapi);
516#endif
Simon Glass222f3cb2021-09-24 18:30:17 -0600517#if defined(CONFIG_SCSI)
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100518 case UCLASS_SCSI:
519 return dp_size(dev->parent) +
520 sizeof(struct efi_device_path_scsi);
521#endif
Simon Glass222f3cb2021-09-24 18:30:17 -0600522#if defined(CONFIG_MMC)
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100523 case UCLASS_MMC:
524 return dp_size(dev->parent) +
525 sizeof(struct efi_device_path_sd_mmc_path);
526#endif
Heinrich Schuchardt7bdb6022020-05-20 23:12:02 +0200527#if defined(CONFIG_AHCI) || defined(CONFIG_SATA)
528 case UCLASS_AHCI:
529 return dp_size(dev->parent) +
530 sizeof(struct efi_device_path_sata);
531#endif
Patrick Wildta3ca37e2019-10-03 16:24:17 +0200532#if defined(CONFIG_NVME)
533 case UCLASS_NVME:
534 return dp_size(dev->parent) +
535 sizeof(struct efi_device_path_nvme);
536#endif
AKASHI Takahiro659a6262019-09-12 13:52:35 +0900537#ifdef CONFIG_SANDBOX
Simon Glasse57f8d42022-10-29 19:47:17 -0600538 case UCLASS_HOST:
AKASHI Takahiro659a6262019-09-12 13:52:35 +0900539 /*
540 * Sandbox's host device will be represented
541 * as vendor device with extra one byte for
542 * device number
543 */
544 return dp_size(dev->parent)
545 + sizeof(struct efi_device_path_vendor) + 1;
546#endif
Heinrich Schuchardt25b18d62023-03-19 16:18:09 +0100547#ifdef CONFIG_USB
548 case UCLASS_MASS_STORAGE:
549 return dp_size(dev->parent)
550 + sizeof(struct efi_device_path_controller);
551#endif
Heinrich Schuchardtc770aaa2020-05-20 22:39:35 +0200552#ifdef CONFIG_VIRTIO_BLK
553 case UCLASS_VIRTIO:
554 /*
555 * Virtio devices will be represented as a vendor
556 * device node with an extra byte for the device
557 * number.
558 */
559 return dp_size(dev->parent)
560 + sizeof(struct efi_device_path_vendor) + 1;
561#endif
Tobias Waldekranz32152682023-02-16 16:33:55 +0100562#ifdef CONFIG_BLKMAP
563 case UCLASS_BLKMAP:
564 /*
565 * blkmap devices will be represented as a vendor
566 * device node with an extra byte for the device
567 * number.
568 */
569 return dp_size(dev->parent)
570 + sizeof(struct efi_device_path_vendor) + 1;
571#endif
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100572 default:
573 return dp_size(dev->parent);
574 }
Simon Glass222f3cb2021-09-24 18:30:17 -0600575#if defined(CONFIG_MMC)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400576 case UCLASS_MMC:
577 return dp_size(dev->parent) +
578 sizeof(struct efi_device_path_sd_mmc_path);
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100579#endif
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400580 case UCLASS_MASS_STORAGE:
581 case UCLASS_USB_HUB:
582 return dp_size(dev->parent) +
Heinrich Schuchardt25b18d62023-03-19 16:18:09 +0100583 sizeof(struct efi_device_path_usb);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400584 default:
585 /* just skip over unknown classes: */
586 return dp_size(dev->parent);
587 }
588}
589
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100590/*
591 * Recursively build a device path.
592 *
593 * @buf pointer to the end of the device path
594 * @dev device
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100595 * Return: pointer to the end of the device path
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100596 */
Heinrich Schuchardtc22d9e32019-11-10 02:16:33 +0100597__maybe_unused static void *dp_fill(void *buf, struct udevice *dev)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400598{
599 if (!dev || !dev->driver)
600 return buf;
601
Simon Glass56ada7b2022-01-29 14:58:38 -0700602 switch (device_get_uclass_id(dev)) {
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400603 case UCLASS_ROOT:
604 case UCLASS_SIMPLE_BUS: {
605 /* stop traversing parents at this point: */
606 struct efi_device_path_vendor *vdp = buf;
607 *vdp = ROOT;
608 return &vdp[1];
609 }
Jan Kiszkaf1389822022-10-14 18:10:06 +0200610#ifdef CONFIG_NETDEVICES
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100611 case UCLASS_ETH: {
612 struct efi_device_path_mac_addr *dp =
613 dp_fill(buf, dev->parent);
Simon Glass95588622020-12-22 19:30:28 -0700614 struct eth_pdata *pdata = dev_get_plat(dev);
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100615
616 dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
617 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_MAC_ADDR;
618 dp->dp.length = sizeof(*dp);
619 memset(&dp->mac, 0, sizeof(dp->mac));
620 /* We only support IPv4 */
621 memcpy(&dp->mac, &pdata->enetaddr, ARP_HLEN);
622 /* Ethernet */
623 dp->if_type = 1;
624 return &dp[1];
625 }
626#endif
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100627 case UCLASS_BLK:
628 switch (dev->parent->uclass->uc_drv->id) {
Tobias Waldekranz32152682023-02-16 16:33:55 +0100629#ifdef CONFIG_BLKMAP
630 case UCLASS_BLKMAP: {
631 struct efi_device_path_vendor *dp;
632 struct blk_desc *desc = dev_get_uclass_plat(dev);
633
Heinrich Schuchardtb8ea6ff2023-07-19 16:49:46 +0200634 dp = dp_fill(buf, dev->parent);
Tobias Waldekranz32152682023-02-16 16:33:55 +0100635 dp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE;
636 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_VENDOR;
637 dp->dp.length = sizeof(*dp) + 1;
638 memcpy(&dp->guid, &efi_guid_blkmap_dev,
639 sizeof(efi_guid_t));
640 dp->vendor_data[0] = desc->devnum;
641 return &dp->vendor_data[1];
642 }
643#endif
AKASHI Takahiro659a6262019-09-12 13:52:35 +0900644#ifdef CONFIG_SANDBOX
Simon Glasse57f8d42022-10-29 19:47:17 -0600645 case UCLASS_HOST: {
AKASHI Takahiro659a6262019-09-12 13:52:35 +0900646 /* stop traversing parents at this point: */
Heinrich Schuchardt1e3beaf2020-05-06 01:28:08 +0200647 struct efi_device_path_vendor *dp;
Simon Glass71fa5b42020-12-03 16:55:18 -0700648 struct blk_desc *desc = dev_get_uclass_plat(dev);
AKASHI Takahiro659a6262019-09-12 13:52:35 +0900649
Heinrich Schuchardtb8ea6ff2023-07-19 16:49:46 +0200650 dp = dp_fill(buf, dev->parent);
AKASHI Takahiro659a6262019-09-12 13:52:35 +0900651 dp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE;
652 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_VENDOR;
653 dp->dp.length = sizeof(*dp) + 1;
654 memcpy(&dp->guid, &efi_guid_host_dev,
655 sizeof(efi_guid_t));
656 dp->vendor_data[0] = desc->devnum;
657 return &dp->vendor_data[1];
658 }
659#endif
Heinrich Schuchardtc770aaa2020-05-20 22:39:35 +0200660#ifdef CONFIG_VIRTIO_BLK
661 case UCLASS_VIRTIO: {
662 struct efi_device_path_vendor *dp;
Simon Glass71fa5b42020-12-03 16:55:18 -0700663 struct blk_desc *desc = dev_get_uclass_plat(dev);
Heinrich Schuchardtc770aaa2020-05-20 22:39:35 +0200664
Heinrich Schuchardtb8ea6ff2023-07-19 16:49:46 +0200665 dp = dp_fill(buf, dev->parent);
Heinrich Schuchardtc770aaa2020-05-20 22:39:35 +0200666 dp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE;
667 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_VENDOR;
668 dp->dp.length = sizeof(*dp) + 1;
669 memcpy(&dp->guid, &efi_guid_virtio_dev,
670 sizeof(efi_guid_t));
671 dp->vendor_data[0] = desc->devnum;
672 return &dp->vendor_data[1];
673 }
674#endif
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100675#ifdef CONFIG_IDE
676 case UCLASS_IDE: {
677 struct efi_device_path_atapi *dp =
678 dp_fill(buf, dev->parent);
Simon Glass71fa5b42020-12-03 16:55:18 -0700679 struct blk_desc *desc = dev_get_uclass_plat(dev);
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100680
681 dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
682 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_ATAPI;
683 dp->dp.length = sizeof(*dp);
684 dp->logical_unit_number = desc->devnum;
685 dp->primary_secondary = IDE_BUS(desc->devnum);
686 dp->slave_master = desc->devnum %
687 (CONFIG_SYS_IDE_MAXDEVICE /
688 CONFIG_SYS_IDE_MAXBUS);
689 return &dp[1];
690 }
691#endif
Simon Glass222f3cb2021-09-24 18:30:17 -0600692#if defined(CONFIG_SCSI)
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100693 case UCLASS_SCSI: {
694 struct efi_device_path_scsi *dp =
695 dp_fill(buf, dev->parent);
Simon Glass71fa5b42020-12-03 16:55:18 -0700696 struct blk_desc *desc = dev_get_uclass_plat(dev);
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100697
698 dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
699 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_SCSI;
700 dp->dp.length = sizeof(*dp);
701 dp->logical_unit_number = desc->lun;
702 dp->target_id = desc->target;
703 return &dp[1];
704 }
705#endif
Simon Glass222f3cb2021-09-24 18:30:17 -0600706#if defined(CONFIG_MMC)
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100707 case UCLASS_MMC: {
708 struct efi_device_path_sd_mmc_path *sddp =
709 dp_fill(buf, dev->parent);
Simon Glass71fa5b42020-12-03 16:55:18 -0700710 struct blk_desc *desc = dev_get_uclass_plat(dev);
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100711
712 sddp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
713 sddp->dp.sub_type = is_sd(desc) ?
714 DEVICE_PATH_SUB_TYPE_MSG_SD :
715 DEVICE_PATH_SUB_TYPE_MSG_MMC;
716 sddp->dp.length = sizeof(*sddp);
Simon Glass75e534b2020-12-16 21:20:07 -0700717 sddp->slot_number = dev_seq(dev);
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100718 return &sddp[1];
719 }
720#endif
Heinrich Schuchardt7bdb6022020-05-20 23:12:02 +0200721#if defined(CONFIG_AHCI) || defined(CONFIG_SATA)
722 case UCLASS_AHCI: {
723 struct efi_device_path_sata *dp =
724 dp_fill(buf, dev->parent);
Simon Glass71fa5b42020-12-03 16:55:18 -0700725 struct blk_desc *desc = dev_get_uclass_plat(dev);
Heinrich Schuchardt7bdb6022020-05-20 23:12:02 +0200726
727 dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
728 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_SATA;
729 dp->dp.length = sizeof(*dp);
730 dp->hba_port = desc->devnum;
731 /* default 0xffff implies no port multiplier */
732 dp->port_multiplier_port = 0xffff;
733 dp->logical_unit_number = desc->lun;
734 return &dp[1];
735 }
736#endif
Patrick Wildta3ca37e2019-10-03 16:24:17 +0200737#if defined(CONFIG_NVME)
738 case UCLASS_NVME: {
739 struct efi_device_path_nvme *dp =
740 dp_fill(buf, dev->parent);
741 u32 ns_id;
742
743 dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
744 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_NVME;
745 dp->dp.length = sizeof(*dp);
746 nvme_get_namespace_id(dev, &ns_id, dp->eui64);
747 memcpy(&dp->ns_id, &ns_id, sizeof(ns_id));
748 return &dp[1];
749 }
750#endif
Heinrich Schuchardt25b18d62023-03-19 16:18:09 +0100751#if defined(CONFIG_USB)
752 case UCLASS_MASS_STORAGE: {
Heinrich Schuchardt232c9db2023-04-01 07:21:55 +0200753 struct blk_desc *desc = dev_get_uclass_plat(dev);
Heinrich Schuchardt25b18d62023-03-19 16:18:09 +0100754 struct efi_device_path_controller *dp =
755 dp_fill(buf, dev->parent);
756
757 dp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE;
758 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_CONTROLLER;
759 dp->dp.length = sizeof(*dp);
760 dp->controller_number = desc->lun;
761 return &dp[1];
762 }
763#endif
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100764 default:
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100765 debug("%s(%u) %s: unhandled parent class: %s (%u)\n",
766 __FILE__, __LINE__, __func__,
767 dev->name, dev->parent->uclass->uc_drv->id);
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100768 return dp_fill(buf, dev->parent);
769 }
Simon Glass222f3cb2021-09-24 18:30:17 -0600770#if defined(CONFIG_MMC)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400771 case UCLASS_MMC: {
772 struct efi_device_path_sd_mmc_path *sddp =
773 dp_fill(buf, dev->parent);
774 struct mmc *mmc = mmc_get_mmc_dev(dev);
775 struct blk_desc *desc = mmc_get_blk_desc(mmc);
776
777 sddp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
Heinrich Schuchardt7d569db2017-12-11 12:56:39 +0100778 sddp->dp.sub_type = is_sd(desc) ?
779 DEVICE_PATH_SUB_TYPE_MSG_SD :
780 DEVICE_PATH_SUB_TYPE_MSG_MMC;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400781 sddp->dp.length = sizeof(*sddp);
Simon Glass75e534b2020-12-16 21:20:07 -0700782 sddp->slot_number = dev_seq(dev);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400783
784 return &sddp[1];
785 }
786#endif
787 case UCLASS_MASS_STORAGE:
788 case UCLASS_USB_HUB: {
Heinrich Schuchardt25b18d62023-03-19 16:18:09 +0100789 struct efi_device_path_usb *udp = dp_fill(buf, dev->parent);
790
791 switch (device_get_uclass_id(dev->parent)) {
792 case UCLASS_USB_HUB: {
793 struct usb_device *udev = dev_get_parent_priv(dev);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400794
Heinrich Schuchardt25b18d62023-03-19 16:18:09 +0100795 udp->parent_port_number = udev->portnr;
796 break;
797 }
798 default:
799 udp->parent_port_number = 0;
800 }
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400801 udp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
Heinrich Schuchardt25b18d62023-03-19 16:18:09 +0100802 udp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_USB;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400803 udp->dp.length = sizeof(*udp);
Heinrich Schuchardt25b18d62023-03-19 16:18:09 +0100804 udp->usb_interface = 0;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400805
806 return &udp[1];
807 }
808 default:
Simon Glass56ada7b2022-01-29 14:58:38 -0700809 /* If the uclass driver is missing, this will show NULL */
810 log_debug("unhandled device class: %s (%s)\n", dev->name,
811 dev_get_uclass_name(dev));
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400812 return dp_fill(buf, dev->parent);
813 }
814}
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400815
816static unsigned dp_part_size(struct blk_desc *desc, int part)
817{
818 unsigned dpsize;
Simon Glassec209a72022-01-29 14:58:39 -0700819 struct udevice *dev = desc->bdev;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400820
Simon Glass222f3cb2021-09-24 18:30:17 -0600821 dpsize = dp_size(dev);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400822
823 if (part == 0) /* the actual disk, not a partition */
824 return dpsize;
825
826 if (desc->part_type == PART_TYPE_ISO)
827 dpsize += sizeof(struct efi_device_path_cdrom_path);
828 else
829 dpsize += sizeof(struct efi_device_path_hard_drive_path);
830
831 return dpsize;
832}
833
Heinrich Schuchardt8983ffd2017-12-11 12:56:42 +0100834/*
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100835 * Create a device node for a block device partition.
Heinrich Schuchardt8983ffd2017-12-11 12:56:42 +0100836 *
Heinrich Schuchardtb21f8392018-10-17 21:55:24 +0200837 * @buf buffer to which the device path is written
Heinrich Schuchardt8983ffd2017-12-11 12:56:42 +0100838 * @desc block device descriptor
839 * @part partition number, 0 identifies a block device
Heinrich Schuchardtee69ae12023-05-27 08:18:28 +0200840 *
841 * Return: pointer to position after the node
Heinrich Schuchardt8983ffd2017-12-11 12:56:42 +0100842 */
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100843static void *dp_part_node(void *buf, struct blk_desc *desc, int part)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400844{
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600845 struct disk_partition info;
Heinrich Schuchardtee69ae12023-05-27 08:18:28 +0200846 int ret;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400847
Heinrich Schuchardtee69ae12023-05-27 08:18:28 +0200848 ret = part_get_info(desc, part, &info);
849 if (ret < 0)
850 return buf;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400851
852 if (desc->part_type == PART_TYPE_ISO) {
853 struct efi_device_path_cdrom_path *cddp = buf;
854
Heinrich Schuchardt2aae6db2017-12-11 12:56:40 +0100855 cddp->boot_entry = part;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400856 cddp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE;
857 cddp->dp.sub_type = DEVICE_PATH_SUB_TYPE_CDROM_PATH;
858 cddp->dp.length = sizeof(*cddp);
859 cddp->partition_start = info.start;
Heinrich Schuchardt28dfd1a2019-09-04 13:56:01 +0200860 cddp->partition_size = info.size;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400861
862 buf = &cddp[1];
863 } else {
864 struct efi_device_path_hard_drive_path *hddp = buf;
865
866 hddp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE;
867 hddp->dp.sub_type = DEVICE_PATH_SUB_TYPE_HARD_DRIVE_PATH;
868 hddp->dp.length = sizeof(*hddp);
Heinrich Schuchardt2aae6db2017-12-11 12:56:40 +0100869 hddp->partition_number = part;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400870 hddp->partition_start = info.start;
871 hddp->partition_end = info.size;
872 if (desc->part_type == PART_TYPE_EFI)
873 hddp->partmap_type = 2;
874 else
875 hddp->partmap_type = 1;
Jonathan Gray84b4d702017-11-22 14:18:59 +1100876
877 switch (desc->sig_type) {
878 case SIG_TYPE_NONE:
879 default:
880 hddp->signature_type = 0;
881 memset(hddp->partition_signature, 0,
882 sizeof(hddp->partition_signature));
883 break;
884 case SIG_TYPE_MBR:
885 hddp->signature_type = 1;
886 memset(hddp->partition_signature, 0,
887 sizeof(hddp->partition_signature));
888 memcpy(hddp->partition_signature, &desc->mbr_sig,
889 sizeof(desc->mbr_sig));
890 break;
891 case SIG_TYPE_GUID:
892 hddp->signature_type = 2;
AKASHI Takahiroae18a672022-04-19 10:01:56 +0900893#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
894 /* info.uuid exists only with PARTITION_UUIDS */
Alfonso Sánchez-Beatof007a372021-07-15 15:31:42 +0200895 if (uuid_str_to_bin(info.uuid,
AKASHI Takahiroae18a672022-04-19 10:01:56 +0900896 hddp->partition_signature,
897 UUID_STR_FORMAT_GUID)) {
Alfonso Sánchez-Beatof007a372021-07-15 15:31:42 +0200898 log_warning(
AKASHI Takahiroae18a672022-04-19 10:01:56 +0900899 "Partition %d: invalid GUID %s\n",
Alfonso Sánchez-Beatof007a372021-07-15 15:31:42 +0200900 part, info.uuid);
AKASHI Takahiroae18a672022-04-19 10:01:56 +0900901 }
902#endif
Jonathan Gray84b4d702017-11-22 14:18:59 +1100903 break;
904 }
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400905
906 buf = &hddp[1];
907 }
908
909 return buf;
910}
911
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100912/*
913 * Create a device path for a block device or one of its partitions.
914 *
Heinrich Schuchardtb21f8392018-10-17 21:55:24 +0200915 * @buf buffer to which the device path is written
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100916 * @desc block device descriptor
917 * @part partition number, 0 identifies a block device
918 */
919static void *dp_part_fill(void *buf, struct blk_desc *desc, int part)
920{
Simon Glassec209a72022-01-29 14:58:39 -0700921 struct udevice *dev = desc->bdev;
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100922
Simon Glass222f3cb2021-09-24 18:30:17 -0600923 buf = dp_fill(buf, dev);
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100924
925 if (part == 0) /* the actual disk, not a partition */
926 return buf;
927
928 return dp_part_node(buf, desc, part);
929}
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400930
Heinrich Schuchardtb21f8392018-10-17 21:55:24 +0200931/* Construct a device-path from a partition on a block device: */
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400932struct efi_device_path *efi_dp_from_part(struct blk_desc *desc, int part)
933{
934 void *buf, *start;
935
Heinrich Schuchardt45640252023-03-19 09:20:22 +0100936 start = buf = efi_alloc(dp_part_size(desc, part) + sizeof(END));
Heinrich Schuchardt468bf972018-01-19 20:24:37 +0100937 if (!buf)
938 return NULL;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400939
940 buf = dp_part_fill(buf, desc, part);
941
942 *((struct efi_device_path *)buf) = END;
943
944 return start;
945}
946
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100947/*
948 * Create a device node for a block device partition.
949 *
Heinrich Schuchardtb21f8392018-10-17 21:55:24 +0200950 * @buf buffer to which the device path is written
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100951 * @desc block device descriptor
952 * @part partition number, 0 identifies a block device
953 */
954struct efi_device_path *efi_dp_part_node(struct blk_desc *desc, int part)
955{
956 efi_uintn_t dpsize;
957 void *buf;
958
959 if (desc->part_type == PART_TYPE_ISO)
960 dpsize = sizeof(struct efi_device_path_cdrom_path);
961 else
962 dpsize = sizeof(struct efi_device_path_hard_drive_path);
Heinrich Schuchardt45640252023-03-19 09:20:22 +0100963 buf = efi_alloc(dpsize);
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100964
Heinrich Schuchardte29fbb32022-10-06 13:36:02 +0200965 if (buf)
966 dp_part_node(buf, desc, part);
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100967
968 return buf;
969}
970
Heinrich Schuchardt8d80af82019-07-14 19:26:47 +0200971/**
972 * path_to_uefi() - convert UTF-8 path to an UEFI style path
973 *
974 * Convert UTF-8 path to a UEFI style path (i.e. with backslashes as path
975 * separators and UTF-16).
976 *
977 * @src: source buffer
978 * @uefi: target buffer, possibly unaligned
979 */
980static void path_to_uefi(void *uefi, const char *src)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400981{
Heinrich Schuchardt8d80af82019-07-14 19:26:47 +0200982 u16 *pos = uefi;
983
984 /*
985 * efi_set_bootdev() calls this routine indirectly before the UEFI
986 * subsystem is initialized. So we cannot assume unaligned access to be
987 * enabled.
988 */
989 allow_unaligned();
990
991 while (*src) {
992 s32 code = utf8_get(&src);
993
994 if (code < 0)
995 code = '?';
996 else if (code == '/')
997 code = '\\';
998 utf16_put(code, &pos);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400999 }
Heinrich Schuchardt8d80af82019-07-14 19:26:47 +02001000 *pos = 0;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001001}
1002
Heinrich Schuchardtf57eacb2022-06-11 05:22:08 +00001003/**
Heinrich Schuchardtff08eac2023-05-13 10:36:21 +02001004 * efi_dp_from_file() - append file path node to device path.
Heinrich Schuchardtf57eacb2022-06-11 05:22:08 +00001005 *
Heinrich Schuchardtff08eac2023-05-13 10:36:21 +02001006 * @dp: device path or NULL
1007 * @path: file path or NULL
Heinrich Schuchardtf57eacb2022-06-11 05:22:08 +00001008 * Return: device path or NULL in case of an error
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001009 */
Heinrich Schuchardtff08eac2023-05-13 10:36:21 +02001010struct efi_device_path *efi_dp_from_file(const struct efi_device_path *dp,
1011 const char *path)
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001012{
1013 struct efi_device_path_file_path *fp;
Heinrich Schuchardt16eff692023-05-13 10:18:24 +02001014 void *buf, *pos;
Heinrich Schuchardtff08eac2023-05-13 10:36:21 +02001015 size_t dpsize, fpsize;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001016
Heinrich Schuchardtff08eac2023-05-13 10:36:21 +02001017 dpsize = efi_dp_size(dp);
Heinrich Schuchardt8d80af82019-07-14 19:26:47 +02001018 fpsize = sizeof(struct efi_device_path) +
1019 2 * (utf8_utf16_strlen(path) + 1);
AKASHI Takahirof1dbbae2019-10-09 16:19:52 +09001020 if (fpsize > U16_MAX)
1021 return NULL;
1022
Heinrich Schuchardtff08eac2023-05-13 10:36:21 +02001023 buf = efi_alloc(dpsize + fpsize + sizeof(END));
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001024 if (!buf)
1025 return NULL;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001026
Heinrich Schuchardtff08eac2023-05-13 10:36:21 +02001027 memcpy(buf, dp, dpsize);
1028 pos = buf + dpsize;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001029
1030 /* add file-path: */
Heinrich Schuchardtf57eacb2022-06-11 05:22:08 +00001031 if (*path) {
Heinrich Schuchardt16eff692023-05-13 10:18:24 +02001032 fp = pos;
Heinrich Schuchardtf57eacb2022-06-11 05:22:08 +00001033 fp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE;
1034 fp->dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH;
1035 fp->dp.length = (u16)fpsize;
1036 path_to_uefi(fp->str, path);
Heinrich Schuchardt16eff692023-05-13 10:18:24 +02001037 pos += fpsize;
Heinrich Schuchardtf57eacb2022-06-11 05:22:08 +00001038 }
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001039
Heinrich Schuchardt16eff692023-05-13 10:18:24 +02001040 memcpy(pos, &END, sizeof(END));
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001041
Heinrich Schuchardt16eff692023-05-13 10:18:24 +02001042 return buf;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001043}
1044
Heinrich Schuchardt77c0da82021-03-19 02:49:54 +01001045struct efi_device_path *efi_dp_from_uart(void)
1046{
1047 void *buf, *pos;
1048 struct efi_device_path_uart *uart;
1049 size_t dpsize = sizeof(ROOT) + sizeof(*uart) + sizeof(END);
1050
Heinrich Schuchardt45640252023-03-19 09:20:22 +01001051 buf = efi_alloc(dpsize);
Heinrich Schuchardt77c0da82021-03-19 02:49:54 +01001052 if (!buf)
1053 return NULL;
1054 pos = buf;
1055 memcpy(pos, &ROOT, sizeof(ROOT));
1056 pos += sizeof(ROOT);
1057 uart = pos;
1058 uart->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
1059 uart->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_UART;
1060 uart->dp.length = sizeof(*uart);
1061 pos += sizeof(*uart);
1062 memcpy(pos, &END, sizeof(END));
1063
1064 return buf;
1065}
1066
Heinrich Schuchardt87b8a712023-05-13 09:55:26 +02001067struct efi_device_path __maybe_unused *efi_dp_from_eth(void)
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001068{
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001069 void *buf, *start;
1070 unsigned dpsize = 0;
1071
1072 assert(eth_get_dev());
1073
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001074 dpsize += dp_size(eth_get_dev());
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001075
Heinrich Schuchardt45640252023-03-19 09:20:22 +01001076 start = buf = efi_alloc(dpsize + sizeof(END));
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001077 if (!buf)
1078 return NULL;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001079
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001080 buf = dp_fill(buf, eth_get_dev());
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001081
1082 *((struct efi_device_path *)buf) = END;
1083
1084 return start;
1085}
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001086
Rob Clark18ceba72017-10-10 08:23:06 -04001087/* Construct a device-path for memory-mapped image */
1088struct efi_device_path *efi_dp_from_mem(uint32_t memory_type,
1089 uint64_t start_address,
1090 uint64_t end_address)
1091{
1092 struct efi_device_path_memory *mdp;
1093 void *buf, *start;
1094
Heinrich Schuchardt45640252023-03-19 09:20:22 +01001095 start = buf = efi_alloc(sizeof(*mdp) + sizeof(END));
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001096 if (!buf)
1097 return NULL;
Rob Clark18ceba72017-10-10 08:23:06 -04001098
1099 mdp = buf;
1100 mdp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE;
1101 mdp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MEMORY;
1102 mdp->dp.length = sizeof(*mdp);
1103 mdp->memory_type = memory_type;
1104 mdp->start_address = start_address;
1105 mdp->end_address = end_address;
1106 buf = &mdp[1];
1107
1108 *((struct efi_device_path *)buf) = END;
1109
1110 return start;
1111}
1112
Heinrich Schuchardt0d36adc2019-02-04 12:49:43 +01001113/**
1114 * efi_dp_split_file_path() - split of relative file path from device path
1115 *
1116 * Given a device path indicating a file on a device, separate the device
1117 * path in two: the device path of the actual device and the file path
1118 * relative to this device.
1119 *
1120 * @full_path: device path including device and file path
1121 * @device_path: path of the device
AKASHI Takahiro9c6531f2019-04-16 17:39:26 +02001122 * @file_path: relative path of the file or NULL if there is none
Heinrich Schuchardt0d36adc2019-02-04 12:49:43 +01001123 * Return: status code
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001124 */
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001125efi_status_t efi_dp_split_file_path(struct efi_device_path *full_path,
1126 struct efi_device_path **device_path,
1127 struct efi_device_path **file_path)
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001128{
AKASHI Takahiro9c6531f2019-04-16 17:39:26 +02001129 struct efi_device_path *p, *dp, *fp = NULL;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001130
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001131 *device_path = NULL;
1132 *file_path = NULL;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001133 dp = efi_dp_dup(full_path);
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001134 if (!dp)
1135 return EFI_OUT_OF_RESOURCES;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001136 p = dp;
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001137 while (!EFI_DP_TYPE(p, MEDIA_DEVICE, FILE_PATH)) {
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001138 p = efi_dp_next(p);
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001139 if (!p)
AKASHI Takahiro9c6531f2019-04-16 17:39:26 +02001140 goto out;
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001141 }
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001142 fp = efi_dp_dup(p);
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001143 if (!fp)
1144 return EFI_OUT_OF_RESOURCES;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001145 p->type = DEVICE_PATH_TYPE_END;
1146 p->sub_type = DEVICE_PATH_SUB_TYPE_END;
1147 p->length = sizeof(*p);
1148
AKASHI Takahiro9c6531f2019-04-16 17:39:26 +02001149out:
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001150 *device_path = dp;
1151 *file_path = fp;
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001152 return EFI_SUCCESS;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001153}
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001154
Heinrich Schuchardt6e0a1b42019-10-30 20:13:24 +01001155/**
1156 * efi_dp_from_name() - convert U-Boot device and file path to device path
1157 *
1158 * @dev: U-Boot device, e.g. 'mmc'
1159 * @devnr: U-Boot device number, e.g. 1 for 'mmc:1'
1160 * @path: file path relative to U-Boot device, may be NULL
1161 * @device: pointer to receive device path of the device
1162 * @file: pointer to receive device path for the file
1163 * Return: status code
1164 */
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001165efi_status_t efi_dp_from_name(const char *dev, const char *devnr,
1166 const char *path,
1167 struct efi_device_path **device,
1168 struct efi_device_path **file)
1169{
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001170 struct blk_desc *desc = NULL;
Heinrich Schuchardt7e269a32023-05-13 10:30:43 +02001171 struct efi_device_path *dp;
Simon Glassc1c4a8f2020-05-10 11:39:57 -06001172 struct disk_partition fs_partition;
Rui Miguel Silva433f15a2022-05-11 10:55:40 +01001173 size_t image_size;
1174 void *image_addr;
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001175 int part = 0;
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001176
AKASHI Takahiro39844412018-11-05 18:06:40 +09001177 if (path && !file)
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001178 return EFI_INVALID_PARAMETER;
1179
Heinrich Schuchardt87b8a712023-05-13 09:55:26 +02001180 if (!strcmp(dev, "Mem") || !strcmp(dev, "hostfs")) {
Heinrich Schuchardtaecb9e22023-05-12 20:18:10 +02001181 /* loadm command and semihosting */
Rui Miguel Silva433f15a2022-05-11 10:55:40 +01001182 efi_get_image_parameters(&image_addr, &image_size);
1183
Heinrich Schuchardt7e269a32023-05-13 10:30:43 +02001184 dp = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE,
1185 (uintptr_t)image_addr, image_size);
Heinrich Schuchardt87b8a712023-05-13 09:55:26 +02001186 } else if (IS_ENABLED(CONFIG_NETDEVICES) && !strcmp(dev, "Net")) {
Heinrich Schuchardt7e269a32023-05-13 10:30:43 +02001187 dp = efi_dp_from_eth();
Heinrich Schuchardt87b8a712023-05-13 09:55:26 +02001188 } else if (!strcmp(dev, "Uart")) {
Heinrich Schuchardt7e269a32023-05-13 10:30:43 +02001189 dp = efi_dp_from_uart();
Heinrich Schuchardt77c0da82021-03-19 02:49:54 +01001190 } else {
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001191 part = blk_get_device_part_str(dev, devnr, &desc, &fs_partition,
1192 1);
Patrick Delaunayba7a9502019-04-10 11:02:58 +02001193 if (part < 0 || !desc)
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001194 return EFI_INVALID_PARAMETER;
1195
Heinrich Schuchardt7e269a32023-05-13 10:30:43 +02001196 dp = efi_dp_from_part(desc, part);
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001197 }
Heinrich Schuchardt7e269a32023-05-13 10:30:43 +02001198 if (device)
1199 *device = dp;
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001200
1201 if (!path)
1202 return EFI_SUCCESS;
1203
Heinrich Schuchardtff08eac2023-05-13 10:36:21 +02001204 *file = efi_dp_from_file(dp, path);
Heinrich Schuchardt6e0a1b42019-10-30 20:13:24 +01001205 if (!*file)
Heinrich Schuchardtbf0b3a12023-05-13 10:22:21 +02001206 return EFI_OUT_OF_RESOURCES;
AKASHI Takahirof1dbbae2019-10-09 16:19:52 +09001207
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001208 return EFI_SUCCESS;
1209}
Heinrich Schuchardt22c8e082020-08-23 10:49:46 +02001210
1211/**
1212 * efi_dp_check_length() - check length of a device path
1213 *
1214 * @dp: pointer to device path
1215 * @maxlen: maximum length of the device path
1216 * Return:
1217 * * length of the device path if it is less or equal @maxlen
1218 * * -1 if the device path is longer then @maxlen
1219 * * -1 if a device path node has a length of less than 4
1220 * * -EINVAL if maxlen exceeds SSIZE_MAX
1221 */
1222ssize_t efi_dp_check_length(const struct efi_device_path *dp,
1223 const size_t maxlen)
1224{
1225 ssize_t ret = 0;
1226 u16 len;
1227
1228 if (maxlen > SSIZE_MAX)
1229 return -EINVAL;
1230 for (;;) {
1231 len = dp->length;
1232 if (len < 4)
1233 return -1;
1234 ret += len;
1235 if (ret > maxlen)
1236 return -1;
1237 if (dp->type == DEVICE_PATH_TYPE_END &&
1238 dp->sub_type == DEVICE_PATH_SUB_TYPE_END)
1239 return ret;
1240 dp = (const struct efi_device_path *)((const u8 *)dp + len);
1241 }
Ilias Apalodimas483d28e2021-03-17 21:54:58 +02001242}
1243
1244/**
1245 * efi_dp_from_lo() - Get the instance of a VenMedia node in a
1246 * multi-instance device path that matches
1247 * a specific GUID. This kind of device paths
1248 * is found in Boot#### options describing an
1249 * initrd location
1250 *
1251 * @lo: EFI_LOAD_OPTION containing a valid device path
Ilias Apalodimas483d28e2021-03-17 21:54:58 +02001252 * @guid: guid to search for
1253 *
1254 * Return:
1255 * device path including the VenMedia node or NULL.
1256 * Caller must free the returned value.
1257 */
1258struct
1259efi_device_path *efi_dp_from_lo(struct efi_load_option *lo,
Heinrich Schuchardt9979cff2021-10-15 01:31:02 +02001260 const efi_guid_t *guid)
Ilias Apalodimas483d28e2021-03-17 21:54:58 +02001261{
1262 struct efi_device_path *fp = lo->file_path;
1263 struct efi_device_path_vendor *vendor;
1264 int lo_len = lo->file_path_length;
1265
1266 for (; lo_len >= sizeof(struct efi_device_path);
1267 lo_len -= fp->length, fp = (void *)fp + fp->length) {
1268 if (lo_len < 0 || efi_dp_check_length(fp, lo_len) < 0)
1269 break;
1270 if (fp->type != DEVICE_PATH_TYPE_MEDIA_DEVICE ||
1271 fp->sub_type != DEVICE_PATH_SUB_TYPE_VENDOR_PATH)
1272 continue;
1273
1274 vendor = (struct efi_device_path_vendor *)fp;
Heinrich Schuchardt9979cff2021-10-15 01:31:02 +02001275 if (!guidcmp(&vendor->guid, guid))
Heinrich Schuchardt35dd3222021-10-15 02:59:15 +02001276 return efi_dp_dup(efi_dp_next(fp));
Ilias Apalodimas483d28e2021-03-17 21:54:58 +02001277 }
1278 log_debug("VenMedia(%pUl) not found in %ls\n", &guid, lo->label);
1279
1280 return NULL;
Heinrich Schuchardt22c8e082020-08-23 10:49:46 +02001281}
Masahisa Kojima6460c3e2021-10-26 17:27:25 +09001282
1283/**
1284 * search_gpt_dp_node() - search gpt device path node
1285 *
1286 * @device_path: device path
1287 *
1288 * Return: pointer to the gpt device path node
1289 */
1290struct efi_device_path *search_gpt_dp_node(struct efi_device_path *device_path)
1291{
1292 struct efi_device_path *dp = device_path;
1293
1294 while (dp) {
1295 if (dp->type == DEVICE_PATH_TYPE_MEDIA_DEVICE &&
1296 dp->sub_type == DEVICE_PATH_SUB_TYPE_HARD_DRIVE_PATH) {
1297 struct efi_device_path_hard_drive_path *hd_dp =
1298 (struct efi_device_path_hard_drive_path *)dp;
1299
1300 if (hd_dp->partmap_type == PART_FORMAT_GPT &&
1301 hd_dp->signature_type == SIG_TYPE_GUID)
1302 return dp;
1303 }
1304 dp = efi_dp_next(dp);
1305 }
1306
1307 return NULL;
1308}