2 Copyright (C) 2004 - 2008 rt2x00 SourceForge Project
3 <http://rt2x00.serialmonkey.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the
17 Free Software Foundation, Inc.,
18 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 Abstract: rt2x00 rfkill routines.
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/rfkill.h>
31 #include "rt2x00lib.h"
33 static int rt2x00rfkill_toggle_radio(void *data, enum rfkill_state state)
35 struct rt2x00_dev *rt2x00dev = data;
38 if (unlikely(!rt2x00dev))
42 * Only continue if there are enabled interfaces.
44 if (!test_bit(DEVICE_STARTED, &rt2x00dev->flags))
47 if (state == RFKILL_STATE_UNBLOCKED) {
48 INFO(rt2x00dev, "Hardware button pressed, enabling radio.\n");
49 __clear_bit(DEVICE_DISABLED_RADIO_HW, &rt2x00dev->flags);
50 retval = rt2x00lib_enable_radio(rt2x00dev);
51 } else if (state == RFKILL_STATE_SOFT_BLOCKED) {
52 INFO(rt2x00dev, "Hardware button pressed, disabling radio.\n");
53 __set_bit(DEVICE_DISABLED_RADIO_HW, &rt2x00dev->flags);
54 rt2x00lib_disable_radio(rt2x00dev);
56 WARNING(rt2x00dev, "Received unexpected rfkill state %d.\n",
63 static int rt2x00rfkill_get_state(void *data, enum rfkill_state *state)
65 struct rt2x00_dev *rt2x00dev = data;
67 *state = rt2x00dev->rfkill->state;
72 static void rt2x00rfkill_poll(struct work_struct *work)
74 struct rt2x00_dev *rt2x00dev =
75 container_of(work, struct rt2x00_dev, rfkill_work.work);
78 if (!test_bit(RFKILL_STATE_REGISTERED, &rt2x00dev->rfkill_state))
82 * rfkill_poll reports 1 when the key has been pressed and the
83 * radio should be blocked.
85 state = !rt2x00dev->ops->lib->rfkill_poll(rt2x00dev) ?
86 RFKILL_STATE_UNBLOCKED : RFKILL_STATE_SOFT_BLOCKED;
88 rfkill_force_state(rt2x00dev->rfkill, state);
90 queue_delayed_work(rt2x00dev->hw->workqueue,
91 &rt2x00dev->rfkill_work, RFKILL_POLL_INTERVAL);
94 void rt2x00rfkill_register(struct rt2x00_dev *rt2x00dev)
96 if (!test_bit(CONFIG_SUPPORT_HW_BUTTON, &rt2x00dev->flags) ||
97 !test_bit(RFKILL_STATE_ALLOCATED, &rt2x00dev->rfkill_state))
100 if (rfkill_register(rt2x00dev->rfkill)) {
101 ERROR(rt2x00dev, "Failed to register rfkill handler.\n");
105 __set_bit(RFKILL_STATE_REGISTERED, &rt2x00dev->rfkill_state);
108 * Force initial poll which will detect the initial device state,
109 * and correctly sends the signal to the rfkill layer about this
112 rt2x00rfkill_poll(&rt2x00dev->rfkill_work.work);
115 void rt2x00rfkill_unregister(struct rt2x00_dev *rt2x00dev)
117 if (!test_bit(CONFIG_SUPPORT_HW_BUTTON, &rt2x00dev->flags) ||
118 !test_bit(RFKILL_STATE_REGISTERED, &rt2x00dev->rfkill_state))
121 cancel_delayed_work_sync(&rt2x00dev->rfkill_work);
123 rfkill_unregister(rt2x00dev->rfkill);
125 __clear_bit(RFKILL_STATE_REGISTERED, &rt2x00dev->rfkill_state);
128 void rt2x00rfkill_allocate(struct rt2x00_dev *rt2x00dev)
130 if (!test_bit(CONFIG_SUPPORT_HW_BUTTON, &rt2x00dev->flags))
134 rfkill_allocate(wiphy_dev(rt2x00dev->hw->wiphy), RFKILL_TYPE_WLAN);
135 if (!rt2x00dev->rfkill) {
136 ERROR(rt2x00dev, "Failed to allocate rfkill handler.\n");
140 rt2x00dev->rfkill->name = rt2x00dev->ops->name;
141 rt2x00dev->rfkill->data = rt2x00dev;
142 rt2x00dev->rfkill->state = -1;
143 rt2x00dev->rfkill->toggle_radio = rt2x00rfkill_toggle_radio;
144 rt2x00dev->rfkill->get_state = rt2x00rfkill_get_state;
146 INIT_DELAYED_WORK(&rt2x00dev->rfkill_work, rt2x00rfkill_poll);
151 void rt2x00rfkill_free(struct rt2x00_dev *rt2x00dev)
153 if (!test_bit(CONFIG_SUPPORT_HW_BUTTON, &rt2x00dev->flags) ||
154 !test_bit(RFKILL_STATE_ALLOCATED, &rt2x00dev->rfkill_state))
157 cancel_delayed_work_sync(&rt2x00dev->rfkill_work);
159 rfkill_free(rt2x00dev->rfkill);
160 rt2x00dev->rfkill = NULL;