* [PATCHv5] Input: keypad: Add smsc ece1099 keypad driver
@ 2012-10-29 10:38 Sourav Poddar
2012-10-29 16:20 ` Felipe Balbi
0 siblings, 1 reply; 6+ messages in thread
From: Sourav Poddar @ 2012-10-29 10:38 UTC (permalink / raw)
To: dmitry.torokhov
Cc: linux-input, linux-omap, b-cousson, balbi, santosh.shilimkar,
devicetree-discuss, linux-kernel, sourav.poddar
From: G, Manjunath Kondaiah <manjugk@ti.com>
SMSC ECE1099 is a keyboard scan or GPIO expansion device.The device
supports a keypad scan matrix of 23*8.This driver uses this
device as a keypad driver.
Tested on omap5430 evm with 3.7-rc1 kernel.
Cc: Benoit Cousson <b-cousson@ti.com>
Cc: Felipe Balbi <balbi@ti.com>
Cc: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: G, Manjunath Kondaiah <manjugk@ti.com>
Signed-off-by: Sourav Poddar <sourav.poddar@ti.com>
Acked-by: Felipe Balbi <balbi@ti.com>
---
v4->v5
- changed to use manage resource input framework
- rearrange report event into a seperate api.
- change hex values to lowercase throughout.
- Implement ->open and ->close apis.
- cleanup of unused variable and structure.
drivers/input/keyboard/Kconfig | 13 +
drivers/input/keyboard/Makefile | 1 +
drivers/input/keyboard/smsc-ece1099-keypad.c | 310 ++++++++++++++++++++++++++
3 files changed, 324 insertions(+), 0 deletions(-)
create mode 100644 drivers/input/keyboard/smsc-ece1099-keypad.c
diff --git a/drivers/input/keyboard/Kconfig b/drivers/input/keyboard/Kconfig
index b4b65af..af3f3d0 100644
--- a/drivers/input/keyboard/Kconfig
+++ b/drivers/input/keyboard/Kconfig
@@ -593,6 +593,19 @@ config KEYBOARD_TWL4030
To compile this driver as a module, choose M here: the
module will be called twl4030_keypad.
+config KEYBOARD_SMSC
+ tristate "SMSC ECE1099 keypad support"
+ depends on I2C && OF
+ depends on MFD_SMSC
+ select INPUT_MATRIXKMAP
+ help
+ Say Y here if your board use the smsc keypad controller
+ for omap5 defconfig. It's safe to say enable this
+ even on boards that don't use the keypad controller.
+
+ To compile this driver as a module, choose M here: the
+ module will be called smsc-ece1099-keypad.
+
config KEYBOARD_XTKBD
tristate "XT keyboard"
select SERIO
diff --git a/drivers/input/keyboard/Makefile b/drivers/input/keyboard/Makefile
index 44e7600..0f2aa26 100644
--- a/drivers/input/keyboard/Makefile
+++ b/drivers/input/keyboard/Makefile
@@ -52,5 +52,6 @@ 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
+obj-$(CONFIG_KEYBOARD_SMSC) += smsc-ece1099-keypad.o
obj-$(CONFIG_KEYBOARD_XTKBD) += xtkbd.o
obj-$(CONFIG_KEYBOARD_W90P910) += w90p910_keypad.o
diff --git a/drivers/input/keyboard/smsc-ece1099-keypad.c b/drivers/input/keyboard/smsc-ece1099-keypad.c
new file mode 100644
index 0000000..04e04fb
--- /dev/null
+++ b/drivers/input/keyboard/smsc-ece1099-keypad.c
@@ -0,0 +1,310 @@
+/*
+ * SMSC_ECE1099 Keypad driver
+ *
+ * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include <linux/i2c.h>
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/init.h>
+#include <linux/interrupt.h>
+#include <linux/input.h>
+#include <linux/gpio.h>
+#include <linux/slab.h>
+#include <linux/jiffies.h>
+#include <linux/input/matrix_keypad.h>
+#include <linux/delay.h>
+#include <linux/mfd/core.h>
+#include <linux/mfd/smsc.h>
+#include <linux/of_gpio.h>
+#include <linux/of.h>
+
+#define KEYPRESS_TIME 200
+
+struct smsc_keypad {
+ unsigned int last_key_state[16];
+ unsigned int last_col;
+ unsigned int last_key_ms[16];
+ unsigned short *keymap;
+ struct i2c_client *client;
+ struct input_dev *input;
+ int rows, cols;
+ int row_shift;
+ bool no_autorepeat;
+ unsigned irq;
+ struct device *dev;
+};
+
+static void smsc_kp_report_event(struct smsc_keypad *kp, int col, int temp)
+{
+ struct input_dev *input = kp->input;
+ int j, code, row;
+ unsigned int new_state[16];
+ unsigned int bits_changed;
+ int this_ms;
+
+ for (j = 0; j < kp->rows; j++) {
+ if ((temp & 0x01) != 0x00) {
+ temp = temp >> 1;
+ continue;
+ }
+
+ row = j;
+ new_state[col] = (1 << row);
+ bits_changed = kp->last_key_state[col] ^ new_state[col];
+ this_ms = jiffies_to_msecs(jiffies);
+ if (bits_changed != 0 || (!bits_changed &&
+ ((this_ms - kp->last_key_ms[col]) >= KEYPRESS_TIME))) {
+ code = MATRIX_SCAN_CODE(row, col, kp->row_shift);
+ input_event(input, EV_MSC, MSC_SCAN, code);
+ input_report_key(input, kp->keymap[code], 1);
+ input_report_key(input, kp->keymap[code], 0);
+ kp->last_key_state[col] = new_state[col];
+ if (kp->last_col != col)
+ kp->last_key_state[kp->last_col] = 0;
+ kp->last_key_ms[col] = this_ms;
+ }
+ temp = temp >> 1;
+ }
+}
+
+static void smsc_kp_scan(struct smsc_keypad *kp)
+{
+ struct input_dev *input = kp->input;
+ int i, col, temp;
+
+ smsc_write(kp->dev, SMSC_KP_INT_MASK, 0x00);
+ smsc_write(kp->dev, SMSC_KP_INT_STAT, 0xff);
+
+ /* Scan for row and column */
+ for (i = 0; i < kp->cols; i++) {
+ smsc_write(kp->dev, SMSC_KP_OUT, SMSC_KSO_EVAL + i);
+ /* Read Row Status */
+ smsc_read(kp->dev, SMSC_KP_IN, &temp);
+ if (temp == 0xff)
+ continue;
+
+ col = i;
+ smsc_kp_report_event(kp, col, temp);
+ }
+ input_sync(input);
+
+ smsc_write(kp->dev, SMSC_KP_INT_MASK, 0xff);
+
+ /* Set up Low Power Mode (Wake-up) (0xFB) */
+ smsc_write(kp->dev, SMSC_WKUP_CTRL, SMSC_KP_SET_LOW_PWR);
+
+ /*Enable Keypad Scan (generate interrupt on key press) (0x40)*/
+ smsc_write(kp->dev, SMSC_KP_OUT, SMSC_KSO_ALL_LOW);
+}
+
+static int smsc_keypad_open(struct input_dev *input)
+{
+ struct smsc_keypad *kp = input_get_drvdata(input);
+ int ret;
+
+ ret = smsc_write(kp->dev, SMSC_KP_INT_MASK, 0xff);
+ if (ret < 0)
+ return ret;
+
+ return 0;
+}
+
+static void smsc_keypad_close(struct input_dev *input)
+{
+ struct smsc_keypad *kp = input_get_drvdata(input);
+
+ smsc_write(kp->dev, SMSC_KP_INT_MASK, 0x0);
+}
+
+static irqreturn_t do_kp_irq(int irq, void *_kp)
+{
+ struct smsc_keypad *kp = _kp;
+ int int_status;
+
+ smsc_read(kp->dev, SMSC_KP_INT_STAT, &int_status);
+ if (int_status)
+ smsc_kp_scan(kp);
+
+ return IRQ_HANDLED;
+}
+
+#ifdef CONFIG_OF
+static int __devinit smsc_keypad_parse_dt(struct device *dev,
+ struct smsc_keypad *kp)
+{
+ struct device_node *np = dev->of_node;
+
+ if (!np) {
+ dev_err(dev, "missing DT data");
+ return -EINVAL;
+ }
+
+ of_property_read_u32(np, "keypad,num-rows", &kp->rows);
+ of_property_read_u32(np, "keypad,num-columns", &kp->cols);
+ if (!kp->rows || !kp->cols) {
+ dev_err(dev, "number of keypad rows/columns not specified\n");
+ return -EINVAL;
+ }
+
+ if (of_property_read_bool(np, "linux,input-no-autorepeat"))
+ kp->no_autorepeat = true;
+
+ return 0;
+}
+#else
+static inline int smsc_keypad_parse_dt(struct device *dev,
+ struct smsc_keypad *kp)
+{
+ return -ENOSYS;
+}
+#endif
+
+static int __devinit
+smsc_probe(struct platform_device *pdev)
+{
+ struct device *dev = &pdev->dev;
+ struct input_dev *input;
+ struct smsc_keypad *kp;
+ int ret = 0;
+ int i, max_keys, row_shift;
+ int irq;
+ int addr;
+
+ kp = devm_kzalloc(dev, sizeof(*kp), GFP_KERNEL);
+
+ input = devm_input_allocate_device(dev);
+ if (!kp || !input)
+ ret = -ENOMEM;
+
+ ret = smsc_keypad_parse_dt(dev, kp);
+ if (ret)
+ return ret;
+
+ /* Get the debug Device */
+ kp->input = input;
+ kp->irq = platform_get_irq(pdev, 0);
+ kp->dev = dev;
+
+ /* setup input device */
+ __set_bit(EV_KEY, input->evbit);
+
+ /* Enable auto repeat feature of Linux input subsystem */
+ if (!kp->no_autorepeat)
+ __set_bit(EV_REP, input->evbit);
+
+ input_set_capability(input, EV_MSC, MSC_SCAN);
+ input->name = "SMSC Keypad";
+ input->phys = "smsc_keypad/input0";
+ input->dev.parent = &pdev->dev;
+ input->id.bustype = BUS_HOST;
+ input->id.vendor = 0x0001;
+ input->id.product = 0x0001;
+ input->id.version = 0x0003;
+
+ input->open = smsc_keypad_open;
+ input->close = smsc_keypad_close;
+ input_set_drvdata(input, kp);
+
+ /* Mask all GPIO interrupts (0x37-0x3B) */
+ for (addr = SMSC_GPIO_INT_MASK_START;
+ addr < SMSC_GPIO_INT_MASK_START + 4; addr++)
+ smsc_write(dev, addr, 0);
+
+ /* Set all outputs high (0x05-0x09) */
+ for (addr = SMSC_GPIO_DATA_OUT_START;
+ addr < SMSC_GPIO_DATA_OUT_START + 4; addr++)
+ smsc_write(dev, addr, 0xff);
+
+ /* Clear all GPIO interrupts (0x32-0x36) */
+ for (addr = SMSC_GPIO_INT_STAT_START;
+ addr < SMSC_GPIO_INT_STAT_START + 4; addr++)
+ smsc_write(dev, addr, 0xff);
+
+ /* Configure the smsc pins as Keyboard scan Input */
+ for (i = 0; i < kp->rows; i++) {
+ addr = 0x12 + i;
+ smsc_write(dev, addr, SMSC_KP_KSI);
+ }
+
+ /* Configure the smsc pins as Keyboard scan output */
+ for (i = 0; i < kp->cols; i++) {
+ addr = 0x1a + i;
+ smsc_write(dev, addr, SMSC_KP_KSO);
+ }
+
+ smsc_write(dev, SMSC_KP_INT_STAT, SMSC_KP_SET_HIGH);
+ smsc_write(dev, SMSC_WKUP_CTRL, SMSC_KP_SET_LOW_PWR);
+ smsc_write(dev, SMSC_KP_OUT, SMSC_KSO_ALL_LOW);
+
+ row_shift = get_count_order(kp->cols);
+ max_keys = kp->rows << row_shift;
+
+ kp->row_shift = row_shift;
+ kp->keymap = devm_kzalloc(dev, max_keys * sizeof(kp->keymap[0]),
+ GFP_KERNEL);
+ if (!kp->keymap) {
+ dev_err(dev, "Not enough memory for keymap\n");
+ return -ENOMEM;
+ }
+
+ ret = matrix_keypad_build_keymap(NULL, NULL, kp->rows,
+ kp->cols, kp->keymap, input);
+ if (ret) {
+ dev_err(dev, "failed to build keymap\n");
+ return ret;
+ }
+
+ /*
+ * This ISR will always execute in kernel thread context because of
+ * the need to access the SMSC over the I2C bus.
+ */
+ ret = devm_request_threaded_irq(dev, kp->irq, NULL, do_kp_irq,
+ IRQF_TRIGGER_FALLING | IRQF_ONESHOT, pdev->name, kp);
+ if (ret) {
+ dev_dbg(dev, "request_irq failed for irq no=%d\n",
+ irq);
+ return ret;
+ }
+
+ ret = input_register_device(input);
+ if (ret) {
+ dev_err(kp->dev,
+ "Unable to register twl4030 keypad device\n");
+ return ret;
+ }
+
+ return 0;
+}
+
+static int __devexit smsc_remove(struct platform_device *pdev)
+{
+ return 0;
+}
+
+static const struct of_device_id smsc_keypad_dt_match[] = {
+ { .compatible = "smsc,keypad" },
+ {},
+};
+MODULE_DEVICE_TABLE(of, smsc_keypad_dt_match);
+
+static struct platform_driver smsc_driver = {
+ .driver = {
+ .name = "smsc-keypad",
+ .of_match_table = of_match_ptr(smsc_keypad_dt_match),
+ .owner = THIS_MODULE,
+ },
+ .probe = smsc_probe,
+ .remove = __devexit_p(smsc_remove),
+};
+
+module_platform_driver(smsc_driver);
+
+MODULE_AUTHOR("G Kondaiah Manjunath <manjugk@ti.com>");
+MODULE_DESCRIPTION("SMSC ECE1099 Keypad driver");
+MODULE_LICENSE("GPL v2");
--
1.7.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCHv5] Input: keypad: Add smsc ece1099 keypad driver
2012-10-29 10:38 [PATCHv5] Input: keypad: Add smsc ece1099 keypad driver Sourav Poddar
@ 2012-10-29 16:20 ` Felipe Balbi
[not found] ` <20121029162045.GK27566-S8G//mZuvNWo5Im9Ml3/Zg@public.gmane.org>
2012-10-30 5:31 ` Sourav
0 siblings, 2 replies; 6+ messages in thread
From: Felipe Balbi @ 2012-10-29 16:20 UTC (permalink / raw)
To: Sourav Poddar
Cc: dmitry.torokhov, linux-input, linux-omap, b-cousson, balbi,
santosh.shilimkar, devicetree-discuss, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 3665 bytes --]
Hi,
On Mon, Oct 29, 2012 at 04:08:49PM +0530, Sourav Poddar wrote:
> +static int __devinit
> +smsc_probe(struct platform_device *pdev)
> +{
> + struct device *dev = &pdev->dev;
> + struct input_dev *input;
> + struct smsc_keypad *kp;
> + int ret = 0;
> + int i, max_keys, row_shift;
> + int irq;
> + int addr;
> +
> + kp = devm_kzalloc(dev, sizeof(*kp), GFP_KERNEL);
> +
> + input = devm_input_allocate_device(dev);
> + if (!kp || !input)
> + ret = -ENOMEM;
> +
> + ret = smsc_keypad_parse_dt(dev, kp);
> + if (ret)
> + return ret;
> +
> + /* Get the debug Device */
> + kp->input = input;
> + kp->irq = platform_get_irq(pdev, 0);
> + kp->dev = dev;
> +
> + /* setup input device */
> + __set_bit(EV_KEY, input->evbit);
> +
> + /* Enable auto repeat feature of Linux input subsystem */
> + if (!kp->no_autorepeat)
> + __set_bit(EV_REP, input->evbit);
> +
> + input_set_capability(input, EV_MSC, MSC_SCAN);
> + input->name = "SMSC Keypad";
> + input->phys = "smsc_keypad/input0";
> + input->dev.parent = &pdev->dev;
> + input->id.bustype = BUS_HOST;
> + input->id.vendor = 0x0001;
> + input->id.product = 0x0001;
> + input->id.version = 0x0003;
> +
> + input->open = smsc_keypad_open;
> + input->close = smsc_keypad_close;
> + input_set_drvdata(input, kp);
> +
> + /* Mask all GPIO interrupts (0x37-0x3B) */
> + for (addr = SMSC_GPIO_INT_MASK_START;
> + addr < SMSC_GPIO_INT_MASK_START + 4; addr++)
> + smsc_write(dev, addr, 0);
> +
> + /* Set all outputs high (0x05-0x09) */
> + for (addr = SMSC_GPIO_DATA_OUT_START;
> + addr < SMSC_GPIO_DATA_OUT_START + 4; addr++)
> + smsc_write(dev, addr, 0xff);
> +
> + /* Clear all GPIO interrupts (0x32-0x36) */
> + for (addr = SMSC_GPIO_INT_STAT_START;
> + addr < SMSC_GPIO_INT_STAT_START + 4; addr++)
> + smsc_write(dev, addr, 0xff);
> +
> + /* Configure the smsc pins as Keyboard scan Input */
> + for (i = 0; i < kp->rows; i++) {
> + addr = 0x12 + i;
> + smsc_write(dev, addr, SMSC_KP_KSI);
> + }
> +
> + /* Configure the smsc pins as Keyboard scan output */
> + for (i = 0; i < kp->cols; i++) {
> + addr = 0x1a + i;
> + smsc_write(dev, addr, SMSC_KP_KSO);
> + }
> +
> + smsc_write(dev, SMSC_KP_INT_STAT, SMSC_KP_SET_HIGH);
> + smsc_write(dev, SMSC_WKUP_CTRL, SMSC_KP_SET_LOW_PWR);
> + smsc_write(dev, SMSC_KP_OUT, SMSC_KSO_ALL_LOW);
> +
> + row_shift = get_count_order(kp->cols);
> + max_keys = kp->rows << row_shift;
> +
> + kp->row_shift = row_shift;
> + kp->keymap = devm_kzalloc(dev, max_keys * sizeof(kp->keymap[0]),
> + GFP_KERNEL);
> + if (!kp->keymap) {
> + dev_err(dev, "Not enough memory for keymap\n");
> + return -ENOMEM;
> + }
> +
> + ret = matrix_keypad_build_keymap(NULL, NULL, kp->rows,
> + kp->cols, kp->keymap, input);
> + if (ret) {
> + dev_err(dev, "failed to build keymap\n");
> + return ret;
> + }
> +
> + /*
> + * This ISR will always execute in kernel thread context because of
> + * the need to access the SMSC over the I2C bus.
> + */
> + ret = devm_request_threaded_irq(dev, kp->irq, NULL, do_kp_irq,
> + IRQF_TRIGGER_FALLING | IRQF_ONESHOT, pdev->name, kp);
> + if (ret) {
> + dev_dbg(dev, "request_irq failed for irq no=%d\n",
> + irq);
> + return ret;
> + }
> +
> + ret = input_register_device(input);
> + if (ret) {
> + dev_err(kp->dev,
> + "Unable to register twl4030 keypad device\n");
> + return ret;
> + }
> +
> + return 0;
> +}
> +
> +static int __devexit smsc_remove(struct platform_device *pdev)
> +{
shouldn't you unregister the input device here ??
--
balbi
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCHv5] Input: keypad: Add smsc ece1099 keypad driver
[not found] ` <20121029162045.GK27566-S8G//mZuvNWo5Im9Ml3/Zg@public.gmane.org>
@ 2012-10-29 17:06 ` Dmitry Torokhov
2012-10-29 19:05 ` Felipe Balbi
0 siblings, 1 reply; 6+ messages in thread
From: Dmitry Torokhov @ 2012-10-29 17:06 UTC (permalink / raw)
To: Felipe Balbi
Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
santosh.shilimkar-l0cyMroinI0, linux-input-u79uwXL29TY76Z2rM5mHXA,
Sourav Poddar, linux-omap-u79uwXL29TY76Z2rM5mHXA
On Mon, Oct 29, 2012 at 06:20:45PM +0200, Felipe Balbi wrote:
> Hi,
>
> On Mon, Oct 29, 2012 at 04:08:49PM +0530, Sourav Poddar wrote:
> > +static int __devinit
> > +smsc_probe(struct platform_device *pdev)
> > +{
> > + struct device *dev = &pdev->dev;
> > + struct input_dev *input;
> > + struct smsc_keypad *kp;
> > + int ret = 0;
> > + int i, max_keys, row_shift;
> > + int irq;
> > + int addr;
> > +
> > + kp = devm_kzalloc(dev, sizeof(*kp), GFP_KERNEL);
> > +
> > + input = devm_input_allocate_device(dev);
> > + if (!kp || !input)
> > + ret = -ENOMEM;
> > +
> > + ret = smsc_keypad_parse_dt(dev, kp);
> > + if (ret)
> > + return ret;
> > +
> > + /* Get the debug Device */
> > + kp->input = input;
> > + kp->irq = platform_get_irq(pdev, 0);
> > + kp->dev = dev;
> > +
> > + /* setup input device */
> > + __set_bit(EV_KEY, input->evbit);
> > +
> > + /* Enable auto repeat feature of Linux input subsystem */
> > + if (!kp->no_autorepeat)
> > + __set_bit(EV_REP, input->evbit);
> > +
> > + input_set_capability(input, EV_MSC, MSC_SCAN);
> > + input->name = "SMSC Keypad";
> > + input->phys = "smsc_keypad/input0";
> > + input->dev.parent = &pdev->dev;
> > + input->id.bustype = BUS_HOST;
> > + input->id.vendor = 0x0001;
> > + input->id.product = 0x0001;
> > + input->id.version = 0x0003;
> > +
> > + input->open = smsc_keypad_open;
> > + input->close = smsc_keypad_close;
> > + input_set_drvdata(input, kp);
> > +
> > + /* Mask all GPIO interrupts (0x37-0x3B) */
> > + for (addr = SMSC_GPIO_INT_MASK_START;
> > + addr < SMSC_GPIO_INT_MASK_START + 4; addr++)
> > + smsc_write(dev, addr, 0);
> > +
> > + /* Set all outputs high (0x05-0x09) */
> > + for (addr = SMSC_GPIO_DATA_OUT_START;
> > + addr < SMSC_GPIO_DATA_OUT_START + 4; addr++)
> > + smsc_write(dev, addr, 0xff);
> > +
> > + /* Clear all GPIO interrupts (0x32-0x36) */
> > + for (addr = SMSC_GPIO_INT_STAT_START;
> > + addr < SMSC_GPIO_INT_STAT_START + 4; addr++)
> > + smsc_write(dev, addr, 0xff);
> > +
> > + /* Configure the smsc pins as Keyboard scan Input */
> > + for (i = 0; i < kp->rows; i++) {
> > + addr = 0x12 + i;
> > + smsc_write(dev, addr, SMSC_KP_KSI);
> > + }
> > +
> > + /* Configure the smsc pins as Keyboard scan output */
> > + for (i = 0; i < kp->cols; i++) {
> > + addr = 0x1a + i;
> > + smsc_write(dev, addr, SMSC_KP_KSO);
> > + }
> > +
> > + smsc_write(dev, SMSC_KP_INT_STAT, SMSC_KP_SET_HIGH);
> > + smsc_write(dev, SMSC_WKUP_CTRL, SMSC_KP_SET_LOW_PWR);
> > + smsc_write(dev, SMSC_KP_OUT, SMSC_KSO_ALL_LOW);
> > +
> > + row_shift = get_count_order(kp->cols);
> > + max_keys = kp->rows << row_shift;
> > +
> > + kp->row_shift = row_shift;
> > + kp->keymap = devm_kzalloc(dev, max_keys * sizeof(kp->keymap[0]),
> > + GFP_KERNEL);
> > + if (!kp->keymap) {
> > + dev_err(dev, "Not enough memory for keymap\n");
> > + return -ENOMEM;
> > + }
> > +
> > + ret = matrix_keypad_build_keymap(NULL, NULL, kp->rows,
> > + kp->cols, kp->keymap, input);
> > + if (ret) {
> > + dev_err(dev, "failed to build keymap\n");
> > + return ret;
> > + }
> > +
> > + /*
> > + * This ISR will always execute in kernel thread context because of
> > + * the need to access the SMSC over the I2C bus.
> > + */
> > + ret = devm_request_threaded_irq(dev, kp->irq, NULL, do_kp_irq,
> > + IRQF_TRIGGER_FALLING | IRQF_ONESHOT, pdev->name, kp);
> > + if (ret) {
> > + dev_dbg(dev, "request_irq failed for irq no=%d\n",
> > + irq);
> > + return ret;
> > + }
> > +
> > + ret = input_register_device(input);
> > + if (ret) {
> > + dev_err(kp->dev,
> > + "Unable to register twl4030 keypad device\n");
> > + return ret;
> > + }
> > +
> > + return 0;
> > +}
> > +
> > +static int __devexit smsc_remove(struct platform_device *pdev)
> > +{
>
> shouldn't you unregister the input device here ??
And that is why I do not like devm_* interface myself... But no, since
input device was allocated with devm_input_allocate_device() it does not
need to be explicitly freed or unregistered.
Thanks.
--
Dmitry
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCHv5] Input: keypad: Add smsc ece1099 keypad driver
2012-10-29 17:06 ` Dmitry Torokhov
@ 2012-10-29 19:05 ` Felipe Balbi
[not found] ` <20121029190516.GA29230-S8G//mZuvNWo5Im9Ml3/Zg@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Felipe Balbi @ 2012-10-29 19:05 UTC (permalink / raw)
To: Dmitry Torokhov
Cc: Felipe Balbi, Sourav Poddar, linux-input, linux-omap, b-cousson,
santosh.shilimkar, devicetree-discuss, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 938 bytes --]
Hi,
On Mon, Oct 29, 2012 at 10:06:33AM -0700, Dmitry Torokhov wrote:
[ big snip ]
> > > +static int __devexit smsc_remove(struct platform_device *pdev)
> > > +{
> >
> > shouldn't you unregister the input device here ??
>
> And that is why I do not like devm_* interface myself... But no, since
> input device was allocated with devm_input_allocate_device() it does not
> need to be explicitly freed or unregistered.
IMHO, that's a fragility on current devm implementation for input
devices, then.
devm_input_allocate_device() is *only* allocating the input device (at
least judging by the name). Looks like you should introduce
devm_input_register_device() ? What happens if I
devm_input_allocate_device() but don't go as far as
input_register_device() (some error happens in-between) ?
I'm sure you have some proper handling for it, but it's quite misleading
the way this was implemented.
--
balbi
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCHv5] Input: keypad: Add smsc ece1099 keypad driver
[not found] ` <20121029190516.GA29230-S8G//mZuvNWo5Im9Ml3/Zg@public.gmane.org>
@ 2012-10-29 20:45 ` Dmitry Torokhov
0 siblings, 0 replies; 6+ messages in thread
From: Dmitry Torokhov @ 2012-10-29 20:45 UTC (permalink / raw)
To: Felipe Balbi
Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
santosh.shilimkar-l0cyMroinI0, linux-input-u79uwXL29TY76Z2rM5mHXA,
Sourav Poddar, linux-omap-u79uwXL29TY76Z2rM5mHXA
On Mon, Oct 29, 2012 at 09:05:53PM +0200, Felipe Balbi wrote:
> Hi,
>
> On Mon, Oct 29, 2012 at 10:06:33AM -0700, Dmitry Torokhov wrote:
>
> [ big snip ]
>
> > > > +static int __devexit smsc_remove(struct platform_device *pdev)
> > > > +{
> > >
> > > shouldn't you unregister the input device here ??
> >
> > And that is why I do not like devm_* interface myself... But no, since
> > input device was allocated with devm_input_allocate_device() it does not
> > need to be explicitly freed or unregistered.
>
> IMHO, that's a fragility on current devm implementation for input
> devices, then.
>
> devm_input_allocate_device() is *only* allocating the input device (at
> least judging by the name). Looks like you should introduce
> devm_input_register_device() ? What happens if I
> devm_input_allocate_device() but don't go as far as
> input_register_device() (some error happens in-between) ?
>
It will be freed automatically.
> I'm sure you have some proper handling for it, but it's quite misleading
> the way this was implemented.
Well, I could add devm_input_register_device(),
devm_input_unregister_device(), devm_input_free_device() and then add
checks to "normal" input_register_device(), input_unregister_device()
and input_free_device() to throw warnings and errors if they are used
with managed resources, and similarly add checks to devm_* API so that
they are not called with unmanaged devices and make a big mess out of
it.
_OR_ I could just add one new call devm_input_allocate_device() to
create managed input devices and make the rest of old API work with both
managed and unmanaged input devices. I think the latter is much better.
Thanks.
--
Dmitry
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCHv5] Input: keypad: Add smsc ece1099 keypad driver
2012-10-29 16:20 ` Felipe Balbi
[not found] ` <20121029162045.GK27566-S8G//mZuvNWo5Im9Ml3/Zg@public.gmane.org>
@ 2012-10-30 5:31 ` Sourav
1 sibling, 0 replies; 6+ messages in thread
From: Sourav @ 2012-10-30 5:31 UTC (permalink / raw)
To: balbi
Cc: dmitry.torokhov, linux-input, linux-omap, b-cousson,
santosh.shilimkar, devicetree-discuss, linux-kernel
Hi Felipe,
On Monday 29 October 2012 09:50 PM, Felipe Balbi wrote:
> Hi,
>
> On Mon, Oct 29, 2012 at 04:08:49PM +0530, Sourav Poddar wrote:
>> +static int __devinit
>> +smsc_probe(struct platform_device *pdev)
>> +{
>> + struct device *dev = &pdev->dev;
>> + struct input_dev *input;
>> + struct smsc_keypad *kp;
>> + int ret = 0;
>> + int i, max_keys, row_shift;
>> + int irq;
>> + int addr;
>> +
>> + kp = devm_kzalloc(dev, sizeof(*kp), GFP_KERNEL);
>> +
>> + input = devm_input_allocate_device(dev);
>> + if (!kp || !input)
>> + ret = -ENOMEM;
>> +
>> + ret = smsc_keypad_parse_dt(dev, kp);
>> + if (ret)
>> + return ret;
>> +
>> + /* Get the debug Device */
>> + kp->input = input;
>> + kp->irq = platform_get_irq(pdev, 0);
>> + kp->dev = dev;
>> +
>> + /* setup input device */
>> + __set_bit(EV_KEY, input->evbit);
>> +
>> + /* Enable auto repeat feature of Linux input subsystem */
>> + if (!kp->no_autorepeat)
>> + __set_bit(EV_REP, input->evbit);
>> +
>> + input_set_capability(input, EV_MSC, MSC_SCAN);
>> + input->name = "SMSC Keypad";
>> + input->phys = "smsc_keypad/input0";
>> + input->dev.parent = &pdev->dev;
>> + input->id.bustype = BUS_HOST;
>> + input->id.vendor = 0x0001;
>> + input->id.product = 0x0001;
>> + input->id.version = 0x0003;
>> +
>> + input->open = smsc_keypad_open;
>> + input->close = smsc_keypad_close;
>> + input_set_drvdata(input, kp);
>> +
>> + /* Mask all GPIO interrupts (0x37-0x3B) */
>> + for (addr = SMSC_GPIO_INT_MASK_START;
>> + addr < SMSC_GPIO_INT_MASK_START + 4; addr++)
>> + smsc_write(dev, addr, 0);
>> +
>> + /* Set all outputs high (0x05-0x09) */
>> + for (addr = SMSC_GPIO_DATA_OUT_START;
>> + addr < SMSC_GPIO_DATA_OUT_START + 4; addr++)
>> + smsc_write(dev, addr, 0xff);
>> +
>> + /* Clear all GPIO interrupts (0x32-0x36) */
>> + for (addr = SMSC_GPIO_INT_STAT_START;
>> + addr < SMSC_GPIO_INT_STAT_START + 4; addr++)
>> + smsc_write(dev, addr, 0xff);
>> +
>> + /* Configure the smsc pins as Keyboard scan Input */
>> + for (i = 0; i < kp->rows; i++) {
>> + addr = 0x12 + i;
>> + smsc_write(dev, addr, SMSC_KP_KSI);
>> + }
>> +
>> + /* Configure the smsc pins as Keyboard scan output */
>> + for (i = 0; i < kp->cols; i++) {
>> + addr = 0x1a + i;
>> + smsc_write(dev, addr, SMSC_KP_KSO);
>> + }
>> +
>> + smsc_write(dev, SMSC_KP_INT_STAT, SMSC_KP_SET_HIGH);
>> + smsc_write(dev, SMSC_WKUP_CTRL, SMSC_KP_SET_LOW_PWR);
>> + smsc_write(dev, SMSC_KP_OUT, SMSC_KSO_ALL_LOW);
>> +
>> + row_shift = get_count_order(kp->cols);
>> + max_keys = kp->rows << row_shift;
>> +
>> + kp->row_shift = row_shift;
>> + kp->keymap = devm_kzalloc(dev, max_keys * sizeof(kp->keymap[0]),
>> + GFP_KERNEL);
>> + if (!kp->keymap) {
>> + dev_err(dev, "Not enough memory for keymap\n");
>> + return -ENOMEM;
>> + }
>> +
>> + ret = matrix_keypad_build_keymap(NULL, NULL, kp->rows,
>> + kp->cols, kp->keymap, input);
>> + if (ret) {
>> + dev_err(dev, "failed to build keymap\n");
>> + return ret;
>> + }
>> +
>> + /*
>> + * This ISR will always execute in kernel thread context because of
>> + * the need to access the SMSC over the I2C bus.
>> + */
>> + ret = devm_request_threaded_irq(dev, kp->irq, NULL, do_kp_irq,
>> + IRQF_TRIGGER_FALLING | IRQF_ONESHOT, pdev->name, kp);
>> + if (ret) {
>> + dev_dbg(dev, "request_irq failed for irq no=%d\n",
>> + irq);
>> + return ret;
>> + }
>> +
>> + ret = input_register_device(input);
>> + if (ret) {
>> + dev_err(kp->dev,
>> + "Unable to register twl4030 keypad device\n");
>> + return ret;
>> + }
>> +
>> + return 0;
>> +}
>> +
>> +static int __devexit smsc_remove(struct platform_device *pdev)
>> +{
> shouldn't you unregister the input device here ??
>
As Dmitry already pointed out, I was also thinking on the same line that
using devm_* variants
will automatically take care of unregistering your device.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-10-30 5:30 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-29 10:38 [PATCHv5] Input: keypad: Add smsc ece1099 keypad driver Sourav Poddar
2012-10-29 16:20 ` Felipe Balbi
[not found] ` <20121029162045.GK27566-S8G//mZuvNWo5Im9Ml3/Zg@public.gmane.org>
2012-10-29 17:06 ` Dmitry Torokhov
2012-10-29 19:05 ` Felipe Balbi
[not found] ` <20121029190516.GA29230-S8G//mZuvNWo5Im9Ml3/Zg@public.gmane.org>
2012-10-29 20:45 ` Dmitry Torokhov
2012-10-30 5:31 ` Sourav
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).