blob: a263b2c1fc593ea015f685c6f3ace3806e6f01c8 [file] [log] [blame]
wdenk232c1502004-03-12 00:14:09 +00001/*
2 * (C) Copyright 2003
3 * Gerry Hamel, geh@ti.com, Texas Instruments
Wolfgang Denk386eda02006-06-14 18:14:56 +02004 *
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +02005 * (C) Copyright 2006
6 * Bryan O'Donoghue, bodonoghue@codehermit.ie
wdenk232c1502004-03-12 00:14:09 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
24#include <common.h>
Jean-Christophe PLAGNIOL-VILLARDdedacc12008-12-07 09:45:35 +010025#include <config.h>
wdenk232c1502004-03-12 00:14:09 +000026#include <circbuf.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020027#include <stdio_dev.h>
Tom Rinib2fb47f2011-12-15 08:40:51 -070028#include <asm/unaligned.h>
wdenk232c1502004-03-12 00:14:09 +000029#include "usbtty.h"
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020030#include "usb_cdc_acm.h"
31#include "usbdescriptors.h"
wdenk232c1502004-03-12 00:14:09 +000032
Jean-Christophe PLAGNIOL-VILLARDdedacc12008-12-07 09:45:35 +010033#ifdef DEBUG
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020034#define TTYDBG(fmt,args...)\
35 serial_printf("[%s] %s %d: "fmt, __FILE__,__FUNCTION__,__LINE__,##args)
wdenk232c1502004-03-12 00:14:09 +000036#else
37#define TTYDBG(fmt,args...) do{}while(0)
38#endif
39
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020040#if 1
41#define TTYERR(fmt,args...)\
42 serial_printf("ERROR![%s] %s %d: "fmt, __FILE__,__FUNCTION__,\
43 __LINE__,##args)
wdenk232c1502004-03-12 00:14:09 +000044#else
45#define TTYERR(fmt,args...) do{}while(0)
46#endif
47
48/*
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020049 * Defines
50 */
51#define NUM_CONFIGS 1
52#define MAX_INTERFACES 2
53#define NUM_ENDPOINTS 3
54#define ACM_TX_ENDPOINT 3
55#define ACM_RX_ENDPOINT 2
56#define GSERIAL_TX_ENDPOINT 2
57#define GSERIAL_RX_ENDPOINT 1
58#define NUM_ACM_INTERFACES 2
59#define NUM_GSERIAL_INTERFACES 1
60#define CONFIG_USBD_DATA_INTERFACE_STR "Bulk Data Interface"
61#define CONFIG_USBD_CTRL_INTERFACE_STR "Control Interface"
62
63/*
wdenk232c1502004-03-12 00:14:09 +000064 * Buffers to hold input and output data
65 */
66#define USBTTY_BUFFER_SIZE 256
67static circbuf_t usbtty_input;
68static circbuf_t usbtty_output;
69
70
71/*
72 * Instance variables
73 */
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020074static struct stdio_dev usbttydev;
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020075static struct usb_device_instance device_instance[1];
76static struct usb_bus_instance bus_instance[1];
wdenk232c1502004-03-12 00:14:09 +000077static struct usb_configuration_instance config_instance[NUM_CONFIGS];
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020078static struct usb_interface_instance interface_instance[MAX_INTERFACES];
79static struct usb_alternate_instance alternate_instance[MAX_INTERFACES];
80/* one extra for control endpoint */
81static struct usb_endpoint_instance endpoint_instance[NUM_ENDPOINTS+1];
wdenk232c1502004-03-12 00:14:09 +000082
83/*
84 * Global flag
85 */
86int usbtty_configured_flag = 0;
87
wdenk232c1502004-03-12 00:14:09 +000088/*
wdenk6629d2f2004-03-12 15:38:25 +000089 * Serial number
90 */
91static char serial_number[16];
92
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020093
wdenk6629d2f2004-03-12 15:38:25 +000094/*
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020095 * Descriptors, Strings, Local variables.
wdenk232c1502004-03-12 00:14:09 +000096 */
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020097
Jean-Christophe PLAGNIOL-VILLARD2731b9a2009-04-03 12:46:58 +020098/* defined and used by gadget/ep0.c */
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +020099extern struct usb_string_descriptor **usb_strings;
100
101/* Indicies, References */
102static unsigned short rx_endpoint = 0;
103static unsigned short tx_endpoint = 0;
104static unsigned short interface_count = 0;
105static struct usb_string_descriptor *usbtty_string_table[STR_COUNT];
106
107/* USB Descriptor Strings */
wdenk232c1502004-03-12 00:14:09 +0000108static u8 wstrLang[4] = {4,USB_DT_STRING,0x9,0x4};
109static u8 wstrManufacturer[2 + 2*(sizeof(CONFIG_USBD_MANUFACTURER)-1)];
110static u8 wstrProduct[2 + 2*(sizeof(CONFIG_USBD_PRODUCT_NAME)-1)];
wdenk6629d2f2004-03-12 15:38:25 +0000111static u8 wstrSerial[2 + 2*(sizeof(serial_number) - 1)];
wdenk232c1502004-03-12 00:14:09 +0000112static u8 wstrConfiguration[2 + 2*(sizeof(CONFIG_USBD_CONFIGURATION_STR)-1)];
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200113static u8 wstrDataInterface[2 + 2*(sizeof(CONFIG_USBD_DATA_INTERFACE_STR)-1)];
114static u8 wstrCtrlInterface[2 + 2*(sizeof(CONFIG_USBD_DATA_INTERFACE_STR)-1)];
wdenk232c1502004-03-12 00:14:09 +0000115
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200116/* Standard USB Data Structures */
117static struct usb_interface_descriptor interface_descriptors[MAX_INTERFACES];
118static struct usb_endpoint_descriptor *ep_descriptor_ptrs[NUM_ENDPOINTS];
119static struct usb_configuration_descriptor *configuration_descriptor = 0;
wdenk232c1502004-03-12 00:14:09 +0000120static struct usb_device_descriptor device_descriptor = {
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200121 .bLength = sizeof(struct usb_device_descriptor),
122 .bDescriptorType = USB_DT_DEVICE,
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200123 .bcdUSB = cpu_to_le16(USB_BCD_VERSION),
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200124 .bDeviceSubClass = 0x00,
125 .bDeviceProtocol = 0x00,
126 .bMaxPacketSize0 = EP0_MAX_PACKET_SIZE,
127 .idVendor = cpu_to_le16(CONFIG_USBD_VENDORID),
128 .bcdDevice = cpu_to_le16(USBTTY_BCD_DEVICE),
129 .iManufacturer = STR_MANUFACTURER,
130 .iProduct = STR_PRODUCT,
131 .iSerialNumber = STR_SERIAL,
132 .bNumConfigurations = NUM_CONFIGS
wdenk232c1502004-03-12 00:14:09 +0000133};
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200134
135
136/*
137 * Static CDC ACM specific descriptors
138 */
139
140struct acm_config_desc {
141 struct usb_configuration_descriptor configuration_desc;
Wolfgang Denk386eda02006-06-14 18:14:56 +0200142
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200143 /* Master Interface */
144 struct usb_interface_descriptor interface_desc;
Wolfgang Denk386eda02006-06-14 18:14:56 +0200145
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200146 struct usb_class_header_function_descriptor usb_class_header;
147 struct usb_class_call_management_descriptor usb_class_call_mgt;
148 struct usb_class_abstract_control_descriptor usb_class_acm;
149 struct usb_class_union_function_descriptor usb_class_union;
150 struct usb_endpoint_descriptor notification_endpoint;
151
152 /* Slave Interface */
153 struct usb_interface_descriptor data_class_interface;
Atin Malaviyaf3c0de62009-02-03 15:17:10 -0500154 struct usb_endpoint_descriptor data_endpoints[NUM_ENDPOINTS-1];
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200155} __attribute__((packed));
156
157static struct acm_config_desc acm_configuration_descriptors[NUM_CONFIGS] = {
158 {
159 .configuration_desc ={
Wolfgang Denk386eda02006-06-14 18:14:56 +0200160 .bLength =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200161 sizeof(struct usb_configuration_descriptor),
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200162 .bDescriptorType = USB_DT_CONFIG,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200163 .wTotalLength =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200164 cpu_to_le16(sizeof(struct acm_config_desc)),
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200165 .bNumInterfaces = NUM_ACM_INTERFACES,
166 .bConfigurationValue = 1,
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200167 .iConfiguration = STR_CONFIG,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200168 .bmAttributes =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200169 BMATTRIBUTE_SELF_POWERED|BMATTRIBUTE_RESERVED,
170 .bMaxPower = USBTTY_MAXPOWER
171 },
172 /* Interface 1 */
173 .interface_desc = {
174 .bLength = sizeof(struct usb_interface_descriptor),
175 .bDescriptorType = USB_DT_INTERFACE,
176 .bInterfaceNumber = 0,
177 .bAlternateSetting = 0,
178 .bNumEndpoints = 0x01,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200179 .bInterfaceClass =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200180 COMMUNICATIONS_INTERFACE_CLASS_CONTROL,
181 .bInterfaceSubClass = COMMUNICATIONS_ACM_SUBCLASS,
182 .bInterfaceProtocol = COMMUNICATIONS_V25TER_PROTOCOL,
183 .iInterface = STR_CTRL_INTERFACE,
184 },
185 .usb_class_header = {
Wolfgang Denk386eda02006-06-14 18:14:56 +0200186 .bFunctionLength =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200187 sizeof(struct usb_class_header_function_descriptor),
Wolfgang Denk386eda02006-06-14 18:14:56 +0200188 .bDescriptorType = CS_INTERFACE,
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200189 .bDescriptorSubtype = USB_ST_HEADER,
190 .bcdCDC = cpu_to_le16(110),
191 },
192 .usb_class_call_mgt = {
Wolfgang Denk386eda02006-06-14 18:14:56 +0200193 .bFunctionLength =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200194 sizeof(struct usb_class_call_management_descriptor),
195 .bDescriptorType = CS_INTERFACE,
196 .bDescriptorSubtype = USB_ST_CMF,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200197 .bmCapabilities = 0x00,
198 .bDataInterface = 0x01,
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200199 },
200 .usb_class_acm = {
Wolfgang Denk386eda02006-06-14 18:14:56 +0200201 .bFunctionLength =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200202 sizeof(struct usb_class_abstract_control_descriptor),
203 .bDescriptorType = CS_INTERFACE,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200204 .bDescriptorSubtype = USB_ST_ACMF,
205 .bmCapabilities = 0x00,
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200206 },
207 .usb_class_union = {
Wolfgang Denk386eda02006-06-14 18:14:56 +0200208 .bFunctionLength =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200209 sizeof(struct usb_class_union_function_descriptor),
210 .bDescriptorType = CS_INTERFACE,
211 .bDescriptorSubtype = USB_ST_UF,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200212 .bMasterInterface = 0x00,
213 .bSlaveInterface0 = 0x01,
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200214 },
215 .notification_endpoint = {
Wolfgang Denk386eda02006-06-14 18:14:56 +0200216 .bLength =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200217 sizeof(struct usb_endpoint_descriptor),
218 .bDescriptorType = USB_DT_ENDPOINT,
Vivek Kutal9e78dae2009-02-23 21:35:11 +0530219 .bEndpointAddress = UDC_INT_ENDPOINT | USB_DIR_IN,
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200220 .bmAttributes = USB_ENDPOINT_XFER_INT,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200221 .wMaxPacketSize
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200222 = cpu_to_le16(CONFIG_USBD_SERIAL_INT_PKTSIZE),
223 .bInterval = 0xFF,
224 },
225
226 /* Interface 2 */
227 .data_class_interface = {
Wolfgang Denk386eda02006-06-14 18:14:56 +0200228 .bLength =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200229 sizeof(struct usb_interface_descriptor),
230 .bDescriptorType = USB_DT_INTERFACE,
231 .bInterfaceNumber = 0x01,
232 .bAlternateSetting = 0x00,
233 .bNumEndpoints = 0x02,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200234 .bInterfaceClass =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200235 COMMUNICATIONS_INTERFACE_CLASS_DATA,
236 .bInterfaceSubClass = DATA_INTERFACE_SUBCLASS_NONE,
237 .bInterfaceProtocol = DATA_INTERFACE_PROTOCOL_NONE,
238 .iInterface = STR_DATA_INTERFACE,
239 },
240 .data_endpoints = {
241 {
Wolfgang Denk386eda02006-06-14 18:14:56 +0200242 .bLength =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200243 sizeof(struct usb_endpoint_descriptor),
244 .bDescriptorType = USB_DT_ENDPOINT,
Vivek Kutal9e78dae2009-02-23 21:35:11 +0530245 .bEndpointAddress = UDC_OUT_ENDPOINT | USB_DIR_OUT,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200246 .bmAttributes =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200247 USB_ENDPOINT_XFER_BULK,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200248 .wMaxPacketSize =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200249 cpu_to_le16(CONFIG_USBD_SERIAL_BULK_PKTSIZE),
250 .bInterval = 0xFF,
251 },
252 {
Wolfgang Denk386eda02006-06-14 18:14:56 +0200253 .bLength =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200254 sizeof(struct usb_endpoint_descriptor),
255 .bDescriptorType = USB_DT_ENDPOINT,
Vivek Kutal9e78dae2009-02-23 21:35:11 +0530256 .bEndpointAddress = UDC_IN_ENDPOINT | USB_DIR_IN,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200257 .bmAttributes =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200258 USB_ENDPOINT_XFER_BULK,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200259 .wMaxPacketSize =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200260 cpu_to_le16(CONFIG_USBD_SERIAL_BULK_PKTSIZE),
261 .bInterval = 0xFF,
262 },
263 },
264 },
Wolfgang Denk386eda02006-06-14 18:14:56 +0200265};
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200266
267static struct rs232_emu rs232_desc={
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200268 .dter = 115200,
269 .stop_bits = 0x00,
270 .parity = 0x00,
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200271 .data_bits = 0x08
wdenk232c1502004-03-12 00:14:09 +0000272};
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200273
274
275/*
276 * Static Generic Serial specific data
277 */
278
279
280struct gserial_config_desc {
Wolfgang Denk386eda02006-06-14 18:14:56 +0200281
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200282 struct usb_configuration_descriptor configuration_desc;
Atin Malaviyaf3c0de62009-02-03 15:17:10 -0500283 struct usb_interface_descriptor interface_desc[NUM_GSERIAL_INTERFACES];
284 struct usb_endpoint_descriptor data_endpoints[NUM_ENDPOINTS];
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200285
286} __attribute__((packed));
287
Wolfgang Denk386eda02006-06-14 18:14:56 +0200288static struct gserial_config_desc
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200289gserial_configuration_descriptors[NUM_CONFIGS] ={
290 {
291 .configuration_desc ={
292 .bLength = sizeof(struct usb_configuration_descriptor),
293 .bDescriptorType = USB_DT_CONFIG,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200294 .wTotalLength =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200295 cpu_to_le16(sizeof(struct gserial_config_desc)),
296 .bNumInterfaces = NUM_GSERIAL_INTERFACES,
297 .bConfigurationValue = 1,
298 .iConfiguration = STR_CONFIG,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200299 .bmAttributes =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200300 BMATTRIBUTE_SELF_POWERED|BMATTRIBUTE_RESERVED,
301 .bMaxPower = USBTTY_MAXPOWER
302 },
303 .interface_desc = {
304 {
Wolfgang Denk386eda02006-06-14 18:14:56 +0200305 .bLength =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200306 sizeof(struct usb_interface_descriptor),
307 .bDescriptorType = USB_DT_INTERFACE,
308 .bInterfaceNumber = 0,
309 .bAlternateSetting = 0,
310 .bNumEndpoints = NUM_ENDPOINTS,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200311 .bInterfaceClass =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200312 COMMUNICATIONS_INTERFACE_CLASS_VENDOR,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200313 .bInterfaceSubClass =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200314 COMMUNICATIONS_NO_SUBCLASS,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200315 .bInterfaceProtocol =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200316 COMMUNICATIONS_NO_PROTOCOL,
317 .iInterface = STR_DATA_INTERFACE
318 },
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200319 },
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200320 .data_endpoints = {
321 {
Wolfgang Denk386eda02006-06-14 18:14:56 +0200322 .bLength =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200323 sizeof(struct usb_endpoint_descriptor),
324 .bDescriptorType = USB_DT_ENDPOINT,
Vivek Kutal9e78dae2009-02-23 21:35:11 +0530325 .bEndpointAddress = UDC_OUT_ENDPOINT | USB_DIR_OUT,
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200326 .bmAttributes = USB_ENDPOINT_XFER_BULK,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200327 .wMaxPacketSize =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200328 cpu_to_le16(CONFIG_USBD_SERIAL_OUT_PKTSIZE),
329 .bInterval= 0xFF,
330 },
331 {
Wolfgang Denk386eda02006-06-14 18:14:56 +0200332 .bLength =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200333 sizeof(struct usb_endpoint_descriptor),
334 .bDescriptorType = USB_DT_ENDPOINT,
Vivek Kutal9e78dae2009-02-23 21:35:11 +0530335 .bEndpointAddress = UDC_IN_ENDPOINT | USB_DIR_IN,
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200336 .bmAttributes = USB_ENDPOINT_XFER_BULK,
Wolfgang Denk386eda02006-06-14 18:14:56 +0200337 .wMaxPacketSize =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200338 cpu_to_le16(CONFIG_USBD_SERIAL_IN_PKTSIZE),
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200339 .bInterval = 0xFF,
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200340 },
341 {
Wolfgang Denk386eda02006-06-14 18:14:56 +0200342 .bLength =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200343 sizeof(struct usb_endpoint_descriptor),
344 .bDescriptorType = USB_DT_ENDPOINT,
Vivek Kutal9e78dae2009-02-23 21:35:11 +0530345 .bEndpointAddress = UDC_INT_ENDPOINT | USB_DIR_IN,
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200346 .bmAttributes = USB_ENDPOINT_XFER_INT,
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200347 .wMaxPacketSize =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200348 cpu_to_le16(CONFIG_USBD_SERIAL_INT_PKTSIZE),
349 .bInterval = 0xFF,
350 },
351 },
352 },
wdenk232c1502004-03-12 00:14:09 +0000353};
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200354
355/*
356 * Static Function Prototypes
357 */
358
359static void usbtty_init_strings (void);
360static void usbtty_init_instances (void);
361static void usbtty_init_endpoints (void);
362static void usbtty_init_terminal_type(short type);
363static void usbtty_event_handler (struct usb_device_instance *device,
364 usb_device_event_t event, int data);
Wolfgang Denk386eda02006-06-14 18:14:56 +0200365static int usbtty_cdc_setup(struct usb_device_request *request,
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200366 struct urb *urb);
367static int usbtty_configured (void);
368static int write_buffer (circbuf_t * buf);
369static int fill_buffer (circbuf_t * buf);
370
371void usbtty_poll (void);
wdenk232c1502004-03-12 00:14:09 +0000372
373/* utility function for converting char* to wide string used by USB */
374static void str2wide (char *str, u16 * wide)
375{
376 int i;
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200377 for (i = 0; i < strlen (str) && str[i]; i++){
Rodolfo Giometti18135122007-06-06 10:08:14 +0200378 #if defined(__LITTLE_ENDIAN)
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200379 wide[i] = (u16) str[i];
Rodolfo Giometti18135122007-06-06 10:08:14 +0200380 #elif defined(__BIG_ENDIAN)
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200381 wide[i] = ((u16)(str[i])<<8);
382 #else
Rodolfo Giometti18135122007-06-06 10:08:14 +0200383 #error "__LITTLE_ENDIAN or __BIG_ENDIAN undefined"
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200384 #endif
385 }
wdenk232c1502004-03-12 00:14:09 +0000386}
387
388/*
wdenk232c1502004-03-12 00:14:09 +0000389 * Test whether a character is in the RX buffer
390 */
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200391
wdenk232c1502004-03-12 00:14:09 +0000392int usbtty_tstc (void)
393{
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200394 struct usb_endpoint_instance *endpoint =
395 &endpoint_instance[rx_endpoint];
396
397 /* If no input data exists, allow more RX to be accepted */
398 if(usbtty_input.size <= 0){
399 udc_unset_nak(endpoint->endpoint_address&0x03);
400 }
401
wdenk232c1502004-03-12 00:14:09 +0000402 usbtty_poll ();
403 return (usbtty_input.size > 0);
404}
405
406/*
407 * Read a single byte from the usb client port. Returns 1 on success, 0
408 * otherwise. When the function is succesfull, the character read is
409 * written into its argument c.
410 */
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200411
wdenk232c1502004-03-12 00:14:09 +0000412int usbtty_getc (void)
413{
414 char c;
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200415 struct usb_endpoint_instance *endpoint =
416 &endpoint_instance[rx_endpoint];
wdenk232c1502004-03-12 00:14:09 +0000417
418 while (usbtty_input.size <= 0) {
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200419 udc_unset_nak(endpoint->endpoint_address&0x03);
wdenk232c1502004-03-12 00:14:09 +0000420 usbtty_poll ();
421 }
422
423 buf_pop (&usbtty_input, &c, 1);
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200424 udc_set_nak(endpoint->endpoint_address&0x03);
425
wdenk232c1502004-03-12 00:14:09 +0000426 return c;
427}
428
429/*
430 * Output a single byte to the usb client port.
431 */
432void usbtty_putc (const char c)
433{
Atin Malaviyaf3c0de62009-02-03 15:17:10 -0500434 if (!usbtty_configured ())
435 return;
436
wdenk232c1502004-03-12 00:14:09 +0000437 buf_push (&usbtty_output, &c, 1);
438 /* If \n, also do \r */
439 if (c == '\n')
440 buf_push (&usbtty_output, "\r", 1);
441
442 /* Poll at end to handle new data... */
443 if ((usbtty_output.size + 2) >= usbtty_output.totalsize) {
444 usbtty_poll ();
445 }
446}
447
wdenk232c1502004-03-12 00:14:09 +0000448/* usbtty_puts() helper function for finding the next '\n' in a string */
449static int next_nl_pos (const char *s)
450{
451 int i;
452
453 for (i = 0; s[i] != '\0'; i++) {
454 if (s[i] == '\n')
455 return i;
456 }
457 return i;
458}
459
460/*
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200461 * Output a string to the usb client port - implementing flow control
wdenk232c1502004-03-12 00:14:09 +0000462 */
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200463
wdenk232c1502004-03-12 00:14:09 +0000464static void __usbtty_puts (const char *str, int len)
465{
466 int maxlen = usbtty_output.totalsize;
467 int space, n;
468
469 /* break str into chunks < buffer size, if needed */
470 while (len > 0) {
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200471 usbtty_poll ();
472
wdenk232c1502004-03-12 00:14:09 +0000473 space = maxlen - usbtty_output.size;
wdenk232c1502004-03-12 00:14:09 +0000474 /* Empty buffer here, if needed, to ensure space... */
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200475 if (space) {
wdenk232c1502004-03-12 00:14:09 +0000476 write_buffer (&usbtty_output);
Wolfgang Denk386eda02006-06-14 18:14:56 +0200477
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200478 n = MIN (space, MIN (len, maxlen));
479 buf_push (&usbtty_output, str, n);
480
481 str += n;
Wolfgang Denk386eda02006-06-14 18:14:56 +0200482 len -= n;
wdenk232c1502004-03-12 00:14:09 +0000483 }
wdenk232c1502004-03-12 00:14:09 +0000484 }
485}
486
487void usbtty_puts (const char *str)
488{
489 int n;
Atin Malaviyaf3c0de62009-02-03 15:17:10 -0500490 int len;
wdenk232c1502004-03-12 00:14:09 +0000491
Atin Malaviyaf3c0de62009-02-03 15:17:10 -0500492 if (!usbtty_configured ())
493 return;
494
495 len = strlen (str);
wdenk232c1502004-03-12 00:14:09 +0000496 /* add '\r' for each '\n' */
497 while (len > 0) {
498 n = next_nl_pos (str);
499
500 if (str[n] == '\n') {
501 __usbtty_puts (str, n + 1);
502 __usbtty_puts ("\r", 1);
503 str += (n + 1);
504 len -= (n + 1);
505 } else {
506 /* No \n found. All done. */
507 __usbtty_puts (str, n);
508 break;
509 }
510 }
511
512 /* Poll at end to handle new data... */
513 usbtty_poll ();
514}
515
516/*
517 * Initialize the usb client port.
518 *
519 */
520int drv_usbtty_init (void)
521{
522 int rc;
wdenk6629d2f2004-03-12 15:38:25 +0000523 char * sn;
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200524 char * tt;
wdenk6629d2f2004-03-12 15:38:25 +0000525 int snlen;
wdenk42dfe7a2004-03-14 22:25:36 +0000526
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200527 /* Ger seiral number */
wdenk6629d2f2004-03-12 15:38:25 +0000528 if (!(sn = getenv("serial#"))) {
529 sn = "000000000000";
530 }
531 snlen = strlen(sn);
532 if (snlen > sizeof(serial_number) - 1) {
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200533 printf ("Warning: serial number %s is too long (%d > %lu)\n",
534 sn, snlen, (ulong)(sizeof(serial_number) - 1));
wdenk6629d2f2004-03-12 15:38:25 +0000535 snlen = sizeof(serial_number) - 1;
536 }
537 memcpy (serial_number, sn, snlen);
538 serial_number[snlen] = '\0';
wdenk232c1502004-03-12 00:14:09 +0000539
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200540 /* Decide on which type of UDC device to be.
541 */
542
543 if(!(tt = getenv("usbtty"))) {
544 tt = "generic";
545 }
546 usbtty_init_terminal_type(strcmp(tt,"cdc_acm"));
Wolfgang Denk386eda02006-06-14 18:14:56 +0200547
wdenk232c1502004-03-12 00:14:09 +0000548 /* prepare buffers... */
549 buf_init (&usbtty_input, USBTTY_BUFFER_SIZE);
550 buf_init (&usbtty_output, USBTTY_BUFFER_SIZE);
551
552 /* Now, set up USB controller and infrastructure */
553 udc_init (); /* Basic USB initialization */
554
555 usbtty_init_strings ();
556 usbtty_init_instances ();
557
Stefan Herbrechtsmeier241d9a62011-10-17 17:22:49 +0200558 usbtty_init_endpoints ();
559
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200560 udc_startup_events (device_instance);/* Enable dev, init udc pointers */
wdenk232c1502004-03-12 00:14:09 +0000561 udc_connect (); /* Enable pullup for host detection */
562
wdenk232c1502004-03-12 00:14:09 +0000563 /* Device initialization */
564 memset (&usbttydev, 0, sizeof (usbttydev));
565
566 strcpy (usbttydev.name, "usbtty");
567 usbttydev.ext = 0; /* No extensions */
568 usbttydev.flags = DEV_FLAGS_INPUT | DEV_FLAGS_OUTPUT;
569 usbttydev.tstc = usbtty_tstc; /* 'tstc' function */
570 usbttydev.getc = usbtty_getc; /* 'getc' function */
571 usbttydev.putc = usbtty_putc; /* 'putc' function */
572 usbttydev.puts = usbtty_puts; /* 'puts' function */
573
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200574 rc = stdio_register (&usbttydev);
wdenk232c1502004-03-12 00:14:09 +0000575
576 return (rc == 0) ? 1 : rc;
577}
578
579static void usbtty_init_strings (void)
580{
581 struct usb_string_descriptor *string;
582
Wolfgang Denk386eda02006-06-14 18:14:56 +0200583 usbtty_string_table[STR_LANG] =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200584 (struct usb_string_descriptor*)wstrLang;
585
wdenk232c1502004-03-12 00:14:09 +0000586 string = (struct usb_string_descriptor *) wstrManufacturer;
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200587 string->bLength = sizeof(wstrManufacturer);
wdenk232c1502004-03-12 00:14:09 +0000588 string->bDescriptorType = USB_DT_STRING;
589 str2wide (CONFIG_USBD_MANUFACTURER, string->wData);
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200590 usbtty_string_table[STR_MANUFACTURER]=string;
591
wdenk232c1502004-03-12 00:14:09 +0000592
593 string = (struct usb_string_descriptor *) wstrProduct;
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200594 string->bLength = sizeof(wstrProduct);
wdenk232c1502004-03-12 00:14:09 +0000595 string->bDescriptorType = USB_DT_STRING;
596 str2wide (CONFIG_USBD_PRODUCT_NAME, string->wData);
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200597 usbtty_string_table[STR_PRODUCT]=string;
598
wdenk232c1502004-03-12 00:14:09 +0000599
600 string = (struct usb_string_descriptor *) wstrSerial;
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200601 string->bLength = sizeof(serial_number);
wdenk232c1502004-03-12 00:14:09 +0000602 string->bDescriptorType = USB_DT_STRING;
wdenk6629d2f2004-03-12 15:38:25 +0000603 str2wide (serial_number, string->wData);
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200604 usbtty_string_table[STR_SERIAL]=string;
605
wdenk232c1502004-03-12 00:14:09 +0000606
607 string = (struct usb_string_descriptor *) wstrConfiguration;
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200608 string->bLength = sizeof(wstrConfiguration);
wdenk232c1502004-03-12 00:14:09 +0000609 string->bDescriptorType = USB_DT_STRING;
610 str2wide (CONFIG_USBD_CONFIGURATION_STR, string->wData);
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200611 usbtty_string_table[STR_CONFIG]=string;
wdenk232c1502004-03-12 00:14:09 +0000612
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200613
614 string = (struct usb_string_descriptor *) wstrDataInterface;
615 string->bLength = sizeof(wstrDataInterface);
wdenk232c1502004-03-12 00:14:09 +0000616 string->bDescriptorType = USB_DT_STRING;
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200617 str2wide (CONFIG_USBD_DATA_INTERFACE_STR, string->wData);
618 usbtty_string_table[STR_DATA_INTERFACE]=string;
619
620 string = (struct usb_string_descriptor *) wstrCtrlInterface;
621 string->bLength = sizeof(wstrCtrlInterface);
622 string->bDescriptorType = USB_DT_STRING;
623 str2wide (CONFIG_USBD_CTRL_INTERFACE_STR, string->wData);
624 usbtty_string_table[STR_CTRL_INTERFACE]=string;
wdenk232c1502004-03-12 00:14:09 +0000625
626 /* Now, initialize the string table for ep0 handling */
627 usb_strings = usbtty_string_table;
Wolfgang Denk386eda02006-06-14 18:14:56 +0200628}
wdenk232c1502004-03-12 00:14:09 +0000629
Tom Rinib2fb47f2011-12-15 08:40:51 -0700630#define init_wMaxPacketSize(x) le16_to_cpu(get_unaligned(\
631 &ep_descriptor_ptrs[(x) - 1]->wMaxPacketSize));
632
wdenk232c1502004-03-12 00:14:09 +0000633static void usbtty_init_instances (void)
634{
635 int i;
636
637 /* initialize device instance */
638 memset (device_instance, 0, sizeof (struct usb_device_instance));
639 device_instance->device_state = STATE_INIT;
640 device_instance->device_descriptor = &device_descriptor;
641 device_instance->event = usbtty_event_handler;
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200642 device_instance->cdc_recv_setup = usbtty_cdc_setup;
wdenk232c1502004-03-12 00:14:09 +0000643 device_instance->bus = bus_instance;
644 device_instance->configurations = NUM_CONFIGS;
645 device_instance->configuration_instance_array = config_instance;
646
647 /* initialize bus instance */
648 memset (bus_instance, 0, sizeof (struct usb_bus_instance));
649 bus_instance->device = device_instance;
650 bus_instance->endpoint_array = endpoint_instance;
651 bus_instance->max_endpoints = 1;
652 bus_instance->maxpacketsize = 64;
wdenk6629d2f2004-03-12 15:38:25 +0000653 bus_instance->serial_number_str = serial_number;
wdenk232c1502004-03-12 00:14:09 +0000654
655 /* configuration instance */
656 memset (config_instance, 0,
657 sizeof (struct usb_configuration_instance));
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200658 config_instance->interfaces = interface_count;
659 config_instance->configuration_descriptor = configuration_descriptor;
wdenk232c1502004-03-12 00:14:09 +0000660 config_instance->interface_instance_array = interface_instance;
661
662 /* interface instance */
663 memset (interface_instance, 0,
664 sizeof (struct usb_interface_instance));
665 interface_instance->alternates = 1;
666 interface_instance->alternates_instance_array = alternate_instance;
667
668 /* alternates instance */
669 memset (alternate_instance, 0,
670 sizeof (struct usb_alternate_instance));
671 alternate_instance->interface_descriptor = interface_descriptors;
672 alternate_instance->endpoints = NUM_ENDPOINTS;
673 alternate_instance->endpoints_descriptor_array = ep_descriptor_ptrs;
674
675 /* endpoint instances */
676 memset (&endpoint_instance[0], 0,
677 sizeof (struct usb_endpoint_instance));
678 endpoint_instance[0].endpoint_address = 0;
679 endpoint_instance[0].rcv_packetSize = EP0_MAX_PACKET_SIZE;
680 endpoint_instance[0].rcv_attributes = USB_ENDPOINT_XFER_CONTROL;
681 endpoint_instance[0].tx_packetSize = EP0_MAX_PACKET_SIZE;
682 endpoint_instance[0].tx_attributes = USB_ENDPOINT_XFER_CONTROL;
683 udc_setup_ep (device_instance, 0, &endpoint_instance[0]);
684
685 for (i = 1; i <= NUM_ENDPOINTS; i++) {
686 memset (&endpoint_instance[i], 0,
687 sizeof (struct usb_endpoint_instance));
688
689 endpoint_instance[i].endpoint_address =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200690 ep_descriptor_ptrs[i - 1]->bEndpointAddress;
691
692 endpoint_instance[i].rcv_attributes =
693 ep_descriptor_ptrs[i - 1]->bmAttributes;
wdenk232c1502004-03-12 00:14:09 +0000694
Tom Rinib2fb47f2011-12-15 08:40:51 -0700695 endpoint_instance[i].rcv_packetSize = init_wMaxPacketSize(i);
Wolfgang Denk386eda02006-06-14 18:14:56 +0200696
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200697 endpoint_instance[i].tx_attributes =
698 ep_descriptor_ptrs[i - 1]->bmAttributes;
wdenk232c1502004-03-12 00:14:09 +0000699
Tom Rinib2fb47f2011-12-15 08:40:51 -0700700 endpoint_instance[i].tx_packetSize = init_wMaxPacketSize(i);
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200701
wdenk232c1502004-03-12 00:14:09 +0000702 endpoint_instance[i].tx_attributes =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200703 ep_descriptor_ptrs[i - 1]->bmAttributes;
wdenk232c1502004-03-12 00:14:09 +0000704
705 urb_link_init (&endpoint_instance[i].rcv);
706 urb_link_init (&endpoint_instance[i].rdy);
707 urb_link_init (&endpoint_instance[i].tx);
708 urb_link_init (&endpoint_instance[i].done);
709
710 if (endpoint_instance[i].endpoint_address & USB_DIR_IN)
711 endpoint_instance[i].tx_urb =
712 usbd_alloc_urb (device_instance,
713 &endpoint_instance[i]);
714 else
715 endpoint_instance[i].rcv_urb =
716 usbd_alloc_urb (device_instance,
717 &endpoint_instance[i]);
718 }
719}
720
721static void usbtty_init_endpoints (void)
722{
723 int i;
724
725 bus_instance->max_endpoints = NUM_ENDPOINTS + 1;
Wolfgang Denk386eda02006-06-14 18:14:56 +0200726 for (i = 1; i <= NUM_ENDPOINTS; i++) {
wdenk232c1502004-03-12 00:14:09 +0000727 udc_setup_ep (device_instance, i, &endpoint_instance[i]);
728 }
729}
730
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200731/* usbtty_init_terminal_type
Wolfgang Denk386eda02006-06-14 18:14:56 +0200732 *
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200733 * Do some late binding for our device type.
734 */
735static void usbtty_init_terminal_type(short type)
736{
737 switch(type){
Wolfgang Denk386eda02006-06-14 18:14:56 +0200738 /* CDC ACM */
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200739 case 0:
740 /* Assign endpoint descriptors */
Wolfgang Denk386eda02006-06-14 18:14:56 +0200741 ep_descriptor_ptrs[0] =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200742 &acm_configuration_descriptors[0].notification_endpoint;
Wolfgang Denk386eda02006-06-14 18:14:56 +0200743 ep_descriptor_ptrs[1] =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200744 &acm_configuration_descriptors[0].data_endpoints[0];
Wolfgang Denk386eda02006-06-14 18:14:56 +0200745 ep_descriptor_ptrs[2] =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200746 &acm_configuration_descriptors[0].data_endpoints[1];
wdenk232c1502004-03-12 00:14:09 +0000747
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200748 /* Enumerate Device Descriptor */
Wolfgang Denk386eda02006-06-14 18:14:56 +0200749 device_descriptor.bDeviceClass =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200750 COMMUNICATIONS_DEVICE_CLASS;
751 device_descriptor.idProduct =
752 cpu_to_le16(CONFIG_USBD_PRODUCTID_CDCACM);
753
754 /* Assign endpoint indices */
755 tx_endpoint = ACM_TX_ENDPOINT;
756 rx_endpoint = ACM_RX_ENDPOINT;
Wolfgang Denk386eda02006-06-14 18:14:56 +0200757
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200758 /* Configuration Descriptor */
759 configuration_descriptor =
760 (struct usb_configuration_descriptor*)
761 &acm_configuration_descriptors;
762
763 /* Interface count */
764 interface_count = NUM_ACM_INTERFACES;
765 break;
766
767 /* BULK IN/OUT & Default */
768 case 1:
769 default:
770 /* Assign endpoint descriptors */
Wolfgang Denk386eda02006-06-14 18:14:56 +0200771 ep_descriptor_ptrs[0] =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200772 &gserial_configuration_descriptors[0].data_endpoints[0];
Wolfgang Denk386eda02006-06-14 18:14:56 +0200773 ep_descriptor_ptrs[1] =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200774 &gserial_configuration_descriptors[0].data_endpoints[1];
Wolfgang Denk386eda02006-06-14 18:14:56 +0200775 ep_descriptor_ptrs[2] =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200776 &gserial_configuration_descriptors[0].data_endpoints[2];
777
778 /* Enumerate Device Descriptor */
779 device_descriptor.bDeviceClass = 0xFF;
780 device_descriptor.idProduct =
781 cpu_to_le16(CONFIG_USBD_PRODUCTID_GSERIAL);
782
783 /* Assign endpoint indices */
784 tx_endpoint = GSERIAL_TX_ENDPOINT;
785 rx_endpoint = GSERIAL_RX_ENDPOINT;
786
787 /* Configuration Descriptor */
Wolfgang Denk386eda02006-06-14 18:14:56 +0200788 configuration_descriptor =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200789 (struct usb_configuration_descriptor*)
790 &gserial_configuration_descriptors;
791
792 /* Interface count */
793 interface_count = NUM_GSERIAL_INTERFACES;
794 break;
795 }
796}
797
798/******************************************************************************/
wdenk232c1502004-03-12 00:14:09 +0000799
800static struct urb *next_urb (struct usb_device_instance *device,
801 struct usb_endpoint_instance *endpoint)
802{
803 struct urb *current_urb = NULL;
804 int space;
805
806 /* If there's a queue, then we should add to the last urb */
807 if (!endpoint->tx_queue) {
808 current_urb = endpoint->tx_urb;
809 } else {
810 /* Last urb from tx chain */
811 current_urb =
812 p2surround (struct urb, link, endpoint->tx.prev);
813 }
814
815 /* Make sure this one has enough room */
816 space = current_urb->buffer_length - current_urb->actual_length;
817 if (space > 0) {
818 return current_urb;
819 } else { /* No space here */
820 /* First look at done list */
821 current_urb = first_urb_detached (&endpoint->done);
822 if (!current_urb) {
823 current_urb = usbd_alloc_urb (device, endpoint);
824 }
825
826 urb_append (&endpoint->tx, current_urb);
827 endpoint->tx_queue++;
828 }
829 return current_urb;
830}
831
832static int write_buffer (circbuf_t * buf)
833{
834 if (!usbtty_configured ()) {
835 return 0;
836 }
Wolfgang Denk386eda02006-06-14 18:14:56 +0200837
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200838 struct usb_endpoint_instance *endpoint =
839 &endpoint_instance[tx_endpoint];
840 struct urb *current_urb = NULL;
841
842 current_urb = next_urb (device_instance, endpoint);
Wolfgang Denk386eda02006-06-14 18:14:56 +0200843 /* TX data still exists - send it now
844 */
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200845 if(endpoint->sent < current_urb->actual_length){
846 if(udc_endpoint_write (endpoint)){
847 /* Write pre-empted by RX */
848 return -1;
849 }
850 }
wdenk232c1502004-03-12 00:14:09 +0000851
852 if (buf->size) {
wdenk232c1502004-03-12 00:14:09 +0000853 char *dest;
854
855 int space_avail;
856 int popnum, popped;
857 int total = 0;
858
Wolfgang Denk386eda02006-06-14 18:14:56 +0200859 /* Break buffer into urb sized pieces,
860 * and link each to the endpoint
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200861 */
wdenk232c1502004-03-12 00:14:09 +0000862 while (buf->size > 0) {
Wolfgang Denk386eda02006-06-14 18:14:56 +0200863
wdenk232c1502004-03-12 00:14:09 +0000864 if (!current_urb) {
865 TTYERR ("current_urb is NULL, buf->size %d\n",
866 buf->size);
867 return total;
868 }
869
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200870 dest = (char*)current_urb->buffer +
wdenk232c1502004-03-12 00:14:09 +0000871 current_urb->actual_length;
872
873 space_avail =
874 current_urb->buffer_length -
875 current_urb->actual_length;
876 popnum = MIN (space_avail, buf->size);
877 if (popnum == 0)
878 break;
879
880 popped = buf_pop (buf, dest, popnum);
881 if (popped == 0)
882 break;
883 current_urb->actual_length += popped;
884 total += popped;
885
Wolfgang Denk386eda02006-06-14 18:14:56 +0200886 /* If endpoint->last == 0, then transfers have
887 * not started on this endpoint
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200888 */
wdenk232c1502004-03-12 00:14:09 +0000889 if (endpoint->last == 0) {
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200890 if(udc_endpoint_write (endpoint)){
891 /* Write pre-empted by RX */
892 return -1;
893 }
wdenk232c1502004-03-12 00:14:09 +0000894 }
895
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200896 }/* end while */
wdenk232c1502004-03-12 00:14:09 +0000897 return total;
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200898 }
wdenk232c1502004-03-12 00:14:09 +0000899
900 return 0;
901}
902
903static int fill_buffer (circbuf_t * buf)
904{
905 struct usb_endpoint_instance *endpoint =
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200906 &endpoint_instance[rx_endpoint];
wdenk232c1502004-03-12 00:14:09 +0000907
908 if (endpoint->rcv_urb && endpoint->rcv_urb->actual_length) {
Wolfgang Denk386eda02006-06-14 18:14:56 +0200909 unsigned int nb = 0;
wdenk232c1502004-03-12 00:14:09 +0000910 char *src = (char *) endpoint->rcv_urb->buffer;
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200911 unsigned int rx_avail = buf->totalsize - buf->size;
wdenk232c1502004-03-12 00:14:09 +0000912
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200913 if(rx_avail >= endpoint->rcv_urb->actual_length){
wdenk232c1502004-03-12 00:14:09 +0000914
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200915 nb = endpoint->rcv_urb->actual_length;
916 buf_push (buf, src, nb);
917 endpoint->rcv_urb->actual_length = 0;
Wolfgang Denk386eda02006-06-14 18:14:56 +0200918
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200919 }
wdenk232c1502004-03-12 00:14:09 +0000920 return nb;
921 }
wdenk232c1502004-03-12 00:14:09 +0000922 return 0;
923}
924
925static int usbtty_configured (void)
926{
927 return usbtty_configured_flag;
928}
929
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200930/******************************************************************************/
wdenk232c1502004-03-12 00:14:09 +0000931
932static void usbtty_event_handler (struct usb_device_instance *device,
933 usb_device_event_t event, int data)
934{
935 switch (event) {
936 case DEVICE_RESET:
937 case DEVICE_BUS_INACTIVE:
938 usbtty_configured_flag = 0;
939 break;
940 case DEVICE_CONFIGURED:
941 usbtty_configured_flag = 1;
942 break;
943
944 case DEVICE_ADDRESS_ASSIGNED:
945 usbtty_init_endpoints ();
946
947 default:
948 break;
949 }
950}
951
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200952/******************************************************************************/
wdenk232c1502004-03-12 00:14:09 +0000953
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200954int usbtty_cdc_setup(struct usb_device_request *request, struct urb *urb)
955{
956 switch (request->bRequest){
957
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200958 case ACM_SET_CONTROL_LINE_STATE: /* Implies DTE ready */
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200959 break;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200960 case ACM_SEND_ENCAPSULATED_COMMAND : /* Required */
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200961 break;
962 case ACM_SET_LINE_ENCODING : /* DTE stop/parity bits
Wolfgang Denk386eda02006-06-14 18:14:56 +0200963 * per character */
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200964 break;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200965 case ACM_GET_ENCAPSULATED_RESPONSE : /* request response */
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200966 break;
967 case ACM_GET_LINE_ENCODING : /* request DTE rate,
968 * stop/parity bits */
969 memcpy (urb->buffer , &rs232_desc, sizeof(rs232_desc));
970 urb->actual_length = sizeof(rs232_desc);
971
972 break;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200973 default:
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200974 return 1;
975 }
976 return 0;
977}
978
979/******************************************************************************/
wdenk232c1502004-03-12 00:14:09 +0000980
981/*
982 * Since interrupt handling has not yet been implemented, we use this function
983 * to handle polling. This is called by the tstc,getc,putc,puts routines to
984 * update the USB state.
985 */
986void usbtty_poll (void)
987{
988 /* New interrupts? */
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200989 udc_irq();
wdenk232c1502004-03-12 00:14:09 +0000990
Wolfgang Denk386eda02006-06-14 18:14:56 +0200991 /* Write any output data to host buffer
992 * (do this before checking interrupts to avoid missing one)
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200993 */
wdenk232c1502004-03-12 00:14:09 +0000994 if (usbtty_configured ()) {
995 write_buffer (&usbtty_output);
996 }
997
998 /* New interrupts? */
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200999 udc_irq();
Wolfgang Denk386eda02006-06-14 18:14:56 +02001000
1001 /* Check for new data from host..
1002 * (do this after checking interrupts to get latest data)
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +02001003 */
wdenk232c1502004-03-12 00:14:09 +00001004 if (usbtty_configured ()) {
1005 fill_buffer (&usbtty_input);
1006 }
1007
1008 /* New interrupts? */
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +02001009 udc_irq();
1010
wdenk232c1502004-03-12 00:14:09 +00001011}