]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/mmc/atmel_sdhci.c
Merge git://git.denx.de/u-boot-mmc
[people/ms/u-boot.git] / drivers / mmc / atmel_sdhci.c
CommitLineData
a3b59b15
WY
1/*
2 * Copyright (C) 2015 Atmel Corporation
3 * Wenyou.Yang <wenyou.yang@atmel.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
a0d0d86f
WY
9#include <clk.h>
10#include <dm.h>
a3b59b15
WY
11#include <malloc.h>
12#include <sdhci.h>
13#include <asm/arch/clk.h>
14
15#define ATMEL_SDHC_MIN_FREQ 400000
327713a6 16#define ATMEL_SDHC_GCK_RATE 240000000
a3b59b15 17
a0d0d86f 18#ifndef CONFIG_DM_MMC
a3b59b15
WY
19int atmel_sdhci_init(void *regbase, u32 id)
20{
21 struct sdhci_host *host;
22 u32 max_clk, min_clk = ATMEL_SDHC_MIN_FREQ;
23
24 host = (struct sdhci_host *)calloc(1, sizeof(struct sdhci_host));
25 if (!host) {
26 printf("%s: sdhci_host calloc failed\n", __func__);
27 return -ENOMEM;
28 }
29
30 host->name = "atmel_sdhci";
31 host->ioaddr = regbase;
b3125088 32 host->quirks = SDHCI_QUIRK_WAIT_SEND_CMD;
a3b59b15
WY
33 max_clk = at91_get_periph_generated_clk(id);
34 if (!max_clk) {
35 printf("%s: Failed to get the proper clock\n", __func__);
36 free(host);
37 return -ENODEV;
38 }
6d0e34bf 39 host->max_clk = max_clk;
a3b59b15 40
6d0e34bf 41 add_sdhci(host, 0, min_clk);
a3b59b15
WY
42
43 return 0;
44}
a0d0d86f
WY
45
46#else
47
48DECLARE_GLOBAL_DATA_PTR;
49
50struct atmel_sdhci_plat {
51 struct mmc_config cfg;
52 struct mmc mmc;
53};
54
a0d0d86f
WY
55static int atmel_sdhci_probe(struct udevice *dev)
56{
57 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
58 struct atmel_sdhci_plat *plat = dev_get_platdata(dev);
59 struct sdhci_host *host = dev_get_priv(dev);
60 u32 max_clk;
a0d0d86f
WY
61 struct clk clk;
62 int ret;
63
339cb073 64 ret = clk_get_by_index(dev, 0, &clk);
a0d0d86f
WY
65 if (ret)
66 return ret;
67
68 ret = clk_enable(&clk);
69 if (ret)
70 return ret;
71
72 host->name = dev->name;
a821c4af 73 host->ioaddr = (void *)devfdt_get_addr(dev);
a0d0d86f 74
b3125088 75 host->quirks = SDHCI_QUIRK_WAIT_SEND_CMD;
e160f7d4 76 host->bus_width = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
a0d0d86f
WY
77 "bus-width", 4);
78
339cb073 79 ret = clk_get_by_index(dev, 1, &clk);
a0d0d86f
WY
80 if (ret)
81 return ret;
82
327713a6 83 ret = clk_set_rate(&clk, ATMEL_SDHC_GCK_RATE);
a0d0d86f
WY
84 if (ret)
85 return ret;
86
87 max_clk = clk_get_rate(&clk);
88 if (!max_clk)
89 return -EINVAL;
90
6d0e34bf
SH
91 host->max_clk = max_clk;
92
93 ret = sdhci_setup_cfg(&plat->cfg, host, 0, ATMEL_SDHC_MIN_FREQ);
a0d0d86f
WY
94 if (ret)
95 return ret;
96
97 host->mmc = &plat->mmc;
98 host->mmc->dev = dev;
99 host->mmc->priv = host;
100 upriv->mmc = host->mmc;
101
102 clk_free(&clk);
103
104 return sdhci_probe(dev);
105}
106
107static int atmel_sdhci_bind(struct udevice *dev)
108{
109 struct atmel_sdhci_plat *plat = dev_get_platdata(dev);
a0d0d86f 110
24f5aec3 111 return sdhci_bind(dev, &plat->mmc, &plat->cfg);
a0d0d86f
WY
112}
113
114static const struct udevice_id atmel_sdhci_ids[] = {
115 { .compatible = "atmel,sama5d2-sdhci" },
116 { }
117};
118
119U_BOOT_DRIVER(atmel_sdhci_drv) = {
120 .name = "atmel_sdhci",
121 .id = UCLASS_MMC,
122 .of_match = atmel_sdhci_ids,
123 .ops = &sdhci_ops,
124 .bind = atmel_sdhci_bind,
125 .probe = atmel_sdhci_probe,
126 .priv_auto_alloc_size = sizeof(struct sdhci_host),
127 .platdata_auto_alloc_size = sizeof(struct atmel_sdhci_plat),
128};
129#endif