cregit-Linux how code gets into the kernel

Release 4.16 drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.c

/******************************************************************************
 *
 * Copyright(c) 2007 - 2013 Realtek Corporation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 *
 * The full GNU General Public License is included in this distribution in the
 * file called LICENSE.
 *
 * Contact Information:
 * wlanfae <wlanfae@realtek.com>
 * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
 * Hsinchu 300, Taiwan.
 *
 * Larry Finger <Larry.Finger@lwfinger.net>
 *
 ******************************************************************************/

#include "halbt_precomp.h"

/***************************************************
 *              Debug related function
 ***************************************************/


static const char *const gl_btc_wifi_bw_string[] = {
	"11bg",
	"HT20",
	"HT40",
	"HT80",
	"HT160"
};


static const char *const gl_btc_wifi_freq_string[] = {
	"2.4G",
	"5G"
};


static bool halbtc_is_bt_coexist_available(struct btc_coexist *btcoexist) { if (!btcoexist->binded || NULL == btcoexist->adapter) return false; return true; }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger30100.00%1100.00%
Total30100.00%1100.00%


static bool halbtc_is_wifi_busy(struct rtl_priv *rtlpriv) { if (rtlpriv->link_info.busytraffic) return true; else return false; }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger26100.00%1100.00%
Total26100.00%1100.00%


static void halbtc_dbg_init(void) { }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger685.71%150.00%
Yan-Hsuan Chuang114.29%150.00%
Total7100.00%2100.00%

/*************************************************** * helper function ***************************************************/
static bool is_any_client_connect_to_ap(struct btc_coexist *btcoexist) { struct rtl_priv *rtlpriv = btcoexist->adapter; struct rtl_mac *mac = rtl_mac(rtlpriv); struct rtl_sta_info *drv_priv; u8 cnt = 0; if (mac->opmode == NL80211_IFTYPE_ADHOC || mac->opmode == NL80211_IFTYPE_MESH_POINT || mac->opmode == NL80211_IFTYPE_AP) { if (in_interrupt() > 0) { list_for_each_entry(drv_priv, &rtlpriv->entry_list, list) { cnt++; } } else { spin_lock_bh(&rtlpriv->locks.entry_list_lock); list_for_each_entry(drv_priv, &rtlpriv->entry_list, list) { cnt++; } spin_unlock_bh(&rtlpriv->locks.entry_list_lock); } } if (cnt > 0) return true; else return false; }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang12493.23%150.00%
Larry Finger96.77%150.00%
Total133100.00%2100.00%


static bool halbtc_legacy(struct rtl_priv *adapter) { struct rtl_priv *rtlpriv = adapter; struct rtl_mac *mac = rtl_mac(rtlpriv); bool is_legacy = false; if ((mac->mode == WIRELESS_MODE_B) || (mac->mode == WIRELESS_MODE_G)) is_legacy = true; return is_legacy; }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger5798.28%150.00%
Himangi Saraogi11.72%150.00%
Total58100.00%2100.00%


bool halbtc_is_wifi_uplink(struct rtl_priv *adapter) { struct rtl_priv *rtlpriv = adapter; if (rtlpriv->link_info.tx_busy_traffic) return true; else return false; }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger32100.00%1100.00%
Total32100.00%1100.00%


static u32 halbtc_get_wifi_bw(struct btc_coexist *btcoexist) { struct rtl_priv *rtlpriv = btcoexist->adapter; struct rtl_phy *rtlphy = &rtlpriv->phy; u32 wifi_bw = BTC_WIFI_BW_HT20; if (halbtc_legacy(rtlpriv)) { wifi_bw = BTC_WIFI_BW_LEGACY; } else { switch (rtlphy->current_chan_bw) { case HT_CHANNEL_WIDTH_20: wifi_bw = BTC_WIFI_BW_HT20; break; case HT_CHANNEL_WIDTH_20_40: wifi_bw = BTC_WIFI_BW_HT40; break; case HT_CHANNEL_WIDTH_80: wifi_bw = BTC_WIFI_BW_HT80; break; } } return wifi_bw; }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger5058.14%150.00%
Ping-Ke Shih3641.86%150.00%
Total86100.00%2100.00%


static u8 halbtc_get_wifi_central_chnl(struct btc_coexist *btcoexist) { struct rtl_priv *rtlpriv = btcoexist->adapter; struct rtl_phy *rtlphy = &(rtlpriv->phy); u8 chnl = 1; if (rtlphy->current_channel != 0) chnl = rtlphy->current_channel; RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD, "static halbtc_get_wifi_central_chnl:%d\n", chnl); return chnl; }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger67100.00%2100.00%
Total67100.00%2100.00%


static u8 rtl_get_hwpg_single_ant_path(struct rtl_priv *rtlpriv) { struct rtl_mod_params *mod_params = rtlpriv->cfg->mod_params; /* override ant_num / ant_path */ if (mod_params->ant_sel) { rtlpriv->btcoexist.btc_info.ant_num = (mod_params->ant_sel == 1 ? ANT_X2 : ANT_X1); rtlpriv->btcoexist.btc_info.single_ant_path = (mod_params->ant_sel == 1 ? 0 : 1); } return rtlpriv->btcoexist.btc_info.single_ant_path; }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger6075.00%133.33%
Ping-Ke Shih2025.00%266.67%
Total80100.00%3100.00%


static u8 rtl_get_hwpg_bt_type(struct rtl_priv *rtlpriv) { return rtlpriv->btcoexist.btc_info.bt_type; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih20100.00%2100.00%
Total20100.00%2100.00%


static u8 rtl_get_hwpg_ant_num(struct rtl_priv *rtlpriv) { struct rtl_mod_params *mod_params = rtlpriv->cfg->mod_params; u8 num; if (rtlpriv->btcoexist.btc_info.ant_num == ANT_X2) num = 2; else num = 1; /* override ant_num / ant_path */ if (mod_params->ant_sel) num = (mod_params->ant_sel == 1 ? ANT_X2 : ANT_X1) + 1; return num; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih3852.78%266.67%
Larry Finger3447.22%133.33%
Total72100.00%3100.00%


static u8 rtl_get_hwpg_package_type(struct rtl_priv *rtlpriv) { struct rtl_hal *rtlhal = rtl_hal(rtlpriv); return rtlhal->package_type; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih26100.00%2100.00%
Total26100.00%2100.00%


static u8 rtl_get_hwpg_rfe_type(struct rtl_priv *rtlpriv) { struct rtl_hal *rtlhal = rtl_hal(rtlpriv); return rtlhal->rfe_type; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih2596.15%150.00%
Larry Finger13.85%150.00%
Total26100.00%2100.00%


static bool halbtc_is_hw_mailbox_exist(struct btc_coexist *btcoexist) { if (IS_HARDWARE_TYPE_8812(btcoexist->adapter)) return false; else return true; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih1348.15%250.00%
Larry Finger1348.15%125.00%
Yan-Hsuan Chuang13.70%125.00%
Total27100.00%4100.00%


static bool halbtc_send_bt_mp_operation(struct btc_coexist *btcoexist, u8 op_code, u8 *cmd, u32 len, unsigned long wait_ms) { struct rtl_priv *rtlpriv; const u8 oper_ver = 0; u8 req_num; if (!halbtc_is_hw_mailbox_exist(btcoexist)) return false; if (wait_ms) /* before h2c to avoid race condition */ reinit_completion(&btcoexist->bt_mp_comp); rtlpriv = btcoexist->adapter; /* fill req_num by op_code, and rtl_btc_btmpinfo_notify() use it * to know message type */ switch (op_code) { case BT_OP_GET_BT_VERSION: req_num = BT_SEQ_GET_BT_VERSION; break; case BT_OP_GET_AFH_MAP_L: req_num = BT_SEQ_GET_AFH_MAP_L; break; case BT_OP_GET_AFH_MAP_M: req_num = BT_SEQ_GET_AFH_MAP_M; break; case BT_OP_GET_AFH_MAP_H: req_num = BT_SEQ_GET_AFH_MAP_H; break; case BT_OP_GET_BT_COEX_SUPPORTED_FEATURE: req_num = BT_SEQ_GET_BT_COEX_SUPPORTED_FEATURE; break; case BT_OP_GET_BT_COEX_SUPPORTED_VERSION: req_num = BT_SEQ_GET_BT_COEX_SUPPORTED_VERSION; break; case BT_OP_GET_BT_ANT_DET_VAL: req_num = BT_SEQ_GET_BT_ANT_DET_VAL; break; case BT_OP_GET_BT_BLE_SCAN_PARA: req_num = BT_SEQ_GET_BT_BLE_SCAN_PARA; break; case BT_OP_GET_BT_BLE_SCAN_TYPE: req_num = BT_SEQ_GET_BT_BLE_SCAN_TYPE; break; case BT_OP_GET_BT_DEVICE_INFO: req_num = BT_SEQ_GET_BT_DEVICE_INFO; break; case BT_OP_GET_BT_FORBIDDEN_SLOT_VAL: req_num = BT_SEQ_GET_BT_FORB_SLOT_VAL; break; case BT_OP_WRITE_REG_ADDR: case BT_OP_WRITE_REG_VALUE: case BT_OP_READ_REG: default: req_num = BT_SEQ_DONT_CARE; break; } cmd[0] |= (oper_ver & 0x0f); /* Set OperVer */ cmd[0] |= ((req_num << 4) & 0xf0); /* Set ReqNum */ cmd[1] = op_code; rtlpriv->cfg->ops->fill_h2c_cmd(rtlpriv->mac80211.hw, 0x67, len, cmd); /* wait? */ if (!wait_ms) return true; RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD, "btmpinfo wait req_num=%d wait=%ld\n", req_num, wait_ms); if (in_interrupt()) return false; if (wait_for_completion_timeout(&btcoexist->bt_mp_comp, msecs_to_jiffies(wait_ms)) == 0) { RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_DMESG, "btmpinfo wait (req_num=%d) timeout\n", req_num); return false; /* timeout */ } return true; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih26987.91%250.00%
Larry Finger3210.46%125.00%
Yan-Hsuan Chuang51.63%125.00%
Total306100.00%4100.00%


static void halbtc_leave_lps(struct btc_coexist *btcoexist) { struct rtl_priv *rtlpriv; struct rtl_ps_ctl *ppsc; bool ap_enable = false; rtlpriv = btcoexist->adapter; ppsc = rtl_psc(rtlpriv); btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_AP_MODE_ENABLE, &ap_enable); if (ap_enable) { RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_DMESG, "%s()<--dont leave lps under AP mode\n", __func__); return; } btcoexist->bt_info.bt_ctrl_lps = true; btcoexist->bt_info.bt_lps_on = false; rtl_lps_leave(rtlpriv->mac80211.hw); }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih7477.08%250.00%
Larry Finger1515.62%125.00%
Yan-Hsuan Chuang77.29%125.00%
Total96100.00%4100.00%


static void halbtc_enter_lps(struct btc_coexist *btcoexist) { struct rtl_priv *rtlpriv; struct rtl_ps_ctl *ppsc; bool ap_enable = false; rtlpriv = btcoexist->adapter; ppsc = rtl_psc(rtlpriv); btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_AP_MODE_ENABLE, &ap_enable); if (ap_enable) { RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_DMESG, "%s()<--dont enter lps under AP mode\n", __func__); return; } btcoexist->bt_info.bt_ctrl_lps = true; btcoexist->bt_info.bt_lps_on = true; rtl_lps_enter(rtlpriv->mac80211.hw); }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih7275.00%150.00%
Yan-Hsuan Chuang2425.00%150.00%
Total96100.00%2100.00%


static void halbtc_normal_lps(struct btc_coexist *btcoexist) { struct rtl_priv *rtlpriv; rtlpriv = btcoexist->adapter; if (btcoexist->bt_info.bt_ctrl_lps) { btcoexist->bt_info.bt_lps_on = false; rtl_lps_leave(rtlpriv->mac80211.hw); btcoexist->bt_info.bt_ctrl_lps = false; } }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih3154.39%266.67%
Yan-Hsuan Chuang2645.61%133.33%
Total57100.00%3100.00%


static void halbtc_leave_low_power(struct btc_coexist *btcoexist) { }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang770.00%150.00%
Ping-Ke Shih330.00%150.00%
Total10100.00%2100.00%


static void halbtc_normal_low_power(struct btc_coexist *btcoexist) { }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih10100.00%2100.00%
Total10100.00%2100.00%


static void halbtc_disable_low_power(struct btc_coexist *btcoexist, bool low_pwr_disable) { /* TODO: original/leave 32k low power */ btcoexist->bt_info.bt_disable_low_pwr = low_pwr_disable; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih2295.65%266.67%
Yan-Hsuan Chuang14.35%133.33%
Total23100.00%3100.00%


static void halbtc_aggregation_check(struct btc_coexist *btcoexist) { bool need_to_act = false; static unsigned long pre_time; unsigned long cur_time = 0; struct rtl_priv *rtlpriv = btcoexist->adapter; /* To void continuous deleteBA=>addBA=>deleteBA=>addBA * This function is not allowed to continuous called * It can only be called after 8 seconds */ cur_time = jiffies; if (jiffies_to_msecs(cur_time - pre_time) <= 8000) { /* over 8 seconds you can execute this function again. */ return; } pre_time = cur_time; if (btcoexist->bt_info.reject_agg_pkt) { need_to_act = true; btcoexist->bt_info.pre_reject_agg_pkt = btcoexist->bt_info.reject_agg_pkt; } else { if (btcoexist->bt_info.pre_reject_agg_pkt) { need_to_act = true; btcoexist->bt_info.pre_reject_agg_pkt = btcoexist->bt_info.reject_agg_pkt; } if (btcoexist->bt_info.pre_bt_ctrl_agg_buf_size != btcoexist->bt_info.bt_ctrl_agg_buf_size) { need_to_act = true; btcoexist->bt_info.pre_bt_ctrl_agg_buf_size = btcoexist->bt_info.bt_ctrl_agg_buf_size; } if (btcoexist->bt_info.bt_ctrl_agg_buf_size) { if (btcoexist->bt_info.pre_agg_buf_size != btcoexist->bt_info.agg_buf_size) { need_to_act = true; } btcoexist->bt_info.pre_agg_buf_size = btcoexist->bt_info.agg_buf_size; } if (need_to_act) rtl_rx_ampdu_apply(rtlpriv); } }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih16382.32%150.00%
Yan-Hsuan Chuang3517.68%150.00%
Total198100.00%2100.00%


static u32 halbtc_get_bt_patch_version(struct btc_coexist *btcoexist) { u8 cmd_buffer[4] = {0}; if (btcoexist->bt_info.bt_real_fw_ver) goto label_done; /* cmd_buffer[0] and [1] is filled by halbtc_send_bt_mp_operation() */ halbtc_send_bt_mp_operation(btcoexist, BT_OP_GET_BT_VERSION, cmd_buffer, 4, 200); label_done: return btcoexist->bt_info.bt_real_fw_ver; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih3665.45%150.00%
Yan-Hsuan Chuang1934.55%150.00%
Total55100.00%2100.00%


static u32 halbtc_get_bt_coex_supported_feature(void *btc_context) { struct btc_coexist *btcoexist = (struct btc_coexist *)btc_context; u8 cmd_buffer[4] = {0}; if (btcoexist->bt_info.bt_supported_feature) goto label_done; /* cmd_buffer[0] and [1] is filled by halbtc_send_bt_mp_operation() */ halbtc_send_bt_mp_operation(btcoexist, BT_OP_GET_BT_COEX_SUPPORTED_FEATURE, cmd_buffer, 4, 200); label_done: return btcoexist->bt_info.bt_supported_feature; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih4466.67%150.00%
Larry Finger2233.33%150.00%
Total66100.00%2100.00%


static u32 halbtc_get_bt_coex_supported_version(void *btc_context) { struct btc_coexist *btcoexist = (struct btc_coexist *)btc_context; u8 cmd_buffer[4] = {0}; if (btcoexist->bt_info.bt_supported_version) goto label_done; /* cmd_buffer[0] and [1] is filled by halbtc_send_bt_mp_operation() */ halbtc_send_bt_mp_operation(btcoexist, BT_OP_GET_BT_COEX_SUPPORTED_VERSION, cmd_buffer, 4, 200); label_done: return btcoexist->bt_info.bt_supported_version; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih5786.36%150.00%
Larry Finger913.64%150.00%
Total66100.00%2100.00%


static u32 halbtc_get_bt_device_info(void *btc_context) { struct btc_coexist *btcoexist = (struct btc_coexist *)btc_context; u8 cmd_buffer[4] = {0}; /* cmd_buffer[0] and [1] is filled by halbtc_send_bt_mp_operation() */ halbtc_send_bt_mp_operation(btcoexist, BT_OP_GET_BT_DEVICE_INFO, cmd_buffer, 4, 200); return btcoexist->bt_info.bt_device_info; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih4584.91%150.00%
Larry Finger815.09%150.00%
Total53100.00%2100.00%


static u32 halbtc_get_bt_forbidden_slot_val(void *btc_context) { struct btc_coexist *btcoexist = (struct btc_coexist *)btc_context; u8 cmd_buffer[4] = {0}; /* cmd_buffer[0] and [1] is filled by halbtc_send_bt_mp_operation() */ halbtc_send_bt_mp_operation(btcoexist, BT_OP_GET_BT_FORBIDDEN_SLOT_VAL, cmd_buffer, 4, 200); return btcoexist->bt_info.bt_forb_slot_val; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih4279.25%266.67%
Larry Finger1120.75%133.33%
Total53100.00%3100.00%


static u32 halbtc_get_wifi_link_status(struct btc_coexist *btcoexist) { /* return value: * [31:16] => connected port number * [15:0] => port connected bit define */ struct rtl_priv *rtlpriv = btcoexist->adapter; struct rtl_mac *mac = rtl_mac(rtlpriv); u32 ret_val = 0; u32 port_connected_status = 0, num_of_connected_port = 0; if (mac->opmode == NL80211_IFTYPE_STATION && mac->link_state >= MAC80211_LINKED) { port_connected_status |= WIFI_STA_CONNECTED; num_of_connected_port++; } /* AP & ADHOC & MESH */ if (is_any_client_connect_to_ap(btcoexist)) { port_connected_status |= WIFI_AP_CONNECTED; num_of_connected_port++; } /* TODO: P2P Connected Status */ ret_val = (num_of_connected_port << 16) | port_connected_status; return ret_val; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih7777.78%250.00%
Yan-Hsuan Chuang1212.12%125.00%
Larry Finger1010.10%125.00%
Total99100.00%4100.00%


static s32 halbtc_get_wifi_rssi(struct rtl_priv *rtlpriv) { int undec_sm_pwdb = 0; if (rtlpriv->mac80211.link_state >= MAC80211_LINKED) undec_sm_pwdb = rtlpriv->dm.undec_sm_pwdb; else /* associated entry pwdb */ undec_sm_pwdb = rtlpriv->dm.undec_sm_pwdb; return undec_sm_pwdb; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih4085.11%150.00%
Larry Finger714.89%150.00%
Total47100.00%2100.00%


static bool halbtc_get(void *void_btcoexist, u8 get_type, void *out_buf) { struct btc_coexist *btcoexist = (struct btc_coexist *)void_btcoexist; struct rtl_priv *rtlpriv = btcoexist->adapter; struct rtl_phy *rtlphy = &(rtlpriv->phy); struct rtl_mac *mac = rtl_mac(rtlpriv); struct rtl_hal *rtlhal = rtl_hal(rtlpriv); bool *bool_tmp = (bool *)out_buf; int *s32_tmp = (int *)out_buf; u32 *u32_tmp = (u32 *)out_buf; u8 *u8_tmp = (u8 *)out_buf; bool tmp = false; bool ret = true; if (!halbtc_is_bt_coexist_available(btcoexist)) return false; switch (get_type) { case BTC_GET_BL_HS_OPERATION: *bool_tmp = false; ret = false; break; case BTC_GET_BL_HS_CONNECTING: *bool_tmp = false; ret = false; break; case BTC_GET_BL_WIFI_CONNECTED: if (rtlpriv->mac80211.opmode == NL80211_IFTYPE_STATION && rtlpriv->mac80211.link_state >= MAC80211_LINKED) tmp = true; if (is_any_client_connect_to_ap(btcoexist)) tmp = true; *bool_tmp = tmp; break; case BTC_GET_BL_WIFI_BUSY: if (halbtc_is_wifi_busy(rtlpriv)) *bool_tmp = true; else *bool_tmp = false; break; case BTC_GET_BL_WIFI_SCAN: if (mac->act_scanning) *bool_tmp = true; else *bool_tmp = false; break; case BTC_GET_BL_WIFI_LINK: if (mac->link_state == MAC80211_LINKING) *bool_tmp = true; else *bool_tmp = false; break; case BTC_GET_BL_WIFI_ROAM: if (mac->link_state == MAC80211_LINKING) *bool_tmp = true; else *bool_tmp = false; break; case BTC_GET_BL_WIFI_4_WAY_PROGRESS: *bool_tmp = rtlpriv->btcoexist.btc_info.in_4way; break; case BTC_GET_BL_WIFI_UNDER_5G: if (rtlhal->current_bandtype == BAND_ON_5G) *bool_tmp = true; else *bool_tmp = false; break; case BTC_GET_BL_WIFI_AP_MODE_ENABLE: if (mac->opmode == NL80211_IFTYPE_AP) *bool_tmp = true; else *bool_tmp = false; break; case BTC_GET_BL_WIFI_ENABLE_ENCRYPTION: if (NO_ENCRYPTION == rtlpriv->sec.pairwise_enc_algorithm) *bool_tmp = false; else *bool_tmp = true; break; case BTC_GET_BL_WIFI_UNDER_B_MODE: if (rtlpriv->mac80211.mode == WIRELESS_MODE_B) *bool_tmp = true; else *bool_tmp = false; break; case BTC_GET_BL_EXT_SWITCH: *bool_tmp = false; break; case BTC_GET_BL_WIFI_IS_IN_MP_MODE: *bool_tmp = false; break; case BTC_GET_BL_IS_ASUS_8723B: *bool_tmp = false; break; case BTC_GET_S4_WIFI_RSSI: *s32_tmp = halbtc_get_wifi_rssi(rtlpriv); break; case BTC_GET_S4_HS_RSSI: *s32_tmp = 0; ret = false; break; case BTC_GET_U4_WIFI_BW: *u32_tmp = halbtc_get_wifi_bw(btcoexist); break; case BTC_GET_U4_WIFI_TRAFFIC_DIRECTION: if (halbtc_is_wifi_uplink(rtlpriv)) *u32_tmp = BTC_WIFI_TRAFFIC_TX; else *u32_tmp = BTC_WIFI_TRAFFIC_RX; break; case BTC_GET_U4_WIFI_FW_VER: *u32_tmp = (rtlhal->fw_version << 16) | rtlhal->fw_subversion; break; case BTC_GET_U4_WIFI_LINK_STATUS: *u32_tmp = halbtc_get_wifi_link_status(btcoexist); break; case BTC_GET_U4_BT_PATCH_VER: *u32_tmp = halbtc_get_bt_patch_version(btcoexist); break; case BTC_GET_U4_VENDOR: *u32_tmp = BTC_VENDOR_OTHER; break; case BTC_GET_U4_SUPPORTED_VERSION: *u32_tmp = halbtc_get_bt_coex_supported_version(btcoexist); break; case BTC_GET_U4_SUPPORTED_FEATURE: *u32_tmp = halbtc_get_bt_coex_supported_feature(btcoexist); break; case BTC_GET_U4_BT_DEVICE_INFO: *u32_tmp = halbtc_get_bt_device_info(btcoexist); break; case BTC_GET_U4_BT_FORBIDDEN_SLOT_VAL: *u32_tmp = halbtc_get_bt_forbidden_slot_val(btcoexist); break; case BTC_GET_U1_WIFI_DOT11_CHNL: *u8_tmp = rtlphy->current_channel; break; case BTC_GET_U1_WIFI_CENTRAL_CHNL: *u8_tmp = halbtc_get_wifi_central_chnl(btcoexist); break; case BTC_GET_U1_WIFI_HS_CHNL: *u8_tmp = 0; ret = false; break; case BTC_GET_U1_AP_NUM: *u8_tmp = rtlpriv->btcoexist.btc_info.ap_num; break; case BTC_GET_U1_ANT_TYPE: *u8_tmp = (u8)BTC_ANT_TYPE_0; break; case BTC_GET_U1_IOT_PEER: *u8_tmp = 0; break; /************* 1Ant **************/ case BTC_GET_U1_LPS_MODE: *u8_tmp = btcoexist->pwr_mode_val[0]; break; default: ret = false; break; } return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih37053.86%571.43%
Larry Finger24335.37%114.29%
Yan-Hsuan Chuang7410.77%114.29%
Total687100.00%7100.00%


static bool halbtc_set(void *void_btcoexist, u8 set_type, void *in_buf) { struct btc_coexist *btcoexist = (struct btc_coexist *)void_btcoexist; bool *bool_tmp = (bool *)in_buf; u8 *u8_tmp = (u8 *)in_buf; u32 *u32_tmp = (u32 *)in_buf; bool ret = true; if (!halbtc_is_bt_coexist_available(btcoexist)) return false; switch (set_type) { /* set some bool type variables. */ case BTC_SET_BL_BT_DISABLE: btcoexist->bt_info.bt_disabled = *bool_tmp; break; case BTC_SET_BL_BT_TRAFFIC_BUSY: btcoexist->bt_info.bt_busy = *bool_tmp; break; case BTC_SET_BL_BT_LIMITED_DIG: btcoexist->bt_info.limited_dig = *bool_tmp; break; case BTC_SET_BL_FORCE_TO_ROAM: btcoexist->bt_info.force_to_roam = *bool_tmp; break; case BTC_SET_BL_TO_REJ_AP_AGG_PKT: btcoexist->bt_info.reject_agg_pkt = *bool_tmp; break; case BTC_SET_BL_BT_CTRL_AGG_SIZE: btcoexist->bt_info.bt_ctrl_agg_buf_size = *bool_tmp; break; case BTC_SET_BL_INC_SCAN_DEV_NUM: btcoexist->bt_info.increase_scan_dev_num = *bool_tmp; break; case BTC_SET_BL_BT_TX_RX_MASK: btcoexist->bt_info.bt_tx_rx_mask = *bool_tmp; break; case BTC_SET_BL_MIRACAST_PLUS_BT: btcoexist->bt_info.miracast_plus_bt = *bool_tmp; break; /* set some u1Byte type variables. */ case BTC_SET_U1_RSSI_ADJ_VAL_FOR_AGC_TABLE_ON: btcoexist->bt_info.rssi_adjust_for_agc_table_on = *u8_tmp; break; case BTC_SET_U1_AGG_BUF_SIZE: btcoexist->bt_info.agg_buf_size = *u8_tmp; break; /* the following are some action which will be triggered */ case BTC_SET_ACT_GET_BT_RSSI: ret = false; break; case BTC_SET_ACT_AGGREGATE_CTRL: halbtc_aggregation_check(btcoexist); break; /* 1Ant */ case BTC_SET_U1_RSSI_ADJ_VAL_FOR_1ANT_COEX_TYPE: btcoexist->bt_info.rssi_adjust_for_1ant_coex_type = *u8_tmp; break; case BTC_SET_UI_SCAN_SIG_COMPENSATION: break; case BTC_SET_U1_LPS_VAL: btcoexist->bt_info.lps_val = *u8_tmp; break; case BTC_SET_U1_RPWM_VAL: btcoexist->bt_info.rpwm_val = *u8_tmp; break; /* the following are some action which will be triggered */ case BTC_SET_ACT_LEAVE_LPS: halbtc_leave_lps(btcoexist); break; case BTC_SET_ACT_ENTER_LPS: halbtc_enter_lps(btcoexist); break; case BTC_SET_ACT_NORMAL_LPS: halbtc_normal_lps(btcoexist); break; case BTC_SET_ACT_DISABLE_LOW_POWER: halbtc_disable_low_power(btcoexist, *bool_tmp); break; case BTC_SET_ACT_UPDATE_RAMASK: btcoexist->bt_info.ra_mask = *u32_tmp; break; case BTC_SET_ACT_SEND_MIMO_PS: break; case BTC_SET_ACT_CTRL_BT_INFO: /*wait for 8812/8821*/ break; case BTC_SET_ACT_CTRL_BT_COEX: break; case BTC_SET_ACT_CTRL_8723B_ANT: break; default: break; } return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger31085.40%240.00%
Yan-Hsuan Chuang4311.85%240.00%
Ping-Ke Shih102.75%120.00%
Total363100.00%5100.00%


static void halbtc_display_coex_statistics(struct btc_coexist *btcoexist, struct seq_file *m) { }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih15100.00%1100.00%
Total15100.00%1100.00%


static void halbtc_display_bt_link_info(struct btc_coexist *btcoexist, struct seq_file *m) { }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih15100.00%1100.00%
Total15100.00%1100.00%


static void halbtc_display_wifi_status(struct btc_coexist *btcoexist, struct seq_file *m) { struct rtl_priv *rtlpriv = btcoexist->adapter; s32 wifi_rssi = 0, bt_hs_rssi = 0; bool scan = false, link = false, roam = false, wifi_busy = false; bool wifi_under_b_mode = false; bool wifi_under_5g = false; u32 wifi_bw = BTC_WIFI_BW_HT20; u32 wifi_traffic_dir = BTC_WIFI_TRAFFIC_TX; u32 wifi_freq = BTC_FREQ_2_4G; u32 wifi_link_status = 0x0; bool bt_hs_on = false, under_ips = false, under_lps = false; bool low_power = false, dc_mode = false; u8 wifi_chnl = 0, wifi_hs_chnl = 0; u8 ap_num = 0; wifi_link_status = halbtc_get_wifi_link_status(btcoexist); seq_printf(m, "\n %-35s = %d/ %d/ %d/ %d/ %d", "STA/vWifi/HS/p2pGo/p2pGc", ((wifi_link_status & WIFI_STA_CONNECTED) ? 1 : 0), ((wifi_link_status & WIFI_AP_CONNECTED) ? 1 : 0), ((wifi_link_status & WIFI_HS_CONNECTED) ? 1 : 0), ((wifi_link_status & WIFI_P2P_GO_CONNECTED) ? 1 : 0), ((wifi_link_status & WIFI_P2P_GC_CONNECTED) ? 1 : 0)); btcoexist->btc_get(btcoexist, BTC_GET_BL_HS_OPERATION, &bt_hs_on); btcoexist->btc_get(btcoexist, BTC_GET_U1_WIFI_DOT11_CHNL, &wifi_chnl); btcoexist->btc_get(btcoexist, BTC_GET_U1_WIFI_HS_CHNL, &wifi_hs_chnl); seq_printf(m, "\n %-35s = %d / %d(%d)", "Dot11 channel / HsChnl(High Speed)", wifi_chnl, wifi_hs_chnl, bt_hs_on); btcoexist->btc_get(btcoexist, BTC_GET_S4_WIFI_RSSI, &wifi_rssi); btcoexist->btc_get(btcoexist, BTC_GET_S4_HS_RSSI, &bt_hs_rssi); seq_printf(m, "\n %-35s = %d/ %d", "Wifi rssi/ HS rssi", wifi_rssi - 100, bt_hs_rssi - 100); btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_SCAN, &scan); btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_LINK, &link); btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_ROAM, &roam); seq_printf(m, "\n %-35s = %d/ %d/ %d ", "Wifi link/ roam/ scan", link, roam, scan); btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_UNDER_5G, &wifi_under_5g); btcoexist->btc_get(btcoexist, BTC_GET_U4_WIFI_BW, &wifi_bw); btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_BUSY, &wifi_busy); btcoexist->btc_get(btcoexist, BTC_GET_U4_WIFI_TRAFFIC_DIRECTION, &wifi_traffic_dir); btcoexist->btc_get(btcoexist, BTC_GET_U1_AP_NUM, &ap_num); wifi_freq = (wifi_under_5g ? BTC_FREQ_5G : BTC_FREQ_2_4G); btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_UNDER_B_MODE, &wifi_under_b_mode); seq_printf(m, "\n %-35s = %s / %s/ %s/ AP=%d ", "Wifi freq/ bw/ traffic", gl_btc_wifi_freq_string[wifi_freq], ((wifi_under_b_mode) ? "11b" : gl_btc_wifi_bw_string[wifi_bw]), ((!wifi_busy) ? "idle" : ((BTC_WIFI_TRAFFIC_TX == wifi_traffic_dir) ? "uplink" : "downlink")), ap_num); /* power status */ dc_mode = true; /*TODO*/ under_ips = rtlpriv->psc.inactive_pwrstate == ERFOFF ? 1 : 0; under_lps = rtlpriv->psc.dot11_psmode == EACTIVE ? 0 : 1; low_power = 0; /*TODO*/ seq_printf(m, "\n %-35s = %s%s%s%s", "Power Status", (dc_mode ? "DC mode" : "AC mode"), (under_ips ? ", IPS ON" : ""), (under_lps ? ", LPS ON" : ""), (low_power ? ", 32k" : "")); seq_printf(m, "\n %-35s = %02x %02x %02x %02x %02x %02x (0x%x/0x%x)", "Power mode cmd(lps/rpwm)", btcoexist->pwr_mode_val[0], btcoexist->pwr_mode_val[1], btcoexist->pwr_mode_val[2], btcoexist->pwr_mode_val[3], btcoexist->pwr_mode_val[4], btcoexist->pwr_mode_val[5], btcoexist->bt_info.lps_val, btcoexist->bt_info.rpwm_val); }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih611100.00%2100.00%
Total611100.00%2100.00%

/************************************************************ * IO related function ************************************************************/
static u8 halbtc_read_1byte(void *bt_context, u32 reg_addr) { struct btc_coexist *btcoexist = (struct btc_coexist *)bt_context; struct rtl_priv *rtlpriv = btcoexist->adapter; return rtl_read_byte(rtlpriv, reg_addr); }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih42100.00%1100.00%
Total42100.00%1100.00%


static u16 halbtc_read_2byte(void *bt_context, u32 reg_addr) { struct btc_coexist *btcoexist = (struct btc_coexist *)bt_context; struct rtl_priv *rtlpriv = btcoexist->adapter; return rtl_read_word(rtlpriv, reg_addr); }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih42100.00%1100.00%
Total42100.00%1100.00%


static u32 halbtc_read_4byte(void *bt_context, u32 reg_addr) { struct btc_coexist *btcoexist = (struct btc_coexist *)bt_context; struct rtl_priv *rtlpriv = btcoexist->adapter; return rtl_read_dword(rtlpriv, reg_addr); }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih42100.00%1100.00%
Total42100.00%1100.00%


static void halbtc_write_1byte(void *bt_context, u32 reg_addr, u32 data) { struct btc_coexist *btcoexist = (struct btc_coexist *)bt_context; struct rtl_priv *rtlpriv = btcoexist->adapter; rtl_write_byte(rtlpriv, reg_addr, data); }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih46100.00%1100.00%
Total46100.00%1100.00%


static void halbtc_bitmask_write_1byte(void *bt_context, u32 reg_addr, u32 bit_mask, u8 data) { struct btc_coexist *btcoexist = (struct btc_coexist *)bt_context; struct rtl_priv *rtlpriv = btcoexist->adapter; u8 original_value, bit_shift = 0; u8 i; if (bit_mask != MASKDWORD) {/*if not "double word" write*/ original_value = rtl_read_byte(rtlpriv, reg_addr); for (i = 0; i <= 7; i++) { if ((bit_mask>>i) & 0x1) break; } bit_shift = i; data = (original_value & (~bit_mask)) | ((data << bit_shift) & bit_mask); } rtl_write_byte(rtlpriv, reg_addr, data); }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih128100.00%2100.00%
Total128100.00%2100.00%


static void halbtc_write_2byte(void *bt_context, u32 reg_addr, u16 data) { struct btc_coexist *btcoexist = (struct btc_coexist *)bt_context; struct rtl_priv *rtlpriv = btcoexist->adapter; rtl_write_word(rtlpriv, reg_addr, data); }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger3780.43%150.00%
Ping-Ke Shih919.57%150.00%
Total46100.00%2100.00%


static void halbtc_write_4byte(void *bt_context, u32 reg_addr, u32 data) { struct btc_coexist *btcoexist = (struct btc_coexist *)bt_context; struct rtl_priv *rtlpriv = btcoexist->adapter; rtl_write_dword(rtlpriv, reg_addr, data); }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger3780.43%150.00%
Ping-Ke Shih919.57%150.00%
Total46100.00%2100.00%


static void halbtc_write_local_reg_1byte(void *btc_context, u32 reg_addr, u8 data) { struct btc_coexist *btcoexist = (struct btc_coexist *)btc_context; struct rtl_priv *rtlpriv = btcoexist->adapter; if (btcoexist->chip_interface == BTC_INTF_SDIO) ; else if (btcoexist->chip_interface == BTC_INTF_PCI) rtl_write_byte(rtlpriv, reg_addr, data); else if (btcoexist->chip_interface == BTC_INTF_USB) rtl_write_byte(rtlpriv, reg_addr, data); }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih4858.54%266.67%
Larry Finger3441.46%133.33%
Total82100.00%3100.00%


static void halbtc_set_bbreg(void *bt_context, u32 reg_addr, u32 bit_mask, u32 data) { struct btc_coexist *btcoexist = (struct btc_coexist *)bt_context; struct rtl_priv *rtlpriv = btcoexist->adapter; rtl_set_bbreg(rtlpriv->mac80211.hw, reg_addr, bit_mask, data); }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang4378.18%150.00%
Ping-Ke Shih1221.82%150.00%
Total55100.00%2100.00%


static u32 halbtc_get_bbreg(void *bt_context, u32 reg_addr, u32 bit_mask) { struct btc_coexist *btcoexist = (struct btc_coexist *)bt_context; struct rtl_priv *rtlpriv = btcoexist->adapter; return rtl_get_bbreg(rtlpriv->mac80211.hw, reg_addr, bit_mask); }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang4078.43%150.00%
Ping-Ke Shih1121.57%150.00%
Total51100.00%2100.00%


static void halbtc_set_rfreg(void *bt_context, u8 rf_path, u32 reg_addr, u32 bit_mask, u32 data) { struct btc_coexist *btcoexist = (struct btc_coexist *)bt_context; struct rtl_priv *rtlpriv = btcoexist->adapter; rtl_set_rfreg(rtlpriv->mac80211.hw, rf_path, reg_addr, bit_mask, data); }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang3456.67%133.33%
Ping-Ke Shih1931.67%133.33%
Larry Finger711.67%133.33%
Total60100.00%3100.00%


static u32 halbtc_get_rfreg(void *bt_context, u8 rf_path, u32 reg_addr, u32 bit_mask) { struct btc_coexist *btcoexist = (struct btc_coexist *)bt_context; struct rtl_priv *rtlpriv = btcoexist->adapter; return rtl_get_rfreg(rtlpriv->mac80211.hw, rf_path, reg_addr, bit_mask); }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger3664.29%133.33%
Ping-Ke Shih1323.21%133.33%
Yan-Hsuan Chuang712.50%133.33%
Total56100.00%3100.00%


static void halbtc_fill_h2c_cmd(void *bt_context, u8 element_id, u32 cmd_len, u8 *cmd_buf) { struct btc_coexist *btcoexist = (struct btc_coexist *)bt_context; struct rtl_priv *rtlpriv = btcoexist->adapter; rtlpriv->cfg->ops->fill_h2c_cmd(rtlpriv->mac80211.hw, element_id, cmd_len, cmd_buf); }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger3454.84%133.33%
Ping-Ke Shih2438.71%133.33%
Yan-Hsuan Chuang46.45%133.33%
Total62100.00%3100.00%


static void halbtc_set_bt_reg(void *btc_context, u8 reg_type, u32 offset, u32 set_val) { struct btc_coexist *btcoexist = (struct btc_coexist *)btc_context; u8 cmd_buffer1[4] = {0}; u8 cmd_buffer2[4] = {0}; /* cmd_buffer[0] and [1] is filled by halbtc_send_bt_mp_operation() */ *((__le16 *)&cmd_buffer1[2]) = cpu_to_le16((u16)set_val); if (!halbtc_send_bt_mp_operation(btcoexist, BT_OP_WRITE_REG_VALUE, cmd_buffer1, 4, 200)) return; /* cmd_buffer[0] and [1] is filled by halbtc_send_bt_mp_operation() */ cmd_buffer2[2] = reg_type; *((u8 *)&cmd_buffer2[3]) = (u8)offset; halbtc_send_bt_mp_operation(btcoexist, BT_OP_WRITE_REG_ADDR, cmd_buffer2, 4, 200); }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih10379.84%266.67%
Larry Finger2620.16%133.33%
Total129100.00%3100.00%


static void halbtc_display_dbg_msg(void *bt_context, u8 disp_type, struct seq_file *m) { struct btc_coexist *btcoexist = (struct btc_coexist *)bt_context; switch (disp_type) { case BTC_DBG_DISP_COEX_STATISTICS: halbtc_display_coex_statistics(btcoexist, m); break; case BTC_DBG_DISP_BT_LINK_INFO: halbtc_display_bt_link_info(btcoexist, m); break; case BTC_DBG_DISP_WIFI_STATUS: halbtc_display_wifi_status(btcoexist, m); break; default: break; } }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih4461.97%150.00%
Larry Finger2738.03%150.00%
Total71100.00%2100.00%


static bool halbtc_under_ips(struct btc_coexist *btcoexist) { struct rtl_priv *rtlpriv = btcoexist->adapter; struct rtl_ps_ctl *ppsc = rtl_psc(rtlpriv); enum rf_pwrstate rtstate; if (ppsc->inactiveps) { rtstate = ppsc->rfpwr_state; if (rtstate != ERFON && ppsc->rfoff_reason == RF_CHANGE_BY_IPS) { return true; } } return false; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih4972.06%266.67%
Larry Finger1927.94%133.33%
Total68100.00%3100.00%


static u8 halbtc_get_ant_det_val_from_bt(void *btc_context) { struct btc_coexist *btcoexist = (struct btc_coexist *)btc_context; u8 cmd_buffer[4] = {0}; /* cmd_buffer[0] and [1] is filled by halbtc_send_bt_mp_operation() */ halbtc_send_bt_mp_operation(btcoexist, BT_OP_GET_BT_ANT_DET_VAL, cmd_buffer, 4, 200); /* need wait completion to return correct value */ return btcoexist->bt_info.bt_ant_det_val; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih2851.85%150.00%
Larry Finger2648.15%150.00%
Total54100.00%2100.00%


static u8 halbtc_get_ble_scan_type_from_bt(void *btc_context) { struct btc_coexist *btcoexist = (struct btc_coexist *)btc_context; u8 cmd_buffer[4] = {0}; /* cmd_buffer[0] and [1] is filled by halbtc_send_bt_mp_operation() */ halbtc_send_bt_mp_operation(btcoexist, BT_OP_GET_BT_BLE_SCAN_TYPE, cmd_buffer, 4, 200); /* need wait completion to return correct value */ return btcoexist->bt_info.bt_ble_scan_type; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih2851.85%133.33%
Larry Finger2138.89%133.33%
Yan-Hsuan Chuang59.26%133.33%
Total54100.00%3100.00%


static u32 halbtc_get_ble_scan_para_from_bt(void *btc_context, u8 scan_type) { struct btc_coexist *btcoexist = (struct btc_coexist *)btc_context; u8 cmd_buffer[4] = {0}; /* cmd_buffer[0] and [1] is filled by halbtc_send_bt_mp_operation() */ halbtc_send_bt_mp_operation(btcoexist, BT_OP_GET_BT_BLE_SCAN_PARA, cmd_buffer, 4, 200); /* need wait completion to return correct value */ return btcoexist->bt_info.bt_ble_scan_para; }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang3357.89%133.33%
Ping-Ke Shih2035.09%133.33%
Larry Finger47.02%133.33%
Total57100.00%3100.00%


static bool halbtc_get_bt_afh_map_from_bt(void *btc_context, u8 map_type, u8 *afh_map) { struct btc_coexist *btcoexist = (struct btc_coexist *)btc_context; u8 cmd_buffer[2] = {0}; bool ret; u32 *afh_map_l = (u32 *)afh_map; u32 *afh_map_m = (u32 *)(afh_map + 4); u16 *afh_map_h = (u16 *)(afh_map + 8); /* cmd_buffer[0] and [1] is filled by halbtc_send_bt_mp_operation() */ ret = halbtc_send_bt_mp_operation(btcoexist, BT_OP_GET_AFH_MAP_L, cmd_buffer, 2, 200); if (!ret) goto exit; *afh_map_l = btcoexist->bt_info.afh_map_l; /* cmd_buffer[0] and [1] is filled by halbtc_send_bt_mp_operation() */ ret = halbtc_send_bt_mp_operation(btcoexist, BT_OP_GET_AFH_MAP_M, cmd_buffer, 2, 200); if (!ret) goto exit; *afh_map_m = btcoexist->bt_info.afh_map_m; /* cmd_buffer[0] and [1] is filled by halbtc_send_bt_mp_operation() */ ret = halbtc_send_bt_mp_operation(btcoexist, BT_OP_GET_AFH_MAP_H, cmd_buffer, 2, 200); if (!ret) goto exit; *afh_map_h = btcoexist->bt_info.afh_map_h; exit: return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih17192.93%266.67%
Yan-Hsuan Chuang137.07%133.33%
Total184100.00%3100.00%

/***************************************************************** * Extern functions called by other module *****************************************************************/
bool exhalbtc_initlize_variables(struct rtl_priv *rtlpriv) { struct btc_coexist *btcoexist = rtl_btc_coexist(rtlpriv); if (!btcoexist) return false; halbtc_dbg_init(); btcoexist->btc_read_1byte = halbtc_read_1byte; btcoexist->btc_write_1byte = halbtc_write_1byte; btcoexist->btc_write_1byte_bitmask = halbtc_bitmask_write_1byte; btcoexist->btc_read_2byte = halbtc_read_2byte; btcoexist->btc_write_2byte = halbtc_write_2byte; btcoexist->btc_read_4byte = halbtc_read_4byte; btcoexist->btc_write_4byte = halbtc_write_4byte; btcoexist->btc_write_local_reg_1byte = halbtc_write_local_reg_1byte; btcoexist->btc_set_bb_reg = halbtc_set_bbreg; btcoexist->btc_get_bb_reg = halbtc_get_bbreg; btcoexist->btc_set_rf_reg = halbtc_set_rfreg; btcoexist->btc_get_rf_reg = halbtc_get_rfreg; btcoexist->btc_fill_h2c = halbtc_fill_h2c_cmd; btcoexist->btc_disp_dbg_msg = halbtc_display_dbg_msg; btcoexist->btc_get = halbtc_get; btcoexist->btc_set = halbtc_set; btcoexist->btc_set_bt_reg = halbtc_set_bt_reg; btcoexist->bt_info.bt_ctrl_buf_size = false; btcoexist->bt_info.agg_buf_size = 5; btcoexist->bt_info.increase_scan_dev_num = false; btcoexist->btc_get_bt_coex_supported_feature = halbtc_get_bt_coex_supported_feature; btcoexist->btc_get_bt_coex_supported_version = halbtc_get_bt_coex_supported_version; btcoexist->btc_get_ant_det_val_from_bt = halbtc_get_ant_det_val_from_bt; btcoexist->btc_get_ble_scan_type_from_bt = halbtc_get_ble_scan_type_from_bt; btcoexist->btc_get_ble_scan_para_from_bt = halbtc_get_ble_scan_para_from_bt; btcoexist->btc_get_bt_afh_map_from_bt = halbtc_get_bt_afh_map_from_bt; init_completion(&btcoexist->bt_mp_comp); return true; }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger12661.76%233.33%
Ping-Ke Shih6632.35%350.00%
Yan-Hsuan Chuang125.88%116.67%
Total204100.00%6100.00%


bool exhalbtc_initlize_variables_wifi_only(struct rtl_priv *rtlpriv) { struct wifi_only_cfg *wifionly_cfg = rtl_btc_wifi_only(rtlpriv); struct wifi_only_haldata *wifionly_haldata; if (!wifionly_cfg) return false; wifionly_cfg->adapter = rtlpriv; switch (rtlpriv->rtlhal.interface) { case INTF_PCI: wifionly_cfg->chip_interface = BTC_INTF_PCI; break; case INTF_USB: wifionly_cfg->chip_interface = BTC_INTF_USB; break; default: wifionly_cfg->chip_interface = BTC_INTF_UNKNOWN; break; } wifionly_haldata = &wifionly_cfg->haldata_info; wifionly_haldata->customer_id = CUSTOMER_NORMAL; wifionly_haldata->efuse_pg_antnum = rtl_get_hwpg_ant_num(rtlpriv); wifionly_haldata->efuse_pg_antpath = rtl_get_hwpg_single_ant_path(rtlpriv); wifionly_haldata->rfe_type = rtl_get_hwpg_rfe_type(rtlpriv); wifionly_haldata->ant_div_cfg = 0; return true; }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih126100.00%1100.00%
Total126100.00%1100.00%


bool exhalbtc_bind_bt_coex_withadapter(void *adapter) { struct rtl_priv *rtlpriv = adapter; struct btc_coexist *btcoexist = rtl_btc_coexist(rtlpriv); u8 ant_num = 2, chip_type, single_ant_path = 0; if (!btcoexist) return false; if (btcoexist->binded) return false; switch (rtlpriv->rtlhal.interface) { case INTF_PCI: btcoexist->chip_interface = BTC_INTF_PCI; break; case INTF_USB: btcoexist->chip_interface = BTC_INTF_USB; break; default: btcoexist->chip_interface = BTC_INTF_UNKNOWN; break; } btcoexist->binded = true; btcoexist->statistics.cnt_bind++; btcoexist->adapter = adapter; btcoexist->stack_info.profile_notified = false; btcoexist->bt_info.bt_ctrl_agg_buf_size = false; btcoexist->bt_info.agg_buf_size = 5; btcoexist->bt_info.increase_scan_dev_num = false; btcoexist->bt_info.miracast_plus_bt = false; chip_type = rtl_get_hwpg_bt_type(rtlpriv); exhalbtc_set_chip_type(btcoexist, chip_type); ant_num = rtl_get_hwpg_ant_num(rtlpriv); exhalbtc_set_ant_num(rtlpriv, BT_COEX_ANT_TYPE_PG, ant_num); /* set default antenna position to main port */ btcoexist->board_info.btdm_ant_pos = BTC_ANTENNA_AT_MAIN_PORT; single_ant_path = rtl_get_hwpg_single_ant_path(rtlpriv); exhalbtc_set_single_ant_path(btcoexist, single_ant_path); if (rtl_get_hwpg_package_type(rtlpriv) == 0) btcoexist->board_info.tfbga_package = false; else if (rtl_get_hwpg_package_type(rtlpriv) == 1) btcoexist->board_info.tfbga_package = false; else btcoexist->board_info.tfbga_package = true; if (btcoexist->board_info.tfbga_package) RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD, "[BTCoex], Package Type = TFBGA\n"); else RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD, "[BTCoex], Package Type = Non-TFBGA\n"); btcoexist->board_info.rfe_type = rtl_get_hwpg_rfe_type(rtlpriv); btcoexist->board_info.ant_div_cfg = 0; return true; }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang19865.78%120.00%
Ping-Ke Shih10334.22%480.00%
Total301100.00%5100.00%


void exhalbtc_power_on_setting(struct btc_coexist *btcoexist) { if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->statistics.cnt_power_on++; if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8723b2ant_power_on_setting(btcoexist); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8723b1ant_power_on_setting(btcoexist); } }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang68100.00%1100.00%
Total68100.00%1100.00%


void exhalbtc_pre_load_firmware(struct btc_coexist *btcoexist) { if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->statistics.cnt_pre_load_firmware++; if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8723b2ant_pre_load_firmware(btcoexist); } }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang52100.00%1100.00%
Total52100.00%1100.00%


void exhalbtc_init_hw_config(struct btc_coexist *btcoexist, bool wifi_only) { if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->statistics.cnt_init_hw_config++; if (IS_HARDWARE_TYPE_8821(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8821a2ant_init_hwconfig(btcoexist); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8821a1ant_init_hwconfig(btcoexist, wifi_only); } else if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8723b2ant_init_hwconfig(btcoexist); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8723b1ant_init_hwconfig(btcoexist, wifi_only); } else if (IS_HARDWARE_TYPE_8723A(btcoexist->adapter)) { /* 8723A has no this function */ } else if (IS_HARDWARE_TYPE_8192E(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8192e2ant_init_hwconfig(btcoexist); } }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang9660.76%133.33%
Larry Finger5937.34%133.33%
Ping-Ke Shih31.90%133.33%
Total158100.00%3100.00%


void exhalbtc_init_hw_config_wifi_only(struct wifi_only_cfg *wifionly_cfg) { }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih9100.00%1100.00%
Total9100.00%1100.00%


void exhalbtc_init_coex_dm(struct btc_coexist *btcoexist) { if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->statistics.cnt_init_coex_dm++; if (IS_HARDWARE_TYPE_8821(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8821a2ant_init_coex_dm(btcoexist); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8821a1ant_init_coex_dm(btcoexist); } else if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8723b2ant_init_coex_dm(btcoexist); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8723b1ant_init_coex_dm(btcoexist); } else if (IS_HARDWARE_TYPE_8192E(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8192e2ant_init_coex_dm(btcoexist); } btcoexist->initilized = true; }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang7451.39%150.00%
Larry Finger7048.61%150.00%
Total144100.00%2100.00%


void exhalbtc_ips_notify(struct btc_coexist *btcoexist, u8 type) { u8 ips_type; if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->statistics.cnt_ips_notify++; if (btcoexist->manual_control) return; if (ERFOFF == type) ips_type = BTC_IPS_ENTER; else ips_type = BTC_IPS_LEAVE; halbtc_leave_low_power(btcoexist); if (IS_HARDWARE_TYPE_8821(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8821a2ant_ips_notify(btcoexist, ips_type); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8821a1ant_ips_notify(btcoexist, ips_type); } else if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8723b2ant_ips_notify(btcoexist, ips_type); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8723b1ant_ips_notify(btcoexist, ips_type); } else if (IS_HARDWARE_TYPE_8192E(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8192e2ant_ips_notify(btcoexist, ips_type); } halbtc_normal_low_power(btcoexist); }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang10656.99%150.00%
Larry Finger8043.01%150.00%
Total186100.00%2100.00%


void exhalbtc_lps_notify(struct btc_coexist *btcoexist, u8 type) { u8 lps_type; if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->statistics.cnt_lps_notify++; if (btcoexist->manual_control) return; if (EACTIVE == type) lps_type = BTC_LPS_DISABLE; else lps_type = BTC_LPS_ENABLE; if (IS_HARDWARE_TYPE_8821(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8821a2ant_lps_notify(btcoexist, lps_type); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8821a1ant_lps_notify(btcoexist, lps_type); } else if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8723b2ant_lps_notify(btcoexist, lps_type); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8723b1ant_lps_notify(btcoexist, lps_type); } else if (IS_HARDWARE_TYPE_8192E(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8192e2ant_lps_notify(btcoexist, lps_type); } }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang10861.36%150.00%
Larry Finger6838.64%150.00%
Total176100.00%2100.00%


void exhalbtc_scan_notify(struct btc_coexist *btcoexist, u8 type) { u8 scan_type; if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->statistics.cnt_scan_notify++; if (btcoexist->manual_control) return; if (type) scan_type = BTC_SCAN_START; else scan_type = BTC_SCAN_FINISH; halbtc_leave_low_power(btcoexist); if (IS_HARDWARE_TYPE_8821(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8821a2ant_scan_notify(btcoexist, scan_type); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8821a1ant_scan_notify(btcoexist, scan_type); } else if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8723b2ant_scan_notify(btcoexist, scan_type); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8723b1ant_scan_notify(btcoexist, scan_type); } else if (IS_HARDWARE_TYPE_8192E(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8192e2ant_scan_notify(btcoexist, scan_type); } halbtc_normal_low_power(btcoexist); }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang184100.00%1100.00%
Total184100.00%1100.00%


void exhalbtc_scan_notify_wifi_only(struct wifi_only_cfg *wifionly_cfg, u8 is_5g) { }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih12100.00%1100.00%
Total12100.00%1100.00%


void exhalbtc_connect_notify(struct btc_coexist *btcoexist, u8 action) { u8 asso_type; if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->statistics.cnt_connect_notify++; if (btcoexist->manual_control) return; if (action) asso_type = BTC_ASSOCIATE_START; else asso_type = BTC_ASSOCIATE_FINISH; halbtc_leave_low_power(btcoexist); if (IS_HARDWARE_TYPE_8821(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8821a2ant_connect_notify(btcoexist, asso_type); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8821a1ant_connect_notify(btcoexist, asso_type); } else if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8723b2ant_connect_notify(btcoexist, asso_type); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8723b1ant_connect_notify(btcoexist, asso_type); } else if (IS_HARDWARE_TYPE_8192E(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8192e2ant_connect_notify(btcoexist, asso_type); } halbtc_normal_low_power(btcoexist); }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang184100.00%1100.00%
Total184100.00%1100.00%


void exhalbtc_mediastatus_notify(struct btc_coexist *btcoexist, enum rt_media_status media_status) { u8 status; if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->statistics.cnt_media_status_notify++; if (btcoexist->manual_control) return; if (RT_MEDIA_CONNECT == media_status) status = BTC_MEDIA_CONNECT; else status = BTC_MEDIA_DISCONNECT; halbtc_leave_low_power(btcoexist); if (IS_HARDWARE_TYPE_8821(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8821a2ant_media_status_notify(btcoexist, status); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8821a1ant_media_status_notify(btcoexist, status); } else if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8723b2ant_media_status_notify(btcoexist, status); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8723b1ant_media_status_notify(btcoexist, status); } else if (IS_HARDWARE_TYPE_8192E(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8192e2ant_media_status_notify(btcoexist, status); } halbtc_normal_low_power(btcoexist); }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang187100.00%1100.00%
Total187100.00%1100.00%


void exhalbtc_special_packet_notify(struct btc_coexist *btcoexist, u8 pkt_type) { u8 packet_type; if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->statistics.cnt_special_packet_notify++; if (btcoexist->manual_control) return; if (pkt_type == PACKET_DHCP) { packet_type = BTC_PACKET_DHCP; } else if (pkt_type == PACKET_EAPOL) { packet_type = BTC_PACKET_EAPOL; } else if (pkt_type == PACKET_ARP) { packet_type = BTC_PACKET_ARP; } else { packet_type = BTC_PACKET_UNKNOWN; return; } halbtc_leave_low_power(btcoexist); if (IS_HARDWARE_TYPE_8821(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8821a2ant_special_packet_notify(btcoexist, packet_type); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8821a1ant_special_packet_notify(btcoexist, packet_type); } else if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8723b2ant_special_packet_notify(btcoexist, packet_type); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8723b1ant_special_packet_notify(btcoexist, packet_type); } else if (IS_HARDWARE_TYPE_8192E(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8192e2ant_special_packet_notify(btcoexist, packet_type); } halbtc_normal_low_power(btcoexist); }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang217100.00%1100.00%
Total217100.00%1100.00%


void exhalbtc_bt_info_notify(struct btc_coexist *btcoexist, u8 *tmp_buf, u8 length) { if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->statistics.cnt_bt_info_notify++; halbtc_leave_low_power(btcoexist); if (IS_HARDWARE_TYPE_8821(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8821a2ant_bt_info_notify(btcoexist, tmp_buf, length); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8821a1ant_bt_info_notify(btcoexist, tmp_buf, length); } else if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8723b2ant_bt_info_notify(btcoexist, tmp_buf, length); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8723b1ant_bt_info_notify(btcoexist, tmp_buf, length); } else if (IS_HARDWARE_TYPE_8192E(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8192e2ant_bt_info_notify(btcoexist, tmp_buf, length); } halbtc_normal_low_power(btcoexist); }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang16795.43%150.00%
Larry Finger84.57%150.00%
Total175100.00%2100.00%


void exhalbtc_rf_status_notify(struct btc_coexist *btcoexist, u8 type) { if (!halbtc_is_bt_coexist_available(btcoexist)) return; if (IS_HARDWARE_TYPE_8821(btcoexist->adapter)) { } else if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8723b1ant_rf_status_notify(btcoexist, type); } else if (IS_HARDWARE_TYPE_8192E(btcoexist->adapter)) { } }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang4055.56%150.00%
Larry Finger3244.44%150.00%
Total72100.00%2100.00%


void exhalbtc_stack_operation_notify(struct btc_coexist *btcoexist, u8 type) { u8 stack_op_type; if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->statistics.cnt_stack_operation_notify++; if (btcoexist->manual_control) return; if ((type == HCI_BT_OP_INQUIRY_START) || (type == HCI_BT_OP_PAGING_START) || (type == HCI_BT_OP_PAIRING_START)) { stack_op_type = BTC_STACK_OP_INQ_PAGE_PAIR_START; } else if ((type == HCI_BT_OP_INQUIRY_FINISH) || (type == HCI_BT_OP_PAGING_SUCCESS) || (type == HCI_BT_OP_PAGING_UNSUCCESS) || (type == HCI_BT_OP_PAIRING_FINISH)) { stack_op_type = BTC_STACK_OP_INQ_PAGE_PAIR_FINISH; } else { stack_op_type = BTC_STACK_OP_NONE; } }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang6158.10%150.00%
Larry Finger4441.90%150.00%
Total105100.00%2100.00%


void exhalbtc_halt_notify(struct btc_coexist *btcoexist) { if (!halbtc_is_bt_coexist_available(btcoexist)) return; if (IS_HARDWARE_TYPE_8821(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8821a2ant_halt_notify(btcoexist); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8821a1ant_halt_notify(btcoexist); } else if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8723b2ant_halt_notify(btcoexist); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8723b1ant_halt_notify(btcoexist); } else if (IS_HARDWARE_TYPE_8192E(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8192e2ant_halt_notify(btcoexist); } btcoexist->binded = false; }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang10778.10%133.33%
Larry Finger3021.90%266.67%
Total137100.00%3100.00%


void exhalbtc_pnp_notify(struct btc_coexist *btcoexist, u8 pnp_state) { if (!halbtc_is_bt_coexist_available(btcoexist)) return; /* currently only 1ant we have to do the notification, * once pnp is notified to sleep state, we have to leave LPS that * we can sleep normally. */ if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8723b1ant_pnp_notify(btcoexist, pnp_state); else if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8723b2ant_pnp_notify(btcoexist, pnp_state); } else if (IS_HARDWARE_TYPE_8821(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8821a1ant_pnp_notify(btcoexist, pnp_state); else if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8821a2ant_pnp_notify(btcoexist, pnp_state); } else if (IS_HARDWARE_TYPE_8192E(btcoexist->adapter)) { } }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang10582.68%150.00%
Larry Finger2217.32%150.00%
Total127100.00%2100.00%


void exhalbtc_coex_dm_switch(struct btc_coexist *btcoexist) { struct rtl_priv *rtlpriv = btcoexist->adapter; if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->statistics.cnt_coex_dm_switch++; halbtc_leave_low_power(btcoexist); if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 1) { btcoexist->stop_coex_dm = true; ex_btc8723b1ant_coex_dm_reset(btcoexist); exhalbtc_set_ant_num(rtlpriv, BT_COEX_ANT_TYPE_DETECTED, 2); ex_btc8723b2ant_init_hwconfig(btcoexist); ex_btc8723b2ant_init_coex_dm(btcoexist); btcoexist->stop_coex_dm = false; } } halbtc_normal_low_power(btcoexist); }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang8480.77%150.00%
Larry Finger2019.23%150.00%
Total104100.00%2100.00%


void exhalbtc_periodical(struct btc_coexist *btcoexist) { if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->statistics.cnt_periodical++; halbtc_leave_low_power(btcoexist); if (IS_HARDWARE_TYPE_8821(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8821a2ant_periodical(btcoexist); else if (btcoexist->board_info.btdm_ant_num == 1) if (!halbtc_under_ips(btcoexist)) ex_btc8821a1ant_periodical(btcoexist); } else if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8723b2ant_periodical(btcoexist); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8723b1ant_periodical(btcoexist); } else if (IS_HARDWARE_TYPE_8192E(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8192e2ant_periodical(btcoexist); } halbtc_normal_low_power(btcoexist); }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang12680.77%133.33%
Larry Finger3019.23%266.67%
Total156100.00%3100.00%


void exhalbtc_dbg_control(struct btc_coexist *btcoexist, u8 code, u8 len, u8 *data) { if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->statistics.cnt_dbg_ctrl++; halbtc_leave_low_power(btcoexist); halbtc_normal_low_power(btcoexist); }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger3576.09%150.00%
Yan-Hsuan Chuang1123.91%150.00%
Total46100.00%2100.00%


void exhalbtc_antenna_detection(struct btc_coexist *btcoexist, u32 cent_freq, u32 offset, u32 span, u32 seconds) { if (!halbtc_is_bt_coexist_available(btcoexist)) return; }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang3096.77%150.00%
Larry Finger13.23%150.00%
Total31100.00%2100.00%


void exhalbtc_stack_update_profile_info(void) { }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger6100.00%1100.00%
Total6100.00%1100.00%


void exhalbtc_update_min_bt_rssi(struct btc_coexist *btcoexist, s8 bt_rssi) { if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->stack_info.min_bt_rssi = bt_rssi; }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger2583.33%150.00%
Ping-Ke Shih516.67%150.00%
Total30100.00%2100.00%


void exhalbtc_set_hci_version(struct btc_coexist *btcoexist, u16 hci_version) { if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->stack_info.hci_version = hci_version; }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger2583.33%150.00%
Ping-Ke Shih516.67%150.00%
Total30100.00%2100.00%


void exhalbtc_set_bt_patch_version(struct btc_coexist *btcoexist, u16 bt_hci_version, u16 bt_patch_version) { if (!halbtc_is_bt_coexist_available(btcoexist)) return; btcoexist->bt_info.bt_real_fw_ver = bt_patch_version; btcoexist->bt_info.bt_hci_ver = bt_hci_version; }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger3687.80%150.00%
Ping-Ke Shih512.20%150.00%
Total41100.00%2100.00%


void exhalbtc_set_chip_type(struct btc_coexist *btcoexist, u8 chip_type) { switch (chip_type) { default: case BT_2WIRE: case BT_ISSC_3WIRE: case BT_ACCEL: case BT_RTL8756: btcoexist->board_info.bt_chip_type = BTC_CHIP_UNDEF; break; case BT_CSR_BC4: btcoexist->board_info.bt_chip_type = BTC_CHIP_CSR_BC4; break; case BT_CSR_BC8: btcoexist->board_info.bt_chip_type = BTC_CHIP_CSR_BC8; break; case BT_RTL8723A: btcoexist->board_info.bt_chip_type = BTC_CHIP_RTL8723A; break; case BT_RTL8821A: btcoexist->board_info.bt_chip_type = BTC_CHIP_RTL8821; break; case BT_RTL8723B: btcoexist->board_info.bt_chip_type = BTC_CHIP_RTL8723B; break; } }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger8483.17%266.67%
Ping-Ke Shih1716.83%133.33%
Total101100.00%3100.00%


void exhalbtc_set_ant_num(struct rtl_priv *rtlpriv, u8 type, u8 ant_num) { struct btc_coexist *btcoexist = rtl_btc_coexist(rtlpriv); if (!btcoexist) return; if (BT_COEX_ANT_TYPE_PG == type) { btcoexist->board_info.pg_ant_num = ant_num; btcoexist->board_info.btdm_ant_num = ant_num; } else if (BT_COEX_ANT_TYPE_ANTDIV == type) { btcoexist->board_info.btdm_ant_num = ant_num; } else if (type == BT_COEX_ANT_TYPE_DETECTED) { btcoexist->board_info.btdm_ant_num = ant_num; if (rtlpriv->cfg->mod_params->ant_sel == 1) btcoexist->board_info.btdm_ant_pos = BTC_ANTENNA_AT_AUX_PORT; else btcoexist->board_info.btdm_ant_pos = BTC_ANTENNA_AT_MAIN_PORT; } }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger9176.47%266.67%
Ping-Ke Shih2823.53%133.33%
Total119100.00%3100.00%

/* Currently used by 8723b only, S0 or S1 */
void exhalbtc_set_single_ant_path(struct btc_coexist *btcoexist, u8 single_ant_path) { btcoexist->board_info.single_ant_path = single_ant_path; }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang1466.67%150.00%
Ping-Ke Shih733.33%150.00%
Total21100.00%2100.00%


void exhalbtc_display_bt_coex_info(struct btc_coexist *btcoexist, struct seq_file *m) { if (!halbtc_is_bt_coexist_available(btcoexist)) return; halbtc_leave_low_power(btcoexist); if (IS_HARDWARE_TYPE_8821(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8821a2ant_display_coex_info(btcoexist, m); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8821a1ant_display_coex_info(btcoexist, m); } else if (IS_HARDWARE_TYPE_8723B(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8723b2ant_display_coex_info(btcoexist, m); else if (btcoexist->board_info.btdm_ant_num == 1) ex_btc8723b1ant_display_coex_info(btcoexist, m); } else if (IS_HARDWARE_TYPE_8192E(btcoexist->adapter)) { if (btcoexist->board_info.btdm_ant_num == 2) ex_btc8192e2ant_display_coex_info(btcoexist, m); } halbtc_normal_low_power(btcoexist); }

Contributors

PersonTokensPropCommitsCommitProp
Yan-Hsuan Chuang11070.51%120.00%
Larry Finger3119.87%240.00%
Ping-Ke Shih159.62%240.00%
Total156100.00%5100.00%


void exhalbtc_switch_band_notify(struct btc_coexist *btcoexist, u8 type) { if (!halbtc_is_bt_coexist_available(btcoexist)) return; if (btcoexist->manual_control) return; halbtc_leave_low_power(btcoexist); halbtc_normal_low_power(btcoexist); }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih39100.00%1100.00%
Total39100.00%1100.00%


void exhalbtc_switch_band_notify_wifi_only(struct wifi_only_cfg *wifionly_cfg, u8 is_5g) { }

Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih12100.00%1100.00%
Total12100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Ping-Ke Shih352740.31%2360.53%
Yan-Hsuan Chuang293333.52%718.42%
Larry Finger228926.16%718.42%
Himangi Saraogi10.01%12.63%
Total8750100.00%38100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.