hw/arm/armsse: Move sysinfo register block into data-driven framework
[qemu/ar7.git] / include / hw / dma / xlnx-zdma.h
blob6602e7ffa72b18f33fc84ccbe533dac54dbcfed4
1 /*
2 * QEMU model of the ZynqMP generic DMA
4 * Copyright (c) 2014 Xilinx Inc.
5 * Copyright (c) 2018 FEIMTECH AB
7 * Written by Edgar E. Iglesias <edgar.iglesias@xilinx.com>,
8 * Francisco Iglesias <francisco.iglesias@feimtech.se>
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 * THE SOFTWARE.
29 #ifndef XLNX_ZDMA_H
30 #define XLNX_ZDMA_H
32 #include "hw/sysbus.h"
33 #include "hw/register.h"
34 #include "sysemu/dma.h"
35 #include "qom/object.h"
37 #define ZDMA_R_MAX (0x204 / 4)
39 typedef enum {
40 DISABLED = 0,
41 ENABLED = 1,
42 PAUSED = 2,
43 } XlnxZDMAState;
45 typedef union {
46 struct {
47 uint64_t addr;
48 uint32_t size;
49 uint32_t attr;
51 uint32_t words[4];
52 } XlnxZDMADescr;
54 struct XlnxZDMA {
55 SysBusDevice parent_obj;
56 MemoryRegion iomem;
57 MemTxAttrs attr;
58 MemoryRegion *dma_mr;
59 AddressSpace *dma_as;
60 qemu_irq irq_zdma_ch_imr;
62 struct {
63 uint32_t bus_width;
64 } cfg;
66 XlnxZDMAState state;
67 bool error;
69 XlnxZDMADescr dsc_src;
70 XlnxZDMADescr dsc_dst;
72 uint32_t regs[ZDMA_R_MAX];
73 RegisterInfo regs_info[ZDMA_R_MAX];
75 /* We don't model the common bufs. Must be at least 16 bytes
76 to model write only mode. */
77 uint8_t buf[2048];
80 #define TYPE_XLNX_ZDMA "xlnx.zdma"
82 OBJECT_DECLARE_SIMPLE_TYPE(XlnxZDMA, XLNX_ZDMA)
84 #endif /* XLNX_ZDMA_H */