2 * TI OMAP on-chip I2C controller. Only "new I2C" mode supported.
4 * Copyright (C) 2007 Andrzej Zaborowski <balrog@zabor.org>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
47 #define OMAP2_INTR_REV 0x34
48 #define OMAP2_GC_REV 0x34
50 static void omap_i2c_interrupts_update(struct omap_i2c_s
*s
)
52 qemu_set_irq(s
->irq
, s
->stat
& s
->mask
);
53 if ((s
->dma
>> 15) & 1) /* RDMA_EN */
54 qemu_set_irq(s
->drq
[0], (s
->stat
>> 3) & 1); /* RRDY */
55 if ((s
->dma
>> 7) & 1) /* XDMA_EN */
56 qemu_set_irq(s
->drq
[1], (s
->stat
>> 4) & 1); /* XRDY */
59 /* These are only stubs now. */
60 static void omap_i2c_event(i2c_slave
*i2c
, enum i2c_event event
)
62 struct omap_i2c_s
*s
= (struct omap_i2c_s
*) i2c
;
64 if ((~s
->control
>> 15) & 1) /* I2C_EN */
70 s
->stat
|= 1 << 9; /* AAS */
73 s
->stat
|= 1 << 2; /* ARDY */
76 s
->stat
|= 1 << 1; /* NACK */
80 omap_i2c_interrupts_update(s
);
83 static int omap_i2c_rx(i2c_slave
*i2c
)
85 struct omap_i2c_s
*s
= (struct omap_i2c_s
*) i2c
;
88 if ((~s
->control
>> 15) & 1) /* I2C_EN */
92 ret
= s
->fifo
>> ((-- s
->txlen
) << 3) & 0xff;
94 s
->stat
|= 1 << 10; /* XUDF */
95 s
->stat
|= 1 << 4; /* XRDY */
97 omap_i2c_interrupts_update(s
);
101 static int omap_i2c_tx(i2c_slave
*i2c
, uint8_t data
)
103 struct omap_i2c_s
*s
= (struct omap_i2c_s
*) i2c
;
105 if ((~s
->control
>> 15) & 1) /* I2C_EN */
109 s
->fifo
|= data
<< ((s
->rxlen
++) << 3);
111 s
->stat
|= 1 << 11; /* ROVR */
112 s
->stat
|= 1 << 3; /* RRDY */
114 omap_i2c_interrupts_update(s
);
118 static void omap_i2c_fifo_run(struct omap_i2c_s
*s
)
122 if (!i2c_bus_busy(s
->bus
))
125 if ((s
->control
>> 2) & 1) { /* RM */
126 if ((s
->control
>> 1) & 1) { /* STP */
127 i2c_end_transfer(s
->bus
);
128 s
->control
&= ~(1 << 1); /* STP */
129 s
->count_cur
= s
->count
;
131 } else if ((s
->control
>> 9) & 1) { /* TRX */
132 while (ack
&& s
->txlen
)
133 ack
= (i2c_send(s
->bus
,
134 (s
->fifo
>> ((-- s
->txlen
) << 3)) &
136 s
->stat
|= 1 << 4; /* XRDY */
139 s
->fifo
|= i2c_recv(s
->bus
) << ((s
->rxlen
++) << 3);
140 s
->stat
|= 1 << 3; /* RRDY */
143 if ((s
->control
>> 9) & 1) { /* TRX */
144 while (ack
&& s
->count_cur
&& s
->txlen
) {
145 ack
= (i2c_send(s
->bus
,
146 (s
->fifo
>> ((-- s
->txlen
) << 3)) &
150 if (ack
&& s
->count_cur
)
151 s
->stat
|= 1 << 4; /* XRDY */
153 s
->stat
&= ~(1 << 4); /* XRDY */
155 s
->stat
|= 1 << 2; /* ARDY */
156 s
->control
&= ~(1 << 10); /* MST */
159 while (s
->count_cur
&& s
->rxlen
< 4) {
160 s
->fifo
|= i2c_recv(s
->bus
) << ((s
->rxlen
++) << 3);
164 s
->stat
|= 1 << 3; /* RRDY */
166 s
->stat
&= ~(1 << 3); /* RRDY */
169 if ((s
->control
>> 1) & 1) { /* STP */
170 i2c_end_transfer(s
->bus
);
171 s
->control
&= ~(1 << 1); /* STP */
172 s
->count_cur
= s
->count
;
175 s
->stat
|= 1 << 2; /* ARDY */
176 s
->control
&= ~(1 << 10); /* MST */
181 s
->stat
|= (!ack
) << 1; /* NACK */
183 s
->control
&= ~(1 << 1); /* STP */
186 void omap_i2c_reset(struct omap_i2c_s
*s
)
205 static uint32_t omap_i2c_read(void *opaque
, target_phys_addr_t addr
)
207 struct omap_i2c_s
*s
= (struct omap_i2c_s
*) opaque
;
208 int offset
= addr
& OMAP_MPUI_REG_MASK
;
212 case 0x00: /* I2C_REV */
213 return s
->revision
; /* REV */
215 case 0x04: /* I2C_IE */
218 case 0x08: /* I2C_STAT */
219 return s
->stat
| (i2c_bus_busy(s
->bus
) << 12);
221 case 0x0c: /* I2C_IV */
222 if (s
->revision
>= OMAP2_INTR_REV
)
224 ret
= ffs(s
->stat
& s
->mask
);
226 s
->stat
^= 1 << (ret
- 1);
227 omap_i2c_interrupts_update(s
);
230 case 0x10: /* I2C_SYSS */
231 return (s
->control
>> 15) & 1; /* I2C_EN */
233 case 0x14: /* I2C_BUF */
236 case 0x18: /* I2C_CNT */
237 return s
->count_cur
; /* DCOUNT */
239 case 0x1c: /* I2C_DATA */
241 if (s
->control
& (1 << 14)) { /* BE */
242 ret
|= ((s
->fifo
>> 0) & 0xff) << 8;
243 ret
|= ((s
->fifo
>> 8) & 0xff) << 0;
245 ret
|= ((s
->fifo
>> 8) & 0xff) << 8;
246 ret
|= ((s
->fifo
>> 0) & 0xff) << 0;
249 s
->stat
|= 1 << 15; /* SBD */
251 } else if (s
->rxlen
> 1) {
256 /* XXX: remote access (qualifier) error - what's that? */;
258 s
->stat
&= ~(1 << 3); /* RRDY */
259 if (((s
->control
>> 10) & 1) && /* MST */
260 ((~s
->control
>> 9) & 1)) { /* TRX */
261 s
->stat
|= 1 << 2; /* ARDY */
262 s
->control
&= ~(1 << 10); /* MST */
265 s
->stat
&= ~(1 << 11); /* ROVR */
266 omap_i2c_fifo_run(s
);
267 omap_i2c_interrupts_update(s
);
270 case 0x20: /* I2C_SYSC */
273 case 0x24: /* I2C_CON */
276 case 0x28: /* I2C_OA */
279 case 0x2c: /* I2C_SA */
282 case 0x30: /* I2C_PSC */
285 case 0x34: /* I2C_SCLL */
288 case 0x38: /* I2C_SCLH */
291 case 0x3c: /* I2C_SYSTEST */
292 if (s
->test
& (1 << 15)) { /* ST_EN */
296 return s
->test
& ~0x300f;
303 static void omap_i2c_write(void *opaque
, target_phys_addr_t addr
,
306 struct omap_i2c_s
*s
= (struct omap_i2c_s
*) opaque
;
307 int offset
= addr
& OMAP_MPUI_REG_MASK
;
311 case 0x00: /* I2C_REV */
312 case 0x0c: /* I2C_IV */
313 case 0x10: /* I2C_SYSS */
317 case 0x04: /* I2C_IE */
318 s
->mask
= value
& (s
->revision
< OMAP2_GC_REV
? 0x1f : 0x3f);
321 case 0x08: /* I2C_STAT */
322 if (s
->revision
< OMAP2_INTR_REV
) {
327 /* RRDY and XRDY are reset by hardware. (in all versions???) */
328 s
->stat
&= ~(value
& 0x27);
329 omap_i2c_interrupts_update(s
);
332 case 0x14: /* I2C_BUF */
333 s
->dma
= value
& 0x8080;
334 if (value
& (1 << 15)) /* RDMA_EN */
335 s
->mask
&= ~(1 << 3); /* RRDY_IE */
336 if (value
& (1 << 7)) /* XDMA_EN */
337 s
->mask
&= ~(1 << 4); /* XRDY_IE */
340 case 0x18: /* I2C_CNT */
341 s
->count
= value
; /* DCOUNT */
344 case 0x1c: /* I2C_DATA */
346 /* XXX: remote access (qualifier) error - what's that? */
351 if (s
->control
& (1 << 14)) { /* BE */
352 s
->fifo
|= ((value
>> 8) & 0xff) << 8;
353 s
->fifo
|= ((value
>> 0) & 0xff) << 0;
355 s
->fifo
|= ((value
>> 0) & 0xff) << 8;
356 s
->fifo
|= ((value
>> 8) & 0xff) << 0;
358 s
->stat
&= ~(1 << 10); /* XUDF */
360 s
->stat
&= ~(1 << 4); /* XRDY */
361 omap_i2c_fifo_run(s
);
362 omap_i2c_interrupts_update(s
);
365 case 0x20: /* I2C_SYSC */
366 if (s
->revision
< OMAP2_INTR_REV
) {
375 case 0x24: /* I2C_CON */
376 s
->control
= value
& 0xcf87;
377 if (~value
& (1 << 15)) { /* I2C_EN */
378 if (s
->revision
< OMAP2_INTR_REV
)
382 if ((value
& (1 << 15)) && !(value
& (1 << 10))) { /* MST */
383 fprintf(stderr
, "%s: I^2C slave mode not supported\n",
387 if ((value
& (1 << 15)) && value
& (1 << 8)) { /* XA */
388 fprintf(stderr
, "%s: 10-bit addressing mode not supported\n",
392 if ((value
& (1 << 15)) && value
& (1 << 0)) { /* STT */
393 nack
= !!i2c_start_transfer(s
->bus
, s
->addr
[1], /* SA */
394 (~value
>> 9) & 1); /* TRX */
395 s
->stat
|= nack
<< 1; /* NACK */
396 s
->control
&= ~(1 << 0); /* STT */
399 s
->control
&= ~(1 << 1); /* STP */
401 s
->count_cur
= s
->count
;
402 omap_i2c_fifo_run(s
);
404 omap_i2c_interrupts_update(s
);
408 case 0x28: /* I2C_OA */
409 s
->addr
[0] = value
& 0x3ff;
410 i2c_set_slave_address(&s
->slave
, value
& 0x7f);
413 case 0x2c: /* I2C_SA */
414 s
->addr
[1] = value
& 0x3ff;
417 case 0x30: /* I2C_PSC */
421 case 0x34: /* I2C_SCLL */
425 case 0x38: /* I2C_SCLH */
429 case 0x3c: /* I2C_SYSTEST */
430 s
->test
= value
& 0xf80f;
431 if (value
& (1 << 11)) /* SBB */
432 if (s
->revision
>= OMAP2_INTR_REV
) {
434 omap_i2c_interrupts_update(s
);
436 if (value
& (1 << 15)) /* ST_EN */
437 fprintf(stderr
, "%s: System Test not supported\n", __FUNCTION__
);
446 static void omap_i2c_writeb(void *opaque
, target_phys_addr_t addr
,
449 struct omap_i2c_s
*s
= (struct omap_i2c_s
*) opaque
;
450 int offset
= addr
& OMAP_MPUI_REG_MASK
;
453 case 0x1c: /* I2C_DATA */
455 /* XXX: remote access (qualifier) error - what's that? */
460 s
->fifo
|= value
& 0xff;
461 s
->stat
&= ~(1 << 10); /* XUDF */
463 s
->stat
&= ~(1 << 4); /* XRDY */
464 omap_i2c_fifo_run(s
);
465 omap_i2c_interrupts_update(s
);
474 static CPUReadMemoryFunc
*omap_i2c_readfn
[] = {
475 omap_badwidth_read16
,
477 omap_badwidth_read16
,
480 static CPUWriteMemoryFunc
*omap_i2c_writefn
[] = {
481 omap_i2c_writeb
, /* Only the last fifo write can be 8 bit. */
483 omap_badwidth_write16
,
486 struct omap_i2c_s
*omap_i2c_init(target_phys_addr_t base
,
487 qemu_irq irq
, qemu_irq
*dma
, omap_clk clk
)
490 struct omap_i2c_s
*s
= (struct omap_i2c_s
*)
491 qemu_mallocz(sizeof(struct omap_i2c_s
));
493 /* TODO: set a value greater or equal to real hardware */
498 s
->slave
.event
= omap_i2c_event
;
499 s
->slave
.recv
= omap_i2c_rx
;
500 s
->slave
.send
= omap_i2c_tx
;
501 s
->bus
= i2c_init_bus();
504 iomemtype
= cpu_register_io_memory(0, omap_i2c_readfn
,
505 omap_i2c_writefn
, s
);
506 cpu_register_physical_memory(base
, 0x800, iomemtype
);
511 struct omap_i2c_s
*omap2_i2c_init(struct omap_target_agent_s
*ta
,
512 qemu_irq irq
, qemu_irq
*dma
, omap_clk fclk
, omap_clk iclk
)
515 struct omap_i2c_s
*s
= (struct omap_i2c_s
*)
516 qemu_mallocz(sizeof(struct omap_i2c_s
));
522 s
->slave
.event
= omap_i2c_event
;
523 s
->slave
.recv
= omap_i2c_rx
;
524 s
->slave
.send
= omap_i2c_tx
;
525 s
->bus
= i2c_init_bus();
528 iomemtype
= l4_register_io_memory(0, omap_i2c_readfn
,
529 omap_i2c_writefn
, s
);
530 omap_l4_attach(ta
, 0, iomemtype
);
535 i2c_bus
*omap_i2c_bus(struct omap_i2c_s
*s
)