Skip to content
Snippets Groups Projects
Commit 8be4e61d authored by Heinrich Schuchardt's avatar Heinrich Schuchardt Committed by Jagan Teki
Browse files

mmc: sunxi: support cd-inverted

With CONFIG_DM_MMC the BananaPi does not detect SD cards.

The sunxi device trees use the cd-inverted property to indicate that
the card detect is inverted.

This property is documented in Linux kernel devicetree/bindings/mmc/mmc.txt
The property is not marked as deprecated.

A similar patch was posted by Tuomas but is in status "Changes Requested".
https://patchwork.ozlabs.org/patch/850377/



This patch is a stripped down version of his patch.

Suggested-by: default avatarTuomas Tynkkynen <tuomas@tuxera.com>
Signed-off-by: default avatarHeinrich Schuchardt <xypron.glpk@gmx.de>
Acked-by: default avatarMaxime Ripard <maxime.ripard@free-electrons.com>
Reviewed-by: default avatarJagan Teki <jagan@openedev.com>
parent 1bcfba53
No related branches found
No related tags found
No related merge requests found
...@@ -30,6 +30,7 @@ struct sunxi_mmc_priv { ...@@ -30,6 +30,7 @@ struct sunxi_mmc_priv {
uint32_t *mclkreg; uint32_t *mclkreg;
unsigned fatal_err; unsigned fatal_err;
struct gpio_desc cd_gpio; /* Change Detect GPIO */ struct gpio_desc cd_gpio; /* Change Detect GPIO */
int cd_inverted; /* Inverted Card Detect */
struct sunxi_mmc *reg; struct sunxi_mmc *reg;
struct mmc_config cfg; struct mmc_config cfg;
}; };
...@@ -544,9 +545,11 @@ static int sunxi_mmc_getcd(struct udevice *dev) ...@@ -544,9 +545,11 @@ static int sunxi_mmc_getcd(struct udevice *dev)
{ {
struct sunxi_mmc_priv *priv = dev_get_priv(dev); struct sunxi_mmc_priv *priv = dev_get_priv(dev);
if (dm_gpio_is_valid(&priv->cd_gpio)) if (dm_gpio_is_valid(&priv->cd_gpio)) {
return dm_gpio_get_value(&priv->cd_gpio); int cd_state = dm_gpio_get_value(&priv->cd_gpio);
return cd_state ^ priv->cd_inverted;
}
return 1; return 1;
} }
...@@ -610,6 +613,9 @@ static int sunxi_mmc_probe(struct udevice *dev) ...@@ -610,6 +613,9 @@ static int sunxi_mmc_probe(struct udevice *dev)
sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP); sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
} }
/* Check if card detect is inverted */
priv->cd_inverted = dev_read_bool(dev, "cd-inverted");
upriv->mmc = &plat->mmc; upriv->mmc = &plat->mmc;
/* Reset controller */ /* Reset controller */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment