blob: 9d8a392ed9646b346061de53b00876adc26acded [file] [log] [blame]
Andrei Pistirica102142c2016-01-28 15:30:18 +05301/*
2 * Support of SDHCI for Microchip PIC32 SoC.
3 *
4 * Copyright (C) 2015 Microchip Technology Inc.
5 * Andrei Pistirica <andrei.pistirica@microchip.com>
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10#include <dm.h>
11#include <common.h>
12#include <sdhci.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090013#include <linux/errno.h>
Andrei Pistirica102142c2016-01-28 15:30:18 +053014#include <mach/pic32.h>
15
16DECLARE_GLOBAL_DATA_PTR;
17
Masahiro Yamada2cd44e12017-01-13 12:13:48 +090018static int pic32_sdhci_get_cd(struct sdhci_host *host)
Jaehoon Chung5e962172016-12-30 15:30:14 +090019{
20 /* PIC32 SDHCI CD errata:
21 * - set CD_TEST and clear CD_TEST_INS bit
22 */
23 sdhci_writeb(host, SDHCI_CTRL_CD_TEST, SDHCI_HOST_CONTROL);
24
25 return 0;
26}
27
28static const struct sdhci_ops pic32_sdhci_ops = {
Masahiro Yamada2cd44e12017-01-13 12:13:48 +090029 .get_cd = pic32_sdhci_get_cd,
Jaehoon Chung5e962172016-12-30 15:30:14 +090030};
31
Andrei Pistirica102142c2016-01-28 15:30:18 +053032static int pic32_sdhci_probe(struct udevice *dev)
33{
34 struct sdhci_host *host = dev_get_priv(dev);
35 const void *fdt = gd->fdt_blob;
36 u32 f_min_max[2];
37 fdt_addr_t addr;
38 fdt_size_t size;
39 int ret;
40
Simon Glasse160f7d2017-01-17 16:52:55 -070041 addr = fdtdec_get_addr_size(fdt, dev_of_offset(dev), "reg", &size);
Andrei Pistirica102142c2016-01-28 15:30:18 +053042 if (addr == FDT_ADDR_T_NONE)
43 return -EINVAL;
44
45 host->ioaddr = ioremap(addr, size);
Masahiro Yamadacacd1d22016-04-22 20:59:31 +090046 host->name = dev->name;
Jaehoon Chung6f88a3a2016-12-30 15:30:15 +090047 host->quirks = SDHCI_QUIRK_NO_HISPD_BIT;
Simon Glasse160f7d2017-01-17 16:52:55 -070048 host->bus_width = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
Andrei Pistirica102142c2016-01-28 15:30:18 +053049 "bus-width", 4);
Jaehoon Chung5e962172016-12-30 15:30:14 +090050 host->ops = &pic32_sdhci_ops;
Andrei Pistirica102142c2016-01-28 15:30:18 +053051
Simon Glasse160f7d2017-01-17 16:52:55 -070052 ret = fdtdec_get_int_array(gd->fdt_blob, dev_of_offset(dev),
Andrei Pistirica102142c2016-01-28 15:30:18 +053053 "clock-freq-min-max", f_min_max, 2);
54 if (ret) {
55 printf("sdhci: clock-freq-min-max not found\n");
56 return ret;
57 }
58
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +010059 host->max_clk = f_min_max[1];
60
61 ret = add_sdhci(host, 0, f_min_max[0]);
Simon Glasscffe5d82016-05-01 13:52:34 -060062 if (ret)
63 return ret;
64 host->mmc->dev = dev;
65
66 return 0;
Andrei Pistirica102142c2016-01-28 15:30:18 +053067}
68
69static const struct udevice_id pic32_sdhci_ids[] = {
70 { .compatible = "microchip,pic32mzda-sdhci" },
71 { }
72};
73
74U_BOOT_DRIVER(pic32_sdhci_drv) = {
75 .name = "pic32_sdhci",
76 .id = UCLASS_MMC,
77 .of_match = pic32_sdhci_ids,
78 .probe = pic32_sdhci_probe,
79 .priv_auto_alloc_size = sizeof(struct sdhci_host),
80};