summaryrefslogtreecommitdiff
path: root/drivers/mmc/spear_sdhci.c
blob: 06179cd9f4165f0f3570898cee499d469c129d65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * (C) Copyright 2012
 * Vipin Kumar, ST Micoelectronics, vipin.kumar@st.com.
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
#include <malloc.h>
#include <sdhci.h>

int spear_sdhci_init(u32 regbase, u32 max_clk, u32 min_clk, u32 quirks)
{
	struct sdhci_host *host = NULL;
	host = (struct sdhci_host *)malloc(sizeof(struct sdhci_host));
	if (!host) {
		printf("sdhci host malloc fail!\n");
		return 1;
	}

	host->name = "sdhci";
	host->ioaddr = (void *)regbase;
	host->quirks = quirks;

	add_sdhci(host, max_clk, min_clk);
	return 0;
}