mirror of https://gitee.com/openkylin/linux.git
38 lines
1.2 KiB
C
38 lines
1.2 KiB
C
|
/*
|
||
|
* Copyright (c) 2015 Qualcomm Atheros Inc.
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
#include "hw.h"
|
||
|
#include "hw-ops.h"
|
||
|
#include "ar9003_mci.h"
|
||
|
#include "ar9003_aic.h"
|
||
|
|
||
|
static bool ar9003_hw_is_aic_enabled(struct ath_hw *ah)
|
||
|
{
|
||
|
struct ath9k_hw_mci *mci_hw = &ah->btcoex_hw.mci;
|
||
|
|
||
|
if (mci_hw->config & ATH_MCI_CONFIG_DISABLE_AIC)
|
||
|
return false;
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
void ar9003_hw_attach_aic_ops(struct ath_hw *ah)
|
||
|
{
|
||
|
struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
|
||
|
|
||
|
priv_ops->is_aic_enabled = ar9003_hw_is_aic_enabled;
|
||
|
}
|