public inbox for linux-mmc@vger.kernel.org
 help / color / mirror / Atom feed
From: Marc Kleine-Budde <mkl@pengutronix.de>
To: linux-mmc@vger.kernel.org
Cc: kernel@pengutronix.de, cjb@laptop.org,
	Marc Kleine-Budde <mkl@pengutronix.de>
Subject: [PATCH v3 2/3] mmc: mxs-mmc: add non-removable property
Date: Wed, 10 Apr 2013 11:13:44 +0200	[thread overview]
Message-ID: <1365585225-11360-3-git-send-email-mkl@pengutronix.de> (raw)
In-Reply-To: <1365585225-11360-1-git-send-email-mkl@pengutronix.de>

Some boards have non removable cards like eMMC. Handle such case.

Acked-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 drivers/mmc/host/mxs-mmc.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/drivers/mmc/host/mxs-mmc.c b/drivers/mmc/host/mxs-mmc.c
index 0cdf1f6..c231881 100644
--- a/drivers/mmc/host/mxs-mmc.c
+++ b/drivers/mmc/host/mxs-mmc.c
@@ -73,6 +73,7 @@ struct mxs_mmc_host {
 	int				wp_gpio;
 	bool				wp_inverted;
 	bool				cd_inverted;
+	bool				non_removable;
 };
 
 static int mxs_mmc_get_ro(struct mmc_host *mmc)
@@ -96,8 +97,9 @@ static int mxs_mmc_get_cd(struct mmc_host *mmc)
 	struct mxs_mmc_host *host = mmc_priv(mmc);
 	struct mxs_ssp *ssp = &host->ssp;
 
-	return !(readl(ssp->base + HW_SSP_STATUS(ssp)) &
-		 BM_SSP_STATUS_CARD_DETECT)) ^ host->cd_inverted;
+	return host->non_removable ||
+		!(readl(ssp->base + HW_SSP_STATUS(ssp)) &
+		  BM_SSP_STATUS_CARD_DETECT) ^ host->cd_inverted;
 }
 
 static void mxs_mmc_reset(struct mxs_mmc_host *host)
@@ -687,8 +689,10 @@ static int mxs_mmc_probe(struct platform_device *pdev)
 		mmc->caps |= MMC_CAP_4_BIT_DATA;
 	else if (bus_width == 8)
 		mmc->caps |= MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA;
+	host->non_removable = of_property_read_bool(np, "non-removable");
+	if (host->non_removable)
+		mmc->caps |= MMC_CAP_NONREMOVABLE;
 	host->wp_gpio = of_get_named_gpio_flags(np, "wp-gpios", 0, &flags);
-
 	if (flags & OF_GPIO_ACTIVE_LOW)
 		host->wp_inverted = 1;
 
-- 
1.8.2.rc2


  parent reply	other threads:[~2013-04-10  9:13 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-10  9:13 [PATCH v3 1/3] mmc: mxs-mmc: add cd-inverted, non-removable and broken-cd Marc Kleine-Budde
2013-04-10  9:13 ` [PATCH v3 1/3] mmc: mxs-mmc: add cd-inverted property Marc Kleine-Budde
2013-04-10  9:13 ` Marc Kleine-Budde [this message]
2013-04-10  9:13 ` [PATCH v3 3/3] mmc: mxs-mmc: add broken-cd property Marc Kleine-Budde
2013-04-12 14:12 ` [PATCH v3 0/3] mmc: mxs-mmc: add cd-inverted, non-removable and broken-cd Marc Kleine-Budde
2013-04-12 18:18 ` [PATCH v3 1/3] " Chris Ball

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=1365585225-11360-3-git-send-email-mkl@pengutronix.de \
    --to=mkl@pengutronix.de \
    --cc=cjb@laptop.org \
    --cc=kernel@pengutronix.de \
    --cc=linux-mmc@vger.kernel.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