Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 1 | rfkill - RF kill switch support |
| 2 | =============================== |
Ivo van Doorn | dac24ab | 2007-09-13 09:22:55 +0200 | [diff] [blame] | 3 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 4 | 1. Introduction |
| 5 | 2. Implementation details |
| 6 | 3. Kernel driver guidelines |
| 7 | 4. Kernel API |
| 8 | 5. Userspace support |
Ivo van Doorn | dac24ab | 2007-09-13 09:22:55 +0200 | [diff] [blame] | 9 | |
Henrique de Moraes Holschuh | dc28852 | 2008-06-23 17:23:08 -0300 | [diff] [blame] | 10 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 11 | 1. Introduction |
Ivo van Doorn | dac24ab | 2007-09-13 09:22:55 +0200 | [diff] [blame] | 12 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 13 | The rfkill subsystem provides a generic interface to disabling any radio |
| 14 | transmitter in the system. When a transmitter is blocked, it shall not |
| 15 | radiate any power. |
Henrique de Moraes Holschuh | f3146af | 2008-06-23 17:22:56 -0300 | [diff] [blame] | 16 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 17 | The subsystem also provides the ability to react on button presses and |
| 18 | disable all transmitters of a certain type (or all). This is intended for |
| 19 | situations where transmitters need to be turned off, for example on |
| 20 | aircraft. |
Henrique de Moraes Holschuh | f7983f7 | 2008-06-23 17:46:43 -0300 | [diff] [blame] | 21 | |
Henrique de Moraes Holschuh | f3146af | 2008-06-23 17:22:56 -0300 | [diff] [blame] | 22 | |
Henrique de Moraes Holschuh | dc28852 | 2008-06-23 17:23:08 -0300 | [diff] [blame] | 23 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 24 | 2. Implementation details |
Henrique de Moraes Holschuh | dc28852 | 2008-06-23 17:23:08 -0300 | [diff] [blame] | 25 | |
Henrique de Moraes Holschuh | f7983f7 | 2008-06-23 17:46:43 -0300 | [diff] [blame] | 26 | The rfkill subsystem is composed of various components: the rfkill class, the |
| 27 | rfkill-input module (an input layer handler), and some specific input layer |
| 28 | events. |
| 29 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 30 | The rfkill class is provided for kernel drivers to register their radio |
| 31 | transmitter with the kernel, provide methods for turning it on and off and, |
| 32 | optionally, letting the system know about hardware-disabled states that may |
| 33 | be implemented on the device. This code is enabled with the CONFIG_RFKILL |
| 34 | Kconfig option, which drivers can "select". |
Henrique de Moraes Holschuh | f7983f7 | 2008-06-23 17:46:43 -0300 | [diff] [blame] | 35 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 36 | The rfkill class code also notifies userspace of state changes, this is |
| 37 | achieved via uevents. It also provides some sysfs files for userspace to |
| 38 | check the status of radio transmitters. See the "Userspace support" section |
| 39 | below. |
Henrique de Moraes Holschuh | dc28852 | 2008-06-23 17:23:08 -0300 | [diff] [blame] | 40 | |
Henrique de Moraes Holschuh | f7983f7 | 2008-06-23 17:46:43 -0300 | [diff] [blame] | 41 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 42 | The rfkill-input code implements a basic response to rfkill buttons -- it |
| 43 | implements turning on/off all devices of a certain class (or all). |
Henrique de Moraes Holschuh | dc28852 | 2008-06-23 17:23:08 -0300 | [diff] [blame] | 44 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 45 | When the device is hard-blocked (either by a call to rfkill_set_hw_state() |
| 46 | or from query_hw_block) set_block() will be invoked but drivers can well |
| 47 | ignore the method call since they can use the return value of the function |
| 48 | rfkill_set_hw_state() to sync the software state instead of keeping track |
| 49 | of calls to set_block(). |
Henrique de Moraes Holschuh | dc28852 | 2008-06-23 17:23:08 -0300 | [diff] [blame] | 50 | |
Ivo van Doorn | dac24ab | 2007-09-13 09:22:55 +0200 | [diff] [blame] | 51 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 52 | The entire functionality is spread over more than one subsystem: |
Ivo van Doorn | dac24ab | 2007-09-13 09:22:55 +0200 | [diff] [blame] | 53 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 54 | * The kernel input layer generates KEY_WWAN, KEY_WLAN etc. and |
| 55 | SW_RFKILL_ALL -- when the user presses a button. Drivers for radio |
| 56 | transmitters generally do not register to the input layer, unless the |
| 57 | device really provides an input device (i.e. a button that has no |
| 58 | effect other than generating a button press event) |
Ivo van Doorn | dac24ab | 2007-09-13 09:22:55 +0200 | [diff] [blame] | 59 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 60 | * The rfkill-input code hooks up to these events and switches the soft-block |
| 61 | of the various radio transmitters, depending on the button type. |
Ivo van Doorn | dac24ab | 2007-09-13 09:22:55 +0200 | [diff] [blame] | 62 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 63 | * The rfkill drivers turn off/on their transmitters as requested. |
Henrique de Moraes Holschuh | f7983f7 | 2008-06-23 17:46:43 -0300 | [diff] [blame] | 64 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 65 | * The rfkill class will generate userspace notifications (uevents) to tell |
| 66 | userspace what the current state is. |
Henrique de Moraes Holschuh | f7983f7 | 2008-06-23 17:46:43 -0300 | [diff] [blame] | 67 | |
Henrique de Moraes Holschuh | f7983f7 | 2008-06-23 17:46:43 -0300 | [diff] [blame] | 68 | |
Henrique de Moraes Holschuh | f7983f7 | 2008-06-23 17:46:43 -0300 | [diff] [blame] | 69 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 70 | 3. Kernel driver guidelines |
Henrique de Moraes Holschuh | f7983f7 | 2008-06-23 17:46:43 -0300 | [diff] [blame] | 71 | |
Henrique de Moraes Holschuh | f7983f7 | 2008-06-23 17:46:43 -0300 | [diff] [blame] | 72 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 73 | Drivers for radio transmitters normally implement only the rfkill class. |
| 74 | These drivers may not unblock the transmitter based on own decisions, they |
| 75 | should act on information provided by the rfkill class only. |
Henrique de Moraes Holschuh | f7983f7 | 2008-06-23 17:46:43 -0300 | [diff] [blame] | 76 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 77 | Platform drivers might implement input devices if the rfkill button is just |
| 78 | that, a button. If that button influences the hardware then you need to |
| 79 | implement an rfkill class instead. This also applies if the platform provides |
| 80 | a way to turn on/off the transmitter(s). |
Henrique de Moraes Holschuh | f7983f7 | 2008-06-23 17:46:43 -0300 | [diff] [blame] | 81 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 82 | During suspend/hibernation, transmitters should only be left enabled when |
| 83 | wake-on wlan or similar functionality requires it and the device wasn't |
| 84 | blocked before suspend/hibernate. Note that it may be necessary to update |
| 85 | the rfkill subsystem's idea of what the current state is at resume time if |
| 86 | the state may have changed over suspend. |
Henrique de Moraes Holschuh | f7983f7 | 2008-06-23 17:46:43 -0300 | [diff] [blame] | 87 | |
Henrique de Moraes Holschuh | f7983f7 | 2008-06-23 17:46:43 -0300 | [diff] [blame] | 88 | |
Henrique de Moraes Holschuh | 5005657 | 2008-06-23 17:46:42 -0300 | [diff] [blame] | 89 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 90 | 4. Kernel API |
Henrique de Moraes Holschuh | dc28852 | 2008-06-23 17:23:08 -0300 | [diff] [blame] | 91 | |
| 92 | To build a driver with rfkill subsystem support, the driver should depend on |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 93 | (or select) the Kconfig symbol RFKILL. |
Henrique de Moraes Holschuh | dc28852 | 2008-06-23 17:23:08 -0300 | [diff] [blame] | 94 | |
| 95 | The hardware the driver talks to may be write-only (where the current state |
| 96 | of the hardware is unknown), or read-write (where the hardware can be queried |
| 97 | about its current state). |
| 98 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 99 | Calling rfkill_set_hw_state() when a state change happens is required from |
| 100 | rfkill drivers that control devices that can be hard-blocked unless they also |
| 101 | assign the poll_hw_block() callback (then the rfkill core will poll the |
| 102 | device). Don't do this unless you cannot get the event in any other way. |
Henrique de Moraes Holschuh | 2fd9b22 | 2008-07-21 21:18:17 -0300 | [diff] [blame] | 103 | |
Henrique de Moraes Holschuh | dc28852 | 2008-06-23 17:23:08 -0300 | [diff] [blame] | 104 | |
Henrique de Moraes Holschuh | dc28852 | 2008-06-23 17:23:08 -0300 | [diff] [blame] | 105 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 106 | 5. Userspace support |
Henrique de Moraes Holschuh | 2fd9b22 | 2008-07-21 21:18:17 -0300 | [diff] [blame] | 107 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 108 | The following sysfs entries exist for every rfkill device: |
Ivo van Doorn | dac24ab | 2007-09-13 09:22:55 +0200 | [diff] [blame] | 109 | |
| 110 | name: Name assigned by driver to this key (interface or driver name). |
| 111 | type: Name of the key type ("wlan", "bluetooth", etc). |
Henrique de Moraes Holschuh | 5005657 | 2008-06-23 17:46:42 -0300 | [diff] [blame] | 112 | state: Current state of the transmitter |
| 113 | 0: RFKILL_STATE_SOFT_BLOCKED |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 114 | transmitter is turned off by software |
Henrique de Moraes Holschuh | 5005657 | 2008-06-23 17:46:42 -0300 | [diff] [blame] | 115 | 1: RFKILL_STATE_UNBLOCKED |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 116 | transmiter is (potentially) active |
Henrique de Moraes Holschuh | 5005657 | 2008-06-23 17:46:42 -0300 | [diff] [blame] | 117 | 2: RFKILL_STATE_HARD_BLOCKED |
| 118 | transmitter is forced off by something outside of |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 119 | the driver's control. |
| 120 | claim: 0: Kernel handles events (currently always reads that value) |
Ivo van Doorn | dac24ab | 2007-09-13 09:22:55 +0200 | [diff] [blame] | 121 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 122 | rfkill devices also issue uevents (with an action of "change"), with the |
| 123 | following environment variables set: |
Henrique de Moraes Holschuh | dc28852 | 2008-06-23 17:23:08 -0300 | [diff] [blame] | 124 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 125 | RFKILL_NAME |
| 126 | RFKILL_STATE |
| 127 | RFKILL_TYPE |
Henrique de Moraes Holschuh | dc28852 | 2008-06-23 17:23:08 -0300 | [diff] [blame] | 128 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame^] | 129 | The contents of these variables corresponds to the "name", "state" and |
| 130 | "type" sysfs files explained above. |