Commit 4937e2a6 authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input

Pull input updates from Dmitry Torokhov:
 "Updates for the input subsystem.  You will get an new drivers for
  Hyper-V synthetic keyboard and for Neonode zForce touchscreens, plus a
  bunch of driver fixes and cleanups"

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: (49 commits)
  Revert "Input: ALPS - add support for model found on Dell XT2"
  arm: dts: am335x sk: add touchscreen support
  Input: ti_am335x_tsc - fix spelling mistake in TSC/ADC DT binding
  Input: cyttsp4 - replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO
  Input: mma8450 - add missing i2c_set_clientdata() in mma8450_probe()
  Input: mpu3050 - add missing i2c_set_clientdata() in mpu3050_probe()
  Input: tnetv107x-keypad - make irqs signed for error handling
  Input: add driver for Neonode zForce based touchscreens
  Input: sh_keysc - enable the driver on all ARM platforms
  Input: remove a redundant max() call
  Input: mousedev - allow disabling even without CONFIG_EXPERT
  Input: allow deselecting serio drivers even without CONFIG_EXPERT
  Input: i8042 - add PNP modaliases
  Input: evdev - fall back to vmalloc for client event buffer
  Input: cypress_ps2 - do not consider data bad if palm is detected
  Input: cypress_ps2 - remove useless cast
  Input: fix PWM-related undefined reference errors
  Input: ALPS - change secondary device's name
  Input: wacom - not all multi-interface devices support touch
  Input: nspire-keypad - add missing clk_disable_unprepare() on error path
  ...
parents db0b2d01 42249094
...@@ -6,7 +6,7 @@ Required properties: ...@@ -6,7 +6,7 @@ Required properties:
ti,wires: Wires refer to application modes i.e. 4/5/8 wire touchscreen ti,wires: Wires refer to application modes i.e. 4/5/8 wire touchscreen
support on the platform. support on the platform.
ti,x-plate-resistance: X plate resistance ti,x-plate-resistance: X plate resistance
ti,coordiante-readouts: The sequencer supports a total of 16 ti,coordinate-readouts: The sequencer supports a total of 16
programmable steps each step is used to programmable steps each step is used to
read a single coordinate. A single read a single coordinate. A single
readout is enough but multiple reads can readout is enough but multiple reads can
......
...@@ -122,12 +122,14 @@ D-Pad: ...@@ -122,12 +122,14 @@ D-Pad:
BTN_DPAD_* BTN_DPAD_*
Analog buttons are reported as: Analog buttons are reported as:
ABS_HAT0X and ABS_HAT0Y ABS_HAT0X and ABS_HAT0Y
(for ABS values negative is left/up, positive is right/down)
Analog-Sticks: Analog-Sticks:
The left analog-stick is reported as ABS_X, ABS_Y. The right analog stick is The left analog-stick is reported as ABS_X, ABS_Y. The right analog stick is
reported as ABS_RX, ABS_RY. Zero, one or two sticks may be present. reported as ABS_RX, ABS_RY. Zero, one or two sticks may be present.
If analog-sticks provide digital buttons, they are mapped accordingly as If analog-sticks provide digital buttons, they are mapped accordingly as
BTN_THUMBL (first/left) and BTN_THUMBR (second/right). BTN_THUMBL (first/left) and BTN_THUMBR (second/right).
(for ABS values negative is left/up, positive is right/down)
Triggers: Triggers:
Trigger buttons can be available as digital or analog buttons or both. User- Trigger buttons can be available as digital or analog buttons or both. User-
...@@ -138,6 +140,7 @@ Triggers: ...@@ -138,6 +140,7 @@ Triggers:
ABS_HAT2X (right/ZR) and BTN_TL2 or ABS_HAT2Y (left/ZL). ABS_HAT2X (right/ZR) and BTN_TL2 or ABS_HAT2Y (left/ZL).
If only one trigger-button combination is present (upper+lower), they are If only one trigger-button combination is present (upper+lower), they are
reported as "right" triggers (BTN_TR/ABS_HAT1X). reported as "right" triggers (BTN_TR/ABS_HAT1X).
(ABS trigger values start at 0, pressure is reported as positive values)
Menu-Pad: Menu-Pad:
Menu buttons are always digital and are mapped according to their location Menu buttons are always digital and are mapped according to their location
......
...@@ -630,7 +630,7 @@ &tscadc { ...@@ -630,7 +630,7 @@ &tscadc {
tsc { tsc {
ti,wires = <4>; ti,wires = <4>;
ti,x-plate-resistance = <200>; ti,x-plate-resistance = <200>;
ti,coordiante-readouts = <5>; ti,coordinate-readouts = <5>;
ti,wire-config = <0x00 0x11 0x22 0x33>; ti,wire-config = <0x00 0x11 0x22 0x33>;
}; };
......
...@@ -485,3 +485,13 @@ &mcasp1 { ...@@ -485,3 +485,13 @@ &mcasp1 {
tx-num-evt = <1>; tx-num-evt = <1>;
rx-num-evt = <1>; rx-num-evt = <1>;
}; };
&tscadc {
status = "okay";
tsc {
ti,wires = <4>;
ti,x-plate-resistance = <200>;
ti,coordinate-readouts = <5>;
ti,wire-config = <0x00 0x11 0x22 0x33>;
};
};
...@@ -80,7 +80,7 @@ config INPUT_MATRIXKMAP ...@@ -80,7 +80,7 @@ config INPUT_MATRIXKMAP
comment "Userland interfaces" comment "Userland interfaces"
config INPUT_MOUSEDEV config INPUT_MOUSEDEV
tristate "Mouse interface" if EXPERT tristate "Mouse interface"
default y default y
help help
Say Y here if you want your mouse to be accessible as char devices Say Y here if you want your mouse to be accessible as char devices
......
...@@ -18,6 +18,8 @@ ...@@ -18,6 +18,8 @@
#include <linux/poll.h> #include <linux/poll.h>
#include <linux/sched.h> #include <linux/sched.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/vmalloc.h>
#include <linux/mm.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/input/mt.h> #include <linux/input/mt.h>
...@@ -369,7 +371,11 @@ static int evdev_release(struct inode *inode, struct file *file) ...@@ -369,7 +371,11 @@ static int evdev_release(struct inode *inode, struct file *file)
mutex_unlock(&evdev->mutex); mutex_unlock(&evdev->mutex);
evdev_detach_client(evdev, client); evdev_detach_client(evdev, client);
kfree(client);
if (is_vmalloc_addr(client))
vfree(client);
else
kfree(client);
evdev_close_device(evdev); evdev_close_device(evdev);
...@@ -389,12 +395,14 @@ static int evdev_open(struct inode *inode, struct file *file) ...@@ -389,12 +395,14 @@ static int evdev_open(struct inode *inode, struct file *file)
{ {
struct evdev *evdev = container_of(inode->i_cdev, struct evdev, cdev); struct evdev *evdev = container_of(inode->i_cdev, struct evdev, cdev);
unsigned int bufsize = evdev_compute_buffer_size(evdev->handle.dev); unsigned int bufsize = evdev_compute_buffer_size(evdev->handle.dev);
unsigned int size = sizeof(struct evdev_client) +
bufsize * sizeof(struct input_event);
struct evdev_client *client; struct evdev_client *client;
int error; int error;
client = kzalloc(sizeof(struct evdev_client) + client = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
bufsize * sizeof(struct input_event), if (!client)
GFP_KERNEL); client = vzalloc(size);
if (!client) if (!client)
return -ENOMEM; return -ENOMEM;
......
...@@ -2052,7 +2052,7 @@ int input_register_device(struct input_dev *dev) ...@@ -2052,7 +2052,7 @@ int input_register_device(struct input_dev *dev)
if (dev->hint_events_per_packet < packet_size) if (dev->hint_events_per_packet < packet_size)
dev->hint_events_per_packet = packet_size; dev->hint_events_per_packet = packet_size;
dev->max_vals = max(dev->hint_events_per_packet, packet_size) + 2; dev->max_vals = dev->hint_events_per_packet + 2;
dev->vals = kcalloc(dev->max_vals, sizeof(*dev->vals), GFP_KERNEL); dev->vals = kcalloc(dev->max_vals, sizeof(*dev->vals), GFP_KERNEL);
if (!dev->vals) { if (!dev->vals) {
error = -ENOMEM; error = -ENOMEM;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Input core configuration # Input core configuration
# #
menuconfig INPUT_KEYBOARD menuconfig INPUT_KEYBOARD
bool "Keyboards" if EXPERT || !X86 bool "Keyboards"
default y default y
help help
Say Y here, and a list of supported keyboards will be displayed. Say Y here, and a list of supported keyboards will be displayed.
...@@ -67,7 +67,7 @@ config KEYBOARD_ATARI ...@@ -67,7 +67,7 @@ config KEYBOARD_ATARI
module will be called atakbd. module will be called atakbd.
config KEYBOARD_ATKBD config KEYBOARD_ATKBD
tristate "AT keyboard" if EXPERT || !X86 tristate "AT keyboard"
default y default y
select SERIO select SERIO
select SERIO_LIBPS2 select SERIO_LIBPS2
...@@ -525,7 +525,7 @@ config KEYBOARD_SUNKBD ...@@ -525,7 +525,7 @@ config KEYBOARD_SUNKBD
config KEYBOARD_SH_KEYSC config KEYBOARD_SH_KEYSC
tristate "SuperH KEYSC keypad support" tristate "SuperH KEYSC keypad support"
depends on SUPERH || ARCH_SHMOBILE depends on SUPERH || ARM || COMPILE_TEST
help help
Say Y here if you want to use a keypad attached to the KEYSC block Say Y here if you want to use a keypad attached to the KEYSC block
on SuperH processors such as sh7722 and sh7343. on SuperH processors such as sh7722 and sh7343.
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include <linux/gpio_keys.h> #include <linux/gpio_keys.h>
#include <linux/workqueue.h> #include <linux/workqueue.h>
#include <linux/gpio.h> #include <linux/gpio.h>
#include <linux/of.h>
#include <linux/of_platform.h> #include <linux/of_platform.h>
#include <linux/of_gpio.h> #include <linux/of_gpio.h>
#include <linux/spinlock.h> #include <linux/spinlock.h>
......
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <linux/gpio.h> #include <linux/gpio.h>
#include <linux/gpio_keys.h> #include <linux/gpio_keys.h>
#include <linux/of.h>
#include <linux/of_platform.h> #include <linux/of_platform.h>
#include <linux/of_gpio.h> #include <linux/of_gpio.h>
......
...@@ -383,7 +383,7 @@ static struct platform_driver lpc32xx_kscan_driver = { ...@@ -383,7 +383,7 @@ static struct platform_driver lpc32xx_kscan_driver = {
.name = DRV_NAME, .name = DRV_NAME,
.owner = THIS_MODULE, .owner = THIS_MODULE,
.pm = &lpc32xx_kscan_pm_ops, .pm = &lpc32xx_kscan_pm_ops,
.of_match_table = of_match_ptr(lpc32xx_kscan_match), .of_match_table = lpc32xx_kscan_match,
} }
}; };
......
...@@ -143,8 +143,10 @@ static int nspire_keypad_open(struct input_dev *input) ...@@ -143,8 +143,10 @@ static int nspire_keypad_open(struct input_dev *input)
return error; return error;
error = nspire_keypad_chip_init(keypad); error = nspire_keypad_chip_init(keypad);
if (error) if (error) {
clk_disable_unprepare(keypad->clk);
return error; return error;
}
return 0; return 0;
} }
...@@ -267,7 +269,7 @@ static struct platform_driver nspire_keypad_driver = { ...@@ -267,7 +269,7 @@ static struct platform_driver nspire_keypad_driver = {
.driver = { .driver = {
.name = "nspire-keypad", .name = "nspire-keypad",
.owner = THIS_MODULE, .owner = THIS_MODULE,
.of_match_table = of_match_ptr(nspire_keypad_dt_match), .of_match_table = nspire_keypad_dt_match,
}, },
.probe = nspire_keypad_probe, .probe = nspire_keypad_probe,
}; };
......
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#include <linux/err.h> #include <linux/err.h>
#include <linux/input/matrix_keypad.h> #include <linux/input/matrix_keypad.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/of.h>
#include <asm/mach/arch.h> #include <asm/mach/arch.h>
#include <asm/mach/map.h> #include <asm/mach/map.h>
......
...@@ -614,7 +614,7 @@ static int tegra_kbc_probe(struct platform_device *pdev) ...@@ -614,7 +614,7 @@ static int tegra_kbc_probe(struct platform_device *pdev)
unsigned int keymap_rows; unsigned int keymap_rows;
const struct of_device_id *match; const struct of_device_id *match;
match = of_match_device(of_match_ptr(tegra_kbc_of_match), &pdev->dev); match = of_match_device(tegra_kbc_of_match, &pdev->dev);
kbc = devm_kzalloc(&pdev->dev, sizeof(*kbc), GFP_KERNEL); kbc = devm_kzalloc(&pdev->dev, sizeof(*kbc), GFP_KERNEL);
if (!kbc) { if (!kbc) {
......
...@@ -60,8 +60,8 @@ struct keypad_data { ...@@ -60,8 +60,8 @@ struct keypad_data {
struct clk *clk; struct clk *clk;
struct device *dev; struct device *dev;
spinlock_t lock; spinlock_t lock;
u32 irq_press; int irq_press;
u32 irq_release; int irq_release;
int rows, cols, row_shift; int rows, cols, row_shift;
int debounce_ms, active_low; int debounce_ms, active_low;
u32 prev_keys[3]; u32 prev_keys[3];
......
...@@ -156,7 +156,7 @@ config INPUT_MAX8925_ONKEY ...@@ -156,7 +156,7 @@ config INPUT_MAX8925_ONKEY
config INPUT_MAX8997_HAPTIC config INPUT_MAX8997_HAPTIC
tristate "MAXIM MAX8997 haptic controller support" tristate "MAXIM MAX8997 haptic controller support"
depends on HAVE_PWM && MFD_MAX8997 depends on PWM && HAVE_PWM && MFD_MAX8997
select INPUT_FF_MEMLESS select INPUT_FF_MEMLESS
help help
This option enables device driver support for the haptic controller This option enables device driver support for the haptic controller
...@@ -461,7 +461,7 @@ config INPUT_PCF8574 ...@@ -461,7 +461,7 @@ config INPUT_PCF8574
config INPUT_PWM_BEEPER config INPUT_PWM_BEEPER
tristate "PWM beeper support" tristate "PWM beeper support"
depends on HAVE_PWM || PWM depends on PWM && HAVE_PWM
help help
Say Y here to get support for PWM based beeper devices. Say Y here to get support for PWM based beeper devices.
......
...@@ -108,7 +108,6 @@ static int ad714x_spi_remove(struct spi_device *spi) ...@@ -108,7 +108,6 @@ static int ad714x_spi_remove(struct spi_device *spi)
struct ad714x_chip *chip = spi_get_drvdata(spi); struct ad714x_chip *chip = spi_get_drvdata(spi);
ad714x_remove(chip); ad714x_remove(chip);
spi_set_drvdata(spi, NULL);
return 0; return 0;
} }
......
...@@ -131,7 +131,6 @@ static int cobalt_buttons_probe(struct platform_device *pdev) ...@@ -131,7 +131,6 @@ static int cobalt_buttons_probe(struct platform_device *pdev)
err_free_mem: err_free_mem:
input_free_polled_device(poll_dev); input_free_polled_device(poll_dev);
kfree(bdev); kfree(bdev);
dev_set_drvdata(&pdev->dev, NULL);
return error; return error;
} }
...@@ -144,7 +143,6 @@ static int cobalt_buttons_remove(struct platform_device *pdev) ...@@ -144,7 +143,6 @@ static int cobalt_buttons_remove(struct platform_device *pdev)
input_free_polled_device(bdev->poll_dev); input_free_polled_device(bdev->poll_dev);
iounmap(bdev->reg); iounmap(bdev->reg);
kfree(bdev); kfree(bdev);
dev_set_drvdata(dev, NULL);
return 0; return 0;
} }
......
...@@ -168,7 +168,7 @@ static void mma8450_close(struct input_polled_dev *dev) ...@@ -168,7 +168,7 @@ static void mma8450_close(struct input_polled_dev *dev)
* I2C init/probing/exit functions * I2C init/probing/exit functions
*/ */
static int mma8450_probe(struct i2c_client *c, static int mma8450_probe(struct i2c_client *c,
const struct i2c_device_id *id) const struct i2c_device_id *id)
{ {
struct input_polled_dev *idev; struct input_polled_dev *idev;
struct mma8450 *m; struct mma8450 *m;
...@@ -204,6 +204,8 @@ static int mma8450_probe(struct i2c_client *c, ...@@ -204,6 +204,8 @@ static int mma8450_probe(struct i2c_client *c,
goto err_free_mem; goto err_free_mem;
} }
i2c_set_clientdata(c, m);
return 0; return 0;
err_free_mem: err_free_mem:
......
...@@ -383,6 +383,7 @@ static int mpu3050_probe(struct i2c_client *client, ...@@ -383,6 +383,7 @@ static int mpu3050_probe(struct i2c_client *client,
pm_runtime_enable(&client->dev); pm_runtime_enable(&client->dev);
pm_runtime_set_autosuspend_delay(&client->dev, MPU3050_AUTO_DELAY); pm_runtime_set_autosuspend_delay(&client->dev, MPU3050_AUTO_DELAY);
i2c_set_clientdata(client, sensor);
return 0; return 0;
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#include <linux/input.h> #include <linux/input.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/of.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <linux/pwm.h> #include <linux/pwm.h>
#include <linux/slab.h> #include <linux/slab.h>
......
...@@ -87,7 +87,6 @@ static int rb532_button_remove(struct platform_device *pdev) ...@@ -87,7 +87,6 @@ static int rb532_button_remove(struct platform_device *pdev)
input_unregister_polled_device(poll_dev); input_unregister_polled_device(poll_dev);
input_free_polled_device(poll_dev); input_free_polled_device(poll_dev);
dev_set_drvdata(&pdev->dev, NULL);
return 0; return 0;
} }
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include <linux/gpio.h> #include <linux/gpio.h>
#include <linux/rotary_encoder.h> #include <linux/rotary_encoder.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/of.h>
#include <linux/of_platform.h> #include <linux/of_platform.h>
#include <linux/of_gpio.h> #include <linux/of_gpio.h>
......
...@@ -153,7 +153,7 @@ static struct platform_driver sirfsoc_pwrc_driver = { ...@@ -153,7 +153,7 @@ static struct platform_driver sirfsoc_pwrc_driver = {
.name = "sirfsoc-pwrc", .name = "sirfsoc-pwrc",
.owner = THIS_MODULE, .owner = THIS_MODULE,
.pm = &sirfsoc_pwrc_pm_ops, .pm = &sirfsoc_pwrc_pm_ops,
.of_match_table = of_match_ptr(sirfsoc_pwrc_of_match), .of_match_table = sirfsoc_pwrc_of_match,
} }
}; };
......
...@@ -430,20 +430,30 @@ static int uinput_setup_device(struct uinput_device *udev, ...@@ -430,20 +430,30 @@ static int uinput_setup_device(struct uinput_device *udev,
return retval; return retval;
} }
static ssize_t uinput_inject_event(struct uinput_device *udev, static ssize_t uinput_inject_events(struct uinput_device *udev,
const char __user *buffer, size_t count) const char __user *buffer, size_t count)
{ {
struct input_event ev; struct input_event ev;
size_t bytes = 0;
if (count < input_event_size()) if (count != 0 && count < input_event_size())
return -EINVAL; return -EINVAL;
if (input_event_from_user(buffer, &ev)) while (bytes + input_event_size() <= count) {
return -EFAULT; /*
* Note that even if some events were fetched successfully
* we are still going to return EFAULT instead of partial
* count to let userspace know that it got it's buffers
* all wrong.
*/
if (input_event_from_user(buffer + bytes, &ev))
return -EFAULT;
input_event(udev->dev, ev.type, ev.code, ev.value); input_event(udev->dev, ev.type, ev.code, ev.value);
bytes += input_event_size();
}
return input_event_size(); return bytes;
} }
static ssize_t uinput_write(struct file *file, const char __user *buffer, static ssize_t uinput_write(struct file *file, const char __user *buffer,
...@@ -460,7 +470,7 @@ static ssize_t uinput_write(struct file *file, const char __user *buffer, ...@@ -460,7 +470,7 @@ static ssize_t uinput_write(struct file *file, const char __user *buffer,
return retval; return retval;
retval = udev->state == UIST_CREATED ? retval = udev->state == UIST_CREATED ?
uinput_inject_event(udev, buffer, count) : uinput_inject_events(udev, buffer, count) :
uinput_setup_device(udev, buffer, count); uinput_setup_device(udev, buffer, count);
mutex_unlock(&udev->mutex); mutex_unlock(&udev->mutex);
......
...@@ -103,7 +103,6 @@ static const struct alps_model_info alps_model_data[] = { ...@@ -103,7 +103,6 @@ static const struct alps_model_info alps_model_data[] = {
/* Dell Latitude E5500, E6400, E6500, Precision M4400 */ /* Dell Latitude E5500, E6400, E6500, Precision M4400 */
{ { 0x62, 0x02, 0x14 }, 0x00, ALPS_PROTO_V2, 0xcf, 0xcf, { { 0x62, 0x02, 0x14 }, 0x00, ALPS_PROTO_V2, 0xcf, 0xcf,
ALPS_PASS | ALPS_DUALPOINT | ALPS_PS2_INTERLEAVED }, ALPS_PASS | ALPS_DUALPOINT | ALPS_PS2_INTERLEAVED },
{ { 0x73, 0x00, 0x14 }, 0x00, ALPS_PROTO_V2, 0xcf, 0xcf, ALPS_DUALPOINT }, /* Dell XT2 */
{ { 0x73, 0x02, 0x50 }, 0x00, ALPS_PROTO_V2, 0xcf, 0xcf, ALPS_FOUR_BUTTONS }, /* Dell Vostro 1400 */ { { 0x73, 0x02, 0x50 }, 0x00, ALPS_PROTO_V2, 0xcf, 0xcf, ALPS_FOUR_BUTTONS }, /* Dell Vostro 1400 */
{ { 0x52, 0x01, 0x14 }, 0x00, ALPS_PROTO_V2, 0xff, 0xff, { { 0x52, 0x01, 0x14 }, 0x00, ALPS_PROTO_V2, 0xff, 0xff,
ALPS_PASS | ALPS_DUALPOINT | ALPS_PS2_INTERLEAVED }, /* Toshiba Tecra A11-11L */ ALPS_PASS | ALPS_DUALPOINT | ALPS_PS2_INTERLEAVED }, /* Toshiba Tecra A11-11L */
...@@ -1793,7 +1792,7 @@ int alps_init(struct psmouse *psmouse) ...@@ -1793,7 +1792,7 @@ int alps_init(struct psmouse *psmouse)
snprintf(priv->phys, sizeof(priv->phys), "%s/input1", psmouse->ps2dev.serio->phys); snprintf(priv->phys, sizeof(priv->phys), "%s/input1", psmouse->ps2dev.serio->phys);
dev2->phys = priv->phys; dev2->phys = priv->phys;
dev2->name = (priv->flags & ALPS_DUALPOINT) ? dev2->name = (priv->flags & ALPS_DUALPOINT) ?
"DualPoint Stick" : "PS/2 Mouse"; "DualPoint Stick" : "ALPS PS/2 Device";
dev2->id.bustype = BUS_I8042; dev2->id.bustype = BUS_I8042;
dev2->id.vendor = 0x0002; dev2->id.vendor = 0x0002;
dev2->id.product = PSMOUSE_ALPS; dev2->id.product = PSMOUSE_ALPS;
......
...@@ -439,7 +439,7 @@ static int cypress_get_finger_count(unsigned char header_byte) ...@@ -439,7 +439,7 @@ static int cypress_get_finger_count(unsigned char header_byte)
case 2: return 5; case 2: return 5;
default: default:
/* Invalid contact (e.g. palm). Ignore it. */ /* Invalid contact (e.g. palm). Ignore it. */
return -1; return 0;
} }
} }
...@@ -452,17 +452,10 @@ static int cypress_parse_packet(struct psmouse *psmouse, ...@@ -452,17 +452,10 @@ static int cypress_parse_packet(struct psmouse *psmouse,
{ {
unsigned char *packet = psmouse->packet; unsigned char *packet = psmouse->packet;
unsigned char header_byte = packet[0]; unsigned char header_byte = packet[0];
int contact_cnt;
memset(report_data, 0, sizeof(struct cytp_report_data)); memset(report_data, 0, sizeof(struct cytp_report_data));
contact_cnt = cypress_get_finger_count(header_byte); report_data->contact_cnt = cypress_get_finger_count(header_byte);
if (contact_cnt < 0) /* e.g. palm detect */
return -EINVAL;
report_data->contact_cnt = contact_cnt;
report_data->tap = (header_byte & ABS_MULTIFINGER_TAP) ? 1 : 0; report_data->tap = (header_byte & ABS_MULTIFINGER_TAP) ? 1 : 0;
if (report_data->contact_cnt == 1) { if (report_data->contact_cnt == 1) {
...@@ -535,11 +528,9 @@ static void cypress_process_packet(struct psmouse *psmouse, bool zero_pkt) ...@@ -535,11 +528,9 @@ static void cypress_process_packet(struct psmouse *psmouse, bool zero_pkt)
int slots[CYTP_MAX_MT_SLOTS]; int slots[CYTP_MAX_MT_SLOTS];
int n; int n;
if (cypress_parse_packet(psmouse, cytp, &report_data)) cypress_parse_packet(psmouse, cytp, &report_data);
return;
n = report_data.contact_cnt; n = report_data.contact_cnt;
if (n > CYTP_MAX_MT_SLOTS) if (n > CYTP_MAX_MT_SLOTS)
n = CYTP_MAX_MT_SLOTS; n = CYTP_MAX_MT_SLOTS;
...@@ -605,10 +596,6 @@ static psmouse_ret_t cypress_validate_byte(struct psmouse *psmouse) ...@@ -605,10 +596,6 @@ static psmouse_ret_t cypress_validate_byte(struct psmouse *psmouse)
return PSMOUSE_BAD_DATA; return PSMOUSE_BAD_DATA;
contact_cnt = cypress_get_finger_count(packet[0]); contact_cnt = cypress_get_finger_count(packet[0]);
if (contact_cnt < 0)
return PSMOUSE_BAD_DATA;
if (cytp->mode & CYTP_BIT_ABS_NO_PRESSURE) if (cytp->mode & CYTP_BIT_ABS_NO_PRESSURE)
cypress_set_packet_size(psmouse, contact_cnt == 2 ? 7 : 4); cypress_set_packet_size(psmouse, contact_cnt == 2 ? 7 : 4);
else else
...@@ -679,15 +666,15 @@ int cypress_init(struct psmouse *psmouse) ...@@ -679,15 +666,15 @@ int cypress_init(struct psmouse *psmouse)
{ {
struct cytp_data *cytp; struct cytp_data *cytp;
cytp = (struct cytp_data *)kzalloc(sizeof(struct cytp_data), GFP_KERNEL); cytp = kzalloc(sizeof(struct cytp_data), GFP_KERNEL);
psmouse->private = (void *)cytp; if (!cytp)
if (cytp == NULL)
return -ENOMEM; return -ENOMEM;
cypress_reset(psmouse); psmouse->private = cytp;
psmouse->pktsize = 8; psmouse->pktsize = 8;
cypress_reset(psmouse);
if (cypress_query_hardware(psmouse)) { if (cypress_query_hardware(psmouse)) {
psmouse_err(psmouse, "Unable to query Trackpad hardware.\n"); psmouse_err(psmouse, "Unable to query Trackpad hardware.\n");
goto err_exit; goto err_exit;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Input core configuration # Input core configuration
# #
config SERIO config SERIO
tristate "Serial I/O support" if EXPERT || !X86 tristate "Serial I/O support"
default y default y
help help
Say Yes here if you have any input device that uses serial I/O to Say Yes here if you have any input device that uses serial I/O to
...@@ -19,7 +19,7 @@ config SERIO ...@@ -19,7 +19,7 @@ config SERIO
if SERIO if SERIO
config SERIO_I8042 config SERIO_I8042
tristate "i8042 PC Keyboard controller" if EXPERT || !X86 tristate "i8042 PC Keyboard controller"
default y default y
depends on !PARISC && (!ARM || FOOTBRIDGE_HOST) && \ depends on !PARISC && (!ARM || FOOTBRIDGE_HOST) && \
(!SUPERH || SH_CAYMAN) && !M68K && !BLACKFIN && !S390 && \ (!SUPERH || SH_CAYMAN) && !M68K && !BLACKFIN && !S390 && \
...@@ -170,7 +170,7 @@ config SERIO_MACEPS2 ...@@ -170,7 +170,7 @@ config SERIO_MACEPS2
module will be called maceps2. module will be called maceps2.
config SERIO_LIBPS2 config SERIO_LIBPS2
tristate "PS/2 driver library" if EXPERT tristate "PS/2 driver library"
depends on SERIO_I8042 || SERIO_I8042=n depends on SERIO_I8042 || SERIO_I8042=n
help help
Say Y here if you are using a driver for device connected Say Y here if you are using a driver for device connected
...@@ -266,4 +266,14 @@ config SERIO_OLPC_APSP ...@@ -266,4 +266,14 @@ config SERIO_OLPC_APSP
To compile this driver as a module, choose M here: the module will To compile this driver as a module, choose M here: the module will
be called olpc_apsp. be called olpc_apsp.
config HYPERV_KEYBOARD
tristate "Microsoft Synthetic Keyboard driver"
depends on HYPERV
default HYPERV
help
Select this option to enable the Hyper-V Keyboard driver.
To compile this driver as a module, choose M here: the module will
be called hyperv_keyboard.
endif endif
...@@ -28,3 +28,4 @@ obj-$(CONFIG_SERIO_ALTERA_PS2) += altera_ps2.o ...@@ -28,3 +28,4 @@ obj-$(CONFIG_SERIO_ALTERA_PS2) += altera_ps2.o
obj-$(CONFIG_SERIO_ARC_PS2) += arc_ps2.o obj-$(CONFIG_SERIO_ARC_PS2) += arc_ps2.o
obj-$(CONFIG_SERIO_APBPS2) += apbps2.o obj-$(CONFIG_SERIO_APBPS2) += apbps2.o
obj-$(CONFIG_SERIO_OLPC_APSP) += olpc_apsp.o obj-$(CONFIG_SERIO_OLPC_APSP) += olpc_apsp.o
obj-$(CONFIG_HYPERV_KEYBOARD) += hyperv-keyboard.o
This diff is collapsed.
...@@ -765,6 +765,7 @@ static struct pnp_device_id pnp_kbd_devids[] = { ...@@ -765,6 +765,7 @@ static struct pnp_device_id pnp_kbd_devids[] = {
{ .id = "CPQA0D7", .driver_data = 0 }, { .id = "CPQA0D7", .driver_data = 0 },
{ .id = "", }, { .id = "", },
}; };
MODULE_DEVICE_TABLE(pnp, pnp_kbd_devids);
static struct pnp_driver i8042_pnp_kbd_driver = { static struct pnp_driver i8042_pnp_kbd_driver = {
.name = "i8042 kbd", .name = "i8042 kbd",
...@@ -786,6 +787,7 @@ static struct pnp_device_id pnp_aux_devids[] = { ...@@ -786,6 +787,7 @@ static struct pnp_device_id pnp_aux_devids[] = {
{ .id = "SYN0801", .driver_data = 0 }, { .id = "SYN0801", .driver_data = 0 },
{ .id = "", }, { .id = "", },
}; };
MODULE_DEVICE_TABLE(pnp, pnp_aux_devids);
static struct pnp_driver i8042_pnp_aux_driver = { static struct pnp_driver i8042_pnp_aux_driver = {
.name = "i8042 aux", .name = "i8042 aux",
......
...@@ -524,9 +524,6 @@ static int wacom_set_device_mode(struct usb_interface *intf, int report_id, int ...@@ -524,9 +524,6 @@ static int wacom_set_device_mode(struct usb_interface *intf, int report_id, int
error = wacom_set_report(intf, WAC_HID_FEATURE_REPORT, error = wacom_set_report(intf, WAC_HID_FEATURE_REPORT,
report_id, rep_data, length, 1); report_id, rep_data, length, 1);
if (error >= 0)
error = wacom_get_report(intf, WAC_HID_FEATURE_REPORT,
report_id, rep_data, length, 1);
} while ((error < 0 || rep_data[1] != mode) && limit++ < WAC_MSG_RETRIES); } while ((error < 0 || rep_data[1] != mode) && limit++ < WAC_MSG_RETRIES);
kfree(rep_data); kfree(rep_data);
...@@ -548,7 +545,7 @@ static int wacom_query_tablet_data(struct usb_interface *intf, struct wacom_feat ...@@ -548,7 +545,7 @@ static int wacom_query_tablet_data(struct usb_interface *intf, struct wacom_feat
/* MT Tablet PC touch */ /* MT Tablet PC touch */
return wacom_set_device_mode(intf, 3, 4, 4); return wacom_set_device_mode(intf, 3, 4, 4);
} }
else if (features->type == WACOM_24HDT) { else if (features->type == WACOM_24HDT || features->type == CINTIQ_HYBRID) {
return wacom_set_device_mode(intf, 18, 3, 2); return wacom_set_device_mode(intf, 18, 3, 2);
} }
} else if (features->device_type == BTN_TOOL_PEN) { } else if (features->device_type == BTN_TOOL_PEN) {
...@@ -719,7 +716,7 @@ static int wacom_led_control(struct wacom *wacom) ...@@ -719,7 +716,7 @@ static int wacom_led_control(struct wacom *wacom)
return -ENOMEM; return -ENOMEM;
if (wacom->wacom_wac.features.type >= INTUOS5S && if (wacom->wacom_wac.features.type >= INTUOS5S &&
wacom->wacom_wac.features.type <= INTUOS5L) { wacom->wacom_wac.features.type <= INTUOSPL) {
/* /*
* Touch Ring and crop mark LED luminance may take on * Touch Ring and crop mark LED luminance may take on
* one of four values: * one of four values:
...@@ -981,14 +978,20 @@ static int wacom_initialize_leds(struct wacom *wacom) ...@@ -981,14 +978,20 @@ static int wacom_initialize_leds(struct wacom *wacom)
case INTUOS5S: case INTUOS5S:
case INTUOS5: case INTUOS5:
case INTUOS5L: case INTUOS5L:
wacom->led.select[0] = 0; case INTUOSPS:
wacom->led.select[1] = 0; case INTUOSPM:
wacom->led.llv = 32; case INTUOSPL:
wacom->led.hlv = 0; if (wacom->wacom_wac.features.device_type == BTN_TOOL_PEN) {
wacom->led.img_lum = 0; wacom->led.select[0] = 0;
wacom->led.select[1] = 0;
error = sysfs_create_group(&wacom->intf->dev.kobj, wacom->led.llv = 32;
&intuos5_led_attr_group); wacom->led.hlv = 0;
wacom->led.img_lum = 0;
error = sysfs_create_group(&wacom->intf->dev.kobj,
&intuos5_led_attr_group);
} else
return 0;
break; break;
default: default:
...@@ -1024,8 +1027,12 @@ static void wacom_destroy_leds(struct wacom *wacom) ...@@ -1024,8 +1027,12 @@ static void wacom_destroy_leds(struct wacom *wacom)
case INTUOS5S: case INTUOS5S:
case INTUOS5: case INTUOS5:
case INTUOS5L: case INTUOS5L:
sysfs_remove_group(&wacom->intf->dev.kobj, case INTUOSPS:
&intuos5_led_attr_group); case INTUOSPM:
case INTUOSPL:
if (wacom->wacom_wac.features.device_type == BTN_TOOL_PEN)
sysfs_remove_group(&wacom->intf->dev.kobj,
&intuos5_led_attr_group);
break; break;
} }
} }
...@@ -1185,34 +1192,47 @@ static void wacom_wireless_work(struct work_struct *work) ...@@ -1185,34 +1192,47 @@ static void wacom_wireless_work(struct work_struct *work)
wacom_wac1->features = wacom_wac1->features =
*((struct wacom_features *)id->driver_info); *((struct wacom_features *)id->driver_info);
wacom_wac1->features.device_type = BTN_TOOL_PEN; wacom_wac1->features.device_type = BTN_TOOL_PEN;
snprintf(wacom_wac1->name, WACOM_NAME_MAX, "%s (WL) Pen",
wacom_wac1->features.name);
error = wacom_register_input(wacom1); error = wacom_register_input(wacom1);
if (error) if (error)
goto fail1; goto fail;
/* Touch interface */ /* Touch interface */
wacom_wac2->features = if (wacom_wac1->features.touch_max) {
*((struct wacom_features *)id->driver_info); wacom_wac2->features =
wacom_wac2->features.pktlen = WACOM_PKGLEN_BBTOUCH3; *((struct wacom_features *)id->driver_info);
wacom_wac2->features.device_type = BTN_TOOL_FINGER; wacom_wac2->features.pktlen = WACOM_PKGLEN_BBTOUCH3;
wacom_wac2->features.x_max = wacom_wac2->features.y_max = 4096; wacom_wac2->features.device_type = BTN_TOOL_FINGER;
error = wacom_register_input(wacom2); wacom_wac2->features.x_max = wacom_wac2->features.y_max = 4096;
if (error) if (wacom_wac2->features.touch_max)
goto fail2; snprintf(wacom_wac2->name, WACOM_NAME_MAX,
"%s (WL) Finger",wacom_wac2->features.name);
else
snprintf(wacom_wac2->name, WACOM_NAME_MAX,
"%s (WL) Pad",wacom_wac2->features.name);
error = wacom_register_input(wacom2);
if (error)
goto fail;
}
error = wacom_initialize_battery(wacom); error = wacom_initialize_battery(wacom);
if (error) if (error)
goto fail3; goto fail;
} }
return; return;
fail3: fail:
input_unregister_device(wacom_wac2->input); if (wacom_wac2->input) {
wacom_wac2->input = NULL; input_unregister_device(wacom_wac2->input);
fail2: wacom_wac2->input = NULL;
input_unregister_device(wacom_wac1->input); }
wacom_wac1->input = NULL;
fail1: if (wacom_wac1->input) {
input_unregister_device(wacom_wac1->input);
wacom_wac1->input = NULL;
}
return; return;
} }
...@@ -1302,7 +1322,7 @@ static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *i ...@@ -1302,7 +1322,7 @@ static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *i
* HID descriptor. If this is the touch interface (wMaxPacketSize * HID descriptor. If this is the touch interface (wMaxPacketSize
* of WACOM_PKGLEN_BBTOUCH3), override the table values. * of WACOM_PKGLEN_BBTOUCH3), override the table values.
*/ */
if (features->type >= INTUOS5S && features->type <= INTUOS5L) { if (features->type >= INTUOS5S && features->type <= INTUOSPL) {
if (endpoint->wMaxPacketSize == WACOM_PKGLEN_BBTOUCH3) { if (endpoint->wMaxPacketSize == WACOM_PKGLEN_BBTOUCH3) {
features->device_type = BTN_TOOL_FINGER; features->device_type = BTN_TOOL_FINGER;
features->pktlen = WACOM_PKGLEN_BBTOUCH3; features->pktlen = WACOM_PKGLEN_BBTOUCH3;
...@@ -1329,10 +1349,12 @@ static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *i ...@@ -1329,10 +1349,12 @@ static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *i
struct usb_device *other_dev; struct usb_device *other_dev;
/* Append the device type to the name */ /* Append the device type to the name */
strlcat(wacom_wac->name, if (features->device_type != BTN_TOOL_FINGER)
features->device_type == BTN_TOOL_PEN ? strlcat(wacom_wac->name, " Pen", WACOM_NAME_MAX);
" Pen" : " Finger", else if (features->touch_max)
sizeof(wacom_wac->name)); strlcat(wacom_wac->name, " Finger", WACOM_NAME_MAX);
else
strlcat(wacom_wac->name, " Pad", WACOM_NAME_MAX);
other_dev = wacom_get_sibling(dev, features->oVid, features->oPid); other_dev = wacom_get_sibling(dev, features->oVid, features->oPid);
if (other_dev == NULL || wacom_get_usbdev_data(other_dev) == NULL) if (other_dev == NULL || wacom_get_usbdev_data(other_dev) == NULL)
......
...@@ -427,6 +427,13 @@ static int wacom_intuos_inout(struct wacom_wac *wacom) ...@@ -427,6 +427,13 @@ static int wacom_intuos_inout(struct wacom_wac *wacom)
(features->type == WACOM_21UX2)) (features->type == WACOM_21UX2))
return 1; return 1;
/* Range Report */
if ((data[1] & 0xfe) == 0x20) {
input_report_key(input, BTN_TOUCH, 0);
input_report_abs(input, ABS_PRESSURE, 0);
input_report_abs(input, ABS_DISTANCE, wacom->features.distance_max);
}
/* Exit report */ /* Exit report */
if ((data[1] & 0xfe) == 0x80) { if ((data[1] & 0xfe) == 0x80) {
if (features->quirks == WACOM_QUIRK_MULTI_INPUT) if (features->quirks == WACOM_QUIRK_MULTI_INPUT)
...@@ -477,7 +484,7 @@ static void wacom_intuos_general(struct wacom_wac *wacom) ...@@ -477,7 +484,7 @@ static void wacom_intuos_general(struct wacom_wac *wacom)
/* general pen packet */ /* general pen packet */
if ((data[1] & 0xb8) == 0xa0) { if ((data[1] & 0xb8) == 0xa0) {
t = (data[6] << 2) | ((data[7] >> 6) & 3); t = (data[6] << 2) | ((data[7] >> 6) & 3);
if (features->type >= INTUOS4S && features->type <= WACOM_24HD) { if (features->type >= INTUOS4S && features->type <= CINTIQ_HYBRID) {
t = (t << 1) | (data[1] & 1); t = (t << 1) | (data[1] & 1);
} }
input_report_abs(input, ABS_PRESSURE, t); input_report_abs(input, ABS_PRESSURE, t);
...@@ -621,14 +628,30 @@ static int wacom_intuos_irq(struct wacom_wac *wacom) ...@@ -621,14 +628,30 @@ static int wacom_intuos_irq(struct wacom_wac *wacom)
} else { } else {
input_report_abs(input, ABS_MISC, 0); input_report_abs(input, ABS_MISC, 0);
} }
} else if (features->type >= INTUOS5S && features->type <= INTUOS5L) { } else if (features->type == CINTIQ_HYBRID) {
/*
* Do not send hardware buttons under Android. They
* are already sent to the system through GPIO (and
* have different meaning).
*/
input_report_key(input, BTN_1, (data[4] & 0x01));
input_report_key(input, BTN_2, (data[4] & 0x02));
input_report_key(input, BTN_3, (data[4] & 0x04));
input_report_key(input, BTN_4, (data[4] & 0x08));
input_report_key(input, BTN_5, (data[4] & 0x10)); /* Right */
input_report_key(input, BTN_6, (data[4] & 0x20)); /* Up */
input_report_key(input, BTN_7, (data[4] & 0x40)); /* Left */
input_report_key(input, BTN_8, (data[4] & 0x80)); /* Down */
input_report_key(input, BTN_0, (data[3] & 0x01)); /* Center */
} else if (features->type >= INTUOS5S && features->type <= INTUOSPL) {
int i; int i;
/* Touch ring mode switch has no capacitive sensor */ /* Touch ring mode switch has no capacitive sensor */
input_report_key(input, BTN_0, (data[3] & 0x01)); input_report_key(input, BTN_0, (data[3] & 0x01));
/* /*
* ExpressKeys on Intuos5 have a capacitive sensor in * ExpressKeys on Intuos5/Intuos Pro have a capacitive sensor in
* addition to the mechanical switch. Switch data is * addition to the mechanical switch. Switch data is
* stored in data[4], capacitive data in data[5]. * stored in data[4], capacitive data in data[5].
*/ */
...@@ -716,7 +739,9 @@ static int wacom_intuos_irq(struct wacom_wac *wacom) ...@@ -716,7 +739,9 @@ static int wacom_intuos_irq(struct wacom_wac *wacom)
features->type == INTUOS4 || features->type == INTUOS4 ||
features->type == INTUOS4S || features->type == INTUOS4S ||
features->type == INTUOS5 || features->type == INTUOS5 ||
features->type == INTUOS5S)) { features->type == INTUOS5S ||
features->type == INTUOSPM ||
features->type == INTUOSPS)) {
return 0; return 0;
} }
...@@ -769,8 +794,7 @@ static int wacom_intuos_irq(struct wacom_wac *wacom) ...@@ -769,8 +794,7 @@ static int wacom_intuos_irq(struct wacom_wac *wacom)
} else if (wacom->tool[idx] == BTN_TOOL_MOUSE) { } else if (wacom->tool[idx] == BTN_TOOL_MOUSE) {
/* I4 mouse */ /* I4 mouse */
if ((features->type >= INTUOS4S && features->type <= INTUOS4L) || if (features->type >= INTUOS4S && features->type <= INTUOSPL) {
(features->type >= INTUOS5S && features->type <= INTUOS5L)) {
input_report_key(input, BTN_LEFT, data[6] & 0x01); input_report_key(input, BTN_LEFT, data[6] & 0x01);
input_report_key(input, BTN_MIDDLE, data[6] & 0x02); input_report_key(input, BTN_MIDDLE, data[6] & 0x02);
input_report_key(input, BTN_RIGHT, data[6] & 0x04); input_report_key(input, BTN_RIGHT, data[6] & 0x04);
...@@ -797,7 +821,8 @@ static int wacom_intuos_irq(struct wacom_wac *wacom) ...@@ -797,7 +821,8 @@ static int wacom_intuos_irq(struct wacom_wac *wacom)
} }
} }
} else if ((features->type < INTUOS3S || features->type == INTUOS3L || } else if ((features->type < INTUOS3S || features->type == INTUOS3L ||
features->type == INTUOS4L || features->type == INTUOS5L) && features->type == INTUOS4L || features->type == INTUOS5L ||
features->type == INTUOSPL) &&
wacom->tool[idx] == BTN_TOOL_LENS) { wacom->tool[idx] == BTN_TOOL_LENS) {
/* Lens cursor packets */ /* Lens cursor packets */
input_report_key(input, BTN_LEFT, data[8] & 0x01); input_report_key(input, BTN_LEFT, data[8] & 0x01);
...@@ -1107,6 +1132,7 @@ static int wacom_bpt_touch(struct wacom_wac *wacom) ...@@ -1107,6 +1132,7 @@ static int wacom_bpt_touch(struct wacom_wac *wacom)
static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data) static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data)
{ {
struct wacom_features *features = &wacom->features;
struct input_dev *input = wacom->input; struct input_dev *input = wacom->input;
bool touch = data[1] & 0x80; bool touch = data[1] & 0x80;
int slot = input_mt_get_slot_by_key(input, data[0]); int slot = input_mt_get_slot_by_key(input, data[0]);
...@@ -1122,14 +1148,23 @@ static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data) ...@@ -1122,14 +1148,23 @@ static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data)
if (touch) { if (touch) {
int x = (data[2] << 4) | (data[4] >> 4); int x = (data[2] << 4) | (data[4] >> 4);
int y = (data[3] << 4) | (data[4] & 0x0f); int y = (data[3] << 4) | (data[4] & 0x0f);
int a = data[5]; int width, height;
// "a" is a scaled-down area which we assume is roughly if (features->type >= INTUOSPS && features->type <= INTUOSPL) {
// circular and which can be described as: a=(pi*r^2)/C. width = data[5];
int x_res = input_abs_get_res(input, ABS_X); height = data[6];
int y_res = input_abs_get_res(input, ABS_Y); } else {
int width = 2 * int_sqrt(a * WACOM_CONTACT_AREA_SCALE); /*
int height = width * y_res / x_res; * "a" is a scaled-down area which we assume is
* roughly circular and which can be described as:
* a=(pi*r^2)/C.
*/
int a = data[5];
int x_res = input_abs_get_res(input, ABS_X);
int y_res = input_abs_get_res(input, ABS_Y);
width = 2 * int_sqrt(a * WACOM_CONTACT_AREA_SCALE);
height = width * y_res / x_res;
}
input_report_abs(input, ABS_MT_POSITION_X, x); input_report_abs(input, ABS_MT_POSITION_X, x);
input_report_abs(input, ABS_MT_POSITION_Y, y); input_report_abs(input, ABS_MT_POSITION_Y, y);
...@@ -1327,6 +1362,7 @@ void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len) ...@@ -1327,6 +1362,7 @@ void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len)
case WACOM_22HD: case WACOM_22HD:
case WACOM_24HD: case WACOM_24HD:
case DTK: case DTK:
case CINTIQ_HYBRID:
sync = wacom_intuos_irq(wacom_wac); sync = wacom_intuos_irq(wacom_wac);
break; break;
...@@ -1337,6 +1373,9 @@ void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len) ...@@ -1337,6 +1373,9 @@ void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len)
case INTUOS5S: case INTUOS5S:
case INTUOS5: case INTUOS5:
case INTUOS5L: case INTUOS5L:
case INTUOSPS:
case INTUOSPM:
case INTUOSPL:
if (len == WACOM_PKGLEN_BBTOUCH3) if (len == WACOM_PKGLEN_BBTOUCH3)
sync = wacom_bpt3_touch(wacom_wac); sync = wacom_bpt3_touch(wacom_wac);
else else
...@@ -1420,7 +1459,7 @@ void wacom_setup_device_quirks(struct wacom_features *features) ...@@ -1420,7 +1459,7 @@ void wacom_setup_device_quirks(struct wacom_features *features)
/* these device have multiple inputs */ /* these device have multiple inputs */
if (features->type >= WIRELESS || if (features->type >= WIRELESS ||
(features->type >= INTUOS5S && features->type <= INTUOS5L) || (features->type >= INTUOS5S && features->type <= INTUOSPL) ||
(features->oVid && features->oPid)) (features->oVid && features->oPid))
features->quirks |= WACOM_QUIRK_MULTI_INPUT; features->quirks |= WACOM_QUIRK_MULTI_INPUT;
...@@ -1627,6 +1666,8 @@ int wacom_setup_input_capabilities(struct input_dev *input_dev, ...@@ -1627,6 +1666,8 @@ int wacom_setup_input_capabilities(struct input_dev *input_dev,
case INTUOS5: case INTUOS5:
case INTUOS5L: case INTUOS5L:
case INTUOSPM:
case INTUOSPL:
if (features->device_type == BTN_TOOL_PEN) { if (features->device_type == BTN_TOOL_PEN) {
__set_bit(BTN_7, input_dev->keybit); __set_bit(BTN_7, input_dev->keybit);
__set_bit(BTN_8, input_dev->keybit); __set_bit(BTN_8, input_dev->keybit);
...@@ -1634,6 +1675,7 @@ int wacom_setup_input_capabilities(struct input_dev *input_dev, ...@@ -1634,6 +1675,7 @@ int wacom_setup_input_capabilities(struct input_dev *input_dev,
/* fall through */ /* fall through */
case INTUOS5S: case INTUOS5S:
case INTUOSPS:
__set_bit(INPUT_PROP_POINTER, input_dev->propbit); __set_bit(INPUT_PROP_POINTER, input_dev->propbit);
if (features->device_type == BTN_TOOL_PEN) { if (features->device_type == BTN_TOOL_PEN) {
...@@ -1765,6 +1807,24 @@ int wacom_setup_input_capabilities(struct input_dev *input_dev, ...@@ -1765,6 +1807,24 @@ int wacom_setup_input_capabilities(struct input_dev *input_dev,
0, 0); 0, 0);
} }
break; break;
case CINTIQ_HYBRID:
__set_bit(BTN_1, input_dev->keybit);
__set_bit(BTN_2, input_dev->keybit);
__set_bit(BTN_3, input_dev->keybit);
__set_bit(BTN_4, input_dev->keybit);
__set_bit(BTN_5, input_dev->keybit);
__set_bit(BTN_6, input_dev->keybit);
__set_bit(BTN_7, input_dev->keybit);
__set_bit(BTN_8, input_dev->keybit);
__set_bit(BTN_0, input_dev->keybit);
input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0);
__set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
wacom_setup_cintiq(wacom_wac);
break;
} }
return 0; return 0;
} }
...@@ -1952,6 +2012,18 @@ static const struct wacom_features wacom_features_0x29 = ...@@ -1952,6 +2012,18 @@ static const struct wacom_features wacom_features_0x29 =
static const struct wacom_features wacom_features_0x2A = static const struct wacom_features wacom_features_0x2A =
{ "Wacom Intuos5 M", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047, { "Wacom Intuos5 M", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047,
63, INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; 63, INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
static const struct wacom_features wacom_features_0x314 =
{ "Wacom Intuos Pro S", WACOM_PKGLEN_INTUOS, 31496, 19685, 2047,
63, INTUOSPS, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
.touch_max = 16 };
static const struct wacom_features wacom_features_0x315 =
{ "Wacom Intuos Pro M", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047,
63, INTUOSPM, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
.touch_max = 16 };
static const struct wacom_features wacom_features_0x317 =
{ "Wacom Intuos Pro L", WACOM_PKGLEN_INTUOS, 65024, 40640, 2047,
63, INTUOSPL, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
.touch_max = 16 };
static const struct wacom_features wacom_features_0xF4 = static const struct wacom_features wacom_features_0xF4 =
{ "Wacom Cintiq 24HD", WACOM_PKGLEN_INTUOS, 104480, 65600, 2047, { "Wacom Cintiq 24HD", WACOM_PKGLEN_INTUOS, 104480, 65600, 2047,
63, WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; 63, WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
...@@ -2131,6 +2203,13 @@ static const struct wacom_features wacom_features_0x301 = ...@@ -2131,6 +2203,13 @@ static const struct wacom_features wacom_features_0x301 =
static const struct wacom_features wacom_features_0x6004 = static const struct wacom_features wacom_features_0x6004 =
{ "ISD-V4", WACOM_PKGLEN_GRAPHIRE, 12800, 8000, 255, { "ISD-V4", WACOM_PKGLEN_GRAPHIRE, 12800, 8000, 255,
0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
static const struct wacom_features wacom_features_0x0307 =
{ "Wacom ISDv5 307", WACOM_PKGLEN_INTUOS, 59552, 33848, 2047,
63, CINTIQ_HYBRID, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
.oVid = USB_VENDOR_ID_WACOM, .oPid = 0x309 };
static const struct wacom_features wacom_features_0x0309 =
{ "Wacom ISDv5 309", .type = WACOM_24HDT, /* Touch */
.oVid = USB_VENDOR_ID_WACOM, .oPid = 0x0307, .touch_max = 10 };
#define USB_DEVICE_WACOM(prod) \ #define USB_DEVICE_WACOM(prod) \
USB_DEVICE(USB_VENDOR_ID_WACOM, prod), \ USB_DEVICE(USB_VENDOR_ID_WACOM, prod), \
...@@ -2259,12 +2338,17 @@ const struct usb_device_id wacom_ids[] = { ...@@ -2259,12 +2338,17 @@ const struct usb_device_id wacom_ids[] = {
{ USB_DEVICE_WACOM(0x300) }, { USB_DEVICE_WACOM(0x300) },
{ USB_DEVICE_WACOM(0x301) }, { USB_DEVICE_WACOM(0x301) },
{ USB_DEVICE_WACOM(0x304) }, { USB_DEVICE_WACOM(0x304) },
{ USB_DEVICE_DETAILED(0x314, USB_CLASS_HID, 0, 0) },
{ USB_DEVICE_DETAILED(0x315, USB_CLASS_HID, 0, 0) },
{ USB_DEVICE_DETAILED(0x317, USB_CLASS_HID, 0, 0) },
{ USB_DEVICE_WACOM(0x4001) }, { USB_DEVICE_WACOM(0x4001) },
{ USB_DEVICE_WACOM(0x47) }, { USB_DEVICE_WACOM(0x47) },
{ USB_DEVICE_WACOM(0xF4) }, { USB_DEVICE_WACOM(0xF4) },
{ USB_DEVICE_WACOM(0xF8) }, { USB_DEVICE_WACOM(0xF8) },
{ USB_DEVICE_DETAILED(0xF6, USB_CLASS_HID, 0, 0) }, { USB_DEVICE_DETAILED(0xF6, USB_CLASS_HID, 0, 0) },
{ USB_DEVICE_WACOM(0xFA) }, { USB_DEVICE_WACOM(0xFA) },
{ USB_DEVICE_WACOM(0x0307) },
{ USB_DEVICE_DETAILED(0x0309, USB_CLASS_HID, 0, 0) },
{ USB_DEVICE_LENOVO(0x6004) }, { USB_DEVICE_LENOVO(0x6004) },
{ } { }
}; };
......
...@@ -14,6 +14,8 @@ ...@@ -14,6 +14,8 @@
/* maximum packet length for USB devices */ /* maximum packet length for USB devices */
#define WACOM_PKGLEN_MAX 64 #define WACOM_PKGLEN_MAX 64
#define WACOM_NAME_MAX 64
/* packet length for individual models */ /* packet length for individual models */
#define WACOM_PKGLEN_PENPRTN 7 #define WACOM_PKGLEN_PENPRTN 7
#define WACOM_PKGLEN_GRAPHIRE 8 #define WACOM_PKGLEN_GRAPHIRE 8
...@@ -76,10 +78,14 @@ enum { ...@@ -76,10 +78,14 @@ enum {
INTUOS5S, INTUOS5S,
INTUOS5, INTUOS5,
INTUOS5L, INTUOS5L,
INTUOSPS,
INTUOSPM,
INTUOSPL,
WACOM_21UX2, WACOM_21UX2,
WACOM_22HD, WACOM_22HD,
DTK, DTK,
WACOM_24HD, WACOM_24HD,
CINTIQ_HYBRID,
CINTIQ, CINTIQ,
WACOM_BEE, WACOM_BEE,
WACOM_13HD, WACOM_13HD,
...@@ -126,7 +132,7 @@ struct wacom_shared { ...@@ -126,7 +132,7 @@ struct wacom_shared {
}; };
struct wacom_wac { struct wacom_wac {
char name[64]; char name[WACOM_NAME_MAX];
unsigned char *data; unsigned char *data;
int tool[2]; int tool[2];
int id[2]; int id[2];
......
...@@ -919,4 +919,17 @@ config TOUCHSCREEN_TPS6507X ...@@ -919,4 +919,17 @@ config TOUCHSCREEN_TPS6507X
To compile this driver as a module, choose M here: the To compile this driver as a module, choose M here: the
module will be called tps6507x_ts. module will be called tps6507x_ts.
config TOUCHSCREEN_ZFORCE
tristate "Neonode zForce infrared touchscreens"
depends on I2C
depends on GPIOLIB
help
Say Y here if you have a touchscreen using the zforce
infraread technology from Neonode.
If unsure, say N.
To compile this driver as a module, choose M here: the
module will be called zforce_ts.
endif endif
...@@ -75,3 +75,4 @@ obj-$(CONFIG_TOUCHSCREEN_WM97XX_MAINSTONE) += mainstone-wm97xx.o ...@@ -75,3 +75,4 @@ obj-$(CONFIG_TOUCHSCREEN_WM97XX_MAINSTONE) += mainstone-wm97xx.o
obj-$(CONFIG_TOUCHSCREEN_WM97XX_ZYLONITE) += zylonite-wm97xx.o obj-$(CONFIG_TOUCHSCREEN_WM97XX_ZYLONITE) += zylonite-wm97xx.o
obj-$(CONFIG_TOUCHSCREEN_W90X900) += w90p910_ts.o obj-$(CONFIG_TOUCHSCREEN_W90X900) += w90p910_ts.o
obj-$(CONFIG_TOUCHSCREEN_TPS6507X) += tps6507x-ts.o obj-$(CONFIG_TOUCHSCREEN_TPS6507X) += tps6507x-ts.o
obj-$(CONFIG_TOUCHSCREEN_ZFORCE) += zforce_ts.o
...@@ -806,7 +806,6 @@ static int ad7877_probe(struct spi_device *spi) ...@@ -806,7 +806,6 @@ static int ad7877_probe(struct spi_device *spi)
err_free_mem: err_free_mem:
input_free_device(input_dev); input_free_device(input_dev);
kfree(ts); kfree(ts);
spi_set_drvdata(spi, NULL);
return err; return err;
} }
...@@ -823,7 +822,6 @@ static int ad7877_remove(struct spi_device *spi) ...@@ -823,7 +822,6 @@ static int ad7877_remove(struct spi_device *spi)
kfree(ts); kfree(ts);
dev_dbg(&spi->dev, "unregistered touchscreen\n"); dev_dbg(&spi->dev, "unregistered touchscreen\n");
spi_set_drvdata(spi, NULL);
return 0; return 0;
} }
......
...@@ -142,7 +142,6 @@ static int ad7879_spi_remove(struct spi_device *spi) ...@@ -142,7 +142,6 @@ static int ad7879_spi_remove(struct spi_device *spi)
struct ad7879 *ts = spi_get_drvdata(spi); struct ad7879 *ts = spi_get_drvdata(spi);
ad7879_remove(ts); ad7879_remove(ts);
spi_set_drvdata(spi, NULL);
return 0; return 0;
} }
......
...@@ -2113,7 +2113,6 @@ struct cyttsp4 *cyttsp4_probe(const struct cyttsp4_bus_ops *ops, ...@@ -2113,7 +2113,6 @@ struct cyttsp4 *cyttsp4_probe(const struct cyttsp4_bus_ops *ops,
error_request_irq: error_request_irq:
if (cd->cpdata->init) if (cd->cpdata->init)
cd->cpdata->init(cd->cpdata, 0, dev); cd->cpdata->init(cd->cpdata, 0, dev);
dev_set_drvdata(dev, NULL);
error_free_xfer: error_free_xfer:
kfree(cd->xfer_buf); kfree(cd->xfer_buf);
error_free_cd: error_free_cd:
...@@ -2151,7 +2150,6 @@ int cyttsp4_remove(struct cyttsp4 *cd) ...@@ -2151,7 +2150,6 @@ int cyttsp4_remove(struct cyttsp4 *cd)
free_irq(cd->irq, cd); free_irq(cd->irq, cd);
if (cd->cpdata->init) if (cd->cpdata->init)
cd->cpdata->init(cd->cpdata, 0, dev); cd->cpdata->init(cd->cpdata, 0, dev);
dev_set_drvdata(dev, NULL);
cyttsp4_free_si_ptrs(cd); cyttsp4_free_si_ptrs(cd);
kfree(cd); kfree(cd);
return 0; return 0;
......
...@@ -171,10 +171,7 @@ static int cyttsp4_spi_probe(struct spi_device *spi) ...@@ -171,10 +171,7 @@ static int cyttsp4_spi_probe(struct spi_device *spi)
ts = cyttsp4_probe(&cyttsp_spi_bus_ops, &spi->dev, spi->irq, ts = cyttsp4_probe(&cyttsp_spi_bus_ops, &spi->dev, spi->irq,
CY_SPI_DATA_BUF_SIZE); CY_SPI_DATA_BUF_SIZE);
if (IS_ERR(ts)) return PTR_ERR_OR_ZERO(ts);
return PTR_ERR(ts);
return 0;
} }
static int cyttsp4_spi_remove(struct spi_device *spi) static int cyttsp4_spi_remove(struct spi_device *spi)
......
...@@ -273,7 +273,7 @@ static struct i2c_driver egalax_ts_driver = { ...@@ -273,7 +273,7 @@ static struct i2c_driver egalax_ts_driver = {
.name = "egalax_ts", .name = "egalax_ts",
.owner = THIS_MODULE, .owner = THIS_MODULE,
.pm = &egalax_ts_pm_ops, .pm = &egalax_ts_pm_ops,
.of_match_table = of_match_ptr(egalax_ts_dt_ids), .of_match_table = egalax_ts_dt_ids,
}, },
.id_table = egalax_ts_id, .id_table = egalax_ts_id,
.probe = egalax_ts_probe, .probe = egalax_ts_probe,
......
...@@ -186,8 +186,6 @@ static int htcpen_isa_remove(struct device *dev, unsigned int id) ...@@ -186,8 +186,6 @@ static int htcpen_isa_remove(struct device *dev, unsigned int id)
release_region(HTCPEN_PORT_INIT, 1); release_region(HTCPEN_PORT_INIT, 1);
release_region(HTCPEN_PORT_IRQ_CLEAR, 1); release_region(HTCPEN_PORT_IRQ_CLEAR, 1);
dev_set_drvdata(dev, NULL);
return 0; return 0;
} }
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include <linux/input.h> #include <linux/input.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/of.h>
#include <linux/of_gpio.h> #include <linux/of_gpio.h>
#include <linux/pm_qos.h> #include <linux/pm_qos.h>
#include <linux/slab.h> #include <linux/slab.h>
......
...@@ -354,8 +354,15 @@ static int titsc_parse_dt(struct platform_device *pdev, ...@@ -354,8 +354,15 @@ static int titsc_parse_dt(struct platform_device *pdev,
if (err < 0) if (err < 0)
return err; return err;
err = of_property_read_u32(node, "ti,coordiante-readouts", /*
* Try with the new binding first. If it fails, try again with
* bogus, miss-spelled version.
*/
err = of_property_read_u32(node, "ti,coordinate-readouts",
&ts_dev->coordinate_readouts); &ts_dev->coordinate_readouts);
if (err < 0)
err = of_property_read_u32(node, "ti,coordiante-readouts",
&ts_dev->coordinate_readouts);
if (err < 0) if (err < 0)
return err; return err;
...@@ -511,7 +518,7 @@ static struct platform_driver ti_tsc_driver = { ...@@ -511,7 +518,7 @@ static struct platform_driver ti_tsc_driver = {
.name = "TI-am335x-tsc", .name = "TI-am335x-tsc",
.owner = THIS_MODULE, .owner = THIS_MODULE,
.pm = TITSC_PM_OPS, .pm = TITSC_PM_OPS,
.of_match_table = of_match_ptr(ti_tsc_dt_ids), .of_match_table = ti_tsc_dt_ids,
}, },
}; };
module_platform_driver(ti_tsc_driver); module_platform_driver(ti_tsc_driver);
......
...@@ -678,7 +678,6 @@ static int tsc2005_probe(struct spi_device *spi) ...@@ -678,7 +678,6 @@ static int tsc2005_probe(struct spi_device *spi)
err_remove_sysfs: err_remove_sysfs:
sysfs_remove_group(&spi->dev.kobj, &tsc2005_attr_group); sysfs_remove_group(&spi->dev.kobj, &tsc2005_attr_group);
err_clear_drvdata: err_clear_drvdata:
spi_set_drvdata(spi, NULL);
free_irq(spi->irq, ts); free_irq(spi->irq, ts);
err_free_mem: err_free_mem:
input_free_device(input_dev); input_free_device(input_dev);
...@@ -696,7 +695,6 @@ static int tsc2005_remove(struct spi_device *spi) ...@@ -696,7 +695,6 @@ static int tsc2005_remove(struct spi_device *spi)
input_unregister_device(ts->idev); input_unregister_device(ts->idev);
kfree(ts); kfree(ts);
spi_set_drvdata(spi, NULL);
return 0; return 0;
} }
......
This diff is collapsed.
/* drivers/input/touchscreen/zforce.c
*
* Copyright (C) 2012-2013 MundoReader S.L.
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef _LINUX_INPUT_ZFORCE_TS_H
#define _LINUX_INPUT_ZFORCE_TS_H
struct zforce_ts_platdata {
int gpio_int;
int gpio_rst;
unsigned int x_max;
unsigned int y_max;
};
#endif /* _LINUX_INPUT_ZFORCE_TS_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment