From: Paul Parsons <lost.distance@yahoo.com>
To: "Mark Brown" <broonie@opensource.wolfsonmicro.com>,
"Liam Girdwood" <lrg@ti.com>,
"Philipp Zabel" <philipp.zabel@gmail.com>,
"Eric Miao" <eric.y.miao@gmail.com>,
"Haojian Zhuang" <haojian.zhuang@marvell.com>,
"Russell King - ARM Linux" <linux@arm.linux.org.uk>,
"Heiko Stübner" <heiko@sntech.de>
Cc: linux-arm-kernel@lists.infradead.org,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 1/2] pxa: magician/hx4700: Convert to gpio-regulator from bq24022
Date: Sat, 3 Mar 2012 01:46:43 +0000 (GMT) [thread overview]
Message-ID: <1330739203.95123.YahooMailClassic@web29010.mail.ird.yahoo.com> (raw)
In-Reply-To: <201203021356.38857.heiko@sntech.de>
Thanks Heiko.
The hx4700 patch works for me on linux-3.3-rc5.
I'm not able to test the magician patch.
Tested-by: Paul Parsons <lost.distance@yahoo.com>
--- On Fri, 2/3/12, Heiko Stübner <heiko@sntech.de> wrote:
> From: Heiko Stübner <heiko@sntech.de>
> Subject: [PATCH 1/2] pxa: magician/hx4700: Convert to gpio-regulator from bq24022
> To: "Mark Brown" <broonie@opensource.wolfsonmicro.com>, "Liam Girdwood" <lrg@ti.com>, "Philipp Zabel" <philipp.zabel@gmail.com>, "Eric Miao" <eric.y.miao@gmail.com>, "Haojian Zhuang" <haojian.zhuang@marvell.com>, "Russell King - ARM Linux" <linux@arm.linux.org.uk>
> Cc: linux-arm-kernel@lists.infradead.org, "LKML" <linux-kernel@vger.kernel.org>
> Date: Friday, 2 March, 2012, 12:56
> The bq24022 on these machines is a
> very simple regulator using gpios.
> One provides the on/off functionality and a second one is
> used to
> change the current between 100 and 500 mA.
>
> This functionality can also be provided by the more generic
> gpio-regulator.
>
> Therefore convert both machines which makes it possible to
> remove the
> bq24022 driver later on.
>
> Signed-off-by: Heiko Stuebner <heiko@sntech.de>
> ---
> arch/arm/configs/magician_defconfig | 2 +-
> arch/arm/mach-pxa/hx4700.c
> | 33
> +++++++++++++++++++++++++++------
> arch/arm/mach-pxa/magician.c
> | 33 +++++++++++++++++++++++++++------
> 3 files changed, 55 insertions(+), 13 deletions(-)
>
> diff --git a/arch/arm/configs/magician_defconfig
> b/arch/arm/configs/magician_defconfig
> index 443675d..a691ef4 100644
> --- a/arch/arm/configs/magician_defconfig
> +++ b/arch/arm/configs/magician_defconfig
> @@ -101,7 +101,7 @@ CONFIG_MFD_ASIC3=y
> CONFIG_HTC_EGPIO=y
> CONFIG_HTC_PASIC3=y
> CONFIG_REGULATOR=y
> -CONFIG_REGULATOR_BQ24022=y
> +CONFIG_REGULATOR_GPIO=y
> CONFIG_FB=y
> CONFIG_FB_PXA=y
> CONFIG_FB_PXA_OVERLAY=y
> diff --git a/arch/arm/mach-pxa/hx4700.c
> b/arch/arm/mach-pxa/hx4700.c
> index f2c23ea..7571f0d 100644
> --- a/arch/arm/mach-pxa/hx4700.c
> +++ b/arch/arm/mach-pxa/hx4700.c
> @@ -28,7 +28,8 @@
> #include <linux/mtd/physmap.h>
> #include <linux/pda_power.h>
> #include <linux/pwm_backlight.h>
> -#include <linux/regulator/bq24022.h>
> +#include <linux/regulator/driver.h>
> +#include <linux/regulator/gpio-regulator.h>
> #include <linux/regulator/machine.h>
> #include <linux/regulator/max1586.h>
> #include <linux/spi/ads7846.h>
> @@ -698,14 +699,34 @@ static struct regulator_init_data
> bq24022_init_data = {
> .consumer_supplies =
> bq24022_consumers,
> };
>
> -static struct bq24022_mach_info bq24022_info = {
> - .gpio_nce =
> GPIO72_HX4700_BQ24022_nCHARGE_EN,
> - .gpio_iset2 =
> GPIO96_HX4700_BQ24022_ISET2,
> - .init_data =
> &bq24022_init_data,
> +static struct gpio bq24022_gpios[] = {
> + { GPIO96_HX4700_BQ24022_ISET2,
> GPIOF_OUT_INIT_LOW, "bq24022_iset2" },
> +};
> +
> +static struct gpio_regulator_state bq24022_states[] = {
> + { .value = 100000, .gpios = (0 <<
> 0) },
> + { .value = 500000, .gpios = (1 <<
> 0) },
> +};
> +
> +static struct gpio_regulator_config bq24022_info = {
> + .supply_name = "bq24022",
> +
> + .enable_gpio =
> GPIO72_HX4700_BQ24022_nCHARGE_EN,
> + .enable_high = 0,
> + .enabled_at_boot = 0,
> +
> + .gpios = bq24022_gpios,
> + .nr_gpios = ARRAY_SIZE(bq24022_gpios),
> +
> + .states = bq24022_states,
> + .nr_states =
> ARRAY_SIZE(bq24022_states),
> +
> + .type = REGULATOR_CURRENT,
> + .init_data = &bq24022_init_data,
> };
>
> static struct platform_device bq24022 = {
> - .name = "bq24022",
> + .name = "gpio-regulator",
> .id = -1,
> .dev = {
> .platform_data =
> &bq24022_info,
> diff --git a/arch/arm/mach-pxa/magician.c
> b/arch/arm/mach-pxa/magician.c
> index 3d6baf9..5e26f3e 100644
> --- a/arch/arm/mach-pxa/magician.c
> +++ b/arch/arm/mach-pxa/magician.c
> @@ -25,7 +25,8 @@
> #include <linux/mtd/physmap.h>
> #include <linux/pda_power.h>
> #include <linux/pwm_backlight.h>
> -#include <linux/regulator/bq24022.h>
> +#include <linux/regulator/driver.h>
> +#include <linux/regulator/gpio-regulator.h>
> #include <linux/regulator/machine.h>
> #include <linux/usb/gpio_vbus.h>
> #include <linux/i2c/pxa-i2c.h>
> @@ -596,14 +597,34 @@ static struct regulator_init_data
> bq24022_init_data = {
> .consumer_supplies =
> bq24022_consumers,
> };
>
> -static struct bq24022_mach_info bq24022_info = {
> - .gpio_nce =
> GPIO30_MAGICIAN_BQ24022_nCHARGE_EN,
> - .gpio_iset2 =
> EGPIO_MAGICIAN_BQ24022_ISET2,
> - .init_data =
> &bq24022_init_data,
> +static struct gpio bq24022_gpios[] = {
> + { EGPIO_MAGICIAN_BQ24022_ISET2,
> GPIOF_OUT_INIT_LOW, "bq24022_iset2" },
> +};
> +
> +static struct gpio_regulator_state bq24022_states[] = {
> + { .value = 100000, .gpios = (0 <<
> 0) },
> + { .value = 500000, .gpios = (1 <<
> 0) },
> +};
> +
> +static struct gpio_regulator_config bq24022_info = {
> + .supply_name = "bq24022",
> +
> + .enable_gpio =
> GPIO30_MAGICIAN_BQ24022_nCHARGE_EN,
> + .enable_high = 0,
> + .enabled_at_boot = 0,
> +
> + .gpios = bq24022_gpios,
> + .nr_gpios = ARRAY_SIZE(bq24022_gpios),
> +
> + .states = bq24022_states,
> + .nr_states =
> ARRAY_SIZE(bq24022_states),
> +
> + .type = REGULATOR_CURRENT,
> + .init_data = &bq24022_init_data,
> };
>
> static struct platform_device bq24022 = {
> - .name = "bq24022",
> + .name = "gpio-regulator",
> .id = -1,
> .dev = {
> .platform_data =
> &bq24022_info,
> --
> 1.7.5.4
next prev parent reply other threads:[~2012-03-03 1:46 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-02 12:55 [PATCH 0/2] Remove bq24022 driver superseeded by gpio-regulator Heiko Stübner
2012-03-02 12:56 ` [PATCH 1/2] pxa: magician/hx4700: Convert to gpio-regulator from bq24022 Heiko Stübner
2012-03-03 1:46 ` Paul Parsons [this message]
2012-03-02 12:57 ` [PATCH 2/2] regulator: Remove bq24022 regulator driver Heiko Stübner
2012-03-06 12:14 ` Mark Brown
2012-03-06 6:04 ` [PATCH 0/2] Remove bq24022 driver superseeded by gpio-regulator Haojian Zhuang
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=1330739203.95123.YahooMailClassic@web29010.mail.ird.yahoo.com \
--to=lost.distance@yahoo.com \
--cc=broonie@opensource.wolfsonmicro.com \
--cc=eric.y.miao@gmail.com \
--cc=haojian.zhuang@marvell.com \
--cc=heiko@sntech.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=lrg@ti.com \
--cc=philipp.zabel@gmail.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