blob: 34a0365739d7f17fd72656d7e5eddb2e7b121bc2 [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Heinrich Schuchardt11206f42018-01-21 19:29:30 +01002/*
3 * EFI block driver
4 *
5 * Copyright (c) 2017 Heinrich Schuchardt
6 *
Heinrich Schuchardt11206f42018-01-21 19:29:30 +01007 * The EFI uclass creates a handle for this driver and installs the
8 * driver binding protocol on it.
9 *
10 * The EFI block driver binds to controllers implementing the block io
11 * protocol.
12 *
13 * When the bind function of the EFI block driver is called it creates a
14 * new U-Boot block device. It installs child handles for all partitions and
15 * installs the simple file protocol on these.
16 *
17 * The read and write functions of the EFI block driver delegate calls to the
18 * controller that it is bound to.
19 *
20 * A usage example is as following:
21 *
22 * U-Boot loads the iPXE snp.efi executable. iPXE connects an iSCSI drive and
23 * exposes a handle with the block IO protocol. It calls ConnectController.
24 *
25 * Now the EFI block driver installs the partitions with the simple file
26 * protocol.
27 *
28 * iPXE uses the simple file protocol to load Grub or the Linux Kernel.
29 */
30
Simon Glass655306c2020-05-10 11:39:58 -060031#include <blk.h>
Simon Glassf6977c12020-07-19 10:15:43 -060032#include <dm.h>
Heinrich Schuchardt11206f42018-01-21 19:29:30 +010033#include <efi_driver.h>
Simon Glass9bc15642020-02-03 07:36:16 -070034#include <malloc.h>
Heinrich Schuchardt11206f42018-01-21 19:29:30 +010035#include <dm/device-internal.h>
36#include <dm/root.h>
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +090037#include <dm/tag.h>
Heinrich Schuchardt11206f42018-01-21 19:29:30 +010038
Heinrich Schuchardt35679a92022-10-04 18:53:34 +020039/**
40 * struct efi_blk_plat - attributes of a block device
Heinrich Schuchardt11206f42018-01-21 19:29:30 +010041 *
Heinrich Schuchardt35679a92022-10-04 18:53:34 +020042 * @handle: handle of the controller on which this driver is installed
43 * @io: block io protocol proxied by this driver
Heinrich Schuchardt11206f42018-01-21 19:29:30 +010044 */
Simon Glassb75b15b2020-12-03 16:55:23 -070045struct efi_blk_plat {
Heinrich Schuchardt11206f42018-01-21 19:29:30 +010046 efi_handle_t handle;
47 struct efi_block_io *io;
48};
49
Heinrich Schuchardt6492dad2019-07-14 11:52:33 +020050/**
Heinrich Schuchardt35679a92022-10-04 18:53:34 +020051 * efi_bl_read() - read from block device
Heinrich Schuchardt11206f42018-01-21 19:29:30 +010052 *
Heinrich Schuchardt6492dad2019-07-14 11:52:33 +020053 * @dev: device
54 * @blknr: first block to be read
55 * @blkcnt: number of blocks to read
56 * @buffer: output buffer
57 * Return: number of blocks transferred
Heinrich Schuchardt11206f42018-01-21 19:29:30 +010058 */
59static ulong efi_bl_read(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
60 void *buffer)
61{
Simon Glassb75b15b2020-12-03 16:55:23 -070062 struct efi_blk_plat *plat = dev_get_plat(dev);
Simon Glass71fa5b42020-12-03 16:55:18 -070063 struct efi_block_io *io = plat->io;
Heinrich Schuchardt11206f42018-01-21 19:29:30 +010064 efi_status_t ret;
65
66 EFI_PRINT("%s: read '%s', from block " LBAFU ", " LBAFU " blocks\n",
67 __func__, dev->name, blknr, blkcnt);
68 ret = EFI_CALL(io->read_blocks(
69 io, io->media->media_id, (u64)blknr,
70 (efi_uintn_t)blkcnt *
71 (efi_uintn_t)io->media->block_size, buffer));
72 EFI_PRINT("%s: r = %u\n", __func__,
73 (unsigned int)(ret & ~EFI_ERROR_MASK));
74 if (ret != EFI_SUCCESS)
75 return 0;
76 return blkcnt;
77}
78
Heinrich Schuchardt6492dad2019-07-14 11:52:33 +020079/**
Heinrich Schuchardt35679a92022-10-04 18:53:34 +020080 * efi_bl_write() - write to block device
Heinrich Schuchardt11206f42018-01-21 19:29:30 +010081 *
Heinrich Schuchardt6492dad2019-07-14 11:52:33 +020082 * @dev: device
83 * @blknr: first block to be write
84 * @blkcnt: number of blocks to write
85 * @buffer: input buffer
86 * Return: number of blocks transferred
Heinrich Schuchardt11206f42018-01-21 19:29:30 +010087 */
88static ulong efi_bl_write(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
89 const void *buffer)
90{
Simon Glassb75b15b2020-12-03 16:55:23 -070091 struct efi_blk_plat *plat = dev_get_plat(dev);
Simon Glass71fa5b42020-12-03 16:55:18 -070092 struct efi_block_io *io = plat->io;
Heinrich Schuchardt11206f42018-01-21 19:29:30 +010093 efi_status_t ret;
94
95 EFI_PRINT("%s: write '%s', from block " LBAFU ", " LBAFU " blocks\n",
96 __func__, dev->name, blknr, blkcnt);
97 ret = EFI_CALL(io->write_blocks(
98 io, io->media->media_id, (u64)blknr,
99 (efi_uintn_t)blkcnt *
100 (efi_uintn_t)io->media->block_size,
101 (void *)buffer));
102 EFI_PRINT("%s: r = %u\n", __func__,
103 (unsigned int)(ret & ~EFI_ERROR_MASK));
104 if (ret != EFI_SUCCESS)
105 return 0;
106 return blkcnt;
107}
108
Heinrich Schuchardt6492dad2019-07-14 11:52:33 +0200109/**
Heinrich Schuchardt35679a92022-10-04 18:53:34 +0200110 * efi_bl_create_block_device() - create a block device for a handle
Heinrich Schuchardt11206f42018-01-21 19:29:30 +0100111 *
Heinrich Schuchardt6492dad2019-07-14 11:52:33 +0200112 * @handle: handle
113 * @interface: block io protocol
Heinrich Schuchardt3f712db2022-10-03 10:35:35 +0200114 * Return: status code
Heinrich Schuchardt11206f42018-01-21 19:29:30 +0100115 */
Heinrich Schuchardtcc00eb42022-10-04 16:19:30 +0200116static efi_status_t
117efi_bl_create_block_device(efi_handle_t handle, void *interface)
Heinrich Schuchardt11206f42018-01-21 19:29:30 +0100118{
Heinrich Schuchardt3f712db2022-10-03 10:35:35 +0200119 struct udevice *bdev = NULL, *parent = dm_root();
120 efi_status_t ret;
121 int devnum;
Heinrich Schuchardt11206f42018-01-21 19:29:30 +0100122 char *name;
Heinrich Schuchardt11206f42018-01-21 19:29:30 +0100123 struct efi_block_io *io = interface;
Simon Glassb75b15b2020-12-03 16:55:23 -0700124 struct efi_blk_plat *plat;
Heinrich Schuchardt11206f42018-01-21 19:29:30 +0100125
Masahisa Kojima676c2742023-07-03 15:08:45 +0900126 devnum = blk_next_free_devnum(UCLASS_EFI_LOADER);
127 if (devnum < 0)
Heinrich Schuchardt3f712db2022-10-03 10:35:35 +0200128 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt11206f42018-01-21 19:29:30 +0100129
130 name = calloc(1, 18); /* strlen("efiblk#2147483648") + 1 */
131 if (!name)
Heinrich Schuchardt3f712db2022-10-03 10:35:35 +0200132 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt11206f42018-01-21 19:29:30 +0100133 sprintf(name, "efiblk#%d", devnum);
134
135 /* Create driver model udevice for the EFI block io device */
Heinrich Schuchardt3f712db2022-10-03 10:35:35 +0200136 if (blk_create_device(parent, "efi_blk", name, UCLASS_EFI_LOADER,
137 devnum, io->media->block_size,
138 (lbaint_t)io->media->last_block, &bdev)) {
139 ret = EFI_OUT_OF_RESOURCES;
140 free(name);
141 goto err;
142 }
Heinrich Schuchardt25ac13e2018-06-30 07:11:32 +0200143 /* Set the DM_FLAG_NAME_ALLOCED flag to avoid a memory leak */
144 device_set_name_alloced(bdev);
Bin Meng91938632018-10-15 02:21:06 -0700145
Simon Glassfa20e932020-12-03 16:55:20 -0700146 plat = dev_get_plat(bdev);
Simon Glass71fa5b42020-12-03 16:55:18 -0700147 plat->handle = handle;
148 plat->io = interface;
Bin Meng91938632018-10-15 02:21:06 -0700149
Heinrich Schuchardt3f712db2022-10-03 10:35:35 +0200150 if (efi_link_dev(handle, bdev)) {
151 ret = EFI_OUT_OF_RESOURCES;
152 goto err;
153 }
AKASHI Takahiro2381f2e2022-04-19 10:05:12 +0900154
Heinrich Schuchardt3f712db2022-10-03 10:35:35 +0200155 if (device_probe(bdev)) {
156 ret = EFI_DEVICE_ERROR;
157 goto err;
158 }
Heinrich Schuchardt11206f42018-01-21 19:29:30 +0100159 EFI_PRINT("%s: block device '%s' created\n", __func__, bdev->name);
160
Heinrich Schuchardt3f712db2022-10-03 10:35:35 +0200161 return EFI_SUCCESS;
162
163err:
164 efi_unlink_dev(handle);
165 if (bdev)
166 device_unbind(bdev);
167
168 return ret;
Heinrich Schuchardt11206f42018-01-21 19:29:30 +0100169}
170
Heinrich Schuchardtcc00eb42022-10-04 16:19:30 +0200171/**
172 * efi_bl_bind() - bind to a block io protocol
173 *
Heinrich Schuchardtff1d50b2022-10-04 19:12:59 +0200174 * @this: driver binding protocol
Heinrich Schuchardtcc00eb42022-10-04 16:19:30 +0200175 * @handle: handle
176 * @interface: block io protocol
177 * Return: status code
178 */
Heinrich Schuchardtff1d50b2022-10-04 19:12:59 +0200179static efi_status_t efi_bl_bind(
180 struct efi_driver_binding_extended_protocol *this,
181 efi_handle_t handle, void *interface)
Heinrich Schuchardtcc00eb42022-10-04 16:19:30 +0200182{
183 efi_status_t ret = EFI_SUCCESS;
184 struct efi_object *obj = efi_search_obj(handle);
185
186 EFI_PRINT("%s: handle %p, interface %p\n", __func__, handle, interface);
187
188 if (!obj || !interface)
189 return EFI_INVALID_PARAMETER;
190
191 if (!handle->dev)
192 ret = efi_bl_create_block_device(handle, interface);
193
194 return ret;
195}
196
Heinrich Schuchardt6c5fd212022-10-05 11:28:47 +0200197/**
198 * efi_bl_init() - initialize block device driver
199 *
200 * @this: extended driver binding protocol
201 */
202static efi_status_t
203efi_bl_init(struct efi_driver_binding_extended_protocol *this)
204{
Heinrich Schuchardtda620cf2022-10-06 07:29:41 +0200205 int ret;
206
207 ret = event_register("efi_disk add", EVT_DM_POST_PROBE,
208 efi_disk_probe, this);
209 if (ret) {
210 log_err("Event registration for efi_disk add failed\n");
211 return EFI_OUT_OF_RESOURCES;
212 }
213
214 ret = event_register("efi_disk del", EVT_DM_PRE_REMOVE,
215 efi_disk_remove, this);
216 if (ret) {
217 log_err("Event registration for efi_disk del failed\n");
218 return EFI_OUT_OF_RESOURCES;
219 }
220
Heinrich Schuchardt6c5fd212022-10-05 11:28:47 +0200221 return EFI_SUCCESS;
222}
223
Heinrich Schuchardt11206f42018-01-21 19:29:30 +0100224/* Block device driver operators */
225static const struct blk_ops efi_blk_ops = {
226 .read = efi_bl_read,
227 .write = efi_bl_write,
228};
229
230/* Identify as block device driver */
231U_BOOT_DRIVER(efi_blk) = {
Heinrich Schuchardt35679a92022-10-04 18:53:34 +0200232 .name = "efi_blk",
233 .id = UCLASS_BLK,
234 .ops = &efi_blk_ops,
Simon Glassb75b15b2020-12-03 16:55:23 -0700235 .plat_auto = sizeof(struct efi_blk_plat),
Heinrich Schuchardt11206f42018-01-21 19:29:30 +0100236};
237
238/* EFI driver operators */
239static const struct efi_driver_ops driver_ops = {
240 .protocol = &efi_block_io_guid,
241 .child_protocol = &efi_block_io_guid,
Heinrich Schuchardt6c5fd212022-10-05 11:28:47 +0200242 .init = efi_bl_init,
Heinrich Schuchardt11206f42018-01-21 19:29:30 +0100243 .bind = efi_bl_bind,
244};
245
246/* Identify as EFI driver */
247U_BOOT_DRIVER(efi_block) = {
248 .name = "EFI block driver",
Simon Glass15c4d672021-12-04 08:56:30 -0700249 .id = UCLASS_EFI_LOADER,
Heinrich Schuchardt11206f42018-01-21 19:29:30 +0100250 .ops = &driver_ops,
251};