From: Chris Ball <cjb@laptop.org>
To: Andy Shevchenko <andy.shevchenko@gmail.com>
Cc: linux-mmc@vger.kernel.org, linux-kernel@vger.kernel.org,
Andrew Morton <akpm@linux-foundation.org>,
Adrian Hunter <adrian.hunter@nokia.com>,
Andy Shevchenko <ext-andriy.shevchenko@nokia.com>
Subject: Re: [PATCHv2] mmc: append a file to change host clock at run time
Date: Thu, 14 Oct 2010 02:57:26 +0100 [thread overview]
Message-ID: <20101014015726.GA3553@void.printf.net> (raw)
In-Reply-To: <1286958142-22461-1-git-send-email-ext-andriy.shevchenko@nokia.com>
Hi Andy,
On Wed, Oct 13, 2010 at 11:22:22AM +0300, Andy Shevchenko wrote:
> For debugging power managment features there is quite convenient to have a
> possibility to change MMC host controller clock at run time. This patch adds
> 'clock' file under MMC host root of debugfs.
>
> Usage as follows:
>
> # cat /sys/kernel/debug/mmc0/clock
> 52000000
>
> # echo "1000000000" > /sys/kernel/debug/mmc0/clock
> # cat /sys/kernel/debug/mmc0/clock
> 52000000
>
> # echo "48000000" > /sys/kernel/debug/mmc0/clock
> # cat /sys/kernel/debug/mmc0/clock
> 48000000
>
> The second piece of example shows limits which are applied accordingly to used
> host driver.
>
> Signed-off-by: Andy Shevchenko <ext-andriy.shevchenko@nokia.com>
> ---
> drivers/mmc/core/debugfs.c | 35 +++++++++++++++++++++++++++++++++--
> 1 files changed, 33 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mmc/core/debugfs.c b/drivers/mmc/core/debugfs.c
> index 96d10f4..9b6ec07 100644
> --- a/drivers/mmc/core/debugfs.c
> +++ b/drivers/mmc/core/debugfs.c
> @@ -133,6 +133,33 @@ static const struct file_operations mmc_ios_fops = {
> .release = single_release,
> };
>
> +static int mmc_clock_opt_get(void *data, u64 *val)
> +{
> + struct mmc_host *host = data;
> +
> + *val = host->ios.clock;
> +
> + return 0;
> +}
> +
> +static int mmc_clock_opt_set(void *data, u64 val)
> +{
> + struct mmc_host *host = data;
> +
> + /* We need this check due to input value is u64 */
> + if (val > host->f_max)
> + return -EINVAL;
> +
> + mmc_claim_host(host);
> + mmc_set_clock(host, (unsigned int) val);
> + mmc_release_host(host);
> +
> + return 0;
> +}
> +
> +DEFINE_SIMPLE_ATTRIBUTE(mmc_clock_fops, mmc_clock_opt_get, mmc_clock_opt_set,
> + "%llu\n");
> +
> void mmc_add_host_debugfs(struct mmc_host *host)
> {
> struct dentry *root;
> @@ -149,11 +176,15 @@ void mmc_add_host_debugfs(struct mmc_host *host)
> host->debugfs_root = root;
>
> if (!debugfs_create_file("ios", S_IRUSR, root, host, &mmc_ios_fops))
> - goto err_ios;
> + goto err_node;
> +
> + if (!debugfs_create_file("clock", S_IRUSR | S_IWUSR, root, host,
> + &mmc_clock_fops))
> + goto err_node;
>
> return;
>
> -err_ios:
> +err_node:
> debugfs_remove_recursive(root);
> host->debugfs_root = NULL;
> err_root:
> --
Thanks, looks good -- applied to mmc-next with minor changelog edits.
--
Chris Ball <cjb@laptop.org> <http://printf.net/>
One Laptop Per Child
prev parent reply other threads:[~2010-10-14 1:57 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-10-12 15:17 [PATCH] mmc: append a file to change host clock at run time Andy Shevchenko
2010-10-13 7:08 ` Andy Shevchenko
2010-10-13 8:07 ` Adrian Hunter
2010-10-13 8:15 ` Andy Shevchenko
2010-10-13 8:22 ` [PATCHv2] " Andy Shevchenko
2010-10-14 1:57 ` Chris Ball [this message]
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=20101014015726.GA3553@void.printf.net \
--to=cjb@laptop.org \
--cc=adrian.hunter@nokia.com \
--cc=akpm@linux-foundation.org \
--cc=andy.shevchenko@gmail.com \
--cc=ext-andriy.shevchenko@nokia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
/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