summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| | * | | | qcacld-2.0: Do not trigger del sta if it is already in progressAbhishek Singh2016-06-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If SAP receive auth from an already connected STA, it post eWNI_SME_DISASSOC_IND msg to SME to delete the STA context and return. STA may try to send auth again as it didnt receive auth resp. Now many frames (probe req, auth etc) may get accumulated in PE message queue and unless PE queue is fully processed SME queue will not be processed and thus del sta will get delayed. This may again cause STA to send more auth req and every time MC thread process an auth req before the sta is deleted, eWNI_SME_DISASSOC_IND msg is posted in SME message queue. And if PE keeps on getting auth before the sta is deleted, SME queue will pile up leading to crash. To fix this do not trigger del sta if it is already in progress. Change-Id: Icff3778d35ef7ea646463fe49c4335e260e9e156 CRs-Fixed: 982329
| | * | | | qcacld-2.0: Reset the parameters which overrides the ACSGanesh Kondabattini2016-06-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When restarting SAP due to unsafe channel list, make sure to set the acs_channel and sapConfig.channel to 0. Otherwise these parameters overides the ACS logic. CRs-Fixed: 1031468 Change-Id: I52d8575960e4d5bac5aa509df41c20fb846a96e6
| | * | | | Release 4.0.11.104Anjaneedevi Kapparapu2016-06-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release 4.0.11.104 Change-Id: If87bc869d97dd810d8be3b23eeb6cc67b7b4d279 CRs-Fixed: 688141
| | * | | | qcacld-2.0: Reduce log level in smeTraceDumpSreelakshmi Konamki2016-06-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To reduce no. of error logs in smeTraceDump(), change log level from LOGE to LOG1. Change-Id: I1fb81226f90e90d6a5d3870d5b585c7df22db755 CRs-Fixed: 1032026
| | * | | | qcacld-2.0: Convert pr_info logs to vos_trace logsDeepthi Gowri2016-06-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | prima to qcacld-2.0 propagation Convert the pr_info logs to vos_trace logs with error log level, so that the logs are displayed both in kmsg as well as in logger app logs. CRs-Fixed: 956590 Change-Id: Ib6ed5744cf38924a6b1dc20e3291639554c42c6b
| | * | | | qcacld-2.0: Add check for NDI role in __limFreshScanReqdNaveen Rawat2016-06-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add NDI role check in __limFreshScanReqd to allow request for fresh scan. Change-Id: Icea6228c6491d8b7d0588a699fe7f16d0dd0d3f1 CRs-Fixed: 1030380
| | * | | | qcacld-2.0: Move IPA dp logs under HDD_DATA module idGovind Singh2016-06-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WLAN HDD IPA logging is enabled by default, due to this cnss deamon is spending a lot time in big cluster and resulting in less cpu quantum for rx processing. Move IPA data path logs to HDD_DATA module ID from HDD module ID. Change-Id: Ied13b8655d9e2831fb097156c8fb72239b443f94 CRs-Fixed: 1031987
| | * | | | Release 4.0.11.103Anjaneedevi Kapparapu2016-06-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release 4.0.11.103 Change-Id: Ia1bdb327b957022671462cddf911ed86aef69802 CRs-Fixed: 688141
| | * | | | qcacld-2.0: Fix buffer overflowPadma, Santhosh Kumar2016-06-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In limInitPeerIdxpool, driver initializes gLimAssocStaLimit/ gLimIbssStaLimit entries of peer index pool. But there is a chance of allocating less memory for peer index pool in peCreateSession which can overwrite adjacent memory locations as maxStation can be different from gLimAssocStaLimit/gLimIbssStaLimit. Fix this by initializing maxStation entries. Also, add change in limCreateSessionForRemainOnChn to use pMac->lim.maxStation as no of entries. Change-Id: I915e67fe7a15ebe622273af971d8a88ad78585cf CRs-Fixed: 1025378
| | * | | | qcacld-2.0: Fix max dwell time for passive scan beacon reportSelvaraj, Sridhar2016-06-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently STA advertising the max. measurement duration of RM capability as half the beacon interval. When STA receives beacon report request frame, it is not using measurement duration indicated if it is above the advertised max. measurement duration However, firmware expects a minimum of one beacon interval to find the AP. Modify the max. measurement capability of RRM as one beacon interval. Also engineered the code to make use of the INI parameters for adjusting the max measurement duration. Change-Id: Idc0b4f15f2b7464507aacfaefb99e1ba48ad1eca CRs-Fixed: 1030590
| | * | | | qcacld-2.0: Fix mac address print issue in WOW RX APISelvaraj, Sridhar2016-06-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Source and destination mac address are swapped in logs. Fix this to print in correct order Change-Id: Ifc6e14031ce1427247093e185ee16510ed3168da CRs-Fixed: 1029923
| | * | | | qcacld-2.0: Check consistency in throughput before setting delackBhargav Shah2016-06-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Presently, throughput is measured in every 100ms. Delack is set to 20 if throughput for this time duration is greater then threshold (57 Mbps). In the case of packet drop, tcp takes more time to rampup. In this change, check the throughput consistency for three second and then set tcp delack to 20. CRs-Fixed: 1028085 Change-Id: I155bc141087104ad1443d250711423d5fa936254
| | * | | | Release 4.0.11.102Anjaneedevi Kapparapu2016-06-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release 4.0.11.102 Change-Id: I65348c3e7ae376fe43fbc897caef93dc96568717 CRs-Fixed: 688141
| | * | | | qcacld-2.0: If set roaming fails return non-positive valueAbhishek Singh2016-06-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If set roaming disabled is called when roaming is already in progress the sme_config_fast_roaming api returns failure status and this status, which is positive value, is returned to upper layer. This results in wpa_supplicant to wait indefinitely. To avoid this if sme_config_fast_roaming returns falure, return -EINVAL. Change-Id: I1de5276f9fc72b04725f963e44e6168bc119f559 CRs-Fixed: 1029834
| | * | | | qcacld-2.0: fix a mboxping tx ramdom failure issuegbian2016-06-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove bundle logic in HTCProcessCreditRpt to avoid random mboxping tx failure. HTCTrySend will be skipped if TxCredits can not meet Bundle Size requirement which reduce the opportunity the Pkts get transmitted. This may lead to pkts pending in driver too long time and OS does not pump pkts to driver anymore. Change-Id: I7c5abf540705696bf4e0ef2956ec7250204e539f CRs-Fixed: 1024016
| | * | | | qcacld-2.0: Correct compilation error for dhcp proto trace changesGupta, Kapil2016-06-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | vos_pkt_trace_buf_update() is not available in case QCA_PKT_PROTO_TRACE is not defined. Add dummy defination for hdd_dhcp_pkt_trace_buf_update() api to correct this. CRs-Fixed: 1029971 Change-Id: Id49390b21185c57878d1bf08d5db07230a0abd54
| | * | | | Release 4.0.11.101Anjaneedevi Kapparapu2016-06-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release 4.0.11.101 Change-Id: I973362dc7ac335bcc55e40eb64d931550c1ae42c CRs-Fixed: 688141
| | * | | | qcacld-2.0: set rx_pending for any pending rx buffer in CEGovind Singh2016-06-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While processing rx buffer, we force break from the per copy engine loop once we get MAX_NUM_OF_RECEIVES per CE. We set rx_pending to true in the above scenario, so that rx buffer can be processed in the same tasklet context. But rx_pending is not set to true when we have pending buffer to process in the rx ring, when more_comp_cnt is greater than CE_TXRX_COMP_CHECK_THRESHOLD. If there is pending buffer in the rx ring and we hit the above condition, pending buffer will only be processed with next interrupt. This will defer the processing of rx packet in the rx ring. To avoid the above scenario, set rx_pending to true when we have pending rx buffer in CE and sw index and read index are not much apart. Change-Id: I08532dd5accf8172660a84e59985a6cc610eecf9 CRs-Fixed: 1024743
| | * | | | qcacld-2.0: Free Proto trace buffer after disconnectionGovind Singh2016-06-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Free proto trace buffer after disconnection, as proto trace buffer is getting freed prior disconnection from AP and resulting in invalid access. Change-Id: Ief7ded29ea04be547d355f96e817aee776422142 CRs-Fixed: 1028262
| | * | | | qcacld-2.0: Logging enhancementSrinivas Girigowda2016-06-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add or Change log levels to error level. Change-Id: Ib8803cca6e8fce60d1be97764065e50cb84235da CRs-Fixed: 1013264
| | * | | | qcacld-2.0: Fix to restart SAP on preferred channelAggarwal, Nishank2016-06-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In some case when complete preferred channel list is unsafe, SAP won't be able to pick any channel as operating channel. This will lead to SAP start failure. Fix this issue by making first channel from preferred channel list as operating channel. Change-Id: Id2bd177b15bd7089250a49019a9c751a691dac01 CRs-Fixed: 1026420
| | * | | | qcacld-2.0: Pass beacon_tx_rate to FWGanesh Kondabattini2016-06-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add data structures to save the beacon tx rate and changes to pass the same to FW. Change-Id: I0d9d95bb7508a1f0dfd7d560de65ae8c22931df9 CRs-Fixed: 1020078
| | * | | | Release 4.0.11.100Anjaneedevi Kapparapu2016-06-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release 4.0.11.100 Change-Id: I5310e27d96d94af98ff8392f261b793428c52759 CRs-Fixed: 688141
| | * | | | qcacld-2.0: Clear MC filters when more than max availableSravan Kumar Kairam2016-06-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When number of link MC addresses configured are more than the maximum firmware MC address list size, host sets the firmware's MC filters up to the max and skipping the rest. As a result firmware drops the MC packets for the addresses whose MC filter is not set. To fix this clear the firmware MC filters when the number of kernel MC addresses list is greater than the firmware's MC filter list size. When no filters are configured firmware allows all the MC frames to the host. Change-Id: I6d8e8b2f5a646b914a7568ceae593b45b58f84d0 CRs-Fixed: 1025279
| | * | | | qcacld-2.0: Initialize re_flag of dfs_eventGupta, Kapil2016-06-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It may possible to have random data in re_flag when host get dfs event which may cause extra processing of the phy error. Add change to initialize re_flag variable with zero. Change-Id: I1f38bed9471de60cb32da3ac31eb1e08011c2074 CRs-Fixed: 1028556
| | * | | | qcacld-2.0: Modify timer and threshold ini parameters in TDLSNitesh Shah2016-06-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While initiating TDLS connection, overflow occurs when the minimum time for TDLS stats is less than 1000 ms. To avoid the overflow, the default time is kept as 2000 ms and minimum time as 1000 ms. To improve the TDLS discovery, packet threshold is changed to 40 packets. Change-Id: Ibbb422c739b5927c5f2d788712f376a1cfa42930 CRs-Fixed: 1020247
| | * | | | qcacld-2.0: Add support to print local time in proto trace bufferGupta, Kapil2016-06-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To relate logcat messages and driver logs in bugreport both should have same time format. Add changes to print local time while printing proto trace buffer. Change-Id: Ib3210394ba4b43045edfcdbcf0a63da5c2ecd458 CRs-Fixed: 1025909
| | * | | | Release 4.0.11.99Anjaneedevi Kapparapu2016-06-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release 4.0.11.99 Change-Id: Ide2dddc5fcf8c569e9c5bdef69bfa0794bf80419 CRs-Fixed: 688141
| | * | | | qcacld-2.0: Fix compilation error in TXTXSreelakshmi Konamki2016-06-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id Id016a65b58255b25b973c1904a9715c995f7d34a results compilation error in TXRX. Add changes to remove FL from the debug print. Change-Id: Ib3c023e0a8abc5a43ddd2f757deec563592bd5d6 CRs-Fixed: 1028035
| | * | | | qcacld-2.0: Change NDP_SERVICE_INSTANCE_ID from 16 bits to 32 bitsNaveen Rawat2016-06-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change NDP_SERVICE_INSTANCE_ID from 16 bits to 32 bits Change-Id: I4fab1af6d9b8e34396bb3679f112c7f29bbe9f93 CRs-Fixed: 962367
| | * | | | Release 4.0.11.98Anjaneedevi Kapparapu2016-06-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release 4.0.11.98 Change-Id: I80149b24fffa19113d6cbd6805974f48e8e525e0 CRs-Fixed: 688141
| | * | | | qcacld-2.0: Avoid dereferencing of NULL pointerSreelakshmi Konamki2016-06-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix to add NULL check before dereferencing of pointer Change-Id: Id016a65b58255b25b973c1904a9715c995f7d34a CRs-Fixed: 1022311
| | * | | | qcacld-2.0: Define data structures for new AP requirementsGanesh Kondabattini2016-06-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Defining data structures for below new requirements. - beacon_tx_rate - vendor_ie - vendor_ie_len - vendor_ie_assoc_policy - sta_inactivity_timeout - tx_pkt_fail_cnt_threshold - short_retry_limit - long_retry_limit - ampdu_size - supp_rate_set - extended_rate_set Change-Id: I9d05cd7b8e051c4e9e4912cf866206ae32ec293d CRs-Fixed: 1020078
| | * | | | qcacld-2.0: Add capability based logic to mark first packet after wakeupHimanshu Agarwal2016-06-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a capability in service bitmask to indicate that fw also supports this feature of marking first packet after wow wakeup to maintain backward compatibilty. Change-Id: I3d41f5425e3a170c046941a439d17e06df0c6bef CRs-Fixed: 1021382
| | * | | | Release 4.0.11.97Anjaneedevi Kapparapu2016-06-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release 4.0.11.97 Change-Id: Ice1fda9bad14e42f774d4c6849755e507b194512 CRs-Fixed: 688141
| | * | | | qcacld-2.0: Add argument to ol_tx_queue_free for vdev or peer queuesPoddar, Siddarth2016-06-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add additional argument in ol_tx_queue_free to indicate whether txq is vdev or peer queues to avoid extracting peer_id in case of vdev txq queue in ol_tx_queue_log_free function. Change-Id: Ic521c23b4001f15a382e9435413cdafca0c8b49f CRs-Fixed: 1023457
| | * | | | qcacld-2.0: Don't enable 2.4 GHz social channels in 5 GHz only mode in MDMAgrawal Ashish2016-06-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Don't enable 2.4 GHz social channels in 5 GHz only mode. When 5GHz mode is enabled, only 5GHz channels should be updated to firmware. Change-Id: I72100df664e7defe616cd78450c1941a39dc393b CRs-Fixed: 1025828
| | * | | | qcacld-2.0: Ensure that phy mode from ini is considered for wlan scanMasti, Narayanraddi2016-06-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Regardless of phy mode in ini, 5Ghz band is configured to wiphy which was leading to scan on 5ghz even though phy mode was set to 11b/g. Fix will ensure to configure 5Ghz band if ini supports for 5ghz. Change-Id: Ibf35df89a5bfbbc24f0166878c6aea48838c1a83 CRs-Fixed: 1025261
| | * | | | qcacld-2.0: CL 1524393 – update fw common interface filesHimanshu Agarwal2016-06-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add WMI VDEV SW_RETRY_TH params Add halphy module ID Change-Id: Ie7c14aadf124a0aaaad1470e678e99f2fb5d436b CRs-Fixed: 865207
| | * | | | qcacld-2.0: Unpause all vdevs when host resumeszhangq2016-06-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When target enters suspend mode(WoW enabled), some unpause events would be dropped by FW. So host TX queue would keep in paused state even after host resumes. No following data frames would be sent out. Change-Id: I78fd23a384590c740c0147c3f2e7ec5b0da7aea8 CRs-Fixed: 1025669
| | * | | | qcacld-2.0: Validate watchdog contextGupta, Kapil2016-06-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | prima to qcacld-2.0 propagation It is possible for the watchdog context to be NULL when gEnableLogp ini variable is 0. Add changes to validate watchdog context before accessing this at reinit time. Change-Id: I579b83afa09d0cc3cb629dab4f7cc210f1237f96 CRs-Fixed: 1006544
| | * | | | qcacld-2.0: Fix tlv length assignment in WMI int messageGovind Singh2016-06-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | TLV length in wmi init message is incorrectly assigned. Fix tlv length assignment in WMI int message. Change-Id: Ia5aa53e9f9ec30f675efe9989b124201f4f15e97 CRs-Fixed: 1025291
| | * | | | qcacld-2.0: Set chainmask to 2x2 once TDLS is connectedAbhishek Singh2016-06-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If gEnableDynamicSTAChainMask is set and DUT is connected to 1x1 AP, TDLS uses 1x1 even if peer is capable of 2x2. To fix this set chainmask to 2x2 once TDLS peer is connected, and fallback to APs capability once all TDLS peer are disconnected. Change-Id: Ia003d02b142dcd51582c20359ee44a181620e4e3 CRs-Fixed: 1021796
| | * | | | Release 4.0.11.96Anjaneedevi Kapparapu2016-06-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release 4.0.11.96 Change-Id: I3044b9ccc2c5850fdde2d0b5de5d1fc4de2c2695 CRs-Fixed: 688141
| | * | | | qcacld-2.0: Fix stack corruption issue in sme_RrmProcessNeighborReportSelvaraj, Sridhar2016-06-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When STA process Neighbor report from AP, session_id is declared as one byte variable and its overwritten with four bytes value in csrRoamGetSessionIdFromBSSID. This is observed on enabling stack protection in kernel config(CONFIG_CC_STACKPROTECTOR). Fix is to declare session_id as four bytes variable. Change-Id: I6b2fd40a5466fe5dd72d394abb682229a550e0b1 CRs-Fixed: 1025272
| | * | | | qcacld-2.0: Validate CCXBEACONREQ IE fieldsSrinivas Girigowda2016-06-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Validate CCXBEACONREQ IE fields. Change-Id: Ie64a642abdd7923e91801186aa5743094a739fc9 CRs-Fixed: 1025185
| | * | | | qcacld-2.0: Add support for dynamically disable BT/WLAN time coexYingying Tang2016-06-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For 3 antennas solution, BT/WLAN can work on it's dedicated antenna. Add one ini item to dynamically disable BT/WLAN co-existing. Add another ini item to set antenna isolation, FW will use the isolation to dynamically decide whether to disable BT/WLAN time division co-existing. CRs-fixed: 1020123 Change-Id: I175f984a1bdb0c0f245c60f32bcc5af8ea1802a7
| | * | | | Release 4.0.11.95Anjaneedevi Kapparapu2016-06-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release 4.0.11.95 Change-Id: I5532b2b134a6a7eec021d5efdad26ced7a21df08 CRs-Fixed: 688141
| | * | | | qcacld-2.0: CL 1522096 – update fw common interface filesHimanshu Agarwal2016-06-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add new service WMI_SERVICE_MARK_FIRST_WAKEUP_PACKET Change-Id: I427fef8d8f2503c52d511fdae58fe410420e67a0 CRs-Fixed: 865207
| | * | | | qcacld-2.0: CL 1521398 – update fw common interface filesHimanshu Agarwal2016-06-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WMI changes for 11AX related BSS parameters Extend the WoW wake event bitmap Change-Id: I68367a8d688cdc9f85efe01a7c48856c8bab7220 CRs-Fixed: 865207