* [PATCH] input: keyboard: lm8333: add driver
@ 2012-03-21 18:50 Wolfram Sang
2012-03-22 3:52 ` Dmitry Torokhov
0 siblings, 1 reply; 4+ messages in thread
From: Wolfram Sang @ 2012-03-21 18:50 UTC (permalink / raw)
To: linux-input; +Cc: Dmitry Torokhov, Wolfram Sang
This driver adds support for the keypad part of the LM8333 and provides
hooks for possible GPIO/PWM drivers. Note that this is not a MFD device
beause you cannot disable the keypad functionality which, thus, has to
be handled by the core anyhow.
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
---
I am planning to do the GPIO driver as well, once my broken hardware gets
replaced. Based on 3.3. Tested by our customer.
drivers/input/keyboard/Kconfig | 10 ++
drivers/input/keyboard/Makefile | 1 +
drivers/input/keyboard/lm8333.c | 225 +++++++++++++++++++++++++++++++++++++++
include/linux/input/lm8333.h | 24 ++++
4 files changed, 260 insertions(+), 0 deletions(-)
create mode 100644 drivers/input/keyboard/lm8333.c
create mode 100644 include/linux/input/lm8333.h
diff --git a/drivers/input/keyboard/Kconfig b/drivers/input/keyboard/Kconfig
index cdc385b..0294147 100644
--- a/drivers/input/keyboard/Kconfig
+++ b/drivers/input/keyboard/Kconfig
@@ -309,6 +309,16 @@ config KEYBOARD_LM8323
To compile this driver as a module, choose M here: the
module will be called lm8323.
+config KEYBOARD_LM8333
+ tristate "LM8333 keypad chip"
+ depends on I2C
+ help
+ If you say yes here you get support for the National Semiconductor
+ LM8333 keypad controller.
+
+ To compile this driver as a module, choose M here: the
+ module will be called lm8333.
+
config KEYBOARD_LOCOMO
tristate "LoCoMo Keyboard Support"
depends on SHARP_LOCOMO
diff --git a/drivers/input/keyboard/Makefile b/drivers/input/keyboard/Makefile
index df7061f..b03b024 100644
--- a/drivers/input/keyboard/Makefile
+++ b/drivers/input/keyboard/Makefile
@@ -24,6 +24,7 @@ obj-$(CONFIG_KEYBOARD_HP6XX) += jornada680_kbd.o
obj-$(CONFIG_KEYBOARD_HP7XX) += jornada720_kbd.o
obj-$(CONFIG_KEYBOARD_LKKBD) += lkkbd.o
obj-$(CONFIG_KEYBOARD_LM8323) += lm8323.o
+obj-$(CONFIG_KEYBOARD_LM8333) += lm8333.o
obj-$(CONFIG_KEYBOARD_LOCOMO) += locomokbd.o
obj-$(CONFIG_KEYBOARD_MAPLE) += maple_keyb.o
obj-$(CONFIG_KEYBOARD_MATRIX) += matrix_keypad.o
diff --git a/drivers/input/keyboard/lm8333.c b/drivers/input/keyboard/lm8333.c
new file mode 100644
index 0000000..7c53f03
--- /dev/null
+++ b/drivers/input/keyboard/lm8333.c
@@ -0,0 +1,225 @@
+/*
+ * LM8333 keypad driver
+ * Copyright (C) 2012 Wolfram Sang, Pengutronix <w.sang@pengutronix.de>
+ *
+ * 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.
+ */
+
+#include <linux/module.h>
+#include <linux/irq.h>
+#include <linux/i2c.h>
+#include <linux/interrupt.h>
+#include <linux/input/matrix_keypad.h>
+#include <linux/input/lm8333.h>
+
+#define LM8333_FIFO_READ 0x20
+#define LM8333_DEBOUNCE 0x22
+#define LM8333_READ_INT 0xD0
+#define LM8333_ACTIVE 0xE4
+#define LM8333_READ_ERROR 0xF0
+
+#define LM8333_KEYPAD_IRQ (1 << 0)
+#define LM8333_ERROR_IRQ (1 << 3)
+
+#define LM8333_ERROR_KEYOVR 0x04
+#define LM8333_ERROR_FIFOOVR 0x40
+
+#define LM8333_FIFO_TRANSFER_SIZE 16
+
+#define LM8333_ROW_SHIFT 4
+#define LM8333_NUM_ROWS 8
+
+
+struct lm8333 {
+ struct i2c_client *client;
+ struct input_dev *input;
+ unsigned short keycodes[LM8333_NUM_ROWS << LM8333_ROW_SHIFT];
+};
+
+/* The accessors try twice because the first access may be needed for wakeup */
+
+int lm8333_read8(struct lm8333 *lm8333, u8 cmd)
+{
+ int repeated = 0, ret;
+
+ do {
+ ret = i2c_smbus_read_byte_data(lm8333->client, cmd);
+ } while (ret < 0 && !repeated++);
+
+ return ret;
+}
+EXPORT_SYMBOL_GPL(lm8333_read8);
+
+int lm8333_write8(struct lm8333 *lm8333, u8 cmd, u8 val)
+{
+ int repeated = 0, ret;
+
+ do {
+ ret = i2c_smbus_write_byte_data(lm8333->client, cmd, val);
+ } while (ret < 0 && !repeated++);
+
+ return ret;
+}
+EXPORT_SYMBOL_GPL(lm8333_write8);
+
+int lm8333_read_block(struct lm8333 *lm8333, u8 cmd, u8 len, u8 *buf)
+{
+ int repeated = 0, ret;
+
+ do {
+ ret = i2c_smbus_read_i2c_block_data(lm8333->client, cmd, len, buf);
+ } while (ret < 0 && !repeated++);
+
+ return ret;
+}
+EXPORT_SYMBOL_GPL(lm8333_read_block);
+
+static void lm8333_key_handler(struct lm8333 *lm8333)
+{
+ u8 keys[LM8333_FIFO_TRANSFER_SIZE];
+ u8 code, pressed;
+ int i, ret;
+
+ ret = lm8333_read_block(lm8333, LM8333_FIFO_READ, LM8333_FIFO_TRANSFER_SIZE, keys);
+ if (ret != LM8333_FIFO_TRANSFER_SIZE) {
+ dev_err(&lm8333->client->dev, "Error %d while reading FIFO\n", ret);
+ return;
+ }
+
+ for (i = 0; keys[i] && i < LM8333_FIFO_TRANSFER_SIZE; i++) {
+ pressed = !!(keys[i] & 0x80);
+ code = keys[i] & 0x7f;
+
+ input_event(lm8333->input, EV_MSC, MSC_SCAN, code);
+ input_report_key(lm8333->input, lm8333->keycodes[code], pressed);
+ }
+
+ input_sync(lm8333->input);
+}
+
+static irqreturn_t lm8333_irq_thread(int irq, void *data)
+{
+ struct lm8333 *lm8333 = data;
+ u8 status = lm8333_read8(lm8333, LM8333_READ_INT);
+
+ if (!status)
+ return IRQ_NONE;
+
+ if (status & LM8333_ERROR_IRQ) {
+ u8 err = lm8333_read8(lm8333, LM8333_READ_ERROR);
+
+ if (err & (LM8333_ERROR_KEYOVR | LM8333_ERROR_FIFOOVR)) {
+ u8 dummy[LM8333_FIFO_TRANSFER_SIZE];
+
+ lm8333_read_block(lm8333, LM8333_FIFO_READ,
+ LM8333_FIFO_TRANSFER_SIZE, dummy);
+ }
+ dev_err(&lm8333->client->dev, "Got error %02x\n", err);
+ }
+
+ if (status & LM8333_KEYPAD_IRQ)
+ lm8333_key_handler(lm8333);
+
+ return IRQ_HANDLED;
+}
+
+static int __devinit lm8333_probe(struct i2c_client *client,
+ const struct i2c_device_id *id)
+{
+ struct lm8333_platform_data *pdata = client->dev.platform_data;
+ struct lm8333 *lm8333;
+ struct input_dev *input;
+ int err, active_time;
+
+ if (!pdata)
+ return -EINVAL;
+
+ active_time = pdata->active_time ?: 500;
+ if (active_time / 3 <= pdata->debounce_time / 3) {
+ dev_err(&client->dev, "Active time not big enough!\n");
+ return -EINVAL;
+ }
+
+ lm8333 = devm_kzalloc(&client->dev, sizeof(*lm8333), GFP_KERNEL);
+ input = input_allocate_device();
+ if (!lm8333 || !input)
+ return -ENOMEM;
+
+ input->name = client->name;
+ input->dev.parent = &client->dev;
+ input->id.bustype = BUS_I2C;
+
+ lm8333->client = client;
+ lm8333->input = input;
+
+ i2c_set_clientdata(client, lm8333);
+
+ input->keycode = lm8333->keycodes;
+ input->keycodesize = sizeof(lm8333->keycodes[0]);
+ input->keycodemax = ARRAY_SIZE(lm8333->keycodes);
+ input->evbit[0] = BIT_MASK(EV_KEY);
+ input_set_capability(input, EV_MSC, MSC_SCAN);
+
+ matrix_keypad_build_keymap(pdata->matrix_data, LM8333_ROW_SHIFT,
+ input->keycode, input->keybit);
+
+
+ if (pdata->debounce_time) {
+ err = lm8333_write8(lm8333, LM8333_DEBOUNCE, pdata->debounce_time / 3);
+ if (err)
+ dev_warn(&client->dev, "Unable to set debounce time\n");
+ }
+
+ if (pdata->active_time) {
+ err = lm8333_write8(lm8333, LM8333_ACTIVE, pdata->active_time / 3);
+ if (err)
+ dev_warn(&client->dev, "Unable to set active time\n");
+ }
+
+ err = devm_request_threaded_irq(&client->dev, client->irq, NULL, lm8333_irq_thread,
+ IRQF_TRIGGER_FALLING | IRQF_ONESHOT, "lm8333", lm8333);
+ if (err)
+ goto free_input;
+
+ err = input_register_device(input);
+ if (err)
+ goto free_input;
+
+ return 0;
+
+ free_input:
+ input_free_device(input);
+ return err;
+}
+
+static int __devexit lm8333_remove(struct i2c_client *client)
+{
+ struct lm8333 *lm8333 = i2c_get_clientdata(client);
+
+ input_unregister_device(lm8333->input);
+ input_free_device(lm8333->input);
+ return 0;
+}
+
+static const struct i2c_device_id lm8333_id[] = {
+ { "lm8333", 0 },
+ { }
+};
+MODULE_DEVICE_TABLE(i2c, lm8333_id);
+
+static struct i2c_driver lm8333_driver = {
+ .driver = {
+ .name = "lm8333",
+ .owner = THIS_MODULE,
+ },
+ .probe = lm8333_probe,
+ .remove = __devexit_p(lm8333_remove),
+ .id_table = lm8333_id,
+};
+module_i2c_driver(lm8333_driver);
+
+MODULE_AUTHOR("Wolfram Sang <w.sang@pengutronix.de>");
+MODULE_DESCRIPTION("LM8333 keyboard driver");
+MODULE_LICENSE("GPL v2");
diff --git a/include/linux/input/lm8333.h b/include/linux/input/lm8333.h
new file mode 100644
index 0000000..79f918c
--- /dev/null
+++ b/include/linux/input/lm8333.h
@@ -0,0 +1,24 @@
+/*
+ * public include for LM8333 keypad driver - same license as driver
+ * Copyright (C) 2012 Wolfram Sang, Pengutronix <w.sang@pengutronix.de>
+ */
+
+#ifndef _LM8333_H
+#define _LM8333_H
+
+struct lm8333;
+
+struct lm8333_platform_data {
+ /* Keymap data */
+ const struct matrix_keymap_data *matrix_data;
+ /* Active timeout before enter HALT mode in microseconds */
+ unsigned active_time;
+ /* Debounce interval in microseconds */
+ unsigned debounce_time;
+};
+
+extern int lm8333_read8(struct lm8333 *lm8333, u8 cmd);
+extern int lm8333_write8(struct lm8333 *lm8333, u8 cmd, u8 val);
+extern int lm8333_read_block(struct lm8333 *lm8333, u8 cmd, u8 len, u8 *buf);
+
+#endif /* _LM8333_H */
--
1.7.2.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] input: keyboard: lm8333: add driver
2012-03-21 18:50 [PATCH] input: keyboard: lm8333: add driver Wolfram Sang
@ 2012-03-22 3:52 ` Dmitry Torokhov
2012-03-22 9:11 ` Wolfram Sang
0 siblings, 1 reply; 4+ messages in thread
From: Dmitry Torokhov @ 2012-03-22 3:52 UTC (permalink / raw)
To: Wolfram Sang; +Cc: linux-input
Hi Wolfram,
On Wed, Mar 21, 2012 at 07:50:28PM +0100, Wolfram Sang wrote:
> This driver adds support for the keypad part of the LM8333 and provides
> hooks for possible GPIO/PWM drivers. Note that this is not a MFD device
> beause you cannot disable the keypad functionality which, thus, has to
> be handled by the core anyhow.
So it's like lm8323... In this case we should just add PWM handling
directly to this driver.
>
> Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
> ---
>
> I am planning to do the GPIO driver as well, once my broken hardware gets
> replaced. Based on 3.3. Tested by our customer.
>
> drivers/input/keyboard/Kconfig | 10 ++
> drivers/input/keyboard/Makefile | 1 +
> drivers/input/keyboard/lm8333.c | 225 +++++++++++++++++++++++++++++++++++++++
> include/linux/input/lm8333.h | 24 ++++
> 4 files changed, 260 insertions(+), 0 deletions(-)
> create mode 100644 drivers/input/keyboard/lm8333.c
> create mode 100644 include/linux/input/lm8333.h
>
> diff --git a/drivers/input/keyboard/Kconfig b/drivers/input/keyboard/Kconfig
> index cdc385b..0294147 100644
> --- a/drivers/input/keyboard/Kconfig
> +++ b/drivers/input/keyboard/Kconfig
> @@ -309,6 +309,16 @@ config KEYBOARD_LM8323
> To compile this driver as a module, choose M here: the
> module will be called lm8323.
>
> +config KEYBOARD_LM8333
> + tristate "LM8333 keypad chip"
> + depends on I2C
> + help
> + If you say yes here you get support for the National Semiconductor
> + LM8333 keypad controller.
> +
> + To compile this driver as a module, choose M here: the
> + module will be called lm8333.
> +
> config KEYBOARD_LOCOMO
> tristate "LoCoMo Keyboard Support"
> depends on SHARP_LOCOMO
> diff --git a/drivers/input/keyboard/Makefile b/drivers/input/keyboard/Makefile
> index df7061f..b03b024 100644
> --- a/drivers/input/keyboard/Makefile
> +++ b/drivers/input/keyboard/Makefile
> @@ -24,6 +24,7 @@ obj-$(CONFIG_KEYBOARD_HP6XX) += jornada680_kbd.o
> obj-$(CONFIG_KEYBOARD_HP7XX) += jornada720_kbd.o
> obj-$(CONFIG_KEYBOARD_LKKBD) += lkkbd.o
> obj-$(CONFIG_KEYBOARD_LM8323) += lm8323.o
> +obj-$(CONFIG_KEYBOARD_LM8333) += lm8333.o
> obj-$(CONFIG_KEYBOARD_LOCOMO) += locomokbd.o
> obj-$(CONFIG_KEYBOARD_MAPLE) += maple_keyb.o
> obj-$(CONFIG_KEYBOARD_MATRIX) += matrix_keypad.o
> diff --git a/drivers/input/keyboard/lm8333.c b/drivers/input/keyboard/lm8333.c
> new file mode 100644
> index 0000000..7c53f03
> --- /dev/null
> +++ b/drivers/input/keyboard/lm8333.c
> @@ -0,0 +1,225 @@
> +/*
> + * LM8333 keypad driver
> + * Copyright (C) 2012 Wolfram Sang, Pengutronix <w.sang@pengutronix.de>
> + *
> + * 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.
> + */
> +
> +#include <linux/module.h>
> +#include <linux/irq.h>
> +#include <linux/i2c.h>
> +#include <linux/interrupt.h>
> +#include <linux/input/matrix_keypad.h>
> +#include <linux/input/lm8333.h>
> +
> +#define LM8333_FIFO_READ 0x20
> +#define LM8333_DEBOUNCE 0x22
> +#define LM8333_READ_INT 0xD0
> +#define LM8333_ACTIVE 0xE4
> +#define LM8333_READ_ERROR 0xF0
> +
> +#define LM8333_KEYPAD_IRQ (1 << 0)
> +#define LM8333_ERROR_IRQ (1 << 3)
> +
> +#define LM8333_ERROR_KEYOVR 0x04
> +#define LM8333_ERROR_FIFOOVR 0x40
> +
> +#define LM8333_FIFO_TRANSFER_SIZE 16
> +
> +#define LM8333_ROW_SHIFT 4
> +#define LM8333_NUM_ROWS 8
> +
> +
> +struct lm8333 {
> + struct i2c_client *client;
> + struct input_dev *input;
> + unsigned short keycodes[LM8333_NUM_ROWS << LM8333_ROW_SHIFT];
> +};
> +
> +/* The accessors try twice because the first access may be needed for wakeup */
> +
> +int lm8333_read8(struct lm8333 *lm8333, u8 cmd)
> +{
> + int repeated = 0, ret;
> +
> + do {
> + ret = i2c_smbus_read_byte_data(lm8333->client, cmd);
> + } while (ret < 0 && !repeated++);
So there is 1 retry... Why don't you have
do {
...
} while (ret < 0 && retries++ < LM8333_NUM_RETRIES);
to make it completely obvious.
> +
> + return ret;
> +}
> +EXPORT_SYMBOL_GPL(lm8333_read8);
Do not export until there are users please.
> +
> +int lm8333_write8(struct lm8333 *lm8333, u8 cmd, u8 val)
> +{
> + int repeated = 0, ret;
> +
> + do {
> + ret = i2c_smbus_write_byte_data(lm8333->client, cmd, val);
> + } while (ret < 0 && !repeated++);
> +
> + return ret;
> +}
> +EXPORT_SYMBOL_GPL(lm8333_write8);
> +
> +int lm8333_read_block(struct lm8333 *lm8333, u8 cmd, u8 len, u8 *buf)
> +{
> + int repeated = 0, ret;
> +
> + do {
> + ret = i2c_smbus_read_i2c_block_data(lm8333->client, cmd, len, buf);
> + } while (ret < 0 && !repeated++);
> +
> + return ret;
> +}
> +EXPORT_SYMBOL_GPL(lm8333_read_block);
> +
> +static void lm8333_key_handler(struct lm8333 *lm8333)
> +{
> + u8 keys[LM8333_FIFO_TRANSFER_SIZE];
> + u8 code, pressed;
> + int i, ret;
> +
> + ret = lm8333_read_block(lm8333, LM8333_FIFO_READ, LM8333_FIFO_TRANSFER_SIZE, keys);
> + if (ret != LM8333_FIFO_TRANSFER_SIZE) {
> + dev_err(&lm8333->client->dev, "Error %d while reading FIFO\n", ret);
> + return;
> + }
> +
> + for (i = 0; keys[i] && i < LM8333_FIFO_TRANSFER_SIZE; i++) {
> + pressed = !!(keys[i] & 0x80);
> + code = keys[i] & 0x7f;
> +
> + input_event(lm8333->input, EV_MSC, MSC_SCAN, code);
> + input_report_key(lm8333->input, lm8333->keycodes[code], pressed);
> + }
> +
> + input_sync(lm8333->input);
> +}
> +
> +static irqreturn_t lm8333_irq_thread(int irq, void *data)
> +{
> + struct lm8333 *lm8333 = data;
> + u8 status = lm8333_read8(lm8333, LM8333_READ_INT);
> +
> + if (!status)
> + return IRQ_NONE;
> +
> + if (status & LM8333_ERROR_IRQ) {
> + u8 err = lm8333_read8(lm8333, LM8333_READ_ERROR);
> +
> + if (err & (LM8333_ERROR_KEYOVR | LM8333_ERROR_FIFOOVR)) {
> + u8 dummy[LM8333_FIFO_TRANSFER_SIZE];
> +
> + lm8333_read_block(lm8333, LM8333_FIFO_READ,
> + LM8333_FIFO_TRANSFER_SIZE, dummy);
> + }
> + dev_err(&lm8333->client->dev, "Got error %02x\n", err);
> + }
> +
> + if (status & LM8333_KEYPAD_IRQ)
> + lm8333_key_handler(lm8333);
> +
> + return IRQ_HANDLED;
> +}
> +
> +static int __devinit lm8333_probe(struct i2c_client *client,
> + const struct i2c_device_id *id)
> +{
> + struct lm8333_platform_data *pdata = client->dev.platform_data;
> + struct lm8333 *lm8333;
> + struct input_dev *input;
> + int err, active_time;
> +
> + if (!pdata)
> + return -EINVAL;
> +
> + active_time = pdata->active_time ?: 500;
> + if (active_time / 3 <= pdata->debounce_time / 3) {
> + dev_err(&client->dev, "Active time not big enough!\n");
> + return -EINVAL;
> + }
> +
> + lm8333 = devm_kzalloc(&client->dev, sizeof(*lm8333), GFP_KERNEL);
> + input = input_allocate_device();
> + if (!lm8333 || !input)
You leak memory here if input_allocate_device() succeeds but
devm_kzalloc fails. Situations like this is why I do not like devm_*
interface.
> + return -ENOMEM;
> +
> + input->name = client->name;
> + input->dev.parent = &client->dev;
> + input->id.bustype = BUS_I2C;
> +
> + lm8333->client = client;
> + lm8333->input = input;
> +
> + i2c_set_clientdata(client, lm8333);
> +
> + input->keycode = lm8333->keycodes;
> + input->keycodesize = sizeof(lm8333->keycodes[0]);
> + input->keycodemax = ARRAY_SIZE(lm8333->keycodes);
> + input->evbit[0] = BIT_MASK(EV_KEY);
> + input_set_capability(input, EV_MSC, MSC_SCAN);
> +
> + matrix_keypad_build_keymap(pdata->matrix_data, LM8333_ROW_SHIFT,
> + input->keycode, input->keybit);
> +
> +
> + if (pdata->debounce_time) {
> + err = lm8333_write8(lm8333, LM8333_DEBOUNCE, pdata->debounce_time / 3);
> + if (err)
> + dev_warn(&client->dev, "Unable to set debounce time\n");
> + }
> +
> + if (pdata->active_time) {
> + err = lm8333_write8(lm8333, LM8333_ACTIVE, pdata->active_time / 3);
> + if (err)
> + dev_warn(&client->dev, "Unable to set active time\n");
> + }
> +
> + err = devm_request_threaded_irq(&client->dev, client->irq, NULL, lm8333_irq_thread,
> + IRQF_TRIGGER_FALLING | IRQF_ONESHOT, "lm8333", lm8333);
> + if (err)
> + goto free_input;
> +
> + err = input_register_device(input);
> + if (err)
> + goto free_input;
> +
> + return 0;
> +
> + free_input:
> + input_free_device(input);
> + return err;
> +}
> +
> +static int __devexit lm8333_remove(struct i2c_client *client)
> +{
> + struct lm8333 *lm8333 = i2c_get_clientdata(client);
> +
> + input_unregister_device(lm8333->input);
> + input_free_device(lm8333->input);
No calls to input_free_device() after input_unregister_device().
Also you need to free IRQ before you unregister (and free) input device,
otherwise you risk dereferencing already freed memory. Another example
why I hate devm_*.
Thanks.
--
Dmitry
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] input: keyboard: lm8333: add driver
2012-03-22 3:52 ` Dmitry Torokhov
@ 2012-03-22 9:11 ` Wolfram Sang
2012-03-22 16:47 ` Dmitry Torokhov
0 siblings, 1 reply; 4+ messages in thread
From: Wolfram Sang @ 2012-03-22 9:11 UTC (permalink / raw)
To: Dmitry Torokhov; +Cc: linux-input
[-- Attachment #1: Type: text/plain, Size: 2150 bytes --]
Hi Dmitry,
thanks for the immediate review!
> > This driver adds support for the keypad part of the LM8333 and provides
> > hooks for possible GPIO/PWM drivers. Note that this is not a MFD device
> > beause you cannot disable the keypad functionality which, thus, has to
> > be handled by the core anyhow.
>
> So it's like lm8323... In this case we should just add PWM handling
> directly to this driver.
Not sure. There is a PWM framework in the making.
> > +
> > +/* The accessors try twice because the first access may be needed for wakeup */
> > +
> > +int lm8333_read8(struct lm8333 *lm8333, u8 cmd)
> > +{
> > + int repeated = 0, ret;
> > +
> > + do {
> > + ret = i2c_smbus_read_byte_data(lm8333->client, cmd);
> > + } while (ret < 0 && !repeated++);
>
> So there is 1 retry... Why don't you have
>
> do {
> ...
> } while (ret < 0 && retries++ < LM8333_NUM_RETRIES);
>
> to make it completely obvious.
I thought '!repeated' was readable, but will change that.
> > + lm8333 = devm_kzalloc(&client->dev, sizeof(*lm8333), GFP_KERNEL);
> > + input = input_allocate_device();
> > + if (!lm8333 || !input)
>
> You leak memory here if input_allocate_device() succeeds but
> devm_kzalloc fails. Situations like this is why I do not like devm_*
> interface.
I see. Okay, the true flaw is that one should check for error cases
seperately, but with devm_* one is tempted to combine that.
> > +static int __devexit lm8333_remove(struct i2c_client *client)
> > +{
> > + struct lm8333 *lm8333 = i2c_get_clientdata(client);
> > +
> > + input_unregister_device(lm8333->input);
> > + input_free_device(lm8333->input);
>
> Also you need to free IRQ before you unregister (and free) input device,
> otherwise you risk dereferencing already freed memory. Another example
> why I hate devm_*.
Understood. The problem here is mixing devm_* setup with non_devm. So,
it is an either-or-thingie? Hmmm...
Regards,
Wolfram
--
Pengutronix e.K. | Wolfram Sang |
Industrial Linux Solutions | http://www.pengutronix.de/ |
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] input: keyboard: lm8333: add driver
2012-03-22 9:11 ` Wolfram Sang
@ 2012-03-22 16:47 ` Dmitry Torokhov
0 siblings, 0 replies; 4+ messages in thread
From: Dmitry Torokhov @ 2012-03-22 16:47 UTC (permalink / raw)
To: Wolfram Sang; +Cc: linux-input
On Thursday, March 22, 2012 10:11:45 AM Wolfram Sang wrote:
> Hi Dmitry,
>
> thanks for the immediate review!
>
> > > This driver adds support for the keypad part of the LM8333 and provides
> > > hooks for possible GPIO/PWM drivers. Note that this is not a MFD device
> > > beause you cannot disable the keypad functionality which, thus, has to
> > > be handled by the core anyhow.
> >
> > So it's like lm8323... In this case we should just add PWM handling
> > directly to this driver.
>
> Not sure. There is a PWM framework in the making.
OK.
>
> > > +
> > > +/* The accessors try twice because the first access may be needed for
> > > wakeup */ +
> > > +int lm8333_read8(struct lm8333 *lm8333, u8 cmd)
> > > +{
> > > + int repeated = 0, ret;
> > > +
> > > + do {
> > > + ret = i2c_smbus_read_byte_data(lm8333->client, cmd);
> > > + } while (ret < 0 && !repeated++);
> >
> > So there is 1 retry... Why don't you have
> >
> > do {
> >
> > ...
> >
> > } while (ret < 0 && retries++ < LM8333_NUM_RETRIES);
> >
> > to make it completely obvious.
>
> I thought '!repeated' was readable, but will change that.
It is quite readable but I don't want to have any doubts when I look at the
code at 2AM drunk ;)
>
> > > + lm8333 = devm_kzalloc(&client->dev, sizeof(*lm8333), GFP_KERNEL);
> > > + input = input_allocate_device();
> > > + if (!lm8333 || !input)
> >
> > You leak memory here if input_allocate_device() succeeds but
> > devm_kzalloc fails. Situations like this is why I do not like devm_*
> > interface.
>
> I see. Okay, the true flaw is that one should check for error cases
> seperately, but with devm_* one is tempted to combine that.
Without devm I most often do:
xxx = kzalloc(sizeof(*xxx), GFP_KERNEL);
input = input_allocate_device();
if (!xxx || !input) {
error = -ENOMEM;
goto err_free_mem:
}
...
err_free_mem:
input_free_device(input);
kfree(xxx);
>
> > > +static int __devexit lm8333_remove(struct i2c_client *client)
> > > +{
> > > + struct lm8333 *lm8333 = i2c_get_clientdata(client);
> > > +
> > > + input_unregister_device(lm8333->input);
> > > + input_free_device(lm8333->input);
> >
> > Also you need to free IRQ before you unregister (and free) input device,
> > otherwise you risk dereferencing already freed memory. Another example
> > why I hate devm_*.
>
> Understood. The problem here is mixing devm_* setup with non_devm. So,
> it is an either-or-thingie? Hmmm...
There probably cases where devm_ may work but I find that mixing two paradigms
just makes things harder for me. "Is this resource managed? Do I still have to
release it manually even though it is managed? Does the order matter?"
Without devm_* I just need to pay attention if resource is refcounted or not,
but otherwise I need to release everything I acquired and I control entire
sequence.
Thanks.
--
Dmitry
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-03-22 16:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-21 18:50 [PATCH] input: keyboard: lm8333: add driver Wolfram Sang
2012-03-22 3:52 ` Dmitry Torokhov
2012-03-22 9:11 ` Wolfram Sang
2012-03-22 16:47 ` Dmitry Torokhov
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).