1a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/****************************************************************************
2a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
3a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
4a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   This header was automatically generated from a Linux kernel header
5a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   of the same name, to make information necessary for userspace to
6a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   call into the kernel available to libc.  It contains only constants,
7a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   structures, and macros generated from the original header, and thus,
8a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   contains no copyrightable information.
9a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
10a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   To edit the content of this header, modify the corresponding
11a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   source file (e.g. under external/kernel-headers/original/) then
12a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   run bionic/libc/kernel/tools/update_all.py
13a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
14a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   Any manual change here will be lost the next time this script will
15a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   be run. You've been warned!
16a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
17a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
18a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************/
19655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#ifndef _UAPI__RFKILL_H
20655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define _UAPI__RFKILL_H
21655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <linux/types.h>
22655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define RFKILL_STATE_SOFT_BLOCKED 0
23655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define RFKILL_STATE_UNBLOCKED 1
24655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define RFKILL_STATE_HARD_BLOCKED 2
25655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengenum rfkill_type {
26d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  RFKILL_TYPE_ALL = 0,
27d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  RFKILL_TYPE_WLAN,
28d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  RFKILL_TYPE_BLUETOOTH,
29d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  RFKILL_TYPE_UWB,
30d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  RFKILL_TYPE_WIMAX,
31d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  RFKILL_TYPE_WWAN,
32d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  RFKILL_TYPE_GPS,
33d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  RFKILL_TYPE_FM,
34d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  RFKILL_TYPE_NFC,
35d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  NUM_RFKILL_TYPES,
36655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
37655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengenum rfkill_operation {
38d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  RFKILL_OP_ADD = 0,
39d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  RFKILL_OP_DEL,
40d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  RFKILL_OP_CHANGE,
41d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  RFKILL_OP_CHANGE_ALL,
42655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
43655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct rfkill_event {
44d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u32 idx;
45d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 type;
46d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 op;
47d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 soft, hard;
48655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng} __attribute__((packed));
49655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define RFKILL_EVENT_SIZE_V1 8
50655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define RFKILL_IOC_MAGIC 'R'
51655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define RFKILL_IOC_NOINPUT 1
52655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define RFKILL_IOCTL_NOINPUT _IO(RFKILL_IOC_MAGIC, RFKILL_IOC_NOINPUT)
53a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich#endif
54