rfkill.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*
  2. * RFKILL support for ath5k
  3. *
  4. * Copyright (c) 2009 Tobias Doerffel <tobias.doerffel@gmail.com>
  5. *
  6. * All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer,
  13. * without modification.
  14. * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  15. * similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
  16. * redistribution must be conditioned upon including a substantially
  17. * similar Disclaimer requirement for further binary redistribution.
  18. * 3. Neither the names of the above-listed copyright holders nor the names
  19. * of any contributors may be used to endorse or promote products derived
  20. * from this software without specific prior written permission.
  21. *
  22. * NO WARRANTY
  23. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  24. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  25. * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
  26. * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
  27. * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
  28. * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  29. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  30. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
  31. * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  32. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  33. * THE POSSIBILITY OF SUCH DAMAGES.
  34. */
  35. #include "base.h"
  36. static inline void ath5k_rfkill_disable(struct ath5k_softc *sc)
  37. {
  38. ATH5K_DBG(sc, ATH5K_DEBUG_ANY, "rfkill disable (gpio:%d polarity:%d)\n",
  39. sc->rf_kill.gpio, sc->rf_kill.polarity);
  40. ath5k_hw_set_gpio_output(sc->ah, sc->rf_kill.gpio);
  41. ath5k_hw_set_gpio(sc->ah, sc->rf_kill.gpio, !sc->rf_kill.polarity);
  42. }
  43. static inline void ath5k_rfkill_enable(struct ath5k_softc *sc)
  44. {
  45. ATH5K_DBG(sc, ATH5K_DEBUG_ANY, "rfkill enable (gpio:%d polarity:%d)\n",
  46. sc->rf_kill.gpio, sc->rf_kill.polarity);
  47. ath5k_hw_set_gpio_output(sc->ah, sc->rf_kill.gpio);
  48. ath5k_hw_set_gpio(sc->ah, sc->rf_kill.gpio, sc->rf_kill.polarity);
  49. }
  50. static inline void ath5k_rfkill_set_intr(struct ath5k_softc *sc, bool enable)
  51. {
  52. struct ath5k_hw *ah = sc->ah;
  53. u32 curval;
  54. ath5k_hw_set_gpio_input(ah, sc->rf_kill.gpio);
  55. curval = ath5k_hw_get_gpio(ah, sc->rf_kill.gpio);
  56. ath5k_hw_set_gpio_intr(ah, sc->rf_kill.gpio, enable ?
  57. !!curval : !curval);
  58. }
  59. static bool
  60. ath5k_is_rfkill_set(struct ath5k_softc *sc)
  61. {
  62. /* configuring GPIO for input for some reason disables rfkill */
  63. /*ath5k_hw_set_gpio_input(sc->ah, sc->rf_kill.gpio);*/
  64. return ath5k_hw_get_gpio(sc->ah, sc->rf_kill.gpio) ==
  65. sc->rf_kill.polarity;
  66. }
  67. static void
  68. ath5k_tasklet_rfkill_toggle(unsigned long data)
  69. {
  70. struct ath5k_softc *sc = (void *)data;
  71. bool blocked;
  72. blocked = ath5k_is_rfkill_set(sc);
  73. wiphy_rfkill_set_hw_state(sc->hw->wiphy, blocked);
  74. }
  75. void
  76. ath5k_rfkill_hw_start(struct ath5k_hw *ah)
  77. {
  78. struct ath5k_softc *sc = ah->ah_sc;
  79. /* read rfkill GPIO configuration from EEPROM header */
  80. sc->rf_kill.gpio = ah->ah_capabilities.cap_eeprom.ee_rfkill_pin;
  81. sc->rf_kill.polarity = ah->ah_capabilities.cap_eeprom.ee_rfkill_pol;
  82. tasklet_init(&sc->rf_kill.toggleq, ath5k_tasklet_rfkill_toggle,
  83. (unsigned long)sc);
  84. ath5k_rfkill_disable(sc);
  85. /* enable interrupt for rfkill switch */
  86. if (AR5K_EEPROM_HDR_RFKILL(ah->ah_capabilities.cap_eeprom.ee_header))
  87. ath5k_rfkill_set_intr(sc, true);
  88. }
  89. void
  90. ath5k_rfkill_hw_stop(struct ath5k_hw *ah)
  91. {
  92. struct ath5k_softc *sc = ah->ah_sc;
  93. /* disable interrupt for rfkill switch */
  94. if (AR5K_EEPROM_HDR_RFKILL(ah->ah_capabilities.cap_eeprom.ee_header))
  95. ath5k_rfkill_set_intr(sc, false);
  96. tasklet_kill(&sc->rf_kill.toggleq);
  97. /* enable RFKILL when stopping HW so Wifi LED is turned off */
  98. ath5k_rfkill_enable(sc);
  99. }