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 "qemu/module.h"
24 #include "hw/sysbus.h"
25 #include "migration/vmstate.h"
26 #include "hw/registerfields.h"
27 #include "hw/misc/mps2-scc.h"
28 #include "hw/qdev-properties.h"
34 REG32(CFGDATA_RTN
, 0xa0)
35 REG32(CFGDATA_OUT
, 0xa4)
37 FIELD(CFGCTRL
, DEVICE
, 0, 12)
38 FIELD(CFGCTRL
, RES1
, 12, 8)
39 FIELD(CFGCTRL
, FUNCTION
, 20, 6)
40 FIELD(CFGCTRL
, RES2
, 26, 4)
41 FIELD(CFGCTRL
, WRITE
, 30, 1)
42 FIELD(CFGCTRL
, START
, 31, 1)
44 FIELD(CFGSTAT
, DONE
, 0, 1)
45 FIELD(CFGSTAT
, ERROR
, 1, 1)
50 /* Handle a write via the SYS_CFG channel to the specified function/device.
51 * Return false on error (reported to guest via SYS_CFGCTRL ERROR bit).
53 static bool scc_cfg_write(MPS2SCC
*s
, unsigned function
,
54 unsigned device
, uint32_t value
)
56 trace_mps2_scc_cfg_write(function
, device
, value
);
58 if (function
!= 1 || device
>= NUM_OSCCLK
) {
59 qemu_log_mask(LOG_GUEST_ERROR
,
60 "MPS2 SCC config write: bad function %d device %d\n",
65 s
->oscclk
[device
] = value
;
69 /* Handle a read via the SYS_CFG channel to the specified function/device.
70 * Return false on error (reported to guest via SYS_CFGCTRL ERROR bit),
71 * or set *value on success.
73 static bool scc_cfg_read(MPS2SCC
*s
, unsigned function
,
74 unsigned device
, uint32_t *value
)
76 if (function
!= 1 || device
>= NUM_OSCCLK
) {
77 qemu_log_mask(LOG_GUEST_ERROR
,
78 "MPS2 SCC config read: bad function %d device %d\n",
83 *value
= s
->oscclk
[device
];
85 trace_mps2_scc_cfg_read(function
, device
, *value
);
89 static uint64_t mps2_scc_read(void *opaque
, hwaddr offset
, unsigned size
)
91 MPS2SCC
*s
= MPS2_SCC(opaque
);
102 /* These are user-settable DIP switches on the board. We don't
103 * model that, so just return zeroes.
132 qemu_log_mask(LOG_GUEST_ERROR
,
133 "MPS2 SCC read: bad offset %x\n", (int) offset
);
138 trace_mps2_scc_read(offset
, r
, size
);
142 static void mps2_scc_write(void *opaque
, hwaddr offset
, uint64_t value
,
145 MPS2SCC
*s
= MPS2_SCC(opaque
);
147 trace_mps2_scc_write(offset
, value
, size
);
151 /* TODO on some boards bit 0 controls RAM remapping */
155 /* CFG1 bits [7:0] control the board LEDs. We don't currently have
156 * a mechanism for displaying this graphically, so use a trace event.
158 trace_mps2_scc_leds(value
& 0x80 ? '*' : '.',
159 value
& 0x40 ? '*' : '.',
160 value
& 0x20 ? '*' : '.',
161 value
& 0x10 ? '*' : '.',
162 value
& 0x08 ? '*' : '.',
163 value
& 0x04 ? '*' : '.',
164 value
& 0x02 ? '*' : '.',
165 value
& 0x01 ? '*' : '.');
169 s
->cfgdata_out
= value
;
172 /* Writing to CFGCTRL clears SYS_CFGSTAT */
174 s
->cfgctrl
= value
& ~(R_CFGCTRL_RES1_MASK
|
175 R_CFGCTRL_RES2_MASK
|
176 R_CFGCTRL_START_MASK
);
178 if (value
& R_CFGCTRL_START_MASK
) {
179 /* Start bit set -- do a read or write (instantaneously) */
180 int device
= extract32(s
->cfgctrl
, R_CFGCTRL_DEVICE_SHIFT
,
181 R_CFGCTRL_DEVICE_LENGTH
);
182 int function
= extract32(s
->cfgctrl
, R_CFGCTRL_FUNCTION_SHIFT
,
183 R_CFGCTRL_FUNCTION_LENGTH
);
185 s
->cfgstat
= R_CFGSTAT_DONE_MASK
;
186 if (s
->cfgctrl
& R_CFGCTRL_WRITE_MASK
) {
187 if (!scc_cfg_write(s
, function
, device
, s
->cfgdata_out
)) {
188 s
->cfgstat
|= R_CFGSTAT_ERROR_MASK
;
192 if (!scc_cfg_read(s
, function
, device
, &result
)) {
193 s
->cfgstat
|= R_CFGSTAT_ERROR_MASK
;
195 s
->cfgdata_rtn
= result
;
201 /* DLL stands for Digital Locked Loop.
202 * Bits [31:24] (DLL_LOCK_MASK) are writable, and indicate a
203 * mask of which of the DLL_LOCKED bits [16:23] should be ORed
204 * together to determine the ALL_UNMASKED_DLLS_LOCKED bit [0].
205 * For QEMU, our DLLs are always locked, so we can leave bit 0
206 * as 1 always and don't need to recalculate it.
208 s
->dll
= deposit32(s
->dll
, 24, 8, extract32(value
, 24, 8));
211 qemu_log_mask(LOG_GUEST_ERROR
,
212 "MPS2 SCC write: bad offset 0x%x\n", (int) offset
);
217 static const MemoryRegionOps mps2_scc_ops
= {
218 .read
= mps2_scc_read
,
219 .write
= mps2_scc_write
,
220 .endianness
= DEVICE_LITTLE_ENDIAN
,
223 static void mps2_scc_reset(DeviceState
*dev
)
225 MPS2SCC
*s
= MPS2_SCC(dev
);
228 trace_mps2_scc_reset();
233 s
->cfgctrl
= 0x100000;
236 for (i
= 0; i
< NUM_OSCCLK
; i
++) {
237 s
->oscclk
[i
] = s
->oscclk_reset
[i
];
241 static void mps2_scc_init(Object
*obj
)
243 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
244 MPS2SCC
*s
= MPS2_SCC(obj
);
246 memory_region_init_io(&s
->iomem
, obj
, &mps2_scc_ops
, s
, "mps2-scc", 0x1000);
247 sysbus_init_mmio(sbd
, &s
->iomem
);
250 static void mps2_scc_realize(DeviceState
*dev
, Error
**errp
)
254 static const VMStateDescription mps2_scc_vmstate
= {
257 .minimum_version_id
= 1,
258 .fields
= (VMStateField
[]) {
259 VMSTATE_UINT32(cfg0
, MPS2SCC
),
260 VMSTATE_UINT32(cfg1
, MPS2SCC
),
261 VMSTATE_UINT32(cfgdata_rtn
, MPS2SCC
),
262 VMSTATE_UINT32(cfgdata_out
, MPS2SCC
),
263 VMSTATE_UINT32(cfgctrl
, MPS2SCC
),
264 VMSTATE_UINT32(cfgstat
, MPS2SCC
),
265 VMSTATE_UINT32(dll
, MPS2SCC
),
266 VMSTATE_UINT32_ARRAY(oscclk
, MPS2SCC
, NUM_OSCCLK
),
267 VMSTATE_END_OF_LIST()
271 static Property mps2_scc_properties
[] = {
272 /* Values for various read-only ID registers (which are specific
273 * to the board model or FPGA image)
275 DEFINE_PROP_UINT32("scc-cfg4", MPS2SCC
, cfg4
, 0),
276 DEFINE_PROP_UINT32("scc-aid", MPS2SCC
, aid
, 0),
277 DEFINE_PROP_UINT32("scc-id", MPS2SCC
, id
, 0),
278 /* These are the initial settings for the source clocks on the board.
279 * In hardware they can be configured via a config file read by the
280 * motherboard configuration controller to suit the FPGA image.
281 * These default values are used by most of the standard FPGA images.
283 DEFINE_PROP_UINT32("oscclk0", MPS2SCC
, oscclk_reset
[0], 50000000),
284 DEFINE_PROP_UINT32("oscclk1", MPS2SCC
, oscclk_reset
[1], 24576000),
285 DEFINE_PROP_UINT32("oscclk2", MPS2SCC
, oscclk_reset
[2], 25000000),
286 DEFINE_PROP_END_OF_LIST(),
289 static void mps2_scc_class_init(ObjectClass
*klass
, void *data
)
291 DeviceClass
*dc
= DEVICE_CLASS(klass
);
293 dc
->realize
= mps2_scc_realize
;
294 dc
->vmsd
= &mps2_scc_vmstate
;
295 dc
->reset
= mps2_scc_reset
;
296 device_class_set_props(dc
, mps2_scc_properties
);
299 static const TypeInfo mps2_scc_info
= {
300 .name
= TYPE_MPS2_SCC
,
301 .parent
= TYPE_SYS_BUS_DEVICE
,
302 .instance_size
= sizeof(MPS2SCC
),
303 .instance_init
= mps2_scc_init
,
304 .class_init
= mps2_scc_class_init
,
307 static void mps2_scc_register_types(void)
309 type_register_static(&mps2_scc_info
);
312 type_init(mps2_scc_register_types
);