blob: 0bdc146178dbcee41aa55c1f27754bb36c256d37 [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
Paul Mundt25ab9982010-09-16 17:14:40 +0900120static int __devinit 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;
Magnus Damma87d5632009-10-02 02:22:09 +0000126 char clk_name[8];
Simon Hormand5098cb2011-08-26 10:42:39 +0200127 int irq, ret, i = 0;
128 bool multiplexed_isr = true;
Magnus Damma87d5632009-10-02 02:22:09 +0000129
130 priv = kzalloc(sizeof(struct sh_mobile_sdhi), GFP_KERNEL);
131 if (priv == NULL) {
132 dev_err(&pdev->dev, "kzalloc failed\n");
133 return -ENOMEM;
134 }
135
Guennadi Liakhovetski056676d2010-05-19 18:34:16 +0000136 mmc_data = &priv->mmc_data;
137
Guennadi Liakhovetskic7bb4482012-05-01 18:03:43 +0200138 if (p) {
139 p->pdata = mmc_data;
140 if (p->init) {
141 ret = p->init(pdev, &sdhi_ops);
142 if (ret)
143 goto einit;
144 }
Bastian Hechte82b4ac2012-03-16 12:19:29 -0400145 }
146
Magnus Damma87d5632009-10-02 02:22:09 +0000147 snprintf(clk_name, sizeof(clk_name), "sdhi%d", pdev->id);
148 priv->clk = clk_get(&pdev->dev, clk_name);
149 if (IS_ERR(priv->clk)) {
150 dev_err(&pdev->dev, "cannot get clock \"%s\"\n", clk_name);
151 ret = PTR_ERR(priv->clk);
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100152 goto eclkget;
Magnus Damma87d5632009-10-02 02:22:09 +0000153 }
154
Guennadi Liakhovetski56c49282012-06-20 19:10:32 +0200155 mmc_data->clk_enable = sh_mobile_sdhi_clk_enable;
156 mmc_data->clk_disable = sh_mobile_sdhi_clk_disable;
Guennadi Liakhovetski056676d2010-05-19 18:34:16 +0000157 mmc_data->capabilities = MMC_CAP_MMC_HIGHSPEED;
Guennadi Liakhovetskibb0fe532010-05-19 18:37:36 +0000158 if (p) {
Guennadi Liakhovetskif87c20a2010-05-19 18:36:08 +0000159 mmc_data->flags = p->tmio_flags;
Simon Hormanb91df152011-08-19 10:07:07 +0900160 if (mmc_data->flags & TMIO_MMC_HAS_IDLE_WAIT)
161 mmc_data->write16_hook = sh_mobile_sdhi_write16_hook;
Guennadi Liakhovetskibb0fe532010-05-19 18:37:36 +0000162 mmc_data->ocr_mask = p->tmio_ocr_mask;
Arnd Hannemann998283e2010-08-24 17:27:00 +0200163 mmc_data->capabilities |= p->tmio_caps;
Guennadi Liakhovetskid7d8d502012-05-23 11:05:33 +0200164 mmc_data->capabilities2 |= p->tmio_caps2;
Guennadi Liakhovetski58126c82012-02-09 22:57:10 +0100165 mmc_data->cd_gpio = p->cd_gpio;
Guennadi Liakhovetskic7bb4482012-05-01 18:03:43 +0200166 if (p->set_pwr)
167 mmc_data->set_pwr = sh_mobile_sdhi_set_pwr;
168 if (p->get_cd)
169 mmc_data->get_cd = sh_mobile_sdhi_get_cd;
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100170
Guennadi Liakhovetski3e713372011-05-24 12:24:07 +0200171 if (p->dma_slave_tx > 0 && p->dma_slave_rx > 0) {
Guennadi Liakhovetskic4712702012-05-09 17:09:16 +0200172 priv->param_tx.shdma_slave.slave_id = p->dma_slave_tx;
173 priv->param_rx.shdma_slave.slave_id = p->dma_slave_rx;
174 priv->dma_priv.chan_priv_tx = &priv->param_tx.shdma_slave;
175 priv->dma_priv.chan_priv_rx = &priv->param_rx.shdma_slave;
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100176 priv->dma_priv.alignment_shift = 1; /* 2-byte alignment */
177 mmc_data->dma = &priv->dma_priv;
178 }
Guennadi Liakhovetskibb0fe532010-05-19 18:37:36 +0000179 }
Guennadi Liakhovetski056676d2010-05-19 18:34:16 +0000180
Yusuke Godaf1334fb2010-08-30 11:50:19 +0100181 /*
182 * All SDHI blocks support 2-byte and larger block sizes in 4-bit
183 * bus width mode.
184 */
185 mmc_data->flags |= TMIO_MMC_BLKSZ_2BYTES;
186
Arnd Hannemann23b66072010-12-28 23:22:32 +0100187 /*
188 * All SDHI blocks support SDIO IRQ signalling.
189 */
190 mmc_data->flags |= TMIO_MMC_SDIO_IRQ;
191
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100192 ret = tmio_mmc_host_probe(&host, pdev, mmc_data);
193 if (ret < 0)
194 goto eprobe;
Magnus Damma87d5632009-10-02 02:22:09 +0000195
Simon Hormand5098cb2011-08-26 10:42:39 +0200196 /*
197 * Allow one or more specific (named) ISRs or
198 * one or more multiplexed (un-named) ISRs.
199 */
200
201 irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_CARD_DETECT);
202 if (irq >= 0) {
203 multiplexed_isr = false;
204 ret = request_irq(irq, tmio_mmc_card_detect_irq, 0,
Magnus Dammd6a1f862011-05-06 11:02:45 +0000205 dev_name(&pdev->dev), host);
Simon Hormand5098cb2011-08-26 10:42:39 +0200206 if (ret)
207 goto eirq_card_detect;
Magnus Damm8e7bfdb2011-05-06 11:02:33 +0000208 }
Simon Hormand5098cb2011-08-26 10:42:39 +0200209
210 irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_SDIO);
211 if (irq >= 0) {
212 multiplexed_isr = false;
213 ret = request_irq(irq, tmio_mmc_sdio_irq, 0,
214 dev_name(&pdev->dev), host);
215 if (ret)
216 goto eirq_sdio;
217 }
218
219 irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_SDCARD);
220 if (irq >= 0) {
221 multiplexed_isr = false;
222 ret = request_irq(irq, tmio_mmc_sdcard_irq, 0,
223 dev_name(&pdev->dev), host);
224 if (ret)
225 goto eirq_sdcard;
226 } else if (!multiplexed_isr) {
227 dev_err(&pdev->dev,
228 "Principal SD-card IRQ is missing among named interrupts\n");
229 ret = irq;
230 goto eirq_sdcard;
231 }
232
233 if (multiplexed_isr) {
234 while (1) {
235 irq = platform_get_irq(pdev, i);
236 if (irq < 0)
237 break;
238 i++;
239 ret = request_irq(irq, tmio_mmc_irq, 0,
240 dev_name(&pdev->dev), host);
241 if (ret)
242 goto eirq_multiplexed;
243 }
244
245 /* There must be at least one IRQ source */
246 if (!i)
247 goto eirq_multiplexed;
248 }
249
Magnus Damm1f7d6812011-05-06 11:02:41 +0000250 dev_info(&pdev->dev, "%s base at 0x%08lx clock rate %u MHz\n",
251 mmc_hostname(host->mmc), (unsigned long)
Guennadi Liakhovetski58126c82012-02-09 22:57:10 +0100252 (platform_get_resource(pdev, IORESOURCE_MEM, 0)->start),
Magnus Damm1f7d6812011-05-06 11:02:41 +0000253 mmc_data->hclk / 1000000);
Magnus Damma87d5632009-10-02 02:22:09 +0000254
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100255 return ret;
Magnus Damma87d5632009-10-02 02:22:09 +0000256
Simon Hormand5098cb2011-08-26 10:42:39 +0200257eirq_multiplexed:
258 while (i--) {
259 irq = platform_get_irq(pdev, i);
260 free_irq(irq, host);
261 }
262eirq_sdcard:
263 irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_SDIO);
264 if (irq >= 0)
265 free_irq(irq, host);
266eirq_sdio:
267 irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_CARD_DETECT);
268 if (irq >= 0)
269 free_irq(irq, host);
270eirq_card_detect:
Magnus Damm8e7bfdb2011-05-06 11:02:33 +0000271 tmio_mmc_host_remove(host);
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100272eprobe:
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100273 clk_put(priv->clk);
274eclkget:
Guennadi Liakhovetskic7bb4482012-05-01 18:03:43 +0200275 if (p && p->cleanup)
Bastian Hechte82b4ac2012-03-16 12:19:29 -0400276 p->cleanup(pdev);
277einit:
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100278 kfree(priv);
Magnus Damma87d5632009-10-02 02:22:09 +0000279 return ret;
280}
281
282static int sh_mobile_sdhi_remove(struct platform_device *pdev)
283{
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100284 struct mmc_host *mmc = platform_get_drvdata(pdev);
285 struct tmio_mmc_host *host = mmc_priv(mmc);
286 struct sh_mobile_sdhi *priv = container_of(host->pdata, struct sh_mobile_sdhi, mmc_data);
Guennadi Liakhovetski25958802011-05-11 16:51:15 +0000287 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
Simon Hormand5098cb2011-08-26 10:42:39 +0200288 int i = 0, irq;
Magnus Damma87d5632009-10-02 02:22:09 +0000289
Guennadi Liakhovetskic7bb4482012-05-01 18:03:43 +0200290 if (p)
291 p->pdata = NULL;
Guennadi Liakhovetski25958802011-05-11 16:51:15 +0000292
Guennadi Liakhovetski742a0c72011-05-27 16:54:05 +0200293 tmio_mmc_host_remove(host);
294
Simon Hormand5098cb2011-08-26 10:42:39 +0200295 while (1) {
296 irq = platform_get_irq(pdev, i++);
297 if (irq < 0)
298 break;
299 free_irq(irq, host);
Magnus Dammd6a1f862011-05-06 11:02:45 +0000300 }
301
Magnus Damma87d5632009-10-02 02:22:09 +0000302 clk_put(priv->clk);
Bastian Hechte82b4ac2012-03-16 12:19:29 -0400303
Guennadi Liakhovetskic7bb4482012-05-01 18:03:43 +0200304 if (p && p->cleanup)
Bastian Hechte82b4ac2012-03-16 12:19:29 -0400305 p->cleanup(pdev);
306
Magnus Damma87d5632009-10-02 02:22:09 +0000307 kfree(priv);
308
309 return 0;
310}
311
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +0000312static const struct dev_pm_ops tmio_mmc_dev_pm_ops = {
313 .suspend = tmio_mmc_host_suspend,
314 .resume = tmio_mmc_host_resume,
Guennadi Liakhovetski25958802011-05-11 16:51:15 +0000315 .runtime_suspend = tmio_mmc_host_runtime_suspend,
316 .runtime_resume = tmio_mmc_host_runtime_resume,
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +0000317};
318
Guennadi Liakhovetskic7bb4482012-05-01 18:03:43 +0200319static const struct of_device_id sh_mobile_sdhi_of_match[] = {
320 { .compatible = "renesas,shmobile-sdhi" },
321 { }
322};
323MODULE_DEVICE_TABLE(of, sh_mobile_sdhi_of_match);
324
Magnus Damma87d5632009-10-02 02:22:09 +0000325static struct platform_driver sh_mobile_sdhi_driver = {
326 .driver = {
327 .name = "sh_mobile_sdhi",
328 .owner = THIS_MODULE,
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +0000329 .pm = &tmio_mmc_dev_pm_ops,
Guennadi Liakhovetskic7bb4482012-05-01 18:03:43 +0200330 .of_match_table = sh_mobile_sdhi_of_match,
Magnus Damma87d5632009-10-02 02:22:09 +0000331 },
332 .probe = sh_mobile_sdhi_probe,
333 .remove = __devexit_p(sh_mobile_sdhi_remove),
334};
335
Axel Lind1f81a62011-11-26 12:55:43 +0800336module_platform_driver(sh_mobile_sdhi_driver);
Magnus Damma87d5632009-10-02 02:22:09 +0000337
338MODULE_DESCRIPTION("SuperH Mobile SDHI driver");
339MODULE_AUTHOR("Magnus Damm");
340MODULE_LICENSE("GPL v2");
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100341MODULE_ALIAS("platform:sh_mobile_sdhi");