2013-04-22 12:56:49 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2013 Inc.
|
|
|
|
*
|
|
|
|
* Xilinx Zynq SD Host Controller Interface
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2013-04-22 12:56:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2014-02-24 10:16:31 +00:00
|
|
|
#include <fdtdec.h>
|
|
|
|
#include <libfdt.h>
|
2013-04-22 12:56:49 +00:00
|
|
|
#include <malloc.h>
|
|
|
|
#include <sdhci.h>
|
|
|
|
#include <asm/arch/sys_proto.h>
|
|
|
|
|
2015-01-14 15:11:47 +00:00
|
|
|
int zynq_sdhci_init(phys_addr_t regbase)
|
2013-04-22 12:56:49 +00:00
|
|
|
{
|
|
|
|
struct sdhci_host *host = NULL;
|
|
|
|
|
|
|
|
host = (struct sdhci_host *)malloc(sizeof(struct sdhci_host));
|
|
|
|
if (!host) {
|
|
|
|
printf("zynq_sdhci_init: sdhci_host malloc fail\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
host->name = "zynq_sdhci";
|
|
|
|
host->ioaddr = (void *)regbase;
|
2014-07-08 10:01:04 +00:00
|
|
|
host->quirks = SDHCI_QUIRK_WAIT_SEND_CMD |
|
2014-01-22 08:17:09 +00:00
|
|
|
SDHCI_QUIRK_BROKEN_R1B;
|
2013-04-22 12:56:49 +00:00
|
|
|
host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
|
|
|
|
|
2015-11-25 06:21:37 +00:00
|
|
|
add_sdhci(host, CONFIG_ZYNQ_SDHCI_MAX_FREQ, 0);
|
2013-04-22 12:56:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|