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