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> |
| 12 | #include <inttypes.h> |
| 13 | #include <part.h> |
| 14 | #include <malloc.h> |
| 15 | |
Heinrich Schuchardt | 405afb5 | 2018-01-19 20:24:45 +0100 | [diff] [blame] | 16 | const efi_guid_t efi_block_io_guid = BLOCK_IO_GUID; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 17 | |
| 18 | struct efi_disk_obj { |
| 19 | /* Generic EFI object parent class data */ |
| 20 | struct efi_object parent; |
| 21 | /* EFI Interface callback struct for block I/O */ |
| 22 | struct efi_block_io ops; |
| 23 | /* U-Boot ifname for block device */ |
| 24 | const char *ifname; |
| 25 | /* U-Boot dev_index for block device */ |
| 26 | int dev_index; |
| 27 | /* EFI Interface Media descriptor struct, referenced by ops */ |
| 28 | struct efi_block_io_media media; |
| 29 | /* EFI device path to this block device */ |
Rob Clark | a83272f | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 30 | struct efi_device_path *dp; |
| 31 | /* partition # */ |
| 32 | unsigned int part; |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 33 | /* handle to filesys proto (for partition objects) */ |
| 34 | struct efi_simple_file_system_protocol *volume; |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 35 | /* Offset into disk for simple partitions */ |
| 36 | lbaint_t offset; |
Alexander Graf | 34118e7 | 2016-08-05 14:49:53 +0200 | [diff] [blame] | 37 | /* Internal block device */ |
Rob Clark | a83272f | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 38 | struct blk_desc *desc; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 39 | }; |
| 40 | |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 41 | static efi_status_t EFIAPI efi_disk_reset(struct efi_block_io *this, |
| 42 | char extended_verification) |
| 43 | { |
| 44 | EFI_ENTRY("%p, %x", this, extended_verification); |
| 45 | return EFI_EXIT(EFI_DEVICE_ERROR); |
| 46 | } |
| 47 | |
| 48 | enum efi_disk_direction { |
| 49 | EFI_DISK_READ, |
| 50 | EFI_DISK_WRITE, |
| 51 | }; |
| 52 | |
Heinrich Schuchardt | 9ce0617 | 2017-08-26 22:33:13 +0200 | [diff] [blame] | 53 | 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] | 54 | u32 media_id, u64 lba, unsigned long buffer_size, |
| 55 | void *buffer, enum efi_disk_direction direction) |
| 56 | { |
| 57 | struct efi_disk_obj *diskobj; |
| 58 | struct blk_desc *desc; |
| 59 | int blksz; |
| 60 | int blocks; |
| 61 | unsigned long n; |
| 62 | |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 63 | diskobj = container_of(this, struct efi_disk_obj, ops); |
Alexander Graf | 34118e7 | 2016-08-05 14:49:53 +0200 | [diff] [blame] | 64 | desc = (struct blk_desc *) diskobj->desc; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 65 | blksz = desc->blksz; |
| 66 | blocks = buffer_size / blksz; |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 67 | lba += diskobj->offset; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 68 | |
Alexander Graf | 62a6748 | 2016-06-02 11:38:27 +0200 | [diff] [blame] | 69 | debug("EFI: %s:%d blocks=%x lba=%"PRIx64" blksz=%x dir=%d\n", __func__, |
| 70 | __LINE__, blocks, lba, blksz, direction); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 71 | |
| 72 | /* We only support full block access */ |
| 73 | if (buffer_size & (blksz - 1)) |
Rob Clark | 99c4387 | 2017-07-25 20:28:29 -0400 | [diff] [blame] | 74 | return EFI_DEVICE_ERROR; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 75 | |
| 76 | if (direction == EFI_DISK_READ) |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 77 | n = blk_dread(desc, lba, blocks, buffer); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 78 | else |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 79 | n = blk_dwrite(desc, lba, blocks, buffer); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 80 | |
| 81 | /* We don't do interrupts, so check for timers cooperatively */ |
| 82 | efi_timer_check(); |
| 83 | |
Alexander Graf | 62a6748 | 2016-06-02 11:38:27 +0200 | [diff] [blame] | 84 | debug("EFI: %s:%d n=%lx blocks=%x\n", __func__, __LINE__, n, blocks); |
| 85 | |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 86 | if (n != blocks) |
Rob Clark | 99c4387 | 2017-07-25 20:28:29 -0400 | [diff] [blame] | 87 | return EFI_DEVICE_ERROR; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 88 | |
Rob Clark | 99c4387 | 2017-07-25 20:28:29 -0400 | [diff] [blame] | 89 | return EFI_SUCCESS; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 90 | } |
| 91 | |
Simon Glass | c2194bf | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 92 | 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] | 93 | u32 media_id, u64 lba, efi_uintn_t buffer_size, |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 94 | void *buffer) |
| 95 | { |
Alexander Graf | 7c00a3c | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 96 | void *real_buffer = buffer; |
| 97 | efi_status_t r; |
| 98 | |
| 99 | #ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER |
| 100 | if (buffer_size > EFI_LOADER_BOUNCE_BUFFER_SIZE) { |
| 101 | r = efi_disk_read_blocks(this, media_id, lba, |
| 102 | EFI_LOADER_BOUNCE_BUFFER_SIZE, buffer); |
| 103 | if (r != EFI_SUCCESS) |
| 104 | return r; |
| 105 | return efi_disk_read_blocks(this, media_id, lba + |
| 106 | EFI_LOADER_BOUNCE_BUFFER_SIZE / this->media->block_size, |
| 107 | buffer_size - EFI_LOADER_BOUNCE_BUFFER_SIZE, |
| 108 | buffer + EFI_LOADER_BOUNCE_BUFFER_SIZE); |
| 109 | } |
| 110 | |
| 111 | real_buffer = efi_bounce_buffer; |
| 112 | #endif |
| 113 | |
Heinrich Schuchardt | 0844f79 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 114 | EFI_ENTRY("%p, %x, %" PRIx64 ", %zx, %p", this, media_id, lba, |
Alexander Graf | 7c00a3c | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 115 | buffer_size, buffer); |
| 116 | |
| 117 | r = efi_disk_rw_blocks(this, media_id, lba, buffer_size, real_buffer, |
| 118 | EFI_DISK_READ); |
| 119 | |
| 120 | /* Copy from bounce buffer to real buffer if necessary */ |
| 121 | if ((r == EFI_SUCCESS) && (real_buffer != buffer)) |
| 122 | memcpy(buffer, real_buffer, buffer_size); |
| 123 | |
| 124 | return EFI_EXIT(r); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 125 | } |
| 126 | |
Simon Glass | c2194bf | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 127 | 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] | 128 | u32 media_id, u64 lba, efi_uintn_t buffer_size, |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 129 | void *buffer) |
| 130 | { |
Alexander Graf | 7c00a3c | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 131 | void *real_buffer = buffer; |
| 132 | efi_status_t r; |
| 133 | |
| 134 | #ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER |
| 135 | if (buffer_size > EFI_LOADER_BOUNCE_BUFFER_SIZE) { |
| 136 | r = efi_disk_write_blocks(this, media_id, lba, |
| 137 | EFI_LOADER_BOUNCE_BUFFER_SIZE, buffer); |
| 138 | if (r != EFI_SUCCESS) |
| 139 | return r; |
| 140 | return efi_disk_write_blocks(this, media_id, lba + |
| 141 | EFI_LOADER_BOUNCE_BUFFER_SIZE / this->media->block_size, |
| 142 | buffer_size - EFI_LOADER_BOUNCE_BUFFER_SIZE, |
| 143 | buffer + EFI_LOADER_BOUNCE_BUFFER_SIZE); |
| 144 | } |
| 145 | |
| 146 | real_buffer = efi_bounce_buffer; |
| 147 | #endif |
| 148 | |
Heinrich Schuchardt | 0844f79 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 149 | EFI_ENTRY("%p, %x, %" PRIx64 ", %zx, %p", this, media_id, lba, |
Alexander Graf | 7c00a3c | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 150 | buffer_size, buffer); |
| 151 | |
| 152 | /* Populate bounce buffer if necessary */ |
| 153 | if (real_buffer != buffer) |
| 154 | memcpy(real_buffer, buffer, buffer_size); |
| 155 | |
| 156 | r = efi_disk_rw_blocks(this, media_id, lba, buffer_size, real_buffer, |
| 157 | EFI_DISK_WRITE); |
| 158 | |
| 159 | return EFI_EXIT(r); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | static efi_status_t EFIAPI efi_disk_flush_blocks(struct efi_block_io *this) |
| 163 | { |
| 164 | /* We always write synchronously */ |
| 165 | EFI_ENTRY("%p", this); |
| 166 | return EFI_EXIT(EFI_SUCCESS); |
| 167 | } |
| 168 | |
| 169 | static const struct efi_block_io block_io_disk_template = { |
| 170 | .reset = &efi_disk_reset, |
| 171 | .read_blocks = &efi_disk_read_blocks, |
| 172 | .write_blocks = &efi_disk_write_blocks, |
| 173 | .flush_blocks = &efi_disk_flush_blocks, |
| 174 | }; |
| 175 | |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 176 | /* |
Heinrich Schuchardt | 3957876 | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 177 | * Get the simple file system protocol for a file device path. |
| 178 | * |
| 179 | * The full path provided is split into device part and into a file |
| 180 | * part. The device part is used to find the handle on which the |
| 181 | * simple file system protocol is installed. |
| 182 | * |
| 183 | * @full_path device path including device and file |
| 184 | * @return simple file system protocol |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 185 | */ |
| 186 | struct efi_simple_file_system_protocol * |
Heinrich Schuchardt | 3957876 | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 187 | efi_fs_from_path(struct efi_device_path *full_path) |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 188 | { |
| 189 | struct efi_object *efiobj; |
Heinrich Schuchardt | 3957876 | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 190 | struct efi_handler *handler; |
| 191 | struct efi_device_path *device_path; |
| 192 | struct efi_device_path *file_path; |
| 193 | efi_status_t ret; |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 194 | |
Heinrich Schuchardt | 3957876 | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 195 | /* Split the path into a device part and a file part */ |
| 196 | ret = efi_dp_split_file_path(full_path, &device_path, &file_path); |
| 197 | if (ret != EFI_SUCCESS) |
| 198 | return NULL; |
| 199 | efi_free_pool(file_path); |
| 200 | |
| 201 | /* Get the EFI object for the partition */ |
| 202 | efiobj = efi_dp_find_obj(device_path, NULL); |
| 203 | efi_free_pool(device_path); |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 204 | if (!efiobj) |
| 205 | return NULL; |
| 206 | |
Heinrich Schuchardt | 3957876 | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 207 | /* Find the simple file system protocol */ |
| 208 | ret = efi_search_protocol(efiobj, &efi_simple_file_system_protocol_guid, |
| 209 | &handler); |
| 210 | if (ret != EFI_SUCCESS) |
| 211 | return NULL; |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 212 | |
Heinrich Schuchardt | 3957876 | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 213 | /* Return the simple file system protocol for the partition */ |
| 214 | return handler->protocol_interface; |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 215 | } |
| 216 | |
Heinrich Schuchardt | 34f5183 | 2017-10-26 19:25:46 +0200 | [diff] [blame] | 217 | /* |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 218 | * Create a handle for a partition or disk |
Heinrich Schuchardt | 34f5183 | 2017-10-26 19:25:46 +0200 | [diff] [blame] | 219 | * |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 220 | * @parent parent handle |
| 221 | * @dp_parent parent device path |
Heinrich Schuchardt | 34f5183 | 2017-10-26 19:25:46 +0200 | [diff] [blame] | 222 | * @if_typename interface name for block device |
| 223 | * @desc internal block device |
| 224 | * @dev_index device index for block device |
| 225 | * @offset offset into disk for simple partitions |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 226 | * @return disk object |
Heinrich Schuchardt | 34f5183 | 2017-10-26 19:25:46 +0200 | [diff] [blame] | 227 | */ |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 228 | static efi_status_t efi_disk_add_dev( |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 229 | efi_handle_t parent, |
| 230 | struct efi_device_path *dp_parent, |
| 231 | const char *if_typename, |
| 232 | struct blk_desc *desc, |
| 233 | int dev_index, |
| 234 | lbaint_t offset, |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 235 | unsigned int part, |
| 236 | struct efi_disk_obj **disk) |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 237 | { |
| 238 | struct efi_disk_obj *diskobj; |
Heinrich Schuchardt | 9fb0f2f | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 239 | efi_status_t ret; |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 240 | |
Alexander Graf | 601db1f | 2016-08-05 14:51:47 +0200 | [diff] [blame] | 241 | /* Don't add empty devices */ |
| 242 | if (!desc->lba) |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 243 | return EFI_NOT_READY; |
Alexander Graf | 601db1f | 2016-08-05 14:51:47 +0200 | [diff] [blame] | 244 | |
Rob Clark | a83272f | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 245 | diskobj = calloc(1, sizeof(*diskobj)); |
Heinrich Schuchardt | 9fb0f2f | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 246 | if (!diskobj) |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 247 | return EFI_OUT_OF_RESOURCES; |
Heinrich Schuchardt | 9fb0f2f | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 248 | |
| 249 | /* Hook up to the device list */ |
Heinrich Schuchardt | 967d7de | 2017-11-26 14:05:23 +0100 | [diff] [blame] | 250 | efi_add_handle(&diskobj->parent); |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 251 | |
| 252 | /* Fill in object data */ |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 253 | if (part) { |
| 254 | struct efi_device_path *node = efi_dp_part_node(desc, part); |
| 255 | |
| 256 | diskobj->dp = efi_dp_append_node(dp_parent, node); |
| 257 | efi_free_pool(node); |
| 258 | } else { |
| 259 | diskobj->dp = efi_dp_from_part(desc, part); |
| 260 | } |
Rob Clark | a83272f | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 261 | diskobj->part = part; |
Heinrich Schuchardt | 9fb0f2f | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 262 | ret = efi_add_protocol(diskobj->parent.handle, &efi_block_io_guid, |
| 263 | &diskobj->ops); |
| 264 | if (ret != EFI_SUCCESS) |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 265 | return ret; |
Heinrich Schuchardt | 9fb0f2f | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 266 | ret = efi_add_protocol(diskobj->parent.handle, &efi_guid_device_path, |
| 267 | diskobj->dp); |
| 268 | if (ret != EFI_SUCCESS) |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 269 | return ret; |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 270 | if (part >= 1) { |
| 271 | diskobj->volume = efi_simple_file_system(desc, part, |
| 272 | diskobj->dp); |
Heinrich Schuchardt | 9fb0f2f | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 273 | ret = efi_add_protocol(diskobj->parent.handle, |
| 274 | &efi_simple_file_system_protocol_guid, |
Heinrich Schuchardt | ce721a8 | 2018-01-19 20:24:38 +0100 | [diff] [blame] | 275 | diskobj->volume); |
Heinrich Schuchardt | 9fb0f2f | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 276 | if (ret != EFI_SUCCESS) |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 277 | return ret; |
Rob Clark | 5314203 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 278 | } |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 279 | diskobj->ops = block_io_disk_template; |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 280 | diskobj->ifname = if_typename; |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 281 | diskobj->dev_index = dev_index; |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 282 | diskobj->offset = offset; |
Alexander Graf | 34118e7 | 2016-08-05 14:49:53 +0200 | [diff] [blame] | 283 | diskobj->desc = desc; |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 284 | |
| 285 | /* Fill in EFI IO Media info (for read/write callbacks) */ |
| 286 | diskobj->media.removable_media = desc->removable; |
| 287 | diskobj->media.media_present = 1; |
| 288 | diskobj->media.block_size = desc->blksz; |
| 289 | diskobj->media.io_align = desc->blksz; |
Alexander Graf | 601db1f | 2016-08-05 14:51:47 +0200 | [diff] [blame] | 290 | diskobj->media.last_block = desc->lba - offset; |
Emmanuel Vadot | 5bf2964 | 2017-12-11 19:22:33 +0100 | [diff] [blame] | 291 | if (part != 0) |
| 292 | diskobj->media.logical_partition = 1; |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 293 | diskobj->ops.media = &diskobj->media; |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 294 | if (disk) |
| 295 | *disk = diskobj; |
| 296 | return EFI_SUCCESS; |
Alexander Graf | 06fe57b | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 297 | } |
| 298 | |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 299 | /* |
| 300 | * Create handles and protocols for the partitions of a block device |
| 301 | * |
| 302 | * @parent handle of the parent disk |
| 303 | * @blk_desc block device |
| 304 | * @if_typename interface type |
| 305 | * @diskid device number |
| 306 | * @pdevname device name |
| 307 | * @return number of partitions created |
| 308 | */ |
| 309 | int efi_disk_create_partitions(efi_handle_t parent, struct blk_desc *desc, |
| 310 | const char *if_typename, int diskid, |
| 311 | const char *pdevname) |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 312 | { |
| 313 | int disks = 0; |
Alexander Graf | 3491ee7 | 2016-04-11 16:16:20 +0200 | [diff] [blame] | 314 | char devname[32] = { 0 }; /* dp->str is u16[32] long */ |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 315 | disk_partition_t info; |
Jonathan Gray | d35cbd5 | 2017-10-10 13:55:26 +1100 | [diff] [blame] | 316 | int part; |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 317 | struct efi_device_path *dp = NULL; |
| 318 | efi_status_t ret; |
| 319 | struct efi_handler *handler; |
| 320 | |
| 321 | /* Get the device path of the parent */ |
| 322 | ret = efi_search_protocol(parent, &efi_guid_device_path, &handler); |
| 323 | if (ret == EFI_SUCCESS) |
| 324 | dp = handler->protocol_interface; |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 325 | |
Alexander Graf | 83a83f2 | 2017-12-01 16:10:33 +0100 | [diff] [blame] | 326 | /* Add devices for each partition */ |
Jonathan Gray | d35cbd5 | 2017-10-10 13:55:26 +1100 | [diff] [blame] | 327 | for (part = 1; part <= MAX_SEARCH_PARTITIONS; part++) { |
| 328 | if (part_get_info(desc, part, &info)) |
| 329 | continue; |
Alexander Graf | 34118e7 | 2016-08-05 14:49:53 +0200 | [diff] [blame] | 330 | snprintf(devname, sizeof(devname), "%s:%d", pdevname, |
| 331 | part); |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 332 | ret = efi_disk_add_dev(parent, dp, if_typename, desc, diskid, |
| 333 | info.start, part, NULL); |
| 334 | if (ret != EFI_SUCCESS) { |
| 335 | printf("Adding partition %s failed\n", pdevname); |
| 336 | continue; |
| 337 | } |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 338 | disks++; |
| 339 | } |
Rob Clark | a83272f | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 340 | |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 341 | return disks; |
| 342 | } |
| 343 | |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 344 | /* |
| 345 | * U-Boot doesn't have a list of all online disk devices. So when running our |
| 346 | * EFI payload, we scan through all of the potentially available ones and |
| 347 | * store them in our object pool. |
| 348 | * |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 349 | * TODO(sjg@chromium.org): Actually with CONFIG_BLK, U-Boot does have this. |
| 350 | * Consider converting the code to look up devices as needed. The EFI device |
| 351 | * could be a child of the UCLASS_BLK block device, perhaps. |
| 352 | * |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 353 | * This gets called from do_bootefi_exec(). |
| 354 | */ |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 355 | efi_status_t efi_disk_register(void) |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 356 | { |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 357 | struct efi_disk_obj *disk; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 358 | int disks = 0; |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 359 | efi_status_t ret; |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 360 | #ifdef CONFIG_BLK |
| 361 | struct udevice *dev; |
| 362 | |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 363 | for (uclass_first_device_check(UCLASS_BLK, &dev); dev; |
xypron.glpk@gmx.de | 308cd8e | 2017-06-20 19:10:27 +0000 | [diff] [blame] | 364 | uclass_next_device_check(&dev)) { |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 365 | struct blk_desc *desc = dev_get_uclass_platdata(dev); |
Heinrich Schuchardt | 6a18bb3 | 2018-01-19 20:24:44 +0100 | [diff] [blame] | 366 | const char *if_typename = blk_get_if_type_name(desc->if_type); |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 367 | |
Alexander Graf | 83a83f2 | 2017-12-01 16:10:33 +0100 | [diff] [blame] | 368 | /* Add block device for the full device */ |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 369 | printf("Scanning disk %s...\n", dev->name); |
| 370 | ret = efi_disk_add_dev(NULL, NULL, if_typename, |
| 371 | desc, desc->devnum, 0, 0, &disk); |
| 372 | if (ret == EFI_NOT_READY) { |
| 373 | printf("Disk %s not ready\n", dev->name); |
| 374 | continue; |
| 375 | } |
| 376 | if (ret) { |
| 377 | printf("ERROR: failure to add disk device %s, r = %lu\n", |
| 378 | dev->name, ret & ~EFI_ERROR_MASK); |
| 379 | return ret; |
| 380 | } |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 381 | disks++; |
| 382 | |
Alexander Graf | 83a83f2 | 2017-12-01 16:10:33 +0100 | [diff] [blame] | 383 | /* Partitions show up as block devices in EFI */ |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 384 | disks += efi_disk_create_partitions( |
| 385 | disk->parent.handle, desc, if_typename, |
| 386 | desc->devnum, dev->name); |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 387 | } |
| 388 | #else |
| 389 | int i, if_type; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 390 | |
| 391 | /* Search for all available disk devices */ |
Simon Glass | e3dfa91 | 2016-05-01 13:52:32 -0600 | [diff] [blame] | 392 | for (if_type = 0; if_type < IF_TYPE_COUNT; if_type++) { |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 393 | const struct blk_driver *cur_drvr; |
| 394 | const char *if_typename; |
| 395 | |
Simon Glass | e3dfa91 | 2016-05-01 13:52:32 -0600 | [diff] [blame] | 396 | cur_drvr = blk_driver_lookup_type(if_type); |
| 397 | if (!cur_drvr) |
| 398 | continue; |
| 399 | |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 400 | if_typename = cur_drvr->if_typename; |
| 401 | printf("Scanning disks on %s...\n", if_typename); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 402 | for (i = 0; i < 4; i++) { |
| 403 | struct blk_desc *desc; |
Alexander Graf | 3491ee7 | 2016-04-11 16:16:20 +0200 | [diff] [blame] | 404 | char devname[32] = { 0 }; /* dp->str is u16[32] long */ |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 405 | |
Simon Glass | e3dfa91 | 2016-05-01 13:52:32 -0600 | [diff] [blame] | 406 | desc = blk_get_devnum_by_type(if_type, i); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 407 | if (!desc) |
| 408 | continue; |
| 409 | if (desc->type == DEV_TYPE_UNKNOWN) |
| 410 | continue; |
| 411 | |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 412 | snprintf(devname, sizeof(devname), "%s%d", |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 413 | if_typename, i); |
Rob Clark | 1b2ccbb | 2017-10-08 11:33:08 -0400 | [diff] [blame] | 414 | |
Alexander Graf | 83a83f2 | 2017-12-01 16:10:33 +0100 | [diff] [blame] | 415 | /* Add block device for the full device */ |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 416 | ret = efi_disk_add_dev(NULL, NULL, if_typename, desc, |
| 417 | i, 0, 0, &disk); |
| 418 | if (ret == EFI_NOT_READY) { |
| 419 | printf("Disk %s not ready\n", devname); |
| 420 | continue; |
| 421 | } |
| 422 | if (ret) { |
| 423 | printf("ERROR: failure to add disk device %s, r = %lu\n", |
| 424 | devname, ret & ~EFI_ERROR_MASK); |
| 425 | return ret; |
| 426 | } |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 427 | disks++; |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 428 | |
Alexander Graf | 83a83f2 | 2017-12-01 16:10:33 +0100 | [diff] [blame] | 429 | /* Partitions show up as block devices in EFI */ |
Heinrich Schuchardt | 6f3de6b | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 430 | disks += efi_disk_create_partitions( |
| 431 | disk->parent.handle, desc, |
| 432 | if_typename, i, devname); |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 433 | } |
| 434 | } |
Simon Glass | 302d4f8 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 435 | #endif |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 436 | printf("Found %d disks\n", disks); |
| 437 | |
Heinrich Schuchardt | cde7a36 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 438 | return EFI_SUCCESS; |
Alexander Graf | e83be45 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 439 | } |