summaryrefslogtreecommitdiff
path: root/drivers/net/wireless (follow)
Commit message (Collapse)AuthorAge
...
* | | | | Merge "cnss2: Remove utils"Linux Build Service Account2017-10-07
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | cnss2: Remove utilsYuanyuan Liu2017-08-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove utils as this module is no longer needed by CNSS2 platform driver. CNSS2 has already switched to WLAN common utility module in net/wireless/cnss_utils. Change-Id: I891d3261f7e654dab1136ee1661d15e19fe1d2f5 Signed-off-by: Yuanyuan Liu <yuanliu@codeaurora.org>
* | | | | Merge "wil6210: support AOA in FTM session"Linux Build Service Account2017-10-05
|\ \ \ \ \
| * | | | | wil6210: support AOA in FTM sessionLior David2017-09-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add support for running AOA measurement as part of an FTM session. In order to simplify the implementation both in the driver and FW, AOA measurement is reported using the same vendor event and not using QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_AOA_MEAS. This way we can also report the antenna array mask which was missing from the vendor commands API for AOA inside FTM session. Change-Id: I3962487b2e6fd8e56e6e3953c86fd95abe6a9aa0 Signed-off-by: Lior David <liord@codeaurora.org>
* | | | | | Merge "ath10k: Vote for hardware resources for WCN3990"Linux Build Service Account2017-10-05
|\ \ \ \ \ \
| * | | | | | ath10k: Vote for hardware resources for WCN3990Govind Singh2017-09-21
| | |_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During recovery, there are cases where in WLAN driver running on APPS can access CE register causing exceptions because of hardware in reset state. Fix the issue by not resetting the hardware in WLAN firmware during recovery but halt the CE and MAC and reset the hardware only when reinitialization starts. For this to work, wcn3990 ath10k driver needs to keep the clock and regulator votes so that WLAN hardware will not go into weird state because of not resetting it but cutting the resources. Change-Id: I765fd4aaa2fea6f41f4760564b8d1cb8c3d9651b Signed-off-by: Govind Singh <govinds@codeaurora.org>
* | | | | | Merge "msm: Add CLD80211_ATTR_META_DATA vendor attribute"Linux Build Service Account2017-09-27
|\ \ \ \ \ \
| * | | | | | msm: Add CLD80211_ATTR_META_DATA vendor attributeNaveen Rawat2017-09-21
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add CLD80211_ATTR_META_DATA vendor attribute, which will be used by userspace RTT application to send meta data to wlan driver allowing it to peek into RTT request message without opening up complete definition of RTT message. Change-Id: If2f8253b59c6860fbaecab05f1b76f11da1ddb6f CRs-Fixed: 2114181 Signed-off-by: Naveen Rawat <naveenrawat@codeaurora.org>
* | | | | | Merge "ath10k: Fix unwanted probe requests sent during p2p scan"Linux Build Service Account2017-09-26
|\ \ \ \ \ \
| * | | | | | ath10k: Fix unwanted probe requests sent during p2p scanRakesh Pillai2017-09-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During p2p find unwanted probe requests with broadcast SSID is sent along with the probe requests with p2p wildcard SSID. The addition of survey report flag in scan flags initiates an active scan along with the p2p scan, due to which we see probe requests with broadcast SSID along with the probe requests having p2p wildcard SSID. Fix the flags sent during scan command for p2p scan. CRs-Fixed: 2093805 Change-Id: I7c2a1502ef86bc5151e8c86f4a89f073e75a925d Signed-off-by: Rakesh Pillai <pillair@codeaurora.org>
| * | | | | | ath10k: Fix p2p_listen for wcn3990Rakesh Pillai2017-09-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | p2p_listen not working due to inncorrect scan flags passed to firmware. Disable the fitlering out of probe request flag in scan flag during remain on channel in p2p listen. CRs-Fixed: 2095628 Change-Id: Ie39222c487160ba4001771fc8e1c6f6f161dfb65 Signed-off-by: Rakesh Pillai <pillair@codeaurora.org>
* | | | | | | Merge "ath10k: skip sending default IE in scan request added by firmware"Linux Build Service Account2017-09-25
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | |
| * | | | | | ath10k: skip sending default IE in scan request added by firmwareRakesh Pillai2017-09-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Supported rates and extended supported rates are added in probe request automatically by firmware. The IE sent by host in the scan request command is appended to this. If host also sends supported and extended supported rates IE, then these IEs are duplicated in the probe requests. Skip sending the supported rates and extended supported rates IEs in the start scan command for wcn3990. CRs-Fixed: 2093804 Change-Id: I9afe85a3602a3935557894ed8c6e1af8cb47967d Signed-off-by: Rakesh Pillai <pillair@codeaurora.org>
* | | | | | | Merge "cnss2: Set debug state when using debugfs dev_boot node"Linux Build Service Account2017-09-22
|\ \ \ \ \ \ \
| * | | | | | | cnss2: Set debug state when using debugfs dev_boot nodeYue Ma2017-09-22
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When using debugfs dev_boot node to trigger firmware download, debug state should be set as well so that subsequence shutdown and powerup can be handled correctly. Change-Id: Id85d28dca104f8938d78655d682a0a7d1491c04c CRs-fixed: 2059087 Signed-off-by: Yue Ma <yuem@codeaurora.org>
* / | | | | | cnss2: Return proper error code for nonsupported devicesYue Ma2017-09-21
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Platform driver only forces FW assert for supported devices. Return proper error code for nonsupported devices so that WLAN host driver can handle properly. Change-Id: Iaf88f64564b14425404404db6a7789a7913db74f CRs-fixed: 2059087 Signed-off-by: Yue Ma <yuem@codeaurora.org>
* | | | | | Merge "wil6210: refresh FW capabilities during interface up"Linux Build Service Account2017-09-18
|\ \ \ \ \ \
| * | | | | | wil6210: refresh FW capabilities during interface upLior David2017-09-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | FW capabilities are currently retrieved only during module initialization, but userspace can replace the firmware while interface is down, so refresh the FW capabilities when interface is up (after FW is loaded) to ensure driver functionality matches the loaded FW. Change-Id: I880706bee0700b88e6637efd42de2eef4ea0d8b6 Signed-off-by: Lior David <liord@codeaurora.org>
* | | | | | | ath10k: synchronize WLAN ON/OFF cmd during system suspendSarada Prasanna Garnayak2017-09-15
| |_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During system suspend/resume or WLAN interface up/down by the network subsystem the ath10k SNOC WLAN driver configure WLAN enable/disable cmd with the WLAN firmware over QMI interface. The WLAN enable/disable cmd configuration with the WLAN firmware during system suspend is preventing the system suspend. Register PM event notifier for the ath10k SNOC platform driver and synchronize the WLAN HIF power down/up configuration, WLAN enable/disable cmd configuration with WLAN firmware according to the system power state. CRs-Fixed: 2110607 Change-Id: I5eeda967ae11c21ab5164c18b3e0a3bf668c916a Signed-off-by: Sarada Prasanna Garnayak <sgarna@codeaurora.org>
* | | | | | Merge "wil6210: ensure P2P device is stopped before removing interface"Linux Build Service Account2017-09-11
|\| | | | |
| * | | | | wil6210: ensure P2P device is stopped before removing interfaceLior David2017-09-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | User space can remove the P2P management interface while it is active (for example, while listen/search is active) and this can cause a crash. Ensure the P2P device is fully stopped before removing. Change-Id: Ibc94f12bc63f2ba31ede24afffd9c5acbf95467a Signed-off-by: Lior David <qca_liord@qca.qualcomm.com> Signed-off-by: Maya Erez <qca_merez@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> Git-commit: 69fecf599f48e258984b2ffdf0a4c65a35a31287 Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git Signed-off-by: Maya Erez <merez@codeaurora.org>
* | | | | | Merge "wil6210: increase connect timeout"Linux Build Service Account2017-09-11
|\| | | | |
| * | | | | wil6210: increase connect timeoutLior David2017-09-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Connect can take longer than current timeout in some scenarios, for example with long-range antenna array. Increase the timeout to support these scenarios. Change-Id: Id59cf4f11f8381ab8eab748171ef2b7949dde887 Signed-off-by: Lior David <qca_liord@qca.qualcomm.com> Signed-off-by: Maya Erez <qca_merez@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> Git-commit: d83ad4c4fd78b22935711f865048bab78b43fc86 Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git Signed-off-by: Maya Erez <merez@codeaurora.org>
* | | | | | Merge "wil6210: clear PAL_UNIT_ICR part of device reset"Linux Build Service Account2017-09-11
|\| | | | |
| * | | | | wil6210: clear PAL_UNIT_ICR part of device resetDedy Lansky2017-09-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When FW starts running it can get D0 to D3 interrupt that is a leftover from previous system suspend while FW was not running. As this interrupt is not relevant anymore, clear it part of device reset procedure. Change-Id: I213a18fd59a500914ab22f75a72393786188a08e Signed-off-by: Dedy Lansky <qca_dlansky@qca.qualcomm.com> Signed-off-by: Maya Erez <qca_merez@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> Git-commit: 7086d861753bc0aaa8b6445f657d8e39953e4fcd Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git Signed-off-by: Maya Erez <merez@codeaurora.org>
* | | | | | Merge "wil6210: move pre-FW configuration to separate function"Linux Build Service Account2017-09-11
|\| | | | |
| * | | | | wil6210: move pre-FW configuration to separate functionDedy Lansky2017-09-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Re-arrange the code to have dedicated function for device configuration which takes place before FW starts running. Change-Id: Ia0f2b33f85ba9547bee9415e34143e5b09e28447 Signed-off-by: Dedy Lansky <qca_dlansky@qca.qualcomm.com> Signed-off-by: Maya Erez <qca_merez@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> Git-commit: 1490846d256af947a4743f04ba8c97dc3bc37073 Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git Signed-off-by: Maya Erez <merez@codeaurora.org>
| * | | | | wil6210: align to latest auto generated wmi.hLazar Alexei2017-09-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Align to latest version of the auto generated wmi file describing the interface with FW. Change-Id: I5cd2130c17457544d055aaff15f5747a3d241e23 Signed-off-by: Lazar Alexei <qca_ailizaro@qca.qualcomm.com> Signed-off-by: Maya Erez <qca_merez@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> Git-commit: 761f8e4d463e1cbf6da0d228bc74cecc800d4de5 Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git Signed-off-by: Maya Erez <merez@codeaurora.org>
| * | | | | wil6210: make debugfs compilation optionalGidon Studinski2017-09-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since debugfs is a kernel configuration option, enable the driver to compile without debugfs. Change-Id: Id1b162172e2662a59af5b031a71ccd22250e4b6d Signed-off-by: Gidon Studinski <qca_gidons@qca.qualcomm.com> Signed-off-by: Hamad Kadmany <qca_hkadmany@qca.qualcomm.com> Signed-off-by: Maya Erez <qca_merez@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> Git-commit: 5f591dac9f20f76439df2e18570765d384a94070 Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git Signed-off-by: Maya Erez <merez@codeaurora.org>
| * | | | | wil6210: ratelimit errors in TX/RX interruptsLior David2017-09-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sometimes there is a firmware crash but the hardware is not fully stopped and continue to send TX/RX interrupts. This can cause an overload of messages which can bring the host down. Add ratelimit to these error messages to fix this. Change-Id: If0f8bfbec1df1c5d98c87d64191ef14bf6579ae1 Signed-off-by: Lior David <qca_liord@qca.qualcomm.com> Signed-off-by: Maya Erez <qca_merez@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> Git-commit: 40cbd88be702a2455b6e047dc13f5d51ed542063 Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git Signed-off-by: Maya Erez <merez@codeaurora.org>
* | | | | | ath10k: Destroy QMI handle during driver unloadGovind Singh2017-09-08
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | QMI handle was not destroyed during unload and server exit and resulting in qmi handle leak. Fix this problem by destroying the QMI handle during driver unload and server exit. Change-Id: I7557de7c2ff2cb7d82d6e8a3480e8d5f4be6a5f4 Signed-off-by: Govind Singh <govinds@codeaurora.org>
* | | | | cnss2: Increase QMI ATHDIAG maximum data sizeYue Ma2017-09-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Increase QMI ATHDIAG maximum data size to 6144 bytes so that it can dump more bytes for debugging. Change-Id: I21d6197ad67829c38586318d4e76a7c7fd4149c4 CRs-fixed: 2059087 Signed-off-by: Yue Ma <yuem@codeaurora.org>
* | | | | Merge "ath10k: Enable interrupt for pktlog CE11"Linux Build Service Account2017-09-03
|\ \ \ \ \
| * | | | | ath10k: Enable interrupt for pktlog CE11Govind Singh2017-08-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WCN3990 uses CE11 for pktlog. Enable CE interrupts for pktlog pipe for WCN3990 target. Change-Id: I5af4e47bc31fe0d94cacae0305a90f698e2d5a51 Signed-off-by: Govind Singh <govinds@codeaurora.org>
* | | | | | Merge "ath10k: Enable sta idle powersave"Linux Build Service Account2017-09-03
|\| | | | |
| * | | | | ath10k: Enable sta idle powersaveGovind Singh2017-08-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Enable STA idle powersave for WCN3990. Change-Id: I3dea0727464eda255fee50d21eee84919ab19205 Signed-off-by: Govind Singh <govinds@codeaurora.org>
* | | | | | Merge "wil6210: move vring_idle_trsh definition to wil6210_priv"Linux Build Service Account2017-09-03
|\ \ \ \ \ \
| * | | | | | wil6210: move vring_idle_trsh definition to wil6210_privGidon Studinski2017-08-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | vring_idle_trsh is used in the operational driver, hence should not be defined as a debugfs variable. Change-Id: I302fbcb7bbf0237ed989828e83c447a8b5c78996 Signed-off-by: Gidon Studinski <qca_gidons@qca.qualcomm.com> Signed-off-by: Maya Erez <qca_merez@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> Git-commit: 38d16ab2b2132beeb9777de1508ce2150b2dcd35 Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git Signed-off-by: Maya Erez <merez@codeaurora.org>
* | | | | | | Merge "wil6210: store FW RF calibration result"Linux Build Service Account2017-09-03
|\| | | | | | | |/ / / / / |/| | | | |
| * | | | | wil6210: store FW RF calibration resultDedy Lansky2017-08-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Store initial FW RF calibration result in driver. Set this calibration result back to FW after each FW reset in order to avoid future calibration procedures. Change-Id: Id7dec17d6306e3234285874bd83b71ba4009afef Signed-off-by: Dedy Lansky <qca_dlansky@qca.qualcomm.com> Signed-off-by: Maya Erez <qca_merez@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> Git-commit: eb4c02155881696ee6abb090d554b765e41d46ed Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git Signed-off-by: Maya Erez <merez@codeaurora.org>
* | | | | | Merge "wil6210: fix interface-up check"Linux Build Service Account2017-08-30
|\| | | | | | |/ / / / |/| | | |
| * | | | wil6210: fix interface-up checkHamad Kadmany2017-08-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While wil_open is executed, any call to netif_running would return a success. In case there are failures within wil_open, should not treat the device as if it is already opened in relevant functions (like FW recovery and runtime suspend check). Fix that by checking the device up flag instead. Change-Id: I12c4167a49690f93febec3e8ffaec8a5d2cde91d Signed-off-by: Hamad Kadmany <qca_hkadmany@qca.qualcomm.com> Signed-off-by: Maya Erez <qca_merez@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> Git-commit: 9b2a4c2d534ca45c74488bace32323b26633ff66 Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git Signed-off-by: Maya Erez <merez@codeaurora.org>
| * | | | wil6210: notify wiphy on wowlan supportMaya Erez2017-08-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Set wowlan to indicate that 11ad device can wake-up on any trigger and disconnect. Change-Id: I12f226921f854a354404d16e592447a98859b205 Signed-off-by: Maya Erez <qca_merez@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> Git-commit: d1fbf07540b7d35df693e2e1d7528d8ca9bdb2c2 Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git Signed-off-by: Maya Erez <merez@codeaurora.org>
| * | | | wil6210: add statistics for suspend timeMaya Erez2017-08-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add statistics for total, min and max suspend time, that calculates the time the 11ad device was in suspend. Those statistics will help to estimate the power impact of d3hot feature. Change-Id: I14dfa206b141a4d2b5585d637fe94b2eed91d2b7 Signed-off-by: Maya Erez <qca_merez@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> Git-commit: 262345265e599fe5ccc75ba435147d17df04bfd6 Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git Signed-off-by: Maya Erez <merez@codeaurora.org>
| * | | | wil6210: check no_fw_recovery in resume failure recoveryMaya Erez2017-08-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reset 11ad device on resume failure only if no_fw_recovery is not set. Change-Id: Id90cc9973c2e06f3e9eeae32d3c9065e49f90212 Signed-off-by: Maya Erez <qca_merez@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> Git-commit: c6622116c5ae56aec47dd3d63be49cabf591162a Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git Signed-off-by: Maya Erez <merez@codeaurora.org>
| * | | | wil6210: support FW RSSI reportingDedy Lansky2017-08-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New FW supports reporting RSSI signal in dBm. Report RSSI to kernel in case FW has this capability. Change-Id: I85fdae2e92a38cfb7ab9a5f97dcf363add51b959 Signed-off-by: Dedy Lansky <qca_dlansky@qca.qualcomm.com> Signed-off-by: Maya Erez <qca_merez@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> Git-commit: 30868f5d4413759ba82c0703290f2483402fea39 Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git Signed-off-by: Maya Erez <merez@codeaurora.org>
* | | | | Merge "mmc: sdhci: Force probe of shdc1 based on boolean property"Linux Build Service Account2017-08-23
|\ \ \ \ \
| * | | | | net: cnss: Fix crash when SDIO device is not insertedGustavo Solaira2017-08-18
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Check to see if the host is not NULL before trying to use it, this avoids a crash when the driver is probed, but the card is not available. Also remove dependency on ARCH_MSM since it is not used anymore. Change-Id: I476a512dd41e0c336b71c96d8dd2972cdadb8732 Signed-off-by: Gustavo Solaira <gustavos@codeaurora.org>
* | | | | Merge "cnss2: Add debugfs entries for register read/write"Linux Build Service Account2017-08-22
|\ \ \ \ \ | |_|/ / / |/| | | |
| * | | | cnss2: Add debugfs entries for register read/writeYue Ma2017-08-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add debugfs entries for reading/writing WLAN hardware registers. This is for runtime debugging enhancement. Change-Id: If7a85181858e127187906beca69870a98f4a1184 CRs-fixed: 2059087 Signed-off-by: Yue Ma <yuem@codeaurora.org>