From: Felipe Balbi <balbi@ti.com>
To: Marek Belisko <marek@goldelico.com>
Cc: robh+dt@kernel.org, pawel.moll@arm.com, mark.rutland@arm.com,
ijc+devicetree@hellion.org.uk, galak@codeaurora.org,
tony@atomide.com, linux@arm.linux.org.uk, balajitk@ti.com,
chris@printf.net, ulf.hansson@linaro.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-mmc@vger.kernel.org, hns@goldelico.com,
NeilBrown <neilb@suse.de>
Subject: Re: [PATCH 1/2] mmc: hsmmc: Add reset gpio configuration option.
Date: Thu, 3 Jul 2014 17:41:46 -0500 [thread overview]
Message-ID: <20140703224146.GC2540@saruman.home> (raw)
In-Reply-To: <1404420564-30245-1-git-send-email-marek@goldelico.com>
[-- Attachment #1: Type: text/plain, Size: 4365 bytes --]
Hi,
On Thu, Jul 03, 2014 at 10:49:23PM +0200, Marek Belisko wrote:
> From: NeilBrown <neilb@suse.de>
>
> If a 'gpio_reset' is specified, then hold it low while
> turning the power regulator on.
> This is needed for some wi2wi wireless modules, particularly
> when the regulator is held active by some other client.
> The wi2wi needs to be reset if power isn't actually removed, and
> the gpio can be used to do this.
>
> Signed-off-by: NeilBrown <neilb@suse.de>
> ---
> arch/arm/mach-omap2/hsmmc.c | 7 ++++++-
> arch/arm/mach-omap2/hsmmc.h | 3 +++
> drivers/mmc/host/omap_hsmmc.c | 26 +++++++++++++++++++++++---
> include/linux/platform_data/mmc-omap.h | 1 +
> 4 files changed, 33 insertions(+), 4 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/hsmmc.c b/arch/arm/mach-omap2/hsmmc.c
> index 07d4c7b..046bfdd 100644
> --- a/arch/arm/mach-omap2/hsmmc.c
> +++ b/arch/arm/mach-omap2/hsmmc.c
> @@ -172,6 +172,10 @@ static inline void omap_hsmmc_mux(struct omap_mmc_platform_data *mmc_controller,
> (mmc_controller->slots[0].gpio_wp < OMAP_MAX_GPIO_LINES))
> omap_mux_init_gpio(mmc_controller->slots[0].gpio_wp,
> OMAP_PIN_INPUT_PULLUP);
> + if (gpio_is_valid(mmc_controller->slots[0].gpio_reset) &&
> + (mmc_controller->slots[0].gpio_reset < OMAP_MAX_GPIO_LINES))
> + omap_mux_init_gpio(mmc_controller->slots[0].gpio_reset,
> + OMAP_PIN_OUTPUT);
> if (cpu_is_omap34xx()) {
> if (controller_nr == 0) {
> omap_mux_init_signal("sdmmc1_clk",
> @@ -270,6 +274,7 @@ static int __init omap_hsmmc_pdata_init(struct omap2_hsmmc_info *c,
>
> mmc->slots[0].switch_pin = c->gpio_cd;
> mmc->slots[0].gpio_wp = c->gpio_wp;
> + mmc->slots[0].gpio_reset = c->gpio_reset;
>
> mmc->slots[0].remux = c->remux;
> mmc->slots[0].init_card = c->init_card;
> @@ -389,7 +394,7 @@ void omap_hsmmc_late_init(struct omap2_hsmmc_info *c)
> continue;
>
> mmc_pdata->slots[0].switch_pin = c->gpio_cd;
> - mmc_pdata->slots[0].gpio_wp = c->gpio_wp;
> + mmc_pdata->slots[0].gpio_reset = c->gpio_reset;
>
> res = omap_device_register(pdev);
> if (res)
> diff --git a/arch/arm/mach-omap2/hsmmc.h b/arch/arm/mach-omap2/hsmmc.h
> index 7f2e790..16b2ac5 100644
> --- a/arch/arm/mach-omap2/hsmmc.h
> +++ b/arch/arm/mach-omap2/hsmmc.h
> @@ -24,6 +24,9 @@ struct omap2_hsmmc_info {
> bool deferred; /* mmc needs a deferred probe */
> int gpio_cd; /* or -EINVAL */
> int gpio_wp; /* or -EINVAL */
> + int gpio_reset; /* or -EINVAL - reset is held low during
> + * power-on
> + */
> char *name; /* or NULL for default */
> struct platform_device *pdev; /* mmc controller instance */
> int ocr_mask; /* temporary HACK */
> diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c
> index 9656726..4a264fc 100644
> --- a/drivers/mmc/host/omap_hsmmc.c
> +++ b/drivers/mmc/host/omap_hsmmc.c
> @@ -300,6 +300,8 @@ static int omap_hsmmc_set_power(struct device *dev, int slot, int power_on,
> if (!host->vcc)
> return 0;
>
> + if (gpio_is_valid(mmc_slot(host).gpio_reset))
> + gpio_set_value_cansleep(mmc_slot(host).gpio_reset, 0);
> if (mmc_slot(host).before_set_reg)
> mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
>
> @@ -365,6 +367,8 @@ static int omap_hsmmc_set_power(struct device *dev, int slot, int power_on,
>
> if (mmc_slot(host).after_set_reg)
> mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
> + if (gpio_is_valid(mmc_slot(host).gpio_reset))
> + gpio_set_value_cansleep(mmc_slot(host).gpio_reset, 1);
>
> error_set_power:
> return ret;
> @@ -481,10 +485,22 @@ static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
> } else
> pdata->slots[0].gpio_wp = -EINVAL;
>
> - return 0;
> + if (gpio_is_valid(pdata->slots[0].gpio_reset)) {
> + ret = gpio_request(pdata->slots[0].gpio_reset, "mmc_reset");
> + if (ret)
> + goto err_free_wp;
> + ret = gpio_direction_output(pdata->slots[0].gpio_reset, 1);
> + if (ret)
> + goto err_free_reset;
> + } else
> + pdata->slots[0].gpio_reset = -EINVAL;
looks like this should be implemented as a reset-gpio.c driver. This
piece of code would, then
reset_assert(slot->reset);
do_the_magic_dance();
reset_deassert(slot->reset);
--
balbi
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2014-07-03 22:41 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-03 20:49 [PATCH 1/2] mmc: hsmmc: Add reset gpio configuration option Marek Belisko
2014-07-03 20:49 ` [PATCH 2/2] Documentation: devicetree: mmc: Document reset-gpio property Marek Belisko
2014-07-03 22:41 ` Felipe Balbi [this message]
[not found] ` <1404420564-30245-1-git-send-email-marek-xXXSsgcRVICgSpxsJD1C4w@public.gmane.org>
2014-07-03 23:01 ` [PATCH 1/2] mmc: hsmmc: Add reset gpio configuration option Russell King - ARM Linux
2014-07-26 19:48 ` Belisko Marek
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=20140703224146.GC2540@saruman.home \
--to=balbi@ti.com \
--cc=balajitk@ti.com \
--cc=chris@printf.net \
--cc=devicetree@vger.kernel.org \
--cc=galak@codeaurora.org \
--cc=hns@goldelico.com \
--cc=ijc+devicetree@hellion.org.uk \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=marek@goldelico.com \
--cc=mark.rutland@arm.com \
--cc=neilb@suse.de \
--cc=pawel.moll@arm.com \
--cc=robh+dt@kernel.org \
--cc=tony@atomide.com \
--cc=ulf.hansson@linaro.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;
as well as URLs for NNTP newsgroup(s).