sdhci.h 314 B

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