|
|
| request ()=default |
| | the default constructor
|
| void | reset () |
| | reset all data member to their default
|
| void | set_length (uint8_t) |
| | set the AxLEN value of the transaction, the value denotes the burst length - 1
|
| uint8_t | get_length () const |
| | get the AxLEN value of the transaction, the value denotes the burst length - 1
|
| void | set_size (uint8_t) |
| | get the AxSIZE value of the transaction, the length is 2^size. It needs to be less than 10 (512 bit width)
|
| uint8_t | get_size () const |
| | set the AxSIZE value of the transaction
|
| void | set_burst (burst_e) |
| | set the AxBURST value,
|
| burst_e | get_burst () const |
| | get the AxBURST value,
|
| void | set_prot (uint8_t) |
| | set the AxPROT value as POD, only values from 0...7 are allowed
|
| uint8_t | get_prot () const |
| | set the AxPROT value as POD, only values from 0...7 are allowed
|
| void | set_privileged (bool=true) |
| | set the privileged bit of the AxPROT (AxPROT[0])
|
| bool | is_privileged () const |
| | get the privileged bit of the AxPROT (AxPROT[0])
|
| void | set_non_secure (bool=true) |
| | set the non-secure bit of the AxPROT (AxPROT[1])
|
| bool | is_non_secure () const |
| | set the non-secure bit of the AxPROT (AxPROT[1])
|
| void | set_instruction (bool=true) |
| | set the instruction bit of the AxPROT (AxPROT[2])
|
| bool | is_instruction () const |
| | set the instruction bit of the AxPROT (AxPROT[2])
|
| void | set_cache (uint8_t) |
| | set the AxCACHE value as POD, only value from 0..15 are allowed
|
| uint8_t | get_cache () const |
| | get the AxCACHE value as POD
|
| void | set_qos (uint8_t) |
| | set the AxQOS (quality of service) value
|
| uint8_t | get_qos () const |
| | get the AxQOS (quality of service) value
|
| void | set_region (uint8_t) |
| | set the AxREGION value
|
| uint8_t | get_region () const |
| | get the AxREGION value
|
| void | set_atop (uint8_t) |
| | set the raw AWATOP value
|
| uint8_t | get_atop () const |
| | get the raw AWATOP value return the unique value
|
| void | set_stash_nid (uint8_t) |
| | set the raw AWSTASHNID value
|
| uint8_t | get_stash_nid () const |
| | get the raw AWSTASHNID value return the unique value
|
| bool | is_stash_nid_en () const |
| | check if AWSTASHNID is valid return the valid value
|
| void | set_stash_lpid (uint8_t) |
| | set the raw AWSTASHLPID value
|
| uint8_t | get_stash_lpid () const |
| | get the raw AWSTASHLPID value return the unique value
|
| bool | is_stash_lpid_en () const |
| | check if AWSTASHLPID is valid return the valid value
|
The request part of AXI3, AXI4 and ACE transactions. All member data are stored in this class to allow easy reuse of free'd memory and prevent memory fragmentation. The request class holds the data in a similar representation than in the HW implementation. Derived classes are not expected to add data member, they only add interpretation of bits and fields as member functions
Definition at line 204 of file axi_tlm.h.