summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| | * | | | qcacld-2.0: Don't update channel list in 1st scan when SET_FCC_CHANNEL is setAgrawal Ashish2016-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently SET_FCC_CHANNEL issues update channel list to fw. At the time of driver load, if scan is issued followed with SET_FCC_CHANNEL, driver will send update channel list to fw. Fw will stop ongoing scan because of that GUI will have very less scan list. Fix this with sending update channel list after scan is done. Change-Id: I99465eeddf75ee6a3f525d43c227e2a8972a73e5 CRs-Fixed: 972208
| | * | | | qcacld-2.0: Fix TDLS setup failureYingying Tang2016-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In limAssignPeerIdx() the max_peer is only populated in case of AP and GO mode and for others it remains 0. So TDLS setup will be failed because the max peer number of TDLS is 0, TDLS peer can't be created. Add fix to resolve this regression issue. Regression commit change ID: I9aaacf035efb042f8216ca0d7f1ec3f21f11b212 Regression commit subject: qcacld-2.0: Set number of clients separately for SAP and GO CRs-Fixed: 1041062 Change-Id: I1030a2f33e467f752bdded237e5321f0a59a2ea5
| | * | | | qcacld-2.0: Enable IRAM Dump for HL PlatformsKomal Seelam2016-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Cleanup target dump code and add support to dump IRAM region for HL platforms. Update the Target Memory Region for HL platforms. Change-Id: Ie13bf3e3902e21718a2f3474602b87d0e8e9a4be CRs-Fixed: 1040839
| | * | | | qcacld-2.0: Avoid simultaneous execution of SSR in two contextsMahesh A Saptasagar2016-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In MCThread context, WMI command queue on reaching its threshold, invokes ramdump collect handler which triggers SSR. Since firmware is already in bad state, ol_target_failure will be invoked in another thread context. Two back to back SSR trigger will initialize and start SSR timer twice. As a part of re-init, the timer is removed once from the list. Due to which BUG_ON will be raised on SSR timer expiry which results in kernel panic. To mitigate this issue, do not invoke vos_device_crash if SSR is already in progress. Change-Id: I91f028491f0ecc1daa1f6c5ca95d8b97f5c6fa58 CRs-Fixed: 1039070
| | * | | | Release 4.0.11.118Anjaneedevi Kapparapu2016-07-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release 4.0.11.118 Change-Id: Icc0dfd75144008ea06951da98d89163c29046a55 CRs-Fixed: 688141
| | * | | | qcacld-2.0: Fix SAP ACS channel selection failureLiangwei Dong2016-07-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Start SAP on channel 161 in 5G by ACS. Then kill and restart hostapd in 2.4g by ACS, result is failed. The reason is the sap_config->channel including a stale channel 161, the ACS will be skipped and driver picks up the 161 as ACS result. Hostapd checks that the 161 is not in the 2.4G and fail the start request. The fix is to add back "reset sap_config->channel to 0" code to wlan_hdd_cfg80211_start_acs function, which was removed by an old commit - "I1ba69ed8fdf1c56a90e857054c725b830293d6bf qcacld-2.0: Implement vendor command for ACS policy" Change-Id: Ie9bb6e7125ea47872530d41d383e885c039e22a2 CRs-Fixed: 1040386
| | * | | | qcacld-2.0: Remove hardcoded value and set qpower appropriatelySrinivas Girigowda2016-07-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The issue is when host re-enables QPower after resume, it is setting WMI_STA_PS_ENABLE_QPOWER to 1 (which is for QPower = 2) always and never WMI_STA_PS_ENABLE_QPOWER to 2 (which is for QPower = 5). This means one suspend/resume is enough to disable QPower = 5 and change to QPower = 2. Fix this by removing the hardcoded value of 1 and use qpower_config instead. Change-Id: I553c1691d5d7e98c2db8c9e56e2ba68ae27af506 CRs-Fixed: 1040737
| | * | | | qcacld-2.0: Avoid NULL pointer dereference when ASSERT disabledHimanshu Agarwal2016-07-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Avoid NULL pointer dereference when ASSERT is disabled by adding extra handling in epping_tx_complete_multiple. Change-Id: I06696bb2588620244fafde431c4cd56bcb8a4301 CRs-fixed: 1038668
| | * | | | qcacld-2.0: Move NBUF_UPDATE_TX_PKT_COUNT before freeing netbufHimanshu Agarwal2016-07-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move NBUF_UPDATE_TX_PKT_COUNT in ol_tx_completion_handler to make sure that netbuf is not accessed after it is freed. Change-Id: Ifba9de788b11ce8cb323827d10f8005029609231 CRs-fixed: 1040612
| | * | | | qcacld-2.0: Pass sta_inactivity_timeout to FWAgrawal Ashish2016-07-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If a station does not send anything in sta_inactivity_timeout, an empty data frame is sent to it in order to verify whether it is still in range. If this frame is not ACKed, the station will be disassociated and then deauthenticated. Change-Id: Ib86c9aacdb52141890b224262d55abbe58b1604d CRs-Fixed: 1020078
| | * | | | qcacld-2.0: Pass short_retry_limit and long_retry_limit to FWAgrawal Ashish2016-07-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add data structures to save short_retry_limit and long_retry_limit. long_retry_limit is count to retry frame at current rate. short_retry_limit is count to retry frame on lower rate. Added changes to pass these params to firmware as well Change-Id: Icb45c37358dcfacbea8e3b3f40b93189d62e1be4 CRs-Fixed: 1020078
| | * | | | qcacld-2.0: Pass tx_pkt_fail_cnt_threshold to FWAgrawal Ashish2016-07-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add data structures to save tx_pkt_fail_cnt_threshold and changes to pass the same to FW. Change-Id: I46dc401c26c3eeeb41b345d0fe1b4406394971fb CRs-Fixed: 1020078
| | * | | | qcacld-2.0: Extend cfg80211 configure APIZhang Qian2016-07-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Extend cfg80211 configure API: 1. Vendor attribute for non aggregate/11g sw retry threshold. 2. Vendor attribute for aggregate sw retry threshold. 3. Vendor attribute for MGMT frame sw retry threshold. 4. Vendor attribute for CTRL frame sw retry threshold. 5. Vendor attribute for propagation delay. Change-Id: Icdcb0e83432299014fb46507bdd5978b76919ab5 CRs-Fixed: 1035577
| | * | | | Release 4.0.11.117Anjaneedevi Kapparapu2016-07-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release 4.0.11.117 Change-Id: Id9db35be67b28b3bf9ed156cd24328560faac602 CRs-Fixed: 688141
| | * | | | qcacld-2.0: Fix skb corruption in fragment RX handlinggbian2016-07-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add packet length check for HTT_T2H_MSG_TYPE_RX_FRAG_IND message. Do not clone the RX frag buffer in the ol_rx_fraglist_insert, and all buffer will be freed by ol_rx_frag_indication_handler or upper layer to avoid double free issue. Change-Id: I977ed9109a476a092dfb298386625a707bc98191 CRs-Fixed: 1039135
| | * | | | qcacld-2.0: Fix firmware assertion caused by vdev deleteAgrawal Ashish2016-07-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | qcacld-3.0 to qcacld-2.0 propagation Currently the SME session is deleted during interface change API and a new session is not opened until SAP is ready to start. This will cause crash when scan API is invoked. This fix opens the SME session after interface type is changed, so that it can be used to scan and SAP later. Change-Id: I3c4f8da14dbc70a3102fb1892bb101eb1a90a00d CRs-fixed: 968572
| | * | | | qcacld-2.0: Populate correct supported rates from hostapd.conf fileAgrawal Ashish2016-07-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently driver populate default supported and extended supported rates in beacons even if hostapd.conf file wants to change supported and extended supported rates. Fix this by parsing beacon head and tail to get supported and extended rates and populate them in sap config. Change-Id: I3226438b908a96f1b1bd3c2968a0c20eef81a799 CRs-Fixed: 1035768
| | * | | | qcacld-2.0: Add debug logsNirav Shah2016-07-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add debug logs in WLANTL_RegisterSTAClient and WLANTL_ClearSTAClient. CRs-Fixed: 1036774 Change-Id: I70f19731e576c65432919588348c19ccbf7bca61
| | * | | | qcacld-2.0: Block scan done callback and reset variables on iface downMahesh A Saptasagar2016-07-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | prima to qcacld-2.0 propagation This commit avoids scan failures and kernel panic by blocking scan done callback on interface down. Also reset conditional variables in the callback. Change-Id: I8f2c04c76c19ed6c14a33426c38b94e82c3b8b63 CRs-Fixed: 1036267
| | * | | | qcacld-2.0: If BSS is unreachable remove it from scan cacheAbhishek Singh2016-07-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If BSS is present in kernel and driver scan cache, supplicant tries to connect to the BSS multiple time even if the BSS is unreachable. Due to multiple failures to connect supplicant disable the network. To avoid this, remove the BSS from scan cache: - If connect fails due to BSS unreachable i.e. probe resp/auth/assoc timeout and scan for ssid failure. - If disconnect is due to Link lost. Change-Id: I3263dd02691000d83d4aef61c75b72d78c28f582 CRS-Fixed: 1039104
| | * | | | Release 4.0.11.116Anjaneedevi Kapparapu2016-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release 4.0.11.116 Change-Id: I80a89e0699c841b61912ef42f9306ddd4a73d56d CRs-Fixed: 688141
| | * | | | qcacld-2.0: Add access policy for vendor IEGanesh Kondabattini2016-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | User configures vendor IE and access policy to allow or deny association. PE should allow or deny connection based on access policy and presence of vendor ie in probe request/association request frame. Change-Id: Ia2714ba07a67602e552a6f43928f02de0d4d0b9b CRs-Fixed: 1020078
| | * | | | qcacld-2.0: Convert beacon data rate to hw codeGanesh Kondabattini2016-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | User configures the beacon data rate in multiples of 100 Kbps and FW expects the data rate in the form of hw rate codes. So convert the data rates to hw rate code before configuring it to firmware. Change-Id: Iea92c6ed42caad9ba2441ce194a04f67a870c10a CRs-Fixed: 1020078
| | * | | | qcacld-2.0: Fix index error of array elementlifeng2016-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix the index error of chanBondingSet element. If not, the channel list [116,120,124,128] will be ingored to consider adding into the available channels, when channel bonding is set as 40/80Mhz during sapRandomChannelSel stage. Change-Id: Ia90ece227c32fd9aad4a3cb69372e9cb8cf981a8 CRs-Fixed: 1037612
| | * | | | qcacld-2.0: Reduce log level while processing mgmt rx framesMukul Sharma2016-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When scan is in progress and driver unload begins, excessive logs appears while processing rx mgmt frame which lead to watch dog bite. As a part of this fix, reduce the logs level to info level to avoid watch dog bite. Change-Id: I41dbc6c7a05ea2887e3a63272b02012035bb7fec CRs-Fixed: 1036923
| | * | | | qcacld-2.0: skip VOS_BUG if SSR is already in progressSarada Prasanna Garnayak2016-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If firmware crashed during the runtime suspend and SSR triggered. The SSR is doing the runtime resume and if resume process failed it is triggering the VOS_BUG. Ignore the VOS_BUG if SSR is already in progress to avoid unnecessary device crash. CRs-Fixed: 1038254 Change-Id: Id7f2e8b16767cd4b03671e34d999ef14e7a1c6ce
| | * | | | qcacld-2.0: Change print type from %d to %u for unsigned variablesHimanshu Agarwal2016-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change print type from %d to %u for unsigned variables in wma_wow_dump_mgmt_buffer and wma_wow_parse_data_pkt_buffer. Change-Id: I2ea9ae2aa5c6f1bbec65b724de35a0071ea26804 CRs-Fixed: 1038593
| | * | | | Release 4.0.11.115Anjaneedevi Kapparapu2016-07-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release 4.0.11.115 Change-Id: I11f3532d16c12fb491e219265f2bdfbdf492511e CRs-Fixed: 688141
| | * | | | qcacld-2.0: Fix for potential buffer overflow and null pointer referencesMahesh A Saptasagar2016-07-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | prima to qcacld-2.0 propagation Static analyser is reporting errors for array bound checking and null pointer references. To resolve this 1. Check for condition array index shouldn't exceed WNI_CFG_VALID_CHANNEL_LIST_LEN before accessing ChannelList array. 2. Check for NULL condition wherever necessary. Change-Id: Idd0a23a8180dddabfdd353c0861899411aecfa16 CRs-Fixed: 534624
| | * | | | qcacld-2.0: CL 1535058 - update fw common interface filesNitesh Shah2016-07-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WMI service flag for flash read / write support. Change-Id: I896b4b53f596df96ec7f023b9301f6a695cd325a CRs-fixed: 865207
| | * | | | qcacld-2.0: Don't log if netlink_broadcast fails with error -ESRCHMahesh A Saptasagar2016-07-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | prima to qcacld-2.0 propagation Don't log if netlink_broadcast fails with error -ESRCH(-3) since this error is likely to occur because of no listening process in the user space. In this case, error logs would give a false impression that feature is broken though feature is working fine. Change-Id: Ia111476e44a3dce24afd6b935ff0eca06accc73a CRs-Fixed: 989515
| | * | | | qcacld-2.0: Remove unused gLimSendDisassocFrameThresholdTimer timerMahesh A Saptasagar2016-07-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | prima to qcacld-2.0 propagation Remove the unwanted timer and its related code. Change-Id: I469bf11a506a2901eae2865a69b75a058e276e75 CRs-Fixed: 658580
| | * | | | qcacld-2.0: Fix pmfComebackTimer during roamingPadma, Santhosh Kumar2016-07-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently pmfComebackTimer is not initialized during roaming. This can lead to error in peDeleteSession when driver tries to destroy pmfComebackTimer. Fix this by initializing pmfComebackTimer during roaming. Also, handle status eSIR_MAC_TRY_AGAIN_LATER as failure during roaming. Change-Id: Ic9c4e996c4078d09ef7cd9b3b073105d94eb53fb CRs-Fixed: 1037640
| | * | | | qcacld-2.0: Parse tx packets only once in tx datapathGovind Singh2016-07-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Classify tx packets at one place and store packet type in skb cb structure to avoid multiple check to determine packet type at various layers. CRs-Fixed: 1022454 Change-Id: I17d05e265612059410463b7577bb5e8ca1176962
| | * | | | qcacld-2.0: Allow different beacon intervals for SAPAgrawal Ashish2016-07-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently if user space sends two different beacon interval in AP+AP, driver is not updating correct beacon interval. Beacon interval should be sent as per session. Change-Id: I13653701e7ed6fb2eb643bbb8e20e7c0102c2ec2 CRs-Fixed: 1037455
| | * | | | Release 4.0.11.114Anjaneedevi Kapparapu2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release 4.0.11.114 Change-Id: Iff2e1e4fc0a4af16daaf79558ae95f1eae05e6d7 CRs-Fixed: 688141
| | * | | | qcacld-2.0: Add BSSID entry even if mismatch is seenPadma, Santhosh Kumar2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If there is a mismatch in channel number present in BD and Beacon/probe response, corresponding BSSID entry is not added in scan cache. This can result in reconnection failure. If the entry is not present then add this entry even in case of mismatch. Change-Id: Id8c45ff88731288144fe39f5da56748f403dfdb7 CRs-Fixed: 1036988
| | * | | | qcacld-2.0: Don't Tag Non-WoW packets as Runtime PM packets after wow suspendKomal Seelam2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some WMI Commands can be send in Runtime PM context and MC thread context. Packets coming via MC Thread Context can be tagged as Runtime PM packets when runtime pm in progress. Packets should be tagged in the same caller context to avoid any race condition. Being stability issue, addressing this issue by not tagging any non-wow commands as runtime pm after wow suspend. This will ensure all the non-wow packets coming after wow_suspend flag is set as non runtime pm packets and will trigger a runtime resume. CRs-Fixed: 1037430 Change-Id: I03528a395e1d88ca2c5aaeca27fa505c3426f778
| | * | | | qcacld-2.0: CL 1536911 - update fw common interface filesNitesh Shah2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WMI pdev params to specify retry limit for control frames, and propagation delay. Change-Id: I9662d4cfee0910706486ae1709749aacd938fa3c CRs-fixed: 865207
| | * | | | qcacld-2.0: CL 1535819 - update fw common interface filesNitesh Shah2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WMI interface change for DBS roaming and CSA roaming. Change-Id: Ia483de75c1ea7caa6526aaddd15886fe6a4404bd CRs-fixed: 865207
| | * | | | qcacld-2.0: CL 1534810 - update fw common interface filesNitesh Shah2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Define WMI messages for per-AC rx reorder timeouts and A-MPDU aggregation limits. Change-Id: I19d96379a93e2d860cce249704834f06f271efb0 CRs-fixed: 865207
| | * | | | qcacld-2.0: CL 1532157 - update fw common interface filesSelvaraj, Sridhar2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add WMI TDLS scan start, complete events. Change-Id: I74f0948061bee593dc15a0ceaab0a25633bb6dd4 CRs-fixed: 865207
| | * | | | qcacld-2.0: CL 1530684 - update fw common interface filesPradeep Reddy POTTETI2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add scan flags for half and quarter-rate channels. Add WMI service bit for commands pertaining to Host managed RX reorder. Change-Id: I2baf13e0ab8f669153b0fb66f2b286c40f1fcc20 CRs-fixed: 865207
| | * | | | qcacld-2.0: CL 1529540 - update fw common interface filesPradeep Reddy POTTETI2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tufello USB Wlan Adapter - Flash Read Change-Id: Ib90306a871febe43a076ae8b104442bbc3a4960c CRs-Fixed: 865207
| | * | | | qcacld-2.0: CL 1528698 - update fw common interface filesPradeep Reddy POTTETI2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add support for setting hardware mode within WMI_INIT_CMD Change-Id: If5855fb1f1bc2a85fd27a34575a009b9f6b1e008 CRs-fixed: 865207
| | * | | | qcacld-2.0: CL 1527757 - update fw common interface filesPradeep Reddy POTTETI2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add bundled tx mgmt complete event Change-Id: Ib1ba4b9b4ae60ee6e8095d6cfe754bbf2a1c69b2 CRs-fixed: 865207
| | * | | | qcacld-2.0: CL 1527207 - update fw common interface filesPradeep Reddy POTTETI2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add mcast filter set/delete command that can take multiple filters in a list. Fix HTT typos to make MACROS consistent with the field name. Change-Id: I97ca72f102faecfc3d20409b0d4819a09968417c CRs-fixed: 865207
| | * | | | qcacld-2.0: CL 1525510 - update fw common interface filesPradeep Reddy POTTETI2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add new htt messages to accommodate SRING chages in Lithium Change-Id: I71f7d6ece056fb6efae535c3a571446e53b16a18 CRs-Fixed: 865207
| | * | | | qcacld-2.0: CL 1525577 - update fw common interface filesPradeep Reddy POTTETI2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove duplicate OP(WMI_IPA_OFFLOAD_ENABLE_DISABLE_CMDID) Change-Id: Icc1553c69ab5cf11e499c02922a5b8b28b948055 CRs-fixed: 865207
| | * | | | qcacld-2.0: CL 1524945 - update fw common interface filesPradeep Reddy POTTETI2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New WMI command for reorder queue setup/removal Change-Id: I31ad0432a0d5f49eed55603ae7d9eeedbdd19876 CRs-fixed: 865207