hc
2024-08-12 233ab1bd4c5697f5cdec94e60206e8c6ac609b4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
/*
 * (C) Copyright 2016 Fuzhou Rockchip Electronics Co., Ltd
 *
 * Rockchip SD Host Controller Interface
 *
 * SPDX-License-Identifier:    GPL-2.0+
 */
 
#include <asm/arch/hardware.h>
#include <common.h>
#include <dm.h>
#include <dt-structs.h>
#include <linux/libfdt.h>
#include <malloc.h>
#include <mapmem.h>
#include <sdhci.h>
#include <clk.h>
#include <syscon.h>
#include <dm/ofnode.h>
#include <asm/arch/clock.h>
 
DECLARE_GLOBAL_DATA_PTR;
/* 400KHz is max freq for card ID etc. Use that as min */
#define EMMC_MIN_FREQ    400000
#define KHz    (1000)
#define MHz    (1000 * KHz)
 
#define PHYCTRL_CALDONE_MASK        0x1
#define PHYCTRL_CALDONE_SHIFT        0x6
#define PHYCTRL_CALDONE_DONE        0x1
#define PHYCTRL_DLLRDY_MASK        0x1
#define PHYCTRL_DLLRDY_SHIFT        0x5
#define PHYCTRL_DLLRDY_DONE        0x1
#define PHYCTRL_FREQSEL_200M        0x0
#define PHYCTRL_FREQSEL_50M        0x1
#define PHYCTRL_FREQSEL_100M        0x2
#define PHYCTRL_FREQSEL_150M        0x3
#define PHYCTRL_DLL_LOCK_WO_TMOUT(x)    \
   ((((x) >> PHYCTRL_DLLRDY_SHIFT) & PHYCTRL_DLLRDY_MASK) ==\
   PHYCTRL_DLLRDY_DONE)
 
/* Rockchip specific Registers */
#define DWCMSHC_CTRL_HS400        0x7
#define DWCMSHC_CARD_IS_EMMC        BIT(0)
#define DWCMSHC_ENHANCED_STROBE        BIT(8)
 
#define DWCMSHC_HOST_CTRL3        0x508
#define DWCMSHC_EMMC_CONTROL        0x52c
#define DWCMSHC_EMMC_DLL_CTRL        0x800
#define DWCMSHC_EMMC_DLL_CTRL_RESET    BIT(1)
#define DWCMSHC_EMMC_DLL_RXCLK        0x804
#define DWCMSHC_EMMC_DLL_TXCLK        0x808
#define DWCMSHC_EMMC_DLL_STRBIN        0x80c
#define DECMSHC_EMMC_DLL_CMDOUT        0x810
#define DWCMSHC_EMMC_DLL_STATUS0    0x840
#define DWCMSHC_EMMC_DLL_STATUS1    0x844
#define DWCMSHC_EMMC_DLL_START        BIT(0)
#define DWCMSHC_EMMC_DLL_RXCLK_SRCSEL    29
#define DWCMSHC_EMMC_DLL_START_POINT    16
#define DWCMSHC_EMMC_DLL_START_DEFAULT    5
#define DWCMSHC_EMMC_DLL_INC_VALUE    2
#define DWCMSHC_EMMC_DLL_INC        8
#define DWCMSHC_EMMC_DLL_DLYENA        BIT(27)
#define DLL_TXCLK_TAPNUM_DEFAULT    0x10
#define DLL_TXCLK_TAPNUM_90_DEGREES    0x8
#define DLL_STRBIN_TAPNUM_DEFAULT    0x3
#define DLL_TXCLK_TAPNUM_FROM_SW    BIT(24)
#define DLL_TXCLK_NO_INVERTER        BIT(29)
#define DWCMSHC_EMMC_DLL_LOCKED        BIT(8)
#define DWCMSHC_EMMC_DLL_TIMEOUT    BIT(9)
#define DLL_RXCLK_NO_INVERTER        1
#define DLL_RXCLK_INVERTER        0
#define DLL_CMDOUT_TAPNUM_90_DEGREES    0x8
#define DLL_CMDOUT_TAPNUM_FROM_SW    BIT(24)
#define DLL_CMDOUT_SRC_CLK_NEG        BIT(28)
#define DLL_CMDOUT_EN_SRC_CLK_NEG    BIT(29)
 
#define DWCMSHC_ENHANCED_STROBE        BIT(8)
#define DLL_LOCK_WO_TMOUT(x) \
   ((((x) & DWCMSHC_EMMC_DLL_LOCKED) == DWCMSHC_EMMC_DLL_LOCKED) && \
   (((x) & DWCMSHC_EMMC_DLL_TIMEOUT) == 0))
#define ROCKCHIP_MAX_CLKS        3
 
struct rockchip_sdhc_plat {
#if CONFIG_IS_ENABLED(OF_PLATDATA)
   struct dtd_rockchip_rk3399_sdhci_5_1 dtplat;
#endif
   struct mmc_config cfg;
   struct mmc mmc;
};
 
struct rockchip_emmc_phy {
   u32 emmcphy_con[7];
   u32 reserved;
   u32 emmcphy_status;
};
 
struct rockchip_sdhc {
   struct sdhci_host host;
   struct udevice *dev;
   void *base;
   struct rockchip_emmc_phy *phy;
   struct clk emmc_clk;
};
 
struct sdhci_data {
   int (*emmc_set_clock)(struct sdhci_host *host, unsigned int clock);
   void (*set_ios_post)(struct sdhci_host *host);
   int (*get_phy)(struct udevice *dev);
   u32 flags;
#define RK_DLL_CMD_OUT        BIT(1)
#define RK_RXCLK_NO_INVERTER    BIT(2)
};
 
static void rk3399_emmc_phy_power_on(struct rockchip_emmc_phy *phy, u32 clock)
{
   u32 caldone, dllrdy, freqsel;
   uint start;
 
   writel(RK_CLRSETBITS(7 << 4, 0), &phy->emmcphy_con[6]);
   writel(RK_CLRSETBITS(1 << 11, 1 << 11), &phy->emmcphy_con[0]);
   writel(RK_CLRSETBITS(0xf << 7, 6 << 7), &phy->emmcphy_con[0]);
 
   /*
    * According to the user manual, calpad calibration
    * cycle takes more than 2us without the minimal recommended
    * value, so we may need a little margin here
    */
   udelay(3);
   writel(RK_CLRSETBITS(1, 1), &phy->emmcphy_con[6]);
 
   /*
    * According to the user manual, it asks driver to
    * wait 5us for calpad busy trimming. But it seems that
    * 5us of caldone isn't enough for all cases.
    */
   udelay(500);
   caldone = readl(&phy->emmcphy_status);
   caldone = (caldone >> PHYCTRL_CALDONE_SHIFT) & PHYCTRL_CALDONE_MASK;
   if (caldone != PHYCTRL_CALDONE_DONE) {
       printf("%s: caldone timeout.\n", __func__);
       return;
   }
 
   /* Set the frequency of the DLL operation */
   if (clock < 75 * MHz)
       freqsel = PHYCTRL_FREQSEL_50M;
   else if (clock < 125 * MHz)
       freqsel = PHYCTRL_FREQSEL_100M;
   else if (clock < 175 * MHz)
       freqsel = PHYCTRL_FREQSEL_150M;
   else
       freqsel = PHYCTRL_FREQSEL_200M;
 
   /* Set the frequency of the DLL operation */
   writel(RK_CLRSETBITS(3 << 12, freqsel << 12), &phy->emmcphy_con[0]);
   writel(RK_CLRSETBITS(1 << 1, 1 << 1), &phy->emmcphy_con[6]);
 
   /* REN Enable on STRB Line for HS400 */
   writel(RK_CLRSETBITS(0, 1 << 9), &phy->emmcphy_con[2]);
 
   start = get_timer(0);
 
   do {
       udelay(1);
       dllrdy = readl(&phy->emmcphy_status);
       dllrdy = (dllrdy >> PHYCTRL_DLLRDY_SHIFT) & PHYCTRL_DLLRDY_MASK;
       if (dllrdy == PHYCTRL_DLLRDY_DONE)
           break;
   } while (get_timer(start) < 50000);
 
   if (dllrdy != PHYCTRL_DLLRDY_DONE)
       printf("%s: dllrdy timeout.\n", __func__);
}
 
static void rk3399_emmc_phy_power_off(struct rockchip_emmc_phy *phy)
{
   writel(RK_CLRSETBITS(1, 0), &phy->emmcphy_con[6]);
   writel(RK_CLRSETBITS(1 << 1, 0), &phy->emmcphy_con[6]);
}
 
static int rockchip_emmc_set_clock(struct sdhci_host *host, unsigned int clock)
{
   unsigned int div, clk = 0, timeout;
   unsigned int input_clk;
   struct rockchip_sdhc *priv =
           container_of(host, struct rockchip_sdhc, host);
 
   /* Wait max 20 ms */
   timeout = 200;
   while (sdhci_readl(host, SDHCI_PRESENT_STATE) &
              (SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT)) {
       if (timeout == 0) {
           printf("%s: Timeout to wait cmd & data inhibit\n",
                  __func__);
           return -EBUSY;
       }
 
       timeout--;
       udelay(100);
   }
   sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
 
   if (clock == 0)
       return 0;
 
   input_clk = clk_set_rate(&priv->emmc_clk, clock);
   if (IS_ERR_VALUE(input_clk))
       input_clk = host->max_clk;
 
   if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
       /*
        * Check if the Host Controller supports Programmable Clock
        * Mode.
        */
       if (host->clk_mul) {
           for (div = 1; div <= 1024; div++) {
               if ((input_clk / div) <= clock)
                   break;
           }
 
           /*
            * Set Programmable Clock Mode in the Clock
            * Control register.
            */
           clk = SDHCI_PROG_CLOCK_MODE;
           div--;
       } else {
           /* Version 3.00 divisors must be a multiple of 2. */
           if (input_clk <= clock) {
               div = 1;
           } else {
               for (div = 2;
                    div < SDHCI_MAX_DIV_SPEC_300;
                    div += 2) {
                   if ((input_clk / div) <= clock)
                       break;
               }
           }
           div >>= 1;
       }
   } else {
       /* Version 2.00 divisors must be a power of 2. */
       for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
           if ((input_clk / div) <= clock)
               break;
       }
       div >>= 1;
   }
 
   clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
   clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
       << SDHCI_DIVIDER_HI_SHIFT;
   clk |= SDHCI_CLOCK_INT_EN;
   sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
 
   /* Wait max 20 ms */
   timeout = 20;
   while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
       & SDHCI_CLOCK_INT_STABLE)) {
       if (timeout == 0) {
           printf("%s: Internal clock never stabilised.\n",
                  __func__);
           return -EBUSY;
       }
       timeout--;
       udelay(1000);
   }
   clk |= SDHCI_CLOCK_CARD_EN;
   sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
   host->clock = clock;
 
   return 0;
}
 
static int rk3399_emmc_get_phy(struct udevice *dev)
{
   struct rockchip_sdhc *priv = dev_get_priv(dev);
 
#if CONFIG_IS_ENABLED(OF_PLATDATA)
   priv->phy = (struct rockchip_emmc_phy *)0xff77f780;
#else
   ofnode phy_node;
   void *grf_base;
   u32 grf_phy_offset, phandle;
 
   phandle = dev_read_u32_default(dev, "phys", 0);
   phy_node = ofnode_get_by_phandle(phandle);
   if (!ofnode_valid(phy_node)) {
       debug("Not found emmc phy device\n");
       return -ENODEV;
   }
 
   grf_base = syscon_get_first_range(ROCKCHIP_SYSCON_GRF);
   if (IS_ERR(grf_base))
       printf("%s Get syscon grf failed", __func__);
   grf_phy_offset = ofnode_read_u32_default(phy_node, "reg", 0);
 
   priv->phy = (struct rockchip_emmc_phy *)(grf_base + grf_phy_offset);
#endif
   return 0;
}
 
static int rk3399_sdhci_emmc_set_clock(struct sdhci_host *host, unsigned int clock)
{
   struct rockchip_sdhc *priv =
           container_of(host, struct rockchip_sdhc, host);
   int cycle_phy = host->clock != clock &&
           clock > EMMC_MIN_FREQ;
 
   if (cycle_phy)
       rk3399_emmc_phy_power_off(priv->phy);
 
   rockchip_emmc_set_clock(host, clock);
 
   if (cycle_phy)
       rk3399_emmc_phy_power_on(priv->phy, clock);
 
   return 0;
}
 
static int dwcmshc_sdhci_emmc_set_clock(struct sdhci_host *host, unsigned int clock)
{
   struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host);
   struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(priv->dev);
   u32 extra;
   int timeout = 500, ret;
 
   ret = rockchip_emmc_set_clock(host, clock);
 
   if (clock >= 100 * MHz) {
       /* reset DLL */
       sdhci_writel(host, DWCMSHC_EMMC_DLL_CTRL_RESET, DWCMSHC_EMMC_DLL_CTRL);
       udelay(1);
       sdhci_writel(host, 0, DWCMSHC_EMMC_DLL_CTRL);
 
       /* Init DLL settings */
       extra = DWCMSHC_EMMC_DLL_START_DEFAULT << DWCMSHC_EMMC_DLL_START_POINT |
           DWCMSHC_EMMC_DLL_INC_VALUE << DWCMSHC_EMMC_DLL_INC |
           DWCMSHC_EMMC_DLL_START;
       sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_CTRL);
 
       while (1) {
           if (timeout < 0)
               return -ETIMEDOUT;
           if (DLL_LOCK_WO_TMOUT((sdhci_readl(host, DWCMSHC_EMMC_DLL_STATUS0))))
               break;
           udelay(1);
           timeout--;
       }
       extra = DWCMSHC_EMMC_DLL_DLYENA;
       if (data->flags & RK_RXCLK_NO_INVERTER)
           extra |= DLL_RXCLK_NO_INVERTER << DWCMSHC_EMMC_DLL_RXCLK_SRCSEL;
       sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_RXCLK);
 
       extra = DWCMSHC_EMMC_DLL_DLYENA |
           DLL_TXCLK_TAPNUM_FROM_SW |
           DLL_TXCLK_NO_INVERTER|
           DLL_TXCLK_TAPNUM_DEFAULT;
 
       sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_TXCLK);
 
       extra = DWCMSHC_EMMC_DLL_DLYENA |
           DLL_STRBIN_TAPNUM_DEFAULT;
       sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_STRBIN);
   } else {
       /* Disable cmd conflict check */
       extra = sdhci_readl(host, DWCMSHC_HOST_CTRL3);
       extra &= ~BIT(0);
       sdhci_writel(host, extra, DWCMSHC_HOST_CTRL3);
 
       /* reset the clock phase when the frequency is lower than 100MHz */
       sdhci_writel(host, 0, DWCMSHC_EMMC_DLL_CTRL);
       sdhci_writel(host, 0, DWCMSHC_EMMC_DLL_RXCLK);
       sdhci_writel(host, 0, DWCMSHC_EMMC_DLL_TXCLK);
       sdhci_writel(host, 0, DWCMSHC_EMMC_DLL_STRBIN);
       sdhci_writel(host, 0, DECMSHC_EMMC_DLL_CMDOUT);
   }
   return ret;
}
 
static void dwcmshc_sdhci_set_ios_post(struct sdhci_host *host)
{
   u16 ctrl;
   u32 extra;
   u32 timing = host->mmc->timing;
 
   if (timing == MMC_TIMING_MMC_HS400 || timing == MMC_TIMING_MMC_HS400ES) {
       ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
       ctrl &= ~SDHCI_CTRL_UHS_MASK;
       ctrl |= DWCMSHC_CTRL_HS400;
       sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
 
       /* set CARD_IS_EMMC bit to enable Data Strobe for HS400 */
       ctrl = sdhci_readw(host, DWCMSHC_EMMC_CONTROL);
       ctrl |= DWCMSHC_CARD_IS_EMMC;
       sdhci_writew(host, ctrl, DWCMSHC_EMMC_CONTROL);
 
       extra = DLL_CMDOUT_SRC_CLK_NEG |
           DLL_CMDOUT_EN_SRC_CLK_NEG;
       sdhci_writel(host, extra, DECMSHC_EMMC_DLL_CMDOUT);
 
       extra = DWCMSHC_EMMC_DLL_DLYENA |
           DLL_TXCLK_TAPNUM_FROM_SW |
           DLL_TXCLK_NO_INVERTER|
           DLL_TXCLK_TAPNUM_90_DEGREES;
       sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_TXCLK);
   }
}
 
static int dwcmshc_emmc_get_phy(struct udevice *dev)
{
   return 0;
}
 
static int rockchip_sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
{
   struct rockchip_sdhc *priv =
           container_of(host, struct rockchip_sdhc, host);
   struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(priv->dev);
   if (!data)
       return -EINVAL;
 
   return data->emmc_set_clock(host, clock);
}
 
static void rockchip_sdhci_set_ios_post(struct sdhci_host *host)
{
   struct rockchip_sdhc *priv =
           container_of(host, struct rockchip_sdhc, host);
   struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(priv->dev);
 
   if (data && data->set_ios_post)
       data->set_ios_post(host);
}
 
static struct sdhci_ops rockchip_sdhci_ops = {
   .set_clock    = rockchip_sdhci_set_clock,
   .set_ios_post    = rockchip_sdhci_set_ios_post,
};
 
static int rockchip_sdhci_probe(struct udevice *dev)
{
   struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(dev);
   struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
   struct rockchip_sdhc_plat *plat = dev_get_platdata(dev);
   struct rockchip_sdhc *prv = dev_get_priv(dev);
   struct sdhci_host *host = &prv->host;
   int max_frequency, ret;
   struct clk clk;
 
#if CONFIG_IS_ENABLED(OF_PLATDATA)
   struct dtd_rockchip_rk3399_sdhci_5_1 *dtplat = &plat->dtplat;
 
   host->name = dev->name;
   host->ioaddr = map_sysmem(dtplat->reg[0], dtplat->reg[1]);
   host->host_caps |= MMC_MODE_8BIT;
   max_frequency = dtplat->max_frequency;
   ret = clk_get_by_index_platdata(dev, 0, dtplat->clocks, &clk);
#else
   max_frequency = dev_read_u32_default(dev, "max-frequency", 0);
   switch (dev_read_u32_default(dev, "bus-width", 4)) {
   case 8:
       host->host_caps |= MMC_MODE_8BIT;
       break;
   case 4:
       host->host_caps |= MMC_MODE_4BIT;
       break;
   case 1:
       break;
   default:
       printf("Invalid \"bus-width\" value\n");
       return -EINVAL;
   }
   ret = clk_get_by_index(dev, 0, &clk);
#endif
   if (!ret) {
       ret = clk_set_rate(&clk, max_frequency);
       if (IS_ERR_VALUE(ret))
           printf("%s clk set rate fail!\n", __func__);
   } else {
       printf("%s fail to get clk\n", __func__);
   }
 
   prv->emmc_clk = clk;
   prv->dev = dev;
   ret = data->get_phy(dev);
   if (ret)
       return ret;
 
   host->ops = &rockchip_sdhci_ops;
 
   host->max_clk = max_frequency;
 
   if (dev_read_bool(dev, "mmc-hs200-1_8v"))
       host->host_caps |= MMC_MODE_HS200;
   else if (dev_read_bool(dev, "mmc-hs400-1_8v"))
       host->host_caps |= MMC_MODE_HS400;
   ret = sdhci_setup_cfg(&plat->cfg, host, 0, EMMC_MIN_FREQ);
 
   host->mmc = &plat->mmc;
   if (ret)
       return ret;
   host->mmc->priv = &prv->host;
   host->mmc->dev = dev;
   upriv->mmc = host->mmc;
 
   return sdhci_probe(dev);
}
 
static int rockchip_sdhci_of_to_plat(struct udevice *dev)
{
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
   struct sdhci_host *host = dev_get_priv(dev);
 
   host->name = dev->name;
   host->ioaddr = dev_read_addr_ptr(dev);
#endif
 
   return 0;
}
 
static int rockchip_sdhci_bind(struct udevice *dev)
{
   struct rockchip_sdhc_plat *plat = dev_get_platdata(dev);
 
   return sdhci_bind(dev, &plat->mmc, &plat->cfg);
}
 
static const struct sdhci_data arasan_data = {
   .emmc_set_clock = rk3399_sdhci_emmc_set_clock,
   .get_phy = rk3399_emmc_get_phy,
};
 
static const struct sdhci_data rk3568_data = {
   .emmc_set_clock = dwcmshc_sdhci_emmc_set_clock,
   .get_phy = dwcmshc_emmc_get_phy,
   .flags = RK_RXCLK_NO_INVERTER,
};
 
static const struct sdhci_data rk3588_data = {
   .emmc_set_clock = dwcmshc_sdhci_emmc_set_clock,
   .get_phy = dwcmshc_emmc_get_phy,
   .set_ios_post = dwcmshc_sdhci_set_ios_post,
   .flags = RK_DLL_CMD_OUT | RK_RXCLK_NO_INVERTER,
};
 
static const struct udevice_id sdhci_ids[] = {
   {
       .compatible = "arasan,sdhci-5.1",
       .data = (ulong)&arasan_data,
   },
   {
       .compatible = "snps,dwcmshc-sdhci",
       .data = (ulong)&rk3568_data,
   },
   {
       .compatible = "rockchip,rk3588-dwcmshc",
       .data = (ulong)&rk3588_data,
   },
   { }
};
 
U_BOOT_DRIVER(arasan_sdhci_drv) = {
   .name        = "rockchip_sdhci_5_1",
   .id        = UCLASS_MMC,
   .of_match    = sdhci_ids,
   .ofdata_to_platdata = rockchip_sdhci_of_to_plat,
   .ops        = &sdhci_ops,
   .bind        = rockchip_sdhci_bind,
   .probe        = rockchip_sdhci_probe,
   .priv_auto_alloc_size = sizeof(struct rockchip_sdhc),
   .platdata_auto_alloc_size = sizeof(struct rockchip_sdhc_plat),
};