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"
32 #define CFG_ENABLE BIT(31)
33 #define CFG_CFIFOTH_SHIFT 20
34 #define CFG_CFIFOTH_LENGTH 4
35 #define CFG_DFIFOTH_SHIFT 16
36 #define CFG_DFIFOTH_LENGTH 4
37 #define CFG_WEDGE BIT(13)
38 #define CFG_REDGE BIT(12)
39 #define CFG_TCKRATE_SHIFT 8
40 #define CFG_TCKRATE_LENGTH 2
42 #define CFG_TCKRATE_DIV(x) (0x1 << (x - 1))
44 #define CFG_IGAP_SHIFT 0
45 #define CFG_IGAP_LENGTH 5
47 #define INT_CFIFO_LTH BIT(9)
48 #define INT_DFIFO_GTH BIT(8)
50 #define INT_ALM_SHIFT 0
51 #define INT_ALM_LENGTH 7
52 #define INT_ALM_MASK (((1 << INT_ALM_LENGTH) - 1) << INT_ALM_SHIFT)
54 #define INT_ALL (INT_CFIFO_LTH | INT_DFIFO_GTH | INT_OT | INT_ALM_MASK)
56 #define MSTS_CFIFO_LVL_SHIFT 16
57 #define MSTS_CFIFO_LVL_LENGTH 4
58 #define MSTS_DFIFO_LVL_SHIFT 12
59 #define MSTS_DFIFO_LVL_LENGTH 4
60 #define MSTS_CFIFOF BIT(11)
61 #define MSTS_CFIFOE BIT(10)
62 #define MSTS_DFIFOF BIT(9)
63 #define MSTS_DFIFOE BIT(8)
64 #define MSTS_OT BIT(7)
65 #define MSTS_ALM_SHIFT 0
66 #define MSTS_ALM_LENGTH 7
68 #define MCTL_RESET BIT(4)
72 #define CMD_WRITE 0x02
74 static void zynq_xadc_update_ints(ZynqXADCState
*s
)
77 /* We are fast, commands are actioned instantly so the CFIFO is always
78 * empty (and below threshold).
80 s
->regs
[INT_STS
] |= INT_CFIFO_LTH
;
82 if (s
->xadc_dfifo_entries
>
83 extract32(s
->regs
[CFG
], CFG_DFIFOTH_SHIFT
, CFG_DFIFOTH_LENGTH
)) {
84 s
->regs
[INT_STS
] |= INT_DFIFO_GTH
;
87 qemu_set_irq(s
->qemu_irq
, !!(s
->regs
[INT_STS
] & ~s
->regs
[INT_MASK
]));
90 static void zynq_xadc_reset(DeviceState
*d
)
92 ZynqXADCState
*s
= ZYNQ_XADC(d
);
94 s
->regs
[CFG
] = 0x14 << CFG_IGAP_SHIFT
|
95 CFG_TCKRATE_DIV(4) << CFG_TCKRATE_SHIFT
| CFG_REDGE
;
96 s
->regs
[INT_STS
] = INT_CFIFO_LTH
;
97 s
->regs
[INT_MASK
] = 0xffffffff;
100 s
->regs
[MCTL
] = MCTL_RESET
;
102 memset(s
->xadc_regs
, 0, sizeof(s
->xadc_regs
));
103 memset(s
->xadc_dfifo
, 0, sizeof(s
->xadc_dfifo
));
104 s
->xadc_dfifo_entries
= 0;
106 zynq_xadc_update_ints(s
);
109 static uint16_t xadc_pop_dfifo(ZynqXADCState
*s
)
111 uint16_t rv
= s
->xadc_dfifo
[0];
114 if (s
->xadc_dfifo_entries
> 0) {
115 s
->xadc_dfifo_entries
--;
117 for (i
= 0; i
< s
->xadc_dfifo_entries
; i
++) {
118 s
->xadc_dfifo
[i
] = s
->xadc_dfifo
[i
+ 1];
120 s
->xadc_dfifo
[s
->xadc_dfifo_entries
] = 0;
121 zynq_xadc_update_ints(s
);
125 static void xadc_push_dfifo(ZynqXADCState
*s
, uint16_t regval
)
127 if (s
->xadc_dfifo_entries
< ZYNQ_XADC_FIFO_DEPTH
) {
128 s
->xadc_dfifo
[s
->xadc_dfifo_entries
++] = s
->xadc_read_reg_previous
;
130 s
->xadc_read_reg_previous
= regval
;
131 zynq_xadc_update_ints(s
);
134 static bool zynq_xadc_check_offset(hwaddr offset
, bool rnw
)
144 return rnw
; /* read only */
146 return !rnw
; /* write only */
152 static uint64_t zynq_xadc_read(void *opaque
, hwaddr offset
, unsigned size
)
154 ZynqXADCState
*s
= opaque
;
155 int reg
= offset
/ 4;
158 if (!zynq_xadc_check_offset(reg
, true)) {
159 qemu_log_mask(LOG_GUEST_ERROR
, "zynq_xadc: Invalid read access to "
160 "addr %" HWADDR_PRIx
"\n", offset
);
173 rv
|= s
->xadc_dfifo_entries
<< MSTS_DFIFO_LVL_SHIFT
;
174 if (!s
->xadc_dfifo_entries
) {
176 } else if (s
->xadc_dfifo_entries
== ZYNQ_XADC_FIFO_DEPTH
) {
181 rv
= xadc_pop_dfifo(s
);
187 static void zynq_xadc_write(void *opaque
, hwaddr offset
, uint64_t val
,
190 ZynqXADCState
*s
= (ZynqXADCState
*)opaque
;
191 int reg
= offset
/ 4;
196 if (!zynq_xadc_check_offset(reg
, false)) {
197 qemu_log_mask(LOG_GUEST_ERROR
, "zynq_xadc: Invalid write access "
198 "to addr %" HWADDR_PRIx
"\n", offset
);
207 s
->regs
[INT_STS
] &= ~val
;
210 s
->regs
[INT_MASK
] = val
& INT_ALL
;
213 xadc_cmd
= extract32(val
, 26, 4);
214 xadc_reg
= extract32(val
, 16, 10);
215 xadc_data
= extract32(val
, 0, 16);
217 if (s
->regs
[MCTL
] & MCTL_RESET
) {
218 qemu_log_mask(LOG_GUEST_ERROR
, "zynq_xadc: Sending command "
219 "while comm channel held in reset: %" PRIx32
"\n",
224 if (xadc_reg
>= ZYNQ_XADC_NUM_ADC_REGS
&& xadc_cmd
!= CMD_NOP
) {
225 qemu_log_mask(LOG_GUEST_ERROR
, "read/write op to invalid xadc "
226 "reg 0x%x\n", xadc_reg
);
232 xadc_push_dfifo(s
, s
->xadc_regs
[xadc_reg
]);
235 s
->xadc_regs
[xadc_reg
] = xadc_data
;
238 xadc_push_dfifo(s
, 0);
243 s
->regs
[MCTL
] = val
& 0x00fffeff;
246 zynq_xadc_update_ints(s
);
249 static const MemoryRegionOps xadc_ops
= {
250 .read
= zynq_xadc_read
,
251 .write
= zynq_xadc_write
,
252 .endianness
= DEVICE_NATIVE_ENDIAN
,
255 static void zynq_xadc_init(Object
*obj
)
257 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
258 ZynqXADCState
*s
= ZYNQ_XADC(obj
);
260 memory_region_init_io(&s
->iomem
, obj
, &xadc_ops
, s
, "zynq-xadc",
261 ZYNQ_XADC_MMIO_SIZE
);
262 sysbus_init_mmio(sbd
, &s
->iomem
);
263 sysbus_init_irq(sbd
, &s
->qemu_irq
);
266 static const VMStateDescription vmstate_zynq_xadc
= {
269 .minimum_version_id
= 1,
270 .fields
= (VMStateField
[]) {
271 VMSTATE_UINT32_ARRAY(regs
, ZynqXADCState
, ZYNQ_XADC_NUM_IO_REGS
),
272 VMSTATE_UINT16_ARRAY(xadc_regs
, ZynqXADCState
,
273 ZYNQ_XADC_NUM_ADC_REGS
),
274 VMSTATE_UINT16_ARRAY(xadc_dfifo
, ZynqXADCState
,
275 ZYNQ_XADC_FIFO_DEPTH
),
276 VMSTATE_UINT16(xadc_read_reg_previous
, ZynqXADCState
),
277 VMSTATE_UINT16(xadc_dfifo_entries
, ZynqXADCState
),
278 VMSTATE_END_OF_LIST()
282 static void zynq_xadc_class_init(ObjectClass
*klass
, void *data
)
284 DeviceClass
*dc
= DEVICE_CLASS(klass
);
286 dc
->vmsd
= &vmstate_zynq_xadc
;
287 dc
->reset
= zynq_xadc_reset
;
290 static const TypeInfo zynq_xadc_info
= {
291 .class_init
= zynq_xadc_class_init
,
292 .name
= TYPE_ZYNQ_XADC
,
293 .parent
= TYPE_SYS_BUS_DEVICE
,
294 .instance_size
= sizeof(ZynqXADCState
),
295 .instance_init
= zynq_xadc_init
,
298 static void zynq_xadc_register_types(void)
300 type_register_static(&zynq_xadc_info
);
303 type_init(zynq_xadc_register_types
)