blob: 01ccc4bc178fffea7c2d94a392d037d5478bd4c0 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassb1446442015-03-25 12:22:39 -06002/*
3 * (C) Copyright 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glassb1446442015-03-25 12:22:39 -06005 */
6
Simon Glass31b4f9e2022-10-20 18:22:55 -06007#define LOG_CATEGORY UCLASS_USB
8
Simon Glassb1446442015-03-25 12:22:39 -06009#include <common.h>
10#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Simon Glass293c43f2022-09-21 16:21:37 +020012#include <malloc.h>
Simon Glassb1446442015-03-25 12:22:39 -060013#include <os.h>
14#include <scsi.h>
Simon Glass4c92a4d2022-09-21 16:21:36 +020015#include <scsi_emul.h>
Simon Glassb1446442015-03-25 12:22:39 -060016#include <usb.h>
17
Simon Glassb1446442015-03-25 12:22:39 -060018/*
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
24enum {
25 SANDBOX_FLASH_EP_OUT = 1, /* endpoints */
26 SANDBOX_FLASH_EP_IN = 2,
27 SANDBOX_FLASH_BLOCK_LEN = 512,
Simon Glass293c43f2022-09-21 16:21:37 +020028 SANDBOX_FLASH_BUF_SIZE = 512,
Simon Glassb1446442015-03-25 12:22:39 -060029};
30
Simon Glass31d78162015-11-08 23:47:53 -070031enum {
32 STRINGID_MANUFACTURER = 1,
33 STRINGID_PRODUCT,
34 STRINGID_SERIAL,
35
36 STRINGID_COUNT,
37};
38
Simon Glassb1446442015-03-25 12:22:39 -060039/**
40 * struct sandbox_flash_priv - private state for this driver
41 *
Simon Glass4c92a4d2022-09-21 16:21:36 +020042 * @eminfo: emulator state
Simon Glassb1446442015-03-25 12:22:39 -060043 * @error: true if there is an error condition
Simon Glassb1446442015-03-25 12:22:39 -060044 * @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 Glassb1446442015-03-25 12:22:39 -060048 */
49struct sandbox_flash_priv {
Simon Glass4c92a4d2022-09-21 16:21:36 +020050 struct scsi_emul_info eminfo;
Simon Glassb1446442015-03-25 12:22:39 -060051 bool error;
Simon Glassb1446442015-03-25 12:22:39 -060052 u32 tag;
53 int fd;
Simon Glassb1446442015-03-25 12:22:39 -060054 struct umass_bbb_csw status;
Simon Glassb1446442015-03-25 12:22:39 -060055};
56
57struct sandbox_flash_plat {
58 const char *pathname;
Simon Glass31d78162015-11-08 23:47:53 -070059 struct usb_string flash_strings[STRINGID_COUNT];
Simon Glassb1446442015-03-25 12:22:39 -060060};
61
Simon Glassb1446442015-03-25 12:22:39 -060062static 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
80static 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
92static 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
105static 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
115static 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
125static 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
134static 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
158static 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 Glassb1446442015-03-25 12:22:39 -0600166}
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 Glass8cfdea72022-09-21 16:21:41 +0200175static void setup_response(struct sandbox_flash_priv *priv)
Simon Glassb1446442015-03-25 12:22:39 -0600176{
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 Glassb1446442015-03-25 12:22:39 -0600183}
184
Simon Glass4d3b00d2022-09-21 16:21:45 +0200185static int handle_ufi_command(struct sandbox_flash_priv *priv, const void *buff,
Simon Glassb1446442015-03-25 12:22:39 -0600186 int len)
187{
Simon Glass4c92a4d2022-09-21 16:21:36 +0200188 struct scsi_emul_info *info = &priv->eminfo;
Simon Glassa4eff9f2017-06-14 21:28:29 -0600189 const struct scsi_cmd *req = buff;
Simon Glass4d3b00d2022-09-21 16:21:45 +0200190 int ret;
Heinrich Schuchardt621d1c92022-11-10 08:40:30 +0100191 off_t offset;
Simon Glassb1446442015-03-25 12:22:39 -0600192
Simon Glass4d3b00d2022-09-21 16:21:45 +0200193 ret = sb_scsi_emul_command(info, req, len);
194 if (!ret) {
Simon Glass8cfdea72022-09-21 16:21:41 +0200195 setup_response(priv);
Simon Glass31b4f9e2022-10-20 18:22:55 -0600196 } else if ((ret == SCSI_EMUL_DO_READ || ret == SCSI_EMUL_DO_WRITE) &&
197 priv->fd != -1) {
Heinrich Schuchardt621d1c92022-11-10 08:40:30 +0100198 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 Glass4d3b00d2022-09-21 16:21:45 +0200204 } else {
205 setup_fail_response(priv);
Simon Glassb1446442015-03-25 12:22:39 -0600206 }
207
Simon Glassb1446442015-03-25 12:22:39 -0600208 return 0;
209}
210
211static 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 Glass4c92a4d2022-09-21 16:21:36 +0200215 struct scsi_emul_info *info = &priv->eminfo;
Simon Glassb1446442015-03-25 12:22:39 -0600216 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 Glass4c92a4d2022-09-21 16:21:36 +0200220 dev->name, pipe, ep, len, info->phase);
Simon Glassb1446442015-03-25 12:22:39 -0600221 switch (ep) {
222 case SANDBOX_FLASH_EP_OUT:
Simon Glass4c92a4d2022-09-21 16:21:36 +0200223 switch (info->phase) {
Simon Glasse6e05ad2022-09-21 16:21:35 +0200224 case SCSIPH_START:
Simon Glass4c92a4d2022-09-21 16:21:36 +0200225 info->alloc_len = 0;
226 info->read_len = 0;
Simon Glass31b4f9e2022-10-20 18:22:55 -0600227 info->write_len = 0;
Simon Glassb1446442015-03-25 12:22:39 -0600228 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 Glass4c92a4d2022-09-21 16:21:36 +0200236 info->transfer_len = cbw->dCBWDataTransferLength;
Simon Glassb1446442015-03-25 12:22:39 -0600237 priv->tag = cbw->dCBWTag;
Simon Glass4d3b00d2022-09-21 16:21:45 +0200238 return handle_ufi_command(priv, cbw->CBWCDB,
Simon Glassb1446442015-03-25 12:22:39 -0600239 cbw->bCDBLength);
Simon Glasse6e05ad2022-09-21 16:21:35 +0200240 case SCSIPH_DATA:
Simon Glass31b4f9e2022-10-20 18:22:55 -0600241 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 Glassb1446442015-03-25 12:22:39 -0600266 default:
267 break;
268 }
269 case SANDBOX_FLASH_EP_IN:
Simon Glass4c92a4d2022-09-21 16:21:36 +0200270 switch (info->phase) {
Simon Glasse6e05ad2022-09-21 16:21:35 +0200271 case SCSIPH_DATA:
Simon Glass4c92a4d2022-09-21 16:21:36 +0200272 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 Glassb1446442015-03-25 12:22:39 -0600275 ulong bytes_read;
276
Sean Anderson03831852022-03-23 18:24:38 -0400277 if (priv->fd == -1)
278 return -EIO;
279
Simon Glassb1446442015-03-25 12:22:39 -0600280 bytes_read = os_read(priv->fd, buff, len);
281 if (bytes_read != len)
282 return -EIO;
Simon Glassd0962c92022-09-21 16:21:39 +0200283 info->read_len -= len / info->block_size;
Simon Glass4c92a4d2022-09-21 16:21:36 +0200284 if (!info->read_len)
285 info->phase = SCSIPH_STATUS;
Simon Glassb1446442015-03-25 12:22:39 -0600286 } else {
Simon Glass4c92a4d2022-09-21 16:21:36 +0200287 if (info->alloc_len && len > info->alloc_len)
288 len = info->alloc_len;
Simon Glass293c43f2022-09-21 16:21:37 +0200289 if (len > SANDBOX_FLASH_BUF_SIZE)
290 len = SANDBOX_FLASH_BUF_SIZE;
291 memcpy(buff, info->buff, len);
Simon Glass4c92a4d2022-09-21 16:21:36 +0200292 info->phase = SCSIPH_STATUS;
Simon Glassb1446442015-03-25 12:22:39 -0600293 }
294 return len;
Simon Glasse6e05ad2022-09-21 16:21:35 +0200295 case SCSIPH_STATUS:
Simon Glassb1446442015-03-25 12:22:39 -0600296 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 Glass4c92a4d2022-09-21 16:21:36 +0200300 info->phase = SCSIPH_START;
Simon Glassb1446442015-03-25 12:22:39 -0600301 return len;
302 default:
303 break;
304 }
305 }
306err:
307 priv->error = true;
308 debug("%s: Detected transfer error\n", __func__);
309 return 0;
310}
311
Simon Glassaad29ae2020-12-03 16:55:21 -0700312static int sandbox_flash_of_to_plat(struct udevice *dev)
Simon Glassb1446442015-03-25 12:22:39 -0600313{
Simon Glassfa20e932020-12-03 16:55:20 -0700314 struct sandbox_flash_plat *plat = dev_get_plat(dev);
Simon Glassb1446442015-03-25 12:22:39 -0600315
Simon Glass82bf00e2017-05-18 20:09:39 -0600316 plat->pathname = dev_read_string(dev, "sandbox,filepath");
Simon Glassb1446442015-03-25 12:22:39 -0600317
318 return 0;
319}
320
321static int sandbox_flash_bind(struct udevice *dev)
322{
Simon Glassfa20e932020-12-03 16:55:20 -0700323 struct sandbox_flash_plat *plat = dev_get_plat(dev);
Simon Glass31d78162015-11-08 23:47:53 -0700324 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 Mengd502cf12017-10-01 06:19:36 -0700334 return usb_emul_setup_device(dev, plat->flash_strings, flash_desc_list);
Simon Glassb1446442015-03-25 12:22:39 -0600335}
336
337static int sandbox_flash_probe(struct udevice *dev)
338{
Simon Glassfa20e932020-12-03 16:55:20 -0700339 struct sandbox_flash_plat *plat = dev_get_plat(dev);
Simon Glassb1446442015-03-25 12:22:39 -0600340 struct sandbox_flash_priv *priv = dev_get_priv(dev);
Simon Glass293c43f2022-09-21 16:21:37 +0200341 struct scsi_emul_info *info = &priv->eminfo;
342 int ret;
Simon Glassb1446442015-03-25 12:22:39 -0600343
Simon Glass31b4f9e2022-10-20 18:22:55 -0600344 priv->fd = os_open(plat->pathname, OS_O_RDWR);
Simon Glass293c43f2022-09-21 16:21:37 +0200345 if (priv->fd != -1) {
Simon Glass4313c3e2022-09-21 16:21:40 +0200346 ret = os_get_filesize(plat->pathname, &info->file_size);
Simon Glass293c43f2022-09-21 16:21:37 +0200347 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 Glass37884f02022-09-21 16:21:38 +0200353 info->vendor = plat->flash_strings[STRINGID_MANUFACTURER - 1].s;
354 info->product = plat->flash_strings[STRINGID_PRODUCT - 1].s;
Simon Glassd0962c92022-09-21 16:21:39 +0200355 info->block_size = SANDBOX_FLASH_BLOCK_LEN;
Simon Glass293c43f2022-09-21 16:21:37 +0200356
357 return 0;
358}
359
360static 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 Glassb1446442015-03-25 12:22:39 -0600366
367 return 0;
368}
369
370static const struct dm_usb_ops sandbox_usb_flash_ops = {
371 .control = sandbox_flash_control,
372 .bulk = sandbox_flash_bulk,
373};
374
375static const struct udevice_id sandbox_usb_flash_ids[] = {
376 { .compatible = "sandbox,usb-flash" },
377 { }
378};
379
380U_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 Glass293c43f2022-09-21 16:21:37 +0200386 .remove = sandbox_flash_remove,
Simon Glassaad29ae2020-12-03 16:55:21 -0700387 .of_to_plat = sandbox_flash_of_to_plat,
Simon Glassb1446442015-03-25 12:22:39 -0600388 .ops = &sandbox_usb_flash_ops,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700389 .priv_auto = sizeof(struct sandbox_flash_priv),
Simon Glass71fa5b42020-12-03 16:55:18 -0700390 .plat_auto = sizeof(struct sandbox_flash_plat),
Simon Glassb1446442015-03-25 12:22:39 -0600391};