Re: RESEND:[PATCH V3] sdhci: only reprogram retuning timer when flag is set

2014-03-06 Thread Arend van Spriel
On 02/21/2014 08:59 PM, Arend van Spriel wrote: When the host-tuning_count is zero it means that the retuning is disabled. This is checked on the first run of sdhci_execute_tuning() by the if statement below: if (!(host-flags SDHCI_NEEDS_RETUNING) host-tuning_count

[PATCH RFT] regulator: pbias: Convert to use regmap helper functions

2014-03-06 Thread Axel Lin
This patch converts this driver to use the regmap helper functions provided by regulator core. This fixes a few issues in current implementation: 1) In original code, the set voltage does not check max_uV, which means if request max_uV 180, it will still set the voltage to 180.

Re: [PATCH v2] mmc: sdhci: add quirk for broken write protect detection

2014-03-06 Thread Mike Looijmans
On 03/04/2014 10:00 PM, Sören Brinkmann wrote: On Tue, 2014-03-04 at 10:06PM +0200, Eli Billauer wrote: Hello Sören, wp-inverted solves the practical problem indeed, and fools the driver into thinking that the card has an inverted write protection sensor, and the logic zero that it finds in

RE: [PATCH v4 1/7] mmc: dw_mmc: use the mmc_of_parse() instead of local parser

2014-03-06 Thread Seungwon Jeon
On Thu, March 06, 2014, Jaehoon Chung wrote: Dear, All. Do you have any other comment for this patchset? I have tested with exynos4/5 board. it's working fine.(eMMC/SD) If it needs to change more, let me know, plz. Best Regards, Jaehoon Chung On 03/03/2014 11:36 AM, Jaehoon Chung

Re: [PATCH RFT] regulator: pbias: Convert to use regmap helper functions

2014-03-06 Thread Balaji T K
On Thursday 06 March 2014 06:40 PM, Axel Lin wrote: This patch converts this driver to use the regmap helper functions provided by regulator core. This fixes a few issues in current implementation: 1) In original code, the set voltage does not check max_uV, which means if request max_uV

Re: [PATCH v10 1/3] mmc: sdhci-msm: Qualcomm SDHCI binding documentation

2014-03-06 Thread Georgi Djakov
On 03/05/2014 08:56 AM, Rob Herring wrote: On Tue, Mar 4, 2014 at 1:27 PM, Georgi Djakov gdja...@mm-sol.com wrote: [..] +Required properties: +- compatible: Should contain qcom,sdhci-msm-v4. +- reg: Base address and length of the register set listed in reg-names. +- reg-names: Should contain

Re: [PATCH v4 1/7] mmc: dw_mmc: use the mmc_of_parse() instead of local parser

2014-03-06 Thread Jaehoon Chung
On 03/06/2014 04:18 PM, Ulf Hansson wrote: On 3 March 2014 03:36, Jaehoon Chung jh80.ch...@gmail.com wrote: mmc_of_parse() have been already parsed the general capability. Didn't need to use the local parser. Signed-off-by: Jaehoon Chung jh80.ch...@samsung.com --- Changelog V4: -

Re: RESEND:[PATCH V3] sdhci: only reprogram retuning timer when flag is set

2014-03-06 Thread Ulf Hansson
On 6 March 2014 10:29, Arend van Spriel ar...@broadcom.com wrote: On 02/21/2014 08:59 PM, Arend van Spriel wrote: When the host-tuning_count is zero it means that the retuning is disabled. This is checked on the first run of sdhci_execute_tuning() by the if statement below: if