rfkill.txt 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. rfkill - RF kill switch support
  2. ===============================
  3. 1. Introduction
  4. 2. Implementation details
  5. 3. Kernel API
  6. 4. Userspace support
  7. 1. Introduction
  8. The rfkill subsystem provides a generic interface to disabling any radio
  9. transmitter in the system. When a transmitter is blocked, it shall not
  10. radiate any power.
  11. The subsystem also provides the ability to react on button presses and
  12. disable all transmitters of a certain type (or all). This is intended for
  13. situations where transmitters need to be turned off, for example on
  14. aircraft.
  15. The rfkill subsystem has a concept of "hard" and "soft" block, which
  16. differ little in their meaning (block == transmitters off) but rather in
  17. whether they can be changed or not:
  18. - hard block: read-only radio block that cannot be overridden by software
  19. - soft block: writable radio block (need not be readable) that is set by
  20. the system software.
  21. The rfkill subsystem has two parameters, rfkill.default_state and
  22. rfkill.master_switch_mode, which are documented in kernel-parameters.txt.
  23. 2. Implementation details
  24. The rfkill subsystem is composed of three main components:
  25. * the rfkill core,
  26. * the deprecated rfkill-input module (an input layer handler, being
  27. replaced by userspace policy code) and
  28. * the rfkill drivers.
  29. The rfkill core provides API for kernel drivers to register their radio
  30. transmitter with the kernel, methods for turning it on and off and, letting
  31. the system know about hardware-disabled states that may be implemented on
  32. the device.
  33. The rfkill core code also notifies userspace of state changes, and provides
  34. ways for userspace to query the current states. See the "Userspace support"
  35. section below.
  36. When the device is hard-blocked (either by a call to rfkill_set_hw_state()
  37. or from query_hw_block) set_block() will be invoked for additional software
  38. block, but drivers can ignore the method call since they can use the return
  39. value of the function rfkill_set_hw_state() to sync the software state
  40. instead of keeping track of calls to set_block(). In fact, drivers should
  41. use the return value of rfkill_set_hw_state() unless the hardware actually
  42. keeps track of soft and hard block separately.
  43. 3. Kernel API
  44. Drivers for radio transmitters normally implement an rfkill driver.
  45. Platform drivers might implement input devices if the rfkill button is just
  46. that, a button. If that button influences the hardware then you need to
  47. implement an rfkill driver instead. This also applies if the platform provides
  48. a way to turn on/off the transmitter(s).
  49. For some platforms, it is possible that the hardware state changes during
  50. suspend/hibernation, in which case it will be necessary to update the rfkill
  51. core with the current state is at resume time.
  52. To create an rfkill driver, driver's Kconfig needs to have
  53. depends on RFKILL || !RFKILL
  54. to ensure the driver cannot be built-in when rfkill is modular. The !RFKILL
  55. case allows the driver to be built when rfkill is not configured, which
  56. case all rfkill API can still be used but will be provided by static inlines
  57. which compile to almost nothing.
  58. Calling rfkill_set_hw_state() when a state change happens is required from
  59. rfkill drivers that control devices that can be hard-blocked unless they also
  60. assign the poll_hw_block() callback (then the rfkill core will poll the
  61. device). Don't do this unless you cannot get the event in any other way.
  62. 5. Userspace support
  63. The recommended userspace interface to use is /dev/rfkill, which is a misc
  64. character device that allows userspace to obtain and set the state of rfkill
  65. devices and sets of devices. It also notifies userspace about device addition
  66. and removal. The API is a simple read/write API that is defined in
  67. linux/rfkill.h, with one ioctl that allows turning off the deprecated input
  68. handler in the kernel for the transition period.
  69. Except for the one ioctl, communication with the kernel is done via read()
  70. and write() of instances of 'struct rfkill_event'. In this structure, the
  71. soft and hard block are properly separated (unlike sysfs, see below) and
  72. userspace is able to get a consistent snapshot of all rfkill devices in the
  73. system. Also, it is possible to switch all rfkill drivers (or all drivers of
  74. a specified type) into a state which also updates the default state for
  75. hotplugged devices.
  76. After an application opens /dev/rfkill, it can read the current state of all
  77. devices. Changes can be either obtained by either polling the descriptor for
  78. hotplug or state change events or by listening for uevents emitted by the
  79. rfkill core framework.
  80. Additionally, each rfkill device is registered in sysfs and emits uevents.
  81. rfkill devices issue uevents (with an action of "change"), with the following
  82. environment variables set:
  83. RFKILL_NAME
  84. RFKILL_STATE
  85. RFKILL_TYPE
  86. The contents of these variables corresponds to the "name", "state" and
  87. "type" sysfs files explained above.
  88. For further details consult Documentation/ABI/stable/sysfs-class-rfkill.