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-next>] [day] [month] [year] [list]
Date:   Mon, 16 Mar 2020 15:27:56 +0100
From:   Martin Kepplinger <martin.kepplinger@...i.sm>
To:     dmitry.torokhov@...il.com, andriy.shevchenko@...ux.intel.com,
        m.felsch@...gutronix.de, mylene.josserand@...tlin.com
Cc:     linux-input@...r.kernel.org, linux-kernel@...r.kernel.org,
        Martin Kepplinger <martin.kepplinger@...i.sm>
Subject: [PATCH] Input: edt-ft5x06 - add fw_version debugfs file to read

Add simple fw_version file in debugfs to read the value from 0xa6
which is the firmware version.

Signed-off-by: Martin Kepplinger <martin.kepplinger@...i.sm>
---

Since we got at least 2 different FT firmware version in our controller,
we need to distinguish them.

thanks,
                              martin


 drivers/input/touchscreen/edt-ft5x06.c | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/drivers/input/touchscreen/edt-ft5x06.c b/drivers/input/touchscreen/edt-ft5x06.c
index bc7fb2c005b5..efb09bba739a 100644
--- a/drivers/input/touchscreen/edt-ft5x06.c
+++ b/drivers/input/touchscreen/edt-ft5x06.c
@@ -51,6 +51,8 @@
 #define EV_REGISTER_OFFSET_Y		0x45
 #define EV_REGISTER_OFFSET_X		0x46
 
+#define REG_FW_VERSION			0xa6
+
 #define NO_REGISTER			0xff
 
 #define WORK_REGISTER_OPMODE		0x3c
@@ -685,6 +687,22 @@ static int edt_ft5x06_debugfs_mode_set(void *data, u64 mode)
 DEFINE_SIMPLE_ATTRIBUTE(debugfs_mode_fops, edt_ft5x06_debugfs_mode_get,
 			edt_ft5x06_debugfs_mode_set, "%llu\n");
 
+static int edt_ft5x06_debugfs_fw_version_get(void *data, u64 *version)
+{
+	struct edt_ft5x06_ts_data *tsdata = data;
+	struct i2c_client *client = tsdata->client;
+
+	*version = edt_ft5x06_register_read(tsdata, REG_FW_VERSION);
+	if (*version == 0xff || *version == 0x00)
+		dev_dbg(&client->dev, "failed to get firmware version\n");
+
+	return 0;
+};
+
+DEFINE_SIMPLE_ATTRIBUTE(debugfs_fw_version_fops,
+			edt_ft5x06_debugfs_fw_version_get,
+			NULL, "%llu\n");
+
 static ssize_t edt_ft5x06_debugfs_raw_data_read(struct file *file,
 				char __user *buf, size_t count, loff_t *off)
 {
@@ -779,6 +797,9 @@ edt_ft5x06_ts_prepare_debugfs(struct edt_ft5x06_ts_data *tsdata,
 
 	debugfs_create_file("mode", S_IRUSR | S_IWUSR,
 			    tsdata->debug_dir, tsdata, &debugfs_mode_fops);
+	debugfs_create_file("fw_version", S_IRUSR,
+			    tsdata->debug_dir, tsdata,
+			    &debugfs_fw_version_fops);
 	debugfs_create_file("raw_data", S_IRUSR,
 			    tsdata->debug_dir, tsdata, &debugfs_raw_data_fops);
 }
-- 
2.20.1

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ