SAMA5D4 Xplained Ultra Board BSP
guowenxue
2019-08-19 2e7235d10c6dbff81960282e1a1e2e798f9b8db8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/******************************************************************************
 *
 * 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.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
 *
 *
 ******************************************************************************/
 
#include <drv_types.h>
#include <rtl8188e_hal.h>
 
/* ********************************************************************************
 * LED object.
 * ******************************************************************************** */
 
 
/* ********************************************************************************
 *    Prototype of protected function.
 * ******************************************************************************** */
 
 
/* ********************************************************************************
 * LED_819xUsb routines.
 * ******************************************************************************** */
 
/*
 *    Description:
 *        Turn on LED according to LedPin specified.
 *   */
static void
SwLedOn_8188EU(
    _adapter            *padapter,
    PLED_USB        pLed
)
{
    u8    LedCfg;
    /* HAL_DATA_TYPE    *pHalData = GET_HAL_DATA(padapter); */
 
    if (RTW_CANNOT_RUN(padapter))
        return;
 
    LedCfg = rtw_read8(padapter, REG_LEDCFG2);
    switch (pLed->LedPin) {
    case LED_PIN_LED0:
        rtw_write8(padapter, REG_LEDCFG2, (LedCfg & 0xf0) | BIT5 | BIT6); /* SW control led0 on. */
        break;
 
    case LED_PIN_LED1:
        rtw_write8(padapter, REG_LEDCFG2, (LedCfg & 0x0f) | BIT5); /* SW control led1 on. */
        break;
 
    default:
        break;
    }
 
    pLed->bLedOn = _TRUE;
}
 
 
/*
 *    Description:
 *        Turn off LED according to LedPin specified.
 *   */
static void
SwLedOff_8188EU(
    _adapter            *padapter,
    PLED_USB        pLed
)
{
    u8    LedCfg;
    HAL_DATA_TYPE    *pHalData = GET_HAL_DATA(padapter);
 
    if (RTW_CANNOT_RUN(padapter))
        goto exit;
 
 
    LedCfg = rtw_read8(padapter, REG_LEDCFG2);/* 0x4E */
 
    switch (pLed->LedPin) {
    case LED_PIN_LED0:
        if (pHalData->bLedOpenDrain == _TRUE) { /* Open-drain arrangement for controlling the LED) */
            LedCfg &= 0x90; /* Set to software control.                 */
            rtw_write8(padapter, REG_LEDCFG2, (LedCfg | BIT3));
            LedCfg = rtw_read8(padapter, REG_MAC_PINMUX_CFG);
            LedCfg &= 0xFE;
            rtw_write8(padapter, REG_MAC_PINMUX_CFG, LedCfg);
        } else
            rtw_write8(padapter, REG_LEDCFG2, (LedCfg | BIT3 | BIT5 | BIT6));
        break;
 
    case LED_PIN_LED1:
        LedCfg &= 0x0f; /* Set to software control. */
        rtw_write8(padapter, REG_LEDCFG2, (LedCfg | BIT3));
        break;
 
    default:
        break;
    }
exit:
    pLed->bLedOn = _FALSE;
 
}
 
/* ********************************************************************************
 * Interface to manipulate LED objects.
 * ******************************************************************************** */
 
 
/* ********************************************************************************
 * Default LED behavior.
 * ******************************************************************************** */
 
/*
 *    Description:
 *        Initialize all LED_871x objects.
 *   */
void
rtl8188eu_InitSwLeds(
    _adapter    *padapter
)
{
    struct led_priv *pledpriv = &(padapter->ledpriv);
 
    pledpriv->LedControlHandler = LedControlUSB;
 
    pledpriv->SwLedOn = SwLedOn_8188EU;
    pledpriv->SwLedOff = SwLedOff_8188EU;
 
    InitLed(padapter, &(pledpriv->SwLed0), LED_PIN_LED0);
 
    InitLed(padapter, &(pledpriv->SwLed1), LED_PIN_LED1);
}
 
 
/*
 *    Description:
 *        DeInitialize all LED_819xUsb objects.
 *   */
void
rtl8188eu_DeInitSwLeds(
    _adapter    *padapter
)
{
    struct led_priv    *ledpriv = &(padapter->ledpriv);
 
    DeInitLed(&(ledpriv->SwLed0));
    DeInitLed(&(ledpriv->SwLed1));
}