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