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 "hw/sysbus.h"
19 #include "qemu/timer.h"
20 #include "sysemu/dma.h"
22 #ifndef PL330_ERR_DEBUG
23 #define PL330_ERR_DEBUG 0
26 #define DB_PRINT_L(lvl, fmt, args...) do {\
27 if (PL330_ERR_DEBUG >= lvl) {\
28 fprintf(stderr, "PL330: %s:" fmt, __func__, ## args);\
32 #define DB_PRINT(fmt, args...) DB_PRINT_L(1, fmt, ## args)
34 #define PL330_PERIPH_NUM 32
35 #define PL330_MAX_BURST_LEN 128
36 #define PL330_INSN_MAXSIZE 6
38 #define PL330_FIFO_OK 0
39 #define PL330_FIFO_STALL 1
40 #define PL330_FIFO_ERR (-1)
42 #define PL330_FAULT_UNDEF_INSTR (1 << 0)
43 #define PL330_FAULT_OPERAND_INVALID (1 << 1)
44 #define PL330_FAULT_DMAGO_ERR (1 << 4)
45 #define PL330_FAULT_EVENT_ERR (1 << 5)
46 #define PL330_FAULT_CH_PERIPH_ERR (1 << 6)
47 #define PL330_FAULT_CH_RDWR_ERR (1 << 7)
48 #define PL330_FAULT_ST_DATA_UNAVAILABLE (1 << 12)
49 #define PL330_FAULT_FIFOEMPTY_ERR (1 << 13)
50 #define PL330_FAULT_INSTR_FETCH_ERR (1 << 16)
51 #define PL330_FAULT_DATA_WRITE_ERR (1 << 17)
52 #define PL330_FAULT_DATA_READ_ERR (1 << 18)
53 #define PL330_FAULT_DBG_INSTR (1 << 30)
54 #define PL330_FAULT_LOCKUP_ERR (1 << 31)
56 #define PL330_UNTAGGED 0xff
58 #define PL330_SINGLE 0x0
59 #define PL330_BURST 0x1
61 #define PL330_WATCHDOG_LIMIT 1024
63 /* IOMEM mapped registers */
64 #define PL330_REG_DSR 0x000
65 #define PL330_REG_DPC 0x004
66 #define PL330_REG_INTEN 0x020
67 #define PL330_REG_INT_EVENT_RIS 0x024
68 #define PL330_REG_INTMIS 0x028
69 #define PL330_REG_INTCLR 0x02C
70 #define PL330_REG_FSRD 0x030
71 #define PL330_REG_FSRC 0x034
72 #define PL330_REG_FTRD 0x038
73 #define PL330_REG_FTR_BASE 0x040
74 #define PL330_REG_CSR_BASE 0x100
75 #define PL330_REG_CPC_BASE 0x104
76 #define PL330_REG_CHANCTRL 0x400
77 #define PL330_REG_DBGSTATUS 0xD00
78 #define PL330_REG_DBGCMD 0xD04
79 #define PL330_REG_DBGINST0 0xD08
80 #define PL330_REG_DBGINST1 0xD0C
81 #define PL330_REG_CR0_BASE 0xE00
82 #define PL330_REG_PERIPH_ID 0xFE0
84 #define PL330_IOMEM_SIZE 0x1000
86 #define CFG_BOOT_ADDR 2
91 static const uint32_t pl330_id
[] = {
92 0x30, 0x13, 0x24, 0x00, 0x0D, 0xF0, 0x05, 0xB1
95 /* DMA channel states as they are described in PL330 Technical Reference Manual
96 * Most of them will not be used in emulation.
99 pl330_chan_stopped
= 0,
100 pl330_chan_executing
= 1,
101 pl330_chan_cache_miss
= 2,
102 pl330_chan_updating_pc
= 3,
103 pl330_chan_waiting_event
= 4,
104 pl330_chan_at_barrier
= 5,
105 pl330_chan_queue_busy
= 6,
106 pl330_chan_waiting_periph
= 7,
107 pl330_chan_killing
= 8,
108 pl330_chan_completing
= 9,
109 pl330_chan_fault_completing
= 14,
110 pl330_chan_fault
= 15,
113 typedef struct PL330State PL330State
;
115 typedef struct PL330Chan
{
123 uint32_t watchdog_timer
;
126 uint8_t request_flag
;
138 static const VMStateDescription vmstate_pl330_chan
= {
139 .name
= "pl330_chan",
141 .minimum_version_id
= 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()
161 typedef struct PL330Fifo
{
169 static const VMStateDescription vmstate_pl330_fifo
= {
170 .name
= "pl330_chan",
172 .minimum_version_id
= 1,
173 .fields
= (VMStateField
[]) {
174 VMSTATE_VBUFFER_UINT32(buf
, PL330Fifo
, 1, NULL
, 0, buf_size
),
175 VMSTATE_VBUFFER_UINT32(tag
, PL330Fifo
, 1, NULL
, 0, buf_size
),
176 VMSTATE_UINT32(head
, PL330Fifo
),
177 VMSTATE_UINT32(num
, PL330Fifo
),
178 VMSTATE_UINT32(buf_size
, PL330Fifo
),
179 VMSTATE_END_OF_LIST()
183 typedef struct PL330QueueEntry
{
193 static const VMStateDescription vmstate_pl330_queue_entry
= {
194 .name
= "pl330_queue_entry",
196 .minimum_version_id
= 1,
197 .fields
= (VMStateField
[]) {
198 VMSTATE_UINT32(addr
, PL330QueueEntry
),
199 VMSTATE_UINT32(len
, PL330QueueEntry
),
200 VMSTATE_UINT8(n
, PL330QueueEntry
),
201 VMSTATE_BOOL(inc
, PL330QueueEntry
),
202 VMSTATE_BOOL(z
, PL330QueueEntry
),
203 VMSTATE_UINT8(tag
, PL330QueueEntry
),
204 VMSTATE_UINT8(seqn
, PL330QueueEntry
),
205 VMSTATE_END_OF_LIST()
209 typedef struct PL330Queue
{
211 PL330QueueEntry
*queue
;
215 static const VMStateDescription vmstate_pl330_queue
= {
216 .name
= "pl330_queue",
218 .minimum_version_id
= 1,
219 .fields
= (VMStateField
[]) {
220 VMSTATE_STRUCT_VARRAY_UINT32(queue
, PL330Queue
, queue_size
, 1,
221 vmstate_pl330_queue_entry
, PL330QueueEntry
),
222 VMSTATE_END_OF_LIST()
227 SysBusDevice parent_obj
;
233 /* Config registers. cfg[5] = CfgDn. */
235 #define EVENT_SEC_STATE 3
236 #define PERIPH_SEC_STATE 4
237 /* cfg 0 bits and pieces */
239 uint8_t num_periph_req
;
241 uint8_t mgr_ns_at_rst
;
242 /* cfg 1 bits and pieces */
244 uint8_t num_i_cache_lines
;
245 /* CRD bits and pieces */
251 uint16_t data_buffer_dep
;
256 PL330Queue read_queue
;
257 PL330Queue write_queue
;
260 QEMUTimer
*timer
; /* is used for restore dma. */
266 uint8_t debug_status
;
267 uint8_t num_faulting
;
268 uint8_t periph_busy
[PL330_PERIPH_NUM
];
272 #define TYPE_PL330 "pl330"
273 #define PL330(obj) OBJECT_CHECK(PL330State, (obj), TYPE_PL330)
275 static const VMStateDescription vmstate_pl330
= {
278 .minimum_version_id
= 1,
279 .fields
= (VMStateField
[]) {
280 VMSTATE_STRUCT(manager
, PL330State
, 0, vmstate_pl330_chan
, PL330Chan
),
281 VMSTATE_STRUCT_VARRAY_UINT32(chan
, PL330State
, num_chnls
, 0,
282 vmstate_pl330_chan
, PL330Chan
),
283 VMSTATE_VBUFFER_UINT32(lo_seqn
, PL330State
, 1, NULL
, 0, num_chnls
),
284 VMSTATE_VBUFFER_UINT32(hi_seqn
, PL330State
, 1, NULL
, 0, num_chnls
),
285 VMSTATE_STRUCT(fifo
, PL330State
, 0, vmstate_pl330_fifo
, PL330Fifo
),
286 VMSTATE_STRUCT(read_queue
, PL330State
, 0, vmstate_pl330_queue
,
288 VMSTATE_STRUCT(write_queue
, PL330State
, 0, vmstate_pl330_queue
,
290 VMSTATE_TIMER_PTR(timer
, PL330State
),
291 VMSTATE_UINT32(inten
, PL330State
),
292 VMSTATE_UINT32(int_status
, PL330State
),
293 VMSTATE_UINT32(ev_status
, PL330State
),
294 VMSTATE_UINT32_ARRAY(dbg
, PL330State
, 2),
295 VMSTATE_UINT8(debug_status
, PL330State
),
296 VMSTATE_UINT8(num_faulting
, PL330State
),
297 VMSTATE_UINT8_ARRAY(periph_busy
, PL330State
, PL330_PERIPH_NUM
),
298 VMSTATE_END_OF_LIST()
302 typedef struct PL330InsnDesc
{
303 /* OPCODE of the instruction */
305 /* Mask so we can select several sibling instructions, such as
306 DMALD, DMALDS and DMALDB */
308 /* Size of instruction in bytes */
311 void (*exec
)(PL330Chan
*, uint8_t opcode
, uint8_t *args
, int len
);
315 /* MFIFO Implementation
317 * MFIFO is implemented as a cyclic buffer of BUF_SIZE size. Tagged bytes are
318 * stored in this buffer. Data is stored in BUF field, tags - in the
319 * corresponding array elements of TAG field.
322 /* Initialize queue. */
324 static void pl330_fifo_init(PL330Fifo
*s
, uint32_t size
)
326 s
->buf
= g_malloc0(size
);
327 s
->tag
= g_malloc0(size
);
331 /* Cyclic increment */
333 static inline int pl330_fifo_inc(PL330Fifo
*s
, int x
)
335 return (x
+ 1) % s
->buf_size
;
338 /* Number of empty bytes in MFIFO */
340 static inline int pl330_fifo_num_free(PL330Fifo
*s
)
342 return s
->buf_size
- s
->num
;
345 /* Push LEN bytes of data stored in BUF to MFIFO and tag it with TAG.
346 * Zero returned on success, PL330_FIFO_STALL if there is no enough free
347 * space in MFIFO to store requested amount of data. If push was unsuccessful
348 * no data is stored to MFIFO.
351 static int pl330_fifo_push(PL330Fifo
*s
, uint8_t *buf
, int len
, uint8_t tag
)
355 if (s
->buf_size
- s
->num
< len
) {
356 return PL330_FIFO_STALL
;
358 for (i
= 0; i
< len
; i
++) {
359 int push_idx
= (s
->head
+ s
->num
+ i
) % s
->buf_size
;
360 s
->buf
[push_idx
] = buf
[i
];
361 s
->tag
[push_idx
] = tag
;
364 return PL330_FIFO_OK
;
367 /* Get LEN bytes of data from MFIFO and store it to BUF. Tag value of each
368 * byte is verified. Zero returned on success, PL330_FIFO_ERR on tag mismatch
369 * and PL330_FIFO_STALL if there is no enough data in MFIFO. If get was
370 * unsuccessful no data is removed from MFIFO.
373 static int pl330_fifo_get(PL330Fifo
*s
, uint8_t *buf
, int len
, uint8_t tag
)
378 return PL330_FIFO_STALL
;
380 for (i
= 0; i
< len
; i
++) {
381 if (s
->tag
[s
->head
] == tag
) {
382 int get_idx
= (s
->head
+ i
) % s
->buf_size
;
383 buf
[i
] = s
->buf
[get_idx
];
384 } else { /* Tag mismatch - Rollback transaction */
385 return PL330_FIFO_ERR
;
388 s
->head
= (s
->head
+ len
) % s
->buf_size
;
390 return PL330_FIFO_OK
;
393 /* Reset MFIFO. This completely erases all data in it. */
395 static inline void pl330_fifo_reset(PL330Fifo
*s
)
401 /* Return tag of the first byte stored in MFIFO. If MFIFO is empty
402 * PL330_UNTAGGED is returned.
405 static inline uint8_t pl330_fifo_tag(PL330Fifo
*s
)
407 return (!s
->num
) ? PL330_UNTAGGED
: s
->tag
[s
->head
];
410 /* Returns non-zero if tag TAG is present in fifo or zero otherwise */
412 static int pl330_fifo_has_tag(PL330Fifo
*s
, uint8_t tag
)
417 for (n
= 0; n
< s
->num
; n
++) {
418 if (s
->tag
[i
] == tag
) {
421 i
= pl330_fifo_inc(s
, i
);
426 /* Remove all entry tagged with TAG from MFIFO */
428 static void pl330_fifo_tagged_remove(PL330Fifo
*s
, uint8_t tag
)
433 for (n
= 0; n
< s
->num
; n
++) {
434 if (s
->tag
[i
] != tag
) {
435 s
->buf
[t
] = s
->buf
[i
];
436 s
->tag
[t
] = s
->tag
[i
];
437 t
= pl330_fifo_inc(s
, t
);
441 i
= pl330_fifo_inc(s
, i
);
445 /* Read-Write Queue implementation
447 * A Read-Write Queue stores up to QUEUE_SIZE instructions (loads or stores).
448 * Each instruction is described by source (for loads) or destination (for
449 * stores) address ADDR, width of data to be loaded/stored LEN, number of
450 * stores/loads to be performed N, INC bit, Z bit and TAG to identify channel
451 * this instruction belongs to. Queue does not store any information about
452 * nature of the instruction: is it load or store. PL330 has different queues
453 * for loads and stores so this is already known at the top level where it
456 * Queue works as FIFO for instructions with equivalent tags, but can issue
457 * instructions with different tags in arbitrary order. SEQN field attached to
458 * each instruction helps to achieve this. For each TAG queue contains
459 * instructions with consecutive SEQN values ranging from LO_SEQN[TAG] to
460 * HI_SEQN[TAG]-1 inclusive. SEQN is 8-bit unsigned integer, so SEQN=255 is
461 * followed by SEQN=0.
463 * Z bit indicates that zeroes should be stored. No MFIFO fetches are performed
467 static void pl330_queue_reset(PL330Queue
*s
)
471 for (i
= 0; i
< s
->queue_size
; i
++) {
472 s
->queue
[i
].tag
= PL330_UNTAGGED
;
476 /* Initialize queue */
477 static void pl330_queue_init(PL330Queue
*s
, int size
, PL330State
*parent
)
480 s
->queue
= g_new0(PL330QueueEntry
, size
);
481 s
->queue_size
= size
;
484 /* Returns pointer to an empty slot or NULL if queue is full */
485 static PL330QueueEntry
*pl330_queue_find_empty(PL330Queue
*s
)
489 for (i
= 0; i
< s
->queue_size
; i
++) {
490 if (s
->queue
[i
].tag
== PL330_UNTAGGED
) {
497 /* Put instruction in queue.
500 * - non-zero - queue is full
503 static int pl330_queue_put_insn(PL330Queue
*s
, uint32_t addr
,
504 int len
, int n
, bool inc
, bool z
, uint8_t tag
)
506 PL330QueueEntry
*entry
= pl330_queue_find_empty(s
);
517 entry
->seqn
= s
->parent
->hi_seqn
[tag
];
518 s
->parent
->hi_seqn
[tag
]++;
522 /* Returns a pointer to queue slot containing instruction which satisfies
523 * following conditions:
524 * - it has valid tag value (not PL330_UNTAGGED)
525 * - if enforce_seq is set it has to be issuable without violating queue
527 * - if TAG argument is not PL330_UNTAGGED this instruction has tag value
528 * equivalent to the argument TAG value.
529 * If such instruction cannot be found NULL is returned.
532 static PL330QueueEntry
*pl330_queue_find_insn(PL330Queue
*s
, uint8_t tag
,
537 for (i
= 0; i
< s
->queue_size
; i
++) {
538 if (s
->queue
[i
].tag
!= PL330_UNTAGGED
) {
540 s
->queue
[i
].seqn
== s
->parent
->lo_seqn
[s
->queue
[i
].tag
]) &&
541 (s
->queue
[i
].tag
== tag
|| tag
== PL330_UNTAGGED
||
550 /* Removes instruction from queue. */
552 static inline void pl330_queue_remove_insn(PL330Queue
*s
, PL330QueueEntry
*e
)
554 s
->parent
->lo_seqn
[e
->tag
]++;
555 e
->tag
= PL330_UNTAGGED
;
558 /* Removes all instructions tagged with TAG from queue. */
560 static inline void pl330_queue_remove_tagged(PL330Queue
*s
, uint8_t tag
)
564 for (i
= 0; i
< s
->queue_size
; i
++) {
565 if (s
->queue
[i
].tag
== tag
) {
566 s
->queue
[i
].tag
= PL330_UNTAGGED
;
571 /* DMA instruction execution engine */
573 /* Moves DMA channel to the FAULT state and updates it's status. */
575 static inline void pl330_fault(PL330Chan
*ch
, uint32_t flags
)
577 DB_PRINT("ch: %p, flags: %" PRIx32
"\n", ch
, flags
);
578 ch
->fault_type
|= flags
;
579 if (ch
->state
== pl330_chan_fault
) {
582 ch
->state
= pl330_chan_fault
;
583 ch
->parent
->num_faulting
++;
584 if (ch
->parent
->num_faulting
== 1) {
585 DB_PRINT("abort interrupt raised\n");
586 qemu_irq_raise(ch
->parent
->irq_abort
);
591 * For information about instructions see PL330 Technical Reference Manual.
594 * CH - channel executing the instruction
596 * ARGS - array of 8-bit arguments
597 * LEN - number of elements in ARGS array
600 static void pl330_dmaadxh(PL330Chan
*ch
, uint8_t *args
, bool ra
, bool neg
)
602 uint32_t im
= (args
[1] << 8) | args
[0];
607 if (ch
->is_manager
) {
608 pl330_fault(ch
, PL330_FAULT_UNDEF_INSTR
);
618 static void pl330_dmaaddh(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
620 pl330_dmaadxh(ch
, args
, extract32(opcode
, 1, 1), false);
623 static void pl330_dmaadnh(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
625 pl330_dmaadxh(ch
, args
, extract32(opcode
, 1, 1), true);
628 static void pl330_dmaend(PL330Chan
*ch
, uint8_t opcode
,
629 uint8_t *args
, int len
)
631 PL330State
*s
= ch
->parent
;
633 if (ch
->state
== pl330_chan_executing
&& !ch
->is_manager
) {
634 /* Wait for all transfers to complete */
635 if (pl330_fifo_has_tag(&s
->fifo
, ch
->tag
) ||
636 pl330_queue_find_insn(&s
->read_queue
, ch
->tag
, false) != NULL
||
637 pl330_queue_find_insn(&s
->write_queue
, ch
->tag
, false) != NULL
) {
643 DB_PRINT("DMA ending!\n");
644 pl330_fifo_tagged_remove(&s
->fifo
, ch
->tag
);
645 pl330_queue_remove_tagged(&s
->read_queue
, ch
->tag
);
646 pl330_queue_remove_tagged(&s
->write_queue
, ch
->tag
);
647 ch
->state
= pl330_chan_stopped
;
650 static void pl330_dmaflushp(PL330Chan
*ch
, uint8_t opcode
,
651 uint8_t *args
, int len
)
656 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
659 periph_id
= (args
[0] >> 3) & 0x1f;
660 if (periph_id
>= ch
->parent
->num_periph_req
) {
661 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
664 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_PNS
] & (1 << periph_id
))) {
665 pl330_fault(ch
, PL330_FAULT_CH_PERIPH_ERR
);
671 static void pl330_dmago(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
680 if (!ch
->is_manager
) {
681 pl330_fault(ch
, PL330_FAULT_UNDEF_INSTR
);
685 chan_id
= args
[0] & 7;
686 if ((args
[0] >> 3)) {
687 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
690 if (chan_id
>= ch
->parent
->num_chnls
) {
691 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
694 pc
= (((uint32_t)args
[4]) << 24) | (((uint32_t)args
[3]) << 16) |
695 (((uint32_t)args
[2]) << 8) | (((uint32_t)args
[1]));
696 if (ch
->parent
->chan
[chan_id
].state
!= pl330_chan_stopped
) {
697 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
701 pl330_fault(ch
, PL330_FAULT_DMAGO_ERR
);
704 s
= &ch
->parent
->chan
[chan_id
];
707 s
->state
= pl330_chan_executing
;
710 static void pl330_dmald(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
712 uint8_t bs
= opcode
& 3;
717 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
720 if ((bs
== 1 && ch
->request_flag
== PL330_BURST
) ||
721 (bs
== 3 && ch
->request_flag
== PL330_SINGLE
)) {
725 if (bs
== 1 && ch
->request_flag
== PL330_SINGLE
) {
728 num
= ((ch
->control
>> 4) & 0xf) + 1;
730 size
= (uint32_t)1 << ((ch
->control
>> 1) & 0x7);
731 inc
= !!(ch
->control
& 1);
732 ch
->stall
= pl330_queue_put_insn(&ch
->parent
->read_queue
, ch
->src
,
733 size
, num
, inc
, 0, ch
->tag
);
735 DB_PRINT("channel:%" PRId8
" address:%08" PRIx32
" size:%" PRIx32
736 " num:%" PRId32
" %c\n",
737 ch
->tag
, ch
->src
, size
, num
, inc
? 'Y' : 'N');
738 ch
->src
+= inc
? size
* num
- (ch
->src
& (size
- 1)) : 0;
742 static void pl330_dmaldp(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
747 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
750 periph_id
= (args
[0] >> 3) & 0x1f;
751 if (periph_id
>= ch
->parent
->num_periph_req
) {
752 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
755 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_PNS
] & (1 << periph_id
))) {
756 pl330_fault(ch
, PL330_FAULT_CH_PERIPH_ERR
);
759 pl330_dmald(ch
, opcode
, args
, len
);
762 static void pl330_dmalp(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
764 uint8_t lc
= (opcode
& 2) >> 1;
766 ch
->lc
[lc
] = args
[0];
769 static void pl330_dmakill(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
771 if (ch
->state
== pl330_chan_fault
||
772 ch
->state
== pl330_chan_fault_completing
) {
773 /* This is the only way for a channel to leave the faulting state */
775 ch
->parent
->num_faulting
--;
776 if (ch
->parent
->num_faulting
== 0) {
777 DB_PRINT("abort interrupt lowered\n");
778 qemu_irq_lower(ch
->parent
->irq_abort
);
781 ch
->state
= pl330_chan_killing
;
782 pl330_fifo_tagged_remove(&ch
->parent
->fifo
, ch
->tag
);
783 pl330_queue_remove_tagged(&ch
->parent
->read_queue
, ch
->tag
);
784 pl330_queue_remove_tagged(&ch
->parent
->write_queue
, ch
->tag
);
785 ch
->state
= pl330_chan_stopped
;
788 static void pl330_dmalpend(PL330Chan
*ch
, uint8_t opcode
,
789 uint8_t *args
, int len
)
791 uint8_t nf
= (opcode
& 0x10) >> 4;
792 uint8_t bs
= opcode
& 3;
793 uint8_t lc
= (opcode
& 4) >> 2;
796 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
799 if ((bs
== 1 && ch
->request_flag
== PL330_BURST
) ||
800 (bs
== 3 && ch
->request_flag
== PL330_SINGLE
)) {
804 if (!nf
|| ch
->lc
[lc
]) {
808 DB_PRINT("loop reiteration\n");
811 /* "ch->pc -= args[0] + len + 1" is incorrect when args[0] == 256 */
813 DB_PRINT("loop fallthrough\n");
818 static void pl330_dmamov(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
820 uint8_t rd
= args
[0] & 7;
823 if ((args
[0] >> 3)) {
824 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
827 im
= (((uint32_t)args
[4]) << 24) | (((uint32_t)args
[3]) << 16) |
828 (((uint32_t)args
[2]) << 8) | (((uint32_t)args
[1]));
840 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
845 static void pl330_dmanop(PL330Chan
*ch
, uint8_t opcode
,
846 uint8_t *args
, int len
)
851 static void pl330_dmarmb(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
853 if (pl330_queue_find_insn(&ch
->parent
->read_queue
, ch
->tag
, false)) {
854 ch
->state
= pl330_chan_at_barrier
;
858 ch
->state
= pl330_chan_executing
;
862 static void pl330_dmasev(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
867 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
870 ev_id
= (args
[0] >> 3) & 0x1f;
871 if (ev_id
>= ch
->parent
->num_events
) {
872 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
875 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_INS
] & (1 << ev_id
))) {
876 pl330_fault(ch
, PL330_FAULT_EVENT_ERR
);
879 if (ch
->parent
->inten
& (1 << ev_id
)) {
880 ch
->parent
->int_status
|= (1 << ev_id
);
881 DB_PRINT("event interrupt raised %" PRId8
"\n", ev_id
);
882 qemu_irq_raise(ch
->parent
->irq
[ev_id
]);
884 DB_PRINT("event raised %" PRId8
"\n", ev_id
);
885 ch
->parent
->ev_status
|= (1 << ev_id
);
888 static void pl330_dmast(PL330Chan
*ch
, uint8_t opcode
, uint8_t *args
, int len
)
890 uint8_t bs
= opcode
& 3;
895 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
898 if ((bs
== 1 && ch
->request_flag
== PL330_BURST
) ||
899 (bs
== 3 && ch
->request_flag
== PL330_SINGLE
)) {
903 num
= ((ch
->control
>> 18) & 0xf) + 1;
904 size
= (uint32_t)1 << ((ch
->control
>> 15) & 0x7);
905 inc
= !!((ch
->control
>> 14) & 1);
906 ch
->stall
= pl330_queue_put_insn(&ch
->parent
->write_queue
, ch
->dst
,
907 size
, num
, inc
, 0, ch
->tag
);
909 DB_PRINT("channel:%" PRId8
" address:%08" PRIx32
" size:%" PRIx32
910 " num:%" PRId32
" %c\n",
911 ch
->tag
, ch
->dst
, size
, num
, inc
? 'Y' : 'N');
912 ch
->dst
+= inc
? size
* num
- (ch
->dst
& (size
- 1)) : 0;
916 static void pl330_dmastp(PL330Chan
*ch
, uint8_t opcode
,
917 uint8_t *args
, int len
)
922 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
925 periph_id
= (args
[0] >> 3) & 0x1f;
926 if (periph_id
>= ch
->parent
->num_periph_req
) {
927 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
930 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_PNS
] & (1 << periph_id
))) {
931 pl330_fault(ch
, PL330_FAULT_CH_PERIPH_ERR
);
934 pl330_dmast(ch
, opcode
, args
, len
);
937 static void pl330_dmastz(PL330Chan
*ch
, uint8_t opcode
,
938 uint8_t *args
, int len
)
943 num
= ((ch
->control
>> 18) & 0xf) + 1;
944 size
= (uint32_t)1 << ((ch
->control
>> 15) & 0x7);
945 inc
= !!((ch
->control
>> 14) & 1);
946 ch
->stall
= pl330_queue_put_insn(&ch
->parent
->write_queue
, ch
->dst
,
947 size
, num
, inc
, 1, ch
->tag
);
949 ch
->dst
+= size
* num
;
953 static void pl330_dmawfe(PL330Chan
*ch
, uint8_t opcode
,
954 uint8_t *args
, int len
)
960 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
963 ev_id
= (args
[0] >> 3) & 0x1f;
964 if (ev_id
>= ch
->parent
->num_events
) {
965 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
968 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_INS
] & (1 << ev_id
))) {
969 pl330_fault(ch
, PL330_FAULT_EVENT_ERR
);
973 ch
->state
= pl330_chan_waiting_event
;
974 if (~ch
->parent
->inten
& ch
->parent
->ev_status
& 1 << ev_id
) {
975 ch
->state
= pl330_chan_executing
;
976 /* If anyone else is currently waiting on the same event, let them
977 * clear the ev_status so they pick up event as well
979 for (i
= 0; i
< ch
->parent
->num_chnls
; ++i
) {
980 PL330Chan
*peer
= &ch
->parent
->chan
[i
];
981 if (peer
->state
== pl330_chan_waiting_event
&&
982 peer
->wakeup
== ev_id
) {
986 ch
->parent
->ev_status
&= ~(1 << ev_id
);
987 DB_PRINT("event lowered %" PRIx8
"\n", ev_id
);
993 static void pl330_dmawfp(PL330Chan
*ch
, uint8_t opcode
,
994 uint8_t *args
, int len
)
996 uint8_t bs
= opcode
& 3;
1000 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
1003 periph_id
= (args
[0] >> 3) & 0x1f;
1004 if (periph_id
>= ch
->parent
->num_periph_req
) {
1005 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
1008 if (ch
->ns
&& !(ch
->parent
->cfg
[CFG_PNS
] & (1 << periph_id
))) {
1009 pl330_fault(ch
, PL330_FAULT_CH_PERIPH_ERR
);
1014 ch
->request_flag
= PL330_SINGLE
;
1018 ch
->request_flag
= PL330_BURST
;
1022 ch
->request_flag
= PL330_BURST
;
1026 pl330_fault(ch
, PL330_FAULT_OPERAND_INVALID
);
1030 if (ch
->parent
->periph_busy
[periph_id
]) {
1031 ch
->state
= pl330_chan_waiting_periph
;
1033 } else if (ch
->state
== pl330_chan_waiting_periph
) {
1034 ch
->state
= pl330_chan_executing
;
1038 static void pl330_dmawmb(PL330Chan
*ch
, uint8_t opcode
,
1039 uint8_t *args
, int len
)
1041 if (pl330_queue_find_insn(&ch
->parent
->write_queue
, ch
->tag
, false)) {
1042 ch
->state
= pl330_chan_at_barrier
;
1046 ch
->state
= pl330_chan_executing
;
1050 /* NULL terminated array of the instruction descriptions. */
1051 static const PL330InsnDesc insn_desc
[] = {
1052 { .opcode
= 0x54, .opmask
= 0xFD, .size
= 3, .exec
= pl330_dmaaddh
, },
1053 { .opcode
= 0x5c, .opmask
= 0xFD, .size
= 3, .exec
= pl330_dmaadnh
, },
1054 { .opcode
= 0x00, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmaend
, },
1055 { .opcode
= 0x35, .opmask
= 0xFF, .size
= 2, .exec
= pl330_dmaflushp
, },
1056 { .opcode
= 0xA0, .opmask
= 0xFD, .size
= 6, .exec
= pl330_dmago
, },
1057 { .opcode
= 0x04, .opmask
= 0xFC, .size
= 1, .exec
= pl330_dmald
, },
1058 { .opcode
= 0x25, .opmask
= 0xFD, .size
= 2, .exec
= pl330_dmaldp
, },
1059 { .opcode
= 0x20, .opmask
= 0xFD, .size
= 2, .exec
= pl330_dmalp
, },
1060 /* dmastp must be before dmalpend in this list, because their maps
1063 { .opcode
= 0x29, .opmask
= 0xFD, .size
= 2, .exec
= pl330_dmastp
, },
1064 { .opcode
= 0x28, .opmask
= 0xE8, .size
= 2, .exec
= pl330_dmalpend
, },
1065 { .opcode
= 0x01, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmakill
, },
1066 { .opcode
= 0xBC, .opmask
= 0xFF, .size
= 6, .exec
= pl330_dmamov
, },
1067 { .opcode
= 0x18, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmanop
, },
1068 { .opcode
= 0x12, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmarmb
, },
1069 { .opcode
= 0x34, .opmask
= 0xFF, .size
= 2, .exec
= pl330_dmasev
, },
1070 { .opcode
= 0x08, .opmask
= 0xFC, .size
= 1, .exec
= pl330_dmast
, },
1071 { .opcode
= 0x0C, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmastz
, },
1072 { .opcode
= 0x36, .opmask
= 0xFF, .size
= 2, .exec
= pl330_dmawfe
, },
1073 { .opcode
= 0x30, .opmask
= 0xFC, .size
= 2, .exec
= pl330_dmawfp
, },
1074 { .opcode
= 0x13, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmawmb
, },
1075 { .opcode
= 0x00, .opmask
= 0x00, .size
= 0, .exec
= NULL
, }
1078 /* Instructions which can be issued via debug registers. */
1079 static const PL330InsnDesc debug_insn_desc
[] = {
1080 { .opcode
= 0xA0, .opmask
= 0xFD, .size
= 6, .exec
= pl330_dmago
, },
1081 { .opcode
= 0x01, .opmask
= 0xFF, .size
= 1, .exec
= pl330_dmakill
, },
1082 { .opcode
= 0x34, .opmask
= 0xFF, .size
= 2, .exec
= pl330_dmasev
, },
1083 { .opcode
= 0x00, .opmask
= 0x00, .size
= 0, .exec
= NULL
, }
1086 static inline const PL330InsnDesc
*pl330_fetch_insn(PL330Chan
*ch
)
1091 dma_memory_read(&address_space_memory
, ch
->pc
, &opcode
, 1);
1092 for (i
= 0; insn_desc
[i
].size
; i
++) {
1093 if ((opcode
& insn_desc
[i
].opmask
) == insn_desc
[i
].opcode
) {
1094 return &insn_desc
[i
];
1100 static inline void pl330_exec_insn(PL330Chan
*ch
, const PL330InsnDesc
*insn
)
1102 uint8_t buf
[PL330_INSN_MAXSIZE
];
1104 assert(insn
->size
<= PL330_INSN_MAXSIZE
);
1105 dma_memory_read(&address_space_memory
, ch
->pc
, buf
, insn
->size
);
1106 insn
->exec(ch
, buf
[0], &buf
[1], insn
->size
- 1);
1109 static inline void pl330_update_pc(PL330Chan
*ch
,
1110 const PL330InsnDesc
*insn
)
1112 ch
->pc
+= insn
->size
;
1115 /* Try to execute current instruction in channel CH. Number of executed
1116 instructions is returned (0 or 1). */
1117 static int pl330_chan_exec(PL330Chan
*ch
)
1119 const PL330InsnDesc
*insn
;
1121 if (ch
->state
!= pl330_chan_executing
&&
1122 ch
->state
!= pl330_chan_waiting_periph
&&
1123 ch
->state
!= pl330_chan_at_barrier
&&
1124 ch
->state
!= pl330_chan_waiting_event
) {
1128 insn
= pl330_fetch_insn(ch
);
1130 DB_PRINT("pl330 undefined instruction\n");
1131 pl330_fault(ch
, PL330_FAULT_UNDEF_INSTR
);
1134 pl330_exec_insn(ch
, insn
);
1136 pl330_update_pc(ch
, insn
);
1137 ch
->watchdog_timer
= 0;
1139 /* WDT only active in exec state */
1140 } else if (ch
->state
== pl330_chan_executing
) {
1141 ch
->watchdog_timer
++;
1142 if (ch
->watchdog_timer
>= PL330_WATCHDOG_LIMIT
) {
1143 pl330_fault(ch
, PL330_FAULT_LOCKUP_ERR
);
1149 /* Try to execute 1 instruction in each channel, one instruction from read
1150 queue and one instruction from write queue. Number of successfully executed
1151 instructions is returned. */
1152 static int pl330_exec_cycle(PL330Chan
*channel
)
1154 PL330State
*s
= channel
->parent
;
1159 uint8_t buf
[PL330_MAX_BURST_LEN
];
1161 /* Execute one instruction in each channel */
1162 num_exec
+= pl330_chan_exec(channel
);
1164 /* Execute one instruction from read queue */
1165 q
= pl330_queue_find_insn(&s
->read_queue
, PL330_UNTAGGED
, true);
1166 if (q
!= NULL
&& q
->len
<= pl330_fifo_num_free(&s
->fifo
)) {
1167 int len
= q
->len
- (q
->addr
& (q
->len
- 1));
1169 dma_memory_read(&address_space_memory
, q
->addr
, buf
, len
);
1170 if (PL330_ERR_DEBUG
> 1) {
1171 DB_PRINT("PL330 read from memory @%08" PRIx32
" (size = %08x):\n",
1173 qemu_hexdump((char *)buf
, stderr
, "", len
);
1175 fifo_res
= pl330_fifo_push(&s
->fifo
, buf
, len
, q
->tag
);
1176 if (fifo_res
== PL330_FIFO_OK
) {
1182 pl330_queue_remove_insn(&s
->read_queue
, q
);
1188 /* Execute one instruction from write queue. */
1189 q
= pl330_queue_find_insn(&s
->write_queue
, pl330_fifo_tag(&s
->fifo
), true);
1191 int len
= q
->len
- (q
->addr
& (q
->len
- 1));
1194 for (i
= 0; i
< len
; i
++) {
1198 fifo_res
= pl330_fifo_get(&s
->fifo
, buf
, len
, q
->tag
);
1200 if (fifo_res
== PL330_FIFO_OK
|| q
->z
) {
1201 dma_memory_write(&address_space_memory
, q
->addr
, buf
, len
);
1202 if (PL330_ERR_DEBUG
> 1) {
1203 DB_PRINT("PL330 read from memory @%08" PRIx32
1204 " (size = %08x):\n", q
->addr
, len
);
1205 qemu_hexdump((char *)buf
, stderr
, "", len
);
1211 } else if (fifo_res
== PL330_FIFO_STALL
) {
1212 pl330_fault(&channel
->parent
->chan
[q
->tag
],
1213 PL330_FAULT_FIFOEMPTY_ERR
);
1217 pl330_queue_remove_insn(&s
->write_queue
, q
);
1224 static int pl330_exec_channel(PL330Chan
*channel
)
1228 /* TODO: Is it all right to execute everything or should we do per-cycle
1230 while (pl330_exec_cycle(channel
)) {
1234 /* Detect deadlock */
1235 if (channel
->state
== pl330_chan_executing
) {
1236 pl330_fault(channel
, PL330_FAULT_LOCKUP_ERR
);
1238 /* Situation when one of the queues has deadlocked but all channels
1239 * have finished their programs should be impossible.
1245 static inline void pl330_exec(PL330State
*s
)
1250 insr_exec
= pl330_exec_channel(&s
->manager
);
1252 for (i
= 0; i
< s
->num_chnls
; i
++) {
1253 insr_exec
+= pl330_exec_channel(&s
->chan
[i
]);
1255 } while (insr_exec
);
1258 static void pl330_exec_cycle_timer(void *opaque
)
1260 PL330State
*s
= (PL330State
*)opaque
;
1264 /* Stop or restore dma operations */
1266 static void pl330_dma_stop_irq(void *opaque
, int irq
, int level
)
1268 PL330State
*s
= (PL330State
*)opaque
;
1270 if (s
->periph_busy
[irq
] != level
) {
1271 s
->periph_busy
[irq
] = level
;
1272 timer_mod(s
->timer
, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
));
1276 static void pl330_debug_exec(PL330State
*s
)
1283 const PL330InsnDesc
*insn
;
1285 s
->debug_status
= 1;
1286 chan_id
= (s
->dbg
[0] >> 8) & 0x07;
1287 opcode
= (s
->dbg
[0] >> 16) & 0xff;
1288 args
[0] = (s
->dbg
[0] >> 24) & 0xff;
1289 args
[1] = (s
->dbg
[1] >> 0) & 0xff;
1290 args
[2] = (s
->dbg
[1] >> 8) & 0xff;
1291 args
[3] = (s
->dbg
[1] >> 16) & 0xff;
1292 args
[4] = (s
->dbg
[1] >> 24) & 0xff;
1293 DB_PRINT("chan id: %" PRIx8
"\n", chan_id
);
1294 if (s
->dbg
[0] & 1) {
1295 ch
= &s
->chan
[chan_id
];
1300 for (i
= 0; debug_insn_desc
[i
].size
; i
++) {
1301 if ((opcode
& debug_insn_desc
[i
].opmask
) == debug_insn_desc
[i
].opcode
) {
1302 insn
= &debug_insn_desc
[i
];
1306 pl330_fault(ch
, PL330_FAULT_UNDEF_INSTR
| PL330_FAULT_DBG_INSTR
);
1310 insn
->exec(ch
, opcode
, args
, insn
->size
- 1);
1311 if (ch
->fault_type
) {
1312 ch
->fault_type
|= PL330_FAULT_DBG_INSTR
;
1315 qemu_log_mask(LOG_UNIMP
, "pl330: stall of debug instruction not "
1318 s
->debug_status
= 0;
1321 /* IOMEM mapped registers */
1323 static void pl330_iomem_write(void *opaque
, hwaddr offset
,
1324 uint64_t value
, unsigned size
)
1326 PL330State
*s
= (PL330State
*) opaque
;
1329 DB_PRINT("addr: %08x data: %08x\n", (unsigned)offset
, (unsigned)value
);
1332 case PL330_REG_INTEN
:
1335 case PL330_REG_INTCLR
:
1336 for (i
= 0; i
< s
->num_events
; i
++) {
1337 if (s
->int_status
& s
->inten
& value
& (1 << i
)) {
1338 DB_PRINT("event interrupt lowered %d\n", i
);
1339 qemu_irq_lower(s
->irq
[i
]);
1342 s
->ev_status
&= ~(value
& s
->inten
);
1343 s
->int_status
&= ~(value
& s
->inten
);
1345 case PL330_REG_DBGCMD
:
1346 if ((value
& 3) == 0) {
1347 pl330_debug_exec(s
);
1350 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: write of illegal value %u "
1351 "for offset " TARGET_FMT_plx
"\n", (unsigned)value
,
1355 case PL330_REG_DBGINST0
:
1356 DB_PRINT("s->dbg[0] = %08x\n", (unsigned)value
);
1359 case PL330_REG_DBGINST1
:
1360 DB_PRINT("s->dbg[1] = %08x\n", (unsigned)value
);
1364 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad write offset " TARGET_FMT_plx
1370 static inline uint32_t pl330_iomem_read_imp(void *opaque
,
1373 PL330State
*s
= (PL330State
*)opaque
;
1378 if (offset
>= PL330_REG_PERIPH_ID
&& offset
< PL330_REG_PERIPH_ID
+ 32) {
1379 return pl330_id
[(offset
- PL330_REG_PERIPH_ID
) >> 2];
1381 if (offset
>= PL330_REG_CR0_BASE
&& offset
< PL330_REG_CR0_BASE
+ 24) {
1382 return s
->cfg
[(offset
- PL330_REG_CR0_BASE
) >> 2];
1384 if (offset
>= PL330_REG_CHANCTRL
&& offset
< PL330_REG_DBGSTATUS
) {
1385 offset
-= PL330_REG_CHANCTRL
;
1386 chan_id
= offset
>> 5;
1387 if (chan_id
>= s
->num_chnls
) {
1388 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad read offset "
1389 TARGET_FMT_plx
"\n", offset
);
1392 switch (offset
& 0x1f) {
1394 return s
->chan
[chan_id
].src
;
1396 return s
->chan
[chan_id
].dst
;
1398 return s
->chan
[chan_id
].control
;
1400 return s
->chan
[chan_id
].lc
[0];
1402 return s
->chan
[chan_id
].lc
[1];
1404 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad read offset "
1405 TARGET_FMT_plx
"\n", offset
);
1409 if (offset
>= PL330_REG_CSR_BASE
&& offset
< 0x400) {
1410 offset
-= PL330_REG_CSR_BASE
;
1411 chan_id
= offset
>> 3;
1412 if (chan_id
>= s
->num_chnls
) {
1413 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad read offset "
1414 TARGET_FMT_plx
"\n", offset
);
1417 switch ((offset
>> 2) & 1) {
1419 res
= (s
->chan
[chan_id
].ns
<< 21) |
1420 (s
->chan
[chan_id
].wakeup
<< 4) |
1421 (s
->chan
[chan_id
].state
) |
1422 (s
->chan
[chan_id
].wfp_sbp
<< 14);
1425 return s
->chan
[chan_id
].pc
;
1427 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: read error\n");
1431 if (offset
>= PL330_REG_FTR_BASE
&& offset
< 0x100) {
1432 offset
-= PL330_REG_FTR_BASE
;
1433 chan_id
= offset
>> 2;
1434 if (chan_id
>= s
->num_chnls
) {
1435 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad read offset "
1436 TARGET_FMT_plx
"\n", offset
);
1439 return s
->chan
[chan_id
].fault_type
;
1443 return (s
->manager
.ns
<< 9) | (s
->manager
.wakeup
<< 4) |
1444 (s
->manager
.state
& 0xf);
1446 return s
->manager
.pc
;
1447 case PL330_REG_INTEN
:
1449 case PL330_REG_INT_EVENT_RIS
:
1450 return s
->ev_status
;
1451 case PL330_REG_INTMIS
:
1452 return s
->int_status
;
1453 case PL330_REG_INTCLR
:
1454 /* Documentation says that we can't read this register
1455 * but linux kernel does it
1458 case PL330_REG_FSRD
:
1459 return s
->manager
.state
? 1 : 0;
1460 case PL330_REG_FSRC
:
1462 for (i
= 0; i
< s
->num_chnls
; i
++) {
1463 if (s
->chan
[i
].state
== pl330_chan_fault
||
1464 s
->chan
[i
].state
== pl330_chan_fault_completing
) {
1469 case PL330_REG_FTRD
:
1470 return s
->manager
.fault_type
;
1471 case PL330_REG_DBGSTATUS
:
1472 return s
->debug_status
;
1474 qemu_log_mask(LOG_GUEST_ERROR
, "pl330: bad read offset "
1475 TARGET_FMT_plx
"\n", offset
);
1480 static uint64_t pl330_iomem_read(void *opaque
, hwaddr offset
,
1483 uint32_t ret
= pl330_iomem_read_imp(opaque
, offset
);
1484 DB_PRINT("addr: %08" HWADDR_PRIx
" data: %08" PRIx32
"\n", offset
, ret
);
1488 static const MemoryRegionOps pl330_ops
= {
1489 .read
= pl330_iomem_read
,
1490 .write
= pl330_iomem_write
,
1491 .endianness
= DEVICE_NATIVE_ENDIAN
,
1493 .min_access_size
= 4,
1494 .max_access_size
= 4,
1498 /* Controller logic and initialization */
1500 static void pl330_chan_reset(PL330Chan
*ch
)
1505 ch
->state
= pl330_chan_stopped
;
1506 ch
->watchdog_timer
= 0;
1513 static void pl330_reset(DeviceState
*d
)
1516 PL330State
*s
= PL330(d
);
1521 s
->debug_status
= 0;
1522 s
->num_faulting
= 0;
1523 s
->manager
.ns
= s
->mgr_ns_at_rst
;
1524 pl330_fifo_reset(&s
->fifo
);
1525 pl330_queue_reset(&s
->read_queue
);
1526 pl330_queue_reset(&s
->write_queue
);
1528 for (i
= 0; i
< s
->num_chnls
; i
++) {
1529 pl330_chan_reset(&s
->chan
[i
]);
1531 for (i
= 0; i
< s
->num_periph_req
; i
++) {
1532 s
->periph_busy
[i
] = 0;
1535 timer_del(s
->timer
);
1538 static void pl330_realize(DeviceState
*dev
, Error
**errp
)
1541 PL330State
*s
= PL330(dev
);
1543 sysbus_init_irq(SYS_BUS_DEVICE(dev
), &s
->irq_abort
);
1544 memory_region_init_io(&s
->iomem
, OBJECT(s
), &pl330_ops
, s
,
1545 "dma", PL330_IOMEM_SIZE
);
1546 sysbus_init_mmio(SYS_BUS_DEVICE(dev
), &s
->iomem
);
1548 s
->timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, pl330_exec_cycle_timer
, s
);
1550 s
->cfg
[0] = (s
->mgr_ns_at_rst
? 0x4 : 0) |
1551 (s
->num_periph_req
> 0 ? 1 : 0) |
1552 ((s
->num_chnls
- 1) & 0x7) << 4 |
1553 ((s
->num_periph_req
- 1) & 0x1f) << 12 |
1554 ((s
->num_events
- 1) & 0x1f) << 17;
1556 switch (s
->i_cache_len
) {
1570 error_setg(errp
, "Bad value for i-cache_len property: %" PRIx8
,
1574 s
->cfg
[1] |= ((s
->num_i_cache_lines
- 1) & 0xf) << 4;
1576 s
->chan
= g_new0(PL330Chan
, s
->num_chnls
);
1577 s
->hi_seqn
= g_new0(uint8_t, s
->num_chnls
);
1578 s
->lo_seqn
= g_new0(uint8_t, s
->num_chnls
);
1579 for (i
= 0; i
< s
->num_chnls
; i
++) {
1580 s
->chan
[i
].parent
= s
;
1581 s
->chan
[i
].tag
= (uint8_t)i
;
1583 s
->manager
.parent
= s
;
1584 s
->manager
.tag
= s
->num_chnls
;
1585 s
->manager
.is_manager
= true;
1587 s
->irq
= g_new0(qemu_irq
, s
->num_events
);
1588 for (i
= 0; i
< s
->num_events
; i
++) {
1589 sysbus_init_irq(SYS_BUS_DEVICE(dev
), &s
->irq
[i
]);
1592 qdev_init_gpio_in(dev
, pl330_dma_stop_irq
, PL330_PERIPH_NUM
);
1594 switch (s
->data_width
) {
1596 s
->cfg
[CFG_CRD
] |= 0x2;
1599 s
->cfg
[CFG_CRD
] |= 0x3;
1602 s
->cfg
[CFG_CRD
] |= 0x4;
1605 error_setg(errp
, "Bad value for data_width property: %" PRIx8
,
1610 s
->cfg
[CFG_CRD
] |= ((s
->wr_cap
- 1) & 0x7) << 4 |
1611 ((s
->wr_q_dep
- 1) & 0xf) << 8 |
1612 ((s
->rd_cap
- 1) & 0x7) << 12 |
1613 ((s
->rd_q_dep
- 1) & 0xf) << 16 |
1614 ((s
->data_buffer_dep
- 1) & 0x1ff) << 20;
1616 pl330_queue_init(&s
->read_queue
, s
->rd_q_dep
, s
);
1617 pl330_queue_init(&s
->write_queue
, s
->wr_q_dep
, s
);
1618 pl330_fifo_init(&s
->fifo
, s
->data_width
/ 4 * s
->data_buffer_dep
);
1621 static Property pl330_properties
[] = {
1623 DEFINE_PROP_UINT32("num_chnls", PL330State
, num_chnls
, 8),
1624 DEFINE_PROP_UINT8("num_periph_req", PL330State
, num_periph_req
, 4),
1625 DEFINE_PROP_UINT8("num_events", PL330State
, num_events
, 16),
1626 DEFINE_PROP_UINT8("mgr_ns_at_rst", PL330State
, mgr_ns_at_rst
, 0),
1628 DEFINE_PROP_UINT8("i-cache_len", PL330State
, i_cache_len
, 4),
1629 DEFINE_PROP_UINT8("num_i-cache_lines", PL330State
, num_i_cache_lines
, 8),
1631 DEFINE_PROP_UINT32("boot_addr", PL330State
, cfg
[CFG_BOOT_ADDR
], 0),
1632 DEFINE_PROP_UINT32("INS", PL330State
, cfg
[CFG_INS
], 0),
1633 DEFINE_PROP_UINT32("PNS", PL330State
, cfg
[CFG_PNS
], 0),
1635 DEFINE_PROP_UINT8("data_width", PL330State
, data_width
, 64),
1636 DEFINE_PROP_UINT8("wr_cap", PL330State
, wr_cap
, 8),
1637 DEFINE_PROP_UINT8("wr_q_dep", PL330State
, wr_q_dep
, 16),
1638 DEFINE_PROP_UINT8("rd_cap", PL330State
, rd_cap
, 8),
1639 DEFINE_PROP_UINT8("rd_q_dep", PL330State
, rd_q_dep
, 16),
1640 DEFINE_PROP_UINT16("data_buffer_dep", PL330State
, data_buffer_dep
, 256),
1642 DEFINE_PROP_END_OF_LIST(),
1645 static void pl330_class_init(ObjectClass
*klass
, void *data
)
1647 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1649 dc
->realize
= pl330_realize
;
1650 dc
->reset
= pl330_reset
;
1651 dc
->props
= pl330_properties
;
1652 dc
->vmsd
= &vmstate_pl330
;
1655 static const TypeInfo pl330_type_info
= {
1657 .parent
= TYPE_SYS_BUS_DEVICE
,
1658 .instance_size
= sizeof(PL330State
),
1659 .class_init
= pl330_class_init
,
1662 static void pl330_register_types(void)
1664 type_register_static(&pl330_type_info
);
1667 type_init(pl330_register_types
)