[PATCH v3 0/3] Fixes and improvements for brcmfmac driver

From: Dmitry Osipenko
Date: Sun Aug 30 2020 - 15:15:27 EST


Hello!

Recently I was debugging WiFi performance problems on Acer A500 tablet
device that got upstreamed recently. This is an older Android device from
2011-2012 that is powered by NVIDIA Tegra20 SoC and it has BCM4329 chip
that provides WiFi (SDIO) and Bluetooth (UART). I noticed that WiFi
throughput on a recent Linux kernel wasn't as great as it could be in
comparison to older 3.18 kernel that is uses downstream BCMDHD driver
and this series fixes a major part of the problems that I found.

Found problems:

1. The WiFi SDIO pinmux configuration had a bug in Acer A500 device-tree
and MMC refused to work if it was clocked above 25MHz and legacy
signaling mode was used. After fixing the bug, WiFi SDIO works perfectly
well at 50MHz and this increases TX throughput by 5-10 Mbit/s. I already
sent out patches that fix this bug to the Tegra ML.

2. There are occasional SDHCI CRC errors if SDIO is clocked above 25Mhz.
The "increase F2 watermark" patch fixes this problem.

3. WiFi TX throughput is lower by 10 Mbit/s than it should be using 512B
for maximum F2 SDIO block size. Reducing block size to 128B fixes this
problem. The "set F2 SDIO block size to 128 bytes" patch addresses this
issue. The exact reason why 128B is more efficient than 512B is unknown,
this optimization is borrowed from the BCMDHD driver.

4. While I was bisecting upstream kernel, I found that WiFi RX/TX throughput
dropped by 5-10 Mbit/s after 5.2 kernel and reverting the following commit
from linux-next resolves the problem:

commit c07a48c2651965e84d35cf193dfc0e5f7892d612
Author: Adrian Hunter <adrian.hunter@xxxxxxxxx>
Date: Fri Apr 5 15:40:20 2019 +0300

mmc: sdhci: Remove finish_tasklet

I'll sent a separate email for discussing this problem [1].

[1] https://lkml.org/lkml/2020/8/27/54

After fixing all the above problems, I'm now getting a solid 40 Mbit/s
up/down on Acer A500 on a recent linux-next in comparison to 15 Mbit/s
that I was getting before the fixes.

Big thanks to Wright Feng who helped me to find and fix some of the problems!

Changelog:

v3: - The v2 "drop unnecessary "fallthrough" comments" patch isn't needed
anymore because that change is already applied.

- Added r-b from Arend van Spriel that he gave to the v1 of "increase F2
watermark for BCM4329" patch.

v2: - Added "drop chip id from debug messages" as was requested by
Arend Van Spriel in the review comment to v1 of the "increase F2
watermark" patch.

- Added patches that remove unnecessary "fallthrough" comments and
change F2 SDIO block size to 128 bytes for BCM4329.

Dmitry Osipenko (3):
brcmfmac: increase F2 watermark for BCM4329
brcmfmac: drop chip id from debug messages
brcmfmac: set F2 SDIO block size to 128 bytes for BCM4329

drivers/net/wireless/broadcom/brcm80211/brcmfmac/bcmsdh.c | 4 ++++
drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.c | 5 +++--
2 files changed, 7 insertions(+), 2 deletions(-)

--
2.27.0