2 * QEMU Sparc SLAVIO serial port emulation
4 * Copyright (c) 2003-2005 Fabrice Bellard
6 * 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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
26 #include "qemu-char.h"
30 //#define DEBUG_SERIAL
39 * This is the serial port, mouse and keyboard part of chip STP2001
40 * (Slave I/O), also produced as NCR89C105. See
41 * http://www.ibiblio.org/pub/historic-linux/early-ports/Sparc/NCR/NCR89C105.txt
43 * 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.
51 * 2006-Aug-10 Igor Kovalenko : Renamed KBDQueue to SERIOQueue, implemented
53 * Implemented serial mouse protocol.
57 #define SER_DPRINTF(fmt, args...) \
58 do { printf("SER: " fmt , ##args); } while (0)
60 #define SER_DPRINTF(fmt, args...)
63 #define KBD_DPRINTF(fmt, args...) \
64 do { printf("KBD: " fmt , ##args); } while (0)
66 #define KBD_DPRINTF(fmt, args...)
69 #define MS_DPRINTF(fmt, args...) \
70 do { printf("MSC: " fmt , ##args); } while (0)
72 #define MS_DPRINTF(fmt, args...)
79 #define CHN_C(s) ((s)->chn == chn_b? 'b' : 'a')
85 #define SERIO_QUEUE_SIZE 256
88 uint8_t data
[SERIO_QUEUE_SIZE
];
89 int rptr
, wptr
, count
;
92 #define SERIAL_REGS 16
93 typedef struct ChannelState
{
96 int rxint
, txint
, rxint_under_svc
, txint_under_svc
;
97 chn_id_t chn
; // this channel, A (base+4) or B (base+0)
99 struct ChannelState
*otherchn
;
100 uint8_t rx
, tx
, wregs
[SERIAL_REGS
], rregs
[SERIAL_REGS
];
102 CharDriverState
*chr
;
103 int e0_mode
, led_mode
, caps_lock_mode
, num_lock_mode
;
108 struct ChannelState chn
[2];
111 #define SERIAL_MAXADDR 7
112 #define SERIAL_SIZE (SERIAL_MAXADDR + 1)
113 #define SERIAL_CTRL 0
114 #define SERIAL_DATA 1
117 #define CMD_PTR_MASK 0x07
118 #define CMD_CMD_MASK 0x38
120 #define CMD_CLR_TXINT 0x28
121 #define CMD_CLR_IUS 0x38
123 #define INTR_INTALL 0x01
124 #define INTR_TXINT 0x02
125 #define INTR_RXMODEMSK 0x18
126 #define INTR_RXINT1ST 0x08
127 #define INTR_RXINTALL 0x10
130 #define RXCTRL_RXEN 0x01
132 #define TXCTRL1_PAREN 0x01
133 #define TXCTRL1_PAREV 0x02
134 #define TXCTRL1_1STOP 0x04
135 #define TXCTRL1_1HSTOP 0x08
136 #define TXCTRL1_2STOP 0x0c
137 #define TXCTRL1_STPMSK 0x0c
138 #define TXCTRL1_CLK1X 0x00
139 #define TXCTRL1_CLK16X 0x40
140 #define TXCTRL1_CLK32X 0x80
141 #define TXCTRL1_CLK64X 0xc0
142 #define TXCTRL1_CLKMSK 0xc0
144 #define TXCTRL2_TXEN 0x08
145 #define TXCTRL2_BITMSK 0x60
146 #define TXCTRL2_5BITS 0x00
147 #define TXCTRL2_7BITS 0x20
148 #define TXCTRL2_6BITS 0x40
149 #define TXCTRL2_8BITS 0x60
154 #define MINTR_STATUSHI 0x10
155 #define MINTR_RST_MASK 0xc0
156 #define MINTR_RST_B 0x40
157 #define MINTR_RST_A 0x80
158 #define MINTR_RST_ALL 0xc0
161 #define CLOCK_TRXC 0x08
165 #define MISC2_PLLDIS 0x30
167 #define EXTINT_DCD 0x08
168 #define EXTINT_SYNCINT 0x10
169 #define EXTINT_CTSINT 0x20
170 #define EXTINT_TXUNDRN 0x40
171 #define EXTINT_BRKINT 0x80
174 #define STATUS_RXAV 0x01
175 #define STATUS_ZERO 0x02
176 #define STATUS_TXEMPTY 0x04
177 #define STATUS_DCD 0x08
178 #define STATUS_SYNC 0x10
179 #define STATUS_CTS 0x20
180 #define STATUS_TXUNDRN 0x40
181 #define STATUS_BRK 0x80
183 #define SPEC_ALLSENT 0x01
184 #define SPEC_BITS8 0x06
186 #define IVEC_TXINTB 0x00
187 #define IVEC_LONOINT 0x06
188 #define IVEC_LORXINTA 0x0c
189 #define IVEC_LORXINTB 0x04
190 #define IVEC_LOTXINTA 0x08
191 #define IVEC_HINOINT 0x60
192 #define IVEC_HIRXINTA 0x30
193 #define IVEC_HIRXINTB 0x20
194 #define IVEC_HITXINTA 0x10
196 #define INTR_EXTINTB 0x01
197 #define INTR_TXINTB 0x02
198 #define INTR_RXINTB 0x04
199 #define INTR_EXTINTA 0x08
200 #define INTR_TXINTA 0x10
201 #define INTR_RXINTA 0x20
215 static void handle_kbd_command(ChannelState
*s
, int val
);
216 static int serial_can_receive(void *opaque
);
217 static void serial_receive_byte(ChannelState
*s
, int ch
);
219 static void clear_queue(void *opaque
)
221 ChannelState
*s
= opaque
;
222 SERIOQueue
*q
= &s
->queue
;
223 q
->rptr
= q
->wptr
= q
->count
= 0;
226 static void put_queue(void *opaque
, int b
)
228 ChannelState
*s
= opaque
;
229 SERIOQueue
*q
= &s
->queue
;
231 SER_DPRINTF("channel %c put: 0x%02x\n", CHN_C(s
), b
);
232 if (q
->count
>= SERIO_QUEUE_SIZE
)
234 q
->data
[q
->wptr
] = b
;
235 if (++q
->wptr
== SERIO_QUEUE_SIZE
)
238 serial_receive_byte(s
, 0);
241 static uint32_t get_queue(void *opaque
)
243 ChannelState
*s
= opaque
;
244 SERIOQueue
*q
= &s
->queue
;
250 val
= q
->data
[q
->rptr
];
251 if (++q
->rptr
== SERIO_QUEUE_SIZE
)
255 SER_DPRINTF("channel %c get 0x%02x\n", CHN_C(s
), val
);
257 serial_receive_byte(s
, 0);
261 static int slavio_serial_update_irq_chn(ChannelState
*s
)
263 if ((s
->wregs
[W_INTR
] & INTR_INTALL
) && // interrupts enabled
264 (((s
->wregs
[W_INTR
] & INTR_TXINT
) && s
->txint
== 1) ||
265 // tx ints enabled, pending
266 ((((s
->wregs
[W_INTR
] & INTR_RXMODEMSK
) == INTR_RXINT1ST
) ||
267 ((s
->wregs
[W_INTR
] & INTR_RXMODEMSK
) == INTR_RXINTALL
)) &&
268 s
->rxint
== 1) || // rx ints enabled, pending
269 ((s
->wregs
[W_EXTINT
] & EXTINT_BRKINT
) &&
270 (s
->rregs
[R_STATUS
] & STATUS_BRK
)))) { // break int e&p
276 static void slavio_serial_update_irq(ChannelState
*s
)
280 irq
= slavio_serial_update_irq_chn(s
);
281 irq
|= slavio_serial_update_irq_chn(s
->otherchn
);
283 SER_DPRINTF("IRQ = %d\n", irq
);
284 qemu_set_irq(s
->irq
, irq
);
287 static void slavio_serial_reset_chn(ChannelState
*s
)
292 for (i
= 0; i
< SERIAL_SIZE
; i
++) {
296 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
303 s
->rregs
[R_STATUS
] = STATUS_TXEMPTY
| STATUS_DCD
| STATUS_SYNC
|
304 STATUS_CTS
| STATUS_TXUNDRN
;
306 s
->rregs
[R_STATUS
] = STATUS_TXEMPTY
| STATUS_TXUNDRN
;
307 s
->rregs
[R_SPEC
] = SPEC_BITS8
| SPEC_ALLSENT
;
310 s
->rxint
= s
->txint
= 0;
311 s
->rxint_under_svc
= s
->txint_under_svc
= 0;
312 s
->e0_mode
= s
->led_mode
= s
->caps_lock_mode
= s
->num_lock_mode
= 0;
316 static void slavio_serial_reset(void *opaque
)
318 SerialState
*s
= opaque
;
319 slavio_serial_reset_chn(&s
->chn
[0]);
320 slavio_serial_reset_chn(&s
->chn
[1]);
323 static inline void set_rxint(ChannelState
*s
)
326 if (!s
->txint_under_svc
) {
327 s
->rxint_under_svc
= 1;
328 if (s
->chn
== chn_a
) {
329 if (s
->wregs
[W_MINTR
] & MINTR_STATUSHI
)
330 s
->otherchn
->rregs
[R_IVEC
] = IVEC_HIRXINTA
;
332 s
->otherchn
->rregs
[R_IVEC
] = IVEC_LORXINTA
;
334 if (s
->wregs
[W_MINTR
] & MINTR_STATUSHI
)
335 s
->rregs
[R_IVEC
] = IVEC_HIRXINTB
;
337 s
->rregs
[R_IVEC
] = IVEC_LORXINTB
;
341 s
->rregs
[R_INTR
] |= INTR_RXINTA
;
343 s
->otherchn
->rregs
[R_INTR
] |= INTR_RXINTB
;
344 slavio_serial_update_irq(s
);
347 static inline void set_txint(ChannelState
*s
)
350 if (!s
->rxint_under_svc
) {
351 s
->txint_under_svc
= 1;
352 if (s
->chn
== chn_a
) {
353 if (s
->wregs
[W_MINTR
] & MINTR_STATUSHI
)
354 s
->otherchn
->rregs
[R_IVEC
] = IVEC_HITXINTA
;
356 s
->otherchn
->rregs
[R_IVEC
] = IVEC_LOTXINTA
;
358 s
->rregs
[R_IVEC
] = IVEC_TXINTB
;
362 s
->rregs
[R_INTR
] |= INTR_TXINTA
;
364 s
->otherchn
->rregs
[R_INTR
] |= INTR_TXINTB
;
365 slavio_serial_update_irq(s
);
368 static inline void clr_rxint(ChannelState
*s
)
371 s
->rxint_under_svc
= 0;
372 if (s
->chn
== chn_a
) {
373 if (s
->wregs
[W_MINTR
] & MINTR_STATUSHI
)
374 s
->otherchn
->rregs
[R_IVEC
] = IVEC_HINOINT
;
376 s
->otherchn
->rregs
[R_IVEC
] = IVEC_LONOINT
;
377 s
->rregs
[R_INTR
] &= ~INTR_RXINTA
;
379 if (s
->wregs
[W_MINTR
] & MINTR_STATUSHI
)
380 s
->rregs
[R_IVEC
] = IVEC_HINOINT
;
382 s
->rregs
[R_IVEC
] = IVEC_LONOINT
;
383 s
->otherchn
->rregs
[R_INTR
] &= ~INTR_RXINTB
;
387 slavio_serial_update_irq(s
);
390 static inline void clr_txint(ChannelState
*s
)
393 s
->txint_under_svc
= 0;
394 if (s
->chn
== chn_a
) {
395 if (s
->wregs
[W_MINTR
] & MINTR_STATUSHI
)
396 s
->otherchn
->rregs
[R_IVEC
] = IVEC_HINOINT
;
398 s
->otherchn
->rregs
[R_IVEC
] = IVEC_LONOINT
;
399 s
->rregs
[R_INTR
] &= ~INTR_TXINTA
;
401 if (s
->wregs
[W_MINTR
] & MINTR_STATUSHI
)
402 s
->rregs
[R_IVEC
] = IVEC_HINOINT
;
404 s
->rregs
[R_IVEC
] = IVEC_LONOINT
;
405 s
->otherchn
->rregs
[R_INTR
] &= ~INTR_TXINTB
;
409 slavio_serial_update_irq(s
);
412 static void slavio_serial_update_parameters(ChannelState
*s
)
414 int speed
, parity
, data_bits
, stop_bits
;
415 QEMUSerialSetParams ssp
;
417 if (!s
->chr
|| s
->type
!= ser
)
420 if (s
->wregs
[W_TXCTRL1
] & TXCTRL1_PAREN
) {
421 if (s
->wregs
[W_TXCTRL1
] & TXCTRL1_PAREV
)
428 if ((s
->wregs
[W_TXCTRL1
] & TXCTRL1_STPMSK
) == TXCTRL1_2STOP
)
432 switch (s
->wregs
[W_TXCTRL2
] & TXCTRL2_BITMSK
) {
447 speed
= 2457600 / ((s
->wregs
[W_BRGLO
] | (s
->wregs
[W_BRGHI
] << 8)) + 2);
448 switch (s
->wregs
[W_TXCTRL1
] & TXCTRL1_CLKMSK
) {
464 ssp
.data_bits
= data_bits
;
465 ssp
.stop_bits
= stop_bits
;
466 SER_DPRINTF("channel %c: speed=%d parity=%c data=%d stop=%d\n", CHN_C(s
),
467 speed
, parity
, data_bits
, stop_bits
);
468 qemu_chr_ioctl(s
->chr
, CHR_IOCTL_SERIAL_SET_PARAMS
, &ssp
);
471 static void slavio_serial_mem_writeb(void *opaque
, target_phys_addr_t addr
,
474 SerialState
*serial
= opaque
;
480 saddr
= (addr
& 3) >> 1;
481 channel
= (addr
& SERIAL_MAXADDR
) >> 2;
482 s
= &serial
->chn
[channel
];
485 SER_DPRINTF("Write channel %c, reg[%d] = %2.2x\n", CHN_C(s
), s
->reg
,
490 newreg
= val
& CMD_PTR_MASK
;
500 if (s
->rxint_under_svc
)
502 else if (s
->txint_under_svc
)
509 case W_INTR
... W_RXCTRL
:
510 case W_SYNC1
... W_TXBUF
:
511 case W_MISC1
... W_CLOCK
:
512 case W_MISC2
... W_EXTINT
:
513 s
->wregs
[s
->reg
] = val
;
519 s
->wregs
[s
->reg
] = val
;
520 slavio_serial_update_parameters(s
);
523 switch (val
& MINTR_RST_MASK
) {
528 slavio_serial_reset_chn(&serial
->chn
[1]);
531 slavio_serial_reset_chn(&serial
->chn
[0]);
534 slavio_serial_reset(serial
);
547 SER_DPRINTF("Write channel %c, ch %d\n", CHN_C(s
), val
);
549 if (s
->wregs
[W_TXCTRL2
] & TXCTRL2_TXEN
) { // tx enabled
551 qemu_chr_write(s
->chr
, &s
->tx
, 1);
552 else if (s
->type
== kbd
&& !s
->disabled
) {
553 handle_kbd_command(s
, val
);
556 s
->rregs
[R_STATUS
] |= STATUS_TXEMPTY
; // Tx buffer empty
557 s
->rregs
[R_SPEC
] |= SPEC_ALLSENT
; // All sent
565 static uint32_t slavio_serial_mem_readb(void *opaque
, target_phys_addr_t addr
)
567 SerialState
*serial
= opaque
;
573 saddr
= (addr
& 3) >> 1;
574 channel
= (addr
& SERIAL_MAXADDR
) >> 2;
575 s
= &serial
->chn
[channel
];
578 SER_DPRINTF("Read channel %c, reg[%d] = %2.2x\n", CHN_C(s
), s
->reg
,
580 ret
= s
->rregs
[s
->reg
];
584 s
->rregs
[R_STATUS
] &= ~STATUS_RXAV
;
586 if (s
->type
== kbd
|| s
->type
== mouse
)
590 SER_DPRINTF("Read channel %c, ch %d\n", CHN_C(s
), ret
);
592 qemu_chr_accept_input(s
->chr
);
600 static int serial_can_receive(void *opaque
)
602 ChannelState
*s
= opaque
;
605 if (((s
->wregs
[W_RXCTRL
] & RXCTRL_RXEN
) == 0) // Rx not enabled
606 || ((s
->rregs
[R_STATUS
] & STATUS_RXAV
) == STATUS_RXAV
))
607 // char already available
614 static void serial_receive_byte(ChannelState
*s
, int ch
)
616 SER_DPRINTF("channel %c put ch %d\n", CHN_C(s
), ch
);
617 s
->rregs
[R_STATUS
] |= STATUS_RXAV
;
622 static void serial_receive_break(ChannelState
*s
)
624 s
->rregs
[R_STATUS
] |= STATUS_BRK
;
625 slavio_serial_update_irq(s
);
628 static void serial_receive1(void *opaque
, const uint8_t *buf
, int size
)
630 ChannelState
*s
= opaque
;
631 serial_receive_byte(s
, buf
[0]);
634 static void serial_event(void *opaque
, int event
)
636 ChannelState
*s
= opaque
;
637 if (event
== CHR_EVENT_BREAK
)
638 serial_receive_break(s
);
641 static CPUReadMemoryFunc
*slavio_serial_mem_read
[3] = {
642 slavio_serial_mem_readb
,
647 static CPUWriteMemoryFunc
*slavio_serial_mem_write
[3] = {
648 slavio_serial_mem_writeb
,
653 static void slavio_serial_save_chn(QEMUFile
*f
, ChannelState
*s
)
657 qemu_put_be32s(f
, &tmp
); /* unused, was IRQ. */
658 qemu_put_be32s(f
, &s
->reg
);
659 qemu_put_be32s(f
, &s
->rxint
);
660 qemu_put_be32s(f
, &s
->txint
);
661 qemu_put_be32s(f
, &s
->rxint_under_svc
);
662 qemu_put_be32s(f
, &s
->txint_under_svc
);
663 qemu_put_8s(f
, &s
->rx
);
664 qemu_put_8s(f
, &s
->tx
);
665 qemu_put_buffer(f
, s
->wregs
, SERIAL_REGS
);
666 qemu_put_buffer(f
, s
->rregs
, SERIAL_REGS
);
669 static void slavio_serial_save(QEMUFile
*f
, void *opaque
)
671 SerialState
*s
= opaque
;
673 slavio_serial_save_chn(f
, &s
->chn
[0]);
674 slavio_serial_save_chn(f
, &s
->chn
[1]);
677 static int slavio_serial_load_chn(QEMUFile
*f
, ChannelState
*s
, int version_id
)
684 qemu_get_be32s(f
, &tmp
); /* unused */
685 qemu_get_be32s(f
, &s
->reg
);
686 qemu_get_be32s(f
, &s
->rxint
);
687 qemu_get_be32s(f
, &s
->txint
);
688 if (version_id
>= 2) {
689 qemu_get_be32s(f
, &s
->rxint_under_svc
);
690 qemu_get_be32s(f
, &s
->txint_under_svc
);
692 qemu_get_8s(f
, &s
->rx
);
693 qemu_get_8s(f
, &s
->tx
);
694 qemu_get_buffer(f
, s
->wregs
, SERIAL_REGS
);
695 qemu_get_buffer(f
, s
->rregs
, SERIAL_REGS
);
699 static int slavio_serial_load(QEMUFile
*f
, void *opaque
, int version_id
)
701 SerialState
*s
= opaque
;
704 ret
= slavio_serial_load_chn(f
, &s
->chn
[0], version_id
);
707 ret
= slavio_serial_load_chn(f
, &s
->chn
[1], version_id
);
712 SerialState
*slavio_serial_init(target_phys_addr_t base
, qemu_irq irq
,
713 CharDriverState
*chr1
, CharDriverState
*chr2
)
715 int slavio_serial_io_memory
, i
;
718 s
= qemu_mallocz(sizeof(SerialState
));
722 slavio_serial_io_memory
= cpu_register_io_memory(0, slavio_serial_mem_read
,
723 slavio_serial_mem_write
,
725 cpu_register_physical_memory(base
, SERIAL_SIZE
, slavio_serial_io_memory
);
727 s
->chn
[0].chr
= chr1
;
728 s
->chn
[1].chr
= chr2
;
729 s
->chn
[0].disabled
= 0;
730 s
->chn
[1].disabled
= 0;
732 for (i
= 0; i
< 2; i
++) {
734 s
->chn
[i
].chn
= 1 - i
;
735 s
->chn
[i
].type
= ser
;
737 qemu_chr_add_handlers(s
->chn
[i
].chr
, serial_can_receive
,
738 serial_receive1
, serial_event
, &s
->chn
[i
]);
741 s
->chn
[0].otherchn
= &s
->chn
[1];
742 s
->chn
[1].otherchn
= &s
->chn
[0];
743 register_savevm("slavio_serial", base
, 2, slavio_serial_save
,
744 slavio_serial_load
, s
);
745 qemu_register_reset(slavio_serial_reset
, s
);
746 slavio_serial_reset(s
);
750 static const uint8_t keycodes
[128] = {
751 127, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 53,
752 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 89, 76, 77, 78,
753 79, 80, 81, 82, 83, 84, 85, 86, 87, 42, 99, 88, 100, 101, 102, 103,
754 104, 105, 106, 107, 108, 109, 110, 47, 19, 121, 119, 5, 6, 8, 10, 12,
755 14, 16, 17, 18, 7, 98, 23, 68, 69, 70, 71, 91, 92, 93, 125, 112,
756 113, 114, 94, 50, 0, 0, 124, 9, 11, 0, 0, 0, 0, 0, 0, 0,
757 90, 0, 46, 22, 13, 111, 52, 20, 96, 24, 28, 74, 27, 123, 44, 66,
758 0, 45, 2, 4, 48, 0, 0, 21, 0, 0, 0, 0, 0, 120, 122, 67,
761 static const uint8_t e0_keycodes
[128] = {
762 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
763 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 76, 0, 0,
764 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
765 0, 0, 0, 0, 0, 109, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0,
766 0, 0, 0, 0, 0, 0, 0, 68, 69, 70, 0, 91, 0, 93, 0, 112,
767 113, 114, 94, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
768 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
769 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
772 static void sunkbd_event(void *opaque
, int ch
)
774 ChannelState
*s
= opaque
;
775 int release
= ch
& 0x80;
777 KBD_DPRINTF("Untranslated keycode %2.2x (%s)\n", ch
, release
? "release" :
780 case 58: // Caps lock press
781 s
->caps_lock_mode
^= 1;
782 if (s
->caps_lock_mode
== 2)
783 return; // Drop second press
785 case 69: // Num lock press
786 s
->num_lock_mode
^= 1;
787 if (s
->num_lock_mode
== 2)
788 return; // Drop second press
790 case 186: // Caps lock release
791 s
->caps_lock_mode
^= 2;
792 if (s
->caps_lock_mode
== 3)
793 return; // Drop first release
795 case 197: // Num lock release
796 s
->num_lock_mode
^= 2;
797 if (s
->num_lock_mode
== 3)
798 return; // Drop first release
808 ch
= e0_keycodes
[ch
& 0x7f];
810 ch
= keycodes
[ch
& 0x7f];
812 KBD_DPRINTF("Translated keycode %2.2x\n", ch
);
813 put_queue(s
, ch
| release
);
816 static void handle_kbd_command(ChannelState
*s
, int val
)
818 KBD_DPRINTF("Command %d\n", val
);
819 if (s
->led_mode
) { // Ignore led byte
824 case 1: // Reset, return type code
827 put_queue(s
, 4); // Type 4
830 case 0xe: // Set leds
833 case 7: // Query layout
837 put_queue(s
, 0); // XXX, layout?
844 static void sunmouse_event(void *opaque
,
845 int dx
, int dy
, int dz
, int buttons_state
)
847 ChannelState
*s
= opaque
;
850 MS_DPRINTF("dx=%d dy=%d buttons=%01x\n", dx
, dy
, buttons_state
);
852 ch
= 0x80 | 0x7; /* protocol start byte, no buttons pressed */
854 if (buttons_state
& MOUSE_EVENT_LBUTTON
)
856 if (buttons_state
& MOUSE_EVENT_MBUTTON
)
858 if (buttons_state
& MOUSE_EVENT_RBUTTON
)
870 put_queue(s
, ch
& 0xff);
879 put_queue(s
, ch
& 0xff);
881 // MSC protocol specify two extra motion bytes
887 void slavio_serial_ms_kbd_init(target_phys_addr_t base
, qemu_irq irq
,
890 int slavio_serial_io_memory
, i
;
893 s
= qemu_mallocz(sizeof(SerialState
));
896 for (i
= 0; i
< 2; i
++) {
898 s
->chn
[i
].chn
= 1 - i
;
899 s
->chn
[i
].chr
= NULL
;
901 s
->chn
[0].otherchn
= &s
->chn
[1];
902 s
->chn
[1].otherchn
= &s
->chn
[0];
903 s
->chn
[0].type
= mouse
;
904 s
->chn
[1].type
= kbd
;
905 s
->chn
[0].disabled
= disabled
;
906 s
->chn
[1].disabled
= disabled
;
908 slavio_serial_io_memory
= cpu_register_io_memory(0, slavio_serial_mem_read
,
909 slavio_serial_mem_write
,
911 cpu_register_physical_memory(base
, SERIAL_SIZE
, slavio_serial_io_memory
);
913 qemu_add_mouse_event_handler(sunmouse_event
, &s
->chn
[0], 0,
915 qemu_add_kbd_event_handler(sunkbd_event
, &s
->chn
[1]);
916 register_savevm("slavio_serial_mouse", base
, 2, slavio_serial_save
,
917 slavio_serial_load
, s
);
918 qemu_register_reset(slavio_serial_reset
, s
);
919 slavio_serial_reset(s
);