commit | b3381d31aa248ff9616308d07ffb9bbf768fbae5 | [log] [tgz] |
---|---|---|
author | developer <developer@mediatek.com> | Thu Sep 12 16:22:14 2024 +0800 |
committer | developer <developer@mediatek.com> | Sat Oct 12 02:43:09 2024 +0800 |
tree | 54c7295ac95273cf202cdcf964d6b079b355ae36 | |
parent | 5e520d1024d8cbe1ee74b87c115540c8a90e1b1d [diff] |
[][MAC80211][WiFi6][mt76][Fix TX/RX hang and SER hw bit didn't detect issue] [Description] Fix TX/RX hang and SER hw bit didn't detect issue 1. TXD from Host to WA, CTXD will send TXD to WA in WFDMA because the TXD request has reached the upper limit of Cascade and Timeout occurs. At this time, WA does not receive TXD because the Ring of TX free done event from WA to Host is full, and the TXD Ring is full and blocks back. [Release-log] Change-Id: I3091877a153994af12fd74853bd19949e2ca13ce Reviewed-on: https://gerrit.mediatek.inc/c/openwrt/feeds/mtk_openwrt_feeds/+/9629321
Currently two release branches are supported:
21.02 This is the current in-use branch
git clone -b openwrt-21.02 https://git.openwrt.org/openwrt/openwrt.git
master (will be 24.0x branch later) The next version in development
git clone https://git.openwrt.org/openwrt/openwrt.git
cd openwrt echo "src-git mtk_openwrt_feed https://git01.mediatek.com/openwrt/feeds/mtk-openwrt-feeds" >> feeds.conf.default ./scripts/feeds update -a ./scripts/feeds install -a
21.02 branch
cp -af ./feeds/mtk_openwrt_feed/21.02/files/* . cp -af ./feeds/mtk_openwrt_feed/tools . for file in $(find ./feeds/mtk_openwrt_feed/21.02/patches-base -name "*.patch" | sort); do patch -f -p1 -i ${file}; done for file in $(find ./feeds/mtk_openwrt_feed/21.02/patches-feeds -name "*.patch" | sort); do patch -f -p1 -i ${file}; done
master branch
cp -af ./feeds/mtk_openwrt_feed/master/files/* . for file in $(find ./feeds/mtk_openwrt_feed/master/patches-base -name "*.patch" | sort); do patch -f -p1 -i ${file}; done
make menuconfig
21.02 branch
Target System -> MediaTek Ralink ARM Subtarget -> MT7981 / MT7986 / MT7988 Target Profile -> select as needed
master branch
Target System -> MediaTek Ralink ARM Subtarget -> Filogic 8x0 (MT798x) Target Profile -> select as needed
make V=s -j$(nproc)