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