18 #include <tlm/scc/scv/tlm_extension_recording_registry.h>
23 std::array<std::string, 3> cmd_str{
"R",
"W",
"I"};
26 template <>
const char* to_char<snoop_e>(
snoop_e v) {
28 case snoop_e::READ_NO_SNOOP:
29 return "READ_NO_SNOOP";
30 case snoop_e::READ_ONCE:
32 case snoop_e::READ_SHARED:
34 case snoop_e::READ_CLEAN:
36 case snoop_e::READ_NOT_SHARED_DIRTY:
37 return "READ_NOT_SHARED_DIRTY";
38 case snoop_e::READ_UNIQUE:
40 case snoop_e::CLEAN_SHARED:
41 return "CLEAN_SHARED";
42 case snoop_e::CLEAN_INVALID:
43 return "CLEAN_INVALID";
44 case snoop_e::CLEAN_SHARED_PERSIST:
45 return "CLEAN_SHARED_PERSIST";
46 case snoop_e::CLEAN_UNIQUE:
47 return "CLEAN_UNIQUE";
48 case snoop_e::MAKE_UNIQUE:
50 case snoop_e::MAKE_INVALID:
51 return "MAKE_INVALID";
52 case snoop_e::DVM_COMPLETE:
53 return "DVM_COMPLETE";
54 case snoop_e::DVM_MESSAGE:
56 case snoop_e::BARRIER:
58 case snoop_e::WRITE_NO_SNOOP:
59 return "WRITE_NO_SNOOP";
60 case snoop_e::WRITE_UNIQUE:
61 return "WRITE_UNIQUE";
62 case snoop_e::WRITE_LINE_UNIQUE:
63 return "WRITE_LINE_UNIQUE";
64 case snoop_e::WRITE_CLEAN:
66 case snoop_e::WRITE_BACK:
70 case snoop_e::WRITE_EVICT:
72 case snoop_e::CMO_ON_WRITE:
73 return "CMO_ON_WRITE";
74 case snoop_e::WRITE_UNIQUE_PTL_STASH:
75 return "WRITE_UNIQUE_PTL_STASH";
76 case snoop_e::WRITE_UNIQUE_FULL_STASH:
77 return "WRITE_UNIQUE_FULL_STASH";
78 case snoop_e::STASH_ONCE_SHARED:
79 return "STASH_ONCE_SHARED";
80 case snoop_e::STASH_ONCE_UNIQUE:
81 return "STASH_ONCE_UNIQUE";
82 case snoop_e::STASH_TRANSLATION:
83 return "STASH_TRANSLATION";
89 template <>
const char* to_char<burst_e>(
burst_e v) {
102 template <>
const char* to_char<lock_e>(
lock_e v) {
106 case lock_e::EXLUSIVE:
115 template <>
const char* to_char<domain_e>(
domain_e v) {
117 case domain_e::NON_SHAREABLE:
118 return "NON_SHAREABLE";
119 case domain_e::INNER_SHAREABLE:
120 return "INNER_SHAREABLE";
121 case domain_e::OUTER_SHAREABLE:
122 return "OUTER_SHAREABLE";
123 case domain_e::SYSTEM:
130 template <>
const char* to_char<bar_e>(
bar_e v) {
132 case bar_e::RESPECT_BARRIER:
133 return "RESPECT_BARRIER";
135 return "MEMORY_BARRIER";
137 return "IGNORE_BARRIER";
139 return "SYNCHRONISATION_BARRIER";
145 template <>
const char* to_char<resp_e>(
resp_e v) {
160 std::ostream&
operator<<(std::ostream& os,
const tlm::tlm_generic_payload& t) {
162 t.get_command() == tlm::TLM_READ_COMMAND ?
"AR" : (t.get_command() == tlm::TLM_WRITE_COMMAND ?
"AW" :
"");
163 os <<
"CMD:" << cmd_str[t.get_command()] <<
", " << ch <<
"ADDR:0x" << std::hex << t.get_address() <<
", TXLEN:0x"
164 << t.get_data_length();
166 os <<
", " << ch <<
"ID:" << e->get_id() <<
", " << ch <<
"LEN:0x" << std::hex
167 <<
static_cast<unsigned>(e->get_length()) <<
", " << ch <<
"SIZE:0x" <<
static_cast<unsigned>(e->get_size())
168 << std::dec <<
", " << ch <<
"BURST:" <<
to_char(e->get_burst()) <<
", " << ch
169 <<
"PROT:" <<
static_cast<unsigned>(e->get_prot()) <<
", " << ch
170 <<
"CACHE:" <<
static_cast<unsigned>(e->get_cache()) <<
", " << ch
171 <<
"QOS:" <<
static_cast<unsigned>(e->get_qos()) <<
", " << ch
172 <<
"REGION:" <<
static_cast<unsigned>(e->get_region()) <<
", " << ch <<
"SNOOP:0x" << std::hex
173 << (
static_cast<unsigned>(e->get_snoop()) & 0xf) << std::dec <<
", " << ch
174 <<
"DOMAIN:" <<
to_char(e->get_domain()) <<
", " << ch <<
"BAR:" <<
to_char(e->get_barrier()) <<
", " << ch
175 <<
"UNIQUE:" << e->get_unique();
177 os <<
", " << ch <<
"ID:" << e->get_id() <<
", " << ch <<
"LEN:0x" << std::hex
178 <<
static_cast<unsigned>(e->get_length()) <<
", " << ch <<
"SIZE:0x" <<
static_cast<unsigned>(e->get_size())
179 << std::dec <<
", " << ch <<
"BURST:" <<
to_char(e->get_burst()) <<
", " << ch
180 <<
"PROT:" <<
static_cast<unsigned>(e->get_prot()) <<
", " << ch
181 <<
"CACHE:" <<
static_cast<unsigned>(e->get_cache()) <<
", " << ch
182 <<
"QOS:" <<
static_cast<unsigned>(e->get_qos()) <<
", " << ch
183 <<
"REGION:" <<
static_cast<unsigned>(e->get_region());
185 os <<
", " << ch <<
"ID:" << e->get_id() <<
", " << ch <<
"LEN:0x" << std::hex
186 <<
static_cast<unsigned>(e->get_length()) <<
", " << ch <<
"SIZE:0x" <<
static_cast<unsigned>(e->get_size())
187 << std::dec <<
", " << ch <<
"BURST:" <<
to_char(e->get_burst()) <<
", " << ch
188 <<
"PROT:" <<
static_cast<unsigned>(e->get_prot()) <<
", " << ch
189 <<
"CACHE:" <<
static_cast<unsigned>(e->get_cache()) <<
", " << ch
190 <<
"QOS:" <<
static_cast<unsigned>(e->get_qos()) <<
", " << ch
191 <<
"REGION:" <<
static_cast<unsigned>(e->get_region());
193 os <<
" [ptr:" << &t <<
"]";
198 const std::array<std::array<bool, 4>, 16> rd_valid{{
199 {
true,
true,
true,
true},
200 {
false,
true,
true,
false},
201 {
false,
true,
true,
false},
202 {
false,
true,
true,
false},
203 {
false,
true,
true,
false},
204 {
false,
true,
true,
false},
205 {
false,
false,
false,
false},
206 {
false,
true,
true,
false},
207 {
true,
true,
true,
false},
208 {
true,
true,
true,
false},
209 {
false,
true,
true,
false},
210 {
false,
true,
true,
false},
211 {
false,
true,
true,
false},
212 {
true,
true,
true,
false},
213 {
false,
true,
true,
false},
214 {
false,
true,
true,
false}
216 const std::array<std::array<bool, 4>, 16> wr_valid{{
217 {
true,
true,
true,
true},
218 {
false,
true,
true,
false},
219 {
true,
true,
true,
false},
220 {
true,
true,
true,
false},
221 {
false,
true,
true,
false},
222 {
true,
true,
true,
false},
223 {
false,
false,
false,
false},
224 {
false,
false,
false,
false},
225 {
true,
true,
true,
false},
226 {
true,
true,
true,
false},
227 {
false,
true,
true,
false},
228 {
false,
false,
false,
false},
229 {
true,
true,
true,
false},
230 {
false,
true,
true,
false},
231 {
false,
true,
true,
false},
232 {
false,
false,
false,
false}
240 if(!rd_valid[snoop & 0xf][
to_int(domain)])
241 return "illegal read snoop value";
244 return "illegal write snoop value";
246 if(cache<2 && domain != axi::domain_e::SYSTEM)
247 return "non-cacheable transactions require AXDOMAIN setting of SYSTEM(0x3) based on specification";
248 if(cache>3 && domain == axi::domain_e::SYSTEM)
249 return "cacheable transaction must not set AXDOMAIN to SYSTEM(0x3) based on specification";
250 if((cache & 2) == 0 && domain != domain_e::NON_SHAREABLE && domain != domain_e::SYSTEM) {
251 if( domain != domain_e::INNER_SHAREABLE)
252 return "illegal AXDOMAIN=INNER_SHAREABLE(0x1) for no non-cacheable access";
253 return "illegal AXDOMAIN=OUTER_SHAREABLE(0x2) for no non-cacheable access";
257 case snoop_e::READ_NO_SNOOP:
258 if(domain != domain_e::NON_SHAREABLE && domain != domain_e::SYSTEM)
259 return "illegal AXDOMAIN for no non-coherent READ_NO_SNOOP access";
261 case snoop_e::WRITE_NO_SNOOP:
262 if(domain != domain_e::NON_SHAREABLE && domain != domain_e::SYSTEM)
263 return "illegal AXDOMAIN for no non-coherent WRITE_NO_SNOOP access";
265 case snoop_e::READ_ONCE:
266 case snoop_e::READ_SHARED:
267 case snoop_e::READ_CLEAN:
268 case snoop_e::READ_NOT_SHARED_DIRTY:
269 case snoop_e::READ_UNIQUE:
270 case snoop_e::MAKE_UNIQUE:
271 case snoop_e::DVM_COMPLETE:
272 case snoop_e::DVM_MESSAGE:
273 case snoop_e::WRITE_UNIQUE:
274 case snoop_e::WRITE_LINE_UNIQUE:
276 if(domain != domain_e::INNER_SHAREABLE && domain != domain_e::OUTER_SHAREABLE) {
277 if(domain != domain_e::NON_SHAREABLE)
278 return "illegal AXDOMAIN=NON_SHAREABLE(0x0) for coherent access";
279 return "illegal AXDOMAIN=SYSTEM(0x3) for coherent access";
282 case snoop_e::CLEAN_SHARED:
283 case snoop_e::CLEAN_INVALID:
284 case snoop_e::MAKE_INVALID:
285 case snoop_e::WRITE_CLEAN:
286 case snoop_e::WRITE_BACK:
287 case snoop_e::WRITE_EVICT:
288 if(domain == domain_e::SYSTEM) {
289 return "illegal AXDOMAIN=SYSTEM(0x3) for coherent access";
297 return "illegal barrier/snoop value combination";
305 return "illegal AXCACHE value";
320 return "illegal AXCACHE value";
333 return "illegal AXCACHE value";
TLM2.0 components modeling AHB.
@ MEMORY_BARRIER
Normal access, respecting barriers.
@ SYNCHRONISATION_BARRIER
Normal access, ignoring barriers.
@ IGNORE_BARRIER
Memory barrier.
const char * to_char(E t)
constexpr ULT to_int(E t)
std::ostream & operator<<(std::ostream &stream, const std::vector< T > &vector)
a print function for a vector
bar_e get_barrier() const
get the AxBAR value return the barrier value
snoop_e get_snoop() const
get the AxSNOOP value return the snoop value
domain_e get_domain() const
get the AxDOMAIN value return the domain value
uint8_t get_cache() const
get the AxCACHE value as POD