diff options
Diffstat (limited to 'drivers/misc/mei/main.c')
| -rw-r--r-- | drivers/misc/mei/main.c | 41 | 
1 files changed, 34 insertions, 7 deletions
diff --git a/drivers/misc/mei/main.c b/drivers/misc/mei/main.c index 7465f17e1559..4d77a6ae183a 100644 --- a/drivers/misc/mei/main.c +++ b/drivers/misc/mei/main.c @@ -1,7 +1,7 @@  /*   *   * Intel Management Engine Interface (Intel MEI) Linux driver - * Copyright (c) 2003-2012, Intel Corporation. + * Copyright (c) 2003-2018, Intel Corporation.   *   * This program is free software; you can redistribute it and/or modify it   * under the terms and conditions of the GNU General Public License, @@ -137,7 +137,7 @@ static ssize_t mei_read(struct file *file, char __user *ubuf,  	struct mei_device *dev;  	struct mei_cl_cb *cb = NULL;  	bool nonblock = !!(file->f_flags & O_NONBLOCK); -	int rets; +	ssize_t rets;  	if (WARN_ON(!cl || !cl->dev))  		return -ENODEV; @@ -170,7 +170,7 @@ static ssize_t mei_read(struct file *file, char __user *ubuf,  	rets = mei_cl_read_start(cl, length, file);  	if (rets && rets != -EBUSY) { -		cl_dbg(dev, cl, "mei start read failure status = %d\n", rets); +		cl_dbg(dev, cl, "mei start read failure status = %zd\n", rets);  		goto out;  	} @@ -204,7 +204,7 @@ copy_buffer:  	/* now copy the data to user space */  	if (cb->status) {  		rets = cb->status; -		cl_dbg(dev, cl, "read operation failed %d\n", rets); +		cl_dbg(dev, cl, "read operation failed %zd\n", rets);  		goto free;  	} @@ -236,7 +236,7 @@ free:  	*offset = 0;  out: -	cl_dbg(dev, cl, "end mei read rets = %d\n", rets); +	cl_dbg(dev, cl, "end mei read rets = %zd\n", rets);  	mutex_unlock(&dev->device_lock);  	return rets;  } @@ -256,7 +256,7 @@ static ssize_t mei_write(struct file *file, const char __user *ubuf,  	struct mei_cl *cl = file->private_data;  	struct mei_cl_cb *cb;  	struct mei_device *dev; -	int rets; +	ssize_t rets;  	if (WARN_ON(!cl || !cl->dev))  		return -ENODEV; @@ -312,7 +312,6 @@ static ssize_t mei_write(struct file *file, const char __user *ubuf,  		}  	} -	*offset = 0;  	cb = mei_cl_alloc_cb(cl, length, MEI_FOP_WRITE, file);  	if (!cb) {  		rets = -ENOMEM; @@ -812,11 +811,39 @@ static ssize_t tx_queue_limit_store(struct device *device,  }  static DEVICE_ATTR_RW(tx_queue_limit); +/** + * fw_ver_show - display ME FW version + * + * @device: device pointer + * @attr: attribute pointer + * @buf:  char out buffer + * + * Return: number of the bytes printed into buf or error + */ +static ssize_t fw_ver_show(struct device *device, +			   struct device_attribute *attr, char *buf) +{ +	struct mei_device *dev = dev_get_drvdata(device); +	struct mei_fw_version *ver; +	ssize_t cnt = 0; +	int i; + +	ver = dev->fw_ver; + +	for (i = 0; i < MEI_MAX_FW_VER_BLOCKS; i++) +		cnt += scnprintf(buf + cnt, PAGE_SIZE - cnt, "%u:%u.%u.%u.%u\n", +				 ver[i].platform, ver[i].major, ver[i].minor, +				 ver[i].hotfix, ver[i].buildno); +	return cnt; +} +static DEVICE_ATTR_RO(fw_ver); +  static struct attribute *mei_attrs[] = {  	&dev_attr_fw_status.attr,  	&dev_attr_hbm_ver.attr,  	&dev_attr_hbm_ver_drv.attr,  	&dev_attr_tx_queue_limit.attr, +	&dev_attr_fw_ver.attr,  	NULL  };  ATTRIBUTE_GROUPS(mei);  |