1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
11 #include <dm/device-internal.h>
13 static int copy_to_unicode(char *buff, int length, const char *str)
20 buff[1] = USB_DT_STRING;
21 for (ptr = 2, i = 0; ptr + 1 < length && *str; i++, ptr += 2) {
30 static int usb_emul_get_string(struct usb_string *strings, int index,
31 char *buff, int length)
37 desc[1] = USB_DT_STRING;
42 struct usb_string *ptr;
44 for (ptr = strings; ptr->s; ptr++) {
46 return copy_to_unicode(buff, length, ptr->s);
53 struct usb_generic_descriptor **usb_emul_find_descriptor(
54 struct usb_generic_descriptor **ptr, int type, int index)
56 debug("%s: type=%x, index=%d\n", __func__, type, index);
58 if ((*ptr)->bDescriptorType != type)
62 struct usb_config_descriptor *cdesc;
64 cdesc = (struct usb_config_descriptor *)*ptr;
65 if (cdesc && cdesc->bConfigurationValue == index)
73 debug("%s: config ptr=%p\n", __func__, *ptr);
78 static int usb_emul_get_descriptor(struct usb_dev_platdata *plat, int value,
79 void *buffer, int length)
81 struct usb_generic_descriptor **ptr;
82 int type = value >> 8;
83 int index = value & 0xff;
86 debug("%s: type=%d, index=%d, plat=%p\n", __func__, type, index, plat);
87 if (type == USB_DT_STRING) {
88 return usb_emul_get_string(plat->strings, index, buffer,
92 ptr = usb_emul_find_descriptor(plat->desc_list, type, index);
94 debug("%s: Could not find descriptor type %d, index %d\n",
95 __func__, type, index);
98 for (upto = 0; *ptr && upto < length; ptr++, upto += todo) {
99 todo = min(length - upto, (int)(*ptr)->bLength);
101 memcpy(buffer + upto, *ptr, todo);
104 return upto ? upto : length ? -EIO : 0;
107 static int usb_emul_find_devnum(int devnum, int port1, struct udevice **emulp)
114 ret = uclass_get(UCLASS_USB_EMUL, &uc);
117 uclass_foreach_dev(dev, uc) {
118 struct usb_dev_platdata *udev = dev_get_parent_platdata(dev);
121 * devnum is initialzied to zero at the beginning of the
122 * enumeration process in usb_setup_device(). At this
123 * point, udev->devnum has not been assigned to any valid
124 * USB address either, so we can't rely on the comparison
125 * result between udev->devnum and devnum to select an
129 struct usb_emul_platdata *plat;
132 * If the parent is sandbox USB controller, we are
133 * the root hub. And there is only one root hub
136 if (device_get_uclass_id(dev->parent) == UCLASS_USB) {
137 debug("%s: Found emulator '%s'\n",
138 __func__, dev->name);
143 plat = dev_get_uclass_platdata(dev);
144 if (plat->port1 == port1) {
145 debug("%s: Found emulator '%s', port %d\n",
146 __func__, dev->name, port1);
150 } else if (udev->devnum == devnum) {
151 debug("%s: Found emulator '%s', addr %d\n", __func__,
152 dev->name, udev->devnum);
158 debug("%s: No emulator found, addr %d\n", __func__, devnum);
162 int usb_emul_find(struct udevice *bus, ulong pipe, int port1,
163 struct udevice **emulp)
165 int devnum = usb_pipedevice(pipe);
167 return usb_emul_find_devnum(devnum, port1, emulp);
170 int usb_emul_find_for_dev(struct udevice *dev, struct udevice **emulp)
172 struct usb_dev_platdata *udev = dev_get_parent_platdata(dev);
174 return usb_emul_find_devnum(udev->devnum, 0, emulp);
177 int usb_emul_control(struct udevice *emul, struct usb_device *udev,
178 unsigned long pipe, void *buffer, int length,
179 struct devrequest *setup)
181 struct dm_usb_ops *ops = usb_get_emul_ops(emul);
182 struct usb_dev_platdata *plat;
185 /* We permit getting the descriptor before we are probed */
186 plat = dev_get_parent_platdata(emul);
189 debug("%s: dev=%s\n", __func__, emul->name);
190 if (pipe == usb_rcvctrlpipe(udev, 0)) {
191 switch (setup->request) {
192 case USB_REQ_GET_DESCRIPTOR: {
193 return usb_emul_get_descriptor(plat, setup->value,
197 ret = device_probe(emul);
200 return ops->control(emul, udev, pipe, buffer, length,
203 } else if (pipe == usb_snddefctrl(udev)) {
204 switch (setup->request) {
205 case USB_REQ_SET_ADDRESS:
206 debug(" ** set address %s %d\n", emul->name,
208 plat->devnum = setup->value;
211 debug("requestsend =%x\n", setup->request);
214 } else if (pipe == usb_sndctrlpipe(udev, 0)) {
215 switch (setup->request) {
216 case USB_REQ_SET_CONFIGURATION:
217 plat->configno = setup->value;
220 ret = device_probe(emul);
223 return ops->control(emul, udev, pipe, buffer, length,
227 debug("pipe=%lx\n", pipe);
232 int usb_emul_bulk(struct udevice *emul, struct usb_device *udev,
233 unsigned long pipe, void *buffer, int length)
235 struct dm_usb_ops *ops = usb_get_emul_ops(emul);
238 /* We permit getting the descriptor before we are probed */
241 debug("%s: dev=%s\n", __func__, emul->name);
242 ret = device_probe(emul);
245 return ops->bulk(emul, udev, pipe, buffer, length);
248 int usb_emul_int(struct udevice *emul, struct usb_device *udev,
249 unsigned long pipe, void *buffer, int length, int interval,
252 struct dm_usb_ops *ops = usb_get_emul_ops(emul);
256 debug("%s: dev=%s\n", __func__, emul->name);
258 return ops->interrupt(emul, udev, pipe, buffer, length, interval,
262 int usb_emul_setup_device(struct udevice *dev, struct usb_string *strings,
265 struct usb_dev_platdata *plat = dev_get_parent_platdata(dev);
266 struct usb_generic_descriptor **ptr;
267 struct usb_config_descriptor *cdesc;
270 plat->strings = strings;
271 plat->desc_list = (struct usb_generic_descriptor **)desc_list;
273 /* Fill in wTotalLength for each configuration descriptor */
274 ptr = plat->desc_list;
275 for (cdesc = NULL, upto = 0; *ptr; upto += (*ptr)->bLength, ptr++) {
276 debug(" - upto=%d, type=%d\n", upto, (*ptr)->bDescriptorType);
277 if ((*ptr)->bDescriptorType == USB_DT_CONFIG) {
279 cdesc->wTotalLength = upto;
280 debug("%s: config %d length %d\n", __func__,
281 cdesc->bConfigurationValue,
284 cdesc = (struct usb_config_descriptor *)*ptr;
289 cdesc->wTotalLength = upto;
290 debug("%s: config %d length %d\n", __func__,
291 cdesc->bConfigurationValue, cdesc->wTotalLength);
297 UCLASS_DRIVER(usb_emul) = {
298 .id = UCLASS_USB_EMUL,
300 .post_bind = dm_scan_fdt_dev,
301 .per_device_platdata_auto = sizeof(struct usb_emul_platdata),
302 .per_child_auto = sizeof(struct usb_device),
303 .per_child_platdata_auto = sizeof(struct usb_dev_platdata),