xref: /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/include/custom_gpio.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /******************************************************************************
2*4882a593Smuzhiyun  *
3*4882a593Smuzhiyun  * Copyright(c) 2016 - 2017 Realtek Corporation.
4*4882a593Smuzhiyun  *
5*4882a593Smuzhiyun  * This program is free software; you can redistribute it and/or modify it
6*4882a593Smuzhiyun  * under the terms of version 2 of the GNU General Public License as
7*4882a593Smuzhiyun  * published by the Free Software Foundation.
8*4882a593Smuzhiyun  *
9*4882a593Smuzhiyun  * This program is distributed in the hope that it will be useful, but WITHOUT
10*4882a593Smuzhiyun  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11*4882a593Smuzhiyun  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12*4882a593Smuzhiyun  * more details.
13*4882a593Smuzhiyun  *
14*4882a593Smuzhiyun  *****************************************************************************/
15*4882a593Smuzhiyun #ifndef __CUSTOM_GPIO_H__
16*4882a593Smuzhiyun #define __CUSTOM_GPIO_H___
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun #include <drv_conf.h>
19*4882a593Smuzhiyun #include <osdep_service.h>
20*4882a593Smuzhiyun 
21*4882a593Smuzhiyun typedef enum cust_gpio_modes {
22*4882a593Smuzhiyun 	WLAN_PWDN_ON,
23*4882a593Smuzhiyun 	WLAN_PWDN_OFF,
24*4882a593Smuzhiyun 	WLAN_POWER_ON,
25*4882a593Smuzhiyun 	WLAN_POWER_OFF,
26*4882a593Smuzhiyun 	WLAN_BT_PWDN_ON,
27*4882a593Smuzhiyun 	WLAN_BT_PWDN_OFF
28*4882a593Smuzhiyun } cust_gpio_modes_t;
29*4882a593Smuzhiyun 
30*4882a593Smuzhiyun extern int rtw_wifi_gpio_init(void);
31*4882a593Smuzhiyun extern int rtw_wifi_gpio_deinit(void);
32*4882a593Smuzhiyun extern void rtw_wifi_gpio_wlan_ctrl(int onoff);
33*4882a593Smuzhiyun 
34*4882a593Smuzhiyun #endif
35