1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509
|
/*
* $Id: usb2serial.c,v 1.24 2009-08-28 11:55:31 sand Exp $
*
* Copyright (C) 2007-2009 FAUmachine Team <info@faumachine.org>.
* This program is free software. You can redistribute it and/or modify it
* under the terms of the GNU General Public License, either version 2 of
* the License, or (at your option) any later version. See COPYING.
*/
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "lib_usb.h"
#include "glue-log.h"
#include "glue-main.h"
#include "usb2serial.h"
#include "usb_device_descriptor.h"
/* ********************* DEFINITIONS ************************** */
#define SENDBUFFER_SIZE 1024
#define RINGBUFFER_SIZE 1024
#define DEBUG 0
/*----------------------------DEBUG-------------------------------------------*/
/* binary OR these in U2S_DEBUGMASK */
#define U2S_DEBUG_WARNINGS (1 << 0)
#define U2S_DEBUG_CIM (1 << 1)
#define U2S_DEBUG_DUMP_PACKETS (1 << 2)
#define U2S_DEBUG_STATE_TRANSITIONS (1 << 3)
#define U2S_DEBUG_WELCOME_MESSAGES (1 << 4)
#define U2S_DEBUG_DUMP_SERIAL_DATA (1 << 5)
#define U2S_DEBUG_STATISTICS (1 << 6)
#if DEBUG
#define U2S_DEBUGMASK (U2S_DEBUG_WARNINGS | U2S_DEBUG_STATE_TRANSITIONS | U2S_DEBUG_DUMP_SERIAL_DATA)
#else /* DEBUG */
#define U2S_DEBUGMASK 0x0000
#endif /* DEBUG */
#define U2S_LOG_TYPE "usb_to_serial"
#define U2S_LOG_NAME ""
/* endpoint numbers for PL2303 */
/* encoding like used in device requests (with bit 7 for in/out) */
#define USB_ENDPT_INTERRUPT_IN 0x81
#define USB_ENDPT_BULK_OUT 0x02
#define USB_ENDPT_BULK_IN 0x83
/* encoding like used in token packets */
#define USB_ENDPT_NR_INTERRUPT_IN (USB_ENDPT_INTERRUPT_IN & 0x0F)
#define USB_ENDPT_NR_BULK_OUT (USB_ENDPT_BULK_OUT & 0x0F)
#define USB_ENDPT_NR_BULK_IN (USB_ENDPT_BULK_IN & 0x0F)
/* endpoint FIFO sizes */
#define USB_PACKETSIZE_CONTROL0 8
#define USB_PACKETSIZE_INTERRUPT_IN 10
#define USB_PACKETSIZE_BULK_OUT 64
#define USB_PACKETSIZE_BULK_IN 64
#if U2S_DEBUGMASK & U2S_DEBUG_STATE_TRANSITIONS
static unsigned char state_names[][20] = {
"invalid",
"OFF",
"ATTACHED",
"POWERED",
"DEFAULT",
"ADDRESS",
"CONFIGURED" };
#endif
/* *********************** MACROS ***************************** */
#if U2S_DEBUGMASK & U2S_DEBUG_STATE_TRANSITIONS
#define SET_USB_DEVSTATE(cpssp,newstate) \
if (cpssp->state != (newstate)) { \
int oldstate = cpssp->state; \
cpssp->state = (newstate); \
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME, \
"state transition: %s => %s\n", \
state_names[oldstate], \
state_names[(newstate)]); \
}
#else
#define SET_USB_DEVSTATE(cpssp,newstate) (cpssp->state = (newstate))
#endif
#define MIN(a,b) ((a) < (b) ? (a) : (b))
/* ****************** GLOBAL VARIABLES ************************ */
struct ringbuffer {
unsigned long buffer_size;
unsigned char *buffer;
unsigned long head, tail;
unsigned char full;
int overwrite;
};
static const struct usb_device_descriptor device_descriptor_pl2303 = {
.bLength = 18,
.bDescriptorType = USB_DESCRIPTOR_TYPE_DEVICE,
.bcdUSB = 0x0110,
.bDeviceClass = 0,
.bDeviceSubClass = 0,
.bDeviceProtocol = 0,
.bMaxPacketSize0 = 8,
.idVendor = 0x067b,
.idProduct = 0x2303,
.bcdDevice = 0x0202,
.iManufacturer = 0,
.iProduct = 0,
.iSerialNumber = 0,
.bNumConfigurations = 1
};
static const struct __attribute__ ((__packed__)) usb_combined_descriptor {
struct usb_configuration_descriptor conf0;
struct usb_interface_descriptor if0;
struct usb_endpoint_descriptor ep1;
struct usb_endpoint_descriptor ep2;
struct usb_endpoint_descriptor ep3;
} combined_descriptor_pl2303 = {
.conf0 = {
.bLength = 9,
.bDescriptorType = USB_DESCRIPTOR_TYPE_CONFIGURATION,
.wTotalLength = 39,
.bNumInterfaces = 1,
.bConfigurationValue = 1,
.iConfiguration = 0,
.bmAttributes = 0xa0, /* remote wakeup */
.MaxPower = 50 /* 100mA */
},
.if0 = {
.bLength = 9,
.bDescriptorType = USB_DESCRIPTOR_TYPE_INTERFACE,
.bInterfaceNumber = 0,
.bAlternateSetting = 0,
.bNumEndpoints = 3,
.bInterfaceClass = 255,
.bInterfaceSubClass = 0,
.bInterfaceProtocol = 0,
.iInterface = 0
},
.ep1 = {
.bLength = 7,
.bDescriptorType = USB_DESCRIPTOR_TYPE_ENDPOINT,
.bEndpointAddress = 0x81,
.bmAttributes = 3,
.wMaxPacketSize = 10,
.bInterval = 1,
},
.ep2 = {
.bLength = 7,
.bDescriptorType = USB_DESCRIPTOR_TYPE_ENDPOINT,
.bEndpointAddress = 0x02,
.bmAttributes = 2,
.wMaxPacketSize = 64,
.bInterval = 0,
},
.ep3 = {
.bLength = 7,
.bDescriptorType = USB_DESCRIPTOR_TYPE_ENDPOINT,
.bEndpointAddress = 0x83,
.bmAttributes = 2,
.wMaxPacketSize = 64,
.bInterval = 0,
}
};
struct cpssp {
struct sig_serial *port_serial;
struct sig_boolean *port_usb_power;
struct sig_usb_bus_main *port_usb_main;
/* cf. USB Spec. 1.1, chapter 9.1 */
enum {
STATE_OFF = 1,
STATE_ATTACHED,
STATE_POWERED,
STATE_DEFAULT,
STATE_ADDRESS,
STATE_CONFIGURED
} state;
/* device address */
unsigned char addr;
/* stage of current control transfer */
struct {
enum {
STAGE_NONE,
STAGE_SETUP,
STAGE_DATA,
STAGE_STATUS
} stage;
struct {
unsigned char bmRequestType;
unsigned char bRequest;
unsigned short wValue;
unsigned short wIndex;
unsigned short wLength;
} request;
unsigned char data[SENDBUFFER_SIZE];
unsigned long data_length;
unsigned long data_sent;
} control_information;
/* pipe state */
struct {
/* DATA0/DATA1 protocol toggle */
unsigned char data_toggle;
unsigned char stalled;
unsigned char last_data_acked;
unsigned char fifo[USB_PACKETSIZE_BULK_IN];
unsigned int fifo_datalen;
} control, interrupt_in, bulk_in, bulk_out;
/* information about last received token */
struct last_token {
unsigned char pid;
unsigned char addr, endp;
} last_token;
struct ringbuffer serial_buffer;
#if U2S_DEBUGMASK & U2S_DEBUG_STATISTICS
struct statistics {
unsigned long token_count_total,
token_count,
token_count_ctrl,
token_count_int_in,
token_count_bulk_in,
token_count_bulk_out;
} statistics;
#endif
};
/* ******************** IMPLEMENTATION ************************* */
static void
ringbuffer_create(struct ringbuffer *rb, unsigned long size, int overwrite)
{
assert(rb);
rb->buffer = malloc(size);
if (! rb->buffer) {
fprintf(stderr, "failed to malloc() %lu bytes\n", size);
exit(1);
}
rb->buffer_size = size;
rb->head = rb->tail = 0;
rb->full = 0;
rb->overwrite = overwrite;
}
static void
ringbuffer_destroy(struct ringbuffer *rb)
{
assert(rb);
/* also works if buffer is NULL */
free(rb->buffer);
}
static int
ringbuffer_put_byte(struct ringbuffer *rb, unsigned char c)
{
if (rb->full) {
if (!rb->overwrite) {
return -1;
} else {
rb->head++;
}
}
rb->buffer[rb->tail++] = c;
rb->tail %= rb->buffer_size;
if (rb->tail == rb->head) {
rb->full = 1;
}
return 0;
}
/*
* returns the number of bytes stored, which is between 0 and size
*/
static unsigned long
ringbuffer_put(
struct ringbuffer *rb,
const unsigned char *data,
unsigned long size
)
{
unsigned long i;
assert(rb);
assert(rb->buffer);
assert(data);
for (i = 0; i < size; i++) {
if (ringbuffer_put_byte(rb, data[i])) {
break;
}
}
return i;
}
static int
ringbuffer_get_byte(struct ringbuffer *rb, unsigned char *c)
{
if (!rb->full && rb->head == rb->tail) {
return -1;
}
*c = rb->buffer[rb->head++];
rb->head %= rb->buffer_size;
rb->full = 0;
return 0;
}
/*
* returns the number of bytes retrieved, which is between 0 and size
*/
static unsigned long
ringbuffer_get(
struct ringbuffer *rb,
unsigned char *data,
unsigned long size
)
{
unsigned long i;
assert(rb);
assert(rb->buffer);
assert(data);
for (i = 0; i < size; i++) {
if (ringbuffer_get_byte(rb, &data[i])) {
break;
}
}
return i;
}
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
static void
usb_debug_data(unsigned char *data, unsigned int length)
{
int i;
if (0 < length) {
faum_cont(FAUM_LOG_DEBUG, " ( ");
for (i = 0; i < length && i < 8; i++) {
faum_cont(FAUM_LOG_DEBUG, "%02X ", data[i]);
}
if (i != length) {
faum_cont(FAUM_LOG_DEBUG, "... ");
}
faum_cont(FAUM_LOG_DEBUG, ")");
}
faum_cont(FAUM_LOG_DEBUG, "\n");
}
#endif
/* USB signaling wrappers for debugging purposes */
static void
usb_send_handshake(struct cpssp * cpssp, unsigned char pid)
{
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"sending %s handshake\n",
cim_usb_debug_pid2str(pid));
#endif
sig_usb_bus_send_handshake(cpssp->port_usb_main, cpssp, pid);
}
static void
usb_send_data(
struct cpssp * cpssp,
unsigned char pid,
unsigned char *data,
unsigned int length
)
{
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"sending %s with %d bytes",
cim_usb_debug_pid2str(pid), length);
usb_debug_data(data, length);
#endif
sig_usb_bus_send_data(cpssp->port_usb_main, cpssp,
pid, length, data, 0);
}
static void
usb_reset_set(void *_cpssp, int val)
{
struct cpssp * cpssp = (struct cpssp *) _cpssp;
/* RESET */
cpssp->addr = 0;
SET_USB_DEVSTATE(cpssp, STATE_DEFAULT);
}
/* handle IN token on control endpoint (0) */
static void
usb_handle_packet_usb_token_in_control(struct cpssp * cpssp)
{
if (cpssp->control_information.stage == STAGE_DATA
&& (cpssp->control_information.request.bmRequestType
& USB_DEV_REQ_DEVICE_TO_HOST)) {
/* data stage of a device-to-host transfer */
usb_send_data(cpssp,
cpssp->control.data_toggle,
cpssp->control_information.data
+ cpssp->control_information.data_sent,
MIN(USB_PACKETSIZE_CONTROL0,
cpssp->control_information.data_length
- cpssp->control_information.data_sent));
} else if (cpssp->control_information.stage == STAGE_STATUS
|| (cpssp->control_information.stage == STAGE_DATA
&& !(cpssp->control_information.request.bmRequestType
& USB_DEV_REQ_DEVICE_TO_HOST))) {
/* status stage or end of data stage of host-to-device transfer */
/* send zero byte status stage packet */
cpssp->control_information.stage = STAGE_STATUS;
usb_send_data(cpssp, USB_PID_DATA1, NULL, 0);
}
}
/* handle IN token on interrupt in endpoint */
static void
usb_handle_packet_usb_token_in_interrupt_in(struct cpssp * cpssp)
{
/* TODO: ? */
/* usb_send_handshake(cpssp, USB_PID_NAK); */
static char data[10] = {
'\xa1',
'\x20',
'\x00',
'\x00',
'\x00',
'\x00',
'\x02',
'\x00',
'\x82',
'\x00'
};
usb_send_data(cpssp,
cpssp->interrupt_in.data_toggle,
data,
10);
}
/* handle IN token on bulk in endpoint */
static void
usb_handle_packet_usb_token_in_bulk_in(struct cpssp * cpssp)
{
/* answer with bytes from serial buffer */
/* only fetch new data if previous packet was ACKed! */
if (cpssp->bulk_in.last_data_acked) {
cpssp->bulk_in.fifo_datalen =
ringbuffer_get(&cpssp->serial_buffer,
cpssp->bulk_in.fifo,
USB_PACKETSIZE_BULK_IN);
} else {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"last data packet not acked, sending same data again!\n");
#endif
}
if (cpssp->bulk_in.fifo_datalen == 0) {
cpssp->bulk_in.last_data_acked = 1;
usb_send_handshake(cpssp, USB_PID_NAK);
} else {
cpssp->bulk_in.last_data_acked = 0;
usb_send_data(cpssp,
cpssp->bulk_in.data_toggle,
cpssp->bulk_in.fifo,
cpssp->bulk_in.fifo_datalen);
}
}
static void
usb_handle_packet_usb_token(
void *_cpssp,
int pid,
int addr,
int endp
)
{
struct cpssp * cpssp = (struct cpssp *) _cpssp;
if (cpssp->state < STATE_DEFAULT) {
/* unable to handle USB packets in these states */
return;
}
/* unknown PID? */
if (pid != USB_PID_SETUP
&& pid != USB_PID_IN
&& pid != USB_PID_OUT) {
faum_log(FAUM_LOG_ERROR, U2S_LOG_TYPE, U2S_LOG_NAME,
"unknown PID %02X\n", pid);
return;
}
/* save for later use */
cpssp->last_token.pid = pid;
cpssp->last_token.addr = addr;
cpssp->last_token.endp = endp;
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"received %s token to %02d:%02d%s\n",
cim_usb_debug_pid2str(pid), addr, endp,
cpssp->addr == addr ? " (this is me!)" : "");
#endif
#if U2S_DEBUGMASK & U2S_DEBUG_STATISTICS
cpssp->statistics.token_count_total++;
#endif
/* ignore tokens to other addresses */
if (cpssp->addr != addr) {
return;
}
#if U2S_DEBUGMASK & U2S_DEBUG_STATISTICS
cpssp->statistics.token_count++;
switch (endp) {
case 0: cpssp->statistics.token_count_ctrl++; break;
case USB_ENDPT_NR_INTERRUPT_IN: cpssp->statistics.token_count_int_in++; break;
case USB_ENDPT_NR_BULK_OUT: cpssp->statistics.token_count_bulk_out++; break;
case USB_ENDPT_NR_BULK_IN: cpssp->statistics.token_count_bulk_in++; break;
}
#endif
if (pid == USB_PID_IN) {
if (endp == 0) {
usb_handle_packet_usb_token_in_control(cpssp);
return;
}
if (cpssp->state != STATE_CONFIGURED) {
/* we must not accept packets to other endpoints
* but 0 if not in CONFIGURED state */
return;
}
switch (endp) {
case USB_ENDPT_NR_INTERRUPT_IN:
usb_handle_packet_usb_token_in_interrupt_in(cpssp);
break;
case USB_ENDPT_NR_BULK_IN:
usb_handle_packet_usb_token_in_bulk_in(cpssp);
break;
case USB_ENDPT_NR_BULK_OUT:
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"IN token cannot go into an OUT endpoint\n");
#endif
/* FIXME: stall bulk out pipe instead? */
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
break;
default:
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"IN token for unknown endpoint\n");
#endif
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
}
} else if (pid == USB_PID_SETUP
&& endp == 0) {
/* initialize stage information */
cpssp->control_information.stage = STAGE_SETUP;
cpssp->control.data_toggle = USB_PID_DATA0;
} else if (pid == USB_PID_OUT
&& endp == 0
&& cpssp->control_information.stage == STAGE_DATA
&& (cpssp->control_information.request.bmRequestType
& USB_DEV_REQ_DEVICE_TO_HOST)) {
/* advance stage */
cpssp->control_information.stage = STAGE_STATUS;
cpssp->control.data_toggle = USB_PID_DATA1;
}
}
/* invert DATA0 <-> DATA1 */
static unsigned char
usb_toggle_data(unsigned char toggle)
{
if (toggle == USB_PID_DATA0) {
return USB_PID_DATA1;
} else if (toggle == USB_PID_DATA1) {
return USB_PID_DATA0;
} else {
faum_log(FAUM_LOG_ERROR, U2S_LOG_TYPE, U2S_LOG_NAME,
"%s: invalid data toggle %X\n",
__FUNCTION__, toggle);
return USB_PID_DATA0;
}
}
/* handle DATA0/DATA1 packet for control endpoint (0) */
static void
usb_handle_packet_usb_data_control(
struct cpssp * cpssp,
int pid,
unsigned int length,
uint8_t *data
)
{
if (pid != cpssp->control.data_toggle) {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"data packet with wrong data toggle (%s; expected %s)\n",
cim_usb_debug_pid2str(pid),
cim_usb_debug_pid2str(cpssp->control.data_toggle));
#endif
usb_send_handshake(cpssp, USB_PID_ACK);
return;
}
if (cpssp->control_information.stage == STAGE_NONE) {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"not in any control transfer stage, ignoring data packet\n");
#endif
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
return;
}
if (cpssp->control_information.stage == STAGE_SETUP) {
if (length != 8) {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"ignoring device request with %d != 8 bytes length\n",
length);
#endif
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
return;
}
cpssp->control_information.request.bmRequestType =
data[0];
cpssp->control_information.request.bRequest =
data[1];
cpssp->control_information.request.wValue =
data[2] + (data[3] << 8);
cpssp->control_information.request.wIndex =
data[4] + (data[5] << 8);
cpssp->control_information.request.wLength =
data[6] + (data[7] << 8);
if ((cpssp->control_information.request.bmRequestType
& USB_DEV_REQ_TYPE) != USB_DEV_REQ_TYPE_STANDARD) {
/* we have a problem now: undocumented vendor specific request type */
if (cpssp->control_information.request.bmRequestType
& USB_DEV_REQ_DEVICE_TO_HOST) {
unsigned short _length =
cpssp->control_information.request.wLength;
int i;
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_WARNING, U2S_LOG_TYPE, U2S_LOG_NAME,
"answering non-standard device request with zero-filled packet\n");
#endif
for (i = 0; i < _length; i++) {
cpssp->control_information.data[i] = 0;
}
cpssp->control_information.data_length = _length;
cpssp->control_information.data_sent = 0;
} else {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_WARNING, U2S_LOG_TYPE, U2S_LOG_NAME,
"acknowledging non-standard device request\n");
#endif
}
/* FIXME: ugly coding style! */
goto advance_stage;
}
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"%s default request received\n",
cim_usb_debug_defaultrequest2str(
cpssp->control_information.request.bRequest));
#endif
/* is this standard request implemented? */
switch (cpssp->control_information.request.bRequest) {
/* GET_STATUS not implemented */
case USB_DEV_REQ_SET_FEATURE:
case USB_DEV_REQ_CLEAR_FEATURE:
/* check sanity */
if ((cpssp->control_information.request.bmRequestType != 0
&& cpssp->control_information.request.bmRequestType != 2)
|| (cpssp->control_information.request.bmRequestType == 0
&& (cpssp->control_information.request.wValue != USB_FEATURE_DEVICE_REMOTE_WAKEUP
|| cpssp->control_information.request.wIndex != 0))
|| (cpssp->control_information.request.bmRequestType == 2
&& (cpssp->control_information.request.wValue != USB_FEATURE_ENDPOINT_STALL
|| (cpssp->control_information.request.wIndex != 0
&& cpssp->control_information.request.wIndex != USB_ENDPT_INTERRUPT_IN
&& cpssp->control_information.request.wIndex != USB_ENDPT_BULK_OUT
&& cpssp->control_information.request.wIndex != USB_ENDPT_BULK_IN)))
|| cpssp->control_information.request.wLength != 0) {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"ignoring invalid %s request\n",
cim_usb_debug_defaultrequest2str(
cpssp->control_information.request.bRequest));
#endif
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
return;
}
if (cpssp->control_information.request.bmRequestType == 0) {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"DEVICE_REMOTE_WAKEUP");
#endif
} else {
int value;
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"ENDPOINT_STALL on EP %02X",
cpssp->control_information.request.wIndex);
#endif
value = cpssp->control_information.request.bRequest
== USB_DEV_REQ_SET_FEATURE ? 1 : 0;
switch (cpssp->control_information.request.wIndex) {
case 0:
cpssp->control.stalled = value;
cpssp->control.data_toggle = USB_PID_DATA0;
cpssp->control.last_data_acked = 1;
break;
case USB_ENDPT_INTERRUPT_IN:
cpssp->interrupt_in.stalled = value;
cpssp->interrupt_in.data_toggle = USB_PID_DATA0;
cpssp->interrupt_in.last_data_acked = 1;
break;
case USB_ENDPT_BULK_OUT:
cpssp->bulk_out.stalled = value;
cpssp->bulk_out.data_toggle = USB_PID_DATA0;
cpssp->bulk_out.last_data_acked = 1;
break;
case USB_ENDPT_BULK_IN:
cpssp->bulk_in.stalled = value;
cpssp->bulk_in.data_toggle = USB_PID_DATA0;
cpssp->bulk_in.last_data_acked = 1;
break;
}
}
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
if (cpssp->control_information.request.bRequest
== USB_DEV_REQ_SET_FEATURE) {
faum_cont(FAUM_LOG_DEBUG, " SET\n");
} else {
faum_cont(FAUM_LOG_DEBUG, " CLEARED\n");
}
#endif
break;
case USB_DEV_REQ_SET_ADDRESS:
/* check sanity */
if (cpssp->control_information.request.bmRequestType != 0
|| cpssp->control_information.request.wIndex != 0
|| cpssp->control_information.request.wLength != 0) {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"ignoring invalid %s request\n",
cim_usb_debug_defaultrequest2str(
cpssp->control_information.request.bRequest));
#endif
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
return;
}
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"(new device address %02d, not valid until status stage completes)\n",
cpssp->control_information.request.wValue & 0x00FF);
#endif
/* address gets valid after status stage, not right now! */
break;
case USB_DEV_REQ_GET_DESCRIPTOR:
{
unsigned char descriptor_type =
cpssp->control_information.request.wValue >> 8;
unsigned char descriptor_index =
cpssp->control_information.request.wValue & 0x00FF;
/* check sanity */
if (cpssp->control_information.request.bmRequestType != 0x80
|| (descriptor_type != USB_DESCRIPTOR_TYPE_DEVICE
&& descriptor_type != USB_DESCRIPTOR_TYPE_CONFIGURATION
&& descriptor_type != USB_DESCRIPTOR_TYPE_STRING)) {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"ignoring invalid %s request\n",
cim_usb_debug_defaultrequest2str(
cpssp->control_information.request.bRequest));
#endif
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
return;
}
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"requested descriptor is %s (index %d, langid %d) with %d bytes length\n",
cim_usb_debug_descriptortype2str(descriptor_type),
descriptor_index,
cpssp->control_information.request.wIndex,
cpssp->control_information.request.wLength);
#endif
if (descriptor_type == USB_DESCRIPTOR_TYPE_DEVICE
&& descriptor_index == 0) {
memcpy(cpssp->control_information.data,
&device_descriptor_pl2303,
sizeof(device_descriptor_pl2303));
cpssp->control_information.data_length =
MIN(sizeof(device_descriptor_pl2303),
cpssp->control_information.request.wLength);
cpssp->control_information.data_sent = 0;
} else if (descriptor_type == USB_DESCRIPTOR_TYPE_CONFIGURATION
&& descriptor_index == 0) {
memcpy(cpssp->control_information.data,
&combined_descriptor_pl2303,
sizeof(combined_descriptor_pl2303));
cpssp->control_information.data_length =
MIN(sizeof(combined_descriptor_pl2303),
cpssp->control_information.request.wLength);
cpssp->control_information.data_sent = 0;
} else {
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
return;
}
}
break;
/* SET_DESCRIPTOR not implemented (optional) */
case USB_DEV_REQ_GET_CONFIGURATION:
{
unsigned char configuration;
/* check sanity */
if (cpssp->control_information.request.bmRequestType != 0x80
|| cpssp->control_information.request.wIndex != 0
|| cpssp->control_information.request.wLength != 1) {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"ignoring invalid %s request\n",
cim_usb_debug_defaultrequest2str(
cpssp->control_information.request.bRequest));
#endif
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
return;
}
/* this is easy, we only have one configuration */
configuration =
cpssp->state == STATE_CONFIGURED ? 1 : 0;
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"telling we have configuration %d\n",
configuration);
#endif
/* send one byte answer */
cpssp->control_information.data[0] = configuration;
cpssp->control_information.data_length = 1;
cpssp->control_information.data_sent = 0;
break;
}
case USB_DEV_REQ_SET_CONFIGURATION:
{
unsigned char configuration;
/* check sanity */
if (cpssp->control_information.request.bmRequestType != 0
|| cpssp->control_information.request.wIndex != 0
|| cpssp->control_information.request.wLength != 0) {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"ignoring invalid %s request\n",
cim_usb_debug_defaultrequest2str(
cpssp->control_information.request.bRequest));
#endif
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
return;
}
configuration =
cpssp->control_information.request.wValue & 0x00FF;
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"setting configuration %d\n", configuration);
#endif
/* FIXME: maybe we may only transit to CONFIGURED state
* after status stage, but I don't care at the moment
*/
if (cpssp->state == STATE_ADDRESS
&& configuration == 1) {
/* configured */
SET_USB_DEVSTATE(cpssp, STATE_CONFIGURED);
/* reset endpoint state */
cpssp->control.data_toggle = USB_PID_DATA0;
cpssp->control.last_data_acked = 1;
cpssp->interrupt_in.data_toggle = USB_PID_DATA0;
cpssp->interrupt_in.last_data_acked = 1;
cpssp->bulk_out.data_toggle = USB_PID_DATA0;
cpssp->bulk_out.last_data_acked = 1;
cpssp->bulk_in.data_toggle = USB_PID_DATA0;
cpssp->bulk_in.last_data_acked = 1;
} else if (cpssp->state == STATE_CONFIGURED
&& configuration == 0) {
/* deconfigured */
SET_USB_DEVSTATE(cpssp, STATE_ADDRESS);
} else {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"cannot move to CONFIGURED state, not yet in ADDRESS state\n");
#endif
}
break;
}
case USB_DEV_REQ_GET_INTERFACE:
/* check sanity */
if (cpssp->control_information.request.bmRequestType != 0x81
|| cpssp->control_information.request.wValue != 0
|| cpssp->control_information.request.wLength != 1) {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"ignoring invalid %s request\n",
cim_usb_debug_defaultrequest2str(
cpssp->control_information.request.bRequest));
#endif
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
return;
}
/* this is easy, we only have one alternate setting for
* the one interface */
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"interface %d, telling we have AlternateSetting %d\n",
cpssp->control_information.request.wIndex & 0x00FF,
0);
#endif
/* send one byte answer */
cpssp->control_information.data[0] = 0;
cpssp->control_information.data_length = 1;
cpssp->control_information.data_sent = 0;
break;
case USB_DEV_REQ_SET_INTERFACE:
{
unsigned char alternate_setting;
/* check sanity */
if (cpssp->control_information.request.bmRequestType != 0x01
|| cpssp->control_information.request.wLength != 0) {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"ignoring invalid %s request\n",
cim_usb_debug_defaultrequest2str(
cpssp->control_information.request.bRequest));
#endif
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
return;
}
alternate_setting =
cpssp->control_information.request.wValue & 0x00FF;
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"interface %d, setting AlternateSetting %d\n",
cpssp->control_information.request.wIndex,
alternate_setting);
#endif
/* reset endpoint state */
cpssp->control.data_toggle = USB_PID_DATA0;
cpssp->control.last_data_acked = 1;
cpssp->bulk_out.data_toggle = USB_PID_DATA0;
cpssp->bulk_out.last_data_acked = 1;
cpssp->bulk_in.data_toggle = USB_PID_DATA0;
cpssp->bulk_in.last_data_acked = 1;
break;
}
/* SYNCH_FRAME not implemented (optional) */
default:
faum_log(FAUM_LOG_WARNING, U2S_LOG_TYPE, U2S_LOG_NAME,
"ignoring standard device request %X\n",
cpssp->control_information.request.bRequest);
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
return;
}
advance_stage:
/* advance stage */
/* length == 0 indicates there is no data stage (USB spec., 9.3.5) */
if (cpssp->control_information.request.wLength == 0)
cpssp->control_information.stage = STAGE_STATUS;
else {
cpssp->control_information.stage = STAGE_DATA;
}
} else if (cpssp->control_information.stage == STAGE_DATA) {
/* only vendor-specific host-to-device requests -- just ACK */
} else if (cpssp->control_information.stage == STAGE_STATUS) {
if (cpssp->control_information.request.bmRequestType
& USB_DEV_REQ_DEVICE_TO_HOST) {
/* this should be the zero byte status stage packet */
if (length != 0) {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"ignoring status stage data packet with %d > 0 bytes length\n",
length);
#endif
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
return;
}
cpssp->control_information.stage = STAGE_NONE;
} else {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"ignoring status stage data packet in host-to-device request\n");
#endif
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
return;
}
}
cpssp->control.data_toggle =
usb_toggle_data(cpssp->control.data_toggle);
usb_send_handshake(cpssp, USB_PID_ACK);
}
/* handle DATA0/DATA1 packet for bulk out endpoint */
static void
usb_handle_packet_usb_data_bulk_out(
struct cpssp * cpssp,
int pid,
unsigned int length,
uint8_t *data
)
{
/* TODO: does the real PL2303 behave like this? */
/* check data toggle */
if (pid != cpssp->bulk_out.data_toggle) {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"data packet with wrong data toggle (%s; expected %s)\n",
cim_usb_debug_pid2str(pid),
cim_usb_debug_pid2str(cpssp->bulk_out.data_toggle));
#endif
usb_send_handshake(cpssp, USB_PID_ACK);
return;
}
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"pushing %d bytes of data to serial interface\n",
length);
#endif
while (0 < length) {
sig_serial_send(cpssp->port_serial, cpssp, *data++);
length--;
}
cpssp->bulk_out.data_toggle =
usb_toggle_data(cpssp->bulk_out.data_toggle);
usb_send_handshake(cpssp, USB_PID_ACK);
}
/* handle DATA0/DATA1 packet */
static void
usb_handle_packet_usb_data(
void *_cpssp,
int pid,
unsigned int length,
uint8_t *data,
uint16_t crc16
)
{
struct cpssp * cpssp = (struct cpssp *) _cpssp;
if (cpssp->state < STATE_DEFAULT) {
/* unable to handle USB packets in these states */
return;
}
if (cpssp->addr != cpssp->last_token.addr) {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"data packet not meant for me\n");
#endif
return;
}
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"%s packet received with %d bytes",
cim_usb_debug_pid2str(pid), length);
usb_debug_data(data, length);
#endif
if (cpssp->last_token.endp == 0) {
usb_handle_packet_usb_data_control(cpssp, pid, length, data);
return;
}
if (cpssp->state != STATE_CONFIGURED) {
/* we must not accept packets to other endpoints
* but 0 if not in CONFIGURED state */
/* FIXME: stall target pipe instead? */
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
return;
}
switch (cpssp->last_token.endp) {
case USB_ENDPT_NR_INTERRUPT_IN:
case USB_ENDPT_NR_BULK_IN:
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"data packet cannot go into an IN endpoint\n");
#endif
/* FIXME: stall bulk in pipe instead? */
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
break;
case USB_ENDPT_NR_BULK_OUT:
usb_handle_packet_usb_data_bulk_out(cpssp, pid, length, data);
break;
default:
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"data packet for unknown endpoint\n");
#endif
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
}
}
/* handle handshake packet for control endpoint (0) */
static void
usb_handle_packet_usb_handshake_control(struct cpssp * cpssp, int pid)
{
if (cpssp->control_information.stage == STAGE_DATA
&& (cpssp->control_information.request.bmRequestType
& USB_DEV_REQ_DEVICE_TO_HOST)) {
/* data stage of a device-to-host transfer, data packet handshake */
if (pid == USB_PID_ACK) {
cpssp->control_information.data_sent +=
MIN(USB_PACKETSIZE_CONTROL0,
cpssp->control_information.data_length
- cpssp->control_information.data_sent);
cpssp->control.data_toggle =
usb_toggle_data(cpssp->control.data_toggle);
cpssp->control.last_data_acked = 1;
}
} else if (cpssp->control_information.stage == STAGE_STATUS
&& !(cpssp->control_information.request.bmRequestType
& USB_DEV_REQ_DEVICE_TO_HOST)) {
/* status stage of a host-to-device transfer, zero data packet handshake */
if (cpssp->control_information.request.bRequest
== USB_DEV_REQ_SET_ADDRESS) {
/* new address gets valid now */
cpssp->addr = cpssp->control_information.request.wValue & 0x0F;
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"new device address %02d is valid now\n",
cpssp->addr);
#endif
if (cpssp->addr == 0) {
SET_USB_DEVSTATE(cpssp, STATE_DEFAULT);
} else {
SET_USB_DEVSTATE(cpssp, STATE_ADDRESS);
}
}
cpssp->control_information.stage = STAGE_NONE;
cpssp->control.data_toggle = USB_PID_DATA0;
cpssp->control.last_data_acked = 1;
}
/* TODO: lots more to do here! */
}
/* handle handshake packet for interrupt in endpoint */
static void
usb_handle_packet_usb_handshake_interrupt_in(struct cpssp * cpssp, int pid)
{
if (pid == USB_PID_ACK) {
cpssp->interrupt_in.data_toggle =
usb_toggle_data(cpssp->interrupt_in.data_toggle);
cpssp->interrupt_in.last_data_acked = 1;
}
}
/* handle handshake packet for bulk in endpoint */
static void
usb_handle_packet_usb_handshake_bulk_in(struct cpssp * cpssp, int pid)
{
if (pid == USB_PID_ACK) {
cpssp->bulk_in.data_toggle =
usb_toggle_data(cpssp->bulk_in.data_toggle);
cpssp->bulk_in.last_data_acked = 1;
}
}
/* handle handshake packet for bulk out endpoint */
static void
usb_handle_packet_usb_handshake_bulk_out(struct cpssp * cpssp, int pid)
{
if (pid == USB_PID_ACK) {
cpssp->bulk_out.data_toggle =
usb_toggle_data(cpssp->bulk_out.data_toggle);
cpssp->bulk_out.last_data_acked = 1;
}
}
/* handle handshake packet */
static void
usb_handle_packet_usb_handshake(void *_cpssp, int pid)
{
struct cpssp * cpssp = (struct cpssp *) _cpssp;
if (cpssp->state < STATE_DEFAULT) {
/* unable to handle USB packets in these states */
return;
}
if (cpssp->addr != cpssp->last_token.addr) {
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"handshake packet not meant for me\n");
#endif
return;
}
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"%s packet received\n",
cim_usb_debug_pid2str(pid));
#endif
if (cpssp->last_token.endp == 0) {
usb_handle_packet_usb_handshake_control(cpssp, pid);
return;
}
if (cpssp->state != STATE_CONFIGURED) {
/* we must not accept packets to other endpoints
* but 0 if not in CONFIGURED state */
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
return;
}
switch (cpssp->last_token.endp) {
case USB_ENDPT_NR_INTERRUPT_IN:
usb_handle_packet_usb_handshake_interrupt_in(cpssp, pid);
break;
case USB_ENDPT_NR_BULK_IN:
usb_handle_packet_usb_handshake_bulk_in(cpssp, pid);
break;
case USB_ENDPT_NR_BULK_OUT:
usb_handle_packet_usb_handshake_bulk_out(cpssp, pid);
break;
default:
#if U2S_DEBUGMASK & U2S_DEBUG_DUMP_PACKETS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"data packet for unknown endpoint\n");
#endif
cpssp->control.stalled = 1;
usb_send_handshake(cpssp, USB_PID_STALL);
}
}
/* push serial data to USB */
void
usb_push_data(struct cpssp * cpssp, const char *data, unsigned int length)
{
ringbuffer_put(&cpssp->serial_buffer, data, length);
}
#if 0
/* reconfigure CIM */
void
usb_reconfig(void)
{
int new_peer_count;
#if U2S_DEBUGMASK & U2S_DEBUG_CIM
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"reconfiguring USB bridge\n");
#endif
cim_reconfig(dci);
new_peer_count = cim_get_peer_count(&config->bcc_usb);
if (new_peer_count > 0
&& (state.state == STATE_OFF
|| state.state == STATE_ATTACHED)) {
#if U2S_DEBUGMASK & U2S_DEBUG_CIM
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"telling USB we are bus powered and a fullspeed device\n");
#endif
SET_USB_DEVSTATE(STATE_ATTACHED);
cim_usb_send_linestate(dci,
USB_MSG_LINESTATE_TYPE_BUS_POWERED,
USB_SPEED_FULL, 0);
} else if (new_peer_count == 0
&& state.state != STATE_OFF) {
SET_USB_DEVSTATE(STATE_OFF);
#if U2S_DEBUGMASK & U2S_DEBUG_CIM
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"detached from USB bus\n");
#endif
}
}
#endif
/* reset USB state machine to defaults */
static void
usb_reset_state(struct cpssp * cpssp)
{
cpssp->addr = 0;
cpssp->control.data_toggle = USB_PID_DATA0;
cpssp->control.stalled = 0;
cpssp->control.last_data_acked = 1;
cpssp->last_token.pid = 0xFF;
cpssp->last_token.addr = 0xFF;
cpssp->last_token.endp = 0xFF;
SET_USB_DEVSTATE(cpssp, STATE_OFF);
}
static void
serial_recv(void *_cpssp, uint8_t byte)
{
struct cpssp * cpssp = (struct cpssp *) _cpssp;
usb_push_data(cpssp, &byte, sizeof(byte));
}
static void
usb_power_set(void *_cpssp, unsigned int val)
{
struct cpssp * cpssp = (struct cpssp *) _cpssp;
if (val) {
usb_reset_state(cpssp);
SET_USB_DEVSTATE(cpssp, STATE_POWERED);
#if U2S_DEBUGMASK & U2S_DEBUG_CIM
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"answering we are bus powered and a fullspeed device\n");
#endif
/*
* Low speed devices only support control and interrupt
* endpoints; we have bulk endpoints, therefore we
* _must_ be a fullspeed device.
*/
/* Send answer: we are bus powered now. */
sig_usb_bus_speed_set(cpssp->port_usb_main, cpssp,
USB_SPEED_FULL);
} else {
#if U2S_DEBUGMASK & U2S_DEBUG_CIM
if (cpssp->state != STATE_OFF
&& cpssp->state != STATE_ATTACHED) {
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"no power on USB anymore, powering down\n");
}
#endif
SET_USB_DEVSTATE(cpssp, STATE_ATTACHED);
}
}
void *
usb2serial_create(
const char *name,
struct sig_manage *port_manage,
struct sig_serial *port_serial,
struct sig_usb_bus *port_usb
)
{
static const struct sig_serial_funcs serial_funcs = {
.recv = serial_recv,
};
static const struct sig_boolean_funcs usb_power_funcs = {
.set = usb_power_set,
};
static const struct sig_usb_bus_main_funcs usb_main_funcs = {
.reset_set = usb_reset_set,
.speed_set = NULL,
.recv_token = usb_handle_packet_usb_token,
.recv_sof = NULL,
.recv_data = usb_handle_packet_usb_data,
.recv_handshake = usb_handle_packet_usb_handshake,
};
struct cpssp *cpssp;
cpssp = malloc(sizeof(*cpssp));
assert(cpssp);
memset(cpssp, 0, sizeof(*cpssp));
assert(sizeof(device_descriptor_pl2303) == 18);
assert(sizeof(combined_descriptor_pl2303) == 39);
ringbuffer_create(&cpssp->serial_buffer, RINGBUFFER_SIZE, 1);
cpssp->state = 0;
usb_reset_state(cpssp);
cpssp->port_serial = port_serial;
cpssp->port_usb_power = port_usb->power;
cpssp->port_usb_main = port_usb->bus;
/* Call */
sig_serial_connect(port_serial, cpssp, &serial_funcs);
sig_usb_bus_main_connect(port_usb->bus, cpssp, &usb_main_funcs);
/* Out */
/* In */
sig_boolean_connect_in(port_usb->power, cpssp, &usb_power_funcs);
return cpssp;
}
void
usb2serial_destroy(void *_cpssp)
{
struct cpssp *cpssp = _cpssp;
ringbuffer_destroy(&cpssp->serial_buffer);
#if U2S_DEBUGMASK & U2S_DEBUG_STATISTICS
faum_log(FAUM_LOG_DEBUG, U2S_LOG_TYPE, U2S_LOG_NAME,
"token count on USB = %lu\n"
"token count for me = %lu\n"
"token count CTL0 = %lu\n"
"token count INT_IN = %lu\n"
"token count BULK_IN = %lu\n"
"token count BULK_OUT = %lu\n",
cpssp->statistics.token_count_total,
cpssp->statistics.token_count,
cpssp->statistics.token_count_ctrl,
cpssp->statistics.token_count_int_in,
cpssp->statistics.token_count_bulk_in,
cpssp->statistics.token_count_bulk_out);
#endif
free(cpssp);
}
|