2 * ADC registers for Xilinx Zynq Platform
4 * Copyright (c) 2015 Guenter Roeck
5 * Based on hw/misc/zynq_slcr.c, written by Michal Simek
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
12 * You should have received a copy of the GNU General Public License along
13 * with this program; if not, see <http://www.gnu.org/licenses/>.
16 #include "qemu/osdep.h"
18 #include "hw/misc/zynq-xadc.h"
19 #include "qemu/timer.h"
20 #include "sysemu/sysemu.h"
33 #define CFG_ENABLE BIT(31)
34 #define CFG_CFIFOTH_SHIFT 20
35 #define CFG_CFIFOTH_LENGTH 4
36 #define CFG_DFIFOTH_SHIFT 16
37 #define CFG_DFIFOTH_LENGTH 4
38 #define CFG_WEDGE BIT(13)
39 #define CFG_REDGE BIT(12)
40 #define CFG_TCKRATE_SHIFT 8
41 #define CFG_TCKRATE_LENGTH 2
43 #define CFG_TCKRATE_DIV(x) (0x1 << (x - 1))
45 #define CFG_IGAP_SHIFT 0
46 #define CFG_IGAP_LENGTH 5
48 #define INT_CFIFO_LTH BIT(9)
49 #define INT_DFIFO_GTH BIT(8)
51 #define INT_ALM_SHIFT 0
52 #define INT_ALM_LENGTH 7
53 #define INT_ALM_MASK (((1 << INT_ALM_LENGTH) - 1) << INT_ALM_SHIFT)
55 #define INT_ALL (INT_CFIFO_LTH | INT_DFIFO_GTH | INT_OT | INT_ALM_MASK)
57 #define MSTS_CFIFO_LVL_SHIFT 16
58 #define MSTS_CFIFO_LVL_LENGTH 4
59 #define MSTS_DFIFO_LVL_SHIFT 12
60 #define MSTS_DFIFO_LVL_LENGTH 4
61 #define MSTS_CFIFOF BIT(11)
62 #define MSTS_CFIFOE BIT(10)
63 #define MSTS_DFIFOF BIT(9)
64 #define MSTS_DFIFOE BIT(8)
65 #define MSTS_OT BIT(7)
66 #define MSTS_ALM_SHIFT 0
67 #define MSTS_ALM_LENGTH 7
69 #define MCTL_RESET BIT(4)
73 #define CMD_WRITE 0x02
75 static void zynq_xadc_update_ints(ZynqXADCState
*s
)
78 /* We are fast, commands are actioned instantly so the CFIFO is always
79 * empty (and below threshold).
81 s
->regs
[INT_STS
] |= INT_CFIFO_LTH
;
83 if (s
->xadc_dfifo_entries
>
84 extract32(s
->regs
[CFG
], CFG_DFIFOTH_SHIFT
, CFG_DFIFOTH_LENGTH
)) {
85 s
->regs
[INT_STS
] |= INT_DFIFO_GTH
;
88 qemu_set_irq(s
->qemu_irq
, !!(s
->regs
[INT_STS
] & ~s
->regs
[INT_MASK
]));
91 static void zynq_xadc_reset(DeviceState
*d
)
93 ZynqXADCState
*s
= ZYNQ_XADC(d
);
95 s
->regs
[CFG
] = 0x14 << CFG_IGAP_SHIFT
|
96 CFG_TCKRATE_DIV(4) << CFG_TCKRATE_SHIFT
| CFG_REDGE
;
97 s
->regs
[INT_STS
] = INT_CFIFO_LTH
;
98 s
->regs
[INT_MASK
] = 0xffffffff;
101 s
->regs
[MCTL
] = MCTL_RESET
;
103 memset(s
->xadc_regs
, 0, sizeof(s
->xadc_regs
));
104 memset(s
->xadc_dfifo
, 0, sizeof(s
->xadc_dfifo
));
105 s
->xadc_dfifo_entries
= 0;
107 zynq_xadc_update_ints(s
);
110 static uint16_t xadc_pop_dfifo(ZynqXADCState
*s
)
112 uint16_t rv
= s
->xadc_dfifo
[0];
115 if (s
->xadc_dfifo_entries
> 0) {
116 s
->xadc_dfifo_entries
--;
118 for (i
= 0; i
< s
->xadc_dfifo_entries
; i
++) {
119 s
->xadc_dfifo
[i
] = s
->xadc_dfifo
[i
+ 1];
121 s
->xadc_dfifo
[s
->xadc_dfifo_entries
] = 0;
122 zynq_xadc_update_ints(s
);
126 static void xadc_push_dfifo(ZynqXADCState
*s
, uint16_t regval
)
128 if (s
->xadc_dfifo_entries
< ZYNQ_XADC_FIFO_DEPTH
) {
129 s
->xadc_dfifo
[s
->xadc_dfifo_entries
++] = s
->xadc_read_reg_previous
;
131 s
->xadc_read_reg_previous
= regval
;
132 zynq_xadc_update_ints(s
);
135 static bool zynq_xadc_check_offset(hwaddr offset
, bool rnw
)
145 return rnw
; /* read only */
147 return !rnw
; /* write only */
153 static uint64_t zynq_xadc_read(void *opaque
, hwaddr offset
, unsigned size
)
155 ZynqXADCState
*s
= opaque
;
156 int reg
= offset
/ 4;
159 if (!zynq_xadc_check_offset(reg
, true)) {
160 qemu_log_mask(LOG_GUEST_ERROR
, "zynq_xadc: Invalid read access to "
161 "addr %" HWADDR_PRIx
"\n", offset
);
174 rv
|= s
->xadc_dfifo_entries
<< MSTS_DFIFO_LVL_SHIFT
;
175 if (!s
->xadc_dfifo_entries
) {
177 } else if (s
->xadc_dfifo_entries
== ZYNQ_XADC_FIFO_DEPTH
) {
182 rv
= xadc_pop_dfifo(s
);
188 static void zynq_xadc_write(void *opaque
, hwaddr offset
, uint64_t val
,
191 ZynqXADCState
*s
= (ZynqXADCState
*)opaque
;
192 int reg
= offset
/ 4;
197 if (!zynq_xadc_check_offset(reg
, false)) {
198 qemu_log_mask(LOG_GUEST_ERROR
, "zynq_xadc: Invalid write access "
199 "to addr %" HWADDR_PRIx
"\n", offset
);
208 s
->regs
[INT_STS
] &= ~val
;
211 s
->regs
[INT_MASK
] = val
& INT_ALL
;
214 xadc_cmd
= extract32(val
, 26, 4);
215 xadc_reg
= extract32(val
, 16, 10);
216 xadc_data
= extract32(val
, 0, 16);
218 if (s
->regs
[MCTL
] & MCTL_RESET
) {
219 qemu_log_mask(LOG_GUEST_ERROR
, "zynq_xadc: Sending command "
220 "while comm channel held in reset: %" PRIx32
"\n",
225 if (xadc_reg
>= ZYNQ_XADC_NUM_ADC_REGS
&& xadc_cmd
!= CMD_NOP
) {
226 qemu_log_mask(LOG_GUEST_ERROR
, "read/write op to invalid xadc "
227 "reg 0x%x\n", xadc_reg
);
233 xadc_push_dfifo(s
, s
->xadc_regs
[xadc_reg
]);
236 s
->xadc_regs
[xadc_reg
] = xadc_data
;
239 xadc_push_dfifo(s
, 0);
244 s
->regs
[MCTL
] = val
& 0x00fffeff;
247 zynq_xadc_update_ints(s
);
250 static const MemoryRegionOps xadc_ops
= {
251 .read
= zynq_xadc_read
,
252 .write
= zynq_xadc_write
,
253 .endianness
= DEVICE_NATIVE_ENDIAN
,
256 static void zynq_xadc_init(Object
*obj
)
258 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
259 ZynqXADCState
*s
= ZYNQ_XADC(obj
);
261 memory_region_init_io(&s
->iomem
, obj
, &xadc_ops
, s
, "zynq-xadc",
262 ZYNQ_XADC_MMIO_SIZE
);
263 sysbus_init_mmio(sbd
, &s
->iomem
);
264 sysbus_init_irq(sbd
, &s
->qemu_irq
);
267 static const VMStateDescription vmstate_zynq_xadc
= {
270 .minimum_version_id
= 1,
271 .fields
= (VMStateField
[]) {
272 VMSTATE_UINT32_ARRAY(regs
, ZynqXADCState
, ZYNQ_XADC_NUM_IO_REGS
),
273 VMSTATE_UINT16_ARRAY(xadc_regs
, ZynqXADCState
,
274 ZYNQ_XADC_NUM_ADC_REGS
),
275 VMSTATE_UINT16_ARRAY(xadc_dfifo
, ZynqXADCState
,
276 ZYNQ_XADC_FIFO_DEPTH
),
277 VMSTATE_UINT16(xadc_read_reg_previous
, ZynqXADCState
),
278 VMSTATE_UINT16(xadc_dfifo_entries
, ZynqXADCState
),
279 VMSTATE_END_OF_LIST()
283 static void zynq_xadc_class_init(ObjectClass
*klass
, void *data
)
285 DeviceClass
*dc
= DEVICE_CLASS(klass
);
287 dc
->vmsd
= &vmstate_zynq_xadc
;
288 dc
->reset
= zynq_xadc_reset
;
291 static const TypeInfo zynq_xadc_info
= {
292 .class_init
= zynq_xadc_class_init
,
293 .name
= TYPE_ZYNQ_XADC
,
294 .parent
= TYPE_SYS_BUS_DEVICE
,
295 .instance_size
= sizeof(ZynqXADCState
),
296 .instance_init
= zynq_xadc_init
,
299 static void zynq_xadc_register_types(void)
301 type_register_static(&zynq_xadc_info
);
304 type_init(zynq_xadc_register_types
)