2 * ARM MPS2 SCC emulation
4 * Copyright (c) 2017 Linaro Limited
5 * Written by Peter Maydell
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 or
9 * (at your option) any later version.
12 /* This is a model of the SCC (Serial Communication Controller)
13 * found in the FPGA images of MPS2 development boards.
15 * Documentation of it can be found in the MPS2 TRM:
16 * http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.100112_0100_03_en/index.html
17 * and also in the Application Notes documenting individual FPGA images.
20 #include "qemu/osdep.h"
22 #include "qapi/error.h"
24 #include "hw/sysbus.h"
25 #include "hw/registerfields.h"
26 #include "hw/misc/mps2-scc.h"
32 REG32(CFGDATA_RTN
, 0xa0)
33 REG32(CFGDATA_OUT
, 0xa4)
35 FIELD(CFGCTRL
, DEVICE
, 0, 12)
36 FIELD(CFGCTRL
, RES1
, 12, 8)
37 FIELD(CFGCTRL
, FUNCTION
, 20, 6)
38 FIELD(CFGCTRL
, RES2
, 26, 4)
39 FIELD(CFGCTRL
, WRITE
, 30, 1)
40 FIELD(CFGCTRL
, START
, 31, 1)
42 FIELD(CFGSTAT
, DONE
, 0, 1)
43 FIELD(CFGSTAT
, ERROR
, 1, 1)
48 /* Handle a write via the SYS_CFG channel to the specified function/device.
49 * Return false on error (reported to guest via SYS_CFGCTRL ERROR bit).
51 static bool scc_cfg_write(MPS2SCC
*s
, unsigned function
,
52 unsigned device
, uint32_t value
)
54 trace_mps2_scc_cfg_write(function
, device
, value
);
56 if (function
!= 1 || device
>= NUM_OSCCLK
) {
57 qemu_log_mask(LOG_GUEST_ERROR
,
58 "MPS2 SCC config write: bad function %d device %d\n",
63 s
->oscclk
[device
] = value
;
67 /* Handle a read via the SYS_CFG channel to the specified function/device.
68 * Return false on error (reported to guest via SYS_CFGCTRL ERROR bit),
69 * or set *value on success.
71 static bool scc_cfg_read(MPS2SCC
*s
, unsigned function
,
72 unsigned device
, uint32_t *value
)
74 if (function
!= 1 || device
>= NUM_OSCCLK
) {
75 qemu_log_mask(LOG_GUEST_ERROR
,
76 "MPS2 SCC config read: bad function %d device %d\n",
81 *value
= s
->oscclk
[device
];
83 trace_mps2_scc_cfg_read(function
, device
, *value
);
87 static uint64_t mps2_scc_read(void *opaque
, hwaddr offset
, unsigned size
)
89 MPS2SCC
*s
= MPS2_SCC(opaque
);
100 /* These are user-settable DIP switches on the board. We don't
101 * model that, so just return zeroes.
130 qemu_log_mask(LOG_GUEST_ERROR
,
131 "MPS2 SCC read: bad offset %x\n", (int) offset
);
136 trace_mps2_scc_read(offset
, r
, size
);
140 static void mps2_scc_write(void *opaque
, hwaddr offset
, uint64_t value
,
143 MPS2SCC
*s
= MPS2_SCC(opaque
);
145 trace_mps2_scc_write(offset
, value
, size
);
149 /* TODO on some boards bit 0 controls RAM remapping */
153 /* CFG1 bits [7:0] control the board LEDs. We don't currently have
154 * a mechanism for displaying this graphically, so use a trace event.
156 trace_mps2_scc_leds(value
& 0x80 ? '*' : '.',
157 value
& 0x40 ? '*' : '.',
158 value
& 0x20 ? '*' : '.',
159 value
& 0x10 ? '*' : '.',
160 value
& 0x08 ? '*' : '.',
161 value
& 0x04 ? '*' : '.',
162 value
& 0x02 ? '*' : '.',
163 value
& 0x01 ? '*' : '.');
167 s
->cfgdata_out
= value
;
170 /* Writing to CFGCTRL clears SYS_CFGSTAT */
172 s
->cfgctrl
= value
& ~(R_CFGCTRL_RES1_MASK
|
173 R_CFGCTRL_RES2_MASK
|
174 R_CFGCTRL_START_MASK
);
176 if (value
& R_CFGCTRL_START_MASK
) {
177 /* Start bit set -- do a read or write (instantaneously) */
178 int device
= extract32(s
->cfgctrl
, R_CFGCTRL_DEVICE_SHIFT
,
179 R_CFGCTRL_DEVICE_LENGTH
);
180 int function
= extract32(s
->cfgctrl
, R_CFGCTRL_FUNCTION_SHIFT
,
181 R_CFGCTRL_FUNCTION_LENGTH
);
183 s
->cfgstat
= R_CFGSTAT_DONE_MASK
;
184 if (s
->cfgctrl
& R_CFGCTRL_WRITE_MASK
) {
185 if (!scc_cfg_write(s
, function
, device
, s
->cfgdata_out
)) {
186 s
->cfgstat
|= R_CFGSTAT_ERROR_MASK
;
190 if (!scc_cfg_read(s
, function
, device
, &result
)) {
191 s
->cfgstat
|= R_CFGSTAT_ERROR_MASK
;
193 s
->cfgdata_rtn
= result
;
199 /* DLL stands for Digital Locked Loop.
200 * Bits [31:24] (DLL_LOCK_MASK) are writable, and indicate a
201 * mask of which of the DLL_LOCKED bits [16:23] should be ORed
202 * together to determine the ALL_UNMASKED_DLLS_LOCKED bit [0].
203 * For QEMU, our DLLs are always locked, so we can leave bit 0
204 * as 1 always and don't need to recalculate it.
206 s
->dll
= deposit32(s
->dll
, 24, 8, extract32(value
, 24, 8));
209 qemu_log_mask(LOG_GUEST_ERROR
,
210 "MPS2 SCC write: bad offset 0x%x\n", (int) offset
);
215 static const MemoryRegionOps mps2_scc_ops
= {
216 .read
= mps2_scc_read
,
217 .write
= mps2_scc_write
,
218 .endianness
= DEVICE_LITTLE_ENDIAN
,
221 static void mps2_scc_reset(DeviceState
*dev
)
223 MPS2SCC
*s
= MPS2_SCC(dev
);
226 trace_mps2_scc_reset();
231 s
->cfgctrl
= 0x100000;
234 for (i
= 0; i
< NUM_OSCCLK
; i
++) {
235 s
->oscclk
[i
] = s
->oscclk_reset
[i
];
239 static void mps2_scc_init(Object
*obj
)
241 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
242 MPS2SCC
*s
= MPS2_SCC(obj
);
244 memory_region_init_io(&s
->iomem
, obj
, &mps2_scc_ops
, s
, "mps2-scc", 0x1000);
245 sysbus_init_mmio(sbd
, &s
->iomem
);
248 static void mps2_scc_realize(DeviceState
*dev
, Error
**errp
)
252 static const VMStateDescription mps2_scc_vmstate
= {
255 .minimum_version_id
= 1,
256 .fields
= (VMStateField
[]) {
257 VMSTATE_UINT32(cfg0
, MPS2SCC
),
258 VMSTATE_UINT32(cfg1
, MPS2SCC
),
259 VMSTATE_UINT32(cfgdata_rtn
, MPS2SCC
),
260 VMSTATE_UINT32(cfgdata_out
, MPS2SCC
),
261 VMSTATE_UINT32(cfgctrl
, MPS2SCC
),
262 VMSTATE_UINT32(cfgstat
, MPS2SCC
),
263 VMSTATE_UINT32(dll
, MPS2SCC
),
264 VMSTATE_UINT32_ARRAY(oscclk
, MPS2SCC
, NUM_OSCCLK
),
265 VMSTATE_END_OF_LIST()
269 static Property mps2_scc_properties
[] = {
270 /* Values for various read-only ID registers (which are specific
271 * to the board model or FPGA image)
273 DEFINE_PROP_UINT32("scc-cfg4", MPS2SCC
, cfg4
, 0),
274 DEFINE_PROP_UINT32("scc-aid", MPS2SCC
, aid
, 0),
275 DEFINE_PROP_UINT32("scc-id", MPS2SCC
, id
, 0),
276 /* These are the initial settings for the source clocks on the board.
277 * In hardware they can be configured via a config file read by the
278 * motherboard configuration controller to suit the FPGA image.
279 * These default values are used by most of the standard FPGA images.
281 DEFINE_PROP_UINT32("oscclk0", MPS2SCC
, oscclk_reset
[0], 50000000),
282 DEFINE_PROP_UINT32("oscclk1", MPS2SCC
, oscclk_reset
[1], 24576000),
283 DEFINE_PROP_UINT32("oscclk2", MPS2SCC
, oscclk_reset
[2], 25000000),
284 DEFINE_PROP_END_OF_LIST(),
287 static void mps2_scc_class_init(ObjectClass
*klass
, void *data
)
289 DeviceClass
*dc
= DEVICE_CLASS(klass
);
291 dc
->realize
= mps2_scc_realize
;
292 dc
->vmsd
= &mps2_scc_vmstate
;
293 dc
->reset
= mps2_scc_reset
;
294 dc
->props
= mps2_scc_properties
;
297 static const TypeInfo mps2_scc_info
= {
298 .name
= TYPE_MPS2_SCC
,
299 .parent
= TYPE_SYS_BUS_DEVICE
,
300 .instance_size
= sizeof(MPS2SCC
),
301 .instance_init
= mps2_scc_init
,
302 .class_init
= mps2_scc_class_init
,
305 static void mps2_scc_register_types(void)
307 type_register_static(&mps2_scc_info
);
310 type_init(mps2_scc_register_types
);