Home | History | Annotate | Line # | Download | only in ir
irdaio.h revision 1.6
      1 /*	$NetBSD: irdaio.h,v 1.6 2001/12/13 15:09:07 augustss Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Lennart Augustsson (lennart (at) augustsson.net).
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *        This product includes software developed by the NetBSD
     21  *        Foundation, Inc. and its contributors.
     22  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  *    contributors may be used to endorse or promote products derived
     24  *    from this software without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  * POSSIBILITY OF SUCH DAMAGE.
     37  */
     38 
     39 #ifndef _SYS_DEV_IRDAIO_H_
     40 #define _SYS_DEV_IRDAIO_H_
     41 
     42 struct irda_params {
     43 	unsigned int speed;
     44 	unsigned int ebofs;
     45 	unsigned int maxsize;
     46 };
     47 
     48 /* SIR speeds */
     49 #define IRDA_SPEED_2400		0x0001
     50 #define IRDA_SPEED_9600		0x0002
     51 #define IRDA_SPEED_19200	0x0004
     52 #define IRDA_SPEED_38400	0x0008
     53 #define IRDA_SPEED_57600	0x0010
     54 #define IRDA_SPEED_115200	0x0020
     55 /* MIR speeds */
     56 #define IRDA_SPEED_576000	0x0040
     57 #define IRDA_SPEED_1152000	0x0080
     58 /* FIR speeds */
     59 #define IRDA_SPEED_4000000	0x0100
     60 /* VFIR speeds */
     61 #define IRDA_SPEED_16000000	0x0200
     62 
     63 #define IRDA_SPEEDS_SIR		0x003f
     64 #define IRDA_SPEEDS_MIR		0x00c0
     65 #define IRDA_SPEEDS_FIR		0x0100
     66 #define IRDA_SPEEDS_VFIR	0x0200
     67 
     68 #define IRDA_TURNT_10000	0x01
     69 #define IRDA_TURNT_5000		0x02
     70 #define IRDA_TURNT_1000		0x04
     71 #define IRDA_TURNT_500		0x08
     72 #define IRDA_TURNT_100		0x10
     73 #define IRDA_TURNT_50		0x20
     74 #define IRDA_TURNT_10		0x40
     75 #define IRDA_TURNT_0		0x80
     76 
     77 /* Coordinate numbering with cirio.h. */
     78 #define IRDA_RESET_PARAMS	_IO ('I', 1)
     79 #define IRDA_SET_PARAMS		_IOW('I', 2, struct irda_params)
     80 #define IRDA_GET_SPEEDMASK	_IOR('I', 3, unsigned int)
     81 #define IRDA_GET_TURNAROUNDMASK	_IOR('I', 4, unsigned int)
     82 
     83 
     84 /* irframetty device ioctls */
     85 #define IRFRAMETTY_GET_DEVICE	_IOR('I', 100, unsigned int)
     86 #define IRFRAMETTY_GET_DONGLE	_IOR('I', 101, unsigned int)
     87 #define IRFRAMETTY_SET_DONGLE	_IOW('I', 102, unsigned int)
     88 #define   DONGLE_NONE		0
     89 #define   DONGLE_TEKRAM		1
     90 #define   DONGLE_JETEYE		2
     91 #define   DONGLE_ACTISYS	3
     92 #define   DONGLE_ACTISYS_PLUS	4
     93 #define   DONGLE_LITELINK	5
     94 #define   DONGLE_GIRBIL		6
     95 #define   DONGLE_MAX		7
     96 
     97 #endif /* _SYS_DEV_IRDAIO_H_ */
     98 
     99