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