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 along
17 * with this program; if not, see <http://www.gnu.org/licenses/>.
44 #define OMAP2_INTR_REV 0x34
45 #define OMAP2_GC_REV 0x34
47 static void omap_i2c_interrupts_update(struct omap_i2c_s
*s
)
49 qemu_set_irq(s
->irq
, s
->stat
& s
->mask
);
50 if ((s
->dma
>> 15) & 1) /* RDMA_EN */
51 qemu_set_irq(s
->drq
[0], (s
->stat
>> 3) & 1); /* RRDY */
52 if ((s
->dma
>> 7) & 1) /* XDMA_EN */
53 qemu_set_irq(s
->drq
[1], (s
->stat
>> 4) & 1); /* XRDY */
56 static void omap_i2c_fifo_run(struct omap_i2c_s
*s
)
60 if (!i2c_bus_busy(s
->bus
))
63 if ((s
->control
>> 2) & 1) { /* RM */
64 if ((s
->control
>> 1) & 1) { /* STP */
65 i2c_end_transfer(s
->bus
);
66 s
->control
&= ~(1 << 1); /* STP */
67 s
->count_cur
= s
->count
;
69 } else if ((s
->control
>> 9) & 1) { /* TRX */
70 while (ack
&& s
->txlen
)
71 ack
= (i2c_send(s
->bus
,
72 (s
->fifo
>> ((-- s
->txlen
) << 3)) &
74 s
->stat
|= 1 << 4; /* XRDY */
77 s
->fifo
|= i2c_recv(s
->bus
) << ((s
->rxlen
++) << 3);
78 s
->stat
|= 1 << 3; /* RRDY */
81 if ((s
->control
>> 9) & 1) { /* TRX */
82 while (ack
&& s
->count_cur
&& s
->txlen
) {
83 ack
= (i2c_send(s
->bus
,
84 (s
->fifo
>> ((-- s
->txlen
) << 3)) &
88 if (ack
&& s
->count_cur
)
89 s
->stat
|= 1 << 4; /* XRDY */
91 s
->stat
&= ~(1 << 4); /* XRDY */
93 s
->stat
|= 1 << 2; /* ARDY */
94 s
->control
&= ~(1 << 10); /* MST */
97 while (s
->count_cur
&& s
->rxlen
< 4) {
98 s
->fifo
|= i2c_recv(s
->bus
) << ((s
->rxlen
++) << 3);
102 s
->stat
|= 1 << 3; /* RRDY */
104 s
->stat
&= ~(1 << 3); /* RRDY */
107 if ((s
->control
>> 1) & 1) { /* STP */
108 i2c_end_transfer(s
->bus
);
109 s
->control
&= ~(1 << 1); /* STP */
110 s
->count_cur
= s
->count
;
113 s
->stat
|= 1 << 2; /* ARDY */
114 s
->control
&= ~(1 << 10); /* MST */
119 s
->stat
|= (!ack
) << 1; /* NACK */
121 s
->control
&= ~(1 << 1); /* STP */
124 void omap_i2c_reset(struct omap_i2c_s
*s
)
143 static uint32_t omap_i2c_read(void *opaque
, target_phys_addr_t addr
)
145 struct omap_i2c_s
*s
= (struct omap_i2c_s
*) opaque
;
146 int offset
= addr
& OMAP_MPUI_REG_MASK
;
150 case 0x00: /* I2C_REV */
151 return s
->revision
; /* REV */
153 case 0x04: /* I2C_IE */
156 case 0x08: /* I2C_STAT */
157 return s
->stat
| (i2c_bus_busy(s
->bus
) << 12);
159 case 0x0c: /* I2C_IV */
160 if (s
->revision
>= OMAP2_INTR_REV
)
162 ret
= ffs(s
->stat
& s
->mask
);
164 s
->stat
^= 1 << (ret
- 1);
165 omap_i2c_interrupts_update(s
);
168 case 0x10: /* I2C_SYSS */
169 return (s
->control
>> 15) & 1; /* I2C_EN */
171 case 0x14: /* I2C_BUF */
174 case 0x18: /* I2C_CNT */
175 return s
->count_cur
; /* DCOUNT */
177 case 0x1c: /* I2C_DATA */
179 if (s
->control
& (1 << 14)) { /* BE */
180 ret
|= ((s
->fifo
>> 0) & 0xff) << 8;
181 ret
|= ((s
->fifo
>> 8) & 0xff) << 0;
183 ret
|= ((s
->fifo
>> 8) & 0xff) << 8;
184 ret
|= ((s
->fifo
>> 0) & 0xff) << 0;
187 s
->stat
|= 1 << 15; /* SBD */
189 } else if (s
->rxlen
> 1) {
194 /* XXX: remote access (qualifier) error - what's that? */;
196 s
->stat
&= ~(1 << 3); /* RRDY */
197 if (((s
->control
>> 10) & 1) && /* MST */
198 ((~s
->control
>> 9) & 1)) { /* TRX */
199 s
->stat
|= 1 << 2; /* ARDY */
200 s
->control
&= ~(1 << 10); /* MST */
203 s
->stat
&= ~(1 << 11); /* ROVR */
204 omap_i2c_fifo_run(s
);
205 omap_i2c_interrupts_update(s
);
208 case 0x20: /* I2C_SYSC */
211 case 0x24: /* I2C_CON */
214 case 0x28: /* I2C_OA */
217 case 0x2c: /* I2C_SA */
220 case 0x30: /* I2C_PSC */
223 case 0x34: /* I2C_SCLL */
226 case 0x38: /* I2C_SCLH */
229 case 0x3c: /* I2C_SYSTEST */
230 if (s
->test
& (1 << 15)) { /* ST_EN */
234 return s
->test
& ~0x300f;
241 static void omap_i2c_write(void *opaque
, target_phys_addr_t addr
,
244 struct omap_i2c_s
*s
= (struct omap_i2c_s
*) opaque
;
245 int offset
= addr
& OMAP_MPUI_REG_MASK
;
249 case 0x00: /* I2C_REV */
250 case 0x0c: /* I2C_IV */
251 case 0x10: /* I2C_SYSS */
255 case 0x04: /* I2C_IE */
256 s
->mask
= value
& (s
->revision
< OMAP2_GC_REV
? 0x1f : 0x3f);
259 case 0x08: /* I2C_STAT */
260 if (s
->revision
< OMAP2_INTR_REV
) {
265 /* RRDY and XRDY are reset by hardware. (in all versions???) */
266 s
->stat
&= ~(value
& 0x27);
267 omap_i2c_interrupts_update(s
);
270 case 0x14: /* I2C_BUF */
271 s
->dma
= value
& 0x8080;
272 if (value
& (1 << 15)) /* RDMA_EN */
273 s
->mask
&= ~(1 << 3); /* RRDY_IE */
274 if (value
& (1 << 7)) /* XDMA_EN */
275 s
->mask
&= ~(1 << 4); /* XRDY_IE */
278 case 0x18: /* I2C_CNT */
279 s
->count
= value
; /* DCOUNT */
282 case 0x1c: /* I2C_DATA */
284 /* XXX: remote access (qualifier) error - what's that? */
289 if (s
->control
& (1 << 14)) { /* BE */
290 s
->fifo
|= ((value
>> 8) & 0xff) << 8;
291 s
->fifo
|= ((value
>> 0) & 0xff) << 0;
293 s
->fifo
|= ((value
>> 0) & 0xff) << 8;
294 s
->fifo
|= ((value
>> 8) & 0xff) << 0;
296 s
->stat
&= ~(1 << 10); /* XUDF */
298 s
->stat
&= ~(1 << 4); /* XRDY */
299 omap_i2c_fifo_run(s
);
300 omap_i2c_interrupts_update(s
);
303 case 0x20: /* I2C_SYSC */
304 if (s
->revision
< OMAP2_INTR_REV
) {
313 case 0x24: /* I2C_CON */
314 s
->control
= value
& 0xcf87;
315 if (~value
& (1 << 15)) { /* I2C_EN */
316 if (s
->revision
< OMAP2_INTR_REV
)
320 if ((value
& (1 << 15)) && !(value
& (1 << 10))) { /* MST */
321 fprintf(stderr
, "%s: I^2C slave mode not supported\n",
325 if ((value
& (1 << 15)) && value
& (1 << 8)) { /* XA */
326 fprintf(stderr
, "%s: 10-bit addressing mode not supported\n",
330 if ((value
& (1 << 15)) && value
& (1 << 0)) { /* STT */
331 nack
= !!i2c_start_transfer(s
->bus
, s
->addr
[1], /* SA */
332 (~value
>> 9) & 1); /* TRX */
333 s
->stat
|= nack
<< 1; /* NACK */
334 s
->control
&= ~(1 << 0); /* STT */
337 s
->control
&= ~(1 << 1); /* STP */
339 s
->count_cur
= s
->count
;
340 omap_i2c_fifo_run(s
);
342 omap_i2c_interrupts_update(s
);
346 case 0x28: /* I2C_OA */
347 s
->addr
[0] = value
& 0x3ff;
350 case 0x2c: /* I2C_SA */
351 s
->addr
[1] = value
& 0x3ff;
354 case 0x30: /* I2C_PSC */
358 case 0x34: /* I2C_SCLL */
362 case 0x38: /* I2C_SCLH */
366 case 0x3c: /* I2C_SYSTEST */
367 s
->test
= value
& 0xf80f;
368 if (value
& (1 << 11)) /* SBB */
369 if (s
->revision
>= OMAP2_INTR_REV
) {
371 omap_i2c_interrupts_update(s
);
373 if (value
& (1 << 15)) /* ST_EN */
374 fprintf(stderr
, "%s: System Test not supported\n", __FUNCTION__
);
383 static void omap_i2c_writeb(void *opaque
, target_phys_addr_t addr
,
386 struct omap_i2c_s
*s
= (struct omap_i2c_s
*) opaque
;
387 int offset
= addr
& OMAP_MPUI_REG_MASK
;
390 case 0x1c: /* I2C_DATA */
392 /* XXX: remote access (qualifier) error - what's that? */
397 s
->fifo
|= value
& 0xff;
398 s
->stat
&= ~(1 << 10); /* XUDF */
400 s
->stat
&= ~(1 << 4); /* XRDY */
401 omap_i2c_fifo_run(s
);
402 omap_i2c_interrupts_update(s
);
411 static CPUReadMemoryFunc
* const omap_i2c_readfn
[] = {
412 omap_badwidth_read16
,
414 omap_badwidth_read16
,
417 static CPUWriteMemoryFunc
* const omap_i2c_writefn
[] = {
418 omap_i2c_writeb
, /* Only the last fifo write can be 8 bit. */
420 omap_badwidth_write16
,
423 struct omap_i2c_s
*omap_i2c_init(target_phys_addr_t base
,
424 qemu_irq irq
, qemu_irq
*dma
, omap_clk clk
)
427 struct omap_i2c_s
*s
= (struct omap_i2c_s
*)
428 qemu_mallocz(sizeof(struct omap_i2c_s
));
430 /* TODO: set a value greater or equal to real hardware */
435 s
->bus
= i2c_init_bus(NULL
, "i2c");
438 iomemtype
= cpu_register_io_memory(omap_i2c_readfn
,
439 omap_i2c_writefn
, s
);
440 cpu_register_physical_memory(base
, 0x800, iomemtype
);
445 struct omap_i2c_s
*omap2_i2c_init(struct omap_target_agent_s
*ta
,
446 qemu_irq irq
, qemu_irq
*dma
, omap_clk fclk
, omap_clk iclk
)
449 struct omap_i2c_s
*s
= (struct omap_i2c_s
*)
450 qemu_mallocz(sizeof(struct omap_i2c_s
));
456 s
->bus
= i2c_init_bus(NULL
, "i2c");
459 iomemtype
= l4_register_io_memory(omap_i2c_readfn
,
460 omap_i2c_writefn
, s
);
461 omap_l4_attach(ta
, 0, iomemtype
);
466 i2c_bus
*omap_i2c_bus(struct omap_i2c_s
*s
)