2 * Copyright (C) 2014 Freescale Semiconductor, Inc. All rights reserved.
4 * Author: Amit Tomar, <Amit.Tomar@freescale.com>
7 * This file is derived from IMX I2C controller,
8 * by Jean-Christophe DUBOIS .
10 * Thanks to Scott Wood and Alexander Graf for their kind help on this.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License, version 2 or later,
14 * as published by the Free Software Foundation.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
21 #include "hw/i2c/i2c.h"
24 #include "qemu/module.h"
25 #include "hw/sysbus.h"
26 #include "migration/vmstate.h"
28 /* #define DEBUG_I2C */
31 #define DPRINTF(fmt, ...) \
32 do { fprintf(stderr, "mpc_i2c[%s]: " fmt, __func__, ## __VA_ARGS__); \
35 #define DPRINTF(fmt, ...) do {} while (0)
38 #define TYPE_MPC_I2C "mpc-i2c"
39 #define MPC_I2C(obj) \
40 OBJECT_CHECK(MPCI2CState, (obj), TYPE_MPC_I2C)
42 #define MPC_I2C_ADR 0x00
43 #define MPC_I2C_FDR 0x04
44 #define MPC_I2C_CR 0x08
45 #define MPC_I2C_SR 0x0c
46 #define MPC_I2C_DR 0x10
47 #define MPC_I2C_DFSRR 0x14
49 #define CCR_MEN (1 << 7)
50 #define CCR_MIEN (1 << 6)
51 #define CCR_MSTA (1 << 5)
52 #define CCR_MTX (1 << 4)
53 #define CCR_TXAK (1 << 3)
54 #define CCR_RSTA (1 << 2)
55 #define CCR_BCST (1 << 0)
57 #define CSR_MCF (1 << 7)
58 #define CSR_MAAS (1 << 6)
59 #define CSR_MBB (1 << 5)
60 #define CSR_MAL (1 << 4)
61 #define CSR_SRW (1 << 2)
62 #define CSR_MIF (1 << 1)
63 #define CSR_RXAK (1 << 0)
65 #define CADR_MASK 0xFE
66 #define CFDR_MASK 0x3F
71 #define CYCLE_RESET 0xFF
73 typedef struct MPCI2CState
{
74 SysBusDevice parent_obj
;
89 static bool mpc_i2c_is_enabled(MPCI2CState
*s
)
91 return s
->cr
& CCR_MEN
;
94 static bool mpc_i2c_is_master(MPCI2CState
*s
)
96 return s
->cr
& CCR_MSTA
;
99 static bool mpc_i2c_direction_is_tx(MPCI2CState
*s
)
101 return s
->cr
& CCR_MTX
;
104 static bool mpc_i2c_irq_pending(MPCI2CState
*s
)
106 return s
->sr
& CSR_MIF
;
109 static bool mpc_i2c_irq_is_enabled(MPCI2CState
*s
)
111 return s
->cr
& CCR_MIEN
;
114 static void mpc_i2c_reset(DeviceState
*dev
)
116 MPCI2CState
*i2c
= MPC_I2C(dev
);
126 static void mpc_i2c_irq(MPCI2CState
*s
)
128 bool irq_active
= false;
130 if (mpc_i2c_is_enabled(s
) && mpc_i2c_irq_is_enabled(s
)
131 && mpc_i2c_irq_pending(s
)) {
136 qemu_irq_raise(s
->irq
);
138 qemu_irq_lower(s
->irq
);
142 static void mpc_i2c_soft_reset(MPCI2CState
*s
)
144 /* This is a soft reset. ADR is preserved during soft resets */
145 uint8_t adr
= s
->adr
;
146 mpc_i2c_reset(DEVICE(s
));
150 static void mpc_i2c_address_send(MPCI2CState
*s
)
152 /* if returns non zero slave address is not right */
153 if (i2c_start_transfer(s
->bus
, s
->dr
>> 1, s
->dr
& (0x01))) {
158 s
->sr
|= CSR_MCF
; /* Set after Byte Transfer is completed */
159 s
->sr
|= CSR_MIF
; /* Set after Byte Transfer is completed */
164 static void mpc_i2c_data_send(MPCI2CState
*s
)
166 if (i2c_send(s
->bus
, s
->dr
)) {
167 /* End of transfer */
169 i2c_end_transfer(s
->bus
);
172 s
->sr
|= CSR_MCF
; /* Set after Byte Transfer is completed */
173 s
->sr
|= CSR_MIF
; /* Set after Byte Transfer is completed */
178 static void mpc_i2c_data_recive(MPCI2CState
*s
)
181 /* get the next byte */
182 ret
= i2c_recv(s
->bus
);
184 s
->sr
|= CSR_MCF
; /* Set after Byte Transfer is completed */
185 s
->sr
|= CSR_MIF
; /* Set after Byte Transfer is completed */
188 DPRINTF("read failed for device");
194 static uint64_t mpc_i2c_read(void *opaque
, hwaddr addr
, unsigned size
)
196 MPCI2CState
*s
= opaque
;
214 if (mpc_i2c_is_master(s
)) { /* master mode */
215 if (mpc_i2c_direction_is_tx(s
)) {
216 DPRINTF("MTX is set not in recv mode\n");
218 mpc_i2c_data_recive(s
);
224 DPRINTF("ERROR: Bad read addr 0x%x\n", (unsigned int)addr
);
228 DPRINTF("%s: addr " TARGET_FMT_plx
" %02" PRIx32
"\n", __func__
,
230 return (uint64_t)value
;
233 static void mpc_i2c_write(void *opaque
, hwaddr addr
,
234 uint64_t value
, unsigned size
)
236 MPCI2CState
*s
= opaque
;
238 DPRINTF("%s: addr " TARGET_FMT_plx
" val %08" PRIx64
"\n", __func__
,
242 s
->adr
= value
& CADR_MASK
;
245 s
->fdr
= value
& CFDR_MASK
;
248 if (mpc_i2c_is_enabled(s
) && ((value
& CCR_MEN
) == 0)) {
249 mpc_i2c_soft_reset(s
);
253 s
->cr
= value
& CCR_MASK
;
254 if (mpc_i2c_is_master(s
)) { /* master mode */
255 /* set the bus to busy after master is set as per RM */
258 /* bus is not busy anymore */
260 /* Reset the address for fresh write/read cycle */
261 if (s
->address
!= CYCLE_RESET
) {
262 i2c_end_transfer(s
->bus
);
263 s
->address
= CYCLE_RESET
;
266 /* For restart end the onging transfer */
267 if (s
->cr
& CCR_RSTA
) {
268 if (s
->address
!= CYCLE_RESET
) {
269 s
->address
= CYCLE_RESET
;
270 i2c_end_transfer(s
->bus
);
276 s
->sr
= value
& CSR_MASK
;
277 /* Lower the interrupt */
278 if (!(s
->sr
& CSR_MIF
) || !(s
->sr
& CSR_MAL
)) {
283 /* if the device is not enabled, nothing to do */
284 if (!mpc_i2c_is_enabled(s
)) {
287 s
->dr
= value
& CDR_MASK
;
288 if (mpc_i2c_is_master(s
)) { /* master mode */
289 if (s
->address
== CYCLE_RESET
) {
290 mpc_i2c_address_send(s
);
292 mpc_i2c_data_send(s
);
300 DPRINTF("ERROR: Bad write addr 0x%x\n", (unsigned int)addr
);
305 static const MemoryRegionOps i2c_ops
= {
306 .read
= mpc_i2c_read
,
307 .write
= mpc_i2c_write
,
308 .valid
.max_access_size
= 1,
309 .endianness
= DEVICE_NATIVE_ENDIAN
,
312 static const VMStateDescription mpc_i2c_vmstate
= {
313 .name
= TYPE_MPC_I2C
,
315 .minimum_version_id
= 1,
316 .fields
= (VMStateField
[]) {
317 VMSTATE_UINT8(address
, MPCI2CState
),
318 VMSTATE_UINT8(adr
, MPCI2CState
),
319 VMSTATE_UINT8(fdr
, MPCI2CState
),
320 VMSTATE_UINT8(cr
, MPCI2CState
),
321 VMSTATE_UINT8(sr
, MPCI2CState
),
322 VMSTATE_UINT8(dr
, MPCI2CState
),
323 VMSTATE_UINT8(dfssr
, MPCI2CState
),
324 VMSTATE_END_OF_LIST()
328 static void mpc_i2c_realize(DeviceState
*dev
, Error
**errp
)
330 MPCI2CState
*i2c
= MPC_I2C(dev
);
331 sysbus_init_irq(SYS_BUS_DEVICE(dev
), &i2c
->irq
);
332 memory_region_init_io(&i2c
->iomem
, OBJECT(i2c
), &i2c_ops
, i2c
,
334 sysbus_init_mmio(SYS_BUS_DEVICE(dev
), &i2c
->iomem
);
335 i2c
->bus
= i2c_init_bus(dev
, "i2c");
338 static void mpc_i2c_class_init(ObjectClass
*klass
, void *data
)
340 DeviceClass
*dc
= DEVICE_CLASS(klass
);
342 dc
->vmsd
= &mpc_i2c_vmstate
;
343 dc
->reset
= mpc_i2c_reset
;
344 dc
->realize
= mpc_i2c_realize
;
345 dc
->desc
= "MPC I2C Controller";
348 static const TypeInfo mpc_i2c_type_info
= {
349 .name
= TYPE_MPC_I2C
,
350 .parent
= TYPE_SYS_BUS_DEVICE
,
351 .instance_size
= sizeof(MPCI2CState
),
352 .class_init
= mpc_i2c_class_init
,
355 static void mpc_i2c_register_types(void)
357 type_register_static(&mpc_i2c_type_info
);
360 type_init(mpc_i2c_register_types
)