2 * Exynos4210 I2C Bus Serial Interface Emulation
4 * Copyright (C) 2012 Samsung Electronics Co Ltd.
5 * Maksim Kozlov, <m.kozlov@samsung.com>
6 * Igor Mitsyanko, <i.mitsyanko@samsung.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, see <http://www.gnu.org/licenses/>.
23 #include "qemu/timer.h"
24 #include "hw/sysbus.h"
25 #include "hw/i2c/i2c.h"
27 #ifndef EXYNOS4_I2C_DEBUG
28 #define EXYNOS4_I2C_DEBUG 0
31 #define TYPE_EXYNOS4_I2C "exynos4210.i2c"
32 #define EXYNOS4_I2C(obj) \
33 OBJECT_CHECK(Exynos4210I2CState, (obj), TYPE_EXYNOS4_I2C)
35 /* Exynos4210 I2C memory map */
36 #define EXYNOS4_I2C_MEM_SIZE 0x14
37 #define I2CCON_ADDR 0x00 /* control register */
38 #define I2CSTAT_ADDR 0x04 /* control/status register */
39 #define I2CADD_ADDR 0x08 /* address register */
40 #define I2CDS_ADDR 0x0c /* data shift register */
41 #define I2CLC_ADDR 0x10 /* line control register */
43 #define I2CCON_ACK_GEN (1 << 7)
44 #define I2CCON_INTRS_EN (1 << 5)
45 #define I2CCON_INT_PEND (1 << 4)
47 #define EXYNOS4_I2C_MODE(reg) (((reg) >> 6) & 3)
48 #define I2C_IN_MASTER_MODE(reg) (((reg) >> 6) & 2)
49 #define I2CMODE_MASTER_Rx 0x2
50 #define I2CMODE_MASTER_Tx 0x3
51 #define I2CSTAT_LAST_BIT (1 << 0)
52 #define I2CSTAT_OUTPUT_EN (1 << 4)
53 #define I2CSTAT_START_BUSY (1 << 5)
57 #define DPRINT(fmt, args...) \
58 do { fprintf(stderr, "QEMU I2C: "fmt, ## args); } while (0)
60 static const char *exynos4_i2c_get_regname(unsigned offset
)
79 #define DPRINT(fmt, args...) do { } while (0)
82 typedef struct Exynos4210I2CState
{
83 SysBusDevice parent_obj
;
97 static inline void exynos4210_i2c_raise_interrupt(Exynos4210I2CState
*s
)
99 if (s
->i2ccon
& I2CCON_INTRS_EN
) {
100 s
->i2ccon
|= I2CCON_INT_PEND
;
101 qemu_irq_raise(s
->irq
);
105 static void exynos4210_i2c_data_receive(void *opaque
)
107 Exynos4210I2CState
*s
= (Exynos4210I2CState
*)opaque
;
110 s
->i2cstat
&= ~I2CSTAT_LAST_BIT
;
112 ret
= i2c_recv(s
->bus
);
113 if (ret
< 0 && (s
->i2ccon
& I2CCON_ACK_GEN
)) {
114 s
->i2cstat
|= I2CSTAT_LAST_BIT
; /* Data is not acknowledged */
118 exynos4210_i2c_raise_interrupt(s
);
121 static void exynos4210_i2c_data_send(void *opaque
)
123 Exynos4210I2CState
*s
= (Exynos4210I2CState
*)opaque
;
125 s
->i2cstat
&= ~I2CSTAT_LAST_BIT
;
127 if (i2c_send(s
->bus
, s
->i2cds
) < 0 && (s
->i2ccon
& I2CCON_ACK_GEN
)) {
128 s
->i2cstat
|= I2CSTAT_LAST_BIT
;
130 exynos4210_i2c_raise_interrupt(s
);
133 static uint64_t exynos4210_i2c_read(void *opaque
, hwaddr offset
,
136 Exynos4210I2CState
*s
= (Exynos4210I2CState
*)opaque
;
152 if (EXYNOS4_I2C_MODE(s
->i2cstat
) == I2CMODE_MASTER_Rx
&&
153 (s
->i2cstat
& I2CSTAT_START_BUSY
) &&
154 !(s
->i2ccon
& I2CCON_INT_PEND
)) {
155 exynos4210_i2c_data_receive(s
);
163 DPRINT("ERROR: Bad read offset 0x%x\n", (unsigned int)offset
);
167 DPRINT("read %s [0x%02x] -> 0x%02x\n", exynos4_i2c_get_regname(offset
),
168 (unsigned int)offset
, value
);
172 static void exynos4210_i2c_write(void *opaque
, hwaddr offset
,
173 uint64_t value
, unsigned size
)
175 Exynos4210I2CState
*s
= (Exynos4210I2CState
*)opaque
;
176 uint8_t v
= value
& 0xff;
178 DPRINT("write %s [0x%02x] <- 0x%02x\n", exynos4_i2c_get_regname(offset
),
179 (unsigned int)offset
, v
);
183 s
->i2ccon
= (v
& ~I2CCON_INT_PEND
) | (s
->i2ccon
& I2CCON_INT_PEND
);
184 if ((s
->i2ccon
& I2CCON_INT_PEND
) && !(v
& I2CCON_INT_PEND
)) {
185 s
->i2ccon
&= ~I2CCON_INT_PEND
;
186 qemu_irq_lower(s
->irq
);
187 if (!(s
->i2ccon
& I2CCON_INTRS_EN
)) {
188 s
->i2cstat
&= ~I2CSTAT_START_BUSY
;
191 if (s
->i2cstat
& I2CSTAT_START_BUSY
) {
193 if (EXYNOS4_I2C_MODE(s
->i2cstat
) == I2CMODE_MASTER_Tx
) {
194 exynos4210_i2c_data_send(s
);
195 } else if (EXYNOS4_I2C_MODE(s
->i2cstat
) ==
197 exynos4210_i2c_data_receive(s
);
200 s
->i2ccon
|= I2CCON_INT_PEND
;
201 qemu_irq_raise(s
->irq
);
208 (s
->i2cstat
& I2CSTAT_START_BUSY
) | (v
& ~I2CSTAT_START_BUSY
);
210 if (!(s
->i2cstat
& I2CSTAT_OUTPUT_EN
)) {
211 s
->i2cstat
&= ~I2CSTAT_START_BUSY
;
213 qemu_irq_lower(s
->irq
);
217 /* Nothing to do if in i2c slave mode */
218 if (!I2C_IN_MASTER_MODE(s
->i2cstat
)) {
222 if (v
& I2CSTAT_START_BUSY
) {
223 s
->i2cstat
&= ~I2CSTAT_LAST_BIT
;
224 s
->i2cstat
|= I2CSTAT_START_BUSY
; /* Line is busy */
227 /* Generate start bit and send slave address */
228 if (i2c_start_transfer(s
->bus
, s
->i2cds
>> 1, s
->i2cds
& 0x1) &&
229 (s
->i2ccon
& I2CCON_ACK_GEN
)) {
230 s
->i2cstat
|= I2CSTAT_LAST_BIT
;
231 } else if (EXYNOS4_I2C_MODE(s
->i2cstat
) == I2CMODE_MASTER_Rx
) {
232 exynos4210_i2c_data_receive(s
);
234 exynos4210_i2c_raise_interrupt(s
);
236 i2c_end_transfer(s
->bus
);
237 if (!(s
->i2ccon
& I2CCON_INT_PEND
)) {
238 s
->i2cstat
&= ~I2CSTAT_START_BUSY
;
244 if ((s
->i2cstat
& I2CSTAT_OUTPUT_EN
) == 0) {
249 if (s
->i2cstat
& I2CSTAT_OUTPUT_EN
) {
252 if (EXYNOS4_I2C_MODE(s
->i2cstat
) == I2CMODE_MASTER_Tx
&&
253 (s
->i2cstat
& I2CSTAT_START_BUSY
) &&
254 !(s
->i2ccon
& I2CCON_INT_PEND
)) {
255 exynos4210_i2c_data_send(s
);
263 DPRINT("ERROR: Bad write offset 0x%x\n", (unsigned int)offset
);
268 static const MemoryRegionOps exynos4210_i2c_ops
= {
269 .read
= exynos4210_i2c_read
,
270 .write
= exynos4210_i2c_write
,
271 .endianness
= DEVICE_NATIVE_ENDIAN
,
274 static const VMStateDescription exynos4210_i2c_vmstate
= {
275 .name
= "exynos4210.i2c",
277 .minimum_version_id
= 1,
278 .fields
= (VMStateField
[]) {
279 VMSTATE_UINT8(i2ccon
, Exynos4210I2CState
),
280 VMSTATE_UINT8(i2cstat
, Exynos4210I2CState
),
281 VMSTATE_UINT8(i2cds
, Exynos4210I2CState
),
282 VMSTATE_UINT8(i2cadd
, Exynos4210I2CState
),
283 VMSTATE_UINT8(i2clc
, Exynos4210I2CState
),
284 VMSTATE_BOOL(scl_free
, Exynos4210I2CState
),
285 VMSTATE_END_OF_LIST()
289 static void exynos4210_i2c_reset(DeviceState
*d
)
291 Exynos4210I2CState
*s
= EXYNOS4_I2C(d
);
301 static int exynos4210_i2c_realize(SysBusDevice
*sbd
)
303 DeviceState
*dev
= DEVICE(sbd
);
304 Exynos4210I2CState
*s
= EXYNOS4_I2C(dev
);
306 memory_region_init_io(&s
->iomem
, OBJECT(s
), &exynos4210_i2c_ops
, s
,
307 TYPE_EXYNOS4_I2C
, EXYNOS4_I2C_MEM_SIZE
);
308 sysbus_init_mmio(sbd
, &s
->iomem
);
309 sysbus_init_irq(sbd
, &s
->irq
);
310 s
->bus
= i2c_init_bus(dev
, "i2c");
314 static void exynos4210_i2c_class_init(ObjectClass
*klass
, void *data
)
316 DeviceClass
*dc
= DEVICE_CLASS(klass
);
317 SysBusDeviceClass
*sbdc
= SYS_BUS_DEVICE_CLASS(klass
);
319 dc
->vmsd
= &exynos4210_i2c_vmstate
;
320 dc
->reset
= exynos4210_i2c_reset
;
321 sbdc
->init
= exynos4210_i2c_realize
;
324 static const TypeInfo exynos4210_i2c_type_info
= {
325 .name
= TYPE_EXYNOS4_I2C
,
326 .parent
= TYPE_SYS_BUS_DEVICE
,
327 .instance_size
= sizeof(Exynos4210I2CState
),
328 .class_init
= exynos4210_i2c_class_init
,
331 static void exynos4210_i2c_register_types(void)
333 type_register_static(&exynos4210_i2c_type_info
);
336 type_init(exynos4210_i2c_register_types
)