of_mmc_spi.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /*
  2. * OpenFirmware bindings for the MMC-over-SPI driver
  3. *
  4. * Copyright (c) MontaVista Software, Inc. 2008.
  5. *
  6. * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the
  10. * Free Software Foundation; either version 2 of the License, or (at your
  11. * option) any later version.
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/module.h>
  15. #include <linux/device.h>
  16. #include <linux/slab.h>
  17. #include <linux/gpio.h>
  18. #include <linux/of.h>
  19. #include <linux/of_gpio.h>
  20. #include <linux/spi/spi.h>
  21. #include <linux/spi/mmc_spi.h>
  22. #include <linux/mmc/core.h>
  23. #include <linux/mmc/host.h>
  24. MODULE_LICENSE("GPL");
  25. enum {
  26. CD_GPIO = 0,
  27. WP_GPIO,
  28. NUM_GPIOS,
  29. };
  30. struct of_mmc_spi {
  31. int gpios[NUM_GPIOS];
  32. bool alow_gpios[NUM_GPIOS];
  33. int detect_irq;
  34. struct mmc_spi_platform_data pdata;
  35. };
  36. static struct of_mmc_spi *to_of_mmc_spi(struct device *dev)
  37. {
  38. return container_of(dev->platform_data, struct of_mmc_spi, pdata);
  39. }
  40. static int of_mmc_spi_read_gpio(struct device *dev, int gpio_num)
  41. {
  42. struct of_mmc_spi *oms = to_of_mmc_spi(dev);
  43. bool active_low = oms->alow_gpios[gpio_num];
  44. bool value = gpio_get_value(oms->gpios[gpio_num]);
  45. return active_low ^ value;
  46. }
  47. static int of_mmc_spi_get_cd(struct device *dev)
  48. {
  49. return of_mmc_spi_read_gpio(dev, CD_GPIO);
  50. }
  51. static int of_mmc_spi_get_ro(struct device *dev)
  52. {
  53. return of_mmc_spi_read_gpio(dev, WP_GPIO);
  54. }
  55. static int of_mmc_spi_init(struct device *dev,
  56. irqreturn_t (*irqhandler)(int, void *), void *mmc)
  57. {
  58. struct of_mmc_spi *oms = to_of_mmc_spi(dev);
  59. return request_threaded_irq(oms->detect_irq, NULL, irqhandler, 0,
  60. dev_name(dev), mmc);
  61. }
  62. static void of_mmc_spi_exit(struct device *dev, void *mmc)
  63. {
  64. struct of_mmc_spi *oms = to_of_mmc_spi(dev);
  65. free_irq(oms->detect_irq, mmc);
  66. }
  67. struct mmc_spi_platform_data *mmc_spi_get_pdata(struct spi_device *spi)
  68. {
  69. struct device *dev = &spi->dev;
  70. struct device_node *np = dev->of_node;
  71. struct of_mmc_spi *oms;
  72. const u32 *voltage_ranges;
  73. int num_ranges;
  74. int i;
  75. int ret = -EINVAL;
  76. if (dev->platform_data || !np)
  77. return dev->platform_data;
  78. oms = kzalloc(sizeof(*oms), GFP_KERNEL);
  79. if (!oms)
  80. return NULL;
  81. voltage_ranges = of_get_property(np, "voltage-ranges", &num_ranges);
  82. num_ranges = num_ranges / sizeof(*voltage_ranges) / 2;
  83. if (!voltage_ranges || !num_ranges) {
  84. dev_err(dev, "OF: voltage-ranges unspecified\n");
  85. goto err_ocr;
  86. }
  87. for (i = 0; i < num_ranges; i++) {
  88. const int j = i * 2;
  89. u32 mask;
  90. mask = mmc_vddrange_to_ocrmask(voltage_ranges[j],
  91. voltage_ranges[j + 1]);
  92. if (!mask) {
  93. ret = -EINVAL;
  94. dev_err(dev, "OF: voltage-range #%d is invalid\n", i);
  95. goto err_ocr;
  96. }
  97. oms->pdata.ocr_mask |= mask;
  98. }
  99. for (i = 0; i < ARRAY_SIZE(oms->gpios); i++) {
  100. enum of_gpio_flags gpio_flags;
  101. oms->gpios[i] = of_get_gpio_flags(np, i, &gpio_flags);
  102. if (!gpio_is_valid(oms->gpios[i]))
  103. continue;
  104. ret = gpio_request(oms->gpios[i], dev_name(dev));
  105. if (ret < 0) {
  106. oms->gpios[i] = -EINVAL;
  107. continue;
  108. }
  109. if (gpio_flags & OF_GPIO_ACTIVE_LOW)
  110. oms->alow_gpios[i] = true;
  111. }
  112. if (gpio_is_valid(oms->gpios[CD_GPIO]))
  113. oms->pdata.get_cd = of_mmc_spi_get_cd;
  114. if (gpio_is_valid(oms->gpios[WP_GPIO]))
  115. oms->pdata.get_ro = of_mmc_spi_get_ro;
  116. oms->detect_irq = irq_of_parse_and_map(np, 0);
  117. if (oms->detect_irq != NO_IRQ) {
  118. oms->pdata.init = of_mmc_spi_init;
  119. oms->pdata.exit = of_mmc_spi_exit;
  120. } else {
  121. oms->pdata.caps |= MMC_CAP_NEEDS_POLL;
  122. }
  123. dev->platform_data = &oms->pdata;
  124. return dev->platform_data;
  125. err_ocr:
  126. kfree(oms);
  127. return NULL;
  128. }
  129. EXPORT_SYMBOL(mmc_spi_get_pdata);
  130. void mmc_spi_put_pdata(struct spi_device *spi)
  131. {
  132. struct device *dev = &spi->dev;
  133. struct device_node *np = dev->of_node;
  134. struct of_mmc_spi *oms = to_of_mmc_spi(dev);
  135. int i;
  136. if (!dev->platform_data || !np)
  137. return;
  138. for (i = 0; i < ARRAY_SIZE(oms->gpios); i++) {
  139. if (gpio_is_valid(oms->gpios[i]))
  140. gpio_free(oms->gpios[i]);
  141. }
  142. kfree(oms);
  143. dev->platform_data = NULL;
  144. }
  145. EXPORT_SYMBOL(mmc_spi_put_pdata);