diff options
author | Chin-Yen Lee <timlee@realtek.com> | 2022-10-27 13:27:06 +0800 |
---|---|---|
committer | Kalle Valo <kvalo@kernel.org> | 2022-11-01 11:26:14 +0200 |
commit | 19e28c7fcc7408be8479f91d47146245c8be293e (patch) | |
tree | d821ca190dad541d5a5ba946e96d18d7cf458821 /drivers/net/wireless/realtek/rtw89/Makefile | |
parent | ee88d748f1ace450cc0e8ca6a93cb11e7e8d6ad9 (diff) |
wifi: rtw89: add WoWLAN function support
WoWLAN is a feature which allows devices to be woken up from suspend
state through WLAN events.
When user enables WoWLAN feature and then let the device enter suspend
state, WoWLAN firmware will be loaded by the driver and periodically
monitors WiFi packets. Power consumption of WiFi chip will be reduced
in this state.
We now implement WoWLAN function in rtw8852ae and rtw8852ce chip.
Currently supported WLAN events include receiving magic packet,
rekey packet and deauth packet, and disconnecting from AP.
Signed-off-by: Chin-Yen Lee <timlee@realtek.com>
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20221027052707.14605-7-pkshih@realtek.com
Diffstat (limited to 'drivers/net/wireless/realtek/rtw89/Makefile')
-rw-r--r-- | drivers/net/wireless/realtek/rtw89/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/realtek/rtw89/Makefile b/drivers/net/wireless/realtek/rtw89/Makefile index ec0f5da65d6a..2dc48fa10c6b 100644 --- a/drivers/net/wireless/realtek/rtw89/Makefile +++ b/drivers/net/wireless/realtek/rtw89/Makefile @@ -15,6 +15,8 @@ rtw89_core-y += core.o \ chan.o \ ser.o +rtw89_core-$(CONFIG_PM) += wow.o + obj-$(CONFIG_RTW89_8852A) += rtw89_8852a.o rtw89_8852a-objs := rtw8852a.o \ rtw8852a_table.o \ |