Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2015 Google, Inc |
| 4 | * Written by Simon Glass <sjg@chromium.org> |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 5 | */ |
| 6 | |
Simon Glass | 31b4f9e | 2022-10-20 18:22:55 -0600 | [diff] [blame] | 7 | #define LOG_CATEGORY UCLASS_USB |
| 8 | |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 9 | #include <common.h> |
| 10 | #include <dm.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 11 | #include <log.h> |
Simon Glass | 293c43f | 2022-09-21 16:21:37 +0200 | [diff] [blame] | 12 | #include <malloc.h> |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 13 | #include <os.h> |
| 14 | #include <scsi.h> |
Simon Glass | 4c92a4d | 2022-09-21 16:21:36 +0200 | [diff] [blame] | 15 | #include <scsi_emul.h> |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 16 | #include <usb.h> |
| 17 | |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 18 | /* |
| 19 | * This driver emulates a flash stick using the UFI command specification and |
| 20 | * the BBB (bulk/bulk/bulk) protocol. It supports only a single logical unit |
| 21 | * number (LUN 0). |
| 22 | */ |
| 23 | |
| 24 | enum { |
| 25 | SANDBOX_FLASH_EP_OUT = 1, /* endpoints */ |
| 26 | SANDBOX_FLASH_EP_IN = 2, |
| 27 | SANDBOX_FLASH_BLOCK_LEN = 512, |
Simon Glass | 293c43f | 2022-09-21 16:21:37 +0200 | [diff] [blame] | 28 | SANDBOX_FLASH_BUF_SIZE = 512, |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 29 | }; |
| 30 | |
Simon Glass | 31d7816 | 2015-11-08 23:47:53 -0700 | [diff] [blame] | 31 | enum { |
| 32 | STRINGID_MANUFACTURER = 1, |
| 33 | STRINGID_PRODUCT, |
| 34 | STRINGID_SERIAL, |
| 35 | |
| 36 | STRINGID_COUNT, |
| 37 | }; |
| 38 | |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 39 | /** |
| 40 | * struct sandbox_flash_priv - private state for this driver |
| 41 | * |
Simon Glass | 4c92a4d | 2022-09-21 16:21:36 +0200 | [diff] [blame] | 42 | * @eminfo: emulator state |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 43 | * @error: true if there is an error condition |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 44 | * @tag: Tag value from last command |
| 45 | * @fd: File descriptor of backing file |
| 46 | * @file_size: Size of file in bytes |
| 47 | * @status_buff: Data buffer for outgoing status |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 48 | */ |
| 49 | struct sandbox_flash_priv { |
Simon Glass | 4c92a4d | 2022-09-21 16:21:36 +0200 | [diff] [blame] | 50 | struct scsi_emul_info eminfo; |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 51 | bool error; |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 52 | u32 tag; |
| 53 | int fd; |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 54 | struct umass_bbb_csw status; |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | struct sandbox_flash_plat { |
| 58 | const char *pathname; |
Simon Glass | 31d7816 | 2015-11-08 23:47:53 -0700 | [diff] [blame] | 59 | struct usb_string flash_strings[STRINGID_COUNT]; |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 60 | }; |
| 61 | |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 62 | static struct usb_device_descriptor flash_device_desc = { |
| 63 | .bLength = sizeof(flash_device_desc), |
| 64 | .bDescriptorType = USB_DT_DEVICE, |
| 65 | |
| 66 | .bcdUSB = __constant_cpu_to_le16(0x0200), |
| 67 | |
| 68 | .bDeviceClass = 0, |
| 69 | .bDeviceSubClass = 0, |
| 70 | .bDeviceProtocol = 0, |
| 71 | |
| 72 | .idVendor = __constant_cpu_to_le16(0x1234), |
| 73 | .idProduct = __constant_cpu_to_le16(0x5678), |
| 74 | .iManufacturer = STRINGID_MANUFACTURER, |
| 75 | .iProduct = STRINGID_PRODUCT, |
| 76 | .iSerialNumber = STRINGID_SERIAL, |
| 77 | .bNumConfigurations = 1, |
| 78 | }; |
| 79 | |
| 80 | static struct usb_config_descriptor flash_config0 = { |
| 81 | .bLength = sizeof(flash_config0), |
| 82 | .bDescriptorType = USB_DT_CONFIG, |
| 83 | |
| 84 | /* wTotalLength is set up by usb-emul-uclass */ |
| 85 | .bNumInterfaces = 1, |
| 86 | .bConfigurationValue = 0, |
| 87 | .iConfiguration = 0, |
| 88 | .bmAttributes = 1 << 7, |
| 89 | .bMaxPower = 50, |
| 90 | }; |
| 91 | |
| 92 | static struct usb_interface_descriptor flash_interface0 = { |
| 93 | .bLength = sizeof(flash_interface0), |
| 94 | .bDescriptorType = USB_DT_INTERFACE, |
| 95 | |
| 96 | .bInterfaceNumber = 0, |
| 97 | .bAlternateSetting = 0, |
| 98 | .bNumEndpoints = 2, |
| 99 | .bInterfaceClass = USB_CLASS_MASS_STORAGE, |
| 100 | .bInterfaceSubClass = US_SC_UFI, |
| 101 | .bInterfaceProtocol = US_PR_BULK, |
| 102 | .iInterface = 0, |
| 103 | }; |
| 104 | |
| 105 | static struct usb_endpoint_descriptor flash_endpoint0_out = { |
| 106 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 107 | .bDescriptorType = USB_DT_ENDPOINT, |
| 108 | |
| 109 | .bEndpointAddress = SANDBOX_FLASH_EP_OUT, |
| 110 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
| 111 | .wMaxPacketSize = __constant_cpu_to_le16(1024), |
| 112 | .bInterval = 0, |
| 113 | }; |
| 114 | |
| 115 | static struct usb_endpoint_descriptor flash_endpoint1_in = { |
| 116 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 117 | .bDescriptorType = USB_DT_ENDPOINT, |
| 118 | |
| 119 | .bEndpointAddress = SANDBOX_FLASH_EP_IN | USB_ENDPOINT_DIR_MASK, |
| 120 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
| 121 | .wMaxPacketSize = __constant_cpu_to_le16(1024), |
| 122 | .bInterval = 0, |
| 123 | }; |
| 124 | |
| 125 | static void *flash_desc_list[] = { |
| 126 | &flash_device_desc, |
| 127 | &flash_config0, |
| 128 | &flash_interface0, |
| 129 | &flash_endpoint0_out, |
| 130 | &flash_endpoint1_in, |
| 131 | NULL, |
| 132 | }; |
| 133 | |
| 134 | static int sandbox_flash_control(struct udevice *dev, struct usb_device *udev, |
| 135 | unsigned long pipe, void *buff, int len, |
| 136 | struct devrequest *setup) |
| 137 | { |
| 138 | struct sandbox_flash_priv *priv = dev_get_priv(dev); |
| 139 | |
| 140 | if (pipe == usb_rcvctrlpipe(udev, 0)) { |
| 141 | switch (setup->request) { |
| 142 | case US_BBB_RESET: |
| 143 | priv->error = false; |
| 144 | return 0; |
| 145 | case US_BBB_GET_MAX_LUN: |
| 146 | *(char *)buff = '\0'; |
| 147 | return 1; |
| 148 | default: |
| 149 | debug("request=%x\n", setup->request); |
| 150 | break; |
| 151 | } |
| 152 | } |
| 153 | debug("pipe=%lx\n", pipe); |
| 154 | |
| 155 | return -EIO; |
| 156 | } |
| 157 | |
| 158 | static void setup_fail_response(struct sandbox_flash_priv *priv) |
| 159 | { |
| 160 | struct umass_bbb_csw *csw = &priv->status; |
| 161 | |
| 162 | csw->dCSWSignature = CSWSIGNATURE; |
| 163 | csw->dCSWTag = priv->tag; |
| 164 | csw->dCSWDataResidue = 0; |
| 165 | csw->bCSWStatus = CSWSTATUS_FAILED; |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | /** |
| 169 | * setup_response() - set up a response to send back to the host |
| 170 | * |
| 171 | * @priv: Sandbox flash private data |
| 172 | * @resp: Response to send, or NULL if none |
| 173 | * @size: Size of response |
| 174 | */ |
Simon Glass | 8cfdea7 | 2022-09-21 16:21:41 +0200 | [diff] [blame] | 175 | static void setup_response(struct sandbox_flash_priv *priv) |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 176 | { |
| 177 | struct umass_bbb_csw *csw = &priv->status; |
| 178 | |
| 179 | csw->dCSWSignature = CSWSIGNATURE; |
| 180 | csw->dCSWTag = priv->tag; |
| 181 | csw->dCSWDataResidue = 0; |
| 182 | csw->bCSWStatus = CSWSTATUS_GOOD; |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 183 | } |
| 184 | |
Simon Glass | 4d3b00d | 2022-09-21 16:21:45 +0200 | [diff] [blame] | 185 | static int handle_ufi_command(struct sandbox_flash_priv *priv, const void *buff, |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 186 | int len) |
| 187 | { |
Simon Glass | 4c92a4d | 2022-09-21 16:21:36 +0200 | [diff] [blame] | 188 | struct scsi_emul_info *info = &priv->eminfo; |
Simon Glass | a4eff9f | 2017-06-14 21:28:29 -0600 | [diff] [blame] | 189 | const struct scsi_cmd *req = buff; |
Simon Glass | 4d3b00d | 2022-09-21 16:21:45 +0200 | [diff] [blame] | 190 | int ret; |
Heinrich Schuchardt | 621d1c9 | 2022-11-10 08:40:30 +0100 | [diff] [blame] | 191 | off_t offset; |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 192 | |
Simon Glass | 4d3b00d | 2022-09-21 16:21:45 +0200 | [diff] [blame] | 193 | ret = sb_scsi_emul_command(info, req, len); |
| 194 | if (!ret) { |
Simon Glass | 8cfdea7 | 2022-09-21 16:21:41 +0200 | [diff] [blame] | 195 | setup_response(priv); |
Simon Glass | 31b4f9e | 2022-10-20 18:22:55 -0600 | [diff] [blame] | 196 | } else if ((ret == SCSI_EMUL_DO_READ || ret == SCSI_EMUL_DO_WRITE) && |
| 197 | priv->fd != -1) { |
Heinrich Schuchardt | 621d1c9 | 2022-11-10 08:40:30 +0100 | [diff] [blame] | 198 | offset = os_lseek(priv->fd, info->seek_block * info->block_size, |
| 199 | OS_SEEK_SET); |
| 200 | if (offset == (off_t)-1) |
| 201 | setup_fail_response(priv); |
| 202 | else |
| 203 | setup_response(priv); |
Simon Glass | 4d3b00d | 2022-09-21 16:21:45 +0200 | [diff] [blame] | 204 | } else { |
| 205 | setup_fail_response(priv); |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 206 | } |
| 207 | |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 208 | return 0; |
| 209 | } |
| 210 | |
| 211 | static int sandbox_flash_bulk(struct udevice *dev, struct usb_device *udev, |
| 212 | unsigned long pipe, void *buff, int len) |
| 213 | { |
| 214 | struct sandbox_flash_priv *priv = dev_get_priv(dev); |
Simon Glass | 4c92a4d | 2022-09-21 16:21:36 +0200 | [diff] [blame] | 215 | struct scsi_emul_info *info = &priv->eminfo; |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 216 | int ep = usb_pipeendpoint(pipe); |
| 217 | struct umass_bbb_cbw *cbw = buff; |
| 218 | |
| 219 | debug("%s: dev=%s, pipe=%lx, ep=%x, len=%x, phase=%d\n", __func__, |
Simon Glass | 4c92a4d | 2022-09-21 16:21:36 +0200 | [diff] [blame] | 220 | dev->name, pipe, ep, len, info->phase); |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 221 | switch (ep) { |
| 222 | case SANDBOX_FLASH_EP_OUT: |
Simon Glass | 4c92a4d | 2022-09-21 16:21:36 +0200 | [diff] [blame] | 223 | switch (info->phase) { |
Simon Glass | e6e05ad | 2022-09-21 16:21:35 +0200 | [diff] [blame] | 224 | case SCSIPH_START: |
Simon Glass | 4c92a4d | 2022-09-21 16:21:36 +0200 | [diff] [blame] | 225 | info->alloc_len = 0; |
| 226 | info->read_len = 0; |
Simon Glass | 31b4f9e | 2022-10-20 18:22:55 -0600 | [diff] [blame] | 227 | info->write_len = 0; |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 228 | if (priv->error || len != UMASS_BBB_CBW_SIZE || |
| 229 | cbw->dCBWSignature != CBWSIGNATURE) |
| 230 | goto err; |
| 231 | if ((cbw->bCBWFlags & CBWFLAGS_SBZ) || |
| 232 | cbw->bCBWLUN != 0) |
| 233 | goto err; |
| 234 | if (cbw->bCDBLength < 1 || cbw->bCDBLength >= 0x10) |
| 235 | goto err; |
Simon Glass | 4c92a4d | 2022-09-21 16:21:36 +0200 | [diff] [blame] | 236 | info->transfer_len = cbw->dCBWDataTransferLength; |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 237 | priv->tag = cbw->dCBWTag; |
Simon Glass | 4d3b00d | 2022-09-21 16:21:45 +0200 | [diff] [blame] | 238 | return handle_ufi_command(priv, cbw->CBWCDB, |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 239 | cbw->bCDBLength); |
Simon Glass | e6e05ad | 2022-09-21 16:21:35 +0200 | [diff] [blame] | 240 | case SCSIPH_DATA: |
Simon Glass | 31b4f9e | 2022-10-20 18:22:55 -0600 | [diff] [blame] | 241 | log_debug("data out, len=%x, info->write_len=%x\n", len, |
| 242 | info->write_len); |
| 243 | info->transfer_len = cbw->dCBWDataTransferLength; |
| 244 | priv->tag = cbw->dCBWTag; |
| 245 | if (!info->write_len) |
| 246 | return 0; |
| 247 | if (priv->fd != -1) { |
| 248 | ulong bytes_written; |
| 249 | |
| 250 | bytes_written = os_write(priv->fd, buff, len); |
| 251 | log_debug("bytes_written=%lx", bytes_written); |
| 252 | if (bytes_written != len) |
| 253 | return -EIO; |
| 254 | info->write_len -= len / info->block_size; |
| 255 | if (!info->write_len) |
| 256 | info->phase = SCSIPH_STATUS; |
| 257 | } else { |
| 258 | if (info->alloc_len && len > info->alloc_len) |
| 259 | len = info->alloc_len; |
| 260 | if (len > SANDBOX_FLASH_BUF_SIZE) |
| 261 | len = SANDBOX_FLASH_BUF_SIZE; |
| 262 | memcpy(info->buff, buff, len); |
| 263 | info->phase = SCSIPH_STATUS; |
| 264 | } |
| 265 | return len; |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 266 | default: |
| 267 | break; |
| 268 | } |
| 269 | case SANDBOX_FLASH_EP_IN: |
Simon Glass | 4c92a4d | 2022-09-21 16:21:36 +0200 | [diff] [blame] | 270 | switch (info->phase) { |
Simon Glass | e6e05ad | 2022-09-21 16:21:35 +0200 | [diff] [blame] | 271 | case SCSIPH_DATA: |
Simon Glass | 4c92a4d | 2022-09-21 16:21:36 +0200 | [diff] [blame] | 272 | debug("data in, len=%x, alloc_len=%x, info->read_len=%x\n", |
| 273 | len, info->alloc_len, info->read_len); |
| 274 | if (info->read_len) { |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 275 | ulong bytes_read; |
| 276 | |
Sean Anderson | 0383185 | 2022-03-23 18:24:38 -0400 | [diff] [blame] | 277 | if (priv->fd == -1) |
| 278 | return -EIO; |
| 279 | |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 280 | bytes_read = os_read(priv->fd, buff, len); |
| 281 | if (bytes_read != len) |
| 282 | return -EIO; |
Simon Glass | d0962c9 | 2022-09-21 16:21:39 +0200 | [diff] [blame] | 283 | info->read_len -= len / info->block_size; |
Simon Glass | 4c92a4d | 2022-09-21 16:21:36 +0200 | [diff] [blame] | 284 | if (!info->read_len) |
| 285 | info->phase = SCSIPH_STATUS; |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 286 | } else { |
Simon Glass | 4c92a4d | 2022-09-21 16:21:36 +0200 | [diff] [blame] | 287 | if (info->alloc_len && len > info->alloc_len) |
| 288 | len = info->alloc_len; |
Simon Glass | 293c43f | 2022-09-21 16:21:37 +0200 | [diff] [blame] | 289 | if (len > SANDBOX_FLASH_BUF_SIZE) |
| 290 | len = SANDBOX_FLASH_BUF_SIZE; |
| 291 | memcpy(buff, info->buff, len); |
Simon Glass | 4c92a4d | 2022-09-21 16:21:36 +0200 | [diff] [blame] | 292 | info->phase = SCSIPH_STATUS; |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 293 | } |
| 294 | return len; |
Simon Glass | e6e05ad | 2022-09-21 16:21:35 +0200 | [diff] [blame] | 295 | case SCSIPH_STATUS: |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 296 | debug("status in, len=%x\n", len); |
| 297 | if (len > sizeof(priv->status)) |
| 298 | len = sizeof(priv->status); |
| 299 | memcpy(buff, &priv->status, len); |
Simon Glass | 4c92a4d | 2022-09-21 16:21:36 +0200 | [diff] [blame] | 300 | info->phase = SCSIPH_START; |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 301 | return len; |
| 302 | default: |
| 303 | break; |
| 304 | } |
| 305 | } |
| 306 | err: |
| 307 | priv->error = true; |
| 308 | debug("%s: Detected transfer error\n", __func__); |
| 309 | return 0; |
| 310 | } |
| 311 | |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 312 | static int sandbox_flash_of_to_plat(struct udevice *dev) |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 313 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 314 | struct sandbox_flash_plat *plat = dev_get_plat(dev); |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 315 | |
Simon Glass | 82bf00e | 2017-05-18 20:09:39 -0600 | [diff] [blame] | 316 | plat->pathname = dev_read_string(dev, "sandbox,filepath"); |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 317 | |
| 318 | return 0; |
| 319 | } |
| 320 | |
| 321 | static int sandbox_flash_bind(struct udevice *dev) |
| 322 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 323 | struct sandbox_flash_plat *plat = dev_get_plat(dev); |
Simon Glass | 31d7816 | 2015-11-08 23:47:53 -0700 | [diff] [blame] | 324 | struct usb_string *fs; |
| 325 | |
| 326 | fs = plat->flash_strings; |
| 327 | fs[0].id = STRINGID_MANUFACTURER; |
| 328 | fs[0].s = "sandbox"; |
| 329 | fs[1].id = STRINGID_PRODUCT; |
| 330 | fs[1].s = "flash"; |
| 331 | fs[2].id = STRINGID_SERIAL; |
| 332 | fs[2].s = dev->name; |
| 333 | |
Bin Meng | d502cf1 | 2017-10-01 06:19:36 -0700 | [diff] [blame] | 334 | return usb_emul_setup_device(dev, plat->flash_strings, flash_desc_list); |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | static int sandbox_flash_probe(struct udevice *dev) |
| 338 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 339 | struct sandbox_flash_plat *plat = dev_get_plat(dev); |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 340 | struct sandbox_flash_priv *priv = dev_get_priv(dev); |
Simon Glass | 293c43f | 2022-09-21 16:21:37 +0200 | [diff] [blame] | 341 | struct scsi_emul_info *info = &priv->eminfo; |
| 342 | int ret; |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 343 | |
Simon Glass | 31b4f9e | 2022-10-20 18:22:55 -0600 | [diff] [blame] | 344 | priv->fd = os_open(plat->pathname, OS_O_RDWR); |
Simon Glass | 293c43f | 2022-09-21 16:21:37 +0200 | [diff] [blame] | 345 | if (priv->fd != -1) { |
Simon Glass | 4313c3e | 2022-09-21 16:21:40 +0200 | [diff] [blame] | 346 | ret = os_get_filesize(plat->pathname, &info->file_size); |
Simon Glass | 293c43f | 2022-09-21 16:21:37 +0200 | [diff] [blame] | 347 | if (ret) |
| 348 | return log_msg_ret("sz", ret); |
| 349 | } |
| 350 | info->buff = malloc(SANDBOX_FLASH_BUF_SIZE); |
| 351 | if (!info->buff) |
| 352 | return log_ret(-ENOMEM); |
Simon Glass | 37884f0 | 2022-09-21 16:21:38 +0200 | [diff] [blame] | 353 | info->vendor = plat->flash_strings[STRINGID_MANUFACTURER - 1].s; |
| 354 | info->product = plat->flash_strings[STRINGID_PRODUCT - 1].s; |
Simon Glass | d0962c9 | 2022-09-21 16:21:39 +0200 | [diff] [blame] | 355 | info->block_size = SANDBOX_FLASH_BLOCK_LEN; |
Simon Glass | 293c43f | 2022-09-21 16:21:37 +0200 | [diff] [blame] | 356 | |
| 357 | return 0; |
| 358 | } |
| 359 | |
| 360 | static int sandbox_flash_remove(struct udevice *dev) |
| 361 | { |
| 362 | struct sandbox_flash_priv *priv = dev_get_priv(dev); |
| 363 | struct scsi_emul_info *info = &priv->eminfo; |
| 364 | |
| 365 | free(info->buff); |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 366 | |
| 367 | return 0; |
| 368 | } |
| 369 | |
| 370 | static const struct dm_usb_ops sandbox_usb_flash_ops = { |
| 371 | .control = sandbox_flash_control, |
| 372 | .bulk = sandbox_flash_bulk, |
| 373 | }; |
| 374 | |
| 375 | static const struct udevice_id sandbox_usb_flash_ids[] = { |
| 376 | { .compatible = "sandbox,usb-flash" }, |
| 377 | { } |
| 378 | }; |
| 379 | |
| 380 | U_BOOT_DRIVER(usb_sandbox_flash) = { |
| 381 | .name = "usb_sandbox_flash", |
| 382 | .id = UCLASS_USB_EMUL, |
| 383 | .of_match = sandbox_usb_flash_ids, |
| 384 | .bind = sandbox_flash_bind, |
| 385 | .probe = sandbox_flash_probe, |
Simon Glass | 293c43f | 2022-09-21 16:21:37 +0200 | [diff] [blame] | 386 | .remove = sandbox_flash_remove, |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 387 | .of_to_plat = sandbox_flash_of_to_plat, |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 388 | .ops = &sandbox_usb_flash_ops, |
Simon Glass | 8a2b47f | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 389 | .priv_auto = sizeof(struct sandbox_flash_priv), |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 390 | .plat_auto = sizeof(struct sandbox_flash_plat), |
Simon Glass | b144644 | 2015-03-25 12:22:39 -0600 | [diff] [blame] | 391 | }; |