sh_mobile_sdhi.c 8.3 KB

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