Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 1e8eb1b | 2015-06-23 15:38:48 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Google, Inc |
Yangbo Lu | f9049b2 | 2020-06-17 18:08:58 +0800 | [diff] [blame] | 4 | * Copyright 2020 NXP |
Simon Glass | 1e8eb1b | 2015-06-23 15:38:48 -0600 | [diff] [blame] | 5 | * Written by Simon Glass <sjg@chromium.org> |
Simon Glass | 1e8eb1b | 2015-06-23 15:38:48 -0600 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 9 | #include <log.h> |
Simon Glass | 1e8eb1b | 2015-06-23 15:38:48 -0600 | [diff] [blame] | 10 | #include <mmc.h> |
| 11 | #include <dm.h> |
Simon Glass | 2f1ea90 | 2016-06-12 23:30:16 -0600 | [diff] [blame] | 12 | #include <dm/device-internal.h> |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 13 | #include <dm/device_compat.h> |
Simon Glass | 1e8eb1b | 2015-06-23 15:38:48 -0600 | [diff] [blame] | 14 | #include <dm/lists.h> |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 15 | #include <linux/compat.h> |
Simon Glass | 2f1ea90 | 2016-06-12 23:30:16 -0600 | [diff] [blame] | 16 | #include "mmc_private.h" |
Simon Glass | 1e8eb1b | 2015-06-23 15:38:48 -0600 | [diff] [blame] | 17 | |
Marek Vasut | 31976d9 | 2020-04-04 12:45:05 +0200 | [diff] [blame] | 18 | int dm_mmc_get_b_max(struct udevice *dev, void *dst, lbaint_t blkcnt) |
| 19 | { |
| 20 | struct dm_mmc_ops *ops = mmc_get_ops(dev); |
| 21 | struct mmc *mmc = mmc_get_mmc_dev(dev); |
| 22 | |
| 23 | if (ops->get_b_max) |
| 24 | return ops->get_b_max(dev, dst, blkcnt); |
| 25 | else |
| 26 | return mmc->cfg->b_max; |
| 27 | } |
| 28 | |
| 29 | int mmc_get_b_max(struct mmc *mmc, void *dst, lbaint_t blkcnt) |
| 30 | { |
| 31 | return dm_mmc_get_b_max(mmc->dev, dst, blkcnt); |
| 32 | } |
| 33 | |
Simon Glass | 394dfc0 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 34 | int dm_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd, |
| 35 | struct mmc_data *data) |
| 36 | { |
| 37 | struct mmc *mmc = mmc_get_mmc_dev(dev); |
| 38 | struct dm_mmc_ops *ops = mmc_get_ops(dev); |
| 39 | int ret; |
| 40 | |
| 41 | mmmc_trace_before_send(mmc, cmd); |
| 42 | if (ops->send_cmd) |
| 43 | ret = ops->send_cmd(dev, cmd, data); |
| 44 | else |
| 45 | ret = -ENOSYS; |
| 46 | mmmc_trace_after_send(mmc, cmd, ret); |
| 47 | |
| 48 | return ret; |
| 49 | } |
| 50 | |
| 51 | int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data) |
| 52 | { |
| 53 | return dm_mmc_send_cmd(mmc->dev, cmd, data); |
| 54 | } |
| 55 | |
| 56 | int dm_mmc_set_ios(struct udevice *dev) |
| 57 | { |
| 58 | struct dm_mmc_ops *ops = mmc_get_ops(dev); |
| 59 | |
| 60 | if (!ops->set_ios) |
| 61 | return -ENOSYS; |
| 62 | return ops->set_ios(dev); |
| 63 | } |
| 64 | |
| 65 | int mmc_set_ios(struct mmc *mmc) |
| 66 | { |
| 67 | return dm_mmc_set_ios(mmc->dev); |
| 68 | } |
| 69 | |
Sam Protsenko | db174c6 | 2019-08-14 22:52:51 +0300 | [diff] [blame] | 70 | int dm_mmc_wait_dat0(struct udevice *dev, int state, int timeout_us) |
Jean-Jacques Hiblot | f4d5b3e | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 71 | { |
| 72 | struct dm_mmc_ops *ops = mmc_get_ops(dev); |
| 73 | |
| 74 | if (!ops->wait_dat0) |
| 75 | return -ENOSYS; |
Sam Protsenko | db174c6 | 2019-08-14 22:52:51 +0300 | [diff] [blame] | 76 | return ops->wait_dat0(dev, state, timeout_us); |
Jean-Jacques Hiblot | f4d5b3e | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 77 | } |
| 78 | |
Sam Protsenko | db174c6 | 2019-08-14 22:52:51 +0300 | [diff] [blame] | 79 | int mmc_wait_dat0(struct mmc *mmc, int state, int timeout_us) |
Jean-Jacques Hiblot | f4d5b3e | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 80 | { |
Sam Protsenko | db174c6 | 2019-08-14 22:52:51 +0300 | [diff] [blame] | 81 | return dm_mmc_wait_dat0(mmc->dev, state, timeout_us); |
Jean-Jacques Hiblot | f4d5b3e | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 82 | } |
| 83 | |
Simon Glass | 394dfc0 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 84 | int dm_mmc_get_wp(struct udevice *dev) |
| 85 | { |
| 86 | struct dm_mmc_ops *ops = mmc_get_ops(dev); |
| 87 | |
| 88 | if (!ops->get_wp) |
| 89 | return -ENOSYS; |
| 90 | return ops->get_wp(dev); |
| 91 | } |
| 92 | |
| 93 | int mmc_getwp(struct mmc *mmc) |
| 94 | { |
| 95 | return dm_mmc_get_wp(mmc->dev); |
| 96 | } |
| 97 | |
| 98 | int dm_mmc_get_cd(struct udevice *dev) |
| 99 | { |
| 100 | struct dm_mmc_ops *ops = mmc_get_ops(dev); |
| 101 | |
| 102 | if (!ops->get_cd) |
| 103 | return -ENOSYS; |
| 104 | return ops->get_cd(dev); |
| 105 | } |
| 106 | |
| 107 | int mmc_getcd(struct mmc *mmc) |
| 108 | { |
| 109 | return dm_mmc_get_cd(mmc->dev); |
| 110 | } |
Simon Glass | 394dfc0 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 111 | |
Jean-Jacques Hiblot | 6051e78 | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 112 | #ifdef MMC_SUPPORTS_TUNING |
Kishon Vijay Abraham I | ae7174f | 2017-09-21 16:30:05 +0200 | [diff] [blame] | 113 | int dm_mmc_execute_tuning(struct udevice *dev, uint opcode) |
| 114 | { |
| 115 | struct dm_mmc_ops *ops = mmc_get_ops(dev); |
| 116 | |
| 117 | if (!ops->execute_tuning) |
| 118 | return -ENOSYS; |
| 119 | return ops->execute_tuning(dev, opcode); |
| 120 | } |
| 121 | |
| 122 | int mmc_execute_tuning(struct mmc *mmc, uint opcode) |
| 123 | { |
| 124 | return dm_mmc_execute_tuning(mmc->dev, opcode); |
| 125 | } |
Jean-Jacques Hiblot | 6051e78 | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 126 | #endif |
Kishon Vijay Abraham I | ae7174f | 2017-09-21 16:30:05 +0200 | [diff] [blame] | 127 | |
Peng Fan | eede83b | 2019-07-10 14:43:07 +0800 | [diff] [blame] | 128 | #if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT) |
| 129 | int dm_mmc_set_enhanced_strobe(struct udevice *dev) |
| 130 | { |
| 131 | struct dm_mmc_ops *ops = mmc_get_ops(dev); |
| 132 | |
| 133 | if (ops->set_enhanced_strobe) |
| 134 | return ops->set_enhanced_strobe(dev); |
| 135 | |
| 136 | return -ENOTSUPP; |
| 137 | } |
| 138 | |
| 139 | int mmc_set_enhanced_strobe(struct mmc *mmc) |
| 140 | { |
| 141 | return dm_mmc_set_enhanced_strobe(mmc->dev); |
| 142 | } |
| 143 | #endif |
| 144 | |
Yangbo Lu | 5347aea | 2020-09-01 16:58:04 +0800 | [diff] [blame] | 145 | int dm_mmc_hs400_prepare_ddr(struct udevice *dev) |
| 146 | { |
| 147 | struct dm_mmc_ops *ops = mmc_get_ops(dev); |
| 148 | |
| 149 | if (ops->hs400_prepare_ddr) |
| 150 | return ops->hs400_prepare_ddr(dev); |
| 151 | |
| 152 | return 0; |
| 153 | } |
| 154 | |
| 155 | int mmc_hs400_prepare_ddr(struct mmc *mmc) |
| 156 | { |
| 157 | return dm_mmc_hs400_prepare_ddr(mmc->dev); |
| 158 | } |
| 159 | |
Yann Gautier | 6f55833 | 2019-09-19 17:56:12 +0200 | [diff] [blame] | 160 | int dm_mmc_host_power_cycle(struct udevice *dev) |
| 161 | { |
| 162 | struct dm_mmc_ops *ops = mmc_get_ops(dev); |
| 163 | |
| 164 | if (ops->host_power_cycle) |
| 165 | return ops->host_power_cycle(dev); |
| 166 | return 0; |
| 167 | } |
| 168 | |
| 169 | int mmc_host_power_cycle(struct mmc *mmc) |
| 170 | { |
| 171 | return dm_mmc_host_power_cycle(mmc->dev); |
| 172 | } |
| 173 | |
Faiz Abbas | f6fd4ec | 2020-02-26 13:44:30 +0530 | [diff] [blame] | 174 | int dm_mmc_deferred_probe(struct udevice *dev) |
| 175 | { |
| 176 | struct dm_mmc_ops *ops = mmc_get_ops(dev); |
| 177 | |
| 178 | if (ops->deferred_probe) |
| 179 | return ops->deferred_probe(dev); |
| 180 | |
| 181 | return 0; |
| 182 | } |
| 183 | |
| 184 | int mmc_deferred_probe(struct mmc *mmc) |
| 185 | { |
| 186 | return dm_mmc_deferred_probe(mmc->dev); |
| 187 | } |
| 188 | |
Yangbo Lu | c46f5d7 | 2020-09-01 16:57:59 +0800 | [diff] [blame] | 189 | int dm_mmc_reinit(struct udevice *dev) |
| 190 | { |
| 191 | struct dm_mmc_ops *ops = mmc_get_ops(dev); |
| 192 | |
| 193 | if (ops->reinit) |
| 194 | return ops->reinit(dev); |
| 195 | |
| 196 | return 0; |
| 197 | } |
| 198 | |
| 199 | int mmc_reinit(struct mmc *mmc) |
| 200 | { |
| 201 | return dm_mmc_reinit(mmc->dev); |
| 202 | } |
| 203 | |
Jean-Jacques Hiblot | d39be65 | 2017-11-30 17:43:55 +0100 | [diff] [blame] | 204 | int mmc_of_parse(struct udevice *dev, struct mmc_config *cfg) |
Kishon Vijay Abraham I | 422b294 | 2017-09-21 16:30:13 +0200 | [diff] [blame] | 205 | { |
| 206 | int val; |
| 207 | |
Jean-Jacques Hiblot | d39be65 | 2017-11-30 17:43:55 +0100 | [diff] [blame] | 208 | val = dev_read_u32_default(dev, "bus-width", 1); |
Kishon Vijay Abraham I | 422b294 | 2017-09-21 16:30:13 +0200 | [diff] [blame] | 209 | |
| 210 | switch (val) { |
| 211 | case 0x8: |
| 212 | cfg->host_caps |= MMC_MODE_8BIT; |
| 213 | /* fall through */ |
| 214 | case 0x4: |
| 215 | cfg->host_caps |= MMC_MODE_4BIT; |
| 216 | /* fall through */ |
| 217 | case 0x1: |
| 218 | cfg->host_caps |= MMC_MODE_1BIT; |
| 219 | break; |
| 220 | default: |
Masahiro Yamada | 57b12d8 | 2017-12-30 02:00:07 +0900 | [diff] [blame] | 221 | dev_err(dev, "Invalid \"bus-width\" value %u!\n", val); |
| 222 | return -EINVAL; |
Kishon Vijay Abraham I | 422b294 | 2017-09-21 16:30:13 +0200 | [diff] [blame] | 223 | } |
| 224 | |
Masahiro Yamada | 191cd13 | 2017-12-30 02:00:06 +0900 | [diff] [blame] | 225 | /* f_max is obtained from the optional "max-frequency" property */ |
| 226 | dev_read_u32(dev, "max-frequency", &cfg->f_max); |
Kishon Vijay Abraham I | 422b294 | 2017-09-21 16:30:13 +0200 | [diff] [blame] | 227 | |
Jean-Jacques Hiblot | d39be65 | 2017-11-30 17:43:55 +0100 | [diff] [blame] | 228 | if (dev_read_bool(dev, "cap-sd-highspeed")) |
Kishon Vijay Abraham I | 422b294 | 2017-09-21 16:30:13 +0200 | [diff] [blame] | 229 | cfg->host_caps |= MMC_CAP(SD_HS); |
Jean-Jacques Hiblot | d39be65 | 2017-11-30 17:43:55 +0100 | [diff] [blame] | 230 | if (dev_read_bool(dev, "cap-mmc-highspeed")) |
Alexandru Gagniuc | d6ff68d | 2020-09-15 14:51:46 -0500 | [diff] [blame] | 231 | cfg->host_caps |= MMC_CAP(MMC_HS) | MMC_CAP(MMC_HS_52); |
Jean-Jacques Hiblot | d39be65 | 2017-11-30 17:43:55 +0100 | [diff] [blame] | 232 | if (dev_read_bool(dev, "sd-uhs-sdr12")) |
Kishon Vijay Abraham I | 422b294 | 2017-09-21 16:30:13 +0200 | [diff] [blame] | 233 | cfg->host_caps |= MMC_CAP(UHS_SDR12); |
Jean-Jacques Hiblot | d39be65 | 2017-11-30 17:43:55 +0100 | [diff] [blame] | 234 | if (dev_read_bool(dev, "sd-uhs-sdr25")) |
Kishon Vijay Abraham I | 422b294 | 2017-09-21 16:30:13 +0200 | [diff] [blame] | 235 | cfg->host_caps |= MMC_CAP(UHS_SDR25); |
Jean-Jacques Hiblot | d39be65 | 2017-11-30 17:43:55 +0100 | [diff] [blame] | 236 | if (dev_read_bool(dev, "sd-uhs-sdr50")) |
Kishon Vijay Abraham I | 422b294 | 2017-09-21 16:30:13 +0200 | [diff] [blame] | 237 | cfg->host_caps |= MMC_CAP(UHS_SDR50); |
Jean-Jacques Hiblot | d39be65 | 2017-11-30 17:43:55 +0100 | [diff] [blame] | 238 | if (dev_read_bool(dev, "sd-uhs-sdr104")) |
Kishon Vijay Abraham I | 422b294 | 2017-09-21 16:30:13 +0200 | [diff] [blame] | 239 | cfg->host_caps |= MMC_CAP(UHS_SDR104); |
Jean-Jacques Hiblot | d39be65 | 2017-11-30 17:43:55 +0100 | [diff] [blame] | 240 | if (dev_read_bool(dev, "sd-uhs-ddr50")) |
Kishon Vijay Abraham I | 422b294 | 2017-09-21 16:30:13 +0200 | [diff] [blame] | 241 | cfg->host_caps |= MMC_CAP(UHS_DDR50); |
Jean-Jacques Hiblot | d39be65 | 2017-11-30 17:43:55 +0100 | [diff] [blame] | 242 | if (dev_read_bool(dev, "mmc-ddr-1_8v")) |
| 243 | cfg->host_caps |= MMC_CAP(MMC_DDR_52); |
| 244 | if (dev_read_bool(dev, "mmc-ddr-1_2v")) |
Kishon Vijay Abraham I | 422b294 | 2017-09-21 16:30:13 +0200 | [diff] [blame] | 245 | cfg->host_caps |= MMC_CAP(MMC_DDR_52); |
Jean-Jacques Hiblot | d39be65 | 2017-11-30 17:43:55 +0100 | [diff] [blame] | 246 | if (dev_read_bool(dev, "mmc-hs200-1_8v")) |
| 247 | cfg->host_caps |= MMC_CAP(MMC_HS_200); |
| 248 | if (dev_read_bool(dev, "mmc-hs200-1_2v")) |
Kishon Vijay Abraham I | 422b294 | 2017-09-21 16:30:13 +0200 | [diff] [blame] | 249 | cfg->host_caps |= MMC_CAP(MMC_HS_200); |
Marek Vasut | b22a11a | 2018-06-13 06:50:16 +0200 | [diff] [blame] | 250 | if (dev_read_bool(dev, "mmc-hs400-1_8v")) |
| 251 | cfg->host_caps |= MMC_CAP(MMC_HS_400); |
| 252 | if (dev_read_bool(dev, "mmc-hs400-1_2v")) |
| 253 | cfg->host_caps |= MMC_CAP(MMC_HS_400); |
Peng Fan | fb96879 | 2019-07-10 09:35:18 +0000 | [diff] [blame] | 254 | if (dev_read_bool(dev, "mmc-hs400-enhanced-strobe")) |
| 255 | cfg->host_caps |= MMC_CAP(MMC_HS_400_ES); |
Kishon Vijay Abraham I | 422b294 | 2017-09-21 16:30:13 +0200 | [diff] [blame] | 256 | |
T Karthik Reddy | d0bb516 | 2019-06-25 13:39:02 +0200 | [diff] [blame] | 257 | if (dev_read_bool(dev, "non-removable")) { |
| 258 | cfg->host_caps |= MMC_CAP_NONREMOVABLE; |
| 259 | } else { |
| 260 | if (dev_read_bool(dev, "cd-inverted")) |
| 261 | cfg->host_caps |= MMC_CAP_CD_ACTIVE_HIGH; |
| 262 | if (dev_read_bool(dev, "broken-cd")) |
| 263 | cfg->host_caps |= MMC_CAP_NEEDS_POLL; |
| 264 | } |
| 265 | |
Peng Fan | b01c773 | 2019-07-10 09:35:20 +0000 | [diff] [blame] | 266 | if (dev_read_bool(dev, "no-1-8-v")) { |
| 267 | cfg->host_caps &= ~(UHS_CAPS | MMC_MODE_HS200 | |
| 268 | MMC_MODE_HS400 | MMC_MODE_HS400_ES); |
| 269 | } |
| 270 | |
Kishon Vijay Abraham I | 422b294 | 2017-09-21 16:30:13 +0200 | [diff] [blame] | 271 | return 0; |
| 272 | } |
| 273 | |
Simon Glass | 5a18f87 | 2020-04-08 08:33:00 -0600 | [diff] [blame] | 274 | struct mmc *mmc_get_mmc_dev(const struct udevice *dev) |
Simon Glass | 1e8eb1b | 2015-06-23 15:38:48 -0600 | [diff] [blame] | 275 | { |
| 276 | struct mmc_uclass_priv *upriv; |
| 277 | |
| 278 | if (!device_active(dev)) |
| 279 | return NULL; |
| 280 | upriv = dev_get_uclass_priv(dev); |
| 281 | return upriv->mmc; |
| 282 | } |
| 283 | |
Simon Glass | 5f4bd8c | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 284 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 4bca666 | 2016-05-01 13:52:39 -0600 | [diff] [blame] | 285 | struct mmc *find_mmc_device(int dev_num) |
| 286 | { |
| 287 | struct udevice *dev, *mmc_dev; |
| 288 | int ret; |
| 289 | |
Simon Glass | bcad604 | 2017-05-27 11:37:19 -0600 | [diff] [blame] | 290 | ret = blk_find_device(IF_TYPE_MMC, dev_num, &dev); |
Simon Glass | 4bca666 | 2016-05-01 13:52:39 -0600 | [diff] [blame] | 291 | |
| 292 | if (ret) { |
| 293 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) |
| 294 | printf("MMC Device %d not found\n", dev_num); |
| 295 | #endif |
| 296 | return NULL; |
| 297 | } |
| 298 | |
| 299 | mmc_dev = dev_get_parent(dev); |
| 300 | |
Simon Glass | bcad604 | 2017-05-27 11:37:19 -0600 | [diff] [blame] | 301 | struct mmc *mmc = mmc_get_mmc_dev(mmc_dev); |
| 302 | |
| 303 | return mmc; |
Simon Glass | 4bca666 | 2016-05-01 13:52:39 -0600 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | int get_mmc_num(void) |
| 307 | { |
Kever Yang | 3845660 | 2016-07-22 17:22:50 +0800 | [diff] [blame] | 308 | return max((blk_find_max_devnum(IF_TYPE_MMC) + 1), 0); |
Simon Glass | 4bca666 | 2016-05-01 13:52:39 -0600 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | int mmc_get_next_devnum(void) |
| 312 | { |
Masahiro Yamada | a6f07e5 | 2016-10-14 00:13:18 +0900 | [diff] [blame] | 313 | return blk_find_max_devnum(IF_TYPE_MMC); |
Simon Glass | 4bca666 | 2016-05-01 13:52:39 -0600 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | struct blk_desc *mmc_get_blk_desc(struct mmc *mmc) |
| 317 | { |
| 318 | struct blk_desc *desc; |
| 319 | struct udevice *dev; |
| 320 | |
| 321 | device_find_first_child(mmc->dev, &dev); |
| 322 | if (!dev) |
| 323 | return NULL; |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 324 | desc = dev_get_uclass_plat(dev); |
Simon Glass | 4bca666 | 2016-05-01 13:52:39 -0600 | [diff] [blame] | 325 | |
| 326 | return desc; |
| 327 | } |
| 328 | |
| 329 | void mmc_do_preinit(void) |
| 330 | { |
| 331 | struct udevice *dev; |
| 332 | struct uclass *uc; |
| 333 | int ret; |
| 334 | |
| 335 | ret = uclass_get(UCLASS_MMC, &uc); |
| 336 | if (ret) |
| 337 | return; |
| 338 | uclass_foreach_dev(dev, uc) { |
| 339 | struct mmc *m = mmc_get_mmc_dev(dev); |
| 340 | |
| 341 | if (!m) |
| 342 | continue; |
Simon Glass | 4bca666 | 2016-05-01 13:52:39 -0600 | [diff] [blame] | 343 | if (m->preinit) |
| 344 | mmc_start_init(m); |
| 345 | } |
| 346 | } |
| 347 | |
| 348 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) |
| 349 | void print_mmc_devices(char separator) |
| 350 | { |
| 351 | struct udevice *dev; |
| 352 | char *mmc_type; |
| 353 | bool first = true; |
| 354 | |
| 355 | for (uclass_first_device(UCLASS_MMC, &dev); |
| 356 | dev; |
Xu Ziyuan | 77d747e | 2016-07-23 11:11:22 +0800 | [diff] [blame] | 357 | uclass_next_device(&dev), first = false) { |
Simon Glass | 4bca666 | 2016-05-01 13:52:39 -0600 | [diff] [blame] | 358 | struct mmc *m = mmc_get_mmc_dev(dev); |
| 359 | |
| 360 | if (!first) { |
| 361 | printf("%c", separator); |
| 362 | if (separator != '\n') |
| 363 | puts(" "); |
| 364 | } |
| 365 | if (m->has_init) |
| 366 | mmc_type = IS_SD(m) ? "SD" : "eMMC"; |
| 367 | else |
| 368 | mmc_type = NULL; |
| 369 | |
| 370 | printf("%s: %d", m->cfg->name, mmc_get_blk_desc(m)->devnum); |
| 371 | if (mmc_type) |
| 372 | printf(" (%s)", mmc_type); |
| 373 | } |
| 374 | |
| 375 | printf("\n"); |
| 376 | } |
| 377 | |
| 378 | #else |
| 379 | void print_mmc_devices(char separator) { } |
| 380 | #endif |
Simon Glass | 2f1ea90 | 2016-06-12 23:30:16 -0600 | [diff] [blame] | 381 | |
| 382 | int mmc_bind(struct udevice *dev, struct mmc *mmc, const struct mmc_config *cfg) |
| 383 | { |
| 384 | struct blk_desc *bdesc; |
| 385 | struct udevice *bdev; |
Aswath Govindraju | b9f84af | 2021-03-25 12:48:48 +0530 | [diff] [blame^] | 386 | int ret; |
Jaehoon Chung | 2910da8 | 2017-02-02 13:41:14 +0900 | [diff] [blame] | 387 | |
Simon Glass | 9e720b0 | 2017-04-23 20:02:09 -0600 | [diff] [blame] | 388 | if (!mmc_get_ops(dev)) |
| 389 | return -ENOSYS; |
Aswath Govindraju | b9f84af | 2021-03-25 12:48:48 +0530 | [diff] [blame^] | 390 | |
| 391 | /* Use the fixed index with aliases node's index */ |
| 392 | debug("%s: alias devnum=%d\n", __func__, dev_seq(dev)); |
Simon Glass | 2f1ea90 | 2016-06-12 23:30:16 -0600 | [diff] [blame] | 393 | |
Jaehoon Chung | 2910da8 | 2017-02-02 13:41:14 +0900 | [diff] [blame] | 394 | ret = blk_create_devicef(dev, "mmc_blk", "blk", IF_TYPE_MMC, |
Aswath Govindraju | b9f84af | 2021-03-25 12:48:48 +0530 | [diff] [blame^] | 395 | dev_seq(dev), 512, 0, &bdev); |
Simon Glass | 2f1ea90 | 2016-06-12 23:30:16 -0600 | [diff] [blame] | 396 | if (ret) { |
| 397 | debug("Cannot create block device\n"); |
| 398 | return ret; |
| 399 | } |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 400 | bdesc = dev_get_uclass_plat(bdev); |
Simon Glass | 2f1ea90 | 2016-06-12 23:30:16 -0600 | [diff] [blame] | 401 | mmc->cfg = cfg; |
| 402 | mmc->priv = dev; |
| 403 | |
| 404 | /* the following chunk was from mmc_register() */ |
| 405 | |
| 406 | /* Setup dsr related values */ |
| 407 | mmc->dsr_imp = 0; |
| 408 | mmc->dsr = 0xffffffff; |
| 409 | /* Setup the universal parts of the block interface just once */ |
| 410 | bdesc->removable = 1; |
| 411 | |
| 412 | /* setup initial part type */ |
| 413 | bdesc->part_type = cfg->part_type; |
| 414 | mmc->dev = dev; |
| 415 | |
| 416 | return 0; |
| 417 | } |
| 418 | |
| 419 | int mmc_unbind(struct udevice *dev) |
| 420 | { |
| 421 | struct udevice *bdev; |
| 422 | |
| 423 | device_find_first_child(dev, &bdev); |
| 424 | if (bdev) { |
Stefan Roese | 80b5bc9 | 2017-03-20 12:51:48 +0100 | [diff] [blame] | 425 | device_remove(bdev, DM_REMOVE_NORMAL); |
Simon Glass | 2f1ea90 | 2016-06-12 23:30:16 -0600 | [diff] [blame] | 426 | device_unbind(bdev); |
| 427 | } |
| 428 | |
| 429 | return 0; |
| 430 | } |
| 431 | |
| 432 | static int mmc_select_hwpart(struct udevice *bdev, int hwpart) |
| 433 | { |
| 434 | struct udevice *mmc_dev = dev_get_parent(bdev); |
| 435 | struct mmc *mmc = mmc_get_mmc_dev(mmc_dev); |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 436 | struct blk_desc *desc = dev_get_uclass_plat(bdev); |
developer | 90fdc3e | 2019-08-27 15:32:19 +0800 | [diff] [blame] | 437 | int ret; |
Simon Glass | 2f1ea90 | 2016-06-12 23:30:16 -0600 | [diff] [blame] | 438 | |
| 439 | if (desc->hwpart == hwpart) |
| 440 | return 0; |
| 441 | |
| 442 | if (mmc->part_config == MMCPART_NOAVAILABLE) |
| 443 | return -EMEDIUMTYPE; |
| 444 | |
developer | 90fdc3e | 2019-08-27 15:32:19 +0800 | [diff] [blame] | 445 | ret = mmc_switch_part(mmc, hwpart); |
| 446 | if (!ret) |
| 447 | blkcache_invalidate(desc->if_type, desc->devnum); |
| 448 | |
| 449 | return ret; |
Simon Glass | 2f1ea90 | 2016-06-12 23:30:16 -0600 | [diff] [blame] | 450 | } |
| 451 | |
Fiach Antaw | 7cdbe50 | 2017-01-25 19:00:24 +1000 | [diff] [blame] | 452 | static int mmc_blk_probe(struct udevice *dev) |
| 453 | { |
Simon Glass | e11b239 | 2017-04-23 20:02:10 -0600 | [diff] [blame] | 454 | struct udevice *mmc_dev = dev_get_parent(dev); |
| 455 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(mmc_dev); |
| 456 | struct mmc *mmc = upriv->mmc; |
| 457 | int ret; |
| 458 | |
| 459 | ret = mmc_init(mmc); |
| 460 | if (ret) { |
| 461 | debug("%s: mmc_init() failed (err=%d)\n", __func__, ret); |
| 462 | return ret; |
| 463 | } |
Fiach Antaw | 7cdbe50 | 2017-01-25 19:00:24 +1000 | [diff] [blame] | 464 | |
Simon Glass | e11b239 | 2017-04-23 20:02:10 -0600 | [diff] [blame] | 465 | return 0; |
Fiach Antaw | 7cdbe50 | 2017-01-25 19:00:24 +1000 | [diff] [blame] | 466 | } |
| 467 | |
Marek Vasut | a4773fc | 2019-01-29 04:45:51 +0100 | [diff] [blame] | 468 | #if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \ |
| 469 | CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \ |
| 470 | CONFIG_IS_ENABLED(MMC_HS400_SUPPORT) |
| 471 | static int mmc_blk_remove(struct udevice *dev) |
| 472 | { |
| 473 | struct udevice *mmc_dev = dev_get_parent(dev); |
| 474 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(mmc_dev); |
| 475 | struct mmc *mmc = upriv->mmc; |
| 476 | |
| 477 | return mmc_deinit(mmc); |
| 478 | } |
| 479 | #endif |
| 480 | |
Simon Glass | 2f1ea90 | 2016-06-12 23:30:16 -0600 | [diff] [blame] | 481 | static const struct blk_ops mmc_blk_ops = { |
| 482 | .read = mmc_bread, |
Jean-Jacques Hiblot | d053167 | 2018-01-04 15:23:32 +0100 | [diff] [blame] | 483 | #if CONFIG_IS_ENABLED(MMC_WRITE) |
Simon Glass | 2f1ea90 | 2016-06-12 23:30:16 -0600 | [diff] [blame] | 484 | .write = mmc_bwrite, |
Simon Glass | fcc53c1 | 2016-10-01 14:43:17 -0600 | [diff] [blame] | 485 | .erase = mmc_berase, |
Simon Glass | 2f1ea90 | 2016-06-12 23:30:16 -0600 | [diff] [blame] | 486 | #endif |
| 487 | .select_hwpart = mmc_select_hwpart, |
| 488 | }; |
| 489 | |
| 490 | U_BOOT_DRIVER(mmc_blk) = { |
| 491 | .name = "mmc_blk", |
| 492 | .id = UCLASS_BLK, |
| 493 | .ops = &mmc_blk_ops, |
Fiach Antaw | 7cdbe50 | 2017-01-25 19:00:24 +1000 | [diff] [blame] | 494 | .probe = mmc_blk_probe, |
Marek Vasut | a4773fc | 2019-01-29 04:45:51 +0100 | [diff] [blame] | 495 | #if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \ |
| 496 | CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \ |
| 497 | CONFIG_IS_ENABLED(MMC_HS400_SUPPORT) |
| 498 | .remove = mmc_blk_remove, |
| 499 | .flags = DM_FLAG_OS_PREPARE, |
| 500 | #endif |
Simon Glass | 2f1ea90 | 2016-06-12 23:30:16 -0600 | [diff] [blame] | 501 | }; |
Simon Glass | 4bca666 | 2016-05-01 13:52:39 -0600 | [diff] [blame] | 502 | #endif /* CONFIG_BLK */ |
| 503 | |
Simon Glass | 1e8eb1b | 2015-06-23 15:38:48 -0600 | [diff] [blame] | 504 | |
| 505 | UCLASS_DRIVER(mmc) = { |
| 506 | .id = UCLASS_MMC, |
| 507 | .name = "mmc", |
| 508 | .flags = DM_UC_FLAG_SEQ_ALIAS, |
Simon Glass | 8a2b47f | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 509 | .per_device_auto = sizeof(struct mmc_uclass_priv), |
Simon Glass | 1e8eb1b | 2015-06-23 15:38:48 -0600 | [diff] [blame] | 510 | }; |