3 * Samsung S3C24XX i2c peripheral emulation
5 * Copyright 2006, 2007, 2008 Daniel Silverstone, Ben Dooks
8 * Copyright 2010, 2013 Stefan Weil
10 * This file is under the terms of the GNU General Public License Version 2.
13 #include "qemu/osdep.h"
16 #include "exec/address-spaces.h" /* get_system_memory */
17 #include "hw/i2c/i2c.h"
21 /* i2c controller registers */
22 #define S3C_IICCON (0x00)
23 #define S3C_IICSTAT (0x04)
24 #define S3C_IICADD (0x08)
25 #define S3C_IICDS (0x0C)
26 #define S3C_IICLC (0x10)
28 #define S3C_IICCON_ACKEN (1<<7)
29 #define S3C_IICCON_TXDIV_16 (0<<6)
30 #define S3C_IICCON_TXDIV_512 (1<<6)
31 #define S3C_IICCON_IRQEN (1<<5)
32 #define S3C_IICCON_IRQPEND (1<<4)
33 #define S3C_IICCON_SCALE(x) ((x)&15)
34 #define S3C_IICCON_SCALEMASK (0xf)
36 #define S3C_IICSTAT_MASTER_RX (2<<6)
37 #define S3C_IICSTAT_MASTER_TX (3<<6)
38 #define S3C_IICSTAT_SLAVE_RX (0<<6)
39 #define S3C_IICSTAT_SLAVE_TX (1<<6)
40 #define S3C_IICSTAT_MODEMASK (3<<6)
42 #define S3C_IICSTAT_START (1<<5)
43 #define S3C_IICSTAT_BUSBUSY (1<<5)
44 #define S3C_IICSTAT_TXRXEN (1<<4)
45 #define S3C_IICSTAT_ARBITR (1<<3)
46 #define S3C_IICSTAT_ASSLAVE (1<<2)
47 #define S3C_IICSTAT_ADDR0 (1<<1)
48 #define S3C_IICSTAT_LASTBIT (1<<0)
50 #define S3C_IICLC_SDA_DELAY0 (0 << 0)
51 #define S3C_IICLC_SDA_DELAY5 (1 << 0)
52 #define S3C_IICLC_SDA_DELAY10 (2 << 0)
53 #define S3C_IICLC_SDA_DELAY15 (3 << 0)
54 #define S3C_IICLC_SDA_DELAY_MASK (3 << 0)
56 #define S3C_IICLC_FILTER_ON (1<<2)
58 /* IIC-bus serial interface */
59 struct s3c24xx_i2c_state_s
{
72 static void s3c24xx_i2c_irq(struct s3c24xx_i2c_state_s
*s
)
76 if (s
->control
& (1 << 5)) {
77 qemu_irq_raise(s
->irq
);
81 static void s3c24xx_i2c_reset(struct s3c24xx_i2c_state_s
*s
)
90 static void s3c_master_work(void *opaque
)
92 struct s3c24xx_i2c_state_s
*s
= opaque
;
93 int start
= 0, stop
= 0, ack
= 1;
95 if (s
->control
& (1 << 4)) /* Interrupt pending */
97 if ((s
->status
& 0x90) != 0x90) /* Master */
100 stop
= ~s
->status
& (1 << 5);
101 if (s
->newstart
&& s
->status
& (1 << 5)) { /* START */
112 ack
= !i2c_start_transfer(s
->bus
, s
->data
>> 1, (~s
->status
>> 6) & 1);
114 i2c_end_transfer(s
->bus
);
115 } else if (s
->status
& (1 << 6)) {
116 ack
= !i2c_send(s
->bus
, s
->data
);
118 s
->data
= i2c_recv(s
->bus
);
120 if (!(s
->control
& (1 << 7))) /* ACK */
124 if (!(s
->status
& (1 << 5))) {
138 static uint64_t s3c24xx_i2c_read(void *opaque
, hwaddr addr
,
141 struct s3c24xx_i2c_state_s
*s
= opaque
;
148 return s
->status
& ~(1 << 5); /* Busy signal */
157 printf("%s: Bad register 0x" TARGET_FMT_plx
"\n", __func__
, addr
);
163 static void s3c24xx_i2c_write(void *opaque
, hwaddr addr
,
164 uint64_t value
, unsigned size
)
166 struct s3c24xx_i2c_state_s
*s
= opaque
;
170 s
->control
= (s
->control
| 0xef) & value
;
171 if (s
->busy
|| ((s
->control
& (1<<4)) == 0))
177 s
->status
|= value
& 0xf0;
178 if (s
->status
& (1 << 5))
184 s
->addy
= value
& 0x7f;
188 s
->data
= value
& 0xff;
193 printf("%s: Bad register 0x" TARGET_FMT_plx
"\n", __func__
, addr
);
198 static const MemoryRegionOps s3c24xx_i2c_ops
= {
199 .read
= s3c24xx_i2c_read
,
200 .write
= s3c24xx_i2c_write
,
201 .endianness
= DEVICE_NATIVE_ENDIAN
,
203 .min_access_size
= 1,
208 static void s3c24xx_i2c_save(QEMUFile
*f
, void *opaque
)
210 struct s3c24xx_i2c_state_s
*s
= opaque
;
211 qemu_put_8s(f
, &s
->control
);
212 qemu_put_8s(f
, &s
->status
);
213 qemu_put_8s(f
, &s
->data
);
214 qemu_put_8s(f
, &s
->addy
);
216 qemu_put_be32(f
, s
->busy
);
217 qemu_put_be32(f
, s
->newstart
);
221 static int s3c24xx_i2c_load(QEMUFile
*f
, void *opaque
, int version_id
)
223 struct s3c24xx_i2c_state_s
*s
= opaque
;
224 qemu_get_8s(f
, &s
->control
);
225 qemu_get_8s(f
, &s
->status
);
226 qemu_get_8s(f
, &s
->data
);
227 qemu_get_8s(f
, &s
->addy
);
229 s
->busy
= qemu_get_be32(f
);
230 s
->newstart
= qemu_get_be32(f
);
236 struct s3c24xx_i2c_state_s
*s3c24xx_iic_init(qemu_irq irq
,
239 MemoryRegion
*system_memory
= get_system_memory();
240 struct s3c24xx_i2c_state_s
*s
= g_malloc0(sizeof(struct s3c24xx_i2c_state_s
));
243 s
->bus
= i2c_init_bus(NULL
, "i2c");
245 s3c24xx_i2c_reset(s
);
247 memory_region_init_io(&s
->mmio
, OBJECT(s
),
248 &s3c24xx_i2c_ops
, s
, "s3c24xx-i2c", 0x1000000);
249 memory_region_add_subregion(system_memory
, base_addr
, &s
->mmio
);
251 register_savevm(NULL
, "s3c24xx_i2c", 0, 0, s3c24xx_i2c_save
, s3c24xx_i2c_load
, s
);
256 I2CBus
*s3c24xx_i2c_bus(struct s3c24xx_i2c_state_s
*s
)