ui/cocoa: Subclass NSApplication so we can implement sendEvent
[qemu/ar7.git] / hw / i2c / imx_i2c.c
blob6da5224e2e60fe9ccf40da17ad1070eec2efb89f
1 /*
2 * i.MX I2C Bus Serial Interface Emulation
4 * Copyright (C) 2013 Jean-Christophe Dubois. <jcd@tribudubois.net>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
22 #include "hw/i2c/imx_i2c.h"
23 #include "hw/i2c/i2c.h"
24 #include "qemu/log.h"
26 #ifndef DEBUG_IMX_I2C
27 #define DEBUG_IMX_I2C 0
28 #endif
30 #define DPRINTF(fmt, args...) \
31 do { \
32 if (DEBUG_IMX_I2C) { \
33 fprintf(stderr, "[%s]%s: " fmt , TYPE_IMX_I2C, \
34 __func__, ##args); \
35 } \
36 } while (0)
38 static const char *imx_i2c_get_regname(unsigned offset)
40 switch (offset) {
41 case IADR_ADDR:
42 return "IADR";
43 case IFDR_ADDR:
44 return "IFDR";
45 case I2CR_ADDR:
46 return "I2CR";
47 case I2SR_ADDR:
48 return "I2SR";
49 case I2DR_ADDR:
50 return "I2DR";
51 default:
52 return "[?]";
56 static inline bool imx_i2c_is_enabled(IMXI2CState *s)
58 return s->i2cr & I2CR_IEN;
61 static inline bool imx_i2c_interrupt_is_enabled(IMXI2CState *s)
63 return s->i2cr & I2CR_IIEN;
66 static inline bool imx_i2c_is_master(IMXI2CState *s)
68 return s->i2cr & I2CR_MSTA;
71 static void imx_i2c_reset(DeviceState *dev)
73 IMXI2CState *s = IMX_I2C(dev);
75 if (s->address != ADDR_RESET) {
76 i2c_end_transfer(s->bus);
79 s->address = ADDR_RESET;
80 s->iadr = IADR_RESET;
81 s->ifdr = IFDR_RESET;
82 s->i2cr = I2CR_RESET;
83 s->i2sr = I2SR_RESET;
84 s->i2dr_read = I2DR_RESET;
85 s->i2dr_write = I2DR_RESET;
88 static inline void imx_i2c_raise_interrupt(IMXI2CState *s)
91 * raise an interrupt if the device is enabled and it is configured
92 * to generate some interrupts.
94 if (imx_i2c_is_enabled(s) && imx_i2c_interrupt_is_enabled(s)) {
95 s->i2sr |= I2SR_IIF;
96 qemu_irq_raise(s->irq);
100 static uint64_t imx_i2c_read(void *opaque, hwaddr offset,
101 unsigned size)
103 uint16_t value;
104 IMXI2CState *s = IMX_I2C(opaque);
106 switch (offset) {
107 case IADR_ADDR:
108 value = s->iadr;
109 break;
110 case IFDR_ADDR:
111 value = s->ifdr;
112 break;
113 case I2CR_ADDR:
114 value = s->i2cr;
115 break;
116 case I2SR_ADDR:
117 value = s->i2sr;
118 break;
119 case I2DR_ADDR:
120 value = s->i2dr_read;
122 if (imx_i2c_is_master(s)) {
123 uint8_t ret = 0xff;
125 if (s->address == ADDR_RESET) {
126 /* something is wrong as the address is not set */
127 qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Trying to read "
128 "without specifying the slave address\n",
129 TYPE_IMX_I2C, __func__);
130 } else if (s->i2cr & I2CR_MTX) {
131 qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Trying to read "
132 "but MTX is set\n", TYPE_IMX_I2C, __func__);
133 } else {
134 /* get the next byte */
135 ret = i2c_recv(s->bus);
136 imx_i2c_raise_interrupt(s);
139 s->i2dr_read = ret;
140 } else {
141 qemu_log_mask(LOG_UNIMP, "[%s]%s: slave mode not implemented\n",
142 TYPE_IMX_I2C, __func__);
144 break;
145 default:
146 qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Bad address at offset 0x%"
147 HWADDR_PRIx "\n", TYPE_IMX_I2C, __func__, offset);
148 value = 0;
149 break;
152 DPRINTF("read %s [0x%" HWADDR_PRIx "] -> 0x%02x\n",
153 imx_i2c_get_regname(offset), offset, value);
155 return (uint64_t)value;
158 static void imx_i2c_write(void *opaque, hwaddr offset,
159 uint64_t value, unsigned size)
161 IMXI2CState *s = IMX_I2C(opaque);
163 DPRINTF("write %s [0x%" HWADDR_PRIx "] <- 0x%02x\n",
164 imx_i2c_get_regname(offset), offset, (int)value);
166 value &= 0xff;
168 switch (offset) {
169 case IADR_ADDR:
170 s->iadr = value & IADR_MASK;
171 /* i2c_set_slave_address(s->bus, (uint8_t)s->iadr); */
172 break;
173 case IFDR_ADDR:
174 s->ifdr = value & IFDR_MASK;
175 break;
176 case I2CR_ADDR:
177 if (imx_i2c_is_enabled(s) && ((value & I2CR_IEN) == 0)) {
178 /* This is a soft reset. IADR is preserved during soft resets */
179 uint16_t iadr = s->iadr;
180 imx_i2c_reset(DEVICE(s));
181 s->iadr = iadr;
182 } else { /* normal write */
183 s->i2cr = value & I2CR_MASK;
185 if (imx_i2c_is_master(s)) {
186 /* set the bus to busy */
187 s->i2sr |= I2SR_IBB;
188 } else { /* slave mode */
189 /* bus is not busy anymore */
190 s->i2sr &= ~I2SR_IBB;
193 * if we unset the master mode then it ends the ongoing
194 * transfer if any
196 if (s->address != ADDR_RESET) {
197 i2c_end_transfer(s->bus);
198 s->address = ADDR_RESET;
202 if (s->i2cr & I2CR_RSTA) { /* Restart */
203 /* if this is a restart then it ends the ongoing transfer */
204 if (s->address != ADDR_RESET) {
205 i2c_end_transfer(s->bus);
206 s->address = ADDR_RESET;
207 s->i2cr &= ~I2CR_RSTA;
211 break;
212 case I2SR_ADDR:
214 * if the user writes 0 to IIF then lower the interrupt and
215 * reset the bit
217 if ((s->i2sr & I2SR_IIF) && !(value & I2SR_IIF)) {
218 s->i2sr &= ~I2SR_IIF;
219 qemu_irq_lower(s->irq);
223 * if the user writes 0 to IAL, reset the bit
225 if ((s->i2sr & I2SR_IAL) && !(value & I2SR_IAL)) {
226 s->i2sr &= ~I2SR_IAL;
229 break;
230 case I2DR_ADDR:
231 /* if the device is not enabled, nothing to do */
232 if (!imx_i2c_is_enabled(s)) {
233 break;
236 s->i2dr_write = value & I2DR_MASK;
238 if (imx_i2c_is_master(s)) {
239 /* If this is the first write cycle then it is the slave addr */
240 if (s->address == ADDR_RESET) {
241 if (i2c_start_transfer(s->bus, extract32(s->i2dr_write, 1, 7),
242 extract32(s->i2dr_write, 0, 1))) {
243 /* if non zero is returned, the address is not valid */
244 s->i2sr |= I2SR_RXAK;
245 } else {
246 s->address = s->i2dr_write;
247 s->i2sr &= ~I2SR_RXAK;
248 imx_i2c_raise_interrupt(s);
250 } else { /* This is a normal data write */
251 if (i2c_send(s->bus, s->i2dr_write)) {
252 /* if the target return non zero then end the transfer */
253 s->i2sr |= I2SR_RXAK;
254 s->address = ADDR_RESET;
255 i2c_end_transfer(s->bus);
256 } else {
257 s->i2sr &= ~I2SR_RXAK;
258 imx_i2c_raise_interrupt(s);
261 } else {
262 qemu_log_mask(LOG_UNIMP, "[%s]%s: slave mode not implemented\n",
263 TYPE_IMX_I2C, __func__);
265 break;
266 default:
267 qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Bad address at offset 0x%"
268 HWADDR_PRIx "\n", TYPE_IMX_I2C, __func__, offset);
269 break;
273 static const MemoryRegionOps imx_i2c_ops = {
274 .read = imx_i2c_read,
275 .write = imx_i2c_write,
276 .valid.min_access_size = 1,
277 .valid.max_access_size = 2,
278 .endianness = DEVICE_NATIVE_ENDIAN,
281 static const VMStateDescription imx_i2c_vmstate = {
282 .name = TYPE_IMX_I2C,
283 .version_id = 1,
284 .minimum_version_id = 1,
285 .fields = (VMStateField[]) {
286 VMSTATE_UINT16(address, IMXI2CState),
287 VMSTATE_UINT16(iadr, IMXI2CState),
288 VMSTATE_UINT16(ifdr, IMXI2CState),
289 VMSTATE_UINT16(i2cr, IMXI2CState),
290 VMSTATE_UINT16(i2sr, IMXI2CState),
291 VMSTATE_UINT16(i2dr_read, IMXI2CState),
292 VMSTATE_UINT16(i2dr_write, IMXI2CState),
293 VMSTATE_END_OF_LIST()
297 static void imx_i2c_realize(DeviceState *dev, Error **errp)
299 IMXI2CState *s = IMX_I2C(dev);
301 memory_region_init_io(&s->iomem, OBJECT(s), &imx_i2c_ops, s, TYPE_IMX_I2C,
302 IMX_I2C_MEM_SIZE);
303 sysbus_init_mmio(SYS_BUS_DEVICE(dev), &s->iomem);
304 sysbus_init_irq(SYS_BUS_DEVICE(dev), &s->irq);
305 s->bus = i2c_init_bus(DEVICE(dev), NULL);
308 static void imx_i2c_class_init(ObjectClass *klass, void *data)
310 DeviceClass *dc = DEVICE_CLASS(klass);
312 dc->vmsd = &imx_i2c_vmstate;
313 dc->reset = imx_i2c_reset;
314 dc->realize = imx_i2c_realize;
315 dc->desc = "i.MX I2C Controller";
318 static const TypeInfo imx_i2c_type_info = {
319 .name = TYPE_IMX_I2C,
320 .parent = TYPE_SYS_BUS_DEVICE,
321 .instance_size = sizeof(IMXI2CState),
322 .class_init = imx_i2c_class_init,
325 static void imx_i2c_register_types(void)
327 type_register_static(&imx_i2c_type_info);
330 type_init(imx_i2c_register_types)