dell-laptop: Show info about WiGig and UWB in debugfs
authorPali Rohár <pali.rohar@gmail.com>
Sun, 21 Jun 2015 08:41:42 +0000 (10:41 +0200)
committerDarren Hart <dvhart@linux.intel.com>
Mon, 22 Jun 2015 19:05:28 +0000 (12:05 -0700)
This commit show additional information about rfkill state in debugfs based
on newly released documentation by Dell.

Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
drivers/platform/x86/dell-laptop.c

index ab89103150b506c9f6503fe5adf5b84904017443..9724613c28a6398497ddab91e5bf85e236688732 100644 (file)
@@ -629,12 +629,21 @@ static int dell_debugfs_show(struct seq_file *s, void *data)
                  (status & BIT(4)) >> 4);
        seq_printf(s, "Bit 5 : Wireless keyboard supported: %lu\n",
                  (status & BIT(5)) >> 5);
+       seq_printf(s, "Bit 6 : UWB supported:               %lu\n",
+                 (status & BIT(6)) >> 6);
+       seq_printf(s, "Bit 7 : WiGig supported:             %lu\n",
+                 (status & BIT(7)) >> 7);
        seq_printf(s, "Bit 8 : Wifi is installed:           %lu\n",
                  (status & BIT(8)) >> 8);
        seq_printf(s, "Bit 9 : Bluetooth is installed:      %lu\n",
                  (status & BIT(9)) >> 9);
        seq_printf(s, "Bit 10: WWAN is installed:           %lu\n",
                  (status & BIT(10)) >> 10);
+       seq_printf(s, "Bit 11: UWB installed:               %lu\n",
+                 (status & BIT(11)) >> 11);
+       seq_printf(s, "Bit 12: WiGig installed:             %lu\n",
+                 (status & BIT(12)) >> 12);
+
        seq_printf(s, "Bit 16: Hardware switch is on:       %lu\n",
                  (status & BIT(16)) >> 16);
        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)
                  (status & BIT(18)) >> 18);
        seq_printf(s, "Bit 19: WWAN is blocked:             %lu\n",
                  (status & BIT(19)) >> 19);
+       seq_printf(s, "Bit 20: UWB is blocked:              %lu\n",
+                 (status & BIT(20)) >> 20);
+       seq_printf(s, "Bit 21: WiGig is blocked:            %lu\n",
+                 (status & BIT(21)) >> 21);
 
        seq_printf(s, "\nhwswitch_state:\t0x%X\n", hwswitch_state);
        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)
                   (hwswitch_state & BIT(1)) >> 1);
        seq_printf(s, "Bit 2 : WWAN controlled by switch:      %lu\n",
                   (hwswitch_state & BIT(2)) >> 2);
+       seq_printf(s, "Bit 3 : UWB controlled by switch:       %lu\n",
+                  (hwswitch_state & BIT(3)) >> 3);
+       seq_printf(s, "Bit 4 : WiGig controlled by switch:     %lu\n",
+                  (hwswitch_state & BIT(4)) >> 4);
        seq_printf(s, "Bit 7 : Wireless switch config locked:  %lu\n",
                   (hwswitch_state & BIT(7)) >> 7);
        seq_printf(s, "Bit 8 : Wifi locator enabled:           %lu\n",