mirror of
https://github.com/torvalds/linux.git
synced 2026-06-01 11:03:43 +02:00
wifi: rtw88: main: Add the {cpwm,rpwm}_addr for SDIO based chipsets
Initialize the rpwm_addr and cpwm_addr for power-saving support on SDIO based chipsets. Reviewed-by: Ping-Ke Shih <pkshih@realtek.com> Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://lore.kernel.org/r/20230405200729.632435-5-martin.blumenstingl@googlemail.com
This commit is contained in:
parent
b722e5b130
commit
a5d25f9ff9
|
|
@ -18,6 +18,7 @@
|
|||
#include "debug.h"
|
||||
#include "bf.h"
|
||||
#include "sar.h"
|
||||
#include "sdio.h"
|
||||
|
||||
bool rtw_disable_lps_deep_mode;
|
||||
EXPORT_SYMBOL(rtw_disable_lps_deep_mode);
|
||||
|
|
@ -1785,6 +1786,10 @@ static int rtw_chip_parameter_setup(struct rtw_dev *rtwdev)
|
|||
rtwdev->hci.rpwm_addr = 0x03d9;
|
||||
rtwdev->hci.cpwm_addr = 0x03da;
|
||||
break;
|
||||
case RTW_HCI_TYPE_SDIO:
|
||||
rtwdev->hci.rpwm_addr = REG_SDIO_HRPWM1;
|
||||
rtwdev->hci.cpwm_addr = REG_SDIO_HCPWM1_V2;
|
||||
break;
|
||||
case RTW_HCI_TYPE_USB:
|
||||
rtwdev->hci.rpwm_addr = 0xfe58;
|
||||
rtwdev->hci.cpwm_addr = 0xfe57;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user