Skip to content

Commit 2d24c49

Browse files
khnzMatthew Garrett
authored andcommitted
Fujitsu tablet extras driver
This patch adds support for some of the devices within a wide variety of Fujitsu Tablet Computers, both convertibles and slates. Primarily it allows for the automatic detection of the tablet/notebook mode for convertible tablet pc's, and orientation for docked slates. It also adds support for the application panel buttons usually found next to the tablet screen, and docking station detection for slates. Signed-off-by: Robert Gerlach <khnz@gmx.de> Signed-off-by: Matthew Garrett <mjg@redhat.com>
1 parent c215ab9 commit 2d24c49

File tree

4 files changed

+502
-0
lines changed

4 files changed

+502
-0
lines changed

MAINTAINERS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2845,6 +2845,12 @@ S: Maintained
28452845
F: drivers/media/video/m5mols/
28462846
F: include/media/m5mols.h
28472847

2848+
FUJITSU TABLET EXTRAS
2849+
M: Robert Gerlach <khnz@gmx.de>
2850+
L: platform-driver-x86@vger.kernel.org
2851+
S: Maintained
2852+
F: drivers/platform/x86/fujitsu-tablet.c
2853+
28482854
FUSE: FILESYSTEM IN USERSPACE
28492855
M: Miklos Szeredi <miklos@szeredi.hu>
28502856
L: fuse-devel@lists.sourceforge.net

drivers/platform/x86/Kconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,23 @@ config FUJITSU_LAPTOP_DEBUG
143143

144144
If you are not sure, say N here.
145145

146+
config FUJITSU_TABLET
147+
tristate "Fujitsu Tablet Extras"
148+
depends on ACPI
149+
depends on INPUT
150+
---help---
151+
This is a driver for tablets built by Fujitsu:
152+
153+
* Lifebook P1510/P1610/P1620/Txxxx
154+
* Stylistic ST5xxx
155+
* Possibly other Fujitsu tablet models
156+
157+
It adds support for the panel buttons, docking station detection,
158+
tablet/notebook mode detection for convertible and
159+
orientation detection for docked slates.
160+
161+
If you have a Fujitsu convertible or slate, say Y or M here.
162+
146163
config AMILO_RFKILL
147164
tristate "Fujitsu-Siemens Amilo rfkill support"
148165
depends on RFKILL

drivers/platform/x86/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ obj-$(CONFIG_IDEAPAD_LAPTOP) += ideapad-laptop.o
2424
obj-$(CONFIG_THINKPAD_ACPI) += thinkpad_acpi.o
2525
obj-$(CONFIG_SENSORS_HDAPS) += hdaps.o
2626
obj-$(CONFIG_FUJITSU_LAPTOP) += fujitsu-laptop.o
27+
obj-$(CONFIG_FUJITSU_TABLET) += fujitsu-tablet.o
2728
obj-$(CONFIG_PANASONIC_LAPTOP) += panasonic-laptop.o
2829
obj-$(CONFIG_INTEL_MENLOW) += intel_menlow.o
2930
obj-$(CONFIG_ACPI_WMI) += wmi.o

0 commit comments

Comments
 (0)