All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC] mmc: core: add the capability for broken voltage
@ 2012-01-16  8:49 Jaehoon Chung
  2012-01-17  8:00 ` Adrian Hunter
  2012-02-04 23:24 ` Chris Ball
  0 siblings, 2 replies; 16+ messages in thread
From: Jaehoon Chung @ 2012-01-16  8:49 UTC (permalink / raw)
  To: linux-mmc; +Cc: Chris Ball, Kyungmin Park, Adrian Hunter

This patch is added the MMC_CAP2_BROKEN_VOLTAGE.

if the voltage didn't satisfy between min_uV and max_uV,
try to change the voltage in core.c.
When change the voltage, maybe use the regulator_set_voltage().

In regulator_set_voltage(), check the below condition.

	/* sanity check */
	if (!rdev->desc->ops->set_voltage &&
	    !rdev->desc->ops->set_voltage_sel) {
		ret = -EINVAL;
		goto out;
	}

If Some-board should use the fixed-regulator, always return -EINVAL.
Then, eMMC didn't initialize always.

So if use the fixed-regulator or etc, we need to add the MMC_CAP2_BROKEN_VOLTAGE.

Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 drivers/mmc/core/core.c  |    4 ++++
 include/linux/mmc/host.h |    1 +
 2 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c
index bec0bf2..6848789 100644
--- a/drivers/mmc/core/core.c
+++ b/drivers/mmc/core/core.c
@@ -1121,6 +1121,10 @@ int mmc_regulator_set_ocr(struct mmc_host *mmc,
 		 * might not allow this operation
 		 */
 		voltage = regulator_get_voltage(supply);
+
+		if (mmc->caps2 & MMC_CAP2_BROKEN_VOLTAGE)
+			min_uV = max_uV = voltage;
+
 		if (voltage < 0)
 			result = voltage;
 		else if (voltage < min_uV || voltage > max_uV)
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h
index dd13e05..5659aee 100644
--- a/include/linux/mmc/host.h
+++ b/include/linux/mmc/host.h
@@ -257,6 +257,7 @@ struct mmc_host {
 #define MMC_CAP2_HS200_1_2V_SDR	(1 << 6)        /* can support */
 #define MMC_CAP2_HS200		(MMC_CAP2_HS200_1_8V_SDR | \
 				 MMC_CAP2_HS200_1_2V_SDR)
+#define MMC_CAP2_BROKEN_VOLTAGE	(1 << 7)	/* Use the broken voltage */
 
 	mmc_pm_flag_t		pm_caps;	/* supported pm features */
 	unsigned int        power_notify_type;

^ permalink raw reply related	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2012-02-06 10:25 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-16  8:49 [RFC] mmc: core: add the capability for broken voltage Jaehoon Chung
2012-01-17  8:00 ` Adrian Hunter
2012-01-17  9:05   ` Kyungmin Park
2012-01-17  9:37     ` Adrian Hunter
2012-01-17  9:53       ` Kyungmin Park
2012-01-17 11:47         ` Adrian Hunter
2012-01-17 23:58           ` Kyungmin Park
2012-01-18  8:01             ` Adrian Hunter
2012-01-18  8:13               ` Kyungmin Park
2012-01-18  8:56                 ` Adrian Hunter
2012-01-18 13:03                   ` Kyungmin Park
2012-01-19 10:14                     ` Adrian Hunter
2012-01-19 10:40                       ` Kyungmin Park
2012-01-19 14:08                         ` Adrian Hunter
2012-02-04 23:24 ` Chris Ball
2012-02-06 10:24   ` Marek Szyprowski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.