blob: ea45506604fff63de8dd614c6c69734befb8090c [file] [log] [blame]
Christopher Ferris106b3a82016-08-24 12:15:38 -07001/****************************************************************************
2 ****************************************************************************
3 ***
4 *** This header was automatically generated from a Linux kernel header
5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
7 *** structures, and macros generated from the original header, and thus,
8 *** contains no copyrightable information.
9 ***
10 *** To edit the content of this header, modify the corresponding
11 *** source file (e.g. under external/kernel-headers/original/) then
12 *** run bionic/libc/kernel/tools/update_all.py
13 ***
14 *** Any manual change here will be lost the next time this script will
15 *** be run. You've been warned!
16 ***
17 ****************************************************************************
18 ****************************************************************************/
19#ifndef _LINUX_LIRC_H
20#define _LINUX_LIRC_H
21#include <linux/types.h>
22#include <linux/ioctl.h>
Christopher Ferris106b3a82016-08-24 12:15:38 -070023#define PULSE_BIT 0x01000000
24#define PULSE_MASK 0x00FFFFFF
25#define LIRC_MODE2_SPACE 0x00000000
26#define LIRC_MODE2_PULSE 0x01000000
Christopher Ferris106b3a82016-08-24 12:15:38 -070027#define LIRC_MODE2_FREQUENCY 0x02000000
28#define LIRC_MODE2_TIMEOUT 0x03000000
Christopher Ferris10a76e62022-06-08 13:31:52 -070029#define LIRC_MODE2_OVERFLOW 0x04000000
Christopher Ferris106b3a82016-08-24 12:15:38 -070030#define LIRC_VALUE_MASK 0x00FFFFFF
31#define LIRC_MODE2_MASK 0xFF000000
Christopher Ferris106b3a82016-08-24 12:15:38 -070032#define LIRC_SPACE(val) (((val) & LIRC_VALUE_MASK) | LIRC_MODE2_SPACE)
33#define LIRC_PULSE(val) (((val) & LIRC_VALUE_MASK) | LIRC_MODE2_PULSE)
34#define LIRC_FREQUENCY(val) (((val) & LIRC_VALUE_MASK) | LIRC_MODE2_FREQUENCY)
35#define LIRC_TIMEOUT(val) (((val) & LIRC_VALUE_MASK) | LIRC_MODE2_TIMEOUT)
Christopher Ferris10a76e62022-06-08 13:31:52 -070036#define LIRC_OVERFLOW(val) (((val) & LIRC_VALUE_MASK) | LIRC_MODE2_OVERFLOW)
Christopher Ferris106b3a82016-08-24 12:15:38 -070037#define LIRC_VALUE(val) ((val) & LIRC_VALUE_MASK)
38#define LIRC_MODE2(val) ((val) & LIRC_MODE2_MASK)
39#define LIRC_IS_SPACE(val) (LIRC_MODE2(val) == LIRC_MODE2_SPACE)
40#define LIRC_IS_PULSE(val) (LIRC_MODE2(val) == LIRC_MODE2_PULSE)
Christopher Ferris106b3a82016-08-24 12:15:38 -070041#define LIRC_IS_FREQUENCY(val) (LIRC_MODE2(val) == LIRC_MODE2_FREQUENCY)
42#define LIRC_IS_TIMEOUT(val) (LIRC_MODE2(val) == LIRC_MODE2_TIMEOUT)
Christopher Ferris10a76e62022-06-08 13:31:52 -070043#define LIRC_IS_OVERFLOW(val) (LIRC_MODE2(val) == LIRC_MODE2_OVERFLOW)
Christopher Ferris106b3a82016-08-24 12:15:38 -070044#define lirc_t int
45#define LIRC_MODE2SEND(x) (x)
Christopher Ferris106b3a82016-08-24 12:15:38 -070046#define LIRC_SEND2MODE(x) (x)
47#define LIRC_MODE2REC(x) ((x) << 16)
48#define LIRC_REC2MODE(x) ((x) >> 16)
49#define LIRC_MODE_RAW 0x00000001
Christopher Ferris106b3a82016-08-24 12:15:38 -070050#define LIRC_MODE_PULSE 0x00000002
51#define LIRC_MODE_MODE2 0x00000004
Christopher Ferris76a1d452018-06-27 14:12:29 -070052#define LIRC_MODE_SCANCODE 0x00000008
Christopher Ferris106b3a82016-08-24 12:15:38 -070053#define LIRC_MODE_LIRCCODE 0x00000010
54#define LIRC_CAN_SEND_RAW LIRC_MODE2SEND(LIRC_MODE_RAW)
Christopher Ferris106b3a82016-08-24 12:15:38 -070055#define LIRC_CAN_SEND_PULSE LIRC_MODE2SEND(LIRC_MODE_PULSE)
56#define LIRC_CAN_SEND_MODE2 LIRC_MODE2SEND(LIRC_MODE_MODE2)
57#define LIRC_CAN_SEND_LIRCCODE LIRC_MODE2SEND(LIRC_MODE_LIRCCODE)
58#define LIRC_CAN_SEND_MASK 0x0000003f
Christopher Ferris106b3a82016-08-24 12:15:38 -070059#define LIRC_CAN_SET_SEND_CARRIER 0x00000100
60#define LIRC_CAN_SET_SEND_DUTY_CYCLE 0x00000200
61#define LIRC_CAN_SET_TRANSMITTER_MASK 0x00000400
62#define LIRC_CAN_REC_RAW LIRC_MODE2REC(LIRC_MODE_RAW)
Christopher Ferris106b3a82016-08-24 12:15:38 -070063#define LIRC_CAN_REC_PULSE LIRC_MODE2REC(LIRC_MODE_PULSE)
64#define LIRC_CAN_REC_MODE2 LIRC_MODE2REC(LIRC_MODE_MODE2)
Christopher Ferris76a1d452018-06-27 14:12:29 -070065#define LIRC_CAN_REC_SCANCODE LIRC_MODE2REC(LIRC_MODE_SCANCODE)
Christopher Ferris106b3a82016-08-24 12:15:38 -070066#define LIRC_CAN_REC_LIRCCODE LIRC_MODE2REC(LIRC_MODE_LIRCCODE)
67#define LIRC_CAN_REC_MASK LIRC_MODE2REC(LIRC_CAN_SEND_MASK)
Christopher Ferris106b3a82016-08-24 12:15:38 -070068#define LIRC_CAN_SET_REC_CARRIER (LIRC_CAN_SET_SEND_CARRIER << 16)
Christopher Ferris106b3a82016-08-24 12:15:38 -070069#define LIRC_CAN_SET_REC_CARRIER_RANGE 0x80000000
Christopher Ferris106b3a82016-08-24 12:15:38 -070070#define LIRC_CAN_GET_REC_RESOLUTION 0x20000000
71#define LIRC_CAN_SET_REC_TIMEOUT 0x10000000
Christopher Ferris106b3a82016-08-24 12:15:38 -070072#define LIRC_CAN_MEASURE_CARRIER 0x02000000
Christopher Ferris106b3a82016-08-24 12:15:38 -070073#define LIRC_CAN_USE_WIDEBAND_RECEIVER 0x04000000
74#define LIRC_CAN_SEND(x) ((x) & LIRC_CAN_SEND_MASK)
75#define LIRC_CAN_REC(x) ((x) & LIRC_CAN_REC_MASK)
Christopher Ferris106b3a82016-08-24 12:15:38 -070076#define LIRC_GET_FEATURES _IOR('i', 0x00000000, __u32)
77#define LIRC_GET_SEND_MODE _IOR('i', 0x00000001, __u32)
78#define LIRC_GET_REC_MODE _IOR('i', 0x00000002, __u32)
Christopher Ferris106b3a82016-08-24 12:15:38 -070079#define LIRC_GET_REC_RESOLUTION _IOR('i', 0x00000007, __u32)
Christopher Ferris106b3a82016-08-24 12:15:38 -070080#define LIRC_GET_MIN_TIMEOUT _IOR('i', 0x00000008, __u32)
81#define LIRC_GET_MAX_TIMEOUT _IOR('i', 0x00000009, __u32)
Christopher Ferris106b3a82016-08-24 12:15:38 -070082#define LIRC_GET_LENGTH _IOR('i', 0x0000000f, __u32)
83#define LIRC_SET_SEND_MODE _IOW('i', 0x00000011, __u32)
Christopher Ferris106b3a82016-08-24 12:15:38 -070084#define LIRC_SET_REC_MODE _IOW('i', 0x00000012, __u32)
85#define LIRC_SET_SEND_CARRIER _IOW('i', 0x00000013, __u32)
86#define LIRC_SET_REC_CARRIER _IOW('i', 0x00000014, __u32)
87#define LIRC_SET_SEND_DUTY_CYCLE _IOW('i', 0x00000015, __u32)
Christopher Ferris106b3a82016-08-24 12:15:38 -070088#define LIRC_SET_TRANSMITTER_MASK _IOW('i', 0x00000017, __u32)
89#define LIRC_SET_REC_TIMEOUT _IOW('i', 0x00000018, __u32)
90#define LIRC_SET_REC_TIMEOUT_REPORTS _IOW('i', 0x00000019, __u32)
Christopher Ferris106b3a82016-08-24 12:15:38 -070091#define LIRC_SET_MEASURE_CARRIER_MODE _IOW('i', 0x0000001d, __u32)
Christopher Ferris106b3a82016-08-24 12:15:38 -070092#define LIRC_SET_REC_CARRIER_RANGE _IOW('i', 0x0000001f, __u32)
Christopher Ferris106b3a82016-08-24 12:15:38 -070093#define LIRC_SET_WIDEBAND_RECEIVER _IOW('i', 0x00000023, __u32)
Christopher Ferris9ce28842018-10-25 12:11:39 -070094#define LIRC_GET_REC_TIMEOUT _IOR('i', 0x00000024, __u32)
Christopher Ferris76a1d452018-06-27 14:12:29 -070095struct lirc_scancode {
96 __u64 timestamp;
97 __u16 flags;
98 __u16 rc_proto;
99 __u32 keycode;
100 __u64 scancode;
101};
102#define LIRC_SCANCODE_FLAG_TOGGLE 1
103#define LIRC_SCANCODE_FLAG_REPEAT 2
104enum rc_proto {
105 RC_PROTO_UNKNOWN = 0,
106 RC_PROTO_OTHER = 1,
107 RC_PROTO_RC5 = 2,
108 RC_PROTO_RC5X_20 = 3,
109 RC_PROTO_RC5_SZ = 4,
110 RC_PROTO_JVC = 5,
111 RC_PROTO_SONY12 = 6,
112 RC_PROTO_SONY15 = 7,
113 RC_PROTO_SONY20 = 8,
114 RC_PROTO_NEC = 9,
115 RC_PROTO_NECX = 10,
116 RC_PROTO_NEC32 = 11,
117 RC_PROTO_SANYO = 12,
118 RC_PROTO_MCIR2_KBD = 13,
119 RC_PROTO_MCIR2_MSE = 14,
120 RC_PROTO_RC6_0 = 15,
121 RC_PROTO_RC6_6A_20 = 16,
122 RC_PROTO_RC6_6A_24 = 17,
123 RC_PROTO_RC6_6A_32 = 18,
124 RC_PROTO_RC6_MCE = 19,
125 RC_PROTO_SHARP = 20,
126 RC_PROTO_XMP = 21,
127 RC_PROTO_CEC = 22,
128 RC_PROTO_IMON = 23,
Christopher Ferris24f97eb2019-05-20 12:58:13 -0700129 RC_PROTO_RCMM12 = 24,
130 RC_PROTO_RCMM24 = 25,
131 RC_PROTO_RCMM32 = 26,
Christopher Ferrisaeddbcf2019-07-08 12:45:46 -0700132 RC_PROTO_XBOX_DVD = 27,
Christopher Ferris05667cd2021-02-16 16:01:34 -0800133 RC_PROTO_MAX = RC_PROTO_XBOX_DVD,
Christopher Ferris76a1d452018-06-27 14:12:29 -0700134};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700135#endif