From: Alexander Aring <alex.aring@gmail.com>
To: Sascha Hauer <s.hauer@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 1/2] Add initial regulator support
Date: Mon, 28 Apr 2014 18:30:19 +0200 [thread overview]
Message-ID: <20140428163015.GB19883@omega> (raw)
In-Reply-To: <1398673121-6075-2-git-send-email-s.hauer@pengutronix.de>
Hi Sascha,
On Mon, Apr 28, 2014 at 10:18:40AM +0200, Sascha Hauer wrote:
> Provide minimal regulator support. Only supported operations are enabling
> and disabling regulators. Association of devices with their regulators is
> limited to devicetree only. If regulator support is disabled the API expands
> to static inline stubs so consumers can still use the API.
>
> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
> ---
> commands/Kconfig | 8 ++
> commands/Makefile | 1 +
> commands/regulator.c | 33 ++++++
> drivers/Kconfig | 1 +
> drivers/Makefile | 1 +
> drivers/regulator/Kconfig | 13 +++
> drivers/regulator/Makefile | 2 +
> drivers/regulator/core.c | 262 +++++++++++++++++++++++++++++++++++++++++++++
> drivers/regulator/fixed.c | 103 ++++++++++++++++++
> include/regulator.h | 47 ++++++++
> 10 files changed, 471 insertions(+)
> create mode 100644 commands/regulator.c
> create mode 100644 drivers/regulator/Kconfig
> create mode 100644 drivers/regulator/Makefile
> create mode 100644 drivers/regulator/core.c
> create mode 100644 drivers/regulator/fixed.c
> create mode 100644 include/regulator.h
>
> diff --git a/commands/Kconfig b/commands/Kconfig
> index cc014f3..510cc91 100644
> --- a/commands/Kconfig
> +++ b/commands/Kconfig
> @@ -690,6 +690,14 @@ config CMD_GPIO
> include gpio_set_value, gpio_get_value, gpio_direction_input and
> gpio_direction_output commands to control gpios.
>
> +config CMD_REGULATOR
> + bool
> + depends on REGULATOR
> + prompt "regulator command"
> + help
> + the regulator command lists the currently registered regulators and
> + their current state.
> +
> config CMD_UNCOMPRESS
> bool
> select UNCOMPRESS
> diff --git a/commands/Makefile b/commands/Makefile
> index e463031..7836515 100644
> --- a/commands/Makefile
> +++ b/commands/Makefile
> @@ -95,3 +95,4 @@ obj-$(CONFIG_CMD_BOOT) += boot.o
...
> +};
> +
> +static int regulator_fixed_enable(struct regulator_dev *rdev)
> +{
> + struct regulator_fixed *fix = container_of(rdev, struct regulator_fixed, rdev);
> +
> + if (!gpio_is_valid(fix->gpio))
> + return 0;
> +
This should return a errno like the above one "-EINVAL". Or?
> + return gpio_direction_output(fix->gpio, !fix->active_low);
> +}
> +
> +static int regulator_fixed_disable(struct regulator_dev *rdev)
> +{
> + struct regulator_fixed *fix = container_of(rdev, struct regulator_fixed, rdev);
> +
> + if (!gpio_is_valid(fix->gpio))
> + return -EINVAL;
> +
like this.
- Alex
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2014-04-28 16:30 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-28 8:18 [PATCH] " Sascha Hauer
2014-04-28 8:18 ` [PATCH 1/2] Add " Sascha Hauer
2014-04-28 16:30 ` Alexander Aring [this message]
2014-04-28 16:41 ` Alexander Aring
2014-04-28 18:47 ` Sascha Hauer
2014-04-28 18:51 ` Alexander Aring
2014-04-28 20:00 ` Sascha Hauer
2014-04-28 20:08 ` Alexander Aring
2014-04-28 8:18 ` [PATCH 2/2] mci: Add " Sascha Hauer
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=20140428163015.GB19883@omega \
--to=alex.aring@gmail.com \
--cc=barebox@lists.infradead.org \
--cc=s.hauer@pengutronix.de \
/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