mirror of https://github.com/brektrou/rtl8821CU
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			85 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
			
		
		
	
	
			85 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
/******************************************************************************
 | 
						|
 *
 | 
						|
 * Copyright(c) 2016 - 2018 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.
 | 
						|
 *
 | 
						|
 ******************************************************************************/
 | 
						|
 | 
						|
#ifndef HALMAC_GPIO_CMD
 | 
						|
#define HALMAC_GPIO_CMD
 | 
						|
 | 
						|
#include "halmac_2_platform.h"
 | 
						|
 | 
						|
/* GPIO ID */
 | 
						|
#define HALMAC_GPIO0		0
 | 
						|
#define HALMAC_GPIO1		1
 | 
						|
#define HALMAC_GPIO2		2
 | 
						|
#define HALMAC_GPIO3		3
 | 
						|
#define HALMAC_GPIO4		4
 | 
						|
#define HALMAC_GPIO5		5
 | 
						|
#define HALMAC_GPIO6		6
 | 
						|
#define HALMAC_GPIO7		7
 | 
						|
#define HALMAC_GPIO8		8
 | 
						|
#define HALMAC_GPIO9		9
 | 
						|
#define HALMAC_GPIO10		10
 | 
						|
#define HALMAC_GPIO11		11
 | 
						|
#define HALMAC_GPIO12		12
 | 
						|
#define HALMAC_GPIO13		13
 | 
						|
#define HALMAC_GPIO14		14
 | 
						|
#define HALMAC_GPIO15		15
 | 
						|
#define HALMAC_GPIO_NUM		16
 | 
						|
 | 
						|
/* GPIO type */
 | 
						|
#define HALMAC_GPIO_IN		0
 | 
						|
#define HALMAC_GPIO_OUT		1
 | 
						|
#define HALMAC_GPIO_IN_OUT	2
 | 
						|
 | 
						|
/* Function name */
 | 
						|
#define HALMAC_WL_HWPDN			0
 | 
						|
#define HALMAC_BT_HWPDN			1
 | 
						|
#define HALMAC_BT_GPIO			2
 | 
						|
#define HALMAC_WL_HW_EXTWOL		3
 | 
						|
#define HALMAC_BT_HW_EXTWOL		4
 | 
						|
#define HALMAC_BT_SFLASH		5
 | 
						|
#define HALMAC_WL_SFLASH		6
 | 
						|
#define HALMAC_WL_LED			7
 | 
						|
#define HALMAC_SDIO_INT			8
 | 
						|
#define HALMAC_UART0			9
 | 
						|
#define HALMAC_EEPROM			10
 | 
						|
#define HALMAC_JTAG			11
 | 
						|
#define HALMAC_LTE_COEX_UART		12
 | 
						|
#define HALMAC_3W_LTE_WL_GPIO		13
 | 
						|
#define HALMAC_GPIO2_3_WL_CTRL_EN	14
 | 
						|
#define HALMAC_GPIO13_14_WL_CTRL_EN	15
 | 
						|
#define HALMAC_DBG_GNT_WL_BT		16
 | 
						|
#define HALMAC_BT_3DDLS_A		17
 | 
						|
#define HALMAC_BT_3DDLS_B		18
 | 
						|
#define HALMAC_BT_PTA			19
 | 
						|
#define HALMAC_WL_PTA			20
 | 
						|
#define HALMAC_WL_UART			21
 | 
						|
#define HALMAC_WLMAC_DBG		22
 | 
						|
#define HALMAC_WLPHY_DBG		23
 | 
						|
#define HALMAC_BT_DBG			24
 | 
						|
#define HALMAC_WLPHY_RFE_CTRL2GPIO	25
 | 
						|
#define HALMAC_EXT_XTAL			26
 | 
						|
#define HALMAC_SW_IO			27
 | 
						|
 | 
						|
struct halmac_gpio_pimux_list {
 | 
						|
	u16 func;
 | 
						|
	u8 id;
 | 
						|
	u8 type;
 | 
						|
	u16 offset;
 | 
						|
	u8 msk;
 | 
						|
	u8 value;
 | 
						|
};
 | 
						|
 | 
						|
#endif
 |