2 * EFI application disk support
4 * Copyright (c) 2016 Alexander Graf
6 * SPDX-License-Identifier: GPL-2.0+
12 #include <efi_loader.h>
17 static const efi_guid_t efi_block_io_guid = BLOCK_IO_GUID;
20 /* Generic EFI object parent class data */
21 struct efi_object parent;
22 /* EFI Interface callback struct for block I/O */
23 struct efi_block_io ops;
24 /* U-Boot ifname for block device */
26 /* U-Boot dev_index for block device */
28 /* EFI Interface Media descriptor struct, referenced by ops */
29 struct efi_block_io_media media;
30 /* EFI device path to this block device */
31 struct efi_device_path_file_path *dp;
32 /* Offset into disk for simple partitions */
36 static efi_status_t efi_disk_open_block(void *handle, efi_guid_t *protocol,
37 void **protocol_interface, void *agent_handle,
38 void *controller_handle, uint32_t attributes)
40 struct efi_disk_obj *diskobj = handle;
42 *protocol_interface = &diskobj->ops;
47 static efi_status_t efi_disk_open_dp(void *handle, efi_guid_t *protocol,
48 void **protocol_interface, void *agent_handle,
49 void *controller_handle, uint32_t attributes)
51 struct efi_disk_obj *diskobj = handle;
53 *protocol_interface = diskobj->dp;
58 static efi_status_t EFIAPI efi_disk_reset(struct efi_block_io *this,
59 char extended_verification)
61 EFI_ENTRY("%p, %x", this, extended_verification);
62 return EFI_EXIT(EFI_DEVICE_ERROR);
65 enum efi_disk_direction {
70 static efi_status_t EFIAPI efi_disk_rw_blocks(struct efi_block_io *this,
71 u32 media_id, u64 lba, unsigned long buffer_size,
72 void *buffer, enum efi_disk_direction direction)
74 struct efi_disk_obj *diskobj;
75 struct blk_desc *desc;
80 diskobj = container_of(this, struct efi_disk_obj, ops);
81 if (!(desc = blk_get_dev(diskobj->ifname, diskobj->dev_index)))
82 return EFI_EXIT(EFI_DEVICE_ERROR);
84 blocks = buffer_size / blksz;
85 lba += diskobj->offset;
87 debug("EFI: %s:%d blocks=%x lba=%"PRIx64" blksz=%x dir=%d\n", __func__,
88 __LINE__, blocks, lba, blksz, direction);
90 /* We only support full block access */
91 if (buffer_size & (blksz - 1))
92 return EFI_EXIT(EFI_DEVICE_ERROR);
94 if (direction == EFI_DISK_READ)
95 n = blk_dread(desc, lba, blocks, buffer);
97 n = blk_dwrite(desc, lba, blocks, buffer);
99 /* We don't do interrupts, so check for timers cooperatively */
102 debug("EFI: %s:%d n=%lx blocks=%x\n", __func__, __LINE__, n, blocks);
105 return EFI_EXIT(EFI_DEVICE_ERROR);
107 return EFI_EXIT(EFI_SUCCESS);
110 static efi_status_t efi_disk_read_blocks(struct efi_block_io *this,
111 u32 media_id, u64 lba, unsigned long buffer_size,
114 void *real_buffer = buffer;
117 #ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
118 if (buffer_size > EFI_LOADER_BOUNCE_BUFFER_SIZE) {
119 r = efi_disk_read_blocks(this, media_id, lba,
120 EFI_LOADER_BOUNCE_BUFFER_SIZE, buffer);
121 if (r != EFI_SUCCESS)
123 return efi_disk_read_blocks(this, media_id, lba +
124 EFI_LOADER_BOUNCE_BUFFER_SIZE / this->media->block_size,
125 buffer_size - EFI_LOADER_BOUNCE_BUFFER_SIZE,
126 buffer + EFI_LOADER_BOUNCE_BUFFER_SIZE);
129 real_buffer = efi_bounce_buffer;
132 EFI_ENTRY("%p, %x, %"PRIx64", %lx, %p", this, media_id, lba,
133 buffer_size, buffer);
135 r = efi_disk_rw_blocks(this, media_id, lba, buffer_size, real_buffer,
138 /* Copy from bounce buffer to real buffer if necessary */
139 if ((r == EFI_SUCCESS) && (real_buffer != buffer))
140 memcpy(buffer, real_buffer, buffer_size);
145 static efi_status_t efi_disk_write_blocks(struct efi_block_io *this,
146 u32 media_id, u64 lba, unsigned long buffer_size,
149 void *real_buffer = buffer;
152 #ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
153 if (buffer_size > EFI_LOADER_BOUNCE_BUFFER_SIZE) {
154 r = efi_disk_write_blocks(this, media_id, lba,
155 EFI_LOADER_BOUNCE_BUFFER_SIZE, buffer);
156 if (r != EFI_SUCCESS)
158 return efi_disk_write_blocks(this, media_id, lba +
159 EFI_LOADER_BOUNCE_BUFFER_SIZE / this->media->block_size,
160 buffer_size - EFI_LOADER_BOUNCE_BUFFER_SIZE,
161 buffer + EFI_LOADER_BOUNCE_BUFFER_SIZE);
164 real_buffer = efi_bounce_buffer;
167 EFI_ENTRY("%p, %x, %"PRIx64", %lx, %p", this, media_id, lba,
168 buffer_size, buffer);
170 /* Populate bounce buffer if necessary */
171 if (real_buffer != buffer)
172 memcpy(real_buffer, buffer, buffer_size);
174 r = efi_disk_rw_blocks(this, media_id, lba, buffer_size, real_buffer,
180 static efi_status_t EFIAPI efi_disk_flush_blocks(struct efi_block_io *this)
182 /* We always write synchronously */
183 EFI_ENTRY("%p", this);
184 return EFI_EXIT(EFI_SUCCESS);
187 static const struct efi_block_io block_io_disk_template = {
188 .reset = &efi_disk_reset,
189 .read_blocks = &efi_disk_read_blocks,
190 .write_blocks = &efi_disk_write_blocks,
191 .flush_blocks = &efi_disk_flush_blocks,
194 static void efi_disk_add_dev(const char *name,
195 const char *if_typename,
196 const struct blk_desc *desc,
200 struct efi_disk_obj *diskobj;
201 struct efi_device_path_file_path *dp;
202 int objlen = sizeof(*diskobj) + (sizeof(*dp) * 2);
204 diskobj = calloc(1, objlen);
206 /* Fill in object data */
207 diskobj->parent.protocols[0].guid = &efi_block_io_guid;
208 diskobj->parent.protocols[0].open = efi_disk_open_block;
209 diskobj->parent.protocols[1].guid = &efi_guid_device_path;
210 diskobj->parent.protocols[1].open = efi_disk_open_dp;
211 diskobj->parent.handle = diskobj;
212 diskobj->ops = block_io_disk_template;
213 diskobj->ifname = if_typename;
214 diskobj->dev_index = dev_index;
215 diskobj->offset = offset;
217 /* Fill in EFI IO Media info (for read/write callbacks) */
218 diskobj->media.removable_media = desc->removable;
219 diskobj->media.media_present = 1;
220 diskobj->media.block_size = desc->blksz;
221 diskobj->media.io_align = desc->blksz;
222 diskobj->media.last_block = desc->lba;
223 diskobj->ops.media = &diskobj->media;
225 /* Fill in device path */
226 dp = (void*)&diskobj[1];
228 dp[0].dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE;
229 dp[0].dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH;
230 dp[0].dp.length = sizeof(*dp);
231 ascii2unicode(dp[0].str, name);
233 dp[1].dp.type = DEVICE_PATH_TYPE_END;
234 dp[1].dp.sub_type = DEVICE_PATH_SUB_TYPE_END;
235 dp[1].dp.length = sizeof(*dp);
237 /* Hook up to the device list */
238 list_add_tail(&diskobj->parent.link, &efi_obj_list);
241 static int efi_disk_create_eltorito(struct blk_desc *desc,
242 const char *if_typename,
246 #ifdef CONFIG_ISO_PARTITION
247 char devname[32] = { 0 }; /* dp->str is u16[32] long */
248 disk_partition_t info;
251 if (desc->part_type != PART_TYPE_ISO)
254 while (!part_get_info(desc, part, &info)) {
255 snprintf(devname, sizeof(devname), "%s%d:%d", if_typename,
257 efi_disk_add_dev(devname, if_typename, desc, diskid,
268 * U-Boot doesn't have a list of all online disk devices. So when running our
269 * EFI payload, we scan through all of the potentially available ones and
270 * store them in our object pool.
272 * TODO(sjg@chromium.org): Actually with CONFIG_BLK, U-Boot does have this.
273 * Consider converting the code to look up devices as needed. The EFI device
274 * could be a child of the UCLASS_BLK block device, perhaps.
276 * This gets called from do_bootefi_exec().
278 int efi_disk_register(void)
284 for (uclass_first_device(UCLASS_BLK, &dev);
286 uclass_next_device(&dev)) {
287 struct blk_desc *desc = dev_get_uclass_platdata(dev);
288 const char *if_typename = dev->driver->name;
290 printf("Scanning disk %s...\n", dev->name);
291 efi_disk_add_dev(dev->name, if_typename, desc, desc->devnum, 0);
295 * El Torito images show up as block devices in an EFI world,
296 * so let's create them here
298 disks += efi_disk_create_eltorito(desc, if_typename,
304 /* Search for all available disk devices */
305 for (if_type = 0; if_type < IF_TYPE_COUNT; if_type++) {
306 const struct blk_driver *cur_drvr;
307 const char *if_typename;
309 cur_drvr = blk_driver_lookup_type(if_type);
313 if_typename = cur_drvr->if_typename;
314 printf("Scanning disks on %s...\n", if_typename);
315 for (i = 0; i < 4; i++) {
316 struct blk_desc *desc;
317 char devname[32] = { 0 }; /* dp->str is u16[32] long */
319 desc = blk_get_devnum_by_type(if_type, i);
322 if (desc->type == DEV_TYPE_UNKNOWN)
325 snprintf(devname, sizeof(devname), "%s%d",
327 efi_disk_add_dev(devname, if_typename, desc, i, 0);
331 * El Torito images show up as block devices
332 * in an EFI world, so let's create them here
334 disks += efi_disk_create_eltorito(desc, if_typename, i);
338 printf("Found %d disks\n", disks);