1 /* Blackfin Trace (TBUF) model.
3 Copyright (C) 2010-2024 Free Software Foundation, Inc.
4 Contributed by Analog Devices, Inc.
6 This file is part of simulators.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 /* This must come before any other includes. */
26 #include "dv-bfin_cec.h"
27 #include "dv-bfin_trace.h"
29 /* Note: The circular buffering here might look a little buggy wrt mid-reads
30 and consuming the top entry, but this is simulating hardware behavior.
31 The hardware is simple, dumb, and fast. Don't write dumb Blackfin
32 software and you won't have a problem. */
34 /* The hardware is limited to 16 entries and defines TBUFCTL. Let's extend it ;). */
35 #ifndef SIM_BFIN_TRACE_DEPTH
36 #define SIM_BFIN_TRACE_DEPTH 6
38 #define SIM_BFIN_TRACE_LEN (1 << SIM_BFIN_TRACE_DEPTH)
39 #define SIM_BFIN_TRACE_LEN_MASK (SIM_BFIN_TRACE_LEN - 1)
41 struct bfin_trace_entry
48 struct bfin_trace_entry buffer
[SIM_BFIN_TRACE_LEN
];
52 /* Order after here is important -- matches hardware MMR layout. */
53 bu32 tbufctl
, tbufstat
;
54 char _pad
[0x100 - 0x8];
57 #define mmr_base() offsetof(struct bfin_trace, tbufctl)
58 #define mmr_offset(mmr) (offsetof(struct bfin_trace, mmr) - mmr_base())
60 static const char * const mmr_names
[] =
62 "TBUFCTL", "TBUFSTAT", [mmr_offset (tbuf
) / 4] = "TBUF",
64 #define mmr_name(off) (mmr_names[(off) / 4] ? : "<INV>")
66 /* Ugh, circular buffers. */
67 #define TBUF_LEN(t) ((t)->top - (t)->bottom)
68 #define TBUF_IDX(i) ((i) & SIM_BFIN_TRACE_LEN_MASK)
69 /* TOP is the next slot to fill. */
70 #define TBUF_TOP(t) (&(t)->buffer[TBUF_IDX ((t)->top)])
71 /* LAST is the latest valid slot. */
72 #define TBUF_LAST(t) (&(t)->buffer[TBUF_IDX ((t)->top - 1)])
73 /* LAST_LAST is the second-to-last valid slot. */
74 #define TBUF_LAST_LAST(t) (&(t)->buffer[TBUF_IDX ((t)->top - 2)])
77 bfin_trace_io_write_buffer (struct hw
*me
, const void *source
,
78 int space
, address_word addr
, unsigned nr_bytes
)
80 struct bfin_trace
*trace
= hw_data (me
);
84 /* Invalid access mode is higher priority than missing register. */
85 if (!dv_bfin_mmr_require_32 (me
, addr
, nr_bytes
, true))
88 value
= dv_load_4 (source
);
89 mmr_off
= addr
- trace
->base
;
95 case mmr_offset(tbufctl
):
96 trace
->tbufctl
= value
;
98 case mmr_offset(tbufstat
):
99 case mmr_offset(tbuf
):
100 /* Discard writes to these. */
103 dv_bfin_mmr_invalid (me
, addr
, nr_bytes
, true);
111 bfin_trace_io_read_buffer (struct hw
*me
, void *dest
,
112 int space
, address_word addr
, unsigned nr_bytes
)
114 struct bfin_trace
*trace
= hw_data (me
);
118 /* Invalid access mode is higher priority than missing register. */
119 if (!dv_bfin_mmr_require_32 (me
, addr
, nr_bytes
, false))
122 mmr_off
= addr
- trace
->base
;
128 case mmr_offset(tbufctl
):
129 value
= trace
->tbufctl
;
131 case mmr_offset(tbufstat
):
132 /* Hardware is limited to 16 entries, so to stay compatible with
133 software, limit the value to 16. For software algorithms that
134 keep reading while (TBUFSTAT != 0), they'll get all of it. */
135 value
= min (TBUF_LEN (trace
), 16);
137 case mmr_offset(tbuf
):
139 struct bfin_trace_entry
*e
;
141 if (TBUF_LEN (trace
) == 0)
147 e
= TBUF_LAST (trace
);
155 trace
->mid
= !trace
->mid
;
160 dv_bfin_mmr_invalid (me
, addr
, nr_bytes
, false);
164 dv_store_4 (dest
, value
);
170 attach_bfin_trace_regs (struct hw
*me
, struct bfin_trace
*trace
)
172 address_word attach_address
;
174 unsigned attach_size
;
175 reg_property_spec reg
;
177 if (hw_find_property (me
, "reg") == NULL
)
178 hw_abort (me
, "Missing \"reg\" property");
180 if (!hw_find_reg_array_property (me
, "reg", 0, ®
))
181 hw_abort (me
, "\"reg\" property must contain three addr/size entries");
183 hw_unit_address_to_attach_address (hw_parent (me
),
185 &attach_space
, &attach_address
, me
);
186 hw_unit_size_to_attach_size (hw_parent (me
), ®
.size
, &attach_size
, me
);
188 if (attach_size
!= BFIN_COREMMR_TRACE_SIZE
)
189 hw_abort (me
, "\"reg\" size must be %#x", BFIN_COREMMR_TRACE_SIZE
);
191 hw_attach_address (hw_parent (me
),
192 0, attach_space
, attach_address
, attach_size
, me
);
194 trace
->base
= attach_address
;
198 bfin_trace_finish (struct hw
*me
)
200 struct bfin_trace
*trace
;
202 trace
= HW_ZALLOC (me
, struct bfin_trace
);
204 set_hw_data (me
, trace
);
205 set_hw_io_read_buffer (me
, bfin_trace_io_read_buffer
);
206 set_hw_io_write_buffer (me
, bfin_trace_io_write_buffer
);
208 attach_bfin_trace_regs (me
, trace
);
211 const struct hw_descriptor dv_bfin_trace_descriptor
[] =
213 {"bfin_trace", bfin_trace_finish
,},
217 #define TRACE_STATE(cpu) DV_STATE_CACHED (cpu, trace)
219 /* This is not re-entrant, but neither is the cpu state, so this shouldn't
221 void bfin_trace_queue (SIM_CPU
*cpu
, bu32 src_pc
, bu32 dst_pc
, int hwloop
)
223 struct bfin_trace
*trace
= TRACE_STATE (cpu
);
224 struct bfin_trace_entry
*e
;
227 /* Only queue if powered. */
228 if (!(trace
->tbufctl
& TBUFPWR
))
231 /* Only queue if enabled. */
232 if (!(trace
->tbufctl
& TBUFEN
))
235 /* Ignore hardware loops.
236 XXX: This is what the hardware does, but an option to ignore
237 could be useful for debugging ... */
241 /* Only queue if at right level. */
242 ivg
= cec_get_ivg (cpu
);
244 /* XXX: This is what the hardware does, but an option to ignore
245 could be useful for debugging ... */
247 if (ivg
<= IVG_EVX
&& (trace
->tbufctl
& TBUFOVF
))
248 /* XXX: This is what the hardware does, but an option to ignore
249 could be useful for debugging ... just don't throw an
250 exception when full and in EVT{0..3}. */
254 len
= TBUF_LEN (trace
);
255 if (len
== SIM_BFIN_TRACE_LEN
)
257 if (trace
->tbufctl
& TBUFOVF
)
259 cec_exception (cpu
, VEC_OVFLOW
);
263 /* Overwrite next entry. */
267 /* One level compression. */
268 if (len
>= 1 && (trace
->tbufctl
& TBUFCMPLP
))
270 e
= TBUF_LAST (trace
);
271 if (src_pc
== (e
->src
& ~1) && dst_pc
== (e
->dst
& ~1))
273 /* Hardware sets LSB when level is compressed. */
279 /* Two level compression. */
280 if (len
>= 2 && (trace
->tbufctl
& TBUFCMPLP_DOUBLE
))
282 e
= TBUF_LAST_LAST (trace
);
283 if (src_pc
== (e
->src
& ~1) && dst_pc
== (e
->dst
& ~1))
285 /* Hardware sets LSB when level is compressed. */
291 e
= TBUF_TOP (trace
);