Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2007-2011 |
| 3 | * Allwinner Technology Co., Ltd. <www.allwinnertech.com> |
| 4 | * Aaron <leafy.myeh@allwinnertech.com> |
| 5 | * |
| 6 | * MMC driver for allwinner sunxi platform. |
| 7 | * |
| 8 | * SPDX-License-Identifier: GPL-2.0+ |
| 9 | */ |
| 10 | |
| 11 | #include <common.h> |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 12 | #include <dm.h> |
Hans de Goede | 90641f8 | 2015-04-22 17:03:17 +0200 | [diff] [blame] | 13 | #include <errno.h> |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 14 | #include <malloc.h> |
| 15 | #include <mmc.h> |
| 16 | #include <asm/io.h> |
| 17 | #include <asm/arch/clock.h> |
| 18 | #include <asm/arch/cpu.h> |
Hans de Goede | cd82113 | 2014-10-02 20:29:26 +0200 | [diff] [blame] | 19 | #include <asm/arch/gpio.h> |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 20 | #include <asm/arch/mmc.h> |
Hans de Goede | cd82113 | 2014-10-02 20:29:26 +0200 | [diff] [blame] | 21 | #include <asm-generic/gpio.h> |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 22 | |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 23 | struct sunxi_mmc_plat { |
| 24 | struct mmc_config cfg; |
| 25 | struct mmc mmc; |
| 26 | }; |
| 27 | |
Simon Glass | e3c794e | 2017-07-04 13:31:23 -0600 | [diff] [blame] | 28 | struct sunxi_mmc_priv { |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 29 | unsigned mmc_no; |
| 30 | uint32_t *mclkreg; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 31 | unsigned fatal_err; |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 32 | struct gpio_desc cd_gpio; /* Change Detect GPIO */ |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 33 | struct sunxi_mmc *reg; |
| 34 | struct mmc_config cfg; |
| 35 | }; |
| 36 | |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 37 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 38 | /* support 4 mmc hosts */ |
Simon Glass | e3c794e | 2017-07-04 13:31:23 -0600 | [diff] [blame] | 39 | struct sunxi_mmc_priv mmc_host[4]; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 40 | |
Hans de Goede | 967325f | 2014-10-31 16:55:02 +0100 | [diff] [blame] | 41 | static int sunxi_mmc_getcd_gpio(int sdc_no) |
| 42 | { |
| 43 | switch (sdc_no) { |
| 44 | case 0: return sunxi_name_to_gpio(CONFIG_MMC0_CD_PIN); |
| 45 | case 1: return sunxi_name_to_gpio(CONFIG_MMC1_CD_PIN); |
| 46 | case 2: return sunxi_name_to_gpio(CONFIG_MMC2_CD_PIN); |
| 47 | case 3: return sunxi_name_to_gpio(CONFIG_MMC3_CD_PIN); |
| 48 | } |
Hans de Goede | 90641f8 | 2015-04-22 17:03:17 +0200 | [diff] [blame] | 49 | return -EINVAL; |
Hans de Goede | 967325f | 2014-10-31 16:55:02 +0100 | [diff] [blame] | 50 | } |
| 51 | |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 52 | static int mmc_resource_init(int sdc_no) |
| 53 | { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 54 | struct sunxi_mmc_priv *priv = &mmc_host[sdc_no]; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 55 | struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; |
Hans de Goede | 967325f | 2014-10-31 16:55:02 +0100 | [diff] [blame] | 56 | int cd_pin, ret = 0; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 57 | |
| 58 | debug("init mmc %d resource\n", sdc_no); |
| 59 | |
| 60 | switch (sdc_no) { |
| 61 | case 0: |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 62 | priv->reg = (struct sunxi_mmc *)SUNXI_MMC0_BASE; |
| 63 | priv->mclkreg = &ccm->sd0_clk_cfg; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 64 | break; |
| 65 | case 1: |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 66 | priv->reg = (struct sunxi_mmc *)SUNXI_MMC1_BASE; |
| 67 | priv->mclkreg = &ccm->sd1_clk_cfg; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 68 | break; |
| 69 | case 2: |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 70 | priv->reg = (struct sunxi_mmc *)SUNXI_MMC2_BASE; |
| 71 | priv->mclkreg = &ccm->sd2_clk_cfg; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 72 | break; |
| 73 | case 3: |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 74 | priv->reg = (struct sunxi_mmc *)SUNXI_MMC3_BASE; |
| 75 | priv->mclkreg = &ccm->sd3_clk_cfg; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 76 | break; |
| 77 | default: |
| 78 | printf("Wrong mmc number %d\n", sdc_no); |
| 79 | return -1; |
| 80 | } |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 81 | priv->mmc_no = sdc_no; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 82 | |
Hans de Goede | 967325f | 2014-10-31 16:55:02 +0100 | [diff] [blame] | 83 | cd_pin = sunxi_mmc_getcd_gpio(sdc_no); |
Hans de Goede | 90641f8 | 2015-04-22 17:03:17 +0200 | [diff] [blame] | 84 | if (cd_pin >= 0) { |
Hans de Goede | 967325f | 2014-10-31 16:55:02 +0100 | [diff] [blame] | 85 | ret = gpio_request(cd_pin, "mmc_cd"); |
Hans de Goede | 1c09fa3 | 2015-05-30 16:39:10 +0200 | [diff] [blame] | 86 | if (!ret) { |
| 87 | sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP); |
Axel Lin | b0c4ae1 | 2014-12-20 11:41:25 +0800 | [diff] [blame] | 88 | ret = gpio_direction_input(cd_pin); |
Hans de Goede | 1c09fa3 | 2015-05-30 16:39:10 +0200 | [diff] [blame] | 89 | } |
Axel Lin | b0c4ae1 | 2014-12-20 11:41:25 +0800 | [diff] [blame] | 90 | } |
Hans de Goede | 967325f | 2014-10-31 16:55:02 +0100 | [diff] [blame] | 91 | |
| 92 | return ret; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 93 | } |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 94 | #endif |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 95 | |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 96 | static int mmc_set_mod_clk(struct sunxi_mmc_priv *priv, unsigned int hz) |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 97 | { |
| 98 | unsigned int pll, pll_hz, div, n, oclk_dly, sclk_dly; |
Maxime Ripard | de9b177 | 2017-08-23 12:03:41 +0200 | [diff] [blame^] | 99 | bool new_mode = false; |
| 100 | u32 val = 0; |
| 101 | |
| 102 | if (IS_ENABLED(CONFIG_MMC_SUNXI_HAS_NEW_MODE) && (priv->mmc_no == 2)) |
| 103 | new_mode = true; |
| 104 | |
| 105 | /* |
| 106 | * The MMC clock has an extra /2 post-divider when operating in the new |
| 107 | * mode. |
| 108 | */ |
| 109 | if (new_mode) |
| 110 | hz = hz * 2; |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 111 | |
| 112 | if (hz <= 24000000) { |
| 113 | pll = CCM_MMC_CTRL_OSCM24; |
| 114 | pll_hz = 24000000; |
| 115 | } else { |
Hans de Goede | daf2263 | 2015-01-14 19:05:03 +0100 | [diff] [blame] | 116 | #ifdef CONFIG_MACH_SUN9I |
| 117 | pll = CCM_MMC_CTRL_PLL_PERIPH0; |
| 118 | pll_hz = clock_get_pll4_periph0(); |
| 119 | #else |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 120 | pll = CCM_MMC_CTRL_PLL6; |
| 121 | pll_hz = clock_get_pll6(); |
Hans de Goede | daf2263 | 2015-01-14 19:05:03 +0100 | [diff] [blame] | 122 | #endif |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | div = pll_hz / hz; |
| 126 | if (pll_hz % hz) |
| 127 | div++; |
| 128 | |
| 129 | n = 0; |
| 130 | while (div > 16) { |
| 131 | n++; |
| 132 | div = (div + 1) / 2; |
| 133 | } |
| 134 | |
| 135 | if (n > 3) { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 136 | printf("mmc %u error cannot set clock to %u\n", priv->mmc_no, |
| 137 | hz); |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 138 | return -1; |
| 139 | } |
| 140 | |
| 141 | /* determine delays */ |
| 142 | if (hz <= 400000) { |
| 143 | oclk_dly = 0; |
Hans de Goede | be90974 | 2015-09-23 16:13:10 +0200 | [diff] [blame] | 144 | sclk_dly = 0; |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 145 | } else if (hz <= 25000000) { |
| 146 | oclk_dly = 0; |
| 147 | sclk_dly = 5; |
Hans de Goede | be90974 | 2015-09-23 16:13:10 +0200 | [diff] [blame] | 148 | #ifdef CONFIG_MACH_SUN9I |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 149 | } else if (hz <= 50000000) { |
Hans de Goede | be90974 | 2015-09-23 16:13:10 +0200 | [diff] [blame] | 150 | oclk_dly = 5; |
| 151 | sclk_dly = 4; |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 152 | } else { |
| 153 | /* hz > 50000000 */ |
| 154 | oclk_dly = 2; |
| 155 | sclk_dly = 4; |
Hans de Goede | be90974 | 2015-09-23 16:13:10 +0200 | [diff] [blame] | 156 | #else |
| 157 | } else if (hz <= 50000000) { |
| 158 | oclk_dly = 3; |
| 159 | sclk_dly = 4; |
| 160 | } else { |
| 161 | /* hz > 50000000 */ |
| 162 | oclk_dly = 1; |
| 163 | sclk_dly = 4; |
| 164 | #endif |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 165 | } |
| 166 | |
Maxime Ripard | de9b177 | 2017-08-23 12:03:41 +0200 | [diff] [blame^] | 167 | if (new_mode) { |
| 168 | #ifdef CONFIG_MMC_SUNXI_HAS_NEW_MODE |
| 169 | val = CCM_MMC_CTRL_MODE_SEL_NEW; |
| 170 | writel(SUNXI_MMC_NTSR_MODE_SEL_NEW, &priv->reg->ntsr); |
| 171 | #endif |
| 172 | } else { |
| 173 | val = CCM_MMC_CTRL_OCLK_DLY(oclk_dly) | |
| 174 | CCM_MMC_CTRL_SCLK_DLY(sclk_dly); |
| 175 | } |
| 176 | |
| 177 | writel(CCM_MMC_CTRL_ENABLE| pll | CCM_MMC_CTRL_N(n) | |
| 178 | CCM_MMC_CTRL_M(div) | val, priv->mclkreg); |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 179 | |
| 180 | debug("mmc %u set mod-clk req %u parent %u n %u m %u rate %u\n", |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 181 | priv->mmc_no, hz, pll_hz, 1u << n, div, pll_hz / (1u << n) / div); |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 182 | |
| 183 | return 0; |
| 184 | } |
| 185 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 186 | static int mmc_update_clk(struct sunxi_mmc_priv *priv) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 187 | { |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 188 | unsigned int cmd; |
| 189 | unsigned timeout_msecs = 2000; |
| 190 | |
| 191 | cmd = SUNXI_MMC_CMD_START | |
| 192 | SUNXI_MMC_CMD_UPCLK_ONLY | |
| 193 | SUNXI_MMC_CMD_WAIT_PRE_OVER; |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 194 | writel(cmd, &priv->reg->cmd); |
| 195 | while (readl(&priv->reg->cmd) & SUNXI_MMC_CMD_START) { |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 196 | if (!timeout_msecs--) |
| 197 | return -1; |
| 198 | udelay(1000); |
| 199 | } |
| 200 | |
| 201 | /* clock update sets various irq status bits, clear these */ |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 202 | writel(readl(&priv->reg->rint), &priv->reg->rint); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 203 | |
| 204 | return 0; |
| 205 | } |
| 206 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 207 | static int mmc_config_clock(struct sunxi_mmc_priv *priv, struct mmc *mmc) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 208 | { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 209 | unsigned rval = readl(&priv->reg->clkcr); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 210 | |
| 211 | /* Disable Clock */ |
| 212 | rval &= ~SUNXI_MMC_CLK_ENABLE; |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 213 | writel(rval, &priv->reg->clkcr); |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 214 | if (mmc_update_clk(priv)) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 215 | return -1; |
| 216 | |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 217 | /* Set mod_clk to new rate */ |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 218 | if (mmc_set_mod_clk(priv, mmc->clock)) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 219 | return -1; |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 220 | |
| 221 | /* Clear internal divider */ |
| 222 | rval &= ~SUNXI_MMC_CLK_DIVIDER_MASK; |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 223 | writel(rval, &priv->reg->clkcr); |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 224 | |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 225 | /* Re-enable Clock */ |
| 226 | rval |= SUNXI_MMC_CLK_ENABLE; |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 227 | writel(rval, &priv->reg->clkcr); |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 228 | if (mmc_update_clk(priv)) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 229 | return -1; |
| 230 | |
| 231 | return 0; |
| 232 | } |
| 233 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 234 | static int sunxi_mmc_set_ios_common(struct sunxi_mmc_priv *priv, |
| 235 | struct mmc *mmc) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 236 | { |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 237 | debug("set ios: bus_width: %x, clock: %d\n", |
| 238 | mmc->bus_width, mmc->clock); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 239 | |
| 240 | /* Change clock first */ |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 241 | if (mmc->clock && mmc_config_clock(priv, mmc) != 0) { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 242 | priv->fatal_err = 1; |
Jaehoon Chung | 07b0b9c | 2016-12-30 15:30:16 +0900 | [diff] [blame] | 243 | return -EINVAL; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | /* Change bus width */ |
| 247 | if (mmc->bus_width == 8) |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 248 | writel(0x2, &priv->reg->width); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 249 | else if (mmc->bus_width == 4) |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 250 | writel(0x1, &priv->reg->width); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 251 | else |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 252 | writel(0x0, &priv->reg->width); |
Jaehoon Chung | 07b0b9c | 2016-12-30 15:30:16 +0900 | [diff] [blame] | 253 | |
| 254 | return 0; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 255 | } |
| 256 | |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 257 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Siarhei Siamashka | 5abdb15 | 2015-02-01 00:42:14 +0200 | [diff] [blame] | 258 | static int sunxi_mmc_core_init(struct mmc *mmc) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 259 | { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 260 | struct sunxi_mmc_priv *priv = mmc->priv; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 261 | |
| 262 | /* Reset controller */ |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 263 | writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl); |
Hans de Goede | b6ae676 | 2014-06-09 11:36:55 +0200 | [diff] [blame] | 264 | udelay(1000); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 265 | |
| 266 | return 0; |
| 267 | } |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 268 | #endif |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 269 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 270 | static int mmc_trans_data_by_cpu(struct sunxi_mmc_priv *priv, struct mmc *mmc, |
| 271 | struct mmc_data *data) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 272 | { |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 273 | const int reading = !!(data->flags & MMC_DATA_READ); |
| 274 | const uint32_t status_bit = reading ? SUNXI_MMC_STATUS_FIFO_EMPTY : |
| 275 | SUNXI_MMC_STATUS_FIFO_FULL; |
| 276 | unsigned i; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 277 | unsigned *buff = (unsigned int *)(reading ? data->dest : data->src); |
Yousong Zhou | 28f69b9 | 2015-08-29 21:26:11 +0800 | [diff] [blame] | 278 | unsigned byte_cnt = data->blocksize * data->blocks; |
Tobias Doerffel | 26c0c15 | 2016-07-08 12:40:14 +0200 | [diff] [blame] | 279 | unsigned timeout_usecs = (byte_cnt >> 8) * 1000; |
| 280 | if (timeout_usecs < 2000000) |
| 281 | timeout_usecs = 2000000; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 282 | |
Hans de Goede | b6ae676 | 2014-06-09 11:36:55 +0200 | [diff] [blame] | 283 | /* Always read / write data through the CPU */ |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 284 | setbits_le32(&priv->reg->gctrl, SUNXI_MMC_GCTRL_ACCESS_BY_AHB); |
Hans de Goede | b6ae676 | 2014-06-09 11:36:55 +0200 | [diff] [blame] | 285 | |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 286 | for (i = 0; i < (byte_cnt >> 2); i++) { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 287 | while (readl(&priv->reg->status) & status_bit) { |
Tobias Doerffel | 26c0c15 | 2016-07-08 12:40:14 +0200 | [diff] [blame] | 288 | if (!timeout_usecs--) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 289 | return -1; |
Tobias Doerffel | 26c0c15 | 2016-07-08 12:40:14 +0200 | [diff] [blame] | 290 | udelay(1); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | if (reading) |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 294 | buff[i] = readl(&priv->reg->fifo); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 295 | else |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 296 | writel(buff[i], &priv->reg->fifo); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | return 0; |
| 300 | } |
| 301 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 302 | static int mmc_rint_wait(struct sunxi_mmc_priv *priv, struct mmc *mmc, |
| 303 | uint timeout_msecs, uint done_bit, const char *what) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 304 | { |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 305 | unsigned int status; |
| 306 | |
| 307 | do { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 308 | status = readl(&priv->reg->rint); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 309 | if (!timeout_msecs-- || |
| 310 | (status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT)) { |
| 311 | debug("%s timeout %x\n", what, |
| 312 | status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 313 | return -ETIMEDOUT; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 314 | } |
| 315 | udelay(1000); |
| 316 | } while (!(status & done_bit)); |
| 317 | |
| 318 | return 0; |
| 319 | } |
| 320 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 321 | static int sunxi_mmc_send_cmd_common(struct sunxi_mmc_priv *priv, |
| 322 | struct mmc *mmc, struct mmc_cmd *cmd, |
| 323 | struct mmc_data *data) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 324 | { |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 325 | unsigned int cmdval = SUNXI_MMC_CMD_START; |
| 326 | unsigned int timeout_msecs; |
| 327 | int error = 0; |
| 328 | unsigned int status = 0; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 329 | unsigned int bytecnt = 0; |
| 330 | |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 331 | if (priv->fatal_err) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 332 | return -1; |
| 333 | if (cmd->resp_type & MMC_RSP_BUSY) |
| 334 | debug("mmc cmd %d check rsp busy\n", cmd->cmdidx); |
| 335 | if (cmd->cmdidx == 12) |
| 336 | return 0; |
| 337 | |
| 338 | if (!cmd->cmdidx) |
| 339 | cmdval |= SUNXI_MMC_CMD_SEND_INIT_SEQ; |
| 340 | if (cmd->resp_type & MMC_RSP_PRESENT) |
| 341 | cmdval |= SUNXI_MMC_CMD_RESP_EXPIRE; |
| 342 | if (cmd->resp_type & MMC_RSP_136) |
| 343 | cmdval |= SUNXI_MMC_CMD_LONG_RESPONSE; |
| 344 | if (cmd->resp_type & MMC_RSP_CRC) |
| 345 | cmdval |= SUNXI_MMC_CMD_CHK_RESPONSE_CRC; |
| 346 | |
| 347 | if (data) { |
Alexander Graf | 0ea5a04 | 2016-03-29 17:29:09 +0200 | [diff] [blame] | 348 | if ((u32)(long)data->dest & 0x3) { |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 349 | error = -1; |
| 350 | goto out; |
| 351 | } |
| 352 | |
| 353 | cmdval |= SUNXI_MMC_CMD_DATA_EXPIRE|SUNXI_MMC_CMD_WAIT_PRE_OVER; |
| 354 | if (data->flags & MMC_DATA_WRITE) |
| 355 | cmdval |= SUNXI_MMC_CMD_WRITE; |
| 356 | if (data->blocks > 1) |
| 357 | cmdval |= SUNXI_MMC_CMD_AUTO_STOP; |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 358 | writel(data->blocksize, &priv->reg->blksz); |
| 359 | writel(data->blocks * data->blocksize, &priv->reg->bytecnt); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 360 | } |
| 361 | |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 362 | debug("mmc %d, cmd %d(0x%08x), arg 0x%08x\n", priv->mmc_no, |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 363 | cmd->cmdidx, cmdval | cmd->cmdidx, cmd->cmdarg); |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 364 | writel(cmd->cmdarg, &priv->reg->arg); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 365 | |
| 366 | if (!data) |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 367 | writel(cmdval | cmd->cmdidx, &priv->reg->cmd); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 368 | |
| 369 | /* |
| 370 | * transfer data and check status |
| 371 | * STATREG[2] : FIFO empty |
| 372 | * STATREG[3] : FIFO full |
| 373 | */ |
| 374 | if (data) { |
| 375 | int ret = 0; |
| 376 | |
| 377 | bytecnt = data->blocksize * data->blocks; |
| 378 | debug("trans data %d bytes\n", bytecnt); |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 379 | writel(cmdval | cmd->cmdidx, &priv->reg->cmd); |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 380 | ret = mmc_trans_data_by_cpu(priv, mmc, data); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 381 | if (ret) { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 382 | error = readl(&priv->reg->rint) & |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 383 | SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT; |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 384 | error = -ETIMEDOUT; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 385 | goto out; |
| 386 | } |
| 387 | } |
| 388 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 389 | error = mmc_rint_wait(priv, mmc, 1000, SUNXI_MMC_RINT_COMMAND_DONE, |
| 390 | "cmd"); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 391 | if (error) |
| 392 | goto out; |
| 393 | |
| 394 | if (data) { |
Hans de Goede | b6ae676 | 2014-06-09 11:36:55 +0200 | [diff] [blame] | 395 | timeout_msecs = 120; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 396 | debug("cacl timeout %x msec\n", timeout_msecs); |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 397 | error = mmc_rint_wait(priv, mmc, timeout_msecs, |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 398 | data->blocks > 1 ? |
| 399 | SUNXI_MMC_RINT_AUTO_COMMAND_DONE : |
| 400 | SUNXI_MMC_RINT_DATA_OVER, |
| 401 | "data"); |
| 402 | if (error) |
| 403 | goto out; |
| 404 | } |
| 405 | |
| 406 | if (cmd->resp_type & MMC_RSP_BUSY) { |
| 407 | timeout_msecs = 2000; |
| 408 | do { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 409 | status = readl(&priv->reg->status); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 410 | if (!timeout_msecs--) { |
| 411 | debug("busy timeout\n"); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 412 | error = -ETIMEDOUT; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 413 | goto out; |
| 414 | } |
| 415 | udelay(1000); |
| 416 | } while (status & SUNXI_MMC_STATUS_CARD_DATA_BUSY); |
| 417 | } |
| 418 | |
| 419 | if (cmd->resp_type & MMC_RSP_136) { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 420 | cmd->response[0] = readl(&priv->reg->resp3); |
| 421 | cmd->response[1] = readl(&priv->reg->resp2); |
| 422 | cmd->response[2] = readl(&priv->reg->resp1); |
| 423 | cmd->response[3] = readl(&priv->reg->resp0); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 424 | debug("mmc resp 0x%08x 0x%08x 0x%08x 0x%08x\n", |
| 425 | cmd->response[3], cmd->response[2], |
| 426 | cmd->response[1], cmd->response[0]); |
| 427 | } else { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 428 | cmd->response[0] = readl(&priv->reg->resp0); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 429 | debug("mmc resp 0x%08x\n", cmd->response[0]); |
| 430 | } |
| 431 | out: |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 432 | if (error < 0) { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 433 | writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl); |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 434 | mmc_update_clk(priv); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 435 | } |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 436 | writel(0xffffffff, &priv->reg->rint); |
| 437 | writel(readl(&priv->reg->gctrl) | SUNXI_MMC_GCTRL_FIFO_RESET, |
| 438 | &priv->reg->gctrl); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 439 | |
| 440 | return error; |
| 441 | } |
| 442 | |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 443 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 444 | static int sunxi_mmc_set_ios_legacy(struct mmc *mmc) |
| 445 | { |
| 446 | struct sunxi_mmc_priv *priv = mmc->priv; |
| 447 | |
| 448 | return sunxi_mmc_set_ios_common(priv, mmc); |
| 449 | } |
| 450 | |
| 451 | static int sunxi_mmc_send_cmd_legacy(struct mmc *mmc, struct mmc_cmd *cmd, |
| 452 | struct mmc_data *data) |
| 453 | { |
| 454 | struct sunxi_mmc_priv *priv = mmc->priv; |
| 455 | |
| 456 | return sunxi_mmc_send_cmd_common(priv, mmc, cmd, data); |
| 457 | } |
| 458 | |
| 459 | static int sunxi_mmc_getcd_legacy(struct mmc *mmc) |
Hans de Goede | cd82113 | 2014-10-02 20:29:26 +0200 | [diff] [blame] | 460 | { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 461 | struct sunxi_mmc_priv *priv = mmc->priv; |
Hans de Goede | 967325f | 2014-10-31 16:55:02 +0100 | [diff] [blame] | 462 | int cd_pin; |
Hans de Goede | cd82113 | 2014-10-02 20:29:26 +0200 | [diff] [blame] | 463 | |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 464 | cd_pin = sunxi_mmc_getcd_gpio(priv->mmc_no); |
Hans de Goede | 90641f8 | 2015-04-22 17:03:17 +0200 | [diff] [blame] | 465 | if (cd_pin < 0) |
Hans de Goede | cd82113 | 2014-10-02 20:29:26 +0200 | [diff] [blame] | 466 | return 1; |
| 467 | |
Axel Lin | b0c4ae1 | 2014-12-20 11:41:25 +0800 | [diff] [blame] | 468 | return !gpio_get_value(cd_pin); |
Hans de Goede | cd82113 | 2014-10-02 20:29:26 +0200 | [diff] [blame] | 469 | } |
| 470 | |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 471 | static const struct mmc_ops sunxi_mmc_ops = { |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 472 | .send_cmd = sunxi_mmc_send_cmd_legacy, |
| 473 | .set_ios = sunxi_mmc_set_ios_legacy, |
Siarhei Siamashka | 5abdb15 | 2015-02-01 00:42:14 +0200 | [diff] [blame] | 474 | .init = sunxi_mmc_core_init, |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 475 | .getcd = sunxi_mmc_getcd_legacy, |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 476 | }; |
| 477 | |
Hans de Goede | e79c7c8 | 2014-10-02 21:13:54 +0200 | [diff] [blame] | 478 | struct mmc *sunxi_mmc_init(int sdc_no) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 479 | { |
Simon Glass | ec73d96 | 2017-07-04 13:31:26 -0600 | [diff] [blame] | 480 | struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 481 | struct sunxi_mmc_priv *priv = &mmc_host[sdc_no]; |
| 482 | struct mmc_config *cfg = &priv->cfg; |
Simon Glass | ec73d96 | 2017-07-04 13:31:26 -0600 | [diff] [blame] | 483 | int ret; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 484 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 485 | memset(priv, '\0', sizeof(struct sunxi_mmc_priv)); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 486 | |
| 487 | cfg->name = "SUNXI SD/MMC"; |
| 488 | cfg->ops = &sunxi_mmc_ops; |
| 489 | |
| 490 | cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34; |
| 491 | cfg->host_caps = MMC_MODE_4BIT; |
Maxime Ripard | fb01318 | 2016-11-04 16:18:09 +0100 | [diff] [blame] | 492 | #if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUN8I) |
Siarhei Siamashka | d96ebc4 | 2016-03-29 17:29:10 +0200 | [diff] [blame] | 493 | if (sdc_no == 2) |
| 494 | cfg->host_caps = MMC_MODE_8BIT; |
| 495 | #endif |
Rob Herring | 5a20397 | 2015-03-23 17:56:59 -0500 | [diff] [blame] | 496 | cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 497 | cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT; |
| 498 | |
| 499 | cfg->f_min = 400000; |
| 500 | cfg->f_max = 52000000; |
| 501 | |
Hans de Goede | 967325f | 2014-10-31 16:55:02 +0100 | [diff] [blame] | 502 | if (mmc_resource_init(sdc_no) != 0) |
| 503 | return NULL; |
| 504 | |
Simon Glass | ec73d96 | 2017-07-04 13:31:26 -0600 | [diff] [blame] | 505 | /* config ahb clock */ |
| 506 | debug("init mmc %d clock and io\n", sdc_no); |
| 507 | setbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_MMC(sdc_no)); |
| 508 | |
| 509 | #ifdef CONFIG_SUNXI_GEN_SUN6I |
| 510 | /* unassert reset */ |
| 511 | setbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_RESET_OFFSET_MMC(sdc_no)); |
| 512 | #endif |
| 513 | #if defined(CONFIG_MACH_SUN9I) |
| 514 | /* sun9i has a mmc-common module, also set the gate and reset there */ |
| 515 | writel(SUNXI_MMC_COMMON_CLK_GATE | SUNXI_MMC_COMMON_RESET, |
| 516 | SUNXI_MMC_COMMON_BASE + 4 * sdc_no); |
| 517 | #endif |
| 518 | ret = mmc_set_mod_clk(priv, 24000000); |
| 519 | if (ret) |
| 520 | return NULL; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 521 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 522 | return mmc_create(cfg, mmc_host); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 523 | } |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 524 | #else |
| 525 | |
| 526 | static int sunxi_mmc_set_ios(struct udevice *dev) |
| 527 | { |
| 528 | struct sunxi_mmc_plat *plat = dev_get_platdata(dev); |
| 529 | struct sunxi_mmc_priv *priv = dev_get_priv(dev); |
| 530 | |
| 531 | return sunxi_mmc_set_ios_common(priv, &plat->mmc); |
| 532 | } |
| 533 | |
| 534 | static int sunxi_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd, |
| 535 | struct mmc_data *data) |
| 536 | { |
| 537 | struct sunxi_mmc_plat *plat = dev_get_platdata(dev); |
| 538 | struct sunxi_mmc_priv *priv = dev_get_priv(dev); |
| 539 | |
| 540 | return sunxi_mmc_send_cmd_common(priv, &plat->mmc, cmd, data); |
| 541 | } |
| 542 | |
| 543 | static int sunxi_mmc_getcd(struct udevice *dev) |
| 544 | { |
| 545 | struct sunxi_mmc_priv *priv = dev_get_priv(dev); |
| 546 | |
| 547 | if (dm_gpio_is_valid(&priv->cd_gpio)) |
| 548 | return dm_gpio_get_value(&priv->cd_gpio); |
| 549 | |
| 550 | return 1; |
| 551 | } |
| 552 | |
| 553 | static const struct dm_mmc_ops sunxi_mmc_ops = { |
| 554 | .send_cmd = sunxi_mmc_send_cmd, |
| 555 | .set_ios = sunxi_mmc_set_ios, |
| 556 | .get_cd = sunxi_mmc_getcd, |
| 557 | }; |
| 558 | |
| 559 | static int sunxi_mmc_probe(struct udevice *dev) |
| 560 | { |
| 561 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev); |
| 562 | struct sunxi_mmc_plat *plat = dev_get_platdata(dev); |
| 563 | struct sunxi_mmc_priv *priv = dev_get_priv(dev); |
| 564 | struct mmc_config *cfg = &plat->cfg; |
| 565 | struct ofnode_phandle_args args; |
| 566 | u32 *gate_reg; |
| 567 | int bus_width, ret; |
| 568 | |
| 569 | cfg->name = dev->name; |
| 570 | bus_width = dev_read_u32_default(dev, "bus-width", 1); |
| 571 | |
| 572 | cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34; |
| 573 | cfg->host_caps = 0; |
| 574 | if (bus_width == 8) |
| 575 | cfg->host_caps |= MMC_MODE_8BIT; |
| 576 | if (bus_width >= 4) |
| 577 | cfg->host_caps |= MMC_MODE_4BIT; |
| 578 | cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS; |
| 579 | cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT; |
| 580 | |
| 581 | cfg->f_min = 400000; |
| 582 | cfg->f_max = 52000000; |
| 583 | |
| 584 | priv->reg = (void *)dev_read_addr(dev); |
| 585 | |
| 586 | /* We don't have a sunxi clock driver so find the clock address here */ |
| 587 | ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0, |
| 588 | 1, &args); |
| 589 | if (ret) |
| 590 | return ret; |
| 591 | priv->mclkreg = (u32 *)ofnode_get_addr(args.node); |
| 592 | |
| 593 | ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0, |
| 594 | 0, &args); |
| 595 | if (ret) |
| 596 | return ret; |
| 597 | gate_reg = (u32 *)ofnode_get_addr(args.node); |
| 598 | setbits_le32(gate_reg, 1 << args.args[0]); |
| 599 | priv->mmc_no = args.args[0] - 8; |
| 600 | |
| 601 | ret = mmc_set_mod_clk(priv, 24000000); |
| 602 | if (ret) |
| 603 | return ret; |
| 604 | |
| 605 | /* This GPIO is optional */ |
| 606 | if (!gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio, |
| 607 | GPIOD_IS_IN)) { |
| 608 | int cd_pin = gpio_get_number(&priv->cd_gpio); |
| 609 | |
| 610 | sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP); |
| 611 | } |
| 612 | |
| 613 | upriv->mmc = &plat->mmc; |
| 614 | |
| 615 | /* Reset controller */ |
| 616 | writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl); |
| 617 | udelay(1000); |
| 618 | |
| 619 | return 0; |
| 620 | } |
| 621 | |
| 622 | static int sunxi_mmc_bind(struct udevice *dev) |
| 623 | { |
| 624 | struct sunxi_mmc_plat *plat = dev_get_platdata(dev); |
| 625 | |
| 626 | return mmc_bind(dev, &plat->mmc, &plat->cfg); |
| 627 | } |
| 628 | |
| 629 | static const struct udevice_id sunxi_mmc_ids[] = { |
| 630 | { .compatible = "allwinner,sun5i-a13-mmc" }, |
| 631 | { } |
| 632 | }; |
| 633 | |
| 634 | U_BOOT_DRIVER(sunxi_mmc_drv) = { |
| 635 | .name = "sunxi_mmc", |
| 636 | .id = UCLASS_MMC, |
| 637 | .of_match = sunxi_mmc_ids, |
| 638 | .bind = sunxi_mmc_bind, |
| 639 | .probe = sunxi_mmc_probe, |
| 640 | .ops = &sunxi_mmc_ops, |
| 641 | .platdata_auto_alloc_size = sizeof(struct sunxi_mmc_plat), |
| 642 | .priv_auto_alloc_size = sizeof(struct sunxi_mmc_priv), |
| 643 | }; |
| 644 | #endif |