2 * ARM PrimeCell PL330 DMA Controller
4 * Copyright (c) 2009 Samsung Electronics.
5 * Contributed by Kirill Batuzov <batuzovk@ispras.ru>
6 * Copyright (c) 2012 Peter A.G. Crosthwaite (peter.crosthwaite@petalogix.com)
7 * Copyright (c) 2012 PetaLogix Pty Ltd.
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.
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/>.
17 #include "qemu/osdep.h"
18 #include "qemu-common.h"
20 #include "hw/qdev-properties.h"
21 #include "hw/sysbus.h"
22 #include "migration/vmstate.h"
23 #include "qapi/error.h"
24 #include "qemu/timer.h"
25 #include "sysemu/dma.h"
27 #include "qemu/module.h"
29 #include "qom/object.h"
31 #ifndef PL330_ERR_DEBUG
32 #define PL330_ERR_DEBUG 0
35 #define PL330_PERIPH_NUM 32
36 #define PL330_MAX_BURST_LEN 128
37 #define PL330_INSN_MAXSIZE 6
39 #define PL330_FIFO_OK 0
40 #define PL330_FIFO_STALL 1
41 #define PL330_FIFO_ERR (-1)
43 #define PL330_FAULT_UNDEF_INSTR (1 << 0)
44 #define PL330_FAULT_OPERAND_INVALID (1 << 1)
45 #define PL330_FAULT_DMAGO_ERR (1 << 4)
46 #define PL330_FAULT_EVENT_ERR (1 << 5)
47 #define PL330_FAULT_CH_PERIPH_ERR (1 << 6)
48 #define PL330_FAULT_CH_RDWR_ERR (1 << 7)
49 #define PL330_FAULT_ST_DATA_UNAVAILABLE (1 << 12)
50 #define PL330_FAULT_FIFOEMPTY_ERR (1 << 13)
51 #define PL330_FAULT_INSTR_FETCH_ERR (1 << 16)
52 #define PL330_FAULT_DATA_WRITE_ERR (1 << 17)
53 #define PL330_FAULT_DATA_READ_ERR (1 << 18)
54 #define PL330_FAULT_DBG_INSTR (1 << 30)
55 #define PL330_FAULT_LOCKUP_ERR (1 << 31)
57 #define PL330_UNTAGGED 0xff
59 #define PL330_SINGLE 0x0
60 #define PL330_BURST 0x1
62 #define PL330_WATCHDOG_LIMIT 1024
64 /* IOMEM mapped registers */
65 #define PL330_REG_DSR 0x000
66 #define PL330_REG_DPC 0x004
67 #define PL330_REG_INTEN 0x020
68 #define PL330_REG_INT_EVENT_RIS 0x024
69 #define PL330_REG_INTMIS 0x028
70 #define PL330_REG_INTCLR 0x02C
71 #define PL330_REG_FSRD 0x030
72 #define PL330_REG_FSRC 0x034
73 #define PL330_REG_FTRD 0x038
74 #define PL330_REG_FTR_BASE 0x040
75 #define PL330_REG_CSR_BASE 0x100
76 #define PL330_REG_CPC_BASE 0x104
77 #define PL330_REG_CHANCTRL 0x400
78 #define PL330_REG_DBGSTATUS 0xD00
79 #define PL330_REG_DBGCMD 0xD04
80 #define PL330_REG_DBGINST0 0xD08
81 #define PL330_REG_DBGINST1 0xD0C
82 #define PL330_REG_CR0_BASE 0xE00
83 #define PL330_REG_PERIPH_ID 0xFE0
85 #define PL330_IOMEM_SIZE 0x1000
87 #define CFG_BOOT_ADDR 2
92 static const uint32_t pl330_id
[] = {
93 0x30, 0x13, 0x24, 0x00, 0x0D, 0xF0, 0x05, 0xB1
96 /* DMA channel states as they are described in PL330 Technical Reference Manual
97 * Most of them will not be used in emulation.
100 pl330_chan_stopped
= 0,
101 pl330_chan_executing
= 1,
102 pl330_chan_cache_miss
= 2,
103 pl330_chan_updating_pc
= 3,
104 pl330_chan_waiting_event
= 4,
105 pl330_chan_at_barrier
= 5,
106 pl330_chan_queue_busy
= 6,
107 pl330_chan_waiting_periph
= 7,
108 pl330_chan_killing
= 8,
109 pl330_chan_completing
= 9,
110 pl330_chan_fault_completing
= 14,
111 pl330_chan_fault
= 15,
114 typedef struct PL330State PL330State
;
116 typedef struct PL330Chan
{
124 uint32_t watchdog_timer
;
127 uint8_t request_flag
;
139 static const VMStateDescription vmstate_pl330_chan
= {
140 .name
= "pl330_chan",
142 .minimum_version_id
= 1,
143 .fields
= (VMStateField
[]) {
144 VMSTATE_UINT32(src
, PL330Chan
),
145 VMSTATE_UINT32(dst
, PL330Chan
),
146 VMSTATE_UINT32(pc
, PL330Chan
),
147 VMSTATE_UINT32(control
, PL330Chan
),
148 VMSTATE_UINT32(status
, PL330Chan
),
149 VMSTATE_UINT32_ARRAY(lc
, PL330Chan
, 2),
150 VMSTATE_UINT32(fault_type
, PL330Chan
),
151 VMSTATE_UINT32(watchdog_timer
, PL330Chan
),
152 VMSTATE_BOOL(ns
, PL330Chan
),
153 VMSTATE_UINT8(request_flag
, PL330Chan
),
154 VMSTATE_UINT8(wakeup
, PL330Chan
),
155 VMSTATE_UINT8(wfp_sbp
, PL330Chan
),
156 VMSTATE_UINT8(state
, PL330Chan
),
157 VMSTATE_UINT8(stall
, PL330Chan
),
158 VMSTATE_END_OF_LIST()
162 typedef struct PL330Fifo
{
170 static const VMStateDescription vmstate_pl330_fifo
= {
171 .name
= "pl330_chan",
173 .minimum_version_id
= 1,
174 .fields
= (VMStateField
[]) {
175 VMSTATE_VBUFFER_UINT32(buf
, PL330Fifo
, 1, NULL
, buf_size
),
176 VMSTATE_VBUFFER_UINT32(tag
, PL330Fifo
, 1, NULL
, buf_size
),
177 VMSTATE_UINT32(head
, PL330Fifo
),
178 VMSTATE_UINT32(num
, PL330Fifo
),
179 VMSTATE_UINT32(buf_size
, PL330Fifo
),
180 VMSTATE_END_OF_LIST()
184 typedef struct PL330QueueEntry
{
194 static const VMStateDescription vmstate_pl330_queue_entry
= {
195 .name
= "pl330_queue_entry",
197 .minimum_version_id
= 1,
198 .fields
= (VMStateField
[]) {
199 VMSTATE_UINT32(addr
, PL330QueueEntry
),
200 VMSTATE_UINT32(len
, PL330QueueEntry
),
201 VMSTATE_UINT8(n
, PL330QueueEntry
),
202 VMSTATE_BOOL(inc
, PL330QueueEntry
),
203 VMSTATE_BOOL(z
, PL330QueueEntry
),
204 VMSTATE_UINT8(tag
, PL330QueueEntry
),
205 VMSTATE_UINT8(seqn
, PL330QueueEntry
),
206 VMSTATE_END_OF_LIST()
210 typedef struct PL330Queue
{
212 PL330QueueEntry
*queue
;
216 static const VMStateDescription vmstate_pl330_queue
= {
217 .name
= "pl330_queue",
219 .minimum_version_id
= 2,
220 .fields
= (VMStateField
[]) {
221 VMSTATE_STRUCT_VARRAY_POINTER_UINT32(queue
, PL330Queue
, queue_size
,
222 vmstate_pl330_queue_entry
,
224 VMSTATE_END_OF_LIST()
229 SysBusDevice parent_obj
;
235 /* Config registers. cfg[5] = CfgDn. */
237 #define EVENT_SEC_STATE 3
238 #define PERIPH_SEC_STATE 4
239 /* cfg 0 bits and pieces */
241 uint8_t num_periph_req
;
243 uint8_t mgr_ns_at_rst
;
244 /* cfg 1 bits and pieces */
246 uint8_t num_i_cache_lines
;
247 /* CRD bits and pieces */
253 uint16_t data_buffer_dep
;
258 PL330Queue read_queue
;
259 PL330Queue write_queue
;
262 QEMUTimer
*timer
; /* is used for restore dma. */
268 uint8_t debug_status
;
269 uint8_t num_faulting
;
270 uint8_t periph_busy
[PL330_PERIPH_NUM
];
272 /* Memory region that DMA operation access */
273 MemoryRegion
*mem_mr
;
274 AddressSpace
*mem_as
;
277 #define TYPE_PL330 "pl330"
278 OBJECT_DECLARE_SIMPLE_TYPE(PL330State
, PL330
)
280 static const VMStateDescription vmstate_pl330
= {
283 .minimum_version_id
= 2,
284 .fields
= (VMStateField
[]) {
285 VMSTATE_STRUCT(manager
, PL330State
, 0, vmstate_pl330_chan
, PL330Chan
),
286 VMSTATE_STRUCT_VARRAY_POINTER_UINT32(chan
, PL330State
, num_chnls
,
287 vmstate_pl330_chan
, PL330Chan
),
288 VMSTATE_VBUFFER_UINT32(lo_seqn
, PL330State
, 1, NULL
, num_chnls
),
289 VMSTATE_VBUFFER_UINT32(hi_seqn
, PL330State
, 1, NULL
, num_chnls
),
290 VMSTATE_STRUCT(fifo
, PL330State
, 0, vmstate_pl330_fifo
, PL330Fifo
),
291 VMSTATE_STRUCT(read_queue
, PL330State
, 0, vmstate_pl330_queue
,
293 VMSTATE_STRUCT(write_queue
, PL330State
, 0, vmstate_pl330_queue
,
295 VMSTATE_TIMER_PTR(timer
, PL330State
),
296 VMSTATE_UINT32(inten
, PL330State
),
297 VMSTATE_UINT32(int_status
, PL330State
),
298 VMSTATE_UINT32(ev_status
, PL330State
),
299 VMSTATE_UINT32_ARRAY(dbg
, PL330State
, 2),
300 VMSTATE_UINT8(debug_status
, PL330State
),
301 VMSTATE_UINT8(num_faulting
, PL330State
),
302 VMSTATE_UINT8_ARRAY(periph_busy
, PL330State
, PL330_PERIPH_NUM
),
303 VMSTATE_END_OF_LIST()
307 typedef struct PL330InsnDesc
{
308 /* OPCODE of the instruction */
310 /* Mask so we can select several sibling instructions, such as
311 DMALD, DMALDS and DMALDB */
313 /* Size of instruction in bytes */
316 void (*exec
)(PL330Chan
*, uint8_t opcode
, uint8_t *args
, int len
);
319 static void pl330_hexdump(uint8_t *buf
, size_t size
)
321 unsigned int b
, i
, len
;
324 for (b
= 0; b
< size
; b
+= 16) {
330 for (i
= 0; i
< len
; i
++) {
334 sprintf(tmpbuf
+ strlen(tmpbuf
), " %02x", buf
[b
+ i
]);
336 trace_pl330_hexdump(b
, tmpbuf
);
340 /* MFIFO Implementation
342 * MFIFO is implemented as a cyclic buffer of BUF_SIZE size. Tagged bytes are
343 * stored in this buffer. Data is stored in BUF field, tags - in the
344 * corresponding array elements of TAG field.
347 /* Initialize queue. */
349 static void pl330_fifo_init(PL330Fifo
*s
, uint32_t size
)
351 s
->buf
= g_malloc0(size
);
352 s
->tag
= g_malloc0(size
);
356 /* Cyclic increment */
358 static inline int pl330_fifo_inc(PL330Fifo
*s
, int x
)
360 return (x
+ 1) % s
->buf_size
;
363 /* Number of empty bytes in MFIFO */
365 static inline int pl330_fifo_num_free(PL330Fifo
*s
)
367 return s
->buf_size
- s
->num
;
370 /* Push LEN bytes of data stored in BUF to MFIFO and tag it with TAG.
371 * Zero returned on success, PL330_FIFO_STALL if there is no enough free
372 * space in MFIFO to store requested amount of data. If push was unsuccessful
373 * no data is stored to MFIFO.
376 static int pl330_fifo_push(PL330Fifo
*s
, uint8_t *buf
, int len
, uint8_t tag
)
380 if (s
->buf_size
- s
->num
< len
) {
381 return PL330_FIFO_STALL
;
383 for (i
= 0; i
< len
; i
++) {
384 int push_idx
= (s
->head
+ s
->num
+ i
) % s
->buf_size
;
385 s
->buf
[push_idx
] = buf
[i
];
386 s
->tag
[push_idx
] = tag
;
389 return PL330_FIFO_OK
;
392 /* Get LEN bytes of data from MFIFO and store it to BUF. Tag value of each
393 * byte is verified. Zero returned on success, PL330_FIFO_ERR on tag mismatch
394 * and PL330_FIFO_STALL if there is no enough data in MFIFO. If get was
395 * unsuccessful no data is removed from MFIFO.
398 static int pl330_fifo_get(PL330Fifo
*s
, uint8_t *buf
, int len
, uint8_t tag
)
403 return PL330_FIFO_STALL
;
405 for (i
= 0; i
< len
; i
++) {
406 if (s
->tag
[s
->head
] == tag
) {
407 int get_idx
= (s
->head
+ i
) % s
->buf_size
;
408 buf
[i
] = s
->buf
[get_idx
];
409 } else { /* Tag mismatch - Rollback transaction */
410 return PL330_FIFO_ERR
;
413 s
->head
= (s
->head
+ len
) % s
->buf_size
;
415 return PL330_FIFO_OK
;
418 /* Reset MFIFO. This completely erases all data in it. */
420 static inline void pl330_fifo_reset(PL330Fifo
*s
)
426 /* Return tag of the first byte stored in MFIFO. If MFIFO is empty
427 * PL330_UNTAGGED is returned.
430 static inline uint8_t pl330_fifo_tag(PL330Fifo
*s
)
432 return (!s
->num
) ? PL330_UNTAGGED
: s
->tag
[s
->head
];
435 /* Returns non-zero if tag TAG is present in fifo or zero otherwise */
437 static int pl330_fifo_has_tag(PL330Fifo
*s
, uint8_t tag
)
442 for (n
= 0; n
< s
->num
; n
++) {
443 if (s
->tag
[i
] == tag
) {
446 i
= pl330_fifo_inc(s
, i
);
451 /* Remove all entry tagged with TAG from MFIFO */
453 static void pl330_fifo_tagged_remove(PL330Fifo
*s
, uint8_t tag
)
458 for (n
= 0; n
< s
->num
; n
++) {
459 if (s
->tag
[i
] != tag
) {
460 s
->buf
[t
] = s
->buf
[i
];
461 s
->tag
[t
] = s
->tag
[i
];
462 t
= pl330_fifo_inc(s
, t
);
466 i
= pl330_fifo_inc(s
, i
);
470 /* Read-Write Queue implementation
472 * A Read-Write Queue stores up to QUEUE_SIZE instructions (loads or stores).
473 * Each instruction is described by source (for loads) or destination (for
474 * stores) address ADDR, width of data to be loaded/stored LEN, number of
475 * stores/loads to be performed N, INC bit, Z bit and TAG to identify channel
476 * this instruction belongs to. Queue does not store any information about
477 * nature of the instruction: is it load or store. PL330 has different queues
478 * for loads and stores so this is already known at the top level where it
481 * Queue works as FIFO for instructions with equivalent tags, but can issue
482 * instructions with different tags in arbitrary order. SEQN field attached to
483 * each instruction helps to achieve this. For each TAG queue contains
484 * instructions with consecutive SEQN values ranging from LO_SEQN[TAG] to
485 * HI_SEQN[TAG]-1 inclusive. SEQN is 8-bit unsigned integer, so SEQN=255 is
486 * followed by SEQN=0.
488 * Z bit indicates that zeroes should be stored. No MFIFO fetches are performed
492 static void pl330_queue_reset(PL330Queue
*s
)
496 for (i
= 0; i
< s
->queue_size
; i
++) {
497 s
->queue
[i
].tag
= PL330_UNTAGGED
;
501 /* Initialize queue */
502 static void pl330_queue_init(PL330Queue
*s
, int size
, PL330State
*parent
)
505 s
->queue
= g_new0(PL330QueueEntry
, size
);
506 s
->queue_size
= size
;
509 /* Returns pointer to an empty slot or NULL if queue is full */
510 static PL330QueueEntry
*pl330_queue_find_empty(PL330Queue
*s
)
514 for (i
= 0; i
< s
->queue_size
; i
++) {
515 if (s
->queue
[i
].tag
== PL330_UNTAGGED
) {
522 /* Put instruction in queue.
525 * - non-zero - queue is full
528 static int pl330_queue_put_insn(PL330Queue
*s
, uint32_t addr
,
529 int len
, int n
, bool inc
, bool z
, uint8_t tag
)
531 PL330QueueEntry
*entry
= pl330_queue_find_empty(s
);
542 entry
->seqn
= s
->parent
->hi_seqn
[tag
];
543 s
->parent
->hi_seqn
[tag
]++;
547 /* Returns a pointer to queue slot containing instruction which satisfies
548 * following conditions:
549 * - it has valid tag value (not PL330_UNTAGGED)
550 * - if enforce_seq is set it has to be issuable without violating queue
552 * - if TAG argument is not PL330_UNTAGGED this instruction has tag value
553 * equivalent to the argument TAG value.
554 * If such instruction cannot be found NULL is returned.
557 static PL330QueueEntry
*pl330_queue_find_insn(PL330Queue
*s
, uint8_t tag
,
562 for (i
= 0; i
< s
->queue_size
; i
++) {
563 if (s
->queue
[i
].tag
!= PL330_UNTAGGED
) {
565 s
->queue
[i
].seqn
== s
->parent
->lo_seqn
[s
->queue
[i
].tag
]) &&
566 (s
->queue
[i
].tag
== tag
|| tag
== PL330_UNTAGGED
||
575 /* Removes instruction from queue. */
577 static inline void pl330_queue_remove_insn(PL330Queue
*s
, PL330QueueEntry
*e
)
579 s
->parent
->lo_seqn
[e
->tag
]++;
580 e
->tag
= PL330_UNTAGGED
;
583 /* Removes all instructions tagged with TAG from queue. */
585 static inline void pl330_queue_remove_tagged(PL330Queue
*s
, uint8_t tag
)
589 for (i
= 0; i
< s
->queue_size
; i
++) {
590 if (s
->queue
[i
].tag
== tag
) {
591 s
->queue
[i
].tag
= PL330_UNTAGGED
;
596 /* DMA instruction execution engine */
598 /* Moves DMA channel to the FAULT state and updates it's status. */
600 static inline void pl330_fault(PL330Chan
*ch
, uint32_t flags
)
602 trace_pl330_fault(ch
, flags
);
603 ch
->fault_type
|= flags
;
604 if (ch
->state
== pl330_chan_fault
) {
607 ch
->state
= pl330_chan_fault
;
608 ch
->parent
->num_faulting
++;
609 if (ch
->parent
->num_faulting
== 1) {
610 trace_pl330_fault_abort();
611 qemu_irq_raise(ch
->parent
->irq_abort
);
616 * For information about instructions see PL330 Technical Reference Manual.
619 * CH - channel executing the instruction
621 * ARGS - array of 8-bit arguments
622 * LEN - number of elements in ARGS array
625 static void pl330_dmaadxh(PL330Chan
*ch
, uint8_t *args
, bool ra
, bool neg
)
627 uint32_t im
= (args
[1] << 8) | args
[0];
632 if (ch
->is_manager
) {
633 pl330_fault(ch
, PL330_FAULT_UNDEF_INSTR
);
643 static void pl330_dmaaddh(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
645 pl330_dmaadxh(ch
, args
, extract32(opcode
, 1, 1), false);
648 static void pl330_dmaadnh(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
650 pl330_dmaadxh(ch
, args
, extract32(opcode
, 1, 1), true);
653 static void pl330_dmaend(PL330Chan
*ch
, uint8_t opcode
,
654 uint8_t *args
, int len
)
656 PL330State
*s
= ch
->parent
;
658 if (ch
->state
== pl330_chan_executing
&& !ch
->is_manager
) {
659 /* Wait for all transfers to complete */
660 if (pl330_fifo_has_tag(&s
->fifo
, ch
->tag
) ||
661 pl330_queue_find_insn(&s
->read_queue
, ch
->tag
, false) != NULL
||
662 pl330_queue_find_insn(&s
->write_queue
, ch
->tag
, false) != NULL
) {
668 trace_pl330_dmaend();
669 pl330_fifo_tagged_remove(&s
->fifo
, ch
->tag
);
670 pl330_queue_remove_tagged(&s
->read_queue
, ch
->tag
);
671 pl330_queue_remove_tagged(&s
->write_queue
, ch
->tag
);
672 ch
->state
= pl330_chan_stopped
;
675 static void pl330_dmaflushp(PL330Chan
*ch
, uint8_t opcode
,
676 uint8_t *args
, int len
)
681 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
684 periph_id
= (args
[0] >> 3) & 0x1f;
685 if (periph_id
>= ch
->parent
->num_periph_req
) {
686 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
689 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_PNS
] & (1 << periph_id
))) {
690 pl330_fault(ch
, PL330_FAULT_CH_PERIPH_ERR
);
696 static void pl330_dmago(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
705 if (!ch
->is_manager
) {
706 pl330_fault(ch
, PL330_FAULT_UNDEF_INSTR
);
710 chan_id
= args
[0] & 7;
711 if ((args
[0] >> 3)) {
712 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
715 if (chan_id
>= ch
->parent
->num_chnls
) {
716 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
719 pc
= (((uint32_t)args
[4]) << 24) | (((uint32_t)args
[3]) << 16) |
720 (((uint32_t)args
[2]) << 8) | (((uint32_t)args
[1]));
721 if (ch
->parent
->chan
[chan_id
].state
!= pl330_chan_stopped
) {
722 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
726 pl330_fault(ch
, PL330_FAULT_DMAGO_ERR
);
729 s
= &ch
->parent
->chan
[chan_id
];
732 s
->state
= pl330_chan_executing
;
735 static void pl330_dmald(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
737 uint8_t bs
= opcode
& 3;
742 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
745 if ((bs
== 1 && ch
->request_flag
== PL330_BURST
) ||
746 (bs
== 3 && ch
->request_flag
== PL330_SINGLE
)) {
750 if (bs
== 1 && ch
->request_flag
== PL330_SINGLE
) {
753 num
= ((ch
->control
>> 4) & 0xf) + 1;
755 size
= (uint32_t)1 << ((ch
->control
>> 1) & 0x7);
756 inc
= !!(ch
->control
& 1);
757 ch
->stall
= pl330_queue_put_insn(&ch
->parent
->read_queue
, ch
->src
,
758 size
, num
, inc
, 0, ch
->tag
);
760 trace_pl330_dmald(ch
->tag
, ch
->src
, size
, num
, inc
? 'Y' : 'N');
761 ch
->src
+= inc
? size
* num
- (ch
->src
& (size
- 1)) : 0;
765 static void pl330_dmaldp(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
770 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
773 periph_id
= (args
[0] >> 3) & 0x1f;
774 if (periph_id
>= ch
->parent
->num_periph_req
) {
775 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
778 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_PNS
] & (1 << periph_id
))) {
779 pl330_fault(ch
, PL330_FAULT_CH_PERIPH_ERR
);
782 pl330_dmald(ch
, opcode
, args
, len
);
785 static void pl330_dmalp(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
787 uint8_t lc
= (opcode
& 2) >> 1;
789 ch
->lc
[lc
] = args
[0];
792 static void pl330_dmakill(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
794 if (ch
->state
== pl330_chan_fault
||
795 ch
->state
== pl330_chan_fault_completing
) {
796 /* This is the only way for a channel to leave the faulting state */
798 ch
->parent
->num_faulting
--;
799 if (ch
->parent
->num_faulting
== 0) {
800 trace_pl330_dmakill();
801 qemu_irq_lower(ch
->parent
->irq_abort
);
804 ch
->state
= pl330_chan_killing
;
805 pl330_fifo_tagged_remove(&ch
->parent
->fifo
, ch
->tag
);
806 pl330_queue_remove_tagged(&ch
->parent
->read_queue
, ch
->tag
);
807 pl330_queue_remove_tagged(&ch
->parent
->write_queue
, ch
->tag
);
808 ch
->state
= pl330_chan_stopped
;
811 static void pl330_dmalpend(PL330Chan
*ch
, uint8_t opcode
,
812 uint8_t *args
, int len
)
814 uint8_t nf
= (opcode
& 0x10) >> 4;
815 uint8_t bs
= opcode
& 3;
816 uint8_t lc
= (opcode
& 4) >> 2;
818 trace_pl330_dmalpend(nf
, bs
, lc
, ch
->lc
[lc
], ch
->request_flag
);
821 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
824 if ((bs
== 1 && ch
->request_flag
== PL330_BURST
) ||
825 (bs
== 3 && ch
->request_flag
== PL330_SINGLE
)) {
829 if (!nf
|| ch
->lc
[lc
]) {
833 trace_pl330_dmalpiter();
836 /* "ch->pc -= args[0] + len + 1" is incorrect when args[0] == 256 */
838 trace_pl330_dmalpfallthrough();
843 static void pl330_dmamov(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
845 uint8_t rd
= args
[0] & 7;
848 if ((args
[0] >> 3)) {
849 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
852 im
= (((uint32_t)args
[4]) << 24) | (((uint32_t)args
[3]) << 16) |
853 (((uint32_t)args
[2]) << 8) | (((uint32_t)args
[1]));
865 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
870 static void pl330_dmanop(PL330Chan
*ch
, uint8_t opcode
,
871 uint8_t *args
, int len
)
876 static void pl330_dmarmb(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
878 if (pl330_queue_find_insn(&ch
->parent
->read_queue
, ch
->tag
, false)) {
879 ch
->state
= pl330_chan_at_barrier
;
883 ch
->state
= pl330_chan_executing
;
887 static void pl330_dmasev(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
892 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
895 ev_id
= (args
[0] >> 3) & 0x1f;
896 if (ev_id
>= ch
->parent
->num_events
) {
897 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
900 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_INS
] & (1 << ev_id
))) {
901 pl330_fault(ch
, PL330_FAULT_EVENT_ERR
);
904 if (ch
->parent
->inten
& (1 << ev_id
)) {
905 ch
->parent
->int_status
|= (1 << ev_id
);
906 trace_pl330_dmasev_evirq(ev_id
);
907 qemu_irq_raise(ch
->parent
->irq
[ev_id
]);
909 trace_pl330_dmasev_event(ev_id
);
910 ch
->parent
->ev_status
|= (1 << ev_id
);
913 static void pl330_dmast(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
915 uint8_t bs
= opcode
& 3;
920 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
923 if ((bs
== 1 && ch
->request_flag
== PL330_BURST
) ||
924 (bs
== 3 && ch
->request_flag
== PL330_SINGLE
)) {
928 num
= ((ch
->control
>> 18) & 0xf) + 1;
929 size
= (uint32_t)1 << ((ch
->control
>> 15) & 0x7);
930 inc
= !!((ch
->control
>> 14) & 1);
931 ch
->stall
= pl330_queue_put_insn(&ch
->parent
->write_queue
, ch
->dst
,
932 size
, num
, inc
, 0, ch
->tag
);
934 trace_pl330_dmast(ch
->tag
, ch
->dst
, size
, num
, inc
? 'Y' : 'N');
935 ch
->dst
+= inc
? size
* num
- (ch
->dst
& (size
- 1)) : 0;
939 static void pl330_dmastp(PL330Chan
*ch
, uint8_t opcode
,
940 uint8_t *args
, int len
)
945 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
948 periph_id
= (args
[0] >> 3) & 0x1f;
949 if (periph_id
>= ch
->parent
->num_periph_req
) {
950 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
953 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_PNS
] & (1 << periph_id
))) {
954 pl330_fault(ch
, PL330_FAULT_CH_PERIPH_ERR
);
957 pl330_dmast(ch
, opcode
, args
, len
);
960 static void pl330_dmastz(PL330Chan
*ch
, uint8_t opcode
,
961 uint8_t *args
, int len
)
966 num
= ((ch
->control
>> 18) & 0xf) + 1;
967 size
= (uint32_t)1 << ((ch
->control
>> 15) & 0x7);
968 inc
= !!((ch
->control
>> 14) & 1);
969 ch
->stall
= pl330_queue_put_insn(&ch
->parent
->write_queue
, ch
->dst
,
970 size
, num
, inc
, 1, ch
->tag
);
972 ch
->dst
+= size
* num
;
976 static void pl330_dmawfe(PL330Chan
*ch
, uint8_t opcode
,
977 uint8_t *args
, int len
)
983 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
986 ev_id
= (args
[0] >> 3) & 0x1f;
987 if (ev_id
>= ch
->parent
->num_events
) {
988 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
991 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_INS
] & (1 << ev_id
))) {
992 pl330_fault(ch
, PL330_FAULT_EVENT_ERR
);
996 ch
->state
= pl330_chan_waiting_event
;
997 if (~ch
->parent
->inten
& ch
->parent
->ev_status
& 1 << ev_id
) {
998 ch
->state
= pl330_chan_executing
;
999 /* If anyone else is currently waiting on the same event, let them
1000 * clear the ev_status so they pick up event as well
1002 for (i
= 0; i
< ch
->parent
->num_chnls
; ++i
) {
1003 PL330Chan
*peer
= &ch
->parent
->chan
[i
];
1004 if (peer
->state
== pl330_chan_waiting_event
&&
1005 peer
->wakeup
== ev_id
) {
1009 ch
->parent
->ev_status
&= ~(1 << ev_id
);
1010 trace_pl330_dmawfe(ev_id
);
1016 static void pl330_dmawfp(PL330Chan
*ch
, uint8_t opcode
,
1017 uint8_t *args
, int len
)
1019 uint8_t bs
= opcode
& 3;
1023 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
1026 periph_id
= (args
[0] >> 3) & 0x1f;
1027 if (periph_id
>= ch
->parent
->num_periph_req
) {
1028 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
1031 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_PNS
] & (1 << periph_id
))) {
1032 pl330_fault(ch
, PL330_FAULT_CH_PERIPH_ERR
);
1037 ch
->request_flag
= PL330_SINGLE
;
1041 ch
->request_flag
= PL330_BURST
;
1045 ch
->request_flag
= PL330_BURST
;
1049 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
1053 if (ch
->parent
->periph_busy
[periph_id
]) {
1054 ch
->state
= pl330_chan_waiting_periph
;
1056 } else if (ch
->state
== pl330_chan_waiting_periph
) {
1057 ch
->state
= pl330_chan_executing
;
1061 static void pl330_dmawmb(PL330Chan
*ch
, uint8_t opcode
,
1062 uint8_t *args
, int len
)
1064 if (pl330_queue_find_insn(&ch
->parent
->write_queue
, ch
->tag
, false)) {
1065 ch
->state
= pl330_chan_at_barrier
;
1069 ch
->state
= pl330_chan_executing
;
1073 /* NULL terminated array of the instruction descriptions. */
1074 static const PL330InsnDesc insn_desc
[] = {
1075 { .opcode
= 0x54, .opmask
= 0xFD, .size
= 3, .exec
= pl330_dmaaddh
, },
1076 { .opcode
= 0x5c, .opmask
= 0xFD, .size
= 3, .exec
= pl330_dmaadnh
, },
1077 { .opcode
= 0x00, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmaend
, },
1078 { .opcode
= 0x35, .opmask
= 0xFF, .size
= 2, .exec
= pl330_dmaflushp
, },
1079 { .opcode
= 0xA0, .opmask
= 0xFD, .size
= 6, .exec
= pl330_dmago
, },
1080 { .opcode
= 0x04, .opmask
= 0xFC, .size
= 1, .exec
= pl330_dmald
, },
1081 { .opcode
= 0x25, .opmask
= 0xFD, .size
= 2, .exec
= pl330_dmaldp
, },
1082 { .opcode
= 0x20, .opmask
= 0xFD, .size
= 2, .exec
= pl330_dmalp
, },
1083 /* dmastp must be before dmalpend in this list, because their maps
1086 { .opcode
= 0x29, .opmask
= 0xFD, .size
= 2, .exec
= pl330_dmastp
, },
1087 { .opcode
= 0x28, .opmask
= 0xE8, .size
= 2, .exec
= pl330_dmalpend
, },
1088 { .opcode
= 0x01, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmakill
, },
1089 { .opcode
= 0xBC, .opmask
= 0xFF, .size
= 6, .exec
= pl330_dmamov
, },
1090 { .opcode
= 0x18, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmanop
, },
1091 { .opcode
= 0x12, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmarmb
, },
1092 { .opcode
= 0x34, .opmask
= 0xFF, .size
= 2, .exec
= pl330_dmasev
, },
1093 { .opcode
= 0x08, .opmask
= 0xFC, .size
= 1, .exec
= pl330_dmast
, },
1094 { .opcode
= 0x0C, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmastz
, },
1095 { .opcode
= 0x36, .opmask
= 0xFF, .size
= 2, .exec
= pl330_dmawfe
, },
1096 { .opcode
= 0x30, .opmask
= 0xFC, .size
= 2, .exec
= pl330_dmawfp
, },
1097 { .opcode
= 0x13, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmawmb
, },
1098 { .opcode
= 0x00, .opmask
= 0x00, .size
= 0, .exec
= NULL
, }
1101 /* Instructions which can be issued via debug registers. */
1102 static const PL330InsnDesc debug_insn_desc
[] = {
1103 { .opcode
= 0xA0, .opmask
= 0xFD, .size
= 6, .exec
= pl330_dmago
, },
1104 { .opcode
= 0x01, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmakill
, },
1105 { .opcode
= 0x34, .opmask
= 0xFF, .size
= 2, .exec
= pl330_dmasev
, },
1106 { .opcode
= 0x00, .opmask
= 0x00, .size
= 0, .exec
= NULL
, }
1109 static inline const PL330InsnDesc
*pl330_fetch_insn(PL330Chan
*ch
)
1114 dma_memory_read(ch
->parent
->mem_as
, ch
->pc
, &opcode
, 1,
1115 MEMTXATTRS_UNSPECIFIED
);
1116 for (i
= 0; insn_desc
[i
].size
; i
++) {
1117 if ((opcode
& insn_desc
[i
].opmask
) == insn_desc
[i
].opcode
) {
1118 return &insn_desc
[i
];
1124 static inline void pl330_exec_insn(PL330Chan
*ch
, const PL330InsnDesc
*insn
)
1126 uint8_t buf
[PL330_INSN_MAXSIZE
];
1128 assert(insn
->size
<= PL330_INSN_MAXSIZE
);
1129 dma_memory_read(ch
->parent
->mem_as
, ch
->pc
, buf
, insn
->size
,
1130 MEMTXATTRS_UNSPECIFIED
);
1131 insn
->exec(ch
, buf
[0], &buf
[1], insn
->size
- 1);
1134 static inline void pl330_update_pc(PL330Chan
*ch
,
1135 const PL330InsnDesc
*insn
)
1137 ch
->pc
+= insn
->size
;
1140 /* Try to execute current instruction in channel CH. Number of executed
1141 instructions is returned (0 or 1). */
1142 static int pl330_chan_exec(PL330Chan
*ch
)
1144 const PL330InsnDesc
*insn
;
1146 if (ch
->state
!= pl330_chan_executing
&&
1147 ch
->state
!= pl330_chan_waiting_periph
&&
1148 ch
->state
!= pl330_chan_at_barrier
&&
1149 ch
->state
!= pl330_chan_waiting_event
) {
1153 insn
= pl330_fetch_insn(ch
);
1155 trace_pl330_chan_exec_undef();
1156 pl330_fault(ch
, PL330_FAULT_UNDEF_INSTR
);
1159 pl330_exec_insn(ch
, insn
);
1161 pl330_update_pc(ch
, insn
);
1162 ch
->watchdog_timer
= 0;
1164 /* WDT only active in exec state */
1165 } else if (ch
->state
== pl330_chan_executing
) {
1166 ch
->watchdog_timer
++;
1167 if (ch
->watchdog_timer
>= PL330_WATCHDOG_LIMIT
) {
1168 pl330_fault(ch
, PL330_FAULT_LOCKUP_ERR
);
1174 /* Try to execute 1 instruction in each channel, one instruction from read
1175 queue and one instruction from write queue. Number of successfully executed
1176 instructions is returned. */
1177 static int pl330_exec_cycle(PL330Chan
*channel
)
1179 PL330State
*s
= channel
->parent
;
1184 uint8_t buf
[PL330_MAX_BURST_LEN
];
1186 /* Execute one instruction in each channel */
1187 num_exec
+= pl330_chan_exec(channel
);
1189 /* Execute one instruction from read queue */
1190 q
= pl330_queue_find_insn(&s
->read_queue
, PL330_UNTAGGED
, true);
1191 if (q
!= NULL
&& q
->len
<= pl330_fifo_num_free(&s
->fifo
)) {
1192 int len
= q
->len
- (q
->addr
& (q
->len
- 1));
1194 dma_memory_read(s
->mem_as
, q
->addr
, buf
, len
,
1195 MEMTXATTRS_UNSPECIFIED
);
1196 trace_pl330_exec_cycle(q
->addr
, len
);
1197 if (trace_event_get_state_backends(TRACE_PL330_HEXDUMP
)) {
1198 pl330_hexdump(buf
, len
);
1200 fifo_res
= pl330_fifo_push(&s
->fifo
, buf
, len
, q
->tag
);
1201 if (fifo_res
== PL330_FIFO_OK
) {
1207 pl330_queue_remove_insn(&s
->read_queue
, q
);
1213 /* Execute one instruction from write queue. */
1214 q
= pl330_queue_find_insn(&s
->write_queue
, pl330_fifo_tag(&s
->fifo
), true);
1216 int len
= q
->len
- (q
->addr
& (q
->len
- 1));
1219 for (i
= 0; i
< len
; i
++) {
1223 fifo_res
= pl330_fifo_get(&s
->fifo
, buf
, len
, q
->tag
);
1225 if (fifo_res
== PL330_FIFO_OK
|| q
->z
) {
1226 dma_memory_write(s
->mem_as
, q
->addr
, buf
, len
,
1227 MEMTXATTRS_UNSPECIFIED
);
1228 trace_pl330_exec_cycle(q
->addr
, len
);
1229 if (trace_event_get_state_backends(TRACE_PL330_HEXDUMP
)) {
1230 pl330_hexdump(buf
, len
);
1236 } else if (fifo_res
== PL330_FIFO_STALL
) {
1237 pl330_fault(&channel
->parent
->chan
[q
->tag
],
1238 PL330_FAULT_FIFOEMPTY_ERR
);
1242 pl330_queue_remove_insn(&s
->write_queue
, q
);
1249 static int pl330_exec_channel(PL330Chan
*channel
)
1253 /* TODO: Is it all right to execute everything or should we do per-cycle
1255 while (pl330_exec_cycle(channel
)) {
1259 /* Detect deadlock */
1260 if (channel
->state
== pl330_chan_executing
) {
1261 pl330_fault(channel
, PL330_FAULT_LOCKUP_ERR
);
1263 /* Situation when one of the queues has deadlocked but all channels
1264 * have finished their programs should be impossible.
1270 static inline void pl330_exec(PL330State
*s
)
1275 insr_exec
= pl330_exec_channel(&s
->manager
);
1277 for (i
= 0; i
< s
->num_chnls
; i
++) {
1278 insr_exec
+= pl330_exec_channel(&s
->chan
[i
]);
1280 } while (insr_exec
);
1283 static void pl330_exec_cycle_timer(void *opaque
)
1285 PL330State
*s
= (PL330State
*)opaque
;
1289 /* Stop or restore dma operations */
1291 static void pl330_dma_stop_irq(void *opaque
, int irq
, int level
)
1293 PL330State
*s
= (PL330State
*)opaque
;
1295 if (s
->periph_busy
[irq
] != level
) {
1296 s
->periph_busy
[irq
] = level
;
1297 timer_mod(s
->timer
, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
));
1301 static void pl330_debug_exec(PL330State
*s
)
1308 const PL330InsnDesc
*insn
;
1310 s
->debug_status
= 1;
1311 chan_id
= (s
->dbg
[0] >> 8) & 0x07;
1312 opcode
= (s
->dbg
[0] >> 16) & 0xff;
1313 args
[0] = (s
->dbg
[0] >> 24) & 0xff;
1314 args
[1] = (s
->dbg
[1] >> 0) & 0xff;
1315 args
[2] = (s
->dbg
[1] >> 8) & 0xff;
1316 args
[3] = (s
->dbg
[1] >> 16) & 0xff;
1317 args
[4] = (s
->dbg
[1] >> 24) & 0xff;
1318 trace_pl330_debug_exec(chan_id
);
1319 if (s
->dbg
[0] & 1) {
1320 ch
= &s
->chan
[chan_id
];
1325 for (i
= 0; debug_insn_desc
[i
].size
; i
++) {
1326 if ((opcode
& debug_insn_desc
[i
].opmask
) == debug_insn_desc
[i
].opcode
) {
1327 insn
= &debug_insn_desc
[i
];
1331 pl330_fault(ch
, PL330_FAULT_UNDEF_INSTR
| PL330_FAULT_DBG_INSTR
);
1335 insn
->exec(ch
, opcode
, args
, insn
->size
- 1);
1336 if (ch
->fault_type
) {
1337 ch
->fault_type
|= PL330_FAULT_DBG_INSTR
;
1340 trace_pl330_debug_exec_stall();
1341 qemu_log_mask(LOG_UNIMP
, "pl330: stall of debug instruction not "
1344 s
->debug_status
= 0;
1347 /* IOMEM mapped registers */
1349 static void pl330_iomem_write(void *opaque
, hwaddr offset
,
1350 uint64_t value
, unsigned size
)
1352 PL330State
*s
= (PL330State
*) opaque
;
1355 trace_pl330_iomem_write((unsigned)offset
, (unsigned)value
);
1358 case PL330_REG_INTEN
:
1361 case PL330_REG_INTCLR
:
1362 for (i
= 0; i
< s
->num_events
; i
++) {
1363 if (s
->int_status
& s
->inten
& value
& (1 << i
)) {
1364 trace_pl330_iomem_write_clr(i
);
1365 qemu_irq_lower(s
->irq
[i
]);
1368 s
->ev_status
&= ~(value
& s
->inten
);
1369 s
->int_status
&= ~(value
& s
->inten
);
1371 case PL330_REG_DBGCMD
:
1372 if ((value
& 3) == 0) {
1373 pl330_debug_exec(s
);
1376 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: write of illegal value %u "
1377 "for offset " TARGET_FMT_plx
"\n", (unsigned)value
,
1381 case PL330_REG_DBGINST0
:
1384 case PL330_REG_DBGINST1
:
1388 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad write offset " TARGET_FMT_plx
1394 static inline uint32_t pl330_iomem_read_imp(void *opaque
,
1397 PL330State
*s
= (PL330State
*)opaque
;
1402 if (offset
>= PL330_REG_PERIPH_ID
&& offset
< PL330_REG_PERIPH_ID
+ 32) {
1403 return pl330_id
[(offset
- PL330_REG_PERIPH_ID
) >> 2];
1405 if (offset
>= PL330_REG_CR0_BASE
&& offset
< PL330_REG_CR0_BASE
+ 24) {
1406 return s
->cfg
[(offset
- PL330_REG_CR0_BASE
) >> 2];
1408 if (offset
>= PL330_REG_CHANCTRL
&& offset
< PL330_REG_DBGSTATUS
) {
1409 offset
-= PL330_REG_CHANCTRL
;
1410 chan_id
= offset
>> 5;
1411 if (chan_id
>= s
->num_chnls
) {
1412 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad read offset "
1413 TARGET_FMT_plx
"\n", offset
);
1416 switch (offset
& 0x1f) {
1418 return s
->chan
[chan_id
].src
;
1420 return s
->chan
[chan_id
].dst
;
1422 return s
->chan
[chan_id
].control
;
1424 return s
->chan
[chan_id
].lc
[0];
1426 return s
->chan
[chan_id
].lc
[1];
1428 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad read offset "
1429 TARGET_FMT_plx
"\n", offset
);
1433 if (offset
>= PL330_REG_CSR_BASE
&& offset
< 0x400) {
1434 offset
-= PL330_REG_CSR_BASE
;
1435 chan_id
= offset
>> 3;
1436 if (chan_id
>= s
->num_chnls
) {
1437 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad read offset "
1438 TARGET_FMT_plx
"\n", offset
);
1441 switch ((offset
>> 2) & 1) {
1443 res
= (s
->chan
[chan_id
].ns
<< 21) |
1444 (s
->chan
[chan_id
].wakeup
<< 4) |
1445 (s
->chan
[chan_id
].state
) |
1446 (s
->chan
[chan_id
].wfp_sbp
<< 14);
1449 return s
->chan
[chan_id
].pc
;
1451 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: read error\n");
1455 if (offset
>= PL330_REG_FTR_BASE
&& offset
< 0x100) {
1456 offset
-= PL330_REG_FTR_BASE
;
1457 chan_id
= offset
>> 2;
1458 if (chan_id
>= s
->num_chnls
) {
1459 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad read offset "
1460 TARGET_FMT_plx
"\n", offset
);
1463 return s
->chan
[chan_id
].fault_type
;
1467 return (s
->manager
.ns
<< 9) | (s
->manager
.wakeup
<< 4) |
1468 (s
->manager
.state
& 0xf);
1470 return s
->manager
.pc
;
1471 case PL330_REG_INTEN
:
1473 case PL330_REG_INT_EVENT_RIS
:
1474 return s
->ev_status
;
1475 case PL330_REG_INTMIS
:
1476 return s
->int_status
;
1477 case PL330_REG_INTCLR
:
1478 /* Documentation says that we can't read this register
1479 * but linux kernel does it
1482 case PL330_REG_FSRD
:
1483 return s
->manager
.state
? 1 : 0;
1484 case PL330_REG_FSRC
:
1486 for (i
= 0; i
< s
->num_chnls
; i
++) {
1487 if (s
->chan
[i
].state
== pl330_chan_fault
||
1488 s
->chan
[i
].state
== pl330_chan_fault_completing
) {
1493 case PL330_REG_FTRD
:
1494 return s
->manager
.fault_type
;
1495 case PL330_REG_DBGSTATUS
:
1496 return s
->debug_status
;
1498 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad read offset "
1499 TARGET_FMT_plx
"\n", offset
);
1504 static uint64_t pl330_iomem_read(void *opaque
, hwaddr offset
,
1507 uint32_t ret
= pl330_iomem_read_imp(opaque
, offset
);
1508 trace_pl330_iomem_read((uint32_t)offset
, ret
);
1512 static const MemoryRegionOps pl330_ops
= {
1513 .read
= pl330_iomem_read
,
1514 .write
= pl330_iomem_write
,
1515 .endianness
= DEVICE_NATIVE_ENDIAN
,
1517 .min_access_size
= 4,
1518 .max_access_size
= 4,
1522 /* Controller logic and initialization */
1524 static void pl330_chan_reset(PL330Chan
*ch
)
1529 ch
->state
= pl330_chan_stopped
;
1530 ch
->watchdog_timer
= 0;
1537 static void pl330_reset(DeviceState
*d
)
1540 PL330State
*s
= PL330(d
);
1545 s
->debug_status
= 0;
1546 s
->num_faulting
= 0;
1547 s
->manager
.ns
= s
->mgr_ns_at_rst
;
1548 pl330_fifo_reset(&s
->fifo
);
1549 pl330_queue_reset(&s
->read_queue
);
1550 pl330_queue_reset(&s
->write_queue
);
1552 for (i
= 0; i
< s
->num_chnls
; i
++) {
1553 pl330_chan_reset(&s
->chan
[i
]);
1555 for (i
= 0; i
< s
->num_periph_req
; i
++) {
1556 s
->periph_busy
[i
] = 0;
1559 timer_del(s
->timer
);
1562 static void pl330_realize(DeviceState
*dev
, Error
**errp
)
1565 PL330State
*s
= PL330(dev
);
1567 sysbus_init_irq(SYS_BUS_DEVICE(dev
), &s
->irq_abort
);
1568 memory_region_init_io(&s
->iomem
, OBJECT(s
), &pl330_ops
, s
,
1569 "dma", PL330_IOMEM_SIZE
);
1570 sysbus_init_mmio(SYS_BUS_DEVICE(dev
), &s
->iomem
);
1573 error_setg(errp
, "'memory' link is not set");
1575 } else if (s
->mem_mr
== get_system_memory()) {
1576 /* Avoid creating new AS for system memory. */
1577 s
->mem_as
= &address_space_memory
;
1579 s
->mem_as
= g_new0(AddressSpace
, 1);
1580 address_space_init(s
->mem_as
, s
->mem_mr
,
1581 memory_region_name(s
->mem_mr
));
1584 s
->timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, pl330_exec_cycle_timer
, s
);
1586 s
->cfg
[0] = (s
->mgr_ns_at_rst
? 0x4 : 0) |
1587 (s
->num_periph_req
> 0 ? 1 : 0) |
1588 ((s
->num_chnls
- 1) & 0x7) << 4 |
1589 ((s
->num_periph_req
- 1) & 0x1f) << 12 |
1590 ((s
->num_events
- 1) & 0x1f) << 17;
1592 switch (s
->i_cache_len
) {
1606 error_setg(errp
, "Bad value for i-cache_len property: %" PRIx8
,
1610 s
->cfg
[1] |= ((s
->num_i_cache_lines
- 1) & 0xf) << 4;
1612 s
->chan
= g_new0(PL330Chan
, s
->num_chnls
);
1613 s
->hi_seqn
= g_new0(uint8_t, s
->num_chnls
);
1614 s
->lo_seqn
= g_new0(uint8_t, s
->num_chnls
);
1615 for (i
= 0; i
< s
->num_chnls
; i
++) {
1616 s
->chan
[i
].parent
= s
;
1617 s
->chan
[i
].tag
= (uint8_t)i
;
1619 s
->manager
.parent
= s
;
1620 s
->manager
.tag
= s
->num_chnls
;
1621 s
->manager
.is_manager
= true;
1623 s
->irq
= g_new0(qemu_irq
, s
->num_events
);
1624 for (i
= 0; i
< s
->num_events
; i
++) {
1625 sysbus_init_irq(SYS_BUS_DEVICE(dev
), &s
->irq
[i
]);
1628 qdev_init_gpio_in(dev
, pl330_dma_stop_irq
, PL330_PERIPH_NUM
);
1630 switch (s
->data_width
) {
1632 s
->cfg
[CFG_CRD
] |= 0x2;
1635 s
->cfg
[CFG_CRD
] |= 0x3;
1638 s
->cfg
[CFG_CRD
] |= 0x4;
1641 error_setg(errp
, "Bad value for data_width property: %" PRIx8
,
1646 s
->cfg
[CFG_CRD
] |= ((s
->wr_cap
- 1) & 0x7) << 4 |
1647 ((s
->wr_q_dep
- 1) & 0xf) << 8 |
1648 ((s
->rd_cap
- 1) & 0x7) << 12 |
1649 ((s
->rd_q_dep
- 1) & 0xf) << 16 |
1650 ((s
->data_buffer_dep
- 1) & 0x1ff) << 20;
1652 pl330_queue_init(&s
->read_queue
, s
->rd_q_dep
, s
);
1653 pl330_queue_init(&s
->write_queue
, s
->wr_q_dep
, s
);
1654 pl330_fifo_init(&s
->fifo
, s
->data_width
/ 4 * s
->data_buffer_dep
);
1657 static Property pl330_properties
[] = {
1659 DEFINE_PROP_UINT32("num_chnls", PL330State
, num_chnls
, 8),
1660 DEFINE_PROP_UINT8("num_periph_req", PL330State
, num_periph_req
, 4),
1661 DEFINE_PROP_UINT8("num_events", PL330State
, num_events
, 16),
1662 DEFINE_PROP_UINT8("mgr_ns_at_rst", PL330State
, mgr_ns_at_rst
, 0),
1664 DEFINE_PROP_UINT8("i-cache_len", PL330State
, i_cache_len
, 4),
1665 DEFINE_PROP_UINT8("num_i-cache_lines", PL330State
, num_i_cache_lines
, 8),
1667 DEFINE_PROP_UINT32("boot_addr", PL330State
, cfg
[CFG_BOOT_ADDR
], 0),
1668 DEFINE_PROP_UINT32("INS", PL330State
, cfg
[CFG_INS
], 0),
1669 DEFINE_PROP_UINT32("PNS", PL330State
, cfg
[CFG_PNS
], 0),
1671 DEFINE_PROP_UINT8("data_width", PL330State
, data_width
, 64),
1672 DEFINE_PROP_UINT8("wr_cap", PL330State
, wr_cap
, 8),
1673 DEFINE_PROP_UINT8("wr_q_dep", PL330State
, wr_q_dep
, 16),
1674 DEFINE_PROP_UINT8("rd_cap", PL330State
, rd_cap
, 8),
1675 DEFINE_PROP_UINT8("rd_q_dep", PL330State
, rd_q_dep
, 16),
1676 DEFINE_PROP_UINT16("data_buffer_dep", PL330State
, data_buffer_dep
, 256),
1678 DEFINE_PROP_LINK("memory", PL330State
, mem_mr
,
1679 TYPE_MEMORY_REGION
, MemoryRegion
*),
1681 DEFINE_PROP_END_OF_LIST(),
1684 static void pl330_class_init(ObjectClass
*klass
, void *data
)
1686 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1688 dc
->realize
= pl330_realize
;
1689 dc
->reset
= pl330_reset
;
1690 device_class_set_props(dc
, pl330_properties
);
1691 dc
->vmsd
= &vmstate_pl330
;
1694 static const TypeInfo pl330_type_info
= {
1696 .parent
= TYPE_SYS_BUS_DEVICE
,
1697 .instance_size
= sizeof(PL330State
),
1698 .class_init
= pl330_class_init
,
1701 static void pl330_register_types(void)
1703 type_register_static(&pl330_type_info
);
1706 type_init(pl330_register_types
)