qcacmn: Add CFR files for QCA6490

Since there are chip differences about channel frequency response. Add
files for QCA6490. This change also adds CFR configure file

Change-Id: Ib200affe4c68dac5535c4a3d65109072559161ff
CRs-Fixed: 2637134
Šī revīzija ir iekļauta:
Wu Gao
2020-03-07 13:33:24 +08:00
revīziju iesūtīja nshrivas
vecāks 7165baf6ce
revīzija a308b3e970
3 mainīti faili ar 312 papildinājumiem un 0 dzēšanām

Parādīt failu

@@ -0,0 +1,65 @@
/*
* 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 : target_if_cfr_6490.h
*
* Target interface of CFR for QCA6490 implementation
*
*/
#ifndef _TARGET_IF_CFR_6490_H
#define _TARGET_IF_CFR_6490_H
/**
* target_if_cfr_subscribe_ppdu_desc() - subscribe ppdu description
* for CFR component
*
* @pdev: pointer to pdev object
* @is_subscribe: subscribe or unsubscribe
*
* Return: QDF_STATUS
*/
QDF_STATUS
target_if_cfr_subscribe_ppdu_desc(struct wlan_objmgr_pdev *pdev,
bool is_subscribe);
/**
* cfr_6490_init_pdev() - Init pdev cfr for QCA6490
* @psoc: pointer to psoc object
* @pdev: pointer to pdev object
*
* Registers to DBR component and init pdev cfr parameters
*
* Return: QDF status
*/
QDF_STATUS cfr_6490_init_pdev(struct wlan_objmgr_psoc *psoc,
struct wlan_objmgr_pdev *pdev);
/**
* cfr_6490_deinit_pdev() - De-inits pdev cfr for QCA6490
* @pdev: pointer to pdev object
*
* Unregister to DBR and deinit pdev cfr parameters
*
* Return: QDF status
*/
QDF_STATUS cfr_6490_deinit_pdev(struct wlan_objmgr_psoc *psoc,
struct wlan_objmgr_pdev *pdev);
#endif /* _TARGET_IF_CFR_6490_H */