Re: [PATCH v11 54/56] input: atmel_mxt_ts: added sysfs interface to update atmel T38 data

2020-05-10 Thread kbuild test robot
Hi Jiada,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on input/next]
[also build test WARNING on xen-tip/linux-next robh/for-next linus/master 
v5.7-rc4 next-20200508]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:
https://github.com/0day-ci/linux/commits/Jiada-Wang/atmel_mxt_ts-misc/20200509-031552
base:   https://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git next

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 


cppcheck warnings: (new ones prefixed by >>)

>> drivers/input/touchscreen/atmel_mxt_ts.c:4045:8: warning: %d in format 
>> string (no. 2) requires 'int *' but the argument type is 'unsigned int *'. 
>> [invalidScanfArgType_int]
ret = sscanf(buf, "%zd %d%zd", , , );
  ^
   drivers/input/touchscreen/atmel_mxt_ts.c:1993:20: warning: Unsigned 
expression 'byte_offset' can't be negative so it is unnecessary to test it. 
[unsignedPositive]
  if (byte_offset >= 0 && byte_offset < cfg->mem_size) {
  ^
   drivers/input/touchscreen/atmel_mxt_ts.c:1024:33: warning: Clarify 
calculation precedence for '&' and '?'. [clarifyCalculation]
  status & MXT_T6_STATUS_RESET ? " RESET" : "",
   ^
   drivers/input/touchscreen/atmel_mxt_ts.c:1025:31: warning: Clarify 
calculation precedence for '&' and '?'. [clarifyCalculation]
  status & MXT_T6_STATUS_OFL ? " OFL" : "",
 ^
   drivers/input/touchscreen/atmel_mxt_ts.c:1026:34: warning: Clarify 
calculation precedence for '&' and '?'. [clarifyCalculation]
  status & MXT_T6_STATUS_SIGERR ? " SIGERR" : "",
^
   drivers/input/touchscreen/atmel_mxt_ts.c:1027:31: warning: Clarify 
calculation precedence for '&' and '?'. [clarifyCalculation]
  status & MXT_T6_STATUS_CAL ? " CAL" : "",
 ^
   drivers/input/touchscreen/atmel_mxt_ts.c:1028:34: warning: Clarify 
calculation precedence for '&' and '?'. [clarifyCalculation]
  status & MXT_T6_STATUS_CFGERR ? " CFGERR" : "",
^
   drivers/input/touchscreen/atmel_mxt_ts.c:1029:35: warning: Clarify 
calculation precedence for '&' and '?'. [clarifyCalculation]
  status & MXT_T6_STATUS_COMSERR ? " COMSERR" : "");
 ^
   drivers/input/touchscreen/atmel_mxt_ts.c:1346:17: warning: Clarify 
calculation precedence for '&' and '?'. [clarifyCalculation]
 status & 0x01 ? "FREQCHG " : "",
   ^
   drivers/input/touchscreen/atmel_mxt_ts.c:1347:17: warning: Clarify 
calculation precedence for '&' and '?'. [clarifyCalculation]
 status & 0x02 ? "APXCHG " : "",
   ^
   drivers/input/touchscreen/atmel_mxt_ts.c:1348:17: warning: Clarify 
calculation precedence for '&' and '?'. [clarifyCalculation]
 status & 0x04 ? "ALGOERR " : "",
   ^
   drivers/input/touchscreen/atmel_mxt_ts.c:1349:17: warning: Clarify 
calculation precedence for '&' and '?'. [clarifyCalculation]
 status & 0x10 ? "STATCHG " : "",
   ^
   drivers/input/touchscreen/atmel_mxt_ts.c:1350:17: warning: Clarify 
calculation precedence for '&' and '?'. [clarifyCalculation]
 status & 0x20 ? "NLVLCHG " : "");
   ^
   drivers/input/touchscreen/atmel_mxt_ts.c:274:20: warning: struct member 
'mxt_dbg::t37_buf' is never used. [unusedStructMember]
struct t37_debug *t37_buf;
  ^
   drivers/input/touchscreen/atmel_mxt_ts.c:275:15: warning: struct member 
'mxt_dbg::t37_pages' is never used. [unusedStructMember]
unsigned int t37_pages;
 ^
   drivers/input/touchscreen/atmel_mxt_ts.c:276:15: warning: struct member 
'mxt_dbg::t37_nodes' is never used. [unusedStructMember]
unsigned int t37_nodes;

vim +4045 drivers/input/touchscreen/atmel_mxt_ts.c

  4024  
  4025  static ssize_t t38_data_store(struct device *dev,
  4026struct device_attribute *attr,
  4027const char *buf, size_t count)
  4028  {
  4029  struct mxt_data *data = dev_get_drvdata(dev);
  4030  struct mxt_object *object;
  4031  ssize_t ret = 0, pos, offset;
  4032  unsigned int i, len, index;
  4033  u8 *t38_buf;
  4034  
  4035  if (!data->object_table)
  4036  return -ENXIO;
  4037  
  4038  object = mxt_get_object(data, MXT_SPT_USERDATA_T38);
  4039  
  4040  /* Pre-allocate buffer large enough to hold max size of t38 
object.*/
  4041  t38_buf = kmalloc(mxt_obj_size(object), GFP_KERNEL);
  4042  if (!t38_buf)
  4043  return -ENOMEM;
  4044  
> 4045  ret = sscanf(buf, 

[PATCH v11 54/56] input: atmel_mxt_ts: added sysfs interface to update atmel T38 data

2020-05-08 Thread Jiada Wang
From: Naveen Chakka 

Atmel touch controller contains T38 object where a user can store its own
data of length 64 bytes. T38 data will not be part of checksum
calculation on executing T6 BACKUP command.

format used to update the T38 data is given below:

  

offset: offset address of the data to be written in the t38 object
(in decimal)

length: length of the data to be written into the t38 object(in decimal)

data: actual data bytes to be written into the t38 object
  (values should be in hex)

Ex:
1. 0 2 10 20
updates first two bytes of the t38 data with values 10 and 20

2. 19 6 10 2f 30 4a 50 60
updates 6 bytes of t38 data from the index 19-24 with hex values

Signed-off-by: Naveen Chakka 
Signed-off-by: Sanjeev Chugh 
Signed-off-by: George G. Davis 
[jiada: Rename mxt_t38_data_show to t38_data_show
Rename mxt_t38_data_store to t38_data_store
Replace DEVICE_ATTR with DEVICE_ATTR_RW]
Signed-off-by: Jiada Wang 
---
 drivers/input/touchscreen/atmel_mxt_ts.c | 102 +++
 1 file changed, 102 insertions(+)

diff --git a/drivers/input/touchscreen/atmel_mxt_ts.c 
b/drivers/input/touchscreen/atmel_mxt_ts.c
index 5c2f4ea1a362..e75a7e5b0c59 100644
--- a/drivers/input/touchscreen/atmel_mxt_ts.c
+++ b/drivers/input/touchscreen/atmel_mxt_ts.c
@@ -3989,6 +3989,106 @@ static ssize_t touch_dev_stat_show(struct device *dev, 
struct
return ret;
 }
 
+static ssize_t t38_data_show(struct device *dev,
+struct device_attribute *attr, char *buf)
+{
+   struct mxt_data *data = dev_get_drvdata(dev);
+   struct mxt_object *object;
+   size_t count = 0, size;
+   u8 i, *t38_buf;
+
+   if (!data->object_table)
+   return -ENXIO;
+
+   object = mxt_get_object(data, MXT_SPT_USERDATA_T38);
+   size = mxt_obj_size(object);
+
+   /* Pre-allocate buffer large enough to hold max size of t38 object.*/
+   t38_buf = kmalloc(size, GFP_KERNEL);
+   if (!t38_buf)
+   return -ENOMEM;
+
+   count = __mxt_read_reg(data->client, object->start_address,
+  size, t38_buf);
+   if (count)
+   goto end;
+
+   for (i = 0; i < size; i++)
+   count += scnprintf(buf + count, PAGE_SIZE - count,
+  "[%2u]: %02x\n", i, t38_buf[i]);
+   count += scnprintf(buf + count, PAGE_SIZE - count, "\n");
+end:
+   kfree(t38_buf);
+   return count;
+}
+
+static ssize_t t38_data_store(struct device *dev,
+ struct device_attribute *attr,
+ const char *buf, size_t count)
+{
+   struct mxt_data *data = dev_get_drvdata(dev);
+   struct mxt_object *object;
+   ssize_t ret = 0, pos, offset;
+   unsigned int i, len, index;
+   u8 *t38_buf;
+
+   if (!data->object_table)
+   return -ENXIO;
+
+   object = mxt_get_object(data, MXT_SPT_USERDATA_T38);
+
+   /* Pre-allocate buffer large enough to hold max size of t38 object.*/
+   t38_buf = kmalloc(mxt_obj_size(object), GFP_KERNEL);
+   if (!t38_buf)
+   return -ENOMEM;
+
+   ret = sscanf(buf, "%zd %d%zd", , , );
+   if (ret != 2) {
+   dev_err(dev, "Bad format: Invalid parameter to update t38\n");
+   ret = -EINVAL;
+   goto end;
+   }
+
+   if (len == 0) {
+   dev_err(dev,
+   "Bad format: Data length should not be equal to 0\n");
+   ret = -EINVAL;
+   goto end;
+   }
+
+   if (offset < 0 || ((offset + len) > 64)) {
+   dev_err(dev, "Invalid offset value to update t38\n");
+   ret = -EINVAL;
+   goto end;
+   }
+
+   index = pos;
+   for (i = 0; i < len; i++) {
+   ret = sscanf(buf + index, "%hhx%zd", t38_buf + i, );
+   if (ret != 1) {
+   dev_err(dev, "Bad format: Invalid Data\n");
+   ret = -EINVAL;
+   goto end;
+   }
+   index += pos;
+   }
+
+   ret = __mxt_write_reg(data->client, object->start_address + offset,
+ len, t38_buf);
+   if (ret)
+   goto end;
+
+   ret = mxt_t6_command(data, MXT_COMMAND_BACKUPNV, MXT_BACKUP_VALUE,
+true);
+   if (ret)
+   dev_err(dev, "backup command failed\n");
+   else
+   ret = count;
+end:
+   kfree(t38_buf);
+   return ret;
+}
+
 static DEVICE_ATTR_RO(fw_version);
 static DEVICE_ATTR_RO(hw_version);
 static DEVICE_ATTR_RO(object);
@@ -3999,6 +4099,7 @@ static DEVICE_ATTR_RW(debug_v2_enable);
 static DEVICE_ATTR_RO(debug_notify);
 static DEVICE_ATTR_RW(t25_selftest);
 static DEVICE_ATTR_RO(touch_dev_stat);
+static DEVICE_ATTR_RW(t38_data);
 
 static struct attribute *mxt_attrs[] = {
_attr_fw_version.attr,
@@ -4011,6 +4112,7 @@