[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAPDyKFr6MOkO56vjsMhne4vYVJbNXVLM-tMkbYnO4_XsjBTOSw@mail.gmail.com>
Date: Tue, 19 Aug 2014 14:51:53 +0200
From: Ulf Hansson <ulf.hansson@...aro.org>
To: Javier Martinez Canillas <javier.martinez@...labora.co.uk>
Cc: Chris Ball <chris@...ntf.net>,
Seungwon Jeon <tgih.jun@...sung.com>,
Tim Kryger <tim.kryger@...aro.org>,
Haijun Zhang <Haijun.Zhang@...escale.com>,
Mark Brown <broonie@...nel.org>,
Doug Anderson <dianders@...omium.org>,
Olof Johansson <olof@...om.net>,
Yuvaraj Kumar C D <yuvaraj.cd@...il.com>,
linux-samsung-soc <linux-samsung-soc@...r.kernel.org>,
linux-mmc <linux-mmc@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 1/1] mmc: core: Use regulator_get_voltage() if OCR mask is empty.
On 14 August 2014 14:39, Javier Martinez Canillas
<javier.martinez@...labora.co.uk> wrote:
> The operation conditions register (OCR) stores the voltage
> profile of the card, however the list of possible voltages
> is restricted by the voltage range supported by the supply
> used as VCC/VDD. So in mmc_vddrange_to_ocrmask() a OCR mask
> is obtained to filter the not supported voltages, from the
> value read in the host controller OCR register.
>
> For fixed regulators, regulator_list_voltage() returns the
> fixed output for the first selector but this doesn't happen
> for switch (FET) regulators that obtain their voltage from
> their parent supply. A call to regulator_get_voltage() is
> needed in this case so the regulator core can return the
> FET's parent supply voltage output.
>
> This change is consistent with the fact that for other
> fixed regulators (that are not FETs) the OCR mask is
> returned even when mmc_regulator_set_ocr() checks if the
> regulator is fixed before calling regulator_set_voltage().
>
> Without this patch, the following warning is reported when
> a FET is used as a vmmc-supply:
>
> dwmmc_exynos 12220000.mmc: Failed getting OCR mask: -22
>
> Signed-off-by: Javier Martinez Canillas <javier.martinez@...labora.co.uk>
Thanks! Applied for next.
Kind regards
Uffe
> ---
>
> drivers/mmc/core/core.c | 14 +++++++++++---
> 1 file changed, 11 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c
> index 7dc0c85..8abae04 100644
> --- a/drivers/mmc/core/core.c
> +++ b/drivers/mmc/core/core.c
> @@ -1221,15 +1221,14 @@ int mmc_regulator_get_ocrmask(struct regulator *supply)
> int result = 0;
> int count;
> int i;
> + int vdd_uV;
> + int vdd_mV;
>
> count = regulator_count_voltages(supply);
> if (count < 0)
> return count;
>
> for (i = 0; i < count; i++) {
> - int vdd_uV;
> - int vdd_mV;
> -
> vdd_uV = regulator_list_voltage(supply, i);
> if (vdd_uV <= 0)
> continue;
> @@ -1238,6 +1237,15 @@ int mmc_regulator_get_ocrmask(struct regulator *supply)
> result |= mmc_vddrange_to_ocrmask(vdd_mV, vdd_mV);
> }
>
> + if (!result) {
> + vdd_uV = regulator_get_voltage(supply);
> + if (vdd_uV <= 0)
> + return vdd_uV;
> +
> + vdd_mV = vdd_uV / 1000;
> + result = mmc_vddrange_to_ocrmask(vdd_mV, vdd_mV);
> + }
> +
> return result;
> }
> EXPORT_SYMBOL_GPL(mmc_regulator_get_ocrmask);
> --
> 2.0.0.rc2
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists