Commit 8d40dae8 authored by Imre Deak's avatar Imre Deak Committed by Juha Yrjola

ads7846: add pen_down sysfs attribute

User-space needs to know about the pen down status for detecting
whether the touchscreen is "stuck" (i.e. is shortcircuited).
Signed-off-by: default avatarImre Deak <imre.deak@nokia.com>
Signed-off-by: default avatarJuha Yrjl <juha.yrjola@nokia.com>
parent 83ff7953
...@@ -235,6 +235,21 @@ SHOW(temp1) ...@@ -235,6 +235,21 @@ SHOW(temp1)
SHOW(vaux) SHOW(vaux)
SHOW(vbatt) SHOW(vbatt)
static int is_pen_down(struct device *dev)
{
struct ads7846 *ts = dev_get_drvdata(dev);
return ts->pendown;
}
static ssize_t ads7846_pen_down_show(struct device *dev,
struct device_attribute *attr, char *buf)
{
return sprintf(buf, "%u\n", is_pen_down(dev));
}
static DEVICE_ATTR(pen_down, S_IRUGO, ads7846_pen_down_show, NULL);
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
/* /*
...@@ -573,6 +588,8 @@ static int __devinit ads7846_probe(struct spi_device *spi) ...@@ -573,6 +588,8 @@ static int __devinit ads7846_probe(struct spi_device *spi)
device_create_file(&spi->dev, &dev_attr_vbatt); device_create_file(&spi->dev, &dev_attr_vbatt);
device_create_file(&spi->dev, &dev_attr_vaux); device_create_file(&spi->dev, &dev_attr_vaux);
device_create_file(&spi->dev, &dev_attr_pen_down);
err = input_register_device(input_dev); err = input_register_device(input_dev);
if (err) if (err)
goto err_free_irq; goto err_free_irq;
...@@ -596,6 +613,8 @@ static int __devexit ads7846_remove(struct spi_device *spi) ...@@ -596,6 +613,8 @@ static int __devexit ads7846_remove(struct spi_device *spi)
if (ts->irq_disabled) if (ts->irq_disabled)
enable_irq(ts->spi->irq); enable_irq(ts->spi->irq);
device_remove_file(&spi->dev, &dev_attr_pen_down);
if (ts->model == 7846) { if (ts->model == 7846) {
device_remove_file(&spi->dev, &dev_attr_temp0); device_remove_file(&spi->dev, &dev_attr_temp0);
device_remove_file(&spi->dev, &dev_attr_temp1); device_remove_file(&spi->dev, &dev_attr_temp1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment