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/sysbus.h"
21 #include "qapi/error.h"
22 #include "qemu/timer.h"
23 #include "sysemu/dma.h"
25 #include "qemu/module.h"
27 #ifndef PL330_ERR_DEBUG
28 #define PL330_ERR_DEBUG 0
31 #define DB_PRINT_L(lvl, fmt, args...) do {\
32 if (PL330_ERR_DEBUG >= lvl) {\
33 fprintf(stderr, "PL330: %s:" fmt, __func__, ## args);\
37 #define DB_PRINT(fmt, args...) DB_PRINT_L(1, fmt, ## args)
39 #define PL330_PERIPH_NUM 32
40 #define PL330_MAX_BURST_LEN 128
41 #define PL330_INSN_MAXSIZE 6
43 #define PL330_FIFO_OK 0
44 #define PL330_FIFO_STALL 1
45 #define PL330_FIFO_ERR (-1)
47 #define PL330_FAULT_UNDEF_INSTR (1 << 0)
48 #define PL330_FAULT_OPERAND_INVALID (1 << 1)
49 #define PL330_FAULT_DMAGO_ERR (1 << 4)
50 #define PL330_FAULT_EVENT_ERR (1 << 5)
51 #define PL330_FAULT_CH_PERIPH_ERR (1 << 6)
52 #define PL330_FAULT_CH_RDWR_ERR (1 << 7)
53 #define PL330_FAULT_ST_DATA_UNAVAILABLE (1 << 12)
54 #define PL330_FAULT_FIFOEMPTY_ERR (1 << 13)
55 #define PL330_FAULT_INSTR_FETCH_ERR (1 << 16)
56 #define PL330_FAULT_DATA_WRITE_ERR (1 << 17)
57 #define PL330_FAULT_DATA_READ_ERR (1 << 18)
58 #define PL330_FAULT_DBG_INSTR (1 << 30)
59 #define PL330_FAULT_LOCKUP_ERR (1 << 31)
61 #define PL330_UNTAGGED 0xff
63 #define PL330_SINGLE 0x0
64 #define PL330_BURST 0x1
66 #define PL330_WATCHDOG_LIMIT 1024
68 /* IOMEM mapped registers */
69 #define PL330_REG_DSR 0x000
70 #define PL330_REG_DPC 0x004
71 #define PL330_REG_INTEN 0x020
72 #define PL330_REG_INT_EVENT_RIS 0x024
73 #define PL330_REG_INTMIS 0x028
74 #define PL330_REG_INTCLR 0x02C
75 #define PL330_REG_FSRD 0x030
76 #define PL330_REG_FSRC 0x034
77 #define PL330_REG_FTRD 0x038
78 #define PL330_REG_FTR_BASE 0x040
79 #define PL330_REG_CSR_BASE 0x100
80 #define PL330_REG_CPC_BASE 0x104
81 #define PL330_REG_CHANCTRL 0x400
82 #define PL330_REG_DBGSTATUS 0xD00
83 #define PL330_REG_DBGCMD 0xD04
84 #define PL330_REG_DBGINST0 0xD08
85 #define PL330_REG_DBGINST1 0xD0C
86 #define PL330_REG_CR0_BASE 0xE00
87 #define PL330_REG_PERIPH_ID 0xFE0
89 #define PL330_IOMEM_SIZE 0x1000
91 #define CFG_BOOT_ADDR 2
96 static const uint32_t pl330_id
[] = {
97 0x30, 0x13, 0x24, 0x00, 0x0D, 0xF0, 0x05, 0xB1
100 /* DMA channel states as they are described in PL330 Technical Reference Manual
101 * Most of them will not be used in emulation.
104 pl330_chan_stopped
= 0,
105 pl330_chan_executing
= 1,
106 pl330_chan_cache_miss
= 2,
107 pl330_chan_updating_pc
= 3,
108 pl330_chan_waiting_event
= 4,
109 pl330_chan_at_barrier
= 5,
110 pl330_chan_queue_busy
= 6,
111 pl330_chan_waiting_periph
= 7,
112 pl330_chan_killing
= 8,
113 pl330_chan_completing
= 9,
114 pl330_chan_fault_completing
= 14,
115 pl330_chan_fault
= 15,
118 typedef struct PL330State PL330State
;
120 typedef struct PL330Chan
{
128 uint32_t watchdog_timer
;
131 uint8_t request_flag
;
143 static const VMStateDescription vmstate_pl330_chan
= {
144 .name
= "pl330_chan",
146 .minimum_version_id
= 1,
147 .fields
= (VMStateField
[]) {
148 VMSTATE_UINT32(src
, PL330Chan
),
149 VMSTATE_UINT32(dst
, PL330Chan
),
150 VMSTATE_UINT32(pc
, PL330Chan
),
151 VMSTATE_UINT32(control
, PL330Chan
),
152 VMSTATE_UINT32(status
, PL330Chan
),
153 VMSTATE_UINT32_ARRAY(lc
, PL330Chan
, 2),
154 VMSTATE_UINT32(fault_type
, PL330Chan
),
155 VMSTATE_UINT32(watchdog_timer
, PL330Chan
),
156 VMSTATE_BOOL(ns
, PL330Chan
),
157 VMSTATE_UINT8(request_flag
, PL330Chan
),
158 VMSTATE_UINT8(wakeup
, PL330Chan
),
159 VMSTATE_UINT8(wfp_sbp
, PL330Chan
),
160 VMSTATE_UINT8(state
, PL330Chan
),
161 VMSTATE_UINT8(stall
, PL330Chan
),
162 VMSTATE_END_OF_LIST()
166 typedef struct PL330Fifo
{
174 static const VMStateDescription vmstate_pl330_fifo
= {
175 .name
= "pl330_chan",
177 .minimum_version_id
= 1,
178 .fields
= (VMStateField
[]) {
179 VMSTATE_VBUFFER_UINT32(buf
, PL330Fifo
, 1, NULL
, buf_size
),
180 VMSTATE_VBUFFER_UINT32(tag
, PL330Fifo
, 1, NULL
, buf_size
),
181 VMSTATE_UINT32(head
, PL330Fifo
),
182 VMSTATE_UINT32(num
, PL330Fifo
),
183 VMSTATE_UINT32(buf_size
, PL330Fifo
),
184 VMSTATE_END_OF_LIST()
188 typedef struct PL330QueueEntry
{
198 static const VMStateDescription vmstate_pl330_queue_entry
= {
199 .name
= "pl330_queue_entry",
201 .minimum_version_id
= 1,
202 .fields
= (VMStateField
[]) {
203 VMSTATE_UINT32(addr
, PL330QueueEntry
),
204 VMSTATE_UINT32(len
, PL330QueueEntry
),
205 VMSTATE_UINT8(n
, PL330QueueEntry
),
206 VMSTATE_BOOL(inc
, PL330QueueEntry
),
207 VMSTATE_BOOL(z
, PL330QueueEntry
),
208 VMSTATE_UINT8(tag
, PL330QueueEntry
),
209 VMSTATE_UINT8(seqn
, PL330QueueEntry
),
210 VMSTATE_END_OF_LIST()
214 typedef struct PL330Queue
{
216 PL330QueueEntry
*queue
;
220 static const VMStateDescription vmstate_pl330_queue
= {
221 .name
= "pl330_queue",
223 .minimum_version_id
= 2,
224 .fields
= (VMStateField
[]) {
225 VMSTATE_STRUCT_VARRAY_POINTER_UINT32(queue
, PL330Queue
, queue_size
,
226 vmstate_pl330_queue_entry
,
228 VMSTATE_END_OF_LIST()
233 SysBusDevice parent_obj
;
239 /* Config registers. cfg[5] = CfgDn. */
241 #define EVENT_SEC_STATE 3
242 #define PERIPH_SEC_STATE 4
243 /* cfg 0 bits and pieces */
245 uint8_t num_periph_req
;
247 uint8_t mgr_ns_at_rst
;
248 /* cfg 1 bits and pieces */
250 uint8_t num_i_cache_lines
;
251 /* CRD bits and pieces */
257 uint16_t data_buffer_dep
;
262 PL330Queue read_queue
;
263 PL330Queue write_queue
;
266 QEMUTimer
*timer
; /* is used for restore dma. */
272 uint8_t debug_status
;
273 uint8_t num_faulting
;
274 uint8_t periph_busy
[PL330_PERIPH_NUM
];
278 #define TYPE_PL330 "pl330"
279 #define PL330(obj) OBJECT_CHECK(PL330State, (obj), TYPE_PL330)
281 static const VMStateDescription vmstate_pl330
= {
284 .minimum_version_id
= 2,
285 .fields
= (VMStateField
[]) {
286 VMSTATE_STRUCT(manager
, PL330State
, 0, vmstate_pl330_chan
, PL330Chan
),
287 VMSTATE_STRUCT_VARRAY_POINTER_UINT32(chan
, PL330State
, num_chnls
,
288 vmstate_pl330_chan
, PL330Chan
),
289 VMSTATE_VBUFFER_UINT32(lo_seqn
, PL330State
, 1, NULL
, num_chnls
),
290 VMSTATE_VBUFFER_UINT32(hi_seqn
, PL330State
, 1, NULL
, num_chnls
),
291 VMSTATE_STRUCT(fifo
, PL330State
, 0, vmstate_pl330_fifo
, PL330Fifo
),
292 VMSTATE_STRUCT(read_queue
, PL330State
, 0, vmstate_pl330_queue
,
294 VMSTATE_STRUCT(write_queue
, PL330State
, 0, vmstate_pl330_queue
,
296 VMSTATE_TIMER_PTR(timer
, PL330State
),
297 VMSTATE_UINT32(inten
, PL330State
),
298 VMSTATE_UINT32(int_status
, PL330State
),
299 VMSTATE_UINT32(ev_status
, PL330State
),
300 VMSTATE_UINT32_ARRAY(dbg
, PL330State
, 2),
301 VMSTATE_UINT8(debug_status
, PL330State
),
302 VMSTATE_UINT8(num_faulting
, PL330State
),
303 VMSTATE_UINT8_ARRAY(periph_busy
, PL330State
, PL330_PERIPH_NUM
),
304 VMSTATE_END_OF_LIST()
308 typedef struct PL330InsnDesc
{
309 /* OPCODE of the instruction */
311 /* Mask so we can select several sibling instructions, such as
312 DMALD, DMALDS and DMALDB */
314 /* Size of instruction in bytes */
317 void (*exec
)(PL330Chan
*, uint8_t opcode
, uint8_t *args
, int len
);
321 /* MFIFO Implementation
323 * MFIFO is implemented as a cyclic buffer of BUF_SIZE size. Tagged bytes are
324 * stored in this buffer. Data is stored in BUF field, tags - in the
325 * corresponding array elements of TAG field.
328 /* Initialize queue. */
330 static void pl330_fifo_init(PL330Fifo
*s
, uint32_t size
)
332 s
->buf
= g_malloc0(size
);
333 s
->tag
= g_malloc0(size
);
337 /* Cyclic increment */
339 static inline int pl330_fifo_inc(PL330Fifo
*s
, int x
)
341 return (x
+ 1) % s
->buf_size
;
344 /* Number of empty bytes in MFIFO */
346 static inline int pl330_fifo_num_free(PL330Fifo
*s
)
348 return s
->buf_size
- s
->num
;
351 /* Push LEN bytes of data stored in BUF to MFIFO and tag it with TAG.
352 * Zero returned on success, PL330_FIFO_STALL if there is no enough free
353 * space in MFIFO to store requested amount of data. If push was unsuccessful
354 * no data is stored to MFIFO.
357 static int pl330_fifo_push(PL330Fifo
*s
, uint8_t *buf
, int len
, uint8_t tag
)
361 if (s
->buf_size
- s
->num
< len
) {
362 return PL330_FIFO_STALL
;
364 for (i
= 0; i
< len
; i
++) {
365 int push_idx
= (s
->head
+ s
->num
+ i
) % s
->buf_size
;
366 s
->buf
[push_idx
] = buf
[i
];
367 s
->tag
[push_idx
] = tag
;
370 return PL330_FIFO_OK
;
373 /* Get LEN bytes of data from MFIFO and store it to BUF. Tag value of each
374 * byte is verified. Zero returned on success, PL330_FIFO_ERR on tag mismatch
375 * and PL330_FIFO_STALL if there is no enough data in MFIFO. If get was
376 * unsuccessful no data is removed from MFIFO.
379 static int pl330_fifo_get(PL330Fifo
*s
, uint8_t *buf
, int len
, uint8_t tag
)
384 return PL330_FIFO_STALL
;
386 for (i
= 0; i
< len
; i
++) {
387 if (s
->tag
[s
->head
] == tag
) {
388 int get_idx
= (s
->head
+ i
) % s
->buf_size
;
389 buf
[i
] = s
->buf
[get_idx
];
390 } else { /* Tag mismatch - Rollback transaction */
391 return PL330_FIFO_ERR
;
394 s
->head
= (s
->head
+ len
) % s
->buf_size
;
396 return PL330_FIFO_OK
;
399 /* Reset MFIFO. This completely erases all data in it. */
401 static inline void pl330_fifo_reset(PL330Fifo
*s
)
407 /* Return tag of the first byte stored in MFIFO. If MFIFO is empty
408 * PL330_UNTAGGED is returned.
411 static inline uint8_t pl330_fifo_tag(PL330Fifo
*s
)
413 return (!s
->num
) ? PL330_UNTAGGED
: s
->tag
[s
->head
];
416 /* Returns non-zero if tag TAG is present in fifo or zero otherwise */
418 static int pl330_fifo_has_tag(PL330Fifo
*s
, uint8_t tag
)
423 for (n
= 0; n
< s
->num
; n
++) {
424 if (s
->tag
[i
] == tag
) {
427 i
= pl330_fifo_inc(s
, i
);
432 /* Remove all entry tagged with TAG from MFIFO */
434 static void pl330_fifo_tagged_remove(PL330Fifo
*s
, uint8_t tag
)
439 for (n
= 0; n
< s
->num
; n
++) {
440 if (s
->tag
[i
] != tag
) {
441 s
->buf
[t
] = s
->buf
[i
];
442 s
->tag
[t
] = s
->tag
[i
];
443 t
= pl330_fifo_inc(s
, t
);
447 i
= pl330_fifo_inc(s
, i
);
451 /* Read-Write Queue implementation
453 * A Read-Write Queue stores up to QUEUE_SIZE instructions (loads or stores).
454 * Each instruction is described by source (for loads) or destination (for
455 * stores) address ADDR, width of data to be loaded/stored LEN, number of
456 * stores/loads to be performed N, INC bit, Z bit and TAG to identify channel
457 * this instruction belongs to. Queue does not store any information about
458 * nature of the instruction: is it load or store. PL330 has different queues
459 * for loads and stores so this is already known at the top level where it
462 * Queue works as FIFO for instructions with equivalent tags, but can issue
463 * instructions with different tags in arbitrary order. SEQN field attached to
464 * each instruction helps to achieve this. For each TAG queue contains
465 * instructions with consecutive SEQN values ranging from LO_SEQN[TAG] to
466 * HI_SEQN[TAG]-1 inclusive. SEQN is 8-bit unsigned integer, so SEQN=255 is
467 * followed by SEQN=0.
469 * Z bit indicates that zeroes should be stored. No MFIFO fetches are performed
473 static void pl330_queue_reset(PL330Queue
*s
)
477 for (i
= 0; i
< s
->queue_size
; i
++) {
478 s
->queue
[i
].tag
= PL330_UNTAGGED
;
482 /* Initialize queue */
483 static void pl330_queue_init(PL330Queue
*s
, int size
, PL330State
*parent
)
486 s
->queue
= g_new0(PL330QueueEntry
, size
);
487 s
->queue_size
= size
;
490 /* Returns pointer to an empty slot or NULL if queue is full */
491 static PL330QueueEntry
*pl330_queue_find_empty(PL330Queue
*s
)
495 for (i
= 0; i
< s
->queue_size
; i
++) {
496 if (s
->queue
[i
].tag
== PL330_UNTAGGED
) {
503 /* Put instruction in queue.
506 * - non-zero - queue is full
509 static int pl330_queue_put_insn(PL330Queue
*s
, uint32_t addr
,
510 int len
, int n
, bool inc
, bool z
, uint8_t tag
)
512 PL330QueueEntry
*entry
= pl330_queue_find_empty(s
);
523 entry
->seqn
= s
->parent
->hi_seqn
[tag
];
524 s
->parent
->hi_seqn
[tag
]++;
528 /* Returns a pointer to queue slot containing instruction which satisfies
529 * following conditions:
530 * - it has valid tag value (not PL330_UNTAGGED)
531 * - if enforce_seq is set it has to be issuable without violating queue
533 * - if TAG argument is not PL330_UNTAGGED this instruction has tag value
534 * equivalent to the argument TAG value.
535 * If such instruction cannot be found NULL is returned.
538 static PL330QueueEntry
*pl330_queue_find_insn(PL330Queue
*s
, uint8_t tag
,
543 for (i
= 0; i
< s
->queue_size
; i
++) {
544 if (s
->queue
[i
].tag
!= PL330_UNTAGGED
) {
546 s
->queue
[i
].seqn
== s
->parent
->lo_seqn
[s
->queue
[i
].tag
]) &&
547 (s
->queue
[i
].tag
== tag
|| tag
== PL330_UNTAGGED
||
556 /* Removes instruction from queue. */
558 static inline void pl330_queue_remove_insn(PL330Queue
*s
, PL330QueueEntry
*e
)
560 s
->parent
->lo_seqn
[e
->tag
]++;
561 e
->tag
= PL330_UNTAGGED
;
564 /* Removes all instructions tagged with TAG from queue. */
566 static inline void pl330_queue_remove_tagged(PL330Queue
*s
, uint8_t tag
)
570 for (i
= 0; i
< s
->queue_size
; i
++) {
571 if (s
->queue
[i
].tag
== tag
) {
572 s
->queue
[i
].tag
= PL330_UNTAGGED
;
577 /* DMA instruction execution engine */
579 /* Moves DMA channel to the FAULT state and updates it's status. */
581 static inline void pl330_fault(PL330Chan
*ch
, uint32_t flags
)
583 DB_PRINT("ch: %p, flags: %" PRIx32
"\n", ch
, flags
);
584 ch
->fault_type
|= flags
;
585 if (ch
->state
== pl330_chan_fault
) {
588 ch
->state
= pl330_chan_fault
;
589 ch
->parent
->num_faulting
++;
590 if (ch
->parent
->num_faulting
== 1) {
591 DB_PRINT("abort interrupt raised\n");
592 qemu_irq_raise(ch
->parent
->irq_abort
);
597 * For information about instructions see PL330 Technical Reference Manual.
600 * CH - channel executing the instruction
602 * ARGS - array of 8-bit arguments
603 * LEN - number of elements in ARGS array
606 static void pl330_dmaadxh(PL330Chan
*ch
, uint8_t *args
, bool ra
, bool neg
)
608 uint32_t im
= (args
[1] << 8) | args
[0];
613 if (ch
->is_manager
) {
614 pl330_fault(ch
, PL330_FAULT_UNDEF_INSTR
);
624 static void pl330_dmaaddh(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
626 pl330_dmaadxh(ch
, args
, extract32(opcode
, 1, 1), false);
629 static void pl330_dmaadnh(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
631 pl330_dmaadxh(ch
, args
, extract32(opcode
, 1, 1), true);
634 static void pl330_dmaend(PL330Chan
*ch
, uint8_t opcode
,
635 uint8_t *args
, int len
)
637 PL330State
*s
= ch
->parent
;
639 if (ch
->state
== pl330_chan_executing
&& !ch
->is_manager
) {
640 /* Wait for all transfers to complete */
641 if (pl330_fifo_has_tag(&s
->fifo
, ch
->tag
) ||
642 pl330_queue_find_insn(&s
->read_queue
, ch
->tag
, false) != NULL
||
643 pl330_queue_find_insn(&s
->write_queue
, ch
->tag
, false) != NULL
) {
649 DB_PRINT("DMA ending!\n");
650 pl330_fifo_tagged_remove(&s
->fifo
, ch
->tag
);
651 pl330_queue_remove_tagged(&s
->read_queue
, ch
->tag
);
652 pl330_queue_remove_tagged(&s
->write_queue
, ch
->tag
);
653 ch
->state
= pl330_chan_stopped
;
656 static void pl330_dmaflushp(PL330Chan
*ch
, uint8_t opcode
,
657 uint8_t *args
, int len
)
662 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
665 periph_id
= (args
[0] >> 3) & 0x1f;
666 if (periph_id
>= ch
->parent
->num_periph_req
) {
667 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
670 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_PNS
] & (1 << periph_id
))) {
671 pl330_fault(ch
, PL330_FAULT_CH_PERIPH_ERR
);
677 static void pl330_dmago(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
686 if (!ch
->is_manager
) {
687 pl330_fault(ch
, PL330_FAULT_UNDEF_INSTR
);
691 chan_id
= args
[0] & 7;
692 if ((args
[0] >> 3)) {
693 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
696 if (chan_id
>= ch
->parent
->num_chnls
) {
697 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
700 pc
= (((uint32_t)args
[4]) << 24) | (((uint32_t)args
[3]) << 16) |
701 (((uint32_t)args
[2]) << 8) | (((uint32_t)args
[1]));
702 if (ch
->parent
->chan
[chan_id
].state
!= pl330_chan_stopped
) {
703 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
707 pl330_fault(ch
, PL330_FAULT_DMAGO_ERR
);
710 s
= &ch
->parent
->chan
[chan_id
];
713 s
->state
= pl330_chan_executing
;
716 static void pl330_dmald(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
718 uint8_t bs
= opcode
& 3;
723 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
726 if ((bs
== 1 && ch
->request_flag
== PL330_BURST
) ||
727 (bs
== 3 && ch
->request_flag
== PL330_SINGLE
)) {
731 if (bs
== 1 && ch
->request_flag
== PL330_SINGLE
) {
734 num
= ((ch
->control
>> 4) & 0xf) + 1;
736 size
= (uint32_t)1 << ((ch
->control
>> 1) & 0x7);
737 inc
= !!(ch
->control
& 1);
738 ch
->stall
= pl330_queue_put_insn(&ch
->parent
->read_queue
, ch
->src
,
739 size
, num
, inc
, 0, ch
->tag
);
741 DB_PRINT("channel:%" PRId8
" address:%08" PRIx32
" size:%" PRIx32
742 " num:%" PRId32
" %c\n",
743 ch
->tag
, ch
->src
, size
, num
, inc
? 'Y' : 'N');
744 ch
->src
+= inc
? size
* num
- (ch
->src
& (size
- 1)) : 0;
748 static void pl330_dmaldp(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
753 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
756 periph_id
= (args
[0] >> 3) & 0x1f;
757 if (periph_id
>= ch
->parent
->num_periph_req
) {
758 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
761 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_PNS
] & (1 << periph_id
))) {
762 pl330_fault(ch
, PL330_FAULT_CH_PERIPH_ERR
);
765 pl330_dmald(ch
, opcode
, args
, len
);
768 static void pl330_dmalp(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
770 uint8_t lc
= (opcode
& 2) >> 1;
772 ch
->lc
[lc
] = args
[0];
775 static void pl330_dmakill(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
777 if (ch
->state
== pl330_chan_fault
||
778 ch
->state
== pl330_chan_fault_completing
) {
779 /* This is the only way for a channel to leave the faulting state */
781 ch
->parent
->num_faulting
--;
782 if (ch
->parent
->num_faulting
== 0) {
783 DB_PRINT("abort interrupt lowered\n");
784 qemu_irq_lower(ch
->parent
->irq_abort
);
787 ch
->state
= pl330_chan_killing
;
788 pl330_fifo_tagged_remove(&ch
->parent
->fifo
, ch
->tag
);
789 pl330_queue_remove_tagged(&ch
->parent
->read_queue
, ch
->tag
);
790 pl330_queue_remove_tagged(&ch
->parent
->write_queue
, ch
->tag
);
791 ch
->state
= pl330_chan_stopped
;
794 static void pl330_dmalpend(PL330Chan
*ch
, uint8_t opcode
,
795 uint8_t *args
, int len
)
797 uint8_t nf
= (opcode
& 0x10) >> 4;
798 uint8_t bs
= opcode
& 3;
799 uint8_t lc
= (opcode
& 4) >> 2;
802 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
805 if ((bs
== 1 && ch
->request_flag
== PL330_BURST
) ||
806 (bs
== 3 && ch
->request_flag
== PL330_SINGLE
)) {
810 if (!nf
|| ch
->lc
[lc
]) {
814 DB_PRINT("loop reiteration\n");
817 /* "ch->pc -= args[0] + len + 1" is incorrect when args[0] == 256 */
819 DB_PRINT("loop fallthrough\n");
824 static void pl330_dmamov(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
826 uint8_t rd
= args
[0] & 7;
829 if ((args
[0] >> 3)) {
830 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
833 im
= (((uint32_t)args
[4]) << 24) | (((uint32_t)args
[3]) << 16) |
834 (((uint32_t)args
[2]) << 8) | (((uint32_t)args
[1]));
846 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
851 static void pl330_dmanop(PL330Chan
*ch
, uint8_t opcode
,
852 uint8_t *args
, int len
)
857 static void pl330_dmarmb(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
859 if (pl330_queue_find_insn(&ch
->parent
->read_queue
, ch
->tag
, false)) {
860 ch
->state
= pl330_chan_at_barrier
;
864 ch
->state
= pl330_chan_executing
;
868 static void pl330_dmasev(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
873 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
876 ev_id
= (args
[0] >> 3) & 0x1f;
877 if (ev_id
>= ch
->parent
->num_events
) {
878 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
881 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_INS
] & (1 << ev_id
))) {
882 pl330_fault(ch
, PL330_FAULT_EVENT_ERR
);
885 if (ch
->parent
->inten
& (1 << ev_id
)) {
886 ch
->parent
->int_status
|= (1 << ev_id
);
887 DB_PRINT("event interrupt raised %" PRId8
"\n", ev_id
);
888 qemu_irq_raise(ch
->parent
->irq
[ev_id
]);
890 DB_PRINT("event raised %" PRId8
"\n", ev_id
);
891 ch
->parent
->ev_status
|= (1 << ev_id
);
894 static void pl330_dmast(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
896 uint8_t bs
= opcode
& 3;
901 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
904 if ((bs
== 1 && ch
->request_flag
== PL330_BURST
) ||
905 (bs
== 3 && ch
->request_flag
== PL330_SINGLE
)) {
909 num
= ((ch
->control
>> 18) & 0xf) + 1;
910 size
= (uint32_t)1 << ((ch
->control
>> 15) & 0x7);
911 inc
= !!((ch
->control
>> 14) & 1);
912 ch
->stall
= pl330_queue_put_insn(&ch
->parent
->write_queue
, ch
->dst
,
913 size
, num
, inc
, 0, ch
->tag
);
915 DB_PRINT("channel:%" PRId8
" address:%08" PRIx32
" size:%" PRIx32
916 " num:%" PRId32
" %c\n",
917 ch
->tag
, ch
->dst
, size
, num
, inc
? 'Y' : 'N');
918 ch
->dst
+= inc
? size
* num
- (ch
->dst
& (size
- 1)) : 0;
922 static void pl330_dmastp(PL330Chan
*ch
, uint8_t opcode
,
923 uint8_t *args
, int len
)
928 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
931 periph_id
= (args
[0] >> 3) & 0x1f;
932 if (periph_id
>= ch
->parent
->num_periph_req
) {
933 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
936 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_PNS
] & (1 << periph_id
))) {
937 pl330_fault(ch
, PL330_FAULT_CH_PERIPH_ERR
);
940 pl330_dmast(ch
, opcode
, args
, len
);
943 static void pl330_dmastz(PL330Chan
*ch
, uint8_t opcode
,
944 uint8_t *args
, int len
)
949 num
= ((ch
->control
>> 18) & 0xf) + 1;
950 size
= (uint32_t)1 << ((ch
->control
>> 15) & 0x7);
951 inc
= !!((ch
->control
>> 14) & 1);
952 ch
->stall
= pl330_queue_put_insn(&ch
->parent
->write_queue
, ch
->dst
,
953 size
, num
, inc
, 1, ch
->tag
);
955 ch
->dst
+= size
* num
;
959 static void pl330_dmawfe(PL330Chan
*ch
, uint8_t opcode
,
960 uint8_t *args
, int len
)
966 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
969 ev_id
= (args
[0] >> 3) & 0x1f;
970 if (ev_id
>= ch
->parent
->num_events
) {
971 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
974 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_INS
] & (1 << ev_id
))) {
975 pl330_fault(ch
, PL330_FAULT_EVENT_ERR
);
979 ch
->state
= pl330_chan_waiting_event
;
980 if (~ch
->parent
->inten
& ch
->parent
->ev_status
& 1 << ev_id
) {
981 ch
->state
= pl330_chan_executing
;
982 /* If anyone else is currently waiting on the same event, let them
983 * clear the ev_status so they pick up event as well
985 for (i
= 0; i
< ch
->parent
->num_chnls
; ++i
) {
986 PL330Chan
*peer
= &ch
->parent
->chan
[i
];
987 if (peer
->state
== pl330_chan_waiting_event
&&
988 peer
->wakeup
== ev_id
) {
992 ch
->parent
->ev_status
&= ~(1 << ev_id
);
993 DB_PRINT("event lowered %" PRIx8
"\n", ev_id
);
999 static void pl330_dmawfp(PL330Chan
*ch
, uint8_t opcode
,
1000 uint8_t *args
, int len
)
1002 uint8_t bs
= opcode
& 3;
1006 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
1009 periph_id
= (args
[0] >> 3) & 0x1f;
1010 if (periph_id
>= ch
->parent
->num_periph_req
) {
1011 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
1014 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_PNS
] & (1 << periph_id
))) {
1015 pl330_fault(ch
, PL330_FAULT_CH_PERIPH_ERR
);
1020 ch
->request_flag
= PL330_SINGLE
;
1024 ch
->request_flag
= PL330_BURST
;
1028 ch
->request_flag
= PL330_BURST
;
1032 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
1036 if (ch
->parent
->periph_busy
[periph_id
]) {
1037 ch
->state
= pl330_chan_waiting_periph
;
1039 } else if (ch
->state
== pl330_chan_waiting_periph
) {
1040 ch
->state
= pl330_chan_executing
;
1044 static void pl330_dmawmb(PL330Chan
*ch
, uint8_t opcode
,
1045 uint8_t *args
, int len
)
1047 if (pl330_queue_find_insn(&ch
->parent
->write_queue
, ch
->tag
, false)) {
1048 ch
->state
= pl330_chan_at_barrier
;
1052 ch
->state
= pl330_chan_executing
;
1056 /* NULL terminated array of the instruction descriptions. */
1057 static const PL330InsnDesc insn_desc
[] = {
1058 { .opcode
= 0x54, .opmask
= 0xFD, .size
= 3, .exec
= pl330_dmaaddh
, },
1059 { .opcode
= 0x5c, .opmask
= 0xFD, .size
= 3, .exec
= pl330_dmaadnh
, },
1060 { .opcode
= 0x00, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmaend
, },
1061 { .opcode
= 0x35, .opmask
= 0xFF, .size
= 2, .exec
= pl330_dmaflushp
, },
1062 { .opcode
= 0xA0, .opmask
= 0xFD, .size
= 6, .exec
= pl330_dmago
, },
1063 { .opcode
= 0x04, .opmask
= 0xFC, .size
= 1, .exec
= pl330_dmald
, },
1064 { .opcode
= 0x25, .opmask
= 0xFD, .size
= 2, .exec
= pl330_dmaldp
, },
1065 { .opcode
= 0x20, .opmask
= 0xFD, .size
= 2, .exec
= pl330_dmalp
, },
1066 /* dmastp must be before dmalpend in this list, because their maps
1069 { .opcode
= 0x29, .opmask
= 0xFD, .size
= 2, .exec
= pl330_dmastp
, },
1070 { .opcode
= 0x28, .opmask
= 0xE8, .size
= 2, .exec
= pl330_dmalpend
, },
1071 { .opcode
= 0x01, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmakill
, },
1072 { .opcode
= 0xBC, .opmask
= 0xFF, .size
= 6, .exec
= pl330_dmamov
, },
1073 { .opcode
= 0x18, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmanop
, },
1074 { .opcode
= 0x12, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmarmb
, },
1075 { .opcode
= 0x34, .opmask
= 0xFF, .size
= 2, .exec
= pl330_dmasev
, },
1076 { .opcode
= 0x08, .opmask
= 0xFC, .size
= 1, .exec
= pl330_dmast
, },
1077 { .opcode
= 0x0C, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmastz
, },
1078 { .opcode
= 0x36, .opmask
= 0xFF, .size
= 2, .exec
= pl330_dmawfe
, },
1079 { .opcode
= 0x30, .opmask
= 0xFC, .size
= 2, .exec
= pl330_dmawfp
, },
1080 { .opcode
= 0x13, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmawmb
, },
1081 { .opcode
= 0x00, .opmask
= 0x00, .size
= 0, .exec
= NULL
, }
1084 /* Instructions which can be issued via debug registers. */
1085 static const PL330InsnDesc debug_insn_desc
[] = {
1086 { .opcode
= 0xA0, .opmask
= 0xFD, .size
= 6, .exec
= pl330_dmago
, },
1087 { .opcode
= 0x01, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmakill
, },
1088 { .opcode
= 0x34, .opmask
= 0xFF, .size
= 2, .exec
= pl330_dmasev
, },
1089 { .opcode
= 0x00, .opmask
= 0x00, .size
= 0, .exec
= NULL
, }
1092 static inline const PL330InsnDesc
*pl330_fetch_insn(PL330Chan
*ch
)
1097 dma_memory_read(&address_space_memory
, ch
->pc
, &opcode
, 1);
1098 for (i
= 0; insn_desc
[i
].size
; i
++) {
1099 if ((opcode
& insn_desc
[i
].opmask
) == insn_desc
[i
].opcode
) {
1100 return &insn_desc
[i
];
1106 static inline void pl330_exec_insn(PL330Chan
*ch
, const PL330InsnDesc
*insn
)
1108 uint8_t buf
[PL330_INSN_MAXSIZE
];
1110 assert(insn
->size
<= PL330_INSN_MAXSIZE
);
1111 dma_memory_read(&address_space_memory
, ch
->pc
, buf
, insn
->size
);
1112 insn
->exec(ch
, buf
[0], &buf
[1], insn
->size
- 1);
1115 static inline void pl330_update_pc(PL330Chan
*ch
,
1116 const PL330InsnDesc
*insn
)
1118 ch
->pc
+= insn
->size
;
1121 /* Try to execute current instruction in channel CH. Number of executed
1122 instructions is returned (0 or 1). */
1123 static int pl330_chan_exec(PL330Chan
*ch
)
1125 const PL330InsnDesc
*insn
;
1127 if (ch
->state
!= pl330_chan_executing
&&
1128 ch
->state
!= pl330_chan_waiting_periph
&&
1129 ch
->state
!= pl330_chan_at_barrier
&&
1130 ch
->state
!= pl330_chan_waiting_event
) {
1134 insn
= pl330_fetch_insn(ch
);
1136 DB_PRINT("pl330 undefined instruction\n");
1137 pl330_fault(ch
, PL330_FAULT_UNDEF_INSTR
);
1140 pl330_exec_insn(ch
, insn
);
1142 pl330_update_pc(ch
, insn
);
1143 ch
->watchdog_timer
= 0;
1145 /* WDT only active in exec state */
1146 } else if (ch
->state
== pl330_chan_executing
) {
1147 ch
->watchdog_timer
++;
1148 if (ch
->watchdog_timer
>= PL330_WATCHDOG_LIMIT
) {
1149 pl330_fault(ch
, PL330_FAULT_LOCKUP_ERR
);
1155 /* Try to execute 1 instruction in each channel, one instruction from read
1156 queue and one instruction from write queue. Number of successfully executed
1157 instructions is returned. */
1158 static int pl330_exec_cycle(PL330Chan
*channel
)
1160 PL330State
*s
= channel
->parent
;
1165 uint8_t buf
[PL330_MAX_BURST_LEN
];
1167 /* Execute one instruction in each channel */
1168 num_exec
+= pl330_chan_exec(channel
);
1170 /* Execute one instruction from read queue */
1171 q
= pl330_queue_find_insn(&s
->read_queue
, PL330_UNTAGGED
, true);
1172 if (q
!= NULL
&& q
->len
<= pl330_fifo_num_free(&s
->fifo
)) {
1173 int len
= q
->len
- (q
->addr
& (q
->len
- 1));
1175 dma_memory_read(&address_space_memory
, q
->addr
, buf
, len
);
1176 if (PL330_ERR_DEBUG
> 1) {
1177 DB_PRINT("PL330 read from memory @%08" PRIx32
" (size = %08x):\n",
1179 qemu_hexdump((char *)buf
, stderr
, "", len
);
1181 fifo_res
= pl330_fifo_push(&s
->fifo
, buf
, len
, q
->tag
);
1182 if (fifo_res
== PL330_FIFO_OK
) {
1188 pl330_queue_remove_insn(&s
->read_queue
, q
);
1194 /* Execute one instruction from write queue. */
1195 q
= pl330_queue_find_insn(&s
->write_queue
, pl330_fifo_tag(&s
->fifo
), true);
1197 int len
= q
->len
- (q
->addr
& (q
->len
- 1));
1200 for (i
= 0; i
< len
; i
++) {
1204 fifo_res
= pl330_fifo_get(&s
->fifo
, buf
, len
, q
->tag
);
1206 if (fifo_res
== PL330_FIFO_OK
|| q
->z
) {
1207 dma_memory_write(&address_space_memory
, q
->addr
, buf
, len
);
1208 if (PL330_ERR_DEBUG
> 1) {
1209 DB_PRINT("PL330 read from memory @%08" PRIx32
1210 " (size = %08x):\n", q
->addr
, len
);
1211 qemu_hexdump((char *)buf
, stderr
, "", len
);
1217 } else if (fifo_res
== PL330_FIFO_STALL
) {
1218 pl330_fault(&channel
->parent
->chan
[q
->tag
],
1219 PL330_FAULT_FIFOEMPTY_ERR
);
1223 pl330_queue_remove_insn(&s
->write_queue
, q
);
1230 static int pl330_exec_channel(PL330Chan
*channel
)
1234 /* TODO: Is it all right to execute everything or should we do per-cycle
1236 while (pl330_exec_cycle(channel
)) {
1240 /* Detect deadlock */
1241 if (channel
->state
== pl330_chan_executing
) {
1242 pl330_fault(channel
, PL330_FAULT_LOCKUP_ERR
);
1244 /* Situation when one of the queues has deadlocked but all channels
1245 * have finished their programs should be impossible.
1251 static inline void pl330_exec(PL330State
*s
)
1256 insr_exec
= pl330_exec_channel(&s
->manager
);
1258 for (i
= 0; i
< s
->num_chnls
; i
++) {
1259 insr_exec
+= pl330_exec_channel(&s
->chan
[i
]);
1261 } while (insr_exec
);
1264 static void pl330_exec_cycle_timer(void *opaque
)
1266 PL330State
*s
= (PL330State
*)opaque
;
1270 /* Stop or restore dma operations */
1272 static void pl330_dma_stop_irq(void *opaque
, int irq
, int level
)
1274 PL330State
*s
= (PL330State
*)opaque
;
1276 if (s
->periph_busy
[irq
] != level
) {
1277 s
->periph_busy
[irq
] = level
;
1278 timer_mod(s
->timer
, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
));
1282 static void pl330_debug_exec(PL330State
*s
)
1289 const PL330InsnDesc
*insn
;
1291 s
->debug_status
= 1;
1292 chan_id
= (s
->dbg
[0] >> 8) & 0x07;
1293 opcode
= (s
->dbg
[0] >> 16) & 0xff;
1294 args
[0] = (s
->dbg
[0] >> 24) & 0xff;
1295 args
[1] = (s
->dbg
[1] >> 0) & 0xff;
1296 args
[2] = (s
->dbg
[1] >> 8) & 0xff;
1297 args
[3] = (s
->dbg
[1] >> 16) & 0xff;
1298 args
[4] = (s
->dbg
[1] >> 24) & 0xff;
1299 DB_PRINT("chan id: %" PRIx8
"\n", chan_id
);
1300 if (s
->dbg
[0] & 1) {
1301 ch
= &s
->chan
[chan_id
];
1306 for (i
= 0; debug_insn_desc
[i
].size
; i
++) {
1307 if ((opcode
& debug_insn_desc
[i
].opmask
) == debug_insn_desc
[i
].opcode
) {
1308 insn
= &debug_insn_desc
[i
];
1312 pl330_fault(ch
, PL330_FAULT_UNDEF_INSTR
| PL330_FAULT_DBG_INSTR
);
1316 insn
->exec(ch
, opcode
, args
, insn
->size
- 1);
1317 if (ch
->fault_type
) {
1318 ch
->fault_type
|= PL330_FAULT_DBG_INSTR
;
1321 qemu_log_mask(LOG_UNIMP
, "pl330: stall of debug instruction not "
1324 s
->debug_status
= 0;
1327 /* IOMEM mapped registers */
1329 static void pl330_iomem_write(void *opaque
, hwaddr offset
,
1330 uint64_t value
, unsigned size
)
1332 PL330State
*s
= (PL330State
*) opaque
;
1335 DB_PRINT("addr: %08x data: %08x\n", (unsigned)offset
, (unsigned)value
);
1338 case PL330_REG_INTEN
:
1341 case PL330_REG_INTCLR
:
1342 for (i
= 0; i
< s
->num_events
; i
++) {
1343 if (s
->int_status
& s
->inten
& value
& (1 << i
)) {
1344 DB_PRINT("event interrupt lowered %d\n", i
);
1345 qemu_irq_lower(s
->irq
[i
]);
1348 s
->ev_status
&= ~(value
& s
->inten
);
1349 s
->int_status
&= ~(value
& s
->inten
);
1351 case PL330_REG_DBGCMD
:
1352 if ((value
& 3) == 0) {
1353 pl330_debug_exec(s
);
1356 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: write of illegal value %u "
1357 "for offset " TARGET_FMT_plx
"\n", (unsigned)value
,
1361 case PL330_REG_DBGINST0
:
1362 DB_PRINT("s->dbg[0] = %08x\n", (unsigned)value
);
1365 case PL330_REG_DBGINST1
:
1366 DB_PRINT("s->dbg[1] = %08x\n", (unsigned)value
);
1370 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad write offset " TARGET_FMT_plx
1376 static inline uint32_t pl330_iomem_read_imp(void *opaque
,
1379 PL330State
*s
= (PL330State
*)opaque
;
1384 if (offset
>= PL330_REG_PERIPH_ID
&& offset
< PL330_REG_PERIPH_ID
+ 32) {
1385 return pl330_id
[(offset
- PL330_REG_PERIPH_ID
) >> 2];
1387 if (offset
>= PL330_REG_CR0_BASE
&& offset
< PL330_REG_CR0_BASE
+ 24) {
1388 return s
->cfg
[(offset
- PL330_REG_CR0_BASE
) >> 2];
1390 if (offset
>= PL330_REG_CHANCTRL
&& offset
< PL330_REG_DBGSTATUS
) {
1391 offset
-= PL330_REG_CHANCTRL
;
1392 chan_id
= offset
>> 5;
1393 if (chan_id
>= s
->num_chnls
) {
1394 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad read offset "
1395 TARGET_FMT_plx
"\n", offset
);
1398 switch (offset
& 0x1f) {
1400 return s
->chan
[chan_id
].src
;
1402 return s
->chan
[chan_id
].dst
;
1404 return s
->chan
[chan_id
].control
;
1406 return s
->chan
[chan_id
].lc
[0];
1408 return s
->chan
[chan_id
].lc
[1];
1410 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad read offset "
1411 TARGET_FMT_plx
"\n", offset
);
1415 if (offset
>= PL330_REG_CSR_BASE
&& offset
< 0x400) {
1416 offset
-= PL330_REG_CSR_BASE
;
1417 chan_id
= offset
>> 3;
1418 if (chan_id
>= s
->num_chnls
) {
1419 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad read offset "
1420 TARGET_FMT_plx
"\n", offset
);
1423 switch ((offset
>> 2) & 1) {
1425 res
= (s
->chan
[chan_id
].ns
<< 21) |
1426 (s
->chan
[chan_id
].wakeup
<< 4) |
1427 (s
->chan
[chan_id
].state
) |
1428 (s
->chan
[chan_id
].wfp_sbp
<< 14);
1431 return s
->chan
[chan_id
].pc
;
1433 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: read error\n");
1437 if (offset
>= PL330_REG_FTR_BASE
&& offset
< 0x100) {
1438 offset
-= PL330_REG_FTR_BASE
;
1439 chan_id
= offset
>> 2;
1440 if (chan_id
>= s
->num_chnls
) {
1441 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad read offset "
1442 TARGET_FMT_plx
"\n", offset
);
1445 return s
->chan
[chan_id
].fault_type
;
1449 return (s
->manager
.ns
<< 9) | (s
->manager
.wakeup
<< 4) |
1450 (s
->manager
.state
& 0xf);
1452 return s
->manager
.pc
;
1453 case PL330_REG_INTEN
:
1455 case PL330_REG_INT_EVENT_RIS
:
1456 return s
->ev_status
;
1457 case PL330_REG_INTMIS
:
1458 return s
->int_status
;
1459 case PL330_REG_INTCLR
:
1460 /* Documentation says that we can't read this register
1461 * but linux kernel does it
1464 case PL330_REG_FSRD
:
1465 return s
->manager
.state
? 1 : 0;
1466 case PL330_REG_FSRC
:
1468 for (i
= 0; i
< s
->num_chnls
; i
++) {
1469 if (s
->chan
[i
].state
== pl330_chan_fault
||
1470 s
->chan
[i
].state
== pl330_chan_fault_completing
) {
1475 case PL330_REG_FTRD
:
1476 return s
->manager
.fault_type
;
1477 case PL330_REG_DBGSTATUS
:
1478 return s
->debug_status
;
1480 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad read offset "
1481 TARGET_FMT_plx
"\n", offset
);
1486 static uint64_t pl330_iomem_read(void *opaque
, hwaddr offset
,
1489 uint32_t ret
= pl330_iomem_read_imp(opaque
, offset
);
1490 DB_PRINT("addr: %08" HWADDR_PRIx
" data: %08" PRIx32
"\n", offset
, ret
);
1494 static const MemoryRegionOps pl330_ops
= {
1495 .read
= pl330_iomem_read
,
1496 .write
= pl330_iomem_write
,
1497 .endianness
= DEVICE_NATIVE_ENDIAN
,
1499 .min_access_size
= 4,
1500 .max_access_size
= 4,
1504 /* Controller logic and initialization */
1506 static void pl330_chan_reset(PL330Chan
*ch
)
1511 ch
->state
= pl330_chan_stopped
;
1512 ch
->watchdog_timer
= 0;
1519 static void pl330_reset(DeviceState
*d
)
1522 PL330State
*s
= PL330(d
);
1527 s
->debug_status
= 0;
1528 s
->num_faulting
= 0;
1529 s
->manager
.ns
= s
->mgr_ns_at_rst
;
1530 pl330_fifo_reset(&s
->fifo
);
1531 pl330_queue_reset(&s
->read_queue
);
1532 pl330_queue_reset(&s
->write_queue
);
1534 for (i
= 0; i
< s
->num_chnls
; i
++) {
1535 pl330_chan_reset(&s
->chan
[i
]);
1537 for (i
= 0; i
< s
->num_periph_req
; i
++) {
1538 s
->periph_busy
[i
] = 0;
1541 timer_del(s
->timer
);
1544 static void pl330_realize(DeviceState
*dev
, Error
**errp
)
1547 PL330State
*s
= PL330(dev
);
1549 sysbus_init_irq(SYS_BUS_DEVICE(dev
), &s
->irq_abort
);
1550 memory_region_init_io(&s
->iomem
, OBJECT(s
), &pl330_ops
, s
,
1551 "dma", PL330_IOMEM_SIZE
);
1552 sysbus_init_mmio(SYS_BUS_DEVICE(dev
), &s
->iomem
);
1554 s
->timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, pl330_exec_cycle_timer
, s
);
1556 s
->cfg
[0] = (s
->mgr_ns_at_rst
? 0x4 : 0) |
1557 (s
->num_periph_req
> 0 ? 1 : 0) |
1558 ((s
->num_chnls
- 1) & 0x7) << 4 |
1559 ((s
->num_periph_req
- 1) & 0x1f) << 12 |
1560 ((s
->num_events
- 1) & 0x1f) << 17;
1562 switch (s
->i_cache_len
) {
1576 error_setg(errp
, "Bad value for i-cache_len property: %" PRIx8
,
1580 s
->cfg
[1] |= ((s
->num_i_cache_lines
- 1) & 0xf) << 4;
1582 s
->chan
= g_new0(PL330Chan
, s
->num_chnls
);
1583 s
->hi_seqn
= g_new0(uint8_t, s
->num_chnls
);
1584 s
->lo_seqn
= g_new0(uint8_t, s
->num_chnls
);
1585 for (i
= 0; i
< s
->num_chnls
; i
++) {
1586 s
->chan
[i
].parent
= s
;
1587 s
->chan
[i
].tag
= (uint8_t)i
;
1589 s
->manager
.parent
= s
;
1590 s
->manager
.tag
= s
->num_chnls
;
1591 s
->manager
.is_manager
= true;
1593 s
->irq
= g_new0(qemu_irq
, s
->num_events
);
1594 for (i
= 0; i
< s
->num_events
; i
++) {
1595 sysbus_init_irq(SYS_BUS_DEVICE(dev
), &s
->irq
[i
]);
1598 qdev_init_gpio_in(dev
, pl330_dma_stop_irq
, PL330_PERIPH_NUM
);
1600 switch (s
->data_width
) {
1602 s
->cfg
[CFG_CRD
] |= 0x2;
1605 s
->cfg
[CFG_CRD
] |= 0x3;
1608 s
->cfg
[CFG_CRD
] |= 0x4;
1611 error_setg(errp
, "Bad value for data_width property: %" PRIx8
,
1616 s
->cfg
[CFG_CRD
] |= ((s
->wr_cap
- 1) & 0x7) << 4 |
1617 ((s
->wr_q_dep
- 1) & 0xf) << 8 |
1618 ((s
->rd_cap
- 1) & 0x7) << 12 |
1619 ((s
->rd_q_dep
- 1) & 0xf) << 16 |
1620 ((s
->data_buffer_dep
- 1) & 0x1ff) << 20;
1622 pl330_queue_init(&s
->read_queue
, s
->rd_q_dep
, s
);
1623 pl330_queue_init(&s
->write_queue
, s
->wr_q_dep
, s
);
1624 pl330_fifo_init(&s
->fifo
, s
->data_width
/ 4 * s
->data_buffer_dep
);
1627 static Property pl330_properties
[] = {
1629 DEFINE_PROP_UINT32("num_chnls", PL330State
, num_chnls
, 8),
1630 DEFINE_PROP_UINT8("num_periph_req", PL330State
, num_periph_req
, 4),
1631 DEFINE_PROP_UINT8("num_events", PL330State
, num_events
, 16),
1632 DEFINE_PROP_UINT8("mgr_ns_at_rst", PL330State
, mgr_ns_at_rst
, 0),
1634 DEFINE_PROP_UINT8("i-cache_len", PL330State
, i_cache_len
, 4),
1635 DEFINE_PROP_UINT8("num_i-cache_lines", PL330State
, num_i_cache_lines
, 8),
1637 DEFINE_PROP_UINT32("boot_addr", PL330State
, cfg
[CFG_BOOT_ADDR
], 0),
1638 DEFINE_PROP_UINT32("INS", PL330State
, cfg
[CFG_INS
], 0),
1639 DEFINE_PROP_UINT32("PNS", PL330State
, cfg
[CFG_PNS
], 0),
1641 DEFINE_PROP_UINT8("data_width", PL330State
, data_width
, 64),
1642 DEFINE_PROP_UINT8("wr_cap", PL330State
, wr_cap
, 8),
1643 DEFINE_PROP_UINT8("wr_q_dep", PL330State
, wr_q_dep
, 16),
1644 DEFINE_PROP_UINT8("rd_cap", PL330State
, rd_cap
, 8),
1645 DEFINE_PROP_UINT8("rd_q_dep", PL330State
, rd_q_dep
, 16),
1646 DEFINE_PROP_UINT16("data_buffer_dep", PL330State
, data_buffer_dep
, 256),
1648 DEFINE_PROP_END_OF_LIST(),
1651 static void pl330_class_init(ObjectClass
*klass
, void *data
)
1653 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1655 dc
->realize
= pl330_realize
;
1656 dc
->reset
= pl330_reset
;
1657 dc
->props
= pl330_properties
;
1658 dc
->vmsd
= &vmstate_pl330
;
1661 static const TypeInfo pl330_type_info
= {
1663 .parent
= TYPE_SYS_BUS_DEVICE
,
1664 .instance_size
= sizeof(PL330State
),
1665 .class_init
= pl330_class_init
,
1668 static void pl330_register_types(void)
1670 type_register_static(&pl330_type_info
);
1673 type_init(pl330_register_types
)