]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/usb/gadget/g_dnl.c
Merge branch 'master' of git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / drivers / usb / gadget / g_dnl.c
1 /*
2  * g_dnl.c -- USB Downloader Gadget
3  *
4  * Copyright (C) 2012 Samsung Electronics
5  * Lukasz Majewski  <l.majewski@samsung.com>
6  *
7  * SPDX-License-Identifier:     GPL-2.0+
8  */
9
10 #include <common.h>
11 #include <malloc.h>
12
13 #include <mmc.h>
14 #include <part.h>
15
16 #include <g_dnl.h>
17 #include <usb_mass_storage.h>
18 #include <dfu.h>
19 #include <thor.h>
20
21 #include "gadget_chips.h"
22 #include "composite.c"
23
24 /*
25  * One needs to define the following:
26  * CONFIG_G_DNL_VENDOR_NUM
27  * CONFIG_G_DNL_PRODUCT_NUM
28  * CONFIG_G_DNL_MANUFACTURER
29  * at e.g. ./include/configs/<board>.h
30  */
31
32 #define STRING_MANUFACTURER 25
33 #define STRING_PRODUCT 2
34 /* Index of String Descriptor describing this configuration */
35 #define STRING_USBDOWN 2
36 /* Index of String serial */
37 #define STRING_SERIAL  3
38 #define MAX_STRING_SERIAL       32
39 /* Number of supported configurations */
40 #define CONFIGURATION_NUMBER 1
41
42 #define DRIVER_VERSION          "usb_dnl 2.0"
43
44 static const char product[] = "USB download gadget";
45 static char g_dnl_serial[MAX_STRING_SERIAL];
46 static const char manufacturer[] = CONFIG_G_DNL_MANUFACTURER;
47
48 void g_dnl_set_serialnumber(char *s)
49 {
50         memset(g_dnl_serial, 0, MAX_STRING_SERIAL);
51         if (strlen(s) < MAX_STRING_SERIAL)
52                 strncpy(g_dnl_serial, s, strlen(s));
53 }
54
55 static struct usb_device_descriptor device_desc = {
56         .bLength = sizeof device_desc,
57         .bDescriptorType = USB_DT_DEVICE,
58
59         .bcdUSB = __constant_cpu_to_le16(0x0200),
60         .bDeviceClass = USB_CLASS_COMM,
61         .bDeviceSubClass = 0x02, /*0x02:CDC-modem , 0x00:CDC-serial*/
62
63         .idVendor = __constant_cpu_to_le16(CONFIG_G_DNL_VENDOR_NUM),
64         .idProduct = __constant_cpu_to_le16(CONFIG_G_DNL_PRODUCT_NUM),
65         .iProduct = STRING_PRODUCT,
66         .iSerialNumber = STRING_SERIAL,
67         .bNumConfigurations = 1,
68 };
69
70 /*
71  * static strings, in UTF-8
72  * IDs for those strings are assigned dynamically at g_dnl_bind()
73  */
74 static struct usb_string g_dnl_string_defs[] = {
75         {.s = manufacturer},
76         {.s = product},
77         {.s = g_dnl_serial},
78         { }             /* end of list */
79 };
80
81 static struct usb_gadget_strings g_dnl_string_tab = {
82         .language = 0x0409, /* en-us */
83         .strings = g_dnl_string_defs,
84 };
85
86 static struct usb_gadget_strings *g_dnl_composite_strings[] = {
87         &g_dnl_string_tab,
88         NULL,
89 };
90
91 static int g_dnl_unbind(struct usb_composite_dev *cdev)
92 {
93         struct usb_gadget *gadget = cdev->gadget;
94
95         free(cdev->config);
96         cdev->config = NULL;
97         debug("%s: calling usb_gadget_disconnect for "
98                         "controller '%s'\n", __func__, gadget->name);
99         usb_gadget_disconnect(gadget);
100
101         return 0;
102 }
103
104 static inline struct g_dnl_bind_callback *g_dnl_bind_callback_first(void)
105 {
106         return ll_entry_start(struct g_dnl_bind_callback,
107                                 g_dnl_bind_callbacks);
108 }
109
110 static inline struct g_dnl_bind_callback *g_dnl_bind_callback_end(void)
111 {
112         return ll_entry_end(struct g_dnl_bind_callback,
113                                 g_dnl_bind_callbacks);
114 }
115
116 static int g_dnl_do_config(struct usb_configuration *c)
117 {
118         const char *s = c->cdev->driver->name;
119         struct g_dnl_bind_callback *callback = g_dnl_bind_callback_first();
120
121         debug("%s: configuration: 0x%p composite dev: 0x%p\n",
122               __func__, c, c->cdev);
123
124         for (; callback != g_dnl_bind_callback_end(); callback++)
125                 if (!strcmp(s, callback->usb_function_name))
126                         return callback->fptr(c);
127         return -ENODEV;
128 }
129
130 static int g_dnl_config_register(struct usb_composite_dev *cdev)
131 {
132         struct usb_configuration *config;
133         const char *name = "usb_dnload";
134
135         config = memalign(CONFIG_SYS_CACHELINE_SIZE, sizeof(*config));
136         if (!config)
137                 return -ENOMEM;
138
139         memset(config, 0, sizeof(*config));
140
141         config->label = name;
142         config->bmAttributes = USB_CONFIG_ATT_ONE | USB_CONFIG_ATT_SELFPOWER;
143         config->bConfigurationValue = CONFIGURATION_NUMBER;
144         config->iConfiguration = STRING_USBDOWN;
145         config->bind = g_dnl_do_config;
146
147         return usb_add_config(cdev, config);
148 }
149
150 __weak
151 int g_dnl_bind_fixup(struct usb_device_descriptor *dev, const char *name)
152 {
153         return 0;
154 }
155
156 __weak int g_dnl_get_board_bcd_device_number(int gcnum)
157 {
158         return gcnum;
159 }
160
161 __weak int g_dnl_board_usb_cable_connected(void)
162 {
163         return -EOPNOTSUPP;
164 }
165
166 static int g_dnl_get_bcd_device_number(struct usb_composite_dev *cdev)
167 {
168         struct usb_gadget *gadget = cdev->gadget;
169         int gcnum;
170
171         gcnum = usb_gadget_controller_number(gadget);
172         if (gcnum > 0)
173                 gcnum += 0x200;
174
175         return g_dnl_get_board_bcd_device_number(gcnum);
176 }
177
178 static int g_dnl_bind(struct usb_composite_dev *cdev)
179 {
180         struct usb_gadget *gadget = cdev->gadget;
181         int id, ret;
182         int gcnum;
183
184         debug("%s: gadget: 0x%p cdev: 0x%p\n", __func__, gadget, cdev);
185
186         id = usb_string_id(cdev);
187
188         if (id < 0)
189                 return id;
190         g_dnl_string_defs[0].id = id;
191         device_desc.iManufacturer = id;
192
193         id = usb_string_id(cdev);
194         if (id < 0)
195                 return id;
196
197         g_dnl_string_defs[1].id = id;
198         device_desc.iProduct = id;
199
200         id = usb_string_id(cdev);
201         if (id < 0)
202                 return id;
203
204         g_dnl_string_defs[2].id = id;
205         device_desc.iSerialNumber = id;
206
207         g_dnl_bind_fixup(&device_desc, cdev->driver->name);
208         ret = g_dnl_config_register(cdev);
209         if (ret)
210                 goto error;
211
212         gcnum = g_dnl_get_bcd_device_number(cdev);
213         if (gcnum >= 0)
214                 device_desc.bcdDevice = cpu_to_le16(gcnum);
215         else {
216                 debug("%s: controller '%s' not recognized\n",
217                         __func__, gadget->name);
218                 device_desc.bcdDevice = __constant_cpu_to_le16(0x9999);
219         }
220
221         debug("%s: calling usb_gadget_connect for "
222                         "controller '%s'\n", __func__, gadget->name);
223         usb_gadget_connect(gadget);
224
225         return 0;
226
227  error:
228         g_dnl_unbind(cdev);
229         return -ENOMEM;
230 }
231
232 static struct usb_composite_driver g_dnl_driver = {
233         .name = NULL,
234         .dev = &device_desc,
235         .strings = g_dnl_composite_strings,
236
237         .bind = g_dnl_bind,
238         .unbind = g_dnl_unbind,
239 };
240
241 /*
242  * NOTICE:
243  * Registering via USB function name won't be necessary after rewriting
244  * g_dnl to support multiple USB functions.
245  */
246 int g_dnl_register(const char *name)
247 {
248         int ret;
249
250         debug("%s: g_dnl_driver.name = %s\n", __func__, name);
251         g_dnl_driver.name = name;
252
253         ret = usb_composite_register(&g_dnl_driver);
254         if (ret) {
255                 printf("%s: failed!, error: %d\n", __func__, ret);
256                 return ret;
257         }
258         return 0;
259 }
260
261 void g_dnl_unregister(void)
262 {
263         usb_composite_unregister(&g_dnl_driver);
264 }