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"
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)
44 uint8_t dr; /* ftdr / tdr */
45 uint8_t sr; /* fsr / ssr */
49 uint8_t rx_fifo[16]; /* frdr / rdr */
52 target_phys_addr_t base;
59 struct intc_source *eri;
60 struct intc_source *rxi;
61 struct intc_source *txi;
62 struct intc_source *tei;
63 struct intc_source *bri;
66 static void sh_serial_ioport_write(void *opaque, uint32_t offs, uint32_t val)
68 sh_serial_state *s = opaque;
72 printf("sh_serial: write base=0x%08lx offs=0x%02x val=0x%02x\n",
73 (unsigned long) s->base, offs, val);
77 s->smr = val & ((s->feat & SH_SERIAL_FEAT_SCIF) ? 0x7b : 0xff);
83 s->scr = val & ((s->feat & SH_SERIAL_FEAT_SCIF) ? 0xfa : 0xff);
84 if (!(val & (1 << 5)))
85 s->flags |= SH_SERIAL_FLAG_TEND;
86 if ((s->feat & SH_SERIAL_FEAT_SCIF) && s->txi) {
87 if ((val & (1 << 7)) && !(s->txi->asserted))
88 sh_intc_toggle_source(s->txi, 0, 1);
89 else if (!(val & (1 << 7)) && s->txi->asserted)
90 sh_intc_toggle_source(s->txi, 0, -1);
93 case 0x0c: /* FTDR / TDR */
96 qemu_chr_write(s->chr, &ch, 1);
99 s->flags &= ~SH_SERIAL_FLAG_TDE;
102 case 0x14: /* FRDR / RDR */
107 if (s->feat & SH_SERIAL_FEAT_SCIF) {
110 if (!(val & (1 << 6)))
111 s->flags &= ~SH_SERIAL_FLAG_TEND;
112 if (!(val & (1 << 5)))
113 s->flags &= ~SH_SERIAL_FLAG_TDE;
114 if (!(val & (1 << 4)))
115 s->flags &= ~SH_SERIAL_FLAG_BRK;
116 if (!(val & (1 << 1)))
117 s->flags &= ~SH_SERIAL_FLAG_RDF;
118 if (!(val & (1 << 0)))
119 s->flags &= ~SH_SERIAL_FLAG_DR;
124 case 0x20: /* SPTR */
147 fprintf(stderr, "sh_serial: unsupported write to 0x%02x\n", offs);
151 static uint32_t sh_serial_ioport_read(void *opaque, uint32_t offs)
153 sh_serial_state *s = opaque;
172 if (s->feat & SH_SERIAL_FEAT_SCIF) {
182 if (s->flags & SH_SERIAL_FLAG_TEND)
184 if (s->flags & SH_SERIAL_FLAG_TDE)
186 if (s->flags & SH_SERIAL_FLAG_BRK)
188 if (s->flags & SH_SERIAL_FLAG_RDF)
190 if (s->flags & SH_SERIAL_FLAG_DR)
193 if (s->scr & (1 << 5))
194 s->flags |= SH_SERIAL_FLAG_TDE | SH_SERIAL_FLAG_TEND;
229 printf("sh_serial: read base=0x%08lx offs=0x%02x val=0x%x\n",
230 (unsigned long) s->base, offs, ret);
233 if (ret & ~((1 << 16) - 1)) {
234 fprintf(stderr, "sh_serial: unsupported read from 0x%02x\n", offs);
241 static int sh_serial_can_receive(sh_serial_state *s)
246 static void sh_serial_receive_byte(sh_serial_state *s, int ch)
250 static void sh_serial_receive_break(sh_serial_state *s)
254 static int sh_serial_can_receive1(void *opaque)
256 sh_serial_state *s = opaque;
257 return sh_serial_can_receive(s);
260 static void sh_serial_receive1(void *opaque, const uint8_t *buf, int size)
262 sh_serial_state *s = opaque;
263 sh_serial_receive_byte(s, buf[0]);
266 static void sh_serial_event(void *opaque, int event)
268 sh_serial_state *s = opaque;
269 if (event == CHR_EVENT_BREAK)
270 sh_serial_receive_break(s);
273 static uint32_t sh_serial_read (void *opaque, target_phys_addr_t addr)
275 sh_serial_state *s = opaque;
276 return sh_serial_ioport_read(s, addr - s->base);
279 static void sh_serial_write (void *opaque,
280 target_phys_addr_t addr, uint32_t value)
282 sh_serial_state *s = opaque;
283 sh_serial_ioport_write(s, addr - s->base, value);
286 static CPUReadMemoryFunc *sh_serial_readfn[] = {
292 static CPUWriteMemoryFunc *sh_serial_writefn[] = {
298 void sh_serial_init (target_phys_addr_t base, int feat,
299 uint32_t freq, CharDriverState *chr,
300 struct intc_source *eri_source,
301 struct intc_source *rxi_source,
302 struct intc_source *txi_source,
303 struct intc_source *tei_source,
304 struct intc_source *bri_source)
309 s = qemu_mallocz(sizeof(sh_serial_state));
315 s->flags = SH_SERIAL_FLAG_TEND | SH_SERIAL_FLAG_TDE;
319 s->scr = 1 << 5; /* pretend that TX is enabled so early printk works */
322 if (feat & SH_SERIAL_FEAT_SCIF) {
331 s_io_memory = cpu_register_io_memory(0, sh_serial_readfn,
332 sh_serial_writefn, s);
333 cpu_register_physical_memory(base, 0x28, s_io_memory);
338 qemu_chr_add_handlers(chr, sh_serial_can_receive1, sh_serial_receive1,