123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- /*
- * Copyright (c) 2017-2019 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.
- */
- #ifndef _WLAN_SPECTRAL_TGT_API_H_
- #define _WLAN_SPECTRAL_TGT_API_H_
- #include <wlan_objmgr_cmn.h>
- #include <qdf_types.h>
- #include "../../core/spectral_cmn_api_i.h"
- /**
- * tgt_get_target_handle() - Get target_if handle
- * @pdev: Pointer to pdev
- *
- * Get handle to target_if internal Spectral data
- *
- * Return: Handle to target_if internal Spectral data on success, NULL on
- * failure
- */
- void *tgt_get_target_handle(struct wlan_objmgr_pdev *pdev);
- /**
- * tgt_spectral_control()- handler for demultiplexing requests from higher layer
- * @pdev: reference to global pdev object
- * @sscan_req: pointer to Spectral scan request
- *
- * This function processes the spectral config command
- * and appropriate handlers are invoked.
- *
- * Return: 0 success else failure
- */
- int tgt_spectral_control(struct wlan_objmgr_pdev *pdev,
- struct spectral_cp_request *sscan_req);
- /**
- * tgt_pdev_spectral_init() - implementation for spectral init
- * @pdev: Pointer to pdev
- *
- * Return: On success, pointer to Spectral target_if internal private data, on
- * failure, NULL
- */
- void *tgt_pdev_spectral_init(struct wlan_objmgr_pdev *pdev);
- /**
- * tgt_pdev_spectral_deinit() - implementation for spectral de-init
- * @pdev: Pointer to pdev
- *
- * Return: None
- */
- void tgt_pdev_spectral_deinit(struct wlan_objmgr_pdev *pdev);
- /**
- * tgt_set_spectral_config() - Set spectral config
- * @pdev: Pointer to pdev object
- * @threshtype: spectral parameter type
- * @value: value to be configured for the given spectral parameter
- *
- * Implementation for setting spectral config
- *
- * Return: 0 on success else failure
- */
- int tgt_set_spectral_config(struct wlan_objmgr_pdev *pdev,
- const u_int32_t threshtype,
- const u_int32_t value);
- /**
- * tgt_get_spectral_config() - Get spectral configuration
- * @pdev: Pointer to pdev object
- * @param: Pointer to spectral_config structure in which the configuration
- * should be returned
- *
- * Implementation for getting the current spectral configuration
- *
- * Return: None
- */
- void tgt_get_spectral_config(struct wlan_objmgr_pdev *pdev,
- struct spectral_config *sptrl_config);
- /**
- * tgt_start_spectral_scan() - Start spectral scan
- * @pdev: Pointer to pdev object
- *
- * Implementation for starting spectral scan
- *
- * Return: 0 in case of success, -1 on failure
- */
- int tgt_start_spectral_scan(struct wlan_objmgr_pdev *pdev);
- /**
- * tgt_stop_spectral_scan() - Stop spectral scan
- * @pdev: Pointer to pdev object
- *
- * Implementation for stop spectral scan
- *
- * Return: None
- */
- void tgt_stop_spectral_scan(struct wlan_objmgr_pdev *pdev);
- /**
- * tgt_is_spectral_active() - Get whether Spectral is active
- * @pdev: Pointer to pdev object
- *
- * Implementation to get whether Spectral is active
- *
- * Return: True if Spectral is active, false if Spectral is not active
- */
- bool tgt_is_spectral_active(struct wlan_objmgr_pdev *pdev);
- /**
- * tgt_is_spectral_enabled() - Get whether Spectral is active
- * @pdev: Pointer to pdev object
- *
- * Implementation to get whether Spectral is active
- *
- * Return: True if Spectral is active, false if Spectral is not active
- */
- bool tgt_is_spectral_enabled(struct wlan_objmgr_pdev *pdev);
- /**
- * tgt_set_debug_level() - Set debug level for Spectral
- * @pdev: Pointer to pdev object
- * @debug_level: Debug level
- *
- * Implementation to set the debug level for Spectral
- *
- * Return: 0 in case of success
- */
- int tgt_set_debug_level(struct wlan_objmgr_pdev *pdev, u_int32_t debug_level);
- /**
- * tgt_get_debug_level() - Get debug level for Spectral
- * @pdev: Pointer to pdev object
- *
- * Implementation to get the debug level for Spectral
- *
- * Return: Current debug level
- */
- uint32_t tgt_get_debug_level(struct wlan_objmgr_pdev *pdev);
- /**
- * tgt_get_spectral_capinfo() - Get Spectral capability information
- * @pdev: Pointer to pdev object
- * @outdata: Buffer into which data should be copied
- *
- * Implementation to get the spectral capability information
- *
- * Return: void
- */
- void tgt_get_spectral_capinfo(struct wlan_objmgr_pdev *pdev, void *outdata);
- /**
- * tgt_get_spectral_diagstats() - Get Spectral diagnostic statistics
- * @pdev: Pointer to pdev object
- * @outdata: Buffer into which data should be copied
- *
- * Implementation to get the spectral diagnostic statistics
- *
- * Return: void
- */
- void tgt_get_spectral_diagstats(struct wlan_objmgr_pdev *pdev, void *outdata);
- /**
- * tgt_register_wmi_spectral_cmd_ops() - Register wmi_spectral_cmd_ops
- * @cmd_ops: Pointer to the structure having wmi_spectral_cmd function pointers
- * @pdev: Pointer to pdev object
- *
- * Implementation to register wmi_spectral_cmd_ops in spectral
- * internal data structure
- *
- * Return: void
- */
- void tgt_register_wmi_spectral_cmd_ops(struct wlan_objmgr_pdev *pdev,
- struct wmi_spectral_cmd_ops *cmd_ops);
- /**
- * tgt_spectral_register_nl_cb() - Register Netlink callbacks
- * @pdev: Pointer to pdev object
- * @nl_cb: Netlink callbacks to register
- *
- * Return: void
- */
- void tgt_spectral_register_nl_cb(struct wlan_objmgr_pdev *pdev,
- struct spectral_nl_cb *nl_cb);
- /**
- * tgt_spectral_use_nl_bcast() - Get whether to use broadcast/unicast while
- * sending Netlink messages to the application layer
- * @pdev: Pointer to pdev object
- *
- * Return: true for broadcast, false for unicast
- */
- bool tgt_spectral_use_nl_bcast(struct wlan_objmgr_pdev *pdev);
- /**
- * tgt_spectral_deregister_nl_cb() - De-register Netlink callbacks
- * @pdev: Pointer to pdev object
- *
- * Return: void
- */
- void tgt_spectral_deregister_nl_cb(struct wlan_objmgr_pdev *pdev);
- /**
- * tgt_spectral_process_report() - Process spectral report
- * @pdev: Pointer to pdev object
- * @payload: Pointer to spectral report buffer
- *
- * Return: status
- */
- int
- tgt_spectral_process_report(struct wlan_objmgr_pdev *pdev,
- void *payload);
- /**
- * tgt_spectral_register_to_dbr() - Register to direct DMA
- * @pdev: Pointer to pdev object
- *
- * Return: QDF_STATUS
- */
- QDF_STATUS
- tgt_spectral_register_to_dbr(struct wlan_objmgr_pdev *pdev);
- /**
- * tgt_spectral_unregister_to_dbr() - Register to direct DMA
- * @pdev: Pointer to pdev object
- *
- * Return: QDF_STATUS
- */
- QDF_STATUS
- tgt_spectral_unregister_to_dbr(struct wlan_objmgr_pdev *pdev);
- /**
- * tgt_spectral_get_target_type() - Get target type
- * @psoc: Pointer to psoc object
- *
- * Return: target type
- */
- uint32_t
- tgt_spectral_get_target_type(struct wlan_objmgr_psoc *psoc);
- #endif /* _WLAN_SPECTRAL_TGT_API_H_ */
|