]> git.proxmox.com Git - mirror_qemu.git/blame - hw/usb-desc.c
usb: data structs and helpers for usb descriptors.
[mirror_qemu.git] / hw / usb-desc.c
CommitLineData
37fb59d3
GH
1#include "usb.h"
2#include "usb-desc.h"
3#include "trace.h"
4
5/* ------------------------------------------------------------------ */
6
7static uint8_t usb_lo(uint16_t val)
8{
9 return val & 0xff;
10}
11
12static uint8_t usb_hi(uint16_t val)
13{
14 return (val >> 8) & 0xff;
15}
16
17int usb_desc_device(const USBDescID *id, const USBDescDevice *dev,
18 uint8_t *dest, size_t len)
19{
20 uint8_t bLength = 0x12;
21
22 if (len < bLength) {
23 return -1;
24 }
25
26 dest[0x00] = bLength;
27 dest[0x01] = USB_DT_DEVICE;
28
29 dest[0x02] = usb_lo(dev->bcdUSB);
30 dest[0x03] = usb_hi(dev->bcdUSB);
31 dest[0x04] = dev->bDeviceClass;
32 dest[0x05] = dev->bDeviceSubClass;
33 dest[0x06] = dev->bDeviceProtocol;
34 dest[0x07] = dev->bMaxPacketSize0;
35
36 dest[0x08] = usb_lo(id->idVendor);
37 dest[0x09] = usb_hi(id->idVendor);
38 dest[0x0a] = usb_lo(id->idProduct);
39 dest[0x0b] = usb_hi(id->idProduct);
40 dest[0x0c] = usb_lo(id->bcdDevice);
41 dest[0x0d] = usb_hi(id->bcdDevice);
42 dest[0x0e] = id->iManufacturer;
43 dest[0x0f] = id->iProduct;
44 dest[0x10] = id->iSerialNumber;
45
46 dest[0x11] = dev->bNumConfigurations;
47
48 return bLength;
49}
50
51int usb_desc_config(const USBDescConfig *conf, uint8_t *dest, size_t len)
52{
53 uint8_t bLength = 0x09;
54 uint16_t wTotalLength = 0;
55 int i, rc, count;
56
57 if (len < bLength) {
58 return -1;
59 }
60
61 dest[0x00] = bLength;
62 dest[0x01] = USB_DT_CONFIG;
63 dest[0x04] = conf->bNumInterfaces;
64 dest[0x05] = conf->bConfigurationValue;
65 dest[0x06] = conf->iConfiguration;
66 dest[0x07] = conf->bmAttributes;
67 dest[0x08] = conf->bMaxPower;
68 wTotalLength += bLength;
69
70 count = conf->nif ? conf->nif : conf->bNumInterfaces;
71 for (i = 0; i < count; i++) {
72 rc = usb_desc_iface(conf->ifs + i, dest + wTotalLength, len - wTotalLength);
73 if (rc < 0) {
74 return rc;
75 }
76 wTotalLength += rc;
77 }
78
79 dest[0x02] = usb_lo(wTotalLength);
80 dest[0x03] = usb_hi(wTotalLength);
81 return wTotalLength;
82}
83
84int usb_desc_iface(const USBDescIface *iface, uint8_t *dest, size_t len)
85{
86 uint8_t bLength = 0x09;
87 int i, rc, pos = 0;
88
89 if (len < bLength) {
90 return -1;
91 }
92
93 dest[0x00] = bLength;
94 dest[0x01] = USB_DT_INTERFACE;
95 dest[0x02] = iface->bInterfaceNumber;
96 dest[0x03] = iface->bAlternateSetting;
97 dest[0x04] = iface->bNumEndpoints;
98 dest[0x05] = iface->bInterfaceClass;
99 dest[0x06] = iface->bInterfaceSubClass;
100 dest[0x07] = iface->bInterfaceProtocol;
101 dest[0x08] = iface->iInterface;
102 pos += bLength;
103
104 for (i = 0; i < iface->ndesc; i++) {
105 rc = usb_desc_other(iface->descs + i, dest + pos, len - pos);
106 if (rc < 0) {
107 return rc;
108 }
109 pos += rc;
110 }
111
112 for (i = 0; i < iface->bNumEndpoints; i++) {
113 rc = usb_desc_endpoint(iface->eps + i, dest + pos, len - pos);
114 if (rc < 0) {
115 return rc;
116 }
117 pos += rc;
118 }
119
120 return pos;
121}
122
123int usb_desc_endpoint(const USBDescEndpoint *ep, uint8_t *dest, size_t len)
124{
125 uint8_t bLength = 0x07;
126
127 if (len < bLength) {
128 return -1;
129 }
130
131 dest[0x00] = bLength;
132 dest[0x01] = USB_DT_ENDPOINT;
133 dest[0x02] = ep->bEndpointAddress;
134 dest[0x03] = ep->bmAttributes;
135 dest[0x04] = usb_lo(ep->wMaxPacketSize);
136 dest[0x05] = usb_hi(ep->wMaxPacketSize);
137 dest[0x06] = ep->bInterval;
138
139 return bLength;
140}
141
142int usb_desc_other(const USBDescOther *desc, uint8_t *dest, size_t len)
143{
144 int bLength = desc->length ? desc->length : desc->data[0];
145
146 if (len < bLength) {
147 return -1;
148 }
149
150 memcpy(dest, desc->data, bLength);
151 return bLength;
152}
153
154int usb_desc_string(const char* const *str, int index, uint8_t *dest, size_t len)
155{
156 uint8_t bLength, pos, i;
157
158 if (len < 4) {
159 return -1;
160 }
161
162 if (index == 0) {
163 /* language ids */
164 dest[0] = 4;
165 dest[1] = USB_DT_STRING;
166 dest[2] = 0x09;
167 dest[3] = 0x04;
168 return 4;
169 }
170
171 if (str[index] == NULL) {
172 return 0;
173 }
174 bLength = strlen(str[index]) * 2 + 2;
175 dest[0] = bLength;
176 dest[1] = USB_DT_STRING;
177 i = 0; pos = 2;
178 while (pos+1 < bLength && pos+1 < len) {
179 dest[pos++] = str[index][i++];
180 dest[pos++] = 0;
181 }
182 return pos;
183}
184
185/* ------------------------------------------------------------------ */
186
187int usb_desc_get_descriptor(USBDevice *dev, int value, uint8_t *dest, size_t len)
188{
189 const USBDesc *desc = dev->info->usb_desc;
190 uint8_t buf[256];
191 uint8_t type = value >> 8;
192 uint8_t index = value & 0xff;
193 int ret = -1;
194
195 switch(type) {
196 case USB_DT_DEVICE:
197 ret = usb_desc_device(&desc->id, desc->full, buf, sizeof(buf));
198 trace_usb_desc_device(dev->addr, len, ret);
199 break;
200 case USB_DT_CONFIG:
201 if (index < desc->full->bNumConfigurations) {
202 ret = usb_desc_config(desc->full->confs + index, buf, sizeof(buf));
203 }
204 trace_usb_desc_config(dev->addr, index, len, ret);
205 break;
206 case USB_DT_STRING:
207 ret = usb_desc_string(desc->str, index, buf, sizeof(buf));
208 trace_usb_desc_string(dev->addr, index, len, ret);
209 break;
210 default:
211 fprintf(stderr, "%s: %d unknown type %d (len %zd)\n", __FUNCTION__,
212 dev->addr, type, len);
213 break;
214 }
215
216 if (ret > 0) {
217 if (ret > len) {
218 ret = len;
219 }
220 memcpy(dest, buf, ret);
221 }
222 return ret;
223}
224
225int usb_desc_handle_control(USBDevice *dev, int request, int value,
226 int index, int length, uint8_t *data)
227{
228 const USBDesc *desc = dev->info->usb_desc;
229 int ret = -1;
230
231 assert(desc != NULL);
232 switch(request) {
233 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
234 ret = usb_desc_get_descriptor(dev, value, data, length);
235 break;
236 }
237 return ret;
238}