linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1] hwmon: add debugfs register access
@ 2021-12-21 12:42 Cosmin Tanislav
  2021-12-26 10:48 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Cosmin Tanislav @ 2021-12-21 12:42 UTC (permalink / raw)
  Cc: cosmin.tanislav, demonsingur, Jean Delvare, Guenter Roeck,
	linux-hwmon, linux-kernel

From: Cosmin Tanislav <cosmin.tanislav@analog.com>

Similar to IIO, create a device directory inside debugfs
mount point, and create a direct_reg_access file inside
that directory, if debugfs_reg_access callback is defined
inside hwmon_ops.

Signed-off-by: Cosmin Tanislav <cosmin.tanislav@analog.com>
---
 drivers/hwmon/hwmon.c | 122 ++++++++++++++++++++++++++++++++++++++++++
 include/linux/hwmon.h |  12 +++++
 2 files changed, 134 insertions(+)

diff --git a/drivers/hwmon/hwmon.c b/drivers/hwmon/hwmon.c
index 3501a3ead4ba..a3dc785cd885 100644
--- a/drivers/hwmon/hwmon.c
+++ b/drivers/hwmon/hwmon.c
@@ -10,6 +10,7 @@
 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 
 #include <linux/bitops.h>
+#include <linux/debugfs.h>
 #include <linux/device.h>
 #include <linux/err.h>
 #include <linux/gfp.h>
@@ -35,6 +36,12 @@ struct hwmon_device {
 	struct list_head tzdata;
 	struct attribute_group group;
 	const struct attribute_group **groups;
+#if defined(CONFIG_DEBUG_FS)
+	struct dentry *debugfs_dentry;
+	unsigned int cached_reg_addr;
+	char read_buf[20];
+	unsigned int read_buf_len;
+#endif
 };
 
 #define to_hwmon_device(d) container_of(d, struct hwmon_device, dev)
@@ -64,6 +71,113 @@ struct hwmon_thermal_data {
 	struct thermal_zone_device *tzd;/* thermal zone device */
 };
 
+static struct dentry *hwmon_debugfs_dentry;
+
+#if defined(CONFIG_DEBUG_FS)
+static ssize_t hwmon_debugfs_read_reg(struct file *file, char __user *userbuf,
+				      size_t count, loff_t *ppos)
+{
+	struct hwmon_device *hwdev = file->private_data;
+	struct device *hdev = &hwdev->dev;
+	unsigned int val = 0;
+	int ret;
+
+	if (*ppos > 0)
+		return simple_read_from_buffer(userbuf, count, ppos,
+					       hwdev->read_buf,
+					       hwdev->read_buf_len);
+
+	ret = hwdev->chip->ops->debugfs_reg_access(hdev, hwdev->cached_reg_addr,
+						   0, &val);
+	if (ret) {
+		dev_err(hdev->parent, "%s: read failed\n", __func__);
+		return ret;
+	}
+
+	hwdev->read_buf_len = snprintf(hwdev->read_buf, sizeof(hwdev->read_buf),
+				       "0x%X\n", val);
+
+	return simple_read_from_buffer(userbuf, count, ppos, hwdev->read_buf,
+				       hwdev->read_buf_len);
+}
+
+static ssize_t hwmon_debugfs_write_reg(struct file *file,
+				       const char __user *userbuf,
+				       size_t count, loff_t *ppos)
+{
+	struct hwmon_device *hwdev = file->private_data;
+	struct device *hdev = &hwdev->dev;
+	unsigned int reg, val;
+	char buf[80];
+	int ret;
+
+	count = min_t(size_t, count, sizeof(buf) - 1);
+	if (copy_from_user(buf, userbuf, count))
+		return -EFAULT;
+
+	buf[count] = 0;
+
+	ret = sscanf(buf, "%i %i", &reg, &val);
+
+	switch (ret) {
+	case 1:
+		hwdev->cached_reg_addr = reg;
+		break;
+	case 2:
+		hwdev->cached_reg_addr = reg;
+		ret = hwdev->chip->ops->debugfs_reg_access(hdev, reg, val,
+							   NULL);
+		if (ret) {
+			dev_err(hdev->parent, "%s: write failed\n", __func__);
+			return ret;
+		}
+		break;
+	default:
+		return -EINVAL;
+	}
+
+	return count;
+}
+
+static const struct file_operations hwmon_debugfs_reg_fops = {
+	.open = simple_open,
+	.read = hwmon_debugfs_read_reg,
+	.write = hwmon_debugfs_write_reg,
+};
+
+static void hwmon_device_register_debugfs(struct hwmon_device *hwdev)
+{
+	if (IS_ERR(hwmon_debugfs_dentry))
+		return;
+
+	if (!hwdev->chip || !hwdev->chip->ops ||
+		!hwdev->chip->ops->debugfs_reg_access)
+		return;
+
+	hwdev->debugfs_dentry = debugfs_create_dir(dev_name(&hwdev->dev),
+						   hwmon_debugfs_dentry);
+
+	if (IS_ERR(hwdev->debugfs_dentry))
+		return;
+
+	debugfs_create_file("direct_reg_access", 0644, hwdev->debugfs_dentry,
+			    hwdev, &hwmon_debugfs_reg_fops);
+}
+
+static void hwmon_device_unregister_debugfs(struct hwmon_device *hwdev)
+{
+	debugfs_remove_recursive(hwdev->debugfs_dentry);
+}
+#else
+static void hwmon_device_register_debugfs(struct hwmon_device *hwdev)
+{
+}
+
+static void hwmon_device_unregister_debugfs(struct hwmon_device *hwdev)
+{
+}
+#endif /* CONFIG_DEBUG_FS */
+
 static ssize_t
 name_show(struct device *dev, struct device_attribute *attr, char *buf)
 {
@@ -114,6 +228,8 @@ static void hwmon_dev_release(struct device *dev)
 {
 	struct hwmon_device *hwdev = to_hwmon_device(dev);
 
+	hwmon_device_unregister_debugfs(hwdev);
+
 	if (hwdev->group.attrs)
 		hwmon_free_attrs(hwdev->group.attrs);
 	kfree(hwdev->groups);
@@ -817,6 +933,8 @@ __hwmon_device_register(struct device *dev, const char *name, void *drvdata,
 		}
 	}
 
+	hwmon_device_register_debugfs(hwdev);
+
 	return hdev;
 
 free_hwmon:
@@ -1062,12 +1180,16 @@ static int __init hwmon_init(void)
 		pr_err("couldn't register hwmon sysfs class\n");
 		return err;
 	}
+
+	hwmon_debugfs_dentry = debugfs_create_dir("hwmon", NULL);
+
 	return 0;
 }
 
 static void __exit hwmon_exit(void)
 {
 	class_unregister(&hwmon_class);
+	debugfs_remove(hwmon_debugfs_dentry);
 }
 
 subsys_initcall(hwmon_init);
diff --git a/include/linux/hwmon.h b/include/linux/hwmon.h
index fad1f1df26df..4cbbc1ed2d7b 100644
--- a/include/linux/hwmon.h
+++ b/include/linux/hwmon.h
@@ -390,6 +390,16 @@ enum hwmon_intrusion_attributes {
  *			Channel number
  *		@val:	Value to write
  *		The function returns 0 on success or a negative error number.
+ * @debugfs_reg_access:
+ *		Callback to read or write register values.
+ *		Parameters are:
+ *		@dev:	Pointer to hardware monitoring device
+ *		@reg:	Register address to read or write
+ *		@writeval:
+ *			Value to write to register. 0 when reading.
+ *		@readval:
+ *			Pointer to value read from register. NULL when writing.
+ *		The function returns 0 on success or a negative error number.
  */
 struct hwmon_ops {
 	umode_t (*is_visible)(const void *drvdata, enum hwmon_sensor_types type,
@@ -400,6 +410,8 @@ struct hwmon_ops {
 		    u32 attr, int channel, const char **str);
 	int (*write)(struct device *dev, enum hwmon_sensor_types type,
 		     u32 attr, int channel, long val);
+	int (*debugfs_reg_access)(struct device *dev, unsigned int reg,
+				  unsigned int writeval, unsigned int *readval);
 };
 
 /**
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v1] hwmon: add debugfs register access
  2021-12-21 12:42 [PATCH v1] hwmon: add debugfs register access Cosmin Tanislav
@ 2021-12-26 10:48 ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2021-12-26 10:48 UTC (permalink / raw)
  To: Cosmin Tanislav
  Cc: cosmin.tanislav, demonsingur, Jean Delvare, Guenter Roeck,
	linux-hwmon, linux-kernel

On Tue, Dec 21, 2021 at 02:42:21PM +0200, Cosmin Tanislav wrote:
> From: Cosmin Tanislav <cosmin.tanislav@analog.com>
> 
> Similar to IIO, create a device directory inside debugfs
> mount point, and create a direct_reg_access file inside
> that directory, if debugfs_reg_access callback is defined
> inside hwmon_ops.
> 
> Signed-off-by: Cosmin Tanislav <cosmin.tanislav@analog.com>
> ---
>  drivers/hwmon/hwmon.c | 122 ++++++++++++++++++++++++++++++++++++++++++
>  include/linux/hwmon.h |  12 +++++
>  2 files changed, 134 insertions(+)
> 
> diff --git a/drivers/hwmon/hwmon.c b/drivers/hwmon/hwmon.c
> index 3501a3ead4ba..a3dc785cd885 100644
> --- a/drivers/hwmon/hwmon.c
> +++ b/drivers/hwmon/hwmon.c
> @@ -10,6 +10,7 @@
>  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
>  
>  #include <linux/bitops.h>
> +#include <linux/debugfs.h>
>  #include <linux/device.h>
>  #include <linux/err.h>
>  #include <linux/gfp.h>
> @@ -35,6 +36,12 @@ struct hwmon_device {
>  	struct list_head tzdata;
>  	struct attribute_group group;
>  	const struct attribute_group **groups;
> +#if defined(CONFIG_DEBUG_FS)
> +	struct dentry *debugfs_dentry;

No need to keep this, just look it up when you want to remove it.

> +	unsigned int cached_reg_addr;
> +	char read_buf[20];
> +	unsigned int read_buf_len;
> +#endif
>  };
>  
>  #define to_hwmon_device(d) container_of(d, struct hwmon_device, dev)
> @@ -64,6 +71,113 @@ struct hwmon_thermal_data {
>  	struct thermal_zone_device *tzd;/* thermal zone device */
>  };
>  
> +static struct dentry *hwmon_debugfs_dentry;
> +
> +#if defined(CONFIG_DEBUG_FS)
> +static ssize_t hwmon_debugfs_read_reg(struct file *file, char __user *userbuf,
> +				      size_t count, loff_t *ppos)
> +{
> +	struct hwmon_device *hwdev = file->private_data;
> +	struct device *hdev = &hwdev->dev;
> +	unsigned int val = 0;
> +	int ret;
> +
> +	if (*ppos > 0)
> +		return simple_read_from_buffer(userbuf, count, ppos,
> +					       hwdev->read_buf,
> +					       hwdev->read_buf_len);
> +
> +	ret = hwdev->chip->ops->debugfs_reg_access(hdev, hwdev->cached_reg_addr,
> +						   0, &val);
> +	if (ret) {
> +		dev_err(hdev->parent, "%s: read failed\n", __func__);
> +		return ret;
> +	}
> +
> +	hwdev->read_buf_len = snprintf(hwdev->read_buf, sizeof(hwdev->read_buf),
> +				       "0x%X\n", val);
> +
> +	return simple_read_from_buffer(userbuf, count, ppos, hwdev->read_buf,
> +				       hwdev->read_buf_len);
> +}
> +
> +static ssize_t hwmon_debugfs_write_reg(struct file *file,
> +				       const char __user *userbuf,
> +				       size_t count, loff_t *ppos)
> +{
> +	struct hwmon_device *hwdev = file->private_data;
> +	struct device *hdev = &hwdev->dev;
> +	unsigned int reg, val;
> +	char buf[80];
> +	int ret;
> +
> +	count = min_t(size_t, count, sizeof(buf) - 1);
> +	if (copy_from_user(buf, userbuf, count))
> +		return -EFAULT;
> +
> +	buf[count] = 0;
> +
> +	ret = sscanf(buf, "%i %i", &reg, &val);
> +
> +	switch (ret) {
> +	case 1:
> +		hwdev->cached_reg_addr = reg;
> +		break;
> +	case 2:
> +		hwdev->cached_reg_addr = reg;
> +		ret = hwdev->chip->ops->debugfs_reg_access(hdev, reg, val,
> +							   NULL);
> +		if (ret) {
> +			dev_err(hdev->parent, "%s: write failed\n", __func__);
> +			return ret;
> +		}
> +		break;
> +	default:
> +		return -EINVAL;
> +	}
> +
> +	return count;
> +}
> +
> +static const struct file_operations hwmon_debugfs_reg_fops = {
> +	.open = simple_open,
> +	.read = hwmon_debugfs_read_reg,
> +	.write = hwmon_debugfs_write_reg,
> +};
> +
> +static void hwmon_device_register_debugfs(struct hwmon_device *hwdev)
> +{
> +	if (IS_ERR(hwmon_debugfs_dentry))
> +		return;

Why check this?

> +
> +	if (!hwdev->chip || !hwdev->chip->ops ||
> +		!hwdev->chip->ops->debugfs_reg_access)
> +		return;
> +
> +	hwdev->debugfs_dentry = debugfs_create_dir(dev_name(&hwdev->dev),
> +						   hwmon_debugfs_dentry);
> +
> +	if (IS_ERR(hwdev->debugfs_dentry))
> +		return;

No need to check for this at all, just create the directory and move on.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-12-26 10:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-21 12:42 [PATCH v1] hwmon: add debugfs register access Cosmin Tanislav
2021-12-26 10:48 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).