diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-19 13:56:51 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-19 13:56:51 -0500 |
commit | 6ed3e57fd2ffe63385e0073fe3cde8bf91b4c9fa (patch) | |
tree | 0eb9265c6c04ee0fa3d7bd773ca8d98bf2fb69b2 /Documentation/ABI/testing | |
parent | b11a2783974791d37e44abbb48d41e8c120b5126 (diff) | |
parent | c57c0fa4bc9c2ad023674ef478c25719abaace7d (diff) |
Merge tag 'platform-drivers-x86-v3.20-1' of git://git.infradead.org/users/dvhart/linux-platform-drivers-x86
Pull platform driver update from Darren Hart:
"This includes a significant update to the toshiba_acpi driver,
bringing it to feature parity with the Windows driver, followed by
some needed cleanups.
The other changes are mostly minor updates, quirks, sparse fixes, or
cleanups.
Details:
- toshiba_acpi:
Add support for missing features from the Windows driver, bump the
sysfs version, and clean up the driver.
- thinkpad_acpi:
BIOS string versions, unhandled hkey events.
- msamsung-laptop:
Add native backlight quirk, enable better lid handling.
- intel_scu_ipc:
Read resources from PCI configuration
- other:
Fix sparse warnings, general cleanups"
* tag 'platform-drivers-x86-v3.20-1' of git://git.infradead.org/users/dvhart/linux-platform-drivers-x86: (34 commits)
toshiba_acpi: Cleanup GPL header
toshiba_acpi: Cleanup comment blocks and capitalization
toshiba_acpi: Make use of DEVICE_ATTR_{RO, RW} macros
toshiba_acpi: Drop the toshiba_ prefix from sysfs function names
toshiba_acpi: Move sysfs function and struct declarations further down
Documentation/ABI: Add file describing the sysfs entries for toshiba_acpi
toshiba_acpi: Clean file according to coding style
toshiba_acpi: Bump version number to 0.21
toshiba_acpi: Add support to enable/disable USB 3
toshiba_acpi: Add support for Panel Power ON
toshiba_acpi: Add support for Keyboard functions mode
toshiba_acpi: Add fan entry to sysfs
toshiba_acpi: Add version entry to sysfs
thinkpad_acpi: support new BIOS version string pattern
thinkpad_acpi: unhandled hkey event
toshiba_acpi: Make toshiba_eco_mode_available more robust
classmate-laptop: Fix sparse warning (0 as NULL)
Sony-laptop: Fix sparse warning (make undeclared var static)
thinkpad_acpi.c: Fix sparse warning (make undeclared var static)
samsung-laptop.c: Prefer kstrtoint over single variable sscanf
...
Diffstat (limited to 'Documentation/ABI/testing')
-rw-r--r-- | Documentation/ABI/testing/sysfs-driver-samsung-laptop | 8 | ||||
-rw-r--r-- | Documentation/ABI/testing/sysfs-driver-toshiba_acpi | 114 |
2 files changed, 122 insertions, 0 deletions
diff --git a/Documentation/ABI/testing/sysfs-driver-samsung-laptop b/Documentation/ABI/testing/sysfs-driver-samsung-laptop index 678819a3f8bf..63c1ad0212fc 100644 --- a/Documentation/ABI/testing/sysfs-driver-samsung-laptop +++ b/Documentation/ABI/testing/sysfs-driver-samsung-laptop | |||
@@ -35,3 +35,11 @@ Contact: Corentin Chary <corentin.chary@gmail.com> | |||
35 | Description: Use your USB ports to charge devices, even | 35 | Description: Use your USB ports to charge devices, even |
36 | when your laptop is powered off. | 36 | when your laptop is powered off. |
37 | 1 means enabled, 0 means disabled. | 37 | 1 means enabled, 0 means disabled. |
38 | |||
39 | What: /sys/devices/platform/samsung/lid_handling | ||
40 | Date: December 11, 2014 | ||
41 | KernelVersion: 3.19 | ||
42 | Contact: Julijonas Kikutis <julijonas.kikutis@gmail.com> | ||
43 | Description: Some Samsung laptops handle lid closing quicker and | ||
44 | only handle lid opening with this mode enabled. | ||
45 | 1 means enabled, 0 means disabled. | ||
diff --git a/Documentation/ABI/testing/sysfs-driver-toshiba_acpi b/Documentation/ABI/testing/sysfs-driver-toshiba_acpi new file mode 100644 index 000000000000..ca9c71a531c5 --- /dev/null +++ b/Documentation/ABI/testing/sysfs-driver-toshiba_acpi | |||
@@ -0,0 +1,114 @@ | |||
1 | What: /sys/devices/LNXSYSTM:00/LNXSYBUS:00/TOS{1900,620{0,7,8}}:00/kbd_backlight_mode | ||
2 | Date: June 8, 2014 | ||
3 | KernelVersion: 3.15 | ||
4 | Contact: Azael Avalos <coproscefalo@gmail.com> | ||
5 | Description: This file controls the keyboard backlight operation mode, valid | ||
6 | values are: | ||
7 | * 0x1 -> FN-Z | ||
8 | * 0x2 -> AUTO (also called TIMER) | ||
9 | * 0x8 -> ON | ||
10 | * 0x10 -> OFF | ||
11 | Note that the kernel 3.16 onwards this file accepts all listed | ||
12 | parameters, kernel 3.15 only accepts the first two (FN-Z and | ||
13 | AUTO). | ||
14 | Users: KToshiba | ||
15 | |||
16 | What: /sys/devices/LNXSYSTM:00/LNXSYBUS:00/TOS{1900,620{0,7,8}}:00/kbd_backlight_timeout | ||
17 | Date: June 8, 2014 | ||
18 | KernelVersion: 3.15 | ||
19 | Contact: Azael Avalos <coproscefalo@gmail.com> | ||
20 | Description: This file controls the timeout of the keyboard backlight | ||
21 | whenever the operation mode is set to AUTO (or TIMER), | ||
22 | valid values range from 0-60. | ||
23 | Note that the kernel 3.15 only had support for the first | ||
24 | keyboard type, the kernel 3.16 added support for the second | ||
25 | type and the range accepted for type 2 is 1-60. | ||
26 | See the entry named "kbd_type" | ||
27 | Users: KToshiba | ||
28 | |||
29 | What: /sys/devices/LNXSYSTM:00/LNXSYBUS:00/TOS{1900,620{0,7,8}}:00/position | ||
30 | Date: June 8, 2014 | ||
31 | KernelVersion: 3.15 | ||
32 | Contact: Azael Avalos <coproscefalo@gmail.com> | ||
33 | Description: This file shows the absolute position of the built-in | ||
34 | accelereometer. | ||
35 | |||
36 | What: /sys/devices/LNXSYSTM:00/LNXSYBUS:00/TOS{1900,620{0,7,8}}:00/touchpad | ||
37 | Date: June 8, 2014 | ||
38 | KernelVersion: 3.15 | ||
39 | Contact: Azael Avalos <coproscefalo@gmail.com> | ||
40 | Description: This files controls the status of the touchpad and pointing | ||
41 | stick (if available), valid values are: | ||
42 | * 0 -> OFF | ||
43 | * 1 -> ON | ||
44 | Users: KToshiba | ||
45 | |||
46 | What: /sys/devices/LNXSYSTM:00/LNXSYBUS:00/TOS{1900,620{0,7,8}}:00/available_kbd_modes | ||
47 | Date: August 3, 2014 | ||
48 | KernelVersion: 3.16 | ||
49 | Contact: Azael Avalos <coproscefalo@gmail.com> | ||
50 | Description: This file shows the supported keyboard backlight modes | ||
51 | the system supports, which can be: | ||
52 | * 0x1 -> FN-Z | ||
53 | * 0x2 -> AUTO (also called TIMER) | ||
54 | * 0x8 -> ON | ||
55 | * 0x10 -> OFF | ||
56 | Note that not all keyboard types support the listed modes. | ||
57 | See the entry named "available_kbd_modes" | ||
58 | Users: KToshiba | ||
59 | |||
60 | What: /sys/devices/LNXSYSTM:00/LNXSYBUS:00/TOS{1900,620{0,7,8}}:00/kbd_type | ||
61 | Date: August 3, 2014 | ||
62 | KernelVersion: 3.16 | ||
63 | Contact: Azael Avalos <coproscefalo@gmail.com> | ||
64 | Description: This file shows the current keyboard backlight type, | ||
65 | which can be: | ||
66 | * 1 -> Type 1, supporting modes FN-Z and AUTO | ||
67 | * 2 -> Type 2, supporting modes TIMER, ON and OFF | ||
68 | Users: KToshiba | ||
69 | |||
70 | What: /sys/devices/LNXSYSTM:00/LNXSYBUS:00/TOS{1900,620{0,7,8}}:00/version | ||
71 | Date: February, 2015 | ||
72 | KernelVersion: 3.20 | ||
73 | Contact: Azael Avalos <coproscefalo@gmail.com> | ||
74 | Description: This file shows the current version of the driver | ||
75 | |||
76 | What: /sys/devices/LNXSYSTM:00/LNXSYBUS:00/TOS{1900,620{0,7,8}}:00/fan | ||
77 | Date: February, 2015 | ||
78 | KernelVersion: 3.20 | ||
79 | Contact: Azael Avalos <coproscefalo@gmail.com> | ||
80 | Description: This file controls the state of the internal fan, valid | ||
81 | values are: | ||
82 | * 0 -> OFF | ||
83 | * 1 -> ON | ||
84 | |||
85 | What: /sys/devices/LNXSYSTM:00/LNXSYBUS:00/TOS{1900,620{0,7,8}}:00/kbd_function_keys | ||
86 | Date: February, 2015 | ||
87 | KernelVersion: 3.20 | ||
88 | Contact: Azael Avalos <coproscefalo@gmail.com> | ||
89 | Description: This file controls the Special Functions (hotkeys) operation | ||
90 | mode, valid values are: | ||
91 | * 0 -> Normal Operation | ||
92 | * 1 -> Special Functions | ||
93 | In the "Normal Operation" mode, the F{1-12} keys are as usual | ||
94 | and the hotkeys are accessed via FN-F{1-12}. | ||
95 | In the "Special Functions" mode, the F{1-12} keys trigger the | ||
96 | hotkey and the F{1-12} keys are accessed via FN-F{1-12}. | ||
97 | |||
98 | What: /sys/devices/LNXSYSTM:00/LNXSYBUS:00/TOS{1900,620{0,7,8}}:00/panel_power_on | ||
99 | Date: February, 2015 | ||
100 | KernelVersion: 3.20 | ||
101 | Contact: Azael Avalos <coproscefalo@gmail.com> | ||
102 | Description: This file controls whether the laptop should turn ON whenever | ||
103 | the LID is opened, valid values are: | ||
104 | * 0 -> Disabled | ||
105 | * 1 -> Enabled | ||
106 | |||
107 | What: /sys/devices/LNXSYSTM:00/LNXSYBUS:00/TOS{1900,620{0,7,8}}:00/usb_three | ||
108 | Date: February, 2015 | ||
109 | KernelVersion: 3.20 | ||
110 | Contact: Azael Avalos <coproscefalo@gmail.com> | ||
111 | Description: This file controls whether the USB 3 functionality, valid | ||
112 | values are: | ||
113 | * 0 -> Disabled (Acts as a regular USB 2) | ||
114 | * 1 -> Enabled (Full USB 3 functionality) | ||