blob: b1739d99201c3788be614bc6c2b07ad08666908a [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Grafe83be452016-03-04 01:10:02 +01002/*
3 * EFI application disk support
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Grafe83be452016-03-04 01:10:02 +01006 */
7
Heinrich Schuchardt37240572020-07-17 20:33:05 +02008#define LOG_CATEGORY LOGC_EFI
9
Simon Glasse3dfa912016-05-01 13:52:32 -060010#include <blk.h>
Simon Glass302d4f82016-05-14 14:03:05 -060011#include <dm.h>
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +090012#include <dm/device-internal.h>
13#include <dm/tag.h>
14#include <event.h>
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +020015#include <efi_driver.h>
Alexander Grafe83be452016-03-04 01:10:02 +010016#include <efi_loader.h>
AKASHI Takahiro120a01a2019-10-07 14:59:38 +090017#include <fs.h>
Heinrich Schuchardt37240572020-07-17 20:33:05 +020018#include <log.h>
Alexander Grafe83be452016-03-04 01:10:02 +010019#include <part.h>
20#include <malloc.h>
21
Heinrich Schuchardt0397d812022-10-21 08:33:44 +020022struct efi_system_partition efi_system_partition = {
23 .uclass_id = UCLASS_INVALID,
24};
Heinrich Schuchardta9931732020-03-19 15:16:31 +010025
Heinrich Schuchardt788ad412019-04-20 07:39:11 +020026const efi_guid_t efi_block_io_guid = EFI_BLOCK_IO_PROTOCOL_GUID;
Heinrich Schuchardt26397622021-02-02 17:53:14 +010027const efi_guid_t efi_system_partition_guid = PARTITION_SYSTEM_GUID;
Alexander Grafe83be452016-03-04 01:10:02 +010028
Heinrich Schuchardt72928722018-09-26 05:27:56 +020029/**
30 * struct efi_disk_obj - EFI disk object
31 *
32 * @header: EFI object header
33 * @ops: EFI disk I/O protocol interface
Heinrich Schuchardt72928722018-09-26 05:27:56 +020034 * @media: block I/O media information
35 * @dp: device path to the block device
Heinrich Schuchardt72928722018-09-26 05:27:56 +020036 * @volume: simple file system protocol of the partition
Heinrich Schuchardt72928722018-09-26 05:27:56 +020037 */
Alexander Grafe83be452016-03-04 01:10:02 +010038struct efi_disk_obj {
Heinrich Schuchardt72928722018-09-26 05:27:56 +020039 struct efi_object header;
Alexander Grafe83be452016-03-04 01:10:02 +010040 struct efi_block_io ops;
Alexander Grafe83be452016-03-04 01:10:02 +010041 struct efi_block_io_media media;
Rob Clarka83272f2017-09-13 18:05:31 -040042 struct efi_device_path *dp;
Rob Clark53142032017-09-13 18:05:34 -040043 struct efi_simple_file_system_protocol *volume;
Alexander Grafe83be452016-03-04 01:10:02 +010044};
45
Heinrich Schuchardt670198c2019-09-05 20:13:46 +020046/**
47 * efi_disk_reset() - reset block device
48 *
49 * This function implements the Reset service of the EFI_BLOCK_IO_PROTOCOL.
50 *
51 * As U-Boot's block devices do not have a reset function simply return
52 * EFI_SUCCESS.
53 *
54 * See the Unified Extensible Firmware Interface (UEFI) specification for
55 * details.
56 *
57 * @this: pointer to the BLOCK_IO_PROTOCOL
58 * @extended_verification: extended verification
59 * Return: status code
60 */
Alexander Grafe83be452016-03-04 01:10:02 +010061static efi_status_t EFIAPI efi_disk_reset(struct efi_block_io *this,
62 char extended_verification)
63{
64 EFI_ENTRY("%p, %x", this, extended_verification);
Heinrich Schuchardt670198c2019-09-05 20:13:46 +020065 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafe83be452016-03-04 01:10:02 +010066}
67
AKASHI Takahiroba647af2022-05-12 11:29:01 +090068/**
69 * efi_disk_is_removable() - check if the device is removable media
70 * @handle: efi object handle;
71 *
72 * Examine the device and determine if the device is a local block device
73 * and removable media.
74 *
75 * Return: true if removable, false otherwise
76 */
77bool efi_disk_is_removable(efi_handle_t handle)
78{
79 struct efi_handler *handler;
80 struct efi_block_io *io;
81 efi_status_t ret;
82
83 ret = efi_search_protocol(handle, &efi_block_io_guid, &handler);
84 if (ret != EFI_SUCCESS)
85 return false;
86
87 io = handler->protocol_interface;
88
89 if (!io || !io->media)
90 return false;
91
92 return (bool)io->media->removable_media;
93}
94
Alexander Grafe83be452016-03-04 01:10:02 +010095enum efi_disk_direction {
96 EFI_DISK_READ,
97 EFI_DISK_WRITE,
98};
99
Heinrich Schuchardt9ce06172017-08-26 22:33:13 +0200100static efi_status_t efi_disk_rw_blocks(struct efi_block_io *this,
Alexander Grafe83be452016-03-04 01:10:02 +0100101 u32 media_id, u64 lba, unsigned long buffer_size,
102 void *buffer, enum efi_disk_direction direction)
103{
104 struct efi_disk_obj *diskobj;
Alexander Grafe83be452016-03-04 01:10:02 +0100105 int blksz;
106 int blocks;
107 unsigned long n;
108
Alexander Grafe83be452016-03-04 01:10:02 +0100109 diskobj = container_of(this, struct efi_disk_obj, ops);
AKASHI Takahiro808ece12022-04-19 10:05:17 +0900110 blksz = diskobj->media.block_size;
Alexander Grafe83be452016-03-04 01:10:02 +0100111 blocks = buffer_size / blksz;
112
Heinrich Schuchardtee6ef8b2019-09-05 19:43:17 +0200113 EFI_PRINT("blocks=%x lba=%llx blksz=%x dir=%d\n",
114 blocks, lba, blksz, direction);
Alexander Grafe83be452016-03-04 01:10:02 +0100115
116 /* We only support full block access */
117 if (buffer_size & (blksz - 1))
Heinrich Schuchardt35922522019-09-05 19:31:23 +0200118 return EFI_BAD_BUFFER_SIZE;
Alexander Grafe83be452016-03-04 01:10:02 +0100119
AKASHI Takahiro8c591132022-04-28 13:49:16 +0900120 if (CONFIG_IS_ENABLED(PARTITIONS) &&
Masahisa Kojimac9611082022-07-22 11:39:10 +0900121 device_get_uclass_id(diskobj->header.dev) == UCLASS_PARTITION) {
AKASHI Takahiro8c591132022-04-28 13:49:16 +0900122 if (direction == EFI_DISK_READ)
Simon Glass4e93eea2022-10-20 18:22:52 -0600123 n = disk_blk_read(diskobj->header.dev, lba, blocks,
124 buffer);
AKASHI Takahiro8c591132022-04-28 13:49:16 +0900125 else
Simon Glass4e93eea2022-10-20 18:22:52 -0600126 n = disk_blk_write(diskobj->header.dev, lba, blocks,
127 buffer);
AKASHI Takahiro8c591132022-04-28 13:49:16 +0900128 } else {
129 /* dev is a block device (UCLASS_BLK) */
130 struct blk_desc *desc;
AKASHI Takahiro808ece12022-04-19 10:05:17 +0900131
Masahisa Kojimac9611082022-07-22 11:39:10 +0900132 desc = dev_get_uclass_plat(diskobj->header.dev);
AKASHI Takahiro8c591132022-04-28 13:49:16 +0900133 if (direction == EFI_DISK_READ)
134 n = blk_dread(desc, lba, blocks, buffer);
135 else
136 n = blk_dwrite(desc, lba, blocks, buffer);
137 }
Alexander Grafe83be452016-03-04 01:10:02 +0100138
139 /* We don't do interrupts, so check for timers cooperatively */
140 efi_timer_check();
141
Heinrich Schuchardtee6ef8b2019-09-05 19:43:17 +0200142 EFI_PRINT("n=%lx blocks=%x\n", n, blocks);
Alexander Graf62a67482016-06-02 11:38:27 +0200143
Alexander Grafe83be452016-03-04 01:10:02 +0100144 if (n != blocks)
Rob Clark99c43872017-07-25 20:28:29 -0400145 return EFI_DEVICE_ERROR;
Alexander Grafe83be452016-03-04 01:10:02 +0100146
Rob Clark99c43872017-07-25 20:28:29 -0400147 return EFI_SUCCESS;
Alexander Grafe83be452016-03-04 01:10:02 +0100148}
149
Heinrich Schuchardt76f57892020-04-10 17:10:34 +0200150/**
151 * efi_disk_read_blocks() - reads blocks from device
152 *
153 * This function implements the ReadBlocks service of the EFI_BLOCK_IO_PROTOCOL.
154 *
155 * See the Unified Extensible Firmware Interface (UEFI) specification for
156 * details.
157 *
158 * @this: pointer to the BLOCK_IO_PROTOCOL
159 * @media_id: id of the medium to be read from
160 * @lba: starting logical block for reading
161 * @buffer_size: size of the read buffer
162 * @buffer: pointer to the destination buffer
163 * Return: status code
164 */
Simon Glassc2194bf2016-09-25 15:27:32 -0600165static efi_status_t EFIAPI efi_disk_read_blocks(struct efi_block_io *this,
Heinrich Schuchardt0844f792018-01-19 20:24:48 +0100166 u32 media_id, u64 lba, efi_uintn_t buffer_size,
Alexander Grafe83be452016-03-04 01:10:02 +0100167 void *buffer)
168{
Alexander Graf7c00a3c2016-05-11 18:25:48 +0200169 void *real_buffer = buffer;
170 efi_status_t r;
171
Heinrich Schuchardt35922522019-09-05 19:31:23 +0200172 if (!this)
173 return EFI_INVALID_PARAMETER;
174 /* TODO: check for media changes */
175 if (media_id != this->media->media_id)
176 return EFI_MEDIA_CHANGED;
177 if (!this->media->media_present)
178 return EFI_NO_MEDIA;
Heinrich Schuchardt0bb73892021-01-23 19:33:11 +0100179 /* media->io_align is a power of 2 or 0 */
180 if (this->media->io_align &&
181 (uintptr_t)buffer & (this->media->io_align - 1))
Heinrich Schuchardt35922522019-09-05 19:31:23 +0200182 return EFI_INVALID_PARAMETER;
183 if (lba * this->media->block_size + buffer_size >
Jesper Schmitz Mouridsenf1424932021-02-09 17:17:17 +0100184 (this->media->last_block + 1) * this->media->block_size)
Heinrich Schuchardt35922522019-09-05 19:31:23 +0200185 return EFI_INVALID_PARAMETER;
186
Alexander Graf7c00a3c2016-05-11 18:25:48 +0200187#ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
188 if (buffer_size > EFI_LOADER_BOUNCE_BUFFER_SIZE) {
189 r = efi_disk_read_blocks(this, media_id, lba,
190 EFI_LOADER_BOUNCE_BUFFER_SIZE, buffer);
191 if (r != EFI_SUCCESS)
192 return r;
193 return efi_disk_read_blocks(this, media_id, lba +
194 EFI_LOADER_BOUNCE_BUFFER_SIZE / this->media->block_size,
195 buffer_size - EFI_LOADER_BOUNCE_BUFFER_SIZE,
196 buffer + EFI_LOADER_BOUNCE_BUFFER_SIZE);
197 }
198
199 real_buffer = efi_bounce_buffer;
200#endif
201
Masahiro Yamadac7570a32018-08-06 20:47:40 +0900202 EFI_ENTRY("%p, %x, %llx, %zx, %p", this, media_id, lba,
Alexander Graf7c00a3c2016-05-11 18:25:48 +0200203 buffer_size, buffer);
204
205 r = efi_disk_rw_blocks(this, media_id, lba, buffer_size, real_buffer,
206 EFI_DISK_READ);
207
208 /* Copy from bounce buffer to real buffer if necessary */
209 if ((r == EFI_SUCCESS) && (real_buffer != buffer))
210 memcpy(buffer, real_buffer, buffer_size);
211
212 return EFI_EXIT(r);
Alexander Grafe83be452016-03-04 01:10:02 +0100213}
214
Heinrich Schuchardt76f57892020-04-10 17:10:34 +0200215/**
216 * efi_disk_write_blocks() - writes blocks to device
217 *
218 * This function implements the WriteBlocks service of the
219 * EFI_BLOCK_IO_PROTOCOL.
220 *
221 * See the Unified Extensible Firmware Interface (UEFI) specification for
222 * details.
223 *
224 * @this: pointer to the BLOCK_IO_PROTOCOL
225 * @media_id: id of the medium to be written to
226 * @lba: starting logical block for writing
227 * @buffer_size: size of the write buffer
228 * @buffer: pointer to the source buffer
229 * Return: status code
230 */
Simon Glassc2194bf2016-09-25 15:27:32 -0600231static efi_status_t EFIAPI efi_disk_write_blocks(struct efi_block_io *this,
Heinrich Schuchardt0844f792018-01-19 20:24:48 +0100232 u32 media_id, u64 lba, efi_uintn_t buffer_size,
Alexander Grafe83be452016-03-04 01:10:02 +0100233 void *buffer)
234{
Alexander Graf7c00a3c2016-05-11 18:25:48 +0200235 void *real_buffer = buffer;
236 efi_status_t r;
237
Heinrich Schuchardt35922522019-09-05 19:31:23 +0200238 if (!this)
239 return EFI_INVALID_PARAMETER;
240 if (this->media->read_only)
241 return EFI_WRITE_PROTECTED;
242 /* TODO: check for media changes */
243 if (media_id != this->media->media_id)
244 return EFI_MEDIA_CHANGED;
245 if (!this->media->media_present)
246 return EFI_NO_MEDIA;
Heinrich Schuchardt0bb73892021-01-23 19:33:11 +0100247 /* media->io_align is a power of 2 or 0 */
248 if (this->media->io_align &&
249 (uintptr_t)buffer & (this->media->io_align - 1))
Heinrich Schuchardt35922522019-09-05 19:31:23 +0200250 return EFI_INVALID_PARAMETER;
251 if (lba * this->media->block_size + buffer_size >
Jesper Schmitz Mouridsenf1424932021-02-09 17:17:17 +0100252 (this->media->last_block + 1) * this->media->block_size)
Heinrich Schuchardt35922522019-09-05 19:31:23 +0200253 return EFI_INVALID_PARAMETER;
254
Alexander Graf7c00a3c2016-05-11 18:25:48 +0200255#ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
256 if (buffer_size > EFI_LOADER_BOUNCE_BUFFER_SIZE) {
257 r = efi_disk_write_blocks(this, media_id, lba,
258 EFI_LOADER_BOUNCE_BUFFER_SIZE, buffer);
259 if (r != EFI_SUCCESS)
260 return r;
261 return efi_disk_write_blocks(this, media_id, lba +
262 EFI_LOADER_BOUNCE_BUFFER_SIZE / this->media->block_size,
263 buffer_size - EFI_LOADER_BOUNCE_BUFFER_SIZE,
264 buffer + EFI_LOADER_BOUNCE_BUFFER_SIZE);
265 }
266
267 real_buffer = efi_bounce_buffer;
268#endif
269
Masahiro Yamadac7570a32018-08-06 20:47:40 +0900270 EFI_ENTRY("%p, %x, %llx, %zx, %p", this, media_id, lba,
Alexander Graf7c00a3c2016-05-11 18:25:48 +0200271 buffer_size, buffer);
272
273 /* Populate bounce buffer if necessary */
274 if (real_buffer != buffer)
275 memcpy(real_buffer, buffer, buffer_size);
276
277 r = efi_disk_rw_blocks(this, media_id, lba, buffer_size, real_buffer,
278 EFI_DISK_WRITE);
279
280 return EFI_EXIT(r);
Alexander Grafe83be452016-03-04 01:10:02 +0100281}
282
Heinrich Schuchardt76f57892020-04-10 17:10:34 +0200283/**
284 * efi_disk_flush_blocks() - flushes modified data to the device
285 *
286 * This function implements the FlushBlocks service of the
287 * EFI_BLOCK_IO_PROTOCOL.
288 *
289 * As we always write synchronously nothing is done here.
290 *
291 * See the Unified Extensible Firmware Interface (UEFI) specification for
292 * details.
293 *
294 * @this: pointer to the BLOCK_IO_PROTOCOL
295 * Return: status code
296 */
Alexander Grafe83be452016-03-04 01:10:02 +0100297static efi_status_t EFIAPI efi_disk_flush_blocks(struct efi_block_io *this)
298{
Alexander Grafe83be452016-03-04 01:10:02 +0100299 EFI_ENTRY("%p", this);
300 return EFI_EXIT(EFI_SUCCESS);
301}
302
303static const struct efi_block_io block_io_disk_template = {
304 .reset = &efi_disk_reset,
305 .read_blocks = &efi_disk_read_blocks,
306 .write_blocks = &efi_disk_write_blocks,
307 .flush_blocks = &efi_disk_flush_blocks,
308};
309
Heinrich Schuchardt62036062020-03-19 13:49:34 +0100310/**
311 * efi_fs_from_path() - retrieve simple file system protocol
312 *
313 * Gets the simple file system protocol for a file device path.
Heinrich Schuchardt39578762018-01-19 20:24:39 +0100314 *
315 * The full path provided is split into device part and into a file
316 * part. The device part is used to find the handle on which the
317 * simple file system protocol is installed.
318 *
Heinrich Schuchardt62036062020-03-19 13:49:34 +0100319 * @full_path: device path including device and file
320 * Return: simple file system protocol
Rob Clark53142032017-09-13 18:05:34 -0400321 */
322struct efi_simple_file_system_protocol *
Heinrich Schuchardt39578762018-01-19 20:24:39 +0100323efi_fs_from_path(struct efi_device_path *full_path)
Rob Clark53142032017-09-13 18:05:34 -0400324{
325 struct efi_object *efiobj;
Heinrich Schuchardt39578762018-01-19 20:24:39 +0100326 struct efi_handler *handler;
327 struct efi_device_path *device_path;
328 struct efi_device_path *file_path;
329 efi_status_t ret;
Rob Clark53142032017-09-13 18:05:34 -0400330
Heinrich Schuchardt39578762018-01-19 20:24:39 +0100331 /* Split the path into a device part and a file part */
332 ret = efi_dp_split_file_path(full_path, &device_path, &file_path);
333 if (ret != EFI_SUCCESS)
334 return NULL;
335 efi_free_pool(file_path);
336
337 /* Get the EFI object for the partition */
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100338 efiobj = efi_dp_find_obj(device_path, NULL, NULL);
Heinrich Schuchardt39578762018-01-19 20:24:39 +0100339 efi_free_pool(device_path);
Rob Clark53142032017-09-13 18:05:34 -0400340 if (!efiobj)
341 return NULL;
342
Heinrich Schuchardt39578762018-01-19 20:24:39 +0100343 /* Find the simple file system protocol */
344 ret = efi_search_protocol(efiobj, &efi_simple_file_system_protocol_guid,
345 &handler);
346 if (ret != EFI_SUCCESS)
347 return NULL;
Rob Clark53142032017-09-13 18:05:34 -0400348
Heinrich Schuchardt39578762018-01-19 20:24:39 +0100349 /* Return the simple file system protocol for the partition */
350 return handler->protocol_interface;
Rob Clark53142032017-09-13 18:05:34 -0400351}
352
AKASHI Takahiro120a01a2019-10-07 14:59:38 +0900353/**
354 * efi_fs_exists() - check if a partition bears a file system
355 *
356 * @desc: block device descriptor
357 * @part: partition number
358 * Return: 1 if a file system exists on the partition
359 * 0 otherwise
360 */
361static int efi_fs_exists(struct blk_desc *desc, int part)
362{
363 if (fs_set_blk_dev_with_part(desc, part))
364 return 0;
365
366 if (fs_get_type() == FS_TYPE_ANY)
367 return 0;
368
369 fs_close();
370
371 return 1;
372}
373
Masahisa Kojima78761472024-01-19 09:45:45 +0900374static void efi_disk_free_diskobj(struct efi_disk_obj *diskobj)
375{
376 struct efi_device_path *dp = diskobj->dp;
377 struct efi_simple_file_system_protocol *volume = diskobj->volume;
378
379 /*
380 * ignore error of efi_delete_handle() since this function
381 * is expected to be called in error path.
382 */
383 efi_delete_handle(&diskobj->header);
384 efi_free_pool(dp);
385 free(volume);
386}
387
Heinrich Schuchardt76f57892020-04-10 17:10:34 +0200388/**
Heinrich Schuchardt62036062020-03-19 13:49:34 +0100389 * efi_disk_add_dev() - create a handle for a partition or disk
Heinrich Schuchardt34f51832017-10-26 19:25:46 +0200390 *
Heinrich Schuchardt62036062020-03-19 13:49:34 +0100391 * @parent: parent handle
392 * @dp_parent: parent device path
Heinrich Schuchardt62036062020-03-19 13:49:34 +0100393 * @desc: internal block device
Heinrich Schuchardtb56e7192021-01-23 06:52:21 +0100394 * @part_info: partition info
Heinrich Schuchardt76f57892020-04-10 17:10:34 +0200395 * @part: partition
396 * @disk: pointer to receive the created handle
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200397 * @agent_handle: handle of the EFI block driver
Heinrich Schuchardt62036062020-03-19 13:49:34 +0100398 * Return: disk object
Heinrich Schuchardt34f51832017-10-26 19:25:46 +0200399 */
Heinrich Schuchardtcde7a362018-02-09 20:55:47 +0100400static efi_status_t efi_disk_add_dev(
Heinrich Schuchardt6f3de6b2018-01-19 20:24:47 +0100401 efi_handle_t parent,
402 struct efi_device_path *dp_parent,
Heinrich Schuchardt6f3de6b2018-01-19 20:24:47 +0100403 struct blk_desc *desc,
Heinrich Schuchardtb56e7192021-01-23 06:52:21 +0100404 struct disk_partition *part_info,
Heinrich Schuchardtcde7a362018-02-09 20:55:47 +0100405 unsigned int part,
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200406 struct efi_disk_obj **disk,
407 efi_handle_t agent_handle)
Alexander Graf06fe57b2016-04-11 16:16:17 +0200408{
409 struct efi_disk_obj *diskobj;
Heinrich Schuchardt2321b552020-05-21 09:22:06 +0200410 struct efi_object *handle;
Heinrich Schuchardt31d63b82022-10-07 11:03:01 +0200411 const efi_guid_t *esp_guid = NULL;
Heinrich Schuchardt9fb0f2f2017-11-26 14:05:12 +0100412 efi_status_t ret;
Alexander Graf06fe57b2016-04-11 16:16:17 +0200413
Alexander Graf601db1f2016-08-05 14:51:47 +0200414 /* Don't add empty devices */
415 if (!desc->lba)
Heinrich Schuchardtcde7a362018-02-09 20:55:47 +0100416 return EFI_NOT_READY;
Alexander Graf601db1f2016-08-05 14:51:47 +0200417
Rob Clarka83272f2017-09-13 18:05:31 -0400418 diskobj = calloc(1, sizeof(*diskobj));
Heinrich Schuchardt9fb0f2f2017-11-26 14:05:12 +0100419 if (!diskobj)
Heinrich Schuchardtcde7a362018-02-09 20:55:47 +0100420 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt9fb0f2f2017-11-26 14:05:12 +0100421
422 /* Hook up to the device list */
Heinrich Schuchardt72928722018-09-26 05:27:56 +0200423 efi_add_handle(&diskobj->header);
Alexander Graf06fe57b2016-04-11 16:16:17 +0200424
425 /* Fill in object data */
Heinrich Schuchardtb56e7192021-01-23 06:52:21 +0100426 if (part_info) {
Heinrich Schuchardt6f3de6b2018-01-19 20:24:47 +0100427 struct efi_device_path *node = efi_dp_part_node(desc, part);
Heinrich Schuchardtcb9ff4e2020-01-10 12:36:01 +0100428 struct efi_handler *handler;
429 void *protocol_interface;
430
Heinrich Schuchardte29fbb32022-10-06 13:36:02 +0200431 if (!node) {
432 ret = EFI_OUT_OF_RESOURCES;
Simon Glass438e0492023-01-17 10:47:32 -0700433 log_debug("no node\n");
Heinrich Schuchardte29fbb32022-10-06 13:36:02 +0200434 goto error;
435 }
436
Heinrich Schuchardtcb9ff4e2020-01-10 12:36:01 +0100437 /* Parent must expose EFI_BLOCK_IO_PROTOCOL */
438 ret = efi_search_protocol(parent, &efi_block_io_guid, &handler);
Simon Glass438e0492023-01-17 10:47:32 -0700439 if (ret != EFI_SUCCESS) {
440 log_debug("search failed\n");
Heinrich Schuchardtcb9ff4e2020-01-10 12:36:01 +0100441 goto error;
Simon Glass438e0492023-01-17 10:47:32 -0700442 }
Heinrich Schuchardtcb9ff4e2020-01-10 12:36:01 +0100443
444 /*
445 * Link the partition (child controller) to the block device
446 * (controller).
447 */
448 ret = efi_protocol_open(handler, &protocol_interface, NULL,
449 &diskobj->header,
450 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER);
Simon Glass438e0492023-01-17 10:47:32 -0700451 if (ret != EFI_SUCCESS) {
452 log_debug("prot open failed\n");
453 goto error;
454 }
Heinrich Schuchardt6f3de6b2018-01-19 20:24:47 +0100455
456 diskobj->dp = efi_dp_append_node(dp_parent, node);
457 efi_free_pool(node);
Heinrich Schuchardtb56e7192021-01-23 06:52:21 +0100458 diskobj->media.last_block = part_info->size - 1;
Heinrich Schuchardt26397622021-02-02 17:53:14 +0100459 if (part_info->bootable & PART_EFI_SYSTEM_PARTITION)
Heinrich Schuchardt31d63b82022-10-07 11:03:01 +0200460 esp_guid = &efi_system_partition_guid;
Heinrich Schuchardt6f3de6b2018-01-19 20:24:47 +0100461 } else {
462 diskobj->dp = efi_dp_from_part(desc, part);
Heinrich Schuchardtb56e7192021-01-23 06:52:21 +0100463 diskobj->media.last_block = desc->lba - 1;
Heinrich Schuchardt6f3de6b2018-01-19 20:24:47 +0100464 }
Heinrich Schuchardt2321b552020-05-21 09:22:06 +0200465
466 /*
467 * Install the device path and the block IO protocol.
468 *
469 * InstallMultipleProtocolInterfaces() checks if the device path is
470 * already installed on an other handle and returns EFI_ALREADY_STARTED
471 * in this case.
472 */
473 handle = &diskobj->header;
Heinrich Schuchardt31d63b82022-10-07 11:03:01 +0200474 ret = efi_install_multiple_protocol_interfaces(
475 &handle,
476 &efi_guid_device_path, diskobj->dp,
477 &efi_block_io_guid, &diskobj->ops,
478 /*
479 * esp_guid must be last entry as it
480 * can be NULL. Its interface is NULL.
481 */
482 esp_guid, NULL,
483 NULL);
Simon Glass438e0492023-01-17 10:47:32 -0700484 if (ret != EFI_SUCCESS) {
485 log_debug("install failed %lx\n", ret);
Heinrich Schuchardte47b68b2021-11-20 13:56:02 +0100486 goto error;
Simon Glass438e0492023-01-17 10:47:32 -0700487 }
Heinrich Schuchardt2321b552020-05-21 09:22:06 +0200488
489 /*
490 * On partitions or whole disks without partitions install the
491 * simple file system protocol if a file system is available.
492 */
AKASHI Takahiro356ef902019-10-07 14:59:39 +0900493 if ((part || desc->part_type == PART_TYPE_UNKNOWN) &&
494 efi_fs_exists(desc, part)) {
Heinrich Schuchardtf9e8ada2023-07-30 14:03:53 +0200495 ret = efi_create_simple_file_system(desc, part, diskobj->dp,
496 &diskobj->volume);
497 if (ret != EFI_SUCCESS)
498 goto error;
499
Heinrich Schuchardt72928722018-09-26 05:27:56 +0200500 ret = efi_add_protocol(&diskobj->header,
Heinrich Schuchardt9fb0f2f2017-11-26 14:05:12 +0100501 &efi_simple_file_system_protocol_guid,
Heinrich Schuchardtce721a82018-01-19 20:24:38 +0100502 diskobj->volume);
Heinrich Schuchardtf9e8ada2023-07-30 14:03:53 +0200503 if (ret != EFI_SUCCESS)
504 goto error;
Rob Clark53142032017-09-13 18:05:34 -0400505 }
Alexander Graf06fe57b2016-04-11 16:16:17 +0200506 diskobj->ops = block_io_disk_template;
Alexander Graf06fe57b2016-04-11 16:16:17 +0200507
508 /* Fill in EFI IO Media info (for read/write callbacks) */
509 diskobj->media.removable_media = desc->removable;
510 diskobj->media.media_present = 1;
Heinrich Schuchardt35922522019-09-05 19:31:23 +0200511 /*
512 * MediaID is just an arbitrary counter.
513 * We have to change it if the medium is removed or changed.
514 */
515 diskobj->media.media_id = 1;
Alexander Graf06fe57b2016-04-11 16:16:17 +0200516 diskobj->media.block_size = desc->blksz;
517 diskobj->media.io_align = desc->blksz;
Heinrich Schuchardtaf8c5b62020-03-19 15:45:52 +0100518 if (part)
Emmanuel Vadot5bf29642017-12-11 19:22:33 +0100519 diskobj->media.logical_partition = 1;
Alexander Graf06fe57b2016-04-11 16:16:17 +0200520 diskobj->ops.media = &diskobj->media;
Heinrich Schuchardtcde7a362018-02-09 20:55:47 +0100521 if (disk)
522 *disk = diskobj;
Heinrich Schuchardta9931732020-03-19 15:16:31 +0100523
Heinrich Schuchardtb56e7192021-01-23 06:52:21 +0100524 EFI_PRINT("BlockIO: part %u, present %d, logical %d, removable %d"
Paul Barbieriab814f12022-06-30 07:02:04 -0400525 ", last_block %llu\n",
Masahisa Kojima23ee41f2023-12-25 13:43:54 +0900526 part,
Heinrich Schuchardtb56e7192021-01-23 06:52:21 +0100527 diskobj->media.media_present,
528 diskobj->media.logical_partition,
529 diskobj->media.removable_media,
Heinrich Schuchardtb56e7192021-01-23 06:52:21 +0100530 diskobj->media.last_block);
531
Heinrich Schuchardta9931732020-03-19 15:16:31 +0100532 /* Store first EFI system partition */
Heinrich Schuchardt0397d812022-10-21 08:33:44 +0200533 if (part && efi_system_partition.uclass_id == UCLASS_INVALID) {
Heinrich Schuchardt26397622021-02-02 17:53:14 +0100534 if (part_info->bootable & PART_EFI_SYSTEM_PARTITION) {
Simon Glassfada3f92022-09-17 09:00:09 -0600535 efi_system_partition.uclass_id = desc->uclass_id;
Heinrich Schuchardta9931732020-03-19 15:16:31 +0100536 efi_system_partition.devnum = desc->devnum;
537 efi_system_partition.part = part;
Heinrich Schuchardt54f180d2021-05-25 18:00:13 +0200538 EFI_PRINT("EFI system partition: %s %x:%x\n",
Simon Glassfada3f92022-09-17 09:00:09 -0600539 blk_get_uclass_name(desc->uclass_id),
Heinrich Schuchardta9931732020-03-19 15:16:31 +0100540 desc->devnum, part);
541 }
542 }
Heinrich Schuchardtcde7a362018-02-09 20:55:47 +0100543 return EFI_SUCCESS;
Heinrich Schuchardtcb9ff4e2020-01-10 12:36:01 +0100544error:
Masahisa Kojima78761472024-01-19 09:45:45 +0900545 efi_disk_free_diskobj(diskobj);
Heinrich Schuchardtcb9ff4e2020-01-10 12:36:01 +0100546 return ret;
Alexander Graf06fe57b2016-04-11 16:16:17 +0200547}
548
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200549/**
550 * efi_disk_create_raw() - create a handle for a whole raw disk
Heinrich Schuchardt6f3de6b2018-01-19 20:24:47 +0100551 *
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200552 * @dev: udevice (UCLASS_BLK)
553 * @agent_handle: handle of the EFI block driver
Heinrich Schuchardt62036062020-03-19 13:49:34 +0100554 *
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900555 * Create an efi_disk object which is associated with @dev.
556 * The type of @dev must be UCLASS_BLK.
557 *
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200558 * Return: 0 on success, -1 otherwise
Heinrich Schuchardt6f3de6b2018-01-19 20:24:47 +0100559 */
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200560static int efi_disk_create_raw(struct udevice *dev, efi_handle_t agent_handle)
Alexander Grafeb8d82c2016-04-11 16:16:18 +0200561{
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900562 struct efi_disk_obj *disk;
563 struct blk_desc *desc;
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900564 int diskid;
Heinrich Schuchardt6f3de6b2018-01-19 20:24:47 +0100565 efi_status_t ret;
Heinrich Schuchardt6f3de6b2018-01-19 20:24:47 +0100566
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900567 desc = dev_get_uclass_plat(dev);
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900568 diskid = desc->devnum;
Alexander Grafeb8d82c2016-04-11 16:16:18 +0200569
AKASHI Takahiro7ec925d2022-08-19 09:48:30 +0900570 ret = efi_disk_add_dev(NULL, NULL, desc,
Masahisa Kojima23ee41f2023-12-25 13:43:54 +0900571 NULL, 0, &disk, agent_handle);
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900572 if (ret != EFI_SUCCESS) {
Simon Glass438e0492023-01-17 10:47:32 -0700573 if (ret == EFI_NOT_READY) {
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900574 log_notice("Disk %s not ready\n", dev->name);
Simon Glass438e0492023-01-17 10:47:32 -0700575 ret = -EBUSY;
576 } else {
Simon Glasse57f8d42022-10-29 19:47:17 -0600577 log_err("Adding disk for %s failed (err=%ld/%#lx)\n", dev->name, ret, ret);
Simon Glass438e0492023-01-17 10:47:32 -0700578 ret = -ENOENT;
579 }
Heinrich Schuchardtb56e7192021-01-23 06:52:21 +0100580
Simon Glass438e0492023-01-17 10:47:32 -0700581 return ret;
Alexander Grafeb8d82c2016-04-11 16:16:18 +0200582 }
Masahisa Kojimac9611082022-07-22 11:39:10 +0900583 if (efi_link_dev(&disk->header, dev)) {
Masahisa Kojima78761472024-01-19 09:45:45 +0900584 efi_disk_free_diskobj(disk);
Rob Clarka83272f2017-09-13 18:05:31 -0400585
Simon Glass438e0492023-01-17 10:47:32 -0700586 return -EINVAL;
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900587 }
588
589 return 0;
Alexander Grafeb8d82c2016-04-11 16:16:18 +0200590}
591
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200592/**
593 * efi_disk_create_part() - create a handle for a disk partition
Heinrich Schuchardt62036062020-03-19 13:49:34 +0100594 *
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200595 * @dev: udevice (UCLASS_PARTITION)
596 * @agent_handle: handle of the EFI block driver
Alexander Grafe83be452016-03-04 01:10:02 +0100597 *
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900598 * Create an efi_disk object which is associated with @dev.
599 * The type of @dev must be UCLASS_PARTITION.
Heinrich Schuchardt62036062020-03-19 13:49:34 +0100600 *
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200601 * Return: 0 on success, -1 otherwise
Alexander Grafe83be452016-03-04 01:10:02 +0100602 */
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200603static int efi_disk_create_part(struct udevice *dev, efi_handle_t agent_handle)
Alexander Grafe83be452016-03-04 01:10:02 +0100604{
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900605 efi_handle_t parent;
606 struct blk_desc *desc;
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900607 struct disk_part *part_data;
608 struct disk_partition *info;
609 unsigned int part;
610 int diskid;
611 struct efi_handler *handler;
612 struct efi_device_path *dp_parent;
Heinrich Schuchardt6f3de6b2018-01-19 20:24:47 +0100613 struct efi_disk_obj *disk;
Heinrich Schuchardtcde7a362018-02-09 20:55:47 +0100614 efi_status_t ret;
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900615
616 if (dev_tag_get_ptr(dev_get_parent(dev), DM_TAG_EFI, (void **)&parent))
617 return -1;
618
619 desc = dev_get_uclass_plat(dev_get_parent(dev));
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900620 diskid = desc->devnum;
621
622 part_data = dev_get_uclass_plat(dev);
623 part = part_data->partnum;
624 info = &part_data->gpt_part_info;
625
626 ret = efi_search_protocol(parent, &efi_guid_device_path, &handler);
627 if (ret != EFI_SUCCESS)
628 return -1;
629 dp_parent = (struct efi_device_path *)handler->protocol_interface;
630
Masahisa Kojima23ee41f2023-12-25 13:43:54 +0900631 ret = efi_disk_add_dev(parent, dp_parent, desc,
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200632 info, part, &disk, agent_handle);
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900633 if (ret != EFI_SUCCESS) {
634 log_err("Adding partition for %s failed\n", dev->name);
635 return -1;
636 }
Masahisa Kojimac9611082022-07-22 11:39:10 +0900637 if (efi_link_dev(&disk->header, dev)) {
Masahisa Kojima78761472024-01-19 09:45:45 +0900638 efi_disk_free_diskobj(disk);
639
640 /* TODO: closing the parent EFI_BLOCK_IO_PROTOCOL is missing. */
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900641
642 return -1;
643 }
644
645 return 0;
646}
647
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200648/**
649 * efi_disk_probe() - create efi_disk objects for a block device
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900650 *
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200651 * @ctx: event context - driver binding protocol
652 * @event: EV_PM_POST_PROBE event
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900653 *
654 * Create efi_disk objects for partitions as well as a raw disk
655 * which is associated with @dev.
656 * The type of @dev must be UCLASS_BLK.
657 * This function is expected to be called at EV_PM_POST_PROBE.
658 *
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200659 * Return: 0 on success, -1 otherwise
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900660 */
Heinrich Schuchardtda620cf2022-10-06 07:29:41 +0200661int efi_disk_probe(void *ctx, struct event *event)
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900662{
Simon Glass302d4f82016-05-14 14:03:05 -0600663 struct udevice *dev;
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900664 enum uclass_id id;
AKASHI Takahirocdd245a2022-04-19 10:05:13 +0900665 struct blk_desc *desc;
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900666 struct udevice *child;
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200667 struct efi_driver_binding_extended_protocol *db_prot = ctx;
668 efi_handle_t agent_handle = db_prot->bp.driver_binding_handle;
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900669 int ret;
Simon Glass302d4f82016-05-14 14:03:05 -0600670
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900671 dev = event->data.dm.dev;
672 id = device_get_uclass_id(dev);
Simon Glass302d4f82016-05-14 14:03:05 -0600673
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200674 /* We won't support partitions in a partition */
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900675 if (id != UCLASS_BLK)
676 return 0;
677
AKASHI Takahirocdd245a2022-04-19 10:05:13 +0900678 /*
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200679 * Avoid creating duplicated objects now that efi_driver
AKASHI Takahirocdd245a2022-04-19 10:05:13 +0900680 * has already created an efi_disk at this moment.
681 */
682 desc = dev_get_uclass_plat(dev);
Simon Glassfada3f92022-09-17 09:00:09 -0600683 if (desc->uclass_id != UCLASS_EFI_LOADER) {
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200684 ret = efi_disk_create_raw(dev, agent_handle);
AKASHI Takahirocdd245a2022-04-19 10:05:13 +0900685 if (ret)
686 return -1;
687 }
Simon Glass302d4f82016-05-14 14:03:05 -0600688
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900689 device_foreach_child(child, dev) {
Heinrich Schuchardt175b0a92022-10-08 09:11:54 +0200690 ret = efi_disk_create_part(child, agent_handle);
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900691 if (ret)
692 return -1;
Simon Glass302d4f82016-05-14 14:03:05 -0600693 }
Alexander Grafe83be452016-03-04 01:10:02 +0100694
Raymond Mao1fcaf952023-11-10 13:25:37 +0900695 /* only do the boot option management when UEFI sub-system is initialized */
696 if (IS_ENABLED(CONFIG_CMD_BOOTEFI_BOOTMGR) && efi_obj_list_initialized == EFI_SUCCESS) {
697 ret = efi_bootmgr_update_media_device_boot_option();
698 if (ret != EFI_SUCCESS)
699 return -1;
700 }
701
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900702 return 0;
703}
704
Ilias Apalodimasf1db7df2023-06-12 18:35:58 +0300705/**
706 * efi_disk_remove - delete an efi_disk object for a block device or partition
AKASHI Takahiro7cebb752022-04-19 10:05:14 +0900707 *
Ilias Apalodimasf1db7df2023-06-12 18:35:58 +0300708 * @ctx: event context: driver binding protocol
709 * @event: EV_PM_PRE_REMOVE event
AKASHI Takahiro7cebb752022-04-19 10:05:14 +0900710 *
Ilias Apalodimasf1db7df2023-06-12 18:35:58 +0300711 * Delete an efi_disk object which is associated with the UCLASS_BLK or
712 * UCLASS_PARTITION device for which the EV_PM_PRE_REMOVE event is raised.
AKASHI Takahiro7cebb752022-04-19 10:05:14 +0900713 *
Ilias Apalodimasf1db7df2023-06-12 18:35:58 +0300714 * Return: 0 on success, -1 otherwise
AKASHI Takahiro7cebb752022-04-19 10:05:14 +0900715 */
Ilias Apalodimasf1db7df2023-06-12 18:35:58 +0300716int efi_disk_remove(void *ctx, struct event *event)
AKASHI Takahiro7cebb752022-04-19 10:05:14 +0900717{
Ilias Apalodimasf1db7df2023-06-12 18:35:58 +0300718 enum uclass_id id;
719 struct udevice *dev = event->data.dm.dev;
AKASHI Takahiro7cebb752022-04-19 10:05:14 +0900720 efi_handle_t handle;
AKASHI Takahiroaff330a2022-04-19 10:05:15 +0900721 struct blk_desc *desc;
Masahisa Kojima60755702024-01-19 09:45:44 +0900722 struct efi_device_path *dp = NULL;
Ilias Apalodimasf1db7df2023-06-12 18:35:58 +0300723 struct efi_disk_obj *diskobj = NULL;
Masahisa Kojima60755702024-01-19 09:45:44 +0900724 struct efi_simple_file_system_protocol *volume = NULL;
Ilias Apalodimasb09ecf12023-07-24 13:17:36 +0300725 efi_status_t ret;
AKASHI Takahiro7cebb752022-04-19 10:05:14 +0900726
727 if (dev_tag_get_ptr(dev, DM_TAG_EFI, (void **)&handle))
Ilias Apalodimasf1db7df2023-06-12 18:35:58 +0300728 return 0;
AKASHI Takahiro7cebb752022-04-19 10:05:14 +0900729
Ilias Apalodimasf1db7df2023-06-12 18:35:58 +0300730 id = device_get_uclass_id(dev);
731 switch (id) {
732 case UCLASS_BLK:
733 desc = dev_get_uclass_plat(dev);
Masahisa Kojima306cd1e2024-01-19 09:45:46 +0900734 if (desc && desc->uclass_id == UCLASS_EFI_LOADER)
735 /*
736 * EFI application/driver manages the EFI handle,
737 * no need to delete EFI handle.
738 */
739 return 0;
740
741 diskobj = (struct efi_disk_obj *)handle;
Ilias Apalodimasf1db7df2023-06-12 18:35:58 +0300742 break;
743 case UCLASS_PARTITION:
Masahisa Kojima60755702024-01-19 09:45:44 +0900744 diskobj = (struct efi_disk_obj *)handle;
745
746 /* TODO: closing the parent EFI_BLOCK_IO_PROTOCOL is missing. */
747
Ilias Apalodimasf1db7df2023-06-12 18:35:58 +0300748 break;
749 default:
750 return 0;
AKASHI Takahiroaff330a2022-04-19 10:05:15 +0900751 }
AKASHI Takahiro7cebb752022-04-19 10:05:14 +0900752
Masahisa Kojima306cd1e2024-01-19 09:45:46 +0900753 dp = diskobj->dp;
754 volume = diskobj->volume;
Masahisa Kojima60755702024-01-19 09:45:44 +0900755
Ilias Apalodimasb09ecf12023-07-24 13:17:36 +0300756 ret = efi_delete_handle(handle);
757 /* Do not delete DM device if there are still EFI drivers attached. */
758 if (ret != EFI_SUCCESS)
759 return -1;
760
Masahisa Kojima60755702024-01-19 09:45:44 +0900761 efi_free_pool(dp);
762 free(volume);
AKASHI Takahiro7cebb752022-04-19 10:05:14 +0900763 dev_tag_del(dev, DM_TAG_EFI);
764
765 return 0;
Raymond Mao1fcaf952023-11-10 13:25:37 +0900766
767 /*
768 * TODO A flag to distinguish below 2 different scenarios of this
769 * function call is needed:
770 * a) Unplugging of a removable media under U-Boot
771 * b) U-Boot exiting and booting an OS
772 * In case of scenario a), efi_bootmgr_update_media_device_boot_option()
773 * needs to be invoked here to update the boot options and remove the
774 * unnecessary ones.
775 */
776
AKASHI Takahiro7cebb752022-04-19 10:05:14 +0900777}
778
Masahisa Kojimac5ff0a02022-09-12 17:33:50 +0900779/**
780 * efi_disk_get_device_name() - get U-Boot device name associated with EFI handle
781 *
782 * @handle: pointer to the EFI handle
783 * @buf: pointer to the buffer to store the string
784 * @size: size of buffer
785 * Return: status code
786 */
787efi_status_t efi_disk_get_device_name(const efi_handle_t handle, char *buf, int size)
788{
789 int count;
790 int diskid;
791 enum uclass_id id;
792 unsigned int part;
793 struct udevice *dev;
794 struct blk_desc *desc;
795 const char *if_typename;
796 bool is_partition = false;
797 struct disk_part *part_data;
798
799 if (!handle || !buf || !size)
800 return EFI_INVALID_PARAMETER;
801
802 dev = handle->dev;
803 id = device_get_uclass_id(dev);
804 if (id == UCLASS_BLK) {
805 desc = dev_get_uclass_plat(dev);
806 } else if (id == UCLASS_PARTITION) {
807 desc = dev_get_uclass_plat(dev_get_parent(dev));
808 is_partition = true;
809 } else {
810 return EFI_INVALID_PARAMETER;
811 }
Simon Glassfada3f92022-09-17 09:00:09 -0600812 if_typename = blk_get_uclass_name(desc->uclass_id);
Masahisa Kojimac5ff0a02022-09-12 17:33:50 +0900813 diskid = desc->devnum;
814
815 if (is_partition) {
816 part_data = dev_get_uclass_plat(dev);
817 part = part_data->partnum;
Heinrich Schuchardt217cb202022-10-07 12:55:16 +0200818 count = snprintf(buf, size, "%s %d:%u", if_typename, diskid,
819 part);
Masahisa Kojimac5ff0a02022-09-12 17:33:50 +0900820 } else {
821 count = snprintf(buf, size, "%s %d", if_typename, diskid);
822 }
823
824 if (count < 0 || (count + 1) > size)
825 return EFI_INVALID_PARAMETER;
826
827 return EFI_SUCCESS;
828}
Tom Rini586c22b2022-09-19 13:19:39 -0400829
830/**
Heinrich Schuchardta02228f2022-08-31 16:37:35 +0200831 * efi_disks_register() - ensure all block devices are available in UEFI
832 *
833 * The function probes all block devices. As we store UEFI variables on the
834 * EFI system partition this function has to be called before enabling
835 * variable services.
836 */
837efi_status_t efi_disks_register(void)
838{
839 struct udevice *dev;
840
841 uclass_foreach_dev_probe(UCLASS_BLK, dev) {
842 }
843
844 return EFI_SUCCESS;
845}