1
2
3
4
5
6
7
8
9
10#include <common.h>
11#include <asm/errno.h>
12#include <linux/usb/ch9.h>
13#include <linux/usb/gadget.h>
14
15#include <asm/unaligned.h>
16
17
18static int utf8_to_utf16le(const char *s, __le16 *cp, unsigned len)
19{
20 int count = 0;
21 u8 c;
22 u16 uchar;
23
24
25
26
27
28
29 while (len != 0 && (c = (u8) *s++) != 0) {
30 if ((c & 0x80)) {
31
32
33
34
35 if ((c & 0xe0) == 0xc0) {
36 uchar = (c & 0x1f) << 6;
37
38 c = (u8) *s++;
39 if ((c & 0xc0) != 0x80)
40 goto fail;
41 c &= 0x3f;
42 uchar |= c;
43
44
45
46
47
48 } else if ((c & 0xf0) == 0xe0) {
49 uchar = (c & 0x0f) << 12;
50
51 c = (u8) *s++;
52 if ((c & 0xc0) != 0x80)
53 goto fail;
54 c &= 0x3f;
55 uchar |= c << 6;
56
57 c = (u8) *s++;
58 if ((c & 0xc0) != 0x80)
59 goto fail;
60 c &= 0x3f;
61 uchar |= c;
62
63
64 if (0xd800 <= uchar && uchar <= 0xdfff)
65 goto fail;
66
67
68
69
70
71
72
73
74 } else
75 goto fail;
76 } else
77 uchar = c;
78 put_unaligned_le16(uchar, cp++);
79 count++;
80 len--;
81 }
82 return count;
83fail:
84 return -1;
85}
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105int
106usb_gadget_get_string(struct usb_gadget_strings *table, int id, u8 *buf)
107{
108 struct usb_string *s;
109 int len;
110
111 if (!table)
112 return -EINVAL;
113
114
115 if (id == 0) {
116 buf[0] = 4;
117 buf[1] = USB_DT_STRING;
118 buf[2] = (u8) table->language;
119 buf[3] = (u8) (table->language >> 8);
120 return 4;
121 }
122 for (s = table->strings; s && s->s; s++)
123 if (s->id == id)
124 break;
125
126
127 if (!s || !s->s)
128 return -EINVAL;
129
130
131 len = min((size_t) 126, strlen(s->s));
132 memset(buf + 2, 0, 2 * len);
133 len = utf8_to_utf16le(s->s, (__le16 *)&buf[2], len);
134 if (len < 0)
135 return -EINVAL;
136 buf[0] = (len + 1) * 2;
137 buf[1] = USB_DT_STRING;
138 return buf[0];
139}
140