]>
Commit | Line | Data |
---|---|---|
06a1cea5 PC |
1 | /* |
2 | * ARM PrimeCell PL330 DMA Controller | |
3 | * | |
4 | * Copyright (c) 2009 Samsung Electronics. | |
5 | * Contributed by Kirill Batuzov <[email protected]> | |
6 | * Copyright (c) 2012 Peter A.G. Crosthwaite ([email protected]) | |
7 | * Copyright (c) 2012 PetaLogix Pty Ltd. | |
8 | * | |
9 | * This program is free software; you can redistribute it and/or | |
10 | * modify it under the terms of the GNU General Public License | |
11 | * as published by the Free Software Foundation; version 2 or later. | |
12 | * | |
13 | * You should have received a copy of the GNU General Public License along | |
14 | * with this program; if not, see <http://www.gnu.org/licenses/>. | |
15 | */ | |
16 | ||
0d09e41a | 17 | #include "hw/sysbus.h" |
06a1cea5 PC |
18 | #include "qemu/timer.h" |
19 | #include "sysemu/dma.h" | |
20 | ||
21 | #ifndef PL330_ERR_DEBUG | |
22 | #define PL330_ERR_DEBUG 0 | |
23 | #endif | |
24 | ||
25 | #define DB_PRINT_L(lvl, fmt, args...) do {\ | |
26 | if (PL330_ERR_DEBUG >= lvl) {\ | |
27 | fprintf(stderr, "PL330: %s:" fmt, __func__, ## args);\ | |
28 | } \ | |
29 | } while (0); | |
30 | ||
31 | #define DB_PRINT(fmt, args...) DB_PRINT_L(1, fmt, ## args) | |
32 | ||
33 | #define PL330_PERIPH_NUM 32 | |
34 | #define PL330_MAX_BURST_LEN 128 | |
35 | #define PL330_INSN_MAXSIZE 6 | |
36 | ||
37 | #define PL330_FIFO_OK 0 | |
38 | #define PL330_FIFO_STALL 1 | |
39 | #define PL330_FIFO_ERR (-1) | |
40 | ||
41 | #define PL330_FAULT_UNDEF_INSTR (1 << 0) | |
42 | #define PL330_FAULT_OPERAND_INVALID (1 << 1) | |
43 | #define PL330_FAULT_DMAGO_ERR (1 << 4) | |
44 | #define PL330_FAULT_EVENT_ERR (1 << 5) | |
45 | #define PL330_FAULT_CH_PERIPH_ERR (1 << 6) | |
46 | #define PL330_FAULT_CH_RDWR_ERR (1 << 7) | |
47 | #define PL330_FAULT_ST_DATA_UNAVAILABLE (1 << 12) | |
48 | #define PL330_FAULT_FIFOEMPTY_ERR (1 << 13) | |
49 | #define PL330_FAULT_INSTR_FETCH_ERR (1 << 16) | |
50 | #define PL330_FAULT_DATA_WRITE_ERR (1 << 17) | |
51 | #define PL330_FAULT_DATA_READ_ERR (1 << 18) | |
52 | #define PL330_FAULT_DBG_INSTR (1 << 30) | |
53 | #define PL330_FAULT_LOCKUP_ERR (1 << 31) | |
54 | ||
55 | #define PL330_UNTAGGED 0xff | |
56 | ||
57 | #define PL330_SINGLE 0x0 | |
58 | #define PL330_BURST 0x1 | |
59 | ||
60 | #define PL330_WATCHDOG_LIMIT 1024 | |
61 | ||
62 | /* IOMEM mapped registers */ | |
63 | #define PL330_REG_DSR 0x000 | |
64 | #define PL330_REG_DPC 0x004 | |
65 | #define PL330_REG_INTEN 0x020 | |
66 | #define PL330_REG_INT_EVENT_RIS 0x024 | |
67 | #define PL330_REG_INTMIS 0x028 | |
68 | #define PL330_REG_INTCLR 0x02C | |
69 | #define PL330_REG_FSRD 0x030 | |
70 | #define PL330_REG_FSRC 0x034 | |
71 | #define PL330_REG_FTRD 0x038 | |
72 | #define PL330_REG_FTR_BASE 0x040 | |
73 | #define PL330_REG_CSR_BASE 0x100 | |
74 | #define PL330_REG_CPC_BASE 0x104 | |
75 | #define PL330_REG_CHANCTRL 0x400 | |
76 | #define PL330_REG_DBGSTATUS 0xD00 | |
77 | #define PL330_REG_DBGCMD 0xD04 | |
78 | #define PL330_REG_DBGINST0 0xD08 | |
79 | #define PL330_REG_DBGINST1 0xD0C | |
80 | #define PL330_REG_CR0_BASE 0xE00 | |
81 | #define PL330_REG_PERIPH_ID 0xFE0 | |
82 | ||
83 | #define PL330_IOMEM_SIZE 0x1000 | |
84 | ||
85 | #define CFG_BOOT_ADDR 2 | |
86 | #define CFG_INS 3 | |
87 | #define CFG_PNS 4 | |
88 | #define CFG_CRD 5 | |
89 | ||
90 | static const uint32_t pl330_id[] = { | |
91 | 0x30, 0x13, 0x24, 0x00, 0x0D, 0xF0, 0x05, 0xB1 | |
92 | }; | |
93 | ||
94 | /* DMA channel states as they are described in PL330 Technical Reference Manual | |
95 | * Most of them will not be used in emulation. | |
96 | */ | |
97 | typedef enum { | |
98 | pl330_chan_stopped = 0, | |
99 | pl330_chan_executing = 1, | |
100 | pl330_chan_cache_miss = 2, | |
101 | pl330_chan_updating_pc = 3, | |
102 | pl330_chan_waiting_event = 4, | |
103 | pl330_chan_at_barrier = 5, | |
104 | pl330_chan_queue_busy = 6, | |
105 | pl330_chan_waiting_periph = 7, | |
106 | pl330_chan_killing = 8, | |
107 | pl330_chan_completing = 9, | |
108 | pl330_chan_fault_completing = 14, | |
109 | pl330_chan_fault = 15, | |
110 | } PL330ChanState; | |
111 | ||
112 | typedef struct PL330State PL330State; | |
113 | ||
114 | typedef struct PL330Chan { | |
115 | uint32_t src; | |
116 | uint32_t dst; | |
117 | uint32_t pc; | |
118 | uint32_t control; | |
119 | uint32_t status; | |
120 | uint32_t lc[2]; | |
121 | uint32_t fault_type; | |
122 | uint32_t watchdog_timer; | |
123 | ||
124 | bool ns; | |
125 | uint8_t request_flag; | |
126 | uint8_t wakeup; | |
127 | uint8_t wfp_sbp; | |
128 | ||
129 | uint8_t state; | |
130 | uint8_t stall; | |
131 | ||
132 | bool is_manager; | |
133 | PL330State *parent; | |
134 | uint8_t tag; | |
135 | } PL330Chan; | |
136 | ||
137 | static const VMStateDescription vmstate_pl330_chan = { | |
138 | .name = "pl330_chan", | |
139 | .version_id = 1, | |
140 | .minimum_version_id = 1, | |
141 | .minimum_version_id_old = 1, | |
142 | .fields = (VMStateField[]) { | |
143 | VMSTATE_UINT32(src, PL330Chan), | |
144 | VMSTATE_UINT32(dst, PL330Chan), | |
145 | VMSTATE_UINT32(pc, PL330Chan), | |
146 | VMSTATE_UINT32(control, PL330Chan), | |
147 | VMSTATE_UINT32(status, PL330Chan), | |
148 | VMSTATE_UINT32_ARRAY(lc, PL330Chan, 2), | |
149 | VMSTATE_UINT32(fault_type, PL330Chan), | |
150 | VMSTATE_UINT32(watchdog_timer, PL330Chan), | |
151 | VMSTATE_BOOL(ns, PL330Chan), | |
152 | VMSTATE_UINT8(request_flag, PL330Chan), | |
153 | VMSTATE_UINT8(wakeup, PL330Chan), | |
154 | VMSTATE_UINT8(wfp_sbp, PL330Chan), | |
155 | VMSTATE_UINT8(state, PL330Chan), | |
156 | VMSTATE_UINT8(stall, PL330Chan), | |
157 | VMSTATE_END_OF_LIST() | |
158 | } | |
159 | }; | |
160 | ||
161 | typedef struct PL330Fifo { | |
162 | uint8_t *buf; | |
163 | uint8_t *tag; | |
164 | uint32_t head; | |
165 | uint32_t num; | |
166 | uint32_t buf_size; | |
167 | } PL330Fifo; | |
168 | ||
169 | static const VMStateDescription vmstate_pl330_fifo = { | |
170 | .name = "pl330_chan", | |
171 | .version_id = 1, | |
172 | .minimum_version_id = 1, | |
173 | .minimum_version_id_old = 1, | |
174 | .fields = (VMStateField[]) { | |
175 | VMSTATE_VBUFFER_UINT32(buf, PL330Fifo, 1, NULL, 0, buf_size), | |
176 | VMSTATE_VBUFFER_UINT32(tag, PL330Fifo, 1, NULL, 0, buf_size), | |
177 | VMSTATE_UINT32(head, PL330Fifo), | |
178 | VMSTATE_UINT32(num, PL330Fifo), | |
179 | VMSTATE_UINT32(buf_size, PL330Fifo), | |
180 | VMSTATE_END_OF_LIST() | |
181 | } | |
182 | }; | |
183 | ||
184 | typedef struct PL330QueueEntry { | |
185 | uint32_t addr; | |
186 | uint32_t len; | |
187 | uint8_t n; | |
188 | bool inc; | |
189 | bool z; | |
190 | uint8_t tag; | |
191 | uint8_t seqn; | |
192 | } PL330QueueEntry; | |
193 | ||
194 | static const VMStateDescription vmstate_pl330_queue_entry = { | |
195 | .name = "pl330_queue_entry", | |
196 | .version_id = 1, | |
197 | .minimum_version_id = 1, | |
198 | .minimum_version_id_old = 1, | |
199 | .fields = (VMStateField[]) { | |
200 | VMSTATE_UINT32(addr, PL330QueueEntry), | |
201 | VMSTATE_UINT32(len, PL330QueueEntry), | |
202 | VMSTATE_UINT8(n, PL330QueueEntry), | |
203 | VMSTATE_BOOL(inc, PL330QueueEntry), | |
204 | VMSTATE_BOOL(z, PL330QueueEntry), | |
205 | VMSTATE_UINT8(tag, PL330QueueEntry), | |
206 | VMSTATE_UINT8(seqn, PL330QueueEntry), | |
207 | VMSTATE_END_OF_LIST() | |
208 | } | |
209 | }; | |
210 | ||
211 | typedef struct PL330Queue { | |
212 | PL330State *parent; | |
213 | PL330QueueEntry *queue; | |
214 | uint32_t queue_size; | |
215 | } PL330Queue; | |
216 | ||
217 | static const VMStateDescription vmstate_pl330_queue = { | |
218 | .name = "pl330_queue", | |
219 | .version_id = 1, | |
220 | .minimum_version_id = 1, | |
221 | .minimum_version_id_old = 1, | |
222 | .fields = (VMStateField[]) { | |
223 | VMSTATE_STRUCT_VARRAY_UINT32(queue, PL330Queue, queue_size, 1, | |
224 | vmstate_pl330_queue_entry, PL330QueueEntry), | |
225 | VMSTATE_END_OF_LIST() | |
226 | } | |
227 | }; | |
228 | ||
229 | struct PL330State { | |
1c8be73d PC |
230 | SysBusDevice parent_obj; |
231 | ||
06a1cea5 PC |
232 | MemoryRegion iomem; |
233 | qemu_irq irq_abort; | |
234 | qemu_irq *irq; | |
235 | ||
236 | /* Config registers. cfg[5] = CfgDn. */ | |
237 | uint32_t cfg[6]; | |
238 | #define EVENT_SEC_STATE 3 | |
239 | #define PERIPH_SEC_STATE 4 | |
240 | /* cfg 0 bits and pieces */ | |
241 | uint32_t num_chnls; | |
242 | uint8_t num_periph_req; | |
243 | uint8_t num_events; | |
244 | uint8_t mgr_ns_at_rst; | |
245 | /* cfg 1 bits and pieces */ | |
246 | uint8_t i_cache_len; | |
247 | uint8_t num_i_cache_lines; | |
248 | /* CRD bits and pieces */ | |
249 | uint8_t data_width; | |
250 | uint8_t wr_cap; | |
251 | uint8_t wr_q_dep; | |
252 | uint8_t rd_cap; | |
253 | uint8_t rd_q_dep; | |
254 | uint16_t data_buffer_dep; | |
255 | ||
256 | PL330Chan manager; | |
257 | PL330Chan *chan; | |
258 | PL330Fifo fifo; | |
259 | PL330Queue read_queue; | |
260 | PL330Queue write_queue; | |
261 | uint8_t *lo_seqn; | |
262 | uint8_t *hi_seqn; | |
263 | QEMUTimer *timer; /* is used for restore dma. */ | |
264 | ||
265 | uint32_t inten; | |
266 | uint32_t int_status; | |
267 | uint32_t ev_status; | |
268 | uint32_t dbg[2]; | |
269 | uint8_t debug_status; | |
270 | uint8_t num_faulting; | |
271 | uint8_t periph_busy[PL330_PERIPH_NUM]; | |
272 | ||
273 | }; | |
274 | ||
275 | #define TYPE_PL330 "pl330" | |
276 | #define PL330(obj) OBJECT_CHECK(PL330State, (obj), TYPE_PL330) | |
277 | ||
278 | static const VMStateDescription vmstate_pl330 = { | |
279 | .name = "pl330", | |
280 | .version_id = 1, | |
281 | .minimum_version_id = 1, | |
282 | .minimum_version_id_old = 1, | |
283 | .fields = (VMStateField[]) { | |
284 | VMSTATE_STRUCT(manager, PL330State, 0, vmstate_pl330_chan, PL330Chan), | |
285 | VMSTATE_STRUCT_VARRAY_UINT32(chan, PL330State, num_chnls, 0, | |
286 | vmstate_pl330_chan, PL330Chan), | |
287 | VMSTATE_VBUFFER_UINT32(lo_seqn, PL330State, 1, NULL, 0, num_chnls), | |
288 | VMSTATE_VBUFFER_UINT32(hi_seqn, PL330State, 1, NULL, 0, num_chnls), | |
289 | VMSTATE_STRUCT(fifo, PL330State, 0, vmstate_pl330_fifo, PL330Fifo), | |
290 | VMSTATE_STRUCT(read_queue, PL330State, 0, vmstate_pl330_queue, | |
291 | PL330Queue), | |
292 | VMSTATE_STRUCT(write_queue, PL330State, 0, vmstate_pl330_queue, | |
293 | PL330Queue), | |
294 | VMSTATE_TIMER(timer, PL330State), | |
295 | VMSTATE_UINT32(inten, PL330State), | |
296 | VMSTATE_UINT32(int_status, PL330State), | |
297 | VMSTATE_UINT32(ev_status, PL330State), | |
298 | VMSTATE_UINT32_ARRAY(dbg, PL330State, 2), | |
299 | VMSTATE_UINT8(debug_status, PL330State), | |
300 | VMSTATE_UINT8(num_faulting, PL330State), | |
301 | VMSTATE_UINT8_ARRAY(periph_busy, PL330State, PL330_PERIPH_NUM), | |
302 | VMSTATE_END_OF_LIST() | |
303 | } | |
304 | }; | |
305 | ||
306 | typedef struct PL330InsnDesc { | |
307 | /* OPCODE of the instruction */ | |
308 | uint8_t opcode; | |
309 | /* Mask so we can select several sibling instructions, such as | |
310 | DMALD, DMALDS and DMALDB */ | |
311 | uint8_t opmask; | |
312 | /* Size of instruction in bytes */ | |
313 | uint8_t size; | |
314 | /* Interpreter */ | |
315 | void (*exec)(PL330Chan *, uint8_t opcode, uint8_t *args, int len); | |
316 | } PL330InsnDesc; | |
317 | ||
318 | ||
319 | /* MFIFO Implementation | |
320 | * | |
321 | * MFIFO is implemented as a cyclic buffer of BUF_SIZE size. Tagged bytes are | |
322 | * stored in this buffer. Data is stored in BUF field, tags - in the | |
323 | * corresponding array elements of TAG field. | |
324 | */ | |
325 | ||
326 | /* Initialize queue. */ | |
327 | ||
328 | static void pl330_fifo_init(PL330Fifo *s, uint32_t size) | |
329 | { | |
330 | s->buf = g_malloc0(size); | |
331 | s->tag = g_malloc0(size); | |
332 | s->buf_size = size; | |
333 | } | |
334 | ||
335 | /* Cyclic increment */ | |
336 | ||
337 | static inline int pl330_fifo_inc(PL330Fifo *s, int x) | |
338 | { | |
339 | return (x + 1) % s->buf_size; | |
340 | } | |
341 | ||
342 | /* Number of empty bytes in MFIFO */ | |
343 | ||
344 | static inline int pl330_fifo_num_free(PL330Fifo *s) | |
345 | { | |
346 | return s->buf_size - s->num; | |
347 | } | |
348 | ||
349 | /* Push LEN bytes of data stored in BUF to MFIFO and tag it with TAG. | |
350 | * Zero returned on success, PL330_FIFO_STALL if there is no enough free | |
351 | * space in MFIFO to store requested amount of data. If push was unsuccessful | |
352 | * no data is stored to MFIFO. | |
353 | */ | |
354 | ||
355 | static int pl330_fifo_push(PL330Fifo *s, uint8_t *buf, int len, uint8_t tag) | |
356 | { | |
357 | int i; | |
358 | ||
359 | if (s->buf_size - s->num < len) { | |
360 | return PL330_FIFO_STALL; | |
361 | } | |
362 | for (i = 0; i < len; i++) { | |
363 | int push_idx = (s->head + s->num + i) % s->buf_size; | |
364 | s->buf[push_idx] = buf[i]; | |
365 | s->tag[push_idx] = tag; | |
366 | } | |
367 | s->num += len; | |
368 | return PL330_FIFO_OK; | |
369 | } | |
370 | ||
371 | /* Get LEN bytes of data from MFIFO and store it to BUF. Tag value of each | |
372 | * byte is verified. Zero returned on success, PL330_FIFO_ERR on tag mismatch | |
373 | * and PL330_FIFO_STALL if there is no enough data in MFIFO. If get was | |
374 | * unsuccessful no data is removed from MFIFO. | |
375 | */ | |
376 | ||
377 | static int pl330_fifo_get(PL330Fifo *s, uint8_t *buf, int len, uint8_t tag) | |
378 | { | |
379 | int i; | |
380 | ||
381 | if (s->num < len) { | |
382 | return PL330_FIFO_STALL; | |
383 | } | |
384 | for (i = 0; i < len; i++) { | |
385 | if (s->tag[s->head] == tag) { | |
386 | int get_idx = (s->head + i) % s->buf_size; | |
387 | buf[i] = s->buf[get_idx]; | |
388 | } else { /* Tag mismatch - Rollback transaction */ | |
389 | return PL330_FIFO_ERR; | |
390 | } | |
391 | } | |
392 | s->head = (s->head + len) % s->buf_size; | |
393 | s->num -= len; | |
394 | return PL330_FIFO_OK; | |
395 | } | |
396 | ||
397 | /* Reset MFIFO. This completely erases all data in it. */ | |
398 | ||
399 | static inline void pl330_fifo_reset(PL330Fifo *s) | |
400 | { | |
401 | s->head = 0; | |
402 | s->num = 0; | |
403 | } | |
404 | ||
405 | /* Return tag of the first byte stored in MFIFO. If MFIFO is empty | |
406 | * PL330_UNTAGGED is returned. | |
407 | */ | |
408 | ||
409 | static inline uint8_t pl330_fifo_tag(PL330Fifo *s) | |
410 | { | |
411 | return (!s->num) ? PL330_UNTAGGED : s->tag[s->head]; | |
412 | } | |
413 | ||
414 | /* Returns non-zero if tag TAG is present in fifo or zero otherwise */ | |
415 | ||
416 | static int pl330_fifo_has_tag(PL330Fifo *s, uint8_t tag) | |
417 | { | |
418 | int i, n; | |
419 | ||
420 | i = s->head; | |
421 | for (n = 0; n < s->num; n++) { | |
422 | if (s->tag[i] == tag) { | |
423 | return 1; | |
424 | } | |
425 | i = pl330_fifo_inc(s, i); | |
426 | } | |
427 | return 0; | |
428 | } | |
429 | ||
430 | /* Remove all entry tagged with TAG from MFIFO */ | |
431 | ||
432 | static void pl330_fifo_tagged_remove(PL330Fifo *s, uint8_t tag) | |
433 | { | |
434 | int i, t, n; | |
435 | ||
436 | t = i = s->head; | |
437 | for (n = 0; n < s->num; n++) { | |
438 | if (s->tag[i] != tag) { | |
439 | s->buf[t] = s->buf[i]; | |
440 | s->tag[t] = s->tag[i]; | |
441 | t = pl330_fifo_inc(s, t); | |
442 | } else { | |
443 | s->num = s->num - 1; | |
444 | } | |
445 | i = pl330_fifo_inc(s, i); | |
446 | } | |
447 | } | |
448 | ||
449 | /* Read-Write Queue implementation | |
450 | * | |
451 | * A Read-Write Queue stores up to QUEUE_SIZE instructions (loads or stores). | |
452 | * Each instruction is described by source (for loads) or destination (for | |
453 | * stores) address ADDR, width of data to be loaded/stored LEN, number of | |
454 | * stores/loads to be performed N, INC bit, Z bit and TAG to identify channel | |
455 | * this instruction belongs to. Queue does not store any information about | |
456 | * nature of the instruction: is it load or store. PL330 has different queues | |
457 | * for loads and stores so this is already known at the top level where it | |
458 | * matters. | |
459 | * | |
460 | * Queue works as FIFO for instructions with equivalent tags, but can issue | |
461 | * instructions with different tags in arbitrary order. SEQN field attached to | |
462 | * each instruction helps to achieve this. For each TAG queue contains | |
463 | * instructions with consecutive SEQN values ranging from LO_SEQN[TAG] to | |
464 | * HI_SEQN[TAG]-1 inclusive. SEQN is 8-bit unsigned integer, so SEQN=255 is | |
465 | * followed by SEQN=0. | |
466 | * | |
467 | * Z bit indicates that zeroes should be stored. No MFIFO fetches are performed | |
468 | * in this case. | |
469 | */ | |
470 | ||
471 | static void pl330_queue_reset(PL330Queue *s) | |
472 | { | |
473 | int i; | |
474 | ||
475 | for (i = 0; i < s->queue_size; i++) { | |
476 | s->queue[i].tag = PL330_UNTAGGED; | |
477 | } | |
478 | } | |
479 | ||
480 | /* Initialize queue */ | |
481 | static void pl330_queue_init(PL330Queue *s, int size, PL330State *parent) | |
482 | { | |
483 | s->parent = parent; | |
484 | s->queue = g_new0(PL330QueueEntry, size); | |
485 | s->queue_size = size; | |
486 | } | |
487 | ||
488 | /* Returns pointer to an empty slot or NULL if queue is full */ | |
489 | static PL330QueueEntry *pl330_queue_find_empty(PL330Queue *s) | |
490 | { | |
491 | int i; | |
492 | ||
493 | for (i = 0; i < s->queue_size; i++) { | |
494 | if (s->queue[i].tag == PL330_UNTAGGED) { | |
495 | return &s->queue[i]; | |
496 | } | |
497 | } | |
498 | return NULL; | |
499 | } | |
500 | ||
501 | /* Put instruction in queue. | |
502 | * Return value: | |
503 | * - zero - OK | |
504 | * - non-zero - queue is full | |
505 | */ | |
506 | ||
507 | static int pl330_queue_put_insn(PL330Queue *s, uint32_t addr, | |
508 | int len, int n, bool inc, bool z, uint8_t tag) | |
509 | { | |
510 | PL330QueueEntry *entry = pl330_queue_find_empty(s); | |
511 | ||
512 | if (!entry) { | |
513 | return 1; | |
514 | } | |
515 | entry->tag = tag; | |
516 | entry->addr = addr; | |
517 | entry->len = len; | |
518 | entry->n = n; | |
519 | entry->z = z; | |
520 | entry->inc = inc; | |
521 | entry->seqn = s->parent->hi_seqn[tag]; | |
522 | s->parent->hi_seqn[tag]++; | |
523 | return 0; | |
524 | } | |
525 | ||
526 | /* Returns a pointer to queue slot containing instruction which satisfies | |
527 | * following conditions: | |
528 | * - it has valid tag value (not PL330_UNTAGGED) | |
529 | * - if enforce_seq is set it has to be issuable without violating queue | |
530 | * logic (see above) | |
531 | * - if TAG argument is not PL330_UNTAGGED this instruction has tag value | |
532 | * equivalent to the argument TAG value. | |
533 | * If such instruction cannot be found NULL is returned. | |
534 | */ | |
535 | ||
536 | static PL330QueueEntry *pl330_queue_find_insn(PL330Queue *s, uint8_t tag, | |
537 | bool enforce_seq) | |
538 | { | |
539 | int i; | |
540 | ||
541 | for (i = 0; i < s->queue_size; i++) { | |
542 | if (s->queue[i].tag != PL330_UNTAGGED) { | |
543 | if ((!enforce_seq || | |
544 | s->queue[i].seqn == s->parent->lo_seqn[s->queue[i].tag]) && | |
545 | (s->queue[i].tag == tag || tag == PL330_UNTAGGED || | |
546 | s->queue[i].z)) { | |
547 | return &s->queue[i]; | |
548 | } | |
549 | } | |
550 | } | |
551 | return NULL; | |
552 | } | |
553 | ||
554 | /* Removes instruction from queue. */ | |
555 | ||
556 | static inline void pl330_queue_remove_insn(PL330Queue *s, PL330QueueEntry *e) | |
557 | { | |
558 | s->parent->lo_seqn[e->tag]++; | |
559 | e->tag = PL330_UNTAGGED; | |
560 | } | |
561 | ||
562 | /* Removes all instructions tagged with TAG from queue. */ | |
563 | ||
564 | static inline void pl330_queue_remove_tagged(PL330Queue *s, uint8_t tag) | |
565 | { | |
566 | int i; | |
567 | ||
568 | for (i = 0; i < s->queue_size; i++) { | |
569 | if (s->queue[i].tag == tag) { | |
570 | s->queue[i].tag = PL330_UNTAGGED; | |
571 | } | |
572 | } | |
573 | } | |
574 | ||
575 | /* DMA instruction execution engine */ | |
576 | ||
577 | /* Moves DMA channel to the FAULT state and updates it's status. */ | |
578 | ||
579 | static inline void pl330_fault(PL330Chan *ch, uint32_t flags) | |
580 | { | |
c3143ba8 | 581 | DB_PRINT("ch: %p, flags: %" PRIx32 "\n", ch, flags); |
06a1cea5 PC |
582 | ch->fault_type |= flags; |
583 | if (ch->state == pl330_chan_fault) { | |
584 | return; | |
585 | } | |
586 | ch->state = pl330_chan_fault; | |
587 | ch->parent->num_faulting++; | |
588 | if (ch->parent->num_faulting == 1) { | |
589 | DB_PRINT("abort interrupt raised\n"); | |
590 | qemu_irq_raise(ch->parent->irq_abort); | |
591 | } | |
592 | } | |
593 | ||
594 | /* | |
595 | * For information about instructions see PL330 Technical Reference Manual. | |
596 | * | |
597 | * Arguments: | |
598 | * CH - channel executing the instruction | |
599 | * OPCODE - opcode | |
600 | * ARGS - array of 8-bit arguments | |
601 | * LEN - number of elements in ARGS array | |
602 | */ | |
603 | ||
604 | static void pl330_dmaaddh(PL330Chan *ch, uint8_t opcode, uint8_t *args, int len) | |
605 | { | |
606 | uint16_t im = (((uint16_t)args[1]) << 8) | ((uint16_t)args[0]); | |
607 | uint8_t ra = (opcode >> 1) & 1; | |
608 | ||
609 | if (ch->is_manager) { | |
610 | pl330_fault(ch, PL330_FAULT_UNDEF_INSTR); | |
611 | return; | |
612 | } | |
613 | if (ra) { | |
614 | ch->dst += im; | |
615 | } else { | |
616 | ch->src += im; | |
617 | } | |
618 | } | |
619 | ||
620 | static void pl330_dmaend(PL330Chan *ch, uint8_t opcode, | |
621 | uint8_t *args, int len) | |
622 | { | |
623 | PL330State *s = ch->parent; | |
624 | ||
625 | if (ch->state == pl330_chan_executing && !ch->is_manager) { | |
626 | /* Wait for all transfers to complete */ | |
627 | if (pl330_fifo_has_tag(&s->fifo, ch->tag) || | |
628 | pl330_queue_find_insn(&s->read_queue, ch->tag, false) != NULL || | |
629 | pl330_queue_find_insn(&s->write_queue, ch->tag, false) != NULL) { | |
630 | ||
631 | ch->stall = 1; | |
632 | return; | |
633 | } | |
634 | } | |
635 | DB_PRINT("DMA ending!\n"); | |
636 | pl330_fifo_tagged_remove(&s->fifo, ch->tag); | |
637 | pl330_queue_remove_tagged(&s->read_queue, ch->tag); | |
638 | pl330_queue_remove_tagged(&s->write_queue, ch->tag); | |
639 | ch->state = pl330_chan_stopped; | |
640 | } | |
641 | ||
642 | static void pl330_dmaflushp(PL330Chan *ch, uint8_t opcode, | |
643 | uint8_t *args, int len) | |
644 | { | |
645 | uint8_t periph_id; | |
646 | ||
647 | if (args[0] & 7) { | |
648 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
649 | return; | |
650 | } | |
651 | periph_id = (args[0] >> 3) & 0x1f; | |
652 | if (periph_id >= ch->parent->num_periph_req) { | |
653 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
654 | return; | |
655 | } | |
656 | if (ch->ns && !(ch->parent->cfg[CFG_PNS] & (1 << periph_id))) { | |
657 | pl330_fault(ch, PL330_FAULT_CH_PERIPH_ERR); | |
658 | return; | |
659 | } | |
660 | /* Do nothing */ | |
661 | } | |
662 | ||
663 | static void pl330_dmago(PL330Chan *ch, uint8_t opcode, uint8_t *args, int len) | |
664 | { | |
665 | uint8_t chan_id; | |
666 | uint8_t ns; | |
667 | uint32_t pc; | |
668 | PL330Chan *s; | |
669 | ||
670 | DB_PRINT("\n"); | |
671 | ||
672 | if (!ch->is_manager) { | |
673 | pl330_fault(ch, PL330_FAULT_UNDEF_INSTR); | |
674 | return; | |
675 | } | |
676 | ns = !!(opcode & 2); | |
677 | chan_id = args[0] & 7; | |
678 | if ((args[0] >> 3)) { | |
679 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
680 | return; | |
681 | } | |
682 | if (chan_id >= ch->parent->num_chnls) { | |
683 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
684 | return; | |
685 | } | |
686 | pc = (((uint32_t)args[4]) << 24) | (((uint32_t)args[3]) << 16) | | |
687 | (((uint32_t)args[2]) << 8) | (((uint32_t)args[1])); | |
688 | if (ch->parent->chan[chan_id].state != pl330_chan_stopped) { | |
689 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
690 | return; | |
691 | } | |
692 | if (ch->ns && !ns) { | |
693 | pl330_fault(ch, PL330_FAULT_DMAGO_ERR); | |
694 | return; | |
695 | } | |
696 | s = &ch->parent->chan[chan_id]; | |
697 | s->ns = ns; | |
698 | s->pc = pc; | |
699 | s->state = pl330_chan_executing; | |
700 | } | |
701 | ||
702 | static void pl330_dmald(PL330Chan *ch, uint8_t opcode, uint8_t *args, int len) | |
703 | { | |
704 | uint8_t bs = opcode & 3; | |
705 | uint32_t size, num; | |
706 | bool inc; | |
707 | ||
708 | if (bs == 2) { | |
709 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
710 | return; | |
711 | } | |
712 | if ((bs == 1 && ch->request_flag == PL330_BURST) || | |
713 | (bs == 3 && ch->request_flag == PL330_SINGLE)) { | |
714 | /* Perform NOP */ | |
715 | return; | |
716 | } | |
717 | if (bs == 1 && ch->request_flag == PL330_SINGLE) { | |
718 | num = 1; | |
719 | } else { | |
720 | num = ((ch->control >> 4) & 0xf) + 1; | |
721 | } | |
722 | size = (uint32_t)1 << ((ch->control >> 1) & 0x7); | |
723 | inc = !!(ch->control & 1); | |
724 | ch->stall = pl330_queue_put_insn(&ch->parent->read_queue, ch->src, | |
725 | size, num, inc, 0, ch->tag); | |
726 | if (!ch->stall) { | |
c3143ba8 PC |
727 | DB_PRINT("channel:%" PRId8 " address:%08" PRIx32 " size:%" PRIx32 |
728 | " num:%" PRId32 " %c\n", | |
06a1cea5 PC |
729 | ch->tag, ch->src, size, num, inc ? 'Y' : 'N'); |
730 | ch->src += inc ? size * num - (ch->src & (size - 1)) : 0; | |
731 | } | |
732 | } | |
733 | ||
734 | static void pl330_dmaldp(PL330Chan *ch, uint8_t opcode, uint8_t *args, int len) | |
735 | { | |
736 | uint8_t periph_id; | |
737 | ||
738 | if (args[0] & 7) { | |
739 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
740 | return; | |
741 | } | |
742 | periph_id = (args[0] >> 3) & 0x1f; | |
743 | if (periph_id >= ch->parent->num_periph_req) { | |
744 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
745 | return; | |
746 | } | |
747 | if (ch->ns && !(ch->parent->cfg[CFG_PNS] & (1 << periph_id))) { | |
748 | pl330_fault(ch, PL330_FAULT_CH_PERIPH_ERR); | |
749 | return; | |
750 | } | |
751 | pl330_dmald(ch, opcode, args, len); | |
752 | } | |
753 | ||
754 | static void pl330_dmalp(PL330Chan *ch, uint8_t opcode, uint8_t *args, int len) | |
755 | { | |
756 | uint8_t lc = (opcode & 2) >> 1; | |
757 | ||
758 | ch->lc[lc] = args[0]; | |
759 | } | |
760 | ||
761 | static void pl330_dmakill(PL330Chan *ch, uint8_t opcode, uint8_t *args, int len) | |
762 | { | |
763 | if (ch->state == pl330_chan_fault || | |
764 | ch->state == pl330_chan_fault_completing) { | |
765 | /* This is the only way for a channel to leave the faulting state */ | |
766 | ch->fault_type = 0; | |
767 | ch->parent->num_faulting--; | |
768 | if (ch->parent->num_faulting == 0) { | |
769 | DB_PRINT("abort interrupt lowered\n"); | |
770 | qemu_irq_lower(ch->parent->irq_abort); | |
771 | } | |
772 | } | |
773 | ch->state = pl330_chan_killing; | |
774 | pl330_fifo_tagged_remove(&ch->parent->fifo, ch->tag); | |
775 | pl330_queue_remove_tagged(&ch->parent->read_queue, ch->tag); | |
776 | pl330_queue_remove_tagged(&ch->parent->write_queue, ch->tag); | |
777 | ch->state = pl330_chan_stopped; | |
778 | } | |
779 | ||
780 | static void pl330_dmalpend(PL330Chan *ch, uint8_t opcode, | |
781 | uint8_t *args, int len) | |
782 | { | |
783 | uint8_t nf = (opcode & 0x10) >> 4; | |
784 | uint8_t bs = opcode & 3; | |
785 | uint8_t lc = (opcode & 4) >> 2; | |
786 | ||
787 | if (bs == 2) { | |
788 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
789 | return; | |
790 | } | |
791 | if ((bs == 1 && ch->request_flag == PL330_BURST) || | |
792 | (bs == 3 && ch->request_flag == PL330_SINGLE)) { | |
793 | /* Perform NOP */ | |
794 | return; | |
795 | } | |
796 | if (!nf || ch->lc[lc]) { | |
797 | if (nf) { | |
798 | ch->lc[lc]--; | |
799 | } | |
800 | DB_PRINT("loop reiteration\n"); | |
801 | ch->pc -= args[0]; | |
802 | ch->pc -= len + 1; | |
803 | /* "ch->pc -= args[0] + len + 1" is incorrect when args[0] == 256 */ | |
804 | } else { | |
805 | DB_PRINT("loop fallthrough\n"); | |
806 | } | |
807 | } | |
808 | ||
809 | ||
810 | static void pl330_dmamov(PL330Chan *ch, uint8_t opcode, uint8_t *args, int len) | |
811 | { | |
812 | uint8_t rd = args[0] & 7; | |
813 | uint32_t im; | |
814 | ||
815 | if ((args[0] >> 3)) { | |
816 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
817 | return; | |
818 | } | |
819 | im = (((uint32_t)args[4]) << 24) | (((uint32_t)args[3]) << 16) | | |
820 | (((uint32_t)args[2]) << 8) | (((uint32_t)args[1])); | |
821 | switch (rd) { | |
822 | case 0: | |
823 | ch->src = im; | |
824 | break; | |
825 | case 1: | |
826 | ch->control = im; | |
827 | break; | |
828 | case 2: | |
829 | ch->dst = im; | |
830 | break; | |
831 | default: | |
832 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
833 | return; | |
834 | } | |
835 | } | |
836 | ||
837 | static void pl330_dmanop(PL330Chan *ch, uint8_t opcode, | |
838 | uint8_t *args, int len) | |
839 | { | |
840 | /* NOP is NOP. */ | |
841 | } | |
842 | ||
843 | static void pl330_dmarmb(PL330Chan *ch, uint8_t opcode, uint8_t *args, int len) | |
844 | { | |
845 | if (pl330_queue_find_insn(&ch->parent->read_queue, ch->tag, false)) { | |
846 | ch->state = pl330_chan_at_barrier; | |
847 | ch->stall = 1; | |
848 | return; | |
849 | } else { | |
850 | ch->state = pl330_chan_executing; | |
851 | } | |
852 | } | |
853 | ||
854 | static void pl330_dmasev(PL330Chan *ch, uint8_t opcode, uint8_t *args, int len) | |
855 | { | |
856 | uint8_t ev_id; | |
857 | ||
858 | if (args[0] & 7) { | |
859 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
860 | return; | |
861 | } | |
862 | ev_id = (args[0] >> 3) & 0x1f; | |
863 | if (ev_id >= ch->parent->num_events) { | |
864 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
865 | return; | |
866 | } | |
867 | if (ch->ns && !(ch->parent->cfg[CFG_INS] & (1 << ev_id))) { | |
868 | pl330_fault(ch, PL330_FAULT_EVENT_ERR); | |
869 | return; | |
870 | } | |
871 | if (ch->parent->inten & (1 << ev_id)) { | |
872 | ch->parent->int_status |= (1 << ev_id); | |
c3143ba8 | 873 | DB_PRINT("event interrupt raised %" PRId8 "\n", ev_id); |
06a1cea5 | 874 | qemu_irq_raise(ch->parent->irq[ev_id]); |
06a1cea5 | 875 | } |
432a0a13 | 876 | DB_PRINT("event raised %" PRId8 "\n", ev_id); |
fd7f8a99 | 877 | ch->parent->ev_status |= (1 << ev_id); |
06a1cea5 PC |
878 | } |
879 | ||
880 | static void pl330_dmast(PL330Chan *ch, uint8_t opcode, uint8_t *args, int len) | |
881 | { | |
882 | uint8_t bs = opcode & 3; | |
883 | uint32_t size, num; | |
884 | bool inc; | |
885 | ||
886 | if (bs == 2) { | |
887 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
888 | return; | |
889 | } | |
890 | if ((bs == 1 && ch->request_flag == PL330_BURST) || | |
891 | (bs == 3 && ch->request_flag == PL330_SINGLE)) { | |
892 | /* Perform NOP */ | |
893 | return; | |
894 | } | |
895 | num = ((ch->control >> 18) & 0xf) + 1; | |
896 | size = (uint32_t)1 << ((ch->control >> 15) & 0x7); | |
897 | inc = !!((ch->control >> 14) & 1); | |
898 | ch->stall = pl330_queue_put_insn(&ch->parent->write_queue, ch->dst, | |
899 | size, num, inc, 0, ch->tag); | |
900 | if (!ch->stall) { | |
c3143ba8 PC |
901 | DB_PRINT("channel:%" PRId8 " address:%08" PRIx32 " size:%" PRIx32 |
902 | " num:%" PRId32 " %c\n", | |
06a1cea5 PC |
903 | ch->tag, ch->dst, size, num, inc ? 'Y' : 'N'); |
904 | ch->dst += inc ? size * num - (ch->dst & (size - 1)) : 0; | |
905 | } | |
906 | } | |
907 | ||
908 | static void pl330_dmastp(PL330Chan *ch, uint8_t opcode, | |
909 | uint8_t *args, int len) | |
910 | { | |
911 | uint8_t periph_id; | |
912 | ||
913 | if (args[0] & 7) { | |
914 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
915 | return; | |
916 | } | |
917 | periph_id = (args[0] >> 3) & 0x1f; | |
918 | if (periph_id >= ch->parent->num_periph_req) { | |
919 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
920 | return; | |
921 | } | |
922 | if (ch->ns && !(ch->parent->cfg[CFG_PNS] & (1 << periph_id))) { | |
923 | pl330_fault(ch, PL330_FAULT_CH_PERIPH_ERR); | |
924 | return; | |
925 | } | |
926 | pl330_dmast(ch, opcode, args, len); | |
927 | } | |
928 | ||
929 | static void pl330_dmastz(PL330Chan *ch, uint8_t opcode, | |
930 | uint8_t *args, int len) | |
931 | { | |
932 | uint32_t size, num; | |
933 | bool inc; | |
934 | ||
935 | num = ((ch->control >> 18) & 0xf) + 1; | |
936 | size = (uint32_t)1 << ((ch->control >> 15) & 0x7); | |
937 | inc = !!((ch->control >> 14) & 1); | |
938 | ch->stall = pl330_queue_put_insn(&ch->parent->write_queue, ch->dst, | |
939 | size, num, inc, 1, ch->tag); | |
940 | if (inc) { | |
941 | ch->dst += size * num; | |
942 | } | |
943 | } | |
944 | ||
945 | static void pl330_dmawfe(PL330Chan *ch, uint8_t opcode, | |
946 | uint8_t *args, int len) | |
947 | { | |
948 | uint8_t ev_id; | |
949 | int i; | |
950 | ||
951 | if (args[0] & 5) { | |
952 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
953 | return; | |
954 | } | |
955 | ev_id = (args[0] >> 3) & 0x1f; | |
956 | if (ev_id >= ch->parent->num_events) { | |
957 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
958 | return; | |
959 | } | |
960 | if (ch->ns && !(ch->parent->cfg[CFG_INS] & (1 << ev_id))) { | |
961 | pl330_fault(ch, PL330_FAULT_EVENT_ERR); | |
962 | return; | |
963 | } | |
964 | ch->wakeup = ev_id; | |
965 | ch->state = pl330_chan_waiting_event; | |
966 | if (~ch->parent->inten & ch->parent->ev_status & 1 << ev_id) { | |
967 | ch->state = pl330_chan_executing; | |
968 | /* If anyone else is currently waiting on the same event, let them | |
969 | * clear the ev_status so they pick up event as well | |
970 | */ | |
971 | for (i = 0; i < ch->parent->num_chnls; ++i) { | |
972 | PL330Chan *peer = &ch->parent->chan[i]; | |
973 | if (peer->state == pl330_chan_waiting_event && | |
974 | peer->wakeup == ev_id) { | |
975 | return; | |
976 | } | |
977 | } | |
978 | ch->parent->ev_status &= ~(1 << ev_id); | |
432a0a13 | 979 | DB_PRINT("event lowered %" PRIx8 "\n", ev_id); |
06a1cea5 PC |
980 | } else { |
981 | ch->stall = 1; | |
982 | } | |
983 | } | |
984 | ||
985 | static void pl330_dmawfp(PL330Chan *ch, uint8_t opcode, | |
986 | uint8_t *args, int len) | |
987 | { | |
988 | uint8_t bs = opcode & 3; | |
989 | uint8_t periph_id; | |
990 | ||
991 | if (args[0] & 7) { | |
992 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
993 | return; | |
994 | } | |
995 | periph_id = (args[0] >> 3) & 0x1f; | |
996 | if (periph_id >= ch->parent->num_periph_req) { | |
997 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
998 | return; | |
999 | } | |
1000 | if (ch->ns && !(ch->parent->cfg[CFG_PNS] & (1 << periph_id))) { | |
1001 | pl330_fault(ch, PL330_FAULT_CH_PERIPH_ERR); | |
1002 | return; | |
1003 | } | |
1004 | switch (bs) { | |
1005 | case 0: /* S */ | |
1006 | ch->request_flag = PL330_SINGLE; | |
1007 | ch->wfp_sbp = 0; | |
1008 | break; | |
1009 | case 1: /* P */ | |
1010 | ch->request_flag = PL330_BURST; | |
1011 | ch->wfp_sbp = 2; | |
1012 | break; | |
1013 | case 2: /* B */ | |
1014 | ch->request_flag = PL330_BURST; | |
1015 | ch->wfp_sbp = 1; | |
1016 | break; | |
1017 | default: | |
1018 | pl330_fault(ch, PL330_FAULT_OPERAND_INVALID); | |
1019 | return; | |
1020 | } | |
1021 | ||
1022 | if (ch->parent->periph_busy[periph_id]) { | |
1023 | ch->state = pl330_chan_waiting_periph; | |
1024 | ch->stall = 1; | |
1025 | } else if (ch->state == pl330_chan_waiting_periph) { | |
1026 | ch->state = pl330_chan_executing; | |
1027 | } | |
1028 | } | |
1029 | ||
1030 | static void pl330_dmawmb(PL330Chan *ch, uint8_t opcode, | |
1031 | uint8_t *args, int len) | |
1032 | { | |
1033 | if (pl330_queue_find_insn(&ch->parent->write_queue, ch->tag, false)) { | |
1034 | ch->state = pl330_chan_at_barrier; | |
1035 | ch->stall = 1; | |
1036 | return; | |
1037 | } else { | |
1038 | ch->state = pl330_chan_executing; | |
1039 | } | |
1040 | } | |
1041 | ||
1042 | /* NULL terminated array of the instruction descriptions. */ | |
1043 | static const PL330InsnDesc insn_desc[] = { | |
1044 | { .opcode = 0x54, .opmask = 0xFD, .size = 3, .exec = pl330_dmaaddh, }, | |
1045 | { .opcode = 0x00, .opmask = 0xFF, .size = 1, .exec = pl330_dmaend, }, | |
1046 | { .opcode = 0x35, .opmask = 0xFF, .size = 2, .exec = pl330_dmaflushp, }, | |
1047 | { .opcode = 0xA0, .opmask = 0xFD, .size = 6, .exec = pl330_dmago, }, | |
1048 | { .opcode = 0x04, .opmask = 0xFC, .size = 1, .exec = pl330_dmald, }, | |
1049 | { .opcode = 0x25, .opmask = 0xFD, .size = 2, .exec = pl330_dmaldp, }, | |
1050 | { .opcode = 0x20, .opmask = 0xFD, .size = 2, .exec = pl330_dmalp, }, | |
1051 | /* dmastp must be before dmalpend in this list, because their maps | |
1052 | * are overlapping | |
1053 | */ | |
1054 | { .opcode = 0x29, .opmask = 0xFD, .size = 2, .exec = pl330_dmastp, }, | |
1055 | { .opcode = 0x28, .opmask = 0xE8, .size = 2, .exec = pl330_dmalpend, }, | |
1056 | { .opcode = 0x01, .opmask = 0xFF, .size = 1, .exec = pl330_dmakill, }, | |
1057 | { .opcode = 0xBC, .opmask = 0xFF, .size = 6, .exec = pl330_dmamov, }, | |
1058 | { .opcode = 0x18, .opmask = 0xFF, .size = 1, .exec = pl330_dmanop, }, | |
1059 | { .opcode = 0x12, .opmask = 0xFF, .size = 1, .exec = pl330_dmarmb, }, | |
1060 | { .opcode = 0x34, .opmask = 0xFF, .size = 2, .exec = pl330_dmasev, }, | |
1061 | { .opcode = 0x08, .opmask = 0xFC, .size = 1, .exec = pl330_dmast, }, | |
1062 | { .opcode = 0x0C, .opmask = 0xFF, .size = 1, .exec = pl330_dmastz, }, | |
1063 | { .opcode = 0x36, .opmask = 0xFF, .size = 2, .exec = pl330_dmawfe, }, | |
1064 | { .opcode = 0x30, .opmask = 0xFC, .size = 2, .exec = pl330_dmawfp, }, | |
1065 | { .opcode = 0x13, .opmask = 0xFF, .size = 1, .exec = pl330_dmawmb, }, | |
1066 | { .opcode = 0x00, .opmask = 0x00, .size = 0, .exec = NULL, } | |
1067 | }; | |
1068 | ||
1069 | /* Instructions which can be issued via debug registers. */ | |
1070 | static const PL330InsnDesc debug_insn_desc[] = { | |
1071 | { .opcode = 0xA0, .opmask = 0xFD, .size = 6, .exec = pl330_dmago, }, | |
1072 | { .opcode = 0x01, .opmask = 0xFF, .size = 1, .exec = pl330_dmakill, }, | |
1073 | { .opcode = 0x34, .opmask = 0xFF, .size = 2, .exec = pl330_dmasev, }, | |
1074 | { .opcode = 0x00, .opmask = 0x00, .size = 0, .exec = NULL, } | |
1075 | }; | |
1076 | ||
1077 | static inline const PL330InsnDesc *pl330_fetch_insn(PL330Chan *ch) | |
1078 | { | |
1079 | uint8_t opcode; | |
1080 | int i; | |
1081 | ||
df32fd1c | 1082 | dma_memory_read(&address_space_memory, ch->pc, &opcode, 1); |
06a1cea5 PC |
1083 | for (i = 0; insn_desc[i].size; i++) { |
1084 | if ((opcode & insn_desc[i].opmask) == insn_desc[i].opcode) { | |
1085 | return &insn_desc[i]; | |
1086 | } | |
1087 | } | |
1088 | return NULL; | |
1089 | } | |
1090 | ||
1091 | static inline void pl330_exec_insn(PL330Chan *ch, const PL330InsnDesc *insn) | |
1092 | { | |
1093 | uint8_t buf[PL330_INSN_MAXSIZE]; | |
1094 | ||
1095 | assert(insn->size <= PL330_INSN_MAXSIZE); | |
df32fd1c | 1096 | dma_memory_read(&address_space_memory, ch->pc, buf, insn->size); |
06a1cea5 PC |
1097 | insn->exec(ch, buf[0], &buf[1], insn->size - 1); |
1098 | } | |
1099 | ||
1100 | static inline void pl330_update_pc(PL330Chan *ch, | |
1101 | const PL330InsnDesc *insn) | |
1102 | { | |
1103 | ch->pc += insn->size; | |
1104 | } | |
1105 | ||
1106 | /* Try to execute current instruction in channel CH. Number of executed | |
1107 | instructions is returned (0 or 1). */ | |
1108 | static int pl330_chan_exec(PL330Chan *ch) | |
1109 | { | |
1110 | const PL330InsnDesc *insn; | |
1111 | ||
1112 | if (ch->state != pl330_chan_executing && | |
1113 | ch->state != pl330_chan_waiting_periph && | |
1114 | ch->state != pl330_chan_at_barrier && | |
1115 | ch->state != pl330_chan_waiting_event) { | |
06a1cea5 PC |
1116 | return 0; |
1117 | } | |
1118 | ch->stall = 0; | |
1119 | insn = pl330_fetch_insn(ch); | |
1120 | if (!insn) { | |
1121 | DB_PRINT("pl330 undefined instruction\n"); | |
1122 | pl330_fault(ch, PL330_FAULT_UNDEF_INSTR); | |
1123 | return 0; | |
1124 | } | |
1125 | pl330_exec_insn(ch, insn); | |
1126 | if (!ch->stall) { | |
1127 | pl330_update_pc(ch, insn); | |
1128 | ch->watchdog_timer = 0; | |
1129 | return 1; | |
1130 | /* WDT only active in exec state */ | |
1131 | } else if (ch->state == pl330_chan_executing) { | |
1132 | ch->watchdog_timer++; | |
1133 | if (ch->watchdog_timer >= PL330_WATCHDOG_LIMIT) { | |
1134 | pl330_fault(ch, PL330_FAULT_LOCKUP_ERR); | |
1135 | } | |
1136 | } | |
1137 | return 0; | |
1138 | } | |
1139 | ||
1140 | /* Try to execute 1 instruction in each channel, one instruction from read | |
1141 | queue and one instruction from write queue. Number of successfully executed | |
1142 | instructions is returned. */ | |
1143 | static int pl330_exec_cycle(PL330Chan *channel) | |
1144 | { | |
1145 | PL330State *s = channel->parent; | |
1146 | PL330QueueEntry *q; | |
1147 | int i; | |
1148 | int num_exec = 0; | |
1149 | int fifo_res = 0; | |
1150 | uint8_t buf[PL330_MAX_BURST_LEN]; | |
1151 | ||
1152 | /* Execute one instruction in each channel */ | |
1153 | num_exec += pl330_chan_exec(channel); | |
1154 | ||
1155 | /* Execute one instruction from read queue */ | |
1156 | q = pl330_queue_find_insn(&s->read_queue, PL330_UNTAGGED, true); | |
1157 | if (q != NULL && q->len <= pl330_fifo_num_free(&s->fifo)) { | |
1158 | int len = q->len - (q->addr & (q->len - 1)); | |
1159 | ||
df32fd1c | 1160 | dma_memory_read(&address_space_memory, q->addr, buf, len); |
06a1cea5 | 1161 | if (PL330_ERR_DEBUG > 1) { |
c3143ba8 | 1162 | DB_PRINT("PL330 read from memory @%08" PRIx32 " (size = %08x):\n", |
06a1cea5 | 1163 | q->addr, len); |
3568ac2a | 1164 | qemu_hexdump((char *)buf, stderr, "", len); |
06a1cea5 PC |
1165 | } |
1166 | fifo_res = pl330_fifo_push(&s->fifo, buf, len, q->tag); | |
1167 | if (fifo_res == PL330_FIFO_OK) { | |
1168 | if (q->inc) { | |
1169 | q->addr += len; | |
1170 | } | |
1171 | q->n--; | |
1172 | if (!q->n) { | |
1173 | pl330_queue_remove_insn(&s->read_queue, q); | |
1174 | } | |
1175 | num_exec++; | |
1176 | } | |
1177 | } | |
1178 | ||
1179 | /* Execute one instruction from write queue. */ | |
1180 | q = pl330_queue_find_insn(&s->write_queue, pl330_fifo_tag(&s->fifo), true); | |
1181 | if (q != NULL) { | |
1182 | int len = q->len - (q->addr & (q->len - 1)); | |
1183 | ||
1184 | if (q->z) { | |
1185 | for (i = 0; i < len; i++) { | |
1186 | buf[i] = 0; | |
1187 | } | |
1188 | } else { | |
1189 | fifo_res = pl330_fifo_get(&s->fifo, buf, len, q->tag); | |
1190 | } | |
1191 | if (fifo_res == PL330_FIFO_OK || q->z) { | |
df32fd1c | 1192 | dma_memory_write(&address_space_memory, q->addr, buf, len); |
06a1cea5 | 1193 | if (PL330_ERR_DEBUG > 1) { |
c3143ba8 PC |
1194 | DB_PRINT("PL330 read from memory @%08" PRIx32 |
1195 | " (size = %08x):\n", q->addr, len); | |
3568ac2a | 1196 | qemu_hexdump((char *)buf, stderr, "", len); |
06a1cea5 PC |
1197 | } |
1198 | if (q->inc) { | |
1199 | q->addr += len; | |
1200 | } | |
1201 | num_exec++; | |
1202 | } else if (fifo_res == PL330_FIFO_STALL) { | |
1203 | pl330_fault(&channel->parent->chan[q->tag], | |
1204 | PL330_FAULT_FIFOEMPTY_ERR); | |
1205 | } | |
1206 | q->n--; | |
1207 | if (!q->n) { | |
1208 | pl330_queue_remove_insn(&s->write_queue, q); | |
1209 | } | |
1210 | } | |
1211 | ||
1212 | return num_exec; | |
1213 | } | |
1214 | ||
1215 | static int pl330_exec_channel(PL330Chan *channel) | |
1216 | { | |
1217 | int insr_exec = 0; | |
1218 | ||
1219 | /* TODO: Is it all right to execute everything or should we do per-cycle | |
1220 | simulation? */ | |
1221 | while (pl330_exec_cycle(channel)) { | |
1222 | insr_exec++; | |
1223 | } | |
1224 | ||
1225 | /* Detect deadlock */ | |
1226 | if (channel->state == pl330_chan_executing) { | |
1227 | pl330_fault(channel, PL330_FAULT_LOCKUP_ERR); | |
1228 | } | |
1229 | /* Situation when one of the queues has deadlocked but all channels | |
1230 | * have finished their programs should be impossible. | |
1231 | */ | |
1232 | ||
1233 | return insr_exec; | |
1234 | } | |
1235 | ||
1236 | static inline void pl330_exec(PL330State *s) | |
1237 | { | |
1238 | DB_PRINT("\n"); | |
1239 | int i, insr_exec; | |
1240 | do { | |
1241 | insr_exec = pl330_exec_channel(&s->manager); | |
1242 | ||
1243 | for (i = 0; i < s->num_chnls; i++) { | |
1244 | insr_exec += pl330_exec_channel(&s->chan[i]); | |
1245 | } | |
1246 | } while (insr_exec); | |
1247 | } | |
1248 | ||
1249 | static void pl330_exec_cycle_timer(void *opaque) | |
1250 | { | |
1251 | PL330State *s = (PL330State *)opaque; | |
1252 | pl330_exec(s); | |
1253 | } | |
1254 | ||
1255 | /* Stop or restore dma operations */ | |
1256 | ||
1257 | static void pl330_dma_stop_irq(void *opaque, int irq, int level) | |
1258 | { | |
1259 | PL330State *s = (PL330State *)opaque; | |
1260 | ||
1261 | if (s->periph_busy[irq] != level) { | |
1262 | s->periph_busy[irq] = level; | |
bc72ad67 | 1263 | timer_mod(s->timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL)); |
06a1cea5 PC |
1264 | } |
1265 | } | |
1266 | ||
1267 | static void pl330_debug_exec(PL330State *s) | |
1268 | { | |
1269 | uint8_t args[5]; | |
1270 | uint8_t opcode; | |
1271 | uint8_t chan_id; | |
1272 | int i; | |
1273 | PL330Chan *ch; | |
1274 | const PL330InsnDesc *insn; | |
1275 | ||
1276 | s->debug_status = 1; | |
1277 | chan_id = (s->dbg[0] >> 8) & 0x07; | |
1278 | opcode = (s->dbg[0] >> 16) & 0xff; | |
1279 | args[0] = (s->dbg[0] >> 24) & 0xff; | |
1280 | args[1] = (s->dbg[1] >> 0) & 0xff; | |
1281 | args[2] = (s->dbg[1] >> 8) & 0xff; | |
1282 | args[3] = (s->dbg[1] >> 16) & 0xff; | |
1283 | args[4] = (s->dbg[1] >> 24) & 0xff; | |
c3143ba8 | 1284 | DB_PRINT("chan id: %" PRIx8 "\n", chan_id); |
06a1cea5 PC |
1285 | if (s->dbg[0] & 1) { |
1286 | ch = &s->chan[chan_id]; | |
1287 | } else { | |
1288 | ch = &s->manager; | |
1289 | } | |
1290 | insn = NULL; | |
1291 | for (i = 0; debug_insn_desc[i].size; i++) { | |
1292 | if ((opcode & debug_insn_desc[i].opmask) == debug_insn_desc[i].opcode) { | |
1293 | insn = &debug_insn_desc[i]; | |
1294 | } | |
1295 | } | |
1296 | if (!insn) { | |
1297 | pl330_fault(ch, PL330_FAULT_UNDEF_INSTR | PL330_FAULT_DBG_INSTR); | |
1298 | return ; | |
1299 | } | |
1300 | ch->stall = 0; | |
1301 | insn->exec(ch, opcode, args, insn->size - 1); | |
1302 | if (ch->fault_type) { | |
1303 | ch->fault_type |= PL330_FAULT_DBG_INSTR; | |
1304 | } | |
1305 | if (ch->stall) { | |
1306 | qemu_log_mask(LOG_UNIMP, "pl330: stall of debug instruction not " | |
1307 | "implemented\n"); | |
1308 | } | |
1309 | s->debug_status = 0; | |
1310 | } | |
1311 | ||
1312 | /* IOMEM mapped registers */ | |
1313 | ||
1314 | static void pl330_iomem_write(void *opaque, hwaddr offset, | |
1315 | uint64_t value, unsigned size) | |
1316 | { | |
1317 | PL330State *s = (PL330State *) opaque; | |
024c6e2e | 1318 | int i; |
06a1cea5 PC |
1319 | |
1320 | DB_PRINT("addr: %08x data: %08x\n", (unsigned)offset, (unsigned)value); | |
1321 | ||
1322 | switch (offset) { | |
1323 | case PL330_REG_INTEN: | |
1324 | s->inten = value; | |
1325 | break; | |
1326 | case PL330_REG_INTCLR: | |
1327 | for (i = 0; i < s->num_events; i++) { | |
1328 | if (s->int_status & s->inten & value & (1 << i)) { | |
1329 | DB_PRINT("event interrupt lowered %d\n", i); | |
1330 | qemu_irq_lower(s->irq[i]); | |
1331 | } | |
1332 | } | |
1333 | s->ev_status &= ~(value & s->inten); | |
1334 | s->int_status &= ~(value & s->inten); | |
1335 | break; | |
1336 | case PL330_REG_DBGCMD: | |
1337 | if ((value & 3) == 0) { | |
1338 | pl330_debug_exec(s); | |
1339 | pl330_exec(s); | |
1340 | } else { | |
1341 | qemu_log_mask(LOG_GUEST_ERROR, "pl330: write of illegal value %u " | |
1342 | "for offset " TARGET_FMT_plx "\n", (unsigned)value, | |
1343 | offset); | |
1344 | } | |
1345 | break; | |
1346 | case PL330_REG_DBGINST0: | |
1347 | DB_PRINT("s->dbg[0] = %08x\n", (unsigned)value); | |
1348 | s->dbg[0] = value; | |
1349 | break; | |
1350 | case PL330_REG_DBGINST1: | |
1351 | DB_PRINT("s->dbg[1] = %08x\n", (unsigned)value); | |
1352 | s->dbg[1] = value; | |
1353 | break; | |
1354 | default: | |
1355 | qemu_log_mask(LOG_GUEST_ERROR, "pl330: bad write offset " TARGET_FMT_plx | |
1356 | "\n", offset); | |
1357 | break; | |
1358 | } | |
1359 | } | |
1360 | ||
1361 | static inline uint32_t pl330_iomem_read_imp(void *opaque, | |
1362 | hwaddr offset) | |
1363 | { | |
1364 | PL330State *s = (PL330State *)opaque; | |
1365 | int chan_id; | |
1366 | int i; | |
1367 | uint32_t res; | |
1368 | ||
1369 | if (offset >= PL330_REG_PERIPH_ID && offset < PL330_REG_PERIPH_ID + 32) { | |
1370 | return pl330_id[(offset - PL330_REG_PERIPH_ID) >> 2]; | |
1371 | } | |
1372 | if (offset >= PL330_REG_CR0_BASE && offset < PL330_REG_CR0_BASE + 24) { | |
1373 | return s->cfg[(offset - PL330_REG_CR0_BASE) >> 2]; | |
1374 | } | |
1375 | if (offset >= PL330_REG_CHANCTRL && offset < PL330_REG_DBGSTATUS) { | |
1376 | offset -= PL330_REG_CHANCTRL; | |
1377 | chan_id = offset >> 5; | |
1378 | if (chan_id >= s->num_chnls) { | |
1379 | qemu_log_mask(LOG_GUEST_ERROR, "pl330: bad read offset " | |
1380 | TARGET_FMT_plx "\n", offset); | |
1381 | return 0; | |
1382 | } | |
1383 | switch (offset & 0x1f) { | |
1384 | case 0x00: | |
1385 | return s->chan[chan_id].src; | |
1386 | case 0x04: | |
1387 | return s->chan[chan_id].dst; | |
1388 | case 0x08: | |
1389 | return s->chan[chan_id].control; | |
1390 | case 0x0C: | |
1391 | return s->chan[chan_id].lc[0]; | |
1392 | case 0x10: | |
1393 | return s->chan[chan_id].lc[1]; | |
1394 | default: | |
1395 | qemu_log_mask(LOG_GUEST_ERROR, "pl330: bad read offset " | |
1396 | TARGET_FMT_plx "\n", offset); | |
1397 | return 0; | |
1398 | } | |
1399 | } | |
1400 | if (offset >= PL330_REG_CSR_BASE && offset < 0x400) { | |
1401 | offset -= PL330_REG_CSR_BASE; | |
1402 | chan_id = offset >> 3; | |
1403 | if (chan_id >= s->num_chnls) { | |
1404 | qemu_log_mask(LOG_GUEST_ERROR, "pl330: bad read offset " | |
1405 | TARGET_FMT_plx "\n", offset); | |
1406 | return 0; | |
1407 | } | |
1408 | switch ((offset >> 2) & 1) { | |
1409 | case 0x0: | |
1410 | res = (s->chan[chan_id].ns << 21) | | |
1411 | (s->chan[chan_id].wakeup << 4) | | |
1412 | (s->chan[chan_id].state) | | |
1413 | (s->chan[chan_id].wfp_sbp << 14); | |
1414 | return res; | |
1415 | case 0x1: | |
1416 | return s->chan[chan_id].pc; | |
1417 | default: | |
1418 | qemu_log_mask(LOG_GUEST_ERROR, "pl330: read error\n"); | |
1419 | return 0; | |
1420 | } | |
1421 | } | |
1422 | if (offset >= PL330_REG_FTR_BASE && offset < 0x100) { | |
1423 | offset -= PL330_REG_FTR_BASE; | |
1424 | chan_id = offset >> 2; | |
1425 | if (chan_id >= s->num_chnls) { | |
1426 | qemu_log_mask(LOG_GUEST_ERROR, "pl330: bad read offset " | |
1427 | TARGET_FMT_plx "\n", offset); | |
1428 | return 0; | |
1429 | } | |
1430 | return s->chan[chan_id].fault_type; | |
1431 | } | |
1432 | switch (offset) { | |
1433 | case PL330_REG_DSR: | |
1434 | return (s->manager.ns << 9) | (s->manager.wakeup << 4) | | |
1435 | (s->manager.state & 0xf); | |
1436 | case PL330_REG_DPC: | |
1437 | return s->manager.pc; | |
1438 | case PL330_REG_INTEN: | |
1439 | return s->inten; | |
1440 | case PL330_REG_INT_EVENT_RIS: | |
1441 | return s->ev_status; | |
1442 | case PL330_REG_INTMIS: | |
1443 | return s->int_status; | |
1444 | case PL330_REG_INTCLR: | |
1445 | /* Documentation says that we can't read this register | |
1446 | * but linux kernel does it | |
1447 | */ | |
1448 | return 0; | |
1449 | case PL330_REG_FSRD: | |
1450 | return s->manager.state ? 1 : 0; | |
1451 | case PL330_REG_FSRC: | |
1452 | res = 0; | |
1453 | for (i = 0; i < s->num_chnls; i++) { | |
1454 | if (s->chan[i].state == pl330_chan_fault || | |
1455 | s->chan[i].state == pl330_chan_fault_completing) { | |
1456 | res |= 1 << i; | |
1457 | } | |
1458 | } | |
1459 | return res; | |
1460 | case PL330_REG_FTRD: | |
1461 | return s->manager.fault_type; | |
1462 | case PL330_REG_DBGSTATUS: | |
1463 | return s->debug_status; | |
1464 | default: | |
1465 | qemu_log_mask(LOG_GUEST_ERROR, "pl330: bad read offset " | |
1466 | TARGET_FMT_plx "\n", offset); | |
1467 | } | |
1468 | return 0; | |
1469 | } | |
1470 | ||
1471 | static uint64_t pl330_iomem_read(void *opaque, hwaddr offset, | |
1472 | unsigned size) | |
1473 | { | |
c3143ba8 PC |
1474 | uint32_t ret = pl330_iomem_read_imp(opaque, offset); |
1475 | DB_PRINT("addr: %08" HWADDR_PRIx " data: %08" PRIx32 "\n", offset, ret); | |
06a1cea5 PC |
1476 | return ret; |
1477 | } | |
1478 | ||
1479 | static const MemoryRegionOps pl330_ops = { | |
1480 | .read = pl330_iomem_read, | |
1481 | .write = pl330_iomem_write, | |
1482 | .endianness = DEVICE_NATIVE_ENDIAN, | |
1483 | .impl = { | |
1484 | .min_access_size = 4, | |
1485 | .max_access_size = 4, | |
1486 | } | |
1487 | }; | |
1488 | ||
1489 | /* Controller logic and initialization */ | |
1490 | ||
1491 | static void pl330_chan_reset(PL330Chan *ch) | |
1492 | { | |
1493 | ch->src = 0; | |
1494 | ch->dst = 0; | |
1495 | ch->pc = 0; | |
1496 | ch->state = pl330_chan_stopped; | |
1497 | ch->watchdog_timer = 0; | |
1498 | ch->stall = 0; | |
1499 | ch->control = 0; | |
1500 | ch->status = 0; | |
1501 | ch->fault_type = 0; | |
1502 | } | |
1503 | ||
1504 | static void pl330_reset(DeviceState *d) | |
1505 | { | |
1506 | int i; | |
1507 | PL330State *s = PL330(d); | |
1508 | ||
1509 | s->inten = 0; | |
1510 | s->int_status = 0; | |
1511 | s->ev_status = 0; | |
1512 | s->debug_status = 0; | |
1513 | s->num_faulting = 0; | |
1514 | s->manager.ns = s->mgr_ns_at_rst; | |
1515 | pl330_fifo_reset(&s->fifo); | |
1516 | pl330_queue_reset(&s->read_queue); | |
1517 | pl330_queue_reset(&s->write_queue); | |
1518 | ||
1519 | for (i = 0; i < s->num_chnls; i++) { | |
1520 | pl330_chan_reset(&s->chan[i]); | |
1521 | } | |
1522 | for (i = 0; i < s->num_periph_req; i++) { | |
1523 | s->periph_busy[i] = 0; | |
1524 | } | |
1525 | ||
bc72ad67 | 1526 | timer_del(s->timer); |
06a1cea5 PC |
1527 | } |
1528 | ||
1529 | static void pl330_realize(DeviceState *dev, Error **errp) | |
1530 | { | |
1531 | int i; | |
1532 | PL330State *s = PL330(dev); | |
1533 | ||
1534 | sysbus_init_irq(SYS_BUS_DEVICE(dev), &s->irq_abort); | |
3eadad55 PB |
1535 | memory_region_init_io(&s->iomem, OBJECT(s), &pl330_ops, s, |
1536 | "dma", PL330_IOMEM_SIZE); | |
06a1cea5 PC |
1537 | sysbus_init_mmio(SYS_BUS_DEVICE(dev), &s->iomem); |
1538 | ||
bc72ad67 | 1539 | s->timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, pl330_exec_cycle_timer, s); |
06a1cea5 PC |
1540 | |
1541 | s->cfg[0] = (s->mgr_ns_at_rst ? 0x4 : 0) | | |
1542 | (s->num_periph_req > 0 ? 1 : 0) | | |
1543 | ((s->num_chnls - 1) & 0x7) << 4 | | |
1544 | ((s->num_periph_req - 1) & 0x1f) << 12 | | |
1545 | ((s->num_events - 1) & 0x1f) << 17; | |
1546 | ||
1547 | switch (s->i_cache_len) { | |
1548 | case (4): | |
1549 | s->cfg[1] |= 2; | |
1550 | break; | |
1551 | case (8): | |
1552 | s->cfg[1] |= 3; | |
1553 | break; | |
1554 | case (16): | |
1555 | s->cfg[1] |= 4; | |
1556 | break; | |
1557 | case (32): | |
1558 | s->cfg[1] |= 5; | |
1559 | break; | |
1560 | default: | |
c3143ba8 | 1561 | error_setg(errp, "Bad value for i-cache_len property: %" PRIx8 "\n", |
06a1cea5 PC |
1562 | s->i_cache_len); |
1563 | return; | |
1564 | } | |
1565 | s->cfg[1] |= ((s->num_i_cache_lines - 1) & 0xf) << 4; | |
1566 | ||
1567 | s->chan = g_new0(PL330Chan, s->num_chnls); | |
1568 | s->hi_seqn = g_new0(uint8_t, s->num_chnls); | |
1569 | s->lo_seqn = g_new0(uint8_t, s->num_chnls); | |
1570 | for (i = 0; i < s->num_chnls; i++) { | |
1571 | s->chan[i].parent = s; | |
1572 | s->chan[i].tag = (uint8_t)i; | |
1573 | } | |
1574 | s->manager.parent = s; | |
1575 | s->manager.tag = s->num_chnls; | |
1576 | s->manager.is_manager = true; | |
1577 | ||
1578 | s->irq = g_new0(qemu_irq, s->num_events); | |
1579 | for (i = 0; i < s->num_events; i++) { | |
1580 | sysbus_init_irq(SYS_BUS_DEVICE(dev), &s->irq[i]); | |
1581 | } | |
1582 | ||
1583 | qdev_init_gpio_in(dev, pl330_dma_stop_irq, PL330_PERIPH_NUM); | |
1584 | ||
1585 | switch (s->data_width) { | |
1586 | case (32): | |
1587 | s->cfg[CFG_CRD] |= 0x2; | |
1588 | break; | |
1589 | case (64): | |
1590 | s->cfg[CFG_CRD] |= 0x3; | |
1591 | break; | |
1592 | case (128): | |
1593 | s->cfg[CFG_CRD] |= 0x4; | |
1594 | break; | |
1595 | default: | |
c3143ba8 | 1596 | error_setg(errp, "Bad value for data_width property: %" PRIx8 "\n", |
06a1cea5 PC |
1597 | s->data_width); |
1598 | return; | |
1599 | } | |
1600 | ||
1601 | s->cfg[CFG_CRD] |= ((s->wr_cap - 1) & 0x7) << 4 | | |
1602 | ((s->wr_q_dep - 1) & 0xf) << 8 | | |
1603 | ((s->rd_cap - 1) & 0x7) << 12 | | |
1604 | ((s->rd_q_dep - 1) & 0xf) << 16 | | |
1605 | ((s->data_buffer_dep - 1) & 0x1ff) << 20; | |
1606 | ||
1607 | pl330_queue_init(&s->read_queue, s->rd_q_dep, s); | |
1608 | pl330_queue_init(&s->write_queue, s->wr_q_dep, s); | |
a5ae7e39 | 1609 | pl330_fifo_init(&s->fifo, s->data_width / 4 * s->data_buffer_dep); |
06a1cea5 PC |
1610 | } |
1611 | ||
1612 | static Property pl330_properties[] = { | |
1613 | /* CR0 */ | |
1614 | DEFINE_PROP_UINT32("num_chnls", PL330State, num_chnls, 8), | |
1615 | DEFINE_PROP_UINT8("num_periph_req", PL330State, num_periph_req, 4), | |
1616 | DEFINE_PROP_UINT8("num_events", PL330State, num_events, 16), | |
1617 | DEFINE_PROP_UINT8("mgr_ns_at_rst", PL330State, mgr_ns_at_rst, 0), | |
1618 | /* CR1 */ | |
1619 | DEFINE_PROP_UINT8("i-cache_len", PL330State, i_cache_len, 4), | |
1620 | DEFINE_PROP_UINT8("num_i-cache_lines", PL330State, num_i_cache_lines, 8), | |
1621 | /* CR2-4 */ | |
1622 | DEFINE_PROP_UINT32("boot_addr", PL330State, cfg[CFG_BOOT_ADDR], 0), | |
1623 | DEFINE_PROP_UINT32("INS", PL330State, cfg[CFG_INS], 0), | |
1624 | DEFINE_PROP_UINT32("PNS", PL330State, cfg[CFG_PNS], 0), | |
1625 | /* CRD */ | |
1626 | DEFINE_PROP_UINT8("data_width", PL330State, data_width, 64), | |
1627 | DEFINE_PROP_UINT8("wr_cap", PL330State, wr_cap, 8), | |
1628 | DEFINE_PROP_UINT8("wr_q_dep", PL330State, wr_q_dep, 16), | |
1629 | DEFINE_PROP_UINT8("rd_cap", PL330State, rd_cap, 8), | |
1630 | DEFINE_PROP_UINT8("rd_q_dep", PL330State, rd_q_dep, 16), | |
1631 | DEFINE_PROP_UINT16("data_buffer_dep", PL330State, data_buffer_dep, 256), | |
1632 | ||
1633 | DEFINE_PROP_END_OF_LIST(), | |
1634 | }; | |
1635 | ||
1636 | static void pl330_class_init(ObjectClass *klass, void *data) | |
1637 | { | |
1638 | DeviceClass *dc = DEVICE_CLASS(klass); | |
1639 | ||
1640 | dc->realize = pl330_realize; | |
1641 | dc->reset = pl330_reset; | |
1642 | dc->props = pl330_properties; | |
1643 | dc->vmsd = &vmstate_pl330; | |
1644 | } | |
1645 | ||
1646 | static const TypeInfo pl330_type_info = { | |
1647 | .name = TYPE_PL330, | |
1648 | .parent = TYPE_SYS_BUS_DEVICE, | |
1649 | .instance_size = sizeof(PL330State), | |
1650 | .class_init = pl330_class_init, | |
1651 | }; | |
1652 | ||
1653 | static void pl330_register_types(void) | |
1654 | { | |
1655 | type_register_static(&pl330_type_info); | |
1656 | } | |
1657 | ||
1658 | type_init(pl330_register_types) |