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