1 /* 2 * Copyright (C) 1999-2002 Vojtech Pavlik 3 * 4 * This program is free software; you can redistribute it and/or modify it 5 * under the terms of the GNU General Public License version 2 as published by 6 * the Free Software Foundation. 7 */ 8 #ifndef _UAPI_SERIO_H 9 #define _UAPI_SERIO_H 10 11 12 #include <linux/ioctl.h> 13 14 #define SPIOCSTYPE _IOW('q', 0x01, unsigned long) 15 16 17 /* 18 * bit masks for use in "interrupt" flags (3rd argument) 19 */ 20 #define SERIO_TIMEOUT BIT(0) 21 #define SERIO_PARITY BIT(1) 22 #define SERIO_FRAME BIT(2) 23 #define SERIO_OOB_DATA BIT(3) 24 25 /* 26 * Serio types 27 */ 28 #define SERIO_XT 0x00 29 #define SERIO_8042 0x01 30 #define SERIO_RS232 0x02 31 #define SERIO_HIL_MLC 0x03 32 #define SERIO_PS_PSTHRU 0x05 33 #define SERIO_8042_XL 0x06 34 35 /* 36 * Serio protocols 37 */ 38 #define SERIO_UNKNOWN 0x00 39 #define SERIO_MSC 0x01 40 #define SERIO_SUN 0x02 41 #define SERIO_MS 0x03 42 #define SERIO_MP 0x04 43 #define SERIO_MZ 0x05 44 #define SERIO_MZP 0x06 45 #define SERIO_MZPP 0x07 46 #define SERIO_VSXXXAA 0x08 47 #define SERIO_SUNKBD 0x10 48 #define SERIO_WARRIOR 0x18 49 #define SERIO_SPACEORB 0x19 50 #define SERIO_MAGELLAN 0x1a 51 #define SERIO_SPACEBALL 0x1b 52 #define SERIO_GUNZE 0x1c 53 #define SERIO_IFORCE 0x1d 54 #define SERIO_STINGER 0x1e 55 #define SERIO_NEWTON 0x1f 56 #define SERIO_STOWAWAY 0x20 57 #define SERIO_H3600 0x21 58 #define SERIO_PS2SER 0x22 59 #define SERIO_TWIDKBD 0x23 60 #define SERIO_TWIDJOY 0x24 61 #define SERIO_HIL 0x25 62 #define SERIO_SNES232 0x26 63 #define SERIO_SEMTECH 0x27 64 #define SERIO_LKKBD 0x28 65 #define SERIO_ELO 0x29 66 #define SERIO_MICROTOUCH 0x30 67 #define SERIO_PENMOUNT 0x31 68 #define SERIO_TOUCHRIGHT 0x32 69 #define SERIO_TOUCHWIN 0x33 70 #define SERIO_TAOSEVM 0x34 71 #define SERIO_FUJITSU 0x35 72 #define SERIO_ZHENHUA 0x36 73 #define SERIO_INEXIO 0x37 74 #define SERIO_TOUCHIT213 0x38 75 #define SERIO_W8001 0x39 76 #define SERIO_DYNAPRO 0x3a 77 #define SERIO_HAMPSHIRE 0x3b 78 #define SERIO_PS2MULT 0x3c 79 #define SERIO_TSC40 0x3d 80 #define SERIO_WACOM_IV 0x3e 81 #define SERIO_EGALAX 0x3f 82 #define SERIO_PULSE8_CEC 0x40 83 #define SERIO_RAINSHADOW_CEC 0x41 84 85 #endif /* _UAPI_SERIO_H */ 86