Release 4.9 drivers/staging/rtl8188eu/hal/rtl8188eu_led.c
/******************************************************************************
*
* Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of version 2 of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
******************************************************************************/
#include <osdep_service.h>
#include <drv_types.h>
#include <rtl8188e_hal.h>
#include <rtl8188e_led.h>
#include <usb_ops_linux.h>
/* LED object. */
/* LED_819xUsb routines. */
/* Description: */
/* Turn on LED according to LedPin specified. */
void SwLedOn(struct adapter *padapter, struct LED_871x *pLed)
{
u8 LedCfg;
if (padapter->bSurpriseRemoved || padapter->bDriverStopped)
return;
LedCfg = usb_read8(padapter, REG_LEDCFG2);
usb_write8(padapter, REG_LEDCFG2, (LedCfg&0xf0) | BIT(5) | BIT(6)); /* SW control led0 on. */
pLed->bLedOn = true;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
larry finger | larry finger | 58 | 85.29% | 1 | 25.00% |
anish bhatt | anish bhatt | 8 | 11.76% | 1 | 25.00% |
navin patidar | navin patidar | 2 | 2.94% | 2 | 50.00% |
| Total | 68 | 100.00% | 4 | 100.00% |
/* Description: */
/* Turn off LED according to LedPin specified. */
void SwLedOff(struct adapter *padapter, struct LED_871x *pLed)
{
u8 LedCfg;
if (padapter->bSurpriseRemoved || padapter->bDriverStopped)
goto exit;
LedCfg = usb_read8(padapter, REG_LEDCFG2);/* 0x4E */
if (padapter->HalData->bLedOpenDrain) {
/* Open-drain arrangement for controlling the LED) */
LedCfg &= 0x90; /* Set to software control. */
usb_write8(padapter, REG_LEDCFG2, (LedCfg | BIT(3)));
LedCfg = usb_read8(padapter, REG_MAC_PINMUX_CFG);
LedCfg &= 0xFE;
usb_write8(padapter, REG_MAC_PINMUX_CFG, LedCfg);
} else {
usb_write8(padapter, REG_LEDCFG2, (LedCfg | BIT(3) | BIT(5) | BIT(6)));
}
exit:
pLed->bLedOn = false;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
larry finger | larry finger | 108 | 81.82% | 1 | 20.00% |
anish bhatt | anish bhatt | 16 | 12.12% | 1 | 20.00% |
navin patidar | navin patidar | 5 | 3.79% | 2 | 40.00% |
ivan safonov | ivan safonov | 3 | 2.27% | 1 | 20.00% |
| Total | 132 | 100.00% | 5 | 100.00% |
/* Interface to manipulate LED objects. */
/* Default LED behavior. */
/* Description: */
/* Initialize all LED_871x objects. */
void rtw_hal_sw_led_init(struct adapter *padapter)
{
struct led_priv *pledpriv = &(padapter->ledpriv);
pledpriv->bRegUseLed = true;
pledpriv->LedControlHandler = LedControl8188eu;
padapter->HalData->bLedOpenDrain = true;
InitLed871x(padapter, &(pledpriv->SwLed0));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
larry finger | larry finger | 37 | 68.52% | 2 | 40.00% |
navin patidar | navin patidar | 13 | 24.07% | 1 | 20.00% |
ivan safonov | ivan safonov | 4 | 7.41% | 2 | 40.00% |
| Total | 54 | 100.00% | 5 | 100.00% |
/* Description: */
/* DeInitialize all LED_819xUsb objects. */
void rtw_hal_sw_led_deinit(struct adapter *padapter)
{
struct led_priv *ledpriv = &(padapter->ledpriv);
DeInitLed871x(&(ledpriv->SwLed0));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
larry finger | larry finger | 31 | 96.88% | 1 | 50.00% |
ivan safonov | ivan safonov | 1 | 3.12% | 1 | 50.00% |
| Total | 32 | 100.00% | 2 | 100.00% |
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
larry finger | larry finger | 258 | 82.17% | 2 | 18.18% |
anish bhatt | anish bhatt | 24 | 7.64% | 1 | 9.09% |
navin patidar | navin patidar | 23 | 7.32% | 4 | 36.36% |
ivan safonov | ivan safonov | 8 | 2.55% | 3 | 27.27% |
kyle kuffermann | kyle kuffermann | 1 | 0.32% | 1 | 9.09% |
| Total | 314 | 100.00% | 11 | 100.00% |