-
Notifications
You must be signed in to change notification settings - Fork 194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rtw_8822cs : no AP mode ? #245
Comments
Yes, you need to make this change: diff --git a/drivers/net/wireless/realtek/rtw88/main.c b/drivers/net/wireless/realtek/rtw88/main.c
index e91530ed05a0..4ba821dcc7eb 100644
--- a/drivers/net/wireless/realtek/rtw88/main.c
+++ b/drivers/net/wireless/realtek/rtw88/main.c
@@ -2228,7 +2228,7 @@ EXPORT_SYMBOL(rtw_core_deinit);
int rtw_register_hw(struct rtw_dev *rtwdev, struct ieee80211_hw *hw)
{
- bool sta_mode_only = rtwdev->hci.type == RTW_HCI_TYPE_SDIO;
+ bool sta_mode_only = false;
struct rtw_hal *hal = &rtwdev->hal;
int max_tx_headroom = 0;
int ret; SDIO (and USB) devices had some problems with AP mode, so someone decided that AP mode should be disabled until the problems are fixed. It's very possible that the problems are all fixed now. People with USB devices reported that it's working better. I don't know if anyone tested the SDIO side. |
Thanks @dubhater ! Now all modes are present. |
Hi,
the ssid "test" is seen but the connections attempts failed.
and hostapd side :
It seems wpa_supplicant didn't received something expected. Chris |
I don't know. Maybe there is something in dmesg on the AP side. |
Nothing in dmesg.
With the rtw_8822cs :
The authentication/association don't go to the end. |
The problem could be anywhere. |
Hi,
Context : Armbian bookworm 24.11 6.6.58-current-rockchip64
After make/make install of current version of the driver (and reboot)
iw list gives only managed and monitor modes available.
Under Android all modes are available.
Logs :
Oct 28 15:08:39 station-m2 kernel: rtw_8822cs mmc1:0001:1: WOW Firmware version 9.9.4, H2C version 15
Oct 28 15:08:39 station-m2 kernel: rtw_8822cs mmc1:0001:1: Firmware version 9.9.15, H2C version 15
Something necessary at compilation time to activate AP mode ?
Chris
The text was updated successfully, but these errors were encountered: