diff options
| author | H. Peter Anvin <hpa@linux.intel.com> | 2012-01-19 15:56:50 -0500 |
|---|---|---|
| committer | H. Peter Anvin <hpa@linux.intel.com> | 2012-01-19 15:56:50 -0500 |
| commit | 282f445a779ed76fca9884fe377bf56a3088b208 (patch) | |
| tree | d9abcf526baee0100672851e0a8894c19e762a39 /include/linux/input | |
| parent | 68f30fbee19cc67849b9fa8e153ede70758afe81 (diff) | |
| parent | 90a4c0f51e8e44111a926be6f4c87af3938a79c3 (diff) | |
Merge remote-tracking branch 'linus/master' into x86/urgent
Diffstat (limited to 'include/linux/input')
| -rw-r--r-- | include/linux/input/auo-pixcir-ts.h | 56 | ||||
| -rw-r--r-- | include/linux/input/gp2ap002a00f.h | 22 | ||||
| -rw-r--r-- | include/linux/input/gpio_tilt.h | 73 | ||||
| -rw-r--r-- | include/linux/input/pixcir_ts.h | 10 | ||||
| -rw-r--r-- | include/linux/input/samsung-keypad.h | 43 | ||||
| -rw-r--r-- | include/linux/input/tca8418_keypad.h | 44 |
6 files changed, 248 insertions, 0 deletions
diff --git a/include/linux/input/auo-pixcir-ts.h b/include/linux/input/auo-pixcir-ts.h new file mode 100644 index 000000000000..75d4be717714 --- /dev/null +++ b/include/linux/input/auo-pixcir-ts.h | |||
| @@ -0,0 +1,56 @@ | |||
| 1 | /* | ||
| 2 | * Driver for AUO in-cell touchscreens | ||
| 3 | * | ||
| 4 | * Copyright (c) 2011 Heiko Stuebner <heiko@sntech.de> | ||
| 5 | * | ||
| 6 | * based on auo_touch.h from Dell Streak kernel | ||
| 7 | * | ||
| 8 | * Copyright (c) 2008 QUALCOMM Incorporated. | ||
| 9 | * Copyright (c) 2008 QUALCOMM USA, INC. | ||
| 10 | * | ||
| 11 | * | ||
| 12 | * This software is licensed under the terms of the GNU General Public | ||
| 13 | * License version 2, as published by the Free Software Foundation, and | ||
| 14 | * may be copied, distributed, and modified under those terms. | ||
| 15 | * | ||
| 16 | * This program is distributed in the hope that it will be useful, | ||
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 19 | * GNU General Public License for more details. | ||
| 20 | * | ||
| 21 | */ | ||
| 22 | |||
| 23 | #ifndef __AUO_PIXCIR_TS_H__ | ||
| 24 | #define __AUO_PIXCIR_TS_H__ | ||
| 25 | |||
| 26 | /* | ||
| 27 | * Interrupt modes: | ||
| 28 | * periodical: interrupt is asserted periodicaly | ||
| 29 | * compare coordinates: interrupt is asserted when coordinates change | ||
| 30 | * indicate touch: interrupt is asserted during touch | ||
| 31 | */ | ||
| 32 | #define AUO_PIXCIR_INT_PERIODICAL 0x00 | ||
| 33 | #define AUO_PIXCIR_INT_COMP_COORD 0x01 | ||
| 34 | #define AUO_PIXCIR_INT_TOUCH_IND 0x02 | ||
| 35 | |||
| 36 | /* | ||
| 37 | * @gpio_int interrupt gpio | ||
| 38 | * @int_setting one of AUO_PIXCIR_INT_* | ||
| 39 | * @init_hw hardwarespecific init | ||
| 40 | * @exit_hw hardwarespecific shutdown | ||
| 41 | * @x_max x-resolution | ||
| 42 | * @y_max y-resolution | ||
| 43 | */ | ||
| 44 | struct auo_pixcir_ts_platdata { | ||
| 45 | int gpio_int; | ||
| 46 | |||
| 47 | int int_setting; | ||
| 48 | |||
| 49 | void (*init_hw)(struct i2c_client *); | ||
| 50 | void (*exit_hw)(struct i2c_client *); | ||
| 51 | |||
| 52 | unsigned int x_max; | ||
| 53 | unsigned int y_max; | ||
| 54 | }; | ||
| 55 | |||
| 56 | #endif | ||
diff --git a/include/linux/input/gp2ap002a00f.h b/include/linux/input/gp2ap002a00f.h new file mode 100644 index 000000000000..aad2fd44a61a --- /dev/null +++ b/include/linux/input/gp2ap002a00f.h | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | #ifndef _GP2AP002A00F_H_ | ||
| 2 | #define _GP2AP002A00F_H_ | ||
| 3 | |||
| 4 | #include <linux/i2c.h> | ||
| 5 | |||
| 6 | #define GP2A_I2C_NAME "gp2ap002a00f" | ||
| 7 | |||
| 8 | /** | ||
| 9 | * struct gp2a_platform_data - Sharp gp2ap002a00f proximity platform data | ||
| 10 | * @vout_gpio: The gpio connected to the object detected pin (VOUT) | ||
| 11 | * @wakeup: Set to true if the proximity can wake the device from suspend | ||
| 12 | * @hw_setup: Callback for setting up hardware such as gpios and vregs | ||
| 13 | * @hw_shutdown: Callback for properly shutting down hardware | ||
| 14 | */ | ||
| 15 | struct gp2a_platform_data { | ||
| 16 | int vout_gpio; | ||
| 17 | bool wakeup; | ||
| 18 | int (*hw_setup)(struct i2c_client *client); | ||
| 19 | int (*hw_shutdown)(struct i2c_client *client); | ||
| 20 | }; | ||
| 21 | |||
| 22 | #endif | ||
diff --git a/include/linux/input/gpio_tilt.h b/include/linux/input/gpio_tilt.h new file mode 100644 index 000000000000..c1cc52d380e0 --- /dev/null +++ b/include/linux/input/gpio_tilt.h | |||
| @@ -0,0 +1,73 @@ | |||
| 1 | #ifndef _INPUT_GPIO_TILT_H | ||
| 2 | #define _INPUT_GPIO_TILT_H | ||
| 3 | |||
| 4 | /** | ||
| 5 | * struct gpio_tilt_axis - Axis used by the tilt switch | ||
| 6 | * @axis: Constant describing the axis, e.g. ABS_X | ||
| 7 | * @min: minimum value for abs_param | ||
| 8 | * @max: maximum value for abs_param | ||
| 9 | * @fuzz: fuzz value for abs_param | ||
| 10 | * @flat: flat value for abs_param | ||
| 11 | */ | ||
| 12 | struct gpio_tilt_axis { | ||
| 13 | int axis; | ||
| 14 | int min; | ||
| 15 | int max; | ||
| 16 | int fuzz; | ||
| 17 | int flat; | ||
| 18 | }; | ||
| 19 | |||
| 20 | /** | ||
| 21 | * struct gpio_tilt_state - state description | ||
| 22 | * @gpios: bitfield of gpio target-states for the value | ||
| 23 | * @axes: array containing the axes settings for the gpio state | ||
| 24 | * The array indizes must correspond to the axes defined | ||
| 25 | * in platform_data | ||
| 26 | * | ||
| 27 | * This structure describes a supported axis settings | ||
| 28 | * and the necessary gpio-state which represent it. | ||
| 29 | * | ||
| 30 | * The n-th bit in the bitfield describes the state of the n-th GPIO | ||
| 31 | * from the gpios-array defined in gpio_regulator_config below. | ||
| 32 | */ | ||
| 33 | struct gpio_tilt_state { | ||
| 34 | int gpios; | ||
| 35 | int *axes; | ||
| 36 | }; | ||
| 37 | |||
| 38 | /** | ||
| 39 | * struct gpio_tilt_platform_data | ||
| 40 | * @gpios: Array containing the gpios determining the tilt state | ||
| 41 | * @nr_gpios: Number of gpios | ||
| 42 | * @axes: Array of gpio_tilt_axis descriptions | ||
| 43 | * @nr_axes: Number of axes | ||
| 44 | * @states: Array of gpio_tilt_state entries describing | ||
| 45 | * the gpio state for specific tilts | ||
| 46 | * @nr_states: Number of states available | ||
| 47 | * @debounce_interval: debounce ticks interval in msecs | ||
| 48 | * @poll_interval: polling interval in msecs - for polling driver only | ||
| 49 | * @enable: callback to enable the tilt switch | ||
| 50 | * @disable: callback to disable the tilt switch | ||
| 51 | * | ||
| 52 | * This structure contains gpio-tilt-switch configuration | ||
| 53 | * information that must be passed by platform code to the | ||
| 54 | * gpio-tilt input driver. | ||
| 55 | */ | ||
| 56 | struct gpio_tilt_platform_data { | ||
| 57 | struct gpio *gpios; | ||
| 58 | int nr_gpios; | ||
| 59 | |||
| 60 | struct gpio_tilt_axis *axes; | ||
| 61 | int nr_axes; | ||
| 62 | |||
| 63 | struct gpio_tilt_state *states; | ||
| 64 | int nr_states; | ||
| 65 | |||
| 66 | int debounce_interval; | ||
| 67 | |||
| 68 | unsigned int poll_interval; | ||
| 69 | int (*enable)(struct device *dev); | ||
| 70 | void (*disable)(struct device *dev); | ||
| 71 | }; | ||
| 72 | |||
| 73 | #endif | ||
diff --git a/include/linux/input/pixcir_ts.h b/include/linux/input/pixcir_ts.h new file mode 100644 index 000000000000..7163d91c0373 --- /dev/null +++ b/include/linux/input/pixcir_ts.h | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #ifndef _PIXCIR_I2C_TS_H | ||
| 2 | #define _PIXCIR_I2C_TS_H | ||
| 3 | |||
| 4 | struct pixcir_ts_platform_data { | ||
| 5 | int (*attb_read_val)(void); | ||
| 6 | int x_max; | ||
| 7 | int y_max; | ||
| 8 | }; | ||
| 9 | |||
| 10 | #endif | ||
diff --git a/include/linux/input/samsung-keypad.h b/include/linux/input/samsung-keypad.h new file mode 100644 index 000000000000..f25619bfd8a8 --- /dev/null +++ b/include/linux/input/samsung-keypad.h | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | /* | ||
| 2 | * Samsung Keypad platform data definitions | ||
| 3 | * | ||
| 4 | * Copyright (C) 2010 Samsung Electronics Co.Ltd | ||
| 5 | * Author: Joonyoung Shim <jy0922.shim@samsung.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify it | ||
| 8 | * under the terms of the GNU General Public License as published by the | ||
| 9 | * Free Software Foundation; either version 2 of the License, or (at your | ||
| 10 | * option) any later version. | ||
| 11 | */ | ||
| 12 | |||
| 13 | #ifndef __SAMSUNG_KEYPAD_H | ||
| 14 | #define __SAMSUNG_KEYPAD_H | ||
| 15 | |||
| 16 | #include <linux/input/matrix_keypad.h> | ||
| 17 | |||
| 18 | #define SAMSUNG_MAX_ROWS 8 | ||
| 19 | #define SAMSUNG_MAX_COLS 8 | ||
| 20 | |||
| 21 | /** | ||
| 22 | * struct samsung_keypad_platdata - Platform device data for Samsung Keypad. | ||
| 23 | * @keymap_data: pointer to &matrix_keymap_data. | ||
| 24 | * @rows: number of keypad row supported. | ||
| 25 | * @cols: number of keypad col supported. | ||
| 26 | * @no_autorepeat: disable key autorepeat. | ||
| 27 | * @wakeup: controls whether the device should be set up as wakeup source. | ||
| 28 | * @cfg_gpio: configure the GPIO. | ||
| 29 | * | ||
| 30 | * Initialisation data specific to either the machine or the platform | ||
| 31 | * for the device driver to use or call-back when configuring gpio. | ||
| 32 | */ | ||
| 33 | struct samsung_keypad_platdata { | ||
| 34 | const struct matrix_keymap_data *keymap_data; | ||
| 35 | unsigned int rows; | ||
| 36 | unsigned int cols; | ||
| 37 | bool no_autorepeat; | ||
| 38 | bool wakeup; | ||
| 39 | |||
| 40 | void (*cfg_gpio)(unsigned int rows, unsigned int cols); | ||
| 41 | }; | ||
| 42 | |||
| 43 | #endif /* __SAMSUNG_KEYPAD_H */ | ||
diff --git a/include/linux/input/tca8418_keypad.h b/include/linux/input/tca8418_keypad.h new file mode 100644 index 000000000000..e71a85dc2cbd --- /dev/null +++ b/include/linux/input/tca8418_keypad.h | |||
| @@ -0,0 +1,44 @@ | |||
| 1 | /* | ||
| 2 | * TCA8418 keypad platform support | ||
| 3 | * | ||
| 4 | * Copyright (C) 2011 Fuel7, Inc. All rights reserved. | ||
| 5 | * | ||
| 6 | * Author: Kyle Manna <kyle.manna@fuel7.com> | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or | ||
| 9 | * modify it under the terms of the GNU General Public | ||
| 10 | * License v2 as published by the Free Software Foundation. | ||
| 11 | * | ||
| 12 | * This program is distributed in the hope that it will be useful, | ||
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 15 | * General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU General Public | ||
| 18 | * License along with this program; if not, write to the | ||
| 19 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
| 20 | * Boston, MA 021110-1307, USA. | ||
| 21 | * | ||
| 22 | * If you can't comply with GPLv2, alternative licensing terms may be | ||
| 23 | * arranged. Please contact Fuel7, Inc. (http://fuel7.com/) for proprietary | ||
| 24 | * alternative licensing inquiries. | ||
| 25 | */ | ||
| 26 | |||
| 27 | #ifndef _TCA8418_KEYPAD_H | ||
| 28 | #define _TCA8418_KEYPAD_H | ||
| 29 | |||
| 30 | #include <linux/types.h> | ||
| 31 | #include <linux/input/matrix_keypad.h> | ||
| 32 | |||
| 33 | #define TCA8418_I2C_ADDR 0x34 | ||
| 34 | #define TCA8418_NAME "tca8418_keypad" | ||
| 35 | |||
| 36 | struct tca8418_keypad_platform_data { | ||
| 37 | const struct matrix_keymap_data *keymap_data; | ||
| 38 | unsigned rows; | ||
| 39 | unsigned cols; | ||
| 40 | bool rep; | ||
| 41 | bool irq_is_gpio; | ||
| 42 | }; | ||
| 43 | |||
| 44 | #endif | ||
