mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
ed2015c386
The following patches: * 972-ath10k_fix-crash-due-to-wrong-handling-of-peer_bw_rxnss_override-parameter.patch * 973-ath10k_fix-band_center_freq-handling-for-VHT160-in-recent-firmwares.patch are replaced by this commit in the upstream kernel: * 3db24065c2c8 ("ath10k: enable VHT160 and VHT80+80 modes") The following patches were applied upstream: * 001-rt2800-enable-MFP-support-unconditionally.patch * 090-wireless-Use-linux-stddef.h-instead-of-stddef.h.patch The rtw88 driver is now split into multiple kernel modules, just put it all into one OpenWrt kernel package. rtl8812au-ct was patched to compile against the mac80211 from kernel 5.8, but not runtime tested. Add a patch which fixes ath10k on IPQ40XX, this patch was send upstream and fixes a crash when loading ath10k on this SoC. Tested-by: Stefan Lippers-Hollmann <s.l-h@gmx.de> [ipq40xx/ map-ac2200] Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
54 lines
1.9 KiB
Diff
54 lines
1.9 KiB
Diff
From 79c9d7aabae1d1da9eea97d83b61e1517a8a2221 Mon Sep 17 00:00:00 2001
|
|
From: Mathias Kresin <dev@kresin.me>
|
|
Date: Fri, 22 Jun 2018 18:59:44 +0200
|
|
Subject: [PATCH] ath10k: use tpt LED trigger by default
|
|
|
|
Use the tpt LED trigger for each created phy led. Ths way LEDs attached
|
|
to the ath10k GPIO pins are indicating the phy status and blink on
|
|
traffic.
|
|
|
|
Signed-off-by: Mathias Kresin <dev@kresin.me>
|
|
---
|
|
drivers/net/wireless/ath/ath10k/core.h | 4 ++++
|
|
drivers/net/wireless/ath/ath10k/leds.c | 4 +---
|
|
drivers/net/wireless/ath/ath10k/mac.c | 2 +-
|
|
3 files changed, 6 insertions(+), 4 deletions(-)
|
|
|
|
--- a/drivers/net/wireless/ath/ath10k/core.h
|
|
+++ b/drivers/net/wireless/ath/ath10k/core.h
|
|
@@ -1269,6 +1269,10 @@ struct ath10k {
|
|
bool coex_support;
|
|
int coex_gpio_pin;
|
|
|
|
+#ifdef CPTCFG_MAC80211_LEDS
|
|
+ const char *led_default_trigger;
|
|
+#endif
|
|
+
|
|
/* must be last */
|
|
u8 drv_priv[] __aligned(sizeof(void *));
|
|
};
|
|
--- a/drivers/net/wireless/ath/ath10k/leds.c
|
|
+++ b/drivers/net/wireless/ath/ath10k/leds.c
|
|
@@ -81,9 +81,7 @@ int ath10k_leds_register(struct ath10k *
|
|
|
|
ar->leds.cdev.name = ar->leds.label;
|
|
ar->leds.cdev.brightness_set_blocking = ath10k_leds_set_brightness_blocking;
|
|
-
|
|
- /* FIXME: this assignment doesn't make sense as it's NULL, remove it? */
|
|
- ar->leds.cdev.default_trigger = ar->leds.wifi_led.default_trigger;
|
|
+ ar->leds.cdev.default_trigger = ar->led_default_trigger;
|
|
|
|
ret = led_classdev_register(wiphy_dev(ar->hw->wiphy), &ar->leds.cdev);
|
|
if (ret)
|
|
--- a/drivers/net/wireless/ath/ath10k/mac.c
|
|
+++ b/drivers/net/wireless/ath/ath10k/mac.c
|
|
@@ -9397,7 +9397,7 @@ int ath10k_mac_register(struct ath10k *a
|
|
ar->hw->weight_multiplier = ATH10K_AIRTIME_WEIGHT_MULTIPLIER;
|
|
|
|
#ifdef CPTCFG_MAC80211_LEDS
|
|
- ieee80211_create_tpt_led_trigger(ar->hw,
|
|
+ ar->led_default_trigger = ieee80211_create_tpt_led_trigger(ar->hw,
|
|
IEEE80211_TPT_LEDTRIG_FL_RADIO, ath10k_tpt_blink,
|
|
ARRAY_SIZE(ath10k_tpt_blink));
|
|
#endif
|