blob: aa1739762bb59c494bb4a92d585398630219d048 [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"
Paolo Bonzini83c9f4c2013-02-04 15:40:22 +010026#include "hw/hw.h"
27#include "hw/sysbus.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +010028#include "hw/char/escc.h"
Paolo Bonzinidccfcd02013-04-08 16:55:25 +020029#include "sysemu/char.h"
Paolo Bonzini28ecbae2012-11-28 12:06:30 +010030#include "ui/console.h"
Gerd Hoffmann65e75452014-03-25 13:16:21 +010031#include "ui/input.h"
Blue Swirl30c2f232011-08-07 11:01:05 +000032#include "trace.h"
bellarde80cfcf2004-12-19 23:18:01 +000033
34/*
Blue Swirl09330e92009-10-24 16:09:01 +000035 * Chipset docs:
36 * "Z80C30/Z85C30/Z80230/Z85230/Z85233 SCC/ESCC User Manual",
37 * http://www.zilog.com/docs/serial/scc_escc_um.pdf
38 *
blueswir1b4ed08e2009-01-12 17:38:28 +000039 * On Sparc32 this is the serial port, mouse and keyboard part of chip STP2001
bellarde80cfcf2004-12-19 23:18:01 +000040 * (Slave I/O), also produced as NCR89C105. See
41 * http://www.ibiblio.org/pub/historic-linux/early-ports/Sparc/NCR/NCR89C105.txt
ths5fafdf22007-09-16 21:08:06 +000042 *
bellarde80cfcf2004-12-19 23:18:01 +000043 * The serial ports implement full AMD AM8530 or Zilog Z8530 chips,
44 * mouse and keyboard ports don't implement all functions and they are
45 * only asynchronous. There is no DMA.
46 *
blueswir1b4ed08e2009-01-12 17:38:28 +000047 * Z85C30 is also used on PowerMacs. There are some small differences
48 * between Sparc version (sunzilog) and PowerMac (pmac):
49 * Offset between control and data registers
50 * There is some kind of lockup bug, but we can ignore it
51 * CTS is inverted
52 * DMA on pmac using DBDMA chip
53 * pmac can do IRDA and faster rates, sunzilog can only do 38400
54 * pmac baud rate generator clock is 3.6864 MHz, sunzilog 4.9152 MHz
bellarde80cfcf2004-12-19 23:18:01 +000055 */
56
bellard715748f2006-09-09 11:35:47 +000057/*
58 * Modifications:
59 * 2006-Aug-10 Igor Kovalenko : Renamed KBDQueue to SERIOQueue, implemented
60 * serial mouse queue.
61 * Implemented serial mouse protocol.
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +020062 *
63 * 2010-May-23 Artyom Tarasenko: Reworked IUS logic
bellard715748f2006-09-09 11:35:47 +000064 */
65
bellard8be1f5c2005-04-06 20:42:35 +000066typedef enum {
67 chn_a, chn_b,
Blue Swirl8e39a032010-02-07 08:05:47 +000068} ChnID;
bellard8be1f5c2005-04-06 20:42:35 +000069
bellard35db0992006-09-09 12:17:15 +000070#define CHN_C(s) ((s)->chn == chn_b? 'b' : 'a')
71
bellard8be1f5c2005-04-06 20:42:35 +000072typedef enum {
73 ser, kbd, mouse,
Blue Swirl8e39a032010-02-07 08:05:47 +000074} ChnType;
bellard8be1f5c2005-04-06 20:42:35 +000075
bellard715748f2006-09-09 11:35:47 +000076#define SERIO_QUEUE_SIZE 256
bellard8be1f5c2005-04-06 20:42:35 +000077
78typedef struct {
bellard715748f2006-09-09 11:35:47 +000079 uint8_t data[SERIO_QUEUE_SIZE];
bellard8be1f5c2005-04-06 20:42:35 +000080 int rptr, wptr, count;
bellard715748f2006-09-09 11:35:47 +000081} SERIOQueue;
bellard8be1f5c2005-04-06 20:42:35 +000082
blueswir112abac82007-12-10 20:05:09 +000083#define SERIAL_REGS 16
bellarde80cfcf2004-12-19 23:18:01 +000084typedef struct ChannelState {
pbrookd537cf62007-04-07 18:14:41 +000085 qemu_irq irq;
blueswir122548762008-05-10 10:12:00 +000086 uint32_t rxint, txint, rxint_under_svc, txint_under_svc;
bellard8be1f5c2005-04-06 20:42:35 +000087 struct ChannelState *otherchn;
Blue Swirld7b95532011-08-07 19:55:23 +000088 uint32_t reg;
89 uint8_t wregs[SERIAL_REGS], rregs[SERIAL_REGS];
bellard715748f2006-09-09 11:35:47 +000090 SERIOQueue queue;
bellarde80cfcf2004-12-19 23:18:01 +000091 CharDriverState *chr;
blueswir1bbbb2f02007-09-23 11:48:47 +000092 int e0_mode, led_mode, caps_lock_mode, num_lock_mode;
blueswir1577390f2007-12-04 20:58:31 +000093 int disabled;
blueswir1b4ed08e2009-01-12 17:38:28 +000094 int clock;
Blue Swirlbdb78ca2009-10-24 16:07:10 +000095 uint32_t vmstate_dummy;
Blue Swirld7b95532011-08-07 19:55:23 +000096 ChnID chn; // this channel, A (base+4) or B (base+0)
97 ChnType type;
98 uint8_t rx, tx;
Gerd Hoffmann65e75452014-03-25 13:16:21 +010099 QemuInputHandlerState *hs;
bellarde80cfcf2004-12-19 23:18:01 +0000100} ChannelState;
101
Andreas Färber81069b22013-07-24 21:30:40 +0200102#define ESCC(obj) OBJECT_CHECK(ESCCState, (obj), TYPE_ESCC)
103
Paolo Bonzini3cf63ff2013-06-25 15:02:38 +0200104typedef struct ESCCState {
Andreas Färber81069b22013-07-24 21:30:40 +0200105 SysBusDevice parent_obj;
106
bellarde80cfcf2004-12-19 23:18:01 +0000107 struct ChannelState chn[2];
Gerd Hoffmannec02f7d2009-08-03 17:35:23 +0200108 uint32_t it_shift;
Avi Kivity23c5e4c2011-08-08 16:09:17 +0300109 MemoryRegion mmio;
Gerd Hoffmannee6847d2009-07-15 13:43:31 +0200110 uint32_t disabled;
111 uint32_t frequency;
Paolo Bonzini3cf63ff2013-06-25 15:02:38 +0200112} ESCCState;
bellarde80cfcf2004-12-19 23:18:01 +0000113
blueswir112abac82007-12-10 20:05:09 +0000114#define SERIAL_CTRL 0
115#define SERIAL_DATA 1
116
117#define W_CMD 0
118#define CMD_PTR_MASK 0x07
119#define CMD_CMD_MASK 0x38
120#define CMD_HI 0x08
121#define CMD_CLR_TXINT 0x28
122#define CMD_CLR_IUS 0x38
123#define W_INTR 1
124#define INTR_INTALL 0x01
125#define INTR_TXINT 0x02
126#define INTR_RXMODEMSK 0x18
127#define INTR_RXINT1ST 0x08
128#define INTR_RXINTALL 0x10
129#define W_IVEC 2
130#define W_RXCTRL 3
131#define RXCTRL_RXEN 0x01
132#define W_TXCTRL1 4
133#define TXCTRL1_PAREN 0x01
134#define TXCTRL1_PAREV 0x02
135#define TXCTRL1_1STOP 0x04
136#define TXCTRL1_1HSTOP 0x08
137#define TXCTRL1_2STOP 0x0c
138#define TXCTRL1_STPMSK 0x0c
139#define TXCTRL1_CLK1X 0x00
140#define TXCTRL1_CLK16X 0x40
141#define TXCTRL1_CLK32X 0x80
142#define TXCTRL1_CLK64X 0xc0
143#define TXCTRL1_CLKMSK 0xc0
144#define W_TXCTRL2 5
145#define TXCTRL2_TXEN 0x08
146#define TXCTRL2_BITMSK 0x60
147#define TXCTRL2_5BITS 0x00
148#define TXCTRL2_7BITS 0x20
149#define TXCTRL2_6BITS 0x40
150#define TXCTRL2_8BITS 0x60
151#define W_SYNC1 6
152#define W_SYNC2 7
153#define W_TXBUF 8
154#define W_MINTR 9
155#define MINTR_STATUSHI 0x10
156#define MINTR_RST_MASK 0xc0
157#define MINTR_RST_B 0x40
158#define MINTR_RST_A 0x80
159#define MINTR_RST_ALL 0xc0
160#define W_MISC1 10
161#define W_CLOCK 11
162#define CLOCK_TRXC 0x08
163#define W_BRGLO 12
164#define W_BRGHI 13
165#define W_MISC2 14
166#define MISC2_PLLDIS 0x30
167#define W_EXTINT 15
168#define EXTINT_DCD 0x08
169#define EXTINT_SYNCINT 0x10
170#define EXTINT_CTSINT 0x20
171#define EXTINT_TXUNDRN 0x40
172#define EXTINT_BRKINT 0x80
173
174#define R_STATUS 0
175#define STATUS_RXAV 0x01
176#define STATUS_ZERO 0x02
177#define STATUS_TXEMPTY 0x04
178#define STATUS_DCD 0x08
179#define STATUS_SYNC 0x10
180#define STATUS_CTS 0x20
181#define STATUS_TXUNDRN 0x40
182#define STATUS_BRK 0x80
183#define R_SPEC 1
184#define SPEC_ALLSENT 0x01
185#define SPEC_BITS8 0x06
186#define R_IVEC 2
187#define IVEC_TXINTB 0x00
188#define IVEC_LONOINT 0x06
189#define IVEC_LORXINTA 0x0c
190#define IVEC_LORXINTB 0x04
191#define IVEC_LOTXINTA 0x08
192#define IVEC_HINOINT 0x60
193#define IVEC_HIRXINTA 0x30
194#define IVEC_HIRXINTB 0x20
195#define IVEC_HITXINTA 0x10
196#define R_INTR 3
197#define INTR_EXTINTB 0x01
198#define INTR_TXINTB 0x02
199#define INTR_RXINTB 0x04
200#define INTR_EXTINTA 0x08
201#define INTR_TXINTA 0x10
202#define INTR_RXINTA 0x20
203#define R_IPEN 4
204#define R_TXCTRL1 5
205#define R_TXCTRL2 6
206#define R_BC 7
207#define R_RXBUF 8
208#define R_RXCTRL 9
209#define R_MISC 10
210#define R_MISC1 11
211#define R_BRGLO 12
212#define R_BRGHI 13
213#define R_MISC1I 14
214#define R_EXTINT 15
bellarde80cfcf2004-12-19 23:18:01 +0000215
bellard8be1f5c2005-04-06 20:42:35 +0000216static void handle_kbd_command(ChannelState *s, int val);
217static int serial_can_receive(void *opaque);
218static void serial_receive_byte(ChannelState *s, int ch);
219
blueswir167deb562007-04-18 19:21:38 +0000220static void clear_queue(void *opaque)
221{
222 ChannelState *s = opaque;
223 SERIOQueue *q = &s->queue;
224 q->rptr = q->wptr = q->count = 0;
225}
226
bellard8be1f5c2005-04-06 20:42:35 +0000227static void put_queue(void *opaque, int b)
228{
229 ChannelState *s = opaque;
bellard715748f2006-09-09 11:35:47 +0000230 SERIOQueue *q = &s->queue;
bellard8be1f5c2005-04-06 20:42:35 +0000231
Blue Swirl30c2f232011-08-07 11:01:05 +0000232 trace_escc_put_queue(CHN_C(s), b);
bellard715748f2006-09-09 11:35:47 +0000233 if (q->count >= SERIO_QUEUE_SIZE)
bellard8be1f5c2005-04-06 20:42:35 +0000234 return;
235 q->data[q->wptr] = b;
bellard715748f2006-09-09 11:35:47 +0000236 if (++q->wptr == SERIO_QUEUE_SIZE)
bellard8be1f5c2005-04-06 20:42:35 +0000237 q->wptr = 0;
238 q->count++;
239 serial_receive_byte(s, 0);
240}
241
242static uint32_t get_queue(void *opaque)
243{
244 ChannelState *s = opaque;
bellard715748f2006-09-09 11:35:47 +0000245 SERIOQueue *q = &s->queue;
bellard8be1f5c2005-04-06 20:42:35 +0000246 int val;
ths3b46e622007-09-17 08:09:54 +0000247
bellard8be1f5c2005-04-06 20:42:35 +0000248 if (q->count == 0) {
blueswir1f930d072007-10-06 11:28:21 +0000249 return 0;
bellard8be1f5c2005-04-06 20:42:35 +0000250 } else {
251 val = q->data[q->rptr];
bellard715748f2006-09-09 11:35:47 +0000252 if (++q->rptr == SERIO_QUEUE_SIZE)
bellard8be1f5c2005-04-06 20:42:35 +0000253 q->rptr = 0;
254 q->count--;
255 }
Blue Swirl30c2f232011-08-07 11:01:05 +0000256 trace_escc_get_queue(CHN_C(s), val);
bellard8be1f5c2005-04-06 20:42:35 +0000257 if (q->count > 0)
blueswir1f930d072007-10-06 11:28:21 +0000258 serial_receive_byte(s, 0);
bellard8be1f5c2005-04-06 20:42:35 +0000259 return val;
260}
261
blueswir1b4ed08e2009-01-12 17:38:28 +0000262static int escc_update_irq_chn(ChannelState *s)
bellarde80cfcf2004-12-19 23:18:01 +0000263{
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200264 if ((((s->wregs[W_INTR] & INTR_TXINT) && (s->txint == 1)) ||
blueswir112abac82007-12-10 20:05:09 +0000265 // tx ints enabled, pending
266 ((((s->wregs[W_INTR] & INTR_RXMODEMSK) == INTR_RXINT1ST) ||
267 ((s->wregs[W_INTR] & INTR_RXMODEMSK) == INTR_RXINTALL)) &&
blueswir1f930d072007-10-06 11:28:21 +0000268 s->rxint == 1) || // rx ints enabled, pending
blueswir112abac82007-12-10 20:05:09 +0000269 ((s->wregs[W_EXTINT] & EXTINT_BRKINT) &&
270 (s->rregs[R_STATUS] & STATUS_BRK)))) { // break int e&p
bellarde4a89052006-09-09 11:38:11 +0000271 return 1;
bellarde80cfcf2004-12-19 23:18:01 +0000272 }
bellarde4a89052006-09-09 11:38:11 +0000273 return 0;
274}
275
blueswir1b4ed08e2009-01-12 17:38:28 +0000276static void escc_update_irq(ChannelState *s)
bellarde4a89052006-09-09 11:38:11 +0000277{
278 int irq;
279
blueswir1b4ed08e2009-01-12 17:38:28 +0000280 irq = escc_update_irq_chn(s);
281 irq |= escc_update_irq_chn(s->otherchn);
bellarde4a89052006-09-09 11:38:11 +0000282
Blue Swirl30c2f232011-08-07 11:01:05 +0000283 trace_escc_update_irq(irq);
pbrookd537cf62007-04-07 18:14:41 +0000284 qemu_set_irq(s->irq, irq);
bellarde80cfcf2004-12-19 23:18:01 +0000285}
286
blueswir1b4ed08e2009-01-12 17:38:28 +0000287static void escc_reset_chn(ChannelState *s)
bellarde80cfcf2004-12-19 23:18:01 +0000288{
289 int i;
290
291 s->reg = 0;
blueswir18f180a42009-01-12 17:31:29 +0000292 for (i = 0; i < SERIAL_REGS; i++) {
blueswir1f930d072007-10-06 11:28:21 +0000293 s->rregs[i] = 0;
294 s->wregs[i] = 0;
bellarde80cfcf2004-12-19 23:18:01 +0000295 }
blueswir112abac82007-12-10 20:05:09 +0000296 s->wregs[W_TXCTRL1] = TXCTRL1_1STOP; // 1X divisor, 1 stop bit, no parity
297 s->wregs[W_MINTR] = MINTR_RST_ALL;
298 s->wregs[W_CLOCK] = CLOCK_TRXC; // Synch mode tx clock = TRxC
299 s->wregs[W_MISC2] = MISC2_PLLDIS; // PLL disabled
300 s->wregs[W_EXTINT] = EXTINT_DCD | EXTINT_SYNCINT | EXTINT_CTSINT |
301 EXTINT_TXUNDRN | EXTINT_BRKINT; // Enable most interrupts
blueswir1577390f2007-12-04 20:58:31 +0000302 if (s->disabled)
blueswir112abac82007-12-10 20:05:09 +0000303 s->rregs[R_STATUS] = STATUS_TXEMPTY | STATUS_DCD | STATUS_SYNC |
304 STATUS_CTS | STATUS_TXUNDRN;
blueswir1577390f2007-12-04 20:58:31 +0000305 else
blueswir112abac82007-12-10 20:05:09 +0000306 s->rregs[R_STATUS] = STATUS_TXEMPTY | STATUS_TXUNDRN;
blueswir1f48c5372007-12-27 20:24:15 +0000307 s->rregs[R_SPEC] = SPEC_BITS8 | SPEC_ALLSENT;
bellarde80cfcf2004-12-19 23:18:01 +0000308
309 s->rx = s->tx = 0;
310 s->rxint = s->txint = 0;
bellarde4a89052006-09-09 11:38:11 +0000311 s->rxint_under_svc = s->txint_under_svc = 0;
blueswir1bbbb2f02007-09-23 11:48:47 +0000312 s->e0_mode = s->led_mode = s->caps_lock_mode = s->num_lock_mode = 0;
blueswir167deb562007-04-18 19:21:38 +0000313 clear_queue(s);
bellarde80cfcf2004-12-19 23:18:01 +0000314}
315
Blue Swirlbdb78ca2009-10-24 16:07:10 +0000316static void escc_reset(DeviceState *d)
bellarde80cfcf2004-12-19 23:18:01 +0000317{
Andreas Färber81069b22013-07-24 21:30:40 +0200318 ESCCState *s = ESCC(d);
Blue Swirlbdb78ca2009-10-24 16:07:10 +0000319
blueswir1b4ed08e2009-01-12 17:38:28 +0000320 escc_reset_chn(&s->chn[0]);
321 escc_reset_chn(&s->chn[1]);
bellarde80cfcf2004-12-19 23:18:01 +0000322}
323
bellardba3c64f2005-12-05 20:31:52 +0000324static inline void set_rxint(ChannelState *s)
325{
326 s->rxint = 1;
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200327 /* XXX: missing daisy chainnig: chn_b rx should have a lower priority
328 than chn_a rx/tx/special_condition service*/
329 s->rxint_under_svc = 1;
330 if (s->chn == chn_a) {
blueswir112abac82007-12-10 20:05:09 +0000331 s->rregs[R_INTR] |= INTR_RXINTA;
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200332 if (s->wregs[W_MINTR] & MINTR_STATUSHI)
333 s->otherchn->rregs[R_IVEC] = IVEC_HIRXINTA;
334 else
335 s->otherchn->rregs[R_IVEC] = IVEC_LORXINTA;
336 } else {
blueswir112abac82007-12-10 20:05:09 +0000337 s->otherchn->rregs[R_INTR] |= INTR_RXINTB;
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200338 if (s->wregs[W_MINTR] & MINTR_STATUSHI)
339 s->rregs[R_IVEC] = IVEC_HIRXINTB;
340 else
341 s->rregs[R_IVEC] = IVEC_LORXINTB;
342 }
blueswir1b4ed08e2009-01-12 17:38:28 +0000343 escc_update_irq(s);
bellardba3c64f2005-12-05 20:31:52 +0000344}
345
blueswir180637a62008-01-17 21:07:04 +0000346static inline void set_txint(ChannelState *s)
347{
348 s->txint = 1;
349 if (!s->rxint_under_svc) {
350 s->txint_under_svc = 1;
351 if (s->chn == chn_a) {
Aurelien Jarnof53671c2011-01-27 08:21:35 +0100352 if (s->wregs[W_INTR] & INTR_TXINT) {
353 s->rregs[R_INTR] |= INTR_TXINTA;
354 }
blueswir180637a62008-01-17 21:07:04 +0000355 if (s->wregs[W_MINTR] & MINTR_STATUSHI)
356 s->otherchn->rregs[R_IVEC] = IVEC_HITXINTA;
357 else
358 s->otherchn->rregs[R_IVEC] = IVEC_LOTXINTA;
359 } else {
360 s->rregs[R_IVEC] = IVEC_TXINTB;
Aurelien Jarnof53671c2011-01-27 08:21:35 +0100361 if (s->wregs[W_INTR] & INTR_TXINT) {
362 s->otherchn->rregs[R_INTR] |= INTR_TXINTB;
363 }
blueswir180637a62008-01-17 21:07:04 +0000364 }
blueswir1b4ed08e2009-01-12 17:38:28 +0000365 escc_update_irq(s);
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200366 }
blueswir180637a62008-01-17 21:07:04 +0000367}
368
369static inline void clr_rxint(ChannelState *s)
370{
371 s->rxint = 0;
372 s->rxint_under_svc = 0;
373 if (s->chn == chn_a) {
374 if (s->wregs[W_MINTR] & MINTR_STATUSHI)
375 s->otherchn->rregs[R_IVEC] = IVEC_HINOINT;
376 else
377 s->otherchn->rregs[R_IVEC] = IVEC_LONOINT;
378 s->rregs[R_INTR] &= ~INTR_RXINTA;
379 } else {
380 if (s->wregs[W_MINTR] & MINTR_STATUSHI)
381 s->rregs[R_IVEC] = IVEC_HINOINT;
382 else
383 s->rregs[R_IVEC] = IVEC_LONOINT;
384 s->otherchn->rregs[R_INTR] &= ~INTR_RXINTB;
385 }
386 if (s->txint)
387 set_txint(s);
blueswir1b4ed08e2009-01-12 17:38:28 +0000388 escc_update_irq(s);
blueswir180637a62008-01-17 21:07:04 +0000389}
390
bellardba3c64f2005-12-05 20:31:52 +0000391static inline void clr_txint(ChannelState *s)
392{
393 s->txint = 0;
bellarde4a89052006-09-09 11:38:11 +0000394 s->txint_under_svc = 0;
blueswir1b9652ca2007-04-20 19:35:25 +0000395 if (s->chn == chn_a) {
blueswir112abac82007-12-10 20:05:09 +0000396 if (s->wregs[W_MINTR] & MINTR_STATUSHI)
397 s->otherchn->rregs[R_IVEC] = IVEC_HINOINT;
blueswir1b9652ca2007-04-20 19:35:25 +0000398 else
blueswir112abac82007-12-10 20:05:09 +0000399 s->otherchn->rregs[R_IVEC] = IVEC_LONOINT;
400 s->rregs[R_INTR] &= ~INTR_TXINTA;
blueswir1b9652ca2007-04-20 19:35:25 +0000401 } else {
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200402 s->otherchn->rregs[R_INTR] &= ~INTR_TXINTB;
blueswir112abac82007-12-10 20:05:09 +0000403 if (s->wregs[W_MINTR] & MINTR_STATUSHI)
404 s->rregs[R_IVEC] = IVEC_HINOINT;
blueswir1b9652ca2007-04-20 19:35:25 +0000405 else
blueswir112abac82007-12-10 20:05:09 +0000406 s->rregs[R_IVEC] = IVEC_LONOINT;
407 s->otherchn->rregs[R_INTR] &= ~INTR_TXINTB;
blueswir1b9652ca2007-04-20 19:35:25 +0000408 }
bellarde4a89052006-09-09 11:38:11 +0000409 if (s->rxint)
410 set_rxint(s);
blueswir1b4ed08e2009-01-12 17:38:28 +0000411 escc_update_irq(s);
bellardba3c64f2005-12-05 20:31:52 +0000412}
413
blueswir1b4ed08e2009-01-12 17:38:28 +0000414static void escc_update_parameters(ChannelState *s)
bellard35db0992006-09-09 12:17:15 +0000415{
416 int speed, parity, data_bits, stop_bits;
417 QEMUSerialSetParams ssp;
418
419 if (!s->chr || s->type != ser)
420 return;
421
blueswir112abac82007-12-10 20:05:09 +0000422 if (s->wregs[W_TXCTRL1] & TXCTRL1_PAREN) {
423 if (s->wregs[W_TXCTRL1] & TXCTRL1_PAREV)
bellard35db0992006-09-09 12:17:15 +0000424 parity = 'E';
425 else
426 parity = 'O';
427 } else {
428 parity = 'N';
429 }
blueswir112abac82007-12-10 20:05:09 +0000430 if ((s->wregs[W_TXCTRL1] & TXCTRL1_STPMSK) == TXCTRL1_2STOP)
bellard35db0992006-09-09 12:17:15 +0000431 stop_bits = 2;
432 else
433 stop_bits = 1;
blueswir112abac82007-12-10 20:05:09 +0000434 switch (s->wregs[W_TXCTRL2] & TXCTRL2_BITMSK) {
435 case TXCTRL2_5BITS:
bellard35db0992006-09-09 12:17:15 +0000436 data_bits = 5;
437 break;
blueswir112abac82007-12-10 20:05:09 +0000438 case TXCTRL2_7BITS:
bellard35db0992006-09-09 12:17:15 +0000439 data_bits = 7;
440 break;
blueswir112abac82007-12-10 20:05:09 +0000441 case TXCTRL2_6BITS:
bellard35db0992006-09-09 12:17:15 +0000442 data_bits = 6;
443 break;
444 default:
blueswir112abac82007-12-10 20:05:09 +0000445 case TXCTRL2_8BITS:
bellard35db0992006-09-09 12:17:15 +0000446 data_bits = 8;
447 break;
448 }
blueswir1b4ed08e2009-01-12 17:38:28 +0000449 speed = s->clock / ((s->wregs[W_BRGLO] | (s->wregs[W_BRGHI] << 8)) + 2);
blueswir112abac82007-12-10 20:05:09 +0000450 switch (s->wregs[W_TXCTRL1] & TXCTRL1_CLKMSK) {
451 case TXCTRL1_CLK1X:
bellard35db0992006-09-09 12:17:15 +0000452 break;
blueswir112abac82007-12-10 20:05:09 +0000453 case TXCTRL1_CLK16X:
bellard35db0992006-09-09 12:17:15 +0000454 speed /= 16;
455 break;
blueswir112abac82007-12-10 20:05:09 +0000456 case TXCTRL1_CLK32X:
bellard35db0992006-09-09 12:17:15 +0000457 speed /= 32;
458 break;
459 default:
blueswir112abac82007-12-10 20:05:09 +0000460 case TXCTRL1_CLK64X:
bellard35db0992006-09-09 12:17:15 +0000461 speed /= 64;
462 break;
463 }
464 ssp.speed = speed;
465 ssp.parity = parity;
466 ssp.data_bits = data_bits;
467 ssp.stop_bits = stop_bits;
Blue Swirl30c2f232011-08-07 11:01:05 +0000468 trace_escc_update_parameters(CHN_C(s), speed, parity, data_bits, stop_bits);
Anthony Liguori41084f12011-08-15 11:17:34 -0500469 qemu_chr_fe_ioctl(s->chr, CHR_IOCTL_SERIAL_SET_PARAMS, &ssp);
bellard35db0992006-09-09 12:17:15 +0000470}
471
Avi Kivitya8170e52012-10-23 12:30:10 +0200472static void escc_mem_write(void *opaque, hwaddr addr,
Avi Kivity23c5e4c2011-08-08 16:09:17 +0300473 uint64_t val, unsigned size)
bellarde80cfcf2004-12-19 23:18:01 +0000474{
Paolo Bonzini3cf63ff2013-06-25 15:02:38 +0200475 ESCCState *serial = opaque;
bellarde80cfcf2004-12-19 23:18:01 +0000476 ChannelState *s;
477 uint32_t saddr;
478 int newreg, channel;
479
480 val &= 0xff;
blueswir1b4ed08e2009-01-12 17:38:28 +0000481 saddr = (addr >> serial->it_shift) & 1;
482 channel = (addr >> (serial->it_shift + 1)) & 1;
blueswir1b3ceef22007-06-25 19:56:13 +0000483 s = &serial->chn[channel];
bellarde80cfcf2004-12-19 23:18:01 +0000484 switch (saddr) {
blueswir112abac82007-12-10 20:05:09 +0000485 case SERIAL_CTRL:
Blue Swirl30c2f232011-08-07 11:01:05 +0000486 trace_escc_mem_writeb_ctrl(CHN_C(s), s->reg, val & 0xff);
blueswir1f930d072007-10-06 11:28:21 +0000487 newreg = 0;
488 switch (s->reg) {
blueswir112abac82007-12-10 20:05:09 +0000489 case W_CMD:
490 newreg = val & CMD_PTR_MASK;
491 val &= CMD_CMD_MASK;
blueswir1f930d072007-10-06 11:28:21 +0000492 switch (val) {
blueswir112abac82007-12-10 20:05:09 +0000493 case CMD_HI:
494 newreg |= CMD_HI;
blueswir1f930d072007-10-06 11:28:21 +0000495 break;
blueswir112abac82007-12-10 20:05:09 +0000496 case CMD_CLR_TXINT:
bellardba3c64f2005-12-05 20:31:52 +0000497 clr_txint(s);
blueswir1f930d072007-10-06 11:28:21 +0000498 break;
blueswir112abac82007-12-10 20:05:09 +0000499 case CMD_CLR_IUS:
Artyom Tarasenko9fc391f2010-08-15 16:04:41 +0200500 if (s->rxint_under_svc) {
501 s->rxint_under_svc = 0;
502 if (s->txint) {
503 set_txint(s);
504 }
505 } else if (s->txint_under_svc) {
506 s->txint_under_svc = 0;
507 }
508 escc_update_irq(s);
blueswir1f930d072007-10-06 11:28:21 +0000509 break;
510 default:
511 break;
512 }
513 break;
blueswir112abac82007-12-10 20:05:09 +0000514 case W_INTR ... W_RXCTRL:
515 case W_SYNC1 ... W_TXBUF:
516 case W_MISC1 ... W_CLOCK:
517 case W_MISC2 ... W_EXTINT:
blueswir1f930d072007-10-06 11:28:21 +0000518 s->wregs[s->reg] = val;
519 break;
blueswir112abac82007-12-10 20:05:09 +0000520 case W_TXCTRL1:
521 case W_TXCTRL2:
blueswir1796d8282008-04-12 08:47:27 +0000522 s->wregs[s->reg] = val;
blueswir1b4ed08e2009-01-12 17:38:28 +0000523 escc_update_parameters(s);
blueswir1796d8282008-04-12 08:47:27 +0000524 break;
blueswir112abac82007-12-10 20:05:09 +0000525 case W_BRGLO:
526 case W_BRGHI:
blueswir1f930d072007-10-06 11:28:21 +0000527 s->wregs[s->reg] = val;
blueswir1796d8282008-04-12 08:47:27 +0000528 s->rregs[s->reg] = val;
blueswir1b4ed08e2009-01-12 17:38:28 +0000529 escc_update_parameters(s);
blueswir1f930d072007-10-06 11:28:21 +0000530 break;
blueswir112abac82007-12-10 20:05:09 +0000531 case W_MINTR:
532 switch (val & MINTR_RST_MASK) {
blueswir1f930d072007-10-06 11:28:21 +0000533 case 0:
534 default:
535 break;
blueswir112abac82007-12-10 20:05:09 +0000536 case MINTR_RST_B:
blueswir1b4ed08e2009-01-12 17:38:28 +0000537 escc_reset_chn(&serial->chn[0]);
blueswir1f930d072007-10-06 11:28:21 +0000538 return;
blueswir112abac82007-12-10 20:05:09 +0000539 case MINTR_RST_A:
blueswir1b4ed08e2009-01-12 17:38:28 +0000540 escc_reset_chn(&serial->chn[1]);
blueswir1f930d072007-10-06 11:28:21 +0000541 return;
blueswir112abac82007-12-10 20:05:09 +0000542 case MINTR_RST_ALL:
Andreas Färber81069b22013-07-24 21:30:40 +0200543 escc_reset(DEVICE(serial));
blueswir1f930d072007-10-06 11:28:21 +0000544 return;
545 }
546 break;
547 default:
548 break;
549 }
550 if (s->reg == 0)
551 s->reg = newreg;
552 else
553 s->reg = 0;
554 break;
blueswir112abac82007-12-10 20:05:09 +0000555 case SERIAL_DATA:
Blue Swirl30c2f232011-08-07 11:01:05 +0000556 trace_escc_mem_writeb_data(CHN_C(s), val);
blueswir196c4f562007-08-11 07:54:26 +0000557 s->tx = val;
blueswir112abac82007-12-10 20:05:09 +0000558 if (s->wregs[W_TXCTRL2] & TXCTRL2_TXEN) { // tx enabled
blueswir1f930d072007-10-06 11:28:21 +0000559 if (s->chr)
Daniel P. Berrange6ab3fc32016-09-06 14:56:04 +0100560 /* XXX this blocks entire thread. Rewrite to use
561 * qemu_chr_fe_write and background I/O callbacks */
562 qemu_chr_fe_write_all(s->chr, &s->tx, 1);
blueswir1577390f2007-12-04 20:58:31 +0000563 else if (s->type == kbd && !s->disabled) {
blueswir1f930d072007-10-06 11:28:21 +0000564 handle_kbd_command(s, val);
565 }
566 }
blueswir112abac82007-12-10 20:05:09 +0000567 s->rregs[R_STATUS] |= STATUS_TXEMPTY; // Tx buffer empty
568 s->rregs[R_SPEC] |= SPEC_ALLSENT; // All sent
blueswir196c4f562007-08-11 07:54:26 +0000569 set_txint(s);
blueswir1f930d072007-10-06 11:28:21 +0000570 break;
bellarde80cfcf2004-12-19 23:18:01 +0000571 default:
blueswir1f930d072007-10-06 11:28:21 +0000572 break;
bellarde80cfcf2004-12-19 23:18:01 +0000573 }
574}
575
Avi Kivitya8170e52012-10-23 12:30:10 +0200576static uint64_t escc_mem_read(void *opaque, hwaddr addr,
Avi Kivity23c5e4c2011-08-08 16:09:17 +0300577 unsigned size)
bellarde80cfcf2004-12-19 23:18:01 +0000578{
Paolo Bonzini3cf63ff2013-06-25 15:02:38 +0200579 ESCCState *serial = opaque;
bellarde80cfcf2004-12-19 23:18:01 +0000580 ChannelState *s;
581 uint32_t saddr;
582 uint32_t ret;
583 int channel;
584
blueswir1b4ed08e2009-01-12 17:38:28 +0000585 saddr = (addr >> serial->it_shift) & 1;
586 channel = (addr >> (serial->it_shift + 1)) & 1;
blueswir1b3ceef22007-06-25 19:56:13 +0000587 s = &serial->chn[channel];
bellarde80cfcf2004-12-19 23:18:01 +0000588 switch (saddr) {
blueswir112abac82007-12-10 20:05:09 +0000589 case SERIAL_CTRL:
Blue Swirl30c2f232011-08-07 11:01:05 +0000590 trace_escc_mem_readb_ctrl(CHN_C(s), s->reg, s->rregs[s->reg]);
blueswir1f930d072007-10-06 11:28:21 +0000591 ret = s->rregs[s->reg];
592 s->reg = 0;
593 return ret;
blueswir112abac82007-12-10 20:05:09 +0000594 case SERIAL_DATA:
595 s->rregs[R_STATUS] &= ~STATUS_RXAV;
bellardba3c64f2005-12-05 20:31:52 +0000596 clr_rxint(s);
blueswir1f930d072007-10-06 11:28:21 +0000597 if (s->type == kbd || s->type == mouse)
598 ret = get_queue(s);
599 else
600 ret = s->rx;
Blue Swirl30c2f232011-08-07 11:01:05 +0000601 trace_escc_mem_readb_data(CHN_C(s), ret);
blueswir1b76482e2007-11-25 08:48:16 +0000602 if (s->chr)
603 qemu_chr_accept_input(s->chr);
blueswir1f930d072007-10-06 11:28:21 +0000604 return ret;
bellarde80cfcf2004-12-19 23:18:01 +0000605 default:
blueswir1f930d072007-10-06 11:28:21 +0000606 break;
bellarde80cfcf2004-12-19 23:18:01 +0000607 }
608 return 0;
609}
610
Avi Kivity23c5e4c2011-08-08 16:09:17 +0300611static const MemoryRegionOps escc_mem_ops = {
612 .read = escc_mem_read,
613 .write = escc_mem_write,
614 .endianness = DEVICE_NATIVE_ENDIAN,
615 .valid = {
616 .min_access_size = 1,
617 .max_access_size = 1,
618 },
619};
620
bellarde80cfcf2004-12-19 23:18:01 +0000621static int serial_can_receive(void *opaque)
622{
623 ChannelState *s = opaque;
bellarde4a89052006-09-09 11:38:11 +0000624 int ret;
625
blueswir112abac82007-12-10 20:05:09 +0000626 if (((s->wregs[W_RXCTRL] & RXCTRL_RXEN) == 0) // Rx not enabled
627 || ((s->rregs[R_STATUS] & STATUS_RXAV) == STATUS_RXAV))
628 // char already available
blueswir1f930d072007-10-06 11:28:21 +0000629 ret = 0;
bellarde80cfcf2004-12-19 23:18:01 +0000630 else
blueswir1f930d072007-10-06 11:28:21 +0000631 ret = 1;
bellarde4a89052006-09-09 11:38:11 +0000632 return ret;
bellarde80cfcf2004-12-19 23:18:01 +0000633}
634
635static void serial_receive_byte(ChannelState *s, int ch)
636{
Blue Swirl30c2f232011-08-07 11:01:05 +0000637 trace_escc_serial_receive_byte(CHN_C(s), ch);
blueswir112abac82007-12-10 20:05:09 +0000638 s->rregs[R_STATUS] |= STATUS_RXAV;
bellarde80cfcf2004-12-19 23:18:01 +0000639 s->rx = ch;
bellardba3c64f2005-12-05 20:31:52 +0000640 set_rxint(s);
bellarde80cfcf2004-12-19 23:18:01 +0000641}
642
643static void serial_receive_break(ChannelState *s)
644{
blueswir112abac82007-12-10 20:05:09 +0000645 s->rregs[R_STATUS] |= STATUS_BRK;
blueswir1b4ed08e2009-01-12 17:38:28 +0000646 escc_update_irq(s);
bellarde80cfcf2004-12-19 23:18:01 +0000647}
648
649static void serial_receive1(void *opaque, const uint8_t *buf, int size)
650{
651 ChannelState *s = opaque;
652 serial_receive_byte(s, buf[0]);
653}
654
655static void serial_event(void *opaque, int event)
656{
657 ChannelState *s = opaque;
658 if (event == CHR_EVENT_BREAK)
659 serial_receive_break(s);
660}
661
Blue Swirlbdb78ca2009-10-24 16:07:10 +0000662static const VMStateDescription vmstate_escc_chn = {
663 .name ="escc_chn",
664 .version_id = 2,
665 .minimum_version_id = 1,
Juan Quintela3aff6c22014-04-16 15:24:04 +0200666 .fields = (VMStateField[]) {
Blue Swirlbdb78ca2009-10-24 16:07:10 +0000667 VMSTATE_UINT32(vmstate_dummy, ChannelState),
668 VMSTATE_UINT32(reg, ChannelState),
669 VMSTATE_UINT32(rxint, ChannelState),
670 VMSTATE_UINT32(txint, ChannelState),
671 VMSTATE_UINT32(rxint_under_svc, ChannelState),
672 VMSTATE_UINT32(txint_under_svc, ChannelState),
673 VMSTATE_UINT8(rx, ChannelState),
674 VMSTATE_UINT8(tx, ChannelState),
675 VMSTATE_BUFFER(wregs, ChannelState),
676 VMSTATE_BUFFER(rregs, ChannelState),
677 VMSTATE_END_OF_LIST()
bellarde4a89052006-09-09 11:38:11 +0000678 }
Blue Swirlbdb78ca2009-10-24 16:07:10 +0000679};
bellarde80cfcf2004-12-19 23:18:01 +0000680
Blue Swirlbdb78ca2009-10-24 16:07:10 +0000681static const VMStateDescription vmstate_escc = {
682 .name ="escc",
683 .version_id = 2,
684 .minimum_version_id = 1,
Juan Quintela3aff6c22014-04-16 15:24:04 +0200685 .fields = (VMStateField[]) {
Paolo Bonzini3cf63ff2013-06-25 15:02:38 +0200686 VMSTATE_STRUCT_ARRAY(chn, ESCCState, 2, 2, vmstate_escc_chn,
Blue Swirlbdb78ca2009-10-24 16:07:10 +0000687 ChannelState),
688 VMSTATE_END_OF_LIST()
689 }
690};
bellarde80cfcf2004-12-19 23:18:01 +0000691
Avi Kivitya8170e52012-10-23 12:30:10 +0200692MemoryRegion *escc_init(hwaddr base, qemu_irq irqA, qemu_irq irqB,
aurel32aeeb69c2009-01-14 14:47:56 +0000693 CharDriverState *chrA, CharDriverState *chrB,
694 int clock, int it_shift)
bellarde80cfcf2004-12-19 23:18:01 +0000695{
Blue Swirl6c319c82009-07-15 08:51:32 +0000696 DeviceState *dev;
697 SysBusDevice *s;
Paolo Bonzini3cf63ff2013-06-25 15:02:38 +0200698 ESCCState *d;
bellarde80cfcf2004-12-19 23:18:01 +0000699
Andreas Färber81069b22013-07-24 21:30:40 +0200700 dev = qdev_create(NULL, TYPE_ESCC);
Gerd Hoffmannee6847d2009-07-15 13:43:31 +0200701 qdev_prop_set_uint32(dev, "disabled", 0);
702 qdev_prop_set_uint32(dev, "frequency", clock);
703 qdev_prop_set_uint32(dev, "it_shift", it_shift);
Blue Swirlbc19fca2009-08-13 16:26:52 +0000704 qdev_prop_set_chr(dev, "chrB", chrB);
705 qdev_prop_set_chr(dev, "chrA", chrA);
Gerd Hoffmannee6847d2009-07-15 13:43:31 +0200706 qdev_prop_set_uint32(dev, "chnBtype", ser);
707 qdev_prop_set_uint32(dev, "chnAtype", ser);
Markus Armbrustere23a1b32009-10-07 01:15:58 +0200708 qdev_init_nofail(dev);
Andreas Färber1356b982013-01-20 02:47:33 +0100709 s = SYS_BUS_DEVICE(dev);
Aurelien Jarnoe1a0e472009-09-16 00:13:15 +0200710 sysbus_connect_irq(s, 0, irqB);
711 sysbus_connect_irq(s, 1, irqA);
Blue Swirl6c319c82009-07-15 08:51:32 +0000712 if (base) {
713 sysbus_mmio_map(s, 0, base);
bellarde80cfcf2004-12-19 23:18:01 +0000714 }
Blue Swirl6c319c82009-07-15 08:51:32 +0000715
Andreas Färber81069b22013-07-24 21:30:40 +0200716 d = ESCC(s);
Avi Kivity23c5e4c2011-08-08 16:09:17 +0300717 return &d->mmio;
bellarde80cfcf2004-12-19 23:18:01 +0000718}
719
Eric Blake7fb1cf12015-11-18 01:52:57 -0700720static const uint8_t qcode_to_keycode[Q_KEY_CODE__MAX] = {
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100721 [Q_KEY_CODE_SHIFT] = 99,
722 [Q_KEY_CODE_SHIFT_R] = 110,
723 [Q_KEY_CODE_ALT] = 19,
724 [Q_KEY_CODE_ALT_R] = 13,
725 [Q_KEY_CODE_ALTGR] = 13,
726 [Q_KEY_CODE_CTRL] = 76,
727 [Q_KEY_CODE_CTRL_R] = 76,
728 [Q_KEY_CODE_ESC] = 29,
729 [Q_KEY_CODE_1] = 30,
730 [Q_KEY_CODE_2] = 31,
731 [Q_KEY_CODE_3] = 32,
732 [Q_KEY_CODE_4] = 33,
733 [Q_KEY_CODE_5] = 34,
734 [Q_KEY_CODE_6] = 35,
735 [Q_KEY_CODE_7] = 36,
736 [Q_KEY_CODE_8] = 37,
737 [Q_KEY_CODE_9] = 38,
738 [Q_KEY_CODE_0] = 39,
739 [Q_KEY_CODE_MINUS] = 40,
740 [Q_KEY_CODE_EQUAL] = 41,
741 [Q_KEY_CODE_BACKSPACE] = 43,
742 [Q_KEY_CODE_TAB] = 53,
743 [Q_KEY_CODE_Q] = 54,
744 [Q_KEY_CODE_W] = 55,
745 [Q_KEY_CODE_E] = 56,
746 [Q_KEY_CODE_R] = 57,
747 [Q_KEY_CODE_T] = 58,
748 [Q_KEY_CODE_Y] = 59,
749 [Q_KEY_CODE_U] = 60,
750 [Q_KEY_CODE_I] = 61,
751 [Q_KEY_CODE_O] = 62,
752 [Q_KEY_CODE_P] = 63,
753 [Q_KEY_CODE_BRACKET_LEFT] = 64,
754 [Q_KEY_CODE_BRACKET_RIGHT] = 65,
755 [Q_KEY_CODE_RET] = 89,
756 [Q_KEY_CODE_A] = 77,
757 [Q_KEY_CODE_S] = 78,
758 [Q_KEY_CODE_D] = 79,
759 [Q_KEY_CODE_F] = 80,
760 [Q_KEY_CODE_G] = 81,
761 [Q_KEY_CODE_H] = 82,
762 [Q_KEY_CODE_J] = 83,
763 [Q_KEY_CODE_K] = 84,
764 [Q_KEY_CODE_L] = 85,
765 [Q_KEY_CODE_SEMICOLON] = 86,
766 [Q_KEY_CODE_APOSTROPHE] = 87,
767 [Q_KEY_CODE_GRAVE_ACCENT] = 42,
768 [Q_KEY_CODE_BACKSLASH] = 88,
769 [Q_KEY_CODE_Z] = 100,
770 [Q_KEY_CODE_X] = 101,
771 [Q_KEY_CODE_C] = 102,
772 [Q_KEY_CODE_V] = 103,
773 [Q_KEY_CODE_B] = 104,
774 [Q_KEY_CODE_N] = 105,
775 [Q_KEY_CODE_M] = 106,
776 [Q_KEY_CODE_COMMA] = 107,
777 [Q_KEY_CODE_DOT] = 108,
778 [Q_KEY_CODE_SLASH] = 109,
779 [Q_KEY_CODE_ASTERISK] = 47,
780 [Q_KEY_CODE_SPC] = 121,
781 [Q_KEY_CODE_CAPS_LOCK] = 119,
782 [Q_KEY_CODE_F1] = 5,
783 [Q_KEY_CODE_F2] = 6,
784 [Q_KEY_CODE_F3] = 8,
785 [Q_KEY_CODE_F4] = 10,
786 [Q_KEY_CODE_F5] = 12,
787 [Q_KEY_CODE_F6] = 14,
788 [Q_KEY_CODE_F7] = 16,
789 [Q_KEY_CODE_F8] = 17,
790 [Q_KEY_CODE_F9] = 18,
791 [Q_KEY_CODE_F10] = 7,
792 [Q_KEY_CODE_NUM_LOCK] = 98,
793 [Q_KEY_CODE_SCROLL_LOCK] = 23,
Gerd Hoffmann97256072014-04-29 13:19:32 +0200794 [Q_KEY_CODE_KP_DIVIDE] = 46,
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100795 [Q_KEY_CODE_KP_MULTIPLY] = 47,
796 [Q_KEY_CODE_KP_SUBTRACT] = 71,
797 [Q_KEY_CODE_KP_ADD] = 125,
798 [Q_KEY_CODE_KP_ENTER] = 90,
799 [Q_KEY_CODE_KP_DECIMAL] = 50,
800 [Q_KEY_CODE_KP_0] = 94,
801 [Q_KEY_CODE_KP_1] = 112,
802 [Q_KEY_CODE_KP_2] = 113,
803 [Q_KEY_CODE_KP_3] = 114,
804 [Q_KEY_CODE_KP_4] = 91,
805 [Q_KEY_CODE_KP_5] = 92,
806 [Q_KEY_CODE_KP_6] = 93,
807 [Q_KEY_CODE_KP_7] = 68,
808 [Q_KEY_CODE_KP_8] = 69,
809 [Q_KEY_CODE_KP_9] = 70,
810 [Q_KEY_CODE_LESS] = 124,
811 [Q_KEY_CODE_F11] = 9,
812 [Q_KEY_CODE_F12] = 11,
Gerd Hoffmann97256072014-04-29 13:19:32 +0200813 [Q_KEY_CODE_HOME] = 52,
814 [Q_KEY_CODE_PGUP] = 96,
815 [Q_KEY_CODE_PGDN] = 123,
816 [Q_KEY_CODE_END] = 74,
817 [Q_KEY_CODE_LEFT] = 24,
818 [Q_KEY_CODE_UP] = 20,
819 [Q_KEY_CODE_DOWN] = 27,
820 [Q_KEY_CODE_RIGHT] = 28,
821 [Q_KEY_CODE_INSERT] = 44,
822 [Q_KEY_CODE_DELETE] = 66,
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100823 [Q_KEY_CODE_STOP] = 1,
824 [Q_KEY_CODE_AGAIN] = 3,
825 [Q_KEY_CODE_PROPS] = 25,
826 [Q_KEY_CODE_UNDO] = 26,
827 [Q_KEY_CODE_FRONT] = 49,
Gerd Hoffmann97256072014-04-29 13:19:32 +0200828 [Q_KEY_CODE_COPY] = 51,
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100829 [Q_KEY_CODE_OPEN] = 72,
830 [Q_KEY_CODE_PASTE] = 73,
Gerd Hoffmann97256072014-04-29 13:19:32 +0200831 [Q_KEY_CODE_FIND] = 95,
832 [Q_KEY_CODE_CUT] = 97,
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100833 [Q_KEY_CODE_LF] = 111,
834 [Q_KEY_CODE_HELP] = 118,
835 [Q_KEY_CODE_META_L] = 120,
836 [Q_KEY_CODE_META_R] = 122,
837 [Q_KEY_CODE_COMPOSE] = 67,
Gerd Hoffmann97256072014-04-29 13:19:32 +0200838 [Q_KEY_CODE_PRINT] = 22,
839 [Q_KEY_CODE_SYSRQ] = 21,
bellard8be1f5c2005-04-06 20:42:35 +0000840};
841
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100842static void sunkbd_handle_event(DeviceState *dev, QemuConsole *src,
843 InputEvent *evt)
bellarde80cfcf2004-12-19 23:18:01 +0000844{
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100845 ChannelState *s = (ChannelState *)dev;
846 int qcode, keycode;
Eric Blakeb5a1b442016-03-03 09:16:49 -0700847 InputKeyEvent *key;
bellard8be1f5c2005-04-06 20:42:35 +0000848
Eric Blake568c73a2015-10-26 16:34:58 -0600849 assert(evt->type == INPUT_EVENT_KIND_KEY);
Eric Blake32bafa82016-03-17 16:48:37 -0600850 key = evt->u.key.data;
Eric Blakeb5a1b442016-03-03 09:16:49 -0700851 qcode = qemu_input_key_value_to_qcode(key->key);
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100852 trace_escc_sunkbd_event_in(qcode, QKeyCode_lookup[qcode],
Eric Blakeb5a1b442016-03-03 09:16:49 -0700853 key->down);
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100854
855 if (qcode == Q_KEY_CODE_CAPS_LOCK) {
Eric Blakeb5a1b442016-03-03 09:16:49 -0700856 if (key->down) {
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100857 s->caps_lock_mode ^= 1;
858 if (s->caps_lock_mode == 2) {
859 return; /* Drop second press */
860 }
861 } else {
862 s->caps_lock_mode ^= 2;
863 if (s->caps_lock_mode == 3) {
864 return; /* Drop first release */
865 }
866 }
blueswir143febf42007-09-21 19:09:35 +0000867 }
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100868
869 if (qcode == Q_KEY_CODE_NUM_LOCK) {
Eric Blakeb5a1b442016-03-03 09:16:49 -0700870 if (key->down) {
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100871 s->num_lock_mode ^= 1;
872 if (s->num_lock_mode == 2) {
873 return; /* Drop second press */
874 }
875 } else {
876 s->num_lock_mode ^= 2;
877 if (s->num_lock_mode == 3) {
878 return; /* Drop first release */
879 }
880 }
blueswir143febf42007-09-21 19:09:35 +0000881 }
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100882
883 keycode = qcode_to_keycode[qcode];
Eric Blakeb5a1b442016-03-03 09:16:49 -0700884 if (!key->down) {
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100885 keycode |= 0x80;
886 }
887 trace_escc_sunkbd_event_out(keycode);
888 put_queue(s, keycode);
bellard8be1f5c2005-04-06 20:42:35 +0000889}
890
Gerd Hoffmann65e75452014-03-25 13:16:21 +0100891static QemuInputHandler sunkbd_handler = {
892 .name = "sun keyboard",
893 .mask = INPUT_EVENT_MASK_KEY,
894 .event = sunkbd_handle_event,
895};
896
bellard8be1f5c2005-04-06 20:42:35 +0000897static void handle_kbd_command(ChannelState *s, int val)
898{
Blue Swirl30c2f232011-08-07 11:01:05 +0000899 trace_escc_kbd_command(val);
blueswir143febf42007-09-21 19:09:35 +0000900 if (s->led_mode) { // Ignore led byte
901 s->led_mode = 0;
902 return;
903 }
bellard8be1f5c2005-04-06 20:42:35 +0000904 switch (val) {
905 case 1: // Reset, return type code
blueswir167deb562007-04-18 19:21:38 +0000906 clear_queue(s);
blueswir1f930d072007-10-06 11:28:21 +0000907 put_queue(s, 0xff);
908 put_queue(s, 4); // Type 4
909 put_queue(s, 0x7f);
910 break;
blueswir143febf42007-09-21 19:09:35 +0000911 case 0xe: // Set leds
912 s->led_mode = 1;
913 break;
bellard8be1f5c2005-04-06 20:42:35 +0000914 case 7: // Query layout
blueswir167deb562007-04-18 19:21:38 +0000915 case 0xf:
916 clear_queue(s);
blueswir1f930d072007-10-06 11:28:21 +0000917 put_queue(s, 0xfe);
Gerd Hoffmann59e7a132014-05-06 14:11:16 +0200918 put_queue(s, 0x21); /* en-us layout */
blueswir1f930d072007-10-06 11:28:21 +0000919 break;
bellard8be1f5c2005-04-06 20:42:35 +0000920 default:
blueswir1f930d072007-10-06 11:28:21 +0000921 break;
bellard8be1f5c2005-04-06 20:42:35 +0000922 }
bellarde80cfcf2004-12-19 23:18:01 +0000923}
924
ths5fafdf22007-09-16 21:08:06 +0000925static void sunmouse_event(void *opaque,
bellarde80cfcf2004-12-19 23:18:01 +0000926 int dx, int dy, int dz, int buttons_state)
927{
928 ChannelState *s = opaque;
929 int ch;
930
Blue Swirl30c2f232011-08-07 11:01:05 +0000931 trace_escc_sunmouse_event(dx, dy, buttons_state);
bellard715748f2006-09-09 11:35:47 +0000932 ch = 0x80 | 0x7; /* protocol start byte, no buttons pressed */
933
934 if (buttons_state & MOUSE_EVENT_LBUTTON)
935 ch ^= 0x4;
936 if (buttons_state & MOUSE_EVENT_MBUTTON)
937 ch ^= 0x2;
938 if (buttons_state & MOUSE_EVENT_RBUTTON)
939 ch ^= 0x1;
940
941 put_queue(s, ch);
942
943 ch = dx;
944
945 if (ch > 127)
Michael S. Tsirkina0d98a72009-09-30 19:43:55 +0200946 ch = 127;
bellard715748f2006-09-09 11:35:47 +0000947 else if (ch < -127)
Michael S. Tsirkina0d98a72009-09-30 19:43:55 +0200948 ch = -127;
bellard715748f2006-09-09 11:35:47 +0000949
950 put_queue(s, ch & 0xff);
951
952 ch = -dy;
953
954 if (ch > 127)
Michael S. Tsirkin084bd072009-09-30 18:56:44 +0000955 ch = 127;
bellard715748f2006-09-09 11:35:47 +0000956 else if (ch < -127)
Michael S. Tsirkin084bd072009-09-30 18:56:44 +0000957 ch = -127;
bellard715748f2006-09-09 11:35:47 +0000958
959 put_queue(s, ch & 0xff);
960
961 // MSC protocol specify two extra motion bytes
962
963 put_queue(s, 0);
964 put_queue(s, 0);
bellarde80cfcf2004-12-19 23:18:01 +0000965}
966
Avi Kivitya8170e52012-10-23 12:30:10 +0200967void slavio_serial_ms_kbd_init(hwaddr base, qemu_irq irq,
blueswir1b4ed08e2009-01-12 17:38:28 +0000968 int disabled, int clock, int it_shift)
bellarde80cfcf2004-12-19 23:18:01 +0000969{
Blue Swirl6c319c82009-07-15 08:51:32 +0000970 DeviceState *dev;
971 SysBusDevice *s;
bellarde80cfcf2004-12-19 23:18:01 +0000972
Andreas Färber81069b22013-07-24 21:30:40 +0200973 dev = qdev_create(NULL, TYPE_ESCC);
Gerd Hoffmannee6847d2009-07-15 13:43:31 +0200974 qdev_prop_set_uint32(dev, "disabled", disabled);
975 qdev_prop_set_uint32(dev, "frequency", clock);
976 qdev_prop_set_uint32(dev, "it_shift", it_shift);
Blue Swirlbc19fca2009-08-13 16:26:52 +0000977 qdev_prop_set_chr(dev, "chrB", NULL);
978 qdev_prop_set_chr(dev, "chrA", NULL);
Gerd Hoffmannee6847d2009-07-15 13:43:31 +0200979 qdev_prop_set_uint32(dev, "chnBtype", mouse);
980 qdev_prop_set_uint32(dev, "chnAtype", kbd);
Markus Armbrustere23a1b32009-10-07 01:15:58 +0200981 qdev_init_nofail(dev);
Andreas Färber1356b982013-01-20 02:47:33 +0100982 s = SYS_BUS_DEVICE(dev);
Blue Swirl6c319c82009-07-15 08:51:32 +0000983 sysbus_connect_irq(s, 0, irq);
984 sysbus_connect_irq(s, 1, irq);
985 sysbus_mmio_map(s, 0, base);
986}
blueswir1b4ed08e2009-01-12 17:38:28 +0000987
xiaoqiang zhaoe7c913692016-05-25 14:39:00 +0800988static void escc_init1(Object *obj)
Blue Swirl6c319c82009-07-15 08:51:32 +0000989{
xiaoqiang zhaoe7c913692016-05-25 14:39:00 +0800990 ESCCState *s = ESCC(obj);
991 SysBusDevice *dev = SYS_BUS_DEVICE(obj);
Blue Swirl6c319c82009-07-15 08:51:32 +0000992 unsigned int i;
Blue Swirl6c319c82009-07-15 08:51:32 +0000993
bellard8be1f5c2005-04-06 20:42:35 +0000994 for (i = 0; i < 2; i++) {
Blue Swirl6c319c82009-07-15 08:51:32 +0000995 sysbus_init_irq(dev, &s->chn[i].irq);
blueswir1f930d072007-10-06 11:28:21 +0000996 s->chn[i].chn = 1 - i;
xiaoqiang zhaoe7c913692016-05-25 14:39:00 +0800997 }
998 s->chn[0].otherchn = &s->chn[1];
999 s->chn[1].otherchn = &s->chn[0];
1000
xiaoqiang zhaoe7c913692016-05-25 14:39:00 +08001001 sysbus_init_mmio(dev, &s->mmio);
1002}
1003
1004static void escc_realize(DeviceState *dev, Error **errp)
1005{
1006 ESCCState *s = ESCC(dev);
1007 unsigned int i;
1008
xiaoqiang zhao4b3eec92016-06-01 15:58:18 +08001009 s->chn[0].disabled = s->disabled;
1010 s->chn[1].disabled = s->disabled;
1011
1012 memory_region_init_io(&s->mmio, OBJECT(dev), &escc_mem_ops, s, "escc",
1013 ESCC_SIZE << s->it_shift);
1014
xiaoqiang zhaoe7c913692016-05-25 14:39:00 +08001015 for (i = 0; i < 2; i++) {
Blue Swirl6c319c82009-07-15 08:51:32 +00001016 if (s->chn[i].chr) {
xiaoqiang zhao4b3eec92016-06-01 15:58:18 +08001017 s->chn[i].clock = s->frequency / 2;
Blue Swirl6c319c82009-07-15 08:51:32 +00001018 qemu_chr_add_handlers(s->chn[i].chr, serial_can_receive,
1019 serial_receive1, serial_event, &s->chn[i]);
1020 }
bellard8be1f5c2005-04-06 20:42:35 +00001021 }
bellarde80cfcf2004-12-19 23:18:01 +00001022
Blue Swirl6c319c82009-07-15 08:51:32 +00001023 if (s->chn[0].type == mouse) {
1024 qemu_add_mouse_event_handler(sunmouse_event, &s->chn[0], 0,
1025 "QEMU Sun Mouse");
1026 }
1027 if (s->chn[1].type == kbd) {
Gerd Hoffmann65e75452014-03-25 13:16:21 +01001028 s->chn[1].hs = qemu_input_handler_register((DeviceState *)(&s->chn[1]),
1029 &sunkbd_handler);
Blue Swirl6c319c82009-07-15 08:51:32 +00001030 }
bellarde80cfcf2004-12-19 23:18:01 +00001031}
Blue Swirl6c319c82009-07-15 08:51:32 +00001032
Anthony Liguori999e12b2012-01-24 13:12:29 -06001033static Property escc_properties[] = {
Paolo Bonzini3cf63ff2013-06-25 15:02:38 +02001034 DEFINE_PROP_UINT32("frequency", ESCCState, frequency, 0),
1035 DEFINE_PROP_UINT32("it_shift", ESCCState, it_shift, 0),
1036 DEFINE_PROP_UINT32("disabled", ESCCState, disabled, 0),
1037 DEFINE_PROP_UINT32("chnBtype", ESCCState, chn[0].type, 0),
1038 DEFINE_PROP_UINT32("chnAtype", ESCCState, chn[1].type, 0),
1039 DEFINE_PROP_CHR("chrB", ESCCState, chn[0].chr),
1040 DEFINE_PROP_CHR("chrA", ESCCState, chn[1].chr),
Anthony Liguori999e12b2012-01-24 13:12:29 -06001041 DEFINE_PROP_END_OF_LIST(),
1042};
1043
1044static void escc_class_init(ObjectClass *klass, void *data)
1045{
Anthony Liguori39bffca2011-12-07 21:34:16 -06001046 DeviceClass *dc = DEVICE_CLASS(klass);
Anthony Liguori999e12b2012-01-24 13:12:29 -06001047
Anthony Liguori39bffca2011-12-07 21:34:16 -06001048 dc->reset = escc_reset;
xiaoqiang zhaoe7c913692016-05-25 14:39:00 +08001049 dc->realize = escc_realize;
Anthony Liguori39bffca2011-12-07 21:34:16 -06001050 dc->vmsd = &vmstate_escc;
1051 dc->props = escc_properties;
Laurent Vivierf8d4c072015-09-26 18:22:05 +02001052 set_bit(DEVICE_CATEGORY_INPUT, dc->categories);
Anthony Liguori999e12b2012-01-24 13:12:29 -06001053}
1054
Andreas Färber8c43a6f2013-01-10 16:19:07 +01001055static const TypeInfo escc_info = {
Andreas Färber81069b22013-07-24 21:30:40 +02001056 .name = TYPE_ESCC,
Anthony Liguori39bffca2011-12-07 21:34:16 -06001057 .parent = TYPE_SYS_BUS_DEVICE,
Paolo Bonzini3cf63ff2013-06-25 15:02:38 +02001058 .instance_size = sizeof(ESCCState),
xiaoqiang zhaoe7c913692016-05-25 14:39:00 +08001059 .instance_init = escc_init1,
Anthony Liguori39bffca2011-12-07 21:34:16 -06001060 .class_init = escc_class_init,
Blue Swirl6c319c82009-07-15 08:51:32 +00001061};
1062
Andreas Färber83f7d432012-02-09 15:20:55 +01001063static void escc_register_types(void)
Blue Swirl6c319c82009-07-15 08:51:32 +00001064{
Anthony Liguori39bffca2011-12-07 21:34:16 -06001065 type_register_static(&escc_info);
Blue Swirl6c319c82009-07-15 08:51:32 +00001066}
1067
Andreas Färber83f7d432012-02-09 15:20:55 +01001068type_init(escc_register_types)