forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lis3: update documentation and comments
Most of the documentation and comments were written when the driver was only supporting one type of chip, only via ACPI/HP. Update the info to the much clearer understanding that we have now. Signed-off-by: Éric Piel <[email protected]> Signed-off-by: Samu Onkalo <[email protected]> Cc: Pavel Machek <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
- Loading branch information
Showing
4 changed files
with
52 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,8 @@ Kernel driver lis3lv02d | |
|
||
Supported chips: | ||
|
||
* STMicroelectronics LIS3LV02DL and LIS3LV02DQ | ||
* STMicroelectronics LIS3LV02DL, LIS3LV02DQ (12 bits precision) | ||
* STMicroelectronics LIS302DL, LIS3L02DQ, LIS331DL (8 bits) | ||
|
||
Authors: | ||
Yan Burman <[email protected]> | ||
|
@@ -13,13 +14,12 @@ Authors: | |
Description | ||
----------- | ||
|
||
This driver provides support for the accelerometer found in various HP | ||
laptops sporting the feature officially called "HP Mobile Data | ||
Protection System 3D" or "HP 3D DriveGuard". It detects automatically | ||
laptops with this sensor. Known models (for now the HP 2133, nc6420, | ||
nc2510, nc8510, nc84x0, nw9440 and nx9420) will have their axis | ||
automatically oriented on standard way (eg: you can directly play | ||
neverball). The accelerometer data is readable via | ||
This driver provides support for the accelerometer found in various HP laptops | ||
sporting the feature officially called "HP Mobile Data Protection System 3D" or | ||
"HP 3D DriveGuard". It detects automatically laptops with this sensor. Known | ||
models (full list can be found in drivers/hwmon/hp_accel.c) will have their | ||
axis automatically oriented on standard way (eg: you can directly play | ||
neverball). The accelerometer data is readable via | ||
/sys/devices/platform/lis3lv02d. | ||
|
||
Sysfs attributes under /sys/devices/platform/lis3lv02d/: | ||
|
@@ -33,12 +33,16 @@ rate - reports the sampling rate of the accelerometer device in HZ | |
This driver also provides an absolute input class device, allowing | ||
the laptop to act as a pinball machine-esque joystick. | ||
|
||
On HP laptops, if the led infrastructure is activated, support for a led | ||
indicating disk protection will be provided as /sys/class/leds/hp::hddprotect. | ||
|
||
Another feature of the driver is misc device called "freefall" that | ||
acts similar to /dev/rtc and reacts on free-fall interrupts received | ||
from the device. It supports blocking operations, poll/select and | ||
fasync operation modes. You must read 1 bytes from the device. The | ||
result is number of free-fall interrupts since the last successful | ||
read (or 255 if number of interrupts would not fit). | ||
read (or 255 if number of interrupts would not fit). See the hpfall.c | ||
file for an example on using the device. | ||
|
||
|
||
Axes orientation | ||
|
@@ -55,7 +59,7 @@ the accelerometer are converted into a "standard" organisation of the axes | |
* If the laptop is put upside-down, Z becomes negative | ||
|
||
If your laptop model is not recognized (cf "dmesg"), you can send an | ||
email to the authors to add it to the database. When reporting a new | ||
email to the maintainer to add it to the database. When reporting a new | ||
laptop, please include the output of "dmidecode" plus the value of | ||
/sys/devices/platform/lis3lv02d/position in these four cases. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters