File: /usr/src/linux/include/linux/irda.h
1 /*********************************************************************
2 *
3 * Filename: irda.h
4 * Version:
5 * Description:
6 * Status: Experimental.
7 * Author: Dag Brattli <dagb@cs.uit.no>
8 * Created at: Mon Mar 8 14:06:12 1999
9 * Modified at: Sat Dec 25 16:06:42 1999
10 * Modified by: Dag Brattli <dagb@cs.uit.no>
11 *
12 * Copyright (c) 1999 Dag Brattli, All Rights Reserved.
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
18 *
19 * Neither Dag Brattli nor University of Tromsų admit liability nor
20 * provide warranty for any of this software. This material is
21 * provided "AS-IS" and at no charge.
22 *
23 ********************************************************************/
24
25 #ifndef KERNEL_IRDA_H
26 #define KERNEL_IRDA_H
27
28 /* Hint bit positions for first hint byte */
29 #define HINT_PNP 0x01
30 #define HINT_PDA 0x02
31 #define HINT_COMPUTER 0x04
32 #define HINT_PRINTER 0x08
33 #define HINT_MODEM 0x10
34 #define HINT_FAX 0x20
35 #define HINT_LAN 0x40
36 #define HINT_EXTENSION 0x80
37
38 /* Hint bit positions for second hint byte (first extension byte) */
39 #define HINT_TELEPHONY 0x01
40 #define HINT_FILE_SERVER 0x02
41 #define HINT_COMM 0x04
42 #define HINT_MESSAGE 0x08
43 #define HINT_HTTP 0x10
44 #define HINT_OBEX 0x20
45
46 /* IrLMP character code values */
47 #define CS_ASCII 0x00
48 #define CS_ISO_8859_1 0x01
49 #define CS_ISO_8859_2 0x02
50 #define CS_ISO_8859_3 0x03
51 #define CS_ISO_8859_4 0x04
52 #define CS_ISO_8859_5 0x05
53 #define CS_ISO_8859_6 0x06
54 #define CS_ISO_8859_7 0x07
55 #define CS_ISO_8859_8 0x08
56 #define CS_ISO_8859_9 0x09
57 #define CS_UNICODE 0xff
58
59 /* These are the currently known dongles */
60 typedef enum {
61 IRDA_TEKRAM_DONGLE = 0,
62 IRDA_ESI_DONGLE = 1,
63 IRDA_ACTISYS_DONGLE = 2,
64 IRDA_ACTISYS_PLUS_DONGLE = 3,
65 IRDA_GIRBIL_DONGLE = 4,
66 IRDA_LITELINK_DONGLE = 5,
67 IRDA_AIRPORT_DONGLE = 6,
68 IRDA_OLD_BELKIN_DONGLE = 7,
69 } IRDA_DONGLE;
70
71 /* Protocol types to be used for SOCK_DGRAM */
72 enum {
73 IRDAPROTO_UNITDATA = 0,
74 IRDAPROTO_ULTRA = 1,
75 IRDAPROTO_MAX
76 };
77
78 #define SOL_IRLMP 266 /* Same as SOL_IRDA for now */
79 #define SOL_IRTTP 266 /* Same as SOL_IRDA for now */
80
81 #define IRLMP_ENUMDEVICES 1 /* Return discovery log */
82 #define IRLMP_IAS_SET 2 /* Set an attribute in local IAS */
83 #define IRLMP_IAS_QUERY 3 /* Query remote IAS for attribute */
84 #define IRLMP_HINTS_SET 4 /* Set hint bits advertised */
85 #define IRLMP_QOS_SET 5
86 #define IRLMP_QOS_GET 6
87 #define IRLMP_MAX_SDU_SIZE 7
88 #define IRLMP_IAS_GET 8 /* Get an attribute from local IAS */
89 #define IRLMP_IAS_DEL 9 /* Remove attribute from local IAS */
90 #define IRLMP_HINT_MASK_SET 10 /* Set discovery filter */
91 #define IRLMP_WAITDEVICE 11 /* Wait for a new discovery */
92
93 #define IRTTP_MAX_SDU_SIZE IRLMP_MAX_SDU_SIZE /* Compatibility */
94
95 #define IAS_MAX_STRING 256 /* See IrLMP 1.1, 4.3.3.2 */
96 #define IAS_MAX_OCTET_STRING 1024 /* See IrLMP 1.1, 4.3.3.2 */
97 #define IAS_MAX_CLASSNAME 60 /* See IrLMP 1.1, 4.3.1 */
98 #define IAS_MAX_ATTRIBNAME 60 /* See IrLMP 1.1, 4.3.3.1 */
99 #define IAS_MAX_ATTRIBNUMBER 256 /* See IrLMP 1.1, 4.3.3.1 */
100 /* For user space backward compatibility - may be fixed in kernel 2.5.X
101 * Note : need 60+1 ('\0'), make it 64 for alignement - Jean II */
102 #define IAS_EXPORT_CLASSNAME 64
103 #define IAS_EXPORT_ATTRIBNAME 256
104
105 /* Attribute type needed for struct irda_ias_set */
106 #define IAS_MISSING 0
107 #define IAS_INTEGER 1
108 #define IAS_OCT_SEQ 2
109 #define IAS_STRING 3
110
111 #define LSAP_ANY 0xff
112
113 struct sockaddr_irda {
114 sa_family_t sir_family; /* AF_IRDA */
115 __u8 sir_lsap_sel; /* LSAP selector */
116 __u32 sir_addr; /* Device address */
117 char sir_name[25]; /* Usually <service>:IrDA:TinyTP */
118 };
119
120 struct irda_device_info {
121 __u32 saddr; /* Address of local interface */
122 __u32 daddr; /* Address of remote device */
123 char info[22]; /* Description */
124 __u8 charset; /* Charset used for description */
125 __u8 hints[2]; /* Hint bits */
126 };
127
128 struct irda_device_list {
129 __u32 len;
130 struct irda_device_info dev[1];
131 };
132
133 struct irda_ias_set {
134 char irda_class_name[IAS_EXPORT_CLASSNAME];
135 char irda_attrib_name[IAS_EXPORT_ATTRIBNAME];
136 unsigned int irda_attrib_type;
137 union {
138 unsigned int irda_attrib_int;
139 struct {
140 unsigned short len;
141 __u8 octet_seq[IAS_MAX_OCTET_STRING];
142 } irda_attrib_octet_seq;
143 struct {
144 __u8 len;
145 __u8 charset;
146 __u8 string[IAS_MAX_STRING];
147 } irda_attrib_string;
148 } attribute;
149 __u32 daddr; /* Address of device (for some queries only) */
150 };
151
152 /* Some private IOCTL's (max 16) */
153 #define SIOCSDONGLE (SIOCDEVPRIVATE + 0)
154 #define SIOCGDONGLE (SIOCDEVPRIVATE + 1)
155 #define SIOCSBANDWIDTH (SIOCDEVPRIVATE + 2)
156 #define SIOCSMEDIABUSY (SIOCDEVPRIVATE + 3)
157 #define SIOCGMEDIABUSY (SIOCDEVPRIVATE + 4)
158 #define SIOCGRECEIVING (SIOCDEVPRIVATE + 5)
159 #define SIOCSMODE (SIOCDEVPRIVATE + 6)
160 #define SIOCGMODE (SIOCDEVPRIVATE + 7)
161 #define SIOCSDTRRTS (SIOCDEVPRIVATE + 8)
162 #define SIOCGQOS (SIOCDEVPRIVATE + 9)
163
164 /* No reason to include <linux/if.h> just because of this one ;-) */
165 #define IRNAMSIZ 16
166
167 /* IrDA quality of service information (must not exceed 16 bytes) */
168 struct if_irda_qos {
169 unsigned long baudrate;
170 unsigned short data_size;
171 unsigned short window_size;
172 unsigned short min_turn_time;
173 unsigned short max_turn_time;
174 unsigned char add_bofs;
175 unsigned char link_disc;
176 };
177
178 /* For setting RTS and DTR lines of a dongle */
179 struct if_irda_line {
180 __u8 dtr;
181 __u8 rts;
182 };
183
184 /* IrDA interface configuration (data part must not exceed 16 bytes) */
185 struct if_irda_req {
186 union {
187 char ifrn_name[IRNAMSIZ]; /* if name, e.g. "irda0" */
188 } ifr_ifrn;
189
190 /* Data part */
191 union {
192 struct if_irda_line ifru_line;
193 struct if_irda_qos ifru_qos;
194 unsigned short ifru_flags;
195 unsigned int ifru_receiving;
196 unsigned int ifru_mode;
197 unsigned int ifru_dongle;
198 } ifr_ifru;
199 };
200
201 #define ifr_baudrate ifr_ifru.ifru_qos.baudrate
202 #define ifr_receiving ifr_ifru.ifru_receiving
203 #define ifr_dongle ifr_ifru.ifru_dongle
204 #define ifr_mode ifr_ifru.ifru_mode
205 #define ifr_dtr ifr_ifru.ifru_line.dtr
206 #define ifr_rts ifr_ifru.ifru_line.rts
207
208 #endif /* KERNEL_IRDA_H */
209
210
211
212
213