board-h2-mmc.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * linux/arch/arm/mach-omap1/board-h2-mmc.c
  3. *
  4. * Copyright (C) 2007 Instituto Nokia de Tecnologia - INdT
  5. * Author: Felipe Balbi <felipe.lima@indt.org.br>
  6. *
  7. * This code is based on linux/arch/arm/mach-omap2/board-n800-mmc.c, which is:
  8. * Copyright (C) 2006 Nokia Corporation
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #include <linux/platform_device.h>
  15. #include <linux/i2c/tps65010.h>
  16. #include <mach/mmc.h>
  17. #include <mach/gpio.h>
  18. #if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)
  19. static int mmc_set_power(struct device *dev, int slot, int power_on,
  20. int vdd)
  21. {
  22. if (power_on)
  23. gpio_direction_output(H2_TPS_GPIO_MMC_PWR_EN, 1);
  24. else
  25. gpio_direction_output(H2_TPS_GPIO_MMC_PWR_EN, 0);
  26. return 0;
  27. }
  28. static int mmc_late_init(struct device *dev)
  29. {
  30. int ret;
  31. ret = gpio_request(H2_TPS_GPIO_MMC_PWR_EN, "MMC power");
  32. if (ret < 0)
  33. return ret;
  34. gpio_direction_output(H2_TPS_GPIO_MMC_PWR_EN, 0);
  35. return ret;
  36. }
  37. static void mmc_shutdown(struct device *dev)
  38. {
  39. gpio_free(H2_TPS_GPIO_MMC_PWR_EN);
  40. }
  41. /*
  42. * H2 could use the following functions tested:
  43. * - mmc_get_cover_state that uses OMAP_MPUIO(1)
  44. * - mmc_get_wp that uses OMAP_MPUIO(3)
  45. */
  46. static struct omap_mmc_platform_data mmc1_data = {
  47. .nr_slots = 1,
  48. .init = mmc_late_init,
  49. .shutdown = mmc_shutdown,
  50. .dma_mask = 0xffffffff,
  51. .slots[0] = {
  52. .set_power = mmc_set_power,
  53. .ocr_mask = MMC_VDD_28_29 | MMC_VDD_30_31 |
  54. MMC_VDD_32_33 | MMC_VDD_33_34,
  55. .name = "mmcblk",
  56. },
  57. };
  58. static struct omap_mmc_platform_data *mmc_data[OMAP16XX_NR_MMC];
  59. void __init h2_mmc_init(void)
  60. {
  61. mmc_data[0] = &mmc1_data;
  62. omap1_init_mmc(mmc_data, OMAP16XX_NR_MMC);
  63. }
  64. #else
  65. void __init h2_mmc_init(void)
  66. {
  67. }
  68. #endif