lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 13 Jun 2013 20:20:35 +0200
From:	Andi Shyti <andi@...zian.org>
To:	arnd@...db.de, gregkh@...uxfoundation.org
Cc:	linux-kernel@...r.kernel.org, pc@...f.org, oatilla@...il.com,
	andi@...zian.org
Subject: [PATCH 01/19] bh1770glc: added input device interface

The driver generates an event in /dev/input/ under the name
'bh1770'. It's a switch event where is reported '0' or '1'
whenever the sensor detects something crossing the threshold.

Signed-off-by: Onur Atilla <oatilla@...il.com>
Signed-off-by: Phil Carmody <pc@...f.org>
Signed-off-by: Andi Shyti <andi@...zian.org>
---
 drivers/misc/bh1770glc.c |   58 +++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 57 insertions(+), 1 deletion(-)

diff --git a/drivers/misc/bh1770glc.c b/drivers/misc/bh1770glc.c
index f4975f7..d60b317 100644
--- a/drivers/misc/bh1770glc.c
+++ b/drivers/misc/bh1770glc.c
@@ -34,6 +34,7 @@
 #include <linux/delay.h>
 #include <linux/wait.h>
 #include <linux/slab.h>
+#include <linux/input.h>
 
 #define BH1770_ALS_CONTROL	0x80 /* ALS operation mode control */
 #define BH1770_PS_CONTROL	0x81 /* PS operation mode control */
@@ -168,6 +169,8 @@ struct bh1770_chip {
 	bool	prox_force_update;
 	u8	prox_abs_thres;
 	u8	prox_led;
+
+	struct input_dev *input_dev;
 };
 
 static const char reg_vcc[] = "Vcc";
@@ -461,6 +464,11 @@ static int bh1770_prox_mode_control(struct bh1770_chip *chip)
 	return 0;
 }
 
+static void bh1770_report_input_value(struct bh1770_chip *chip, int val)
+{
+	input_report_switch(chip->input_dev, SW_FRONT_PROXIMITY, val);
+}
+
 /* chip->mutex is kept when this is called */
 static int bh1770_prox_read_result(struct bh1770_chip *chip)
 {
@@ -506,13 +514,13 @@ static int bh1770_prox_read_result(struct bh1770_chip *chip)
 	} else {
 		chip->prox_persistence_counter = 0;
 		mode = PROX_BELOW_THRESHOLD;
-		chip->prox_data = 0;
 		ret = 0;
 	}
 
 	/* Set proximity detection rate based on above or below value */
 	if (ret == 0) {
 		bh1770_prox_rate(chip, mode);
+		bh1770_report_input_value(chip, mode);
 		sysfs_notify(&chip->client->dev.kobj, NULL, "prox0_raw");
 	}
 out:
@@ -818,6 +826,42 @@ static int bh1770_prox_rate_validate(int rate)
 	return i;
 }
 
+static void bh1770_input_cleanup(struct bh1770_chip *chip)
+{
+	input_unregister_device(chip->input_dev);
+}
+
+static int bh1770_input_init(struct bh1770_chip *chip)
+{
+	int err;
+
+	chip->input_dev = input_allocate_device();
+	if (!chip->input_dev) {
+		err = -ENOMEM;
+		goto alloc_err;
+	}
+
+	chip->input_dev->id.bustype = BUS_I2C;
+	chip->input_dev->dev.parent = &chip->client->dev;
+	chip->input_dev->name = "bh1770glc";
+
+	input_set_drvdata(chip->input_dev, chip);
+
+	set_bit(EV_SW, chip->input_dev->evbit);
+	set_bit(SW_FRONT_PROXIMITY, chip->input_dev->swbit);
+
+	err = input_register_device(chip->input_dev);
+	if (err)
+		goto reg_err;
+
+	return 0;
+
+reg_err:
+	input_free_device(chip->input_dev);
+alloc_err:
+	return err;
+}
+
 static ssize_t bh1770_set_prox_rate_above(struct device *dev,
 					struct device_attribute *attr,
 					const char *buf, size_t count)
@@ -1246,6 +1290,13 @@ static int bh1770_probe(struct i2c_client *client,
 		}
 	}
 
+	err = bh1770_input_init(chip);
+	if (err < 0) {
+		dev_err(&client->dev,
+				"impossible to allocate input event device\n");
+		goto no_input_dev;
+	}
+
 	err = sysfs_create_group(&chip->client->dev.kobj,
 				&bh1770_attribute_group);
 	if (err < 0) {
@@ -1274,6 +1325,8 @@ fail5:
 	sysfs_remove_group(&chip->client->dev.kobj,
 			&bh1770_attribute_group);
 fail4:
+	bh1770_input_cleanup(chip);
+no_input_dev:
 	if (chip->pdata->release_resources)
 		chip->pdata->release_resources();
 fail3:
@@ -1294,6 +1347,9 @@ static int bh1770_remove(struct i2c_client *client)
 	sysfs_remove_group(&chip->client->dev.kobj,
 			&bh1770_attribute_group);
 
+	/* input interface cleanup */
+	bh1770_input_cleanup(chip);
+
 	if (chip->pdata->release_resources)
 		chip->pdata->release_resources();
 
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ