s390x/tcg: initialize machine check queue
[qemu.git] / hw / misc / auxbus.c
blob118274504449c230d7b5243e6d1e6e9fe5493465
1 /*
2 * auxbus.c
4 * Copyright 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 an implementation of the AUX bus for VESA Display Port v1.1a.
29 #include "qemu/osdep.h"
30 #include "qemu/log.h"
31 #include "hw/misc/auxbus.h"
32 #include "hw/i2c/i2c.h"
33 #include "monitor/monitor.h"
35 #ifndef DEBUG_AUX
36 #define DEBUG_AUX 0
37 #endif
39 #define DPRINTF(fmt, ...) do { \
40 if (DEBUG_AUX) { \
41 qemu_log("aux: " fmt , ## __VA_ARGS__); \
42 } \
43 } while (0);
45 #define TYPE_AUXTOI2C "aux-to-i2c-bridge"
46 #define AUXTOI2C(obj) OBJECT_CHECK(AUXTOI2CState, (obj), TYPE_AUXTOI2C)
48 static void aux_slave_dev_print(Monitor *mon, DeviceState *dev, int indent);
49 static inline I2CBus *aux_bridge_get_i2c_bus(AUXTOI2CState *bridge);
51 /* aux-bus implementation (internal not public) */
52 static void aux_bus_class_init(ObjectClass *klass, void *data)
54 BusClass *k = BUS_CLASS(klass);
56 /* AUXSlave has an MMIO so we need to change the way we print information
57 * in monitor.
59 k->print_dev = aux_slave_dev_print;
62 AUXBus *aux_init_bus(DeviceState *parent, const char *name)
64 AUXBus *bus;
66 bus = AUX_BUS(qbus_create(TYPE_AUX_BUS, parent, name));
67 bus->bridge = AUXTOI2C(qdev_create(BUS(bus), TYPE_AUXTOI2C));
69 /* Memory related. */
70 bus->aux_io = g_malloc(sizeof(*bus->aux_io));
71 memory_region_init(bus->aux_io, OBJECT(bus), "aux-io", (1 << 20));
72 address_space_init(&bus->aux_addr_space, bus->aux_io, "aux-io");
73 return bus;
76 static void aux_bus_map_device(AUXBus *bus, AUXSlave *dev, hwaddr addr)
78 memory_region_add_subregion(bus->aux_io, addr, dev->mmio);
81 static bool aux_bus_is_bridge(AUXBus *bus, DeviceState *dev)
83 return (dev == DEVICE(bus->bridge));
86 I2CBus *aux_get_i2c_bus(AUXBus *bus)
88 return aux_bridge_get_i2c_bus(bus->bridge);
91 AUXReply aux_request(AUXBus *bus, AUXCommand cmd, uint32_t address,
92 uint8_t len, uint8_t *data)
94 AUXReply ret = AUX_NACK;
95 I2CBus *i2c_bus = aux_get_i2c_bus(bus);
96 size_t i;
97 bool is_write = false;
99 DPRINTF("request at address 0x%" PRIX32 ", command %u, len %u\n", address,
100 cmd, len);
102 switch (cmd) {
104 * Forward the request on the AUX bus..
106 case WRITE_AUX:
107 case READ_AUX:
108 is_write = cmd == READ_AUX ? false : true;
109 for (i = 0; i < len; i++) {
110 if (!address_space_rw(&bus->aux_addr_space, address++,
111 MEMTXATTRS_UNSPECIFIED, data++, 1,
112 is_write)) {
113 ret = AUX_I2C_ACK;
114 } else {
115 ret = AUX_NACK;
116 break;
119 break;
121 * Classic I2C transactions..
123 case READ_I2C:
124 case WRITE_I2C:
125 is_write = cmd == READ_I2C ? false : true;
126 if (i2c_bus_busy(i2c_bus)) {
127 i2c_end_transfer(i2c_bus);
130 if (i2c_start_transfer(i2c_bus, address, is_write)) {
131 ret = AUX_I2C_NACK;
132 break;
135 ret = AUX_I2C_ACK;
136 while (len > 0) {
137 if (i2c_send_recv(i2c_bus, data++, is_write) < 0) {
138 ret = AUX_I2C_NACK;
139 break;
141 len--;
143 i2c_end_transfer(i2c_bus);
144 break;
146 * I2C MOT transactions.
148 * Here we send a start when:
149 * - We didn't start transaction yet.
150 * - We had a READ and we do a WRITE.
151 * - We changed the address.
153 case WRITE_I2C_MOT:
154 case READ_I2C_MOT:
155 is_write = cmd == READ_I2C_MOT ? false : true;
156 ret = AUX_I2C_NACK;
157 if (!i2c_bus_busy(i2c_bus)) {
159 * No transactions started..
161 if (i2c_start_transfer(i2c_bus, address, is_write)) {
162 break;
164 } else if ((address != bus->last_i2c_address) ||
165 (bus->last_transaction != cmd)) {
167 * Transaction started but we need to restart..
169 i2c_end_transfer(i2c_bus);
170 if (i2c_start_transfer(i2c_bus, address, is_write)) {
171 break;
175 bus->last_transaction = cmd;
176 bus->last_i2c_address = address;
177 while (len > 0) {
178 if (i2c_send_recv(i2c_bus, data++, is_write) < 0) {
179 i2c_end_transfer(i2c_bus);
180 break;
182 len--;
184 if (len == 0) {
185 ret = AUX_I2C_ACK;
187 break;
188 default:
189 DPRINTF("Not implemented!\n");
190 return AUX_NACK;
193 DPRINTF("reply: %u\n", ret);
194 return ret;
197 static const TypeInfo aux_bus_info = {
198 .name = TYPE_AUX_BUS,
199 .parent = TYPE_BUS,
200 .instance_size = sizeof(AUXBus),
201 .class_init = aux_bus_class_init
204 /* aux-i2c implementation (internal not public) */
205 struct AUXTOI2CState {
206 /*< private >*/
207 DeviceState parent_obj;
209 /*< public >*/
210 I2CBus *i2c_bus;
213 static void aux_bridge_class_init(ObjectClass *oc, void *data)
215 DeviceClass *dc = DEVICE_CLASS(oc);
217 /* This device is private and is created only once for each
218 * aux-bus in aux_init_bus(..). So don't allow the user to add one.
220 dc->user_creatable = false;
223 static void aux_bridge_init(Object *obj)
225 AUXTOI2CState *s = AUXTOI2C(obj);
227 s->i2c_bus = i2c_init_bus(DEVICE(obj), "aux-i2c");
230 static inline I2CBus *aux_bridge_get_i2c_bus(AUXTOI2CState *bridge)
232 return bridge->i2c_bus;
235 static const TypeInfo aux_to_i2c_type_info = {
236 .name = TYPE_AUXTOI2C,
237 .parent = TYPE_DEVICE,
238 .class_init = aux_bridge_class_init,
239 .instance_size = sizeof(AUXTOI2CState),
240 .instance_init = aux_bridge_init
243 /* aux-slave implementation */
244 static void aux_slave_dev_print(Monitor *mon, DeviceState *dev, int indent)
246 AUXBus *bus = AUX_BUS(qdev_get_parent_bus(dev));
247 AUXSlave *s;
249 /* Don't print anything if the device is I2C "bridge". */
250 if (aux_bus_is_bridge(bus, dev)) {
251 return;
254 s = AUX_SLAVE(dev);
256 monitor_printf(mon, "%*smemory " TARGET_FMT_plx "/" TARGET_FMT_plx "\n",
257 indent, "",
258 object_property_get_uint(OBJECT(s->mmio), "addr", NULL),
259 memory_region_size(s->mmio));
262 DeviceState *aux_create_slave(AUXBus *bus, const char *type, uint32_t addr)
264 DeviceState *dev;
266 dev = DEVICE(object_new(type));
267 assert(dev);
268 qdev_set_parent_bus(dev, &bus->qbus);
269 qdev_init_nofail(dev);
270 aux_bus_map_device(AUX_BUS(qdev_get_parent_bus(dev)), AUX_SLAVE(dev), addr);
271 return dev;
274 void aux_init_mmio(AUXSlave *aux_slave, MemoryRegion *mmio)
276 assert(!aux_slave->mmio);
277 aux_slave->mmio = mmio;
280 static void aux_slave_class_init(ObjectClass *klass, void *data)
282 DeviceClass *k = DEVICE_CLASS(klass);
284 set_bit(DEVICE_CATEGORY_MISC, k->categories);
285 k->bus_type = TYPE_AUX_BUS;
288 static const TypeInfo aux_slave_type_info = {
289 .name = TYPE_AUX_SLAVE,
290 .parent = TYPE_DEVICE,
291 .instance_size = sizeof(AUXSlave),
292 .abstract = true,
293 .class_init = aux_slave_class_init,
296 static void aux_register_types(void)
298 type_register_static(&aux_bus_info);
299 type_register_static(&aux_slave_type_info);
300 type_register_static(&aux_to_i2c_type_info);
303 type_init(aux_register_types)