Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2008 |
| 3 | * Texas Instruments, <www.ti.com> |
| 4 | * Sukumar Ghorai <s-ghorai@ti.com> |
| 5 | * |
| 6 | * See file CREDITS for list of people who contributed to this |
| 7 | * project. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation's version 2 of |
| 12 | * the License. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 22 | * MA 02111-1307 USA |
| 23 | */ |
| 24 | |
| 25 | #include <config.h> |
| 26 | #include <common.h> |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 27 | #include <malloc.h> |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 28 | #include <mmc.h> |
| 29 | #include <part.h> |
| 30 | #include <i2c.h> |
Felix Brack | 339d578 | 2017-10-11 17:05:28 +0200 | [diff] [blame] | 31 | #if defined(CONFIG_OMAP54XX) || defined(CONFIG_OMAP44XX) |
Nishanth Menon | cb19910 | 2013-03-26 05:20:54 +0000 | [diff] [blame] | 32 | #include <palmas.h> |
Felix Brack | 339d578 | 2017-10-11 17:05:28 +0200 | [diff] [blame] | 33 | #endif |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 34 | #include <asm/io.h> |
| 35 | #include <asm/arch/mmc_host_def.h> |
Roger Quadros | 3b68939 | 2015-09-19 16:26:53 +0530 | [diff] [blame] | 36 | #if !defined(CONFIG_SOC_KEYSTONE) |
| 37 | #include <asm/gpio.h> |
Dirk Behme | 96e0e7b | 2011-05-15 09:04:47 +0000 | [diff] [blame] | 38 | #include <asm/arch/sys_proto.h> |
Roger Quadros | 3b68939 | 2015-09-19 16:26:53 +0530 | [diff] [blame] | 39 | #endif |
Tom Rini | 2a48b3a | 2017-02-09 13:41:28 -0500 | [diff] [blame] | 40 | #ifdef CONFIG_MMC_OMAP36XX_PINS |
| 41 | #include <asm/arch/mux.h> |
| 42 | #endif |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 43 | #include <dm.h> |
| 44 | |
| 45 | DECLARE_GLOBAL_DATA_PTR; |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 46 | |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 47 | /* simplify defines to OMAP_HSMMC_USE_GPIO */ |
| 48 | #if (defined(CONFIG_OMAP_GPIO) && !defined(CONFIG_SPL_BUILD)) || \ |
| 49 | (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_GPIO_SUPPORT)) |
| 50 | #define OMAP_HSMMC_USE_GPIO |
| 51 | #else |
| 52 | #undef OMAP_HSMMC_USE_GPIO |
| 53 | #endif |
| 54 | |
Grazvydas Ignotas | 25c719e | 2012-03-19 12:12:06 +0000 | [diff] [blame] | 55 | /* common definitions for all OMAPs */ |
| 56 | #define SYSCTL_SRC (1 << 25) |
| 57 | #define SYSCTL_SRD (1 << 26) |
| 58 | |
Nikita Kiryanov | cc22b0c | 2012-12-03 02:19:43 +0000 | [diff] [blame] | 59 | struct omap_hsmmc_data { |
| 60 | struct hsmmc *base_addr; |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 61 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 62 | struct mmc_config cfg; |
Jean-Jacques Hiblot | 3d673ff | 2017-03-22 16:00:33 +0100 | [diff] [blame] | 63 | #endif |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 64 | #ifdef OMAP_HSMMC_USE_GPIO |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 65 | #if CONFIG_IS_ENABLED(DM_MMC) |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 66 | struct gpio_desc cd_gpio; /* Change Detect GPIO */ |
| 67 | struct gpio_desc wp_gpio; /* Write Protect GPIO */ |
| 68 | bool cd_inverted; |
| 69 | #else |
Nikita Kiryanov | e874d5b | 2012-12-03 02:19:44 +0000 | [diff] [blame] | 70 | int cd_gpio; |
Nikita Kiryanov | e3913f5 | 2012-12-03 02:19:47 +0000 | [diff] [blame] | 71 | int wp_gpio; |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 72 | #endif |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 73 | #endif |
Nikita Kiryanov | cc22b0c | 2012-12-03 02:19:43 +0000 | [diff] [blame] | 74 | }; |
| 75 | |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 76 | /* If we fail after 1 second wait, something is really bad */ |
| 77 | #define MAX_RETRY_MS 1000 |
| 78 | |
Sricharan | 933efe6 | 2011-11-15 09:49:53 -0500 | [diff] [blame] | 79 | static int mmc_read_data(struct hsmmc *mmc_base, char *buf, unsigned int size); |
| 80 | static int mmc_write_data(struct hsmmc *mmc_base, const char *buf, |
| 81 | unsigned int siz); |
Balaji T K | 14fa2dd | 2011-09-08 06:34:57 +0000 | [diff] [blame] | 82 | |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 83 | static inline struct omap_hsmmc_data *omap_hsmmc_get_data(struct mmc *mmc) |
| 84 | { |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 85 | #if CONFIG_IS_ENABLED(DM_MMC) |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 86 | return dev_get_priv(mmc->dev); |
| 87 | #else |
| 88 | return (struct omap_hsmmc_data *)mmc->priv; |
| 89 | #endif |
| 90 | } |
Jean-Jacques Hiblot | 3d673ff | 2017-03-22 16:00:33 +0100 | [diff] [blame] | 91 | static inline struct mmc_config *omap_hsmmc_get_cfg(struct mmc *mmc) |
| 92 | { |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 93 | #if CONFIG_IS_ENABLED(DM_MMC) |
Jean-Jacques Hiblot | 3d673ff | 2017-03-22 16:00:33 +0100 | [diff] [blame] | 94 | struct omap_hsmmc_plat *plat = dev_get_platdata(mmc->dev); |
| 95 | return &plat->cfg; |
| 96 | #else |
| 97 | return &((struct omap_hsmmc_data *)mmc->priv)->cfg; |
| 98 | #endif |
| 99 | } |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 100 | |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 101 | #if defined(OMAP_HSMMC_USE_GPIO) && !CONFIG_IS_ENABLED(DM_MMC) |
Nikita Kiryanov | e874d5b | 2012-12-03 02:19:44 +0000 | [diff] [blame] | 102 | static int omap_mmc_setup_gpio_in(int gpio, const char *label) |
| 103 | { |
Simon Glass | 5915a2a | 2014-10-22 21:37:09 -0600 | [diff] [blame] | 104 | int ret; |
| 105 | |
| 106 | #ifndef CONFIG_DM_GPIO |
Nikita Kiryanov | e874d5b | 2012-12-03 02:19:44 +0000 | [diff] [blame] | 107 | if (!gpio_is_valid(gpio)) |
| 108 | return -1; |
Simon Glass | 5915a2a | 2014-10-22 21:37:09 -0600 | [diff] [blame] | 109 | #endif |
| 110 | ret = gpio_request(gpio, label); |
| 111 | if (ret) |
| 112 | return ret; |
Nikita Kiryanov | e874d5b | 2012-12-03 02:19:44 +0000 | [diff] [blame] | 113 | |
Simon Glass | 5915a2a | 2014-10-22 21:37:09 -0600 | [diff] [blame] | 114 | ret = gpio_direction_input(gpio); |
| 115 | if (ret) |
| 116 | return ret; |
Nikita Kiryanov | e874d5b | 2012-12-03 02:19:44 +0000 | [diff] [blame] | 117 | |
| 118 | return gpio; |
| 119 | } |
Nikita Kiryanov | e874d5b | 2012-12-03 02:19:44 +0000 | [diff] [blame] | 120 | #endif |
| 121 | |
Jeroen Hofstee | 750121c | 2014-07-12 21:24:08 +0200 | [diff] [blame] | 122 | static unsigned char mmc_board_init(struct mmc *mmc) |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 123 | { |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 124 | #if defined(CONFIG_OMAP34XX) |
Jean-Jacques Hiblot | 3d673ff | 2017-03-22 16:00:33 +0100 | [diff] [blame] | 125 | struct mmc_config *cfg = omap_hsmmc_get_cfg(mmc); |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 126 | t2_t *t2_base = (t2_t *)T2_BASE; |
| 127 | struct prcm *prcm_base = (struct prcm *)PRCM_BASE; |
Grazvydas Ignotas | b1e725f | 2012-03-19 03:50:53 +0000 | [diff] [blame] | 128 | u32 pbias_lite; |
Adam Ford | 6aca17c | 2017-02-06 11:31:43 -0600 | [diff] [blame] | 129 | #ifdef CONFIG_MMC_OMAP36XX_PINS |
| 130 | u32 wkup_ctrl = readl(OMAP34XX_CTRL_WKUP_CTRL); |
| 131 | #endif |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 132 | |
Grazvydas Ignotas | b1e725f | 2012-03-19 03:50:53 +0000 | [diff] [blame] | 133 | pbias_lite = readl(&t2_base->pbias_lite); |
| 134 | pbias_lite &= ~(PBIASLITEPWRDNZ1 | PBIASLITEPWRDNZ0); |
Albert ARIBAUD \(3ADEV\) | 5bfdd1f | 2015-01-16 09:09:50 +0100 | [diff] [blame] | 135 | #ifdef CONFIG_TARGET_OMAP3_CAIRO |
| 136 | /* for cairo board, we need to set up 1.8 Volt bias level on MMC1 */ |
| 137 | pbias_lite &= ~PBIASLITEVMODE0; |
| 138 | #endif |
Adam Ford | 6aca17c | 2017-02-06 11:31:43 -0600 | [diff] [blame] | 139 | #ifdef CONFIG_MMC_OMAP36XX_PINS |
| 140 | if (get_cpu_family() == CPU_OMAP36XX) { |
| 141 | /* Disable extended drain IO before changing PBIAS */ |
| 142 | wkup_ctrl &= ~OMAP34XX_CTRL_WKUP_CTRL_GPIO_IO_PWRDNZ; |
| 143 | writel(wkup_ctrl, OMAP34XX_CTRL_WKUP_CTRL); |
| 144 | } |
| 145 | #endif |
Grazvydas Ignotas | b1e725f | 2012-03-19 03:50:53 +0000 | [diff] [blame] | 146 | writel(pbias_lite, &t2_base->pbias_lite); |
Paul Kocialkowski | aac5450 | 2014-11-08 20:55:47 +0100 | [diff] [blame] | 147 | |
Grazvydas Ignotas | b1e725f | 2012-03-19 03:50:53 +0000 | [diff] [blame] | 148 | writel(pbias_lite | PBIASLITEPWRDNZ1 | |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 149 | PBIASSPEEDCTRL0 | PBIASLITEPWRDNZ0, |
| 150 | &t2_base->pbias_lite); |
| 151 | |
Adam Ford | 6aca17c | 2017-02-06 11:31:43 -0600 | [diff] [blame] | 152 | #ifdef CONFIG_MMC_OMAP36XX_PINS |
| 153 | if (get_cpu_family() == CPU_OMAP36XX) |
| 154 | /* Enable extended drain IO after changing PBIAS */ |
| 155 | writel(wkup_ctrl | |
| 156 | OMAP34XX_CTRL_WKUP_CTRL_GPIO_IO_PWRDNZ, |
| 157 | OMAP34XX_CTRL_WKUP_CTRL); |
| 158 | #endif |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 159 | writel(readl(&t2_base->devconf0) | MMCSDIO1ADPCLKISEL, |
| 160 | &t2_base->devconf0); |
| 161 | |
| 162 | writel(readl(&t2_base->devconf1) | MMCSDIO2ADPCLKISEL, |
| 163 | &t2_base->devconf1); |
| 164 | |
Jonathan Solnit | bbbc1ae | 2012-02-24 11:30:18 +0000 | [diff] [blame] | 165 | /* Change from default of 52MHz to 26MHz if necessary */ |
Jean-Jacques Hiblot | 3d673ff | 2017-03-22 16:00:33 +0100 | [diff] [blame] | 166 | if (!(cfg->host_caps & MMC_MODE_HS_52MHz)) |
Jonathan Solnit | bbbc1ae | 2012-02-24 11:30:18 +0000 | [diff] [blame] | 167 | writel(readl(&t2_base->ctl_prog_io1) & ~CTLPROGIO1SPEEDCTRL, |
| 168 | &t2_base->ctl_prog_io1); |
| 169 | |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 170 | writel(readl(&prcm_base->fclken1_core) | |
| 171 | EN_MMC1 | EN_MMC2 | EN_MMC3, |
| 172 | &prcm_base->fclken1_core); |
| 173 | |
| 174 | writel(readl(&prcm_base->iclken1_core) | |
| 175 | EN_MMC1 | EN_MMC2 | EN_MMC3, |
| 176 | &prcm_base->iclken1_core); |
| 177 | #endif |
| 178 | |
Lokesh Vutla | b4b0600 | 2016-11-23 13:25:28 +0530 | [diff] [blame] | 179 | #if defined(CONFIG_OMAP54XX) || defined(CONFIG_OMAP44XX) |
Balaji T K | 14fa2dd | 2011-09-08 06:34:57 +0000 | [diff] [blame] | 180 | /* PBIAS config needed for MMC1 only */ |
Jean-Jacques Hiblot | dc09127 | 2017-03-22 16:00:32 +0100 | [diff] [blame] | 181 | if (mmc_get_blk_desc(mmc)->devnum == 0) |
Lokesh Vutla | b4b0600 | 2016-11-23 13:25:28 +0530 | [diff] [blame] | 182 | vmmc_pbias_config(LDO_VOLT_3V0); |
Balaji T K | dd23e59 | 2012-03-12 02:25:49 +0000 | [diff] [blame] | 183 | #endif |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 184 | |
| 185 | return 0; |
| 186 | } |
| 187 | |
Sricharan | 933efe6 | 2011-11-15 09:49:53 -0500 | [diff] [blame] | 188 | void mmc_init_stream(struct hsmmc *mmc_base) |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 189 | { |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 190 | ulong start; |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 191 | |
| 192 | writel(readl(&mmc_base->con) | INIT_INITSTREAM, &mmc_base->con); |
| 193 | |
| 194 | writel(MMC_CMD0, &mmc_base->cmd); |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 195 | start = get_timer(0); |
| 196 | while (!(readl(&mmc_base->stat) & CC_MASK)) { |
| 197 | if (get_timer(0) - start > MAX_RETRY_MS) { |
| 198 | printf("%s: timedout waiting for cc!\n", __func__); |
| 199 | return; |
| 200 | } |
| 201 | } |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 202 | writel(CC_MASK, &mmc_base->stat) |
| 203 | ; |
| 204 | writel(MMC_CMD0, &mmc_base->cmd) |
| 205 | ; |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 206 | start = get_timer(0); |
| 207 | while (!(readl(&mmc_base->stat) & CC_MASK)) { |
| 208 | if (get_timer(0) - start > MAX_RETRY_MS) { |
| 209 | printf("%s: timedout waiting for cc2!\n", __func__); |
| 210 | return; |
| 211 | } |
| 212 | } |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 213 | writel(readl(&mmc_base->con) & ~INIT_INITSTREAM, &mmc_base->con); |
| 214 | } |
| 215 | |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 216 | static int omap_hsmmc_init_setup(struct mmc *mmc) |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 217 | { |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 218 | struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc); |
Nikita Kiryanov | cc22b0c | 2012-12-03 02:19:43 +0000 | [diff] [blame] | 219 | struct hsmmc *mmc_base; |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 220 | unsigned int reg_val; |
| 221 | unsigned int dsor; |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 222 | ulong start; |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 223 | |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 224 | mmc_base = priv->base_addr; |
Balaji T K | 14fa2dd | 2011-09-08 06:34:57 +0000 | [diff] [blame] | 225 | mmc_board_init(mmc); |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 226 | |
| 227 | writel(readl(&mmc_base->sysconfig) | MMC_SOFTRESET, |
| 228 | &mmc_base->sysconfig); |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 229 | start = get_timer(0); |
| 230 | while ((readl(&mmc_base->sysstatus) & RESETDONE) == 0) { |
| 231 | if (get_timer(0) - start > MAX_RETRY_MS) { |
| 232 | printf("%s: timedout waiting for cc2!\n", __func__); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 233 | return -ETIMEDOUT; |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 234 | } |
| 235 | } |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 236 | writel(readl(&mmc_base->sysctl) | SOFTRESETALL, &mmc_base->sysctl); |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 237 | start = get_timer(0); |
| 238 | while ((readl(&mmc_base->sysctl) & SOFTRESETALL) != 0x0) { |
| 239 | if (get_timer(0) - start > MAX_RETRY_MS) { |
| 240 | printf("%s: timedout waiting for softresetall!\n", |
| 241 | __func__); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 242 | return -ETIMEDOUT; |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 243 | } |
| 244 | } |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 245 | writel(DTW_1_BITMODE | SDBP_PWROFF | SDVS_3V0, &mmc_base->hctl); |
| 246 | writel(readl(&mmc_base->capa) | VS30_3V0SUP | VS18_1V8SUP, |
| 247 | &mmc_base->capa); |
| 248 | |
| 249 | reg_val = readl(&mmc_base->con) & RESERVED_MASK; |
| 250 | |
| 251 | writel(CTPL_MMC_SD | reg_val | WPP_ACTIVEHIGH | CDP_ACTIVEHIGH | |
| 252 | MIT_CTO | DW8_1_4BITMODE | MODE_FUNC | STR_BLOCK | |
| 253 | HR_NOHOSTRESP | INIT_NOINIT | NOOPENDRAIN, &mmc_base->con); |
| 254 | |
| 255 | dsor = 240; |
| 256 | mmc_reg_out(&mmc_base->sysctl, (ICE_MASK | DTO_MASK | CEN_MASK), |
| 257 | (ICE_STOP | DTO_15THDTO | CEN_DISABLE)); |
| 258 | mmc_reg_out(&mmc_base->sysctl, ICE_MASK | CLKD_MASK, |
| 259 | (dsor << CLKD_OFFSET) | ICE_OSCILLATE); |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 260 | start = get_timer(0); |
| 261 | while ((readl(&mmc_base->sysctl) & ICS_MASK) == ICS_NOTREADY) { |
| 262 | if (get_timer(0) - start > MAX_RETRY_MS) { |
| 263 | printf("%s: timedout waiting for ics!\n", __func__); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 264 | return -ETIMEDOUT; |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 265 | } |
| 266 | } |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 267 | writel(readl(&mmc_base->sysctl) | CEN_ENABLE, &mmc_base->sysctl); |
| 268 | |
| 269 | writel(readl(&mmc_base->hctl) | SDBP_PWRON, &mmc_base->hctl); |
| 270 | |
| 271 | writel(IE_BADA | IE_CERR | IE_DEB | IE_DCRC | IE_DTO | IE_CIE | |
| 272 | IE_CEB | IE_CCRC | IE_CTO | IE_BRR | IE_BWR | IE_TC | IE_CC, |
| 273 | &mmc_base->ie); |
| 274 | |
| 275 | mmc_init_stream(mmc_base); |
| 276 | |
| 277 | return 0; |
| 278 | } |
| 279 | |
Grazvydas Ignotas | 25c719e | 2012-03-19 12:12:06 +0000 | [diff] [blame] | 280 | /* |
| 281 | * MMC controller internal finite state machine reset |
| 282 | * |
| 283 | * Used to reset command or data internal state machines, using respectively |
| 284 | * SRC or SRD bit of SYSCTL register |
| 285 | */ |
| 286 | static void mmc_reset_controller_fsm(struct hsmmc *mmc_base, u32 bit) |
| 287 | { |
| 288 | ulong start; |
| 289 | |
| 290 | mmc_reg_out(&mmc_base->sysctl, bit, bit); |
| 291 | |
Oleksandr Tyshchenko | 61a6cc2 | 2013-08-06 13:44:16 +0300 | [diff] [blame] | 292 | /* |
| 293 | * CMD(DAT) lines reset procedures are slightly different |
| 294 | * for OMAP3 and OMAP4(AM335x,OMAP5,DRA7xx). |
| 295 | * According to OMAP3 TRM: |
| 296 | * Set SRC(SRD) bit in MMCHS_SYSCTL register to 0x1 and wait until it |
| 297 | * returns to 0x0. |
| 298 | * According to OMAP4(AM335x,OMAP5,DRA7xx) TRMs, CMD(DATA) lines reset |
| 299 | * procedure steps must be as follows: |
| 300 | * 1. Initiate CMD(DAT) line reset by writing 0x1 to SRC(SRD) bit in |
| 301 | * MMCHS_SYSCTL register (SD_SYSCTL for AM335x). |
| 302 | * 2. Poll the SRC(SRD) bit until it is set to 0x1. |
| 303 | * 3. Wait until the SRC (SRD) bit returns to 0x0 |
| 304 | * (reset procedure is completed). |
| 305 | */ |
| 306 | #if defined(CONFIG_OMAP44XX) || defined(CONFIG_OMAP54XX) || \ |
Nikita Kiryanov | dce55b9 | 2015-07-30 23:56:20 +0300 | [diff] [blame] | 307 | defined(CONFIG_AM33XX) || defined(CONFIG_AM43XX) |
Oleksandr Tyshchenko | 61a6cc2 | 2013-08-06 13:44:16 +0300 | [diff] [blame] | 308 | if (!(readl(&mmc_base->sysctl) & bit)) { |
| 309 | start = get_timer(0); |
| 310 | while (!(readl(&mmc_base->sysctl) & bit)) { |
| 311 | if (get_timer(0) - start > MAX_RETRY_MS) |
| 312 | return; |
| 313 | } |
| 314 | } |
| 315 | #endif |
Grazvydas Ignotas | 25c719e | 2012-03-19 12:12:06 +0000 | [diff] [blame] | 316 | start = get_timer(0); |
| 317 | while ((readl(&mmc_base->sysctl) & bit) != 0) { |
| 318 | if (get_timer(0) - start > MAX_RETRY_MS) { |
| 319 | printf("%s: timedout waiting for sysctl %x to clear\n", |
| 320 | __func__, bit); |
| 321 | return; |
| 322 | } |
| 323 | } |
| 324 | } |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 325 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 326 | static int omap_hsmmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 327 | struct mmc_data *data) |
| 328 | { |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 329 | struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc); |
Jean-Jacques Hiblot | b5511d6 | 2017-04-14 19:50:02 +0200 | [diff] [blame] | 330 | #else |
| 331 | static int omap_hsmmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd, |
| 332 | struct mmc_data *data) |
| 333 | { |
| 334 | struct omap_hsmmc_data *priv = dev_get_priv(dev); |
| 335 | #endif |
Nikita Kiryanov | cc22b0c | 2012-12-03 02:19:43 +0000 | [diff] [blame] | 336 | struct hsmmc *mmc_base; |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 337 | unsigned int flags, mmc_stat; |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 338 | ulong start; |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 339 | |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 340 | mmc_base = priv->base_addr; |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 341 | start = get_timer(0); |
Tom Rini | a7778f8 | 2012-01-30 11:22:25 +0000 | [diff] [blame] | 342 | while ((readl(&mmc_base->pstate) & (DATI_MASK | CMDI_MASK)) != 0) { |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 343 | if (get_timer(0) - start > MAX_RETRY_MS) { |
Tom Rini | a7778f8 | 2012-01-30 11:22:25 +0000 | [diff] [blame] | 344 | printf("%s: timedout waiting on cmd inhibit to clear\n", |
| 345 | __func__); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 346 | return -ETIMEDOUT; |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 347 | } |
| 348 | } |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 349 | writel(0xFFFFFFFF, &mmc_base->stat); |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 350 | start = get_timer(0); |
| 351 | while (readl(&mmc_base->stat)) { |
| 352 | if (get_timer(0) - start > MAX_RETRY_MS) { |
Grazvydas Ignotas | 15ceb1d | 2012-03-19 12:11:43 +0000 | [diff] [blame] | 353 | printf("%s: timedout waiting for STAT (%x) to clear\n", |
| 354 | __func__, readl(&mmc_base->stat)); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 355 | return -ETIMEDOUT; |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 356 | } |
| 357 | } |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 358 | /* |
| 359 | * CMDREG |
| 360 | * CMDIDX[13:8] : Command index |
| 361 | * DATAPRNT[5] : Data Present Select |
| 362 | * ENCMDIDX[4] : Command Index Check Enable |
| 363 | * ENCMDCRC[3] : Command CRC Check Enable |
| 364 | * RSPTYP[1:0] |
| 365 | * 00 = No Response |
| 366 | * 01 = Length 136 |
| 367 | * 10 = Length 48 |
| 368 | * 11 = Length 48 Check busy after response |
| 369 | */ |
| 370 | /* Delay added before checking the status of frq change |
| 371 | * retry not supported by mmc.c(core file) |
| 372 | */ |
| 373 | if (cmd->cmdidx == SD_CMD_APP_SEND_SCR) |
| 374 | udelay(50000); /* wait 50 ms */ |
| 375 | |
| 376 | if (!(cmd->resp_type & MMC_RSP_PRESENT)) |
| 377 | flags = 0; |
| 378 | else if (cmd->resp_type & MMC_RSP_136) |
| 379 | flags = RSP_TYPE_LGHT136 | CICE_NOCHECK; |
| 380 | else if (cmd->resp_type & MMC_RSP_BUSY) |
| 381 | flags = RSP_TYPE_LGHT48B; |
| 382 | else |
| 383 | flags = RSP_TYPE_LGHT48; |
| 384 | |
| 385 | /* enable default flags */ |
| 386 | flags = flags | (CMD_TYPE_NORMAL | CICE_NOCHECK | CCCE_NOCHECK | |
| 387 | MSBS_SGLEBLK | ACEN_DISABLE | BCE_DISABLE | DE_DISABLE); |
| 388 | |
| 389 | if (cmd->resp_type & MMC_RSP_CRC) |
| 390 | flags |= CCCE_CHECK; |
| 391 | if (cmd->resp_type & MMC_RSP_OPCODE) |
| 392 | flags |= CICE_CHECK; |
| 393 | |
| 394 | if (data) { |
| 395 | if ((cmd->cmdidx == MMC_CMD_READ_MULTIPLE_BLOCK) || |
| 396 | (cmd->cmdidx == MMC_CMD_WRITE_MULTIPLE_BLOCK)) { |
| 397 | flags |= (MSBS_MULTIBLK | BCE_ENABLE); |
| 398 | data->blocksize = 512; |
| 399 | writel(data->blocksize | (data->blocks << 16), |
| 400 | &mmc_base->blk); |
| 401 | } else |
| 402 | writel(data->blocksize | NBLK_STPCNT, &mmc_base->blk); |
| 403 | |
| 404 | if (data->flags & MMC_DATA_READ) |
| 405 | flags |= (DP_DATA | DDIR_READ); |
| 406 | else |
| 407 | flags |= (DP_DATA | DDIR_WRITE); |
| 408 | } |
| 409 | |
| 410 | writel(cmd->cmdarg, &mmc_base->arg); |
Lubomir Popov | 152ba36 | 2013-08-14 18:59:18 +0300 | [diff] [blame] | 411 | udelay(20); /* To fix "No status update" error on eMMC */ |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 412 | writel((cmd->cmdidx << 24) | flags, &mmc_base->cmd); |
| 413 | |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 414 | start = get_timer(0); |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 415 | do { |
| 416 | mmc_stat = readl(&mmc_base->stat); |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 417 | if (get_timer(0) - start > MAX_RETRY_MS) { |
| 418 | printf("%s : timeout: No status update\n", __func__); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 419 | return -ETIMEDOUT; |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 420 | } |
| 421 | } while (!mmc_stat); |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 422 | |
Grazvydas Ignotas | 25c719e | 2012-03-19 12:12:06 +0000 | [diff] [blame] | 423 | if ((mmc_stat & IE_CTO) != 0) { |
| 424 | mmc_reset_controller_fsm(mmc_base, SYSCTL_SRC); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 425 | return -ETIMEDOUT; |
Grazvydas Ignotas | 25c719e | 2012-03-19 12:12:06 +0000 | [diff] [blame] | 426 | } else if ((mmc_stat & ERRI_MASK) != 0) |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 427 | return -1; |
| 428 | |
| 429 | if (mmc_stat & CC_MASK) { |
| 430 | writel(CC_MASK, &mmc_base->stat); |
| 431 | if (cmd->resp_type & MMC_RSP_PRESENT) { |
| 432 | if (cmd->resp_type & MMC_RSP_136) { |
| 433 | /* response type 2 */ |
| 434 | cmd->response[3] = readl(&mmc_base->rsp10); |
| 435 | cmd->response[2] = readl(&mmc_base->rsp32); |
| 436 | cmd->response[1] = readl(&mmc_base->rsp54); |
| 437 | cmd->response[0] = readl(&mmc_base->rsp76); |
| 438 | } else |
| 439 | /* response types 1, 1b, 3, 4, 5, 6 */ |
| 440 | cmd->response[0] = readl(&mmc_base->rsp10); |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | if (data && (data->flags & MMC_DATA_READ)) { |
| 445 | mmc_read_data(mmc_base, data->dest, |
| 446 | data->blocksize * data->blocks); |
| 447 | } else if (data && (data->flags & MMC_DATA_WRITE)) { |
| 448 | mmc_write_data(mmc_base, data->src, |
| 449 | data->blocksize * data->blocks); |
| 450 | } |
| 451 | return 0; |
| 452 | } |
| 453 | |
Sricharan | 933efe6 | 2011-11-15 09:49:53 -0500 | [diff] [blame] | 454 | static int mmc_read_data(struct hsmmc *mmc_base, char *buf, unsigned int size) |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 455 | { |
| 456 | unsigned int *output_buf = (unsigned int *)buf; |
| 457 | unsigned int mmc_stat; |
| 458 | unsigned int count; |
| 459 | |
| 460 | /* |
| 461 | * Start Polled Read |
| 462 | */ |
| 463 | count = (size > MMCSD_SECTOR_SIZE) ? MMCSD_SECTOR_SIZE : size; |
| 464 | count /= 4; |
| 465 | |
| 466 | while (size) { |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 467 | ulong start = get_timer(0); |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 468 | do { |
| 469 | mmc_stat = readl(&mmc_base->stat); |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 470 | if (get_timer(0) - start > MAX_RETRY_MS) { |
| 471 | printf("%s: timedout waiting for status!\n", |
| 472 | __func__); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 473 | return -ETIMEDOUT; |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 474 | } |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 475 | } while (mmc_stat == 0); |
| 476 | |
Grazvydas Ignotas | 25c719e | 2012-03-19 12:12:06 +0000 | [diff] [blame] | 477 | if ((mmc_stat & (IE_DTO | IE_DCRC | IE_DEB)) != 0) |
| 478 | mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD); |
| 479 | |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 480 | if ((mmc_stat & ERRI_MASK) != 0) |
| 481 | return 1; |
| 482 | |
| 483 | if (mmc_stat & BRR_MASK) { |
| 484 | unsigned int k; |
| 485 | |
| 486 | writel(readl(&mmc_base->stat) | BRR_MASK, |
| 487 | &mmc_base->stat); |
| 488 | for (k = 0; k < count; k++) { |
| 489 | *output_buf = readl(&mmc_base->data); |
| 490 | output_buf++; |
| 491 | } |
| 492 | size -= (count*4); |
| 493 | } |
| 494 | |
| 495 | if (mmc_stat & BWR_MASK) |
| 496 | writel(readl(&mmc_base->stat) | BWR_MASK, |
| 497 | &mmc_base->stat); |
| 498 | |
| 499 | if (mmc_stat & TC_MASK) { |
| 500 | writel(readl(&mmc_base->stat) | TC_MASK, |
| 501 | &mmc_base->stat); |
| 502 | break; |
| 503 | } |
| 504 | } |
| 505 | return 0; |
| 506 | } |
| 507 | |
Sricharan | 933efe6 | 2011-11-15 09:49:53 -0500 | [diff] [blame] | 508 | static int mmc_write_data(struct hsmmc *mmc_base, const char *buf, |
| 509 | unsigned int size) |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 510 | { |
| 511 | unsigned int *input_buf = (unsigned int *)buf; |
| 512 | unsigned int mmc_stat; |
| 513 | unsigned int count; |
| 514 | |
| 515 | /* |
Lubomir Popov | 152ba36 | 2013-08-14 18:59:18 +0300 | [diff] [blame] | 516 | * Start Polled Write |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 517 | */ |
| 518 | count = (size > MMCSD_SECTOR_SIZE) ? MMCSD_SECTOR_SIZE : size; |
| 519 | count /= 4; |
| 520 | |
| 521 | while (size) { |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 522 | ulong start = get_timer(0); |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 523 | do { |
| 524 | mmc_stat = readl(&mmc_base->stat); |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 525 | if (get_timer(0) - start > MAX_RETRY_MS) { |
| 526 | printf("%s: timedout waiting for status!\n", |
| 527 | __func__); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 528 | return -ETIMEDOUT; |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 529 | } |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 530 | } while (mmc_stat == 0); |
| 531 | |
Grazvydas Ignotas | 25c719e | 2012-03-19 12:12:06 +0000 | [diff] [blame] | 532 | if ((mmc_stat & (IE_DTO | IE_DCRC | IE_DEB)) != 0) |
| 533 | mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD); |
| 534 | |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 535 | if ((mmc_stat & ERRI_MASK) != 0) |
| 536 | return 1; |
| 537 | |
| 538 | if (mmc_stat & BWR_MASK) { |
| 539 | unsigned int k; |
| 540 | |
| 541 | writel(readl(&mmc_base->stat) | BWR_MASK, |
| 542 | &mmc_base->stat); |
| 543 | for (k = 0; k < count; k++) { |
| 544 | writel(*input_buf, &mmc_base->data); |
| 545 | input_buf++; |
| 546 | } |
| 547 | size -= (count*4); |
| 548 | } |
| 549 | |
| 550 | if (mmc_stat & BRR_MASK) |
| 551 | writel(readl(&mmc_base->stat) | BRR_MASK, |
| 552 | &mmc_base->stat); |
| 553 | |
| 554 | if (mmc_stat & TC_MASK) { |
| 555 | writel(readl(&mmc_base->stat) | TC_MASK, |
| 556 | &mmc_base->stat); |
| 557 | break; |
| 558 | } |
| 559 | } |
| 560 | return 0; |
| 561 | } |
| 562 | |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 563 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Jaehoon Chung | 07b0b9c | 2016-12-30 15:30:16 +0900 | [diff] [blame] | 564 | static int omap_hsmmc_set_ios(struct mmc *mmc) |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 565 | { |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 566 | struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc); |
Jean-Jacques Hiblot | b5511d6 | 2017-04-14 19:50:02 +0200 | [diff] [blame] | 567 | #else |
| 568 | static int omap_hsmmc_set_ios(struct udevice *dev) |
| 569 | { |
| 570 | struct omap_hsmmc_data *priv = dev_get_priv(dev); |
| 571 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev); |
| 572 | struct mmc *mmc = upriv->mmc; |
| 573 | #endif |
Nikita Kiryanov | cc22b0c | 2012-12-03 02:19:43 +0000 | [diff] [blame] | 574 | struct hsmmc *mmc_base; |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 575 | unsigned int dsor = 0; |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 576 | ulong start; |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 577 | |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 578 | mmc_base = priv->base_addr; |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 579 | /* configue bus width */ |
| 580 | switch (mmc->bus_width) { |
| 581 | case 8: |
| 582 | writel(readl(&mmc_base->con) | DTW_8_BITMODE, |
| 583 | &mmc_base->con); |
| 584 | break; |
| 585 | |
| 586 | case 4: |
| 587 | writel(readl(&mmc_base->con) & ~DTW_8_BITMODE, |
| 588 | &mmc_base->con); |
| 589 | writel(readl(&mmc_base->hctl) | DTW_4_BITMODE, |
| 590 | &mmc_base->hctl); |
| 591 | break; |
| 592 | |
| 593 | case 1: |
| 594 | default: |
| 595 | writel(readl(&mmc_base->con) & ~DTW_8_BITMODE, |
| 596 | &mmc_base->con); |
| 597 | writel(readl(&mmc_base->hctl) & ~DTW_4_BITMODE, |
| 598 | &mmc_base->hctl); |
| 599 | break; |
| 600 | } |
| 601 | |
| 602 | /* configure clock with 96Mhz system clock. |
| 603 | */ |
| 604 | if (mmc->clock != 0) { |
| 605 | dsor = (MMC_CLOCK_REFERENCE * 1000000 / mmc->clock); |
| 606 | if ((MMC_CLOCK_REFERENCE * 1000000) / dsor > mmc->clock) |
| 607 | dsor++; |
| 608 | } |
| 609 | |
| 610 | mmc_reg_out(&mmc_base->sysctl, (ICE_MASK | DTO_MASK | CEN_MASK), |
| 611 | (ICE_STOP | DTO_15THDTO | CEN_DISABLE)); |
| 612 | |
| 613 | mmc_reg_out(&mmc_base->sysctl, ICE_MASK | CLKD_MASK, |
| 614 | (dsor << CLKD_OFFSET) | ICE_OSCILLATE); |
| 615 | |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 616 | start = get_timer(0); |
| 617 | while ((readl(&mmc_base->sysctl) & ICS_MASK) == ICS_NOTREADY) { |
| 618 | if (get_timer(0) - start > MAX_RETRY_MS) { |
| 619 | printf("%s: timedout waiting for ics!\n", __func__); |
Jaehoon Chung | 07b0b9c | 2016-12-30 15:30:16 +0900 | [diff] [blame] | 620 | return -ETIMEDOUT; |
Nishanth Menon | eb9a28f | 2010-11-19 11:18:12 -0500 | [diff] [blame] | 621 | } |
| 622 | } |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 623 | writel(readl(&mmc_base->sysctl) | CEN_ENABLE, &mmc_base->sysctl); |
Jaehoon Chung | 07b0b9c | 2016-12-30 15:30:16 +0900 | [diff] [blame] | 624 | |
| 625 | return 0; |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 626 | } |
| 627 | |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 628 | #ifdef OMAP_HSMMC_USE_GPIO |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 629 | #if CONFIG_IS_ENABLED(DM_MMC) |
Jean-Jacques Hiblot | b5511d6 | 2017-04-14 19:50:02 +0200 | [diff] [blame] | 630 | static int omap_hsmmc_getcd(struct udevice *dev) |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 631 | { |
Jean-Jacques Hiblot | b5511d6 | 2017-04-14 19:50:02 +0200 | [diff] [blame] | 632 | struct omap_hsmmc_data *priv = dev_get_priv(dev); |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 633 | int value; |
| 634 | |
| 635 | value = dm_gpio_get_value(&priv->cd_gpio); |
| 636 | /* if no CD return as 1 */ |
| 637 | if (value < 0) |
| 638 | return 1; |
| 639 | |
| 640 | if (priv->cd_inverted) |
| 641 | return !value; |
| 642 | return value; |
| 643 | } |
| 644 | |
Jean-Jacques Hiblot | b5511d6 | 2017-04-14 19:50:02 +0200 | [diff] [blame] | 645 | static int omap_hsmmc_getwp(struct udevice *dev) |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 646 | { |
Jean-Jacques Hiblot | b5511d6 | 2017-04-14 19:50:02 +0200 | [diff] [blame] | 647 | struct omap_hsmmc_data *priv = dev_get_priv(dev); |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 648 | int value; |
| 649 | |
| 650 | value = dm_gpio_get_value(&priv->wp_gpio); |
| 651 | /* if no WP return as 0 */ |
| 652 | if (value < 0) |
| 653 | return 0; |
| 654 | return value; |
| 655 | } |
| 656 | #else |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 657 | static int omap_hsmmc_getcd(struct mmc *mmc) |
| 658 | { |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 659 | struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc); |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 660 | int cd_gpio; |
| 661 | |
| 662 | /* if no CD return as 1 */ |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 663 | cd_gpio = priv->cd_gpio; |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 664 | if (cd_gpio < 0) |
| 665 | return 1; |
| 666 | |
Igor Grinberg | 0b03a93 | 2014-11-03 11:32:23 +0200 | [diff] [blame] | 667 | /* NOTE: assumes card detect signal is active-low */ |
| 668 | return !gpio_get_value(cd_gpio); |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 669 | } |
| 670 | |
| 671 | static int omap_hsmmc_getwp(struct mmc *mmc) |
| 672 | { |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 673 | struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc); |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 674 | int wp_gpio; |
| 675 | |
| 676 | /* if no WP return as 0 */ |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 677 | wp_gpio = priv->wp_gpio; |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 678 | if (wp_gpio < 0) |
| 679 | return 0; |
| 680 | |
Igor Grinberg | 0b03a93 | 2014-11-03 11:32:23 +0200 | [diff] [blame] | 681 | /* NOTE: assumes write protect signal is active-high */ |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 682 | return gpio_get_value(wp_gpio); |
| 683 | } |
| 684 | #endif |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 685 | #endif |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 686 | |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 687 | #if CONFIG_IS_ENABLED(DM_MMC) |
Jean-Jacques Hiblot | b5511d6 | 2017-04-14 19:50:02 +0200 | [diff] [blame] | 688 | static const struct dm_mmc_ops omap_hsmmc_ops = { |
| 689 | .send_cmd = omap_hsmmc_send_cmd, |
| 690 | .set_ios = omap_hsmmc_set_ios, |
| 691 | #ifdef OMAP_HSMMC_USE_GPIO |
| 692 | .get_cd = omap_hsmmc_getcd, |
| 693 | .get_wp = omap_hsmmc_getwp, |
| 694 | #endif |
| 695 | }; |
| 696 | #else |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 697 | static const struct mmc_ops omap_hsmmc_ops = { |
| 698 | .send_cmd = omap_hsmmc_send_cmd, |
| 699 | .set_ios = omap_hsmmc_set_ios, |
| 700 | .init = omap_hsmmc_init_setup, |
| 701 | #ifdef OMAP_HSMMC_USE_GPIO |
| 702 | .getcd = omap_hsmmc_getcd, |
| 703 | .getwp = omap_hsmmc_getwp, |
| 704 | #endif |
| 705 | }; |
Jean-Jacques Hiblot | b5511d6 | 2017-04-14 19:50:02 +0200 | [diff] [blame] | 706 | #endif |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 707 | |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 708 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Nikita Kiryanov | e3913f5 | 2012-12-03 02:19:47 +0000 | [diff] [blame] | 709 | int omap_mmc_init(int dev_index, uint host_caps_mask, uint f_max, int cd_gpio, |
| 710 | int wp_gpio) |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 711 | { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 712 | struct mmc *mmc; |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 713 | struct omap_hsmmc_data *priv; |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 714 | struct mmc_config *cfg; |
| 715 | uint host_caps_val; |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 716 | |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 717 | priv = malloc(sizeof(*priv)); |
| 718 | if (priv == NULL) |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 719 | return -1; |
| 720 | |
Rob Herring | 5a20397 | 2015-03-23 17:56:59 -0500 | [diff] [blame] | 721 | host_caps_val = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS; |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 722 | |
| 723 | switch (dev_index) { |
| 724 | case 0: |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 725 | priv->base_addr = (struct hsmmc *)OMAP_HSMMC1_BASE; |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 726 | break; |
Tom Rini | 1037d58 | 2011-10-12 06:20:50 +0000 | [diff] [blame] | 727 | #ifdef OMAP_HSMMC2_BASE |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 728 | case 1: |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 729 | priv->base_addr = (struct hsmmc *)OMAP_HSMMC2_BASE; |
Lubomir Popov | 152ba36 | 2013-08-14 18:59:18 +0300 | [diff] [blame] | 730 | #if (defined(CONFIG_OMAP44XX) || defined(CONFIG_OMAP54XX) || \ |
Nishanth Menon | 3891a54 | 2016-11-29 15:22:00 +0530 | [diff] [blame] | 731 | defined(CONFIG_DRA7XX) || defined(CONFIG_AM33XX) || \ |
Roger Quadros | 3b68939 | 2015-09-19 16:26:53 +0530 | [diff] [blame] | 732 | defined(CONFIG_AM43XX) || defined(CONFIG_SOC_KEYSTONE)) && \ |
| 733 | defined(CONFIG_HSMMC2_8BIT) |
Lubomir Popov | 152ba36 | 2013-08-14 18:59:18 +0300 | [diff] [blame] | 734 | /* Enable 8-bit interface for eMMC on OMAP4/5 or DRA7XX */ |
| 735 | host_caps_val |= MMC_MODE_8BIT; |
| 736 | #endif |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 737 | break; |
Tom Rini | 1037d58 | 2011-10-12 06:20:50 +0000 | [diff] [blame] | 738 | #endif |
| 739 | #ifdef OMAP_HSMMC3_BASE |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 740 | case 2: |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 741 | priv->base_addr = (struct hsmmc *)OMAP_HSMMC3_BASE; |
Nishanth Menon | 3891a54 | 2016-11-29 15:22:00 +0530 | [diff] [blame] | 742 | #if defined(CONFIG_DRA7XX) && defined(CONFIG_HSMMC3_8BIT) |
Lubomir Popov | 152ba36 | 2013-08-14 18:59:18 +0300 | [diff] [blame] | 743 | /* Enable 8-bit interface for eMMC on DRA7XX */ |
| 744 | host_caps_val |= MMC_MODE_8BIT; |
| 745 | #endif |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 746 | break; |
Tom Rini | 1037d58 | 2011-10-12 06:20:50 +0000 | [diff] [blame] | 747 | #endif |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 748 | default: |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 749 | priv->base_addr = (struct hsmmc *)OMAP_HSMMC1_BASE; |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 750 | return 1; |
| 751 | } |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 752 | #ifdef OMAP_HSMMC_USE_GPIO |
| 753 | /* on error gpio values are set to -1, which is what we want */ |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 754 | priv->cd_gpio = omap_mmc_setup_gpio_in(cd_gpio, "mmc_cd"); |
| 755 | priv->wp_gpio = omap_mmc_setup_gpio_in(wp_gpio, "mmc_wp"); |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 756 | #endif |
Peter Korsgaard | 173ddc5 | 2013-03-21 04:00:04 +0000 | [diff] [blame] | 757 | |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 758 | cfg = &priv->cfg; |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 759 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 760 | cfg->name = "OMAP SD/MMC"; |
| 761 | cfg->ops = &omap_hsmmc_ops; |
| 762 | |
| 763 | cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195; |
| 764 | cfg->host_caps = host_caps_val & ~host_caps_mask; |
| 765 | |
| 766 | cfg->f_min = 400000; |
Jonathan Solnit | bbbc1ae | 2012-02-24 11:30:18 +0000 | [diff] [blame] | 767 | |
| 768 | if (f_max != 0) |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 769 | cfg->f_max = f_max; |
Jonathan Solnit | bbbc1ae | 2012-02-24 11:30:18 +0000 | [diff] [blame] | 770 | else { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 771 | if (cfg->host_caps & MMC_MODE_HS) { |
| 772 | if (cfg->host_caps & MMC_MODE_HS_52MHz) |
| 773 | cfg->f_max = 52000000; |
Jonathan Solnit | bbbc1ae | 2012-02-24 11:30:18 +0000 | [diff] [blame] | 774 | else |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 775 | cfg->f_max = 26000000; |
Jonathan Solnit | bbbc1ae | 2012-02-24 11:30:18 +0000 | [diff] [blame] | 776 | } else |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 777 | cfg->f_max = 20000000; |
Jonathan Solnit | bbbc1ae | 2012-02-24 11:30:18 +0000 | [diff] [blame] | 778 | } |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 779 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 780 | cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT; |
John Rigby | 8feafcc | 2011-04-18 05:50:08 +0000 | [diff] [blame] | 781 | |
John Rigby | 4ca9244 | 2011-04-19 05:48:14 +0000 | [diff] [blame] | 782 | #if defined(CONFIG_OMAP34XX) |
| 783 | /* |
| 784 | * Silicon revs 2.1 and older do not support multiblock transfers. |
| 785 | */ |
| 786 | if ((get_cpu_family() == CPU_OMAP34XX) && (get_cpu_rev() <= CPU_3XX_ES21)) |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 787 | cfg->b_max = 1; |
John Rigby | 4ca9244 | 2011-04-19 05:48:14 +0000 | [diff] [blame] | 788 | #endif |
Jean-Jacques Hiblot | ae000e2 | 2017-03-22 16:00:31 +0100 | [diff] [blame] | 789 | mmc = mmc_create(cfg, priv); |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 790 | if (mmc == NULL) |
| 791 | return -1; |
Sukumar Ghorai | de94124 | 2010-09-18 20:32:33 -0700 | [diff] [blame] | 792 | |
| 793 | return 0; |
| 794 | } |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 795 | #else |
Lokesh Vutla | 2558c04 | 2017-04-26 13:37:05 +0530 | [diff] [blame] | 796 | #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 797 | static int omap_hsmmc_ofdata_to_platdata(struct udevice *dev) |
| 798 | { |
Jean-Jacques Hiblot | 3d673ff | 2017-03-22 16:00:33 +0100 | [diff] [blame] | 799 | struct omap_hsmmc_plat *plat = dev_get_platdata(dev); |
| 800 | struct mmc_config *cfg = &plat->cfg; |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 801 | const void *fdt = gd->fdt_blob; |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 802 | int node = dev_of_offset(dev); |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 803 | int val; |
| 804 | |
Simon Glass | a821c4a | 2017-05-17 17:18:05 -0600 | [diff] [blame] | 805 | plat->base_addr = map_physmem(devfdt_get_addr(dev), |
| 806 | sizeof(struct hsmmc *), |
Jean-Jacques Hiblot | 741726a | 2017-09-21 16:51:32 +0200 | [diff] [blame^] | 807 | MAP_NOCACHE); |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 808 | |
| 809 | cfg->host_caps = MMC_MODE_HS_52MHz | MMC_MODE_HS; |
| 810 | val = fdtdec_get_int(fdt, node, "bus-width", -1); |
| 811 | if (val < 0) { |
| 812 | printf("error: bus-width property missing\n"); |
| 813 | return -ENOENT; |
| 814 | } |
| 815 | |
| 816 | switch (val) { |
| 817 | case 0x8: |
| 818 | cfg->host_caps |= MMC_MODE_8BIT; |
| 819 | case 0x4: |
| 820 | cfg->host_caps |= MMC_MODE_4BIT; |
| 821 | break; |
| 822 | default: |
| 823 | printf("error: invalid bus-width property\n"); |
| 824 | return -ENOENT; |
| 825 | } |
| 826 | |
| 827 | cfg->f_min = 400000; |
| 828 | cfg->f_max = fdtdec_get_int(fdt, node, "max-frequency", 52000000); |
| 829 | cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195; |
| 830 | cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT; |
| 831 | |
Sekhar Nori | 4de2de5 | 2016-08-10 19:24:03 +0530 | [diff] [blame] | 832 | #ifdef OMAP_HSMMC_USE_GPIO |
Lokesh Vutla | 2558c04 | 2017-04-26 13:37:05 +0530 | [diff] [blame] | 833 | plat->cd_inverted = fdtdec_get_bool(fdt, node, "cd-inverted"); |
Sekhar Nori | 4de2de5 | 2016-08-10 19:24:03 +0530 | [diff] [blame] | 834 | #endif |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 835 | |
| 836 | return 0; |
| 837 | } |
Lokesh Vutla | 2558c04 | 2017-04-26 13:37:05 +0530 | [diff] [blame] | 838 | #endif |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 839 | |
Jean-Jacques Hiblot | 17c9a1c | 2017-03-22 16:00:34 +0100 | [diff] [blame] | 840 | #ifdef CONFIG_BLK |
| 841 | |
| 842 | static int omap_hsmmc_bind(struct udevice *dev) |
| 843 | { |
| 844 | struct omap_hsmmc_plat *plat = dev_get_platdata(dev); |
| 845 | |
| 846 | return mmc_bind(dev, &plat->mmc, &plat->cfg); |
| 847 | } |
| 848 | #endif |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 849 | static int omap_hsmmc_probe(struct udevice *dev) |
| 850 | { |
Jean-Jacques Hiblot | 3d673ff | 2017-03-22 16:00:33 +0100 | [diff] [blame] | 851 | struct omap_hsmmc_plat *plat = dev_get_platdata(dev); |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 852 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev); |
| 853 | struct omap_hsmmc_data *priv = dev_get_priv(dev); |
Jean-Jacques Hiblot | 3d673ff | 2017-03-22 16:00:33 +0100 | [diff] [blame] | 854 | struct mmc_config *cfg = &plat->cfg; |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 855 | struct mmc *mmc; |
| 856 | |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 857 | cfg->name = "OMAP SD/MMC"; |
Lokesh Vutla | 2558c04 | 2017-04-26 13:37:05 +0530 | [diff] [blame] | 858 | priv->base_addr = plat->base_addr; |
| 859 | #ifdef OMAP_HSMMC_USE_GPIO |
| 860 | priv->cd_inverted = plat->cd_inverted; |
| 861 | #endif |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 862 | |
Jean-Jacques Hiblot | 17c9a1c | 2017-03-22 16:00:34 +0100 | [diff] [blame] | 863 | #ifdef CONFIG_BLK |
| 864 | mmc = &plat->mmc; |
| 865 | #else |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 866 | mmc = mmc_create(cfg, priv); |
| 867 | if (mmc == NULL) |
| 868 | return -1; |
Jean-Jacques Hiblot | 17c9a1c | 2017-03-22 16:00:34 +0100 | [diff] [blame] | 869 | #endif |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 870 | |
Lokesh Vutla | 2558c04 | 2017-04-26 13:37:05 +0530 | [diff] [blame] | 871 | #if defined(OMAP_HSMMC_USE_GPIO) && CONFIG_IS_ENABLED(OF_CONTROL) |
Mugunthan V N | 5cc6a24 | 2016-04-04 17:28:01 +0530 | [diff] [blame] | 872 | gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio, GPIOD_IS_IN); |
| 873 | gpio_request_by_name(dev, "wp-gpios", 0, &priv->wp_gpio, GPIOD_IS_IN); |
| 874 | #endif |
| 875 | |
Simon Glass | cffe5d8 | 2016-05-01 13:52:34 -0600 | [diff] [blame] | 876 | mmc->dev = dev; |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 877 | upriv->mmc = mmc; |
| 878 | |
Jean-Jacques Hiblot | b5511d6 | 2017-04-14 19:50:02 +0200 | [diff] [blame] | 879 | return omap_hsmmc_init_setup(mmc); |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 880 | } |
| 881 | |
Lokesh Vutla | 2558c04 | 2017-04-26 13:37:05 +0530 | [diff] [blame] | 882 | #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 883 | static const struct udevice_id omap_hsmmc_ids[] = { |
Jean-Jacques Hiblot | 741726a | 2017-09-21 16:51:32 +0200 | [diff] [blame^] | 884 | { .compatible = "ti,omap3-hsmmc" }, |
| 885 | { .compatible = "ti,omap4-hsmmc" }, |
| 886 | { .compatible = "ti,am33xx-hsmmc" }, |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 887 | { } |
| 888 | }; |
Lokesh Vutla | 2558c04 | 2017-04-26 13:37:05 +0530 | [diff] [blame] | 889 | #endif |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 890 | |
| 891 | U_BOOT_DRIVER(omap_hsmmc) = { |
| 892 | .name = "omap_hsmmc", |
| 893 | .id = UCLASS_MMC, |
Lokesh Vutla | 2558c04 | 2017-04-26 13:37:05 +0530 | [diff] [blame] | 894 | #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 895 | .of_match = omap_hsmmc_ids, |
| 896 | .ofdata_to_platdata = omap_hsmmc_ofdata_to_platdata, |
Lokesh Vutla | 2558c04 | 2017-04-26 13:37:05 +0530 | [diff] [blame] | 897 | .platdata_auto_alloc_size = sizeof(struct omap_hsmmc_plat), |
| 898 | #endif |
Jean-Jacques Hiblot | 17c9a1c | 2017-03-22 16:00:34 +0100 | [diff] [blame] | 899 | #ifdef CONFIG_BLK |
| 900 | .bind = omap_hsmmc_bind, |
| 901 | #endif |
Jean-Jacques Hiblot | b5511d6 | 2017-04-14 19:50:02 +0200 | [diff] [blame] | 902 | .ops = &omap_hsmmc_ops, |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 903 | .probe = omap_hsmmc_probe, |
| 904 | .priv_auto_alloc_size = sizeof(struct omap_hsmmc_data), |
Lokesh Vutla | cbcb170 | 2017-04-26 13:37:06 +0530 | [diff] [blame] | 905 | .flags = DM_FLAG_PRE_RELOC, |
Mugunthan V N | a9d6a7e | 2015-09-28 12:56:30 +0530 | [diff] [blame] | 906 | }; |
| 907 | #endif |