blob: 524a7f77382049bffc39fd2c381a142c1309ce84 [file] [log] [blame]
Magnus Damma87d5632009-10-02 02:22:09 +00001/*
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
21#include <linux/kernel.h>
22#include <linux/clk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Guennadi Liakhovetskic7bb4482012-05-01 18:03:43 +020024#include <linux/mod_devicetable.h>
Paul Gortmaker88b47672011-07-03 15:15:51 -040025#include <linux/module.h>
Magnus Damma87d5632009-10-02 02:22:09 +000026#include <linux/platform_device.h>
Magnus Damm3c49e812010-02-22 13:37:09 +090027#include <linux/mmc/host.h>
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +010028#include <linux/mmc/sh_mobile_sdhi.h>
Magnus Damma87d5632009-10-02 02:22:09 +000029#include <linux/mfd/tmio.h>
Guennadi Liakhovetski056676d2010-05-19 18:34:16 +000030#include <linux/sh_dma.h>
Simon Horman973ed3a2011-06-21 08:00:10 +090031#include <linux/delay.h>
Magnus Damma87d5632009-10-02 02:22:09 +000032
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +010033#include "tmio_mmc.h"
34
Magnus Damma87d5632009-10-02 02:22:09 +000035struct sh_mobile_sdhi {
36 struct clk *clk;
37 struct tmio_mmc_data mmc_data;
Guennadi Liakhovetski056676d2010-05-19 18:34:16 +000038 struct sh_dmae_slave param_tx;
39 struct sh_dmae_slave param_rx;
40 struct tmio_mmc_dma dma_priv;
Magnus Damma87d5632009-10-02 02:22:09 +000041};
42
Guennadi Liakhovetski56c49282012-06-20 19:10:32 +020043static int sh_mobile_sdhi_clk_enable(struct platform_device *pdev, unsigned int *f)
44{
45 struct mmc_host *mmc = dev_get_drvdata(&pdev->dev);
46 struct tmio_mmc_host *host = mmc_priv(mmc);
47 struct sh_mobile_sdhi *priv = container_of(host->pdata, struct sh_mobile_sdhi, mmc_data);
48 int ret = clk_enable(priv->clk);
49 if (ret < 0)
50 return ret;
51
52 *f = clk_get_rate(priv->clk);
53 return 0;
54}
55
56static void sh_mobile_sdhi_clk_disable(struct platform_device *pdev)
57{
58 struct mmc_host *mmc = dev_get_drvdata(&pdev->dev);
59 struct tmio_mmc_host *host = mmc_priv(mmc);
60 struct sh_mobile_sdhi *priv = container_of(host->pdata, struct sh_mobile_sdhi, mmc_data);
61 clk_disable(priv->clk);
62}
63
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +010064static void sh_mobile_sdhi_set_pwr(struct platform_device *pdev, int state)
Magnus Dammbe9cd7b2009-11-27 04:31:27 +000065{
Magnus Dammbe9cd7b2009-11-27 04:31:27 +000066 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
67
Guennadi Liakhovetski71da63e2012-06-20 19:10:34 +020068 p->set_pwr(pdev, state);
Magnus Dammbe9cd7b2009-11-27 04:31:27 +000069}
70
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +010071static int sh_mobile_sdhi_get_cd(struct platform_device *pdev)
Arnd Hannemann998283e2010-08-24 17:27:00 +020072{
Arnd Hannemann998283e2010-08-24 17:27:00 +020073 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
74
Guennadi Liakhovetski71da63e2012-06-20 19:10:34 +020075 return p->get_cd(pdev);
Arnd Hannemann998283e2010-08-24 17:27:00 +020076}
77
Simon Horman973ed3a2011-06-21 08:00:10 +090078static int sh_mobile_sdhi_wait_idle(struct tmio_mmc_host *host)
79{
80 int timeout = 1000;
81
82 while (--timeout && !(sd_ctrl_read16(host, CTL_STATUS2) & (1 << 13)))
83 udelay(1);
84
85 if (!timeout) {
86 dev_warn(host->pdata->dev, "timeout waiting for SD bus idle\n");
87 return -EBUSY;
88 }
89
90 return 0;
91}
92
93static int sh_mobile_sdhi_write16_hook(struct tmio_mmc_host *host, int addr)
94{
95 switch (addr)
96 {
97 case CTL_SD_CMD:
98 case CTL_STOP_INTERNAL_ACTION:
99 case CTL_XFER_BLK_COUNT:
100 case CTL_SD_CARD_CLK_CTL:
101 case CTL_SD_XFER_LEN:
102 case CTL_SD_MEM_CARD_OPT:
103 case CTL_TRANSACTION_CTL:
104 case CTL_DMA_ENABLE:
105 return sh_mobile_sdhi_wait_idle(host);
106 }
107
108 return 0;
109}
110
Guennadi Liakhovetski7f524212012-03-09 10:16:00 +0100111static void sh_mobile_sdhi_cd_wakeup(const struct platform_device *pdev)
112{
113 mmc_detect_change(dev_get_drvdata(&pdev->dev), msecs_to_jiffies(100));
114}
115
116static const struct sh_mobile_sdhi_ops sdhi_ops = {
117 .cd_wakeup = sh_mobile_sdhi_cd_wakeup,
118};
119
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500120static int sh_mobile_sdhi_probe(struct platform_device *pdev)
Magnus Damma87d5632009-10-02 02:22:09 +0000121{
122 struct sh_mobile_sdhi *priv;
Guennadi Liakhovetski056676d2010-05-19 18:34:16 +0000123 struct tmio_mmc_data *mmc_data;
124 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100125 struct tmio_mmc_host *host;
Simon Hormand5098cb2011-08-26 10:42:39 +0200126 int irq, ret, i = 0;
127 bool multiplexed_isr = true;
Magnus Damma87d5632009-10-02 02:22:09 +0000128
129 priv = kzalloc(sizeof(struct sh_mobile_sdhi), GFP_KERNEL);
130 if (priv == NULL) {
131 dev_err(&pdev->dev, "kzalloc failed\n");
132 return -ENOMEM;
133 }
134
Guennadi Liakhovetski056676d2010-05-19 18:34:16 +0000135 mmc_data = &priv->mmc_data;
136
Guennadi Liakhovetskic7bb4482012-05-01 18:03:43 +0200137 if (p) {
138 p->pdata = mmc_data;
139 if (p->init) {
140 ret = p->init(pdev, &sdhi_ops);
141 if (ret)
142 goto einit;
143 }
Bastian Hechte82b4ac2012-03-16 12:19:29 -0400144 }
145
Guennadi Liakhovetski56ae1ad2012-11-28 10:24:21 +0100146 priv->clk = clk_get(&pdev->dev, NULL);
Magnus Damma87d5632009-10-02 02:22:09 +0000147 if (IS_ERR(priv->clk)) {
Magnus Damma87d5632009-10-02 02:22:09 +0000148 ret = PTR_ERR(priv->clk);
Guennadi Liakhovetski56ae1ad2012-11-28 10:24:21 +0100149 dev_err(&pdev->dev, "cannot get clock: %d\n", ret);
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100150 goto eclkget;
Magnus Damma87d5632009-10-02 02:22:09 +0000151 }
152
Guennadi Liakhovetski56c49282012-06-20 19:10:32 +0200153 mmc_data->clk_enable = sh_mobile_sdhi_clk_enable;
154 mmc_data->clk_disable = sh_mobile_sdhi_clk_disable;
Guennadi Liakhovetski056676d2010-05-19 18:34:16 +0000155 mmc_data->capabilities = MMC_CAP_MMC_HIGHSPEED;
Guennadi Liakhovetskibb0fe532010-05-19 18:37:36 +0000156 if (p) {
Guennadi Liakhovetskif87c20a2010-05-19 18:36:08 +0000157 mmc_data->flags = p->tmio_flags;
Simon Hormanb91df152011-08-19 10:07:07 +0900158 if (mmc_data->flags & TMIO_MMC_HAS_IDLE_WAIT)
159 mmc_data->write16_hook = sh_mobile_sdhi_write16_hook;
Guennadi Liakhovetskibb0fe532010-05-19 18:37:36 +0000160 mmc_data->ocr_mask = p->tmio_ocr_mask;
Arnd Hannemann998283e2010-08-24 17:27:00 +0200161 mmc_data->capabilities |= p->tmio_caps;
Guennadi Liakhovetskid7d8d502012-05-23 11:05:33 +0200162 mmc_data->capabilities2 |= p->tmio_caps2;
Guennadi Liakhovetski58126c82012-02-09 22:57:10 +0100163 mmc_data->cd_gpio = p->cd_gpio;
Guennadi Liakhovetskic7bb4482012-05-01 18:03:43 +0200164 if (p->set_pwr)
165 mmc_data->set_pwr = sh_mobile_sdhi_set_pwr;
166 if (p->get_cd)
167 mmc_data->get_cd = sh_mobile_sdhi_get_cd;
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100168
Guennadi Liakhovetski3e713372011-05-24 12:24:07 +0200169 if (p->dma_slave_tx > 0 && p->dma_slave_rx > 0) {
Guennadi Liakhovetskic4712702012-05-09 17:09:16 +0200170 priv->param_tx.shdma_slave.slave_id = p->dma_slave_tx;
171 priv->param_rx.shdma_slave.slave_id = p->dma_slave_rx;
172 priv->dma_priv.chan_priv_tx = &priv->param_tx.shdma_slave;
173 priv->dma_priv.chan_priv_rx = &priv->param_rx.shdma_slave;
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100174 priv->dma_priv.alignment_shift = 1; /* 2-byte alignment */
175 mmc_data->dma = &priv->dma_priv;
176 }
Guennadi Liakhovetskibb0fe532010-05-19 18:37:36 +0000177 }
Guennadi Liakhovetski056676d2010-05-19 18:34:16 +0000178
Yusuke Godaf1334fb2010-08-30 11:50:19 +0100179 /*
180 * All SDHI blocks support 2-byte and larger block sizes in 4-bit
181 * bus width mode.
182 */
183 mmc_data->flags |= TMIO_MMC_BLKSZ_2BYTES;
184
Arnd Hannemann23b66072010-12-28 23:22:32 +0100185 /*
186 * All SDHI blocks support SDIO IRQ signalling.
187 */
188 mmc_data->flags |= TMIO_MMC_SDIO_IRQ;
189
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100190 ret = tmio_mmc_host_probe(&host, pdev, mmc_data);
191 if (ret < 0)
192 goto eprobe;
Magnus Damma87d5632009-10-02 02:22:09 +0000193
Simon Hormand5098cb2011-08-26 10:42:39 +0200194 /*
195 * Allow one or more specific (named) ISRs or
196 * one or more multiplexed (un-named) ISRs.
197 */
198
199 irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_CARD_DETECT);
200 if (irq >= 0) {
201 multiplexed_isr = false;
202 ret = request_irq(irq, tmio_mmc_card_detect_irq, 0,
Magnus Dammd6a1f862011-05-06 11:02:45 +0000203 dev_name(&pdev->dev), host);
Simon Hormand5098cb2011-08-26 10:42:39 +0200204 if (ret)
205 goto eirq_card_detect;
Magnus Damm8e7bfdb2011-05-06 11:02:33 +0000206 }
Simon Hormand5098cb2011-08-26 10:42:39 +0200207
208 irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_SDIO);
209 if (irq >= 0) {
210 multiplexed_isr = false;
211 ret = request_irq(irq, tmio_mmc_sdio_irq, 0,
212 dev_name(&pdev->dev), host);
213 if (ret)
214 goto eirq_sdio;
215 }
216
217 irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_SDCARD);
218 if (irq >= 0) {
219 multiplexed_isr = false;
220 ret = request_irq(irq, tmio_mmc_sdcard_irq, 0,
221 dev_name(&pdev->dev), host);
222 if (ret)
223 goto eirq_sdcard;
224 } else if (!multiplexed_isr) {
225 dev_err(&pdev->dev,
226 "Principal SD-card IRQ is missing among named interrupts\n");
227 ret = irq;
228 goto eirq_sdcard;
229 }
230
231 if (multiplexed_isr) {
232 while (1) {
233 irq = platform_get_irq(pdev, i);
234 if (irq < 0)
235 break;
236 i++;
237 ret = request_irq(irq, tmio_mmc_irq, 0,
238 dev_name(&pdev->dev), host);
239 if (ret)
240 goto eirq_multiplexed;
241 }
242
243 /* There must be at least one IRQ source */
244 if (!i)
245 goto eirq_multiplexed;
246 }
247
Magnus Damm1f7d6812011-05-06 11:02:41 +0000248 dev_info(&pdev->dev, "%s base at 0x%08lx clock rate %u MHz\n",
249 mmc_hostname(host->mmc), (unsigned long)
Guennadi Liakhovetski58126c82012-02-09 22:57:10 +0100250 (platform_get_resource(pdev, IORESOURCE_MEM, 0)->start),
Guennadi Liakhovetski369213b2012-11-28 10:24:13 +0100251 host->mmc->f_max / 1000000);
Magnus Damma87d5632009-10-02 02:22:09 +0000252
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100253 return ret;
Magnus Damma87d5632009-10-02 02:22:09 +0000254
Simon Hormand5098cb2011-08-26 10:42:39 +0200255eirq_multiplexed:
256 while (i--) {
257 irq = platform_get_irq(pdev, i);
258 free_irq(irq, host);
259 }
260eirq_sdcard:
261 irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_SDIO);
262 if (irq >= 0)
263 free_irq(irq, host);
264eirq_sdio:
265 irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_CARD_DETECT);
266 if (irq >= 0)
267 free_irq(irq, host);
268eirq_card_detect:
Magnus Damm8e7bfdb2011-05-06 11:02:33 +0000269 tmio_mmc_host_remove(host);
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100270eprobe:
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100271 clk_put(priv->clk);
272eclkget:
Guennadi Liakhovetskic7bb4482012-05-01 18:03:43 +0200273 if (p && p->cleanup)
Bastian Hechte82b4ac2012-03-16 12:19:29 -0400274 p->cleanup(pdev);
275einit:
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100276 kfree(priv);
Magnus Damma87d5632009-10-02 02:22:09 +0000277 return ret;
278}
279
280static int sh_mobile_sdhi_remove(struct platform_device *pdev)
281{
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100282 struct mmc_host *mmc = platform_get_drvdata(pdev);
283 struct tmio_mmc_host *host = mmc_priv(mmc);
284 struct sh_mobile_sdhi *priv = container_of(host->pdata, struct sh_mobile_sdhi, mmc_data);
Guennadi Liakhovetski25958802011-05-11 16:51:15 +0000285 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
Simon Hormand5098cb2011-08-26 10:42:39 +0200286 int i = 0, irq;
Magnus Damma87d5632009-10-02 02:22:09 +0000287
Guennadi Liakhovetskic7bb4482012-05-01 18:03:43 +0200288 if (p)
289 p->pdata = NULL;
Guennadi Liakhovetski25958802011-05-11 16:51:15 +0000290
Guennadi Liakhovetski742a0c72011-05-27 16:54:05 +0200291 tmio_mmc_host_remove(host);
292
Simon Hormand5098cb2011-08-26 10:42:39 +0200293 while (1) {
294 irq = platform_get_irq(pdev, i++);
295 if (irq < 0)
296 break;
297 free_irq(irq, host);
Magnus Dammd6a1f862011-05-06 11:02:45 +0000298 }
299
Magnus Damma87d5632009-10-02 02:22:09 +0000300 clk_put(priv->clk);
Bastian Hechte82b4ac2012-03-16 12:19:29 -0400301
Guennadi Liakhovetskic7bb4482012-05-01 18:03:43 +0200302 if (p && p->cleanup)
Bastian Hechte82b4ac2012-03-16 12:19:29 -0400303 p->cleanup(pdev);
304
Magnus Damma87d5632009-10-02 02:22:09 +0000305 kfree(priv);
306
307 return 0;
308}
309
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +0000310static const struct dev_pm_ops tmio_mmc_dev_pm_ops = {
311 .suspend = tmio_mmc_host_suspend,
312 .resume = tmio_mmc_host_resume,
Guennadi Liakhovetski25958802011-05-11 16:51:15 +0000313 .runtime_suspend = tmio_mmc_host_runtime_suspend,
314 .runtime_resume = tmio_mmc_host_runtime_resume,
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +0000315};
316
Guennadi Liakhovetskic7bb4482012-05-01 18:03:43 +0200317static const struct of_device_id sh_mobile_sdhi_of_match[] = {
318 { .compatible = "renesas,shmobile-sdhi" },
319 { }
320};
321MODULE_DEVICE_TABLE(of, sh_mobile_sdhi_of_match);
322
Magnus Damma87d5632009-10-02 02:22:09 +0000323static struct platform_driver sh_mobile_sdhi_driver = {
324 .driver = {
325 .name = "sh_mobile_sdhi",
326 .owner = THIS_MODULE,
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +0000327 .pm = &tmio_mmc_dev_pm_ops,
Guennadi Liakhovetskic7bb4482012-05-01 18:03:43 +0200328 .of_match_table = sh_mobile_sdhi_of_match,
Magnus Damma87d5632009-10-02 02:22:09 +0000329 },
330 .probe = sh_mobile_sdhi_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -0500331 .remove = sh_mobile_sdhi_remove,
Magnus Damma87d5632009-10-02 02:22:09 +0000332};
333
Axel Lind1f81a62011-11-26 12:55:43 +0800334module_platform_driver(sh_mobile_sdhi_driver);
Magnus Damma87d5632009-10-02 02:22:09 +0000335
336MODULE_DESCRIPTION("SuperH Mobile SDHI driver");
337MODULE_AUTHOR("Magnus Damm");
338MODULE_LICENSE("GPL v2");
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100339MODULE_ALIAS("platform:sh_mobile_sdhi");