blob: 9b9d31eb6037fb0c3f1d62e7c10c54bc2367ae2c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * usb/gadget/config.c -- simplify building config descriptors
3 *
4 * Copyright (C) 2003 David Brownell
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
12#include <linux/errno.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
Sebastian Andrzej Siewior0ba16de2012-09-06 20:11:10 +020015#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/list.h>
17#include <linux/string.h>
18#include <linux/device.h>
19
David Brownell5f848132006-12-16 15:34:53 -080020#include <linux/usb/ch9.h>
David Brownell9454a572007-10-04 18:05:17 -070021#include <linux/usb/gadget.h>
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +020022#include <linux/usb/composite.h>
Li Jund1606df2015-07-09 15:18:47 +080023#include <linux/usb/otg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25/**
26 * usb_descriptor_fillbuf - fill buffer with descriptors
27 * @buf: Buffer to be filled
28 * @buflen: Size of buf
29 * @src: Array of descriptor pointers, terminated by null pointer.
30 *
31 * Copies descriptors into the buffer, returning the length or a
32 * negative error code if they can't all be copied. Useful when
33 * assembling descriptors for an associated set of interfaces used
34 * as part of configuring a composite device; or in other cases where
35 * sets of descriptors need to be marshaled.
36 */
37int
38usb_descriptor_fillbuf(void *buf, unsigned buflen,
39 const struct usb_descriptor_header **src)
40{
41 u8 *dest = buf;
42
43 if (!src)
44 return -EINVAL;
45
46 /* fill buffer from src[] until null descriptor ptr */
David Brownella9475222007-07-30 12:31:07 -070047 for (; NULL != *src; src++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 unsigned len = (*src)->bLength;
49
50 if (len > buflen)
51 return -EINVAL;
52 memcpy(dest, *src, len);
53 buflen -= len;
54 dest += len;
55 }
56 return dest - (u8 *)buf;
57}
Sebastian Andrzej Siewior0ba16de2012-09-06 20:11:10 +020058EXPORT_SYMBOL_GPL(usb_descriptor_fillbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60/**
61 * usb_gadget_config_buf - builts a complete configuration descriptor
62 * @config: Header for the descriptor, including characteristics such
63 * as power requirements and number of interfaces.
64 * @desc: Null-terminated vector of pointers to the descriptors (interface,
65 * endpoint, etc) defining all functions in this device configuration.
66 * @buf: Buffer for the resulting configuration descriptor.
67 * @length: Length of buffer. If this is not big enough to hold the
68 * entire configuration descriptor, an error code will be returned.
69 *
70 * This copies descriptors into the response buffer, building a descriptor
71 * for that configuration. It returns the buffer length or a negative
72 * status code. The config.wTotalLength field is set to match the length
73 * of the result, but other descriptor fields (including power usage and
74 * interface count) must be set by the caller.
75 *
76 * Gadget drivers could use this when constructing a config descriptor
77 * in response to USB_REQ_GET_DESCRIPTOR. They will need to patch the
78 * resulting bDescriptorType value if USB_DT_OTHER_SPEED_CONFIG is needed.
79 */
80int usb_gadget_config_buf(
81 const struct usb_config_descriptor *config,
82 void *buf,
83 unsigned length,
84 const struct usb_descriptor_header **desc
85)
86{
87 struct usb_config_descriptor *cp = buf;
88 int len;
89
90 /* config descriptor first */
91 if (length < USB_DT_CONFIG_SIZE || !desc)
92 return -EINVAL;
David Brownella4c39c42008-06-19 17:52:25 -070093 *cp = *config;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 /* then interface/endpoint/class/vendor/... */
Sandhya Bankar43202802016-05-04 12:23:14 +053096 len = usb_descriptor_fillbuf(USB_DT_CONFIG_SIZE + (u8 *)buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 length - USB_DT_CONFIG_SIZE, desc);
98 if (len < 0)
99 return len;
100 len += USB_DT_CONFIG_SIZE;
101 if (len > 0xffff)
102 return -EINVAL;
103
104 /* patch up the config descriptor */
105 cp->bLength = USB_DT_CONFIG_SIZE;
106 cp->bDescriptorType = USB_DT_CONFIG;
107 cp->wTotalLength = cpu_to_le16(len);
108 cp->bmAttributes |= USB_CONFIG_ATT_ONE;
109 return len;
110}
Sebastian Andrzej Siewior0ba16de2012-09-06 20:11:10 +0200111EXPORT_SYMBOL_GPL(usb_gadget_config_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
David Brownella4c39c42008-06-19 17:52:25 -0700113/**
114 * usb_copy_descriptors - copy a vector of USB descriptors
115 * @src: null-terminated vector to copy
116 * Context: initialization code, which may sleep
117 *
118 * This makes a copy of a vector of USB descriptors. Its primary use
119 * is to support usb_function objects which can have multiple copies,
120 * each needing different descriptors. Functions may have static
121 * tables of descriptors, which are used as templates and customized
122 * with identifiers (for interfaces, strings, endpoints, and more)
123 * as needed by a given function instance.
124 */
Michal Nazarewicz28824b12010-05-05 12:53:13 +0200125struct usb_descriptor_header **
David Brownella4c39c42008-06-19 17:52:25 -0700126usb_copy_descriptors(struct usb_descriptor_header **src)
127{
128 struct usb_descriptor_header **tmp;
129 unsigned bytes;
130 unsigned n_desc;
131 void *mem;
132 struct usb_descriptor_header **ret;
133
134 /* count descriptors and their sizes; then add vector size */
135 for (bytes = 0, n_desc = 0, tmp = src; *tmp; tmp++, n_desc++)
136 bytes += (*tmp)->bLength;
137 bytes += (n_desc + 1) * sizeof(*tmp);
138
139 mem = kmalloc(bytes, GFP_KERNEL);
140 if (!mem)
141 return NULL;
142
143 /* fill in pointers starting at "tmp",
144 * to descriptors copied starting at "mem";
145 * and return "ret"
146 */
147 tmp = mem;
148 ret = mem;
149 mem += (n_desc + 1) * sizeof(*tmp);
150 while (*src) {
151 memcpy(mem, *src, (*src)->bLength);
152 *tmp = mem;
153 tmp++;
154 mem += (*src)->bLength;
155 src++;
156 }
157 *tmp = NULL;
158
159 return ret;
160}
Sebastian Andrzej Siewior0ba16de2012-09-06 20:11:10 +0200161EXPORT_SYMBOL_GPL(usb_copy_descriptors);
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +0200162
163int usb_assign_descriptors(struct usb_function *f,
164 struct usb_descriptor_header **fs,
165 struct usb_descriptor_header **hs,
John Youneaef50c2016-02-05 17:06:07 -0800166 struct usb_descriptor_header **ss,
167 struct usb_descriptor_header **ssp)
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +0200168{
169 struct usb_gadget *g = f->config->cdev->gadget;
170
171 if (fs) {
172 f->fs_descriptors = usb_copy_descriptors(fs);
173 if (!f->fs_descriptors)
174 goto err;
175 }
176 if (hs && gadget_is_dualspeed(g)) {
177 f->hs_descriptors = usb_copy_descriptors(hs);
178 if (!f->hs_descriptors)
179 goto err;
180 }
181 if (ss && gadget_is_superspeed(g)) {
182 f->ss_descriptors = usb_copy_descriptors(ss);
183 if (!f->ss_descriptors)
184 goto err;
185 }
John Younf5c61222016-02-05 17:06:21 -0800186 if (ssp && gadget_is_superspeed_plus(g)) {
187 f->ssp_descriptors = usb_copy_descriptors(ssp);
188 if (!f->ssp_descriptors)
189 goto err;
190 }
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +0200191 return 0;
192err:
193 usb_free_all_descriptors(f);
194 return -ENOMEM;
195}
196EXPORT_SYMBOL_GPL(usb_assign_descriptors);
197
198void usb_free_all_descriptors(struct usb_function *f)
199{
200 usb_free_descriptors(f->fs_descriptors);
Hemant Kumard7bf8ba2018-11-21 17:07:20 -0800201 f->fs_descriptors = NULL;
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +0200202 usb_free_descriptors(f->hs_descriptors);
Hemant Kumard7bf8ba2018-11-21 17:07:20 -0800203 f->hs_descriptors = NULL;
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +0200204 usb_free_descriptors(f->ss_descriptors);
Hemant Kumard7bf8ba2018-11-21 17:07:20 -0800205 f->ss_descriptors = NULL;
John Younf5c61222016-02-05 17:06:21 -0800206 usb_free_descriptors(f->ssp_descriptors);
Hemant Kumard7bf8ba2018-11-21 17:07:20 -0800207 f->ssp_descriptors = NULL;
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +0200208}
209EXPORT_SYMBOL_GPL(usb_free_all_descriptors);
Li Jund1606df2015-07-09 15:18:47 +0800210
211struct usb_descriptor_header *usb_otg_descriptor_alloc(
212 struct usb_gadget *gadget)
213{
214 struct usb_descriptor_header *otg_desc;
215 unsigned length = 0;
216
217 if (gadget->otg_caps && (gadget->otg_caps->otg_rev >= 0x0200))
218 length = sizeof(struct usb_otg20_descriptor);
219 else
220 length = sizeof(struct usb_otg_descriptor);
221
222 otg_desc = kzalloc(length, GFP_KERNEL);
223 return otg_desc;
224}
225EXPORT_SYMBOL_GPL(usb_otg_descriptor_alloc);
226
227int usb_otg_descriptor_init(struct usb_gadget *gadget,
228 struct usb_descriptor_header *otg_desc)
229{
230 struct usb_otg_descriptor *otg1x_desc;
231 struct usb_otg20_descriptor *otg20_desc;
232 struct usb_otg_caps *otg_caps = gadget->otg_caps;
233 u8 otg_attributes = 0;
234
235 if (!otg_desc)
236 return -EINVAL;
237
238 if (otg_caps && otg_caps->otg_rev) {
239 if (otg_caps->hnp_support)
240 otg_attributes |= USB_OTG_HNP;
241 if (otg_caps->srp_support)
242 otg_attributes |= USB_OTG_SRP;
243 if (otg_caps->adp_support && (otg_caps->otg_rev >= 0x0200))
244 otg_attributes |= USB_OTG_ADP;
245 } else {
246 otg_attributes = USB_OTG_SRP | USB_OTG_HNP;
247 }
248
249 if (otg_caps && (otg_caps->otg_rev >= 0x0200)) {
250 otg20_desc = (struct usb_otg20_descriptor *)otg_desc;
251 otg20_desc->bLength = sizeof(struct usb_otg20_descriptor);
252 otg20_desc->bDescriptorType = USB_DT_OTG;
253 otg20_desc->bmAttributes = otg_attributes;
254 otg20_desc->bcdOTG = cpu_to_le16(otg_caps->otg_rev);
255 } else {
256 otg1x_desc = (struct usb_otg_descriptor *)otg_desc;
257 otg1x_desc->bLength = sizeof(struct usb_otg_descriptor);
258 otg1x_desc->bDescriptorType = USB_DT_OTG;
259 otg1x_desc->bmAttributes = otg_attributes;
260 }
261
262 return 0;
263}
264EXPORT_SYMBOL_GPL(usb_otg_descriptor_init);