setup-sdhci.c 607 B

12345678910111213141516171819202122
  1. /* linux/arch/arm/mach-exynos4/setup-sdhci.c
  2. *
  3. * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
  4. * http://www.samsung.com
  5. *
  6. * EXYNOS4 - Helper functions for settign up SDHCI device(s) (HSMMC)
  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. #include <linux/types.h>
  13. /* clock sources for the mmc bus clock, order as for the ctrl2[5..4] */
  14. char *exynos4_hsmmc_clksrcs[4] = {
  15. [0] = NULL,
  16. [1] = NULL,
  17. [2] = "sclk_mmc", /* mmc_bus */
  18. [3] = NULL,
  19. };