Merge remote-tracking branch 'remotes/armbru/tags/pull-build-2019-07-02-v2' into...
[qemu/ar7.git] / hw / display / dpcd.c
blob88cde54821e3c92195a87f2fed3300895b375890
1 /*
2 * dpcd.c
4 * Copyright (C) 2015 : GreenSocs Ltd
5 * http://www.greensocs.com/ , email: info@greensocs.com
7 * Developed by :
8 * Frederic Konrad <fred.konrad@greensocs.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, either version 2 of the License, or
13 * (at your option)any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, see <http://www.gnu.org/licenses/>.
26 * This is a simple AUX slave which emulates a connected screen.
29 #include "qemu/osdep.h"
30 #include "qemu/log.h"
31 #include "qemu/module.h"
32 #include "hw/misc/auxbus.h"
33 #include "hw/display/dpcd.h"
35 #ifndef DEBUG_DPCD
36 #define DEBUG_DPCD 0
37 #endif
39 #define DPRINTF(fmt, ...) do { \
40 if (DEBUG_DPCD) { \
41 qemu_log("dpcd: " fmt, ## __VA_ARGS__); \
42 } \
43 } while (0)
45 #define DPCD_READABLE_AREA 0x600
47 struct DPCDState {
48 /*< private >*/
49 AUXSlave parent_obj;
51 /*< public >*/
53 * The DCPD is 0x7FFFF length but read as 0 after offset 0x5FF.
55 uint8_t dpcd_info[DPCD_READABLE_AREA];
57 MemoryRegion iomem;
60 static uint64_t dpcd_read(void *opaque, hwaddr offset, unsigned size)
62 uint8_t ret;
63 DPCDState *e = DPCD(opaque);
65 if (offset < DPCD_READABLE_AREA) {
66 ret = e->dpcd_info[offset];
67 } else {
68 qemu_log_mask(LOG_GUEST_ERROR, "dpcd: Bad offset 0x%" HWADDR_PRIX "\n",
69 offset);
70 ret = 0;
73 DPRINTF("read 0x%" PRIX8 " @0x%" HWADDR_PRIX "\n", ret, offset);
74 return ret;
77 static void dpcd_write(void *opaque, hwaddr offset, uint64_t value,
78 unsigned size)
80 DPCDState *e = DPCD(opaque);
82 DPRINTF("write 0x%" PRIX8 " @0x%" HWADDR_PRIX "\n", (uint8_t)value, offset);
84 if (offset < DPCD_READABLE_AREA) {
85 e->dpcd_info[offset] = value;
86 } else {
87 qemu_log_mask(LOG_GUEST_ERROR, "dpcd: Bad offset 0x%" HWADDR_PRIX "\n",
88 offset);
92 static const MemoryRegionOps aux_ops = {
93 .read = dpcd_read,
94 .write = dpcd_write,
95 .valid = {
96 .min_access_size = 1,
97 .max_access_size = 1,
99 .impl = {
100 .min_access_size = 1,
101 .max_access_size = 1,
105 static void dpcd_reset(DeviceState *dev)
107 DPCDState *s = DPCD(dev);
109 memset(&(s->dpcd_info), 0, sizeof(s->dpcd_info));
111 s->dpcd_info[DPCD_REVISION] = DPCD_REV_1_0;
112 s->dpcd_info[DPCD_MAX_LINK_RATE] = DPCD_5_4GBPS;
113 s->dpcd_info[DPCD_MAX_LANE_COUNT] = DPCD_FOUR_LANES;
114 s->dpcd_info[DPCD_RECEIVE_PORT0_CAP_0] = DPCD_EDID_PRESENT;
115 /* buffer size */
116 s->dpcd_info[DPCD_RECEIVE_PORT0_CAP_1] = 0xFF;
118 s->dpcd_info[DPCD_LANE0_1_STATUS] = DPCD_LANE0_CR_DONE
119 | DPCD_LANE0_CHANNEL_EQ_DONE
120 | DPCD_LANE0_SYMBOL_LOCKED
121 | DPCD_LANE1_CR_DONE
122 | DPCD_LANE1_CHANNEL_EQ_DONE
123 | DPCD_LANE1_SYMBOL_LOCKED;
124 s->dpcd_info[DPCD_LANE2_3_STATUS] = DPCD_LANE2_CR_DONE
125 | DPCD_LANE2_CHANNEL_EQ_DONE
126 | DPCD_LANE2_SYMBOL_LOCKED
127 | DPCD_LANE3_CR_DONE
128 | DPCD_LANE3_CHANNEL_EQ_DONE
129 | DPCD_LANE3_SYMBOL_LOCKED;
131 s->dpcd_info[DPCD_LANE_ALIGN_STATUS_UPDATED] = DPCD_INTERLANE_ALIGN_DONE;
132 s->dpcd_info[DPCD_SINK_STATUS] = DPCD_RECEIVE_PORT_0_STATUS;
135 static void dpcd_init(Object *obj)
137 DPCDState *s = DPCD(obj);
139 memory_region_init_io(&s->iomem, obj, &aux_ops, s, TYPE_DPCD, 0x7FFFF);
140 aux_init_mmio(AUX_SLAVE(obj), &s->iomem);
143 static const VMStateDescription vmstate_dpcd = {
144 .name = TYPE_DPCD,
145 .version_id = 0,
146 .minimum_version_id = 0,
147 .fields = (VMStateField[]) {
148 VMSTATE_UINT8_ARRAY_V(dpcd_info, DPCDState, DPCD_READABLE_AREA, 0),
149 VMSTATE_END_OF_LIST()
153 static void dpcd_class_init(ObjectClass *oc, void *data)
155 DeviceClass *dc = DEVICE_CLASS(oc);
157 dc->reset = dpcd_reset;
158 dc->vmsd = &vmstate_dpcd;
161 static const TypeInfo dpcd_info = {
162 .name = TYPE_DPCD,
163 .parent = TYPE_AUX_SLAVE,
164 .instance_size = sizeof(DPCDState),
165 .class_init = dpcd_class_init,
166 .instance_init = dpcd_init,
169 static void dpcd_register_types(void)
171 type_register_static(&dpcd_info);
174 type_init(dpcd_register_types)