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/>.
17 #include "hw/misc/zynq-xadc.h"
18 #include "qemu/timer.h"
19 #include "sysemu/sysemu.h"
31 #define CFG_ENABLE BIT(31)
32 #define CFG_CFIFOTH_SHIFT 20
33 #define CFG_CFIFOTH_LENGTH 4
34 #define CFG_DFIFOTH_SHIFT 16
35 #define CFG_DFIFOTH_LENGTH 4
36 #define CFG_WEDGE BIT(13)
37 #define CFG_REDGE BIT(12)
38 #define CFG_TCKRATE_SHIFT 8
39 #define CFG_TCKRATE_LENGTH 2
41 #define CFG_TCKRATE_DIV(x) (0x1 << (x - 1))
43 #define CFG_IGAP_SHIFT 0
44 #define CFG_IGAP_LENGTH 5
46 #define INT_CFIFO_LTH BIT(9)
47 #define INT_DFIFO_GTH BIT(8)
49 #define INT_ALM_SHIFT 0
50 #define INT_ALM_LENGTH 7
51 #define INT_ALM_MASK (((1 << INT_ALM_LENGTH) - 1) << INT_ALM_SHIFT)
53 #define INT_ALL (INT_CFIFO_LTH | INT_DFIFO_GTH | INT_OT | INT_ALM_MASK)
55 #define MSTS_CFIFO_LVL_SHIFT 16
56 #define MSTS_CFIFO_LVL_LENGTH 4
57 #define MSTS_DFIFO_LVL_SHIFT 12
58 #define MSTS_DFIFO_LVL_LENGTH 4
59 #define MSTS_CFIFOF BIT(11)
60 #define MSTS_CFIFOE BIT(10)
61 #define MSTS_DFIFOF BIT(9)
62 #define MSTS_DFIFOE BIT(8)
63 #define MSTS_OT BIT(7)
64 #define MSTS_ALM_SHIFT 0
65 #define MSTS_ALM_LENGTH 7
67 #define MCTL_RESET BIT(4)
71 #define CMD_WRITE 0x02
73 static void zynq_xadc_update_ints(ZynqXADCState
*s
)
76 /* We are fast, commands are actioned instantly so the CFIFO is always
77 * empty (and below threshold).
79 s
->regs
[INT_STS
] |= INT_CFIFO_LTH
;
81 if (s
->xadc_dfifo_entries
>
82 extract32(s
->regs
[CFG
], CFG_DFIFOTH_SHIFT
, CFG_DFIFOTH_LENGTH
)) {
83 s
->regs
[INT_STS
] |= INT_DFIFO_GTH
;
86 qemu_set_irq(s
->qemu_irq
, !!(s
->regs
[INT_STS
] & ~s
->regs
[INT_MASK
]));
89 static void zynq_xadc_reset(DeviceState
*d
)
91 ZynqXADCState
*s
= ZYNQ_XADC(d
);
93 s
->regs
[CFG
] = 0x14 << CFG_IGAP_SHIFT
|
94 CFG_TCKRATE_DIV(4) << CFG_TCKRATE_SHIFT
| CFG_REDGE
;
95 s
->regs
[INT_STS
] = INT_CFIFO_LTH
;
96 s
->regs
[INT_MASK
] = 0xffffffff;
99 s
->regs
[MCTL
] = MCTL_RESET
;
101 memset(s
->xadc_regs
, 0, sizeof(s
->xadc_regs
));
102 memset(s
->xadc_dfifo
, 0, sizeof(s
->xadc_dfifo
));
103 s
->xadc_dfifo_entries
= 0;
105 zynq_xadc_update_ints(s
);
108 static uint16_t xadc_pop_dfifo(ZynqXADCState
*s
)
110 uint16_t rv
= s
->xadc_dfifo
[0];
113 if (s
->xadc_dfifo_entries
> 0) {
114 s
->xadc_dfifo_entries
--;
116 for (i
= 0; i
< s
->xadc_dfifo_entries
; i
++) {
117 s
->xadc_dfifo
[i
] = s
->xadc_dfifo
[i
+ 1];
119 s
->xadc_dfifo
[s
->xadc_dfifo_entries
] = 0;
120 zynq_xadc_update_ints(s
);
124 static void xadc_push_dfifo(ZynqXADCState
*s
, uint16_t regval
)
126 if (s
->xadc_dfifo_entries
< ZYNQ_XADC_FIFO_DEPTH
) {
127 s
->xadc_dfifo
[s
->xadc_dfifo_entries
++] = s
->xadc_read_reg_previous
;
129 s
->xadc_read_reg_previous
= regval
;
130 zynq_xadc_update_ints(s
);
133 static bool zynq_xadc_check_offset(hwaddr offset
, bool rnw
)
143 return rnw
; /* read only */
145 return !rnw
; /* write only */
151 static uint64_t zynq_xadc_read(void *opaque
, hwaddr offset
, unsigned size
)
153 ZynqXADCState
*s
= opaque
;
154 int reg
= offset
/ 4;
157 if (!zynq_xadc_check_offset(reg
, true)) {
158 qemu_log_mask(LOG_GUEST_ERROR
, "zynq_xadc: Invalid read access to "
159 "addr %" HWADDR_PRIx
"\n", offset
);
172 rv
|= s
->xadc_dfifo_entries
<< MSTS_DFIFO_LVL_SHIFT
;
173 if (!s
->xadc_dfifo_entries
) {
175 } else if (s
->xadc_dfifo_entries
== ZYNQ_XADC_FIFO_DEPTH
) {
180 rv
= xadc_pop_dfifo(s
);
186 static void zynq_xadc_write(void *opaque
, hwaddr offset
, uint64_t val
,
189 ZynqXADCState
*s
= (ZynqXADCState
*)opaque
;
190 int reg
= offset
/ 4;
195 if (!zynq_xadc_check_offset(reg
, false)) {
196 qemu_log_mask(LOG_GUEST_ERROR
, "zynq_xadc: Invalid write access "
197 "to addr %" HWADDR_PRIx
"\n", offset
);
206 s
->regs
[INT_STS
] &= ~val
;
209 s
->regs
[INT_MASK
] = val
& INT_ALL
;
212 xadc_cmd
= extract32(val
, 26, 4);
213 xadc_reg
= extract32(val
, 16, 10);
214 xadc_data
= extract32(val
, 0, 16);
216 if (s
->regs
[MCTL
] & MCTL_RESET
) {
217 qemu_log_mask(LOG_GUEST_ERROR
, "zynq_xadc: Sending command "
218 "while comm channel held in reset: %" PRIx32
"\n",
223 if (xadc_reg
> ZYNQ_XADC_NUM_ADC_REGS
&& xadc_cmd
!= CMD_NOP
) {
224 qemu_log_mask(LOG_GUEST_ERROR
, "read/write op to invalid xadc "
225 "reg 0x%x\n", xadc_reg
);
231 xadc_push_dfifo(s
, s
->xadc_regs
[xadc_reg
]);
234 s
->xadc_regs
[xadc_reg
] = xadc_data
;
237 xadc_push_dfifo(s
, 0);
242 s
->regs
[MCTL
] = val
& 0x00fffeff;
245 zynq_xadc_update_ints(s
);
248 static const MemoryRegionOps xadc_ops
= {
249 .read
= zynq_xadc_read
,
250 .write
= zynq_xadc_write
,
251 .endianness
= DEVICE_NATIVE_ENDIAN
,
254 static void zynq_xadc_init(Object
*obj
)
256 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
257 ZynqXADCState
*s
= ZYNQ_XADC(obj
);
259 memory_region_init_io(&s
->iomem
, obj
, &xadc_ops
, s
, "zynq-xadc",
260 ZYNQ_XADC_MMIO_SIZE
);
261 sysbus_init_mmio(sbd
, &s
->iomem
);
262 sysbus_init_irq(sbd
, &s
->qemu_irq
);
265 static const VMStateDescription vmstate_zynq_xadc
= {
268 .minimum_version_id
= 1,
269 .fields
= (VMStateField
[]) {
270 VMSTATE_UINT32_ARRAY(regs
, ZynqXADCState
, ZYNQ_XADC_NUM_IO_REGS
),
271 VMSTATE_UINT16_ARRAY(xadc_regs
, ZynqXADCState
,
272 ZYNQ_XADC_NUM_ADC_REGS
),
273 VMSTATE_UINT16_ARRAY(xadc_dfifo
, ZynqXADCState
,
274 ZYNQ_XADC_FIFO_DEPTH
),
275 VMSTATE_UINT16(xadc_read_reg_previous
, ZynqXADCState
),
276 VMSTATE_UINT16(xadc_dfifo_entries
, ZynqXADCState
),
277 VMSTATE_END_OF_LIST()
281 static void zynq_xadc_class_init(ObjectClass
*klass
, void *data
)
283 DeviceClass
*dc
= DEVICE_CLASS(klass
);
285 dc
->vmsd
= &vmstate_zynq_xadc
;
286 dc
->reset
= zynq_xadc_reset
;
289 static const TypeInfo zynq_xadc_info
= {
290 .class_init
= zynq_xadc_class_init
,
291 .name
= TYPE_ZYNQ_XADC
,
292 .parent
= TYPE_SYS_BUS_DEVICE
,
293 .instance_size
= sizeof(ZynqXADCState
),
294 .instance_init
= zynq_xadc_init
,
297 static void zynq_xadc_register_types(void)
299 type_register_static(&zynq_xadc_info
);
302 type_init(zynq_xadc_register_types
)