1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /*
- * 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__ */
|