mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 05:34:28 +00:00
720620e691
-----BEGIN PGP SIGNATURE----- iQGzBAABCgAdFiEEGjx/cOCPqxcHgJu/FHw5/5Y0tywFAl/0YVIACgkQFHw5/5Y0 tywtEwv/cJWlKgcSnYjuJrxwuJdauUTfXdbUgtCxOtBw/BP4dsKkbGTJPw5q5M+4 LJJSKyksmJVTX26h1dpkzQjOpWtTDnWqm5CTIxD52oQD7pxK+zCQ9T6S+QbQD0Se ogHmZluzFoluxbNgo8tiO52xvMhDO3TVAzxsNDdGfkd5/tAXOHClPc34RmAkdRHU VsR89AKdT2q543fiUfrRZYDzdctaNWhRGXMDcJ4+QU/8hQhrpcr8EtHbF+3mWX4K pA01pDz150Rn4UI6S2xKEWrjSTHe55fxVj/Qj0rq9z2E/+NqGXemf5s13AR0G/z3 PqHdVLHzDe64pbOvmyU1pVQ0aMb8vMJUnqx68SQZY3On2c+MjRWQ+7aVVaKOcPGp uatk6QMrggHp3Li+3yZrLBE0qPr/sNMVb7mUesdZb6lFd2VIs8siwhfeGXMS+nDI xePzsR43Fnn5Q5KIqqvcWUb+TTTqUDUff0wyAU8NBgCaIBIZK8h2ppS1jjnbms0I mr8Er2vb =Dfum -----END PGP SIGNATURE----- Merge tag 'v2021.01-rc5' into next Prepare v2021.01-rc5 Signed-off-by: Tom Rini <trini@konsulko.com>
137 lines
2.8 KiB
C
137 lines
2.8 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2015 Atmel Corporation
|
|
* Wenyou.Yang <wenyou.yang@atmel.com>
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <clk.h>
|
|
#include <dm.h>
|
|
#include <malloc.h>
|
|
#include <sdhci.h>
|
|
#include <asm/arch/clk.h>
|
|
|
|
#define ATMEL_SDHC_MIN_FREQ 400000
|
|
#define ATMEL_SDHC_GCK_RATE 240000000
|
|
|
|
#ifndef CONFIG_DM_MMC
|
|
int atmel_sdhci_init(void *regbase, u32 id)
|
|
{
|
|
struct sdhci_host *host;
|
|
u32 max_clk, min_clk = ATMEL_SDHC_MIN_FREQ;
|
|
|
|
host = (struct sdhci_host *)calloc(1, sizeof(struct sdhci_host));
|
|
if (!host) {
|
|
printf("%s: sdhci_host calloc failed\n", __func__);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
host->name = "atmel_sdhci";
|
|
host->ioaddr = regbase;
|
|
host->quirks = SDHCI_QUIRK_WAIT_SEND_CMD;
|
|
max_clk = at91_get_periph_generated_clk(id);
|
|
if (!max_clk) {
|
|
printf("%s: Failed to get the proper clock\n", __func__);
|
|
free(host);
|
|
return -ENODEV;
|
|
}
|
|
host->max_clk = max_clk;
|
|
|
|
add_sdhci(host, 0, min_clk);
|
|
|
|
return 0;
|
|
}
|
|
|
|
#else
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
struct atmel_sdhci_plat {
|
|
struct mmc_config cfg;
|
|
struct mmc mmc;
|
|
};
|
|
|
|
static int atmel_sdhci_probe(struct udevice *dev)
|
|
{
|
|
struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
|
|
struct atmel_sdhci_plat *plat = dev_get_plat(dev);
|
|
struct sdhci_host *host = dev_get_priv(dev);
|
|
u32 max_clk;
|
|
struct clk clk;
|
|
int ret;
|
|
|
|
ret = clk_get_by_index(dev, 0, &clk);
|
|
if (ret)
|
|
return ret;
|
|
|
|
ret = clk_enable(&clk);
|
|
if (ret)
|
|
return ret;
|
|
|
|
host->name = dev->name;
|
|
host->ioaddr = dev_read_addr_ptr(dev);
|
|
|
|
host->quirks = SDHCI_QUIRK_WAIT_SEND_CMD;
|
|
host->bus_width = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
|
|
"bus-width", 4);
|
|
|
|
ret = clk_get_by_index(dev, 1, &clk);
|
|
if (ret)
|
|
return ret;
|
|
|
|
clk_set_rate(&clk, ATMEL_SDHC_GCK_RATE);
|
|
|
|
max_clk = clk_get_rate(&clk);
|
|
if (!max_clk)
|
|
return -EINVAL;
|
|
|
|
ret = clk_enable(&clk);
|
|
/* return error only if the clock really has a clock enable func */
|
|
if (ret && ret != -ENOSYS)
|
|
return ret;
|
|
|
|
ret = mmc_of_parse(dev, &plat->cfg);
|
|
if (ret)
|
|
return ret;
|
|
|
|
host->max_clk = max_clk;
|
|
host->mmc = &plat->mmc;
|
|
host->mmc->dev = dev;
|
|
|
|
ret = sdhci_setup_cfg(&plat->cfg, host, 0, ATMEL_SDHC_MIN_FREQ);
|
|
if (ret)
|
|
return ret;
|
|
|
|
host->mmc->priv = host;
|
|
upriv->mmc = host->mmc;
|
|
|
|
clk_free(&clk);
|
|
|
|
return sdhci_probe(dev);
|
|
}
|
|
|
|
static int atmel_sdhci_bind(struct udevice *dev)
|
|
{
|
|
struct atmel_sdhci_plat *plat = dev_get_plat(dev);
|
|
|
|
return sdhci_bind(dev, &plat->mmc, &plat->cfg);
|
|
}
|
|
|
|
static const struct udevice_id atmel_sdhci_ids[] = {
|
|
{ .compatible = "atmel,sama5d2-sdhci" },
|
|
{ .compatible = "microchip,sam9x60-sdhci" },
|
|
{ .compatible = "microchip,sama7g5-sdhci" },
|
|
{ }
|
|
};
|
|
|
|
U_BOOT_DRIVER(atmel_sdhci_drv) = {
|
|
.name = "atmel_sdhci",
|
|
.id = UCLASS_MMC,
|
|
.of_match = atmel_sdhci_ids,
|
|
.ops = &sdhci_ops,
|
|
.bind = atmel_sdhci_bind,
|
|
.probe = atmel_sdhci_probe,
|
|
.priv_auto = sizeof(struct sdhci_host),
|
|
.plat_auto = sizeof(struct atmel_sdhci_plat),
|
|
};
|
|
#endif
|