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