* [PATCH] regulator: core: Add debugfs for regulator always_on flag
@ 2016-04-22 13:33 Richard Fitzgerald
2016-04-22 13:57 ` Mark Brown
0 siblings, 1 reply; 3+ messages in thread
From: Richard Fitzgerald @ 2016-04-22 13:33 UTC (permalink / raw)
To: broonie; +Cc: lgirdwood, patches, linux-kernel
This patch adds a debugfs file for the always_on flag in struct regulator.
It's useful for debugging to be able to view the state of this flag and
as it's set by logic inside the regulator core it doesn't necessarily have
the same value as the always_on flag in constraints.
Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
---
drivers/regulator/core.c | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index 7338175..9b7ad25 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -1273,6 +1273,23 @@ static void unset_regulator_supplies(struct regulator_dev *rdev)
}
#ifdef CONFIG_DEBUG_FS
+static ssize_t always_on_read_file(struct file *file, char __user *user_buf,
+ size_t count, loff_t *ppos)
+{
+ const struct regulator *regulator = file->private_data;
+ char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
+ ssize_t ret;
+
+ if (!buf)
+ return -ENOMEM;
+
+ ret = snprintf(buf, PAGE_SIZE, "always_on: %u\n", regulator->always_on);
+ ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
+ kfree(buf);
+
+ return ret;
+}
+
static ssize_t constraint_flags_read_file(struct file *file,
char __user *user_buf,
size_t count, loff_t *ppos)
@@ -1310,8 +1327,15 @@ static ssize_t constraint_flags_read_file(struct file *file,
return ret;
}
+#endif
+static const struct file_operations always_on_fops = {
+#ifdef CONFIG_DEBUG_FS
+ .open = simple_open,
+ .read = always_on_read_file,
+ .llseek = default_llseek,
#endif
+};
static const struct file_operations constraint_flags_fops = {
#ifdef CONFIG_DEBUG_FS
@@ -1376,6 +1400,8 @@ static struct regulator *create_regulator(struct regulator_dev *rdev,
®ulator->min_uV);
debugfs_create_u32("max_uV", 0444, regulator->debugfs,
®ulator->max_uV);
+ debugfs_create_file("always_on", 0444, regulator->debugfs,
+ regulator, &always_on_fops);
debugfs_create_file("constraint_flags", 0444,
regulator->debugfs, regulator,
&constraint_flags_fops);
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] regulator: core: Add debugfs for regulator always_on flag
2016-04-22 13:33 [PATCH] regulator: core: Add debugfs for regulator always_on flag Richard Fitzgerald
@ 2016-04-22 13:57 ` Mark Brown
2016-04-22 14:40 ` Richard Fitzgerald
0 siblings, 1 reply; 3+ messages in thread
From: Mark Brown @ 2016-04-22 13:57 UTC (permalink / raw)
To: Richard Fitzgerald; +Cc: lgirdwood, patches, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 810 bytes --]
On Fri, Apr 22, 2016 at 02:33:02PM +0100, Richard Fitzgerald wrote:
> This patch adds a debugfs file for the always_on flag in struct regulator.
> It's useful for debugging to be able to view the state of this flag and
> as it's set by logic inside the regulator core it doesn't necessarily have
> the same value as the always_on flag in constraints.
Why not include this in the same file as the rest of the constraints?
Or why not have one file per constraint (which would be easier for
scripts)?
> + ret = snprintf(buf, PAGE_SIZE, "always_on: %u\n", regulator->always_on);
> + debugfs_create_file("always_on", 0444, regulator->debugfs,
It seems to be formatted as though it's going to end up in the same file
but it's a separate file so instead it's just repeating the name of the
file inside the file.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] regulator: core: Add debugfs for regulator always_on flag
2016-04-22 13:57 ` Mark Brown
@ 2016-04-22 14:40 ` Richard Fitzgerald
0 siblings, 0 replies; 3+ messages in thread
From: Richard Fitzgerald @ 2016-04-22 14:40 UTC (permalink / raw)
To: Mark Brown; +Cc: lgirdwood, patches, linux-kernel
On 22/04/16 14:57, Mark Brown wrote:
> On Fri, Apr 22, 2016 at 02:33:02PM +0100, Richard Fitzgerald wrote:
>> This patch adds a debugfs file for the always_on flag in struct regulator.
>> It's useful for debugging to be able to view the state of this flag and
>> as it's set by logic inside the regulator core it doesn't necessarily have
>> the same value as the always_on flag in constraints.
> Why not include this in the same file as the rest of the constraints?
> Or why not have one file per constraint (which would be easier for
> scripts)?
Hmm, well the thing is there's two separate always_on flags, the one in
constraints (if you have any constraints) and the one in struct
regulator. I could munge the always_on status printed in the constraints
debugfs to be (regulator.always_on || constraints.always_on) though I'm
not sure if that's helpful (it shows actual state) or confusing (it
might not match what was fed in as constraints).
>> + ret = snprintf(buf, PAGE_SIZE, "always_on: %u\n", regulator->always_on);
>> + debugfs_create_file("always_on", 0444, regulator->debugfs,
> It seems to be formatted as though it's going to end up in the same file
> but it's a separate file so instead it's just repeating the name of the
> file inside the file.
Sorry, that was lazy copy-and-paste. I'll fix it.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-04-22 14:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-22 13:33 [PATCH] regulator: core: Add debugfs for regulator always_on flag Richard Fitzgerald
2016-04-22 13:57 ` Mark Brown
2016-04-22 14:40 ` Richard Fitzgerald
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox