From: Kevin Hilman <khilman@deeprootsystems.com>
To: Peter 'p2' De Schrijver <peter.de-schrijver@nokia.com>,
Nishanth Menon <nm@ti.com>
Cc: linux-omap@vger.kernel.org
Subject: Re: [PATCH] OMAP3 PM Add sysfs entry for EFuse values
Date: Tue, 13 Oct 2009 11:44:17 -0700 [thread overview]
Message-ID: <87ws2zkubi.fsf@deeprootsystems.com> (raw)
In-Reply-To: <1255358890-9434-1-git-send-email-peter.de-schrijver@nokia.com> (Peter De Schrijver's message of "Mon\, 12 Oct 2009 17\:48\:10 +0300")
"Peter 'p2' De Schrijver" <peter.de-schrijver@nokia.com> writes:
> This patch exports the smartreflex efuse values for all 5 OPPs via
> sysfs. This can be useful to track down silicon specific problems.
>
> Signed-off-by: Peter 'p2' De Schrijver <peter.de-schrijver@nokia.com>
These should be exported via debugfs instead of sysfs.
Also, the SR rewrite is underway and will be merged shortly, so I
recommend waiting until that is in place before we add this. Unless
Nishanth wants to add it sooner.
Kevin
> ---
> arch/arm/mach-omap2/smartreflex.c | 22 ++++++++++++++++++++++
> 1 files changed, 22 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/smartreflex.c b/arch/arm/mach-omap2/smartreflex.c
> index 9fa033d..3c506d1 100644
> --- a/arch/arm/mach-omap2/smartreflex.c
> +++ b/arch/arm/mach-omap2/smartreflex.c
> @@ -759,7 +759,24 @@ static struct kobj_attribute sr_vdd2_autocomp = {
> .store = omap_sr_vdd2_autocomp_store,
> };
>
> +static ssize_t omap_sr_opp1_efuse_show(struct kobject *kobj,
> + struct kobj_attribute *attr,
> + char *buf)
> +{
> + return sprintf(buf, "%08x\n%08x\n%08x\n%08x\n%08x\n", sr1.opp1_nvalue,
> + sr1.opp2_nvalue,
> + sr1.opp3_nvalue,
> + sr1.opp4_nvalue,
> + sr1.opp5_nvalue);
> +}
>
> +static struct kobj_attribute sr_efuse = {
> + .attr = {
> + .name = "Efuse",
> + .mode = 0444,
> + },
> + .show = omap_sr_opp1_efuse_show,
> +};
>
> static int __init omap3_sr_init(void)
> {
> @@ -807,6 +824,11 @@ static int __init omap3_sr_init(void)
> if (ret)
> printk(KERN_ERR "sysfs_create_file failed: %d\n", ret);
>
> + ret = sysfs_create_file(power_kobj, &sr_efuse.attr);
> + if (ret)
> + printk(KERN_ERR "sysfs_create_file failed for OPP data: %d\n",
> + ret);
> +
> return 0;
> }
>
> --
> 1.6.2.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2009-10-13 18:44 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-12 14:48 [PATCH] OMAP3 PM Add sysfs entry for EFuse values Peter 'p2' De Schrijver
2009-10-13 18:44 ` Kevin Hilman [this message]
2009-10-13 19:38 ` Nishanth Menon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87ws2zkubi.fsf@deeprootsystems.com \
--to=khilman@deeprootsystems.com \
--cc=linux-omap@vger.kernel.org \
--cc=nm@ti.com \
--cc=peter.de-schrijver@nokia.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox