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> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 13 | #include <log.h> |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 14 | #include <malloc.h> |
| 15 | #include <mmc.h> |
Andre Przywara | c57572e | 2019-01-29 15:54:13 +0000 | [diff] [blame] | 16 | #include <clk.h> |
| 17 | #include <reset.h> |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 18 | #include <asm/io.h> |
| 19 | #include <asm/arch/clock.h> |
| 20 | #include <asm/arch/cpu.h> |
Hans de Goede | cd82113 | 2014-10-02 20:29:26 +0200 | [diff] [blame] | 21 | #include <asm/arch/gpio.h> |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 22 | #include <asm/arch/mmc.h> |
Hans de Goede | cd82113 | 2014-10-02 20:29:26 +0200 | [diff] [blame] | 23 | #include <asm-generic/gpio.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 24 | #include <linux/delay.h> |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 25 | |
Andre Przywara | f85c091 | 2021-05-05 09:57:47 +0100 | [diff] [blame] | 26 | #ifndef CCM_MMC_CTRL_MODE_SEL_NEW |
| 27 | #define CCM_MMC_CTRL_MODE_SEL_NEW 0 |
| 28 | #endif |
| 29 | |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 30 | struct sunxi_mmc_plat { |
| 31 | struct mmc_config cfg; |
| 32 | struct mmc mmc; |
| 33 | }; |
| 34 | |
Simon Glass | e3c794e | 2017-07-04 13:31:23 -0600 | [diff] [blame] | 35 | struct sunxi_mmc_priv { |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 36 | unsigned mmc_no; |
| 37 | uint32_t *mclkreg; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 38 | unsigned fatal_err; |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 39 | struct gpio_desc cd_gpio; /* Change Detect GPIO */ |
Heinrich Schuchardt | 8be4e61 | 2018-02-01 23:39:19 +0100 | [diff] [blame] | 40 | int cd_inverted; /* Inverted Card Detect */ |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 41 | struct sunxi_mmc *reg; |
| 42 | struct mmc_config cfg; |
| 43 | }; |
| 44 | |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 45 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 46 | /* support 4 mmc hosts */ |
Simon Glass | e3c794e | 2017-07-04 13:31:23 -0600 | [diff] [blame] | 47 | struct sunxi_mmc_priv mmc_host[4]; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 48 | |
Hans de Goede | 967325f | 2014-10-31 16:55:02 +0100 | [diff] [blame] | 49 | static int sunxi_mmc_getcd_gpio(int sdc_no) |
| 50 | { |
| 51 | switch (sdc_no) { |
| 52 | case 0: return sunxi_name_to_gpio(CONFIG_MMC0_CD_PIN); |
| 53 | case 1: return sunxi_name_to_gpio(CONFIG_MMC1_CD_PIN); |
| 54 | case 2: return sunxi_name_to_gpio(CONFIG_MMC2_CD_PIN); |
| 55 | case 3: return sunxi_name_to_gpio(CONFIG_MMC3_CD_PIN); |
| 56 | } |
Hans de Goede | 90641f8 | 2015-04-22 17:03:17 +0200 | [diff] [blame] | 57 | return -EINVAL; |
Hans de Goede | 967325f | 2014-10-31 16:55:02 +0100 | [diff] [blame] | 58 | } |
| 59 | |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 60 | static int mmc_resource_init(int sdc_no) |
| 61 | { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 62 | struct sunxi_mmc_priv *priv = &mmc_host[sdc_no]; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 63 | 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] | 64 | int cd_pin, ret = 0; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 65 | |
| 66 | debug("init mmc %d resource\n", sdc_no); |
| 67 | |
| 68 | switch (sdc_no) { |
| 69 | case 0: |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 70 | priv->reg = (struct sunxi_mmc *)SUNXI_MMC0_BASE; |
| 71 | priv->mclkreg = &ccm->sd0_clk_cfg; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 72 | break; |
| 73 | case 1: |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 74 | priv->reg = (struct sunxi_mmc *)SUNXI_MMC1_BASE; |
| 75 | priv->mclkreg = &ccm->sd1_clk_cfg; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 76 | break; |
| 77 | case 2: |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 78 | priv->reg = (struct sunxi_mmc *)SUNXI_MMC2_BASE; |
| 79 | priv->mclkreg = &ccm->sd2_clk_cfg; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 80 | break; |
Icenowy Zheng | 42956f1 | 2018-07-21 16:20:29 +0800 | [diff] [blame] | 81 | #ifdef SUNXI_MMC3_BASE |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 82 | case 3: |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 83 | priv->reg = (struct sunxi_mmc *)SUNXI_MMC3_BASE; |
| 84 | priv->mclkreg = &ccm->sd3_clk_cfg; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 85 | break; |
Icenowy Zheng | 42956f1 | 2018-07-21 16:20:29 +0800 | [diff] [blame] | 86 | #endif |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 87 | default: |
| 88 | printf("Wrong mmc number %d\n", sdc_no); |
| 89 | return -1; |
| 90 | } |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 91 | priv->mmc_no = sdc_no; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 92 | |
Hans de Goede | 967325f | 2014-10-31 16:55:02 +0100 | [diff] [blame] | 93 | cd_pin = sunxi_mmc_getcd_gpio(sdc_no); |
Hans de Goede | 90641f8 | 2015-04-22 17:03:17 +0200 | [diff] [blame] | 94 | if (cd_pin >= 0) { |
Hans de Goede | 967325f | 2014-10-31 16:55:02 +0100 | [diff] [blame] | 95 | ret = gpio_request(cd_pin, "mmc_cd"); |
Hans de Goede | 1c09fa3 | 2015-05-30 16:39:10 +0200 | [diff] [blame] | 96 | if (!ret) { |
| 97 | sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP); |
Axel Lin | b0c4ae1 | 2014-12-20 11:41:25 +0800 | [diff] [blame] | 98 | ret = gpio_direction_input(cd_pin); |
Hans de Goede | 1c09fa3 | 2015-05-30 16:39:10 +0200 | [diff] [blame] | 99 | } |
Axel Lin | b0c4ae1 | 2014-12-20 11:41:25 +0800 | [diff] [blame] | 100 | } |
Hans de Goede | 967325f | 2014-10-31 16:55:02 +0100 | [diff] [blame] | 101 | |
| 102 | return ret; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 103 | } |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 104 | #endif |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 105 | |
Andre Przywara | b5dd39c | 2021-05-05 10:06:24 +0100 | [diff] [blame] | 106 | /* |
| 107 | * All A64 and later MMC controllers feature auto-calibration. This would |
| 108 | * normally be detected via the compatible string, but we need something |
| 109 | * which works in the SPL as well. |
| 110 | */ |
| 111 | static bool sunxi_mmc_can_calibrate(void) |
| 112 | { |
| 113 | return IS_ENABLED(CONFIG_MACH_SUN50I) || |
| 114 | IS_ENABLED(CONFIG_MACH_SUN50I_H5) || |
| 115 | IS_ENABLED(CONFIG_SUN50I_GEN_H6) || |
| 116 | IS_ENABLED(CONFIG_MACH_SUN8I_R40); |
| 117 | } |
| 118 | |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 119 | 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] | 120 | { |
| 121 | unsigned int pll, pll_hz, div, n, oclk_dly, sclk_dly; |
Andre Przywara | f85c091 | 2021-05-05 09:57:47 +0100 | [diff] [blame] | 122 | bool new_mode = IS_ENABLED(CONFIG_MMC_SUNXI_HAS_NEW_MODE); |
Maxime Ripard | de9b177 | 2017-08-23 12:03:41 +0200 | [diff] [blame] | 123 | u32 val = 0; |
| 124 | |
Vasily Khoruzhick | 0e21a2f | 2018-11-09 20:41:46 -0800 | [diff] [blame] | 125 | /* A83T support new mode only on eMMC */ |
| 126 | if (IS_ENABLED(CONFIG_MACH_SUN8I_A83T) && priv->mmc_no != 2) |
| 127 | new_mode = false; |
Maxime Ripard | de9b177 | 2017-08-23 12:03:41 +0200 | [diff] [blame] | 128 | |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 129 | if (hz <= 24000000) { |
| 130 | pll = CCM_MMC_CTRL_OSCM24; |
| 131 | pll_hz = 24000000; |
| 132 | } else { |
Hans de Goede | daf2263 | 2015-01-14 19:05:03 +0100 | [diff] [blame] | 133 | #ifdef CONFIG_MACH_SUN9I |
| 134 | pll = CCM_MMC_CTRL_PLL_PERIPH0; |
| 135 | pll_hz = clock_get_pll4_periph0(); |
| 136 | #else |
Andre Przywara | 937ee31 | 2021-05-05 09:57:47 +0100 | [diff] [blame] | 137 | /* |
| 138 | * SoCs since the A64 (H5, H6, H616) actually use the doubled |
| 139 | * rate of PLL6/PERIPH0 as an input clock, but compensate for |
| 140 | * that with a fixed post-divider of 2 in the mod clock. |
| 141 | * This cancels each other out, so for simplicity we just |
| 142 | * pretend it's always PLL6 without a post divider here. |
| 143 | */ |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 144 | pll = CCM_MMC_CTRL_PLL6; |
| 145 | pll_hz = clock_get_pll6(); |
Hans de Goede | daf2263 | 2015-01-14 19:05:03 +0100 | [diff] [blame] | 146 | #endif |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | div = pll_hz / hz; |
| 150 | if (pll_hz % hz) |
| 151 | div++; |
| 152 | |
| 153 | n = 0; |
| 154 | while (div > 16) { |
| 155 | n++; |
| 156 | div = (div + 1) / 2; |
| 157 | } |
| 158 | |
| 159 | if (n > 3) { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 160 | printf("mmc %u error cannot set clock to %u\n", priv->mmc_no, |
| 161 | hz); |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 162 | return -1; |
| 163 | } |
| 164 | |
| 165 | /* determine delays */ |
| 166 | if (hz <= 400000) { |
| 167 | oclk_dly = 0; |
Hans de Goede | be90974 | 2015-09-23 16:13:10 +0200 | [diff] [blame] | 168 | sclk_dly = 0; |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 169 | } else if (hz <= 25000000) { |
| 170 | oclk_dly = 0; |
| 171 | sclk_dly = 5; |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 172 | } else { |
Andre Przywara | f4826fb | 2020-12-18 22:02:11 +0000 | [diff] [blame] | 173 | if (IS_ENABLED(CONFIG_MACH_SUN9I)) { |
| 174 | if (hz <= 52000000) |
| 175 | oclk_dly = 5; |
| 176 | else |
| 177 | oclk_dly = 2; |
| 178 | } else { |
| 179 | if (hz <= 52000000) |
| 180 | oclk_dly = 3; |
| 181 | else |
| 182 | oclk_dly = 1; |
| 183 | } |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 184 | sclk_dly = 4; |
| 185 | } |
| 186 | |
Maxime Ripard | de9b177 | 2017-08-23 12:03:41 +0200 | [diff] [blame] | 187 | if (new_mode) { |
Andre Przywara | f85c091 | 2021-05-05 09:57:47 +0100 | [diff] [blame] | 188 | val |= CCM_MMC_CTRL_MODE_SEL_NEW; |
Chen-Yu Tsai | 8a647fc | 2017-08-31 21:57:48 +0800 | [diff] [blame] | 189 | setbits_le32(&priv->reg->ntsr, SUNXI_MMC_NTSR_MODE_SEL_NEW); |
Andre Przywara | b5dd39c | 2021-05-05 10:06:24 +0100 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | if (!sunxi_mmc_can_calibrate()) { |
Vasily Khoruzhick | 20940ef | 2018-11-05 20:24:28 -0800 | [diff] [blame] | 193 | /* |
| 194 | * Use hardcoded delay values if controller doesn't support |
| 195 | * calibration |
| 196 | */ |
Maxime Ripard | de9b177 | 2017-08-23 12:03:41 +0200 | [diff] [blame] | 197 | val = CCM_MMC_CTRL_OCLK_DLY(oclk_dly) | |
| 198 | CCM_MMC_CTRL_SCLK_DLY(sclk_dly); |
| 199 | } |
| 200 | |
| 201 | writel(CCM_MMC_CTRL_ENABLE| pll | CCM_MMC_CTRL_N(n) | |
| 202 | CCM_MMC_CTRL_M(div) | val, priv->mclkreg); |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 203 | |
| 204 | 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] | 205 | 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] | 206 | |
| 207 | return 0; |
| 208 | } |
| 209 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 210 | static int mmc_update_clk(struct sunxi_mmc_priv *priv) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 211 | { |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 212 | unsigned int cmd; |
| 213 | unsigned timeout_msecs = 2000; |
Philipp Tomsich | 5ff8e54 | 2018-03-21 12:18:58 +0100 | [diff] [blame] | 214 | unsigned long start = get_timer(0); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 215 | |
| 216 | cmd = SUNXI_MMC_CMD_START | |
| 217 | SUNXI_MMC_CMD_UPCLK_ONLY | |
| 218 | SUNXI_MMC_CMD_WAIT_PRE_OVER; |
Philipp Tomsich | 5ff8e54 | 2018-03-21 12:18:58 +0100 | [diff] [blame] | 219 | |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 220 | writel(cmd, &priv->reg->cmd); |
| 221 | while (readl(&priv->reg->cmd) & SUNXI_MMC_CMD_START) { |
Philipp Tomsich | 5ff8e54 | 2018-03-21 12:18:58 +0100 | [diff] [blame] | 222 | if (get_timer(start) > timeout_msecs) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 223 | return -1; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | /* clock update sets various irq status bits, clear these */ |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 227 | writel(readl(&priv->reg->rint), &priv->reg->rint); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 228 | |
| 229 | return 0; |
| 230 | } |
| 231 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 232 | 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] | 233 | { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 234 | unsigned rval = readl(&priv->reg->clkcr); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 235 | |
| 236 | /* Disable Clock */ |
| 237 | rval &= ~SUNXI_MMC_CLK_ENABLE; |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 238 | writel(rval, &priv->reg->clkcr); |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 239 | if (mmc_update_clk(priv)) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 240 | return -1; |
| 241 | |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 242 | /* Set mod_clk to new rate */ |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 243 | if (mmc_set_mod_clk(priv, mmc->clock)) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 244 | return -1; |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 245 | |
| 246 | /* Clear internal divider */ |
| 247 | rval &= ~SUNXI_MMC_CLK_DIVIDER_MASK; |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 248 | writel(rval, &priv->reg->clkcr); |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 249 | |
Andre Przywara | b5dd39c | 2021-05-05 10:06:24 +0100 | [diff] [blame] | 250 | #if defined(CONFIG_SUNXI_GEN_SUN6I) || defined(CONFIG_SUN50I_GEN_H6) |
Vasily Khoruzhick | 20940ef | 2018-11-05 20:24:28 -0800 | [diff] [blame] | 251 | /* A64 supports calibration of delays on MMC controller and we |
| 252 | * have to set delay of zero before starting calibration. |
| 253 | * Allwinner BSP driver sets a delay only in the case of |
| 254 | * using HS400 which is not supported by mainline U-Boot or |
| 255 | * Linux at the moment |
| 256 | */ |
Andre Przywara | b5dd39c | 2021-05-05 10:06:24 +0100 | [diff] [blame] | 257 | if (sunxi_mmc_can_calibrate()) |
| 258 | writel(SUNXI_MMC_CAL_DL_SW_EN, &priv->reg->samp_dl); |
Vasily Khoruzhick | 20940ef | 2018-11-05 20:24:28 -0800 | [diff] [blame] | 259 | #endif |
| 260 | |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 261 | /* Re-enable Clock */ |
| 262 | rval |= SUNXI_MMC_CLK_ENABLE; |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 263 | writel(rval, &priv->reg->clkcr); |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 264 | if (mmc_update_clk(priv)) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 265 | return -1; |
| 266 | |
| 267 | return 0; |
| 268 | } |
| 269 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 270 | static int sunxi_mmc_set_ios_common(struct sunxi_mmc_priv *priv, |
| 271 | struct mmc *mmc) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 272 | { |
Hans de Goede | fc3a832 | 2014-12-07 20:55:10 +0100 | [diff] [blame] | 273 | debug("set ios: bus_width: %x, clock: %d\n", |
| 274 | mmc->bus_width, mmc->clock); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 275 | |
| 276 | /* Change clock first */ |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 277 | if (mmc->clock && mmc_config_clock(priv, mmc) != 0) { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 278 | priv->fatal_err = 1; |
Jaehoon Chung | 07b0b9c | 2016-12-30 15:30:16 +0900 | [diff] [blame] | 279 | return -EINVAL; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | /* Change bus width */ |
| 283 | if (mmc->bus_width == 8) |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 284 | writel(0x2, &priv->reg->width); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 285 | else if (mmc->bus_width == 4) |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 286 | writel(0x1, &priv->reg->width); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 287 | else |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 288 | writel(0x0, &priv->reg->width); |
Jaehoon Chung | 07b0b9c | 2016-12-30 15:30:16 +0900 | [diff] [blame] | 289 | |
| 290 | return 0; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 291 | } |
| 292 | |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 293 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Siarhei Siamashka | 5abdb15 | 2015-02-01 00:42:14 +0200 | [diff] [blame] | 294 | static int sunxi_mmc_core_init(struct mmc *mmc) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 295 | { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 296 | struct sunxi_mmc_priv *priv = mmc->priv; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 297 | |
| 298 | /* Reset controller */ |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 299 | writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl); |
Hans de Goede | b6ae676 | 2014-06-09 11:36:55 +0200 | [diff] [blame] | 300 | udelay(1000); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 301 | |
| 302 | return 0; |
| 303 | } |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 304 | #endif |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 305 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 306 | static int mmc_trans_data_by_cpu(struct sunxi_mmc_priv *priv, struct mmc *mmc, |
| 307 | struct mmc_data *data) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 308 | { |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 309 | const int reading = !!(data->flags & MMC_DATA_READ); |
| 310 | const uint32_t status_bit = reading ? SUNXI_MMC_STATUS_FIFO_EMPTY : |
| 311 | SUNXI_MMC_STATUS_FIFO_FULL; |
| 312 | unsigned i; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 313 | unsigned *buff = (unsigned int *)(reading ? data->dest : data->src); |
Andre Przywara | 9faae54 | 2021-05-05 11:33:40 +0100 | [diff] [blame^] | 314 | unsigned word_cnt = (data->blocksize * data->blocks) >> 2; |
| 315 | unsigned timeout_msecs = word_cnt >> 6; |
| 316 | uint32_t status; |
Philipp Tomsich | 5ff8e54 | 2018-03-21 12:18:58 +0100 | [diff] [blame] | 317 | unsigned long start; |
| 318 | |
| 319 | if (timeout_msecs < 2000) |
| 320 | timeout_msecs = 2000; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 321 | |
Hans de Goede | b6ae676 | 2014-06-09 11:36:55 +0200 | [diff] [blame] | 322 | /* Always read / write data through the CPU */ |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 323 | setbits_le32(&priv->reg->gctrl, SUNXI_MMC_GCTRL_ACCESS_BY_AHB); |
Hans de Goede | b6ae676 | 2014-06-09 11:36:55 +0200 | [diff] [blame] | 324 | |
Philipp Tomsich | 5ff8e54 | 2018-03-21 12:18:58 +0100 | [diff] [blame] | 325 | start = get_timer(0); |
| 326 | |
Andre Przywara | 9faae54 | 2021-05-05 11:33:40 +0100 | [diff] [blame^] | 327 | for (i = 0; i < word_cnt;) { |
| 328 | unsigned int in_fifo; |
| 329 | |
| 330 | while ((status = readl(&priv->reg->status)) & status_bit) { |
Philipp Tomsich | 5ff8e54 | 2018-03-21 12:18:58 +0100 | [diff] [blame] | 331 | if (get_timer(start) > timeout_msecs) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 332 | return -1; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 333 | } |
| 334 | |
Andre Przywara | 9faae54 | 2021-05-05 11:33:40 +0100 | [diff] [blame^] | 335 | /* |
| 336 | * For writing we do not easily know the FIFO size, so have |
| 337 | * to check the FIFO status after every word written. |
| 338 | * TODO: For optimisation we could work out a minimum FIFO |
| 339 | * size across all SoCs, and use that together with the current |
| 340 | * fill level to write chunks of words. |
| 341 | */ |
| 342 | if (!reading) { |
| 343 | writel(buff[i++], &priv->reg->fifo); |
| 344 | continue; |
| 345 | } |
| 346 | |
| 347 | /* |
| 348 | * The status register holds the current FIFO level, so we |
| 349 | * can be sure to collect as many words from the FIFO |
| 350 | * register without checking the status register after every |
| 351 | * read. That saves half of the costly MMIO reads, effectively |
| 352 | * doubling the read performance. |
| 353 | */ |
| 354 | for (in_fifo = SUNXI_MMC_STATUS_FIFO_LEVEL(status); |
| 355 | in_fifo > 0; |
| 356 | in_fifo--) |
| 357 | buff[i++] = readl_relaxed(&priv->reg->fifo); |
| 358 | dmb(); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | return 0; |
| 362 | } |
| 363 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 364 | static int mmc_rint_wait(struct sunxi_mmc_priv *priv, struct mmc *mmc, |
| 365 | uint timeout_msecs, uint done_bit, const char *what) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 366 | { |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 367 | unsigned int status; |
Philipp Tomsich | 5ff8e54 | 2018-03-21 12:18:58 +0100 | [diff] [blame] | 368 | unsigned long start = get_timer(0); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 369 | |
| 370 | do { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 371 | status = readl(&priv->reg->rint); |
Philipp Tomsich | 5ff8e54 | 2018-03-21 12:18:58 +0100 | [diff] [blame] | 372 | if ((get_timer(start) > timeout_msecs) || |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 373 | (status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT)) { |
| 374 | debug("%s timeout %x\n", what, |
| 375 | status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 376 | return -ETIMEDOUT; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 377 | } |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 378 | } while (!(status & done_bit)); |
| 379 | |
| 380 | return 0; |
| 381 | } |
| 382 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 383 | static int sunxi_mmc_send_cmd_common(struct sunxi_mmc_priv *priv, |
| 384 | struct mmc *mmc, struct mmc_cmd *cmd, |
| 385 | struct mmc_data *data) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 386 | { |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 387 | unsigned int cmdval = SUNXI_MMC_CMD_START; |
| 388 | unsigned int timeout_msecs; |
| 389 | int error = 0; |
| 390 | unsigned int status = 0; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 391 | unsigned int bytecnt = 0; |
| 392 | |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 393 | if (priv->fatal_err) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 394 | return -1; |
| 395 | if (cmd->resp_type & MMC_RSP_BUSY) |
| 396 | debug("mmc cmd %d check rsp busy\n", cmd->cmdidx); |
| 397 | if (cmd->cmdidx == 12) |
| 398 | return 0; |
| 399 | |
| 400 | if (!cmd->cmdidx) |
| 401 | cmdval |= SUNXI_MMC_CMD_SEND_INIT_SEQ; |
| 402 | if (cmd->resp_type & MMC_RSP_PRESENT) |
| 403 | cmdval |= SUNXI_MMC_CMD_RESP_EXPIRE; |
| 404 | if (cmd->resp_type & MMC_RSP_136) |
| 405 | cmdval |= SUNXI_MMC_CMD_LONG_RESPONSE; |
| 406 | if (cmd->resp_type & MMC_RSP_CRC) |
| 407 | cmdval |= SUNXI_MMC_CMD_CHK_RESPONSE_CRC; |
| 408 | |
| 409 | if (data) { |
Alexander Graf | 0ea5a04 | 2016-03-29 17:29:09 +0200 | [diff] [blame] | 410 | if ((u32)(long)data->dest & 0x3) { |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 411 | error = -1; |
| 412 | goto out; |
| 413 | } |
| 414 | |
| 415 | cmdval |= SUNXI_MMC_CMD_DATA_EXPIRE|SUNXI_MMC_CMD_WAIT_PRE_OVER; |
| 416 | if (data->flags & MMC_DATA_WRITE) |
| 417 | cmdval |= SUNXI_MMC_CMD_WRITE; |
| 418 | if (data->blocks > 1) |
| 419 | cmdval |= SUNXI_MMC_CMD_AUTO_STOP; |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 420 | writel(data->blocksize, &priv->reg->blksz); |
| 421 | writel(data->blocks * data->blocksize, &priv->reg->bytecnt); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 422 | } |
| 423 | |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 424 | 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] | 425 | cmd->cmdidx, cmdval | cmd->cmdidx, cmd->cmdarg); |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 426 | writel(cmd->cmdarg, &priv->reg->arg); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 427 | |
| 428 | if (!data) |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 429 | writel(cmdval | cmd->cmdidx, &priv->reg->cmd); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 430 | |
| 431 | /* |
| 432 | * transfer data and check status |
| 433 | * STATREG[2] : FIFO empty |
| 434 | * STATREG[3] : FIFO full |
| 435 | */ |
| 436 | if (data) { |
| 437 | int ret = 0; |
| 438 | |
| 439 | bytecnt = data->blocksize * data->blocks; |
| 440 | debug("trans data %d bytes\n", bytecnt); |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 441 | writel(cmdval | cmd->cmdidx, &priv->reg->cmd); |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 442 | ret = mmc_trans_data_by_cpu(priv, mmc, data); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 443 | if (ret) { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 444 | error = readl(&priv->reg->rint) & |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 445 | SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT; |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 446 | error = -ETIMEDOUT; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 447 | goto out; |
| 448 | } |
| 449 | } |
| 450 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 451 | error = mmc_rint_wait(priv, mmc, 1000, SUNXI_MMC_RINT_COMMAND_DONE, |
| 452 | "cmd"); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 453 | if (error) |
| 454 | goto out; |
| 455 | |
| 456 | if (data) { |
Hans de Goede | b6ae676 | 2014-06-09 11:36:55 +0200 | [diff] [blame] | 457 | timeout_msecs = 120; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 458 | debug("cacl timeout %x msec\n", timeout_msecs); |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 459 | error = mmc_rint_wait(priv, mmc, timeout_msecs, |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 460 | data->blocks > 1 ? |
| 461 | SUNXI_MMC_RINT_AUTO_COMMAND_DONE : |
| 462 | SUNXI_MMC_RINT_DATA_OVER, |
| 463 | "data"); |
| 464 | if (error) |
| 465 | goto out; |
| 466 | } |
| 467 | |
| 468 | if (cmd->resp_type & MMC_RSP_BUSY) { |
Philipp Tomsich | 5ff8e54 | 2018-03-21 12:18:58 +0100 | [diff] [blame] | 469 | unsigned long start = get_timer(0); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 470 | timeout_msecs = 2000; |
Philipp Tomsich | 5ff8e54 | 2018-03-21 12:18:58 +0100 | [diff] [blame] | 471 | |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 472 | do { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 473 | status = readl(&priv->reg->status); |
Philipp Tomsich | 5ff8e54 | 2018-03-21 12:18:58 +0100 | [diff] [blame] | 474 | if (get_timer(start) > timeout_msecs) { |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 475 | debug("busy timeout\n"); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 476 | error = -ETIMEDOUT; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 477 | goto out; |
| 478 | } |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 479 | } while (status & SUNXI_MMC_STATUS_CARD_DATA_BUSY); |
| 480 | } |
| 481 | |
| 482 | if (cmd->resp_type & MMC_RSP_136) { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 483 | cmd->response[0] = readl(&priv->reg->resp3); |
| 484 | cmd->response[1] = readl(&priv->reg->resp2); |
| 485 | cmd->response[2] = readl(&priv->reg->resp1); |
| 486 | cmd->response[3] = readl(&priv->reg->resp0); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 487 | debug("mmc resp 0x%08x 0x%08x 0x%08x 0x%08x\n", |
| 488 | cmd->response[3], cmd->response[2], |
| 489 | cmd->response[1], cmd->response[0]); |
| 490 | } else { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 491 | cmd->response[0] = readl(&priv->reg->resp0); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 492 | debug("mmc resp 0x%08x\n", cmd->response[0]); |
| 493 | } |
| 494 | out: |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 495 | if (error < 0) { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 496 | writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl); |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 497 | mmc_update_clk(priv); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 498 | } |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 499 | writel(0xffffffff, &priv->reg->rint); |
| 500 | writel(readl(&priv->reg->gctrl) | SUNXI_MMC_GCTRL_FIFO_RESET, |
| 501 | &priv->reg->gctrl); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 502 | |
| 503 | return error; |
| 504 | } |
| 505 | |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 506 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 507 | static int sunxi_mmc_set_ios_legacy(struct mmc *mmc) |
| 508 | { |
| 509 | struct sunxi_mmc_priv *priv = mmc->priv; |
| 510 | |
| 511 | return sunxi_mmc_set_ios_common(priv, mmc); |
| 512 | } |
| 513 | |
| 514 | static int sunxi_mmc_send_cmd_legacy(struct mmc *mmc, struct mmc_cmd *cmd, |
| 515 | struct mmc_data *data) |
| 516 | { |
| 517 | struct sunxi_mmc_priv *priv = mmc->priv; |
| 518 | |
| 519 | return sunxi_mmc_send_cmd_common(priv, mmc, cmd, data); |
| 520 | } |
| 521 | |
| 522 | static int sunxi_mmc_getcd_legacy(struct mmc *mmc) |
Hans de Goede | cd82113 | 2014-10-02 20:29:26 +0200 | [diff] [blame] | 523 | { |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 524 | struct sunxi_mmc_priv *priv = mmc->priv; |
Hans de Goede | 967325f | 2014-10-31 16:55:02 +0100 | [diff] [blame] | 525 | int cd_pin; |
Hans de Goede | cd82113 | 2014-10-02 20:29:26 +0200 | [diff] [blame] | 526 | |
Simon Glass | 3f5af12 | 2017-07-04 13:31:24 -0600 | [diff] [blame] | 527 | cd_pin = sunxi_mmc_getcd_gpio(priv->mmc_no); |
Hans de Goede | 90641f8 | 2015-04-22 17:03:17 +0200 | [diff] [blame] | 528 | if (cd_pin < 0) |
Hans de Goede | cd82113 | 2014-10-02 20:29:26 +0200 | [diff] [blame] | 529 | return 1; |
| 530 | |
Axel Lin | b0c4ae1 | 2014-12-20 11:41:25 +0800 | [diff] [blame] | 531 | return !gpio_get_value(cd_pin); |
Hans de Goede | cd82113 | 2014-10-02 20:29:26 +0200 | [diff] [blame] | 532 | } |
| 533 | |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 534 | static const struct mmc_ops sunxi_mmc_ops = { |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 535 | .send_cmd = sunxi_mmc_send_cmd_legacy, |
| 536 | .set_ios = sunxi_mmc_set_ios_legacy, |
Siarhei Siamashka | 5abdb15 | 2015-02-01 00:42:14 +0200 | [diff] [blame] | 537 | .init = sunxi_mmc_core_init, |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 538 | .getcd = sunxi_mmc_getcd_legacy, |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 539 | }; |
| 540 | |
Hans de Goede | e79c7c8 | 2014-10-02 21:13:54 +0200 | [diff] [blame] | 541 | struct mmc *sunxi_mmc_init(int sdc_no) |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 542 | { |
Simon Glass | ec73d96 | 2017-07-04 13:31:26 -0600 | [diff] [blame] | 543 | struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 544 | struct sunxi_mmc_priv *priv = &mmc_host[sdc_no]; |
| 545 | struct mmc_config *cfg = &priv->cfg; |
Simon Glass | ec73d96 | 2017-07-04 13:31:26 -0600 | [diff] [blame] | 546 | int ret; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 547 | |
Simon Glass | 034e226 | 2017-07-04 13:31:25 -0600 | [diff] [blame] | 548 | memset(priv, '\0', sizeof(struct sunxi_mmc_priv)); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 549 | |
| 550 | cfg->name = "SUNXI SD/MMC"; |
| 551 | cfg->ops = &sunxi_mmc_ops; |
| 552 | |
| 553 | cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34; |
| 554 | cfg->host_caps = MMC_MODE_4BIT; |
Andre Przywara | f4826fb | 2020-12-18 22:02:11 +0000 | [diff] [blame] | 555 | |
| 556 | if ((IS_ENABLED(CONFIG_MACH_SUN50I) || IS_ENABLED(CONFIG_MACH_SUN8I) || |
| 557 | IS_ENABLED(CONFIG_SUN50I_GEN_H6)) && (sdc_no == 2)) |
Siarhei Siamashka | d96ebc4 | 2016-03-29 17:29:10 +0200 | [diff] [blame] | 558 | cfg->host_caps = MMC_MODE_8BIT; |
Andre Przywara | f4826fb | 2020-12-18 22:02:11 +0000 | [diff] [blame] | 559 | |
Rob Herring | 5a20397 | 2015-03-23 17:56:59 -0500 | [diff] [blame] | 560 | cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 561 | cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT; |
| 562 | |
| 563 | cfg->f_min = 400000; |
| 564 | cfg->f_max = 52000000; |
| 565 | |
Hans de Goede | 967325f | 2014-10-31 16:55:02 +0100 | [diff] [blame] | 566 | if (mmc_resource_init(sdc_no) != 0) |
| 567 | return NULL; |
| 568 | |
Simon Glass | ec73d96 | 2017-07-04 13:31:26 -0600 | [diff] [blame] | 569 | /* config ahb clock */ |
| 570 | debug("init mmc %d clock and io\n", sdc_no); |
Jernej Skrabec | aaebb90 | 2021-01-11 21:11:35 +0100 | [diff] [blame] | 571 | #if !defined(CONFIG_SUN50I_GEN_H6) |
Simon Glass | ec73d96 | 2017-07-04 13:31:26 -0600 | [diff] [blame] | 572 | setbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_MMC(sdc_no)); |
| 573 | |
| 574 | #ifdef CONFIG_SUNXI_GEN_SUN6I |
| 575 | /* unassert reset */ |
| 576 | setbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_RESET_OFFSET_MMC(sdc_no)); |
| 577 | #endif |
| 578 | #if defined(CONFIG_MACH_SUN9I) |
| 579 | /* sun9i has a mmc-common module, also set the gate and reset there */ |
| 580 | writel(SUNXI_MMC_COMMON_CLK_GATE | SUNXI_MMC_COMMON_RESET, |
| 581 | SUNXI_MMC_COMMON_BASE + 4 * sdc_no); |
| 582 | #endif |
Jernej Skrabec | aaebb90 | 2021-01-11 21:11:35 +0100 | [diff] [blame] | 583 | #else /* CONFIG_SUN50I_GEN_H6 */ |
Icenowy Zheng | 42956f1 | 2018-07-21 16:20:29 +0800 | [diff] [blame] | 584 | setbits_le32(&ccm->sd_gate_reset, 1 << sdc_no); |
| 585 | /* unassert reset */ |
| 586 | setbits_le32(&ccm->sd_gate_reset, 1 << (RESET_SHIFT + sdc_no)); |
| 587 | #endif |
Simon Glass | ec73d96 | 2017-07-04 13:31:26 -0600 | [diff] [blame] | 588 | ret = mmc_set_mod_clk(priv, 24000000); |
| 589 | if (ret) |
| 590 | return NULL; |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 591 | |
Maxime Ripard | ead3697 | 2017-08-23 13:41:33 +0200 | [diff] [blame] | 592 | return mmc_create(cfg, priv); |
Ian Campbell | e24ea55 | 2014-05-05 14:42:31 +0100 | [diff] [blame] | 593 | } |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 594 | #else |
| 595 | |
| 596 | static int sunxi_mmc_set_ios(struct udevice *dev) |
| 597 | { |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 598 | struct sunxi_mmc_plat *plat = dev_get_plat(dev); |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 599 | struct sunxi_mmc_priv *priv = dev_get_priv(dev); |
| 600 | |
| 601 | return sunxi_mmc_set_ios_common(priv, &plat->mmc); |
| 602 | } |
| 603 | |
| 604 | static int sunxi_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd, |
| 605 | struct mmc_data *data) |
| 606 | { |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 607 | struct sunxi_mmc_plat *plat = dev_get_plat(dev); |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 608 | struct sunxi_mmc_priv *priv = dev_get_priv(dev); |
| 609 | |
| 610 | return sunxi_mmc_send_cmd_common(priv, &plat->mmc, cmd, data); |
| 611 | } |
| 612 | |
| 613 | static int sunxi_mmc_getcd(struct udevice *dev) |
| 614 | { |
| 615 | struct sunxi_mmc_priv *priv = dev_get_priv(dev); |
| 616 | |
Heinrich Schuchardt | 8be4e61 | 2018-02-01 23:39:19 +0100 | [diff] [blame] | 617 | if (dm_gpio_is_valid(&priv->cd_gpio)) { |
| 618 | int cd_state = dm_gpio_get_value(&priv->cd_gpio); |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 619 | |
Heinrich Schuchardt | 8be4e61 | 2018-02-01 23:39:19 +0100 | [diff] [blame] | 620 | return cd_state ^ priv->cd_inverted; |
| 621 | } |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 622 | return 1; |
| 623 | } |
| 624 | |
| 625 | static const struct dm_mmc_ops sunxi_mmc_ops = { |
| 626 | .send_cmd = sunxi_mmc_send_cmd, |
| 627 | .set_ios = sunxi_mmc_set_ios, |
| 628 | .get_cd = sunxi_mmc_getcd, |
| 629 | }; |
| 630 | |
Andre Przywara | 0237b30 | 2021-01-11 21:11:44 +0100 | [diff] [blame] | 631 | static unsigned get_mclk_offset(void) |
| 632 | { |
| 633 | if (IS_ENABLED(CONFIG_MACH_SUN9I_A80)) |
| 634 | return 0x410; |
| 635 | |
| 636 | if (IS_ENABLED(CONFIG_SUN50I_GEN_H6)) |
| 637 | return 0x830; |
| 638 | |
| 639 | return 0x88; |
| 640 | }; |
| 641 | |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 642 | static int sunxi_mmc_probe(struct udevice *dev) |
| 643 | { |
| 644 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev); |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 645 | struct sunxi_mmc_plat *plat = dev_get_plat(dev); |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 646 | struct sunxi_mmc_priv *priv = dev_get_priv(dev); |
Andre Przywara | c57572e | 2019-01-29 15:54:13 +0000 | [diff] [blame] | 647 | struct reset_ctl_bulk reset_bulk; |
| 648 | struct clk gate_clk; |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 649 | struct mmc_config *cfg = &plat->cfg; |
| 650 | struct ofnode_phandle_args args; |
Andre Przywara | c57572e | 2019-01-29 15:54:13 +0000 | [diff] [blame] | 651 | u32 *ccu_reg; |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 652 | int bus_width, ret; |
| 653 | |
| 654 | cfg->name = dev->name; |
| 655 | bus_width = dev_read_u32_default(dev, "bus-width", 1); |
| 656 | |
| 657 | cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34; |
| 658 | cfg->host_caps = 0; |
| 659 | if (bus_width == 8) |
| 660 | cfg->host_caps |= MMC_MODE_8BIT; |
| 661 | if (bus_width >= 4) |
| 662 | cfg->host_caps |= MMC_MODE_4BIT; |
| 663 | cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS; |
| 664 | cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT; |
| 665 | |
| 666 | cfg->f_min = 400000; |
| 667 | cfg->f_max = 52000000; |
| 668 | |
Andre Przywara | ca496ba | 2021-04-29 09:31:58 +0100 | [diff] [blame] | 669 | priv->reg = dev_read_addr_ptr(dev); |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 670 | |
| 671 | /* We don't have a sunxi clock driver so find the clock address here */ |
| 672 | ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0, |
| 673 | 1, &args); |
| 674 | if (ret) |
| 675 | return ret; |
Andre Przywara | ca496ba | 2021-04-29 09:31:58 +0100 | [diff] [blame] | 676 | ccu_reg = (u32 *)(uintptr_t)ofnode_get_addr(args.node); |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 677 | |
Jagan Teki | e8f37f4 | 2019-01-09 16:58:39 +0530 | [diff] [blame] | 678 | priv->mmc_no = ((uintptr_t)priv->reg - SUNXI_MMC0_BASE) / 0x1000; |
Andre Przywara | 0237b30 | 2021-01-11 21:11:44 +0100 | [diff] [blame] | 679 | priv->mclkreg = (void *)ccu_reg + get_mclk_offset() + priv->mmc_no * 4; |
Andre Przywara | c57572e | 2019-01-29 15:54:13 +0000 | [diff] [blame] | 680 | |
| 681 | ret = clk_get_by_name(dev, "ahb", &gate_clk); |
| 682 | if (!ret) |
| 683 | clk_enable(&gate_clk); |
| 684 | |
| 685 | ret = reset_get_bulk(dev, &reset_bulk); |
| 686 | if (!ret) |
| 687 | reset_deassert_bulk(&reset_bulk); |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 688 | |
| 689 | ret = mmc_set_mod_clk(priv, 24000000); |
| 690 | if (ret) |
| 691 | return ret; |
| 692 | |
| 693 | /* This GPIO is optional */ |
Andre Przywara | 4233698 | 2019-01-19 01:30:53 +0000 | [diff] [blame] | 694 | if (!dev_read_bool(dev, "non-removable") && |
| 695 | !gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio, |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 696 | GPIOD_IS_IN)) { |
| 697 | int cd_pin = gpio_get_number(&priv->cd_gpio); |
| 698 | |
| 699 | sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP); |
| 700 | } |
| 701 | |
Heinrich Schuchardt | 8be4e61 | 2018-02-01 23:39:19 +0100 | [diff] [blame] | 702 | /* Check if card detect is inverted */ |
| 703 | priv->cd_inverted = dev_read_bool(dev, "cd-inverted"); |
| 704 | |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 705 | upriv->mmc = &plat->mmc; |
| 706 | |
| 707 | /* Reset controller */ |
| 708 | writel(SUNXI_MMC_GCTRL_RESET, &priv->reg->gctrl); |
| 709 | udelay(1000); |
| 710 | |
| 711 | return 0; |
| 712 | } |
| 713 | |
| 714 | static int sunxi_mmc_bind(struct udevice *dev) |
| 715 | { |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 716 | struct sunxi_mmc_plat *plat = dev_get_plat(dev); |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 717 | |
| 718 | return mmc_bind(dev, &plat->mmc, &plat->cfg); |
| 719 | } |
| 720 | |
| 721 | static const struct udevice_id sunxi_mmc_ids[] = { |
Andre Przywara | 0237b30 | 2021-01-11 21:11:44 +0100 | [diff] [blame] | 722 | { .compatible = "allwinner,sun4i-a10-mmc" }, |
| 723 | { .compatible = "allwinner,sun5i-a13-mmc" }, |
| 724 | { .compatible = "allwinner,sun7i-a20-mmc" }, |
| 725 | { .compatible = "allwinner,sun8i-a83t-emmc" }, |
| 726 | { .compatible = "allwinner,sun9i-a80-mmc" }, |
| 727 | { .compatible = "allwinner,sun50i-a64-mmc" }, |
| 728 | { .compatible = "allwinner,sun50i-a64-emmc" }, |
| 729 | { .compatible = "allwinner,sun50i-h6-mmc" }, |
| 730 | { .compatible = "allwinner,sun50i-h6-emmc" }, |
| 731 | { .compatible = "allwinner,sun50i-a100-mmc" }, |
| 732 | { .compatible = "allwinner,sun50i-a100-emmc" }, |
Jagan Teki | e8f37f4 | 2019-01-09 16:58:39 +0530 | [diff] [blame] | 733 | { /* sentinel */ } |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 734 | }; |
| 735 | |
| 736 | U_BOOT_DRIVER(sunxi_mmc_drv) = { |
| 737 | .name = "sunxi_mmc", |
| 738 | .id = UCLASS_MMC, |
| 739 | .of_match = sunxi_mmc_ids, |
| 740 | .bind = sunxi_mmc_bind, |
| 741 | .probe = sunxi_mmc_probe, |
| 742 | .ops = &sunxi_mmc_ops, |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 743 | .plat_auto = sizeof(struct sunxi_mmc_plat), |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 744 | .priv_auto = sizeof(struct sunxi_mmc_priv), |
Simon Glass | dd27918 | 2017-07-04 13:31:27 -0600 | [diff] [blame] | 745 | }; |
| 746 | #endif |