Skip to content
/ linux Public

Commit b71487c

Browse files
rvandegriftSasha Levin
authored andcommitted
wifi: ath11k: add pm quirk for Thinkpad Z13/Z16 Gen1
[ Upstream commit 4015b19 ] Z16 Gen1 has the wakeup-from-suspend issues from [1] but was never added to the appropriate quirk list. I've tested this patch on top of 6.18.2, it fixes the issue for me on 21D4 Mark Pearson provided the other product IDs covering the second Z16 Gen1 and both Z13 Gen1 identifiers. They share the same firmware, and folks in the bugzilla report do indeed see the problem on Z13. [1] - https://bugzilla.kernel.org/show_bug.cgi?id=219196 Signed-off-by: Ross Vandegrift <ross@kallisti.us> Reviewed-by: Baochen Qiang <baochen.qiang@oss.qualcomm.com> Tested-by: Mark Pearson <mpearson-lenovo@squebb.ca> Reviewed-by: Mark Pearson <mpearson-lenovo@squebb.ca> Link: https://patch.msgid.link/wj7o2kmb7g54stdjvxp2hjqrnutnq3jbf4s2uh4ctvmlxdq7tf@nbkj2ebakhrd Signed-off-by: Jeff Johnson <jeff.johnson@oss.qualcomm.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent 26c82ec commit b71487c

File tree

1 file changed

+28
-0
lines changed
  • drivers/net/wireless/ath/ath11k

1 file changed

+28
-0
lines changed

drivers/net/wireless/ath/ath11k/core.c

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -896,6 +896,34 @@ static const struct dmi_system_id ath11k_pm_quirk_table[] = {
896896
DMI_MATCH(DMI_PRODUCT_NAME, "21F9"),
897897
},
898898
},
899+
{
900+
.driver_data = (void *)ATH11K_PM_WOW,
901+
.matches = { /* Z13 G1 */
902+
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
903+
DMI_MATCH(DMI_PRODUCT_NAME, "21D2"),
904+
},
905+
},
906+
{
907+
.driver_data = (void *)ATH11K_PM_WOW,
908+
.matches = { /* Z13 G1 */
909+
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
910+
DMI_MATCH(DMI_PRODUCT_NAME, "21D3"),
911+
},
912+
},
913+
{
914+
.driver_data = (void *)ATH11K_PM_WOW,
915+
.matches = { /* Z16 G1 */
916+
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
917+
DMI_MATCH(DMI_PRODUCT_NAME, "21D4"),
918+
},
919+
},
920+
{
921+
.driver_data = (void *)ATH11K_PM_WOW,
922+
.matches = { /* Z16 G1 */
923+
DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
924+
DMI_MATCH(DMI_PRODUCT_NAME, "21D5"),
925+
},
926+
},
899927
{}
900928
};
901929

0 commit comments

Comments
 (0)