1 /* Blackfin Trace (TBUF) model.
3 Copyright (C) 2010-2016 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/>. */
25 #include "dv-bfin_cec.h"
26 #include "dv-bfin_trace.h"
28 /* Note: The circular buffering here might look a little buggy wrt mid-reads
29 and consuming the top entry, but this is simulating hardware behavior.
30 The hardware is simple, dumb, and fast. Don't write dumb Blackfin
31 software and you won't have a problem. */
33 /* The hardware is limited to 16 entries and defines TBUFCTL. Let's extend it ;). */
34 #ifndef SIM_BFIN_TRACE_DEPTH
35 #define SIM_BFIN_TRACE_DEPTH 6
37 #define SIM_BFIN_TRACE_LEN (1 << SIM_BFIN_TRACE_DEPTH)
38 #define SIM_BFIN_TRACE_LEN_MASK (SIM_BFIN_TRACE_LEN - 1)
40 struct bfin_trace_entry
47 struct bfin_trace_entry buffer[SIM_BFIN_TRACE_LEN];
51 /* Order after here is important -- matches hardware MMR layout. */
52 bu32 tbufctl, tbufstat;
53 char _pad[0x100 - 0x8];
56 #define mmr_base() offsetof(struct bfin_trace, tbufctl)
57 #define mmr_offset(mmr) (offsetof(struct bfin_trace, mmr) - mmr_base())
59 static const char * const mmr_names[] =
61 "TBUFCTL", "TBUFSTAT", [mmr_offset (tbuf) / 4] = "TBUF",
63 #define mmr_name(off) (mmr_names[(off) / 4] ? : "<INV>")
65 /* Ugh, circular buffers. */
66 #define TBUF_LEN(t) ((t)->top - (t)->bottom)
67 #define TBUF_IDX(i) ((i) & SIM_BFIN_TRACE_LEN_MASK)
68 /* TOP is the next slot to fill. */
69 #define TBUF_TOP(t) (&(t)->buffer[TBUF_IDX ((t)->top)])
70 /* LAST is the latest valid slot. */
71 #define TBUF_LAST(t) (&(t)->buffer[TBUF_IDX ((t)->top - 1)])
72 /* LAST_LAST is the second-to-last valid slot. */
73 #define TBUF_LAST_LAST(t) (&(t)->buffer[TBUF_IDX ((t)->top - 2)])
76 bfin_trace_io_write_buffer (struct hw *me, const void *source,
77 int space, address_word addr, unsigned nr_bytes)
79 struct bfin_trace *trace = hw_data (me);
83 /* Invalid access mode is higher priority than missing register. */
84 if (!dv_bfin_mmr_require_32 (me, addr, nr_bytes, true))
87 value = dv_load_4 (source);
88 mmr_off = addr - trace->base;
94 case mmr_offset(tbufctl):
95 trace->tbufctl = value;
97 case mmr_offset(tbufstat):
98 case mmr_offset(tbuf):
99 /* Discard writes to these. */
102 dv_bfin_mmr_invalid (me, addr, nr_bytes, true);
110 bfin_trace_io_read_buffer (struct hw *me, void *dest,
111 int space, address_word addr, unsigned nr_bytes)
113 struct bfin_trace *trace = hw_data (me);
117 /* Invalid access mode is higher priority than missing register. */
118 if (!dv_bfin_mmr_require_32 (me, addr, nr_bytes, false))
121 mmr_off = addr - trace->base;
127 case mmr_offset(tbufctl):
128 value = trace->tbufctl;
130 case mmr_offset(tbufstat):
131 /* Hardware is limited to 16 entries, so to stay compatible with
132 software, limit the value to 16. For software algorithms that
133 keep reading while (TBUFSTAT != 0), they'll get all of it. */
134 value = min (TBUF_LEN (trace), 16);
136 case mmr_offset(tbuf):
138 struct bfin_trace_entry *e;
140 if (TBUF_LEN (trace) == 0)
146 e = TBUF_LAST (trace);
154 trace->mid = !trace->mid;
159 dv_bfin_mmr_invalid (me, addr, nr_bytes, false);
163 dv_store_4 (dest, value);
169 attach_bfin_trace_regs (struct hw *me, struct bfin_trace *trace)
171 address_word attach_address;
173 unsigned attach_size;
174 reg_property_spec reg;
176 if (hw_find_property (me, "reg") == NULL)
177 hw_abort (me, "Missing \"reg\" property");
179 if (!hw_find_reg_array_property (me, "reg", 0, ®))
180 hw_abort (me, "\"reg\" property must contain three addr/size entries");
182 hw_unit_address_to_attach_address (hw_parent (me),
184 &attach_space, &attach_address, me);
185 hw_unit_size_to_attach_size (hw_parent (me), ®.size, &attach_size, me);
187 if (attach_size != BFIN_COREMMR_TRACE_SIZE)
188 hw_abort (me, "\"reg\" size must be %#x", BFIN_COREMMR_TRACE_SIZE);
190 hw_attach_address (hw_parent (me),
191 0, attach_space, attach_address, attach_size, me);
193 trace->base = attach_address;
197 bfin_trace_finish (struct hw *me)
199 struct bfin_trace *trace;
201 trace = HW_ZALLOC (me, struct bfin_trace);
203 set_hw_data (me, trace);
204 set_hw_io_read_buffer (me, bfin_trace_io_read_buffer);
205 set_hw_io_write_buffer (me, bfin_trace_io_write_buffer);
207 attach_bfin_trace_regs (me, trace);
210 const struct hw_descriptor dv_bfin_trace_descriptor[] =
212 {"bfin_trace", bfin_trace_finish,},
216 #define TRACE_STATE(cpu) DV_STATE_CACHED (cpu, trace)
218 /* This is not re-entrant, but neither is the cpu state, so this shouldn't
220 void bfin_trace_queue (SIM_CPU *cpu, bu32 src_pc, bu32 dst_pc, int hwloop)
222 struct bfin_trace *trace = TRACE_STATE (cpu);
223 struct bfin_trace_entry *e;
226 /* Only queue if powered. */
227 if (!(trace->tbufctl & TBUFPWR))
230 /* Only queue if enabled. */
231 if (!(trace->tbufctl & TBUFEN))
234 /* Ignore hardware loops.
235 XXX: This is what the hardware does, but an option to ignore
236 could be useful for debugging ... */
240 /* Only queue if at right level. */
241 ivg = cec_get_ivg (cpu);
243 /* XXX: This is what the hardware does, but an option to ignore
244 could be useful for debugging ... */
246 if (ivg <= IVG_EVX && (trace->tbufctl & TBUFOVF))
247 /* XXX: This is what the hardware does, but an option to ignore
248 could be useful for debugging ... just don't throw an
249 exception when full and in EVT{0..3}. */
253 len = TBUF_LEN (trace);
254 if (len == SIM_BFIN_TRACE_LEN)
256 if (trace->tbufctl & TBUFOVF)
258 cec_exception (cpu, VEC_OVFLOW);
262 /* Overwrite next entry. */
266 /* One level compression. */
267 if (len >= 1 && (trace->tbufctl & TBUFCMPLP))
269 e = TBUF_LAST (trace);
270 if (src_pc == (e->src & ~1) && dst_pc == (e->dst & ~1))
272 /* Hardware sets LSB when level is compressed. */
278 /* Two level compression. */
279 if (len >= 2 && (trace->tbufctl & TBUFCMPLP_DOUBLE))
281 e = TBUF_LAST_LAST (trace);
282 if (src_pc == (e->src & ~1) && dst_pc == (e->dst & ~1))
284 /* Hardware sets LSB when level is compressed. */
290 e = TBUF_TOP (trace);