You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Merge branch 'next' into for-linus
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
# Input core configuration
|
||||
#
|
||||
menuconfig INPUT_KEYBOARD
|
||||
bool "Keyboards" if EMBEDDED || !X86
|
||||
bool "Keyboards" if EXPERT || !X86
|
||||
default y
|
||||
help
|
||||
Say Y here, and a list of supported keyboards will be displayed.
|
||||
@@ -57,7 +57,7 @@ config KEYBOARD_ATARI
|
||||
module will be called atakbd.
|
||||
|
||||
config KEYBOARD_ATKBD
|
||||
tristate "AT keyboard" if EMBEDDED || !X86
|
||||
tristate "AT keyboard" if EXPERT || !X86
|
||||
default y
|
||||
select SERIO
|
||||
select SERIO_LIBPS2
|
||||
@@ -112,6 +112,16 @@ config KEYBOARD_ATKBD_RDI_KEYCODES
|
||||
right-hand column will be interpreted as the key shown in the
|
||||
left-hand column.
|
||||
|
||||
config KEYBOARD_QT1070
|
||||
tristate "Atmel AT42QT1070 Touch Sensor Chip"
|
||||
depends on I2C
|
||||
help
|
||||
Say Y here if you want to use Atmel AT42QT1070 QTouch
|
||||
Sensor chip as input device.
|
||||
|
||||
To compile this driver as a module, choose M here:
|
||||
the module will be called qt1070
|
||||
|
||||
config KEYBOARD_QT2160
|
||||
tristate "Atmel AT42QT2160 Touch Sensor Chip"
|
||||
depends on I2C && EXPERIMENTAL
|
||||
@@ -468,6 +478,16 @@ config KEYBOARD_SPEAR
|
||||
To compile this driver as a module, choose M here: the
|
||||
module will be called spear-keboard.
|
||||
|
||||
config KEYBOARD_TC3589X
|
||||
tristate "TC3589X Keypad support"
|
||||
depends on MFD_TC3589X
|
||||
help
|
||||
Say Y here if you want to use the keypad controller on
|
||||
TC35892/3 I/O expander.
|
||||
|
||||
To compile this driver as a module, choose M here: the
|
||||
module will be called tc3589x-keypad.
|
||||
|
||||
config KEYBOARD_TNETV107X
|
||||
tristate "TI TNETV107X keypad support"
|
||||
depends on ARCH_DAVINCI_TNETV107X
|
||||
|
||||
@@ -34,6 +34,7 @@ obj-$(CONFIG_KEYBOARD_OMAP4) += omap4-keypad.o
|
||||
obj-$(CONFIG_KEYBOARD_OPENCORES) += opencores-kbd.o
|
||||
obj-$(CONFIG_KEYBOARD_PXA27x) += pxa27x_keypad.o
|
||||
obj-$(CONFIG_KEYBOARD_PXA930_ROTARY) += pxa930_rotary.o
|
||||
obj-$(CONFIG_KEYBOARD_QT1070) += qt1070.o
|
||||
obj-$(CONFIG_KEYBOARD_QT2160) += qt2160.o
|
||||
obj-$(CONFIG_KEYBOARD_SAMSUNG) += samsung-keypad.o
|
||||
obj-$(CONFIG_KEYBOARD_SH_KEYSC) += sh_keysc.o
|
||||
@@ -41,6 +42,7 @@ obj-$(CONFIG_KEYBOARD_SPEAR) += spear-keyboard.o
|
||||
obj-$(CONFIG_KEYBOARD_STMPE) += stmpe-keypad.o
|
||||
obj-$(CONFIG_KEYBOARD_STOWAWAY) += stowaway.o
|
||||
obj-$(CONFIG_KEYBOARD_SUNKBD) += sunkbd.o
|
||||
obj-$(CONFIG_KEYBOARD_TC3589X) += tc3589x-keypad.o
|
||||
obj-$(CONFIG_KEYBOARD_TEGRA) += tegra-kbc.o
|
||||
obj-$(CONFIG_KEYBOARD_TNETV107X) += tnetv107x-keypad.o
|
||||
obj-$(CONFIG_KEYBOARD_TWL4030) += twl4030_keypad.o
|
||||
|
||||
@@ -30,6 +30,7 @@
|
||||
#include <linux/delay.h>
|
||||
#include <linux/input.h>
|
||||
#include <linux/leds.h>
|
||||
#include <linux/pm.h>
|
||||
#include <linux/i2c/lm8323.h>
|
||||
#include <linux/slab.h>
|
||||
|
||||
@@ -802,8 +803,9 @@ static int __devexit lm8323_remove(struct i2c_client *client)
|
||||
* We don't need to explicitly suspend the chip, as it already switches off
|
||||
* when there's no activity.
|
||||
*/
|
||||
static int lm8323_suspend(struct i2c_client *client, pm_message_t mesg)
|
||||
static int lm8323_suspend(struct device *dev)
|
||||
{
|
||||
struct i2c_client *client = to_i2c_client(dev);
|
||||
struct lm8323_chip *lm = i2c_get_clientdata(client);
|
||||
int i;
|
||||
|
||||
@@ -821,8 +823,9 @@ static int lm8323_suspend(struct i2c_client *client, pm_message_t mesg)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int lm8323_resume(struct i2c_client *client)
|
||||
static int lm8323_resume(struct device *dev)
|
||||
{
|
||||
struct i2c_client *client = to_i2c_client(dev);
|
||||
struct lm8323_chip *lm = i2c_get_clientdata(client);
|
||||
int i;
|
||||
|
||||
@@ -839,11 +842,10 @@ static int lm8323_resume(struct i2c_client *client)
|
||||
|
||||
return 0;
|
||||
}
|
||||
#else
|
||||
#define lm8323_suspend NULL
|
||||
#define lm8323_resume NULL
|
||||
#endif
|
||||
|
||||
static SIMPLE_DEV_PM_OPS(lm8323_pm_ops, lm8323_suspend, lm8323_resume);
|
||||
|
||||
static const struct i2c_device_id lm8323_id[] = {
|
||||
{ "lm8323", 0 },
|
||||
{ }
|
||||
@@ -852,11 +854,10 @@ static const struct i2c_device_id lm8323_id[] = {
|
||||
static struct i2c_driver lm8323_i2c_driver = {
|
||||
.driver = {
|
||||
.name = "lm8323",
|
||||
.pm = &lm8323_pm_ops,
|
||||
},
|
||||
.probe = lm8323_probe,
|
||||
.remove = __devexit_p(lm8323_remove),
|
||||
.suspend = lm8323_suspend,
|
||||
.resume = lm8323_resume,
|
||||
.id_table = lm8323_id,
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, lm8323_id);
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
#include <linux/i2c.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/pm.h>
|
||||
#include <linux/input.h>
|
||||
#include <linux/input/matrix_keypad.h>
|
||||
|
||||
@@ -271,8 +272,10 @@ static int __devexit max7359_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PM
|
||||
static int max7359_suspend(struct i2c_client *client, pm_message_t mesg)
|
||||
static int max7359_suspend(struct device *dev)
|
||||
{
|
||||
struct i2c_client *client = to_i2c_client(dev);
|
||||
|
||||
max7359_fall_deepsleep(client);
|
||||
|
||||
if (device_may_wakeup(&client->dev))
|
||||
@@ -281,8 +284,10 @@ static int max7359_suspend(struct i2c_client *client, pm_message_t mesg)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int max7359_resume(struct i2c_client *client)
|
||||
static int max7359_resume(struct device *dev)
|
||||
{
|
||||
struct i2c_client *client = to_i2c_client(dev);
|
||||
|
||||
if (device_may_wakeup(&client->dev))
|
||||
disable_irq_wake(client->irq);
|
||||
|
||||
@@ -291,11 +296,10 @@ static int max7359_resume(struct i2c_client *client)
|
||||
|
||||
return 0;
|
||||
}
|
||||
#else
|
||||
#define max7359_suspend NULL
|
||||
#define max7359_resume NULL
|
||||
#endif
|
||||
|
||||
static SIMPLE_DEV_PM_OPS(max7359_pm, max7359_suspend, max7359_resume);
|
||||
|
||||
static const struct i2c_device_id max7359_ids[] = {
|
||||
{ "max7359", 0 },
|
||||
{ }
|
||||
@@ -305,11 +309,10 @@ MODULE_DEVICE_TABLE(i2c, max7359_ids);
|
||||
static struct i2c_driver max7359_i2c_driver = {
|
||||
.driver = {
|
||||
.name = "max7359",
|
||||
.pm = &max7359_pm,
|
||||
},
|
||||
.probe = max7359_probe,
|
||||
.remove = __devexit_p(max7359_remove),
|
||||
.suspend = max7359_suspend,
|
||||
.resume = max7359_resume,
|
||||
.id_table = max7359_ids,
|
||||
};
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* mcs_touchkey.c - Touchkey driver for MELFAS MCS5000/5080 controller
|
||||
* Touchkey driver for MELFAS MCS5000/5080 controller
|
||||
*
|
||||
* Copyright (C) 2010 Samsung Electronics Co.Ltd
|
||||
* Author: HeungJun Kim <riverful.kim@samsung.com>
|
||||
@@ -19,6 +19,7 @@
|
||||
#include <linux/input.h>
|
||||
#include <linux/irq.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/pm.h>
|
||||
|
||||
/* MCS5000 Touchkey */
|
||||
#define MCS5000_TOUCHKEY_STATUS 0x04
|
||||
@@ -45,6 +46,8 @@ struct mcs_touchkey_chip {
|
||||
};
|
||||
|
||||
struct mcs_touchkey_data {
|
||||
void (*poweron)(bool);
|
||||
|
||||
struct i2c_client *client;
|
||||
struct input_dev *input_dev;
|
||||
struct mcs_touchkey_chip chip;
|
||||
@@ -169,6 +172,11 @@ static int __devinit mcs_touchkey_probe(struct i2c_client *client,
|
||||
if (pdata->cfg_pin)
|
||||
pdata->cfg_pin();
|
||||
|
||||
if (pdata->poweron) {
|
||||
data->poweron = pdata->poweron;
|
||||
data->poweron(true);
|
||||
}
|
||||
|
||||
error = request_threaded_irq(client->irq, NULL, mcs_touchkey_interrupt,
|
||||
IRQF_TRIGGER_FALLING, client->dev.driver->name, data);
|
||||
if (error) {
|
||||
@@ -196,12 +204,57 @@ static int __devexit mcs_touchkey_remove(struct i2c_client *client)
|
||||
struct mcs_touchkey_data *data = i2c_get_clientdata(client);
|
||||
|
||||
free_irq(client->irq, data);
|
||||
if (data->poweron)
|
||||
data->poweron(false);
|
||||
input_unregister_device(data->input_dev);
|
||||
kfree(data);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void mcs_touchkey_shutdown(struct i2c_client *client)
|
||||
{
|
||||
struct mcs_touchkey_data *data = i2c_get_clientdata(client);
|
||||
|
||||
if (data->poweron)
|
||||
data->poweron(false);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PM_SLEEP
|
||||
static int mcs_touchkey_suspend(struct device *dev)
|
||||
{
|
||||
struct mcs_touchkey_data *data = dev_get_drvdata(dev);
|
||||
struct i2c_client *client = data->client;
|
||||
|
||||
/* Disable the work */
|
||||
disable_irq(client->irq);
|
||||
|
||||
/* Finally turn off the power */
|
||||
if (data->poweron)
|
||||
data->poweron(false);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int mcs_touchkey_resume(struct device *dev)
|
||||
{
|
||||
struct mcs_touchkey_data *data = dev_get_drvdata(dev);
|
||||
struct i2c_client *client = data->client;
|
||||
|
||||
/* Enable the device first */
|
||||
if (data->poweron)
|
||||
data->poweron(true);
|
||||
|
||||
/* Enable irq again */
|
||||
enable_irq(client->irq);
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
static SIMPLE_DEV_PM_OPS(mcs_touchkey_pm_ops,
|
||||
mcs_touchkey_suspend, mcs_touchkey_resume);
|
||||
|
||||
static const struct i2c_device_id mcs_touchkey_id[] = {
|
||||
{ "mcs5000_touchkey", MCS5000_TOUCHKEY },
|
||||
{ "mcs5080_touchkey", MCS5080_TOUCHKEY },
|
||||
@@ -213,9 +266,11 @@ static struct i2c_driver mcs_touchkey_driver = {
|
||||
.driver = {
|
||||
.name = "mcs_touchkey",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &mcs_touchkey_pm_ops,
|
||||
},
|
||||
.probe = mcs_touchkey_probe,
|
||||
.remove = __devexit_p(mcs_touchkey_remove),
|
||||
.shutdown = mcs_touchkey_shutdown,
|
||||
.id_table = mcs_touchkey_id,
|
||||
};
|
||||
|
||||
|
||||
@@ -65,7 +65,6 @@ struct omap_kp {
|
||||
|
||||
static DECLARE_TASKLET_DISABLED(kp_tasklet, omap_kp_tasklet, 0);
|
||||
|
||||
static int *keymap;
|
||||
static unsigned int *row_gpios;
|
||||
static unsigned int *col_gpios;
|
||||
|
||||
@@ -162,20 +161,11 @@ static void omap_kp_scan_keypad(struct omap_kp *omap_kp, unsigned char *state)
|
||||
}
|
||||
}
|
||||
|
||||
static inline int omap_kp_find_key(int col, int row)
|
||||
{
|
||||
int i, key;
|
||||
|
||||
key = KEY(col, row, 0);
|
||||
for (i = 0; keymap[i] != 0; i++)
|
||||
if ((keymap[i] & 0xff000000) == key)
|
||||
return keymap[i] & 0x00ffffff;
|
||||
return -1;
|
||||
}
|
||||
|
||||
static void omap_kp_tasklet(unsigned long data)
|
||||
{
|
||||
struct omap_kp *omap_kp_data = (struct omap_kp *) data;
|
||||
unsigned short *keycodes = omap_kp_data->input->keycode;
|
||||
unsigned int row_shift = get_count_order(omap_kp_data->cols);
|
||||
unsigned char new_state[8], changed, key_down = 0;
|
||||
int col, row;
|
||||
int spurious = 0;
|
||||
@@ -199,7 +189,7 @@ static void omap_kp_tasklet(unsigned long data)
|
||||
row, (new_state[col] & (1 << row)) ?
|
||||
"pressed" : "released");
|
||||
#else
|
||||
key = omap_kp_find_key(col, row);
|
||||
key = keycodes[MATRIX_SCAN_CODE(row, col, row_shift)];
|
||||
if (key < 0) {
|
||||
printk(KERN_WARNING
|
||||
"omap-keypad: Spurious key event %d-%d\n",
|
||||
@@ -298,13 +288,18 @@ static int __devinit omap_kp_probe(struct platform_device *pdev)
|
||||
struct input_dev *input_dev;
|
||||
struct omap_kp_platform_data *pdata = pdev->dev.platform_data;
|
||||
int i, col_idx, row_idx, irq_idx, ret;
|
||||
unsigned int row_shift, keycodemax;
|
||||
|
||||
if (!pdata->rows || !pdata->cols || !pdata->keymap) {
|
||||
printk(KERN_ERR "No rows, cols or keymap from pdata\n");
|
||||
if (!pdata->rows || !pdata->cols || !pdata->keymap_data) {
|
||||
printk(KERN_ERR "No rows, cols or keymap_data from pdata\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
omap_kp = kzalloc(sizeof(struct omap_kp), GFP_KERNEL);
|
||||
row_shift = get_count_order(pdata->cols);
|
||||
keycodemax = pdata->rows << row_shift;
|
||||
|
||||
omap_kp = kzalloc(sizeof(struct omap_kp) +
|
||||
keycodemax * sizeof(unsigned short), GFP_KERNEL);
|
||||
input_dev = input_allocate_device();
|
||||
if (!omap_kp || !input_dev) {
|
||||
kfree(omap_kp);
|
||||
@@ -320,7 +315,9 @@ static int __devinit omap_kp_probe(struct platform_device *pdev)
|
||||
if (!cpu_is_omap24xx())
|
||||
omap_writew(1, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT);
|
||||
|
||||
keymap = pdata->keymap;
|
||||
input_dev->keycode = &omap_kp[1];
|
||||
input_dev->keycodesize = sizeof(unsigned short);
|
||||
input_dev->keycodemax = keycodemax;
|
||||
|
||||
if (pdata->rep)
|
||||
__set_bit(EV_REP, input_dev->evbit);
|
||||
@@ -374,8 +371,8 @@ static int __devinit omap_kp_probe(struct platform_device *pdev)
|
||||
|
||||
/* setup input device */
|
||||
__set_bit(EV_KEY, input_dev->evbit);
|
||||
for (i = 0; keymap[i] != 0; i++)
|
||||
__set_bit(keymap[i] & KEY_MAX, input_dev->keybit);
|
||||
matrix_keypad_build_keymap(pdata->keymap_data, row_shift,
|
||||
input_dev->keycode, input_dev->keybit);
|
||||
input_dev->name = "omap-keypad";
|
||||
input_dev->phys = "omap-keypad/input0";
|
||||
input_dev->dev.parent = &pdev->dev;
|
||||
@@ -416,7 +413,7 @@ static int __devinit omap_kp_probe(struct platform_device *pdev)
|
||||
return 0;
|
||||
err5:
|
||||
for (i = irq_idx - 1; i >=0; i--)
|
||||
free_irq(row_gpios[i], 0);
|
||||
free_irq(row_gpios[i], NULL);
|
||||
err4:
|
||||
input_unregister_device(omap_kp->input);
|
||||
input_dev = NULL;
|
||||
@@ -447,11 +444,11 @@ static int __devexit omap_kp_remove(struct platform_device *pdev)
|
||||
gpio_free(col_gpios[i]);
|
||||
for (i = 0; i < omap_kp->rows; i++) {
|
||||
gpio_free(row_gpios[i]);
|
||||
free_irq(gpio_to_irq(row_gpios[i]), 0);
|
||||
free_irq(gpio_to_irq(row_gpios[i]), NULL);
|
||||
}
|
||||
} else {
|
||||
omap_writew(1, OMAP1_MPUIO_BASE + OMAP_MPUIO_KBD_MASKIT);
|
||||
free_irq(omap_kp->irq, 0);
|
||||
free_irq(omap_kp->irq, NULL);
|
||||
}
|
||||
|
||||
del_timer_sync(&omap_kp->timer);
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
#include <linux/io.h>
|
||||
#include <linux/input.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/pm_runtime.h>
|
||||
|
||||
#include <plat/omap4-keypad.h>
|
||||
|
||||
@@ -80,20 +81,6 @@ struct omap4_keypad {
|
||||
unsigned short keymap[];
|
||||
};
|
||||
|
||||
static void __devinit omap4_keypad_config(struct omap4_keypad *keypad_data)
|
||||
{
|
||||
__raw_writel(OMAP4_VAL_FUNCTIONALCFG,
|
||||
keypad_data->base + OMAP4_KBD_CTRL);
|
||||
__raw_writel(OMAP4_VAL_DEBOUNCINGTIME,
|
||||
keypad_data->base + OMAP4_KBD_DEBOUNCINGTIME);
|
||||
__raw_writel(OMAP4_VAL_IRQDISABLE,
|
||||
keypad_data->base + OMAP4_KBD_IRQSTATUS);
|
||||
__raw_writel(OMAP4_DEF_IRQENABLE_EVENTEN | OMAP4_DEF_IRQENABLE_LONGKEY,
|
||||
keypad_data->base + OMAP4_KBD_IRQENABLE);
|
||||
__raw_writel(OMAP4_DEF_WUP_EVENT_ENA | OMAP4_DEF_WUP_LONG_KEY_ENA,
|
||||
keypad_data->base + OMAP4_KBD_WAKEUPENABLE);
|
||||
}
|
||||
|
||||
/* Interrupt handler */
|
||||
static irqreturn_t omap4_keypad_interrupt(int irq, void *dev_id)
|
||||
{
|
||||
@@ -144,6 +131,49 @@ static irqreturn_t omap4_keypad_interrupt(int irq, void *dev_id)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static int omap4_keypad_open(struct input_dev *input)
|
||||
{
|
||||
struct omap4_keypad *keypad_data = input_get_drvdata(input);
|
||||
|
||||
pm_runtime_get_sync(input->dev.parent);
|
||||
|
||||
disable_irq(keypad_data->irq);
|
||||
|
||||
__raw_writel(OMAP4_VAL_FUNCTIONALCFG,
|
||||
keypad_data->base + OMAP4_KBD_CTRL);
|
||||
__raw_writel(OMAP4_VAL_DEBOUNCINGTIME,
|
||||
keypad_data->base + OMAP4_KBD_DEBOUNCINGTIME);
|
||||
__raw_writel(OMAP4_VAL_IRQDISABLE,
|
||||
keypad_data->base + OMAP4_KBD_IRQSTATUS);
|
||||
__raw_writel(OMAP4_DEF_IRQENABLE_EVENTEN | OMAP4_DEF_IRQENABLE_LONGKEY,
|
||||
keypad_data->base + OMAP4_KBD_IRQENABLE);
|
||||
__raw_writel(OMAP4_DEF_WUP_EVENT_ENA | OMAP4_DEF_WUP_LONG_KEY_ENA,
|
||||
keypad_data->base + OMAP4_KBD_WAKEUPENABLE);
|
||||
|
||||
enable_irq(keypad_data->irq);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void omap4_keypad_close(struct input_dev *input)
|
||||
{
|
||||
struct omap4_keypad *keypad_data = input_get_drvdata(input);
|
||||
|
||||
disable_irq(keypad_data->irq);
|
||||
|
||||
/* Disable interrupts */
|
||||
__raw_writel(OMAP4_VAL_IRQDISABLE,
|
||||
keypad_data->base + OMAP4_KBD_IRQENABLE);
|
||||
|
||||
/* clear pending interrupts */
|
||||
__raw_writel(__raw_readl(keypad_data->base + OMAP4_KBD_IRQSTATUS),
|
||||
keypad_data->base + OMAP4_KBD_IRQSTATUS);
|
||||
|
||||
enable_irq(keypad_data->irq);
|
||||
|
||||
pm_runtime_put_sync(input->dev.parent);
|
||||
}
|
||||
|
||||
static int __devinit omap4_keypad_probe(struct platform_device *pdev)
|
||||
{
|
||||
const struct omap4_keypad_platform_data *pdata;
|
||||
@@ -225,6 +255,9 @@ static int __devinit omap4_keypad_probe(struct platform_device *pdev)
|
||||
input_dev->id.product = 0x0001;
|
||||
input_dev->id.version = 0x0001;
|
||||
|
||||
input_dev->open = omap4_keypad_open;
|
||||
input_dev->close = omap4_keypad_close;
|
||||
|
||||
input_dev->keycode = keypad_data->keymap;
|
||||
input_dev->keycodesize = sizeof(keypad_data->keymap[0]);
|
||||
input_dev->keycodemax = max_keys;
|
||||
@@ -239,8 +272,6 @@ static int __devinit omap4_keypad_probe(struct platform_device *pdev)
|
||||
matrix_keypad_build_keymap(pdata->keymap_data, row_shift,
|
||||
input_dev->keycode, input_dev->keybit);
|
||||
|
||||
omap4_keypad_config(keypad_data);
|
||||
|
||||
error = request_irq(keypad_data->irq, omap4_keypad_interrupt,
|
||||
IRQF_TRIGGER_RISING,
|
||||
"omap4-keypad", keypad_data);
|
||||
@@ -249,17 +280,19 @@ static int __devinit omap4_keypad_probe(struct platform_device *pdev)
|
||||
goto err_free_input;
|
||||
}
|
||||
|
||||
pm_runtime_enable(&pdev->dev);
|
||||
|
||||
error = input_register_device(keypad_data->input);
|
||||
if (error < 0) {
|
||||
dev_err(&pdev->dev, "failed to register input device\n");
|
||||
goto err_free_irq;
|
||||
goto err_pm_disable;
|
||||
}
|
||||
|
||||
|
||||
platform_set_drvdata(pdev, keypad_data);
|
||||
return 0;
|
||||
|
||||
err_free_irq:
|
||||
err_pm_disable:
|
||||
pm_runtime_disable(&pdev->dev);
|
||||
free_irq(keypad_data->irq, keypad_data);
|
||||
err_free_input:
|
||||
input_free_device(input_dev);
|
||||
@@ -278,6 +311,9 @@ static int __devexit omap4_keypad_remove(struct platform_device *pdev)
|
||||
struct resource *res;
|
||||
|
||||
free_irq(keypad_data->irq, keypad_data);
|
||||
|
||||
pm_runtime_disable(&pdev->dev);
|
||||
|
||||
input_unregister_device(keypad_data->input);
|
||||
|
||||
iounmap(keypad_data->base);
|
||||
|
||||
@@ -0,0 +1,276 @@
|
||||
/*
|
||||
* Atmel AT42QT1070 QTouch Sensor Controller
|
||||
*
|
||||
* Copyright (C) 2011 Atmel
|
||||
*
|
||||
* Authors: Bo Shen <voice.shen@atmel.com>
|
||||
*
|
||||
* Base on AT42QT2160 driver by:
|
||||
* Raphael Derosso Pereira <raphaelpereira@gmail.com>
|
||||
* Copyright (C) 2009
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/i2c.h>
|
||||
#include <linux/input.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/irq.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/jiffies.h>
|
||||
#include <linux/delay.h>
|
||||
|
||||
/* Address for each register */
|
||||
#define CHIP_ID 0x00
|
||||
#define QT1070_CHIP_ID 0x2E
|
||||
|
||||
#define FW_VERSION 0x01
|
||||
#define QT1070_FW_VERSION 0x15
|
||||
|
||||
#define DET_STATUS 0x02
|
||||
|
||||
#define KEY_STATUS 0x03
|
||||
|
||||
/* Calibrate */
|
||||
#define CALIBRATE_CMD 0x38
|
||||
#define QT1070_CAL_TIME 200
|
||||
|
||||
/* Reset */
|
||||
#define RESET 0x39
|
||||
#define QT1070_RESET_TIME 255
|
||||
|
||||
/* AT42QT1070 support up to 7 keys */
|
||||
static const unsigned short qt1070_key2code[] = {
|
||||
KEY_0, KEY_1, KEY_2, KEY_3,
|
||||
KEY_4, KEY_5, KEY_6,
|
||||
};
|
||||
|
||||
struct qt1070_data {
|
||||
struct i2c_client *client;
|
||||
struct input_dev *input;
|
||||
unsigned int irq;
|
||||
unsigned short keycodes[ARRAY_SIZE(qt1070_key2code)];
|
||||
u8 last_keys;
|
||||
};
|
||||
|
||||
static int qt1070_read(struct i2c_client *client, u8 reg)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = i2c_smbus_read_byte_data(client, reg);
|
||||
if (ret < 0)
|
||||
dev_err(&client->dev,
|
||||
"can not read register, returned %d\n", ret);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int qt1070_write(struct i2c_client *client, u8 reg, u8 data)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = i2c_smbus_write_byte_data(client, reg, data);
|
||||
if (ret < 0)
|
||||
dev_err(&client->dev,
|
||||
"can not write register, returned %d\n", ret);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static bool __devinit qt1070_identify(struct i2c_client *client)
|
||||
{
|
||||
int id, ver;
|
||||
|
||||
/* Read Chip ID */
|
||||
id = qt1070_read(client, CHIP_ID);
|
||||
if (id != QT1070_CHIP_ID) {
|
||||
dev_err(&client->dev, "ID %d not supported\n", id);
|
||||
return false;
|
||||
}
|
||||
|
||||
/* Read firmware version */
|
||||
ver = qt1070_read(client, FW_VERSION);
|
||||
if (ver < 0) {
|
||||
dev_err(&client->dev, "could not read the firmware version\n");
|
||||
return false;
|
||||
}
|
||||
|
||||
dev_info(&client->dev, "AT42QT1070 firmware version %x\n", ver);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static irqreturn_t qt1070_interrupt(int irq, void *dev_id)
|
||||
{
|
||||
struct qt1070_data *data = dev_id;
|
||||
struct i2c_client *client = data->client;
|
||||
struct input_dev *input = data->input;
|
||||
int i;
|
||||
u8 new_keys, keyval, mask = 0x01;
|
||||
|
||||
/* Read the detected status register, thus clearing interrupt */
|
||||
qt1070_read(client, DET_STATUS);
|
||||
|
||||
/* Read which key changed */
|
||||
new_keys = qt1070_read(client, KEY_STATUS);
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(qt1070_key2code); i++) {
|
||||
keyval = new_keys & mask;
|
||||
if ((data->last_keys & mask) != keyval)
|
||||
input_report_key(input, data->keycodes[i], keyval);
|
||||
mask <<= 1;
|
||||
}
|
||||
input_sync(input);
|
||||
|
||||
data->last_keys = new_keys;
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static int __devinit qt1070_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
{
|
||||
struct qt1070_data *data;
|
||||
struct input_dev *input;
|
||||
int i;
|
||||
int err;
|
||||
|
||||
err = i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE);
|
||||
if (!err) {
|
||||
dev_err(&client->dev, "%s adapter not supported\n",
|
||||
dev_driver_string(&client->adapter->dev));
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
if (!client->irq) {
|
||||
dev_err(&client->dev, "please assign the irq to this device\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
/* Identify the qt1070 chip */
|
||||
if (!qt1070_identify(client))
|
||||
return -ENODEV;
|
||||
|
||||
data = kzalloc(sizeof(struct qt1070_data), GFP_KERNEL);
|
||||
input = input_allocate_device();
|
||||
if (!data || !input) {
|
||||
dev_err(&client->dev, "insufficient memory\n");
|
||||
err = -ENOMEM;
|
||||
goto err_free_mem;
|
||||
}
|
||||
|
||||
data->client = client;
|
||||
data->input = input;
|
||||
data->irq = client->irq;
|
||||
|
||||
input->name = "AT42QT1070 QTouch Sensor";
|
||||
input->dev.parent = &client->dev;
|
||||
input->id.bustype = BUS_I2C;
|
||||
|
||||
/* Add the keycode */
|
||||
input->keycode = data->keycodes;
|
||||
input->keycodesize = sizeof(data->keycodes[0]);
|
||||
input->keycodemax = ARRAY_SIZE(qt1070_key2code);
|
||||
|
||||
__set_bit(EV_KEY, input->evbit);
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(qt1070_key2code); i++) {
|
||||
data->keycodes[i] = qt1070_key2code[i];
|
||||
__set_bit(qt1070_key2code[i], input->keybit);
|
||||
}
|
||||
|
||||
/* Calibrate device */
|
||||
qt1070_write(client, CALIBRATE_CMD, 1);
|
||||
msleep(QT1070_CAL_TIME);
|
||||
|
||||
/* Soft reset */
|
||||
qt1070_write(client, RESET, 1);
|
||||
msleep(QT1070_RESET_TIME);
|
||||
|
||||
err = request_threaded_irq(client->irq, NULL, qt1070_interrupt,
|
||||
IRQF_TRIGGER_NONE, client->dev.driver->name, data);
|
||||
if (err) {
|
||||
dev_err(&client->dev, "fail to request irq\n");
|
||||
goto err_free_mem;
|
||||
}
|
||||
|
||||
/* Register the input device */
|
||||
err = input_register_device(data->input);
|
||||
if (err) {
|
||||
dev_err(&client->dev, "Failed to register input device\n");
|
||||
goto err_free_irq;
|
||||
}
|
||||
|
||||
i2c_set_clientdata(client, data);
|
||||
|
||||
/* Read to clear the chang line */
|
||||
qt1070_read(client, DET_STATUS);
|
||||
|
||||
return 0;
|
||||
|
||||
err_free_irq:
|
||||
free_irq(client->irq, data);
|
||||
err_free_mem:
|
||||
input_free_device(input);
|
||||
kfree(data);
|
||||
return err;
|
||||
}
|
||||
|
||||
static int __devexit qt1070_remove(struct i2c_client *client)
|
||||
{
|
||||
struct qt1070_data *data = i2c_get_clientdata(client);
|
||||
|
||||
/* Release IRQ */
|
||||
free_irq(client->irq, data);
|
||||
|
||||
input_unregister_device(data->input);
|
||||
kfree(data);
|
||||
|
||||
i2c_set_clientdata(client, NULL);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct i2c_device_id qt1070_id[] = {
|
||||
{ "qt1070", 0 },
|
||||
{ },
|
||||
};
|
||||
|
||||
static struct i2c_driver qt1070_driver = {
|
||||
.driver = {
|
||||
.name = "qt1070",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.id_table = qt1070_id,
|
||||
.probe = qt1070_probe,
|
||||
.remove = __devexit_p(qt1070_remove),
|
||||
};
|
||||
|
||||
static int __init qt1070_init(void)
|
||||
{
|
||||
return i2c_add_driver(&qt1070_driver);
|
||||
}
|
||||
module_init(qt1070_init);
|
||||
|
||||
static void __exit qt1070_exit(void)
|
||||
{
|
||||
i2c_del_driver(&qt1070_driver);
|
||||
}
|
||||
module_exit(qt1070_exit);
|
||||
|
||||
MODULE_AUTHOR("Bo Shen <voice.shen@atmel.com>");
|
||||
MODULE_DESCRIPTION("Driver for AT42QT1070 QTouch sensor");
|
||||
MODULE_LICENSE("GPL");
|
||||
@@ -0,0 +1,472 @@
|
||||
/*
|
||||
* Copyright (C) ST-Ericsson SA 2010
|
||||
*
|
||||
* Author: Jayeeta Banerjee <jayeeta.banerjee@stericsson.com>
|
||||
* Author: Sundar Iyer <sundar.iyer@stericsson.com>
|
||||
*
|
||||
* License Terms: GNU General Public License, version 2
|
||||
*
|
||||
* TC35893 MFD Keypad Controller driver
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/input.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/input/matrix_keypad.h>
|
||||
#include <linux/i2c.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/mfd/tc3589x.h>
|
||||
|
||||
/* Maximum supported keypad matrix row/columns size */
|
||||
#define TC3589x_MAX_KPROW 8
|
||||
#define TC3589x_MAX_KPCOL 12
|
||||
|
||||
/* keypad related Constants */
|
||||
#define TC3589x_MAX_DEBOUNCE_SETTLE 0xFF
|
||||
#define DEDICATED_KEY_VAL 0xFF
|
||||
|
||||
/* Pull up/down masks */
|
||||
#define TC3589x_NO_PULL_MASK 0x0
|
||||
#define TC3589x_PULL_DOWN_MASK 0x1
|
||||
#define TC3589x_PULL_UP_MASK 0x2
|
||||
#define TC3589x_PULLUP_ALL_MASK 0xAA
|
||||
#define TC3589x_IO_PULL_VAL(index, mask) ((mask)<<((index)%4)*2))
|
||||
|
||||
/* Bit masks for IOCFG register */
|
||||
#define IOCFG_BALLCFG 0x01
|
||||
#define IOCFG_IG 0x08
|
||||
|
||||
#define KP_EVCODE_COL_MASK 0x0F
|
||||
#define KP_EVCODE_ROW_MASK 0x70
|
||||
#define KP_RELEASE_EVT_MASK 0x80
|
||||
|
||||
#define KP_ROW_SHIFT 4
|
||||
|
||||
#define KP_NO_VALID_KEY_MASK 0x7F
|
||||
|
||||
/* bit masks for RESTCTRL register */
|
||||
#define TC3589x_KBDRST 0x2
|
||||
#define TC3589x_IRQRST 0x10
|
||||
#define TC3589x_RESET_ALL 0x1B
|
||||
|
||||
/* KBDMFS register bit mask */
|
||||
#define TC3589x_KBDMFS_EN 0x1
|
||||
|
||||
/* CLKEN register bitmask */
|
||||
#define KPD_CLK_EN 0x1
|
||||
|
||||
/* RSTINTCLR register bit mask */
|
||||
#define IRQ_CLEAR 0x1
|
||||
|
||||
/* bit masks for keyboard interrupts*/
|
||||
#define TC3589x_EVT_LOSS_INT 0x8
|
||||
#define TC3589x_EVT_INT 0x4
|
||||
#define TC3589x_KBD_LOSS_INT 0x2
|
||||
#define TC3589x_KBD_INT 0x1
|
||||
|
||||
/* bit masks for keyboard interrupt clear*/
|
||||
#define TC3589x_EVT_INT_CLR 0x2
|
||||
#define TC3589x_KBD_INT_CLR 0x1
|
||||
|
||||
#define TC3589x_KBD_KEYMAP_SIZE 64
|
||||
|
||||
/**
|
||||
* struct tc_keypad - data structure used by keypad driver
|
||||
* @input: pointer to input device object
|
||||
* @board: keypad platform device
|
||||
* @krow: number of rows
|
||||
* @kcol: number of coloumns
|
||||
* @keymap: matrix scan code table for keycodes
|
||||
*/
|
||||
struct tc_keypad {
|
||||
struct tc3589x *tc3589x;
|
||||
struct input_dev *input;
|
||||
const struct tc3589x_keypad_platform_data *board;
|
||||
unsigned int krow;
|
||||
unsigned int kcol;
|
||||
unsigned short keymap[TC3589x_KBD_KEYMAP_SIZE];
|
||||
bool keypad_stopped;
|
||||
};
|
||||
|
||||
static int __devinit tc3589x_keypad_init_key_hardware(struct tc_keypad *keypad)
|
||||
{
|
||||
int ret;
|
||||
struct tc3589x *tc3589x = keypad->tc3589x;
|
||||
u8 settle_time = keypad->board->settle_time;
|
||||
u8 dbounce_period = keypad->board->debounce_period;
|
||||
u8 rows = keypad->board->krow & 0xf; /* mask out the nibble */
|
||||
u8 column = keypad->board->kcol & 0xf; /* mask out the nibble */
|
||||
|
||||
/* validate platform configurations */
|
||||
if (keypad->board->kcol > TC3589x_MAX_KPCOL ||
|
||||
keypad->board->krow > TC3589x_MAX_KPROW ||
|
||||
keypad->board->debounce_period > TC3589x_MAX_DEBOUNCE_SETTLE ||
|
||||
keypad->board->settle_time > TC3589x_MAX_DEBOUNCE_SETTLE)
|
||||
return -EINVAL;
|
||||
|
||||
/* configure KBDSIZE 4 LSbits for cols and 4 MSbits for rows */
|
||||
ret = tc3589x_reg_write(tc3589x, TC3589x_KBDSIZE,
|
||||
(rows << KP_ROW_SHIFT) | column);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
/* configure dedicated key config, no dedicated key selected */
|
||||
ret = tc3589x_reg_write(tc3589x, TC3589x_KBCFG_LSB, DEDICATED_KEY_VAL);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
ret = tc3589x_reg_write(tc3589x, TC3589x_KBCFG_MSB, DEDICATED_KEY_VAL);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
/* Configure settle time */
|
||||
ret = tc3589x_reg_write(tc3589x, TC3589x_KBDSETTLE_REG, settle_time);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
/* Configure debounce time */
|
||||
ret = tc3589x_reg_write(tc3589x, TC3589x_KBDBOUNCE, dbounce_period);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
/* Start of initialise keypad GPIOs */
|
||||
ret = tc3589x_set_bits(tc3589x, TC3589x_IOCFG, 0x0, IOCFG_IG);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
/* Configure pull-up resistors for all row GPIOs */
|
||||
ret = tc3589x_reg_write(tc3589x, TC3589x_IOPULLCFG0_LSB,
|
||||
TC3589x_PULLUP_ALL_MASK);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
ret = tc3589x_reg_write(tc3589x, TC3589x_IOPULLCFG0_MSB,
|
||||
TC3589x_PULLUP_ALL_MASK);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
/* Configure pull-up resistors for all column GPIOs */
|
||||
ret = tc3589x_reg_write(tc3589x, TC3589x_IOPULLCFG1_LSB,
|
||||
TC3589x_PULLUP_ALL_MASK);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
ret = tc3589x_reg_write(tc3589x, TC3589x_IOPULLCFG1_MSB,
|
||||
TC3589x_PULLUP_ALL_MASK);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
ret = tc3589x_reg_write(tc3589x, TC3589x_IOPULLCFG2_LSB,
|
||||
TC3589x_PULLUP_ALL_MASK);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
#define TC35893_DATA_REGS 4
|
||||
#define TC35893_KEYCODE_FIFO_EMPTY 0x7f
|
||||
#define TC35893_KEYCODE_FIFO_CLEAR 0xff
|
||||
#define TC35893_KEYPAD_ROW_SHIFT 0x3
|
||||
|
||||
static irqreturn_t tc3589x_keypad_irq(int irq, void *dev)
|
||||
{
|
||||
struct tc_keypad *keypad = dev;
|
||||
struct tc3589x *tc3589x = keypad->tc3589x;
|
||||
u8 i, row_index, col_index, kbd_code, up;
|
||||
u8 code;
|
||||
|
||||
for (i = 0; i < TC35893_DATA_REGS * 2; i++) {
|
||||
kbd_code = tc3589x_reg_read(tc3589x, TC3589x_EVTCODE_FIFO);
|
||||
|
||||
/* loop till fifo is empty and no more keys are pressed */
|
||||
if (kbd_code == TC35893_KEYCODE_FIFO_EMPTY ||
|
||||
kbd_code == TC35893_KEYCODE_FIFO_CLEAR)
|
||||
continue;
|
||||
|
||||
/* valid key is found */
|
||||
col_index = kbd_code & KP_EVCODE_COL_MASK;
|
||||
row_index = (kbd_code & KP_EVCODE_ROW_MASK) >> KP_ROW_SHIFT;
|
||||
code = MATRIX_SCAN_CODE(row_index, col_index,
|
||||
TC35893_KEYPAD_ROW_SHIFT);
|
||||
up = kbd_code & KP_RELEASE_EVT_MASK;
|
||||
|
||||
input_event(keypad->input, EV_MSC, MSC_SCAN, code);
|
||||
input_report_key(keypad->input, keypad->keymap[code], !up);
|
||||
input_sync(keypad->input);
|
||||
}
|
||||
|
||||
/* clear IRQ */
|
||||
tc3589x_set_bits(tc3589x, TC3589x_KBDIC,
|
||||
0x0, TC3589x_EVT_INT_CLR | TC3589x_KBD_INT_CLR);
|
||||
/* enable IRQ */
|
||||
tc3589x_set_bits(tc3589x, TC3589x_KBDMSK,
|
||||
0x0, TC3589x_EVT_LOSS_INT | TC3589x_EVT_INT);
|
||||
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static int tc3589x_keypad_enable(struct tc_keypad *keypad)
|
||||
{
|
||||
struct tc3589x *tc3589x = keypad->tc3589x;
|
||||
int ret;
|
||||
|
||||
/* pull the keypad module out of reset */
|
||||
ret = tc3589x_set_bits(tc3589x, TC3589x_RSTCTRL, TC3589x_KBDRST, 0x0);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
/* configure KBDMFS */
|
||||
ret = tc3589x_set_bits(tc3589x, TC3589x_KBDMFS, 0x0, TC3589x_KBDMFS_EN);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
/* enable the keypad clock */
|
||||
ret = tc3589x_set_bits(tc3589x, TC3589x_CLKEN, 0x0, KPD_CLK_EN);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
/* clear pending IRQs */
|
||||
ret = tc3589x_set_bits(tc3589x, TC3589x_RSTINTCLR, 0x0, 0x1);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
/* enable the IRQs */
|
||||
ret = tc3589x_set_bits(tc3589x, TC3589x_KBDMSK, 0x0,
|
||||
TC3589x_EVT_LOSS_INT | TC3589x_EVT_INT);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
keypad->keypad_stopped = false;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int tc3589x_keypad_disable(struct tc_keypad *keypad)
|
||||
{
|
||||
struct tc3589x *tc3589x = keypad->tc3589x;
|
||||
int ret;
|
||||
|
||||
/* clear IRQ */
|
||||
ret = tc3589x_set_bits(tc3589x, TC3589x_KBDIC,
|
||||
0x0, TC3589x_EVT_INT_CLR | TC3589x_KBD_INT_CLR);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
/* disable all interrupts */
|
||||
ret = tc3589x_set_bits(tc3589x, TC3589x_KBDMSK,
|
||||
~(TC3589x_EVT_LOSS_INT | TC3589x_EVT_INT), 0x0);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
/* disable the keypad module */
|
||||
ret = tc3589x_set_bits(tc3589x, TC3589x_CLKEN, 0x1, 0x0);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
/* put the keypad module into reset */
|
||||
ret = tc3589x_set_bits(tc3589x, TC3589x_RSTCTRL, TC3589x_KBDRST, 0x1);
|
||||
|
||||
keypad->keypad_stopped = true;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int tc3589x_keypad_open(struct input_dev *input)
|
||||
{
|
||||
int error;
|
||||
struct tc_keypad *keypad = input_get_drvdata(input);
|
||||
|
||||
/* enable the keypad module */
|
||||
error = tc3589x_keypad_enable(keypad);
|
||||
if (error < 0) {
|
||||
dev_err(&input->dev, "failed to enable keypad module\n");
|
||||
return error;
|
||||
}
|
||||
|
||||
error = tc3589x_keypad_init_key_hardware(keypad);
|
||||
if (error < 0) {
|
||||
dev_err(&input->dev, "failed to configure keypad module\n");
|
||||
return error;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void tc3589x_keypad_close(struct input_dev *input)
|
||||
{
|
||||
struct tc_keypad *keypad = input_get_drvdata(input);
|
||||
|
||||
/* disable the keypad module */
|
||||
tc3589x_keypad_disable(keypad);
|
||||
}
|
||||
|
||||
static int __devinit tc3589x_keypad_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct tc3589x *tc3589x = dev_get_drvdata(pdev->dev.parent);
|
||||
struct tc_keypad *keypad;
|
||||
struct input_dev *input;
|
||||
const struct tc3589x_keypad_platform_data *plat;
|
||||
int error, irq;
|
||||
|
||||
plat = tc3589x->pdata->keypad;
|
||||
if (!plat) {
|
||||
dev_err(&pdev->dev, "invalid keypad platform data\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
irq = platform_get_irq(pdev, 0);
|
||||
if (irq < 0)
|
||||
return irq;
|
||||
|
||||
keypad = kzalloc(sizeof(struct tc_keypad), GFP_KERNEL);
|
||||
input = input_allocate_device();
|
||||
if (!keypad || !input) {
|
||||
dev_err(&pdev->dev, "failed to allocate keypad memory\n");
|
||||
error = -ENOMEM;
|
||||
goto err_free_mem;
|
||||
}
|
||||
|
||||
keypad->board = plat;
|
||||
keypad->input = input;
|
||||
keypad->tc3589x = tc3589x;
|
||||
|
||||
input->id.bustype = BUS_I2C;
|
||||
input->name = pdev->name;
|
||||
input->dev.parent = &pdev->dev;
|
||||
|
||||
input->keycode = keypad->keymap;
|
||||
input->keycodesize = sizeof(keypad->keymap[0]);
|
||||
input->keycodemax = ARRAY_SIZE(keypad->keymap);
|
||||
|
||||
input->open = tc3589x_keypad_open;
|
||||
input->close = tc3589x_keypad_close;
|
||||
|
||||
input_set_drvdata(input, keypad);
|
||||
|
||||
input_set_capability(input, EV_MSC, MSC_SCAN);
|
||||
|
||||
__set_bit(EV_KEY, input->evbit);
|
||||
if (!plat->no_autorepeat)
|
||||
__set_bit(EV_REP, input->evbit);
|
||||
|
||||
matrix_keypad_build_keymap(plat->keymap_data, 0x3,
|
||||
input->keycode, input->keybit);
|
||||
|
||||
error = request_threaded_irq(irq, NULL,
|
||||
tc3589x_keypad_irq, plat->irqtype,
|
||||
"tc3589x-keypad", keypad);
|
||||
if (error < 0) {
|
||||
dev_err(&pdev->dev,
|
||||
"Could not allocate irq %d,error %d\n",
|
||||
irq, error);
|
||||
goto err_free_mem;
|
||||
}
|
||||
|
||||
error = input_register_device(input);
|
||||
if (error) {
|
||||
dev_err(&pdev->dev, "Could not register input device\n");
|
||||
goto err_free_irq;
|
||||
}
|
||||
|
||||
/* let platform decide if keypad is a wakeup source or not */
|
||||
device_init_wakeup(&pdev->dev, plat->enable_wakeup);
|
||||
device_set_wakeup_capable(&pdev->dev, plat->enable_wakeup);
|
||||
|
||||
platform_set_drvdata(pdev, keypad);
|
||||
|
||||
return 0;
|
||||
|
||||
err_free_irq:
|
||||
free_irq(irq, keypad);
|
||||
err_free_mem:
|
||||
input_free_device(input);
|
||||
kfree(keypad);
|
||||
return error;
|
||||
}
|
||||
|
||||
static int __devexit tc3589x_keypad_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct tc_keypad *keypad = platform_get_drvdata(pdev);
|
||||
int irq = platform_get_irq(pdev, 0);
|
||||
|
||||
if (!keypad->keypad_stopped)
|
||||
tc3589x_keypad_disable(keypad);
|
||||
|
||||
free_irq(irq, keypad);
|
||||
|
||||
input_unregister_device(keypad->input);
|
||||
|
||||
kfree(keypad);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PM_SLEEP
|
||||
static int tc3589x_keypad_suspend(struct device *dev)
|
||||
{
|
||||
struct platform_device *pdev = to_platform_device(dev);
|
||||
struct tc_keypad *keypad = platform_get_drvdata(pdev);
|
||||
int irq = platform_get_irq(pdev, 0);
|
||||
|
||||
/* keypad is already off; we do nothing */
|
||||
if (keypad->keypad_stopped)
|
||||
return 0;
|
||||
|
||||
/* if device is not a wakeup source, disable it for powersave */
|
||||
if (!device_may_wakeup(&pdev->dev))
|
||||
tc3589x_keypad_disable(keypad);
|
||||
else
|
||||
enable_irq_wake(irq);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int tc3589x_keypad_resume(struct device *dev)
|
||||
{
|
||||
struct platform_device *pdev = to_platform_device(dev);
|
||||
struct tc_keypad *keypad = platform_get_drvdata(pdev);
|
||||
int irq = platform_get_irq(pdev, 0);
|
||||
|
||||
if (!keypad->keypad_stopped)
|
||||
return 0;
|
||||
|
||||
/* enable the device to resume normal operations */
|
||||
if (!device_may_wakeup(&pdev->dev))
|
||||
tc3589x_keypad_enable(keypad);
|
||||
else
|
||||
disable_irq_wake(irq);
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
static SIMPLE_DEV_PM_OPS(tc3589x_keypad_dev_pm_ops,
|
||||
tc3589x_keypad_suspend, tc3589x_keypad_resume);
|
||||
|
||||
static struct platform_driver tc3589x_keypad_driver = {
|
||||
.driver = {
|
||||
.name = "tc3589x-keypad",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &tc3589x_keypad_dev_pm_ops,
|
||||
},
|
||||
.probe = tc3589x_keypad_probe,
|
||||
.remove = __devexit_p(tc3589x_keypad_remove),
|
||||
};
|
||||
|
||||
static int __init tc3589x_keypad_init(void)
|
||||
{
|
||||
return platform_driver_register(&tc3589x_keypad_driver);
|
||||
}
|
||||
module_init(tc3589x_keypad_init);
|
||||
|
||||
static void __exit tc3589x_keypad_exit(void)
|
||||
{
|
||||
return platform_driver_unregister(&tc3589x_keypad_driver);
|
||||
}
|
||||
module_exit(tc3589x_keypad_exit);
|
||||
|
||||
MODULE_LICENSE("GPL v2");
|
||||
MODULE_AUTHOR("Jayeeta Banerjee/Sundar Iyer");
|
||||
MODULE_DESCRIPTION("TC35893 Keypad Driver");
|
||||
MODULE_ALIAS("platform:tc3589x-keypad");
|
||||
@@ -297,6 +297,7 @@ static int __devinit tca6416_keypad_probe(struct i2c_client *client,
|
||||
}
|
||||
|
||||
i2c_set_clientdata(client, chip);
|
||||
device_init_wakeup(&client->dev, 1);
|
||||
|
||||
return 0;
|
||||
|
||||
@@ -326,10 +327,37 @@ static int __devexit tca6416_keypad_remove(struct i2c_client *client)
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PM_SLEEP
|
||||
static int tca6416_keypad_suspend(struct device *dev)
|
||||
{
|
||||
struct i2c_client *client = to_i2c_client(dev);
|
||||
struct tca6416_keypad_chip *chip = i2c_get_clientdata(client);
|
||||
|
||||
if (device_may_wakeup(dev))
|
||||
enable_irq_wake(chip->irqnum);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int tca6416_keypad_resume(struct device *dev)
|
||||
{
|
||||
struct i2c_client *client = to_i2c_client(dev);
|
||||
struct tca6416_keypad_chip *chip = i2c_get_clientdata(client);
|
||||
|
||||
if (device_may_wakeup(dev))
|
||||
disable_irq_wake(chip->irqnum);
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
static SIMPLE_DEV_PM_OPS(tca6416_keypad_dev_pm_ops,
|
||||
tca6416_keypad_suspend, tca6416_keypad_resume);
|
||||
|
||||
static struct i2c_driver tca6416_keypad_driver = {
|
||||
.driver = {
|
||||
.name = "tca6416-keypad",
|
||||
.pm = &tca6416_keypad_dev_pm_ops,
|
||||
},
|
||||
.probe = tca6416_keypad_probe,
|
||||
.remove = __devexit_p(tca6416_keypad_remove),
|
||||
|
||||
Reference in New Issue
Block a user