setup-sdhci-gpio.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* linux/arch/arm/plat-s3c64xx/setup-sdhci-gpio.c
  2. *
  3. * Copyright 2008 Simtec Electronics
  4. * Ben Dooks <ben@simtec.co.uk>
  5. * http://armlinux.simtec.co.uk/
  6. *
  7. * S3C64XX - Helper functions for setting up SDHCI device(s) GPIO (HSMMC)
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/types.h>
  15. #include <linux/interrupt.h>
  16. #include <linux/platform_device.h>
  17. #include <linux/io.h>
  18. #include <linux/gpio.h>
  19. #include <plat/gpio-cfg.h>
  20. #include <plat/sdhci.h>
  21. void s3c64xx_setup_sdhci0_cfg_gpio(struct platform_device *dev, int width)
  22. {
  23. struct s3c_sdhci_platdata *pdata = dev->dev.platform_data;
  24. /* Set all the necessary GPG pins to special-function 2 */
  25. s3c_gpio_cfgrange_nopull(S3C64XX_GPG(0), 2 + width, S3C_GPIO_SFN(2));
  26. if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) {
  27. s3c_gpio_setpull(S3C64XX_GPG(6), S3C_GPIO_PULL_UP);
  28. s3c_gpio_cfgpin(S3C64XX_GPG(6), S3C_GPIO_SFN(2));
  29. }
  30. }
  31. void s3c64xx_setup_sdhci1_cfg_gpio(struct platform_device *dev, int width)
  32. {
  33. struct s3c_sdhci_platdata *pdata = dev->dev.platform_data;
  34. /* Set all the necessary GPH pins to special-function 2 */
  35. s3c_gpio_cfgrange_nopull(S3C64XX_GPH(0), 2 + width, S3C_GPIO_SFN(2));
  36. if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) {
  37. s3c_gpio_setpull(S3C64XX_GPG(6), S3C_GPIO_PULL_UP);
  38. s3c_gpio_cfgpin(S3C64XX_GPG(6), S3C_GPIO_SFN(3));
  39. }
  40. }
  41. void s3c64xx_setup_sdhci2_cfg_gpio(struct platform_device *dev, int width)
  42. {
  43. /* Set all the necessary GPH pins to special-function 3 */
  44. s3c_gpio_cfgrange_nopull(S3C64XX_GPH(6), width, S3C_GPIO_SFN(3));
  45. /* Set all the necessary GPC pins to special-function 3 */
  46. s3c_gpio_cfgrange_nopull(S3C64XX_GPC(4), 2, S3C_GPIO_SFN(3));
  47. }