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,
26 target_phys_addr_t base
;
48 #define OMAP2_INTR_REV 0x34
49 #define OMAP2_GC_REV 0x34
51 static void omap_i2c_interrupts_update(struct omap_i2c_s
*s
)
53 qemu_set_irq(s
->irq
, s
->stat
& s
->mask
);
54 if ((s
->dma
>> 15) & 1) /* RDMA_EN */
55 qemu_set_irq(s
->drq
[0], (s
->stat
>> 3) & 1); /* RRDY */
56 if ((s
->dma
>> 7) & 1) /* XDMA_EN */
57 qemu_set_irq(s
->drq
[1], (s
->stat
>> 4) & 1); /* XRDY */
60 /* These are only stubs now. */
61 static void omap_i2c_event(i2c_slave
*i2c
, enum i2c_event event
)
63 struct omap_i2c_s
*s
= (struct omap_i2c_s
*) i2c
;
65 if ((~s
->control
>> 15) & 1) /* I2C_EN */
71 s
->stat
|= 1 << 9; /* AAS */
74 s
->stat
|= 1 << 2; /* ARDY */
77 s
->stat
|= 1 << 1; /* NACK */
81 omap_i2c_interrupts_update(s
);
84 static int omap_i2c_rx(i2c_slave
*i2c
)
86 struct omap_i2c_s
*s
= (struct omap_i2c_s
*) i2c
;
89 if ((~s
->control
>> 15) & 1) /* I2C_EN */
93 ret
= s
->fifo
>> ((-- s
->txlen
) << 3) & 0xff;
95 s
->stat
|= 1 << 10; /* XUDF */
96 s
->stat
|= 1 << 4; /* XRDY */
98 omap_i2c_interrupts_update(s
);
102 static int omap_i2c_tx(i2c_slave
*i2c
, uint8_t data
)
104 struct omap_i2c_s
*s
= (struct omap_i2c_s
*) i2c
;
106 if ((~s
->control
>> 15) & 1) /* I2C_EN */
110 s
->fifo
|= data
<< ((s
->rxlen
++) << 3);
112 s
->stat
|= 1 << 11; /* ROVR */
113 s
->stat
|= 1 << 3; /* RRDY */
115 omap_i2c_interrupts_update(s
);
119 static void omap_i2c_fifo_run(struct omap_i2c_s
*s
)
123 if (!i2c_bus_busy(s
->bus
))
126 if ((s
->control
>> 2) & 1) { /* RM */
127 if ((s
->control
>> 1) & 1) { /* STP */
128 i2c_end_transfer(s
->bus
);
129 s
->control
&= ~(1 << 1); /* STP */
130 s
->count_cur
= s
->count
;
132 } else if ((s
->control
>> 9) & 1) { /* TRX */
133 while (ack
&& s
->txlen
)
134 ack
= (i2c_send(s
->bus
,
135 (s
->fifo
>> ((-- s
->txlen
) << 3)) &
137 s
->stat
|= 1 << 4; /* XRDY */
140 s
->fifo
|= i2c_recv(s
->bus
) << ((s
->rxlen
++) << 3);
141 s
->stat
|= 1 << 3; /* RRDY */
144 if ((s
->control
>> 9) & 1) { /* TRX */
145 while (ack
&& s
->count_cur
&& s
->txlen
) {
146 ack
= (i2c_send(s
->bus
,
147 (s
->fifo
>> ((-- s
->txlen
) << 3)) &
151 if (ack
&& s
->count_cur
)
152 s
->stat
|= 1 << 4; /* XRDY */
154 s
->stat
&= ~(1 << 4); /* XRDY */
156 s
->stat
|= 1 << 2; /* ARDY */
157 s
->control
&= ~(1 << 10); /* MST */
160 while (s
->count_cur
&& s
->rxlen
< 4) {
161 s
->fifo
|= i2c_recv(s
->bus
) << ((s
->rxlen
++) << 3);
165 s
->stat
|= 1 << 3; /* RRDY */
167 s
->stat
&= ~(1 << 3); /* RRDY */
170 if ((s
->control
>> 1) & 1) { /* STP */
171 i2c_end_transfer(s
->bus
);
172 s
->control
&= ~(1 << 1); /* STP */
173 s
->count_cur
= s
->count
;
176 s
->stat
|= 1 << 2; /* ARDY */
177 s
->control
&= ~(1 << 10); /* MST */
182 s
->stat
|= (!ack
) << 1; /* NACK */
184 s
->control
&= ~(1 << 1); /* STP */
187 void omap_i2c_reset(struct omap_i2c_s
*s
)
206 static uint32_t omap_i2c_read(void *opaque
, target_phys_addr_t addr
)
208 struct omap_i2c_s
*s
= (struct omap_i2c_s
*) opaque
;
209 int offset
= addr
& OMAP_MPUI_REG_MASK
;
213 case 0x00: /* I2C_REV */
214 return s
->revision
; /* REV */
216 case 0x04: /* I2C_IE */
219 case 0x08: /* I2C_STAT */
220 return s
->stat
| (i2c_bus_busy(s
->bus
) << 12);
222 case 0x0c: /* I2C_IV */
223 if (s
->revision
>= OMAP2_INTR_REV
)
225 ret
= ffs(s
->stat
& s
->mask
);
227 s
->stat
^= 1 << (ret
- 1);
228 omap_i2c_interrupts_update(s
);
231 case 0x10: /* I2C_SYSS */
232 return (s
->control
>> 15) & 1; /* I2C_EN */
234 case 0x14: /* I2C_BUF */
237 case 0x18: /* I2C_CNT */
238 return s
->count_cur
; /* DCOUNT */
240 case 0x1c: /* I2C_DATA */
242 if (s
->control
& (1 << 14)) { /* BE */
243 ret
|= ((s
->fifo
>> 0) & 0xff) << 8;
244 ret
|= ((s
->fifo
>> 8) & 0xff) << 0;
246 ret
|= ((s
->fifo
>> 8) & 0xff) << 8;
247 ret
|= ((s
->fifo
>> 0) & 0xff) << 0;
250 s
->stat
|= 1 << 15; /* SBD */
252 } else if (s
->rxlen
> 1) {
257 /* XXX: remote access (qualifier) error - what's that? */;
259 s
->stat
&= ~(1 << 3); /* RRDY */
260 if (((s
->control
>> 10) & 1) && /* MST */
261 ((~s
->control
>> 9) & 1)) { /* TRX */
262 s
->stat
|= 1 << 2; /* ARDY */
263 s
->control
&= ~(1 << 10); /* MST */
266 s
->stat
&= ~(1 << 11); /* ROVR */
267 omap_i2c_fifo_run(s
);
268 omap_i2c_interrupts_update(s
);
271 case 0x20: /* I2C_SYSC */
274 case 0x24: /* I2C_CON */
277 case 0x28: /* I2C_OA */
280 case 0x2c: /* I2C_SA */
283 case 0x30: /* I2C_PSC */
286 case 0x34: /* I2C_SCLL */
289 case 0x38: /* I2C_SCLH */
292 case 0x3c: /* I2C_SYSTEST */
293 if (s
->test
& (1 << 15)) { /* ST_EN */
297 return s
->test
& ~0x300f;
304 static void omap_i2c_write(void *opaque
, target_phys_addr_t addr
,
307 struct omap_i2c_s
*s
= (struct omap_i2c_s
*) opaque
;
308 int offset
= addr
& OMAP_MPUI_REG_MASK
;
312 case 0x00: /* I2C_REV */
313 case 0x0c: /* I2C_IV */
314 case 0x10: /* I2C_SYSS */
318 case 0x04: /* I2C_IE */
319 s
->mask
= value
& (s
->revision
< OMAP2_GC_REV
? 0x1f : 0x3f);
322 case 0x08: /* I2C_STAT */
323 if (s
->revision
< OMAP2_INTR_REV
) {
328 /* RRDY and XRDY are reset by hardware. (in all versions???) */
329 s
->stat
&= ~(value
& 0x27);
330 omap_i2c_interrupts_update(s
);
333 case 0x14: /* I2C_BUF */
334 s
->dma
= value
& 0x8080;
335 if (value
& (1 << 15)) /* RDMA_EN */
336 s
->mask
&= ~(1 << 3); /* RRDY_IE */
337 if (value
& (1 << 7)) /* XDMA_EN */
338 s
->mask
&= ~(1 << 4); /* XRDY_IE */
341 case 0x18: /* I2C_CNT */
342 s
->count
= value
; /* DCOUNT */
345 case 0x1c: /* I2C_DATA */
347 /* XXX: remote access (qualifier) error - what's that? */
352 if (s
->control
& (1 << 14)) { /* BE */
353 s
->fifo
|= ((value
>> 8) & 0xff) << 8;
354 s
->fifo
|= ((value
>> 0) & 0xff) << 0;
356 s
->fifo
|= ((value
>> 0) & 0xff) << 8;
357 s
->fifo
|= ((value
>> 8) & 0xff) << 0;
359 s
->stat
&= ~(1 << 10); /* XUDF */
361 s
->stat
&= ~(1 << 4); /* XRDY */
362 omap_i2c_fifo_run(s
);
363 omap_i2c_interrupts_update(s
);
366 case 0x20: /* I2C_SYSC */
367 if (s
->revision
< OMAP2_INTR_REV
) {
376 case 0x24: /* I2C_CON */
377 s
->control
= value
& 0xcf87;
378 if (~value
& (1 << 15)) { /* I2C_EN */
379 if (s
->revision
< OMAP2_INTR_REV
)
383 if ((value
& (1 << 15)) && !(value
& (1 << 10))) { /* MST */
384 fprintf(stderr
, "%s: I^2C slave mode not supported\n",
388 if ((value
& (1 << 15)) && value
& (1 << 8)) { /* XA */
389 fprintf(stderr
, "%s: 10-bit addressing mode not supported\n",
393 if ((value
& (1 << 15)) && value
& (1 << 0)) { /* STT */
394 nack
= !!i2c_start_transfer(s
->bus
, s
->addr
[1], /* SA */
395 (~value
>> 9) & 1); /* TRX */
396 s
->stat
|= nack
<< 1; /* NACK */
397 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 */
499 s
->slave
.event
= omap_i2c_event
;
500 s
->slave
.recv
= omap_i2c_rx
;
501 s
->slave
.send
= omap_i2c_tx
;
502 s
->bus
= i2c_init_bus();
505 iomemtype
= cpu_register_io_memory(0, omap_i2c_readfn
,
506 omap_i2c_writefn
, s
);
507 cpu_register_physical_memory(s
->base
, 0x800, iomemtype
);
512 struct omap_i2c_s
*omap2_i2c_init(struct omap_target_agent_s
*ta
,
513 qemu_irq irq
, qemu_irq
*dma
, omap_clk fclk
, omap_clk iclk
)
516 struct omap_i2c_s
*s
= (struct omap_i2c_s
*)
517 qemu_mallocz(sizeof(struct omap_i2c_s
));
523 s
->slave
.event
= omap_i2c_event
;
524 s
->slave
.recv
= omap_i2c_rx
;
525 s
->slave
.send
= omap_i2c_tx
;
526 s
->bus
= i2c_init_bus();
529 iomemtype
= l4_register_io_memory(0, omap_i2c_readfn
,
530 omap_i2c_writefn
, s
);
531 s
->base
= omap_l4_attach(ta
, 0, iomemtype
);
536 i2c_bus
*omap_i2c_bus(struct omap_i2c_s
*s
)