Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
Pull input layer updates from Dmitry Torokhov: - a bunch of new drivers (DA9052/53 touchscreenn controller, Synaptics Navpoint, LM8333 keypads, Wacom I2C touhscreen); - updates to existing touchpad drivers (ALPS, Sntelic); - Wacom driver now supports Intuos5; - device-tree bindings in numerous drivers; - other cleanups and fixes. Fix annoying conflict in drivers/input/tablet/wacom_wac.c that I think implies that the input layer device naming is broken, but let's see. I brough it up with Dmitry. * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: (57 commits) Input: matrix-keymap - fix building keymaps Input: spear-keyboard - document DT bindings Input: spear-keyboard - add device tree bindings Input: matrix-keymap - wire up device tree support Input: matrix-keymap - uninline and prepare for device tree support Input: adp5588 - add support for gpio names Input: omap-keypad - dynamically handle register offsets Input: synaptics - fix compile warning MAINTAINERS: adjust input-related patterns Input: ALPS - switch to using input_mt_report_finger_count Input: ALPS - add semi-MT support for v4 protocol Input: Add Synaptics NavPoint (PXA27x SSP/SPI) driver Input: atmel_mxt_ts - dump each message on just 1 line Input: atmel_mxt_ts - do not read extra (checksum) byte Input: atmel_mxt_ts - verify object size in mxt_write_object Input: atmel_mxt_ts - only allow root to update firmware Input: atmel_mxt_ts - use CONFIG_PM_SLEEP Input: sentelic - report device's production serial number Input: tl6040-vibra - Device Tree support Input: evdev - properly handle read/write with count 0 ...
This commit is contained in:
commit
2c01e7bc46
106 changed files with 2848 additions and 1308 deletions
|
|
@ -153,6 +153,19 @@ int __must_check __gameport_register_driver(struct gameport_driver *drv,
|
|||
|
||||
void gameport_unregister_driver(struct gameport_driver *drv);
|
||||
|
||||
/**
|
||||
* module_gameport_driver() - Helper macro for registering a gameport driver
|
||||
* @__gameport_driver: gameport_driver struct
|
||||
*
|
||||
* Helper macro for gameport drivers which do not do anything special in
|
||||
* module init/exit. This eliminates a lot of boilerplate. Each module may
|
||||
* only use this macro once, and calling it replaces module_init() and
|
||||
* module_exit().
|
||||
*/
|
||||
#define module_gameport_driver(__gameport_driver) \
|
||||
module_driver(__gameport_driver, gameport_register_driver, \
|
||||
gameport_unregister_driver)
|
||||
|
||||
#endif /* __KERNEL__ */
|
||||
|
||||
#define GAMEPORT_MODE_DISABLED 0
|
||||
|
|
|
|||
|
|
@ -157,6 +157,7 @@ struct i2c_client; /* forward declaration */
|
|||
|
||||
struct adp5588_gpio_platform_data {
|
||||
int gpio_start; /* GPIO Chip base # */
|
||||
const char *const *names;
|
||||
unsigned irq_base; /* interrupt base # */
|
||||
unsigned pullup_dis_mask; /* Pull-Up Disable Mask */
|
||||
int (*setup)(struct i2c_client *client,
|
||||
|
|
|
|||
24
include/linux/input/lm8333.h
Normal file
24
include/linux/input/lm8333.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
/*
|
||||
* public include for LM8333 keypad driver - same license as driver
|
||||
* Copyright (C) 2012 Wolfram Sang, Pengutronix <w.sang@pengutronix.de>
|
||||
*/
|
||||
|
||||
#ifndef _LM8333_H
|
||||
#define _LM8333_H
|
||||
|
||||
struct lm8333;
|
||||
|
||||
struct lm8333_platform_data {
|
||||
/* Keymap data */
|
||||
const struct matrix_keymap_data *matrix_data;
|
||||
/* Active timeout before enter HALT mode in microseconds */
|
||||
unsigned active_time;
|
||||
/* Debounce interval in microseconds */
|
||||
unsigned debounce_time;
|
||||
};
|
||||
|
||||
extern int lm8333_read8(struct lm8333 *lm8333, u8 cmd);
|
||||
extern int lm8333_write8(struct lm8333 *lm8333, u8 cmd, u8 val);
|
||||
extern int lm8333_read_block(struct lm8333 *lm8333, u8 cmd, u8 len, u8 *buf);
|
||||
|
||||
#endif /* _LM8333_H */
|
||||
|
|
@ -75,54 +75,10 @@ struct matrix_keypad_platform_data {
|
|||
bool no_autorepeat;
|
||||
};
|
||||
|
||||
/**
|
||||
* matrix_keypad_build_keymap - convert platform keymap into matrix keymap
|
||||
* @keymap_data: keymap supplied by the platform code
|
||||
* @row_shift: number of bits to shift row value by to advance to the next
|
||||
* line in the keymap
|
||||
* @keymap: expanded version of keymap that is suitable for use by
|
||||
* matrix keyboad driver
|
||||
* @keybit: pointer to bitmap of keys supported by input device
|
||||
*
|
||||
* This function converts platform keymap (encoded with KEY() macro) into
|
||||
* an array of keycodes that is suitable for using in a standard matrix
|
||||
* keyboard driver that uses row and col as indices.
|
||||
*/
|
||||
static inline void
|
||||
matrix_keypad_build_keymap(const struct matrix_keymap_data *keymap_data,
|
||||
unsigned int row_shift,
|
||||
unsigned short *keymap, unsigned long *keybit)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < keymap_data->keymap_size; i++) {
|
||||
unsigned int key = keymap_data->keymap[i];
|
||||
unsigned int row = KEY_ROW(key);
|
||||
unsigned int col = KEY_COL(key);
|
||||
unsigned short code = KEY_VAL(key);
|
||||
|
||||
keymap[MATRIX_SCAN_CODE(row, col, row_shift)] = code;
|
||||
__set_bit(code, keybit);
|
||||
}
|
||||
__clear_bit(KEY_RESERVED, keybit);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_INPUT_OF_MATRIX_KEYMAP
|
||||
struct matrix_keymap_data *
|
||||
matrix_keyboard_of_fill_keymap(struct device_node *np, const char *propname);
|
||||
|
||||
void matrix_keyboard_of_free_keymap(const struct matrix_keymap_data *kd);
|
||||
#else
|
||||
static inline struct matrix_keymap_data *
|
||||
matrix_keyboard_of_fill_keymap(struct device_node *np, const char *propname)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static inline void
|
||||
matrix_keyboard_of_free_keymap(const struct matrix_keymap_data *kd)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
int matrix_keypad_build_keymap(const struct matrix_keymap_data *keymap_data,
|
||||
const char *keymap_name,
|
||||
unsigned int rows, unsigned int cols,
|
||||
unsigned short *keymap,
|
||||
struct input_dev *input_dev);
|
||||
|
||||
#endif /* _MATRIX_KEYPAD_H */
|
||||
|
|
|
|||
12
include/linux/input/navpoint.h
Normal file
12
include/linux/input/navpoint.h
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
/*
|
||||
* Copyright (C) 2012 Paul Parsons <lost.distance@yahoo.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
* published by the Free Software Foundation.
|
||||
*/
|
||||
|
||||
struct navpoint_platform_data {
|
||||
int port; /* PXA SSP port for pxa_ssp_request() */
|
||||
int gpio; /* GPIO for power on/off */
|
||||
};
|
||||
|
|
@ -96,6 +96,19 @@ int __must_check __serio_register_driver(struct serio_driver *drv,
|
|||
|
||||
void serio_unregister_driver(struct serio_driver *drv);
|
||||
|
||||
/**
|
||||
* module_serio_driver() - Helper macro for registering a serio driver
|
||||
* @__serio_driver: serio_driver struct
|
||||
*
|
||||
* Helper macro for serio drivers which do not do anything special in
|
||||
* module init/exit. This eliminates a lot of boilerplate. Each module
|
||||
* may only use this macro once, and calling it replaces module_init()
|
||||
* and module_exit().
|
||||
*/
|
||||
#define module_serio_driver(__serio_driver) \
|
||||
module_driver(__serio_driver, serio_register_driver, \
|
||||
serio_unregister_driver)
|
||||
|
||||
static inline int serio_write(struct serio *serio, unsigned char data)
|
||||
{
|
||||
if (serio->write)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue