diff options
author | Piotr Wilczek <p.wilczek@samsung.com> | 2014-03-07 14:59:41 +0100 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2014-03-12 19:54:59 +0900 |
commit | 3577fe8be9dc8c8aa027361d6424efba9f97f553 (patch) | |
tree | 7591836e077264433d8cfd9eac38680a89fbe63e /include/sdhci.h | |
parent | 1591ee73526ba4085cec7cc5bb83b2ece0f6706e (diff) | |
download | u-boot-imx-3577fe8be9dc8c8aa027361d6424efba9f97f553.zip u-boot-imx-3577fe8be9dc8c8aa027361d6424efba9f97f553.tar.gz u-boot-imx-3577fe8be9dc8c8aa027361d6424efba9f97f553.tar.bz2 |
drivers:mmc:sdhci: enable support for DT
This patch enables support for device tree for sdhci driver.
Non DT case is still supported.
Signed-off-by: Piotr Wilczek <p.wilczek@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'include/sdhci.h')
-rw-r--r-- | include/sdhci.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/sdhci.h b/include/sdhci.h index 74d06ae..32e04f5 100644 --- a/include/sdhci.h +++ b/include/sdhci.h @@ -12,6 +12,7 @@ #include <asm/io.h> #include <mmc.h> +#include <fdtdec.h> /* * Controller registers @@ -244,6 +245,10 @@ struct sdhci_host { const struct sdhci_ops *ops; int index; + int bus_width; + struct fdt_gpio_state pwr_gpio; /* Power GPIO */ + struct fdt_gpio_state cd_gpio; /* Card Detect GPIO */ + void (*set_control_reg)(struct sdhci_host *host); void (*set_clock)(int dev_index, unsigned int div); uint voltages; |