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