ui: fix reporting of VNC auth in query-vnc-servers
[qemu/ar7.git] / include / hw / ssi / xilinx_spips.h
blob06aa09629d1016768a2e3424a65f4dede75bec0b
1 /*
2 * Header file for the Xilinx Zynq SPI controller
4 * Copyright (C) 2015 Xilinx Inc
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
22 * THE SOFTWARE.
25 #ifndef XILINX_SPIPS_H
26 #define XILINX_SPIPS_H
28 #include "hw/ssi/ssi.h"
29 #include "qemu/fifo8.h"
31 typedef struct XilinxSPIPS XilinxSPIPS;
33 #define XLNX_SPIPS_R_MAX (0x100 / 4)
35 struct XilinxSPIPS {
36 SysBusDevice parent_obj;
38 MemoryRegion iomem;
39 MemoryRegion mmlqspi;
41 qemu_irq irq;
42 int irqline;
44 uint8_t num_cs;
45 uint8_t num_busses;
47 uint8_t snoop_state;
48 qemu_irq *cs_lines;
49 SSIBus **spi;
51 Fifo8 rx_fifo;
52 Fifo8 tx_fifo;
54 uint8_t num_txrx_bytes;
56 uint32_t regs[XLNX_SPIPS_R_MAX];
59 #define TYPE_XILINX_SPIPS "xlnx.ps7-spi"
60 #define TYPE_XILINX_QSPIPS "xlnx.ps7-qspi"
62 #define XILINX_SPIPS(obj) \
63 OBJECT_CHECK(XilinxSPIPS, (obj), TYPE_XILINX_SPIPS)
64 #define XILINX_SPIPS_CLASS(klass) \
65 OBJECT_CLASS_CHECK(XilinxSPIPSClass, (klass), TYPE_XILINX_SPIPS)
66 #define XILINX_SPIPS_GET_CLASS(obj) \
67 OBJECT_GET_CLASS(XilinxSPIPSClass, (obj), TYPE_XILINX_SPIPS)
69 #define XILINX_QSPIPS(obj) \
70 OBJECT_CHECK(XilinxQSPIPS, (obj), TYPE_XILINX_QSPIPS)
72 #endif /* XILINX_SPIPS_H */