[RFC 3/3] mac80211: allow to choose ath11k driver
Robert Marko
robimarko at gmail.com
Sun Oct 24 13:03:57 PDT 2021
On Sun, 24 Oct 2021 at 21:43, Janusz Dziedzic <janusz.dziedzic at gmail.com> wrote:
>
> Signed-off-by: Janusz Dziedzic <janusz.dziedzic at gmail.com>
> ---
> package/kernel/mac80211/ath.mk | 26 ++++++++++++++++++++++++--
> 1 file changed, 24 insertions(+), 2 deletions(-)
>
> diff --git a/package/kernel/mac80211/ath.mk b/package/kernel/mac80211/ath.mk
> index ba03ae11a6..634fb13195 100644
> --- a/package/kernel/mac80211/ath.mk
> +++ b/package/kernel/mac80211/ath.mk
> @@ -1,6 +1,6 @@
> PKG_DRIVERS += \
> ath ath5k ath6kl ath6kl-sdio ath6kl-usb ath9k ath9k-common ath9k-htc ath10k \
> - carl9170 owl-loader ar5523 wil6210
> + ath11k carl9170 owl-loader ar5523 wil6210
>
> PKG_CONFIG_DEPENDS += \
> CONFIG_PACKAGE_ATH_DEBUG \
> @@ -19,6 +19,7 @@ ifdef CONFIG_PACKAGE_MAC80211_DEBUGFS
> ATH9K_DEBUGFS \
> ATH9K_HTC_DEBUGFS \
> ATH10K_DEBUGFS \
> + ATH11K_DEBUGFS \
> CARL9170_DEBUGFS \
> ATH5K_DEBUG \
> ATH6KL_DEBUG \
> @@ -27,6 +28,7 @@ endif
>
> ifdef CONFIG_PACKAGE_MAC80211_TRACING
> config-y += \
> + ATH11K_TRACING \
> ATH10K_TRACING \
> ATH6KL_TRACING \
> ATH_TRACEPOINTS \
> @@ -35,7 +37,7 @@ ifdef CONFIG_PACKAGE_MAC80211_TRACING
> endif
>
> config-$(call config_package,ath) += ATH_CARDS ATH_COMMON
> -config-$(CONFIG_PACKAGE_ATH_DEBUG) += ATH_DEBUG ATH10K_DEBUG ATH9K_STATION_STATISTICS
> +config-$(CONFIG_PACKAGE_ATH_DEBUG) += ATH_DEBUG ATH10K_DEBUG ATH11K_DEBUG ATH9K_STATION_STATISTICS
> config-$(CONFIG_PACKAGE_ATH_DFS) += ATH9K_DFS_CERTIFIED ATH10K_DFS_CERTIFIED
> config-$(CONFIG_PACKAGE_ATH_SPECTRAL) += ATH9K_COMMON_SPECTRAL ATH10K_SPECTRAL
Hi Janusz,
thanks for working on this, I have had ath11k packaged for a while due
to IPQ807x but didn't want to send the patches
until 5.15 backports landed.
That being said, ath11k has spectral support as well.
> config-$(CONFIG_PACKAGE_ATH_DYNACK) += ATH9K_DYNACK
> @@ -55,6 +57,7 @@ config-$(CONFIG_ATH10K_THERMAL) += ATH10K_THERMAL
>
> config-$(call config_package,ath9k-htc) += ATH9K_HTC
> config-$(call config_package,ath10k) += ATH10K ATH10K_PCI
> +config-$(call config_package,ath11k) += ATH11K ATH11K_PCI
>
> config-$(call config_package,ath5k) += ATH5K
> ifdef CONFIG_TARGET_ath25
> @@ -281,6 +284,25 @@ define KernelPackage/ath10k/config
>
> endef
>
> +define KernelPackage/ath11k
> + $(call KernelPackage/mac80211/Default)
> + TITLE:=Qualcomm 802.11ax wireless chipset support
> + URL:=https://wireless.wiki.kernel.org/en/users/drivers/ath11k
> + DEPENDS+= \
> + @PCI_SUPPORT +kmod-mac80211 +kmod-ath + at DRIVER_11N_SUPPORT + at DRIVER_11AC_SUPPORT \
> + + at DRIVER_11AX_SUPPORT +kmod-hwmon-core +kmod-thermal +kmod-crypto-michael-mic \
HWMON and thermal are optional things that is not included in every
target, so this needs to be a selectable thing
and needs to pull in both hwmon and thermal kmods if selected.
> + +kmod-qrtr-mhi +kmod-qcom-qmi-helpers
> + FILES:= \
> + $(PKG_BUILD_DIR)/drivers/net/wireless/ath/ath11k/ath11k.ko \
> + $(PKG_BUILD_DIR)/drivers/net/wireless/ath/ath11k/ath11k_pci.ko
I am not really a fan of this approach as it always bundles PCI support.
I have it packaged as 3 packaged, ath11k core, AHB and PCI so you can
pick and choose what do you need.
> + AUTOLOAD:=$(call AutoProbe,ath11k_pci)
This would work for AHB based stuff.
So, would you be interested in combining your MHI/QRTR kmod and QMI
selectable patches with my ath11k packaging patches?
I see it as a way to reduce effort on both sides and get this added.
Regards,
Robert
> +endef
> +
> +define KernelPackage/ath11k/description
> +This module adds support for Qualcomm Technologies 802.11ax family of
> +chipsets.
> +endef
> +
> define KernelPackage/carl9170
> $(call KernelPackage/mac80211/Default)
> TITLE:=Driver for Atheros AR9170 USB sticks
> --
> 2.25.1
>
>
> _______________________________________________
> openwrt-devel mailing list
> openwrt-devel at lists.openwrt.org
> https://lists.openwrt.org/mailman/listinfo/openwrt-devel
More information about the openwrt-devel
mailing list