sh_mobile_sdhi.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  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/module.h>
  24. #include <linux/platform_device.h>
  25. #include <linux/mmc/host.h>
  26. #include <linux/mmc/sh_mobile_sdhi.h>
  27. #include <linux/mfd/tmio.h>
  28. #include <linux/sh_dma.h>
  29. #include <linux/delay.h>
  30. #include "tmio_mmc.h"
  31. struct sh_mobile_sdhi {
  32. struct clk *clk;
  33. struct tmio_mmc_data mmc_data;
  34. struct sh_dmae_slave param_tx;
  35. struct sh_dmae_slave param_rx;
  36. struct tmio_mmc_dma dma_priv;
  37. };
  38. static void sh_mobile_sdhi_set_pwr(struct platform_device *pdev, int state)
  39. {
  40. struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
  41. if (p && p->set_pwr)
  42. p->set_pwr(pdev, state);
  43. }
  44. static int sh_mobile_sdhi_get_cd(struct platform_device *pdev)
  45. {
  46. struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
  47. if (p && p->get_cd)
  48. return p->get_cd(pdev);
  49. else
  50. return -ENOSYS;
  51. }
  52. static int sh_mobile_sdhi_wait_idle(struct tmio_mmc_host *host)
  53. {
  54. int timeout = 1000;
  55. while (--timeout && !(sd_ctrl_read16(host, CTL_STATUS2) & (1 << 13)))
  56. udelay(1);
  57. if (!timeout) {
  58. dev_warn(host->pdata->dev, "timeout waiting for SD bus idle\n");
  59. return -EBUSY;
  60. }
  61. return 0;
  62. }
  63. static int sh_mobile_sdhi_write16_hook(struct tmio_mmc_host *host, int addr)
  64. {
  65. switch (addr)
  66. {
  67. case CTL_SD_CMD:
  68. case CTL_STOP_INTERNAL_ACTION:
  69. case CTL_XFER_BLK_COUNT:
  70. case CTL_SD_CARD_CLK_CTL:
  71. case CTL_SD_XFER_LEN:
  72. case CTL_SD_MEM_CARD_OPT:
  73. case CTL_TRANSACTION_CTL:
  74. case CTL_DMA_ENABLE:
  75. return sh_mobile_sdhi_wait_idle(host);
  76. }
  77. return 0;
  78. }
  79. static void sh_mobile_sdhi_cd_wakeup(const struct platform_device *pdev)
  80. {
  81. mmc_detect_change(dev_get_drvdata(&pdev->dev), msecs_to_jiffies(100));
  82. }
  83. static const struct sh_mobile_sdhi_ops sdhi_ops = {
  84. .cd_wakeup = sh_mobile_sdhi_cd_wakeup,
  85. };
  86. static int __devinit sh_mobile_sdhi_probe(struct platform_device *pdev)
  87. {
  88. struct sh_mobile_sdhi *priv;
  89. struct tmio_mmc_data *mmc_data;
  90. struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
  91. struct tmio_mmc_host *host;
  92. char clk_name[8];
  93. int irq, ret, i = 0;
  94. bool multiplexed_isr = true;
  95. priv = kzalloc(sizeof(struct sh_mobile_sdhi), GFP_KERNEL);
  96. if (priv == NULL) {
  97. dev_err(&pdev->dev, "kzalloc failed\n");
  98. return -ENOMEM;
  99. }
  100. mmc_data = &priv->mmc_data;
  101. p->pdata = mmc_data;
  102. if (p->init) {
  103. ret = p->init(pdev, &sdhi_ops);
  104. if (ret)
  105. goto einit;
  106. }
  107. snprintf(clk_name, sizeof(clk_name), "sdhi%d", pdev->id);
  108. priv->clk = clk_get(&pdev->dev, clk_name);
  109. if (IS_ERR(priv->clk)) {
  110. dev_err(&pdev->dev, "cannot get clock \"%s\"\n", clk_name);
  111. ret = PTR_ERR(priv->clk);
  112. goto eclkget;
  113. }
  114. mmc_data->hclk = clk_get_rate(priv->clk);
  115. mmc_data->set_pwr = sh_mobile_sdhi_set_pwr;
  116. mmc_data->get_cd = sh_mobile_sdhi_get_cd;
  117. mmc_data->capabilities = MMC_CAP_MMC_HIGHSPEED;
  118. if (p) {
  119. mmc_data->flags = p->tmio_flags;
  120. if (mmc_data->flags & TMIO_MMC_HAS_IDLE_WAIT)
  121. mmc_data->write16_hook = sh_mobile_sdhi_write16_hook;
  122. mmc_data->ocr_mask = p->tmio_ocr_mask;
  123. mmc_data->capabilities |= p->tmio_caps;
  124. mmc_data->cd_gpio = p->cd_gpio;
  125. if (p->dma_slave_tx > 0 && p->dma_slave_rx > 0) {
  126. priv->param_tx.slave_id = p->dma_slave_tx;
  127. priv->param_rx.slave_id = p->dma_slave_rx;
  128. priv->dma_priv.chan_priv_tx = &priv->param_tx;
  129. priv->dma_priv.chan_priv_rx = &priv->param_rx;
  130. priv->dma_priv.alignment_shift = 1; /* 2-byte alignment */
  131. mmc_data->dma = &priv->dma_priv;
  132. }
  133. }
  134. /*
  135. * All SDHI blocks support 2-byte and larger block sizes in 4-bit
  136. * bus width mode.
  137. */
  138. mmc_data->flags |= TMIO_MMC_BLKSZ_2BYTES;
  139. /*
  140. * All SDHI blocks support SDIO IRQ signalling.
  141. */
  142. mmc_data->flags |= TMIO_MMC_SDIO_IRQ;
  143. ret = tmio_mmc_host_probe(&host, pdev, mmc_data);
  144. if (ret < 0)
  145. goto eprobe;
  146. /*
  147. * Allow one or more specific (named) ISRs or
  148. * one or more multiplexed (un-named) ISRs.
  149. */
  150. irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_CARD_DETECT);
  151. if (irq >= 0) {
  152. multiplexed_isr = false;
  153. ret = request_irq(irq, tmio_mmc_card_detect_irq, 0,
  154. dev_name(&pdev->dev), host);
  155. if (ret)
  156. goto eirq_card_detect;
  157. }
  158. irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_SDIO);
  159. if (irq >= 0) {
  160. multiplexed_isr = false;
  161. ret = request_irq(irq, tmio_mmc_sdio_irq, 0,
  162. dev_name(&pdev->dev), host);
  163. if (ret)
  164. goto eirq_sdio;
  165. }
  166. irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_SDCARD);
  167. if (irq >= 0) {
  168. multiplexed_isr = false;
  169. ret = request_irq(irq, tmio_mmc_sdcard_irq, 0,
  170. dev_name(&pdev->dev), host);
  171. if (ret)
  172. goto eirq_sdcard;
  173. } else if (!multiplexed_isr) {
  174. dev_err(&pdev->dev,
  175. "Principal SD-card IRQ is missing among named interrupts\n");
  176. ret = irq;
  177. goto eirq_sdcard;
  178. }
  179. if (multiplexed_isr) {
  180. while (1) {
  181. irq = platform_get_irq(pdev, i);
  182. if (irq < 0)
  183. break;
  184. i++;
  185. ret = request_irq(irq, tmio_mmc_irq, 0,
  186. dev_name(&pdev->dev), host);
  187. if (ret)
  188. goto eirq_multiplexed;
  189. }
  190. /* There must be at least one IRQ source */
  191. if (!i)
  192. goto eirq_multiplexed;
  193. }
  194. dev_info(&pdev->dev, "%s base at 0x%08lx clock rate %u MHz\n",
  195. mmc_hostname(host->mmc), (unsigned long)
  196. (platform_get_resource(pdev, IORESOURCE_MEM, 0)->start),
  197. mmc_data->hclk / 1000000);
  198. return ret;
  199. eirq_multiplexed:
  200. while (i--) {
  201. irq = platform_get_irq(pdev, i);
  202. free_irq(irq, host);
  203. }
  204. eirq_sdcard:
  205. irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_SDIO);
  206. if (irq >= 0)
  207. free_irq(irq, host);
  208. eirq_sdio:
  209. irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_CARD_DETECT);
  210. if (irq >= 0)
  211. free_irq(irq, host);
  212. eirq_card_detect:
  213. tmio_mmc_host_remove(host);
  214. eprobe:
  215. clk_put(priv->clk);
  216. eclkget:
  217. if (p->cleanup)
  218. p->cleanup(pdev);
  219. einit:
  220. kfree(priv);
  221. return ret;
  222. }
  223. static int sh_mobile_sdhi_remove(struct platform_device *pdev)
  224. {
  225. struct mmc_host *mmc = platform_get_drvdata(pdev);
  226. struct tmio_mmc_host *host = mmc_priv(mmc);
  227. struct sh_mobile_sdhi *priv = container_of(host->pdata, struct sh_mobile_sdhi, mmc_data);
  228. struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
  229. int i = 0, irq;
  230. p->pdata = NULL;
  231. tmio_mmc_host_remove(host);
  232. while (1) {
  233. irq = platform_get_irq(pdev, i++);
  234. if (irq < 0)
  235. break;
  236. free_irq(irq, host);
  237. }
  238. clk_put(priv->clk);
  239. if (p->cleanup)
  240. p->cleanup(pdev);
  241. kfree(priv);
  242. return 0;
  243. }
  244. static const struct dev_pm_ops tmio_mmc_dev_pm_ops = {
  245. .suspend = tmio_mmc_host_suspend,
  246. .resume = tmio_mmc_host_resume,
  247. .runtime_suspend = tmio_mmc_host_runtime_suspend,
  248. .runtime_resume = tmio_mmc_host_runtime_resume,
  249. };
  250. static struct platform_driver sh_mobile_sdhi_driver = {
  251. .driver = {
  252. .name = "sh_mobile_sdhi",
  253. .owner = THIS_MODULE,
  254. .pm = &tmio_mmc_dev_pm_ops,
  255. },
  256. .probe = sh_mobile_sdhi_probe,
  257. .remove = __devexit_p(sh_mobile_sdhi_remove),
  258. };
  259. module_platform_driver(sh_mobile_sdhi_driver);
  260. MODULE_DESCRIPTION("SuperH Mobile SDHI driver");
  261. MODULE_AUTHOR("Magnus Damm");
  262. MODULE_LICENSE("GPL v2");
  263. MODULE_ALIAS("platform:sh_mobile_sdhi");