led.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2009-2012 Realtek Corporation.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of version 2 of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * The full GNU General Public License is included in this distribution in the
  15. * file called LICENSE.
  16. *
  17. * Contact Information:
  18. * wlanfae <wlanfae@realtek.com>
  19. * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
  20. * Hsinchu 300, Taiwan.
  21. *
  22. * Larry Finger <Larry.Finger@lwfinger.net>
  23. *
  24. *****************************************************************************/
  25. #include "../wifi.h"
  26. #include "../pci.h"
  27. #include "reg.h"
  28. #include "led.h"
  29. static void _rtl92se_init_led(struct ieee80211_hw *hw,
  30. struct rtl_led *pled, enum rtl_led_pin ledpin)
  31. {
  32. pled->hw = hw;
  33. pled->ledpin = ledpin;
  34. pled->ledon = false;
  35. }
  36. void rtl92se_init_sw_leds(struct ieee80211_hw *hw)
  37. {
  38. struct rtl_priv *rtlpriv = rtl_priv(hw);
  39. _rtl92se_init_led(hw, &rtlpriv->ledctl.sw_led0, LED_PIN_LED0);
  40. _rtl92se_init_led(hw, &rtlpriv->ledctl.sw_led1, LED_PIN_LED1);
  41. }
  42. void rtl92se_sw_led_on(struct ieee80211_hw *hw, struct rtl_led *pled)
  43. {
  44. u8 ledcfg;
  45. struct rtl_priv *rtlpriv = rtl_priv(hw);
  46. RT_TRACE(rtlpriv, COMP_LED, DBG_LOUD, "LedAddr:%X ledpin=%d\n",
  47. LEDCFG, pled->ledpin);
  48. ledcfg = rtl_read_byte(rtlpriv, LEDCFG);
  49. switch (pled->ledpin) {
  50. case LED_PIN_GPIO0:
  51. break;
  52. case LED_PIN_LED0:
  53. rtl_write_byte(rtlpriv, LEDCFG, ledcfg & 0xf0);
  54. break;
  55. case LED_PIN_LED1:
  56. rtl_write_byte(rtlpriv, LEDCFG, ledcfg & 0x0f);
  57. break;
  58. default:
  59. pr_err("switch case %#x not processed\n",
  60. pled->ledpin);
  61. break;
  62. }
  63. pled->ledon = true;
  64. }
  65. void rtl92se_sw_led_off(struct ieee80211_hw *hw, struct rtl_led *pled)
  66. {
  67. struct rtl_priv *rtlpriv;
  68. u8 ledcfg;
  69. rtlpriv = rtl_priv(hw);
  70. if (!rtlpriv || rtlpriv->max_fw_size)
  71. return;
  72. RT_TRACE(rtlpriv, COMP_LED, DBG_LOUD, "LedAddr:%X ledpin=%d\n",
  73. LEDCFG, pled->ledpin);
  74. ledcfg = rtl_read_byte(rtlpriv, LEDCFG);
  75. switch (pled->ledpin) {
  76. case LED_PIN_GPIO0:
  77. break;
  78. case LED_PIN_LED0:
  79. ledcfg &= 0xf0;
  80. if (rtlpriv->ledctl.led_opendrain)
  81. rtl_write_byte(rtlpriv, LEDCFG, (ledcfg | BIT(1)));
  82. else
  83. rtl_write_byte(rtlpriv, LEDCFG, (ledcfg | BIT(3)));
  84. break;
  85. case LED_PIN_LED1:
  86. ledcfg &= 0x0f;
  87. rtl_write_byte(rtlpriv, LEDCFG, (ledcfg | BIT(3)));
  88. break;
  89. default:
  90. pr_err("switch case %#x not processed\n",
  91. pled->ledpin);
  92. break;
  93. }
  94. pled->ledon = false;
  95. }
  96. static void _rtl92se_sw_led_control(struct ieee80211_hw *hw,
  97. enum led_ctl_mode ledaction)
  98. {
  99. struct rtl_priv *rtlpriv = rtl_priv(hw);
  100. struct rtl_led *pled0 = &rtlpriv->ledctl.sw_led0;
  101. switch (ledaction) {
  102. case LED_CTL_POWER_ON:
  103. case LED_CTL_LINK:
  104. case LED_CTL_NO_LINK:
  105. rtl92se_sw_led_on(hw, pled0);
  106. break;
  107. case LED_CTL_POWER_OFF:
  108. rtl92se_sw_led_off(hw, pled0);
  109. break;
  110. default:
  111. break;
  112. }
  113. }
  114. void rtl92se_led_control(struct ieee80211_hw *hw, enum led_ctl_mode ledaction)
  115. {
  116. struct rtl_priv *rtlpriv = rtl_priv(hw);
  117. struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw));
  118. if ((ppsc->rfoff_reason > RF_CHANGE_BY_PS) &&
  119. (ledaction == LED_CTL_TX ||
  120. ledaction == LED_CTL_RX ||
  121. ledaction == LED_CTL_SITE_SURVEY ||
  122. ledaction == LED_CTL_LINK ||
  123. ledaction == LED_CTL_NO_LINK ||
  124. ledaction == LED_CTL_START_TO_LINK ||
  125. ledaction == LED_CTL_POWER_ON)) {
  126. return;
  127. }
  128. RT_TRACE(rtlpriv, COMP_LED, DBG_LOUD, "ledaction %d\n", ledaction);
  129. _rtl92se_sw_led_control(hw, ledaction);
  130. }