sh_mobile_sdhi.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. /*
  2. * SuperH Mobile SDHI
  3. *
  4. * Copyright (C) 2009 Magnus Damm
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * Based on "Compaq ASIC3 support":
  11. *
  12. * Copyright 2001 Compaq Computer Corporation.
  13. * Copyright 2004-2005 Phil Blundell
  14. * Copyright 2007-2008 OpenedHand Ltd.
  15. *
  16. * Authors: Phil Blundell <pb@handhelds.org>,
  17. * Samuel Ortiz <sameo@openedhand.com>
  18. *
  19. */
  20. #include <linux/kernel.h>
  21. #include <linux/clk.h>
  22. #include <linux/slab.h>
  23. #include <linux/platform_device.h>
  24. #include <linux/mmc/host.h>
  25. #include <linux/mmc/sh_mobile_sdhi.h>
  26. #include <linux/mfd/tmio.h>
  27. #include <linux/sh_dma.h>
  28. #include <linux/delay.h>
  29. #include "tmio_mmc.h"
  30. struct sh_mobile_sdhi {
  31. struct clk *clk;
  32. struct tmio_mmc_data mmc_data;
  33. struct sh_dmae_slave param_tx;
  34. struct sh_dmae_slave param_rx;
  35. struct tmio_mmc_dma dma_priv;
  36. };
  37. static void sh_mobile_sdhi_set_pwr(struct platform_device *pdev, int state)
  38. {
  39. struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
  40. if (p && p->set_pwr)
  41. p->set_pwr(pdev, state);
  42. }
  43. static int sh_mobile_sdhi_get_cd(struct platform_device *pdev)
  44. {
  45. struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
  46. if (p && p->get_cd)
  47. return p->get_cd(pdev);
  48. else
  49. return -ENOSYS;
  50. }
  51. static int sh_mobile_sdhi_wait_idle(struct tmio_mmc_host *host)
  52. {
  53. int timeout = 1000;
  54. while (--timeout && !(sd_ctrl_read16(host, CTL_STATUS2) & (1 << 13)))
  55. udelay(1);
  56. if (!timeout) {
  57. dev_warn(host->pdata->dev, "timeout waiting for SD bus idle\n");
  58. return -EBUSY;
  59. }
  60. return 0;
  61. }
  62. static int sh_mobile_sdhi_write16_hook(struct tmio_mmc_host *host, int addr)
  63. {
  64. switch (addr)
  65. {
  66. case CTL_SD_CMD:
  67. case CTL_STOP_INTERNAL_ACTION:
  68. case CTL_XFER_BLK_COUNT:
  69. case CTL_SD_CARD_CLK_CTL:
  70. case CTL_SD_XFER_LEN:
  71. case CTL_SD_MEM_CARD_OPT:
  72. case CTL_TRANSACTION_CTL:
  73. case CTL_DMA_ENABLE:
  74. return sh_mobile_sdhi_wait_idle(host);
  75. }
  76. return 0;
  77. }
  78. static int __devinit sh_mobile_sdhi_probe(struct platform_device *pdev)
  79. {
  80. struct sh_mobile_sdhi *priv;
  81. struct tmio_mmc_data *mmc_data;
  82. struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
  83. struct tmio_mmc_host *host;
  84. char clk_name[8];
  85. int i, irq, ret;
  86. priv = kzalloc(sizeof(struct sh_mobile_sdhi), GFP_KERNEL);
  87. if (priv == NULL) {
  88. dev_err(&pdev->dev, "kzalloc failed\n");
  89. return -ENOMEM;
  90. }
  91. mmc_data = &priv->mmc_data;
  92. p->pdata = mmc_data;
  93. snprintf(clk_name, sizeof(clk_name), "sdhi%d", pdev->id);
  94. priv->clk = clk_get(&pdev->dev, clk_name);
  95. if (IS_ERR(priv->clk)) {
  96. dev_err(&pdev->dev, "cannot get clock \"%s\"\n", clk_name);
  97. ret = PTR_ERR(priv->clk);
  98. goto eclkget;
  99. }
  100. clk_enable(priv->clk);
  101. mmc_data->hclk = clk_get_rate(priv->clk);
  102. mmc_data->set_pwr = sh_mobile_sdhi_set_pwr;
  103. mmc_data->get_cd = sh_mobile_sdhi_get_cd;
  104. if (mmc_data->flags & TMIO_MMC_HAS_IDLE_WAIT)
  105. mmc_data->write16_hook = sh_mobile_sdhi_write16_hook;
  106. mmc_data->capabilities = MMC_CAP_MMC_HIGHSPEED;
  107. if (p) {
  108. mmc_data->flags = p->tmio_flags;
  109. mmc_data->ocr_mask = p->tmio_ocr_mask;
  110. mmc_data->capabilities |= p->tmio_caps;
  111. if (p->dma_slave_tx > 0 && p->dma_slave_rx > 0) {
  112. priv->param_tx.slave_id = p->dma_slave_tx;
  113. priv->param_rx.slave_id = p->dma_slave_rx;
  114. priv->dma_priv.chan_priv_tx = &priv->param_tx;
  115. priv->dma_priv.chan_priv_rx = &priv->param_rx;
  116. priv->dma_priv.alignment_shift = 1; /* 2-byte alignment */
  117. mmc_data->dma = &priv->dma_priv;
  118. }
  119. }
  120. /*
  121. * All SDHI blocks support 2-byte and larger block sizes in 4-bit
  122. * bus width mode.
  123. */
  124. mmc_data->flags |= TMIO_MMC_BLKSZ_2BYTES;
  125. /*
  126. * All SDHI blocks support SDIO IRQ signalling.
  127. */
  128. mmc_data->flags |= TMIO_MMC_SDIO_IRQ;
  129. ret = tmio_mmc_host_probe(&host, pdev, mmc_data);
  130. if (ret < 0)
  131. goto eprobe;
  132. for (i = 0; i < 3; i++) {
  133. irq = platform_get_irq(pdev, i);
  134. if (irq < 0) {
  135. if (i) {
  136. continue;
  137. } else {
  138. ret = irq;
  139. goto eirq;
  140. }
  141. }
  142. ret = request_irq(irq, tmio_mmc_irq, 0,
  143. dev_name(&pdev->dev), host);
  144. if (ret) {
  145. while (i--) {
  146. irq = platform_get_irq(pdev, i);
  147. if (irq >= 0)
  148. free_irq(irq, host);
  149. }
  150. goto eirq;
  151. }
  152. }
  153. dev_info(&pdev->dev, "%s base at 0x%08lx clock rate %u MHz\n",
  154. mmc_hostname(host->mmc), (unsigned long)
  155. (platform_get_resource(pdev,IORESOURCE_MEM, 0)->start),
  156. mmc_data->hclk / 1000000);
  157. return ret;
  158. eirq:
  159. tmio_mmc_host_remove(host);
  160. eprobe:
  161. clk_disable(priv->clk);
  162. clk_put(priv->clk);
  163. eclkget:
  164. kfree(priv);
  165. return ret;
  166. }
  167. static int sh_mobile_sdhi_remove(struct platform_device *pdev)
  168. {
  169. struct mmc_host *mmc = platform_get_drvdata(pdev);
  170. struct tmio_mmc_host *host = mmc_priv(mmc);
  171. struct sh_mobile_sdhi *priv = container_of(host->pdata, struct sh_mobile_sdhi, mmc_data);
  172. struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
  173. int i, irq;
  174. p->pdata = NULL;
  175. tmio_mmc_host_remove(host);
  176. for (i = 0; i < 3; i++) {
  177. irq = platform_get_irq(pdev, i);
  178. if (irq >= 0)
  179. free_irq(irq, host);
  180. }
  181. clk_disable(priv->clk);
  182. clk_put(priv->clk);
  183. kfree(priv);
  184. return 0;
  185. }
  186. static const struct dev_pm_ops tmio_mmc_dev_pm_ops = {
  187. .suspend = tmio_mmc_host_suspend,
  188. .resume = tmio_mmc_host_resume,
  189. .runtime_suspend = tmio_mmc_host_runtime_suspend,
  190. .runtime_resume = tmio_mmc_host_runtime_resume,
  191. };
  192. static struct platform_driver sh_mobile_sdhi_driver = {
  193. .driver = {
  194. .name = "sh_mobile_sdhi",
  195. .owner = THIS_MODULE,
  196. .pm = &tmio_mmc_dev_pm_ops,
  197. },
  198. .probe = sh_mobile_sdhi_probe,
  199. .remove = __devexit_p(sh_mobile_sdhi_remove),
  200. };
  201. static int __init sh_mobile_sdhi_init(void)
  202. {
  203. return platform_driver_register(&sh_mobile_sdhi_driver);
  204. }
  205. static void __exit sh_mobile_sdhi_exit(void)
  206. {
  207. platform_driver_unregister(&sh_mobile_sdhi_driver);
  208. }
  209. module_init(sh_mobile_sdhi_init);
  210. module_exit(sh_mobile_sdhi_exit);
  211. MODULE_DESCRIPTION("SuperH Mobile SDHI driver");
  212. MODULE_AUTHOR("Magnus Damm");
  213. MODULE_LICENSE("GPL v2");
  214. MODULE_ALIAS("platform:sh_mobile_sdhi");