chardev: serial & parallel declaration to own headers
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
This commit is contained in:
parent
8228e353d8
commit
7566c6efe7
@ -32,7 +32,7 @@
|
||||
|
||||
#include "qemu/osdep.h"
|
||||
#include "qemu-common.h"
|
||||
#include "chardev/char.h"
|
||||
#include "chardev/char-serial.h"
|
||||
#include "ui/console.h"
|
||||
#include "ui/input.h"
|
||||
#include "trace.h"
|
||||
|
@ -34,7 +34,7 @@
|
||||
#include "strongarm.h"
|
||||
#include "qemu/error-report.h"
|
||||
#include "hw/arm/arm.h"
|
||||
#include "chardev/char.h"
|
||||
#include "chardev/char-serial.h"
|
||||
#include "sysemu/sysemu.h"
|
||||
#include "hw/ssi/ssi.h"
|
||||
#include "qemu/cutils.h"
|
||||
|
@ -20,7 +20,7 @@
|
||||
|
||||
#include "qemu/osdep.h"
|
||||
#include "qemu-common.h"
|
||||
#include "chardev/char.h"
|
||||
#include "chardev/char-serial.h"
|
||||
#include "qemu/timer.h"
|
||||
#include "qemu/bswap.h"
|
||||
#include "hw/irq.h"
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
#include "qemu/osdep.h"
|
||||
#include "hw/sysbus.h"
|
||||
#include "chardev/char.h"
|
||||
#include "chardev/char-serial.h"
|
||||
#include "qemu/timer.h"
|
||||
#include "qemu/log.h"
|
||||
#include "hw/char/cadence_uart.h"
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "hw/hw.h"
|
||||
#include "hw/sysbus.h"
|
||||
#include "hw/char/escc.h"
|
||||
#include "chardev/char.h"
|
||||
#include "chardev/char-serial.h"
|
||||
#include "ui/console.h"
|
||||
#include "ui/input.h"
|
||||
#include "trace.h"
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include "hw/sysbus.h"
|
||||
#include "qemu/error-report.h"
|
||||
#include "sysemu/sysemu.h"
|
||||
#include "chardev/char.h"
|
||||
#include "chardev/char-serial.h"
|
||||
|
||||
#include "hw/arm/exynos4210.h"
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include "qemu/osdep.h"
|
||||
#include "qapi/error.h"
|
||||
#include "hw/hw.h"
|
||||
#include "chardev/char.h"
|
||||
#include "chardev/char-parallel.h"
|
||||
#include "hw/isa/isa.h"
|
||||
#include "hw/i386/pc.h"
|
||||
#include "sysemu/sysemu.h"
|
||||
|
@ -25,7 +25,7 @@
|
||||
|
||||
#include "qemu/osdep.h"
|
||||
#include "hw/char/serial.h"
|
||||
#include "chardev/char.h"
|
||||
#include "chardev/char-serial.h"
|
||||
#include "qapi/error.h"
|
||||
#include "qemu/timer.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
@ -15,7 +15,7 @@
|
||||
#include "qemu/error-report.h"
|
||||
#include "hw/usb.h"
|
||||
#include "hw/usb/desc.h"
|
||||
#include "chardev/char.h"
|
||||
#include "chardev/char-serial.h"
|
||||
|
||||
//#define DEBUG_Serial
|
||||
|
||||
|
@ -24,9 +24,27 @@
|
||||
#ifndef CHAR_PARALLEL_H
|
||||
#define CHAR_PARALLEL_H
|
||||
|
||||
#if defined(__linux__) || defined(__FreeBSD__) || \
|
||||
#include "chardev/char.h"
|
||||
|
||||
#if defined(__linux__) || defined(__FreeBSD__) || \
|
||||
defined(__FreeBSD_kernel__) || defined(__DragonFly__)
|
||||
#define HAVE_CHARDEV_PARPORT 1
|
||||
#endif
|
||||
|
||||
#define CHR_IOCTL_PP_READ_DATA 3
|
||||
#define CHR_IOCTL_PP_WRITE_DATA 4
|
||||
#define CHR_IOCTL_PP_READ_CONTROL 5
|
||||
#define CHR_IOCTL_PP_WRITE_CONTROL 6
|
||||
#define CHR_IOCTL_PP_READ_STATUS 7
|
||||
#define CHR_IOCTL_PP_EPP_READ_ADDR 8
|
||||
#define CHR_IOCTL_PP_EPP_READ 9
|
||||
#define CHR_IOCTL_PP_EPP_WRITE_ADDR 10
|
||||
#define CHR_IOCTL_PP_EPP_WRITE 11
|
||||
#define CHR_IOCTL_PP_DATA_DIR 12
|
||||
|
||||
struct ParallelIOArg {
|
||||
void *buffer;
|
||||
int count;
|
||||
};
|
||||
|
||||
#endif /* CHAR_PARALLEL_H */
|
||||
|
@ -24,6 +24,8 @@
|
||||
#ifndef CHAR_SERIAL_H
|
||||
#define CHAR_SERIAL_H
|
||||
|
||||
#include "chardev/char.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
#define HAVE_CHARDEV_SERIAL 1
|
||||
#elif defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
|
||||
@ -32,4 +34,24 @@
|
||||
#define HAVE_CHARDEV_SERIAL 1
|
||||
#endif
|
||||
|
||||
#define CHR_IOCTL_SERIAL_SET_PARAMS 1
|
||||
typedef struct {
|
||||
int speed;
|
||||
int parity;
|
||||
int data_bits;
|
||||
int stop_bits;
|
||||
} QEMUSerialSetParams;
|
||||
|
||||
#define CHR_IOCTL_SERIAL_SET_BREAK 2
|
||||
|
||||
#define CHR_IOCTL_SERIAL_SET_TIOCM 13
|
||||
#define CHR_IOCTL_SERIAL_GET_TIOCM 14
|
||||
|
||||
#define CHR_TIOCM_CTS 0x020
|
||||
#define CHR_TIOCM_CAR 0x040
|
||||
#define CHR_TIOCM_DSR 0x100
|
||||
#define CHR_TIOCM_RI 0x080
|
||||
#define CHR_TIOCM_DTR 0x002
|
||||
#define CHR_TIOCM_RTS 0x004
|
||||
|
||||
#endif
|
||||
|
@ -27,42 +27,6 @@ typedef enum {
|
||||
|
||||
#define CHR_READ_BUF_LEN 4096
|
||||
|
||||
#define CHR_IOCTL_SERIAL_SET_PARAMS 1
|
||||
typedef struct {
|
||||
int speed;
|
||||
int parity;
|
||||
int data_bits;
|
||||
int stop_bits;
|
||||
} QEMUSerialSetParams;
|
||||
|
||||
#define CHR_IOCTL_SERIAL_SET_BREAK 2
|
||||
|
||||
#define CHR_IOCTL_PP_READ_DATA 3
|
||||
#define CHR_IOCTL_PP_WRITE_DATA 4
|
||||
#define CHR_IOCTL_PP_READ_CONTROL 5
|
||||
#define CHR_IOCTL_PP_WRITE_CONTROL 6
|
||||
#define CHR_IOCTL_PP_READ_STATUS 7
|
||||
#define CHR_IOCTL_PP_EPP_READ_ADDR 8
|
||||
#define CHR_IOCTL_PP_EPP_READ 9
|
||||
#define CHR_IOCTL_PP_EPP_WRITE_ADDR 10
|
||||
#define CHR_IOCTL_PP_EPP_WRITE 11
|
||||
#define CHR_IOCTL_PP_DATA_DIR 12
|
||||
|
||||
struct ParallelIOArg {
|
||||
void *buffer;
|
||||
int count;
|
||||
};
|
||||
|
||||
#define CHR_IOCTL_SERIAL_SET_TIOCM 13
|
||||
#define CHR_IOCTL_SERIAL_GET_TIOCM 14
|
||||
|
||||
#define CHR_TIOCM_CTS 0x020
|
||||
#define CHR_TIOCM_CAR 0x040
|
||||
#define CHR_TIOCM_DSR 0x100
|
||||
#define CHR_TIOCM_RI 0x080
|
||||
#define CHR_TIOCM_DTR 0x002
|
||||
#define CHR_TIOCM_RTS 0x004
|
||||
|
||||
typedef void IOEventHandler(void *opaque, int event);
|
||||
|
||||
typedef enum {
|
||||
|
Loading…
Reference in New Issue
Block a user