qcacmn: Add and enable GPIO Component

Add the common GPIO component code for MCC and WIN

Change-Id: Id93629856d42afc433844b568deb2fa63a5b67e6
This commit is contained in:
Chaoli Zhou
2020-09-14 19:06:09 +08:00
committed by snandini
parent 8e4a6046af
commit eb134979c1
12 changed files with 690 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
/*
* Copyright (c) 2020, The Linux Foundation. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/**
* DOC: wlan_gpio_tgt_api.h
*
* This header file provide with API declarations to interface with Southbound
*/
#ifndef __WLAN_GPIO_CFG_TGT_API_H__
#define __WLAN_GPIO_CFG_TGT_API_H__
#ifdef WLAN_FEATURE_GPIO_CFG
#include <qdf_status.h>
#include <wmi_unified_param.h>
struct wlan_objmgr_psoc;
/**
* tgt_set_gpio_config_req(): API to set GPIO configuration to lmac
* @psoc: the pointer to psoc object manager
* @param: the pointer to gpio cfg info
*
* Return: status of operation
*/
QDF_STATUS
tgt_set_gpio_config_req(struct wlan_objmgr_psoc *psoc,
struct gpio_config_params *param);
/**
* tgt_set_gpio_output_req(): API to set GPIO output info to lmac
* @psoc: the pointer to psoc object manager
* @param: the pointer to gpio output info
*
* Return: status of operation
*/
QDF_STATUS
tgt_set_gpio_output_req(struct wlan_objmgr_psoc *psoc,
struct gpio_output_params *param);
#endif /* WLAN_FEATURE_GPIO_CFG */
#endif /* __WLAN_GPIO_TGT_API_H__ */