ath11k: driver for Qualcomm IEEE 802.11ax devices
authorKalle Valo <kvalo@codeaurora.org>
Sat, 23 Nov 2019 07:58:40 +0000 (09:58 +0200)
committerKalle Valo <kvalo@codeaurora.org>
Mon, 25 Nov 2019 12:16:34 +0000 (14:16 +0200)
commitd5c65159f2895379e11ca13f62feabe93278985d
tree6d6b8c0c3e05cc49778147424686e86c0e1e0747
parentdae0978d4174422b4a2aa08a96252a1e60d40ef5
ath11k: driver for Qualcomm IEEE 802.11ax devices

ath11k is a new driver for Qualcomm IEEE 802.11ax devices, first
supporting only IPQ8074 SoC using the shared memory AHB bus. ath11k
uses mac80211 and supports AP, Station and Mesh modes.

Even though ath11k has some similar code as with ath10k (especially
the WMI layer) it was concluded to be simpler to have a "clean start"
for ath11k code base and not try to share the code with ath10k. This
makes maintenance easier and avoids major changes in ath10k, which
would have significantly increased the risk of regressions in existing
setups.

Even though the driver is very similar with ath10k but there are major
differences as well. The datapath is completely different. ath11k
supports multiple MACs, called "soc" in the firmware interface. And
there's only one WMI interface to support.

Currently ath11k supports only IEEE 802.11ac mode, but patches for
802.11ax are available and they will be submitted after ath11k is
accepted to upstream.

The firmware images are available from ath11k-firmware repository but
they will be also submitted to linux-firmware:

https://github.com/kvalo/ath11k-firmware

This was tested with firmware version WLAN.HK.2.1.0.1-00629-QCAHKSWPL_SILICONZ-1.

The driver has had multiple authors who are listed in alphabetical
order below.

Signed-off-by: Anilkumar Kolli <akolli@codeaurora.org>
Signed-off-by: Bhagavathi Perumal S <bperumal@codeaurora.org>
Signed-off-by: Ganesh Sesetti <gseset@codeaurora.org>
Signed-off-by: Govindaraj Saminathan <gsamin@codeaurora.org>
Signed-off-by: John Crispin <john@phrozen.org>
Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Signed-off-by: Karthikeyan Periyasamy <periyasa@codeaurora.org>
Signed-off-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Maharaja Kennadyrajan <mkenna@codeaurora.org>
Signed-off-by: Manikanta Pubbisetty <mpubbise@codeaurora.org>
Signed-off-by: Miles Hu <milehu@codeaurora.org>
Signed-off-by: Muna Sinada <msinada@codeaurora.org>
Signed-off-by: Pradeep Kumar Chitrapu <pradeepc@codeaurora.org>
Signed-off-by: Rajkumar Manoharan <rmanohar@codeaurora.org>
Signed-off-by: Sathishkumar Muruganandam <murugana@codeaurora.org>
Signed-off-by: Shashidhar Lakkavalli <slakkavalli@datto.com>
Signed-off-by: Sriram R <srirrama@codeaurora.org>
Signed-off-by: Sven Eckelmann <seckelmann@datto.com>
Signed-off-by: Vasanthakumar Thiagarajan <vthiagar@codeaurora.org>
Signed-off-by: Venkateswara Naralasetty <vnaralas@codeaurora.org>
47 files changed:
drivers/net/wireless/ath/Kconfig
drivers/net/wireless/ath/Makefile
drivers/net/wireless/ath/ath11k/Kconfig [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/Makefile [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/ahb.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/ahb.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/ce.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/ce.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/core.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/core.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/debug.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/debug.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/debug_htt_stats.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/debug_htt_stats.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/debugfs_sta.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/dp.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/dp.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/dp_rx.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/dp_rx.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/dp_tx.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/dp_tx.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/hal.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/hal.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/hal_desc.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/hal_rx.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/hal_rx.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/hal_tx.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/hal_tx.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/htc.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/htc.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/hw.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/mac.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/mac.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/peer.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/peer.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/qmi.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/qmi.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/reg.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/reg.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/rx_desc.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/testmode.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/testmode.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/testmode_i.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/trace.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/trace.h [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/wmi.c [new file with mode: 0644]
drivers/net/wireless/ath/ath11k/wmi.h [new file with mode: 0644]