sdhci.h 856 B

1234567891011121314151617181920212223242526272829303132
  1. /* linux/arch/arm/plat-pxa/include/plat/sdhci.h
  2. *
  3. * Copyright 2010 Marvell
  4. * Zhangfei Gao <zhangfei.gao@marvell.com>
  5. *
  6. * PXA Platform - SDHCI platform data definitions
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #ifndef __PLAT_PXA_SDHCI_H
  13. #define __PLAT_PXA_SDHCI_H
  14. /* pxa specific flag */
  15. /* Require clock free running */
  16. #define PXA_FLAG_DISABLE_CLOCK_GATING (1<<0)
  17. /*
  18. * struct pxa_sdhci_platdata() - Platform device data for PXA SDHCI
  19. * @max_speed: the maximum speed supported
  20. * @quirks: quirks of specific device
  21. * @flags: flags for platform requirement
  22. */
  23. struct sdhci_pxa_platdata {
  24. unsigned int max_speed;
  25. unsigned int quirks;
  26. unsigned int flags;
  27. };
  28. #endif /* __PLAT_PXA_SDHCI_H */