blob: e96782644f314c0d3ef011a929ce309253258d80 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Remy Bohmer23cd1382009-07-29 18:18:43 +02002/*
3 * usb/gadget/config.c -- simplify building config descriptors
4 *
5 * Copyright (C) 2003 David Brownell
6 *
Bin Menga1875592016-02-05 19:30:11 -08007 * Ported to U-Boot by: Thomas Smits <ts.smits@gmail.com> and
Remy Bohmer23cd1382009-07-29 18:18:43 +02008 * Remy Bohmer <linux@bohmer.net>
9 */
10
11#include <common.h>
Troy Kisky898d6862013-09-11 18:24:48 +080012#include <asm/unaligned.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090013#include <linux/errno.h>
Remy Bohmer23cd1382009-07-29 18:18:43 +020014#include <linux/list.h>
15#include <linux/string.h>
16
17#include <linux/usb/ch9.h>
18#include <linux/usb/gadget.h>
19
20
21/**
22 * usb_descriptor_fillbuf - fill buffer with descriptors
23 * @buf: Buffer to be filled
24 * @buflen: Size of buf
25 * @src: Array of descriptor pointers, terminated by null pointer.
26 *
27 * Copies descriptors into the buffer, returning the length or a
28 * negative error code if they can't all be copied. Useful when
29 * assembling descriptors for an associated set of interfaces used
30 * as part of configuring a composite device; or in other cases where
31 * sets of descriptors need to be marshaled.
32 */
33int
34usb_descriptor_fillbuf(void *buf, unsigned buflen,
35 const struct usb_descriptor_header **src)
36{
37 u8 *dest = buf;
38
39 if (!src)
40 return -EINVAL;
41
42 /* fill buffer from src[] until null descriptor ptr */
43 for (; NULL != *src; src++) {
44 unsigned len = (*src)->bLength;
45
46 if (len > buflen)
47 return -EINVAL;
48 memcpy(dest, *src, len);
49 buflen -= len;
50 dest += len;
51 }
52 return dest - (u8 *)buf;
53}
54
55
56/**
57 * usb_gadget_config_buf - builts a complete configuration descriptor
58 * @config: Header for the descriptor, including characteristics such
59 * as power requirements and number of interfaces.
60 * @desc: Null-terminated vector of pointers to the descriptors (interface,
61 * endpoint, etc) defining all functions in this device configuration.
62 * @buf: Buffer for the resulting configuration descriptor.
63 * @length: Length of buffer. If this is not big enough to hold the
64 * entire configuration descriptor, an error code will be returned.
65 *
66 * This copies descriptors into the response buffer, building a descriptor
67 * for that configuration. It returns the buffer length or a negative
68 * status code. The config.wTotalLength field is set to match the length
69 * of the result, but other descriptor fields (including power usage and
70 * interface count) must be set by the caller.
71 *
72 * Gadget drivers could use this when constructing a config descriptor
73 * in response to USB_REQ_GET_DESCRIPTOR. They will need to patch the
74 * resulting bDescriptorType value if USB_DT_OTHER_SPEED_CONFIG is needed.
75 */
76int usb_gadget_config_buf(
77 const struct usb_config_descriptor *config,
78 void *buf,
79 unsigned length,
80 const struct usb_descriptor_header **desc
81)
82{
83 struct usb_config_descriptor *cp = buf;
84 int len;
85
86 /* config descriptor first */
87 if (length < USB_DT_CONFIG_SIZE || !desc)
88 return -EINVAL;
Troy Kisky898d6862013-09-11 18:24:48 +080089 /* config need not be aligned */
90 memcpy(cp, config, sizeof(*cp));
Remy Bohmer23cd1382009-07-29 18:18:43 +020091
92 /* then interface/endpoint/class/vendor/... */
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +040093 len = usb_descriptor_fillbuf(USB_DT_CONFIG_SIZE + (u8 *)buf,
Remy Bohmer23cd1382009-07-29 18:18:43 +020094 length - USB_DT_CONFIG_SIZE, desc);
95 if (len < 0)
96 return len;
97 len += USB_DT_CONFIG_SIZE;
98 if (len > 0xffff)
99 return -EINVAL;
100
101 /* patch up the config descriptor */
102 cp->bLength = USB_DT_CONFIG_SIZE;
103 cp->bDescriptorType = USB_DT_CONFIG;
Troy Kisky898d6862013-09-11 18:24:48 +0800104 put_unaligned_le16(len, &cp->wTotalLength);
Remy Bohmer23cd1382009-07-29 18:18:43 +0200105 cp->bmAttributes |= USB_CONFIG_ATT_ONE;
106 return len;
107}