]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/linux/rfkill.h
mac80211: do not pass PS frames out of mac80211 again
[mirror_ubuntu-zesty-kernel.git] / include / linux / rfkill.h
CommitLineData
cf4328cd
ID
1#ifndef __RFKILL_H
2#define __RFKILL_H
3
4/*
fe242cfd 5 * Copyright (C) 2006 - 2007 Ivo van Doorn
cf4328cd 6 * Copyright (C) 2007 Dmitry Torokhov
19d337df 7 * Copyright 2009 Johannes Berg <johannes@sipsolutions.net>
cf4328cd
ID
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the
21 * Free Software Foundation, Inc.,
22 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 */
24
c64fb016 25#include <linux/types.h>
19d337df
JB
26
27/* define userspace visible states */
28#define RFKILL_STATE_SOFT_BLOCKED 0
29#define RFKILL_STATE_UNBLOCKED 1
30#define RFKILL_STATE_HARD_BLOCKED 2
31
cf4328cd
ID
32/**
33 * enum rfkill_type - type of rfkill switch.
19d337df 34 *
c64fb016 35 * @RFKILL_TYPE_ALL: toggles all switches (userspace only)
19d337df
JB
36 * @RFKILL_TYPE_WLAN: switch is on a 802.11 wireless network device.
37 * @RFKILL_TYPE_BLUETOOTH: switch is on a bluetooth device.
38 * @RFKILL_TYPE_UWB: switch is on a ultra wideband device.
39 * @RFKILL_TYPE_WIMAX: switch is on a WiMAX device.
40 * @RFKILL_TYPE_WWAN: switch is on a wireless WAN device.
41 * @NUM_RFKILL_TYPES: number of defined rfkill types
cf4328cd
ID
42 */
43enum rfkill_type {
c64fb016 44 RFKILL_TYPE_ALL = 0,
19d337df 45 RFKILL_TYPE_WLAN,
234a0ca6 46 RFKILL_TYPE_BLUETOOTH,
e0665486 47 RFKILL_TYPE_UWB,
303d9bf6 48 RFKILL_TYPE_WIMAX,
477576a0 49 RFKILL_TYPE_WWAN,
19d337df 50 NUM_RFKILL_TYPES,
cf4328cd
ID
51};
52
c64fb016
JB
53/**
54 * enum rfkill_operation - operation types
55 * @RFKILL_OP_ADD: a device was added
56 * @RFKILL_OP_DEL: a device was removed
57 * @RFKILL_OP_CHANGE: a device's state changed -- userspace changes one device
58 * @RFKILL_OP_CHANGE_ALL: userspace changes all devices (of a type, or all)
59 */
60enum rfkill_operation {
61 RFKILL_OP_ADD = 0,
62 RFKILL_OP_DEL,
63 RFKILL_OP_CHANGE,
64 RFKILL_OP_CHANGE_ALL,
65};
66
67/**
68 * struct rfkill_event - events for userspace on /dev/rfkill
69 * @idx: index of dev rfkill
70 * @type: type of the rfkill struct
71 * @op: operation code
72 * @hard: hard state (0/1)
73 * @soft: soft state (0/1)
74 *
75 * Structure used for userspace communication on /dev/rfkill,
76 * used for events from the kernel and control to the kernel.
77 */
78struct rfkill_event {
79 __u32 idx;
80 __u8 type;
81 __u8 op;
82 __u8 soft, hard;
83} __packed;
84
85/* ioctl for turning off rfkill-input (if present) */
86#define RFKILL_IOC_MAGIC 'R'
87#define RFKILL_IOC_NOINPUT 1
88#define RFKILL_IOCTL_NOINPUT _IO(RFKILL_IOC_MAGIC, RFKILL_IOC_NOINPUT)
89
90/* and that's all userspace gets */
91#ifdef __KERNEL__
92/* don't allow anyone to use these in the kernel */
93enum rfkill_user_states {
94 RFKILL_USER_STATE_SOFT_BLOCKED = RFKILL_STATE_SOFT_BLOCKED,
95 RFKILL_USER_STATE_UNBLOCKED = RFKILL_STATE_UNBLOCKED,
96 RFKILL_USER_STATE_HARD_BLOCKED = RFKILL_STATE_HARD_BLOCKED,
97};
98#undef RFKILL_STATE_SOFT_BLOCKED
99#undef RFKILL_STATE_UNBLOCKED
100#undef RFKILL_STATE_HARD_BLOCKED
101
102#include <linux/types.h>
103#include <linux/kernel.h>
104#include <linux/list.h>
105#include <linux/mutex.h>
106#include <linux/device.h>
107#include <linux/leds.h>
1506e30b 108#include <linux/err.h>
c64fb016 109
19d337df
JB
110/* this is opaque */
111struct rfkill;
112
113/**
114 * struct rfkill_ops - rfkill driver methods
115 *
116 * @poll: poll the rfkill block state(s) -- only assign this method
117 * when you need polling. When called, simply call one of the
118 * rfkill_set{,_hw,_sw}_state family of functions. If the hw
119 * is getting unblocked you need to take into account the return
120 * value of those functions to make sure the software block is
121 * properly used.
122 * @query: query the rfkill block state(s) and call exactly one of the
123 * rfkill_set{,_hw,_sw}_state family of functions. Assign this
124 * method if input events can cause hardware state changes to make
125 * the rfkill core query your driver before setting a requested
126 * block.
127 * @set_block: turn the transmitter on (blocked == false) or off
c64fb016 128 * (blocked == true) -- ignore and return 0 when hard blocked.
19d337df
JB
129 * This callback must be assigned.
130 */
131struct rfkill_ops {
132 void (*poll)(struct rfkill *rfkill, void *data);
133 void (*query)(struct rfkill *rfkill, void *data);
134 int (*set_block)(void *data, bool blocked);
cf4328cd
ID
135};
136
19d337df 137#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
cf4328cd 138/**
19d337df
JB
139 * rfkill_alloc - allocate rfkill structure
140 * @name: name of the struct -- the string is not copied internally
141 * @parent: device that has rf switch on it
142 * @type: type of the switch (RFKILL_TYPE_*)
143 * @ops: rfkill methods
144 * @ops_data: data passed to each method
145 *
146 * This function should be called by the transmitter driver to allocate an
147 * rfkill structure. Returns %NULL on failure.
cf4328cd 148 */
19d337df
JB
149struct rfkill * __must_check rfkill_alloc(const char *name,
150 struct device *parent,
151 const enum rfkill_type type,
152 const struct rfkill_ops *ops,
153 void *ops_data);
cf4328cd 154
19d337df
JB
155/**
156 * rfkill_register - Register a rfkill structure.
157 * @rfkill: rfkill structure to be registered
158 *
159 * This function should be called by the transmitter driver to register
160 * the rfkill structure needs to be registered. Before calling this function
161 * the driver needs to be ready to service method calls from rfkill.
162 */
163int __must_check rfkill_register(struct rfkill *rfkill);
135900c1 164
19d337df
JB
165/**
166 * rfkill_pause_polling(struct rfkill *rfkill)
167 *
168 * Pause polling -- say transmitter is off for other reasons.
169 * NOTE: not necessary for suspend/resume -- in that case the
170 * core stops polling anyway
171 */
172void rfkill_pause_polling(struct rfkill *rfkill);
cf4328cd 173
19d337df
JB
174/**
175 * rfkill_resume_polling(struct rfkill *rfkill)
176 *
177 * Pause polling -- say transmitter is off for other reasons.
178 * NOTE: not necessary for suspend/resume -- in that case the
179 * core stops polling anyway
180 */
181void rfkill_resume_polling(struct rfkill *rfkill);
182
183
184/**
185 * rfkill_unregister - Unregister a rfkill structure.
186 * @rfkill: rfkill structure to be unregistered
187 *
188 * This function should be called by the network driver during device
189 * teardown to destroy rfkill structure. Until it returns, the driver
190 * needs to be able to service method calls.
191 */
cf4328cd
ID
192void rfkill_unregister(struct rfkill *rfkill);
193
19d337df
JB
194/**
195 * rfkill_destroy - free rfkill structure
196 * @rfkill: rfkill structure to be destroyed
197 *
198 * Destroys the rfkill structure.
199 */
200void rfkill_destroy(struct rfkill *rfkill);
201
202/**
203 * rfkill_set_hw_state - Set the internal rfkill hardware block state
204 * @rfkill: pointer to the rfkill class to modify.
205 * @state: the current hardware block state to set
206 *
207 * rfkill drivers that get events when the hard-blocked state changes
208 * use this function to notify the rfkill core (and through that also
209 * userspace) of the current state -- they should also use this after
210 * resume if the state could have changed.
211 *
212 * You need not (but may) call this function if poll_state is assigned.
213 *
214 * This function can be called in any context, even from within rfkill
215 * callbacks.
216 *
217 * The function returns the combined block state (true if transmitter
218 * should be blocked) so that drivers need not keep track of the soft
219 * block state -- which they might not be able to.
220 */
221bool __must_check rfkill_set_hw_state(struct rfkill *rfkill, bool blocked);
222
223/**
224 * rfkill_set_sw_state - Set the internal rfkill software block state
225 * @rfkill: pointer to the rfkill class to modify.
226 * @state: the current software block state to set
227 *
228 * rfkill drivers that get events when the soft-blocked state changes
229 * (yes, some platforms directly act on input but allow changing again)
230 * use this function to notify the rfkill core (and through that also
231 * userspace) of the current state -- they should also use this after
232 * resume if the state could have changed.
233 *
234 * This function can be called in any context, even from within rfkill
235 * callbacks.
236 *
237 * The function returns the combined block state (true if transmitter
238 * should be blocked).
239 */
240bool rfkill_set_sw_state(struct rfkill *rfkill, bool blocked);
241
242/**
243 * rfkill_set_states - Set the internal rfkill block states
244 * @rfkill: pointer to the rfkill class to modify.
245 * @sw: the current software block state to set
246 * @hw: the current hardware block state to set
247 *
248 * This function can be called in any context, even from within rfkill
249 * callbacks.
250 */
251void rfkill_set_states(struct rfkill *rfkill, bool sw, bool hw);
801e49af 252
5005657c 253/**
19d337df
JB
254 * rfkill_set_global_sw_state - set global sw block default
255 * @type: rfkill type to set default for
256 * @blocked: default to set
5005657c 257 *
19d337df
JB
258 * This function sets the global default -- use at boot if your platform has
259 * an rfkill switch. If not early enough this call may be ignored.
260 *
261 * XXX: instead of ignoring -- how about just updating all currently
262 * registered drivers?
5005657c 263 */
19d337df 264void rfkill_set_global_sw_state(const enum rfkill_type type, bool blocked);
6081162e
JB
265
266/**
267 * rfkill_blocked - query rfkill block
268 *
269 * @rfkill: rfkill struct to query
270 */
271bool rfkill_blocked(struct rfkill *rfkill);
19d337df
JB
272#else /* !RFKILL */
273static inline struct rfkill * __must_check
274rfkill_alloc(const char *name,
275 struct device *parent,
276 const enum rfkill_type type,
277 const struct rfkill_ops *ops,
278 void *ops_data)
279{
280 return ERR_PTR(-ENODEV);
281}
282
283static inline int __must_check rfkill_register(struct rfkill *rfkill)
284{
285 if (rfkill == ERR_PTR(-ENODEV))
286 return 0;
287 return -EINVAL;
288}
289
290static inline void rfkill_pause_polling(struct rfkill *rfkill)
291{
292}
293
294static inline void rfkill_resume_polling(struct rfkill *rfkill)
295{
296}
297
298static inline void rfkill_unregister(struct rfkill *rfkill)
299{
300}
301
302static inline void rfkill_destroy(struct rfkill *rfkill)
303{
304}
305
306static inline bool rfkill_set_hw_state(struct rfkill *rfkill, bool blocked)
307{
308 return blocked;
309}
310
311static inline bool rfkill_set_sw_state(struct rfkill *rfkill, bool blocked)
312{
313 return blocked;
314}
315
316static inline void rfkill_set_states(struct rfkill *rfkill, bool sw, bool hw)
317{
318}
319
320static inline void rfkill_set_global_sw_state(const enum rfkill_type type,
321 bool blocked)
5005657c 322{
5005657c 323}
6081162e
JB
324
325static inline bool rfkill_blocked(struct rfkill *rfkill)
326{
327 return false;
328}
19d337df
JB
329#endif /* RFKILL || RFKILL_MODULE */
330
5005657c 331
19d337df 332#ifdef CONFIG_RFKILL_LEDS
135900c1 333/**
19d337df 334 * rfkill_get_led_trigger_name - Get the LED trigger name for the button's LED.
135900c1 335 * This function might return a NULL pointer if registering of the
19d337df 336 * LED trigger failed. Use this as "default_trigger" for the LED.
135900c1 337 */
19d337df
JB
338const char *rfkill_get_led_trigger_name(struct rfkill *rfkill);
339
340/**
341 * rfkill_set_led_trigger_name -- set the LED trigger name
342 * @rfkill: rfkill struct
343 * @name: LED trigger name
344 *
345 * This function sets the LED trigger name of the radio LED
346 * trigger that rfkill creates. It is optional, but if called
347 * must be called before rfkill_register() to be effective.
348 */
349void rfkill_set_led_trigger_name(struct rfkill *rfkill, const char *name);
135900c1 350#else
19d337df
JB
351static inline const char *rfkill_get_led_trigger_name(struct rfkill *rfkill)
352{
135900c1 353 return NULL;
135900c1
MB
354}
355
19d337df
JB
356static inline void
357rfkill_set_led_trigger_name(struct rfkill *rfkill, const char *name)
358{
359}
360#endif
361
362#endif /* __KERNEL__ */
363
cf4328cd 364#endif /* RFKILL_H */