hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
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
/* SPDX-License-Identifier: GPL-2.0 */
/******************************************************************************
 *
 * Copyright(c) 2007 - 2010 Realtek Corporation. All rights reserved.
 *
 * Modifications for inclusion into the Linux staging tree are
 * Copyright(c) 2010 Larry Finger. All rights reserved.
 *
 * Contact information:
 * WLAN FAE <wlanfae@realtek.com>
 * Larry Finger <Larry.Finger@lwfinger.net>
 *
 ******************************************************************************/
#ifndef __RTL8712_GP_BITDEF_H__
#define __RTL8712_GP_BITDEF_H__
 
/*GPIO_CTRL*/
#define    _GPIO_MOD_MSK            0xFF000000
#define    _GPIO_MOD_SHT            24
#define    _GPIO_IO_SEL_MSK        0x00FF0000
#define    _GPIO_IO_SEL_SHT        16
#define    _GPIO_OUT_MSK            0x0000FF00
#define    _GPIO_OUT_SHT            8
#define    _GPIO_IN_MSK            0x000000FF
#define    _GPIO_IN_SHT            0
 
/*SYS_PINMUX_CFG*/
#define    _GPIOSEL_MSK            0x0003
#define    _GPIOSEL_SHT            0
 
/*LED_CFG*/
#define _LED1SV                BIT(7)
#define _LED1CM_MSK            0x0070
#define _LED1CM_SHT            4
#define _LED0SV                BIT(3)
#define _LED0CM_MSK            0x0007
#define _LED0CM_SHT            0
 
/*PHY_REG*/
#define _HST_RDRDY_SHT            0
#define _HST_RDRDY_MSK            0xFF
#define _HST_RDRDY            BIT(_HST_RDRDY_SHT)
#define _CPU_WTBUSY_SHT            1
#define _CPU_WTBUSY_MSK            0xFF
#define _CPU_WTBUSY            BIT(_CPU_WTBUSY_SHT)
 
/* 11. General Purpose Registers   (Offset: 0x02E0 - 0x02FF)*/
 
/*       8192S GPIO Config Setting (offset 0x2F1, 1 byte)*/
 
/*----------------------------------------------------------------------------*/
 
#define        GPIOMUX_EN    BIT(3)    /* When this bit is set to "1",
                    * GPIO PINs will switch to MAC
                    * GPIO Function
                    */
#define        GPIOSEL_GPIO    0    /* UART or JTAG or pure GPIO*/
#define        GPIOSEL_PHYDBG    1    /* PHYDBG*/
#define        GPIOSEL_BT    2    /* BT_coex*/
#define        GPIOSEL_WLANDBG    3    /* WLANDBG*/
#define        GPIOSEL_GPIO_MASK    (~(BIT(0) | BIT(1)))
/* HW Radio OFF switch (GPIO BIT) */
#define        HAL_8192S_HW_GPIO_OFF_BIT    BIT(3)
#define        HAL_8192S_HW_GPIO_OFF_MASK    0xF7
#define        HAL_8192S_HW_GPIO_WPS_BIT    BIT(4)
 
#endif    /*__RTL8712_GP_BITDEF_H__*/