2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* include/linux/serial.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 1992 by Theodore Ts'o.
|
|
|
|
*
|
|
|
|
* Redistribution of this file is permitted under the terms of the GNU
|
|
|
|
* Public License (GPL)
|
|
|
|
*/
|
|
|
|
#ifndef _LINUX_SERIAL_H
|
|
|
|
#define _LINUX_SERIAL_H
|
|
|
|
|
|
|
|
#include <asm/page.h>
|
2012-10-13 09:46:48 +00:00
|
|
|
#include <uapi/linux/serial.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-09-04 15:35:08 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Counters of the input lines (CTS, DSR, RI, CD) interrupts
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct async_icount {
|
|
|
|
__u32 cts, dsr, rng, dcd, tx, rx;
|
|
|
|
__u32 frame, parity, overrun, brk;
|
|
|
|
__u32 buf_overrun;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The size of the serial xmit buffer is 1 page, or 4096 bytes
|
|
|
|
*/
|
|
|
|
#define SERIAL_XMIT_SIZE PAGE_SIZE
|
|
|
|
|
2005-07-16 08:30:53 +00:00
|
|
|
#include <linux/compiler.h>
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif /* _LINUX_SERIAL_H */
|