1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * (C) Copyright 2012,2015 Stephen Warren
4  */
5 
6 #ifndef _BCM2835_SDHCI_H_
7 #define _BCM2835_SDHCI_H_
8 
9 #ifndef CONFIG_BCM2835
10 #define BCM2835_SDHCI_BASE 0x3f300000
11 #else
12 #define BCM2835_SDHCI_BASE 0x20300000
13 #endif
14 
15 int bcm2835_sdhci_init(u32 regbase, u32 emmc_freq);
16 
17 #endif
18