2012-10-17 09:54:19 +02:00
|
|
|
/*
|
|
|
|
* QEMU 16550A UART emulation
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003-2004 Fabrice Bellard
|
|
|
|
* Copyright (c) 2008 Citrix Systems, Inc.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2016-06-29 15:29:06 +02:00
|
|
|
|
2012-12-06 12:15:58 +01:00
|
|
|
#ifndef HW_SERIAL_H
|
2016-06-29 15:29:06 +02:00
|
|
|
#define HW_SERIAL_H
|
2012-10-17 09:54:19 +02:00
|
|
|
|
2017-01-26 15:26:44 +01:00
|
|
|
#include "chardev/char-fe.h"
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/memory.h"
|
2013-06-03 07:13:27 +02:00
|
|
|
#include "qemu/fifo8.h"
|
2017-01-26 14:19:46 +01:00
|
|
|
#include "chardev/char.h"
|
2019-10-21 23:32:12 +02:00
|
|
|
#include "hw/sysbus.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2012-10-17 09:54:19 +02:00
|
|
|
|
|
|
|
#define UART_FIFO_LENGTH 16 /* 16550A Fifo Length */
|
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct SerialState {
|
2019-10-21 23:32:12 +02:00
|
|
|
DeviceState parent;
|
|
|
|
|
2012-10-17 09:54:19 +02:00
|
|
|
uint16_t divider;
|
|
|
|
uint8_t rbr; /* receive register */
|
|
|
|
uint8_t thr; /* transmit holding register */
|
|
|
|
uint8_t tsr; /* transmit shift register */
|
|
|
|
uint8_t ier;
|
|
|
|
uint8_t iir; /* read only */
|
|
|
|
uint8_t lcr;
|
|
|
|
uint8_t mcr;
|
|
|
|
uint8_t lsr; /* read only */
|
|
|
|
uint8_t msr; /* read only */
|
|
|
|
uint8_t scr;
|
|
|
|
uint8_t fcr;
|
|
|
|
uint8_t fcr_vmstate; /* we can't write directly this value
|
|
|
|
it has side effects */
|
|
|
|
/* NOTE: this hidden state is necessary for tx irq generation as
|
|
|
|
it can be reset while reading iir */
|
|
|
|
int thr_ipending;
|
|
|
|
qemu_irq irq;
|
2016-10-22 11:52:51 +02:00
|
|
|
CharBackend chr;
|
2012-10-17 09:54:19 +02:00
|
|
|
int last_break_enable;
|
2019-10-22 00:35:36 +02:00
|
|
|
uint32_t baudbase;
|
2016-06-14 14:17:16 +02:00
|
|
|
uint32_t tsr_retry;
|
2016-06-14 14:35:20 +02:00
|
|
|
guint watch_tag;
|
2012-10-17 09:54:19 +02:00
|
|
|
uint32_t wakeup;
|
|
|
|
|
|
|
|
/* Time when the last byte was successfully sent out of the tsr */
|
|
|
|
uint64_t last_xmit_ts;
|
2013-06-03 07:13:27 +02:00
|
|
|
Fifo8 recv_fifo;
|
|
|
|
Fifo8 xmit_fifo;
|
|
|
|
/* Interrupt trigger level for recv_fifo */
|
|
|
|
uint8_t recv_fifo_itl;
|
2012-10-17 09:54:19 +02:00
|
|
|
|
2013-12-01 08:49:47 +01:00
|
|
|
QEMUTimer *fifo_timeout_timer;
|
2012-10-17 09:54:19 +02:00
|
|
|
int timeout_ipending; /* timeout interrupt pending state */
|
|
|
|
|
|
|
|
uint64_t char_transmit_time; /* time to transmit a char in ticks */
|
|
|
|
int poll_msl;
|
|
|
|
|
2013-12-01 08:49:47 +01:00
|
|
|
QEMUTimer *modem_status_poll;
|
2012-10-17 09:54:19 +02:00
|
|
|
MemoryRegion io;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
|
|
|
typedef struct SerialState SerialState;
|
2012-10-17 09:54:19 +02:00
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct SerialMM {
|
2019-10-23 17:50:06 +02:00
|
|
|
SysBusDevice parent;
|
|
|
|
|
|
|
|
SerialState serial;
|
|
|
|
|
2019-10-21 20:14:02 +02:00
|
|
|
uint8_t regshift;
|
2019-10-23 18:07:03 +02:00
|
|
|
uint8_t endianness;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
|
|
|
typedef struct SerialMM SerialMM;
|
2019-10-23 17:50:06 +02:00
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct SerialIO {
|
2019-10-23 18:37:33 +02:00
|
|
|
SysBusDevice parent;
|
|
|
|
|
|
|
|
SerialState serial;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
|
|
|
typedef struct SerialIO SerialIO;
|
2019-10-23 18:37:33 +02:00
|
|
|
|
2012-10-17 09:54:19 +02:00
|
|
|
extern const VMStateDescription vmstate_serial;
|
|
|
|
extern const MemoryRegionOps serial_io_ops;
|
|
|
|
|
|
|
|
void serial_set_frequency(SerialState *s, uint32_t frequency);
|
|
|
|
|
2019-10-21 23:32:12 +02:00
|
|
|
#define TYPE_SERIAL "serial"
|
|
|
|
#define SERIAL(s) OBJECT_CHECK(SerialState, (s), TYPE_SERIAL)
|
|
|
|
|
2019-10-23 17:50:06 +02:00
|
|
|
#define TYPE_SERIAL_MM "serial-mm"
|
|
|
|
#define SERIAL_MM(s) OBJECT_CHECK(SerialMM, (s), TYPE_SERIAL_MM)
|
|
|
|
|
2019-10-23 18:37:33 +02:00
|
|
|
#define TYPE_SERIAL_IO "serial-io"
|
|
|
|
#define SERIAL_IO(s) OBJECT_CHECK(SerialIO, (s), TYPE_SERIAL_IO)
|
|
|
|
|
2019-10-23 17:50:06 +02:00
|
|
|
SerialMM *serial_mm_init(MemoryRegion *address_space,
|
2019-10-21 20:14:02 +02:00
|
|
|
hwaddr base, int regshift,
|
2019-10-23 17:50:06 +02:00
|
|
|
qemu_irq irq, int baudbase,
|
|
|
|
Chardev *chr, enum device_endian end);
|
2012-10-17 09:54:19 +02:00
|
|
|
|
|
|
|
/* serial-isa.c */
|
2018-04-20 16:52:46 +02:00
|
|
|
|
|
|
|
#define MAX_ISA_SERIAL_PORTS 4
|
|
|
|
|
2013-04-27 22:18:50 +02:00
|
|
|
#define TYPE_ISA_SERIAL "isa-serial"
|
2016-10-22 11:52:44 +02:00
|
|
|
void serial_hds_isa_init(ISABus *bus, int from, int to);
|
2012-12-06 12:15:58 +01:00
|
|
|
|
|
|
|
#endif
|