diff options
| author | Heiko Stübner <heiko@sntech.de> | 2011-11-29 14:04:09 -0500 |
|---|---|---|
| committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-12-01 02:41:16 -0500 |
| commit | 3bfd5c5baf66e975b0f365a0cda8d75bf2953ebe (patch) | |
| tree | 49517da40dd6071ed9d3acde9fa1ef97d39ede13 | |
| parent | a6c61789c8499381a5fe612f11dc95d0b55e590a (diff) | |
Input: add generic GPIO-tilt driver
There exist tilt switches that simply report their tilt-state via
some gpios. The number and orientation of their axes can vary
depending on the switch used and the build of the device. Also two
or more one-axis switches could be combined to provide multi-dimensional
orientation.
One example of a device using such a switch is the family of Qisda
ebook readers, where the switch provides information about the
landscape / portrait orientation of the device. The example in
Documentation/input/gpio-tilt.txt documents exactly this one-axis
device.
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
| -rw-r--r-- | Documentation/input/gpio-tilt.txt | 103 | ||||
| -rw-r--r-- | drivers/input/misc/Kconfig | 14 | ||||
| -rw-r--r-- | drivers/input/misc/Makefile | 1 | ||||
| -rw-r--r-- | drivers/input/misc/gpio_tilt_polled.c | 213 | ||||
| -rw-r--r-- | include/linux/input/gpio_tilt.h | 73 |
5 files changed, 404 insertions, 0 deletions
diff --git a/Documentation/input/gpio-tilt.txt b/Documentation/input/gpio-tilt.txt new file mode 100644 index 000000000000..06d60c3ff5e7 --- /dev/null +++ b/Documentation/input/gpio-tilt.txt | |||
| @@ -0,0 +1,103 @@ | |||
| 1 | Driver for tilt-switches connected via GPIOs | ||
| 2 | ============================================ | ||
| 3 | |||
| 4 | Generic driver to read data from tilt switches connected via gpios. | ||
| 5 | Orientation can be provided by one or more than one tilt switches, | ||
| 6 | i.e. each tilt switch providing one axis, and the number of axes | ||
| 7 | is also not limited. | ||
| 8 | |||
| 9 | |||
| 10 | Data structures: | ||
| 11 | ---------------- | ||
| 12 | |||
| 13 | The array of struct gpio in the gpios field is used to list the gpios | ||
| 14 | that represent the current tilt state. | ||
| 15 | |||
| 16 | The array of struct gpio_tilt_axis describes the axes that are reported | ||
| 17 | to the input system. The values set therein are used for the | ||
| 18 | input_set_abs_params calls needed to init the axes. | ||
| 19 | |||
| 20 | The array of struct gpio_tilt_state maps gpio states to the corresponding | ||
| 21 | values to report. The gpio state is represented as a bitfield where the | ||
| 22 | bit-index corresponds to the index of the gpio in the struct gpio array. | ||
| 23 | In the same manner the values stored in the axes array correspond to | ||
| 24 | the elements of the gpio_tilt_axis-array. | ||
| 25 | |||
| 26 | |||
| 27 | Example: | ||
| 28 | -------- | ||
| 29 | |||
| 30 | Example configuration for a single TS1003 tilt switch that rotates around | ||
| 31 | one axis in 4 steps and emitts the current tilt via two GPIOs. | ||
| 32 | |||
| 33 | static int sg060_tilt_enable(struct device *dev) { | ||
| 34 | /* code to enable the sensors */ | ||
| 35 | }; | ||
| 36 | |||
| 37 | static void sg060_tilt_disable(struct device *dev) { | ||
| 38 | /* code to disable the sensors */ | ||
| 39 | }; | ||
| 40 | |||
| 41 | static struct gpio sg060_tilt_gpios[] = { | ||
| 42 | { SG060_TILT_GPIO_SENSOR1, GPIOF_IN, "tilt_sensor1" }, | ||
| 43 | { SG060_TILT_GPIO_SENSOR2, GPIOF_IN, "tilt_sensor2" }, | ||
| 44 | }; | ||
| 45 | |||
| 46 | static struct gpio_tilt_state sg060_tilt_states[] = { | ||
| 47 | { | ||
| 48 | .gpios = (0 << 1) | (0 << 0), | ||
| 49 | .axes = (int[]) { | ||
| 50 | 0, | ||
| 51 | }, | ||
| 52 | }, { | ||
| 53 | .gpios = (0 << 1) | (1 << 0), | ||
| 54 | .axes = (int[]) { | ||
| 55 | 1, /* 90 degrees */ | ||
| 56 | }, | ||
| 57 | }, { | ||
| 58 | .gpios = (1 << 1) | (1 << 0), | ||
| 59 | .axes = (int[]) { | ||
| 60 | 2, /* 180 degrees */ | ||
| 61 | }, | ||
| 62 | }, { | ||
| 63 | .gpios = (1 << 1) | (0 << 0), | ||
| 64 | .axes = (int[]) { | ||
| 65 | 3, /* 270 degrees */ | ||
| 66 | }, | ||
| 67 | }, | ||
| 68 | }; | ||
| 69 | |||
| 70 | static struct gpio_tilt_axis sg060_tilt_axes[] = { | ||
| 71 | { | ||
| 72 | .axis = ABS_RY, | ||
| 73 | .min = 0, | ||
| 74 | .max = 3, | ||
| 75 | .fuzz = 0, | ||
| 76 | .flat = 0, | ||
| 77 | }, | ||
| 78 | }; | ||
| 79 | |||
| 80 | static struct gpio_tilt_platform_data sg060_tilt_pdata= { | ||
| 81 | .gpios = sg060_tilt_gpios, | ||
| 82 | .nr_gpios = ARRAY_SIZE(sg060_tilt_gpios), | ||
| 83 | |||
| 84 | .axes = sg060_tilt_axes, | ||
| 85 | .nr_axes = ARRAY_SIZE(sg060_tilt_axes), | ||
| 86 | |||
| 87 | .states = sg060_tilt_states, | ||
| 88 | .nr_states = ARRAY_SIZE(sg060_tilt_states), | ||
| 89 | |||
| 90 | .debounce_interval = 100, | ||
| 91 | |||
| 92 | .poll_interval = 1000, | ||
| 93 | .enable = sg060_tilt_enable, | ||
| 94 | .disable = sg060_tilt_disable, | ||
| 95 | }; | ||
| 96 | |||
| 97 | static struct platform_device sg060_device_tilt = { | ||
| 98 | .name = "gpio-tilt-polled", | ||
| 99 | .id = -1, | ||
| 100 | .dev = { | ||
| 101 | .platform_data = &sg060_tilt_pdata, | ||
| 102 | }, | ||
| 103 | }; | ||
diff --git a/drivers/input/misc/Kconfig b/drivers/input/misc/Kconfig index 22d875fde53a..e53b443d1e33 100644 --- a/drivers/input/misc/Kconfig +++ b/drivers/input/misc/Kconfig | |||
| @@ -179,6 +179,20 @@ config INPUT_APANEL | |||
| 179 | To compile this driver as a module, choose M here: the module will | 179 | To compile this driver as a module, choose M here: the module will |
| 180 | be called apanel. | 180 | be called apanel. |
| 181 | 181 | ||
| 182 | config INPUT_GPIO_TILT_POLLED | ||
| 183 | tristate "Polled GPIO tilt switch" | ||
| 184 | depends on GENERIC_GPIO | ||
| 185 | select INPUT_POLLDEV | ||
| 186 | help | ||
| 187 | This driver implements support for tilt switches connected | ||
| 188 | to GPIO pins that are not capable of generating interrupts. | ||
| 189 | |||
| 190 | The list of gpios to use and the mapping of their states | ||
| 191 | to specific angles is done via platform data. | ||
| 192 | |||
| 193 | To compile this driver as a module, choose M here: the | ||
| 194 | module will be called gpio_tilt_polled. | ||
| 195 | |||
| 182 | config INPUT_IXP4XX_BEEPER | 196 | config INPUT_IXP4XX_BEEPER |
| 183 | tristate "IXP4XX Beeper support" | 197 | tristate "IXP4XX Beeper support" |
| 184 | depends on ARCH_IXP4XX | 198 | depends on ARCH_IXP4XX |
diff --git a/drivers/input/misc/Makefile b/drivers/input/misc/Makefile index a244fc6a781c..90070c1a4ad3 100644 --- a/drivers/input/misc/Makefile +++ b/drivers/input/misc/Makefile | |||
| @@ -23,6 +23,7 @@ obj-$(CONFIG_INPUT_CMA3000_I2C) += cma3000_d0x_i2c.o | |||
| 23 | obj-$(CONFIG_INPUT_COBALT_BTNS) += cobalt_btns.o | 23 | obj-$(CONFIG_INPUT_COBALT_BTNS) += cobalt_btns.o |
| 24 | obj-$(CONFIG_INPUT_DM355EVM) += dm355evm_keys.o | 24 | obj-$(CONFIG_INPUT_DM355EVM) += dm355evm_keys.o |
| 25 | obj-$(CONFIG_HP_SDC_RTC) += hp_sdc_rtc.o | 25 | obj-$(CONFIG_HP_SDC_RTC) += hp_sdc_rtc.o |
| 26 | obj-$(CONFIG_INPUT_GPIO_TILT_POLLED) += gpio_tilt_polled.o | ||
| 26 | obj-$(CONFIG_INPUT_IXP4XX_BEEPER) += ixp4xx-beeper.o | 27 | obj-$(CONFIG_INPUT_IXP4XX_BEEPER) += ixp4xx-beeper.o |
| 27 | obj-$(CONFIG_INPUT_KEYSPAN_REMOTE) += keyspan_remote.o | 28 | obj-$(CONFIG_INPUT_KEYSPAN_REMOTE) += keyspan_remote.o |
| 28 | obj-$(CONFIG_INPUT_KXTJ9) += kxtj9.o | 29 | obj-$(CONFIG_INPUT_KXTJ9) += kxtj9.o |
diff --git a/drivers/input/misc/gpio_tilt_polled.c b/drivers/input/misc/gpio_tilt_polled.c new file mode 100644 index 000000000000..277a0574c199 --- /dev/null +++ b/drivers/input/misc/gpio_tilt_polled.c | |||
| @@ -0,0 +1,213 @@ | |||
| 1 | /* | ||
| 2 | * Driver for tilt switches connected via GPIO lines | ||
| 3 | * not capable of generating interrupts | ||
| 4 | * | ||
| 5 | * Copyright (C) 2011 Heiko Stuebner <heiko@sntech.de> | ||
| 6 | * | ||
| 7 | * based on: drivers/input/keyboard/gpio_keys_polled.c | ||
| 8 | * | ||
| 9 | * Copyright (C) 2007-2010 Gabor Juhos <juhosg@openwrt.org> | ||
| 10 | * Copyright (C) 2010 Nuno Goncalves <nunojpg@gmail.com> | ||
| 11 | * | ||
| 12 | * This program is free software; you can redistribute it and/or modify | ||
| 13 | * it under the terms of the GNU General Public License version 2 as | ||
| 14 | * published by the Free Software Foundation. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include <linux/kernel.h> | ||
| 18 | #include <linux/module.h> | ||
| 19 | #include <linux/init.h> | ||
| 20 | #include <linux/slab.h> | ||
| 21 | #include <linux/input.h> | ||
| 22 | #include <linux/input-polldev.h> | ||
| 23 | #include <linux/ioport.h> | ||
| 24 | #include <linux/platform_device.h> | ||
| 25 | #include <linux/gpio.h> | ||
| 26 | #include <linux/input/gpio_tilt.h> | ||
| 27 | |||
| 28 | #define DRV_NAME "gpio-tilt-polled" | ||
| 29 | |||
| 30 | struct gpio_tilt_polled_dev { | ||
| 31 | struct input_polled_dev *poll_dev; | ||
| 32 | struct device *dev; | ||
| 33 | const struct gpio_tilt_platform_data *pdata; | ||
| 34 | |||
| 35 | int last_state; | ||
| 36 | |||
| 37 | int threshold; | ||
| 38 | int count; | ||
| 39 | }; | ||
| 40 | |||
| 41 | static void gpio_tilt_polled_poll(struct input_polled_dev *dev) | ||
| 42 | { | ||
| 43 | struct | ||
