2 * QEMU SCI/SCIF serial port emulation
4 * Copyright (c) 2007 Magnus Damm
6 * Based on serial.c - QEMU 16450 UART emulation
7 * Copyright (c) 2003-2004 Fabrice Bellard
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
29 #include "qemu-char.h"
30 #include "exec-memory.h"
32 //#define DEBUG_SERIAL
34 #define SH_SERIAL_FLAG_TEND (1 << 0)
35 #define SH_SERIAL_FLAG_TDE (1 << 1)
36 #define SH_SERIAL_FLAG_RDF (1 << 2)
37 #define SH_SERIAL_FLAG_BRK (1 << 3)
38 #define SH_SERIAL_FLAG_DR (1 << 4)
40 #define SH_RX_FIFO_LENGTH (16)
44 MemoryRegion iomem_p4;
45 MemoryRegion iomem_a7;
49 uint8_t dr; /* ftdr / tdr */
50 uint8_t sr; /* fsr / ssr */
54 uint8_t rx_fifo[SH_RX_FIFO_LENGTH]; /* frdr / rdr */
73 static void sh_serial_clear_fifo(sh_serial_state * s)
75 memset(s->rx_fifo, 0, SH_RX_FIFO_LENGTH);
81 static void sh_serial_write(void *opaque, target_phys_addr_t offs,
82 uint64_t val, unsigned size)
84 sh_serial_state *s = opaque;
88 printf("sh_serial: write offs=0x%02x val=0x%02x\n",
93 s->smr = val & ((s->feat & SH_SERIAL_FEAT_SCIF) ? 0x7b : 0xff);
99 /* TODO : For SH7751, SCIF mask should be 0xfb. */
100 s->scr = val & ((s->feat & SH_SERIAL_FEAT_SCIF) ? 0xfa : 0xff);
101 if (!(val & (1 << 5)))
102 s->flags |= SH_SERIAL_FLAG_TEND;
103 if ((s->feat & SH_SERIAL_FEAT_SCIF) && s->txi) {
104 qemu_set_irq(s->txi, val & (1 << 7));
106 if (!(val & (1 << 6))) {
107 qemu_set_irq(s->rxi, 0);
110 case 0x0c: /* FTDR / TDR */
113 qemu_chr_fe_write(s->chr, &ch, 1);
116 s->flags &= ~SH_SERIAL_FLAG_TDE;
119 case 0x14: /* FRDR / RDR */
124 if (s->feat & SH_SERIAL_FEAT_SCIF) {
127 if (!(val & (1 << 6)))
128 s->flags &= ~SH_SERIAL_FLAG_TEND;
129 if (!(val & (1 << 5)))
130 s->flags &= ~SH_SERIAL_FLAG_TDE;
131 if (!(val & (1 << 4)))
132 s->flags &= ~SH_SERIAL_FLAG_BRK;
133 if (!(val & (1 << 1)))
134 s->flags &= ~SH_SERIAL_FLAG_RDF;
135 if (!(val & (1 << 0)))
136 s->flags &= ~SH_SERIAL_FLAG_DR;
138 if (!(val & (1 << 1)) || !(val & (1 << 0))) {
140 qemu_set_irq(s->rxi, 0);
146 switch ((val >> 6) & 3) {
160 if (val & (1 << 1)) {
161 sh_serial_clear_fifo(s);
166 case 0x20: /* SPTR */
167 s->sptr = val & 0xf3;
184 s->sptr = val & 0x8f;
189 fprintf(stderr, "sh_serial: unsupported write to 0x%02x\n", offs);
193 static uint64_t sh_serial_read(void *opaque, target_phys_addr_t offs,
196 sh_serial_state *s = opaque;
215 if (s->feat & SH_SERIAL_FEAT_SCIF) {
225 if (s->flags & SH_SERIAL_FLAG_TEND)
227 if (s->flags & SH_SERIAL_FLAG_TDE)
229 if (s->flags & SH_SERIAL_FLAG_BRK)
231 if (s->flags & SH_SERIAL_FLAG_RDF)
233 if (s->flags & SH_SERIAL_FLAG_DR)
236 if (s->scr & (1 << 5))
237 s->flags |= SH_SERIAL_FLAG_TDE | SH_SERIAL_FLAG_TEND;
242 ret = s->rx_fifo[s->rx_tail++];
244 if (s->rx_tail == SH_RX_FIFO_LENGTH)
246 if (s->rx_cnt < s->rtrg)
247 s->flags &= ~SH_SERIAL_FLAG_RDF;
285 printf("sh_serial: read offs=0x%02x val=0x%x\n",
289 if (ret & ~((1 << 16) - 1)) {
290 fprintf(stderr, "sh_serial: unsupported read from 0x%02x\n", offs);
297 static int sh_serial_can_receive(sh_serial_state *s)
299 return s->scr & (1 << 4);
302 static void sh_serial_receive_break(sh_serial_state *s)
304 if (s->feat & SH_SERIAL_FEAT_SCIF)
308 static int sh_serial_can_receive1(void *opaque)
310 sh_serial_state *s = opaque;
311 return sh_serial_can_receive(s);
314 static void sh_serial_receive1(void *opaque, const uint8_t *buf, int size)
316 sh_serial_state *s = opaque;
318 if (s->feat & SH_SERIAL_FEAT_SCIF) {
320 for (i = 0; i < size; i++) {
321 if (s->rx_cnt < SH_RX_FIFO_LENGTH) {
322 s->rx_fifo[s->rx_head++] = buf[i];
323 if (s->rx_head == SH_RX_FIFO_LENGTH) {
327 if (s->rx_cnt >= s->rtrg) {
328 s->flags |= SH_SERIAL_FLAG_RDF;
329 if (s->scr & (1 << 6) && s->rxi) {
330 qemu_set_irq(s->rxi, 1);
336 s->rx_fifo[0] = buf[0];
340 static void sh_serial_event(void *opaque, int event)
342 sh_serial_state *s = opaque;
343 if (event == CHR_EVENT_BREAK)
344 sh_serial_receive_break(s);
347 static const MemoryRegionOps sh_serial_ops = {
348 .read = sh_serial_read,
349 .write = sh_serial_write,
350 .endianness = DEVICE_NATIVE_ENDIAN,
353 void sh_serial_init(MemoryRegion *sysmem,
354 target_phys_addr_t base, int feat,
355 uint32_t freq, CharDriverState *chr,
364 s = g_malloc0(sizeof(sh_serial_state));
367 s->flags = SH_SERIAL_FLAG_TEND | SH_SERIAL_FLAG_TDE;
372 s->scr = 1 << 5; /* pretend that TX is enabled so early printk works */
375 if (feat & SH_SERIAL_FEAT_SCIF) {
382 sh_serial_clear_fifo(s);
384 memory_region_init_io(&s->iomem, &sh_serial_ops, s,
385 "serial", 0x100000000ULL);
387 memory_region_init_alias(&s->iomem_p4, "serial-p4", &s->iomem,
389 memory_region_add_subregion(sysmem, P4ADDR(base), &s->iomem_p4);
391 memory_region_init_alias(&s->iomem_a7, "serial-a7", &s->iomem,
393 memory_region_add_subregion(sysmem, A7ADDR(base), &s->iomem_a7);
398 qemu_chr_add_handlers(chr, sh_serial_can_receive1, sh_serial_receive1,