2 * QEMU model of Xilinx AXI-DMA block.
4 * Copyright (c) 2011 Edgar E. Iglesias.
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "qemu/osdep.h"
26 #include "hw/sysbus.h"
27 #include "qemu/timer.h"
28 #include "hw/ptimer.h"
30 #include "qemu/main-loop.h"
32 #include "hw/stream.h"
36 #define TYPE_XILINX_AXI_DMA "xlnx.axi-dma"
37 #define TYPE_XILINX_AXI_DMA_DATA_STREAM "xilinx-axi-dma-data-stream"
38 #define TYPE_XILINX_AXI_DMA_CONTROL_STREAM "xilinx-axi-dma-control-stream"
40 #define XILINX_AXI_DMA(obj) \
41 OBJECT_CHECK(XilinxAXIDMA, (obj), TYPE_XILINX_AXI_DMA)
43 #define XILINX_AXI_DMA_DATA_STREAM(obj) \
44 OBJECT_CHECK(XilinxAXIDMAStreamSlave, (obj),\
45 TYPE_XILINX_AXI_DMA_DATA_STREAM)
47 #define XILINX_AXI_DMA_CONTROL_STREAM(obj) \
48 OBJECT_CHECK(XilinxAXIDMAStreamSlave, (obj),\
49 TYPE_XILINX_AXI_DMA_CONTROL_STREAM)
51 #define R_DMACR (0x00 / 4)
52 #define R_DMASR (0x04 / 4)
53 #define R_CURDESC (0x08 / 4)
54 #define R_TAILDESC (0x10 / 4)
55 #define R_MAX (0x30 / 4)
57 #define CONTROL_PAYLOAD_WORDS 5
58 #define CONTROL_PAYLOAD_SIZE (CONTROL_PAYLOAD_WORDS * (sizeof(uint32_t)))
60 typedef struct XilinxAXIDMA XilinxAXIDMA
;
61 typedef struct XilinxAXIDMAStreamSlave XilinxAXIDMAStreamSlave
;
65 DMACR_TAILPTR_MODE
= 2,
72 DMASR_IOC_IRQ
= 1 << 12,
73 DMASR_DLY_IRQ
= 1 << 13,
75 DMASR_IRQ_MASK
= 7 << 12
80 uint64_t buffer_address
;
84 uint8_t app
[CONTROL_PAYLOAD_SIZE
];
88 SDESC_CTRL_EOF
= (1 << 26),
89 SDESC_CTRL_SOF
= (1 << 27),
91 SDESC_CTRL_LEN_MASK
= (1 << 23) - 1
95 SDESC_STATUS_EOF
= (1 << 26),
96 SDESC_STATUS_SOF_BIT
= 27,
97 SDESC_STATUS_SOF
= (1 << SDESC_STATUS_SOF_BIT
),
98 SDESC_STATUS_COMPLETE
= (1 << 31)
103 ptimer_state
*ptimer
;
110 unsigned int complete_cnt
;
111 uint32_t regs
[R_MAX
];
115 struct XilinxAXIDMAStreamSlave
{
118 struct XilinxAXIDMA
*dma
;
121 struct XilinxAXIDMA
{
125 StreamSlave
*tx_data_dev
;
126 StreamSlave
*tx_control_dev
;
127 XilinxAXIDMAStreamSlave rx_data_dev
;
128 XilinxAXIDMAStreamSlave rx_control_dev
;
130 struct Stream streams
[2];
132 StreamCanPushNotifyFn notify
;
137 * Helper calls to extract info from descriptors and other trivial
140 static inline int stream_desc_sof(struct SDesc
*d
)
142 return d
->control
& SDESC_CTRL_SOF
;
145 static inline int stream_desc_eof(struct SDesc
*d
)
147 return d
->control
& SDESC_CTRL_EOF
;
150 static inline int stream_resetting(struct Stream
*s
)
152 return !!(s
->regs
[R_DMACR
] & DMACR_RESET
);
155 static inline int stream_running(struct Stream
*s
)
157 return s
->regs
[R_DMACR
] & DMACR_RUNSTOP
;
160 static inline int stream_idle(struct Stream
*s
)
162 return !!(s
->regs
[R_DMASR
] & DMASR_IDLE
);
165 static void stream_reset(struct Stream
*s
)
167 s
->regs
[R_DMASR
] = DMASR_HALTED
; /* starts up halted. */
168 s
->regs
[R_DMACR
] = 1 << 16; /* Starts with one in compl threshold. */
171 /* Map an offset addr into a channel index. */
172 static inline int streamid_from_addr(hwaddr addr
)
181 static void stream_desc_load(struct Stream
*s
, hwaddr addr
)
183 struct SDesc
*d
= &s
->desc
;
185 cpu_physical_memory_read(addr
, d
, sizeof *d
);
187 /* Convert from LE into host endianness. */
188 d
->buffer_address
= le64_to_cpu(d
->buffer_address
);
189 d
->nxtdesc
= le64_to_cpu(d
->nxtdesc
);
190 d
->control
= le32_to_cpu(d
->control
);
191 d
->status
= le32_to_cpu(d
->status
);
194 static void stream_desc_store(struct Stream
*s
, hwaddr addr
)
196 struct SDesc
*d
= &s
->desc
;
198 /* Convert from host endianness into LE. */
199 d
->buffer_address
= cpu_to_le64(d
->buffer_address
);
200 d
->nxtdesc
= cpu_to_le64(d
->nxtdesc
);
201 d
->control
= cpu_to_le32(d
->control
);
202 d
->status
= cpu_to_le32(d
->status
);
203 cpu_physical_memory_write(addr
, d
, sizeof *d
);
206 static void stream_update_irq(struct Stream
*s
)
208 unsigned int pending
, mask
, irq
;
210 pending
= s
->regs
[R_DMASR
] & DMASR_IRQ_MASK
;
211 mask
= s
->regs
[R_DMACR
] & DMASR_IRQ_MASK
;
213 irq
= pending
& mask
;
215 qemu_set_irq(s
->irq
, !!irq
);
218 static void stream_reload_complete_cnt(struct Stream
*s
)
220 unsigned int comp_th
;
221 comp_th
= (s
->regs
[R_DMACR
] >> 16) & 0xff;
222 s
->complete_cnt
= comp_th
;
225 static void timer_hit(void *opaque
)
227 struct Stream
*s
= opaque
;
229 stream_reload_complete_cnt(s
);
230 s
->regs
[R_DMASR
] |= DMASR_DLY_IRQ
;
231 stream_update_irq(s
);
234 static void stream_complete(struct Stream
*s
)
236 unsigned int comp_delay
;
238 /* Start the delayed timer. */
239 comp_delay
= s
->regs
[R_DMACR
] >> 24;
241 ptimer_stop(s
->ptimer
);
242 ptimer_set_count(s
->ptimer
, comp_delay
);
243 ptimer_run(s
->ptimer
, 1);
247 if (s
->complete_cnt
== 0) {
248 /* Raise the IOC irq. */
249 s
->regs
[R_DMASR
] |= DMASR_IOC_IRQ
;
250 stream_reload_complete_cnt(s
);
254 static void stream_process_mem2s(struct Stream
*s
, StreamSlave
*tx_data_dev
,
255 StreamSlave
*tx_control_dev
)
258 unsigned char txbuf
[16 * 1024];
261 if (!stream_running(s
) || stream_idle(s
)) {
266 stream_desc_load(s
, s
->regs
[R_CURDESC
]);
268 if (s
->desc
.status
& SDESC_STATUS_COMPLETE
) {
269 s
->regs
[R_DMASR
] |= DMASR_HALTED
;
273 if (stream_desc_sof(&s
->desc
)) {
275 stream_push(tx_control_dev
, s
->desc
.app
, sizeof(s
->desc
.app
));
278 txlen
= s
->desc
.control
& SDESC_CTRL_LEN_MASK
;
279 if ((txlen
+ s
->pos
) > sizeof txbuf
) {
280 hw_error("%s: too small internal txbuf! %d\n", __func__
,
284 cpu_physical_memory_read(s
->desc
.buffer_address
,
285 txbuf
+ s
->pos
, txlen
);
288 if (stream_desc_eof(&s
->desc
)) {
289 stream_push(tx_data_dev
, txbuf
, s
->pos
);
294 /* Update the descriptor. */
295 s
->desc
.status
= txlen
| SDESC_STATUS_COMPLETE
;
296 stream_desc_store(s
, s
->regs
[R_CURDESC
]);
299 prev_d
= s
->regs
[R_CURDESC
];
300 s
->regs
[R_CURDESC
] = s
->desc
.nxtdesc
;
301 if (prev_d
== s
->regs
[R_TAILDESC
]) {
302 s
->regs
[R_DMASR
] |= DMASR_IDLE
;
308 static size_t stream_process_s2mem(struct Stream
*s
, unsigned char *buf
,
316 if (!stream_running(s
) || stream_idle(s
)) {
321 stream_desc_load(s
, s
->regs
[R_CURDESC
]);
323 if (s
->desc
.status
& SDESC_STATUS_COMPLETE
) {
324 s
->regs
[R_DMASR
] |= DMASR_HALTED
;
328 rxlen
= s
->desc
.control
& SDESC_CTRL_LEN_MASK
;
334 cpu_physical_memory_write(s
->desc
.buffer_address
, buf
+ pos
, rxlen
);
338 /* Update the descriptor. */
341 memcpy(s
->desc
.app
, s
->app
, sizeof(s
->desc
.app
));
342 s
->desc
.status
|= SDESC_STATUS_EOF
;
345 s
->desc
.status
|= sof
<< SDESC_STATUS_SOF_BIT
;
346 s
->desc
.status
|= SDESC_STATUS_COMPLETE
;
347 stream_desc_store(s
, s
->regs
[R_CURDESC
]);
351 prev_d
= s
->regs
[R_CURDESC
];
352 s
->regs
[R_CURDESC
] = s
->desc
.nxtdesc
;
353 if (prev_d
== s
->regs
[R_TAILDESC
]) {
354 s
->regs
[R_DMASR
] |= DMASR_IDLE
;
362 static void xilinx_axidma_reset(DeviceState
*dev
)
365 XilinxAXIDMA
*s
= XILINX_AXI_DMA(dev
);
367 for (i
= 0; i
< 2; i
++) {
368 stream_reset(&s
->streams
[i
]);
373 xilinx_axidma_control_stream_push(StreamSlave
*obj
, unsigned char *buf
,
376 XilinxAXIDMAStreamSlave
*cs
= XILINX_AXI_DMA_CONTROL_STREAM(obj
);
377 struct Stream
*s
= &cs
->dma
->streams
[1];
379 if (len
!= CONTROL_PAYLOAD_SIZE
) {
380 hw_error("AXI DMA requires %d byte control stream payload\n",
381 (int)CONTROL_PAYLOAD_SIZE
);
384 memcpy(s
->app
, buf
, len
);
389 xilinx_axidma_data_stream_can_push(StreamSlave
*obj
,
390 StreamCanPushNotifyFn notify
,
393 XilinxAXIDMAStreamSlave
*ds
= XILINX_AXI_DMA_DATA_STREAM(obj
);
394 struct Stream
*s
= &ds
->dma
->streams
[1];
396 if (!stream_running(s
) || stream_idle(s
)) {
397 ds
->dma
->notify
= notify
;
398 ds
->dma
->notify_opaque
= notify_opaque
;
406 xilinx_axidma_data_stream_push(StreamSlave
*obj
, unsigned char *buf
, size_t len
)
408 XilinxAXIDMAStreamSlave
*ds
= XILINX_AXI_DMA_DATA_STREAM(obj
);
409 struct Stream
*s
= &ds
->dma
->streams
[1];
412 ret
= stream_process_s2mem(s
, buf
, len
);
413 stream_update_irq(s
);
417 static uint64_t axidma_read(void *opaque
, hwaddr addr
,
420 XilinxAXIDMA
*d
= opaque
;
425 sid
= streamid_from_addr(addr
);
426 s
= &d
->streams
[sid
];
432 /* Simulate one cycles reset delay. */
433 s
->regs
[addr
] &= ~DMACR_RESET
;
437 s
->regs
[addr
] &= 0xffff;
438 s
->regs
[addr
] |= (s
->complete_cnt
& 0xff) << 16;
439 s
->regs
[addr
] |= (ptimer_get_count(s
->ptimer
) & 0xff) << 24;
444 D(qemu_log("%s ch=%d addr=" TARGET_FMT_plx
" v=%x\n",
445 __func__
, sid
, addr
* 4, r
));
452 static void axidma_write(void *opaque
, hwaddr addr
,
453 uint64_t value
, unsigned size
)
455 XilinxAXIDMA
*d
= opaque
;
459 sid
= streamid_from_addr(addr
);
460 s
= &d
->streams
[sid
];
466 /* Tailptr mode is always on. */
467 value
|= DMACR_TAILPTR_MODE
;
468 /* Remember our previous reset state. */
469 value
|= (s
->regs
[addr
] & DMACR_RESET
);
470 s
->regs
[addr
] = value
;
472 if (value
& DMACR_RESET
) {
476 if ((value
& 1) && !stream_resetting(s
)) {
477 /* Start processing. */
478 s
->regs
[R_DMASR
] &= ~(DMASR_HALTED
| DMASR_IDLE
);
480 stream_reload_complete_cnt(s
);
484 /* Mask away write to clear irq lines. */
485 value
&= ~(value
& DMASR_IRQ_MASK
);
486 s
->regs
[addr
] = value
;
490 s
->regs
[addr
] = value
;
491 s
->regs
[R_DMASR
] &= ~DMASR_IDLE
; /* Not idle. */
493 stream_process_mem2s(s
, d
->tx_data_dev
, d
->tx_control_dev
);
497 D(qemu_log("%s: ch=%d addr=" TARGET_FMT_plx
" v=%x\n",
498 __func__
, sid
, addr
* 4, (unsigned)value
));
499 s
->regs
[addr
] = value
;
502 if (sid
== 1 && d
->notify
) {
503 StreamCanPushNotifyFn notifytmp
= d
->notify
;
505 notifytmp(d
->notify_opaque
);
507 stream_update_irq(s
);
510 static const MemoryRegionOps axidma_ops
= {
512 .write
= axidma_write
,
513 .endianness
= DEVICE_NATIVE_ENDIAN
,
516 static void xilinx_axidma_realize(DeviceState
*dev
, Error
**errp
)
518 XilinxAXIDMA
*s
= XILINX_AXI_DMA(dev
);
519 XilinxAXIDMAStreamSlave
*ds
= XILINX_AXI_DMA_DATA_STREAM(&s
->rx_data_dev
);
520 XilinxAXIDMAStreamSlave
*cs
= XILINX_AXI_DMA_CONTROL_STREAM(
522 Error
*local_err
= NULL
;
524 object_property_add_link(OBJECT(ds
), "dma", TYPE_XILINX_AXI_DMA
,
526 object_property_allow_set_link
,
527 OBJ_PROP_LINK_UNREF_ON_RELEASE
,
529 object_property_add_link(OBJECT(cs
), "dma", TYPE_XILINX_AXI_DMA
,
531 object_property_allow_set_link
,
532 OBJ_PROP_LINK_UNREF_ON_RELEASE
,
535 goto xilinx_axidma_realize_fail
;
537 object_property_set_link(OBJECT(ds
), OBJECT(s
), "dma", &local_err
);
538 object_property_set_link(OBJECT(cs
), OBJECT(s
), "dma", &local_err
);
540 goto xilinx_axidma_realize_fail
;
545 for (i
= 0; i
< 2; i
++) {
546 struct Stream
*st
= &s
->streams
[i
];
549 st
->bh
= qemu_bh_new(timer_hit
, st
);
550 st
->ptimer
= ptimer_init(st
->bh
);
551 ptimer_set_freq(st
->ptimer
, s
->freqhz
);
555 xilinx_axidma_realize_fail
:
561 static void xilinx_axidma_init(Object
*obj
)
563 XilinxAXIDMA
*s
= XILINX_AXI_DMA(obj
);
564 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
566 object_property_add_link(obj
, "axistream-connected", TYPE_STREAM_SLAVE
,
567 (Object
**)&s
->tx_data_dev
,
568 qdev_prop_allow_set_link_before_realize
,
569 OBJ_PROP_LINK_UNREF_ON_RELEASE
,
571 object_property_add_link(obj
, "axistream-control-connected",
573 (Object
**)&s
->tx_control_dev
,
574 qdev_prop_allow_set_link_before_realize
,
575 OBJ_PROP_LINK_UNREF_ON_RELEASE
,
578 object_initialize(&s
->rx_data_dev
, sizeof(s
->rx_data_dev
),
579 TYPE_XILINX_AXI_DMA_DATA_STREAM
);
580 object_initialize(&s
->rx_control_dev
, sizeof(s
->rx_control_dev
),
581 TYPE_XILINX_AXI_DMA_CONTROL_STREAM
);
582 object_property_add_child(OBJECT(s
), "axistream-connected-target",
583 (Object
*)&s
->rx_data_dev
, &error_abort
);
584 object_property_add_child(OBJECT(s
), "axistream-control-connected-target",
585 (Object
*)&s
->rx_control_dev
, &error_abort
);
587 sysbus_init_irq(sbd
, &s
->streams
[0].irq
);
588 sysbus_init_irq(sbd
, &s
->streams
[1].irq
);
590 memory_region_init_io(&s
->iomem
, obj
, &axidma_ops
, s
,
591 "xlnx.axi-dma", R_MAX
* 4 * 2);
592 sysbus_init_mmio(sbd
, &s
->iomem
);
595 static Property axidma_properties
[] = {
596 DEFINE_PROP_UINT32("freqhz", XilinxAXIDMA
, freqhz
, 50000000),
597 DEFINE_PROP_END_OF_LIST(),
600 static void axidma_class_init(ObjectClass
*klass
, void *data
)
602 DeviceClass
*dc
= DEVICE_CLASS(klass
);
604 dc
->realize
= xilinx_axidma_realize
,
605 dc
->reset
= xilinx_axidma_reset
;
606 dc
->props
= axidma_properties
;
609 static StreamSlaveClass xilinx_axidma_data_stream_class
= {
610 .push
= xilinx_axidma_data_stream_push
,
611 .can_push
= xilinx_axidma_data_stream_can_push
,
614 static StreamSlaveClass xilinx_axidma_control_stream_class
= {
615 .push
= xilinx_axidma_control_stream_push
,
618 static void xilinx_axidma_stream_class_init(ObjectClass
*klass
, void *data
)
620 StreamSlaveClass
*ssc
= STREAM_SLAVE_CLASS(klass
);
622 ssc
->push
= ((StreamSlaveClass
*)data
)->push
;
623 ssc
->can_push
= ((StreamSlaveClass
*)data
)->can_push
;
626 static const TypeInfo axidma_info
= {
627 .name
= TYPE_XILINX_AXI_DMA
,
628 .parent
= TYPE_SYS_BUS_DEVICE
,
629 .instance_size
= sizeof(XilinxAXIDMA
),
630 .class_init
= axidma_class_init
,
631 .instance_init
= xilinx_axidma_init
,
634 static const TypeInfo xilinx_axidma_data_stream_info
= {
635 .name
= TYPE_XILINX_AXI_DMA_DATA_STREAM
,
636 .parent
= TYPE_OBJECT
,
637 .instance_size
= sizeof(struct XilinxAXIDMAStreamSlave
),
638 .class_init
= xilinx_axidma_stream_class_init
,
639 .class_data
= &xilinx_axidma_data_stream_class
,
640 .interfaces
= (InterfaceInfo
[]) {
641 { TYPE_STREAM_SLAVE
},
646 static const TypeInfo xilinx_axidma_control_stream_info
= {
647 .name
= TYPE_XILINX_AXI_DMA_CONTROL_STREAM
,
648 .parent
= TYPE_OBJECT
,
649 .instance_size
= sizeof(struct XilinxAXIDMAStreamSlave
),
650 .class_init
= xilinx_axidma_stream_class_init
,
651 .class_data
= &xilinx_axidma_control_stream_class
,
652 .interfaces
= (InterfaceInfo
[]) {
653 { TYPE_STREAM_SLAVE
},
658 static void xilinx_axidma_register_types(void)
660 type_register_static(&axidma_info
);
661 type_register_static(&xilinx_axidma_data_stream_info
);
662 type_register_static(&xilinx_axidma_control_stream_info
);
665 type_init(xilinx_axidma_register_types
)