]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
mmc: consider cd-gpios in Synopsys DesignWare driver
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Sun, 21 Jul 2024 06:59:07 +0000 (08:59 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 6 Sep 2024 01:08:14 +0000 (19:08 -0600)
The JH7110 SoC uses a GPIO for card detect.

* In the of_to_plat function check if a cd-gpios definition exists and
  request the GPIO.
* In the getcd function return the GPIO value in this case.

Reported-by: Conor Dooley <conor.dooley@microchip.com>
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
drivers/mmc/snps_dw_mmc.c

index f30331e51f7e660d3e4aa2b4c818ad5d4394b544..47ab5654bd64af21d9b95a5a6d4c8b75aa2ee367 100644 (file)
@@ -12,6 +12,7 @@
 #include <dwmmc.h>
 #include <errno.h>
 #include <fdtdec.h>
+#include <asm/gpio.h>
 #include <dm/device_compat.h>
 #include <linux/libfdt.h>
 #include <linux/err.h>
@@ -29,6 +30,7 @@ struct snps_dwmci_plat {
 struct snps_dwmci_priv_data {
        struct dwmci_host       host;
        u32                     f_max;
+       struct gpio_desc        cd_gpio;
 };
 
 static int snps_dwmmc_clk_setup(struct udevice *dev)
@@ -104,6 +106,10 @@ static int snps_dwmmc_of_to_plat(struct udevice *dev)
        if (!ret && priv->f_max < CLOCK_MIN)
                return -EINVAL;
 
+       if (CONFIG_IS_ENABLED(DM_GPIO))
+               gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio,
+                                    GPIOD_IS_IN);
+
        host->fifo_mode = dev_read_bool(dev, "fifo-mode");
        host->name = dev->name;
        host->dev_index = 0;
@@ -117,6 +123,9 @@ int snps_dwmmc_getcd(struct udevice *dev)
        struct snps_dwmci_priv_data *priv = dev_get_priv(dev);
        struct dwmci_host *host = &priv->host;
 
+       if (CONFIG_IS_ENABLED(DM_GPIO) && dm_gpio_is_valid(&priv->cd_gpio))
+               return dm_gpio_get_value(&priv->cd_gpio);
+
        return !(dwmci_readl(host, DWMCI_CDETECT) & 1);
 }