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 | |
| 8 | #include <common.h> |
Simon Glass | e3dfa91 | 2016-05-01 13:52:32 -0600 | [diff] [blame] | 9 | #include <blk.h> |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 10 | #include <dm.h> |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 11 | #include <efi_loader.h> |
AKASHI Takahiro | 120a01a | 2019-10-07 14:59:38 +0900 | [diff] [blame] | 12 | #include <fs.h> |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 13 | #include <part.h> |
| 14 | #include <malloc.h> |
| 15 | |
Heinrich Schuchardt | 788ad41 | 2019-04-20 07:39:11 +0200 | [diff] [blame] | 16 | const efi_guid_t efi_block_io_guid = EFI_BLOCK_IO_PROTOCOL_GUID; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 17 | |
Heinrich Schuchardt | 7292872 | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 18 | /** |
| 19 | * struct efi_disk_obj - EFI disk object |
| 20 | * |
| 21 | * @header: EFI object header |
| 22 | * @ops: EFI disk I/O protocol interface |
| 23 | * @ifname: interface name for block device |
| 24 | * @dev_index: device index of block device |
| 25 | * @media: block I/O media information |
| 26 | * @dp: device path to the block device |
| 27 | * @part: partition |
| 28 | * @volume: simple file system protocol of the partition |
| 29 | * @offset: offset into disk for simple partition |
| 30 | * @desc: internal block device descriptor |
| 31 | */ |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 32 | struct efi_disk_obj { |
Heinrich Schuchardt | 7292872 | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 33 | struct efi_object header; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 34 | struct efi_block_io ops; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 35 | const char *ifname; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 36 | int dev_index; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 37 | struct efi_block_io_media media; |
Rob Clark | a83272f | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 38 | struct efi_device_path *dp; |
Rob Clark | a83272f | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 39 | unsigned int part; |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 40 | struct efi_simple_file_system_protocol *volume; |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 41 | lbaint_t offset; |
Rob Clark | a83272f | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 42 | struct blk_desc *desc; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 43 | }; |
| 44 | |
Heinrich Schuchardt | 670198c | 2019-09-05 20:13:46 +0200 | [diff] [blame] | 45 | /** |
| 46 | * efi_disk_reset() - reset block device |
| 47 | * |
| 48 | * This function implements the Reset service of the EFI_BLOCK_IO_PROTOCOL. |
| 49 | * |
| 50 | * As U-Boot's block devices do not have a reset function simply return |
| 51 | * EFI_SUCCESS. |
| 52 | * |
| 53 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 54 | * details. |
| 55 | * |
| 56 | * @this: pointer to the BLOCK_IO_PROTOCOL |
| 57 | * @extended_verification: extended verification |
| 58 | * Return: status code |
| 59 | */ |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 60 | static efi_status_t EFIAPI efi_disk_reset(struct efi_block_io *this, |
| 61 | char extended_verification) |
| 62 | { |
| 63 | EFI_ENTRY("%p, %x", this, extended_verification); |
Heinrich Schuchardt | 670198c | 2019-09-05 20:13:46 +0200 | [diff] [blame] | 64 | return EFI_EXIT(EFI_SUCCESS); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | enum efi_disk_direction { |
| 68 | EFI_DISK_READ, |
| 69 | EFI_DISK_WRITE, |
| 70 | }; |
| 71 | |
Heinrich Schuchardt | 9ce0617 | 2017-08-26 22:33:13 +0200 | [diff] [blame] | 72 | 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] | 73 | u32 media_id, u64 lba, unsigned long buffer_size, |
| 74 | void *buffer, enum efi_disk_direction direction) |
| 75 | { |
| 76 | struct efi_disk_obj *diskobj; |
| 77 | struct blk_desc *desc; |
| 78 | int blksz; |
| 79 | int blocks; |
| 80 | unsigned long n; |
| 81 | |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 82 | diskobj = container_of(this, struct efi_disk_obj, ops); |
Alexander Graf | 34118e7 | 2016-08-05 14:49:53 +0200 | [diff] [blame] | 83 | desc = (struct blk_desc *) diskobj->desc; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 84 | blksz = desc->blksz; |
| 85 | blocks = buffer_size / blksz; |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 86 | lba += diskobj->offset; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 87 | |
Heinrich Schuchardt | ee6ef8b | 2019-09-05 19:43:17 +0200 | [diff] [blame] | 88 | EFI_PRINT("blocks=%x lba=%llx blksz=%x dir=%d\n", |
| 89 | blocks, lba, blksz, direction); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 90 | |
| 91 | /* We only support full block access */ |
| 92 | if (buffer_size & (blksz - 1)) |
Heinrich Schuchardt | 3592252 | 2019-09-05 19:31:23 +0200 | [diff] [blame] | 93 | return EFI_BAD_BUFFER_SIZE; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 94 | |
| 95 | if (direction == EFI_DISK_READ) |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 96 | n = blk_dread(desc, lba, blocks, buffer); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 97 | else |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 98 | n = blk_dwrite(desc, lba, blocks, buffer); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 99 | |
| 100 | /* We don't do interrupts, so check for timers cooperatively */ |
| 101 | efi_timer_check(); |
| 102 | |
Heinrich Schuchardt | ee6ef8b | 2019-09-05 19:43:17 +0200 | [diff] [blame] | 103 | EFI_PRINT("n=%lx blocks=%x\n", n, blocks); |
Alexander Graf | 62a6748 | 2016-06-02 11:38:27 +0200 | [diff] [blame] | 104 | |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 105 | if (n != blocks) |
Rob Clark | 99c4387 | 2017-07-25 20:28:29 -0400 | [diff] [blame] | 106 | return EFI_DEVICE_ERROR; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 107 | |
Rob Clark | 99c4387 | 2017-07-25 20:28:29 -0400 | [diff] [blame] | 108 | return EFI_SUCCESS; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 109 | } |
| 110 | |
Heinrich Schuchardt | 76f5789 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 111 | /** |
| 112 | * efi_disk_read_blocks() - reads blocks from device |
| 113 | * |
| 114 | * This function implements the ReadBlocks service of the EFI_BLOCK_IO_PROTOCOL. |
| 115 | * |
| 116 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 117 | * details. |
| 118 | * |
| 119 | * @this: pointer to the BLOCK_IO_PROTOCOL |
| 120 | * @media_id: id of the medium to be read from |
| 121 | * @lba: starting logical block for reading |
| 122 | * @buffer_size: size of the read buffer |
| 123 | * @buffer: pointer to the destination buffer |
| 124 | * Return: status code |
| 125 | */ |
Simon Glass | c2194bf | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 126 | 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] | 127 | u32 media_id, u64 lba, efi_uintn_t buffer_size, |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 128 | void *buffer) |
| 129 | { |
Alexander Graf | 7c00a3c | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 130 | void *real_buffer = buffer; |
| 131 | efi_status_t r; |
| 132 | |
Heinrich Schuchardt | 3592252 | 2019-09-05 19:31:23 +0200 | [diff] [blame] | 133 | if (!this) |
| 134 | return EFI_INVALID_PARAMETER; |
| 135 | /* TODO: check for media changes */ |
| 136 | if (media_id != this->media->media_id) |
| 137 | return EFI_MEDIA_CHANGED; |
| 138 | if (!this->media->media_present) |
| 139 | return EFI_NO_MEDIA; |
| 140 | /* media->io_align is a power of 2 */ |
| 141 | if ((uintptr_t)buffer & (this->media->io_align - 1)) |
| 142 | return EFI_INVALID_PARAMETER; |
| 143 | if (lba * this->media->block_size + buffer_size > |
| 144 | this->media->last_block * this->media->block_size) |
| 145 | return EFI_INVALID_PARAMETER; |
| 146 | |
Alexander Graf | 7c00a3c | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 147 | #ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER |
| 148 | if (buffer_size > EFI_LOADER_BOUNCE_BUFFER_SIZE) { |
| 149 | r = efi_disk_read_blocks(this, media_id, lba, |
| 150 | EFI_LOADER_BOUNCE_BUFFER_SIZE, buffer); |
| 151 | if (r != EFI_SUCCESS) |
| 152 | return r; |
| 153 | return efi_disk_read_blocks(this, media_id, lba + |
| 154 | EFI_LOADER_BOUNCE_BUFFER_SIZE / this->media->block_size, |
| 155 | buffer_size - EFI_LOADER_BOUNCE_BUFFER_SIZE, |
| 156 | buffer + EFI_LOADER_BOUNCE_BUFFER_SIZE); |
| 157 | } |
| 158 | |
| 159 | real_buffer = efi_bounce_buffer; |
| 160 | #endif |
| 161 | |
Masahiro Yamada | c7570a3 | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 162 | EFI_ENTRY("%p, %x, %llx, %zx, %p", this, media_id, lba, |
Alexander Graf | 7c00a3c | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 163 | buffer_size, buffer); |
| 164 | |
| 165 | r = efi_disk_rw_blocks(this, media_id, lba, buffer_size, real_buffer, |
| 166 | EFI_DISK_READ); |
| 167 | |
| 168 | /* Copy from bounce buffer to real buffer if necessary */ |
| 169 | if ((r == EFI_SUCCESS) && (real_buffer != buffer)) |
| 170 | memcpy(buffer, real_buffer, buffer_size); |
| 171 | |
| 172 | return EFI_EXIT(r); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 173 | } |
| 174 | |
Heinrich Schuchardt | 76f5789 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 175 | /** |
| 176 | * efi_disk_write_blocks() - writes blocks to device |
| 177 | * |
| 178 | * This function implements the WriteBlocks service of the |
| 179 | * EFI_BLOCK_IO_PROTOCOL. |
| 180 | * |
| 181 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 182 | * details. |
| 183 | * |
| 184 | * @this: pointer to the BLOCK_IO_PROTOCOL |
| 185 | * @media_id: id of the medium to be written to |
| 186 | * @lba: starting logical block for writing |
| 187 | * @buffer_size: size of the write buffer |
| 188 | * @buffer: pointer to the source buffer |
| 189 | * Return: status code |
| 190 | */ |
Simon Glass | c2194bf | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 191 | 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] | 192 | u32 media_id, u64 lba, efi_uintn_t buffer_size, |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 193 | void *buffer) |
| 194 | { |
Alexander Graf | 7c00a3c | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 195 | void *real_buffer = buffer; |
| 196 | efi_status_t r; |
| 197 | |
Heinrich Schuchardt | 3592252 | 2019-09-05 19:31:23 +0200 | [diff] [blame] | 198 | if (!this) |
| 199 | return EFI_INVALID_PARAMETER; |
| 200 | if (this->media->read_only) |
| 201 | return EFI_WRITE_PROTECTED; |
| 202 | /* TODO: check for media changes */ |
| 203 | if (media_id != this->media->media_id) |
| 204 | return EFI_MEDIA_CHANGED; |
| 205 | if (!this->media->media_present) |
| 206 | return EFI_NO_MEDIA; |
| 207 | /* media->io_align is a power of 2 */ |
| 208 | if ((uintptr_t)buffer & (this->media->io_align - 1)) |
| 209 | return EFI_INVALID_PARAMETER; |
| 210 | if (lba * this->media->block_size + buffer_size > |
| 211 | this->media->last_block * this->media->block_size) |
| 212 | return EFI_INVALID_PARAMETER; |
| 213 | |
Alexander Graf | 7c00a3c | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 214 | #ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER |
| 215 | if (buffer_size > EFI_LOADER_BOUNCE_BUFFER_SIZE) { |
| 216 | r = efi_disk_write_blocks(this, media_id, lba, |
| 217 | EFI_LOADER_BOUNCE_BUFFER_SIZE, buffer); |
| 218 | if (r != EFI_SUCCESS) |
| 219 | return r; |
| 220 | return efi_disk_write_blocks(this, media_id, lba + |
| 221 | EFI_LOADER_BOUNCE_BUFFER_SIZE / this->media->block_size, |
| 222 | buffer_size - EFI_LOADER_BOUNCE_BUFFER_SIZE, |
| 223 | buffer + EFI_LOADER_BOUNCE_BUFFER_SIZE); |
| 224 | } |
| 225 | |
| 226 | real_buffer = efi_bounce_buffer; |
| 227 | #endif |
| 228 | |
Masahiro Yamada | c7570a3 | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 229 | EFI_ENTRY("%p, %x, %llx, %zx, %p", this, media_id, lba, |
Alexander Graf | 7c00a3c | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 230 | buffer_size, buffer); |
| 231 | |
| 232 | /* Populate bounce buffer if necessary */ |
| 233 | if (real_buffer != buffer) |
| 234 | memcpy(real_buffer, buffer, buffer_size); |
| 235 | |
| 236 | r = efi_disk_rw_blocks(this, media_id, lba, buffer_size, real_buffer, |
| 237 | EFI_DISK_WRITE); |
| 238 | |
| 239 | return EFI_EXIT(r); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 240 | } |
| 241 | |
Heinrich Schuchardt | 76f5789 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 242 | /** |
| 243 | * efi_disk_flush_blocks() - flushes modified data to the device |
| 244 | * |
| 245 | * This function implements the FlushBlocks service of the |
| 246 | * EFI_BLOCK_IO_PROTOCOL. |
| 247 | * |
| 248 | * As we always write synchronously nothing is done here. |
| 249 | * |
| 250 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 251 | * details. |
| 252 | * |
| 253 | * @this: pointer to the BLOCK_IO_PROTOCOL |
| 254 | * Return: status code |
| 255 | */ |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 256 | static efi_status_t EFIAPI efi_disk_flush_blocks(struct efi_block_io *this) |
| 257 | { |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 258 | EFI_ENTRY("%p", this); |
| 259 | return EFI_EXIT(EFI_SUCCESS); |
| 260 | } |
| 261 | |
| 262 | static const struct efi_block_io block_io_disk_template = { |
| 263 | .reset = &efi_disk_reset, |
| 264 | .read_blocks = &efi_disk_read_blocks, |
| 265 | .write_blocks = &efi_disk_write_blocks, |
| 266 | .flush_blocks = &efi_disk_flush_blocks, |
| 267 | }; |
| 268 | |
Heinrich Schuchardt | 6203606 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 269 | /** |
| 270 | * efi_fs_from_path() - retrieve simple file system protocol |
| 271 | * |
| 272 | * Gets the simple file system protocol for a file device path. |
Heinrich Schuchardt | 3957876 | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 273 | * |
| 274 | * The full path provided is split into device part and into a file |
| 275 | * part. The device part is used to find the handle on which the |
| 276 | * simple file system protocol is installed. |
| 277 | * |
Heinrich Schuchardt | 6203606 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 278 | * @full_path: device path including device and file |
| 279 | * Return: simple file system protocol |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 280 | */ |
| 281 | struct efi_simple_file_system_protocol * |
Heinrich Schuchardt | 3957876 | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 282 | efi_fs_from_path(struct efi_device_path *full_path) |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 283 | { |
| 284 | struct efi_object *efiobj; |
Heinrich Schuchardt | 3957876 | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 285 | struct efi_handler *handler; |
| 286 | struct efi_device_path *device_path; |
| 287 | struct efi_device_path *file_path; |
| 288 | efi_status_t ret; |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 289 | |
Heinrich Schuchardt | 3957876 | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 290 | /* Split the path into a device part and a file part */ |
| 291 | ret = efi_dp_split_file_path(full_path, &device_path, &file_path); |
| 292 | if (ret != EFI_SUCCESS) |
| 293 | return NULL; |
| 294 | efi_free_pool(file_path); |
| 295 | |
| 296 | /* Get the EFI object for the partition */ |
| 297 | efiobj = efi_dp_find_obj(device_path, NULL); |
| 298 | efi_free_pool(device_path); |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 299 | if (!efiobj) |
| 300 | return NULL; |
| 301 | |
Heinrich Schuchardt | 3957876 | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 302 | /* Find the simple file system protocol */ |
| 303 | ret = efi_search_protocol(efiobj, &efi_simple_file_system_protocol_guid, |
| 304 | &handler); |
| 305 | if (ret != EFI_SUCCESS) |
| 306 | return NULL; |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 307 | |
Heinrich Schuchardt | 3957876 | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 308 | /* Return the simple file system protocol for the partition */ |
| 309 | return handler->protocol_interface; |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 310 | } |
| 311 | |
AKASHI Takahiro | 120a01a | 2019-10-07 14:59:38 +0900 | [diff] [blame] | 312 | /** |
| 313 | * efi_fs_exists() - check if a partition bears a file system |
| 314 | * |
| 315 | * @desc: block device descriptor |
| 316 | * @part: partition number |
| 317 | * Return: 1 if a file system exists on the partition |
| 318 | * 0 otherwise |
| 319 | */ |
| 320 | static int efi_fs_exists(struct blk_desc *desc, int part) |
| 321 | { |
| 322 | if (fs_set_blk_dev_with_part(desc, part)) |
| 323 | return 0; |
| 324 | |
| 325 | if (fs_get_type() == FS_TYPE_ANY) |
| 326 | return 0; |
| 327 | |
| 328 | fs_close(); |
| 329 | |
| 330 | return 1; |
| 331 | } |
| 332 | |
Heinrich Schuchardt | 76f5789 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 333 | /** |
Heinrich Schuchardt | 6203606 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 334 | * efi_disk_add_dev() - create a handle for a partition or disk |
Heinrich Schuchardt | 34f5183 | 2017-10-26 19:25:46 +0200 | [diff] [blame] | 335 | * |
Heinrich Schuchardt | 6203606 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 336 | * @parent: parent handle |
| 337 | * @dp_parent: parent device path |
| 338 | * @if_typename: interface name for block device |
| 339 | * @desc: internal block device |
| 340 | * @dev_index: device index for block device |
| 341 | * @offset: offset into disk for simple partitions |
Heinrich Schuchardt | 76f5789 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 342 | * @part: partition |
| 343 | * @disk: pointer to receive the created handle |
Heinrich Schuchardt | 6203606 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 344 | * Return: disk object |
Heinrich Schuchardt | 34f5183 | 2017-10-26 19:25:46 +0200 | [diff] [blame] | 345 | */ |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 346 | static efi_status_t efi_disk_add_dev( |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 347 | efi_handle_t parent, |
| 348 | struct efi_device_path *dp_parent, |
| 349 | const char *if_typename, |
| 350 | struct blk_desc *desc, |
| 351 | int dev_index, |
| 352 | lbaint_t offset, |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 353 | unsigned int part, |
| 354 | struct efi_disk_obj **disk) |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 355 | { |
| 356 | struct efi_disk_obj *diskobj; |
Heinrich Schuchardt | 9fb0f2f | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 357 | efi_status_t ret; |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 358 | |
Alexander Graf | 601db1f | 2016-08-05 14:51:47 +0200 | [diff] [blame] | 359 | /* Don't add empty devices */ |
| 360 | if (!desc->lba) |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 361 | return EFI_NOT_READY; |
Alexander Graf | 601db1f | 2016-08-05 14:51:47 +0200 | [diff] [blame] | 362 | |
Rob Clark | a83272f | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 363 | diskobj = calloc(1, sizeof(*diskobj)); |
Heinrich Schuchardt | 9fb0f2f | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 364 | if (!diskobj) |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 365 | return EFI_OUT_OF_RESOURCES; |
Heinrich Schuchardt | 9fb0f2f | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 366 | |
| 367 | /* Hook up to the device list */ |
Heinrich Schuchardt | 7292872 | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 368 | efi_add_handle(&diskobj->header); |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 369 | |
| 370 | /* Fill in object data */ |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 371 | if (part) { |
| 372 | struct efi_device_path *node = efi_dp_part_node(desc, part); |
| 373 | |
| 374 | diskobj->dp = efi_dp_append_node(dp_parent, node); |
| 375 | efi_free_pool(node); |
| 376 | } else { |
| 377 | diskobj->dp = efi_dp_from_part(desc, part); |
| 378 | } |
Rob Clark | a83272f | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 379 | diskobj->part = part; |
Heinrich Schuchardt | 7292872 | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 380 | ret = efi_add_protocol(&diskobj->header, &efi_block_io_guid, |
Heinrich Schuchardt | 9fb0f2f | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 381 | &diskobj->ops); |
| 382 | if (ret != EFI_SUCCESS) |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 383 | return ret; |
Heinrich Schuchardt | 7292872 | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 384 | ret = efi_add_protocol(&diskobj->header, &efi_guid_device_path, |
Heinrich Schuchardt | 9fb0f2f | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 385 | diskobj->dp); |
| 386 | if (ret != EFI_SUCCESS) |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 387 | return ret; |
AKASHI Takahiro | 356ef90 | 2019-10-07 14:59:39 +0900 | [diff] [blame] | 388 | /* partitions or whole disk without partitions */ |
| 389 | if ((part || desc->part_type == PART_TYPE_UNKNOWN) && |
| 390 | efi_fs_exists(desc, part)) { |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 391 | diskobj->volume = efi_simple_file_system(desc, part, |
| 392 | diskobj->dp); |
Heinrich Schuchardt | 7292872 | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 393 | ret = efi_add_protocol(&diskobj->header, |
Heinrich Schuchardt | 9fb0f2f | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 394 | &efi_simple_file_system_protocol_guid, |
Heinrich Schuchardt | ce721a8 | 2018-01-19 20:24:38 +0100 | [diff] [blame] | 395 | diskobj->volume); |
Heinrich Schuchardt | 9fb0f2f | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 396 | if (ret != EFI_SUCCESS) |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 397 | return ret; |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 398 | } |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 399 | diskobj->ops = block_io_disk_template; |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 400 | diskobj->ifname = if_typename; |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 401 | diskobj->dev_index = dev_index; |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 402 | diskobj->offset = offset; |
Alexander Graf | 34118e7 | 2016-08-05 14:49:53 +0200 | [diff] [blame] | 403 | diskobj->desc = desc; |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 404 | |
| 405 | /* Fill in EFI IO Media info (for read/write callbacks) */ |
| 406 | diskobj->media.removable_media = desc->removable; |
| 407 | diskobj->media.media_present = 1; |
Heinrich Schuchardt | 3592252 | 2019-09-05 19:31:23 +0200 | [diff] [blame] | 408 | /* |
| 409 | * MediaID is just an arbitrary counter. |
| 410 | * We have to change it if the medium is removed or changed. |
| 411 | */ |
| 412 | diskobj->media.media_id = 1; |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 413 | diskobj->media.block_size = desc->blksz; |
| 414 | diskobj->media.io_align = desc->blksz; |
Alexander Graf | 601db1f | 2016-08-05 14:51:47 +0200 | [diff] [blame] | 415 | diskobj->media.last_block = desc->lba - offset; |
Heinrich Schuchardt | af8c5b6 | 2020-03-19 15:45:52 +0100 | [diff] [blame] | 416 | if (part) |
Emmanuel Vadot | 5bf2964 | 2017-12-11 19:22:33 +0100 | [diff] [blame] | 417 | diskobj->media.logical_partition = 1; |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 418 | diskobj->ops.media = &diskobj->media; |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 419 | if (disk) |
| 420 | *disk = diskobj; |
| 421 | return EFI_SUCCESS; |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 422 | } |
| 423 | |
Heinrich Schuchardt | 6203606 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 424 | /** |
| 425 | * efi_disk_create_partitions() - create handles and protocols for partitions |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 426 | * |
Heinrich Schuchardt | 6203606 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 427 | * Create handles and protocols for the partitions of a block device. |
| 428 | * |
| 429 | * @parent: handle of the parent disk |
Heinrich Schuchardt | 76f5789 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 430 | * @desc: block device |
Heinrich Schuchardt | 6203606 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 431 | * @if_typename: interface type |
| 432 | * @diskid: device number |
| 433 | * @pdevname: device name |
| 434 | * Return: number of partitions created |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 435 | */ |
| 436 | int efi_disk_create_partitions(efi_handle_t parent, struct blk_desc *desc, |
| 437 | const char *if_typename, int diskid, |
| 438 | const char *pdevname) |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 439 | { |
| 440 | int disks = 0; |
Alexander Graf | 3491ee7 | 2016-04-11 16:16:20 +0200 | [diff] [blame] | 441 | char devname[32] = { 0 }; /* dp->str is u16[32] long */ |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 442 | disk_partition_t info; |
Jonathan Gray | d35cbd5 | 2017-10-10 13:55:26 +1100 | [diff] [blame] | 443 | int part; |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 444 | struct efi_device_path *dp = NULL; |
| 445 | efi_status_t ret; |
| 446 | struct efi_handler *handler; |
| 447 | |
| 448 | /* Get the device path of the parent */ |
| 449 | ret = efi_search_protocol(parent, &efi_guid_device_path, &handler); |
| 450 | if (ret == EFI_SUCCESS) |
| 451 | dp = handler->protocol_interface; |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 452 | |
Alexander Graf | 83a83f2 | 2017-12-01 16:10:33 +0100 | [diff] [blame] | 453 | /* Add devices for each partition */ |
Jonathan Gray | d35cbd5 | 2017-10-10 13:55:26 +1100 | [diff] [blame] | 454 | for (part = 1; part <= MAX_SEARCH_PARTITIONS; part++) { |
| 455 | if (part_get_info(desc, part, &info)) |
| 456 | continue; |
Alexander Graf | 34118e7 | 2016-08-05 14:49:53 +0200 | [diff] [blame] | 457 | snprintf(devname, sizeof(devname), "%s:%d", pdevname, |
| 458 | part); |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 459 | ret = efi_disk_add_dev(parent, dp, if_typename, desc, diskid, |
| 460 | info.start, part, NULL); |
| 461 | if (ret != EFI_SUCCESS) { |
| 462 | printf("Adding partition %s failed\n", pdevname); |
| 463 | continue; |
| 464 | } |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 465 | disks++; |
| 466 | } |
Rob Clark | a83272f | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 467 | |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 468 | return disks; |
| 469 | } |
| 470 | |
Heinrich Schuchardt | 6203606 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 471 | /** |
| 472 | * efi_disk_register() - register block devices |
| 473 | * |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 474 | * U-Boot doesn't have a list of all online disk devices. So when running our |
| 475 | * EFI payload, we scan through all of the potentially available ones and |
| 476 | * store them in our object pool. |
| 477 | * |
Heinrich Schuchardt | 6203606 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 478 | * This function is called in efi_init_obj_list(). |
| 479 | * |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 480 | * TODO(sjg@chromium.org): Actually with CONFIG_BLK, U-Boot does have this. |
| 481 | * Consider converting the code to look up devices as needed. The EFI device |
| 482 | * could be a child of the UCLASS_BLK block device, perhaps. |
| 483 | * |
Heinrich Schuchardt | 6203606 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 484 | * Return: status code |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 485 | */ |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 486 | efi_status_t efi_disk_register(void) |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 487 | { |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 488 | struct efi_disk_obj *disk; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 489 | int disks = 0; |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 490 | efi_status_t ret; |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 491 | #ifdef CONFIG_BLK |
| 492 | struct udevice *dev; |
| 493 | |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 494 | for (uclass_first_device_check(UCLASS_BLK, &dev); dev; |
xypron.glpk@gmx.de | 308cd8e | 2017-06-20 19:10:27 +0000 | [diff] [blame] | 495 | uclass_next_device_check(&dev)) { |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 496 | struct blk_desc *desc = dev_get_uclass_platdata(dev); |
Heinrich Schuchardt | 6a18bb3 | 2018-01-19 20:24:44 +0100 | [diff] [blame] | 497 | const char *if_typename = blk_get_if_type_name(desc->if_type); |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 498 | |
Alexander Graf | 83a83f2 | 2017-12-01 16:10:33 +0100 | [diff] [blame] | 499 | /* Add block device for the full device */ |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 500 | printf("Scanning disk %s...\n", dev->name); |
| 501 | ret = efi_disk_add_dev(NULL, NULL, if_typename, |
| 502 | desc, desc->devnum, 0, 0, &disk); |
| 503 | if (ret == EFI_NOT_READY) { |
| 504 | printf("Disk %s not ready\n", dev->name); |
| 505 | continue; |
| 506 | } |
| 507 | if (ret) { |
| 508 | printf("ERROR: failure to add disk device %s, r = %lu\n", |
| 509 | dev->name, ret & ~EFI_ERROR_MASK); |
| 510 | return ret; |
| 511 | } |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 512 | disks++; |
| 513 | |
Alexander Graf | 83a83f2 | 2017-12-01 16:10:33 +0100 | [diff] [blame] | 514 | /* Partitions show up as block devices in EFI */ |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 515 | disks += efi_disk_create_partitions( |
Heinrich Schuchardt | 7292872 | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 516 | &disk->header, desc, if_typename, |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 517 | desc->devnum, dev->name); |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 518 | } |
| 519 | #else |
| 520 | int i, if_type; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 521 | |
| 522 | /* Search for all available disk devices */ |
Simon Glass | e3dfa91 | 2016-05-01 13:52:32 -0600 | [diff] [blame] | 523 | for (if_type = 0; if_type < IF_TYPE_COUNT; if_type++) { |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 524 | const struct blk_driver *cur_drvr; |
| 525 | const char *if_typename; |
| 526 | |
Simon Glass | e3dfa91 | 2016-05-01 13:52:32 -0600 | [diff] [blame] | 527 | cur_drvr = blk_driver_lookup_type(if_type); |
| 528 | if (!cur_drvr) |
| 529 | continue; |
| 530 | |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 531 | if_typename = cur_drvr->if_typename; |
| 532 | printf("Scanning disks on %s...\n", if_typename); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 533 | for (i = 0; i < 4; i++) { |
| 534 | struct blk_desc *desc; |
Alexander Graf | 3491ee7 | 2016-04-11 16:16:20 +0200 | [diff] [blame] | 535 | char devname[32] = { 0 }; /* dp->str is u16[32] long */ |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 536 | |
Simon Glass | e3dfa91 | 2016-05-01 13:52:32 -0600 | [diff] [blame] | 537 | desc = blk_get_devnum_by_type(if_type, i); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 538 | if (!desc) |
| 539 | continue; |
| 540 | if (desc->type == DEV_TYPE_UNKNOWN) |
| 541 | continue; |
| 542 | |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 543 | snprintf(devname, sizeof(devname), "%s%d", |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 544 | if_typename, i); |
Rob Clark | 1b2ccbb | 2017-10-08 11:33:08 -0400 | [diff] [blame] | 545 | |
Alexander Graf | 83a83f2 | 2017-12-01 16:10:33 +0100 | [diff] [blame] | 546 | /* Add block device for the full device */ |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 547 | ret = efi_disk_add_dev(NULL, NULL, if_typename, desc, |
| 548 | i, 0, 0, &disk); |
| 549 | if (ret == EFI_NOT_READY) { |
| 550 | printf("Disk %s not ready\n", devname); |
| 551 | continue; |
| 552 | } |
| 553 | if (ret) { |
| 554 | printf("ERROR: failure to add disk device %s, r = %lu\n", |
| 555 | devname, ret & ~EFI_ERROR_MASK); |
| 556 | return ret; |
| 557 | } |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 558 | disks++; |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 559 | |
Alexander Graf | 83a83f2 | 2017-12-01 16:10:33 +0100 | [diff] [blame] | 560 | /* Partitions show up as block devices in EFI */ |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 561 | disks += efi_disk_create_partitions |
Heinrich Schuchardt | 7292872 | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 562 | (&disk->header, desc, |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 563 | if_typename, i, devname); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 564 | } |
| 565 | } |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 566 | #endif |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 567 | printf("Found %d disks\n", disks); |
| 568 | |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 569 | return EFI_SUCCESS; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 570 | } |