1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2015 Google, Inc
12 #include <dm/device-internal.h>
13 #include <dm/device_compat.h>
15 #include <linux/compat.h>
16 #include "mmc_private.h"
18 int dm_mmc_get_b_max(struct udevice *dev, void *dst, lbaint_t blkcnt)
20 struct dm_mmc_ops *ops = mmc_get_ops(dev);
21 struct mmc *mmc = mmc_get_mmc_dev(dev);
24 return ops->get_b_max(dev, dst, blkcnt);
26 return mmc->cfg->b_max;
29 int mmc_get_b_max(struct mmc *mmc, void *dst, lbaint_t blkcnt)
31 return dm_mmc_get_b_max(mmc->dev, dst, blkcnt);
34 int dm_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
35 struct mmc_data *data)
37 struct mmc *mmc = mmc_get_mmc_dev(dev);
38 struct dm_mmc_ops *ops = mmc_get_ops(dev);
41 mmmc_trace_before_send(mmc, cmd);
43 ret = ops->send_cmd(dev, cmd, data);
46 mmmc_trace_after_send(mmc, cmd, ret);
51 int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data)
53 return dm_mmc_send_cmd(mmc->dev, cmd, data);
56 int dm_mmc_set_ios(struct udevice *dev)
58 struct dm_mmc_ops *ops = mmc_get_ops(dev);
62 return ops->set_ios(dev);
65 int mmc_set_ios(struct mmc *mmc)
67 return dm_mmc_set_ios(mmc->dev);
70 int dm_mmc_wait_dat0(struct udevice *dev, int state, int timeout_us)
72 struct dm_mmc_ops *ops = mmc_get_ops(dev);
76 return ops->wait_dat0(dev, state, timeout_us);
79 int mmc_wait_dat0(struct mmc *mmc, int state, int timeout_us)
81 return dm_mmc_wait_dat0(mmc->dev, state, timeout_us);
84 int dm_mmc_get_wp(struct udevice *dev)
86 struct dm_mmc_ops *ops = mmc_get_ops(dev);
90 return ops->get_wp(dev);
93 int mmc_getwp(struct mmc *mmc)
95 return dm_mmc_get_wp(mmc->dev);
98 int dm_mmc_get_cd(struct udevice *dev)
100 struct dm_mmc_ops *ops = mmc_get_ops(dev);
104 return ops->get_cd(dev);
107 int mmc_getcd(struct mmc *mmc)
109 return dm_mmc_get_cd(mmc->dev);
112 #ifdef MMC_SUPPORTS_TUNING
113 int dm_mmc_execute_tuning(struct udevice *dev, uint opcode)
115 struct dm_mmc_ops *ops = mmc_get_ops(dev);
117 if (!ops->execute_tuning)
119 return ops->execute_tuning(dev, opcode);
122 int mmc_execute_tuning(struct mmc *mmc, uint opcode)
124 return dm_mmc_execute_tuning(mmc->dev, opcode);
128 #if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
129 int dm_mmc_set_enhanced_strobe(struct udevice *dev)
131 struct dm_mmc_ops *ops = mmc_get_ops(dev);
133 if (ops->set_enhanced_strobe)
134 return ops->set_enhanced_strobe(dev);
139 int mmc_set_enhanced_strobe(struct mmc *mmc)
141 return dm_mmc_set_enhanced_strobe(mmc->dev);
145 int dm_mmc_hs400_prepare_ddr(struct udevice *dev)
147 struct dm_mmc_ops *ops = mmc_get_ops(dev);
149 if (ops->hs400_prepare_ddr)
150 return ops->hs400_prepare_ddr(dev);
155 int mmc_hs400_prepare_ddr(struct mmc *mmc)
157 return dm_mmc_hs400_prepare_ddr(mmc->dev);
160 int dm_mmc_host_power_cycle(struct udevice *dev)
162 struct dm_mmc_ops *ops = mmc_get_ops(dev);
164 if (ops->host_power_cycle)
165 return ops->host_power_cycle(dev);
169 int mmc_host_power_cycle(struct mmc *mmc)
171 return dm_mmc_host_power_cycle(mmc->dev);
174 int dm_mmc_deferred_probe(struct udevice *dev)
176 struct dm_mmc_ops *ops = mmc_get_ops(dev);
178 if (ops->deferred_probe)
179 return ops->deferred_probe(dev);
184 int mmc_deferred_probe(struct mmc *mmc)
186 return dm_mmc_deferred_probe(mmc->dev);
189 int dm_mmc_reinit(struct udevice *dev)
191 struct dm_mmc_ops *ops = mmc_get_ops(dev);
194 return ops->reinit(dev);
199 int mmc_reinit(struct mmc *mmc)
201 return dm_mmc_reinit(mmc->dev);
204 int mmc_of_parse(struct udevice *dev, struct mmc_config *cfg)
208 val = dev_read_u32_default(dev, "bus-width", 1);
212 cfg->host_caps |= MMC_MODE_8BIT;
215 cfg->host_caps |= MMC_MODE_4BIT;
218 cfg->host_caps |= MMC_MODE_1BIT;
221 dev_err(dev, "Invalid \"bus-width\" value %u!\n", val);
225 /* f_max is obtained from the optional "max-frequency" property */
226 dev_read_u32(dev, "max-frequency", &cfg->f_max);
228 if (dev_read_bool(dev, "cap-sd-highspeed"))
229 cfg->host_caps |= MMC_CAP(SD_HS);
230 if (dev_read_bool(dev, "cap-mmc-highspeed"))
231 cfg->host_caps |= MMC_CAP(MMC_HS) | MMC_CAP(MMC_HS_52);
232 if (dev_read_bool(dev, "sd-uhs-sdr12"))
233 cfg->host_caps |= MMC_CAP(UHS_SDR12);
234 if (dev_read_bool(dev, "sd-uhs-sdr25"))
235 cfg->host_caps |= MMC_CAP(UHS_SDR25);
236 if (dev_read_bool(dev, "sd-uhs-sdr50"))
237 cfg->host_caps |= MMC_CAP(UHS_SDR50);
238 if (dev_read_bool(dev, "sd-uhs-sdr104"))
239 cfg->host_caps |= MMC_CAP(UHS_SDR104);
240 if (dev_read_bool(dev, "sd-uhs-ddr50"))
241 cfg->host_caps |= MMC_CAP(UHS_DDR50);
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"))
245 cfg->host_caps |= MMC_CAP(MMC_DDR_52);
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"))
249 cfg->host_caps |= MMC_CAP(MMC_HS_200);
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);
254 if (dev_read_bool(dev, "mmc-hs400-enhanced-strobe"))
255 cfg->host_caps |= MMC_CAP(MMC_HS_400_ES);
257 if (dev_read_bool(dev, "non-removable")) {
258 cfg->host_caps |= MMC_CAP_NONREMOVABLE;
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;
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);
274 struct mmc *mmc_get_mmc_dev(const struct udevice *dev)
276 struct mmc_uclass_priv *upriv;
278 if (!device_active(dev))
280 upriv = dev_get_uclass_priv(dev);
284 #if CONFIG_IS_ENABLED(BLK)
285 struct mmc *find_mmc_device(int dev_num)
287 struct udevice *dev, *mmc_dev;
290 ret = blk_find_device(IF_TYPE_MMC, dev_num, &dev);
293 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
294 printf("MMC Device %d not found\n", dev_num);
299 mmc_dev = dev_get_parent(dev);
301 struct mmc *mmc = mmc_get_mmc_dev(mmc_dev);
306 int get_mmc_num(void)
308 return max((blk_find_max_devnum(IF_TYPE_MMC) + 1), 0);
311 int mmc_get_next_devnum(void)
313 return blk_find_max_devnum(IF_TYPE_MMC);
316 struct blk_desc *mmc_get_blk_desc(struct mmc *mmc)
318 struct blk_desc *desc;
321 device_find_first_child(mmc->dev, &dev);
324 desc = dev_get_uclass_platdata(dev);
329 void mmc_do_preinit(void)
335 ret = uclass_get(UCLASS_MMC, &uc);
338 uclass_foreach_dev(dev, uc) {
339 struct mmc *m = mmc_get_mmc_dev(dev);
348 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
349 void print_mmc_devices(char separator)
355 for (uclass_first_device(UCLASS_MMC, &dev);
357 uclass_next_device(&dev), first = false) {
358 struct mmc *m = mmc_get_mmc_dev(dev);
361 printf("%c", separator);
362 if (separator != '\n')
366 mmc_type = IS_SD(m) ? "SD" : "eMMC";
370 printf("%s: %d", m->cfg->name, mmc_get_blk_desc(m)->devnum);
372 printf(" (%s)", mmc_type);
379 void print_mmc_devices(char separator) { }
382 int mmc_bind(struct udevice *dev, struct mmc *mmc, const struct mmc_config *cfg)
384 struct blk_desc *bdesc;
385 struct udevice *bdev;
386 int ret, devnum = -1;
388 if (!mmc_get_ops(dev))
390 #ifndef CONFIG_SPL_BUILD
391 /* Use the fixed index with aliase node's index */
392 ret = dev_read_alias_seq(dev, &devnum);
393 debug("%s: alias ret=%d, devnum=%d\n", __func__, ret, devnum);
396 ret = blk_create_devicef(dev, "mmc_blk", "blk", IF_TYPE_MMC,
397 devnum, 512, 0, &bdev);
399 debug("Cannot create block device\n");
402 bdesc = dev_get_uclass_platdata(bdev);
406 /* the following chunk was from mmc_register() */
408 /* Setup dsr related values */
410 mmc->dsr = 0xffffffff;
411 /* Setup the universal parts of the block interface just once */
412 bdesc->removable = 1;
414 /* setup initial part type */
415 bdesc->part_type = cfg->part_type;
421 int mmc_unbind(struct udevice *dev)
423 struct udevice *bdev;
425 device_find_first_child(dev, &bdev);
427 device_remove(bdev, DM_REMOVE_NORMAL);
434 static int mmc_select_hwpart(struct udevice *bdev, int hwpart)
436 struct udevice *mmc_dev = dev_get_parent(bdev);
437 struct mmc *mmc = mmc_get_mmc_dev(mmc_dev);
438 struct blk_desc *desc = dev_get_uclass_platdata(bdev);
441 if (desc->hwpart == hwpart)
444 if (mmc->part_config == MMCPART_NOAVAILABLE)
447 ret = mmc_switch_part(mmc, hwpart);
449 blkcache_invalidate(desc->if_type, desc->devnum);
454 static int mmc_blk_probe(struct udevice *dev)
456 struct udevice *mmc_dev = dev_get_parent(dev);
457 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(mmc_dev);
458 struct mmc *mmc = upriv->mmc;
463 debug("%s: mmc_init() failed (err=%d)\n", __func__, ret);
470 #if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \
471 CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
472 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
473 static int mmc_blk_remove(struct udevice *dev)
475 struct udevice *mmc_dev = dev_get_parent(dev);
476 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(mmc_dev);
477 struct mmc *mmc = upriv->mmc;
479 return mmc_deinit(mmc);
483 static const struct blk_ops mmc_blk_ops = {
485 #if CONFIG_IS_ENABLED(MMC_WRITE)
489 .select_hwpart = mmc_select_hwpart,
492 U_BOOT_DRIVER(mmc_blk) = {
496 .probe = mmc_blk_probe,
497 #if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \
498 CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
499 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
500 .remove = mmc_blk_remove,
501 .flags = DM_FLAG_OS_PREPARE,
504 #endif /* CONFIG_BLK */
507 UCLASS_DRIVER(mmc) = {
510 .flags = DM_UC_FLAG_SEQ_ALIAS,
511 .per_device_auto_alloc_size = sizeof(struct mmc_uclass_priv),