blob: 1d700b2a6be34d6d5e2159adf0d55148c915b3a1 [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Graf2a22d052016-03-04 01:10:02 +01002/*
3 * EFI application disk support
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Graf2a22d052016-03-04 01:10:02 +01006 */
7
Heinrich Schuchardtaf457cf2020-07-17 20:33:05 +02008#define LOG_CATEGORY LOGC_EFI
9
Alexander Graf2a22d052016-03-04 01:10:02 +010010#include <common.h>
Simon Glass6dd9faf2016-05-01 13:52:32 -060011#include <blk.h>
Simon Glass487d7562016-05-14 14:03:05 -060012#include <dm.h>
AKASHI Takahiroa9bf0242022-04-19 10:05:12 +090013#include <dm/device-internal.h>
14#include <dm/tag.h>
15#include <event.h>
Alexander Graf2a22d052016-03-04 01:10:02 +010016#include <efi_loader.h>
AKASHI Takahiro86740062019-10-07 14:59:38 +090017#include <fs.h>
Heinrich Schuchardtaf457cf2020-07-17 20:33:05 +020018#include <log.h>
Alexander Graf2a22d052016-03-04 01:10:02 +010019#include <part.h>
20#include <malloc.h>
21
Heinrich Schuchardt11078bb2020-03-19 15:16:31 +010022struct efi_system_partition efi_system_partition;
23
Heinrich Schuchardtdec88e42019-04-20 07:39:11 +020024const efi_guid_t efi_block_io_guid = EFI_BLOCK_IO_PROTOCOL_GUID;
Heinrich Schuchardtb9b0ea32021-02-02 17:53:14 +010025const efi_guid_t efi_system_partition_guid = PARTITION_SYSTEM_GUID;
Alexander Graf2a22d052016-03-04 01:10:02 +010026
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +020027/**
28 * struct efi_disk_obj - EFI disk object
29 *
30 * @header: EFI object header
31 * @ops: EFI disk I/O protocol interface
32 * @ifname: interface name for block device
33 * @dev_index: device index of block device
34 * @media: block I/O media information
35 * @dp: device path to the block device
36 * @part: partition
37 * @volume: simple file system protocol of the partition
AKASHI Takahirod97e98c2022-04-19 10:05:17 +090038 * @dev: associated DM device
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +020039 */
Alexander Graf2a22d052016-03-04 01:10:02 +010040struct efi_disk_obj {
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +020041 struct efi_object header;
Alexander Graf2a22d052016-03-04 01:10:02 +010042 struct efi_block_io ops;
Alexander Graf2a22d052016-03-04 01:10:02 +010043 const char *ifname;
Alexander Graf2a22d052016-03-04 01:10:02 +010044 int dev_index;
Alexander Graf2a22d052016-03-04 01:10:02 +010045 struct efi_block_io_media media;
Rob Clark884bcf62017-09-13 18:05:31 -040046 struct efi_device_path *dp;
Rob Clark884bcf62017-09-13 18:05:31 -040047 unsigned int part;
Rob Clark2a920802017-09-13 18:05:34 -040048 struct efi_simple_file_system_protocol *volume;
AKASHI Takahirod97e98c2022-04-19 10:05:17 +090049 struct udevice *dev; /* TODO: move it to efi_object */
Alexander Graf2a22d052016-03-04 01:10:02 +010050};
51
Heinrich Schuchardtcda9b352019-09-05 20:13:46 +020052/**
53 * efi_disk_reset() - reset block device
54 *
55 * This function implements the Reset service of the EFI_BLOCK_IO_PROTOCOL.
56 *
57 * As U-Boot's block devices do not have a reset function simply return
58 * EFI_SUCCESS.
59 *
60 * See the Unified Extensible Firmware Interface (UEFI) specification for
61 * details.
62 *
63 * @this: pointer to the BLOCK_IO_PROTOCOL
64 * @extended_verification: extended verification
65 * Return: status code
66 */
Alexander Graf2a22d052016-03-04 01:10:02 +010067static efi_status_t EFIAPI efi_disk_reset(struct efi_block_io *this,
68 char extended_verification)
69{
70 EFI_ENTRY("%p, %x", this, extended_verification);
Heinrich Schuchardtcda9b352019-09-05 20:13:46 +020071 return EFI_EXIT(EFI_SUCCESS);
Alexander Graf2a22d052016-03-04 01:10:02 +010072}
73
AKASHI Takahiro05f391e2022-05-12 11:29:01 +090074/**
75 * efi_disk_is_removable() - check if the device is removable media
76 * @handle: efi object handle;
77 *
78 * Examine the device and determine if the device is a local block device
79 * and removable media.
80 *
81 * Return: true if removable, false otherwise
82 */
83bool efi_disk_is_removable(efi_handle_t handle)
84{
85 struct efi_handler *handler;
86 struct efi_block_io *io;
87 efi_status_t ret;
88
89 ret = efi_search_protocol(handle, &efi_block_io_guid, &handler);
90 if (ret != EFI_SUCCESS)
91 return false;
92
93 io = handler->protocol_interface;
94
95 if (!io || !io->media)
96 return false;
97
98 return (bool)io->media->removable_media;
99}
100
Alexander Graf2a22d052016-03-04 01:10:02 +0100101enum efi_disk_direction {
102 EFI_DISK_READ,
103 EFI_DISK_WRITE,
104};
105
Heinrich Schuchardta80a2322017-08-26 22:33:13 +0200106static efi_status_t efi_disk_rw_blocks(struct efi_block_io *this,
Alexander Graf2a22d052016-03-04 01:10:02 +0100107 u32 media_id, u64 lba, unsigned long buffer_size,
108 void *buffer, enum efi_disk_direction direction)
109{
110 struct efi_disk_obj *diskobj;
Alexander Graf2a22d052016-03-04 01:10:02 +0100111 int blksz;
112 int blocks;
113 unsigned long n;
114
Alexander Graf2a22d052016-03-04 01:10:02 +0100115 diskobj = container_of(this, struct efi_disk_obj, ops);
AKASHI Takahirod97e98c2022-04-19 10:05:17 +0900116 blksz = diskobj->media.block_size;
Alexander Graf2a22d052016-03-04 01:10:02 +0100117 blocks = buffer_size / blksz;
118
Heinrich Schuchardt9d3f3392019-09-05 19:43:17 +0200119 EFI_PRINT("blocks=%x lba=%llx blksz=%x dir=%d\n",
120 blocks, lba, blksz, direction);
Alexander Graf2a22d052016-03-04 01:10:02 +0100121
122 /* We only support full block access */
123 if (buffer_size & (blksz - 1))
Heinrich Schuchardtf59f0822019-09-05 19:31:23 +0200124 return EFI_BAD_BUFFER_SIZE;
Alexander Graf2a22d052016-03-04 01:10:02 +0100125
AKASHI Takahiro6c640422022-04-28 13:49:16 +0900126 if (CONFIG_IS_ENABLED(PARTITIONS) &&
127 device_get_uclass_id(diskobj->dev) == UCLASS_PARTITION) {
128 if (direction == EFI_DISK_READ)
129 n = dev_read(diskobj->dev, lba, blocks, buffer);
130 else
131 n = dev_write(diskobj->dev, lba, blocks, buffer);
132 } else {
133 /* dev is a block device (UCLASS_BLK) */
134 struct blk_desc *desc;
AKASHI Takahirod97e98c2022-04-19 10:05:17 +0900135
AKASHI Takahiro6c640422022-04-28 13:49:16 +0900136 desc = dev_get_uclass_plat(diskobj->dev);
137 if (direction == EFI_DISK_READ)
138 n = blk_dread(desc, lba, blocks, buffer);
139 else
140 n = blk_dwrite(desc, lba, blocks, buffer);
141 }
Alexander Graf2a22d052016-03-04 01:10:02 +0100142
143 /* We don't do interrupts, so check for timers cooperatively */
144 efi_timer_check();
145
Heinrich Schuchardt9d3f3392019-09-05 19:43:17 +0200146 EFI_PRINT("n=%lx blocks=%x\n", n, blocks);
Alexander Grafedcef3b2016-06-02 11:38:27 +0200147
Alexander Graf2a22d052016-03-04 01:10:02 +0100148 if (n != blocks)
Rob Clark33049902017-07-25 20:28:29 -0400149 return EFI_DEVICE_ERROR;
Alexander Graf2a22d052016-03-04 01:10:02 +0100150
Rob Clark33049902017-07-25 20:28:29 -0400151 return EFI_SUCCESS;
Alexander Graf2a22d052016-03-04 01:10:02 +0100152}
153
Heinrich Schuchardt55976b72020-04-10 17:10:34 +0200154/**
155 * efi_disk_read_blocks() - reads blocks from device
156 *
157 * This function implements the ReadBlocks service of the EFI_BLOCK_IO_PROTOCOL.
158 *
159 * See the Unified Extensible Firmware Interface (UEFI) specification for
160 * details.
161 *
162 * @this: pointer to the BLOCK_IO_PROTOCOL
163 * @media_id: id of the medium to be read from
164 * @lba: starting logical block for reading
165 * @buffer_size: size of the read buffer
166 * @buffer: pointer to the destination buffer
167 * Return: status code
168 */
Simon Glasse2754582016-09-25 15:27:32 -0600169static efi_status_t EFIAPI efi_disk_read_blocks(struct efi_block_io *this,
Heinrich Schuchardt4f948652018-01-19 20:24:48 +0100170 u32 media_id, u64 lba, efi_uintn_t buffer_size,
Alexander Graf2a22d052016-03-04 01:10:02 +0100171 void *buffer)
172{
Alexander Graf51735ae2016-05-11 18:25:48 +0200173 void *real_buffer = buffer;
174 efi_status_t r;
175
Heinrich Schuchardtf59f0822019-09-05 19:31:23 +0200176 if (!this)
177 return EFI_INVALID_PARAMETER;
178 /* TODO: check for media changes */
179 if (media_id != this->media->media_id)
180 return EFI_MEDIA_CHANGED;
181 if (!this->media->media_present)
182 return EFI_NO_MEDIA;
Heinrich Schuchardt688e8822021-01-23 19:33:11 +0100183 /* media->io_align is a power of 2 or 0 */
184 if (this->media->io_align &&
185 (uintptr_t)buffer & (this->media->io_align - 1))
Heinrich Schuchardtf59f0822019-09-05 19:31:23 +0200186 return EFI_INVALID_PARAMETER;
187 if (lba * this->media->block_size + buffer_size >
Jesper Schmitz Mouridsene67beff2021-02-09 17:17:17 +0100188 (this->media->last_block + 1) * this->media->block_size)
Heinrich Schuchardtf59f0822019-09-05 19:31:23 +0200189 return EFI_INVALID_PARAMETER;
190
Alexander Graf51735ae2016-05-11 18:25:48 +0200191#ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
192 if (buffer_size > EFI_LOADER_BOUNCE_BUFFER_SIZE) {
193 r = efi_disk_read_blocks(this, media_id, lba,
194 EFI_LOADER_BOUNCE_BUFFER_SIZE, buffer);
195 if (r != EFI_SUCCESS)
196 return r;
197 return efi_disk_read_blocks(this, media_id, lba +
198 EFI_LOADER_BOUNCE_BUFFER_SIZE / this->media->block_size,
199 buffer_size - EFI_LOADER_BOUNCE_BUFFER_SIZE,
200 buffer + EFI_LOADER_BOUNCE_BUFFER_SIZE);
201 }
202
203 real_buffer = efi_bounce_buffer;
204#endif
205
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900206 EFI_ENTRY("%p, %x, %llx, %zx, %p", this, media_id, lba,
Alexander Graf51735ae2016-05-11 18:25:48 +0200207 buffer_size, buffer);
208
209 r = efi_disk_rw_blocks(this, media_id, lba, buffer_size, real_buffer,
210 EFI_DISK_READ);
211
212 /* Copy from bounce buffer to real buffer if necessary */
213 if ((r == EFI_SUCCESS) && (real_buffer != buffer))
214 memcpy(buffer, real_buffer, buffer_size);
215
216 return EFI_EXIT(r);
Alexander Graf2a22d052016-03-04 01:10:02 +0100217}
218
Heinrich Schuchardt55976b72020-04-10 17:10:34 +0200219/**
220 * efi_disk_write_blocks() - writes blocks to device
221 *
222 * This function implements the WriteBlocks service of the
223 * EFI_BLOCK_IO_PROTOCOL.
224 *
225 * See the Unified Extensible Firmware Interface (UEFI) specification for
226 * details.
227 *
228 * @this: pointer to the BLOCK_IO_PROTOCOL
229 * @media_id: id of the medium to be written to
230 * @lba: starting logical block for writing
231 * @buffer_size: size of the write buffer
232 * @buffer: pointer to the source buffer
233 * Return: status code
234 */
Simon Glasse2754582016-09-25 15:27:32 -0600235static efi_status_t EFIAPI efi_disk_write_blocks(struct efi_block_io *this,
Heinrich Schuchardt4f948652018-01-19 20:24:48 +0100236 u32 media_id, u64 lba, efi_uintn_t buffer_size,
Alexander Graf2a22d052016-03-04 01:10:02 +0100237 void *buffer)
238{
Alexander Graf51735ae2016-05-11 18:25:48 +0200239 void *real_buffer = buffer;
240 efi_status_t r;
241
Heinrich Schuchardtf59f0822019-09-05 19:31:23 +0200242 if (!this)
243 return EFI_INVALID_PARAMETER;
244 if (this->media->read_only)
245 return EFI_WRITE_PROTECTED;
246 /* TODO: check for media changes */
247 if (media_id != this->media->media_id)
248 return EFI_MEDIA_CHANGED;
249 if (!this->media->media_present)
250 return EFI_NO_MEDIA;
Heinrich Schuchardt688e8822021-01-23 19:33:11 +0100251 /* media->io_align is a power of 2 or 0 */
252 if (this->media->io_align &&
253 (uintptr_t)buffer & (this->media->io_align - 1))
Heinrich Schuchardtf59f0822019-09-05 19:31:23 +0200254 return EFI_INVALID_PARAMETER;
255 if (lba * this->media->block_size + buffer_size >
Jesper Schmitz Mouridsene67beff2021-02-09 17:17:17 +0100256 (this->media->last_block + 1) * this->media->block_size)
Heinrich Schuchardtf59f0822019-09-05 19:31:23 +0200257 return EFI_INVALID_PARAMETER;
258
Alexander Graf51735ae2016-05-11 18:25:48 +0200259#ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
260 if (buffer_size > EFI_LOADER_BOUNCE_BUFFER_SIZE) {
261 r = efi_disk_write_blocks(this, media_id, lba,
262 EFI_LOADER_BOUNCE_BUFFER_SIZE, buffer);
263 if (r != EFI_SUCCESS)
264 return r;
265 return efi_disk_write_blocks(this, media_id, lba +
266 EFI_LOADER_BOUNCE_BUFFER_SIZE / this->media->block_size,
267 buffer_size - EFI_LOADER_BOUNCE_BUFFER_SIZE,
268 buffer + EFI_LOADER_BOUNCE_BUFFER_SIZE);
269 }
270
271 real_buffer = efi_bounce_buffer;
272#endif
273
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900274 EFI_ENTRY("%p, %x, %llx, %zx, %p", this, media_id, lba,
Alexander Graf51735ae2016-05-11 18:25:48 +0200275 buffer_size, buffer);
276
277 /* Populate bounce buffer if necessary */
278 if (real_buffer != buffer)
279 memcpy(real_buffer, buffer, buffer_size);
280
281 r = efi_disk_rw_blocks(this, media_id, lba, buffer_size, real_buffer,
282 EFI_DISK_WRITE);
283
284 return EFI_EXIT(r);
Alexander Graf2a22d052016-03-04 01:10:02 +0100285}
286
Heinrich Schuchardt55976b72020-04-10 17:10:34 +0200287/**
288 * efi_disk_flush_blocks() - flushes modified data to the device
289 *
290 * This function implements the FlushBlocks service of the
291 * EFI_BLOCK_IO_PROTOCOL.
292 *
293 * As we always write synchronously nothing is done here.
294 *
295 * See the Unified Extensible Firmware Interface (UEFI) specification for
296 * details.
297 *
298 * @this: pointer to the BLOCK_IO_PROTOCOL
299 * Return: status code
300 */
Alexander Graf2a22d052016-03-04 01:10:02 +0100301static efi_status_t EFIAPI efi_disk_flush_blocks(struct efi_block_io *this)
302{
Alexander Graf2a22d052016-03-04 01:10:02 +0100303 EFI_ENTRY("%p", this);
304 return EFI_EXIT(EFI_SUCCESS);
305}
306
307static const struct efi_block_io block_io_disk_template = {
308 .reset = &efi_disk_reset,
309 .read_blocks = &efi_disk_read_blocks,
310 .write_blocks = &efi_disk_write_blocks,
311 .flush_blocks = &efi_disk_flush_blocks,
312};
313
Heinrich Schuchardt47a95962020-03-19 13:49:34 +0100314/**
315 * efi_fs_from_path() - retrieve simple file system protocol
316 *
317 * Gets the simple file system protocol for a file device path.
Heinrich Schuchardt110d80a2018-01-19 20:24:39 +0100318 *
319 * The full path provided is split into device part and into a file
320 * part. The device part is used to find the handle on which the
321 * simple file system protocol is installed.
322 *
Heinrich Schuchardt47a95962020-03-19 13:49:34 +0100323 * @full_path: device path including device and file
324 * Return: simple file system protocol
Rob Clark2a920802017-09-13 18:05:34 -0400325 */
326struct efi_simple_file_system_protocol *
Heinrich Schuchardt110d80a2018-01-19 20:24:39 +0100327efi_fs_from_path(struct efi_device_path *full_path)
Rob Clark2a920802017-09-13 18:05:34 -0400328{
329 struct efi_object *efiobj;
Heinrich Schuchardt110d80a2018-01-19 20:24:39 +0100330 struct efi_handler *handler;
331 struct efi_device_path *device_path;
332 struct efi_device_path *file_path;
333 efi_status_t ret;
Rob Clark2a920802017-09-13 18:05:34 -0400334
Heinrich Schuchardt110d80a2018-01-19 20:24:39 +0100335 /* Split the path into a device part and a file part */
336 ret = efi_dp_split_file_path(full_path, &device_path, &file_path);
337 if (ret != EFI_SUCCESS)
338 return NULL;
339 efi_free_pool(file_path);
340
341 /* Get the EFI object for the partition */
Heinrich Schuchardte46ef1d2022-03-19 06:35:43 +0100342 efiobj = efi_dp_find_obj(device_path, NULL, NULL);
Heinrich Schuchardt110d80a2018-01-19 20:24:39 +0100343 efi_free_pool(device_path);
Rob Clark2a920802017-09-13 18:05:34 -0400344 if (!efiobj)
345 return NULL;
346
Heinrich Schuchardt110d80a2018-01-19 20:24:39 +0100347 /* Find the simple file system protocol */
348 ret = efi_search_protocol(efiobj, &efi_simple_file_system_protocol_guid,
349 &handler);
350 if (ret != EFI_SUCCESS)
351 return NULL;
Rob Clark2a920802017-09-13 18:05:34 -0400352
Heinrich Schuchardt110d80a2018-01-19 20:24:39 +0100353 /* Return the simple file system protocol for the partition */
354 return handler->protocol_interface;
Rob Clark2a920802017-09-13 18:05:34 -0400355}
356
AKASHI Takahiro86740062019-10-07 14:59:38 +0900357/**
358 * efi_fs_exists() - check if a partition bears a file system
359 *
360 * @desc: block device descriptor
361 * @part: partition number
362 * Return: 1 if a file system exists on the partition
363 * 0 otherwise
364 */
365static int efi_fs_exists(struct blk_desc *desc, int part)
366{
367 if (fs_set_blk_dev_with_part(desc, part))
368 return 0;
369
370 if (fs_get_type() == FS_TYPE_ANY)
371 return 0;
372
373 fs_close();
374
375 return 1;
376}
377
Heinrich Schuchardt55976b72020-04-10 17:10:34 +0200378/**
Heinrich Schuchardt47a95962020-03-19 13:49:34 +0100379 * efi_disk_add_dev() - create a handle for a partition or disk
Heinrich Schuchardt93945f22017-10-26 19:25:46 +0200380 *
Heinrich Schuchardt47a95962020-03-19 13:49:34 +0100381 * @parent: parent handle
382 * @dp_parent: parent device path
383 * @if_typename: interface name for block device
384 * @desc: internal block device
385 * @dev_index: device index for block device
Heinrich Schuchardt8d0949b2021-01-23 06:52:21 +0100386 * @part_info: partition info
Heinrich Schuchardt55976b72020-04-10 17:10:34 +0200387 * @part: partition
388 * @disk: pointer to receive the created handle
Heinrich Schuchardt47a95962020-03-19 13:49:34 +0100389 * Return: disk object
Heinrich Schuchardt93945f22017-10-26 19:25:46 +0200390 */
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100391static efi_status_t efi_disk_add_dev(
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100392 efi_handle_t parent,
393 struct efi_device_path *dp_parent,
394 const char *if_typename,
395 struct blk_desc *desc,
396 int dev_index,
Heinrich Schuchardt8d0949b2021-01-23 06:52:21 +0100397 struct disk_partition *part_info,
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100398 unsigned int part,
399 struct efi_disk_obj **disk)
Alexander Graf4a12a972016-04-11 16:16:17 +0200400{
401 struct efi_disk_obj *diskobj;
Heinrich Schuchardt0a87e052020-05-21 09:22:06 +0200402 struct efi_object *handle;
Heinrich Schuchardtb9b0ea32021-02-02 17:53:14 +0100403 const efi_guid_t *guid = NULL;
Heinrich Schuchardt4b9f7aa2017-11-26 14:05:12 +0100404 efi_status_t ret;
Alexander Graf4a12a972016-04-11 16:16:17 +0200405
Alexander Graf0812d1a2016-08-05 14:51:47 +0200406 /* Don't add empty devices */
407 if (!desc->lba)
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100408 return EFI_NOT_READY;
Alexander Graf0812d1a2016-08-05 14:51:47 +0200409
Rob Clark884bcf62017-09-13 18:05:31 -0400410 diskobj = calloc(1, sizeof(*diskobj));
Heinrich Schuchardt4b9f7aa2017-11-26 14:05:12 +0100411 if (!diskobj)
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100412 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt4b9f7aa2017-11-26 14:05:12 +0100413
414 /* Hook up to the device list */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200415 efi_add_handle(&diskobj->header);
Alexander Graf4a12a972016-04-11 16:16:17 +0200416
417 /* Fill in object data */
Heinrich Schuchardt8d0949b2021-01-23 06:52:21 +0100418 if (part_info) {
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100419 struct efi_device_path *node = efi_dp_part_node(desc, part);
Heinrich Schuchardt26448512020-01-10 12:36:01 +0100420 struct efi_handler *handler;
421 void *protocol_interface;
422
423 /* Parent must expose EFI_BLOCK_IO_PROTOCOL */
424 ret = efi_search_protocol(parent, &efi_block_io_guid, &handler);
425 if (ret != EFI_SUCCESS)
426 goto error;
427
428 /*
429 * Link the partition (child controller) to the block device
430 * (controller).
431 */
432 ret = efi_protocol_open(handler, &protocol_interface, NULL,
433 &diskobj->header,
434 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER);
435 if (ret != EFI_SUCCESS)
436 goto error;
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100437
438 diskobj->dp = efi_dp_append_node(dp_parent, node);
439 efi_free_pool(node);
Heinrich Schuchardt8d0949b2021-01-23 06:52:21 +0100440 diskobj->media.last_block = part_info->size - 1;
Heinrich Schuchardtb9b0ea32021-02-02 17:53:14 +0100441 if (part_info->bootable & PART_EFI_SYSTEM_PARTITION)
442 guid = &efi_system_partition_guid;
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100443 } else {
444 diskobj->dp = efi_dp_from_part(desc, part);
Heinrich Schuchardt8d0949b2021-01-23 06:52:21 +0100445 diskobj->media.last_block = desc->lba - 1;
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100446 }
Rob Clark884bcf62017-09-13 18:05:31 -0400447 diskobj->part = part;
Heinrich Schuchardt0a87e052020-05-21 09:22:06 +0200448
449 /*
450 * Install the device path and the block IO protocol.
451 *
452 * InstallMultipleProtocolInterfaces() checks if the device path is
453 * already installed on an other handle and returns EFI_ALREADY_STARTED
454 * in this case.
455 */
456 handle = &diskobj->header;
457 ret = EFI_CALL(efi_install_multiple_protocol_interfaces(
458 &handle, &efi_guid_device_path, diskobj->dp,
Heinrich Schuchardtb9b0ea32021-02-02 17:53:14 +0100459 &efi_block_io_guid, &diskobj->ops,
460 guid, NULL, NULL));
Heinrich Schuchardt4b9f7aa2017-11-26 14:05:12 +0100461 if (ret != EFI_SUCCESS)
Heinrich Schuchardtcd9a26b2021-11-20 13:56:02 +0100462 goto error;
Heinrich Schuchardt0a87e052020-05-21 09:22:06 +0200463
464 /*
465 * On partitions or whole disks without partitions install the
466 * simple file system protocol if a file system is available.
467 */
AKASHI Takahiro89cb6a52019-10-07 14:59:39 +0900468 if ((part || desc->part_type == PART_TYPE_UNKNOWN) &&
469 efi_fs_exists(desc, part)) {
Rob Clark2a920802017-09-13 18:05:34 -0400470 diskobj->volume = efi_simple_file_system(desc, part,
471 diskobj->dp);
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200472 ret = efi_add_protocol(&diskobj->header,
Heinrich Schuchardt4b9f7aa2017-11-26 14:05:12 +0100473 &efi_simple_file_system_protocol_guid,
Heinrich Schuchardt22de1de2018-01-19 20:24:38 +0100474 diskobj->volume);
Heinrich Schuchardt4b9f7aa2017-11-26 14:05:12 +0100475 if (ret != EFI_SUCCESS)
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100476 return ret;
Rob Clark2a920802017-09-13 18:05:34 -0400477 }
Alexander Graf4a12a972016-04-11 16:16:17 +0200478 diskobj->ops = block_io_disk_template;
Simon Glass487d7562016-05-14 14:03:05 -0600479 diskobj->ifname = if_typename;
Alexander Graf4a12a972016-04-11 16:16:17 +0200480 diskobj->dev_index = dev_index;
481
482 /* Fill in EFI IO Media info (for read/write callbacks) */
483 diskobj->media.removable_media = desc->removable;
484 diskobj->media.media_present = 1;
Heinrich Schuchardtf59f0822019-09-05 19:31:23 +0200485 /*
486 * MediaID is just an arbitrary counter.
487 * We have to change it if the medium is removed or changed.
488 */
489 diskobj->media.media_id = 1;
Alexander Graf4a12a972016-04-11 16:16:17 +0200490 diskobj->media.block_size = desc->blksz;
491 diskobj->media.io_align = desc->blksz;
Heinrich Schuchardt9f888962020-03-19 15:45:52 +0100492 if (part)
Emmanuel Vadot5f770832017-12-11 19:22:33 +0100493 diskobj->media.logical_partition = 1;
Alexander Graf4a12a972016-04-11 16:16:17 +0200494 diskobj->ops.media = &diskobj->media;
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100495 if (disk)
496 *disk = diskobj;
Heinrich Schuchardt11078bb2020-03-19 15:16:31 +0100497
Heinrich Schuchardt8d0949b2021-01-23 06:52:21 +0100498 EFI_PRINT("BlockIO: part %u, present %d, logical %d, removable %d"
Paul Barbieri7a85f322022-06-30 07:02:04 -0400499 ", last_block %llu\n",
Heinrich Schuchardt8d0949b2021-01-23 06:52:21 +0100500 diskobj->part,
501 diskobj->media.media_present,
502 diskobj->media.logical_partition,
503 diskobj->media.removable_media,
Heinrich Schuchardt8d0949b2021-01-23 06:52:21 +0100504 diskobj->media.last_block);
505
Heinrich Schuchardt11078bb2020-03-19 15:16:31 +0100506 /* Store first EFI system partition */
507 if (part && !efi_system_partition.if_type) {
Heinrich Schuchardtb9b0ea32021-02-02 17:53:14 +0100508 if (part_info->bootable & PART_EFI_SYSTEM_PARTITION) {
Heinrich Schuchardt11078bb2020-03-19 15:16:31 +0100509 efi_system_partition.if_type = desc->if_type;
510 efi_system_partition.devnum = desc->devnum;
511 efi_system_partition.part = part;
Heinrich Schuchardt3dca77b2021-05-25 18:00:13 +0200512 EFI_PRINT("EFI system partition: %s %x:%x\n",
Heinrich Schuchardt11078bb2020-03-19 15:16:31 +0100513 blk_get_if_type_name(desc->if_type),
514 desc->devnum, part);
515 }
516 }
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100517 return EFI_SUCCESS;
Heinrich Schuchardt26448512020-01-10 12:36:01 +0100518error:
519 efi_delete_handle(&diskobj->header);
520 return ret;
Alexander Graf4a12a972016-04-11 16:16:17 +0200521}
522
AKASHI Takahiroa9bf0242022-04-19 10:05:12 +0900523/*
524 * Create a handle for a whole raw disk
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100525 *
AKASHI Takahiroa9bf0242022-04-19 10:05:12 +0900526 * @dev uclass device (UCLASS_BLK)
Heinrich Schuchardt47a95962020-03-19 13:49:34 +0100527 *
AKASHI Takahiroa9bf0242022-04-19 10:05:12 +0900528 * Create an efi_disk object which is associated with @dev.
529 * The type of @dev must be UCLASS_BLK.
530 *
531 * @return 0 on success, -1 otherwise
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100532 */
AKASHI Takahiroa9bf0242022-04-19 10:05:12 +0900533static int efi_disk_create_raw(struct udevice *dev)
Alexander Graf2a22d052016-03-04 01:10:02 +0100534{
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100535 struct efi_disk_obj *disk;
AKASHI Takahiroa9bf0242022-04-19 10:05:12 +0900536 struct blk_desc *desc;
537 const char *if_typename;
538 int diskid;
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100539 efi_status_t ret;
Simon Glass487d7562016-05-14 14:03:05 -0600540
AKASHI Takahiroa9bf0242022-04-19 10:05:12 +0900541 desc = dev_get_uclass_plat(dev);
542 if_typename = blk_get_if_type_name(desc->if_type);
543 diskid = desc->devnum;
Simon Glass487d7562016-05-14 14:03:05 -0600544
AKASHI Takahiroa9bf0242022-04-19 10:05:12 +0900545 ret = efi_disk_add_dev(NULL, NULL, if_typename, desc,
546 diskid, NULL, 0, &disk);
547 if (ret != EFI_SUCCESS) {
548 if (ret == EFI_NOT_READY)
Heinrich Schuchardtaf457cf2020-07-17 20:33:05 +0200549 log_notice("Disk %s not ready\n", dev->name);
AKASHI Takahiroa9bf0242022-04-19 10:05:12 +0900550 else
551 log_err("Adding disk for %s failed\n", dev->name);
Simon Glass487d7562016-05-14 14:03:05 -0600552
AKASHI Takahiroa9bf0242022-04-19 10:05:12 +0900553 return -1;
554 }
AKASHI Takahirod97e98c2022-04-19 10:05:17 +0900555 disk->dev = dev;
AKASHI Takahiroa9bf0242022-04-19 10:05:12 +0900556 if (dev_tag_set_ptr(dev, DM_TAG_EFI, &disk->header)) {
557 efi_free_pool(disk->dp);
558 efi_delete_handle(&disk->header);
559
560 return -1;
Simon Glass487d7562016-05-14 14:03:05 -0600561 }
Alexander Graf2a22d052016-03-04 01:10:02 +0100562
AKASHI Takahiroa9bf0242022-04-19 10:05:12 +0900563 return 0;
564}
565
566/*
567 * Create a handle for a disk partition
568 *
569 * @dev uclass device (UCLASS_PARTITION)
570 *
571 * Create an efi_disk object which is associated with @dev.
572 * The type of @dev must be UCLASS_PARTITION.
573 *
574 * @return 0 on success, -1 otherwise
575 */
576static int efi_disk_create_part(struct udevice *dev)
577{
578 efi_handle_t parent;
579 struct blk_desc *desc;
580 const char *if_typename;
581 struct disk_part *part_data;
582 struct disk_partition *info;
583 unsigned int part;
584 int diskid;
585 struct efi_handler *handler;
586 struct efi_device_path *dp_parent;
587 struct efi_disk_obj *disk;
588 efi_status_t ret;
589
590 if (dev_tag_get_ptr(dev_get_parent(dev), DM_TAG_EFI, (void **)&parent))
591 return -1;
592
593 desc = dev_get_uclass_plat(dev_get_parent(dev));
594 if_typename = blk_get_if_type_name(desc->if_type);
595 diskid = desc->devnum;
596
597 part_data = dev_get_uclass_plat(dev);
598 part = part_data->partnum;
599 info = &part_data->gpt_part_info;
600
601 ret = efi_search_protocol(parent, &efi_guid_device_path, &handler);
602 if (ret != EFI_SUCCESS)
603 return -1;
604 dp_parent = (struct efi_device_path *)handler->protocol_interface;
605
606 ret = efi_disk_add_dev(parent, dp_parent, if_typename, desc, diskid,
607 info, part, &disk);
608 if (ret != EFI_SUCCESS) {
609 log_err("Adding partition for %s failed\n", dev->name);
610 return -1;
611 }
AKASHI Takahirod97e98c2022-04-19 10:05:17 +0900612 disk->dev = dev;
AKASHI Takahiroa9bf0242022-04-19 10:05:12 +0900613 if (dev_tag_set_ptr(dev, DM_TAG_EFI, &disk->header)) {
614 efi_free_pool(disk->dp);
615 efi_delete_handle(&disk->header);
616
617 return -1;
618 }
619
620 return 0;
621}
622
623/*
624 * Create efi_disk objects for a block device
625 *
626 * @dev uclass device (UCLASS_BLK)
627 *
628 * Create efi_disk objects for partitions as well as a raw disk
629 * which is associated with @dev.
630 * The type of @dev must be UCLASS_BLK.
631 * This function is expected to be called at EV_PM_POST_PROBE.
632 *
633 * @return 0 on success, -1 otherwise
634 */
635static int efi_disk_probe(void *ctx, struct event *event)
636{
637 struct udevice *dev;
638 enum uclass_id id;
AKASHI Takahiro3c809df2022-04-19 10:05:13 +0900639 struct blk_desc *desc;
AKASHI Takahiroa9bf0242022-04-19 10:05:12 +0900640 struct udevice *child;
641 int ret;
642
643 dev = event->data.dm.dev;
644 id = device_get_uclass_id(dev);
645
646 /* TODO: We won't support partitions in a partition */
647 if (id != UCLASS_BLK)
648 return 0;
649
AKASHI Takahiro3c809df2022-04-19 10:05:13 +0900650 /*
651 * avoid creating duplicated objects now that efi_driver
652 * has already created an efi_disk at this moment.
653 */
654 desc = dev_get_uclass_plat(dev);
655 if (desc->if_type != IF_TYPE_EFI_LOADER) {
656 ret = efi_disk_create_raw(dev);
657 if (ret)
658 return -1;
659 }
AKASHI Takahiroa9bf0242022-04-19 10:05:12 +0900660
661 device_foreach_child(child, dev) {
662 ret = efi_disk_create_part(child);
663 if (ret)
664 return -1;
665 }
666
667 return 0;
668}
669
AKASHI Takahirob406eb02022-04-19 10:05:14 +0900670/*
671 * Delete an efi_disk object for a whole raw disk
672 *
673 * @dev uclass device (UCLASS_BLK)
674 *
675 * Delete an efi_disk object which is associated with @dev.
676 * The type of @dev must be UCLASS_BLK.
677 *
678 * @return 0 on success, -1 otherwise
679 */
680static int efi_disk_delete_raw(struct udevice *dev)
681{
682 efi_handle_t handle;
AKASHI Takahiroa3cb34e2022-04-19 10:05:15 +0900683 struct blk_desc *desc;
AKASHI Takahirob406eb02022-04-19 10:05:14 +0900684 struct efi_disk_obj *diskobj;
685
686 if (dev_tag_get_ptr(dev, DM_TAG_EFI, (void **)&handle))
687 return -1;
688
AKASHI Takahiroa3cb34e2022-04-19 10:05:15 +0900689 desc = dev_get_uclass_plat(dev);
690 if (desc->if_type != IF_TYPE_EFI_LOADER) {
691 diskobj = container_of(handle, struct efi_disk_obj, header);
692 efi_free_pool(diskobj->dp);
693 }
AKASHI Takahirob406eb02022-04-19 10:05:14 +0900694
695 efi_delete_handle(handle);
696 dev_tag_del(dev, DM_TAG_EFI);
697
698 return 0;
699}
700
701/*
702 * Delete an efi_disk object for a disk partition
703 *
704 * @dev uclass device (UCLASS_PARTITION)
705 *
706 * Delete an efi_disk object which is associated with @dev.
707 * The type of @dev must be UCLASS_PARTITION.
708 *
709 * @return 0 on success, -1 otherwise
710 */
711static int efi_disk_delete_part(struct udevice *dev)
712{
713 efi_handle_t handle;
714 struct efi_disk_obj *diskobj;
715
716 if (dev_tag_get_ptr(dev, DM_TAG_EFI, (void **)&handle))
717 return -1;
718
719 diskobj = container_of(handle, struct efi_disk_obj, header);
720
721 efi_free_pool(diskobj->dp);
722 efi_delete_handle(handle);
723 dev_tag_del(dev, DM_TAG_EFI);
724
725 return 0;
726}
727
728/*
729 * Delete an efi_disk object for a block device
730 *
731 * @dev uclass device (UCLASS_BLK or UCLASS_PARTITION)
732 *
733 * Delete an efi_disk object which is associated with @dev.
734 * The type of @dev must be either UCLASS_BLK or UCLASS_PARTITION.
735 * This function is expected to be called at EV_PM_PRE_REMOVE.
736 *
737 * @return 0 on success, -1 otherwise
738 */
739static int efi_disk_remove(void *ctx, struct event *event)
740{
741 enum uclass_id id;
742 struct udevice *dev;
743
744 dev = event->data.dm.dev;
745 id = device_get_uclass_id(dev);
746
747 if (id == UCLASS_BLK)
748 return efi_disk_delete_raw(dev);
749 else if (id == UCLASS_PARTITION)
750 return efi_disk_delete_part(dev);
751 else
752 return 0;
753}
754
AKASHI Takahiroa9bf0242022-04-19 10:05:12 +0900755efi_status_t efi_disk_init(void)
756{
757 int ret;
758
759 ret = event_register("efi_disk add", EVT_DM_POST_PROBE,
760 efi_disk_probe, NULL);
761 if (ret) {
762 log_err("Event registration for efi_disk add failed\n");
763 return EFI_OUT_OF_RESOURCES;
764 }
Alexander Graf2a22d052016-03-04 01:10:02 +0100765
AKASHI Takahirob406eb02022-04-19 10:05:14 +0900766 ret = event_register("efi_disk del", EVT_DM_PRE_REMOVE,
767 efi_disk_remove, NULL);
768 if (ret) {
769 log_err("Event registration for efi_disk del failed\n");
770 return EFI_OUT_OF_RESOURCES;
771 }
772
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100773 return EFI_SUCCESS;
Alexander Graf2a22d052016-03-04 01:10:02 +0100774}