xref: /openbmc/u-boot/arch/arm/mach-bcm283x/include/mach/sdhci.h (revision ae9996c806e15b68b97fe7a7242c44e713345269)
1 /*
2  * (C) Copyright 2012,2015 Stephen Warren
3  *
4  * SPDX-License-Identifier:	GPL-2.0
5  */
6 
7 #ifndef _BCM2835_SDHCI_H_
8 #define _BCM2835_SDHCI_H_
9 
10 #ifdef CONFIG_BCM2836
11 #define BCM2835_SDHCI_BASE 0x3f300000
12 #else
13 #define BCM2835_SDHCI_BASE 0x20300000
14 #endif
15 
16 int bcm2835_sdhci_init(u32 regbase, u32 emmc_freq);
17 
18 #endif
19