linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Olivier Sobrie <olivier.sobrie@gmail.com>
To: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Cc: Olivier Sobrie <olivier@sobrie.be>,
	Henrik Rydberg <rydberg@euromail.se>,
	linux-input@vger.kernel.org,
	Jan Paesmans <jan.paesmans@gmail.com>
Subject: Re: [PATCH v3] ili210x: Add support for Ilitek ILI210x based touchscreens
Date: Wed, 7 Mar 2012 11:11:29 +0100	[thread overview]
Message-ID: <20120307101129.GA23355@hposo> (raw)
In-Reply-To: <20120307084401.GC20493@core.coreip.homeip.net>

Hi Dmitry,

On Wed, Mar 07, 2012 at 12:44:01AM -0800, Dmitry Torokhov wrote:
> > +#define MAX_TOUCHES		2
> > +#define POLL_PERIOD		msecs_to_jiffies(1)
> 
> That seems very aggressive...

I'll do test and try to increase it without reducing too much performances.
One of our customers requires very short delays between successive
touches...

> > +	input->id.bustype = BUS_I2C;
> > +	input->dev.parent = dev;
> > +
> > +	input_set_drvdata(input, priv);
> > +
> > +	INIT_DELAYED_WORK(&priv->dwork, ili210x_work);
> > +	priv->get_pendown_state = pdata->get_pendown_state;
> > +	rc = request_irq(client->irq, ili210x_irq, pdata->irq_flags,
> > +			 client->name, priv);
> > +	if (rc) {
> > +		dev_err(dev, "Unable to request touchscreen IRQ, err: %d\n",
> > +			rc);
> > +		goto fail_probe;
> > +	}
> > +
> > +	rc = sysfs_create_group(&dev->kobj, &ili210x_attr_group);
> > +	if (rc) {
> > +		dev_err(dev, "Unable to create sysfs attributes, err: %d\n",
> > +			rc);
> > +		goto fail_sysfs;
> > +	}
> > +
> > +	rc = input_register_device(input);
> > +	if (rc) {
> > +		dev_err(dev, "Cannot regiser input device, err: %d\n", rc);
> > +		goto fail_input;
> > +	}
> > +
> > +	priv->client = client;
> > +	priv->input = input;
> 
> This is too late. BY this time IRQ might already be raised and work that
> dereferences priv->input migt already be executing.

Argh.
Ok I'll fix this.

> 
> > +
> > +	device_init_wakeup(&client->dev, 1);
> > +
> > +	dev_info(dev,
> > +		 "ILI210x initialized (IRQ: %d), firmware version %d.%d.%d",
> > +		 client->irq, firmware.id, firmware.major, firmware.minor);
> 
> Do we need to be this noisy?

Need? certainly not...
Ok I'll remove the trace...

> 
> > +
> > +	return 0;
> > +
> > +fail_input:
> > +	sysfs_remove_group(&dev->kobj, &ili210x_attr_group);
> > +fail_sysfs:
> > +	free_irq(client->irq, priv);
> > +fail_probe:
> > +	input_free_device(input);
> > +fail:
> > +	kfree(priv);
> > +	return rc;
> > +}
> > +
> > +static int __devexit ili210x_i2c_remove(struct i2c_client *client)
> > +{
> > +	struct ili210x *priv = dev_get_drvdata(&client->dev);
> > +	struct device *dev = &priv->client->dev;
> > +
> > +	sysfs_remove_group(&dev->kobj, &ili210x_attr_group);
> > +	cancel_delayed_work_sync(&priv->dwork);
> > +	free_irq(priv->client->irq, priv);
> 
> Wrong order. You want to free IRQ first and then cancel residual work.
> If you try to cancel first and then free IRQ ISR might get fired and new
> work might get scheduled.

Ok. Thanks.

> 
> > +	input_unregister_device(priv->input);
> > +	kfree(priv);
> > +
> > +	return 0;
> > +}
> > +
> > +#ifdef CONFIG_PM_SLEEP
> > +static int ili210x_i2c_suspend(struct device *dev)
> > +{
> > +	struct i2c_client *client = to_i2c_client(dev);
> > +
> > +	if (device_may_wakeup(&client->dev))
> > +		enable_irq_wake(client->irq);
> > +
> > +	return 0;
> > +}
> > +
> > +static int ili210x_i2c_resume(struct device *dev)
> > +{
> > +	struct i2c_client *client = to_i2c_client(dev);
> > +
> > +	if (device_may_wakeup(&client->dev))
> > +		disable_irq_wake(client->irq);
> > +
> > +	return 0;
> > +}
> > +#endif
> > +
> > +static SIMPLE_DEV_PM_OPS(ili210x_i2c_pm, ili210x_i2c_suspend,
> > +			 ili210x_i2c_resume);
> > +
> > +static const struct i2c_device_id ili210x_i2c_id[] = {
> > +	{ "ili210x", 0 },
> > +	{ }
> > +};
> > +MODULE_DEVICE_TABLE(i2c, ili210x_i2c_id);
> > +
> > +static struct i2c_driver ili210x_ts_driver = {
> > +	.driver = {
> > +		.name = "ili210x_i2c",
> > +		.owner = THIS_MODULE,
> > +		.pm = &ili210x_i2c_pm,
> > +	},
> > +	.id_table = ili210x_i2c_id,
> > +	.probe = ili210x_i2c_probe,
> > +	.remove = ili210x_i2c_remove,
> 
> __devexit_p()

OK. Thanks

> > +static int __init ili210x_ts_init(void)
> > +{
> > +	return i2c_add_driver(&ili210x_ts_driver);
> > +}
> > +module_init(ili210x_ts_init);
> > +
> > +static void __exit ili210x_ts_exit(void)
> > +{
> > +	i2c_del_driver(&ili210x_ts_driver);
> > +}
> > +module_exit(ili210x_ts_exit);
> 
> Instead of boilerplate above simply use:
> 
> module_i2c_driver(ili210x_ts_driver);

No problem for me to use the macro.
The reason I didn't do that before is that it is not yet available in the
input/next tree.

> 
> > +
> > +MODULE_AUTHOR("Olivier Sobrie <olivier@sobrie.be>");
> > +MODULE_DESCRIPTION("ILI210X I2C Touchscreen Driver");
> > +MODULE_LICENSE("GPL");
> > diff --git a/include/linux/input/ili210x.h b/include/linux/input/ili210x.h
> > new file mode 100644
> > index 0000000..710b3dd2
> > --- /dev/null
> > +++ b/include/linux/input/ili210x.h
> > @@ -0,0 +1,9 @@
> > +#ifndef _ILI210X_H
> > +#define _ILI210X_H
> > +
> > +struct ili210x_platform_data {
> > +	unsigned long irq_flags;
> > +	int (*get_pendown_state)(void);
> 
> You sure you do not want to pass device or something else identifying
> the device you are working with to get_pendown_state()? Also it should
> probably return bool.

Personnaly I don't need to give anything else to the function.
In my onfig, the function only read the value of a gpio.

I will convert the return value to bool.
The same should also maybe be done in ads7846 and tsc2007 drivers?

Thanks,

-- 
Olivier Sobrie

  reply	other threads:[~2012-03-07 10:11 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-05 13:40 [PATCH] ili210x: Add support for Ilitek ILI210x based touchscreens Olivier Sobrie
2012-03-05 16:48 ` Henrik Rydberg
2012-03-06  7:57   ` Olivier Sobrie
2012-03-06  9:25     ` Henrik Rydberg
2012-03-06 13:20       ` Olivier Sobrie
2012-03-06 13:42         ` Henrik Rydberg
2012-03-06 13:58           ` Olivier Sobrie
2012-03-06 15:01             ` Olivier Sobrie
2012-03-06 15:51               ` Henrik Rydberg
2012-03-07  7:00                 ` Olivier Sobrie
2012-03-07  7:05                   ` [PATCH v3] " Olivier Sobrie
2012-03-07  8:44                     ` Dmitry Torokhov
2012-03-07 10:11                       ` Olivier Sobrie [this message]
2012-03-08  9:29                         ` [PATCH v4] " Olivier Sobrie
2012-03-17  6:58                           ` Dmitry Torokhov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120307101129.GA23355@hposo \
    --to=olivier.sobrie@gmail.com \
    --cc=dmitry.torokhov@gmail.com \
    --cc=jan.paesmans@gmail.com \
    --cc=linux-input@vger.kernel.org \
    --cc=olivier@sobrie.be \
    --cc=rydberg@euromail.se \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).