2 * TI OMAP processor's Multichannel SPI emulation.
4 * Copyright (C) 2007-2009 Nokia Corporation
6 * Original code for OMAP2 by Andrzej Zaborowski <andrew@openedhand.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 or
11 * (at your option) any later version of the License.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include "qemu/osdep.h"
27 #include "hw/arm/omap.h"
29 /* Multichannel SPI */
42 struct omap_mcspi_ch_s
{
45 uint32_t (*txrx
)(void *opaque
, uint32_t, int);
57 static inline void omap_mcspi_interrupt_update(struct omap_mcspi_s
*s
)
59 qemu_set_irq(s
->irq
, s
->irqst
& s
->irqen
);
62 static inline void omap_mcspi_dmarequest_update(struct omap_mcspi_ch_s
*ch
)
64 qemu_set_irq(ch
->txdrq
,
65 (ch
->control
& 1) && /* EN */
66 (ch
->config
& (1 << 14)) && /* DMAW */
67 (ch
->status
& (1 << 1)) && /* TXS */
68 ((ch
->config
>> 12) & 3) != 1); /* TRM */
69 qemu_set_irq(ch
->rxdrq
,
70 (ch
->control
& 1) && /* EN */
71 (ch
->config
& (1 << 15)) && /* DMAW */
72 (ch
->status
& (1 << 0)) && /* RXS */
73 ((ch
->config
>> 12) & 3) != 2); /* TRM */
76 static void omap_mcspi_transfer_run(struct omap_mcspi_s
*s
, int chnum
)
78 struct omap_mcspi_ch_s
*ch
= s
->ch
+ chnum
;
80 if (!(ch
->control
& 1)) /* EN */
82 if ((ch
->status
& (1 << 0)) && /* RXS */
83 ((ch
->config
>> 12) & 3) != 2 && /* TRM */
84 !(ch
->config
& (1 << 19))) /* TURBO */
86 if ((ch
->status
& (1 << 1)) && /* TXS */
87 ((ch
->config
>> 12) & 3) != 1) /* TRM */
90 if (!(s
->control
& 1) || /* SINGLE */
91 (ch
->config
& (1 << 20))) { /* FORCE */
93 ch
->rx
= ch
->txrx(ch
->opaque
, ch
->tx
, /* WL */
94 1 + (0x1f & (ch
->config
>> 7)));
98 ch
->status
|= 1 << 2; /* EOT */
99 ch
->status
|= 1 << 1; /* TXS */
100 if (((ch
->config
>> 12) & 3) != 2) /* TRM */
101 ch
->status
|= 1 << 0; /* RXS */
104 if ((ch
->status
& (1 << 0)) && /* RXS */
105 ((ch
->config
>> 12) & 3) != 2 && /* TRM */
106 !(ch
->config
& (1 << 19))) /* TURBO */
107 s
->irqst
|= 1 << (2 + 4 * chnum
); /* RX_FULL */
108 if ((ch
->status
& (1 << 1)) && /* TXS */
109 ((ch
->config
>> 12) & 3) != 1) /* TRM */
110 s
->irqst
|= 1 << (0 + 4 * chnum
); /* TX_EMPTY */
111 omap_mcspi_interrupt_update(s
);
112 omap_mcspi_dmarequest_update(ch
);
115 void omap_mcspi_reset(struct omap_mcspi_s
*s
)
126 for (ch
= 0; ch
< 4; ch
++) {
127 s
->ch
[ch
].config
= 0x060000;
128 s
->ch
[ch
].status
= 2; /* TXS */
129 s
->ch
[ch
].control
= 0;
131 omap_mcspi_dmarequest_update(s
->ch
+ ch
);
134 omap_mcspi_interrupt_update(s
);
137 static uint64_t omap_mcspi_read(void *opaque
, hwaddr addr
, unsigned size
)
139 struct omap_mcspi_s
*s
= opaque
;
144 return omap_badwidth_read32(opaque
, addr
);
148 case 0x00: /* MCSPI_REVISION */
151 case 0x10: /* MCSPI_SYSCONFIG */
154 case 0x14: /* MCSPI_SYSSTATUS */
155 return 1; /* RESETDONE */
157 case 0x18: /* MCSPI_IRQSTATUS */
160 case 0x1c: /* MCSPI_IRQENABLE */
163 case 0x20: /* MCSPI_WAKEUPENABLE */
166 case 0x24: /* MCSPI_SYST */
169 case 0x28: /* MCSPI_MODULCTRL */
178 case 0x2c: /* MCSPI_CHCONF */
179 return s
->ch
[ch
].config
;
187 case 0x30: /* MCSPI_CHSTAT */
188 return s
->ch
[ch
].status
;
196 case 0x34: /* MCSPI_CHCTRL */
197 return s
->ch
[ch
].control
;
205 case 0x38: /* MCSPI_TX */
214 case 0x3c: /* MCSPI_RX */
215 s
->ch
[ch
].status
&= ~(1 << 0); /* RXS */
217 omap_mcspi_transfer_run(s
, ch
);
225 static void omap_mcspi_write(void *opaque
, hwaddr addr
,
226 uint64_t value
, unsigned size
)
228 struct omap_mcspi_s
*s
= opaque
;
232 omap_badwidth_write32(opaque
, addr
, value
);
237 case 0x00: /* MCSPI_REVISION */
238 case 0x14: /* MCSPI_SYSSTATUS */
239 case 0x30: /* MCSPI_CHSTAT0 */
240 case 0x3c: /* MCSPI_RX0 */
241 case 0x44: /* MCSPI_CHSTAT1 */
242 case 0x50: /* MCSPI_RX1 */
243 case 0x58: /* MCSPI_CHSTAT2 */
244 case 0x64: /* MCSPI_RX2 */
245 case 0x6c: /* MCSPI_CHSTAT3 */
246 case 0x78: /* MCSPI_RX3 */
250 case 0x10: /* MCSPI_SYSCONFIG */
251 if (value
& (1 << 1)) /* SOFTRESET */
253 s
->sysconfig
= value
& 0x31d;
256 case 0x18: /* MCSPI_IRQSTATUS */
257 if (!((s
->control
& (1 << 3)) && (s
->systest
& (1 << 11)))) {
259 omap_mcspi_interrupt_update(s
);
263 case 0x1c: /* MCSPI_IRQENABLE */
264 s
->irqen
= value
& 0x1777f;
265 omap_mcspi_interrupt_update(s
);
268 case 0x20: /* MCSPI_WAKEUPENABLE */
272 case 0x24: /* MCSPI_SYST */
273 if (s
->control
& (1 << 3)) /* SYSTEM_TEST */
274 if (value
& (1 << 11)) { /* SSB */
276 omap_mcspi_interrupt_update(s
);
278 s
->systest
= value
& 0xfff;
281 case 0x28: /* MCSPI_MODULCTRL */
282 if (value
& (1 << 3)) /* SYSTEM_TEST */
283 if (s
->systest
& (1 << 11)) { /* SSB */
285 omap_mcspi_interrupt_update(s
);
287 s
->control
= value
& 0xf;
296 case 0x2c: /* MCSPI_CHCONF */
297 if ((value
^ s
->ch
[ch
].config
) & (3 << 14)) /* DMAR | DMAW */
298 omap_mcspi_dmarequest_update(s
->ch
+ ch
);
299 if (((value
>> 12) & 3) == 3) { /* TRM */
300 qemu_log_mask(LOG_GUEST_ERROR
, "%s: invalid TRM value (3)\n",
303 if (((value
>> 7) & 0x1f) < 3) { /* WL */
304 qemu_log_mask(LOG_GUEST_ERROR
,
305 "%s: invalid WL value (%" PRIx64
")\n",
306 __func__
, (value
>> 7) & 0x1f);
308 s
->ch
[ch
].config
= value
& 0x7fffff;
317 case 0x34: /* MCSPI_CHCTRL */
318 if (value
& ~s
->ch
[ch
].control
& 1) { /* EN */
319 s
->ch
[ch
].control
|= 1;
320 omap_mcspi_transfer_run(s
, ch
);
322 s
->ch
[ch
].control
= value
& 1;
331 case 0x38: /* MCSPI_TX */
332 s
->ch
[ch
].tx
= value
;
333 s
->ch
[ch
].status
&= ~(1 << 1); /* TXS */
334 omap_mcspi_transfer_run(s
, ch
);
343 static const MemoryRegionOps omap_mcspi_ops
= {
344 .read
= omap_mcspi_read
,
345 .write
= omap_mcspi_write
,
346 .endianness
= DEVICE_NATIVE_ENDIAN
,
349 struct omap_mcspi_s
*omap_mcspi_init(struct omap_target_agent_s
*ta
, int chnum
,
350 qemu_irq irq
, qemu_irq
*drq
, omap_clk fclk
, omap_clk iclk
)
352 struct omap_mcspi_s
*s
= g_new0(struct omap_mcspi_s
, 1);
353 struct omap_mcspi_ch_s
*ch
= s
->ch
;
364 memory_region_init_io(&s
->iomem
, NULL
, &omap_mcspi_ops
, s
, "omap.mcspi",
365 omap_l4_region_size(ta
, 0));
366 omap_l4_attach(ta
, 0, &s
->iomem
);
371 void omap_mcspi_attach(struct omap_mcspi_s
*s
,
372 uint32_t (*txrx
)(void *opaque
, uint32_t, int), void *opaque
,
375 if (chipselect
< 0 || chipselect
>= s
->chnum
)
376 hw_error("%s: Bad chipselect %i\n", __func__
, chipselect
);
378 s
->ch
[chipselect
].txrx
= txrx
;
379 s
->ch
[chipselect
].opaque
= opaque
;