wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2003 |
| 3 | * Gerry Hamel, geh@ti.com, Texas Instruments |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 4 | * |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 5 | * (C) Copyright 2006 |
| 6 | * Bryan O'Donoghue, bodonoghue@codehermit.ie |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 7 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
Jean-Christophe PLAGNIOL-VILLARD | dedacc1 | 2008-12-07 09:45:35 +0100 | [diff] [blame] | 12 | #include <config.h> |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 13 | #include <circbuf.h> |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 14 | #include <stdio_dev.h> |
Tom Rini | b2fb47f | 2011-12-15 08:40:51 -0700 | [diff] [blame] | 15 | #include <asm/unaligned.h> |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 16 | #include "usbtty.h" |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 17 | #include "usb_cdc_acm.h" |
| 18 | #include "usbdescriptors.h" |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 19 | |
Jean-Christophe PLAGNIOL-VILLARD | dedacc1 | 2008-12-07 09:45:35 +0100 | [diff] [blame] | 20 | #ifdef DEBUG |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 21 | #define TTYDBG(fmt,args...)\ |
| 22 | serial_printf("[%s] %s %d: "fmt, __FILE__,__FUNCTION__,__LINE__,##args) |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 23 | #else |
| 24 | #define TTYDBG(fmt,args...) do{}while(0) |
| 25 | #endif |
| 26 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 27 | #if 1 |
| 28 | #define TTYERR(fmt,args...)\ |
| 29 | serial_printf("ERROR![%s] %s %d: "fmt, __FILE__,__FUNCTION__,\ |
| 30 | __LINE__,##args) |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 31 | #else |
| 32 | #define TTYERR(fmt,args...) do{}while(0) |
| 33 | #endif |
| 34 | |
| 35 | /* |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 36 | * Defines |
| 37 | */ |
| 38 | #define NUM_CONFIGS 1 |
| 39 | #define MAX_INTERFACES 2 |
| 40 | #define NUM_ENDPOINTS 3 |
| 41 | #define ACM_TX_ENDPOINT 3 |
| 42 | #define ACM_RX_ENDPOINT 2 |
| 43 | #define GSERIAL_TX_ENDPOINT 2 |
| 44 | #define GSERIAL_RX_ENDPOINT 1 |
| 45 | #define NUM_ACM_INTERFACES 2 |
| 46 | #define NUM_GSERIAL_INTERFACES 1 |
| 47 | #define CONFIG_USBD_DATA_INTERFACE_STR "Bulk Data Interface" |
| 48 | #define CONFIG_USBD_CTRL_INTERFACE_STR "Control Interface" |
| 49 | |
| 50 | /* |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 51 | * Buffers to hold input and output data |
| 52 | */ |
Shiraz Hashim | b2caefb | 2012-12-17 14:19:37 +0530 | [diff] [blame] | 53 | #define USBTTY_BUFFER_SIZE 2048 |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 54 | static circbuf_t usbtty_input; |
| 55 | static circbuf_t usbtty_output; |
| 56 | |
| 57 | |
| 58 | /* |
| 59 | * Instance variables |
| 60 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 61 | static struct stdio_dev usbttydev; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 62 | static struct usb_device_instance device_instance[1]; |
| 63 | static struct usb_bus_instance bus_instance[1]; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 64 | static struct usb_configuration_instance config_instance[NUM_CONFIGS]; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 65 | static struct usb_interface_instance interface_instance[MAX_INTERFACES]; |
| 66 | static struct usb_alternate_instance alternate_instance[MAX_INTERFACES]; |
| 67 | /* one extra for control endpoint */ |
| 68 | static struct usb_endpoint_instance endpoint_instance[NUM_ENDPOINTS+1]; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 69 | |
| 70 | /* |
| 71 | * Global flag |
| 72 | */ |
| 73 | int usbtty_configured_flag = 0; |
| 74 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 75 | /* |
wdenk | 6629d2f | 2004-03-12 15:38:25 +0000 | [diff] [blame] | 76 | * Serial number |
| 77 | */ |
| 78 | static char serial_number[16]; |
| 79 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 80 | |
wdenk | 6629d2f | 2004-03-12 15:38:25 +0000 | [diff] [blame] | 81 | /* |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 82 | * Descriptors, Strings, Local variables. |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 83 | */ |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 84 | |
Jean-Christophe PLAGNIOL-VILLARD | 2731b9a | 2009-04-03 12:46:58 +0200 | [diff] [blame] | 85 | /* defined and used by gadget/ep0.c */ |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 86 | extern struct usb_string_descriptor **usb_strings; |
| 87 | |
| 88 | /* Indicies, References */ |
| 89 | static unsigned short rx_endpoint = 0; |
| 90 | static unsigned short tx_endpoint = 0; |
| 91 | static unsigned short interface_count = 0; |
| 92 | static struct usb_string_descriptor *usbtty_string_table[STR_COUNT]; |
| 93 | |
| 94 | /* USB Descriptor Strings */ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 95 | static u8 wstrLang[4] = {4,USB_DT_STRING,0x9,0x4}; |
| 96 | static u8 wstrManufacturer[2 + 2*(sizeof(CONFIG_USBD_MANUFACTURER)-1)]; |
| 97 | static u8 wstrProduct[2 + 2*(sizeof(CONFIG_USBD_PRODUCT_NAME)-1)]; |
wdenk | 6629d2f | 2004-03-12 15:38:25 +0000 | [diff] [blame] | 98 | static u8 wstrSerial[2 + 2*(sizeof(serial_number) - 1)]; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 99 | static u8 wstrConfiguration[2 + 2*(sizeof(CONFIG_USBD_CONFIGURATION_STR)-1)]; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 100 | static u8 wstrDataInterface[2 + 2*(sizeof(CONFIG_USBD_DATA_INTERFACE_STR)-1)]; |
| 101 | static u8 wstrCtrlInterface[2 + 2*(sizeof(CONFIG_USBD_DATA_INTERFACE_STR)-1)]; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 102 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 103 | /* Standard USB Data Structures */ |
| 104 | static struct usb_interface_descriptor interface_descriptors[MAX_INTERFACES]; |
| 105 | static struct usb_endpoint_descriptor *ep_descriptor_ptrs[NUM_ENDPOINTS]; |
| 106 | static struct usb_configuration_descriptor *configuration_descriptor = 0; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 107 | static struct usb_device_descriptor device_descriptor = { |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 108 | .bLength = sizeof(struct usb_device_descriptor), |
| 109 | .bDescriptorType = USB_DT_DEVICE, |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 110 | .bcdUSB = cpu_to_le16(USB_BCD_VERSION), |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 111 | .bDeviceSubClass = 0x00, |
| 112 | .bDeviceProtocol = 0x00, |
| 113 | .bMaxPacketSize0 = EP0_MAX_PACKET_SIZE, |
| 114 | .idVendor = cpu_to_le16(CONFIG_USBD_VENDORID), |
| 115 | .bcdDevice = cpu_to_le16(USBTTY_BCD_DEVICE), |
| 116 | .iManufacturer = STR_MANUFACTURER, |
| 117 | .iProduct = STR_PRODUCT, |
| 118 | .iSerialNumber = STR_SERIAL, |
| 119 | .bNumConfigurations = NUM_CONFIGS |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 120 | }; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 121 | |
| 122 | |
Vipin KUMAR | f9da0f8 | 2012-03-26 15:38:06 +0530 | [diff] [blame] | 123 | #if defined(CONFIG_USBD_HS) |
| 124 | static struct usb_qualifier_descriptor qualifier_descriptor = { |
| 125 | .bLength = sizeof(struct usb_qualifier_descriptor), |
| 126 | .bDescriptorType = USB_DT_QUAL, |
| 127 | .bcdUSB = cpu_to_le16(USB_BCD_VERSION), |
| 128 | .bDeviceClass = COMMUNICATIONS_DEVICE_CLASS, |
| 129 | .bDeviceSubClass = 0x00, |
| 130 | .bDeviceProtocol = 0x00, |
| 131 | .bMaxPacketSize0 = EP0_MAX_PACKET_SIZE, |
| 132 | .bNumConfigurations = NUM_CONFIGS |
| 133 | }; |
| 134 | #endif |
| 135 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 136 | /* |
| 137 | * Static CDC ACM specific descriptors |
| 138 | */ |
| 139 | |
| 140 | struct acm_config_desc { |
| 141 | struct usb_configuration_descriptor configuration_desc; |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 142 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 143 | /* Master Interface */ |
| 144 | struct usb_interface_descriptor interface_desc; |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 145 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 146 | 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 Malaviya | f3c0de6 | 2009-02-03 15:17:10 -0500 | [diff] [blame] | 154 | struct usb_endpoint_descriptor data_endpoints[NUM_ENDPOINTS-1]; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 155 | } __attribute__((packed)); |
| 156 | |
| 157 | static struct acm_config_desc acm_configuration_descriptors[NUM_CONFIGS] = { |
| 158 | { |
| 159 | .configuration_desc ={ |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 160 | .bLength = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 161 | sizeof(struct usb_configuration_descriptor), |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 162 | .bDescriptorType = USB_DT_CONFIG, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 163 | .wTotalLength = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 164 | cpu_to_le16(sizeof(struct acm_config_desc)), |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 165 | .bNumInterfaces = NUM_ACM_INTERFACES, |
| 166 | .bConfigurationValue = 1, |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 167 | .iConfiguration = STR_CONFIG, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 168 | .bmAttributes = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 169 | 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 Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 179 | .bInterfaceClass = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 180 | 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 Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 186 | .bFunctionLength = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 187 | sizeof(struct usb_class_header_function_descriptor), |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 188 | .bDescriptorType = CS_INTERFACE, |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 189 | .bDescriptorSubtype = USB_ST_HEADER, |
| 190 | .bcdCDC = cpu_to_le16(110), |
| 191 | }, |
| 192 | .usb_class_call_mgt = { |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 193 | .bFunctionLength = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 194 | sizeof(struct usb_class_call_management_descriptor), |
| 195 | .bDescriptorType = CS_INTERFACE, |
| 196 | .bDescriptorSubtype = USB_ST_CMF, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 197 | .bmCapabilities = 0x00, |
| 198 | .bDataInterface = 0x01, |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 199 | }, |
| 200 | .usb_class_acm = { |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 201 | .bFunctionLength = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 202 | sizeof(struct usb_class_abstract_control_descriptor), |
| 203 | .bDescriptorType = CS_INTERFACE, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 204 | .bDescriptorSubtype = USB_ST_ACMF, |
| 205 | .bmCapabilities = 0x00, |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 206 | }, |
| 207 | .usb_class_union = { |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 208 | .bFunctionLength = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 209 | sizeof(struct usb_class_union_function_descriptor), |
| 210 | .bDescriptorType = CS_INTERFACE, |
| 211 | .bDescriptorSubtype = USB_ST_UF, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 212 | .bMasterInterface = 0x00, |
| 213 | .bSlaveInterface0 = 0x01, |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 214 | }, |
| 215 | .notification_endpoint = { |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 216 | .bLength = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 217 | sizeof(struct usb_endpoint_descriptor), |
| 218 | .bDescriptorType = USB_DT_ENDPOINT, |
Vivek Kutal | 9e78dae | 2009-02-23 21:35:11 +0530 | [diff] [blame] | 219 | .bEndpointAddress = UDC_INT_ENDPOINT | USB_DIR_IN, |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 220 | .bmAttributes = USB_ENDPOINT_XFER_INT, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 221 | .wMaxPacketSize |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 222 | = cpu_to_le16(CONFIG_USBD_SERIAL_INT_PKTSIZE), |
| 223 | .bInterval = 0xFF, |
| 224 | }, |
| 225 | |
| 226 | /* Interface 2 */ |
| 227 | .data_class_interface = { |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 228 | .bLength = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 229 | sizeof(struct usb_interface_descriptor), |
| 230 | .bDescriptorType = USB_DT_INTERFACE, |
| 231 | .bInterfaceNumber = 0x01, |
| 232 | .bAlternateSetting = 0x00, |
| 233 | .bNumEndpoints = 0x02, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 234 | .bInterfaceClass = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 235 | 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 Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 242 | .bLength = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 243 | sizeof(struct usb_endpoint_descriptor), |
| 244 | .bDescriptorType = USB_DT_ENDPOINT, |
Vivek Kutal | 9e78dae | 2009-02-23 21:35:11 +0530 | [diff] [blame] | 245 | .bEndpointAddress = UDC_OUT_ENDPOINT | USB_DIR_OUT, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 246 | .bmAttributes = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 247 | USB_ENDPOINT_XFER_BULK, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 248 | .wMaxPacketSize = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 249 | cpu_to_le16(CONFIG_USBD_SERIAL_BULK_PKTSIZE), |
| 250 | .bInterval = 0xFF, |
| 251 | }, |
| 252 | { |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 253 | .bLength = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 254 | sizeof(struct usb_endpoint_descriptor), |
| 255 | .bDescriptorType = USB_DT_ENDPOINT, |
Vivek Kutal | 9e78dae | 2009-02-23 21:35:11 +0530 | [diff] [blame] | 256 | .bEndpointAddress = UDC_IN_ENDPOINT | USB_DIR_IN, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 257 | .bmAttributes = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 258 | USB_ENDPOINT_XFER_BULK, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 259 | .wMaxPacketSize = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 260 | cpu_to_le16(CONFIG_USBD_SERIAL_BULK_PKTSIZE), |
| 261 | .bInterval = 0xFF, |
| 262 | }, |
| 263 | }, |
| 264 | }, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 265 | }; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 266 | |
| 267 | static struct rs232_emu rs232_desc={ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 268 | .dter = 115200, |
| 269 | .stop_bits = 0x00, |
| 270 | .parity = 0x00, |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 271 | .data_bits = 0x08 |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 272 | }; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 273 | |
| 274 | |
| 275 | /* |
| 276 | * Static Generic Serial specific data |
| 277 | */ |
| 278 | |
| 279 | |
| 280 | struct gserial_config_desc { |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 281 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 282 | struct usb_configuration_descriptor configuration_desc; |
Atin Malaviya | f3c0de6 | 2009-02-03 15:17:10 -0500 | [diff] [blame] | 283 | struct usb_interface_descriptor interface_desc[NUM_GSERIAL_INTERFACES]; |
| 284 | struct usb_endpoint_descriptor data_endpoints[NUM_ENDPOINTS]; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 285 | |
| 286 | } __attribute__((packed)); |
| 287 | |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 288 | static struct gserial_config_desc |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 289 | gserial_configuration_descriptors[NUM_CONFIGS] ={ |
| 290 | { |
| 291 | .configuration_desc ={ |
| 292 | .bLength = sizeof(struct usb_configuration_descriptor), |
| 293 | .bDescriptorType = USB_DT_CONFIG, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 294 | .wTotalLength = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 295 | cpu_to_le16(sizeof(struct gserial_config_desc)), |
| 296 | .bNumInterfaces = NUM_GSERIAL_INTERFACES, |
| 297 | .bConfigurationValue = 1, |
| 298 | .iConfiguration = STR_CONFIG, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 299 | .bmAttributes = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 300 | BMATTRIBUTE_SELF_POWERED|BMATTRIBUTE_RESERVED, |
| 301 | .bMaxPower = USBTTY_MAXPOWER |
| 302 | }, |
| 303 | .interface_desc = { |
| 304 | { |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 305 | .bLength = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 306 | sizeof(struct usb_interface_descriptor), |
| 307 | .bDescriptorType = USB_DT_INTERFACE, |
| 308 | .bInterfaceNumber = 0, |
| 309 | .bAlternateSetting = 0, |
| 310 | .bNumEndpoints = NUM_ENDPOINTS, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 311 | .bInterfaceClass = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 312 | COMMUNICATIONS_INTERFACE_CLASS_VENDOR, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 313 | .bInterfaceSubClass = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 314 | COMMUNICATIONS_NO_SUBCLASS, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 315 | .bInterfaceProtocol = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 316 | COMMUNICATIONS_NO_PROTOCOL, |
| 317 | .iInterface = STR_DATA_INTERFACE |
| 318 | }, |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 319 | }, |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 320 | .data_endpoints = { |
| 321 | { |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 322 | .bLength = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 323 | sizeof(struct usb_endpoint_descriptor), |
| 324 | .bDescriptorType = USB_DT_ENDPOINT, |
Vivek Kutal | 9e78dae | 2009-02-23 21:35:11 +0530 | [diff] [blame] | 325 | .bEndpointAddress = UDC_OUT_ENDPOINT | USB_DIR_OUT, |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 326 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 327 | .wMaxPacketSize = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 328 | cpu_to_le16(CONFIG_USBD_SERIAL_OUT_PKTSIZE), |
| 329 | .bInterval= 0xFF, |
| 330 | }, |
| 331 | { |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 332 | .bLength = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 333 | sizeof(struct usb_endpoint_descriptor), |
| 334 | .bDescriptorType = USB_DT_ENDPOINT, |
Vivek Kutal | 9e78dae | 2009-02-23 21:35:11 +0530 | [diff] [blame] | 335 | .bEndpointAddress = UDC_IN_ENDPOINT | USB_DIR_IN, |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 336 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 337 | .wMaxPacketSize = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 338 | cpu_to_le16(CONFIG_USBD_SERIAL_IN_PKTSIZE), |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 339 | .bInterval = 0xFF, |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 340 | }, |
| 341 | { |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 342 | .bLength = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 343 | sizeof(struct usb_endpoint_descriptor), |
| 344 | .bDescriptorType = USB_DT_ENDPOINT, |
Vivek Kutal | 9e78dae | 2009-02-23 21:35:11 +0530 | [diff] [blame] | 345 | .bEndpointAddress = UDC_INT_ENDPOINT | USB_DIR_IN, |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 346 | .bmAttributes = USB_ENDPOINT_XFER_INT, |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 347 | .wMaxPacketSize = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 348 | cpu_to_le16(CONFIG_USBD_SERIAL_INT_PKTSIZE), |
| 349 | .bInterval = 0xFF, |
| 350 | }, |
| 351 | }, |
| 352 | }, |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 353 | }; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 354 | |
| 355 | /* |
| 356 | * Static Function Prototypes |
| 357 | */ |
| 358 | |
| 359 | static void usbtty_init_strings (void); |
| 360 | static void usbtty_init_instances (void); |
| 361 | static void usbtty_init_endpoints (void); |
| 362 | static void usbtty_init_terminal_type(short type); |
| 363 | static void usbtty_event_handler (struct usb_device_instance *device, |
| 364 | usb_device_event_t event, int data); |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 365 | static int usbtty_cdc_setup(struct usb_device_request *request, |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 366 | struct urb *urb); |
| 367 | static int usbtty_configured (void); |
| 368 | static int write_buffer (circbuf_t * buf); |
| 369 | static int fill_buffer (circbuf_t * buf); |
| 370 | |
| 371 | void usbtty_poll (void); |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 372 | |
| 373 | /* utility function for converting char* to wide string used by USB */ |
| 374 | static void str2wide (char *str, u16 * wide) |
| 375 | { |
| 376 | int i; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 377 | for (i = 0; i < strlen (str) && str[i]; i++){ |
Rodolfo Giometti | 1813512 | 2007-06-06 10:08:14 +0200 | [diff] [blame] | 378 | #if defined(__LITTLE_ENDIAN) |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 379 | wide[i] = (u16) str[i]; |
Rodolfo Giometti | 1813512 | 2007-06-06 10:08:14 +0200 | [diff] [blame] | 380 | #elif defined(__BIG_ENDIAN) |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 381 | wide[i] = ((u16)(str[i])<<8); |
| 382 | #else |
Rodolfo Giometti | 1813512 | 2007-06-06 10:08:14 +0200 | [diff] [blame] | 383 | #error "__LITTLE_ENDIAN or __BIG_ENDIAN undefined" |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 384 | #endif |
| 385 | } |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 386 | } |
| 387 | |
| 388 | /* |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 389 | * Test whether a character is in the RX buffer |
| 390 | */ |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 391 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 392 | int usbtty_tstc (void) |
| 393 | { |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 394 | 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 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 402 | 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 Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 411 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 412 | int usbtty_getc (void) |
| 413 | { |
| 414 | char c; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 415 | struct usb_endpoint_instance *endpoint = |
| 416 | &endpoint_instance[rx_endpoint]; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 417 | |
| 418 | while (usbtty_input.size <= 0) { |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 419 | udc_unset_nak(endpoint->endpoint_address&0x03); |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 420 | usbtty_poll (); |
| 421 | } |
| 422 | |
| 423 | buf_pop (&usbtty_input, &c, 1); |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 424 | udc_set_nak(endpoint->endpoint_address&0x03); |
| 425 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 426 | return c; |
| 427 | } |
| 428 | |
| 429 | /* |
| 430 | * Output a single byte to the usb client port. |
| 431 | */ |
| 432 | void usbtty_putc (const char c) |
| 433 | { |
Atin Malaviya | f3c0de6 | 2009-02-03 15:17:10 -0500 | [diff] [blame] | 434 | if (!usbtty_configured ()) |
| 435 | return; |
| 436 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 437 | 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 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 448 | /* usbtty_puts() helper function for finding the next '\n' in a string */ |
| 449 | static 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 Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 461 | * Output a string to the usb client port - implementing flow control |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 462 | */ |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 463 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 464 | static 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 Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 471 | usbtty_poll (); |
| 472 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 473 | space = maxlen - usbtty_output.size; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 474 | /* Empty buffer here, if needed, to ensure space... */ |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 475 | if (space) { |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 476 | write_buffer (&usbtty_output); |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 477 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 478 | n = MIN (space, MIN (len, maxlen)); |
| 479 | buf_push (&usbtty_output, str, n); |
| 480 | |
| 481 | str += n; |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 482 | len -= n; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 483 | } |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 484 | } |
| 485 | } |
| 486 | |
| 487 | void usbtty_puts (const char *str) |
| 488 | { |
| 489 | int n; |
Atin Malaviya | f3c0de6 | 2009-02-03 15:17:10 -0500 | [diff] [blame] | 490 | int len; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 491 | |
Atin Malaviya | f3c0de6 | 2009-02-03 15:17:10 -0500 | [diff] [blame] | 492 | if (!usbtty_configured ()) |
| 493 | return; |
| 494 | |
| 495 | len = strlen (str); |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 496 | /* 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 | */ |
| 520 | int drv_usbtty_init (void) |
| 521 | { |
| 522 | int rc; |
wdenk | 6629d2f | 2004-03-12 15:38:25 +0000 | [diff] [blame] | 523 | char * sn; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 524 | char * tt; |
wdenk | 6629d2f | 2004-03-12 15:38:25 +0000 | [diff] [blame] | 525 | int snlen; |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 526 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 527 | /* Ger seiral number */ |
wdenk | 6629d2f | 2004-03-12 15:38:25 +0000 | [diff] [blame] | 528 | if (!(sn = getenv("serial#"))) { |
| 529 | sn = "000000000000"; |
| 530 | } |
| 531 | snlen = strlen(sn); |
| 532 | if (snlen > sizeof(serial_number) - 1) { |
Wolfgang Denk | b64f190 | 2008-07-14 15:06:35 +0200 | [diff] [blame] | 533 | printf ("Warning: serial number %s is too long (%d > %lu)\n", |
| 534 | sn, snlen, (ulong)(sizeof(serial_number) - 1)); |
wdenk | 6629d2f | 2004-03-12 15:38:25 +0000 | [diff] [blame] | 535 | snlen = sizeof(serial_number) - 1; |
| 536 | } |
| 537 | memcpy (serial_number, sn, snlen); |
| 538 | serial_number[snlen] = '\0'; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 539 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 540 | /* 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 Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 547 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 548 | /* 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 Herbrechtsmeier | 241d9a6 | 2011-10-17 17:22:49 +0200 | [diff] [blame] | 558 | usbtty_init_endpoints (); |
| 559 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 560 | udc_startup_events (device_instance);/* Enable dev, init udc pointers */ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 561 | udc_connect (); /* Enable pullup for host detection */ |
| 562 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 563 | /* 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-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 574 | rc = stdio_register (&usbttydev); |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 575 | |
| 576 | return (rc == 0) ? 1 : rc; |
| 577 | } |
| 578 | |
| 579 | static void usbtty_init_strings (void) |
| 580 | { |
| 581 | struct usb_string_descriptor *string; |
| 582 | |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 583 | usbtty_string_table[STR_LANG] = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 584 | (struct usb_string_descriptor*)wstrLang; |
| 585 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 586 | string = (struct usb_string_descriptor *) wstrManufacturer; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 587 | string->bLength = sizeof(wstrManufacturer); |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 588 | string->bDescriptorType = USB_DT_STRING; |
| 589 | str2wide (CONFIG_USBD_MANUFACTURER, string->wData); |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 590 | usbtty_string_table[STR_MANUFACTURER]=string; |
| 591 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 592 | |
| 593 | string = (struct usb_string_descriptor *) wstrProduct; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 594 | string->bLength = sizeof(wstrProduct); |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 595 | string->bDescriptorType = USB_DT_STRING; |
| 596 | str2wide (CONFIG_USBD_PRODUCT_NAME, string->wData); |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 597 | usbtty_string_table[STR_PRODUCT]=string; |
| 598 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 599 | |
| 600 | string = (struct usb_string_descriptor *) wstrSerial; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 601 | string->bLength = sizeof(serial_number); |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 602 | string->bDescriptorType = USB_DT_STRING; |
wdenk | 6629d2f | 2004-03-12 15:38:25 +0000 | [diff] [blame] | 603 | str2wide (serial_number, string->wData); |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 604 | usbtty_string_table[STR_SERIAL]=string; |
| 605 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 606 | |
| 607 | string = (struct usb_string_descriptor *) wstrConfiguration; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 608 | string->bLength = sizeof(wstrConfiguration); |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 609 | string->bDescriptorType = USB_DT_STRING; |
| 610 | str2wide (CONFIG_USBD_CONFIGURATION_STR, string->wData); |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 611 | usbtty_string_table[STR_CONFIG]=string; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 612 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 613 | |
| 614 | string = (struct usb_string_descriptor *) wstrDataInterface; |
| 615 | string->bLength = sizeof(wstrDataInterface); |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 616 | string->bDescriptorType = USB_DT_STRING; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 617 | 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; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 625 | |
| 626 | /* Now, initialize the string table for ep0 handling */ |
| 627 | usb_strings = usbtty_string_table; |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 628 | } |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 629 | |
Tom Rini | b2fb47f | 2011-12-15 08:40:51 -0700 | [diff] [blame] | 630 | #define init_wMaxPacketSize(x) le16_to_cpu(get_unaligned(\ |
| 631 | &ep_descriptor_ptrs[(x) - 1]->wMaxPacketSize)); |
| 632 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 633 | static 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; |
Vipin KUMAR | f9da0f8 | 2012-03-26 15:38:06 +0530 | [diff] [blame] | 641 | #if defined(CONFIG_USBD_HS) |
| 642 | device_instance->qualifier_descriptor = &qualifier_descriptor; |
| 643 | #endif |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 644 | device_instance->event = usbtty_event_handler; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 645 | device_instance->cdc_recv_setup = usbtty_cdc_setup; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 646 | device_instance->bus = bus_instance; |
| 647 | device_instance->configurations = NUM_CONFIGS; |
| 648 | device_instance->configuration_instance_array = config_instance; |
| 649 | |
| 650 | /* initialize bus instance */ |
| 651 | memset (bus_instance, 0, sizeof (struct usb_bus_instance)); |
| 652 | bus_instance->device = device_instance; |
| 653 | bus_instance->endpoint_array = endpoint_instance; |
| 654 | bus_instance->max_endpoints = 1; |
| 655 | bus_instance->maxpacketsize = 64; |
wdenk | 6629d2f | 2004-03-12 15:38:25 +0000 | [diff] [blame] | 656 | bus_instance->serial_number_str = serial_number; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 657 | |
| 658 | /* configuration instance */ |
| 659 | memset (config_instance, 0, |
| 660 | sizeof (struct usb_configuration_instance)); |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 661 | config_instance->interfaces = interface_count; |
| 662 | config_instance->configuration_descriptor = configuration_descriptor; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 663 | config_instance->interface_instance_array = interface_instance; |
| 664 | |
| 665 | /* interface instance */ |
| 666 | memset (interface_instance, 0, |
| 667 | sizeof (struct usb_interface_instance)); |
| 668 | interface_instance->alternates = 1; |
| 669 | interface_instance->alternates_instance_array = alternate_instance; |
| 670 | |
| 671 | /* alternates instance */ |
| 672 | memset (alternate_instance, 0, |
| 673 | sizeof (struct usb_alternate_instance)); |
| 674 | alternate_instance->interface_descriptor = interface_descriptors; |
| 675 | alternate_instance->endpoints = NUM_ENDPOINTS; |
| 676 | alternate_instance->endpoints_descriptor_array = ep_descriptor_ptrs; |
| 677 | |
| 678 | /* endpoint instances */ |
| 679 | memset (&endpoint_instance[0], 0, |
| 680 | sizeof (struct usb_endpoint_instance)); |
| 681 | endpoint_instance[0].endpoint_address = 0; |
| 682 | endpoint_instance[0].rcv_packetSize = EP0_MAX_PACKET_SIZE; |
| 683 | endpoint_instance[0].rcv_attributes = USB_ENDPOINT_XFER_CONTROL; |
| 684 | endpoint_instance[0].tx_packetSize = EP0_MAX_PACKET_SIZE; |
| 685 | endpoint_instance[0].tx_attributes = USB_ENDPOINT_XFER_CONTROL; |
| 686 | udc_setup_ep (device_instance, 0, &endpoint_instance[0]); |
| 687 | |
| 688 | for (i = 1; i <= NUM_ENDPOINTS; i++) { |
| 689 | memset (&endpoint_instance[i], 0, |
| 690 | sizeof (struct usb_endpoint_instance)); |
| 691 | |
| 692 | endpoint_instance[i].endpoint_address = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 693 | ep_descriptor_ptrs[i - 1]->bEndpointAddress; |
| 694 | |
| 695 | endpoint_instance[i].rcv_attributes = |
| 696 | ep_descriptor_ptrs[i - 1]->bmAttributes; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 697 | |
Tom Rini | b2fb47f | 2011-12-15 08:40:51 -0700 | [diff] [blame] | 698 | endpoint_instance[i].rcv_packetSize = init_wMaxPacketSize(i); |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 699 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 700 | endpoint_instance[i].tx_attributes = |
| 701 | ep_descriptor_ptrs[i - 1]->bmAttributes; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 702 | |
Tom Rini | b2fb47f | 2011-12-15 08:40:51 -0700 | [diff] [blame] | 703 | endpoint_instance[i].tx_packetSize = init_wMaxPacketSize(i); |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 704 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 705 | endpoint_instance[i].tx_attributes = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 706 | ep_descriptor_ptrs[i - 1]->bmAttributes; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 707 | |
| 708 | urb_link_init (&endpoint_instance[i].rcv); |
| 709 | urb_link_init (&endpoint_instance[i].rdy); |
| 710 | urb_link_init (&endpoint_instance[i].tx); |
| 711 | urb_link_init (&endpoint_instance[i].done); |
| 712 | |
| 713 | if (endpoint_instance[i].endpoint_address & USB_DIR_IN) |
| 714 | endpoint_instance[i].tx_urb = |
| 715 | usbd_alloc_urb (device_instance, |
| 716 | &endpoint_instance[i]); |
| 717 | else |
| 718 | endpoint_instance[i].rcv_urb = |
| 719 | usbd_alloc_urb (device_instance, |
| 720 | &endpoint_instance[i]); |
| 721 | } |
| 722 | } |
| 723 | |
| 724 | static void usbtty_init_endpoints (void) |
| 725 | { |
| 726 | int i; |
| 727 | |
| 728 | bus_instance->max_endpoints = NUM_ENDPOINTS + 1; |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 729 | for (i = 1; i <= NUM_ENDPOINTS; i++) { |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 730 | udc_setup_ep (device_instance, i, &endpoint_instance[i]); |
| 731 | } |
| 732 | } |
| 733 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 734 | /* usbtty_init_terminal_type |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 735 | * |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 736 | * Do some late binding for our device type. |
| 737 | */ |
| 738 | static void usbtty_init_terminal_type(short type) |
| 739 | { |
| 740 | switch(type){ |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 741 | /* CDC ACM */ |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 742 | case 0: |
| 743 | /* Assign endpoint descriptors */ |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 744 | ep_descriptor_ptrs[0] = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 745 | &acm_configuration_descriptors[0].notification_endpoint; |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 746 | ep_descriptor_ptrs[1] = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 747 | &acm_configuration_descriptors[0].data_endpoints[0]; |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 748 | ep_descriptor_ptrs[2] = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 749 | &acm_configuration_descriptors[0].data_endpoints[1]; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 750 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 751 | /* Enumerate Device Descriptor */ |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 752 | device_descriptor.bDeviceClass = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 753 | COMMUNICATIONS_DEVICE_CLASS; |
| 754 | device_descriptor.idProduct = |
| 755 | cpu_to_le16(CONFIG_USBD_PRODUCTID_CDCACM); |
| 756 | |
Vipin KUMAR | f9da0f8 | 2012-03-26 15:38:06 +0530 | [diff] [blame] | 757 | #if defined(CONFIG_USBD_HS) |
| 758 | qualifier_descriptor.bDeviceClass = |
| 759 | COMMUNICATIONS_DEVICE_CLASS; |
| 760 | #endif |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 761 | /* Assign endpoint indices */ |
| 762 | tx_endpoint = ACM_TX_ENDPOINT; |
| 763 | rx_endpoint = ACM_RX_ENDPOINT; |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 764 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 765 | /* Configuration Descriptor */ |
| 766 | configuration_descriptor = |
| 767 | (struct usb_configuration_descriptor*) |
| 768 | &acm_configuration_descriptors; |
| 769 | |
| 770 | /* Interface count */ |
| 771 | interface_count = NUM_ACM_INTERFACES; |
| 772 | break; |
| 773 | |
| 774 | /* BULK IN/OUT & Default */ |
| 775 | case 1: |
| 776 | default: |
| 777 | /* Assign endpoint descriptors */ |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 778 | ep_descriptor_ptrs[0] = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 779 | &gserial_configuration_descriptors[0].data_endpoints[0]; |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 780 | ep_descriptor_ptrs[1] = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 781 | &gserial_configuration_descriptors[0].data_endpoints[1]; |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 782 | ep_descriptor_ptrs[2] = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 783 | &gserial_configuration_descriptors[0].data_endpoints[2]; |
| 784 | |
| 785 | /* Enumerate Device Descriptor */ |
| 786 | device_descriptor.bDeviceClass = 0xFF; |
| 787 | device_descriptor.idProduct = |
| 788 | cpu_to_le16(CONFIG_USBD_PRODUCTID_GSERIAL); |
Vipin KUMAR | f9da0f8 | 2012-03-26 15:38:06 +0530 | [diff] [blame] | 789 | #if defined(CONFIG_USBD_HS) |
| 790 | qualifier_descriptor.bDeviceClass = 0xFF; |
| 791 | #endif |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 792 | /* Assign endpoint indices */ |
| 793 | tx_endpoint = GSERIAL_TX_ENDPOINT; |
| 794 | rx_endpoint = GSERIAL_RX_ENDPOINT; |
| 795 | |
| 796 | /* Configuration Descriptor */ |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 797 | configuration_descriptor = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 798 | (struct usb_configuration_descriptor*) |
| 799 | &gserial_configuration_descriptors; |
| 800 | |
| 801 | /* Interface count */ |
| 802 | interface_count = NUM_GSERIAL_INTERFACES; |
| 803 | break; |
| 804 | } |
| 805 | } |
| 806 | |
| 807 | /******************************************************************************/ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 808 | |
| 809 | static struct urb *next_urb (struct usb_device_instance *device, |
| 810 | struct usb_endpoint_instance *endpoint) |
| 811 | { |
| 812 | struct urb *current_urb = NULL; |
| 813 | int space; |
| 814 | |
| 815 | /* If there's a queue, then we should add to the last urb */ |
| 816 | if (!endpoint->tx_queue) { |
| 817 | current_urb = endpoint->tx_urb; |
| 818 | } else { |
| 819 | /* Last urb from tx chain */ |
| 820 | current_urb = |
| 821 | p2surround (struct urb, link, endpoint->tx.prev); |
| 822 | } |
| 823 | |
| 824 | /* Make sure this one has enough room */ |
| 825 | space = current_urb->buffer_length - current_urb->actual_length; |
| 826 | if (space > 0) { |
| 827 | return current_urb; |
| 828 | } else { /* No space here */ |
| 829 | /* First look at done list */ |
| 830 | current_urb = first_urb_detached (&endpoint->done); |
| 831 | if (!current_urb) { |
| 832 | current_urb = usbd_alloc_urb (device, endpoint); |
| 833 | } |
| 834 | |
| 835 | urb_append (&endpoint->tx, current_urb); |
| 836 | endpoint->tx_queue++; |
| 837 | } |
| 838 | return current_urb; |
| 839 | } |
| 840 | |
| 841 | static int write_buffer (circbuf_t * buf) |
| 842 | { |
| 843 | if (!usbtty_configured ()) { |
| 844 | return 0; |
| 845 | } |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 846 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 847 | struct usb_endpoint_instance *endpoint = |
| 848 | &endpoint_instance[tx_endpoint]; |
| 849 | struct urb *current_urb = NULL; |
| 850 | |
| 851 | current_urb = next_urb (device_instance, endpoint); |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 852 | /* TX data still exists - send it now |
| 853 | */ |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 854 | if(endpoint->sent < current_urb->actual_length){ |
| 855 | if(udc_endpoint_write (endpoint)){ |
| 856 | /* Write pre-empted by RX */ |
| 857 | return -1; |
| 858 | } |
| 859 | } |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 860 | |
| 861 | if (buf->size) { |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 862 | char *dest; |
| 863 | |
| 864 | int space_avail; |
| 865 | int popnum, popped; |
| 866 | int total = 0; |
| 867 | |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 868 | /* Break buffer into urb sized pieces, |
| 869 | * and link each to the endpoint |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 870 | */ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 871 | while (buf->size > 0) { |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 872 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 873 | if (!current_urb) { |
| 874 | TTYERR ("current_urb is NULL, buf->size %d\n", |
| 875 | buf->size); |
| 876 | return total; |
| 877 | } |
| 878 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 879 | dest = (char*)current_urb->buffer + |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 880 | current_urb->actual_length; |
| 881 | |
| 882 | space_avail = |
| 883 | current_urb->buffer_length - |
| 884 | current_urb->actual_length; |
| 885 | popnum = MIN (space_avail, buf->size); |
| 886 | if (popnum == 0) |
| 887 | break; |
| 888 | |
| 889 | popped = buf_pop (buf, dest, popnum); |
| 890 | if (popped == 0) |
| 891 | break; |
| 892 | current_urb->actual_length += popped; |
| 893 | total += popped; |
| 894 | |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 895 | /* If endpoint->last == 0, then transfers have |
| 896 | * not started on this endpoint |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 897 | */ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 898 | if (endpoint->last == 0) { |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 899 | if(udc_endpoint_write (endpoint)){ |
| 900 | /* Write pre-empted by RX */ |
| 901 | return -1; |
| 902 | } |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 903 | } |
| 904 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 905 | }/* end while */ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 906 | return total; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 907 | } |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 908 | |
| 909 | return 0; |
| 910 | } |
| 911 | |
| 912 | static int fill_buffer (circbuf_t * buf) |
| 913 | { |
| 914 | struct usb_endpoint_instance *endpoint = |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 915 | &endpoint_instance[rx_endpoint]; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 916 | |
| 917 | if (endpoint->rcv_urb && endpoint->rcv_urb->actual_length) { |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 918 | unsigned int nb = 0; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 919 | char *src = (char *) endpoint->rcv_urb->buffer; |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 920 | unsigned int rx_avail = buf->totalsize - buf->size; |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 921 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 922 | if(rx_avail >= endpoint->rcv_urb->actual_length){ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 923 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 924 | nb = endpoint->rcv_urb->actual_length; |
| 925 | buf_push (buf, src, nb); |
| 926 | endpoint->rcv_urb->actual_length = 0; |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 927 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 928 | } |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 929 | return nb; |
| 930 | } |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 931 | return 0; |
| 932 | } |
| 933 | |
| 934 | static int usbtty_configured (void) |
| 935 | { |
| 936 | return usbtty_configured_flag; |
| 937 | } |
| 938 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 939 | /******************************************************************************/ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 940 | |
| 941 | static void usbtty_event_handler (struct usb_device_instance *device, |
| 942 | usb_device_event_t event, int data) |
| 943 | { |
Vipin KUMAR | f9da0f8 | 2012-03-26 15:38:06 +0530 | [diff] [blame] | 944 | #if defined(CONFIG_USBD_HS) |
| 945 | int i; |
| 946 | #endif |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 947 | switch (event) { |
| 948 | case DEVICE_RESET: |
| 949 | case DEVICE_BUS_INACTIVE: |
| 950 | usbtty_configured_flag = 0; |
| 951 | break; |
| 952 | case DEVICE_CONFIGURED: |
| 953 | usbtty_configured_flag = 1; |
| 954 | break; |
| 955 | |
| 956 | case DEVICE_ADDRESS_ASSIGNED: |
Vipin KUMAR | f9da0f8 | 2012-03-26 15:38:06 +0530 | [diff] [blame] | 957 | #if defined(CONFIG_USBD_HS) |
| 958 | /* |
| 959 | * is_usbd_high_speed routine needs to be defined by |
| 960 | * specific gadget driver |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 961 | * It returns true if device enumerates at High speed |
| 962 | * Retuns false otherwise |
Vipin KUMAR | f9da0f8 | 2012-03-26 15:38:06 +0530 | [diff] [blame] | 963 | */ |
| 964 | for (i = 0; i < NUM_ENDPOINTS; i++) { |
| 965 | if (((ep_descriptor_ptrs[i]->bmAttributes & |
| 966 | USB_ENDPOINT_XFERTYPE_MASK) == |
| 967 | USB_ENDPOINT_XFER_BULK) |
| 968 | && is_usbd_high_speed()) { |
| 969 | |
| 970 | ep_descriptor_ptrs[i]->wMaxPacketSize = |
| 971 | CONFIG_USBD_SERIAL_BULK_HS_PKTSIZE; |
| 972 | } |
| 973 | |
| 974 | endpoint_instance[i + 1].tx_packetSize = |
| 975 | ep_descriptor_ptrs[i]->wMaxPacketSize; |
| 976 | endpoint_instance[i + 1].rcv_packetSize = |
| 977 | ep_descriptor_ptrs[i]->wMaxPacketSize; |
| 978 | } |
| 979 | #endif |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 980 | usbtty_init_endpoints (); |
| 981 | |
| 982 | default: |
| 983 | break; |
| 984 | } |
| 985 | } |
| 986 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 987 | /******************************************************************************/ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 988 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 989 | int usbtty_cdc_setup(struct usb_device_request *request, struct urb *urb) |
| 990 | { |
| 991 | switch (request->bRequest){ |
| 992 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 993 | case ACM_SET_CONTROL_LINE_STATE: /* Implies DTE ready */ |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 994 | break; |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 995 | case ACM_SEND_ENCAPSULATED_COMMAND : /* Required */ |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 996 | break; |
| 997 | case ACM_SET_LINE_ENCODING : /* DTE stop/parity bits |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 998 | * per character */ |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 999 | break; |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 1000 | case ACM_GET_ENCAPSULATED_RESPONSE : /* request response */ |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 1001 | break; |
| 1002 | case ACM_GET_LINE_ENCODING : /* request DTE rate, |
| 1003 | * stop/parity bits */ |
| 1004 | memcpy (urb->buffer , &rs232_desc, sizeof(rs232_desc)); |
| 1005 | urb->actual_length = sizeof(rs232_desc); |
| 1006 | |
| 1007 | break; |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 1008 | default: |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 1009 | return 1; |
| 1010 | } |
| 1011 | return 0; |
| 1012 | } |
| 1013 | |
| 1014 | /******************************************************************************/ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 1015 | |
| 1016 | /* |
| 1017 | * Since interrupt handling has not yet been implemented, we use this function |
| 1018 | * to handle polling. This is called by the tstc,getc,putc,puts routines to |
| 1019 | * update the USB state. |
| 1020 | */ |
| 1021 | void usbtty_poll (void) |
| 1022 | { |
| 1023 | /* New interrupts? */ |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 1024 | udc_irq(); |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 1025 | |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 1026 | /* Write any output data to host buffer |
| 1027 | * (do this before checking interrupts to avoid missing one) |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 1028 | */ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 1029 | if (usbtty_configured ()) { |
| 1030 | write_buffer (&usbtty_output); |
| 1031 | } |
| 1032 | |
| 1033 | /* New interrupts? */ |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 1034 | udc_irq(); |
Wolfgang Denk | 386eda0 | 2006-06-14 18:14:56 +0200 | [diff] [blame] | 1035 | |
| 1036 | /* Check for new data from host.. |
| 1037 | * (do this after checking interrupts to get latest data) |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 1038 | */ |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 1039 | if (usbtty_configured ()) { |
| 1040 | fill_buffer (&usbtty_input); |
| 1041 | } |
| 1042 | |
| 1043 | /* New interrupts? */ |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 1044 | udc_irq(); |
| 1045 | |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 1046 | } |