Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2016 Fuzhou Rockchip Electronics Co., Ltd |
| 4 | * |
| 5 | * Rockchip SD Host Controller Interface |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 9 | #include <clk.h> |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 10 | #include <dm.h> |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 11 | #include <dm/ofnode.h> |
Kever Yang | c286821 | 2017-02-13 17:38:57 +0800 | [diff] [blame] | 12 | #include <dt-structs.h> |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 13 | #include <linux/delay.h> |
Simon Glass | 61b29b8 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 14 | #include <linux/err.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 15 | #include <linux/libfdt.h> |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 16 | #include <linux/iopoll.h> |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 17 | #include <malloc.h> |
Kever Yang | c286821 | 2017-02-13 17:38:57 +0800 | [diff] [blame] | 18 | #include <mapmem.h> |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 19 | #include "mmc_private.h" |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 20 | #include <sdhci.h> |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 21 | #include <syscon.h> |
| 22 | #include <asm/arch-rockchip/clock.h> |
| 23 | #include <asm/arch-rockchip/hardware.h> |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 24 | |
Alper Nebi Yasak | c48021d | 2022-03-15 20:46:28 +0300 | [diff] [blame] | 25 | /* DWCMSHC specific Mode Select value */ |
| 26 | #define DWCMSHC_CTRL_HS400 0x7 |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 27 | /* 400KHz is max freq for card ID etc. Use that as min */ |
| 28 | #define EMMC_MIN_FREQ 400000 |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 29 | #define KHz (1000) |
| 30 | #define MHz (1000 * KHz) |
| 31 | #define SDHCI_TUNING_LOOP_COUNT 40 |
| 32 | |
| 33 | #define PHYCTRL_CALDONE_MASK 0x1 |
| 34 | #define PHYCTRL_CALDONE_SHIFT 0x6 |
| 35 | #define PHYCTRL_CALDONE_DONE 0x1 |
| 36 | #define PHYCTRL_DLLRDY_MASK 0x1 |
| 37 | #define PHYCTRL_DLLRDY_SHIFT 0x5 |
| 38 | #define PHYCTRL_DLLRDY_DONE 0x1 |
| 39 | #define PHYCTRL_FREQSEL_200M 0x0 |
| 40 | #define PHYCTRL_FREQSEL_50M 0x1 |
| 41 | #define PHYCTRL_FREQSEL_100M 0x2 |
| 42 | #define PHYCTRL_FREQSEL_150M 0x3 |
| 43 | #define PHYCTRL_DLL_LOCK_WO_TMOUT(x) \ |
| 44 | ((((x) >> PHYCTRL_DLLRDY_SHIFT) & PHYCTRL_DLLRDY_MASK) ==\ |
| 45 | PHYCTRL_DLLRDY_DONE) |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 46 | |
Alper Nebi Yasak | c35af78 | 2022-03-15 20:46:27 +0300 | [diff] [blame] | 47 | #define ARASAN_VENDOR_REGISTER 0x78 |
| 48 | #define ARASAN_VENDOR_ENHANCED_STROBE BIT(0) |
| 49 | |
Jonas Karlman | 8874c41 | 2023-04-18 16:46:35 +0000 | [diff] [blame] | 50 | /* Rockchip specific Registers */ |
| 51 | #define DWCMSHC_EMMC_EMMC_CTRL 0x52c |
Alper Nebi Yasak | c48021d | 2022-03-15 20:46:28 +0300 | [diff] [blame] | 52 | #define DWCMSHC_CARD_IS_EMMC BIT(0) |
| 53 | #define DWCMSHC_ENHANCED_STROBE BIT(8) |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 54 | #define DWCMSHC_EMMC_DLL_CTRL 0x800 |
| 55 | #define DWCMSHC_EMMC_DLL_CTRL_RESET BIT(1) |
| 56 | #define DWCMSHC_EMMC_DLL_RXCLK 0x804 |
| 57 | #define DWCMSHC_EMMC_DLL_TXCLK 0x808 |
| 58 | #define DWCMSHC_EMMC_DLL_STRBIN 0x80c |
Jonas Karlman | a3cab28 | 2023-04-18 16:46:39 +0000 | [diff] [blame] | 59 | #define DWCMSHC_EMMC_DLL_CMDOUT 0x810 |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 60 | #define DWCMSHC_EMMC_DLL_STATUS0 0x840 |
| 61 | #define DWCMSHC_EMMC_DLL_STATUS1 0x844 |
| 62 | #define DWCMSHC_EMMC_DLL_START BIT(0) |
Jonas Karlman | 8874c41 | 2023-04-18 16:46:35 +0000 | [diff] [blame] | 63 | #define DWCMSHC_EMMC_DLL_LOCKED BIT(8) |
| 64 | #define DWCMSHC_EMMC_DLL_TIMEOUT BIT(9) |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 65 | #define DWCMSHC_EMMC_DLL_START_POINT 16 |
| 66 | #define DWCMSHC_EMMC_DLL_START_DEFAULT 5 |
| 67 | #define DWCMSHC_EMMC_DLL_INC_VALUE 2 |
| 68 | #define DWCMSHC_EMMC_DLL_INC 8 |
Vasily Khoruzhick | 2321a99 | 2023-03-08 17:28:30 -0800 | [diff] [blame] | 69 | #define DWCMSHC_EMMC_DLL_BYPASS BIT(24) |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 70 | #define DWCMSHC_EMMC_DLL_DLYENA BIT(27) |
Jonas Karlman | 8874c41 | 2023-04-18 16:46:35 +0000 | [diff] [blame] | 71 | #define DLL_RXCLK_NO_INVERTER BIT(29) |
| 72 | #define DLL_RXCLK_ORI_GATE BIT(31) |
Jonas Karlman | d2cece0 | 2023-04-18 16:46:37 +0000 | [diff] [blame] | 73 | #define DLL_TXCLK_TAPNUM_DEFAULT 0x10 |
Jonas Karlman | a3cab28 | 2023-04-18 16:46:39 +0000 | [diff] [blame] | 74 | #define DLL_TXCLK_TAPNUM_90_DEGREES 0x9 |
Jonas Karlman | 8874c41 | 2023-04-18 16:46:35 +0000 | [diff] [blame] | 75 | #define DLL_TXCLK_TAPNUM_FROM_SW BIT(24) |
Jonas Karlman | a3cab28 | 2023-04-18 16:46:39 +0000 | [diff] [blame] | 76 | #define DLL_TXCLK_NO_INVERTER BIT(29) |
Jonas Karlman | d2cece0 | 2023-04-18 16:46:37 +0000 | [diff] [blame] | 77 | #define DLL_STRBIN_TAPNUM_DEFAULT 0x4 |
Alper Nebi Yasak | c48021d | 2022-03-15 20:46:28 +0300 | [diff] [blame] | 78 | #define DLL_STRBIN_TAPNUM_FROM_SW BIT(24) |
| 79 | #define DLL_STRBIN_DELAY_NUM_SEL BIT(26) |
| 80 | #define DLL_STRBIN_DELAY_NUM_OFFSET 16 |
Jonas Karlman | d2cece0 | 2023-04-18 16:46:37 +0000 | [diff] [blame] | 81 | #define DLL_STRBIN_DELAY_NUM_DEFAULT 0x10 |
Jonas Karlman | a3cab28 | 2023-04-18 16:46:39 +0000 | [diff] [blame] | 82 | #define DLL_CMDOUT_TAPNUM_90_DEGREES 0x8 |
| 83 | #define DLL_CMDOUT_TAPNUM_FROM_SW BIT(24) |
| 84 | #define DLL_CMDOUT_SRC_CLK_NEG BIT(28) |
| 85 | #define DLL_CMDOUT_EN_SRC_CLK_NEG BIT(29) |
| 86 | #define DLL_CMDOUT_BOTH_CLK_EDGE BIT(30) |
Alper Nebi Yasak | c48021d | 2022-03-15 20:46:28 +0300 | [diff] [blame] | 87 | |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 88 | #define DLL_LOCK_WO_TMOUT(x) \ |
| 89 | ((((x) & DWCMSHC_EMMC_DLL_LOCKED) == DWCMSHC_EMMC_DLL_LOCKED) && \ |
| 90 | (((x) & DWCMSHC_EMMC_DLL_TIMEOUT) == 0)) |
| 91 | #define ROCKCHIP_MAX_CLKS 3 |
| 92 | |
Jonas Karlman | a3cab28 | 2023-04-18 16:46:39 +0000 | [diff] [blame] | 93 | #define FLAG_INVERTER_FLAG_IN_RXCLK BIT(0) |
| 94 | |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 95 | struct rockchip_sdhc_plat { |
| 96 | struct mmc_config cfg; |
| 97 | struct mmc mmc; |
| 98 | }; |
| 99 | |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 100 | struct rockchip_emmc_phy { |
| 101 | u32 emmcphy_con[7]; |
| 102 | u32 reserved; |
| 103 | u32 emmcphy_status; |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 104 | }; |
| 105 | |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 106 | struct rockchip_sdhc { |
| 107 | struct sdhci_host host; |
| 108 | struct udevice *dev; |
| 109 | void *base; |
| 110 | struct rockchip_emmc_phy *phy; |
| 111 | struct clk emmc_clk; |
| 112 | }; |
| 113 | |
| 114 | struct sdhci_data { |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 115 | int (*get_phy)(struct udevice *dev); |
Alper Nebi Yasak | ee5a284 | 2022-01-29 01:42:37 +0300 | [diff] [blame] | 116 | |
| 117 | /** |
| 118 | * set_control_reg() - Set SDHCI control registers |
| 119 | * |
| 120 | * This is the set_control_reg() SDHCI operation that should be |
| 121 | * used for the hardware this driver data is associated with. |
| 122 | * Normally, this is used to set up control registers for |
| 123 | * voltage level and UHS speed mode. |
| 124 | * |
| 125 | * @host: SDHCI host structure |
| 126 | */ |
| 127 | void (*set_control_reg)(struct sdhci_host *host); |
| 128 | |
| 129 | /** |
| 130 | * set_ios_post() - Host specific hook after set_ios() calls |
| 131 | * |
| 132 | * This is the set_ios_post() SDHCI operation that should be |
| 133 | * used for the hardware this driver data is associated with. |
| 134 | * Normally, this is a hook that is called after sdhci_set_ios() |
| 135 | * that does any necessary host-specific configuration. |
| 136 | * |
| 137 | * @host: SDHCI host structure |
| 138 | * Return: 0 if successful, -ve on error |
| 139 | */ |
| 140 | int (*set_ios_post)(struct sdhci_host *host); |
Alper Nebi Yasak | c35af78 | 2022-03-15 20:46:27 +0300 | [diff] [blame] | 141 | |
Jonas Karlman | 7e74522 | 2023-04-18 16:46:29 +0000 | [diff] [blame] | 142 | void (*set_clock)(struct sdhci_host *host, u32 div); |
| 143 | int (*config_dll)(struct sdhci_host *host, u32 clock, bool enable); |
| 144 | |
Alper Nebi Yasak | c35af78 | 2022-03-15 20:46:27 +0300 | [diff] [blame] | 145 | /** |
| 146 | * set_enhanced_strobe() - Set HS400 Enhanced Strobe config |
| 147 | * |
| 148 | * This is the set_enhanced_strobe() SDHCI operation that should |
| 149 | * be used for the hardware this driver data is associated with. |
| 150 | * Normally, this is used to set any host-specific configuration |
| 151 | * necessary for HS400 ES. |
| 152 | * |
| 153 | * @host: SDHCI host structure |
| 154 | * Return: 0 if successful, -ve on error |
| 155 | */ |
| 156 | int (*set_enhanced_strobe)(struct sdhci_host *host); |
Jonas Karlman | a3cab28 | 2023-04-18 16:46:39 +0000 | [diff] [blame] | 157 | |
| 158 | u32 flags; |
| 159 | u8 hs200_txclk_tapnum; |
| 160 | u8 hs400_txclk_tapnum; |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 161 | }; |
| 162 | |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 163 | static void rk3399_emmc_phy_power_on(struct rockchip_emmc_phy *phy, u32 clock) |
| 164 | { |
| 165 | u32 caldone, dllrdy, freqsel; |
| 166 | |
| 167 | writel(RK_CLRSETBITS(7 << 4, 0), &phy->emmcphy_con[6]); |
| 168 | writel(RK_CLRSETBITS(1 << 11, 1 << 11), &phy->emmcphy_con[0]); |
| 169 | writel(RK_CLRSETBITS(0xf << 7, 6 << 7), &phy->emmcphy_con[0]); |
| 170 | |
| 171 | /* |
| 172 | * According to the user manual, calpad calibration |
| 173 | * cycle takes more than 2us without the minimal recommended |
| 174 | * value, so we may need a little margin here |
| 175 | */ |
| 176 | udelay(3); |
| 177 | writel(RK_CLRSETBITS(1, 1), &phy->emmcphy_con[6]); |
| 178 | |
| 179 | /* |
| 180 | * According to the user manual, it asks driver to |
| 181 | * wait 5us for calpad busy trimming. But it seems that |
| 182 | * 5us of caldone isn't enough for all cases. |
| 183 | */ |
| 184 | udelay(500); |
| 185 | caldone = readl(&phy->emmcphy_status); |
| 186 | caldone = (caldone >> PHYCTRL_CALDONE_SHIFT) & PHYCTRL_CALDONE_MASK; |
| 187 | if (caldone != PHYCTRL_CALDONE_DONE) { |
| 188 | printf("%s: caldone timeout.\n", __func__); |
| 189 | return; |
| 190 | } |
| 191 | |
| 192 | /* Set the frequency of the DLL operation */ |
| 193 | if (clock < 75 * MHz) |
| 194 | freqsel = PHYCTRL_FREQSEL_50M; |
| 195 | else if (clock < 125 * MHz) |
| 196 | freqsel = PHYCTRL_FREQSEL_100M; |
| 197 | else if (clock < 175 * MHz) |
| 198 | freqsel = PHYCTRL_FREQSEL_150M; |
| 199 | else |
| 200 | freqsel = PHYCTRL_FREQSEL_200M; |
| 201 | |
| 202 | /* Set the frequency of the DLL operation */ |
| 203 | writel(RK_CLRSETBITS(3 << 12, freqsel << 12), &phy->emmcphy_con[0]); |
| 204 | writel(RK_CLRSETBITS(1 << 1, 1 << 1), &phy->emmcphy_con[6]); |
| 205 | |
Yifeng Zhao | 022f552 | 2021-10-15 16:41:27 +0800 | [diff] [blame] | 206 | /* REN Enable on STRB Line for HS400 */ |
| 207 | writel(RK_CLRSETBITS(0, 1 << 9), &phy->emmcphy_con[2]); |
| 208 | |
Ariel D'Alessandro | d7db0e6 | 2022-04-12 10:31:35 -0300 | [diff] [blame] | 209 | read_poll_timeout(readl, dllrdy, PHYCTRL_DLL_LOCK_WO_TMOUT(dllrdy), 1, |
| 210 | 5000, &phy->emmcphy_status); |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | static void rk3399_emmc_phy_power_off(struct rockchip_emmc_phy *phy) |
| 214 | { |
| 215 | writel(RK_CLRSETBITS(1, 0), &phy->emmcphy_con[6]); |
| 216 | writel(RK_CLRSETBITS(1 << 1, 0), &phy->emmcphy_con[6]); |
| 217 | } |
| 218 | |
| 219 | static int rk3399_emmc_get_phy(struct udevice *dev) |
| 220 | { |
| 221 | struct rockchip_sdhc *priv = dev_get_priv(dev); |
| 222 | ofnode phy_node; |
| 223 | void *grf_base; |
| 224 | u32 grf_phy_offset, phandle; |
| 225 | |
| 226 | phandle = dev_read_u32_default(dev, "phys", 0); |
| 227 | phy_node = ofnode_get_by_phandle(phandle); |
| 228 | if (!ofnode_valid(phy_node)) { |
| 229 | debug("Not found emmc phy device\n"); |
| 230 | return -ENODEV; |
| 231 | } |
| 232 | |
| 233 | grf_base = syscon_get_first_range(ROCKCHIP_SYSCON_GRF); |
Haolin Li | fdda790 | 2022-03-22 05:58:02 -0700 | [diff] [blame] | 234 | if (IS_ERR_OR_NULL(grf_base)) { |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 235 | printf("%s Get syscon grf failed", __func__); |
| 236 | return -ENODEV; |
| 237 | } |
| 238 | grf_phy_offset = ofnode_read_u32_default(phy_node, "reg", 0); |
| 239 | |
| 240 | priv->phy = (struct rockchip_emmc_phy *)(grf_base + grf_phy_offset); |
| 241 | |
| 242 | return 0; |
| 243 | } |
| 244 | |
Alper Nebi Yasak | c35af78 | 2022-03-15 20:46:27 +0300 | [diff] [blame] | 245 | static int rk3399_sdhci_set_enhanced_strobe(struct sdhci_host *host) |
| 246 | { |
| 247 | struct mmc *mmc = host->mmc; |
| 248 | u32 vendor; |
| 249 | |
| 250 | vendor = sdhci_readl(host, ARASAN_VENDOR_REGISTER); |
| 251 | if (mmc->selected_mode == MMC_HS_400_ES) |
| 252 | vendor |= ARASAN_VENDOR_ENHANCED_STROBE; |
| 253 | else |
| 254 | vendor &= ~ARASAN_VENDOR_ENHANCED_STROBE; |
| 255 | sdhci_writel(host, vendor, ARASAN_VENDOR_REGISTER); |
| 256 | |
| 257 | return 0; |
| 258 | } |
| 259 | |
Alper Nebi Yasak | ee5a284 | 2022-01-29 01:42:37 +0300 | [diff] [blame] | 260 | static void rk3399_sdhci_set_control_reg(struct sdhci_host *host) |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 261 | { |
| 262 | struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host); |
Alper Nebi Yasak | ee5a284 | 2022-01-29 01:42:37 +0300 | [diff] [blame] | 263 | struct mmc *mmc = host->mmc; |
| 264 | uint clock = mmc->tran_speed; |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 265 | int cycle_phy = host->clock != clock && clock > EMMC_MIN_FREQ; |
| 266 | |
| 267 | if (cycle_phy) |
| 268 | rk3399_emmc_phy_power_off(priv->phy); |
| 269 | |
Alper Nebi Yasak | ee5a284 | 2022-01-29 01:42:37 +0300 | [diff] [blame] | 270 | sdhci_set_control_reg(host); |
Alper Nebi Yasak | c35af78 | 2022-03-15 20:46:27 +0300 | [diff] [blame] | 271 | |
| 272 | /* |
| 273 | * Reinitializing the device tries to set it to lower-speed modes |
| 274 | * first, which fails if the Enhanced Strobe bit is set, making |
| 275 | * the device impossible to use. Set the correct value here to |
| 276 | * let reinitialization attempts succeed. |
| 277 | */ |
| 278 | if (CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)) |
| 279 | rk3399_sdhci_set_enhanced_strobe(host); |
Alper Nebi Yasak | ee5a284 | 2022-01-29 01:42:37 +0300 | [diff] [blame] | 280 | }; |
| 281 | |
| 282 | static int rk3399_sdhci_set_ios_post(struct sdhci_host *host) |
| 283 | { |
| 284 | struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host); |
| 285 | struct mmc *mmc = host->mmc; |
| 286 | uint clock = mmc->tran_speed; |
| 287 | int cycle_phy = host->clock != clock && clock > EMMC_MIN_FREQ; |
| 288 | |
| 289 | if (!clock) |
| 290 | clock = mmc->clock; |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 291 | |
| 292 | if (cycle_phy) |
| 293 | rk3399_emmc_phy_power_on(priv->phy, clock); |
| 294 | |
| 295 | return 0; |
| 296 | } |
| 297 | |
Jonas Karlman | b8a63c8 | 2023-04-20 15:55:15 +0000 | [diff] [blame] | 298 | static void rk3568_sdhci_set_clock(struct sdhci_host *host, u32 div) |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 299 | { |
| 300 | struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host); |
Jonas Karlman | b8a63c8 | 2023-04-20 15:55:15 +0000 | [diff] [blame] | 301 | struct mmc *mmc = host->mmc; |
| 302 | ulong rate; |
| 303 | |
| 304 | rate = clk_set_rate(&priv->emmc_clk, mmc->clock); |
| 305 | if (IS_ERR_VALUE(rate)) |
| 306 | printf("%s: Set clock rate failed: %ld\n", __func__, (long)rate); |
| 307 | } |
| 308 | |
| 309 | static int rk3568_sdhci_config_dll(struct sdhci_host *host, u32 clock, bool enable) |
| 310 | { |
Jonas Karlman | a3cab28 | 2023-04-18 16:46:39 +0000 | [diff] [blame] | 311 | struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host); |
| 312 | struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(priv->dev); |
| 313 | struct mmc *mmc = host->mmc; |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 314 | int val, ret; |
Jonas Karlman | a3cab28 | 2023-04-18 16:46:39 +0000 | [diff] [blame] | 315 | u32 extra, txclk_tapnum; |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 316 | |
Jonas Karlman | b8a63c8 | 2023-04-20 15:55:15 +0000 | [diff] [blame] | 317 | if (!enable) |
| 318 | return 0; |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 319 | |
| 320 | if (clock >= 100 * MHz) { |
| 321 | /* reset DLL */ |
| 322 | sdhci_writel(host, DWCMSHC_EMMC_DLL_CTRL_RESET, DWCMSHC_EMMC_DLL_CTRL); |
| 323 | udelay(1); |
| 324 | sdhci_writel(host, 0, DWCMSHC_EMMC_DLL_CTRL); |
| 325 | |
| 326 | /* Init DLL settings */ |
| 327 | extra = DWCMSHC_EMMC_DLL_START_DEFAULT << DWCMSHC_EMMC_DLL_START_POINT | |
| 328 | DWCMSHC_EMMC_DLL_INC_VALUE << DWCMSHC_EMMC_DLL_INC | |
| 329 | DWCMSHC_EMMC_DLL_START; |
| 330 | sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_CTRL); |
| 331 | |
Ariel D'Alessandro | d7db0e6 | 2022-04-12 10:31:35 -0300 | [diff] [blame] | 332 | ret = read_poll_timeout(readl, val, DLL_LOCK_WO_TMOUT(val), 1, |
| 333 | 500, |
| 334 | host->ioaddr + DWCMSHC_EMMC_DLL_STATUS0); |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 335 | if (ret) |
| 336 | return ret; |
| 337 | |
Jonas Karlman | a3cab28 | 2023-04-18 16:46:39 +0000 | [diff] [blame] | 338 | extra = DWCMSHC_EMMC_DLL_DLYENA | DLL_RXCLK_ORI_GATE; |
| 339 | if (data->flags & FLAG_INVERTER_FLAG_IN_RXCLK) |
| 340 | extra |= DLL_RXCLK_NO_INVERTER; |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 341 | sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_RXCLK); |
| 342 | |
Jonas Karlman | a3cab28 | 2023-04-18 16:46:39 +0000 | [diff] [blame] | 343 | txclk_tapnum = data->hs200_txclk_tapnum; |
| 344 | if (mmc->selected_mode == MMC_HS_400 || |
| 345 | mmc->selected_mode == MMC_HS_400_ES) { |
| 346 | txclk_tapnum = data->hs400_txclk_tapnum; |
| 347 | |
| 348 | extra = DLL_CMDOUT_SRC_CLK_NEG | |
| 349 | DLL_CMDOUT_BOTH_CLK_EDGE | |
| 350 | DWCMSHC_EMMC_DLL_DLYENA | |
| 351 | DLL_CMDOUT_TAPNUM_90_DEGREES | |
| 352 | DLL_CMDOUT_TAPNUM_FROM_SW; |
| 353 | sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_CMDOUT); |
| 354 | } |
| 355 | |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 356 | extra = DWCMSHC_EMMC_DLL_DLYENA | |
Jonas Karlman | a3cab28 | 2023-04-18 16:46:39 +0000 | [diff] [blame] | 357 | DLL_TXCLK_TAPNUM_FROM_SW | |
| 358 | DLL_TXCLK_NO_INVERTER | |
| 359 | txclk_tapnum; |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 360 | sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_TXCLK); |
| 361 | |
| 362 | extra = DWCMSHC_EMMC_DLL_DLYENA | |
Alper Nebi Yasak | c48021d | 2022-03-15 20:46:28 +0300 | [diff] [blame] | 363 | DLL_STRBIN_TAPNUM_DEFAULT | |
| 364 | DLL_STRBIN_TAPNUM_FROM_SW; |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 365 | sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_STRBIN); |
| 366 | } else { |
Vasily Khoruzhick | 2321a99 | 2023-03-08 17:28:30 -0800 | [diff] [blame] | 367 | /* |
| 368 | * Disable DLL and reset both of sample and drive clock. |
| 369 | * The bypass bit and start bit need to be set if DLL is not locked. |
| 370 | */ |
Jonas Karlman | 8874c41 | 2023-04-18 16:46:35 +0000 | [diff] [blame] | 371 | extra = DWCMSHC_EMMC_DLL_BYPASS | DWCMSHC_EMMC_DLL_START; |
| 372 | sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_CTRL); |
Vasily Khoruzhick | 2321a99 | 2023-03-08 17:28:30 -0800 | [diff] [blame] | 373 | sdhci_writel(host, DLL_RXCLK_ORI_GATE, DWCMSHC_EMMC_DLL_RXCLK); |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 374 | sdhci_writel(host, 0, DWCMSHC_EMMC_DLL_TXCLK); |
Jonas Karlman | a3cab28 | 2023-04-18 16:46:39 +0000 | [diff] [blame] | 375 | sdhci_writel(host, 0, DWCMSHC_EMMC_DLL_CMDOUT); |
Alper Nebi Yasak | c48021d | 2022-03-15 20:46:28 +0300 | [diff] [blame] | 376 | /* |
| 377 | * Before switching to hs400es mode, the driver will enable |
| 378 | * enhanced strobe first. PHY needs to configure the parameters |
| 379 | * of enhanced strobe first. |
| 380 | */ |
| 381 | extra = DWCMSHC_EMMC_DLL_DLYENA | |
| 382 | DLL_STRBIN_DELAY_NUM_SEL | |
| 383 | DLL_STRBIN_DELAY_NUM_DEFAULT << DLL_STRBIN_DELAY_NUM_OFFSET; |
| 384 | sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_STRBIN); |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | return 0; |
| 388 | } |
| 389 | |
Alper Nebi Yasak | ee5a284 | 2022-01-29 01:42:37 +0300 | [diff] [blame] | 390 | static int rk3568_sdhci_set_ios_post(struct sdhci_host *host) |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 391 | { |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 392 | struct mmc *mmc = host->mmc; |
Jonas Karlman | 8874c41 | 2023-04-18 16:46:35 +0000 | [diff] [blame] | 393 | u32 reg; |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 394 | |
Jonas Karlman | 6de4438 | 2023-04-18 16:46:33 +0000 | [diff] [blame] | 395 | reg = sdhci_readw(host, SDHCI_HOST_CONTROL2); |
| 396 | reg &= ~SDHCI_CTRL_UHS_MASK; |
Alper Nebi Yasak | c48021d | 2022-03-15 20:46:28 +0300 | [diff] [blame] | 397 | |
Jonas Karlman | 6de4438 | 2023-04-18 16:46:33 +0000 | [diff] [blame] | 398 | switch (mmc->selected_mode) { |
| 399 | case UHS_SDR25: |
| 400 | case MMC_HS: |
| 401 | case MMC_HS_52: |
| 402 | reg |= SDHCI_CTRL_UHS_SDR25; |
| 403 | break; |
| 404 | case UHS_SDR50: |
| 405 | reg |= SDHCI_CTRL_UHS_SDR50; |
| 406 | break; |
| 407 | case UHS_DDR50: |
| 408 | case MMC_DDR_52: |
| 409 | reg |= SDHCI_CTRL_UHS_DDR50; |
| 410 | break; |
| 411 | case UHS_SDR104: |
| 412 | case MMC_HS_200: |
| 413 | reg |= SDHCI_CTRL_UHS_SDR104; |
| 414 | break; |
| 415 | case MMC_HS_400: |
| 416 | case MMC_HS_400_ES: |
| 417 | reg |= DWCMSHC_CTRL_HS400; |
| 418 | break; |
| 419 | default: |
| 420 | reg |= SDHCI_CTRL_UHS_SDR12; |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 421 | } |
| 422 | |
Jonas Karlman | 6de4438 | 2023-04-18 16:46:33 +0000 | [diff] [blame] | 423 | sdhci_writew(host, reg, SDHCI_HOST_CONTROL2); |
| 424 | |
Jonas Karlman | 8874c41 | 2023-04-18 16:46:35 +0000 | [diff] [blame] | 425 | reg = sdhci_readw(host, DWCMSHC_EMMC_EMMC_CTRL); |
Jonas Karlman | 6de4438 | 2023-04-18 16:46:33 +0000 | [diff] [blame] | 426 | |
| 427 | if (IS_MMC(mmc)) |
| 428 | reg |= DWCMSHC_CARD_IS_EMMC; |
| 429 | else |
| 430 | reg &= ~DWCMSHC_CARD_IS_EMMC; |
| 431 | |
| 432 | if (mmc->selected_mode == MMC_HS_400_ES) |
| 433 | reg |= DWCMSHC_ENHANCED_STROBE; |
| 434 | else |
| 435 | reg &= ~DWCMSHC_ENHANCED_STROBE; |
| 436 | |
Jonas Karlman | 8874c41 | 2023-04-18 16:46:35 +0000 | [diff] [blame] | 437 | sdhci_writew(host, reg, DWCMSHC_EMMC_EMMC_CTRL); |
Jonas Karlman | 6de4438 | 2023-04-18 16:46:33 +0000 | [diff] [blame] | 438 | |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 439 | return 0; |
| 440 | } |
| 441 | |
Alper Nebi Yasak | ee5a284 | 2022-01-29 01:42:37 +0300 | [diff] [blame] | 442 | static void rockchip_sdhci_set_control_reg(struct sdhci_host *host) |
| 443 | { |
| 444 | struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host); |
| 445 | struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(priv->dev); |
| 446 | |
| 447 | if (data->set_control_reg) |
| 448 | data->set_control_reg(host); |
| 449 | } |
| 450 | |
| 451 | static int rockchip_sdhci_set_ios_post(struct sdhci_host *host) |
| 452 | { |
| 453 | struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host); |
| 454 | struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(priv->dev); |
| 455 | |
| 456 | if (data->set_ios_post) |
| 457 | return data->set_ios_post(host); |
| 458 | |
| 459 | return 0; |
| 460 | } |
| 461 | |
Jonas Karlman | 7e74522 | 2023-04-18 16:46:29 +0000 | [diff] [blame] | 462 | static void rockchip_sdhci_set_clock(struct sdhci_host *host, u32 div) |
| 463 | { |
| 464 | struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host); |
| 465 | struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(priv->dev); |
| 466 | |
| 467 | if (data->set_clock) |
| 468 | data->set_clock(host, div); |
| 469 | } |
| 470 | |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 471 | static int rockchip_sdhci_execute_tuning(struct mmc *mmc, u8 opcode) |
| 472 | { |
Jonas Karlman | b8c394b | 2023-04-18 16:46:26 +0000 | [diff] [blame] | 473 | struct rockchip_sdhc *priv = dev_get_priv(mmc->dev); |
| 474 | struct sdhci_host *host = &priv->host; |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 475 | char tuning_loop_counter = SDHCI_TUNING_LOOP_COUNT; |
| 476 | struct mmc_cmd cmd; |
| 477 | u32 ctrl, blk_size; |
Jonas Karlman | ba9f5e5 | 2023-04-18 16:46:31 +0000 | [diff] [blame] | 478 | int ret; |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 479 | |
| 480 | ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2); |
| 481 | ctrl |= SDHCI_CTRL_EXEC_TUNING; |
| 482 | sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2); |
| 483 | |
| 484 | sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_INT_ENABLE); |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 485 | |
| 486 | blk_size = SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG, 64); |
Jonas Karlman | ba9f5e5 | 2023-04-18 16:46:31 +0000 | [diff] [blame] | 487 | if (opcode == MMC_CMD_SEND_TUNING_BLOCK_HS200 && mmc->bus_width == 8) |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 488 | blk_size = SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG, 128); |
| 489 | sdhci_writew(host, blk_size, SDHCI_BLOCK_SIZE); |
| 490 | sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE); |
| 491 | |
| 492 | cmd.cmdidx = opcode; |
| 493 | cmd.resp_type = MMC_RSP_R1; |
| 494 | cmd.cmdarg = 0; |
| 495 | |
| 496 | do { |
Jonas Karlman | ba9f5e5 | 2023-04-18 16:46:31 +0000 | [diff] [blame] | 497 | ret = mmc_send_cmd(mmc, &cmd, NULL); |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 498 | ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2); |
Jonas Karlman | ba9f5e5 | 2023-04-18 16:46:31 +0000 | [diff] [blame] | 499 | if (ret || tuning_loop_counter-- == 0) |
| 500 | break; |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 501 | } while (ctrl & SDHCI_CTRL_EXEC_TUNING); |
| 502 | |
Jonas Karlman | ba9f5e5 | 2023-04-18 16:46:31 +0000 | [diff] [blame] | 503 | if (ret || tuning_loop_counter < 0 || !(ctrl & SDHCI_CTRL_TUNED_CLK)) { |
| 504 | if (!ret) |
| 505 | ret = -EIO; |
| 506 | printf("%s: Tuning failed: %d\n", __func__, ret); |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 507 | |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 508 | ctrl &= ~SDHCI_CTRL_TUNED_CLK; |
Jonas Karlman | ba9f5e5 | 2023-04-18 16:46:31 +0000 | [diff] [blame] | 509 | ctrl &= ~SDHCI_CTRL_EXEC_TUNING; |
| 510 | sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2); |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 511 | } |
| 512 | |
| 513 | /* Enable only interrupts served by the SD controller */ |
| 514 | sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK, SDHCI_INT_ENABLE); |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 515 | |
| 516 | return ret; |
| 517 | } |
| 518 | |
Jonas Karlman | 7e74522 | 2023-04-18 16:46:29 +0000 | [diff] [blame] | 519 | static int rockchip_sdhci_config_dll(struct sdhci_host *host, u32 clock, bool enable) |
| 520 | { |
| 521 | struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host); |
| 522 | struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(priv->dev); |
| 523 | |
| 524 | if (data->config_dll) |
| 525 | return data->config_dll(host, clock, enable); |
| 526 | |
| 527 | return 0; |
| 528 | } |
| 529 | |
Alper Nebi Yasak | c35af78 | 2022-03-15 20:46:27 +0300 | [diff] [blame] | 530 | static int rockchip_sdhci_set_enhanced_strobe(struct sdhci_host *host) |
| 531 | { |
| 532 | struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host); |
| 533 | struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(priv->dev); |
| 534 | |
| 535 | if (data->set_enhanced_strobe) |
| 536 | return data->set_enhanced_strobe(host); |
| 537 | |
Jonas Karlman | 667576c | 2023-04-18 16:46:34 +0000 | [diff] [blame] | 538 | return 0; |
Alper Nebi Yasak | c35af78 | 2022-03-15 20:46:27 +0300 | [diff] [blame] | 539 | } |
| 540 | |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 541 | static struct sdhci_ops rockchip_sdhci_ops = { |
Alper Nebi Yasak | ee5a284 | 2022-01-29 01:42:37 +0300 | [diff] [blame] | 542 | .set_control_reg = rockchip_sdhci_set_control_reg, |
Jonas Karlman | 7e74522 | 2023-04-18 16:46:29 +0000 | [diff] [blame] | 543 | .set_ios_post = rockchip_sdhci_set_ios_post, |
| 544 | .set_clock = rockchip_sdhci_set_clock, |
| 545 | .platform_execute_tuning = rockchip_sdhci_execute_tuning, |
| 546 | .config_dll = rockchip_sdhci_config_dll, |
Alper Nebi Yasak | c35af78 | 2022-03-15 20:46:27 +0300 | [diff] [blame] | 547 | .set_enhanced_strobe = rockchip_sdhci_set_enhanced_strobe, |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 548 | }; |
| 549 | |
| 550 | static int rockchip_sdhci_probe(struct udevice *dev) |
| 551 | { |
| 552 | struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(dev); |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 553 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev); |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 554 | struct rockchip_sdhc_plat *plat = dev_get_plat(dev); |
Jonas Karlman | b8c394b | 2023-04-18 16:46:26 +0000 | [diff] [blame] | 555 | struct rockchip_sdhc *priv = dev_get_priv(dev); |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 556 | struct mmc_config *cfg = &plat->cfg; |
Jonas Karlman | b8c394b | 2023-04-18 16:46:26 +0000 | [diff] [blame] | 557 | struct sdhci_host *host = &priv->host; |
Kever Yang | 39fbb56 | 2016-12-28 11:32:35 +0800 | [diff] [blame] | 558 | struct clk clk; |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 559 | int ret; |
Kever Yang | 39fbb56 | 2016-12-28 11:32:35 +0800 | [diff] [blame] | 560 | |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 561 | host->max_clk = cfg->f_max; |
Kever Yang | 39fbb56 | 2016-12-28 11:32:35 +0800 | [diff] [blame] | 562 | ret = clk_get_by_index(dev, 0, &clk); |
| 563 | if (!ret) { |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 564 | ret = clk_set_rate(&clk, host->max_clk); |
Kever Yang | 39fbb56 | 2016-12-28 11:32:35 +0800 | [diff] [blame] | 565 | if (IS_ERR_VALUE(ret)) |
| 566 | printf("%s clk set rate fail!\n", __func__); |
| 567 | } else { |
| 568 | printf("%s fail to get clk\n", __func__); |
| 569 | } |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 570 | |
Jonas Karlman | b8c394b | 2023-04-18 16:46:26 +0000 | [diff] [blame] | 571 | priv->emmc_clk = clk; |
| 572 | priv->dev = dev; |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 573 | |
| 574 | if (data->get_phy) { |
| 575 | ret = data->get_phy(dev); |
| 576 | if (ret) |
| 577 | return ret; |
| 578 | } |
| 579 | |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 580 | host->ops = &rockchip_sdhci_ops; |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 581 | host->quirks = SDHCI_QUIRK_WAIT_SEND_CMD; |
| 582 | |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 583 | host->mmc = &plat->mmc; |
Jonas Karlman | b8c394b | 2023-04-18 16:46:26 +0000 | [diff] [blame] | 584 | host->mmc->priv = &priv->host; |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 585 | host->mmc->dev = dev; |
| 586 | upriv->mmc = host->mmc; |
| 587 | |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 588 | ret = sdhci_setup_cfg(cfg, host, cfg->f_max, EMMC_MIN_FREQ); |
Kever Yang | 4dcdc5c | 2019-07-19 18:01:11 +0800 | [diff] [blame] | 589 | if (ret) |
| 590 | return ret; |
| 591 | |
Jonas Karlman | 2cc6cde | 2023-04-18 16:46:45 +0000 | [diff] [blame] | 592 | /* |
Jonas Karlman | 3b804b3 | 2023-05-06 17:41:11 +0000 | [diff] [blame] | 593 | * Disable use of DMA and force use of PIO mode in SPL to fix an issue |
| 594 | * where loading part of TF-A into SRAM using DMA silently fails. |
| 595 | */ |
| 596 | if (IS_ENABLED(CONFIG_SPL_BUILD) && |
| 597 | dev_read_bool(dev, "u-boot,spl-fifo-mode")) |
| 598 | host->flags &= ~USE_DMA; |
| 599 | |
| 600 | /* |
Jonas Karlman | 2cc6cde | 2023-04-18 16:46:45 +0000 | [diff] [blame] | 601 | * Reading more than 4 blocks with a single CMD18 command in PIO mode |
| 602 | * triggers Data End Bit Error on RK3568 and RK3588. Limit to reading |
| 603 | * max 4 blocks in one command when using PIO mode. |
| 604 | */ |
Jonas Karlman | 41fc80b | 2023-05-06 17:41:09 +0000 | [diff] [blame] | 605 | if (!(host->flags & USE_DMA) && |
| 606 | (device_is_compatible(dev, "rockchip,rk3568-dwcmshc") || |
| 607 | device_is_compatible(dev, "rockchip,rk3588-dwcmshc"))) |
Jonas Karlman | 2cc6cde | 2023-04-18 16:46:45 +0000 | [diff] [blame] | 608 | cfg->b_max = 4; |
| 609 | |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 610 | return sdhci_probe(dev); |
| 611 | } |
| 612 | |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 613 | static int rockchip_sdhci_of_to_plat(struct udevice *dev) |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 614 | { |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 615 | struct rockchip_sdhc_plat *plat = dev_get_plat(dev); |
Jonas Karlman | b8c394b | 2023-04-18 16:46:26 +0000 | [diff] [blame] | 616 | struct rockchip_sdhc *priv = dev_get_priv(dev); |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 617 | struct mmc_config *cfg = &plat->cfg; |
Jonas Karlman | b8c394b | 2023-04-18 16:46:26 +0000 | [diff] [blame] | 618 | struct sdhci_host *host = &priv->host; |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 619 | int ret; |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 620 | |
| 621 | host->name = dev->name; |
Philipp Tomsich | 327b2b3 | 2017-09-11 22:04:21 +0200 | [diff] [blame] | 622 | host->ioaddr = dev_read_addr_ptr(dev); |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 623 | |
| 624 | ret = mmc_of_parse(dev, cfg); |
| 625 | if (ret) |
| 626 | return ret; |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 627 | |
| 628 | return 0; |
| 629 | } |
| 630 | |
| 631 | static int rockchip_sdhci_bind(struct udevice *dev) |
| 632 | { |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 633 | struct rockchip_sdhc_plat *plat = dev_get_plat(dev); |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 634 | |
Masahiro Yamada | 24f5aec | 2016-09-06 22:17:32 +0900 | [diff] [blame] | 635 | return sdhci_bind(dev, &plat->mmc, &plat->cfg); |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 636 | } |
| 637 | |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 638 | static const struct sdhci_data rk3399_data = { |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 639 | .get_phy = rk3399_emmc_get_phy, |
Alper Nebi Yasak | ee5a284 | 2022-01-29 01:42:37 +0300 | [diff] [blame] | 640 | .set_control_reg = rk3399_sdhci_set_control_reg, |
| 641 | .set_ios_post = rk3399_sdhci_set_ios_post, |
Alper Nebi Yasak | c35af78 | 2022-03-15 20:46:27 +0300 | [diff] [blame] | 642 | .set_enhanced_strobe = rk3399_sdhci_set_enhanced_strobe, |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 643 | }; |
| 644 | |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 645 | static const struct sdhci_data rk3568_data = { |
Alper Nebi Yasak | ee5a284 | 2022-01-29 01:42:37 +0300 | [diff] [blame] | 646 | .set_ios_post = rk3568_sdhci_set_ios_post, |
Jonas Karlman | b8a63c8 | 2023-04-20 15:55:15 +0000 | [diff] [blame] | 647 | .set_clock = rk3568_sdhci_set_clock, |
| 648 | .config_dll = rk3568_sdhci_config_dll, |
Jonas Karlman | a3cab28 | 2023-04-18 16:46:39 +0000 | [diff] [blame] | 649 | .flags = FLAG_INVERTER_FLAG_IN_RXCLK, |
| 650 | .hs200_txclk_tapnum = DLL_TXCLK_TAPNUM_DEFAULT, |
| 651 | .hs400_txclk_tapnum = DLL_TXCLK_TAPNUM_DEFAULT, |
| 652 | }; |
| 653 | |
| 654 | static const struct sdhci_data rk3588_data = { |
| 655 | .set_ios_post = rk3568_sdhci_set_ios_post, |
| 656 | .set_clock = rk3568_sdhci_set_clock, |
| 657 | .config_dll = rk3568_sdhci_config_dll, |
| 658 | .hs200_txclk_tapnum = DLL_TXCLK_TAPNUM_DEFAULT, |
| 659 | .hs400_txclk_tapnum = DLL_TXCLK_TAPNUM_90_DEGREES, |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 660 | }; |
| 661 | |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 662 | static const struct udevice_id sdhci_ids[] = { |
| 663 | { |
| 664 | .compatible = "arasan,sdhci-5.1", |
| 665 | .data = (ulong)&rk3399_data, |
| 666 | }, |
Yifeng Zhao | a63a57e | 2021-06-29 16:24:42 +0800 | [diff] [blame] | 667 | { |
| 668 | .compatible = "rockchip,rk3568-dwcmshc", |
| 669 | .data = (ulong)&rk3568_data, |
| 670 | }, |
Jonas Karlman | a3cab28 | 2023-04-18 16:46:39 +0000 | [diff] [blame] | 671 | { |
| 672 | .compatible = "rockchip,rk3588-dwcmshc", |
| 673 | .data = (ulong)&rk3588_data, |
| 674 | }, |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 675 | { } |
| 676 | }; |
| 677 | |
| 678 | U_BOOT_DRIVER(arasan_sdhci_drv) = { |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 679 | .name = "rockchip_sdhci_5_1", |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 680 | .id = UCLASS_MMC, |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 681 | .of_match = sdhci_ids, |
| 682 | .of_to_plat = rockchip_sdhci_of_to_plat, |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 683 | .ops = &sdhci_ops, |
| 684 | .bind = rockchip_sdhci_bind, |
Yifeng Zhao | ac80414 | 2021-06-29 16:24:41 +0800 | [diff] [blame] | 685 | .probe = rockchip_sdhci_probe, |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 686 | .priv_auto = sizeof(struct rockchip_sdhc), |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 687 | .plat_auto = sizeof(struct rockchip_sdhc_plat), |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 688 | }; |