blob: d450d70eda1ee195128da5123cdbfc397a46f7f1 [file] [log] [blame]
bellarde80cfcf2004-12-19 23:18:01 +00001/*
blueswir1b4ed08e2009-01-12 17:38:28 +00002 * QEMU ESCC (Z8030/Z8530/Z85C30/SCC/ESCC) serial port emulation
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard8be1f5c2005-04-06 20:42:35 +00004 * Copyright (c) 2003-2005 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellarde80cfcf2004-12-19 23:18:01 +00006 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
Blue Swirl6c319c82009-07-15 08:51:32 +000024
Peter Maydell04308912016-01-26 18:17:30 +000025#include "qemu/osdep.h"
Markus Armbruster64552b62019-08-12 07:23:42 +020026#include "hw/irq.h"
Markus Armbrustera27bd6c2019-08-12 07:23:51 +020027#include "hw/qdev-properties.h"
Eduardo Habkostce35e222020-12-11 17:05:12 -050028#include "hw/qdev-properties-system.h"
Paolo Bonzini83c9f4c2013-02-04 15:40:22 +010029#include "hw/sysbus.h"
Markus Armbrusterd6454272019-08-12 07:23:45 +020030#include "migration/vmstate.h"
Markus Armbruster0b8fa322019-05-23 16:35:07 +020031#include "qemu/module.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +010032#include "hw/char/escc.h"
Paolo Bonzini28ecbae2012-11-28 12:06:30 +010033#include "ui/console.h"
Henrik Carlqvist6b90a4c2023-06-23 20:30:07 +020034
35#include "qemu/cutils.h"
Blue Swirl30c2f232011-08-07 11:01:05 +000036#include "trace.h"
bellarde80cfcf2004-12-19 23:18:01 +000037
38/*
Blue Swirl09330e92009-10-24 16:09:01 +000039 * Chipset docs:
40 * "Z80C30/Z85C30/Z80230/Z85230/Z85233 SCC/ESCC User Manual",
41 * http://www.zilog.com/docs/serial/scc_escc_um.pdf
42 *
blueswir1b4ed08e2009-01-12 17:38:28 +000043 * On Sparc32 this is the serial port, mouse and keyboard part of chip STP2001
bellarde80cfcf2004-12-19 23:18:01 +000044 * (Slave I/O), also produced as NCR89C105. See
45 * http://www.ibiblio.org/pub/historic-linux/early-ports/Sparc/NCR/NCR89C105.txt
ths5fafdf22007-09-16 21:08:06 +000046 *
bellarde80cfcf2004-12-19 23:18:01 +000047 * The serial ports implement full AMD AM8530 or Zilog Z8530 chips,
48 * mouse and keyboard ports don't implement all functions and they are
49 * only asynchronous. There is no DMA.
50 *
Laurent Vivierb43047a2019-05-26 00:50:04 +020051 * Z85C30 is also used on PowerMacs and m68k Macs.
52 *
53 * There are some small differences between Sparc version (sunzilog)
54 * and PowerMac (pmac):
blueswir1b4ed08e2009-01-12 17:38:28 +000055 * Offset between control and data registers
56 * There is some kind of lockup bug, but we can ignore it
57 * CTS is inverted
58 * DMA on pmac using DBDMA chip
59 * pmac can do IRDA and faster rates, sunzilog can only do 38400
60 * pmac baud rate generator clock is 3.6864 MHz, sunzilog 4.9152 MHz
Laurent Vivierb43047a2019-05-26 00:50:04 +020061 *
62 * Linux driver for m68k Macs is the same as for PowerMac (pmac_zilog),
63 * but registers are grouped by type and not by channel:
64 * channel is selected by bit 0 of the address (instead of bit 1)
65 * and register is selected by bit 1 of the address (instead of bit 0).
bellarde80cfcf2004-12-19 23:18:01 +000066 */
67
bellard715748f2006-09-09 11:35:47 +000068/*
69 * Modifications:
70 * 2006-Aug-10 Igor Kovalenko : Renamed KBDQueue to SERIOQueue, implemented
71 * serial mouse queue.
72 * Implemented serial mouse protocol.
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +020073 *
74 * 2010-May-23 Artyom Tarasenko: Reworked IUS logic
bellard715748f2006-09-09 11:35:47 +000075 */
76
Laurent Vivier2cc75c32018-02-14 07:35:58 +010077#define CHN_C(s) ((s)->chn == escc_chn_b ? 'b' : 'a')
bellarde80cfcf2004-12-19 23:18:01 +000078
blueswir112abac82007-12-10 20:05:09 +000079#define SERIAL_CTRL 0
80#define SERIAL_DATA 1
81
82#define W_CMD 0
83#define CMD_PTR_MASK 0x07
84#define CMD_CMD_MASK 0x38
85#define CMD_HI 0x08
86#define CMD_CLR_TXINT 0x28
87#define CMD_CLR_IUS 0x38
88#define W_INTR 1
89#define INTR_INTALL 0x01
90#define INTR_TXINT 0x02
Mark Cave-Ayland1f476e72021-09-03 12:32:19 +010091#define INTR_PAR_SPEC 0x04
blueswir112abac82007-12-10 20:05:09 +000092#define INTR_RXMODEMSK 0x18
93#define INTR_RXINT1ST 0x08
94#define INTR_RXINTALL 0x10
Mark Cave-Ayland1f476e72021-09-03 12:32:19 +010095#define INTR_WTRQ_TXRX 0x20
blueswir112abac82007-12-10 20:05:09 +000096#define W_IVEC 2
97#define W_RXCTRL 3
98#define RXCTRL_RXEN 0x01
Mark Cave-Ayland15a2a1a2021-09-03 12:32:23 +010099#define RXCTRL_HUNT 0x10
blueswir112abac82007-12-10 20:05:09 +0000100#define W_TXCTRL1 4
101#define TXCTRL1_PAREN 0x01
102#define TXCTRL1_PAREV 0x02
103#define TXCTRL1_1STOP 0x04
104#define TXCTRL1_1HSTOP 0x08
105#define TXCTRL1_2STOP 0x0c
106#define TXCTRL1_STPMSK 0x0c
107#define TXCTRL1_CLK1X 0x00
108#define TXCTRL1_CLK16X 0x40
109#define TXCTRL1_CLK32X 0x80
110#define TXCTRL1_CLK64X 0xc0
111#define TXCTRL1_CLKMSK 0xc0
112#define W_TXCTRL2 5
Mark Cave-Ayland1f476e72021-09-03 12:32:19 +0100113#define TXCTRL2_TXCRC 0x01
blueswir112abac82007-12-10 20:05:09 +0000114#define TXCTRL2_TXEN 0x08
115#define TXCTRL2_BITMSK 0x60
116#define TXCTRL2_5BITS 0x00
117#define TXCTRL2_7BITS 0x20
118#define TXCTRL2_6BITS 0x40
119#define TXCTRL2_8BITS 0x60
120#define W_SYNC1 6
121#define W_SYNC2 7
122#define W_TXBUF 8
123#define W_MINTR 9
Mark Cave-Ayland160509a2021-09-03 12:32:20 +0100124#define MINTR_VIS 0x01
125#define MINTR_NV 0x02
blueswir112abac82007-12-10 20:05:09 +0000126#define MINTR_STATUSHI 0x10
Mark Cave-Ayland1f476e72021-09-03 12:32:19 +0100127#define MINTR_SOFTIACK 0x20
blueswir112abac82007-12-10 20:05:09 +0000128#define MINTR_RST_MASK 0xc0
129#define MINTR_RST_B 0x40
130#define MINTR_RST_A 0x80
131#define MINTR_RST_ALL 0xc0
132#define W_MISC1 10
Mark Cave-Ayland1f476e72021-09-03 12:32:19 +0100133#define MISC1_ENC_MASK 0x60
blueswir112abac82007-12-10 20:05:09 +0000134#define W_CLOCK 11
135#define CLOCK_TRXC 0x08
136#define W_BRGLO 12
137#define W_BRGHI 13
138#define W_MISC2 14
Mark Cave-Ayland1f476e72021-09-03 12:32:19 +0100139#define MISC2_BRG_EN 0x01
140#define MISC2_BRG_SRC 0x02
141#define MISC2_LCL_LOOP 0x10
142#define MISC2_PLLCMD0 0x20
143#define MISC2_PLLCMD1 0x40
144#define MISC2_PLLCMD2 0x80
blueswir112abac82007-12-10 20:05:09 +0000145#define W_EXTINT 15
146#define EXTINT_DCD 0x08
147#define EXTINT_SYNCINT 0x10
148#define EXTINT_CTSINT 0x20
149#define EXTINT_TXUNDRN 0x40
150#define EXTINT_BRKINT 0x80
151
152#define R_STATUS 0
153#define STATUS_RXAV 0x01
154#define STATUS_ZERO 0x02
155#define STATUS_TXEMPTY 0x04
156#define STATUS_DCD 0x08
157#define STATUS_SYNC 0x10
158#define STATUS_CTS 0x20
159#define STATUS_TXUNDRN 0x40
160#define STATUS_BRK 0x80
161#define R_SPEC 1
162#define SPEC_ALLSENT 0x01
163#define SPEC_BITS8 0x06
164#define R_IVEC 2
165#define IVEC_TXINTB 0x00
166#define IVEC_LONOINT 0x06
167#define IVEC_LORXINTA 0x0c
168#define IVEC_LORXINTB 0x04
169#define IVEC_LOTXINTA 0x08
170#define IVEC_HINOINT 0x60
171#define IVEC_HIRXINTA 0x30
172#define IVEC_HIRXINTB 0x20
173#define IVEC_HITXINTA 0x10
174#define R_INTR 3
175#define INTR_EXTINTB 0x01
176#define INTR_TXINTB 0x02
177#define INTR_RXINTB 0x04
178#define INTR_EXTINTA 0x08
179#define INTR_TXINTA 0x10
180#define INTR_RXINTA 0x20
181#define R_IPEN 4
182#define R_TXCTRL1 5
183#define R_TXCTRL2 6
184#define R_BC 7
185#define R_RXBUF 8
186#define R_RXCTRL 9
187#define R_MISC 10
Mark Cave-Ayland1f476e72021-09-03 12:32:19 +0100188#define MISC_2CLKMISS 0x40
blueswir112abac82007-12-10 20:05:09 +0000189#define R_MISC1 11
190#define R_BRGLO 12
191#define R_BRGHI 13
192#define R_MISC1I 14
193#define R_EXTINT 15
bellarde80cfcf2004-12-19 23:18:01 +0000194
Henrik Carlqvist6b90a4c2023-06-23 20:30:07 +0200195static uint8_t sunkbd_layout_dip_switch(const char *sunkbd_layout);
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100196static void handle_kbd_command(ESCCChannelState *s, int val);
bellard8be1f5c2005-04-06 20:42:35 +0000197static int serial_can_receive(void *opaque);
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100198static void serial_receive_byte(ESCCChannelState *s, int ch);
bellard8be1f5c2005-04-06 20:42:35 +0000199
Laurent Vivierb43047a2019-05-26 00:50:04 +0200200static int reg_shift(ESCCState *s)
201{
202 return s->bit_swap ? s->it_shift + 1 : s->it_shift;
203}
204
205static int chn_shift(ESCCState *s)
206{
207 return s->bit_swap ? s->it_shift : s->it_shift + 1;
208}
209
blueswir167deb562007-04-18 19:21:38 +0000210static void clear_queue(void *opaque)
211{
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100212 ESCCChannelState *s = opaque;
213 ESCCSERIOQueue *q = &s->queue;
blueswir167deb562007-04-18 19:21:38 +0000214 q->rptr = q->wptr = q->count = 0;
215}
216
bellard8be1f5c2005-04-06 20:42:35 +0000217static void put_queue(void *opaque, int b)
218{
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100219 ESCCChannelState *s = opaque;
220 ESCCSERIOQueue *q = &s->queue;
bellard8be1f5c2005-04-06 20:42:35 +0000221
Blue Swirl30c2f232011-08-07 11:01:05 +0000222 trace_escc_put_queue(CHN_C(s), b);
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100223 if (q->count >= ESCC_SERIO_QUEUE_SIZE) {
bellard8be1f5c2005-04-06 20:42:35 +0000224 return;
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100225 }
bellard8be1f5c2005-04-06 20:42:35 +0000226 q->data[q->wptr] = b;
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100227 if (++q->wptr == ESCC_SERIO_QUEUE_SIZE) {
bellard8be1f5c2005-04-06 20:42:35 +0000228 q->wptr = 0;
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100229 }
bellard8be1f5c2005-04-06 20:42:35 +0000230 q->count++;
231 serial_receive_byte(s, 0);
232}
233
234static uint32_t get_queue(void *opaque)
235{
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100236 ESCCChannelState *s = opaque;
237 ESCCSERIOQueue *q = &s->queue;
bellard8be1f5c2005-04-06 20:42:35 +0000238 int val;
ths3b46e622007-09-17 08:09:54 +0000239
bellard8be1f5c2005-04-06 20:42:35 +0000240 if (q->count == 0) {
blueswir1f930d072007-10-06 11:28:21 +0000241 return 0;
bellard8be1f5c2005-04-06 20:42:35 +0000242 } else {
243 val = q->data[q->rptr];
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100244 if (++q->rptr == ESCC_SERIO_QUEUE_SIZE) {
bellard8be1f5c2005-04-06 20:42:35 +0000245 q->rptr = 0;
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100246 }
bellard8be1f5c2005-04-06 20:42:35 +0000247 q->count--;
248 }
Blue Swirl30c2f232011-08-07 11:01:05 +0000249 trace_escc_get_queue(CHN_C(s), val);
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100250 if (q->count > 0) {
blueswir1f930d072007-10-06 11:28:21 +0000251 serial_receive_byte(s, 0);
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100252 }
bellard8be1f5c2005-04-06 20:42:35 +0000253 return val;
254}
255
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100256static int escc_update_irq_chn(ESCCChannelState *s)
bellarde80cfcf2004-12-19 23:18:01 +0000257{
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200258 if ((((s->wregs[W_INTR] & INTR_TXINT) && (s->txint == 1)) ||
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100259 /* tx ints enabled, pending */
260 ((((s->wregs[W_INTR] & INTR_RXMODEMSK) == INTR_RXINT1ST) ||
261 ((s->wregs[W_INTR] & INTR_RXMODEMSK) == INTR_RXINTALL)) &&
262 s->rxint == 1) ||
263 /* rx ints enabled, pending */
264 ((s->wregs[W_EXTINT] & EXTINT_BRKINT) &&
265 (s->rregs[R_STATUS] & STATUS_BRK)))) {
266 /* break int e&p */
bellarde4a89052006-09-09 11:38:11 +0000267 return 1;
bellarde80cfcf2004-12-19 23:18:01 +0000268 }
bellarde4a89052006-09-09 11:38:11 +0000269 return 0;
270}
271
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100272static void escc_update_irq(ESCCChannelState *s)
bellarde4a89052006-09-09 11:38:11 +0000273{
274 int irq;
275
blueswir1b4ed08e2009-01-12 17:38:28 +0000276 irq = escc_update_irq_chn(s);
277 irq |= escc_update_irq_chn(s->otherchn);
bellarde4a89052006-09-09 11:38:11 +0000278
Blue Swirl30c2f232011-08-07 11:01:05 +0000279 trace_escc_update_irq(irq);
pbrookd537cf62007-04-07 18:14:41 +0000280 qemu_set_irq(s->irq, irq);
bellarde80cfcf2004-12-19 23:18:01 +0000281}
282
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100283static void escc_reset_chn(ESCCChannelState *s)
bellarde80cfcf2004-12-19 23:18:01 +0000284{
bellarde80cfcf2004-12-19 23:18:01 +0000285 s->reg = 0;
bellarde80cfcf2004-12-19 23:18:01 +0000286 s->rx = s->tx = 0;
287 s->rxint = s->txint = 0;
bellarde4a89052006-09-09 11:38:11 +0000288 s->rxint_under_svc = s->txint_under_svc = 0;
blueswir1bbbb2f02007-09-23 11:48:47 +0000289 s->e0_mode = s->led_mode = s->caps_lock_mode = s->num_lock_mode = 0;
blueswir167deb562007-04-18 19:21:38 +0000290 clear_queue(s);
bellarde80cfcf2004-12-19 23:18:01 +0000291}
292
Mark Cave-Ayland8e8aa962021-09-03 12:32:17 +0100293static void escc_soft_reset_chn(ESCCChannelState *s)
294{
Mark Cave-Ayland99b0f052021-09-03 12:32:22 +0100295 escc_reset_chn(s);
296
Mark Cave-Ayland1f476e72021-09-03 12:32:19 +0100297 s->wregs[W_CMD] = 0;
298 s->wregs[W_INTR] &= INTR_PAR_SPEC | INTR_WTRQ_TXRX;
299 s->wregs[W_RXCTRL] &= ~RXCTRL_RXEN;
300 /* 1 stop bit */
301 s->wregs[W_TXCTRL1] |= TXCTRL1_1STOP;
302 s->wregs[W_TXCTRL2] &= TXCTRL2_TXCRC | TXCTRL2_8BITS;
303 s->wregs[W_MINTR] &= ~MINTR_SOFTIACK;
304 s->wregs[W_MISC1] &= MISC1_ENC_MASK;
Mark Cave-Ayland8e8aa962021-09-03 12:32:17 +0100305 /* PLL disabled */
Mark Cave-Ayland1f476e72021-09-03 12:32:19 +0100306 s->wregs[W_MISC2] &= MISC2_BRG_EN | MISC2_BRG_SRC |
307 MISC2_PLLCMD1 | MISC2_PLLCMD2;
308 s->wregs[W_MISC2] |= MISC2_PLLCMD0;
Mark Cave-Ayland8e8aa962021-09-03 12:32:17 +0100309 /* Enable most interrupts */
310 s->wregs[W_EXTINT] = EXTINT_DCD | EXTINT_SYNCINT | EXTINT_CTSINT |
311 EXTINT_TXUNDRN | EXTINT_BRKINT;
Mark Cave-Ayland1f476e72021-09-03 12:32:19 +0100312
313 s->rregs[R_STATUS] &= STATUS_DCD | STATUS_SYNC | STATUS_CTS | STATUS_BRK;
314 s->rregs[R_STATUS] |= STATUS_TXEMPTY | STATUS_TXUNDRN;
Mark Cave-Ayland8e8aa962021-09-03 12:32:17 +0100315 if (s->disabled) {
Mark Cave-Ayland1f476e72021-09-03 12:32:19 +0100316 s->rregs[R_STATUS] |= STATUS_DCD | STATUS_SYNC | STATUS_CTS;
Mark Cave-Ayland8e8aa962021-09-03 12:32:17 +0100317 }
Mark Cave-Ayland1f476e72021-09-03 12:32:19 +0100318 s->rregs[R_SPEC] &= SPEC_ALLSENT;
319 s->rregs[R_SPEC] |= SPEC_BITS8;
320 s->rregs[R_INTR] = 0;
321 s->rregs[R_MISC] &= MISC_2CLKMISS;
Mark Cave-Ayland8e8aa962021-09-03 12:32:17 +0100322}
323
Mark Cave-Aylandbf4fbb62021-09-03 12:32:18 +0100324static void escc_hard_reset_chn(ESCCChannelState *s)
325{
Mark Cave-Ayland160509a2021-09-03 12:32:20 +0100326 escc_soft_reset_chn(s);
Mark Cave-Aylandbf4fbb62021-09-03 12:32:18 +0100327
Mark Cave-Ayland160509a2021-09-03 12:32:20 +0100328 /*
329 * Hard reset is almost identical to soft reset above, except that the
330 * values of WR9 (W_MINTR), WR10 (W_MISC1), WR11 (W_CLOCK) and WR14
331 * (W_MISC2) have extra bits forced to 0/1
332 */
333 s->wregs[W_MINTR] &= MINTR_VIS | MINTR_NV;
334 s->wregs[W_MINTR] |= MINTR_RST_B | MINTR_RST_A;
335 s->wregs[W_MISC1] = 0;
Mark Cave-Aylandbf4fbb62021-09-03 12:32:18 +0100336 s->wregs[W_CLOCK] = CLOCK_TRXC;
Mark Cave-Ayland160509a2021-09-03 12:32:20 +0100337 s->wregs[W_MISC2] &= MISC2_PLLCMD1 | MISC2_PLLCMD2;
338 s->wregs[W_MISC2] |= MISC2_LCL_LOOP | MISC2_PLLCMD0;
Mark Cave-Aylandbf4fbb62021-09-03 12:32:18 +0100339}
340
Blue Swirlbdb78ca2009-10-24 16:07:10 +0000341static void escc_reset(DeviceState *d)
bellarde80cfcf2004-12-19 23:18:01 +0000342{
Andreas Färber81069b22013-07-24 21:30:40 +0200343 ESCCState *s = ESCC(d);
Mark Cave-Ayland9d248a42021-09-03 12:32:16 +0100344 int i, j;
Blue Swirlbdb78ca2009-10-24 16:07:10 +0000345
Mark Cave-Ayland9d248a42021-09-03 12:32:16 +0100346 for (i = 0; i < 2; i++) {
347 ESCCChannelState *cs = &s->chn[i];
348
349 /*
350 * According to the ESCC datasheet "Miscellaneous Questions" section
351 * on page 384, the values of the ESCC registers are not guaranteed on
352 * power-on until an explicit hardware or software reset has been
353 * issued. For now we zero the registers so that a device reset always
354 * returns the emulated device to a fixed state.
355 */
356 for (j = 0; j < ESCC_SERIAL_REGS; j++) {
357 cs->rregs[j] = 0;
358 cs->wregs[j] = 0;
359 }
Mark Cave-Aylandc29cd472021-11-18 18:18:34 +0000360
361 /*
362 * ...but there is an exception. The "Transmit Interrupts and Transmit
363 * Buffer Empty Bit" section on page 50 of the ESCC datasheet says of
364 * the STATUS_TXEMPTY bit in R_STATUS: "After a hardware reset
365 * (including a hardware reset by software), or a channel reset, this
366 * bit is set to 1". The Sun PROM checks this bit early on startup and
367 * gets stuck in an infinite loop if it is not set.
368 */
369 cs->rregs[R_STATUS] |= STATUS_TXEMPTY;
370
Mark Cave-Ayland9d248a42021-09-03 12:32:16 +0100371 escc_reset_chn(cs);
372 }
bellarde80cfcf2004-12-19 23:18:01 +0000373}
374
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100375static inline void set_rxint(ESCCChannelState *s)
bellardba3c64f2005-12-05 20:31:52 +0000376{
377 s->rxint = 1;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100378 /*
379 * XXX: missing daisy chaining: escc_chn_b rx should have a lower priority
380 * than chn_a rx/tx/special_condition service
381 */
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200382 s->rxint_under_svc = 1;
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100383 if (s->chn == escc_chn_a) {
blueswir112abac82007-12-10 20:05:09 +0000384 s->rregs[R_INTR] |= INTR_RXINTA;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100385 if (s->wregs[W_MINTR] & MINTR_STATUSHI) {
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200386 s->otherchn->rregs[R_IVEC] = IVEC_HIRXINTA;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100387 } else {
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200388 s->otherchn->rregs[R_IVEC] = IVEC_LORXINTA;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100389 }
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200390 } else {
blueswir112abac82007-12-10 20:05:09 +0000391 s->otherchn->rregs[R_INTR] |= INTR_RXINTB;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100392 if (s->wregs[W_MINTR] & MINTR_STATUSHI) {
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200393 s->rregs[R_IVEC] = IVEC_HIRXINTB;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100394 } else {
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200395 s->rregs[R_IVEC] = IVEC_LORXINTB;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100396 }
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200397 }
blueswir1b4ed08e2009-01-12 17:38:28 +0000398 escc_update_irq(s);
bellardba3c64f2005-12-05 20:31:52 +0000399}
400
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100401static inline void set_txint(ESCCChannelState *s)
blueswir180637a62008-01-17 21:07:04 +0000402{
403 s->txint = 1;
404 if (!s->rxint_under_svc) {
405 s->txint_under_svc = 1;
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100406 if (s->chn == escc_chn_a) {
Aurelien Jarnof53671c2011-01-27 08:21:35 +0100407 if (s->wregs[W_INTR] & INTR_TXINT) {
408 s->rregs[R_INTR] |= INTR_TXINTA;
409 }
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100410 if (s->wregs[W_MINTR] & MINTR_STATUSHI) {
blueswir180637a62008-01-17 21:07:04 +0000411 s->otherchn->rregs[R_IVEC] = IVEC_HITXINTA;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100412 } else {
blueswir180637a62008-01-17 21:07:04 +0000413 s->otherchn->rregs[R_IVEC] = IVEC_LOTXINTA;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100414 }
blueswir180637a62008-01-17 21:07:04 +0000415 } else {
416 s->rregs[R_IVEC] = IVEC_TXINTB;
Aurelien Jarnof53671c2011-01-27 08:21:35 +0100417 if (s->wregs[W_INTR] & INTR_TXINT) {
418 s->otherchn->rregs[R_INTR] |= INTR_TXINTB;
419 }
blueswir180637a62008-01-17 21:07:04 +0000420 }
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100421 escc_update_irq(s);
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200422 }
blueswir180637a62008-01-17 21:07:04 +0000423}
424
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100425static inline void clr_rxint(ESCCChannelState *s)
blueswir180637a62008-01-17 21:07:04 +0000426{
427 s->rxint = 0;
428 s->rxint_under_svc = 0;
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100429 if (s->chn == escc_chn_a) {
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100430 if (s->wregs[W_MINTR] & MINTR_STATUSHI) {
blueswir180637a62008-01-17 21:07:04 +0000431 s->otherchn->rregs[R_IVEC] = IVEC_HINOINT;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100432 } else {
blueswir180637a62008-01-17 21:07:04 +0000433 s->otherchn->rregs[R_IVEC] = IVEC_LONOINT;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100434 }
blueswir180637a62008-01-17 21:07:04 +0000435 s->rregs[R_INTR] &= ~INTR_RXINTA;
436 } else {
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100437 if (s->wregs[W_MINTR] & MINTR_STATUSHI) {
blueswir180637a62008-01-17 21:07:04 +0000438 s->rregs[R_IVEC] = IVEC_HINOINT;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100439 } else {
blueswir180637a62008-01-17 21:07:04 +0000440 s->rregs[R_IVEC] = IVEC_LONOINT;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100441 }
blueswir180637a62008-01-17 21:07:04 +0000442 s->otherchn->rregs[R_INTR] &= ~INTR_RXINTB;
443 }
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100444 if (s->txint) {
blueswir180637a62008-01-17 21:07:04 +0000445 set_txint(s);
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100446 }
blueswir1b4ed08e2009-01-12 17:38:28 +0000447 escc_update_irq(s);
blueswir180637a62008-01-17 21:07:04 +0000448}
449
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100450static inline void clr_txint(ESCCChannelState *s)
bellardba3c64f2005-12-05 20:31:52 +0000451{
452 s->txint = 0;
bellarde4a89052006-09-09 11:38:11 +0000453 s->txint_under_svc = 0;
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100454 if (s->chn == escc_chn_a) {
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100455 if (s->wregs[W_MINTR] & MINTR_STATUSHI) {
blueswir112abac82007-12-10 20:05:09 +0000456 s->otherchn->rregs[R_IVEC] = IVEC_HINOINT;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100457 } else {
blueswir112abac82007-12-10 20:05:09 +0000458 s->otherchn->rregs[R_IVEC] = IVEC_LONOINT;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100459 }
blueswir112abac82007-12-10 20:05:09 +0000460 s->rregs[R_INTR] &= ~INTR_TXINTA;
blueswir1b9652ca2007-04-20 19:35:25 +0000461 } else {
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200462 s->otherchn->rregs[R_INTR] &= ~INTR_TXINTB;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100463 if (s->wregs[W_MINTR] & MINTR_STATUSHI) {
blueswir112abac82007-12-10 20:05:09 +0000464 s->rregs[R_IVEC] = IVEC_HINOINT;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100465 } else {
blueswir112abac82007-12-10 20:05:09 +0000466 s->rregs[R_IVEC] = IVEC_LONOINT;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100467 }
blueswir112abac82007-12-10 20:05:09 +0000468 s->otherchn->rregs[R_INTR] &= ~INTR_TXINTB;
blueswir1b9652ca2007-04-20 19:35:25 +0000469 }
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100470 if (s->rxint) {
bellarde4a89052006-09-09 11:38:11 +0000471 set_rxint(s);
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100472 }
blueswir1b4ed08e2009-01-12 17:38:28 +0000473 escc_update_irq(s);
bellardba3c64f2005-12-05 20:31:52 +0000474}
475
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100476static void escc_update_parameters(ESCCChannelState *s)
bellard35db0992006-09-09 12:17:15 +0000477{
478 int speed, parity, data_bits, stop_bits;
479 QEMUSerialSetParams ssp;
480
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100481 if (!qemu_chr_fe_backend_connected(&s->chr) || s->type != escc_serial) {
bellard35db0992006-09-09 12:17:15 +0000482 return;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100483 }
bellard35db0992006-09-09 12:17:15 +0000484
blueswir112abac82007-12-10 20:05:09 +0000485 if (s->wregs[W_TXCTRL1] & TXCTRL1_PAREN) {
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100486 if (s->wregs[W_TXCTRL1] & TXCTRL1_PAREV) {
bellard35db0992006-09-09 12:17:15 +0000487 parity = 'E';
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100488 } else {
bellard35db0992006-09-09 12:17:15 +0000489 parity = 'O';
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100490 }
bellard35db0992006-09-09 12:17:15 +0000491 } else {
492 parity = 'N';
493 }
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100494 if ((s->wregs[W_TXCTRL1] & TXCTRL1_STPMSK) == TXCTRL1_2STOP) {
bellard35db0992006-09-09 12:17:15 +0000495 stop_bits = 2;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100496 } else {
bellard35db0992006-09-09 12:17:15 +0000497 stop_bits = 1;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100498 }
blueswir112abac82007-12-10 20:05:09 +0000499 switch (s->wregs[W_TXCTRL2] & TXCTRL2_BITMSK) {
500 case TXCTRL2_5BITS:
bellard35db0992006-09-09 12:17:15 +0000501 data_bits = 5;
502 break;
blueswir112abac82007-12-10 20:05:09 +0000503 case TXCTRL2_7BITS:
bellard35db0992006-09-09 12:17:15 +0000504 data_bits = 7;
505 break;
blueswir112abac82007-12-10 20:05:09 +0000506 case TXCTRL2_6BITS:
bellard35db0992006-09-09 12:17:15 +0000507 data_bits = 6;
508 break;
509 default:
blueswir112abac82007-12-10 20:05:09 +0000510 case TXCTRL2_8BITS:
bellard35db0992006-09-09 12:17:15 +0000511 data_bits = 8;
512 break;
513 }
blueswir1b4ed08e2009-01-12 17:38:28 +0000514 speed = s->clock / ((s->wregs[W_BRGLO] | (s->wregs[W_BRGHI] << 8)) + 2);
blueswir112abac82007-12-10 20:05:09 +0000515 switch (s->wregs[W_TXCTRL1] & TXCTRL1_CLKMSK) {
516 case TXCTRL1_CLK1X:
bellard35db0992006-09-09 12:17:15 +0000517 break;
blueswir112abac82007-12-10 20:05:09 +0000518 case TXCTRL1_CLK16X:
bellard35db0992006-09-09 12:17:15 +0000519 speed /= 16;
520 break;
blueswir112abac82007-12-10 20:05:09 +0000521 case TXCTRL1_CLK32X:
bellard35db0992006-09-09 12:17:15 +0000522 speed /= 32;
523 break;
524 default:
blueswir112abac82007-12-10 20:05:09 +0000525 case TXCTRL1_CLK64X:
bellard35db0992006-09-09 12:17:15 +0000526 speed /= 64;
527 break;
528 }
529 ssp.speed = speed;
530 ssp.parity = parity;
531 ssp.data_bits = data_bits;
532 ssp.stop_bits = stop_bits;
Blue Swirl30c2f232011-08-07 11:01:05 +0000533 trace_escc_update_parameters(CHN_C(s), speed, parity, data_bits, stop_bits);
Marc-André Lureau5345fdb2016-10-22 12:52:55 +0300534 qemu_chr_fe_ioctl(&s->chr, CHR_IOCTL_SERIAL_SET_PARAMS, &ssp);
bellard35db0992006-09-09 12:17:15 +0000535}
536
Avi Kivitya8170e52012-10-23 12:30:10 +0200537static void escc_mem_write(void *opaque, hwaddr addr,
Avi Kivity23c5e4c2011-08-08 16:09:17 +0300538 uint64_t val, unsigned size)
bellarde80cfcf2004-12-19 23:18:01 +0000539{
Paolo Bonzini3cf63ff2013-06-25 15:02:38 +0200540 ESCCState *serial = opaque;
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100541 ESCCChannelState *s;
bellarde80cfcf2004-12-19 23:18:01 +0000542 uint32_t saddr;
543 int newreg, channel;
544
545 val &= 0xff;
Laurent Vivierb43047a2019-05-26 00:50:04 +0200546 saddr = (addr >> reg_shift(serial)) & 1;
547 channel = (addr >> chn_shift(serial)) & 1;
blueswir1b3ceef22007-06-25 19:56:13 +0000548 s = &serial->chn[channel];
bellarde80cfcf2004-12-19 23:18:01 +0000549 switch (saddr) {
blueswir112abac82007-12-10 20:05:09 +0000550 case SERIAL_CTRL:
Blue Swirl30c2f232011-08-07 11:01:05 +0000551 trace_escc_mem_writeb_ctrl(CHN_C(s), s->reg, val & 0xff);
blueswir1f930d072007-10-06 11:28:21 +0000552 newreg = 0;
553 switch (s->reg) {
blueswir112abac82007-12-10 20:05:09 +0000554 case W_CMD:
555 newreg = val & CMD_PTR_MASK;
556 val &= CMD_CMD_MASK;
blueswir1f930d072007-10-06 11:28:21 +0000557 switch (val) {
blueswir112abac82007-12-10 20:05:09 +0000558 case CMD_HI:
559 newreg |= CMD_HI;
blueswir1f930d072007-10-06 11:28:21 +0000560 break;
blueswir112abac82007-12-10 20:05:09 +0000561 case CMD_CLR_TXINT:
bellardba3c64f2005-12-05 20:31:52 +0000562 clr_txint(s);
blueswir1f930d072007-10-06 11:28:21 +0000563 break;
blueswir112abac82007-12-10 20:05:09 +0000564 case CMD_CLR_IUS:
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200565 if (s->rxint_under_svc) {
566 s->rxint_under_svc = 0;
567 if (s->txint) {
568 set_txint(s);
569 }
570 } else if (s->txint_under_svc) {
571 s->txint_under_svc = 0;
572 }
573 escc_update_irq(s);
blueswir1f930d072007-10-06 11:28:21 +0000574 break;
575 default:
576 break;
577 }
578 break;
Mark Cave-Ayland15a2a1a2021-09-03 12:32:23 +0100579 case W_RXCTRL:
580 s->wregs[s->reg] = val;
581 if (val & RXCTRL_HUNT) {
582 s->rregs[R_STATUS] |= STATUS_SYNC;
583 }
584 break;
585 case W_INTR ... W_IVEC:
blueswir112abac82007-12-10 20:05:09 +0000586 case W_SYNC1 ... W_TXBUF:
587 case W_MISC1 ... W_CLOCK:
588 case W_MISC2 ... W_EXTINT:
blueswir1f930d072007-10-06 11:28:21 +0000589 s->wregs[s->reg] = val;
590 break;
blueswir112abac82007-12-10 20:05:09 +0000591 case W_TXCTRL1:
Mark Cave-Ayland319e89c2021-11-18 18:18:35 +0000592 s->wregs[s->reg] = val;
593 /*
594 * The ESCC datasheet states that SPEC_ALLSENT is always set in
595 * sync mode, and set in async mode when all characters have
596 * cleared the transmitter. Since writes to SERIAL_DATA use the
597 * blocking qemu_chr_fe_write_all() function to write each
598 * character, the guest can never see the state when async data
599 * is in the process of being transmitted so we can set this bit
600 * unconditionally regardless of the state of the W_TXCTRL1 mode
601 * bits.
602 */
603 s->rregs[R_SPEC] |= SPEC_ALLSENT;
604 escc_update_parameters(s);
605 break;
blueswir112abac82007-12-10 20:05:09 +0000606 case W_TXCTRL2:
blueswir1796d8282008-04-12 08:47:27 +0000607 s->wregs[s->reg] = val;
blueswir1b4ed08e2009-01-12 17:38:28 +0000608 escc_update_parameters(s);
blueswir1796d8282008-04-12 08:47:27 +0000609 break;
blueswir112abac82007-12-10 20:05:09 +0000610 case W_BRGLO:
611 case W_BRGHI:
blueswir1f930d072007-10-06 11:28:21 +0000612 s->wregs[s->reg] = val;
blueswir1796d8282008-04-12 08:47:27 +0000613 s->rregs[s->reg] = val;
blueswir1b4ed08e2009-01-12 17:38:28 +0000614 escc_update_parameters(s);
blueswir1f930d072007-10-06 11:28:21 +0000615 break;
blueswir112abac82007-12-10 20:05:09 +0000616 case W_MINTR:
617 switch (val & MINTR_RST_MASK) {
blueswir1f930d072007-10-06 11:28:21 +0000618 case 0:
619 default:
620 break;
blueswir112abac82007-12-10 20:05:09 +0000621 case MINTR_RST_B:
Mark Cave-Ayland8e8aa962021-09-03 12:32:17 +0100622 trace_escc_soft_reset_chn(CHN_C(&serial->chn[0]));
623 escc_soft_reset_chn(&serial->chn[0]);
blueswir1f930d072007-10-06 11:28:21 +0000624 return;
blueswir112abac82007-12-10 20:05:09 +0000625 case MINTR_RST_A:
Mark Cave-Ayland8e8aa962021-09-03 12:32:17 +0100626 trace_escc_soft_reset_chn(CHN_C(&serial->chn[1]));
627 escc_soft_reset_chn(&serial->chn[1]);
blueswir1f930d072007-10-06 11:28:21 +0000628 return;
blueswir112abac82007-12-10 20:05:09 +0000629 case MINTR_RST_ALL:
Mark Cave-Aylandbf4fbb62021-09-03 12:32:18 +0100630 trace_escc_hard_reset();
631 escc_hard_reset_chn(&serial->chn[0]);
632 escc_hard_reset_chn(&serial->chn[1]);
blueswir1f930d072007-10-06 11:28:21 +0000633 return;
634 }
635 break;
636 default:
637 break;
638 }
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100639 if (s->reg == 0) {
blueswir1f930d072007-10-06 11:28:21 +0000640 s->reg = newreg;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100641 } else {
blueswir1f930d072007-10-06 11:28:21 +0000642 s->reg = 0;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100643 }
blueswir1f930d072007-10-06 11:28:21 +0000644 break;
blueswir112abac82007-12-10 20:05:09 +0000645 case SERIAL_DATA:
Blue Swirl30c2f232011-08-07 11:01:05 +0000646 trace_escc_mem_writeb_data(CHN_C(s), val);
Stephen Checkoway6b99a112019-04-19 11:40:41 -0400647 /*
648 * Lower the irq when data is written to the Tx buffer and no other
649 * interrupts are currently pending. The irq will be raised again once
650 * the Tx buffer becomes empty below.
651 */
652 s->txint = 0;
653 escc_update_irq(s);
blueswir196c4f562007-08-11 07:54:26 +0000654 s->tx = val;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100655 if (s->wregs[W_TXCTRL2] & TXCTRL2_TXEN) { /* tx enabled */
Thomas Huth02388b52023-07-16 17:35:19 +0200656 if (s->wregs[W_MISC2] & MISC2_LCL_LOOP) {
657 serial_receive_byte(s, s->tx);
658 } else if (qemu_chr_fe_backend_connected(&s->chr)) {
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100659 /*
660 * XXX this blocks entire thread. Rewrite to use
661 * qemu_chr_fe_write and background I/O callbacks
662 */
Marc-André Lureau5345fdb2016-10-22 12:52:55 +0300663 qemu_chr_fe_write_all(&s->chr, &s->tx, 1);
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100664 } else if (s->type == escc_kbd && !s->disabled) {
blueswir1f930d072007-10-06 11:28:21 +0000665 handle_kbd_command(s, val);
666 }
667 }
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100668 s->rregs[R_STATUS] |= STATUS_TXEMPTY; /* Tx buffer empty */
669 s->rregs[R_SPEC] |= SPEC_ALLSENT; /* All sent */
blueswir196c4f562007-08-11 07:54:26 +0000670 set_txint(s);
blueswir1f930d072007-10-06 11:28:21 +0000671 break;
bellarde80cfcf2004-12-19 23:18:01 +0000672 default:
blueswir1f930d072007-10-06 11:28:21 +0000673 break;
bellarde80cfcf2004-12-19 23:18:01 +0000674 }
675}
676
Avi Kivitya8170e52012-10-23 12:30:10 +0200677static uint64_t escc_mem_read(void *opaque, hwaddr addr,
Avi Kivity23c5e4c2011-08-08 16:09:17 +0300678 unsigned size)
bellarde80cfcf2004-12-19 23:18:01 +0000679{
Paolo Bonzini3cf63ff2013-06-25 15:02:38 +0200680 ESCCState *serial = opaque;
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100681 ESCCChannelState *s;
bellarde80cfcf2004-12-19 23:18:01 +0000682 uint32_t saddr;
683 uint32_t ret;
684 int channel;
685
Laurent Vivierb43047a2019-05-26 00:50:04 +0200686 saddr = (addr >> reg_shift(serial)) & 1;
687 channel = (addr >> chn_shift(serial)) & 1;
blueswir1b3ceef22007-06-25 19:56:13 +0000688 s = &serial->chn[channel];
bellarde80cfcf2004-12-19 23:18:01 +0000689 switch (saddr) {
blueswir112abac82007-12-10 20:05:09 +0000690 case SERIAL_CTRL:
Blue Swirl30c2f232011-08-07 11:01:05 +0000691 trace_escc_mem_readb_ctrl(CHN_C(s), s->reg, s->rregs[s->reg]);
blueswir1f930d072007-10-06 11:28:21 +0000692 ret = s->rregs[s->reg];
693 s->reg = 0;
694 return ret;
blueswir112abac82007-12-10 20:05:09 +0000695 case SERIAL_DATA:
696 s->rregs[R_STATUS] &= ~STATUS_RXAV;
bellardba3c64f2005-12-05 20:31:52 +0000697 clr_rxint(s);
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100698 if (s->type == escc_kbd || s->type == escc_mouse) {
blueswir1f930d072007-10-06 11:28:21 +0000699 ret = get_queue(s);
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100700 } else {
blueswir1f930d072007-10-06 11:28:21 +0000701 ret = s->rx;
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100702 }
Blue Swirl30c2f232011-08-07 11:01:05 +0000703 trace_escc_mem_readb_data(CHN_C(s), ret);
Marc-André Lureaufa394ed2016-10-22 12:52:59 +0300704 qemu_chr_fe_accept_input(&s->chr);
blueswir1f930d072007-10-06 11:28:21 +0000705 return ret;
bellarde80cfcf2004-12-19 23:18:01 +0000706 default:
blueswir1f930d072007-10-06 11:28:21 +0000707 break;
bellarde80cfcf2004-12-19 23:18:01 +0000708 }
709 return 0;
710}
711
Avi Kivity23c5e4c2011-08-08 16:09:17 +0300712static const MemoryRegionOps escc_mem_ops = {
713 .read = escc_mem_read,
714 .write = escc_mem_write,
715 .endianness = DEVICE_NATIVE_ENDIAN,
716 .valid = {
717 .min_access_size = 1,
718 .max_access_size = 1,
719 },
720};
721
bellarde80cfcf2004-12-19 23:18:01 +0000722static int serial_can_receive(void *opaque)
723{
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100724 ESCCChannelState *s = opaque;
bellarde4a89052006-09-09 11:38:11 +0000725 int ret;
726
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100727 if (((s->wregs[W_RXCTRL] & RXCTRL_RXEN) == 0) /* Rx not enabled */
728 || ((s->rregs[R_STATUS] & STATUS_RXAV) == STATUS_RXAV)) {
729 /* char already available */
blueswir1f930d072007-10-06 11:28:21 +0000730 ret = 0;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100731 } else {
blueswir1f930d072007-10-06 11:28:21 +0000732 ret = 1;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100733 }
bellarde4a89052006-09-09 11:38:11 +0000734 return ret;
bellarde80cfcf2004-12-19 23:18:01 +0000735}
736
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100737static void serial_receive_byte(ESCCChannelState *s, int ch)
bellarde80cfcf2004-12-19 23:18:01 +0000738{
Blue Swirl30c2f232011-08-07 11:01:05 +0000739 trace_escc_serial_receive_byte(CHN_C(s), ch);
blueswir112abac82007-12-10 20:05:09 +0000740 s->rregs[R_STATUS] |= STATUS_RXAV;
bellarde80cfcf2004-12-19 23:18:01 +0000741 s->rx = ch;
bellardba3c64f2005-12-05 20:31:52 +0000742 set_rxint(s);
bellarde80cfcf2004-12-19 23:18:01 +0000743}
744
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100745static void serial_receive_break(ESCCChannelState *s)
bellarde80cfcf2004-12-19 23:18:01 +0000746{
blueswir112abac82007-12-10 20:05:09 +0000747 s->rregs[R_STATUS] |= STATUS_BRK;
blueswir1b4ed08e2009-01-12 17:38:28 +0000748 escc_update_irq(s);
bellarde80cfcf2004-12-19 23:18:01 +0000749}
750
751static void serial_receive1(void *opaque, const uint8_t *buf, int size)
752{
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100753 ESCCChannelState *s = opaque;
bellarde80cfcf2004-12-19 23:18:01 +0000754 serial_receive_byte(s, buf[0]);
755}
756
Philippe Mathieu-Daudé083b2662019-12-18 18:20:09 +0100757static void serial_event(void *opaque, QEMUChrEvent event)
bellarde80cfcf2004-12-19 23:18:01 +0000758{
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100759 ESCCChannelState *s = opaque;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100760 if (event == CHR_EVENT_BREAK) {
bellarde80cfcf2004-12-19 23:18:01 +0000761 serial_receive_break(s);
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100762 }
bellarde80cfcf2004-12-19 23:18:01 +0000763}
764
Blue Swirlbdb78ca2009-10-24 16:07:10 +0000765static const VMStateDescription vmstate_escc_chn = {
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100766 .name = "escc_chn",
Blue Swirlbdb78ca2009-10-24 16:07:10 +0000767 .version_id = 2,
768 .minimum_version_id = 1,
Richard Henderson2f6cab02023-12-21 14:16:06 +1100769 .fields = (const VMStateField[]) {
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100770 VMSTATE_UINT32(vmstate_dummy, ESCCChannelState),
771 VMSTATE_UINT32(reg, ESCCChannelState),
772 VMSTATE_UINT32(rxint, ESCCChannelState),
773 VMSTATE_UINT32(txint, ESCCChannelState),
774 VMSTATE_UINT32(rxint_under_svc, ESCCChannelState),
775 VMSTATE_UINT32(txint_under_svc, ESCCChannelState),
776 VMSTATE_UINT8(rx, ESCCChannelState),
777 VMSTATE_UINT8(tx, ESCCChannelState),
778 VMSTATE_BUFFER(wregs, ESCCChannelState),
779 VMSTATE_BUFFER(rregs, ESCCChannelState),
Blue Swirlbdb78ca2009-10-24 16:07:10 +0000780 VMSTATE_END_OF_LIST()
bellarde4a89052006-09-09 11:38:11 +0000781 }
Blue Swirlbdb78ca2009-10-24 16:07:10 +0000782};
bellarde80cfcf2004-12-19 23:18:01 +0000783
Blue Swirlbdb78ca2009-10-24 16:07:10 +0000784static const VMStateDescription vmstate_escc = {
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100785 .name = "escc",
Blue Swirlbdb78ca2009-10-24 16:07:10 +0000786 .version_id = 2,
787 .minimum_version_id = 1,
Richard Henderson2f6cab02023-12-21 14:16:06 +1100788 .fields = (const VMStateField[]) {
Paolo Bonzini3cf63ff2013-06-25 15:02:38 +0200789 VMSTATE_STRUCT_ARRAY(chn, ESCCState, 2, 2, vmstate_escc_chn,
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100790 ESCCChannelState),
Blue Swirlbdb78ca2009-10-24 16:07:10 +0000791 VMSTATE_END_OF_LIST()
792 }
793};
bellarde80cfcf2004-12-19 23:18:01 +0000794
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100795static void sunkbd_handle_event(DeviceState *dev, QemuConsole *src,
796 InputEvent *evt)
bellarde80cfcf2004-12-19 23:18:01 +0000797{
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100798 ESCCChannelState *s = (ESCCChannelState *)dev;
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100799 int qcode, keycode;
Eric Blakeb5a1b442016-03-03 09:16:49 -0700800 InputKeyEvent *key;
bellard8be1f5c2005-04-06 20:42:35 +0000801
Eric Blake568c73a2015-10-26 16:34:58 -0600802 assert(evt->type == INPUT_EVENT_KIND_KEY);
Eric Blake32bafa82016-03-17 16:48:37 -0600803 key = evt->u.key.data;
Eric Blakeb5a1b442016-03-03 09:16:49 -0700804 qcode = qemu_input_key_value_to_qcode(key->key);
Markus Armbruster977c7362017-08-24 10:46:08 +0200805 trace_escc_sunkbd_event_in(qcode, QKeyCode_str(qcode),
Eric Blakeb5a1b442016-03-03 09:16:49 -0700806 key->down);
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100807
808 if (qcode == Q_KEY_CODE_CAPS_LOCK) {
Eric Blakeb5a1b442016-03-03 09:16:49 -0700809 if (key->down) {
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100810 s->caps_lock_mode ^= 1;
811 if (s->caps_lock_mode == 2) {
812 return; /* Drop second press */
813 }
814 } else {
815 s->caps_lock_mode ^= 2;
816 if (s->caps_lock_mode == 3) {
817 return; /* Drop first release */
818 }
819 }
blueswir143febf42007-09-21 19:09:35 +0000820 }
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100821
822 if (qcode == Q_KEY_CODE_NUM_LOCK) {
Eric Blakeb5a1b442016-03-03 09:16:49 -0700823 if (key->down) {
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100824 s->num_lock_mode ^= 1;
825 if (s->num_lock_mode == 2) {
826 return; /* Drop second press */
827 }
828 } else {
829 s->num_lock_mode ^= 2;
830 if (s->num_lock_mode == 3) {
831 return; /* Drop first release */
832 }
833 }
blueswir143febf42007-09-21 19:09:35 +0000834 }
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100835
Daniel P. Berrangé9aaf11e2022-03-31 13:24:14 +0100836 if (qcode >= qemu_input_map_qcode_to_sun_len) {
Daniel P. Berrangee709a612018-01-17 16:41:16 +0000837 return;
838 }
839
840 keycode = qemu_input_map_qcode_to_sun[qcode];
Eric Blakeb5a1b442016-03-03 09:16:49 -0700841 if (!key->down) {
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100842 keycode |= 0x80;
843 }
844 trace_escc_sunkbd_event_out(keycode);
845 put_queue(s, keycode);
bellard8be1f5c2005-04-06 20:42:35 +0000846}
847
Philippe Mathieu-Daudéb1be65f2023-10-17 15:05:00 +0200848static const QemuInputHandler sunkbd_handler = {
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100849 .name = "sun keyboard",
850 .mask = INPUT_EVENT_MASK_KEY,
851 .event = sunkbd_handle_event,
852};
853
Henrik Carlqvist6b90a4c2023-06-23 20:30:07 +0200854static uint8_t sunkbd_layout_dip_switch(const char *kbd_layout)
855{
856 /* Return the value of the dip-switches in a SUN Type 5 keyboard */
857 static uint8_t ret = 0xff;
858
859 if ((ret == 0xff) && kbd_layout) {
860 int i;
861 struct layout_values {
862 const char *lang;
863 uint8_t dip;
864 } languages[] =
865 /*
866 * Dip values from table 3-16 Layouts for Type 4, 5 and 5c Keyboards
867 */
868 {
869 {"en-us", 0x21}, /* U.S.A. (US5.kt) */
870 /* 0x22 is some other US (US_UNIX5.kt) */
871 {"fr", 0x23}, /* France (France5.kt) */
872 {"da", 0x24}, /* Denmark (Denmark5.kt) */
873 {"de", 0x25}, /* Germany (Germany5.kt) */
874 {"it", 0x26}, /* Italy (Italy5.kt) */
875 {"nl", 0x27}, /* The Netherlands (Netherland5.kt) */
876 {"no", 0x28}, /* Norway (Norway.kt) */
877 {"pt", 0x29}, /* Portugal (Portugal5.kt) */
878 {"es", 0x2a}, /* Spain (Spain5.kt) */
879 {"sv", 0x2b}, /* Sweden (Sweden5.kt) */
880 {"fr-ch", 0x2c}, /* Switzerland/French (Switzer_Fr5.kt) */
881 {"de-ch", 0x2d}, /* Switzerland/German (Switzer_Ge5.kt) */
882 {"en-gb", 0x2e}, /* Great Britain (UK5.kt) */
883 {"ko", 0x2f}, /* Korea (Korea5.kt) */
884 {"tw", 0x30}, /* Taiwan (Taiwan5.kt) */
885 {"ja", 0x31}, /* Japan (Japan5.kt) */
886 {"fr-ca", 0x32}, /* Canada/French (Canada_Fr5.kt) */
887 {"hu", 0x33}, /* Hungary (Hungary5.kt) */
888 {"pl", 0x34}, /* Poland (Poland5.kt) */
889 {"cz", 0x35}, /* Czech (Czech5.kt) */
890 {"ru", 0x36}, /* Russia (Russia5.kt) */
891 {"lv", 0x37}, /* Latvia (Latvia5.kt) */
892 {"tr", 0x38}, /* Turkey-Q5 (TurkeyQ5.kt) */
893 {"gr", 0x39}, /* Greece (Greece5.kt) */
894 {"ar", 0x3a}, /* Arabic (Arabic5.kt) */
895 {"lt", 0x3b}, /* Lithuania (Lithuania5.kt) */
896 {"nl-be", 0x3c}, /* Belgium (Belgian5.kt) */
897 {"be", 0x3c}, /* Belgium (Belgian5.kt) */
898 };
899
900 for (i = 0;
901 i < sizeof(languages) / sizeof(struct layout_values);
902 i++) {
903 if (!strcmp(kbd_layout, languages[i].lang)) {
904 ret = languages[i].dip;
905 return ret;
906 }
907 }
908
909 /* Found no known language code */
910 if ((kbd_layout[0] >= '0') && (kbd_layout[0] <= '9')) {
911 unsigned int tmp;
912
913 /* As a fallback we also accept numeric dip switch value */
914 if (!qemu_strtoui(kbd_layout, NULL, 0, &tmp)) {
915 ret = tmp;
916 }
917 }
918 }
919
920 if (ret == 0xff) {
921 /* Final fallback if keyboard_layout was not set or recognized */
922 ret = 0x21; /* en-us layout */
923 }
924 return ret;
925}
926
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100927static void handle_kbd_command(ESCCChannelState *s, int val)
bellard8be1f5c2005-04-06 20:42:35 +0000928{
Blue Swirl30c2f232011-08-07 11:01:05 +0000929 trace_escc_kbd_command(val);
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100930 if (s->led_mode) { /* Ignore led byte */
blueswir143febf42007-09-21 19:09:35 +0000931 s->led_mode = 0;
932 return;
933 }
bellard8be1f5c2005-04-06 20:42:35 +0000934 switch (val) {
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100935 case 1: /* Reset, return type code */
blueswir167deb562007-04-18 19:21:38 +0000936 clear_queue(s);
blueswir1f930d072007-10-06 11:28:21 +0000937 put_queue(s, 0xff);
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100938 put_queue(s, 4); /* Type 4 */
blueswir1f930d072007-10-06 11:28:21 +0000939 put_queue(s, 0x7f);
940 break;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100941 case 0xe: /* Set leds */
blueswir143febf42007-09-21 19:09:35 +0000942 s->led_mode = 1;
943 break;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100944 case 7: /* Query layout */
blueswir167deb562007-04-18 19:21:38 +0000945 case 0xf:
946 clear_queue(s);
blueswir1f930d072007-10-06 11:28:21 +0000947 put_queue(s, 0xfe);
Henrik Carlqvist6b90a4c2023-06-23 20:30:07 +0200948 put_queue(s, sunkbd_layout_dip_switch(s->sunkbd_layout));
blueswir1f930d072007-10-06 11:28:21 +0000949 break;
bellard8be1f5c2005-04-06 20:42:35 +0000950 default:
blueswir1f930d072007-10-06 11:28:21 +0000951 break;
bellard8be1f5c2005-04-06 20:42:35 +0000952 }
bellarde80cfcf2004-12-19 23:18:01 +0000953}
954
ths5fafdf22007-09-16 21:08:06 +0000955static void sunmouse_event(void *opaque,
bellarde80cfcf2004-12-19 23:18:01 +0000956 int dx, int dy, int dz, int buttons_state)
957{
Laurent Vivier2cc75c32018-02-14 07:35:58 +0100958 ESCCChannelState *s = opaque;
bellarde80cfcf2004-12-19 23:18:01 +0000959 int ch;
960
Blue Swirl30c2f232011-08-07 11:01:05 +0000961 trace_escc_sunmouse_event(dx, dy, buttons_state);
bellard715748f2006-09-09 11:35:47 +0000962 ch = 0x80 | 0x7; /* protocol start byte, no buttons pressed */
963
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100964 if (buttons_state & MOUSE_EVENT_LBUTTON) {
bellard715748f2006-09-09 11:35:47 +0000965 ch ^= 0x4;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100966 }
967 if (buttons_state & MOUSE_EVENT_MBUTTON) {
bellard715748f2006-09-09 11:35:47 +0000968 ch ^= 0x2;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100969 }
970 if (buttons_state & MOUSE_EVENT_RBUTTON) {
bellard715748f2006-09-09 11:35:47 +0000971 ch ^= 0x1;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100972 }
bellard715748f2006-09-09 11:35:47 +0000973
974 put_queue(s, ch);
975
976 ch = dx;
977
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100978 if (ch > 127) {
Michael S. Tsirkina0d98a72009-09-30 19:43:55 +0200979 ch = 127;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100980 } else if (ch < -127) {
Michael S. Tsirkina0d98a72009-09-30 19:43:55 +0200981 ch = -127;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100982 }
bellard715748f2006-09-09 11:35:47 +0000983
984 put_queue(s, ch & 0xff);
985
986 ch = -dy;
987
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100988 if (ch > 127) {
Michael S. Tsirkin084bd072009-09-30 18:56:44 +0000989 ch = 127;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100990 } else if (ch < -127) {
Michael S. Tsirkin084bd072009-09-30 18:56:44 +0000991 ch = -127;
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100992 }
bellard715748f2006-09-09 11:35:47 +0000993
994 put_queue(s, ch & 0xff);
995
Mark Cave-Ayland0e042022021-09-03 12:32:15 +0100996 /* MSC protocol specifies two extra motion bytes */
bellard715748f2006-09-09 11:35:47 +0000997
998 put_queue(s, 0);
999 put_queue(s, 0);
bellarde80cfcf2004-12-19 23:18:01 +00001000}
1001
xiaoqiang zhaoe7c913692016-05-25 14:39:00 +08001002static void escc_init1(Object *obj)
Blue Swirl6c319c82009-07-15 08:51:32 +00001003{
xiaoqiang zhaoe7c913692016-05-25 14:39:00 +08001004 ESCCState *s = ESCC(obj);
1005 SysBusDevice *dev = SYS_BUS_DEVICE(obj);
Blue Swirl6c319c82009-07-15 08:51:32 +00001006 unsigned int i;
Blue Swirl6c319c82009-07-15 08:51:32 +00001007
bellard8be1f5c2005-04-06 20:42:35 +00001008 for (i = 0; i < 2; i++) {
Blue Swirl6c319c82009-07-15 08:51:32 +00001009 sysbus_init_irq(dev, &s->chn[i].irq);
blueswir1f930d072007-10-06 11:28:21 +00001010 s->chn[i].chn = 1 - i;
xiaoqiang zhaoe7c913692016-05-25 14:39:00 +08001011 }
1012 s->chn[0].otherchn = &s->chn[1];
1013 s->chn[1].otherchn = &s->chn[0];
1014
xiaoqiang zhaoe7c913692016-05-25 14:39:00 +08001015 sysbus_init_mmio(dev, &s->mmio);
1016}
1017
1018static void escc_realize(DeviceState *dev, Error **errp)
1019{
1020 ESCCState *s = ESCC(dev);
1021 unsigned int i;
1022
xiaoqiang zhao4b3eec92016-06-01 15:58:18 +08001023 s->chn[0].disabled = s->disabled;
1024 s->chn[1].disabled = s->disabled;
1025
1026 memory_region_init_io(&s->mmio, OBJECT(dev), &escc_mem_ops, s, "escc",
1027 ESCC_SIZE << s->it_shift);
1028
xiaoqiang zhaoe7c913692016-05-25 14:39:00 +08001029 for (i = 0; i < 2; i++) {
Anton Nefedov30650702017-07-06 15:08:52 +03001030 if (qemu_chr_fe_backend_connected(&s->chn[i].chr)) {
xiaoqiang zhao4b3eec92016-06-01 15:58:18 +08001031 s->chn[i].clock = s->frequency / 2;
Marc-André Lureau5345fdb2016-10-22 12:52:55 +03001032 qemu_chr_fe_set_handlers(&s->chn[i].chr, serial_can_receive,
Anton Nefedov81517ba2017-07-06 15:08:49 +03001033 serial_receive1, serial_event, NULL,
Marc-André Lureau39ab61c2016-10-22 12:53:03 +03001034 &s->chn[i], NULL, true);
Blue Swirl6c319c82009-07-15 08:51:32 +00001035 }
bellard8be1f5c2005-04-06 20:42:35 +00001036 }
bellarde80cfcf2004-12-19 23:18:01 +00001037
Laurent Vivier2cc75c32018-02-14 07:35:58 +01001038 if (s->chn[0].type == escc_mouse) {
Blue Swirl6c319c82009-07-15 08:51:32 +00001039 qemu_add_mouse_event_handler(sunmouse_event, &s->chn[0], 0,
1040 "QEMU Sun Mouse");
1041 }
Laurent Vivier2cc75c32018-02-14 07:35:58 +01001042 if (s->chn[1].type == escc_kbd) {
Gerd Hoffmann65e75452014-03-25 13:16:21 +01001043 s->chn[1].hs = qemu_input_handler_register((DeviceState *)(&s->chn[1]),
1044 &sunkbd_handler);
Blue Swirl6c319c82009-07-15 08:51:32 +00001045 }
bellarde80cfcf2004-12-19 23:18:01 +00001046}
Blue Swirl6c319c82009-07-15 08:51:32 +00001047
Anthony Liguori999e12b2012-01-24 13:12:29 -06001048static Property escc_properties[] = {
Paolo Bonzini3cf63ff2013-06-25 15:02:38 +02001049 DEFINE_PROP_UINT32("frequency", ESCCState, frequency, 0),
1050 DEFINE_PROP_UINT32("it_shift", ESCCState, it_shift, 0),
Laurent Vivierb43047a2019-05-26 00:50:04 +02001051 DEFINE_PROP_BOOL("bit_swap", ESCCState, bit_swap, false),
Paolo Bonzini3cf63ff2013-06-25 15:02:38 +02001052 DEFINE_PROP_UINT32("disabled", ESCCState, disabled, 0),
1053 DEFINE_PROP_UINT32("chnBtype", ESCCState, chn[0].type, 0),
1054 DEFINE_PROP_UINT32("chnAtype", ESCCState, chn[1].type, 0),
1055 DEFINE_PROP_CHR("chrB", ESCCState, chn[0].chr),
1056 DEFINE_PROP_CHR("chrA", ESCCState, chn[1].chr),
Henrik Carlqvist6b90a4c2023-06-23 20:30:07 +02001057 DEFINE_PROP_STRING("chnA-sunkbd-layout", ESCCState, chn[1].sunkbd_layout),
Anthony Liguori999e12b2012-01-24 13:12:29 -06001058 DEFINE_PROP_END_OF_LIST(),
1059};
1060
1061static void escc_class_init(ObjectClass *klass, void *data)
1062{
Anthony Liguori39bffca2011-12-07 21:34:16 -06001063 DeviceClass *dc = DEVICE_CLASS(klass);
Anthony Liguori999e12b2012-01-24 13:12:29 -06001064
Anthony Liguori39bffca2011-12-07 21:34:16 -06001065 dc->reset = escc_reset;
xiaoqiang zhaoe7c913692016-05-25 14:39:00 +08001066 dc->realize = escc_realize;
Anthony Liguori39bffca2011-12-07 21:34:16 -06001067 dc->vmsd = &vmstate_escc;
Marc-André Lureau4f67d302020-01-10 19:30:32 +04001068 device_class_set_props(dc, escc_properties);
Laurent Vivierf8d4c072015-09-26 18:22:05 +02001069 set_bit(DEVICE_CATEGORY_INPUT, dc->categories);
Anthony Liguori999e12b2012-01-24 13:12:29 -06001070}
1071
Andreas Färber8c43a6f2013-01-10 16:19:07 +01001072static const TypeInfo escc_info = {
Andreas Färber81069b22013-07-24 21:30:40 +02001073 .name = TYPE_ESCC,
Anthony Liguori39bffca2011-12-07 21:34:16 -06001074 .parent = TYPE_SYS_BUS_DEVICE,
Paolo Bonzini3cf63ff2013-06-25 15:02:38 +02001075 .instance_size = sizeof(ESCCState),
xiaoqiang zhaoe7c913692016-05-25 14:39:00 +08001076 .instance_init = escc_init1,
Anthony Liguori39bffca2011-12-07 21:34:16 -06001077 .class_init = escc_class_init,
Blue Swirl6c319c82009-07-15 08:51:32 +00001078};
1079
Andreas Färber83f7d432012-02-09 15:20:55 +01001080static void escc_register_types(void)
Blue Swirl6c319c82009-07-15 08:51:32 +00001081{
Anthony Liguori39bffca2011-12-07 21:34:16 -06001082 type_register_static(&escc_info);
Blue Swirl6c319c82009-07-15 08:51:32 +00001083}
1084
Andreas Färber83f7d432012-02-09 15:20:55 +01001085type_init(escc_register_types)