Forum Discussion
SengKok_L_Intel
Regular Contributor
5 years agoJust to add on:
At the Avalon ST interface of TSE IP, the client frame is starting with the destination address (6 bytes), followed by the source address (6 bytes), Type/Length(2 bytes), and then Payload.
Without 32 bits alignment
- First 32 bits = destination address (6 bytes) + source address (2 bytes)
- Second 32 bits = source address(4 bytes) + Type Length (2 bytes) + Payload (2 bytes)
With 32 bits alignment
- First 32 bits = Zero (2 bytes) + destination address (6 bytes)
- Second 32 bits = source address (6 bytes) + Type Length (2 bytes)
- Third 32 bits = payload (8 bytes)