typedef struct _Transfer_Descriptor {
volatile U32 Control;// [20,19]事务类型00b SETUP 01b OUT (只有在ED未设置方向,此设置才有效)
//10b IN 11b Reserved(SETUP事务是每个控制传输的开头,);[23,21]
volatile U32 CurrBufP; //这个指针就指出了要接收或发送的数据缓冲区(比如设置包,要取得的描述符)
volatile U32 NextTD; //下一个TD的地址
volatile U32 BufEnd; //数据缓冲区尾地址
} TD;
Transfers for control, bulk, and interrupt all use the same format for their Transfer Descriptor (TD). This General TD is a 16-byte, host memory structure that must be aligned to a 16-byte boundary.
General Transfer Descriptor Format
|
3
|
|
2
|
2
|
2
|
2
|
2
|
2
|
|
2
|
2
|
1
|
1
|
|
|
|
|
|
|
|
|
|
|
0
|
|
0
|
|
1
|
|
8
|
7
|
6
|
5
|
4
|
3
|
|
1
|
0
|
9
|
8
|
|
|
|
|
|
|
|
|
|
|
3
|
|
0
|
Dword 0
|
CC
|
EC
|
T
|
DI
|
DP
|
R
|
—
| |||||||||||||||||||
Dword 1
|
Current Buffer Pointer (CBP)
| |||||||||||||||||||||||||
Dword 2
|
Next TD (NextTD)
|
0
| ||||||||||||||||||||||||
Dword 3
|
Buffer End (BE)
|
Note: In Dword0, there are fields that are read/write by the HC. The unused portion of this Dword (indicated by ‘—’ ) must either not be written by Host Controller or must be read, and then written back unmodified. The Host Controller Driver should not modify
any portion of the TD while it is accessible to the HC.
Name
|
HC
Access
|
Description
| ||||
R
|
R
|
bufferRounding
If this bit is 0, then the last data packet to a TD from an endpoint must exactly fill the defined data buffer. If the bit is 1, then the last data packet may be smaller than the defined buffer without causing an error condition on the TD.
| ||||
DP
|
R
|
Direction/PID
This 2-bit field indicates the direction of data flow and the PID to be used for the token. This field is only relevant to the HC if the D field in the ED was set to 00b or 11b indicating that the PID determination is deferred to the TD. The encoding of the bits within the byte for this field are:
| ||||
| ||||||
|
Code
|
PID Type
|
Data Direction
|
| ||
|
| |||||
|
00b
|
SETUP
|
to endpoint
|
| ||
|
01b
|
OUT
|
to endpoint
|
| ||
|
10b
|
IN
|
from endpoint
|
| ||
|
11b
|
Reserved
|
|
| ||
|
|
| ||||
DI
|
R
|
DelayInterrupt
This field contains the interrupt delay count for this TD. When a TD is complete the HC may wait for
DelayInterrupt frames before generating an interrupt. If
DelayInterrupt is 111b, then there is no interrupt associated with completion of this TD.
| ||||
T
|
R/W
|
DataToggle
This 2-bit field is used to generate/compare the data PID value (DATA0 or DATA1). It is updated after each successful transmission/reception of a data packet. The MSb of this field is ‘0’ when the data toggle value is acquired from the
toggleCarry field in the ED and ‘1’ when the data toggle value is taken from the LSb of this field.
| ||||
EC
|
R/W
|
ErrorCount
For each transmission error, this value is incremented. If
ErrorCount is 2 and another error occurs, the error type is recorded in the
ConditionCode field and placed on the done queue. When a transaction completes without error,
ErrorCount is reset to 0.
| ||||
CC
|
R/W
|
ConditionCode
This field contains the status of the last attempted transaction. (See Section 0.)
| ||||
CBP
|
R/W
|
CurrentBufferPointer
Contains the physical address of the next memory location that will be accessed for transfer to/from the endpoint. A value of 0 indicates a zero-length data packet or that all bytes have been transferred.
| ||||
NextTD
|
R/W
|
NextTD
This entry points to the next TD on the list of TDs linked to this endpoint
| ||||
BE
|
R
|
BufferEnd
Contains physical address of the last byte in the buffer for this TD
|
ConditionCode
Code
|
Meaning
|
Description
|
0000
|
NoError
|
General TD or isochronous data packet processing completed with no detected errors
|
0001
|
CRC
|
Last data packet from endpoint contained a CRC error.
|
0010
|
BitStuffing
|
Last data packet from endpoint contained a bit stuffing violation
|
0011
|
DataToggleMismatch
|
Last packet from endpoint had data toggle PID that did not match the expected value.
|
0100
|
Stall
|
TD was moved to the Done Queue because the endpoint returned a STALL PID
|
0101
|
DeviceNotResponding
|
Device did not respond to token (IN) or did not provide a handshake (OUT)
|
0110
|
PIDCheckFailure
|
Check bits on PID from endpoint failed on data PID (IN) or handshake (OUT)
|
0111
|
UnexpectedPID
|
Receive PID was not valid when encountered or PID value is not defined.
|
1000
|
DataOverrun
|
The amount of data returned by the endpoint exceeded either the size of the maximum data packet allowed from the endpoint (found in
MaximumPacketSize field of ED) or the remaining buffer size.
|
1001
|
DataUnderrun
|
The endpoint returned less than
MaximumPacketSize and that amount was not sufficient to fill the specified buffer
|
1010
|
reserved
|
|
1011
|
reserved
|
|
1100
|
BufferOverrun
|
During an IN, HC received data from endpoint faster than it could be written to system memory
|
1101
|
BufferUnderrun
|
During an OUT, HC could not retrieve data from system memory fast enough to keep up with data USB data rate.
|
111x
|
Not Accessed
|
This code is set by software before the TD is placed on a list to be processed by the HC.
|