blob: 2dea73288cc6f2aebc68a2aaec173c1cc5f55874 [file] [log] [blame]
Elliott Hughes180edef2023-11-02 00:08:05 +00001/*
2 * This file is auto-generated. Modifications will be lost.
3 *
4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5 * for more information.
6 */
Christopher Ferris106b3a82016-08-24 12:15:38 -07007#ifndef _LINUX_LIRC_H
8#define _LINUX_LIRC_H
9#include <linux/types.h>
10#include <linux/ioctl.h>
Christopher Ferris106b3a82016-08-24 12:15:38 -070011#define PULSE_BIT 0x01000000
12#define PULSE_MASK 0x00FFFFFF
13#define LIRC_MODE2_SPACE 0x00000000
14#define LIRC_MODE2_PULSE 0x01000000
Christopher Ferris106b3a82016-08-24 12:15:38 -070015#define LIRC_MODE2_FREQUENCY 0x02000000
16#define LIRC_MODE2_TIMEOUT 0x03000000
Christopher Ferris10a76e62022-06-08 13:31:52 -070017#define LIRC_MODE2_OVERFLOW 0x04000000
Christopher Ferris106b3a82016-08-24 12:15:38 -070018#define LIRC_VALUE_MASK 0x00FFFFFF
19#define LIRC_MODE2_MASK 0xFF000000
Christopher Ferris106b3a82016-08-24 12:15:38 -070020#define LIRC_SPACE(val) (((val) & LIRC_VALUE_MASK) | LIRC_MODE2_SPACE)
21#define LIRC_PULSE(val) (((val) & LIRC_VALUE_MASK) | LIRC_MODE2_PULSE)
22#define LIRC_FREQUENCY(val) (((val) & LIRC_VALUE_MASK) | LIRC_MODE2_FREQUENCY)
23#define LIRC_TIMEOUT(val) (((val) & LIRC_VALUE_MASK) | LIRC_MODE2_TIMEOUT)
Christopher Ferris10a76e62022-06-08 13:31:52 -070024#define LIRC_OVERFLOW(val) (((val) & LIRC_VALUE_MASK) | LIRC_MODE2_OVERFLOW)
Christopher Ferris106b3a82016-08-24 12:15:38 -070025#define LIRC_VALUE(val) ((val) & LIRC_VALUE_MASK)
26#define LIRC_MODE2(val) ((val) & LIRC_MODE2_MASK)
27#define LIRC_IS_SPACE(val) (LIRC_MODE2(val) == LIRC_MODE2_SPACE)
28#define LIRC_IS_PULSE(val) (LIRC_MODE2(val) == LIRC_MODE2_PULSE)
Christopher Ferris106b3a82016-08-24 12:15:38 -070029#define LIRC_IS_FREQUENCY(val) (LIRC_MODE2(val) == LIRC_MODE2_FREQUENCY)
30#define LIRC_IS_TIMEOUT(val) (LIRC_MODE2(val) == LIRC_MODE2_TIMEOUT)
Christopher Ferris10a76e62022-06-08 13:31:52 -070031#define LIRC_IS_OVERFLOW(val) (LIRC_MODE2(val) == LIRC_MODE2_OVERFLOW)
Christopher Ferris106b3a82016-08-24 12:15:38 -070032#define lirc_t int
33#define LIRC_MODE2SEND(x) (x)
Christopher Ferris106b3a82016-08-24 12:15:38 -070034#define LIRC_SEND2MODE(x) (x)
35#define LIRC_MODE2REC(x) ((x) << 16)
36#define LIRC_REC2MODE(x) ((x) >> 16)
37#define LIRC_MODE_RAW 0x00000001
Christopher Ferris106b3a82016-08-24 12:15:38 -070038#define LIRC_MODE_PULSE 0x00000002
39#define LIRC_MODE_MODE2 0x00000004
Christopher Ferris76a1d452018-06-27 14:12:29 -070040#define LIRC_MODE_SCANCODE 0x00000008
Christopher Ferris106b3a82016-08-24 12:15:38 -070041#define LIRC_MODE_LIRCCODE 0x00000010
42#define LIRC_CAN_SEND_RAW LIRC_MODE2SEND(LIRC_MODE_RAW)
Christopher Ferris106b3a82016-08-24 12:15:38 -070043#define LIRC_CAN_SEND_PULSE LIRC_MODE2SEND(LIRC_MODE_PULSE)
44#define LIRC_CAN_SEND_MODE2 LIRC_MODE2SEND(LIRC_MODE_MODE2)
45#define LIRC_CAN_SEND_LIRCCODE LIRC_MODE2SEND(LIRC_MODE_LIRCCODE)
46#define LIRC_CAN_SEND_MASK 0x0000003f
Christopher Ferris106b3a82016-08-24 12:15:38 -070047#define LIRC_CAN_SET_SEND_CARRIER 0x00000100
48#define LIRC_CAN_SET_SEND_DUTY_CYCLE 0x00000200
49#define LIRC_CAN_SET_TRANSMITTER_MASK 0x00000400
50#define LIRC_CAN_REC_RAW LIRC_MODE2REC(LIRC_MODE_RAW)
Christopher Ferris106b3a82016-08-24 12:15:38 -070051#define LIRC_CAN_REC_PULSE LIRC_MODE2REC(LIRC_MODE_PULSE)
52#define LIRC_CAN_REC_MODE2 LIRC_MODE2REC(LIRC_MODE_MODE2)
Christopher Ferris76a1d452018-06-27 14:12:29 -070053#define LIRC_CAN_REC_SCANCODE LIRC_MODE2REC(LIRC_MODE_SCANCODE)
Christopher Ferris106b3a82016-08-24 12:15:38 -070054#define LIRC_CAN_REC_LIRCCODE LIRC_MODE2REC(LIRC_MODE_LIRCCODE)
55#define LIRC_CAN_REC_MASK LIRC_MODE2REC(LIRC_CAN_SEND_MASK)
Christopher Ferris106b3a82016-08-24 12:15:38 -070056#define LIRC_CAN_SET_REC_CARRIER (LIRC_CAN_SET_SEND_CARRIER << 16)
Christopher Ferris106b3a82016-08-24 12:15:38 -070057#define LIRC_CAN_SET_REC_CARRIER_RANGE 0x80000000
Christopher Ferris106b3a82016-08-24 12:15:38 -070058#define LIRC_CAN_GET_REC_RESOLUTION 0x20000000
59#define LIRC_CAN_SET_REC_TIMEOUT 0x10000000
Christopher Ferris106b3a82016-08-24 12:15:38 -070060#define LIRC_CAN_MEASURE_CARRIER 0x02000000
Christopher Ferris106b3a82016-08-24 12:15:38 -070061#define LIRC_CAN_USE_WIDEBAND_RECEIVER 0x04000000
62#define LIRC_CAN_SEND(x) ((x) & LIRC_CAN_SEND_MASK)
63#define LIRC_CAN_REC(x) ((x) & LIRC_CAN_REC_MASK)
Christopher Ferris80ae69d2022-08-02 16:32:21 -070064#define LIRC_CAN_SET_REC_FILTER 0
65#define LIRC_CAN_NOTIFY_DECODE 0
Christopher Ferris106b3a82016-08-24 12:15:38 -070066#define LIRC_GET_FEATURES _IOR('i', 0x00000000, __u32)
67#define LIRC_GET_SEND_MODE _IOR('i', 0x00000001, __u32)
68#define LIRC_GET_REC_MODE _IOR('i', 0x00000002, __u32)
Christopher Ferris106b3a82016-08-24 12:15:38 -070069#define LIRC_GET_REC_RESOLUTION _IOR('i', 0x00000007, __u32)
Christopher Ferris106b3a82016-08-24 12:15:38 -070070#define LIRC_GET_MIN_TIMEOUT _IOR('i', 0x00000008, __u32)
71#define LIRC_GET_MAX_TIMEOUT _IOR('i', 0x00000009, __u32)
Christopher Ferris106b3a82016-08-24 12:15:38 -070072#define LIRC_GET_LENGTH _IOR('i', 0x0000000f, __u32)
73#define LIRC_SET_SEND_MODE _IOW('i', 0x00000011, __u32)
Christopher Ferris106b3a82016-08-24 12:15:38 -070074#define LIRC_SET_REC_MODE _IOW('i', 0x00000012, __u32)
75#define LIRC_SET_SEND_CARRIER _IOW('i', 0x00000013, __u32)
76#define LIRC_SET_REC_CARRIER _IOW('i', 0x00000014, __u32)
77#define LIRC_SET_SEND_DUTY_CYCLE _IOW('i', 0x00000015, __u32)
Christopher Ferris106b3a82016-08-24 12:15:38 -070078#define LIRC_SET_TRANSMITTER_MASK _IOW('i', 0x00000017, __u32)
79#define LIRC_SET_REC_TIMEOUT _IOW('i', 0x00000018, __u32)
80#define LIRC_SET_REC_TIMEOUT_REPORTS _IOW('i', 0x00000019, __u32)
Christopher Ferris106b3a82016-08-24 12:15:38 -070081#define LIRC_SET_MEASURE_CARRIER_MODE _IOW('i', 0x0000001d, __u32)
Christopher Ferris106b3a82016-08-24 12:15:38 -070082#define LIRC_SET_REC_CARRIER_RANGE _IOW('i', 0x0000001f, __u32)
Christopher Ferris106b3a82016-08-24 12:15:38 -070083#define LIRC_SET_WIDEBAND_RECEIVER _IOW('i', 0x00000023, __u32)
Christopher Ferris9ce28842018-10-25 12:11:39 -070084#define LIRC_GET_REC_TIMEOUT _IOR('i', 0x00000024, __u32)
Christopher Ferris76a1d452018-06-27 14:12:29 -070085struct lirc_scancode {
86 __u64 timestamp;
87 __u16 flags;
88 __u16 rc_proto;
89 __u32 keycode;
90 __u64 scancode;
91};
92#define LIRC_SCANCODE_FLAG_TOGGLE 1
93#define LIRC_SCANCODE_FLAG_REPEAT 2
94enum rc_proto {
95 RC_PROTO_UNKNOWN = 0,
96 RC_PROTO_OTHER = 1,
97 RC_PROTO_RC5 = 2,
98 RC_PROTO_RC5X_20 = 3,
99 RC_PROTO_RC5_SZ = 4,
100 RC_PROTO_JVC = 5,
101 RC_PROTO_SONY12 = 6,
102 RC_PROTO_SONY15 = 7,
103 RC_PROTO_SONY20 = 8,
104 RC_PROTO_NEC = 9,
105 RC_PROTO_NECX = 10,
106 RC_PROTO_NEC32 = 11,
107 RC_PROTO_SANYO = 12,
108 RC_PROTO_MCIR2_KBD = 13,
109 RC_PROTO_MCIR2_MSE = 14,
110 RC_PROTO_RC6_0 = 15,
111 RC_PROTO_RC6_6A_20 = 16,
112 RC_PROTO_RC6_6A_24 = 17,
113 RC_PROTO_RC6_6A_32 = 18,
114 RC_PROTO_RC6_MCE = 19,
115 RC_PROTO_SHARP = 20,
116 RC_PROTO_XMP = 21,
117 RC_PROTO_CEC = 22,
118 RC_PROTO_IMON = 23,
Christopher Ferris24f97eb2019-05-20 12:58:13 -0700119 RC_PROTO_RCMM12 = 24,
120 RC_PROTO_RCMM24 = 25,
121 RC_PROTO_RCMM32 = 26,
Christopher Ferrisaeddbcf2019-07-08 12:45:46 -0700122 RC_PROTO_XBOX_DVD = 27,
Christopher Ferris05667cd2021-02-16 16:01:34 -0800123 RC_PROTO_MAX = RC_PROTO_XBOX_DVD,
Christopher Ferris76a1d452018-06-27 14:12:29 -0700124};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700125#endif