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