Skip to content

Commit 2e19f93

Browse files
palidvhart
authored andcommitted
dell-laptop: Show info about WiGig and UWB in debugfs
This commit show additional information about rfkill state in debugfs based on newly released documentation by Dell. Signed-off-by: Pali Rohár <[email protected]> Signed-off-by: Darren Hart <[email protected]>
1 parent f992efb commit 2e19f93

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

drivers/platform/x86/dell-laptop.c

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -629,12 +629,21 @@ static int dell_debugfs_show(struct seq_file *s, void *data)
629629
(status & BIT(4)) >> 4);
630630
seq_printf(s, "Bit 5 : Wireless keyboard supported: %lu\n",
631631
(status & BIT(5)) >> 5);
632+
seq_printf(s, "Bit 6 : UWB supported: %lu\n",
633+
(status & BIT(6)) >> 6);
634+
seq_printf(s, "Bit 7 : WiGig supported: %lu\n",
635+
(status & BIT(7)) >> 7);
632636
seq_printf(s, "Bit 8 : Wifi is installed: %lu\n",
633637
(status & BIT(8)) >> 8);
634638
seq_printf(s, "Bit 9 : Bluetooth is installed: %lu\n",
635639
(status & BIT(9)) >> 9);
636640
seq_printf(s, "Bit 10: WWAN is installed: %lu\n",
637641
(status & BIT(10)) >> 10);
642+
seq_printf(s, "Bit 11: UWB installed: %lu\n",
643+
(status & BIT(11)) >> 11);
644+
seq_printf(s, "Bit 12: WiGig installed: %lu\n",
645+
(status & BIT(12)) >> 12);
646+
638647
seq_printf(s, "Bit 16: Hardware switch is on: %lu\n",
639648
(status & BIT(16)) >> 16);
640649
seq_printf(s, "Bit 17: Wifi is blocked: %lu\n",
@@ -643,6 +652,10 @@ static int dell_debugfs_show(struct seq_file *s, void *data)
643652
(status & BIT(18)) >> 18);
644653
seq_printf(s, "Bit 19: WWAN is blocked: %lu\n",
645654
(status & BIT(19)) >> 19);
655+
seq_printf(s, "Bit 20: UWB is blocked: %lu\n",
656+
(status & BIT(20)) >> 20);
657+
seq_printf(s, "Bit 21: WiGig is blocked: %lu\n",
658+
(status & BIT(21)) >> 21);
646659

647660
seq_printf(s, "\nhwswitch_state:\t0x%X\n", hwswitch_state);
648661
seq_printf(s, "Bit 0 : Wifi controlled by switch: %lu\n",
@@ -651,6 +664,10 @@ static int dell_debugfs_show(struct seq_file *s, void *data)
651664
(hwswitch_state & BIT(1)) >> 1);
652665
seq_printf(s, "Bit 2 : WWAN controlled by switch: %lu\n",
653666
(hwswitch_state & BIT(2)) >> 2);
667+
seq_printf(s, "Bit 3 : UWB controlled by switch: %lu\n",
668+
(hwswitch_state & BIT(3)) >> 3);
669+
seq_printf(s, "Bit 4 : WiGig controlled by switch: %lu\n",
670+
(hwswitch_state & BIT(4)) >> 4);
654671
seq_printf(s, "Bit 7 : Wireless switch config locked: %lu\n",
655672
(hwswitch_state & BIT(7)) >> 7);
656673
seq_printf(s, "Bit 8 : Wifi locator enabled: %lu\n",

0 commit comments

Comments
 (0)