]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/rfkill.h
UBUNTU: SAUCE: LSM stacking: procfs: add smack subdir to attrs
[mirror_ubuntu-artful-kernel.git] / include / linux / rfkill.h
CommitLineData
cf4328cd 1/*
fe242cfd 2 * Copyright (C) 2006 - 2007 Ivo van Doorn
cf4328cd 3 * Copyright (C) 2007 Dmitry Torokhov
19d337df 4 * Copyright 2009 Johannes Berg <johannes@sipsolutions.net>
cf4328cd 5 *
8bc11b49
JB
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
cf4328cd 9 *
8bc11b49
JB
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
cf4328cd 17 */
607ca46e
DH
18#ifndef __RFKILL_H
19#define __RFKILL_H
cf4328cd 20
607ca46e 21#include <uapi/linux/rfkill.h>
c64fb016 22
c64fb016
JB
23/* don't allow anyone to use these in the kernel */
24enum rfkill_user_states {
25 RFKILL_USER_STATE_SOFT_BLOCKED = RFKILL_STATE_SOFT_BLOCKED,
26 RFKILL_USER_STATE_UNBLOCKED = RFKILL_STATE_UNBLOCKED,
27 RFKILL_USER_STATE_HARD_BLOCKED = RFKILL_STATE_HARD_BLOCKED,
28};
29#undef RFKILL_STATE_SOFT_BLOCKED
30#undef RFKILL_STATE_UNBLOCKED
31#undef RFKILL_STATE_HARD_BLOCKED
32
c64fb016
JB
33#include <linux/kernel.h>
34#include <linux/list.h>
35#include <linux/mutex.h>
c64fb016 36#include <linux/leds.h>
1506e30b 37#include <linux/err.h>
c64fb016 38
313162d0 39struct device;
19d337df
JB
40/* this is opaque */
41struct rfkill;
42
43/**
44 * struct rfkill_ops - rfkill driver methods
45 *
46 * @poll: poll the rfkill block state(s) -- only assign this method
47 * when you need polling. When called, simply call one of the
48 * rfkill_set{,_hw,_sw}_state family of functions. If the hw
49 * is getting unblocked you need to take into account the return
50 * value of those functions to make sure the software block is
51 * properly used.
52 * @query: query the rfkill block state(s) and call exactly one of the
53 * rfkill_set{,_hw,_sw}_state family of functions. Assign this
54 * method if input events can cause hardware state changes to make
55 * the rfkill core query your driver before setting a requested
56 * block.
57 * @set_block: turn the transmitter on (blocked == false) or off
c64fb016 58 * (blocked == true) -- ignore and return 0 when hard blocked.
19d337df
JB
59 * This callback must be assigned.
60 */
61struct rfkill_ops {
62 void (*poll)(struct rfkill *rfkill, void *data);
63 void (*query)(struct rfkill *rfkill, void *data);
64 int (*set_block)(void *data, bool blocked);
cf4328cd
ID
65};
66
19d337df 67#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
cf4328cd 68/**
19d337df
JB
69 * rfkill_alloc - allocate rfkill structure
70 * @name: name of the struct -- the string is not copied internally
71 * @parent: device that has rf switch on it
72 * @type: type of the switch (RFKILL_TYPE_*)
73 * @ops: rfkill methods
74 * @ops_data: data passed to each method
75 *
76 * This function should be called by the transmitter driver to allocate an
77 * rfkill structure. Returns %NULL on failure.
cf4328cd 78 */
19d337df
JB
79struct rfkill * __must_check rfkill_alloc(const char *name,
80 struct device *parent,
81 const enum rfkill_type type,
82 const struct rfkill_ops *ops,
83 void *ops_data);
cf4328cd 84
19d337df
JB
85/**
86 * rfkill_register - Register a rfkill structure.
87 * @rfkill: rfkill structure to be registered
88 *
89 * This function should be called by the transmitter driver to register
b3fa1329
AJ
90 * the rfkill structure. Before calling this function the driver needs
91 * to be ready to service method calls from rfkill.
92 *
06d5caf4
AJ
93 * If rfkill_init_sw_state() is not called before registration,
94 * set_block() will be called to initialize the software blocked state
95 * to a default value.
b3fa1329
AJ
96 *
97 * If the hardware blocked state is not set before registration,
98 * it is assumed to be unblocked.
19d337df
JB
99 */
100int __must_check rfkill_register(struct rfkill *rfkill);
135900c1 101
19d337df
JB
102/**
103 * rfkill_pause_polling(struct rfkill *rfkill)
104 *
105 * Pause polling -- say transmitter is off for other reasons.
106 * NOTE: not necessary for suspend/resume -- in that case the
dd21dfc6
JB
107 * core stops polling anyway (but will also correctly handle
108 * the case of polling having been paused before suspend.)
19d337df
JB
109 */
110void rfkill_pause_polling(struct rfkill *rfkill);
cf4328cd 111
19d337df
JB
112/**
113 * rfkill_resume_polling(struct rfkill *rfkill)
114 *
115 * Pause polling -- say transmitter is off for other reasons.
116 * NOTE: not necessary for suspend/resume -- in that case the
117 * core stops polling anyway
118 */
119void rfkill_resume_polling(struct rfkill *rfkill);
120
121
122/**
123 * rfkill_unregister - Unregister a rfkill structure.
124 * @rfkill: rfkill structure to be unregistered
125 *
126 * This function should be called by the network driver during device
127 * teardown to destroy rfkill structure. Until it returns, the driver
128 * needs to be able to service method calls.
129 */
cf4328cd
ID
130void rfkill_unregister(struct rfkill *rfkill);
131
19d337df
JB
132/**
133 * rfkill_destroy - free rfkill structure
134 * @rfkill: rfkill structure to be destroyed
135 *
136 * Destroys the rfkill structure.
137 */
138void rfkill_destroy(struct rfkill *rfkill);
139
140/**
141 * rfkill_set_hw_state - Set the internal rfkill hardware block state
142 * @rfkill: pointer to the rfkill class to modify.
143 * @state: the current hardware block state to set
144 *
145 * rfkill drivers that get events when the hard-blocked state changes
146 * use this function to notify the rfkill core (and through that also
908209c1 147 * userspace) of the current state. They should also use this after
19d337df
JB
148 * resume if the state could have changed.
149 *
150 * You need not (but may) call this function if poll_state is assigned.
151 *
152 * This function can be called in any context, even from within rfkill
153 * callbacks.
154 *
155 * The function returns the combined block state (true if transmitter
156 * should be blocked) so that drivers need not keep track of the soft
157 * block state -- which they might not be able to.
158 */
e56f0975 159bool rfkill_set_hw_state(struct rfkill *rfkill, bool blocked);
19d337df
JB
160
161/**
162 * rfkill_set_sw_state - Set the internal rfkill software block state
163 * @rfkill: pointer to the rfkill class to modify.
164 * @state: the current software block state to set
165 *
166 * rfkill drivers that get events when the soft-blocked state changes
167 * (yes, some platforms directly act on input but allow changing again)
168 * use this function to notify the rfkill core (and through that also
06d5caf4
AJ
169 * userspace) of the current state.
170 *
171 * Drivers should also call this function after resume if the state has
172 * been changed by the user. This only makes sense for "persistent"
173 * devices (see rfkill_init_sw_state()).
19d337df
JB
174 *
175 * This function can be called in any context, even from within rfkill
176 * callbacks.
177 *
178 * The function returns the combined block state (true if transmitter
179 * should be blocked).
180 */
181bool rfkill_set_sw_state(struct rfkill *rfkill, bool blocked);
182
06d5caf4
AJ
183/**
184 * rfkill_init_sw_state - Initialize persistent software block state
185 * @rfkill: pointer to the rfkill class to modify.
186 * @state: the current software block state to set
187 *
188 * rfkill drivers that preserve their software block state over power off
189 * use this function to notify the rfkill core (and through that also
190 * userspace) of their initial state. It should only be used before
191 * registration.
192 *
464902e8
AJ
193 * In addition, it marks the device as "persistent", an attribute which
194 * can be read by userspace. Persistent devices are expected to preserve
195 * their own state when suspended.
06d5caf4
AJ
196 */
197void rfkill_init_sw_state(struct rfkill *rfkill, bool blocked);
198
19d337df
JB
199/**
200 * rfkill_set_states - Set the internal rfkill block states
201 * @rfkill: pointer to the rfkill class to modify.
202 * @sw: the current software block state to set
203 * @hw: the current hardware block state to set
204 *
205 * This function can be called in any context, even from within rfkill
206 * callbacks.
207 */
208void rfkill_set_states(struct rfkill *rfkill, bool sw, bool hw);
801e49af 209
6081162e
JB
210/**
211 * rfkill_blocked - query rfkill block
212 *
213 * @rfkill: rfkill struct to query
214 */
215bool rfkill_blocked(struct rfkill *rfkill);
648b50dd
HK
216
217/**
218 * rfkill_find_type - Helpper for finding rfkill type by name
219 * @name: the name of the type
220 *
221 * Returns enum rfkill_type that conrresponds the name.
222 */
223enum rfkill_type rfkill_find_type(const char *name);
224
19d337df
JB
225#else /* !RFKILL */
226static inline struct rfkill * __must_check
227rfkill_alloc(const char *name,
228 struct device *parent,
229 const enum rfkill_type type,
230 const struct rfkill_ops *ops,
231 void *ops_data)
232{
233 return ERR_PTR(-ENODEV);
234}
235
236static inline int __must_check rfkill_register(struct rfkill *rfkill)
237{
238 if (rfkill == ERR_PTR(-ENODEV))
239 return 0;
240 return -EINVAL;
241}
242
243static inline void rfkill_pause_polling(struct rfkill *rfkill)
244{
245}
246
247static inline void rfkill_resume_polling(struct rfkill *rfkill)
248{
249}
250
251static inline void rfkill_unregister(struct rfkill *rfkill)
252{
253}
254
255static inline void rfkill_destroy(struct rfkill *rfkill)
256{
257}
258
259static inline bool rfkill_set_hw_state(struct rfkill *rfkill, bool blocked)
260{
261 return blocked;
262}
263
264static inline bool rfkill_set_sw_state(struct rfkill *rfkill, bool blocked)
265{
266 return blocked;
267}
268
06d5caf4
AJ
269static inline void rfkill_init_sw_state(struct rfkill *rfkill, bool blocked)
270{
271}
272
19d337df
JB
273static inline void rfkill_set_states(struct rfkill *rfkill, bool sw, bool hw)
274{
275}
276
6081162e
JB
277static inline bool rfkill_blocked(struct rfkill *rfkill)
278{
279 return false;
280}
648b50dd
HK
281
282static inline enum rfkill_type rfkill_find_type(const char *name)
283{
284 return RFKILL_TYPE_ALL;
285}
286
19d337df
JB
287#endif /* RFKILL || RFKILL_MODULE */
288
06d7de83
AK
289
290#ifdef CONFIG_RFKILL_LEDS
291/**
292 * rfkill_get_led_trigger_name - Get the LED trigger name for the button's LED.
293 * This function might return a NULL pointer if registering of the
294 * LED trigger failed. Use this as "default_trigger" for the LED.
295 */
296const char *rfkill_get_led_trigger_name(struct rfkill *rfkill);
297
298/**
299 * rfkill_set_led_trigger_name -- set the LED trigger name
300 * @rfkill: rfkill struct
301 * @name: LED trigger name
302 *
303 * This function sets the LED trigger name of the radio LED
304 * trigger that rfkill creates. It is optional, but if called
305 * must be called before rfkill_register() to be effective.
306 */
307void rfkill_set_led_trigger_name(struct rfkill *rfkill, const char *name);
308#else
309static inline const char *rfkill_get_led_trigger_name(struct rfkill *rfkill)
310{
311 return NULL;
312}
313
314static inline void
315rfkill_set_led_trigger_name(struct rfkill *rfkill, const char *name)
316{
317}
318#endif
319
cf4328cd 320#endif /* RFKILL_H */