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 #ifndef CONFIG_BCM2835 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