sdhci.h 315 B

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