Loading...
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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 | /********************************************************************* * * Filename: ircomm_common.h * Version: * Description: An implementation of IrCOMM service interface and state machine * Status: Experimental. * Author: Takahide Higuchi <thiguchi@pluto.dti.ne.jp> * * Copyright (c) 1998-1999, 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 IRCOMM_H #define IRCOMM_H /* #define DEBUG(n, args...) printk( KERN_DEBUG args) */ /* enable all debug message */ #include <linux/types.h> #include <net/irda/irmod.h> typedef enum { COMM_IDLE, COMM_DISCOVERY_WAIT, COMM_QUERYPARAM_WAIT, COMM_QUERYLSAP_WAIT, COMM_WAITI, COMM_WAITR, COMM_CONN, } IRCOMM_STATE; /* IrCOMM Events */ typedef enum { IRCOMM_CONNECT_REQUEST, TTP_CONNECT_INDICATION, LMP_CONNECT_INDICATION, TTP_CONNECT_CONFIRM, TTP_DISCONNECT_INDICATION, LMP_CONNECT_CONFIRM, LMP_DISCONNECT_INDICATION, IRCOMM_CONNECT_RESPONSE, IRCOMM_DISCONNECT_REQUEST, TTP_DATA_INDICATION, IRCOMM_DATA_REQUEST, LMP_DATA_INDICATION, IRCOMM_CONTROL_REQUEST, DISCOVERY_INDICATION, GOT_PARAMETERS, GOT_LSAPSEL, QUERYIAS_ERROR, } IRCOMM_EVENT; typedef enum { TX_READY, TX_BUSY, IAS_PARAM, CONTROL_CHANNEL, } IRCOMM_CMD; #define IRCOMM_MAGIC 0x434f4d4d #define COMM_INIT_CTRL_PARAM 3 /* length of initial control parameters */ #define COMM_HEADER_SIZE 1 /* length of clen field */ #define COMM_MAX_HEADER_SIZE (TTP_MAX_HEADER+COMM_HEADER_SIZE) #define COMM_DEFAULT_SDU_SIZE (64 - COMM_HEADER_SIZE) #define IRCOMM_MAX_CONNECTION 1 /* Don't change for now */ #define UNKNOWN 0x00 /* not defined yet. */ /* we use 9wire if servicetype=DEFAULT, but is it good? */ #define DEFAULT 0x0a /* private number */ #define THREE_WIRE_RAW 0x01 /* bit 0 */ #define THREE_WIRE 0x02 /* bit 1 */ #define NINE_WIRE 0x04 /* bit 2 */ #define CENTRONICS 0x08 /* bit 3 */ #define SERIAL 0x01 /* bit 0 */ #define PARALLEL 0x02 /* bit 1 */ #define SERVICETYPE 0x00 #define PORT_TYPE 0x01 #define PORT_NAME 0x02 #define FIXED_PORT_NAME 0x82 #define DATA_RATE 0x10 #define DATA_FORMAT 0x11 #define FLOW_CONTROL 0x12 #define XON_XOFF_CHAR 0x13 #define ENQ_ACK_CHAR 0x14 #define LINESTATUS 0x15 #define BREAK_SIGNAL 0x16 #define DTELINE_STATE 0x20 #define DCELINE_STATE 0x21 #define POLL_FOR_LINE_SETTINGS 0x22 #define STATUS_QUERY 0x30 #define SET_BUSY_TIMEOUT 0x31 #define IEEE1284_MODE_SUPPORT 0x32 #define IEEE1284_DEVICEID 0x33 #define IEEE1284_MODE 0x34 #define IEEE1284_ECP_EPP_DATA_TRANSFER 0x35 /* parameters of FLOW_CONTROL */ #define USE_RTS 0x08 /* use RTS on output */ #define USE_CTS 0x04 /* use CTS on input */ #define USE_DTR 0x20 /* use DTR on output */ /* parameters of DTELINE_STATE */ #define DELTA_DTR 0x01 #define DELTA_RTS 0x02 #define MCR_DTR 0x04 #define MCR_RTS 0x08 /* parameters of DCELINE_STATE */ #define DELTA_CTS 0x01 #define DELTA_DSR 0x02 #define DELTA_RI 0x04 #define DELTA_DCD 0x08 #define MSR_CTS 0x10 #define MSR_DSR 0x20 #define MSR_RI 0x40 #define MSR_DCD 0x80 /* parameters of DATA_FORMAT */ #define IRCOMM_WLEN5 0x00 /* word length is 5bit */ #define IRCOMM_WLEN6 0x01 /* word length is 6bit */ #define IRCOMM_WLEN7 0x02 /* word length is 7bit */ #define IRCOMM_WLEN8 0x03 /* word length is 8bit */ #define IRCOMM_STOP2 0x04 /* 2 stop bits mode */ #define IRCOMM_PARENB 0x08 /* parity enable */ #define IRCOMM_PARODD 0x00 /* odd parity */ #define IRCOMM_PAREVEN 0x10 /* even parity */ #define IRCOMM_PARMARK 0x20 #define IRCOMM_PARSPC 0x30 /* parameters of LINE_STATUS */ #define LSR_OE 0x02 /* Overrun error indicator */ #define LSR_PE 0x04 /* Parity error indicator */ #define LSR_FE 0x08 /* Frame error indicator */ #define LSR_BI 0x01 /* Break interrupt indicator */ struct ircomm_cb { int magic; int state; /* Current state of IrCOMM layer: * DISCOVERY,COMM_IDLE, COMM_WAITR, * COMM_WAITI, COMM_CONN */ int in_use; int null_modem_mode; /* switch for null modem emulation */ int ttp_stop; __u32 tx_max_sdu_size; __u32 rx_max_sdu_size; __u8 max_header_size; __u32 daddr; /* Device address of the peer device */ __u32 saddr; __u32 skey; __u32 ckey; int queryias_lock; int ias_type; int disconnect_priority; /* P_NORMAL or P_HIGH. see irttp.h */ struct notify_t notify; /* container of callbacks */ void (*d_handler)(struct ircomm_cb *self); int control_ch_pending; struct sk_buff *ctrl_skb; /* queue of control channel */ __u8 dlsap; /* IrLMP dlsap */ __u8 lsap; /* sap of local device */ struct tsap_cb *tsap; /* IrTTP/LMP handle */ struct qos_info *qos; /* Quality of Service */ int reason; /* I don't know about reason: see Irlmp.c or somewhere :p)*/ int peer_cap; /* capability of peer device */ struct wait_queue *discovery_wait; struct wait_queue *ias_wait; /* statistics */ int tx_packets; int rx_packets; int tx_controls; int pending_control_tuples; int ignored_control_tuples; __u8 pi ; /* instruction of control channel*/ __u8 port_type; __u8 peer_port_type; __u8 servicetype; __u8 peer_servicetype; __u8 data_format; __u8 peer_data_format; __u8 flow_ctrl; __u8 peer_flow_ctrl; __u8 line_status; __u8 peer_line_status; __u8 break_signal; __u8 peer_break_signal; __u8 dte; __u8 peer_dte; __u8 dce; __u8 peer_dce; __u8 xon_char; __u8 xoff_char; __u8 peer_xon_char; __u8 peer_xoff_char; __u8 enq_char; __u8 ack_char; __u8 peer_enq_char; __u8 peer_ack_char; __u8 busy_timeout; __u8 peer_busy_timeout; __u8 ecp_epp_mode; __u8 peer_ecp_epp_mode; __u8 channel_or_addr; __u8 peer_channel_or_addr; __u32 data_rate; __u32 peer_data_rate; char port_name[33]; int port_name_critical; }; void ircomm_connect_request(struct ircomm_cb *self, __u8 servicetype); void ircomm_connect_response(struct ircomm_cb *self, struct sk_buff *userdata, __u32 maxsdusize); void ircomm_disconnect_request(struct ircomm_cb *self, struct sk_buff *userdata, int priority); int ircomm_data_request(struct ircomm_cb *self, struct sk_buff *userdata); void ircomm_control_request(struct ircomm_cb *self, __u8 instruction); void ircomm_parse_tuples(struct ircomm_cb *self, struct sk_buff *skb, int type); struct ircomm_cb *ircomm_open_instance(struct notify_t notify); int ircomm_close_instance(struct ircomm_cb *self); #endif |