vusbh11ma.c
52.6 KB
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
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
/*HEADER******************************************************************
**************************************************************************
***
*** Copyright (c) 2001-2002 ARC International.
*** All rights reserved
***
*** This software embodies materials and concepts which are
*** confidential to ARC International and is made
*** available solely pursuant to the terms of a written license
*** agreement with ARC International
***
*** File: vusbh11.c
***
*** Comments:
*** This file contains the low-level Host API functions specific to the VUSB
*** chip.
***
**************************************************************************
*END*********************************************************************/
#ifdef __USB_OS_MQX__
#include "mqx.h"
#include "bsp.h"
#else
#include "types.h"
#include "vusb11.h"
#include "usb.h"
#include "hostapi.h"
#endif
#include "usbhprv.h"
#include "usbprv.h"
#ifndef __USB_OS_MQX__
extern volatile boolean IN_ISR;
#endif
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_hci_vusb11_send_data
* Returned Value : None
* Comments :
* Send the data
*END*-----------------------------------------------------------------*/
void _usb_hci_vusb11_send_data
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* The pipe descriptor to queue */
PIPE_DESCRIPTOR_STRUCT_PTR pipe_descr_ptr
)
{ /* Body */
_usb_host_queue_pkts(handle, pipe_descr_ptr);
} /* EndBody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_hci_vusb11_send_setup
* Returned Value : None
* Comments :
* Send Setup packet
*END*-----------------------------------------------------------------*/
void _usb_hci_vusb11_send_setup
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* The pipe descriptor to queue */
PIPE_DESCRIPTOR_STRUCT_PTR pipe_descr_ptr
)
{ /* Body */
_usb_host_queue_pkts(handle, pipe_descr_ptr);
} /* EndBody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_hci_vusb11_recv_data
* Returned Value : None
* Comments :
* Receive data
*END*-----------------------------------------------------------------*/
void _usb_hci_vusb11_recv_data
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* The pipe descriptor to queue */
PIPE_DESCRIPTOR_STRUCT_PTR pipe_descr_ptr
)
{ /* Body */
_usb_host_queue_pkts(handle, pipe_descr_ptr);
} /* EndBody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_hci_vusb11_cancel_transfer
* Returned Value : None
* Comments :
* Cancel a transfer
*END*-----------------------------------------------------------------*/
void _usb_hci_vusb11_cancel_transfer
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* The pipe descriptor to queue */
PIPE_DESCRIPTOR_STRUCT_PTR pipe_descr_ptr
)
{ /* Body */
/* Cancel the transaction at hardware level if required */
} /* EndBody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_set_bdt_page
* Returned Value : None
* Comments :
* Initialize the VUSB BDT Page register
*END*-----------------------------------------------------------------*/
void _usb_host_vusb11_set_bdt_page
(
/* [IN] the USB Host state structure */
_usb_host_handle handle
)
{ /* Body */
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
usb_host_ptr->DEV_PTR->BDTPAGE1 =
(((uint_32)usb_host_ptr->USB_BDT_PAGE) >> 8);
usb_host_ptr->DEV_PTR->BDTPAGE2 =
(((uint_32)usb_host_ptr->USB_BDT_PAGE) >> 16);
usb_host_ptr->DEV_PTR->BDTPAGE3 =
(((uint_32)usb_host_ptr->USB_BDT_PAGE) >> 24);
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_get_next_in_bdt
* Returned Value : Address of the next IN BDT to use
* Comments :
* Get the address of the next IN BDT
*END*-----------------------------------------------------------------*/
HOST_BDT_STRUCT_PTR _usb_host_vusb11_get_next_in_bdt
(
/* [IN] the USB Host state structure */
_usb_host_handle handle
)
{ /* Body */
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
usb_host_ptr->USB_IN ^= VUSB_BDT_ODD_EVEN_BIT;
return ((HOST_BDT_STRUCT_PTR)((uint_32)usb_host_ptr->USB_BDT_PAGE |
usb_host_ptr->USB_IN));
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_get_next_out_bdt
* Returned Value : Address of the next OUT BDT to use
* Comments :
* Get the address of the next OUT BDT
*END*-----------------------------------------------------------------*/
HOST_BDT_STRUCT_PTR _usb_host_vusb11_get_next_out_bdt
(
/* [IN] the USB Host state structure */
_usb_host_handle handle
)
{ /* Body */
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
/* toggle odd/even and use result */
usb_host_ptr->USB_OUT ^= VUSB_BDT_ODD_EVEN_BIT;
/* create pointer to current out bdt */
return ((HOST_BDT_STRUCT_PTR)((uint_32)usb_host_ptr->USB_BDT_PAGE |
usb_host_ptr->USB_OUT));
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_sched_pending_pkts
* Returned Value : None
* Comments :
* Schedule the pending packets based on the types (not for isochronous
* packets)
*END*-----------------------------------------------------------------*/
void _usb_host_vusb11_sched_pending_pkts
(
/* [IN] the USB Host state structure */
_usb_host_handle handle
)
{ /* Body */
PIPE_DESCRIPTOR_STRUCT_PTR pipe_descr_ptr, temp;
uint_8 i;
boolean sched_int_pipe, sched_ctrl_pipe, sched_bulk_pipe;
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
/* Schedule two transfers if they are on different pipes */
for (i=0;i<2;i++) {
/* Check if packets are pending on any of the queue types in the order
** as follows:
*/
if (usb_host_ptr->CURRENT_INTR_HEAD != -1) {
pipe_descr_ptr =
&usb_host_ptr->PIPE_DESCRIPTOR_BASE_PTR\
[usb_host_ptr->CURRENT_INTR_HEAD];
if (!pipe_descr_ptr->CURRENT_INTERVAL) {
sched_int_pipe = TRUE;
pipe_descr_ptr->CURRENT_INTERVAL = pipe_descr_ptr->INTERVAL;
} else {
sched_int_pipe = FALSE;
} /* Endif */
} else if (usb_host_ptr->CURRENT_CTRL_HEAD != -1) {
pipe_descr_ptr =
&usb_host_ptr->PIPE_DESCRIPTOR_BASE_PTR\
[usb_host_ptr->CURRENT_CTRL_HEAD];
if (!pipe_descr_ptr->CURRENT_INTERVAL) {
sched_ctrl_pipe = TRUE;
} else {
sched_ctrl_pipe = FALSE;
} /* Endif */
} else if (usb_host_ptr->CURRENT_BULK_HEAD != -1) {
pipe_descr_ptr =
&usb_host_ptr->PIPE_DESCRIPTOR_BASE_PTR\
[usb_host_ptr->CURRENT_BULK_HEAD];
if (!pipe_descr_ptr->CURRENT_INTERVAL) {
sched_bulk_pipe = TRUE;
} else {
sched_bulk_pipe = FALSE;
} /* Endif */
} /* Endif */
if ((usb_host_ptr->CURRENT_INTR_HEAD != -1) && (sched_int_pipe)) {
pipe_descr_ptr =
&usb_host_ptr->PIPE_DESCRIPTOR_BASE_PTR\
[usb_host_ptr->CURRENT_INTR_HEAD];
} else if ((usb_host_ptr->CURRENT_CTRL_HEAD != -1) && (sched_ctrl_pipe)) {
pipe_descr_ptr =
&usb_host_ptr->PIPE_DESCRIPTOR_BASE_PTR\
[usb_host_ptr->CURRENT_CTRL_HEAD];
} else if ((usb_host_ptr->CURRENT_BULK_HEAD != -1) && (sched_bulk_pipe)) {
pipe_descr_ptr =
&usb_host_ptr->PIPE_DESCRIPTOR_BASE_PTR\
[usb_host_ptr->CURRENT_BULK_HEAD];
} else {
break;
} /* Endif */
/* Initiate the appropriate transfer and update the current head of the
** respective pipe
*/
if (!(i && (temp == pipe_descr_ptr))) {
temp = pipe_descr_ptr;
_usb_host_vusb11_initiate_correct_bdt(handle, pipe_descr_ptr);
_usb_host_update_current_head(handle, pipe_descr_ptr->PIPETYPE);
} /* Endif */
} /* Endfor */
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_sched_iso_pkts
* Returned Value : None
* Comments :
* Schedule the pending Isochronous packets
*END*-----------------------------------------------------------------*/
void _usb_host_vusb11_sched_iso_pkts
(
/* [IN] the USB Host state structure */
_usb_host_handle handle
)
{ /* Body */
PIPE_DESCRIPTOR_STRUCT_PTR pipe_descr_ptr, temp;
uint_8 i;
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
/* Schedule 2 transfers if they are on different pipes */
for (i=0;i<2;i++) {
if (usb_host_ptr->CURRENT_ISO_HEAD != -1) {
pipe_descr_ptr =
&usb_host_ptr->PIPE_DESCRIPTOR_BASE_PTR\
[usb_host_ptr->CURRENT_ISO_HEAD];
/* Initiate the appropriate transfer and update the current head for
** that pipe type queue
*/
if (!(i && (temp == pipe_descr_ptr))) {
temp = pipe_descr_ptr;
_usb_host_vusb11_initiate_correct_bdt(handle, pipe_descr_ptr);
_usb_host_update_current_head(handle, pipe_descr_ptr->PIPETYPE);
} /* Endif */
} else {
break;
} /* Endif */
} /* Endfor */
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_initiate_correct_bdt
* Returned Value : None
* Comments :
* Initiate the correct BDT while scheduling
*END*-----------------------------------------------------------------*/
void _usb_host_vusb11_initiate_correct_bdt
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* [IN] the pipe descriptor address */
PIPE_DESCRIPTOR_STRUCT_PTR pipe_descr_ptr
)
{ /* Body */
/* Check if a packet is pending on this pipe */
if (pipe_descr_ptr->PACKETPENDING) {
if (pipe_descr_ptr->PIPETYPE == USB_CONTROL_PIPE) {
if (pipe_descr_ptr->FIRST_PHASE) {
_usb_host_vusb11_init_setup_bdt(handle, pipe_descr_ptr);
} else {
if (pipe_descr_ptr->SEND_PHASE) {
if (!pipe_descr_ptr->TODO2) { /* Complete */
/* Setup transaction complete. Send an opposite
** direction token on Data1
*/
_usb_host_vusb11_send_in_token(handle, pipe_descr_ptr);
} else { /* partial */
/* Setup transaction not complete. Send more data */
_usb_host_vusb11_send_out_token(handle, pipe_descr_ptr);
} /* Endif */
} else {
if (!pipe_descr_ptr->TODO1) { /* Complete */
/* Setup transaction complete. Send an opposite
** direction token on Data1
*/
_usb_host_vusb11_send_out_token(handle, pipe_descr_ptr);
} else { /* partial */
_usb_host_vusb11_send_in_token(handle, pipe_descr_ptr);
} /* Endif */
} /* Endif */
} /* Endif */
} else {
if (pipe_descr_ptr->DIRECTION == USB_SEND) {
_usb_host_vusb11_init_send_bdt(handle, pipe_descr_ptr);
} else {
_usb_host_vusb11_init_recv_bdt(handle, pipe_descr_ptr);
} /* Endif */
} /* Endif */
} /* Endif */
} /* EndBody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_hci_vusb11_isr
* Returned Value : None
* Comments :
* Service all the interrupts in the VUSB1.1 hardware
*END*-----------------------------------------------------------------*/
#ifdef __USB_OS_MQX__
void _usb_hci_vusb11_isr
(
/* [IN] the USB Host state structure */
_usb_host_handle handle
)
#else
void HOST_INTERRUPT_ROUTINE_KEYWORD _usb_hci_vusb11_isr
(
void
)
#endif
{ /* Body */
uint_8 status_flag = 0, direction;
PIPE_DESCRIPTOR_STRUCT_PTR pipe_descr_ptr = NULL;
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
uint_32 status, error_status;
#ifdef __USB_OS_MQX__
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
#else
#ifndef __USB_OTG__
IN_ISR = TRUE;
#endif
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)usb_host_state_struct_ptr;
#endif
/* We use a while loop to process all the interrupts while we are in the
** loop so that we don't miss any interrupts
*/
while (TRUE) {
/* Check the error status */
error_status = (usb_host_ptr->DEV_PTR->ERRORSTATUS &
usb_host_ptr->DEV_PTR->ERRORENABLE);
/* Clear the errors */
usb_host_ptr->DEV_PTR->ERRORSTATUS = error_status;
/* Check if any of the enabled interrupts are asserted */
status = (usb_host_ptr->DEV_PTR->INTSTATUS &
usb_host_ptr->DEV_PTR->INTENABLE);
if (!status) {
/* No more interrupts pending to be serviced */
break;
} /* Endif */
/* Get the direction of the transfer */
direction = ((usb_host_ptr->DEV_PTR->STATUS >> VUSB_STAT_DIRECTION_BIT) &
0x01);
/* Clear all enabled interrupts */
usb_host_ptr->DEV_PTR->INTSTATUS = status;
/* Check if Reset interrupt */
if (status & VUSB_INT_STAT_RESET) {
usb_host_ptr->DEV_PTR->INTENABLE = (VUSB_INT_ENB_ATTACH |
VUSB_INT_ENB_SOF_TOK);
usb_host_ptr->DEV_PTR->CONTROL = VUSB_CTRL_HOST_MODE_EN;
_usb_host_vusb11_process_attach((pointer)usb_host_ptr);
} else {
/* Check if token done interrupt */
if (status & VUSB_INT_STAT_TOKEN_DONE) {
usb_host_ptr->USB_PKT_PENDING--;
usb_host_ptr->SND_TOK_IN_PROGRESS = FALSE;
_usb_host_vusb11_process_token_done((pointer)usb_host_ptr,
direction, error_status);
/* If there are no packet being processed then schedule any other
** pending packets (except the isochronous transactions)
*/
if ((!usb_host_ptr->SND_TOK_IN_PROGRESS) &&
!(status & VUSB_INT_STAT_TOKEN_DONE))
{
_usb_host_vusb11_sched_pending_pkts((pointer)usb_host_ptr);
} /* Endif */
} /* Endif */
if (status & VUSB_INT_STAT_SOF) {
/* Schedule Isochronous transfer everytime there is a SOF
** interrupt
*/
if (!usb_host_ptr->SND_TOK_IN_PROGRESS) {
_usb_host_vusb11_sched_iso_pkts((pointer)usb_host_ptr);
} /* Endif */
/* Update the current interval on the interrupt pipes if any on the
** interrupt pipe queue
*/
_usb_host_update_interval_for_pipes((pointer)usb_host_ptr);
if (!usb_host_ptr->SND_TOK_IN_PROGRESS) {
_usb_host_vusb11_sched_pending_pkts((pointer)usb_host_ptr);
} /* Endif */
} /* Endif */
/* Check if attach interrupt */
if (status & VUSB_INT_STAT_ATTACH) {
_usb_host_vusb11_process_attach((pointer)usb_host_ptr);
} /* Endif */
if (status & VUSB_INT_STAT_RESUME) {
/* Call the callback function if there was one registered for
** the remote-wakeup/resume
*/
usb_host_ptr->DEV_PTR->INTENABLE &= ~VUSB_INT_ENB_RESUME;
_usb_host_call_service(usb_host_ptr, USB_SERVICE_HOST_RESUME, 0);
} /* Endif */
} /* Endif */
} /* EndWhile */
#ifndef __USB_OS_MQX__
#ifndef __USB_OTG__
IN_ISR = FALSE;
#endif
#endif
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_hci_vusb11_init
* Returned Value : error or USB_OK
* Comments :
* Initialize the VUSB1.1 hardware
*END*-----------------------------------------------------------------*/
uint_8 _usb_hci_vusb11_init
(
/* the USB Host State structure */
_usb_host_handle handle
)
{ /* Body */
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
uint_8 vector;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
/* Allocate memory for the Buffer descriptor table */
usb_host_ptr->USB_BDT_PAGE_BASE =
(HOST_BDT_STRUCT_PTR)USB_memalloc((sizeof(HOST_BDT_STRUCT) * 2 * 2) + 512);
if (usb_host_ptr->USB_BDT_PAGE_BASE == NULL) {
return USBERR_ALLOC_BD_TABLE;
} /* Endif */
/* Align the BDT page on a 512 byte boundary */
usb_host_ptr->USB_BDT_PAGE = (HOST_BDT_STRUCT_PTR)USB_MEM512_ALIGN\
((uint_32)usb_host_ptr->USB_BDT_PAGE_BASE);
/* Get the base address of the VUSB registers */
usb_host_ptr->DEV_PTR =
(USB_STRUCT_PTR)_bsp_get_usb_base(usb_host_ptr->DEV_NUM);
/* The address of the endpoint registers */
usb_host_ptr->ENDPT_HOST_RG = ((uchar_ptr)usb_host_ptr->DEV_PTR +
VUSB_ENDPT_REG_OFFSET);
*usb_host_ptr->ENDPT_HOST_RG = VUSB_ENDPT_DISABLE;
usb_host_ptr->DEV_PTR->CONTROL = 0x00; /* Disable VUSB */
usb_host_ptr->DEV_PTR->INTENABLE = 0x00; /* Mask all interupts */
usb_host_ptr->DEV_PTR->INTSTATUS = 0xFF; /* Clear all interupts */
usb_host_ptr->DEV_PTR->CONTROL = VUSB_CTRL_ODD_RST;
usb_host_ptr->DEV_PTR->ADDRESS = 0;
/* Set the Buffer Descriptor Table address */
_usb_host_vusb11_set_bdt_page(handle);
/* Get the interrupt vector number for the VUSB host */
vector = _bsp_get_usb_vector(usb_host_ptr->DEV_NUM);
#ifndef __USB_OTG__
#ifdef __USB_OS_MQX__
if (!(USB_install_isr(vector, _usb_hci_vusb11_isr, (pointer)usb_host_ptr))) {
return USBERR_INSTALL_ISR;
} /* Endbody */
#else
USB_install_isr(vector, _usb_hci_vusb11_isr,
(pointer)usb_host_ptr);
#endif /* USB_OS_MQX */
#endif /* ARC_USB_OTG */
/* Enable the host mode */
usb_host_ptr->DEV_PTR->CONTROL = VUSB_CTRL_HOST_MODE_EN;
/* Typical value for 64 bytes packets is 74 so we keep enough time for
** the transaction to complete
*/
usb_host_ptr->DEV_PTR->SOFTHRESHOLDLO = 74;
/* Enable Attach interrupt only */
usb_host_ptr->DEV_PTR->INTENABLE = VUSB_INT_ENB_ATTACH;
return USB_OK;
} /* EndBody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_delay
* Returned Value : None
* Comments :
* Delay for specified number of milliseconds.
*END*-----------------------------------------------------------------*/
void _usb_host_delay
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* [IN] time to wait in ms */
uint_32 delay
)
{ /* Body */
MP_STRUCT16 o1, o2;
volatile uint_32 dummy_delay;
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
o1.B.L = usb_host_ptr->DEV_PTR->FRAMENUMLO;
o1.B.H = usb_host_ptr->DEV_PTR->FRAMENUMHI;
o1.W = (o1.W + delay) & 0x7ff;
dummy_delay = 0xffff0000;
do {
o2.B.L = usb_host_ptr->DEV_PTR->FRAMENUMLO;
o2.B.H = usb_host_ptr->DEV_PTR->FRAMENUMHI;
dummy_delay++;
} while ((o1.W != o2.W) && dummy_delay);
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_reset_the_device
* Returned Value : None
* Comments :
* Reset the device after it is attached to the host
*END*-----------------------------------------------------------------*/
void _usb_host_vusb11_reset_the_device
(
/* [IN] the USB Host state structure */
_usb_host_handle handle
)
{ /* Body */
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
/* assert reset on the USB */
usb_host_ptr->DEV_PTR->CONTROL = (VUSB_CTRL_HOST_MODE_EN | VUSB_CTRL_RESET);
/* Delay for the reset process to complete */
_usb_host_delay(handle, USB_RESET_DELAY);
/* End the reset */
usb_host_ptr->DEV_PTR->CONTROL = VUSB_CTRL_HOST_MODE_EN;
/* Enable host mode and start generating SOFs */
usb_host_ptr->DEV_PTR->CONTROL = (VUSB_CTRL_HOST_MODE_EN | VUSB_CTRL_USB_EN);
/* Delay for the reset recovery period */
_usb_host_delay(handle, USB_RESET_RECOVERY_DELAY);
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_process_attach
* Returned Value : None
* Comments :
* Process the VUSB Attach interrupt
*END*-----------------------------------------------------------------*/
void _usb_host_vusb11_process_attach
(
/* [IN] the USB Host state structure */
_usb_host_handle handle
)
{ /* Body */
uint_32 b;
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
usb_host_ptr->DEV_PTR->ERRORENABLE = 0xff; /* enable all errors */
/* Delay for the debounce interval */
_usb_host_delay(handle, USB_DEBOUNCE_DELAY);
/* Check if the device is attached or detached */
b = usb_host_ptr->DEV_PTR->CONTROL;
if (b & VUSB_CTRL_SINGLE_ENDED_0) {
_usb_host_vusb11_process_detach(handle);
return;
} /* Endif */
/* check the low speed bit */
if (usb_host_ptr->DEV_PTR->ADDRESS & VUSB_ADDR_LS_EN) {
/* currently low speed */
if (b & VUSB_CTRL_JSTATE) {
usb_host_ptr->SPEED = VUSB_ENDPT_CTL_HOST_WO_HUB;
usb_host_ptr->NO_HUB = VUSB_ENDPT_CTL_HOST_WO_HUB;
} else {
usb_host_ptr->SPEED = 0;
usb_host_ptr->NO_HUB = 0; /* if we see a full speed device there
** may be a hub.
*/
} /* Endif */
} else { /* currently high speed */
if (b & VUSB_CTRL_JSTATE) {
/* Full-speed device */
usb_host_ptr->SPEED = 0x00;
usb_host_ptr->NO_HUB = 0x00;
/* Tell VUSB that we have a high-speed device */
usb_host_ptr->DEV_PTR->ADDRESS = 0x00;
} else {
/* Low-speed device */
usb_host_ptr->SPEED = VUSB_ENDPT_CTL_HOST_WO_HUB;
/* if we see a low speed device there is no hub. */
usb_host_ptr->NO_HUB = VUSB_ENDPT_CTL_HOST_WO_HUB;
/* Tell VUSB that we have a low-speed device */
usb_host_ptr->DEV_PTR->ADDRESS = VUSB_ADDR_LS_EN;
} /* Endif */
} /* Endif */
/* enable ep0 */
*usb_host_ptr->ENDPT_HOST_RG =
(VUSB_ENDPT_CONTROL | usb_host_ptr->NO_HUB);
/* Reset the device */
_usb_host_vusb11_reset_the_device(handle);
/* Clear the attach and reset interrupt */
usb_host_ptr->DEV_PTR->INTSTATUS = (VUSB_INT_STAT_ATTACH |
VUSB_INT_STAT_RESET);
/* Enable the token done, SOF and reset interrupts */
usb_host_ptr->DEV_PTR->INTENABLE = (VUSB_INT_ENB_TOK_DNE |
VUSB_INT_ENB_USB_RST | VUSB_INT_ENB_SOF_TOK);
/* Set the Odd data out */
usb_host_ptr->USB_OUT = (VUSB_BDT_ODD_EVEN_BIT |
VUSB_BDT_OUT_BIT);
/* Set the Odd data In */
usb_host_ptr->USB_IN = (VUSB_BDT_ODD_EVEN_BIT |
VUSB_BDT_IN_BIT);
/* Call the callback function of there was one register for the attach
** event
*/
_usb_host_call_service(usb_host_ptr, USB_SERVICE_ATTACH, 0);
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_process_detach
* Returned Value : None
* Comments :
* Process the VUSB Detach event
*END*-----------------------------------------------------------------*/
void _usb_host_vusb11_process_detach
(
/* [IN] the USB Host state structure */
_usb_host_handle handle
)
{ /* Body */
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
/* Cancel if there are any pending tokens */
usb_host_ptr->SND_TOK_IN_PROGRESS = FALSE;
/* Set the Buffer Descriptor Table address */
_usb_host_vusb11_set_bdt_page((pointer)usb_host_ptr);
/* Reset all the attached device specific values */
usb_host_ptr->DEV_PTR->ADDRESS = 0;
usb_host_ptr->SPEED = 0x00; /* causes speed bit to be cleared */
usb_host_ptr->NO_HUB = 0x00; /* hub bit cleared */
*usb_host_ptr->ENDPT_HOST_RG = (VUSB_ENDPT_CONTROL |
usb_host_ptr->NO_HUB); /* enable ep0 */
/* Set the ODD/EVEN BDT to even and enable the host mode */
usb_host_ptr->DEV_PTR->CONTROL = VUSB_CTRL_ODD_RST;
usb_host_ptr->DEV_PTR->CONTROL = VUSB_CTRL_HOST_MODE_EN;
/* Clear all interrupts */
usb_host_ptr->DEV_PTR->INTSTATUS = 0xFF;
/* Enable attach interrupt */
usb_host_ptr->DEV_PTR->INTENABLE = VUSB_INT_ENB_ATTACH;
/* Call the callback function if there was one registered for a detach
** event
*/
_usb_host_call_service(usb_host_ptr, USB_SERVICE_DETACH, 0);
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_send_in_token
* Returned Value : None
* Comments :
* Send the IN token to receive data after the first phase of Setup
* transaction is complete. This routine is also used for sending a zero length
* IN packet for the handshake phase of a Setup transaction.
*END*-----------------------------------------------------------------*/
void _usb_host_vusb11_send_in_token
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* Pipe descriptor address */
PIPE_DESCRIPTOR_STRUCT_PTR pipe_descr_ptr
)
{ /* Body */
MP_STRUCT mp_struct;
uint_16 newPid;
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
/* Get Next IN BDT */
mp_struct.BDT_PTR = _usb_host_vusb11_get_next_in_bdt(handle);
/* Buffer to receive data */
mp_struct.BDT_PTR->ADDR.PB = (uchar_ptr)pipe_descr_ptr->RX_PTR;
newPid = (pipe_descr_ptr->NEXTDATA01 | VUSB_BD_DTS_ENABLE | VUSB_BD_PID_OWN);
if (pipe_descr_ptr->MUSTSENDNULL) {
/* Send a zero length token */
mp_struct.BDT_PTR->BC = 0;
/* Send it on Data1 */
newPid |= VUSB_BD_PID_DATA01;
pipe_descr_ptr->MUSTSENDNULL = FALSE;
} else {
/* Doesn't matter what length. The device will packetize into
** MAX_PACKET_SIZE and send
*/
mp_struct.BDT_PTR->BC = 0xFF;
} /* Endif */
mp_struct.BDT_PTR->PID = newPid;
_usb_host_buffer_bdt(handle, mp_struct.BDT_PTR);
_usb_host_buffer_token(handle, pipe_descr_ptr->ADDRESS, (VUSB_TOKEN_IN |
pipe_descr_ptr->EP), VUSB_ENDPT_CONTROL);
/* IN Token */
_usb_host_vusb11_send_token(handle, pipe_descr_ptr->ADDRESS, (VUSB_TOKEN_IN |
pipe_descr_ptr->EP), VUSB_ENDPT_CONTROL);
pipe_descr_ptr->NEXTDATA01 ^= VUSB_BD_PID_DATA01;
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_send_out_token
* Returned Value : None
* Comments :
* Send the OUT token to send data after the first phase of Setup
* transaction is complete. This routine is also used for sending a zero length
* OUT packet for the handshake phase of a setup token
*END*-----------------------------------------------------------------*/
void _usb_host_vusb11_send_out_token
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* [IN] the pipe descriptor address */
PIPE_DESCRIPTOR_STRUCT_PTR pipe_descr_ptr
)
{ /* Body */
MP_STRUCT mp_struct;
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
/* Get the Next OUT BDT */
mp_struct.BDT_PTR = (HOST_BDT_STRUCT_PTR)_usb_host_vusb11_get_next_out_bdt(handle);
/* Data to send */
mp_struct.BDT_PTR->ADDR.PB = (uchar_ptr)pipe_descr_ptr->TX2_PTR;
if (pipe_descr_ptr->MUSTSENDNULL) {
/* Send a zero length token */
mp_struct.BDT_PTR->BC = 0;
/* Send it on Data1 */
mp_struct.BDT_PTR->PID = (pipe_descr_ptr->NEXTDATA01 |
VUSB_BD_PID_OWN | VUSB_BD_PID_DATA01);
pipe_descr_ptr->MUSTSENDNULL = FALSE;
} else {
if (pipe_descr_ptr->TODO2 > pipe_descr_ptr->MAX_PKT_SIZE) {
/* Send only MAX_PACKET_SIZE packets */
mp_struct.BDT_PTR->BC = pipe_descr_ptr->MAX_PKT_SIZE;
} else {
mp_struct.BDT_PTR->BC = pipe_descr_ptr->TODO2;
} /* Endif */
mp_struct.BDT_PTR->PID = (pipe_descr_ptr->NEXTDATA01 | VUSB_BD_PID_OWN);
} /* Endif */
_usb_host_buffer_bdt(handle, mp_struct.BDT_PTR);
_usb_host_buffer_token(handle, pipe_descr_ptr->ADDRESS, (VUSB_TOKEN_OUT |
pipe_descr_ptr->EP), VUSB_ENDPT_CONTROL);
/* setup */
_usb_host_vusb11_send_token(handle, pipe_descr_ptr->ADDRESS,
(VUSB_TOKEN_OUT | pipe_descr_ptr->EP), VUSB_ENDPT_CONTROL);
pipe_descr_ptr->NEXTDATA01 ^= VUSB_BD_PID_DATA01;
pipe_descr_ptr->PACKETPENDING = FALSE;
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_send_token
* Returned Value : None
* Comments :
* Send a Token
*
*END*-----------------------------------------------------------------*/
void _usb_host_vusb11_send_token
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* Address */
uint_8 bAddress,
/* Token */
uint_8 bToken,
/* Type of token */
uint_8 bType
)
{ /* Body */
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
usb_host_ptr->USB_PKT_PENDING++;
usb_host_ptr->SND_TOK_IN_PROGRESS = TRUE;
while (usb_host_ptr->DEV_PTR->CONTROL & VUSB_CTRL_TOKEN_BUSY) {
/* Wait until previous token transmission is done */
} /* EndWhile */
*usb_host_ptr->ENDPT_HOST_RG = (bType |
usb_host_ptr->NO_HUB);
usb_host_ptr->DEV_PTR->ADDRESS = (bAddress |
usb_host_ptr->SPEED);
usb_host_ptr->DEV_PTR->TOKEN = bToken;
return;
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_process_token_done
* Returned Value : None
* Comments :
* Process the Token Done interrupt on the VUSB1.1 hardware
*
*END*-----------------------------------------------------------------*/
void _usb_host_vusb11_process_token_done
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* [IN] direction of the last processed token */
uint_8 direction,
/* The error status register value */
uint_32 error_status
)
{ /* Body */
MP_STRUCT mp_struct;
uint_32 status;
HOST_BDT_STRUCT_PTR BDT_ptr;
PIPE_DESCRIPTOR_STRUCT_PTR pipe_descr_ptr;
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
pipe_descr_ptr =
&usb_host_ptr->PIPE_DESCRIPTOR_BASE_PTR\
[usb_host_ptr->CURRENT_PIPE_ID];
/* Get the correct BDT */
if (direction == USB_SEND) {
BDT_ptr = (HOST_BDT_STRUCT_PTR)
((uint_32)usb_host_ptr->USB_BDT_PAGE |
usb_host_ptr->USB_OUT);
#ifdef __VUSB32_BDT_HACK__
/* hack */
if (BDT_ptr->PID & VUSB_BD_PID_OWN) {
BDT_ptr = (HOST_BDT_STRUCT_PTR)
((uint_32)usb_host_ptr->USB_BDT_PAGE |
(usb_host_ptr->USB_OUT ^ VUSB_BDT_ODD_EVEN_BIT));
} /* Endif */
#endif
} else {
BDT_ptr = (HOST_BDT_STRUCT_PTR)
((uint_32)usb_host_ptr->USB_BDT_PAGE |
usb_host_ptr->USB_IN);
#ifdef __VUSB32_BDT_HACK__
/* hack */
if (BDT_ptr->PID & VUSB_BD_PID_OWN) {
BDT_ptr = (HOST_BDT_STRUCT_PTR)
((uint_32)usb_host_ptr->USB_BDT_PAGE |
(usb_host_ptr->USB_IN ^ VUSB_BDT_ODD_EVEN_BIT));
} /* Endif */
#endif
} /* Endif */
/* Following is used to look ahead and transmit tokens */
if (usb_host_ptr->USB_TOKEN_BUFFERED &&
usb_host_ptr->NEXT_PKT_QUEUED)
{
if (usb_host_ptr->CURRENT_PIPE_ID ==
usb_host_ptr->NEXT_PIPE_ID)
{
usb_host_ptr->NEXT_PKT_QUEUED = FALSE;
} else {
usb_host_ptr->USB_TOKEN_BUFFERED = FALSE;
} /* Endif */
} else if (usb_host_ptr->USB_TOKEN_BUFFERED) {
usb_host_ptr->USB_TOKEN_BUFFERED = FALSE;
} else if ((usb_host_ptr->NEXT_PKT_QUEUED) &&
(usb_host_ptr->CURRENT_PIPE_ID == usb_host_ptr->NEXT_PIPE_ID))
{
usb_host_ptr->NEXT_PKT_QUEUED = FALSE;
} /* Endif */
/* Get the status */
status = VUSB_GET_STATUS(BDT_ptr);
/* Get the number of bytes received */
#ifdef V8
mp_struct.B.H = VUSB_GET_BYTE_COUNT_HIGH(BDT_ptr);
mp_struct.B.L = VUSB_GET_BYTE_COUNT_LOW(BDT_ptr);
#else
mp_struct.W = VUSB_GET_BYTE_COUNT(BDT_ptr);
#endif
/* if not an Isochronous transfer */
if (pipe_descr_ptr->PIPETYPE != USB_ISOCHRONOUS_PIPE) {
if ((!status) || (status == VUSB_BD_NAK_PID) ||
(status == 0x3C) || (error_status))
{
pipe_descr_ptr->NEXTDATA01 ^= VUSB_BD_PID_DATA01; /* Need to check */
if (status == VUSB_BD_NAK_PID) {
if (pipe_descr_ptr->CURRENT_NAK_COUNT) {
pipe_descr_ptr->CURRENT_NAK_COUNT--;
if (!pipe_descr_ptr->CURRENT_NAK_COUNT) {
pipe_descr_ptr->CURRENT_INTERVAL = 1;
} /* Endif */
} /* Endif */
} /* Endif */
if (status & VUSB_BD_STALL_PID) {
_usb_host_call_service(usb_host_ptr, USB_SERVICE_STALL_PACKET,
pipe_descr_ptr->SOFAR);
} /* Endif */
/* Look ahead for transmitting next token */
if (usb_host_ptr->NEXT_PKT_QUEUED) {
usb_host_ptr->CURRENT_PIPE_ID = usb_host_ptr->NEXT_PIPE_ID;
_usb_host_vusb11_resend_token(handle,
usb_host_ptr->PIPE_DESCRIPTOR_BASE_PTR\
[usb_host_ptr->CURRENT_PIPE_ID].DIRECTION);
} /* Endif */
return;
} /* Endif */
} /* Endif */
/* reset the counter if a non-NAK, valid transfer occured */
pipe_descr_ptr->CURRENT_NAK_COUNT = pipe_descr_ptr->NAK_COUNT;
if (pipe_descr_ptr->PIPETYPE != USB_CONTROL_PIPE) {
/* Increment the buffer pointer */
if (direction == USB_SEND) {
pipe_descr_ptr->TX1_PTR += mp_struct.W;
} else {
pipe_descr_ptr->RX_PTR += mp_struct.W;
} /* Endif */
/* Decrement the total bytes to be sent/received */
pipe_descr_ptr->TODO1 -= mp_struct.W;
/* Increment the total number of bytes sent/received */
pipe_descr_ptr->SOFAR += mp_struct.W;
} else {
/* Increment the buffer pointers for Setup transactions */
if ((pipe_descr_ptr->SEND_PHASE) && (!pipe_descr_ptr->FIRST_PHASE)) {
pipe_descr_ptr->TX2_PTR += mp_struct.W;
pipe_descr_ptr->TODO2 -= mp_struct.W;
/* Increment the total number of bytes sent/received */
pipe_descr_ptr->SOFAR += mp_struct.W;
} /* Endif */
if (direction == USB_RECV) {
pipe_descr_ptr->RX_PTR += mp_struct.W;
pipe_descr_ptr->TODO1 -= mp_struct.W;
/* Increment the total number of bytes sent/received */
pipe_descr_ptr->SOFAR += mp_struct.W;
} /* Endif */
} /* Endif */
/* Look ahead for transmitting next token */
if (usb_host_ptr->NEXT_PKT_QUEUED) {
usb_host_ptr->CURRENT_PIPE_ID = usb_host_ptr->NEXT_PIPE_ID;
_usb_host_vusb11_resend_token(handle,
usb_host_ptr->PIPE_DESCRIPTOR_BASE_PTR\
[usb_host_ptr->CURRENT_PIPE_ID].DIRECTION);
} /* Endif */
switch (pipe_descr_ptr->USB_PIPE_TRANSACTION_STATE) {
case 0:
/* Case for Non-Control transactions */
if ((!pipe_descr_ptr->TODO1) ||
(mp_struct.W < pipe_descr_ptr->MAX_PKT_SIZE))
{
if (pipe_descr_ptr->PIPETYPE != USB_ISOCHRONOUS_PIPE) {
if ((!pipe_descr_ptr->DONT_ZERO_TERMINATE) &&
(mp_struct.W == pipe_descr_ptr->MAX_PKT_SIZE))
{
break;
} /* Endif */
} /* Endif */
pipe_descr_ptr->STATUS = USB_STATUS_IDLE;
pipe_descr_ptr->PACKETPENDING = FALSE;
_usb_host_update_current_head((pointer)usb_host_ptr, pipe_descr_ptr->PIPETYPE);
_usb_host_call_service(usb_host_ptr, pipe_descr_ptr->PIPE_ID,
pipe_descr_ptr->SOFAR);
} /* Endif */
break;
case 1:
/* Following case is for Control transfers */
if (pipe_descr_ptr->SEND_PHASE) {
if (!pipe_descr_ptr->TODO2) { /* Complete */
pipe_descr_ptr->USB_PIPE_TRANSACTION_STATE++;
/* Setup transaction complete. Send an opposite
** direction token on Data1
*/
pipe_descr_ptr->MUSTSENDNULL = TRUE;
_usb_host_vusb11_send_in_token(handle, pipe_descr_ptr);
} else { /* partial */
/* Setup transaction not complete. Send more data */
_usb_host_vusb11_send_out_token(handle, pipe_descr_ptr);
} /* Endif */
} else {
if (!pipe_descr_ptr->TODO1) { /* Complete */
pipe_descr_ptr->MUSTSENDNULL = TRUE;
/* Setup transaction complete. Send an opposite
** direction token on Data1
*/
_usb_host_vusb11_send_out_token(handle, pipe_descr_ptr);
pipe_descr_ptr->USB_PIPE_TRANSACTION_STATE++;
} else { /* partial */
if ((mp_struct.W < pipe_descr_ptr->MAX_PKT_SIZE) &&
(!pipe_descr_ptr->FIRST_PHASE))
{
pipe_descr_ptr->MUSTSENDNULL = TRUE;
_usb_host_vusb11_send_out_token(handle, pipe_descr_ptr);
pipe_descr_ptr->USB_PIPE_TRANSACTION_STATE++;
} else {
_usb_host_vusb11_send_in_token(handle, pipe_descr_ptr);
} /* Endif */
} /* Endif */
} /* Endif */
pipe_descr_ptr->FIRST_PHASE = FALSE;
break;
case 2:
/* Following case is for Control transfers */
/* Transaction complete */
pipe_descr_ptr->PACKETPENDING = FALSE;
pipe_descr_ptr->STATUS = USB_STATUS_IDLE;
pipe_descr_ptr->SEND_PHASE = FALSE;
_usb_host_update_current_head((pointer)usb_host_ptr, pipe_descr_ptr->PIPETYPE);
_usb_host_call_service(usb_host_ptr, pipe_descr_ptr->PIPE_ID,
pipe_descr_ptr->SOFAR);
break;
default:
return;
} /* EndSwitch */
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_init_send_bdt
* Returned Value : None
* Comments :
* Initialize a BDT for a send operation
*
*END*-----------------------------------------------------------------*/
void _usb_host_vusb11_init_send_bdt
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* Pipe descriptor */
PIPE_DESCRIPTOR_STRUCT_PTR pipe_descr_ptr
)
{ /* Body */
MP_STRUCT mp_struct;
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
pipe_descr_ptr->STATUS = USB_STATUS_TRANSFER_IN_PROGRESS;
mp_struct.BDT_PTR = &usb_host_ptr->USB_TEMP_SND_BDT;
mp_struct.BDT_PTR->ADDR.PB = (uchar_ptr)pipe_descr_ptr->TX1_PTR;
mp_struct.BDT_PTR->PID = (VUSB_BD_PID_OWN | pipe_descr_ptr->NEXTDATA01);
pipe_descr_ptr->NEXTDATA01 ^= VUSB_BD_PID_DATA01;
if (pipe_descr_ptr->TODO1 > pipe_descr_ptr->MAX_PKT_SIZE) {
mp_struct.BDT_PTR->BC = pipe_descr_ptr->MAX_PKT_SIZE;
} else {
mp_struct.BDT_PTR->BC = pipe_descr_ptr->TODO1;
} /* Endif */
if (!usb_host_ptr->USB_TOKEN_BUFFERED) {
usb_host_ptr->CURRENT_PIPE_ID = pipe_descr_ptr->PIPE_ID;
pipe_descr_ptr->USB_PIPE_TRANSACTION_STATE = 0;
_usb_host_buffer_bdt(handle, mp_struct.BDT_PTR);
if (pipe_descr_ptr->PIPETYPE == USB_ISOCHRONOUS_PIPE) {
_usb_host_buffer_token(handle, pipe_descr_ptr->ADDRESS,
(VUSB_TOKEN_OUT | pipe_descr_ptr->EP), VUSB_ENDPT_ISO_TX);
} else {
_usb_host_buffer_token(handle, pipe_descr_ptr->ADDRESS,
(VUSB_TOKEN_OUT | pipe_descr_ptr->EP), VUSB_ENDPT_CONTROL);
} /* Endif */
_usb_host_vusb11_resend_token(handle, USB_SEND);
} else if (!usb_host_ptr->NEXT_PKT_QUEUED) {
_usb_host_buffer_next_bdt(handle, mp_struct.BDT_PTR);
if (pipe_descr_ptr->PIPETYPE == USB_ISOCHRONOUS_PIPE) {
_usb_host_buffer_next_token(handle, pipe_descr_ptr->ADDRESS,
(VUSB_TOKEN_OUT | pipe_descr_ptr->EP),
VUSB_ENDPT_ISO_TX);
} else {
_usb_host_buffer_next_token(handle, pipe_descr_ptr->ADDRESS,
(VUSB_TOKEN_OUT | pipe_descr_ptr->EP), VUSB_ENDPT_CONTROL);
} /* Endif */
usb_host_ptr->NEXT_PIPE_ID = pipe_descr_ptr->PIPE_ID;
} /* Endif */
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_init_recv_bdt
* Returned Value : None
* Comments :
* Initialize a BDT for a Receive operation
*
*END*-----------------------------------------------------------------*/
void _usb_host_vusb11_init_recv_bdt
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* Pipe descriptor */
PIPE_DESCRIPTOR_STRUCT_PTR pipe_descr_ptr
)
{ /* Body */
MP_STRUCT mp_struct;
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
pipe_descr_ptr->STATUS = USB_STATUS_TRANSFER_IN_PROGRESS;
mp_struct.BDT_PTR = &usb_host_ptr->USB_TEMP_RCV_BDT;
mp_struct.BDT_PTR->ADDR.PB = (uchar_ptr)pipe_descr_ptr->RX_PTR;
/* Also enable data toggle synchronization */
mp_struct.BDT_PTR->PID = (pipe_descr_ptr->NEXTDATA01 | VUSB_BD_DTS_ENABLE |
VUSB_BD_PID_OWN);
pipe_descr_ptr->NEXTDATA01 ^= VUSB_BD_PID_DATA01;
if (pipe_descr_ptr->TODO1 > pipe_descr_ptr->MAX_PKT_SIZE) {
mp_struct.BDT_PTR->BC = pipe_descr_ptr->MAX_PKT_SIZE;
} else {
mp_struct.BDT_PTR->BC = pipe_descr_ptr->TODO1;
} /* Endif */
if (!usb_host_ptr->USB_TOKEN_BUFFERED) {
pipe_descr_ptr->USB_PIPE_TRANSACTION_STATE = 0;
usb_host_ptr->CURRENT_PIPE_ID = pipe_descr_ptr->PIPE_ID;
_usb_host_buffer_bdt(handle, mp_struct.BDT_PTR);
if (pipe_descr_ptr->PIPETYPE == USB_ISOCHRONOUS_PIPE) {
_usb_host_buffer_token(handle, pipe_descr_ptr->ADDRESS,
(VUSB_TOKEN_IN | pipe_descr_ptr->EP), VUSB_ENDPT_ISO_RX);
} else {
_usb_host_buffer_token(handle, pipe_descr_ptr->ADDRESS,
(VUSB_TOKEN_IN | pipe_descr_ptr->EP), VUSB_ENDPT_CONTROL);
} /* Endif */
_usb_host_vusb11_resend_token(handle, USB_RECV);
} else if (!usb_host_ptr->NEXT_PKT_QUEUED) {
_usb_host_buffer_next_bdt(handle, mp_struct.BDT_PTR);
if (pipe_descr_ptr->PIPETYPE == USB_ISOCHRONOUS_PIPE) {
_usb_host_buffer_next_token(handle, pipe_descr_ptr->ADDRESS,
(VUSB_TOKEN_IN | pipe_descr_ptr->EP), VUSB_ENDPT_ISO_RX);
} else {
_usb_host_buffer_next_token(handle, pipe_descr_ptr->ADDRESS,
(VUSB_TOKEN_IN | pipe_descr_ptr->EP), VUSB_ENDPT_CONTROL);
} /* Endif */
usb_host_ptr->NEXT_PIPE_ID = pipe_descr_ptr->PIPE_ID;
} /* Endif */
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_init_setup_bdt
* Returned Value : None
* Comments :
* Initialize a BDT for a Setup tranaction
*
*END*-----------------------------------------------------------------*/
void _usb_host_vusb11_init_setup_bdt
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* Pipe descriptor */
PIPE_DESCRIPTOR_STRUCT_PTR pipe_descr_ptr
)
{ /* Body */
static MP_STRUCT mp_struct;
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
pipe_descr_ptr->USB_PIPE_TRANSACTION_STATE = 1;
pipe_descr_ptr->STATUS = USB_STATUS_TRANSFER_IN_PROGRESS;
usb_host_ptr->CURRENT_PIPE_ID = pipe_descr_ptr->PIPE_ID;
mp_struct.BDT_PTR = (HOST_BDT_STRUCT_PTR)_usb_host_vusb11_get_next_out_bdt(handle);
mp_struct.BDT_PTR->BC = 0x08;
mp_struct.BDT_PTR->ADDR.PB = (uchar_ptr)pipe_descr_ptr->TX1_PTR;
mp_struct.BDT_PTR->PID = (pipe_descr_ptr->NEXTDATA01 | VUSB_BD_PID_OWN);
pipe_descr_ptr->NEXTDATA01 ^= VUSB_BD_PID_DATA01;
_usb_host_buffer_bdt(handle, mp_struct.BDT_PTR);
_usb_host_buffer_token(handle, pipe_descr_ptr->ADDRESS,
VUSB_TOKEN_SETUP, VUSB_ENDPT_CONTROL);
/* setup ep0 */
_usb_host_vusb11_send_token(handle, pipe_descr_ptr->ADDRESS,
(VUSB_TOKEN_SETUP | pipe_descr_ptr->EP), VUSB_ENDPT_CONTROL);
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_vusb11_resend_token
* Returned Value : None
* Comments :
* Resend a Token
*
*END*-----------------------------------------------------------------*/
void _usb_host_vusb11_resend_token
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* Send/Receive */
uint_8 bDirection
)
{ /* Body */
MP_STRUCT mp_struct;
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
/* resend last token after resetting the bdt */
if (bDirection == USB_SEND) {
mp_struct.BDT_PTR = _usb_host_vusb11_get_next_out_bdt(handle);
} else {
mp_struct.BDT_PTR = _usb_host_vusb11_get_next_in_bdt(handle);
} /* Endif */
if (usb_host_ptr->USB_TOKEN_BUFFERED) {
mp_struct.BDT_PTR->BC = usb_host_ptr->USB_BUFFERED_BDT.BC;
mp_struct.BDT_PTR->ADDR = usb_host_ptr->USB_BUFFERED_BDT.ADDR;
mp_struct.BDT_PTR->PID = usb_host_ptr->USB_BUFFERED_BDT.PID;
_usb_host_vusb11_send_token(handle, usb_host_ptr->USB_BUFFERED_ADDRESS,
usb_host_ptr->USB_BUFFERED_TOKEN,
usb_host_ptr->USB_BUFFERED_TYPE);
_usb_host_buffer_token(handle, usb_host_ptr->USB_BUFFERED_ADDRESS,
usb_host_ptr->USB_BUFFERED_TOKEN,
usb_host_ptr->USB_BUFFERED_TYPE);
return;
} /* Endif */
if (usb_host_ptr->NEXT_PKT_QUEUED) {
mp_struct.BDT_PTR->BC = usb_host_ptr->USB_NEXT_BUFFERED_BDT.BC;
mp_struct.BDT_PTR->ADDR = usb_host_ptr->USB_NEXT_BUFFERED_BDT.ADDR;
mp_struct.BDT_PTR->PID = usb_host_ptr->USB_NEXT_BUFFERED_BDT.PID;
_usb_host_vusb11_send_token(handle, usb_host_ptr->USB_NEXT_BUFFERED_ADDRESS,
usb_host_ptr->USB_NEXT_BUFFERED_TOKEN,
usb_host_ptr->USB_NEXT_BUFFERED_TYPE);
_usb_host_buffer_next_token(handle, usb_host_ptr->USB_NEXT_BUFFERED_ADDRESS,
usb_host_ptr->USB_NEXT_BUFFERED_TOKEN,
usb_host_ptr->USB_NEXT_BUFFERED_TYPE);
} /* Endif */
} /* EndBody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_buffer_bdt
* Returned Value : None
* Comments :
* Buffer a BDT
*END*-----------------------------------------------------------------*/
void _usb_host_buffer_bdt
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* The descriptor to buffer */
HOST_BDT_STRUCT_PTR BDT_ptr
)
{ /* Body */
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
usb_host_ptr->USB_BUFFERED_BDT.PID = BDT_ptr->PID;
usb_host_ptr->USB_BUFFERED_BDT.BC = BDT_ptr->BC;
usb_host_ptr->USB_BUFFERED_BDT.ADDR = BDT_ptr->ADDR;
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_buffer_next_bdt
* Returned Value : None
* Comments :
* Buffer the Next BDT to be processed
*END*-----------------------------------------------------------------*/
void _usb_host_buffer_next_bdt
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* [IN] the address of the descriptor to buffer */
HOST_BDT_STRUCT_PTR BDT_ptr
)
{ /* Body */
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
usb_host_ptr->USB_NEXT_BUFFERED_BDT.PID = BDT_ptr->PID;
usb_host_ptr->USB_NEXT_BUFFERED_BDT.BC = BDT_ptr->BC;
usb_host_ptr->USB_NEXT_BUFFERED_BDT.ADDR = BDT_ptr->ADDR;
} /* Endbody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_buffer_token
* Returned Value : None
* Comments :
* Buffer a Token to transmit
*END*-----------------------------------------------------------------*/
void _usb_host_buffer_token
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* Address */
uint_8 bAddress,
/* Token */
uint_8 bToken,
/* Type of token */
uint_8 bType
)
{ /* Body */
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
usb_host_ptr->USB_BUFFERED_ADDRESS = bAddress;
usb_host_ptr->USB_BUFFERED_TOKEN = bToken;
usb_host_ptr->USB_BUFFERED_TYPE = bType;
usb_host_ptr->USB_TOKEN_BUFFERED = TRUE;
} /* EndBody */
/*FUNCTION*-------------------------------------------------------------
*
* Function Name : _usb_host_buffer_next_token
* Returned Value : None
* Comments :
* Buffer the next Token to transmit
*END*-----------------------------------------------------------------*/
void _usb_host_buffer_next_token
(
/* [IN] the USB Host state structure */
_usb_host_handle handle,
/* Address */
uint_8 bAddress,
/* Token */
uint_8 bToken,
/* Type of token */
uint_8 bType
)
{ /* Body */
USB_HOST_STATE_STRUCT_PTR usb_host_ptr;
usb_host_ptr = (USB_HOST_STATE_STRUCT_PTR)handle;
usb_host_ptr->USB_NEXT_BUFFERED_ADDRESS = bAddress;
usb_host_ptr->USB_NEXT_BUFFERED_TOKEN = bToken;
usb_host_ptr->USB_NEXT_BUFFERED_TYPE = bType;
usb_host_ptr->NEXT_PKT_QUEUED = TRUE;
} /* EndBody */
/* EOF */