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