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 The driver has had multiple authors who are listed in alphabetical order below. Signed-off-by: Anilkumar Kolli <akolli@xxxxxxxxxxxxxx> Signed-off-by: Bhagavathi Perumal S <bperumal@xxxxxxxxxxxxxx> Signed-off-by: Ganesh Sesetti <gseset@xxxxxxxxxxxxxx> Signed-off-by: Govindaraj Saminathan <gsamin@xxxxxxxxxxxxxx> Signed-off-by: John Crispin <john@xxxxxxxxxxx> Signed-off-by: Julia Lawall <julia.lawall@xxxxxxx> Signed-off-by: Kalle Valo <kvalo@xxxxxxxxxxxxxx> Signed-off-by: Karthikeyan Periyasamy <periyasa@xxxxxxxxxxxxxx> Signed-off-by: kbuild test robot <lkp@xxxxxxxxx> Signed-off-by: Maharaja Kennadyrajan <mkenna@xxxxxxxxxxxxxx> Signed-off-by: Manikanta Pubbisetty <mpubbise@xxxxxxxxxxxxxx> Signed-off-by: Miles Hu <milehu@xxxxxxxxxxxxxx> Signed-off-by: Muna Sinada <msinada@xxxxxxxxxxxxxx> Signed-off-by: Pradeep Kumar Chitrapu <pradeepc@xxxxxxxxxxxxxx> Signed-off-by: Rajkumar Manoharan <rmanohar@xxxxxxxxxxxxxx> Signed-off-by: Sathishkumar Muruganandam <murugana@xxxxxxxxxxxxxx> Signed-off-by: Shashidhar Lakkavalli <slakkavalli@xxxxxxxxx> Signed-off-by: Sriram R <srirrama@xxxxxxxxxxxxxx> Signed-off-by: Sven Eckelmann <seckelmann@xxxxxxxxx> Signed-off-by: Vasanthakumar Thiagarajan <vthiagar@xxxxxxxxxxxxxx> Signed-off-by: Venkateswara Naralasetty <vnaralas@xxxxxxxxxxxxxx> --------------[cut]-------------------[cut]----------------- I have split the driver into multiple patches for easier review, but the final commit will be one big patch and the commit log being the text before the cut line above. This version is based on commit b05c1a55a3a566893e15cfc2dc2cc20d476af0d6 from ath11k-bringup branch on my ath.git tree: https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git/log/?h=ath11k-bringup This patch applies to wireless-drivers-next but needs CONFIG_COMPILE_TEST, CONFIG_REMOTEPROC AND CONFIG_QCOM_QMI_HELPERS to be able to compile on x86. Please review and comment. Kalle