1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
/*********************************************************************
*
* Filename: irvtd.h
* Version: 0.1
* Sources: irlpt.h
*
* Copyright (c) 1998, Takahide Higuchi <thiguchi@pluto.dti.ne.jp>,
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* I, Takahide Higuchi, provide no warranty for any of this software.
* This material is provided "AS-IS" and at no charge.
*
********************************************************************/
#ifndef IRVTD_H
#define IRVTD_H
#include <linux/types.h>
#include <linux/ioctl.h>
#include <linux/tqueue.h>
#include <linux/serial.h>
#include <net/irda/irmod.h>
#include <net/irda/qos.h>
#include <net/irda/ircomm_common.h>
#define IRVTD_MAGIC 0xff545943 /* random */
#define COMM_MAX_TTY 1
#define IRVTD_RX_QUEUE_HIGH 10
#define IRVTD_RX_QUEUE_LOW 2
#define IRCOMM_MAJOR 60; /* Zero means automatic allocation
60,61,62,and 63 is reserved for experiment */
#define IRVTD_MINOR 64
struct irvtd_cb {
int magic; /* magic used to detect corruption of the struct */
/* if daddr is NULL, remote device have not been discovered yet */
int tx_disable;
int rx_disable;
struct sk_buff *txbuff;
struct sk_buff_head rxbuff;
struct ircomm_cb *comm; /* ircomm instance */
__u32 tx_max_sdu_size;
__u32 max_header_size;
/*
* These members are used for compatibility with usual serial device.
* See linux/serial.h
*/
int flags;
struct tty_struct *tty;
int line;
int count; /* open count */
int blocked_open;
struct wait_queue *open_wait;
struct wait_queue *close_wait;
struct wait_queue *delta_msr_wait;
struct wait_queue *tx_wait;
struct timer_list tx_timer;
struct timer_list rx_timer;
long pgrp;
long session;
unsigned short closing_wait; /* time to wait before closing */
unsigned short close_delay;
int custom_divisor;
int mcr;
int msr;
int cts_stoptx;
int ttp_stoptx;
int ttp_stoprx;
int disconnect_pend;
struct serial_icounter_struct icount;
int read_status_mask;
int ignore_status_mask;
};
#endif
|