Tom Rini | f739fcd | 2018-05-07 17:02:21 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 2 | /* |
| 3 | * EFI application disk support |
| 4 | * |
| 5 | * Copyright (c) 2016 Alexander Graf |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
Heinrich Schuchardt | af457cf | 2020-07-17 20:33:05 +0200 | [diff] [blame] | 8 | #define LOG_CATEGORY LOGC_EFI |
| 9 | |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 10 | #include <common.h> |
Simon Glass | 6dd9faf | 2016-05-01 13:52:32 -0600 | [diff] [blame] | 11 | #include <blk.h> |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 12 | #include <dm.h> |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 13 | #include <dm/device-internal.h> |
| 14 | #include <dm/tag.h> |
| 15 | #include <event.h> |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 16 | #include <efi_driver.h> |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 17 | #include <efi_loader.h> |
AKASHI Takahiro | 8674006 | 2019-10-07 14:59:38 +0900 | [diff] [blame] | 18 | #include <fs.h> |
Heinrich Schuchardt | af457cf | 2020-07-17 20:33:05 +0200 | [diff] [blame] | 19 | #include <log.h> |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 20 | #include <part.h> |
| 21 | #include <malloc.h> |
| 22 | |
Heinrich Schuchardt | 2b55ad3 | 2022-10-21 08:33:44 +0200 | [diff] [blame] | 23 | struct efi_system_partition efi_system_partition = { |
| 24 | .uclass_id = UCLASS_INVALID, |
| 25 | }; |
Heinrich Schuchardt | 11078bb | 2020-03-19 15:16:31 +0100 | [diff] [blame] | 26 | |
Heinrich Schuchardt | dec88e4 | 2019-04-20 07:39:11 +0200 | [diff] [blame] | 27 | const efi_guid_t efi_block_io_guid = EFI_BLOCK_IO_PROTOCOL_GUID; |
Heinrich Schuchardt | b9b0ea3 | 2021-02-02 17:53:14 +0100 | [diff] [blame] | 28 | const efi_guid_t efi_system_partition_guid = PARTITION_SYSTEM_GUID; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 29 | |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 30 | /** |
| 31 | * struct efi_disk_obj - EFI disk object |
| 32 | * |
| 33 | * @header: EFI object header |
| 34 | * @ops: EFI disk I/O protocol interface |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 35 | * @dev_index: device index of block device |
| 36 | * @media: block I/O media information |
| 37 | * @dp: device path to the block device |
| 38 | * @part: partition |
| 39 | * @volume: simple file system protocol of the partition |
AKASHI Takahiro | d97e98c | 2022-04-19 10:05:17 +0900 | [diff] [blame] | 40 | * @dev: associated DM device |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 41 | */ |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 42 | struct efi_disk_obj { |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 43 | struct efi_object header; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 44 | struct efi_block_io ops; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 45 | int dev_index; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 46 | struct efi_block_io_media media; |
Rob Clark | 884bcf6 | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 47 | struct efi_device_path *dp; |
Rob Clark | 884bcf6 | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 48 | unsigned int part; |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 49 | struct efi_simple_file_system_protocol *volume; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 50 | }; |
| 51 | |
Heinrich Schuchardt | cda9b35 | 2019-09-05 20:13:46 +0200 | [diff] [blame] | 52 | /** |
| 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 Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 67 | static 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 Schuchardt | cda9b35 | 2019-09-05 20:13:46 +0200 | [diff] [blame] | 71 | return EFI_EXIT(EFI_SUCCESS); |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 72 | } |
| 73 | |
AKASHI Takahiro | 05f391e | 2022-05-12 11:29:01 +0900 | [diff] [blame] | 74 | /** |
| 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 | */ |
| 83 | bool 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 Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 101 | enum efi_disk_direction { |
| 102 | EFI_DISK_READ, |
| 103 | EFI_DISK_WRITE, |
| 104 | }; |
| 105 | |
Heinrich Schuchardt | a80a232 | 2017-08-26 22:33:13 +0200 | [diff] [blame] | 106 | static efi_status_t efi_disk_rw_blocks(struct efi_block_io *this, |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 107 | 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 Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 111 | int blksz; |
| 112 | int blocks; |
| 113 | unsigned long n; |
| 114 | |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 115 | diskobj = container_of(this, struct efi_disk_obj, ops); |
AKASHI Takahiro | d97e98c | 2022-04-19 10:05:17 +0900 | [diff] [blame] | 116 | blksz = diskobj->media.block_size; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 117 | blocks = buffer_size / blksz; |
| 118 | |
Heinrich Schuchardt | 9d3f339 | 2019-09-05 19:43:17 +0200 | [diff] [blame] | 119 | EFI_PRINT("blocks=%x lba=%llx blksz=%x dir=%d\n", |
| 120 | blocks, lba, blksz, direction); |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 121 | |
| 122 | /* We only support full block access */ |
| 123 | if (buffer_size & (blksz - 1)) |
Heinrich Schuchardt | f59f082 | 2019-09-05 19:31:23 +0200 | [diff] [blame] | 124 | return EFI_BAD_BUFFER_SIZE; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 125 | |
AKASHI Takahiro | 6c64042 | 2022-04-28 13:49:16 +0900 | [diff] [blame] | 126 | if (CONFIG_IS_ENABLED(PARTITIONS) && |
Masahisa Kojima | ee57666 | 2022-07-22 11:39:10 +0900 | [diff] [blame] | 127 | device_get_uclass_id(diskobj->header.dev) == UCLASS_PARTITION) { |
AKASHI Takahiro | 6c64042 | 2022-04-28 13:49:16 +0900 | [diff] [blame] | 128 | if (direction == EFI_DISK_READ) |
Simon Glass | 76c839f | 2022-10-20 18:22:52 -0600 | [diff] [blame] | 129 | n = disk_blk_read(diskobj->header.dev, lba, blocks, |
| 130 | buffer); |
AKASHI Takahiro | 6c64042 | 2022-04-28 13:49:16 +0900 | [diff] [blame] | 131 | else |
Simon Glass | 76c839f | 2022-10-20 18:22:52 -0600 | [diff] [blame] | 132 | n = disk_blk_write(diskobj->header.dev, lba, blocks, |
| 133 | buffer); |
AKASHI Takahiro | 6c64042 | 2022-04-28 13:49:16 +0900 | [diff] [blame] | 134 | } else { |
| 135 | /* dev is a block device (UCLASS_BLK) */ |
| 136 | struct blk_desc *desc; |
AKASHI Takahiro | d97e98c | 2022-04-19 10:05:17 +0900 | [diff] [blame] | 137 | |
Masahisa Kojima | ee57666 | 2022-07-22 11:39:10 +0900 | [diff] [blame] | 138 | desc = dev_get_uclass_plat(diskobj->header.dev); |
AKASHI Takahiro | 6c64042 | 2022-04-28 13:49:16 +0900 | [diff] [blame] | 139 | if (direction == EFI_DISK_READ) |
| 140 | n = blk_dread(desc, lba, blocks, buffer); |
| 141 | else |
| 142 | n = blk_dwrite(desc, lba, blocks, buffer); |
| 143 | } |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 144 | |
| 145 | /* We don't do interrupts, so check for timers cooperatively */ |
| 146 | efi_timer_check(); |
| 147 | |
Heinrich Schuchardt | 9d3f339 | 2019-09-05 19:43:17 +0200 | [diff] [blame] | 148 | EFI_PRINT("n=%lx blocks=%x\n", n, blocks); |
Alexander Graf | edcef3b | 2016-06-02 11:38:27 +0200 | [diff] [blame] | 149 | |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 150 | if (n != blocks) |
Rob Clark | 3304990 | 2017-07-25 20:28:29 -0400 | [diff] [blame] | 151 | return EFI_DEVICE_ERROR; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 152 | |
Rob Clark | 3304990 | 2017-07-25 20:28:29 -0400 | [diff] [blame] | 153 | return EFI_SUCCESS; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 154 | } |
| 155 | |
Heinrich Schuchardt | 55976b7 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 156 | /** |
| 157 | * efi_disk_read_blocks() - reads blocks from device |
| 158 | * |
| 159 | * This function implements the ReadBlocks service of the EFI_BLOCK_IO_PROTOCOL. |
| 160 | * |
| 161 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 162 | * details. |
| 163 | * |
| 164 | * @this: pointer to the BLOCK_IO_PROTOCOL |
| 165 | * @media_id: id of the medium to be read from |
| 166 | * @lba: starting logical block for reading |
| 167 | * @buffer_size: size of the read buffer |
| 168 | * @buffer: pointer to the destination buffer |
| 169 | * Return: status code |
| 170 | */ |
Simon Glass | e275458 | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 171 | static efi_status_t EFIAPI efi_disk_read_blocks(struct efi_block_io *this, |
Heinrich Schuchardt | 4f94865 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 172 | u32 media_id, u64 lba, efi_uintn_t buffer_size, |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 173 | void *buffer) |
| 174 | { |
Alexander Graf | 51735ae | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 175 | void *real_buffer = buffer; |
| 176 | efi_status_t r; |
| 177 | |
Heinrich Schuchardt | f59f082 | 2019-09-05 19:31:23 +0200 | [diff] [blame] | 178 | if (!this) |
| 179 | return EFI_INVALID_PARAMETER; |
| 180 | /* TODO: check for media changes */ |
| 181 | if (media_id != this->media->media_id) |
| 182 | return EFI_MEDIA_CHANGED; |
| 183 | if (!this->media->media_present) |
| 184 | return EFI_NO_MEDIA; |
Heinrich Schuchardt | 688e882 | 2021-01-23 19:33:11 +0100 | [diff] [blame] | 185 | /* media->io_align is a power of 2 or 0 */ |
| 186 | if (this->media->io_align && |
| 187 | (uintptr_t)buffer & (this->media->io_align - 1)) |
Heinrich Schuchardt | f59f082 | 2019-09-05 19:31:23 +0200 | [diff] [blame] | 188 | return EFI_INVALID_PARAMETER; |
| 189 | if (lba * this->media->block_size + buffer_size > |
Jesper Schmitz Mouridsen | e67beff | 2021-02-09 17:17:17 +0100 | [diff] [blame] | 190 | (this->media->last_block + 1) * this->media->block_size) |
Heinrich Schuchardt | f59f082 | 2019-09-05 19:31:23 +0200 | [diff] [blame] | 191 | return EFI_INVALID_PARAMETER; |
| 192 | |
Alexander Graf | 51735ae | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 193 | #ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER |
| 194 | if (buffer_size > EFI_LOADER_BOUNCE_BUFFER_SIZE) { |
| 195 | r = efi_disk_read_blocks(this, media_id, lba, |
| 196 | EFI_LOADER_BOUNCE_BUFFER_SIZE, buffer); |
| 197 | if (r != EFI_SUCCESS) |
| 198 | return r; |
| 199 | return efi_disk_read_blocks(this, media_id, lba + |
| 200 | EFI_LOADER_BOUNCE_BUFFER_SIZE / this->media->block_size, |
| 201 | buffer_size - EFI_LOADER_BOUNCE_BUFFER_SIZE, |
| 202 | buffer + EFI_LOADER_BOUNCE_BUFFER_SIZE); |
| 203 | } |
| 204 | |
| 205 | real_buffer = efi_bounce_buffer; |
| 206 | #endif |
| 207 | |
Masahiro Yamada | dee37fc | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 208 | EFI_ENTRY("%p, %x, %llx, %zx, %p", this, media_id, lba, |
Alexander Graf | 51735ae | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 209 | buffer_size, buffer); |
| 210 | |
| 211 | r = efi_disk_rw_blocks(this, media_id, lba, buffer_size, real_buffer, |
| 212 | EFI_DISK_READ); |
| 213 | |
| 214 | /* Copy from bounce buffer to real buffer if necessary */ |
| 215 | if ((r == EFI_SUCCESS) && (real_buffer != buffer)) |
| 216 | memcpy(buffer, real_buffer, buffer_size); |
| 217 | |
| 218 | return EFI_EXIT(r); |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 219 | } |
| 220 | |
Heinrich Schuchardt | 55976b7 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 221 | /** |
| 222 | * efi_disk_write_blocks() - writes blocks to device |
| 223 | * |
| 224 | * This function implements the WriteBlocks service of the |
| 225 | * EFI_BLOCK_IO_PROTOCOL. |
| 226 | * |
| 227 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 228 | * details. |
| 229 | * |
| 230 | * @this: pointer to the BLOCK_IO_PROTOCOL |
| 231 | * @media_id: id of the medium to be written to |
| 232 | * @lba: starting logical block for writing |
| 233 | * @buffer_size: size of the write buffer |
| 234 | * @buffer: pointer to the source buffer |
| 235 | * Return: status code |
| 236 | */ |
Simon Glass | e275458 | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 237 | static efi_status_t EFIAPI efi_disk_write_blocks(struct efi_block_io *this, |
Heinrich Schuchardt | 4f94865 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 238 | u32 media_id, u64 lba, efi_uintn_t buffer_size, |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 239 | void *buffer) |
| 240 | { |
Alexander Graf | 51735ae | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 241 | void *real_buffer = buffer; |
| 242 | efi_status_t r; |
| 243 | |
Heinrich Schuchardt | f59f082 | 2019-09-05 19:31:23 +0200 | [diff] [blame] | 244 | if (!this) |
| 245 | return EFI_INVALID_PARAMETER; |
| 246 | if (this->media->read_only) |
| 247 | return EFI_WRITE_PROTECTED; |
| 248 | /* TODO: check for media changes */ |
| 249 | if (media_id != this->media->media_id) |
| 250 | return EFI_MEDIA_CHANGED; |
| 251 | if (!this->media->media_present) |
| 252 | return EFI_NO_MEDIA; |
Heinrich Schuchardt | 688e882 | 2021-01-23 19:33:11 +0100 | [diff] [blame] | 253 | /* media->io_align is a power of 2 or 0 */ |
| 254 | if (this->media->io_align && |
| 255 | (uintptr_t)buffer & (this->media->io_align - 1)) |
Heinrich Schuchardt | f59f082 | 2019-09-05 19:31:23 +0200 | [diff] [blame] | 256 | return EFI_INVALID_PARAMETER; |
| 257 | if (lba * this->media->block_size + buffer_size > |
Jesper Schmitz Mouridsen | e67beff | 2021-02-09 17:17:17 +0100 | [diff] [blame] | 258 | (this->media->last_block + 1) * this->media->block_size) |
Heinrich Schuchardt | f59f082 | 2019-09-05 19:31:23 +0200 | [diff] [blame] | 259 | return EFI_INVALID_PARAMETER; |
| 260 | |
Alexander Graf | 51735ae | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 261 | #ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER |
| 262 | if (buffer_size > EFI_LOADER_BOUNCE_BUFFER_SIZE) { |
| 263 | r = efi_disk_write_blocks(this, media_id, lba, |
| 264 | EFI_LOADER_BOUNCE_BUFFER_SIZE, buffer); |
| 265 | if (r != EFI_SUCCESS) |
| 266 | return r; |
| 267 | return efi_disk_write_blocks(this, media_id, lba + |
| 268 | EFI_LOADER_BOUNCE_BUFFER_SIZE / this->media->block_size, |
| 269 | buffer_size - EFI_LOADER_BOUNCE_BUFFER_SIZE, |
| 270 | buffer + EFI_LOADER_BOUNCE_BUFFER_SIZE); |
| 271 | } |
| 272 | |
| 273 | real_buffer = efi_bounce_buffer; |
| 274 | #endif |
| 275 | |
Masahiro Yamada | dee37fc | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 276 | EFI_ENTRY("%p, %x, %llx, %zx, %p", this, media_id, lba, |
Alexander Graf | 51735ae | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 277 | buffer_size, buffer); |
| 278 | |
| 279 | /* Populate bounce buffer if necessary */ |
| 280 | if (real_buffer != buffer) |
| 281 | memcpy(real_buffer, buffer, buffer_size); |
| 282 | |
| 283 | r = efi_disk_rw_blocks(this, media_id, lba, buffer_size, real_buffer, |
| 284 | EFI_DISK_WRITE); |
| 285 | |
| 286 | return EFI_EXIT(r); |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 287 | } |
| 288 | |
Heinrich Schuchardt | 55976b7 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 289 | /** |
| 290 | * efi_disk_flush_blocks() - flushes modified data to the device |
| 291 | * |
| 292 | * This function implements the FlushBlocks service of the |
| 293 | * EFI_BLOCK_IO_PROTOCOL. |
| 294 | * |
| 295 | * As we always write synchronously nothing is done here. |
| 296 | * |
| 297 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 298 | * details. |
| 299 | * |
| 300 | * @this: pointer to the BLOCK_IO_PROTOCOL |
| 301 | * Return: status code |
| 302 | */ |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 303 | static efi_status_t EFIAPI efi_disk_flush_blocks(struct efi_block_io *this) |
| 304 | { |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 305 | EFI_ENTRY("%p", this); |
| 306 | return EFI_EXIT(EFI_SUCCESS); |
| 307 | } |
| 308 | |
| 309 | static const struct efi_block_io block_io_disk_template = { |
| 310 | .reset = &efi_disk_reset, |
| 311 | .read_blocks = &efi_disk_read_blocks, |
| 312 | .write_blocks = &efi_disk_write_blocks, |
| 313 | .flush_blocks = &efi_disk_flush_blocks, |
| 314 | }; |
| 315 | |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 316 | /** |
| 317 | * efi_fs_from_path() - retrieve simple file system protocol |
| 318 | * |
| 319 | * Gets the simple file system protocol for a file device path. |
Heinrich Schuchardt | 110d80a | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 320 | * |
| 321 | * The full path provided is split into device part and into a file |
| 322 | * part. The device part is used to find the handle on which the |
| 323 | * simple file system protocol is installed. |
| 324 | * |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 325 | * @full_path: device path including device and file |
| 326 | * Return: simple file system protocol |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 327 | */ |
| 328 | struct efi_simple_file_system_protocol * |
Heinrich Schuchardt | 110d80a | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 329 | efi_fs_from_path(struct efi_device_path *full_path) |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 330 | { |
| 331 | struct efi_object *efiobj; |
Heinrich Schuchardt | 110d80a | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 332 | struct efi_handler *handler; |
| 333 | struct efi_device_path *device_path; |
| 334 | struct efi_device_path *file_path; |
| 335 | efi_status_t ret; |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 336 | |
Heinrich Schuchardt | 110d80a | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 337 | /* Split the path into a device part and a file part */ |
| 338 | ret = efi_dp_split_file_path(full_path, &device_path, &file_path); |
| 339 | if (ret != EFI_SUCCESS) |
| 340 | return NULL; |
| 341 | efi_free_pool(file_path); |
| 342 | |
| 343 | /* Get the EFI object for the partition */ |
Heinrich Schuchardt | e46ef1d | 2022-03-19 06:35:43 +0100 | [diff] [blame] | 344 | efiobj = efi_dp_find_obj(device_path, NULL, NULL); |
Heinrich Schuchardt | 110d80a | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 345 | efi_free_pool(device_path); |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 346 | if (!efiobj) |
| 347 | return NULL; |
| 348 | |
Heinrich Schuchardt | 110d80a | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 349 | /* Find the simple file system protocol */ |
| 350 | ret = efi_search_protocol(efiobj, &efi_simple_file_system_protocol_guid, |
| 351 | &handler); |
| 352 | if (ret != EFI_SUCCESS) |
| 353 | return NULL; |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 354 | |
Heinrich Schuchardt | 110d80a | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 355 | /* Return the simple file system protocol for the partition */ |
| 356 | return handler->protocol_interface; |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 357 | } |
| 358 | |
AKASHI Takahiro | 8674006 | 2019-10-07 14:59:38 +0900 | [diff] [blame] | 359 | /** |
| 360 | * efi_fs_exists() - check if a partition bears a file system |
| 361 | * |
| 362 | * @desc: block device descriptor |
| 363 | * @part: partition number |
| 364 | * Return: 1 if a file system exists on the partition |
| 365 | * 0 otherwise |
| 366 | */ |
| 367 | static int efi_fs_exists(struct blk_desc *desc, int part) |
| 368 | { |
| 369 | if (fs_set_blk_dev_with_part(desc, part)) |
| 370 | return 0; |
| 371 | |
| 372 | if (fs_get_type() == FS_TYPE_ANY) |
| 373 | return 0; |
| 374 | |
| 375 | fs_close(); |
| 376 | |
| 377 | return 1; |
| 378 | } |
| 379 | |
Heinrich Schuchardt | 55976b7 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 380 | /** |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 381 | * efi_disk_add_dev() - create a handle for a partition or disk |
Heinrich Schuchardt | 93945f2 | 2017-10-26 19:25:46 +0200 | [diff] [blame] | 382 | * |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 383 | * @parent: parent handle |
| 384 | * @dp_parent: parent device path |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 385 | * @desc: internal block device |
| 386 | * @dev_index: device index for block device |
Heinrich Schuchardt | 8d0949b | 2021-01-23 06:52:21 +0100 | [diff] [blame] | 387 | * @part_info: partition info |
Heinrich Schuchardt | 55976b7 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 388 | * @part: partition |
| 389 | * @disk: pointer to receive the created handle |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 390 | * @agent_handle: handle of the EFI block driver |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 391 | * Return: disk object |
Heinrich Schuchardt | 93945f2 | 2017-10-26 19:25:46 +0200 | [diff] [blame] | 392 | */ |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 393 | static efi_status_t efi_disk_add_dev( |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 394 | efi_handle_t parent, |
| 395 | struct efi_device_path *dp_parent, |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 396 | struct blk_desc *desc, |
| 397 | int dev_index, |
Heinrich Schuchardt | 8d0949b | 2021-01-23 06:52:21 +0100 | [diff] [blame] | 398 | struct disk_partition *part_info, |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 399 | unsigned int part, |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 400 | struct efi_disk_obj **disk, |
| 401 | efi_handle_t agent_handle) |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 402 | { |
| 403 | struct efi_disk_obj *diskobj; |
Heinrich Schuchardt | 0a87e05 | 2020-05-21 09:22:06 +0200 | [diff] [blame] | 404 | struct efi_object *handle; |
Heinrich Schuchardt | 21c4d7c | 2022-10-07 11:03:01 +0200 | [diff] [blame] | 405 | const efi_guid_t *esp_guid = NULL; |
Heinrich Schuchardt | 4b9f7aa | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 406 | efi_status_t ret; |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 407 | |
Alexander Graf | 0812d1a | 2016-08-05 14:51:47 +0200 | [diff] [blame] | 408 | /* Don't add empty devices */ |
| 409 | if (!desc->lba) |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 410 | return EFI_NOT_READY; |
Alexander Graf | 0812d1a | 2016-08-05 14:51:47 +0200 | [diff] [blame] | 411 | |
Rob Clark | 884bcf6 | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 412 | diskobj = calloc(1, sizeof(*diskobj)); |
Heinrich Schuchardt | 4b9f7aa | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 413 | if (!diskobj) |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 414 | return EFI_OUT_OF_RESOURCES; |
Heinrich Schuchardt | 4b9f7aa | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 415 | |
| 416 | /* Hook up to the device list */ |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 417 | efi_add_handle(&diskobj->header); |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 418 | |
| 419 | /* Fill in object data */ |
Heinrich Schuchardt | 8d0949b | 2021-01-23 06:52:21 +0100 | [diff] [blame] | 420 | if (part_info) { |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 421 | struct efi_device_path *node = efi_dp_part_node(desc, part); |
Heinrich Schuchardt | 2644851 | 2020-01-10 12:36:01 +0100 | [diff] [blame] | 422 | struct efi_handler *handler; |
| 423 | void *protocol_interface; |
| 424 | |
Heinrich Schuchardt | 01caf28 | 2022-10-06 13:36:02 +0200 | [diff] [blame] | 425 | if (!node) { |
| 426 | ret = EFI_OUT_OF_RESOURCES; |
Simon Glass | 3722cc9 | 2023-01-17 10:47:32 -0700 | [diff] [blame] | 427 | log_debug("no node\n"); |
Heinrich Schuchardt | 01caf28 | 2022-10-06 13:36:02 +0200 | [diff] [blame] | 428 | goto error; |
| 429 | } |
| 430 | |
Heinrich Schuchardt | 2644851 | 2020-01-10 12:36:01 +0100 | [diff] [blame] | 431 | /* Parent must expose EFI_BLOCK_IO_PROTOCOL */ |
| 432 | ret = efi_search_protocol(parent, &efi_block_io_guid, &handler); |
Simon Glass | 3722cc9 | 2023-01-17 10:47:32 -0700 | [diff] [blame] | 433 | if (ret != EFI_SUCCESS) { |
| 434 | log_debug("search failed\n"); |
Heinrich Schuchardt | 2644851 | 2020-01-10 12:36:01 +0100 | [diff] [blame] | 435 | goto error; |
Simon Glass | 3722cc9 | 2023-01-17 10:47:32 -0700 | [diff] [blame] | 436 | } |
Heinrich Schuchardt | 2644851 | 2020-01-10 12:36:01 +0100 | [diff] [blame] | 437 | |
| 438 | /* |
| 439 | * Link the partition (child controller) to the block device |
| 440 | * (controller). |
| 441 | */ |
| 442 | ret = efi_protocol_open(handler, &protocol_interface, NULL, |
| 443 | &diskobj->header, |
| 444 | EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER); |
Simon Glass | 3722cc9 | 2023-01-17 10:47:32 -0700 | [diff] [blame] | 445 | if (ret != EFI_SUCCESS) { |
| 446 | log_debug("prot open failed\n"); |
| 447 | goto error; |
| 448 | } |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 449 | |
| 450 | diskobj->dp = efi_dp_append_node(dp_parent, node); |
| 451 | efi_free_pool(node); |
Heinrich Schuchardt | 8d0949b | 2021-01-23 06:52:21 +0100 | [diff] [blame] | 452 | diskobj->media.last_block = part_info->size - 1; |
Heinrich Schuchardt | b9b0ea3 | 2021-02-02 17:53:14 +0100 | [diff] [blame] | 453 | if (part_info->bootable & PART_EFI_SYSTEM_PARTITION) |
Heinrich Schuchardt | 21c4d7c | 2022-10-07 11:03:01 +0200 | [diff] [blame] | 454 | esp_guid = &efi_system_partition_guid; |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 455 | } else { |
| 456 | diskobj->dp = efi_dp_from_part(desc, part); |
Heinrich Schuchardt | 8d0949b | 2021-01-23 06:52:21 +0100 | [diff] [blame] | 457 | diskobj->media.last_block = desc->lba - 1; |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 458 | } |
Rob Clark | 884bcf6 | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 459 | diskobj->part = part; |
Heinrich Schuchardt | 0a87e05 | 2020-05-21 09:22:06 +0200 | [diff] [blame] | 460 | |
| 461 | /* |
| 462 | * Install the device path and the block IO protocol. |
| 463 | * |
| 464 | * InstallMultipleProtocolInterfaces() checks if the device path is |
| 465 | * already installed on an other handle and returns EFI_ALREADY_STARTED |
| 466 | * in this case. |
| 467 | */ |
| 468 | handle = &diskobj->header; |
Heinrich Schuchardt | 21c4d7c | 2022-10-07 11:03:01 +0200 | [diff] [blame] | 469 | ret = efi_install_multiple_protocol_interfaces( |
| 470 | &handle, |
| 471 | &efi_guid_device_path, diskobj->dp, |
| 472 | &efi_block_io_guid, &diskobj->ops, |
| 473 | /* |
| 474 | * esp_guid must be last entry as it |
| 475 | * can be NULL. Its interface is NULL. |
| 476 | */ |
| 477 | esp_guid, NULL, |
| 478 | NULL); |
Simon Glass | 3722cc9 | 2023-01-17 10:47:32 -0700 | [diff] [blame] | 479 | if (ret != EFI_SUCCESS) { |
| 480 | log_debug("install failed %lx\n", ret); |
Heinrich Schuchardt | cd9a26b | 2021-11-20 13:56:02 +0100 | [diff] [blame] | 481 | goto error; |
Simon Glass | 3722cc9 | 2023-01-17 10:47:32 -0700 | [diff] [blame] | 482 | } |
Heinrich Schuchardt | 0a87e05 | 2020-05-21 09:22:06 +0200 | [diff] [blame] | 483 | |
| 484 | /* |
| 485 | * On partitions or whole disks without partitions install the |
| 486 | * simple file system protocol if a file system is available. |
| 487 | */ |
AKASHI Takahiro | 89cb6a5 | 2019-10-07 14:59:39 +0900 | [diff] [blame] | 488 | if ((part || desc->part_type == PART_TYPE_UNKNOWN) && |
| 489 | efi_fs_exists(desc, part)) { |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 490 | diskobj->volume = efi_simple_file_system(desc, part, |
| 491 | diskobj->dp); |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 492 | ret = efi_add_protocol(&diskobj->header, |
Heinrich Schuchardt | 4b9f7aa | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 493 | &efi_simple_file_system_protocol_guid, |
Heinrich Schuchardt | 22de1de | 2018-01-19 20:24:38 +0100 | [diff] [blame] | 494 | diskobj->volume); |
Simon Glass | 3722cc9 | 2023-01-17 10:47:32 -0700 | [diff] [blame] | 495 | if (ret != EFI_SUCCESS) { |
| 496 | log_debug("simple FS failed\n"); |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 497 | return ret; |
Simon Glass | 3722cc9 | 2023-01-17 10:47:32 -0700 | [diff] [blame] | 498 | } |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 499 | } |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 500 | diskobj->ops = block_io_disk_template; |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 501 | diskobj->dev_index = dev_index; |
| 502 | |
| 503 | /* Fill in EFI IO Media info (for read/write callbacks) */ |
| 504 | diskobj->media.removable_media = desc->removable; |
| 505 | diskobj->media.media_present = 1; |
Heinrich Schuchardt | f59f082 | 2019-09-05 19:31:23 +0200 | [diff] [blame] | 506 | /* |
| 507 | * MediaID is just an arbitrary counter. |
| 508 | * We have to change it if the medium is removed or changed. |
| 509 | */ |
| 510 | diskobj->media.media_id = 1; |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 511 | diskobj->media.block_size = desc->blksz; |
| 512 | diskobj->media.io_align = desc->blksz; |
Heinrich Schuchardt | 9f88896 | 2020-03-19 15:45:52 +0100 | [diff] [blame] | 513 | if (part) |
Emmanuel Vadot | 5f77083 | 2017-12-11 19:22:33 +0100 | [diff] [blame] | 514 | diskobj->media.logical_partition = 1; |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 515 | diskobj->ops.media = &diskobj->media; |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 516 | if (disk) |
| 517 | *disk = diskobj; |
Heinrich Schuchardt | 11078bb | 2020-03-19 15:16:31 +0100 | [diff] [blame] | 518 | |
Heinrich Schuchardt | 8d0949b | 2021-01-23 06:52:21 +0100 | [diff] [blame] | 519 | EFI_PRINT("BlockIO: part %u, present %d, logical %d, removable %d" |
Paul Barbieri | 7a85f32 | 2022-06-30 07:02:04 -0400 | [diff] [blame] | 520 | ", last_block %llu\n", |
Heinrich Schuchardt | 8d0949b | 2021-01-23 06:52:21 +0100 | [diff] [blame] | 521 | diskobj->part, |
| 522 | diskobj->media.media_present, |
| 523 | diskobj->media.logical_partition, |
| 524 | diskobj->media.removable_media, |
Heinrich Schuchardt | 8d0949b | 2021-01-23 06:52:21 +0100 | [diff] [blame] | 525 | diskobj->media.last_block); |
| 526 | |
Heinrich Schuchardt | 11078bb | 2020-03-19 15:16:31 +0100 | [diff] [blame] | 527 | /* Store first EFI system partition */ |
Heinrich Schuchardt | 2b55ad3 | 2022-10-21 08:33:44 +0200 | [diff] [blame] | 528 | if (part && efi_system_partition.uclass_id == UCLASS_INVALID) { |
Heinrich Schuchardt | b9b0ea3 | 2021-02-02 17:53:14 +0100 | [diff] [blame] | 529 | if (part_info->bootable & PART_EFI_SYSTEM_PARTITION) { |
Simon Glass | 8149b15 | 2022-09-17 09:00:09 -0600 | [diff] [blame] | 530 | efi_system_partition.uclass_id = desc->uclass_id; |
Heinrich Schuchardt | 11078bb | 2020-03-19 15:16:31 +0100 | [diff] [blame] | 531 | efi_system_partition.devnum = desc->devnum; |
| 532 | efi_system_partition.part = part; |
Heinrich Schuchardt | 3dca77b | 2021-05-25 18:00:13 +0200 | [diff] [blame] | 533 | EFI_PRINT("EFI system partition: %s %x:%x\n", |
Simon Glass | 8149b15 | 2022-09-17 09:00:09 -0600 | [diff] [blame] | 534 | blk_get_uclass_name(desc->uclass_id), |
Heinrich Schuchardt | 11078bb | 2020-03-19 15:16:31 +0100 | [diff] [blame] | 535 | desc->devnum, part); |
| 536 | } |
| 537 | } |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 538 | return EFI_SUCCESS; |
Heinrich Schuchardt | 2644851 | 2020-01-10 12:36:01 +0100 | [diff] [blame] | 539 | error: |
| 540 | efi_delete_handle(&diskobj->header); |
| 541 | return ret; |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 542 | } |
| 543 | |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 544 | /** |
| 545 | * efi_disk_create_raw() - create a handle for a whole raw disk |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 546 | * |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 547 | * @dev: udevice (UCLASS_BLK) |
| 548 | * @agent_handle: handle of the EFI block driver |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 549 | * |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 550 | * Create an efi_disk object which is associated with @dev. |
| 551 | * The type of @dev must be UCLASS_BLK. |
| 552 | * |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 553 | * Return: 0 on success, -1 otherwise |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 554 | */ |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 555 | static int efi_disk_create_raw(struct udevice *dev, efi_handle_t agent_handle) |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 556 | { |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 557 | struct efi_disk_obj *disk; |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 558 | struct blk_desc *desc; |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 559 | int diskid; |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 560 | efi_status_t ret; |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 561 | |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 562 | desc = dev_get_uclass_plat(dev); |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 563 | diskid = desc->devnum; |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 564 | |
AKASHI Takahiro | ab31c8a | 2022-08-19 09:48:30 +0900 | [diff] [blame] | 565 | ret = efi_disk_add_dev(NULL, NULL, desc, |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 566 | diskid, NULL, 0, &disk, agent_handle); |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 567 | if (ret != EFI_SUCCESS) { |
Simon Glass | 3722cc9 | 2023-01-17 10:47:32 -0700 | [diff] [blame] | 568 | if (ret == EFI_NOT_READY) { |
Heinrich Schuchardt | af457cf | 2020-07-17 20:33:05 +0200 | [diff] [blame] | 569 | log_notice("Disk %s not ready\n", dev->name); |
Simon Glass | 3722cc9 | 2023-01-17 10:47:32 -0700 | [diff] [blame] | 570 | ret = -EBUSY; |
| 571 | } else { |
Simon Glass | 9520181 | 2022-10-29 19:47:17 -0600 | [diff] [blame] | 572 | log_err("Adding disk for %s failed (err=%ld/%#lx)\n", dev->name, ret, ret); |
Simon Glass | 3722cc9 | 2023-01-17 10:47:32 -0700 | [diff] [blame] | 573 | ret = -ENOENT; |
| 574 | } |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 575 | |
Simon Glass | 3722cc9 | 2023-01-17 10:47:32 -0700 | [diff] [blame] | 576 | return ret; |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 577 | } |
Masahisa Kojima | ee57666 | 2022-07-22 11:39:10 +0900 | [diff] [blame] | 578 | if (efi_link_dev(&disk->header, dev)) { |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 579 | efi_free_pool(disk->dp); |
| 580 | efi_delete_handle(&disk->header); |
| 581 | |
Simon Glass | 3722cc9 | 2023-01-17 10:47:32 -0700 | [diff] [blame] | 582 | return -EINVAL; |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 583 | } |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 584 | |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 585 | return 0; |
| 586 | } |
| 587 | |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 588 | /** |
| 589 | * efi_disk_create_part() - create a handle for a disk partition |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 590 | * |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 591 | * @dev: udevice (UCLASS_PARTITION) |
| 592 | * @agent_handle: handle of the EFI block driver |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 593 | * |
| 594 | * Create an efi_disk object which is associated with @dev. |
| 595 | * The type of @dev must be UCLASS_PARTITION. |
| 596 | * |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 597 | * Return: 0 on success, -1 otherwise |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 598 | */ |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 599 | static int efi_disk_create_part(struct udevice *dev, efi_handle_t agent_handle) |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 600 | { |
| 601 | efi_handle_t parent; |
| 602 | struct blk_desc *desc; |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 603 | struct disk_part *part_data; |
| 604 | struct disk_partition *info; |
| 605 | unsigned int part; |
| 606 | int diskid; |
| 607 | struct efi_handler *handler; |
| 608 | struct efi_device_path *dp_parent; |
| 609 | struct efi_disk_obj *disk; |
| 610 | efi_status_t ret; |
| 611 | |
| 612 | if (dev_tag_get_ptr(dev_get_parent(dev), DM_TAG_EFI, (void **)&parent)) |
| 613 | return -1; |
| 614 | |
| 615 | desc = dev_get_uclass_plat(dev_get_parent(dev)); |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 616 | diskid = desc->devnum; |
| 617 | |
| 618 | part_data = dev_get_uclass_plat(dev); |
| 619 | part = part_data->partnum; |
| 620 | info = &part_data->gpt_part_info; |
| 621 | |
| 622 | ret = efi_search_protocol(parent, &efi_guid_device_path, &handler); |
| 623 | if (ret != EFI_SUCCESS) |
| 624 | return -1; |
| 625 | dp_parent = (struct efi_device_path *)handler->protocol_interface; |
| 626 | |
AKASHI Takahiro | ab31c8a | 2022-08-19 09:48:30 +0900 | [diff] [blame] | 627 | ret = efi_disk_add_dev(parent, dp_parent, desc, diskid, |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 628 | info, part, &disk, agent_handle); |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 629 | if (ret != EFI_SUCCESS) { |
| 630 | log_err("Adding partition for %s failed\n", dev->name); |
| 631 | return -1; |
| 632 | } |
Masahisa Kojima | ee57666 | 2022-07-22 11:39:10 +0900 | [diff] [blame] | 633 | if (efi_link_dev(&disk->header, dev)) { |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 634 | efi_free_pool(disk->dp); |
| 635 | efi_delete_handle(&disk->header); |
| 636 | |
| 637 | return -1; |
| 638 | } |
| 639 | |
| 640 | return 0; |
| 641 | } |
| 642 | |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 643 | /** |
| 644 | * efi_disk_probe() - create efi_disk objects for a block device |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 645 | * |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 646 | * @ctx: event context - driver binding protocol |
| 647 | * @event: EV_PM_POST_PROBE event |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 648 | * |
| 649 | * Create efi_disk objects for partitions as well as a raw disk |
| 650 | * which is associated with @dev. |
| 651 | * The type of @dev must be UCLASS_BLK. |
| 652 | * This function is expected to be called at EV_PM_POST_PROBE. |
| 653 | * |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 654 | * Return: 0 on success, -1 otherwise |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 655 | */ |
Heinrich Schuchardt | f05911a | 2022-10-06 07:29:41 +0200 | [diff] [blame] | 656 | int efi_disk_probe(void *ctx, struct event *event) |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 657 | { |
| 658 | struct udevice *dev; |
| 659 | enum uclass_id id; |
AKASHI Takahiro | 3c809df | 2022-04-19 10:05:13 +0900 | [diff] [blame] | 660 | struct blk_desc *desc; |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 661 | struct udevice *child; |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 662 | struct efi_driver_binding_extended_protocol *db_prot = ctx; |
| 663 | efi_handle_t agent_handle = db_prot->bp.driver_binding_handle; |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 664 | int ret; |
| 665 | |
| 666 | dev = event->data.dm.dev; |
| 667 | id = device_get_uclass_id(dev); |
| 668 | |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 669 | /* We won't support partitions in a partition */ |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 670 | if (id != UCLASS_BLK) |
| 671 | return 0; |
| 672 | |
AKASHI Takahiro | 3c809df | 2022-04-19 10:05:13 +0900 | [diff] [blame] | 673 | /* |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 674 | * Avoid creating duplicated objects now that efi_driver |
AKASHI Takahiro | 3c809df | 2022-04-19 10:05:13 +0900 | [diff] [blame] | 675 | * has already created an efi_disk at this moment. |
| 676 | */ |
| 677 | desc = dev_get_uclass_plat(dev); |
Simon Glass | 8149b15 | 2022-09-17 09:00:09 -0600 | [diff] [blame] | 678 | if (desc->uclass_id != UCLASS_EFI_LOADER) { |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 679 | ret = efi_disk_create_raw(dev, agent_handle); |
AKASHI Takahiro | 3c809df | 2022-04-19 10:05:13 +0900 | [diff] [blame] | 680 | if (ret) |
| 681 | return -1; |
| 682 | } |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 683 | |
| 684 | device_foreach_child(child, dev) { |
Heinrich Schuchardt | 8e4ec3e | 2022-10-08 09:11:54 +0200 | [diff] [blame] | 685 | ret = efi_disk_create_part(child, agent_handle); |
AKASHI Takahiro | a9bf024 | 2022-04-19 10:05:12 +0900 | [diff] [blame] | 686 | if (ret) |
| 687 | return -1; |
| 688 | } |
| 689 | |
| 690 | return 0; |
| 691 | } |
| 692 | |
AKASHI Takahiro | b406eb0 | 2022-04-19 10:05:14 +0900 | [diff] [blame] | 693 | /* |
| 694 | * Delete an efi_disk object for a whole raw disk |
| 695 | * |
| 696 | * @dev uclass device (UCLASS_BLK) |
| 697 | * |
| 698 | * Delete an efi_disk object which is associated with @dev. |
| 699 | * The type of @dev must be UCLASS_BLK. |
| 700 | * |
| 701 | * @return 0 on success, -1 otherwise |
| 702 | */ |
| 703 | static int efi_disk_delete_raw(struct udevice *dev) |
| 704 | { |
| 705 | efi_handle_t handle; |
AKASHI Takahiro | a3cb34e | 2022-04-19 10:05:15 +0900 | [diff] [blame] | 706 | struct blk_desc *desc; |
AKASHI Takahiro | b406eb0 | 2022-04-19 10:05:14 +0900 | [diff] [blame] | 707 | struct efi_disk_obj *diskobj; |
| 708 | |
| 709 | if (dev_tag_get_ptr(dev, DM_TAG_EFI, (void **)&handle)) |
| 710 | return -1; |
| 711 | |
AKASHI Takahiro | a3cb34e | 2022-04-19 10:05:15 +0900 | [diff] [blame] | 712 | desc = dev_get_uclass_plat(dev); |
Simon Glass | 8149b15 | 2022-09-17 09:00:09 -0600 | [diff] [blame] | 713 | if (desc->uclass_id != UCLASS_EFI_LOADER) { |
AKASHI Takahiro | a3cb34e | 2022-04-19 10:05:15 +0900 | [diff] [blame] | 714 | diskobj = container_of(handle, struct efi_disk_obj, header); |
| 715 | efi_free_pool(diskobj->dp); |
| 716 | } |
AKASHI Takahiro | b406eb0 | 2022-04-19 10:05:14 +0900 | [diff] [blame] | 717 | |
| 718 | efi_delete_handle(handle); |
| 719 | dev_tag_del(dev, DM_TAG_EFI); |
| 720 | |
| 721 | return 0; |
| 722 | } |
| 723 | |
| 724 | /* |
| 725 | * Delete an efi_disk object for a disk partition |
| 726 | * |
| 727 | * @dev uclass device (UCLASS_PARTITION) |
| 728 | * |
| 729 | * Delete an efi_disk object which is associated with @dev. |
| 730 | * The type of @dev must be UCLASS_PARTITION. |
| 731 | * |
| 732 | * @return 0 on success, -1 otherwise |
| 733 | */ |
| 734 | static int efi_disk_delete_part(struct udevice *dev) |
| 735 | { |
| 736 | efi_handle_t handle; |
| 737 | struct efi_disk_obj *diskobj; |
| 738 | |
| 739 | if (dev_tag_get_ptr(dev, DM_TAG_EFI, (void **)&handle)) |
| 740 | return -1; |
| 741 | |
| 742 | diskobj = container_of(handle, struct efi_disk_obj, header); |
| 743 | |
| 744 | efi_free_pool(diskobj->dp); |
| 745 | efi_delete_handle(handle); |
| 746 | dev_tag_del(dev, DM_TAG_EFI); |
| 747 | |
| 748 | return 0; |
| 749 | } |
| 750 | |
| 751 | /* |
| 752 | * Delete an efi_disk object for a block device |
| 753 | * |
| 754 | * @dev uclass device (UCLASS_BLK or UCLASS_PARTITION) |
| 755 | * |
| 756 | * Delete an efi_disk object which is associated with @dev. |
| 757 | * The type of @dev must be either UCLASS_BLK or UCLASS_PARTITION. |
| 758 | * This function is expected to be called at EV_PM_PRE_REMOVE. |
| 759 | * |
| 760 | * @return 0 on success, -1 otherwise |
| 761 | */ |
Heinrich Schuchardt | f05911a | 2022-10-06 07:29:41 +0200 | [diff] [blame] | 762 | int efi_disk_remove(void *ctx, struct event *event) |
AKASHI Takahiro | b406eb0 | 2022-04-19 10:05:14 +0900 | [diff] [blame] | 763 | { |
| 764 | enum uclass_id id; |
| 765 | struct udevice *dev; |
| 766 | |
| 767 | dev = event->data.dm.dev; |
| 768 | id = device_get_uclass_id(dev); |
| 769 | |
| 770 | if (id == UCLASS_BLK) |
| 771 | return efi_disk_delete_raw(dev); |
| 772 | else if (id == UCLASS_PARTITION) |
| 773 | return efi_disk_delete_part(dev); |
| 774 | else |
| 775 | return 0; |
| 776 | } |
| 777 | |
Masahisa Kojima | 87d7914 | 2022-09-12 17:33:50 +0900 | [diff] [blame] | 778 | /** |
| 779 | * efi_disk_get_device_name() - get U-Boot device name associated with EFI handle |
| 780 | * |
| 781 | * @handle: pointer to the EFI handle |
| 782 | * @buf: pointer to the buffer to store the string |
| 783 | * @size: size of buffer |
| 784 | * Return: status code |
| 785 | */ |
| 786 | efi_status_t efi_disk_get_device_name(const efi_handle_t handle, char *buf, int size) |
| 787 | { |
| 788 | int count; |
| 789 | int diskid; |
| 790 | enum uclass_id id; |
| 791 | unsigned int part; |
| 792 | struct udevice *dev; |
| 793 | struct blk_desc *desc; |
| 794 | const char *if_typename; |
| 795 | bool is_partition = false; |
| 796 | struct disk_part *part_data; |
| 797 | |
| 798 | if (!handle || !buf || !size) |
| 799 | return EFI_INVALID_PARAMETER; |
| 800 | |
| 801 | dev = handle->dev; |
| 802 | id = device_get_uclass_id(dev); |
| 803 | if (id == UCLASS_BLK) { |
| 804 | desc = dev_get_uclass_plat(dev); |
| 805 | } else if (id == UCLASS_PARTITION) { |
| 806 | desc = dev_get_uclass_plat(dev_get_parent(dev)); |
| 807 | is_partition = true; |
| 808 | } else { |
| 809 | return EFI_INVALID_PARAMETER; |
| 810 | } |
Simon Glass | 8149b15 | 2022-09-17 09:00:09 -0600 | [diff] [blame] | 811 | if_typename = blk_get_uclass_name(desc->uclass_id); |
Masahisa Kojima | 87d7914 | 2022-09-12 17:33:50 +0900 | [diff] [blame] | 812 | diskid = desc->devnum; |
| 813 | |
| 814 | if (is_partition) { |
| 815 | part_data = dev_get_uclass_plat(dev); |
| 816 | part = part_data->partnum; |
Heinrich Schuchardt | 2eeb7fe | 2022-10-07 12:55:16 +0200 | [diff] [blame] | 817 | count = snprintf(buf, size, "%s %d:%u", if_typename, diskid, |
| 818 | part); |
Masahisa Kojima | 87d7914 | 2022-09-12 17:33:50 +0900 | [diff] [blame] | 819 | } else { |
| 820 | count = snprintf(buf, size, "%s %d", if_typename, diskid); |
| 821 | } |
| 822 | |
| 823 | if (count < 0 || (count + 1) > size) |
| 824 | return EFI_INVALID_PARAMETER; |
| 825 | |
| 826 | return EFI_SUCCESS; |
| 827 | } |
Tom Rini | e9a1ff9 | 2022-09-19 13:19:39 -0400 | [diff] [blame] | 828 | |
| 829 | /** |
Heinrich Schuchardt | d5391bf | 2022-08-31 16:37:35 +0200 | [diff] [blame] | 830 | * efi_disks_register() - ensure all block devices are available in UEFI |
| 831 | * |
| 832 | * The function probes all block devices. As we store UEFI variables on the |
| 833 | * EFI system partition this function has to be called before enabling |
| 834 | * variable services. |
| 835 | */ |
| 836 | efi_status_t efi_disks_register(void) |
| 837 | { |
| 838 | struct udevice *dev; |
| 839 | |
| 840 | uclass_foreach_dev_probe(UCLASS_BLK, dev) { |
| 841 | } |
| 842 | |
| 843 | return EFI_SUCCESS; |
| 844 | } |