blob: 9007a5f77f3d05950cf37e066c03f43ff1c295e7 [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Graf2a22d052016-03-04 01:10:02 +01002/*
3 * EFI application disk support
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Graf2a22d052016-03-04 01:10:02 +01006 */
7
8#include <common.h>
Simon Glass6dd9faf2016-05-01 13:52:32 -06009#include <blk.h>
Simon Glass487d7562016-05-14 14:03:05 -060010#include <dm.h>
Alexander Graf2a22d052016-03-04 01:10:02 +010011#include <efi_loader.h>
Alexander Graf2a22d052016-03-04 01:10:02 +010012#include <part.h>
13#include <malloc.h>
14
Heinrich Schuchardtdec88e42019-04-20 07:39:11 +020015const efi_guid_t efi_block_io_guid = EFI_BLOCK_IO_PROTOCOL_GUID;
Alexander Graf2a22d052016-03-04 01:10:02 +010016
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +020017/**
18 * struct efi_disk_obj - EFI disk object
19 *
20 * @header: EFI object header
21 * @ops: EFI disk I/O protocol interface
22 * @ifname: interface name for block device
23 * @dev_index: device index of block device
24 * @media: block I/O media information
25 * @dp: device path to the block device
26 * @part: partition
27 * @volume: simple file system protocol of the partition
28 * @offset: offset into disk for simple partition
29 * @desc: internal block device descriptor
30 */
Alexander Graf2a22d052016-03-04 01:10:02 +010031struct efi_disk_obj {
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +020032 struct efi_object header;
Alexander Graf2a22d052016-03-04 01:10:02 +010033 struct efi_block_io ops;
Alexander Graf2a22d052016-03-04 01:10:02 +010034 const char *ifname;
Alexander Graf2a22d052016-03-04 01:10:02 +010035 int dev_index;
Alexander Graf2a22d052016-03-04 01:10:02 +010036 struct efi_block_io_media media;
Rob Clark884bcf62017-09-13 18:05:31 -040037 struct efi_device_path *dp;
Rob Clark884bcf62017-09-13 18:05:31 -040038 unsigned int part;
Rob Clark2a920802017-09-13 18:05:34 -040039 struct efi_simple_file_system_protocol *volume;
Alexander Graf8c3df0b2016-04-11 16:16:18 +020040 lbaint_t offset;
Rob Clark884bcf62017-09-13 18:05:31 -040041 struct blk_desc *desc;
Alexander Graf2a22d052016-03-04 01:10:02 +010042};
43
Heinrich Schuchardtcda9b352019-09-05 20:13:46 +020044/**
45 * efi_disk_reset() - reset block device
46 *
47 * This function implements the Reset service of the EFI_BLOCK_IO_PROTOCOL.
48 *
49 * As U-Boot's block devices do not have a reset function simply return
50 * EFI_SUCCESS.
51 *
52 * See the Unified Extensible Firmware Interface (UEFI) specification for
53 * details.
54 *
55 * @this: pointer to the BLOCK_IO_PROTOCOL
56 * @extended_verification: extended verification
57 * Return: status code
58 */
Alexander Graf2a22d052016-03-04 01:10:02 +010059static efi_status_t EFIAPI efi_disk_reset(struct efi_block_io *this,
60 char extended_verification)
61{
62 EFI_ENTRY("%p, %x", this, extended_verification);
Heinrich Schuchardtcda9b352019-09-05 20:13:46 +020063 return EFI_EXIT(EFI_SUCCESS);
Alexander Graf2a22d052016-03-04 01:10:02 +010064}
65
66enum efi_disk_direction {
67 EFI_DISK_READ,
68 EFI_DISK_WRITE,
69};
70
Heinrich Schuchardta80a2322017-08-26 22:33:13 +020071static efi_status_t efi_disk_rw_blocks(struct efi_block_io *this,
Alexander Graf2a22d052016-03-04 01:10:02 +010072 u32 media_id, u64 lba, unsigned long buffer_size,
73 void *buffer, enum efi_disk_direction direction)
74{
75 struct efi_disk_obj *diskobj;
76 struct blk_desc *desc;
77 int blksz;
78 int blocks;
79 unsigned long n;
80
Alexander Graf2a22d052016-03-04 01:10:02 +010081 diskobj = container_of(this, struct efi_disk_obj, ops);
Alexander Graff9d334b2016-08-05 14:49:53 +020082 desc = (struct blk_desc *) diskobj->desc;
Alexander Graf2a22d052016-03-04 01:10:02 +010083 blksz = desc->blksz;
84 blocks = buffer_size / blksz;
Alexander Graf8c3df0b2016-04-11 16:16:18 +020085 lba += diskobj->offset;
Alexander Graf2a22d052016-03-04 01:10:02 +010086
Heinrich Schuchardt9d3f3392019-09-05 19:43:17 +020087 EFI_PRINT("blocks=%x lba=%llx blksz=%x dir=%d\n",
88 blocks, lba, blksz, direction);
Alexander Graf2a22d052016-03-04 01:10:02 +010089
90 /* We only support full block access */
91 if (buffer_size & (blksz - 1))
Heinrich Schuchardtf59f0822019-09-05 19:31:23 +020092 return EFI_BAD_BUFFER_SIZE;
Alexander Graf2a22d052016-03-04 01:10:02 +010093
94 if (direction == EFI_DISK_READ)
Simon Glass487d7562016-05-14 14:03:05 -060095 n = blk_dread(desc, lba, blocks, buffer);
Alexander Graf2a22d052016-03-04 01:10:02 +010096 else
Simon Glass487d7562016-05-14 14:03:05 -060097 n = blk_dwrite(desc, lba, blocks, buffer);
Alexander Graf2a22d052016-03-04 01:10:02 +010098
99 /* We don't do interrupts, so check for timers cooperatively */
100 efi_timer_check();
101
Heinrich Schuchardt9d3f3392019-09-05 19:43:17 +0200102 EFI_PRINT("n=%lx blocks=%x\n", n, blocks);
Alexander Grafedcef3b2016-06-02 11:38:27 +0200103
Alexander Graf2a22d052016-03-04 01:10:02 +0100104 if (n != blocks)
Rob Clark33049902017-07-25 20:28:29 -0400105 return EFI_DEVICE_ERROR;
Alexander Graf2a22d052016-03-04 01:10:02 +0100106
Rob Clark33049902017-07-25 20:28:29 -0400107 return EFI_SUCCESS;
Alexander Graf2a22d052016-03-04 01:10:02 +0100108}
109
Simon Glasse2754582016-09-25 15:27:32 -0600110static efi_status_t EFIAPI efi_disk_read_blocks(struct efi_block_io *this,
Heinrich Schuchardt4f948652018-01-19 20:24:48 +0100111 u32 media_id, u64 lba, efi_uintn_t buffer_size,
Alexander Graf2a22d052016-03-04 01:10:02 +0100112 void *buffer)
113{
Alexander Graf51735ae2016-05-11 18:25:48 +0200114 void *real_buffer = buffer;
115 efi_status_t r;
116
Heinrich Schuchardtf59f0822019-09-05 19:31:23 +0200117 if (!this)
118 return EFI_INVALID_PARAMETER;
119 /* TODO: check for media changes */
120 if (media_id != this->media->media_id)
121 return EFI_MEDIA_CHANGED;
122 if (!this->media->media_present)
123 return EFI_NO_MEDIA;
124 /* media->io_align is a power of 2 */
125 if ((uintptr_t)buffer & (this->media->io_align - 1))
126 return EFI_INVALID_PARAMETER;
127 if (lba * this->media->block_size + buffer_size >
128 this->media->last_block * this->media->block_size)
129 return EFI_INVALID_PARAMETER;
130
Alexander Graf51735ae2016-05-11 18:25:48 +0200131#ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
132 if (buffer_size > EFI_LOADER_BOUNCE_BUFFER_SIZE) {
133 r = efi_disk_read_blocks(this, media_id, lba,
134 EFI_LOADER_BOUNCE_BUFFER_SIZE, buffer);
135 if (r != EFI_SUCCESS)
136 return r;
137 return efi_disk_read_blocks(this, media_id, lba +
138 EFI_LOADER_BOUNCE_BUFFER_SIZE / this->media->block_size,
139 buffer_size - EFI_LOADER_BOUNCE_BUFFER_SIZE,
140 buffer + EFI_LOADER_BOUNCE_BUFFER_SIZE);
141 }
142
143 real_buffer = efi_bounce_buffer;
144#endif
145
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900146 EFI_ENTRY("%p, %x, %llx, %zx, %p", this, media_id, lba,
Alexander Graf51735ae2016-05-11 18:25:48 +0200147 buffer_size, buffer);
148
149 r = efi_disk_rw_blocks(this, media_id, lba, buffer_size, real_buffer,
150 EFI_DISK_READ);
151
152 /* Copy from bounce buffer to real buffer if necessary */
153 if ((r == EFI_SUCCESS) && (real_buffer != buffer))
154 memcpy(buffer, real_buffer, buffer_size);
155
156 return EFI_EXIT(r);
Alexander Graf2a22d052016-03-04 01:10:02 +0100157}
158
Simon Glasse2754582016-09-25 15:27:32 -0600159static efi_status_t EFIAPI efi_disk_write_blocks(struct efi_block_io *this,
Heinrich Schuchardt4f948652018-01-19 20:24:48 +0100160 u32 media_id, u64 lba, efi_uintn_t buffer_size,
Alexander Graf2a22d052016-03-04 01:10:02 +0100161 void *buffer)
162{
Alexander Graf51735ae2016-05-11 18:25:48 +0200163 void *real_buffer = buffer;
164 efi_status_t r;
165
Heinrich Schuchardtf59f0822019-09-05 19:31:23 +0200166 if (!this)
167 return EFI_INVALID_PARAMETER;
168 if (this->media->read_only)
169 return EFI_WRITE_PROTECTED;
170 /* TODO: check for media changes */
171 if (media_id != this->media->media_id)
172 return EFI_MEDIA_CHANGED;
173 if (!this->media->media_present)
174 return EFI_NO_MEDIA;
175 /* media->io_align is a power of 2 */
176 if ((uintptr_t)buffer & (this->media->io_align - 1))
177 return EFI_INVALID_PARAMETER;
178 if (lba * this->media->block_size + buffer_size >
179 this->media->last_block * this->media->block_size)
180 return EFI_INVALID_PARAMETER;
181
Alexander Graf51735ae2016-05-11 18:25:48 +0200182#ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER
183 if (buffer_size > EFI_LOADER_BOUNCE_BUFFER_SIZE) {
184 r = efi_disk_write_blocks(this, media_id, lba,
185 EFI_LOADER_BOUNCE_BUFFER_SIZE, buffer);
186 if (r != EFI_SUCCESS)
187 return r;
188 return efi_disk_write_blocks(this, media_id, lba +
189 EFI_LOADER_BOUNCE_BUFFER_SIZE / this->media->block_size,
190 buffer_size - EFI_LOADER_BOUNCE_BUFFER_SIZE,
191 buffer + EFI_LOADER_BOUNCE_BUFFER_SIZE);
192 }
193
194 real_buffer = efi_bounce_buffer;
195#endif
196
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900197 EFI_ENTRY("%p, %x, %llx, %zx, %p", this, media_id, lba,
Alexander Graf51735ae2016-05-11 18:25:48 +0200198 buffer_size, buffer);
199
200 /* Populate bounce buffer if necessary */
201 if (real_buffer != buffer)
202 memcpy(real_buffer, buffer, buffer_size);
203
204 r = efi_disk_rw_blocks(this, media_id, lba, buffer_size, real_buffer,
205 EFI_DISK_WRITE);
206
207 return EFI_EXIT(r);
Alexander Graf2a22d052016-03-04 01:10:02 +0100208}
209
210static efi_status_t EFIAPI efi_disk_flush_blocks(struct efi_block_io *this)
211{
212 /* We always write synchronously */
213 EFI_ENTRY("%p", this);
214 return EFI_EXIT(EFI_SUCCESS);
215}
216
217static const struct efi_block_io block_io_disk_template = {
218 .reset = &efi_disk_reset,
219 .read_blocks = &efi_disk_read_blocks,
220 .write_blocks = &efi_disk_write_blocks,
221 .flush_blocks = &efi_disk_flush_blocks,
222};
223
Rob Clark2a920802017-09-13 18:05:34 -0400224/*
Heinrich Schuchardt110d80a2018-01-19 20:24:39 +0100225 * Get the simple file system protocol for a file device path.
226 *
227 * The full path provided is split into device part and into a file
228 * part. The device part is used to find the handle on which the
229 * simple file system protocol is installed.
230 *
231 * @full_path device path including device and file
232 * @return simple file system protocol
Rob Clark2a920802017-09-13 18:05:34 -0400233 */
234struct efi_simple_file_system_protocol *
Heinrich Schuchardt110d80a2018-01-19 20:24:39 +0100235efi_fs_from_path(struct efi_device_path *full_path)
Rob Clark2a920802017-09-13 18:05:34 -0400236{
237 struct efi_object *efiobj;
Heinrich Schuchardt110d80a2018-01-19 20:24:39 +0100238 struct efi_handler *handler;
239 struct efi_device_path *device_path;
240 struct efi_device_path *file_path;
241 efi_status_t ret;
Rob Clark2a920802017-09-13 18:05:34 -0400242
Heinrich Schuchardt110d80a2018-01-19 20:24:39 +0100243 /* Split the path into a device part and a file part */
244 ret = efi_dp_split_file_path(full_path, &device_path, &file_path);
245 if (ret != EFI_SUCCESS)
246 return NULL;
247 efi_free_pool(file_path);
248
249 /* Get the EFI object for the partition */
250 efiobj = efi_dp_find_obj(device_path, NULL);
251 efi_free_pool(device_path);
Rob Clark2a920802017-09-13 18:05:34 -0400252 if (!efiobj)
253 return NULL;
254
Heinrich Schuchardt110d80a2018-01-19 20:24:39 +0100255 /* Find the simple file system protocol */
256 ret = efi_search_protocol(efiobj, &efi_simple_file_system_protocol_guid,
257 &handler);
258 if (ret != EFI_SUCCESS)
259 return NULL;
Rob Clark2a920802017-09-13 18:05:34 -0400260
Heinrich Schuchardt110d80a2018-01-19 20:24:39 +0100261 /* Return the simple file system protocol for the partition */
262 return handler->protocol_interface;
Rob Clark2a920802017-09-13 18:05:34 -0400263}
264
Heinrich Schuchardt93945f22017-10-26 19:25:46 +0200265/*
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100266 * Create a handle for a partition or disk
Heinrich Schuchardt93945f22017-10-26 19:25:46 +0200267 *
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100268 * @parent parent handle
269 * @dp_parent parent device path
Heinrich Schuchardt93945f22017-10-26 19:25:46 +0200270 * @if_typename interface name for block device
271 * @desc internal block device
272 * @dev_index device index for block device
273 * @offset offset into disk for simple partitions
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100274 * @return disk object
Heinrich Schuchardt93945f22017-10-26 19:25:46 +0200275 */
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100276static efi_status_t efi_disk_add_dev(
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100277 efi_handle_t parent,
278 struct efi_device_path *dp_parent,
279 const char *if_typename,
280 struct blk_desc *desc,
281 int dev_index,
282 lbaint_t offset,
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100283 unsigned int part,
284 struct efi_disk_obj **disk)
Alexander Graf4a12a972016-04-11 16:16:17 +0200285{
286 struct efi_disk_obj *diskobj;
Heinrich Schuchardt4b9f7aa2017-11-26 14:05:12 +0100287 efi_status_t ret;
Alexander Graf4a12a972016-04-11 16:16:17 +0200288
Alexander Graf0812d1a2016-08-05 14:51:47 +0200289 /* Don't add empty devices */
290 if (!desc->lba)
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100291 return EFI_NOT_READY;
Alexander Graf0812d1a2016-08-05 14:51:47 +0200292
Rob Clark884bcf62017-09-13 18:05:31 -0400293 diskobj = calloc(1, sizeof(*diskobj));
Heinrich Schuchardt4b9f7aa2017-11-26 14:05:12 +0100294 if (!diskobj)
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100295 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt4b9f7aa2017-11-26 14:05:12 +0100296
297 /* Hook up to the device list */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200298 efi_add_handle(&diskobj->header);
Alexander Graf4a12a972016-04-11 16:16:17 +0200299
300 /* Fill in object data */
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100301 if (part) {
302 struct efi_device_path *node = efi_dp_part_node(desc, part);
303
304 diskobj->dp = efi_dp_append_node(dp_parent, node);
305 efi_free_pool(node);
306 } else {
307 diskobj->dp = efi_dp_from_part(desc, part);
308 }
Rob Clark884bcf62017-09-13 18:05:31 -0400309 diskobj->part = part;
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200310 ret = efi_add_protocol(&diskobj->header, &efi_block_io_guid,
Heinrich Schuchardt4b9f7aa2017-11-26 14:05:12 +0100311 &diskobj->ops);
312 if (ret != EFI_SUCCESS)
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100313 return ret;
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200314 ret = efi_add_protocol(&diskobj->header, &efi_guid_device_path,
Heinrich Schuchardt4b9f7aa2017-11-26 14:05:12 +0100315 diskobj->dp);
316 if (ret != EFI_SUCCESS)
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100317 return ret;
Rob Clark2a920802017-09-13 18:05:34 -0400318 if (part >= 1) {
319 diskobj->volume = efi_simple_file_system(desc, part,
320 diskobj->dp);
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200321 ret = efi_add_protocol(&diskobj->header,
Heinrich Schuchardt4b9f7aa2017-11-26 14:05:12 +0100322 &efi_simple_file_system_protocol_guid,
Heinrich Schuchardt22de1de2018-01-19 20:24:38 +0100323 diskobj->volume);
Heinrich Schuchardt4b9f7aa2017-11-26 14:05:12 +0100324 if (ret != EFI_SUCCESS)
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100325 return ret;
Rob Clark2a920802017-09-13 18:05:34 -0400326 }
Alexander Graf4a12a972016-04-11 16:16:17 +0200327 diskobj->ops = block_io_disk_template;
Simon Glass487d7562016-05-14 14:03:05 -0600328 diskobj->ifname = if_typename;
Alexander Graf4a12a972016-04-11 16:16:17 +0200329 diskobj->dev_index = dev_index;
Alexander Graf8c3df0b2016-04-11 16:16:18 +0200330 diskobj->offset = offset;
Alexander Graff9d334b2016-08-05 14:49:53 +0200331 diskobj->desc = desc;
Alexander Graf4a12a972016-04-11 16:16:17 +0200332
333 /* Fill in EFI IO Media info (for read/write callbacks) */
334 diskobj->media.removable_media = desc->removable;
335 diskobj->media.media_present = 1;
Heinrich Schuchardtf59f0822019-09-05 19:31:23 +0200336 /*
337 * MediaID is just an arbitrary counter.
338 * We have to change it if the medium is removed or changed.
339 */
340 diskobj->media.media_id = 1;
Alexander Graf4a12a972016-04-11 16:16:17 +0200341 diskobj->media.block_size = desc->blksz;
342 diskobj->media.io_align = desc->blksz;
Alexander Graf0812d1a2016-08-05 14:51:47 +0200343 diskobj->media.last_block = desc->lba - offset;
Emmanuel Vadot5f770832017-12-11 19:22:33 +0100344 if (part != 0)
345 diskobj->media.logical_partition = 1;
Alexander Graf4a12a972016-04-11 16:16:17 +0200346 diskobj->ops.media = &diskobj->media;
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100347 if (disk)
348 *disk = diskobj;
349 return EFI_SUCCESS;
Alexander Graf4a12a972016-04-11 16:16:17 +0200350}
351
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100352/*
353 * Create handles and protocols for the partitions of a block device
354 *
355 * @parent handle of the parent disk
356 * @blk_desc block device
357 * @if_typename interface type
358 * @diskid device number
359 * @pdevname device name
360 * @return number of partitions created
361 */
362int efi_disk_create_partitions(efi_handle_t parent, struct blk_desc *desc,
363 const char *if_typename, int diskid,
364 const char *pdevname)
Alexander Graf8c3df0b2016-04-11 16:16:18 +0200365{
366 int disks = 0;
Alexander Grafecbe1a02016-04-11 16:16:20 +0200367 char devname[32] = { 0 }; /* dp->str is u16[32] long */
Alexander Graf8c3df0b2016-04-11 16:16:18 +0200368 disk_partition_t info;
Jonathan Gray16a73b22017-10-10 13:55:26 +1100369 int part;
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100370 struct efi_device_path *dp = NULL;
371 efi_status_t ret;
372 struct efi_handler *handler;
373
374 /* Get the device path of the parent */
375 ret = efi_search_protocol(parent, &efi_guid_device_path, &handler);
376 if (ret == EFI_SUCCESS)
377 dp = handler->protocol_interface;
Alexander Graf8c3df0b2016-04-11 16:16:18 +0200378
Alexander Grafc034b7f2017-12-01 16:10:33 +0100379 /* Add devices for each partition */
Jonathan Gray16a73b22017-10-10 13:55:26 +1100380 for (part = 1; part <= MAX_SEARCH_PARTITIONS; part++) {
381 if (part_get_info(desc, part, &info))
382 continue;
Alexander Graff9d334b2016-08-05 14:49:53 +0200383 snprintf(devname, sizeof(devname), "%s:%d", pdevname,
384 part);
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100385 ret = efi_disk_add_dev(parent, dp, if_typename, desc, diskid,
386 info.start, part, NULL);
387 if (ret != EFI_SUCCESS) {
388 printf("Adding partition %s failed\n", pdevname);
389 continue;
390 }
Alexander Graf8c3df0b2016-04-11 16:16:18 +0200391 disks++;
392 }
Rob Clark884bcf62017-09-13 18:05:31 -0400393
Alexander Graf8c3df0b2016-04-11 16:16:18 +0200394 return disks;
395}
396
Alexander Graf2a22d052016-03-04 01:10:02 +0100397/*
398 * U-Boot doesn't have a list of all online disk devices. So when running our
399 * EFI payload, we scan through all of the potentially available ones and
400 * store them in our object pool.
401 *
Simon Glass487d7562016-05-14 14:03:05 -0600402 * TODO(sjg@chromium.org): Actually with CONFIG_BLK, U-Boot does have this.
403 * Consider converting the code to look up devices as needed. The EFI device
404 * could be a child of the UCLASS_BLK block device, perhaps.
405 *
Alexander Graf2a22d052016-03-04 01:10:02 +0100406 * This gets called from do_bootefi_exec().
407 */
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100408efi_status_t efi_disk_register(void)
Alexander Graf2a22d052016-03-04 01:10:02 +0100409{
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100410 struct efi_disk_obj *disk;
Alexander Graf2a22d052016-03-04 01:10:02 +0100411 int disks = 0;
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100412 efi_status_t ret;
Simon Glass487d7562016-05-14 14:03:05 -0600413#ifdef CONFIG_BLK
414 struct udevice *dev;
415
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100416 for (uclass_first_device_check(UCLASS_BLK, &dev); dev;
xypron.glpk@gmx.de70bfcdc2017-06-20 19:10:27 +0000417 uclass_next_device_check(&dev)) {
Simon Glass487d7562016-05-14 14:03:05 -0600418 struct blk_desc *desc = dev_get_uclass_platdata(dev);
Heinrich Schuchardt9bfca9f2018-01-19 20:24:44 +0100419 const char *if_typename = blk_get_if_type_name(desc->if_type);
Simon Glass487d7562016-05-14 14:03:05 -0600420
Alexander Grafc034b7f2017-12-01 16:10:33 +0100421 /* Add block device for the full device */
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100422 printf("Scanning disk %s...\n", dev->name);
423 ret = efi_disk_add_dev(NULL, NULL, if_typename,
424 desc, desc->devnum, 0, 0, &disk);
425 if (ret == EFI_NOT_READY) {
426 printf("Disk %s not ready\n", dev->name);
427 continue;
428 }
429 if (ret) {
430 printf("ERROR: failure to add disk device %s, r = %lu\n",
431 dev->name, ret & ~EFI_ERROR_MASK);
432 return ret;
433 }
Simon Glass487d7562016-05-14 14:03:05 -0600434 disks++;
435
Alexander Grafc034b7f2017-12-01 16:10:33 +0100436 /* Partitions show up as block devices in EFI */
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100437 disks += efi_disk_create_partitions(
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200438 &disk->header, desc, if_typename,
Heinrich Schuchardt64e4db02018-01-19 20:24:47 +0100439 desc->devnum, dev->name);
Simon Glass487d7562016-05-14 14:03:05 -0600440 }
441#else
442 int i, if_type;
Alexander Graf2a22d052016-03-04 01:10:02 +0100443
444 /* Search for all available disk devices */
Simon Glass6dd9faf2016-05-01 13:52:32 -0600445 for (if_type = 0; if_type < IF_TYPE_COUNT; if_type++) {
Simon Glass487d7562016-05-14 14:03:05 -0600446 const struct blk_driver *cur_drvr;
447 const char *if_typename;
448
Simon Glass6dd9faf2016-05-01 13:52:32 -0600449 cur_drvr = blk_driver_lookup_type(if_type);
450 if (!cur_drvr)
451 continue;
452
Simon Glass487d7562016-05-14 14:03:05 -0600453 if_typename = cur_drvr->if_typename;
454 printf("Scanning disks on %s...\n", if_typename);
Alexander Graf2a22d052016-03-04 01:10:02 +0100455 for (i = 0; i < 4; i++) {
456 struct blk_desc *desc;
Alexander Grafecbe1a02016-04-11 16:16:20 +0200457 char devname[32] = { 0 }; /* dp->str is u16[32] long */
Alexander Graf2a22d052016-03-04 01:10:02 +0100458
Simon Glass6dd9faf2016-05-01 13:52:32 -0600459 desc = blk_get_devnum_by_type(if_type, i);
Alexander Graf2a22d052016-03-04 01:10:02 +0100460 if (!desc)
461 continue;
462 if (desc->type == DEV_TYPE_UNKNOWN)
463 continue;
464
Alexander Graf2a22d052016-03-04 01:10:02 +0100465 snprintf(devname, sizeof(devname), "%s%d",
Simon Glass487d7562016-05-14 14:03:05 -0600466 if_typename, i);
Rob Clark77511b32017-10-08 11:33:08 -0400467
Alexander Grafc034b7f2017-12-01 16:10:33 +0100468 /* Add block device for the full device */
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100469 ret = efi_disk_add_dev(NULL, NULL, if_typename, desc,
470 i, 0, 0, &disk);
471 if (ret == EFI_NOT_READY) {
472 printf("Disk %s not ready\n", devname);
473 continue;
474 }
475 if (ret) {
476 printf("ERROR: failure to add disk device %s, r = %lu\n",
477 devname, ret & ~EFI_ERROR_MASK);
478 return ret;
479 }
Alexander Graf2a22d052016-03-04 01:10:02 +0100480 disks++;
Alexander Graf8c3df0b2016-04-11 16:16:18 +0200481
Alexander Grafc034b7f2017-12-01 16:10:33 +0100482 /* Partitions show up as block devices in EFI */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200483 disks += efi_disk_create_partitions
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200484 (&disk->header, desc,
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200485 if_typename, i, devname);
Alexander Graf2a22d052016-03-04 01:10:02 +0100486 }
487 }
Simon Glass487d7562016-05-14 14:03:05 -0600488#endif
Alexander Graf2a22d052016-03-04 01:10:02 +0100489 printf("Found %d disks\n", disks);
490
Heinrich Schuchardtdf9cf562018-02-09 20:55:47 +0100491 return EFI_SUCCESS;
Alexander Graf2a22d052016-03-04 01:10:02 +0100492}