2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-01-28 10:00:18 +00:00
|
|
|
/*
|
|
|
|
* Support of SDHCI for Microchip PIC32 SoC.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 Microchip Technology Inc.
|
|
|
|
* Andrei Pistirica <andrei.pistirica@microchip.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2017-05-17 23:18:07 +00:00
|
|
|
#include <dm.h>
|
2016-01-28 10:00:18 +00:00
|
|
|
#include <sdhci.h>
|
2016-09-21 02:28:55 +00:00
|
|
|
#include <linux/errno.h>
|
2016-01-28 10:00:18 +00:00
|
|
|
#include <mach/pic32.h>
|
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2017-01-13 03:13:48 +00:00
|
|
|
static int pic32_sdhci_get_cd(struct sdhci_host *host)
|
2016-12-30 06:30:14 +00:00
|
|
|
{
|
|
|
|
/* PIC32 SDHCI CD errata:
|
|
|
|
* - set CD_TEST and clear CD_TEST_INS bit
|
|
|
|
*/
|
|
|
|
sdhci_writeb(host, SDHCI_CTRL_CD_TEST, SDHCI_HOST_CONTROL);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct sdhci_ops pic32_sdhci_ops = {
|
2017-01-13 03:13:48 +00:00
|
|
|
.get_cd = pic32_sdhci_get_cd,
|
2016-12-30 06:30:14 +00:00
|
|
|
};
|
|
|
|
|
2016-01-28 10:00:18 +00:00
|
|
|
static int pic32_sdhci_probe(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct sdhci_host *host = dev_get_priv(dev);
|
|
|
|
const void *fdt = gd->fdt_blob;
|
|
|
|
u32 f_min_max[2];
|
|
|
|
fdt_addr_t addr;
|
|
|
|
fdt_size_t size;
|
|
|
|
int ret;
|
|
|
|
|
2017-01-17 23:52:55 +00:00
|
|
|
addr = fdtdec_get_addr_size(fdt, dev_of_offset(dev), "reg", &size);
|
2016-01-28 10:00:18 +00:00
|
|
|
if (addr == FDT_ADDR_T_NONE)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
host->ioaddr = ioremap(addr, size);
|
2016-04-22 11:59:31 +00:00
|
|
|
host->name = dev->name;
|
2016-12-30 06:30:15 +00:00
|
|
|
host->quirks = SDHCI_QUIRK_NO_HISPD_BIT;
|
2017-01-17 23:52:55 +00:00
|
|
|
host->bus_width = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
|
2016-01-28 10:00:18 +00:00
|
|
|
"bus-width", 4);
|
2016-12-30 06:30:14 +00:00
|
|
|
host->ops = &pic32_sdhci_ops;
|
2016-01-28 10:00:18 +00:00
|
|
|
|
2017-01-17 23:52:55 +00:00
|
|
|
ret = fdtdec_get_int_array(gd->fdt_blob, dev_of_offset(dev),
|
2016-01-28 10:00:18 +00:00
|
|
|
"clock-freq-min-max", f_min_max, 2);
|
|
|
|
if (ret) {
|
|
|
|
printf("sdhci: clock-freq-min-max not found\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-01-17 14:58:48 +00:00
|
|
|
host->max_clk = f_min_max[1];
|
|
|
|
|
|
|
|
ret = add_sdhci(host, 0, f_min_max[0]);
|
2016-05-01 19:52:34 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
host->mmc->dev = dev;
|
|
|
|
|
|
|
|
return 0;
|
2016-01-28 10:00:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct udevice_id pic32_sdhci_ids[] = {
|
|
|
|
{ .compatible = "microchip,pic32mzda-sdhci" },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(pic32_sdhci_drv) = {
|
|
|
|
.name = "pic32_sdhci",
|
|
|
|
.id = UCLASS_MMC,
|
|
|
|
.of_match = pic32_sdhci_ids,
|
|
|
|
.probe = pic32_sdhci_probe,
|
|
|
|
.priv_auto_alloc_size = sizeof(struct sdhci_host),
|
|
|
|
};
|