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