blob: c4895478bfd6a0a15100af6a92544f7e8a2da935 [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>
Magnus Damma87d5632009-10-02 02:22:09 +000024#include <linux/platform_device.h>
Magnus Damm3c49e812010-02-22 13:37:09 +090025#include <linux/mmc/host.h>
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +010026#include <linux/mmc/sh_mobile_sdhi.h>
Magnus Damma87d5632009-10-02 02:22:09 +000027#include <linux/mfd/tmio.h>
Guennadi Liakhovetski056676d2010-05-19 18:34:16 +000028#include <linux/sh_dma.h>
Magnus Damma87d5632009-10-02 02:22:09 +000029
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +010030#include "tmio_mmc.h"
31
Magnus Damma87d5632009-10-02 02:22:09 +000032struct sh_mobile_sdhi {
33 struct clk *clk;
34 struct tmio_mmc_data mmc_data;
Guennadi Liakhovetski056676d2010-05-19 18:34:16 +000035 struct sh_dmae_slave param_tx;
36 struct sh_dmae_slave param_rx;
37 struct tmio_mmc_dma dma_priv;
Magnus Damma87d5632009-10-02 02:22:09 +000038};
39
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +010040static void sh_mobile_sdhi_set_pwr(struct platform_device *pdev, int state)
Magnus Dammbe9cd7b2009-11-27 04:31:27 +000041{
Magnus Dammbe9cd7b2009-11-27 04:31:27 +000042 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
43
44 if (p && p->set_pwr)
45 p->set_pwr(pdev, state);
46}
47
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +010048static int sh_mobile_sdhi_get_cd(struct platform_device *pdev)
Arnd Hannemann998283e2010-08-24 17:27:00 +020049{
Arnd Hannemann998283e2010-08-24 17:27:00 +020050 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
51
52 if (p && p->get_cd)
53 return p->get_cd(pdev);
54 else
55 return -ENOSYS;
56}
57
Paul Mundt25ab9982010-09-16 17:14:40 +090058static int __devinit sh_mobile_sdhi_probe(struct platform_device *pdev)
Magnus Damma87d5632009-10-02 02:22:09 +000059{
60 struct sh_mobile_sdhi *priv;
Guennadi Liakhovetski056676d2010-05-19 18:34:16 +000061 struct tmio_mmc_data *mmc_data;
62 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +010063 struct tmio_mmc_host *host;
Magnus Damma87d5632009-10-02 02:22:09 +000064 char clk_name[8];
Magnus Damm8e7bfdb2011-05-06 11:02:33 +000065 int irq, ret;
Magnus Damma87d5632009-10-02 02:22:09 +000066
67 priv = kzalloc(sizeof(struct sh_mobile_sdhi), GFP_KERNEL);
68 if (priv == NULL) {
69 dev_err(&pdev->dev, "kzalloc failed\n");
70 return -ENOMEM;
71 }
72
Guennadi Liakhovetski056676d2010-05-19 18:34:16 +000073 mmc_data = &priv->mmc_data;
74
Magnus Damma87d5632009-10-02 02:22:09 +000075 snprintf(clk_name, sizeof(clk_name), "sdhi%d", pdev->id);
76 priv->clk = clk_get(&pdev->dev, clk_name);
77 if (IS_ERR(priv->clk)) {
78 dev_err(&pdev->dev, "cannot get clock \"%s\"\n", clk_name);
79 ret = PTR_ERR(priv->clk);
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +010080 goto eclkget;
Magnus Damma87d5632009-10-02 02:22:09 +000081 }
82
83 clk_enable(priv->clk);
84
Guennadi Liakhovetski056676d2010-05-19 18:34:16 +000085 mmc_data->hclk = clk_get_rate(priv->clk);
86 mmc_data->set_pwr = sh_mobile_sdhi_set_pwr;
Arnd Hannemann998283e2010-08-24 17:27:00 +020087 mmc_data->get_cd = sh_mobile_sdhi_get_cd;
Guennadi Liakhovetski056676d2010-05-19 18:34:16 +000088 mmc_data->capabilities = MMC_CAP_MMC_HIGHSPEED;
Guennadi Liakhovetskibb0fe532010-05-19 18:37:36 +000089 if (p) {
Guennadi Liakhovetskif87c20a2010-05-19 18:36:08 +000090 mmc_data->flags = p->tmio_flags;
Guennadi Liakhovetskibb0fe532010-05-19 18:37:36 +000091 mmc_data->ocr_mask = p->tmio_ocr_mask;
Arnd Hannemann998283e2010-08-24 17:27:00 +020092 mmc_data->capabilities |= p->tmio_caps;
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +010093
94 if (p->dma_slave_tx >= 0 && p->dma_slave_rx >= 0) {
95 priv->param_tx.slave_id = p->dma_slave_tx;
96 priv->param_rx.slave_id = p->dma_slave_rx;
97 priv->dma_priv.chan_priv_tx = &priv->param_tx;
98 priv->dma_priv.chan_priv_rx = &priv->param_rx;
99 priv->dma_priv.alignment_shift = 1; /* 2-byte alignment */
100 mmc_data->dma = &priv->dma_priv;
101 }
Guennadi Liakhovetskibb0fe532010-05-19 18:37:36 +0000102 }
Guennadi Liakhovetski056676d2010-05-19 18:34:16 +0000103
Yusuke Godaf1334fb2010-08-30 11:50:19 +0100104 /*
105 * All SDHI blocks support 2-byte and larger block sizes in 4-bit
106 * bus width mode.
107 */
108 mmc_data->flags |= TMIO_MMC_BLKSZ_2BYTES;
109
Arnd Hannemann23b66072010-12-28 23:22:32 +0100110 /*
111 * All SDHI blocks support SDIO IRQ signalling.
112 */
113 mmc_data->flags |= TMIO_MMC_SDIO_IRQ;
114
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100115 ret = tmio_mmc_host_probe(&host, pdev, mmc_data);
116 if (ret < 0)
117 goto eprobe;
Magnus Damma87d5632009-10-02 02:22:09 +0000118
Magnus Damm8e7bfdb2011-05-06 11:02:33 +0000119 irq = platform_get_irq(pdev, 0);
120 if (irq < 0) {
121 ret = irq;
122 goto eirq;
123 }
124
Magnus Damm3ab50062011-05-06 11:02:37 +0000125 ret = request_irq(irq, tmio_mmc_irq, 0, dev_name(&pdev->dev), host);
Magnus Damm8e7bfdb2011-05-06 11:02:33 +0000126 if (ret)
127 goto eirq;
128
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100129 pr_info("%s at 0x%08lx irq %d\n", mmc_hostname(host->mmc),
Magnus Damm8e7bfdb2011-05-06 11:02:33 +0000130 (unsigned long)host->ctl, irq);
Magnus Damma87d5632009-10-02 02:22:09 +0000131
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100132 return ret;
Magnus Damma87d5632009-10-02 02:22:09 +0000133
Magnus Damm8e7bfdb2011-05-06 11:02:33 +0000134eirq:
135 tmio_mmc_host_remove(host);
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100136eprobe:
137 clk_disable(priv->clk);
138 clk_put(priv->clk);
139eclkget:
140 kfree(priv);
Magnus Damma87d5632009-10-02 02:22:09 +0000141 return ret;
142}
143
144static int sh_mobile_sdhi_remove(struct platform_device *pdev)
145{
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100146 struct mmc_host *mmc = platform_get_drvdata(pdev);
147 struct tmio_mmc_host *host = mmc_priv(mmc);
148 struct sh_mobile_sdhi *priv = container_of(host->pdata, struct sh_mobile_sdhi, mmc_data);
Magnus Damma87d5632009-10-02 02:22:09 +0000149
Magnus Damm8e7bfdb2011-05-06 11:02:33 +0000150 free_irq(platform_get_irq(pdev, 0), host);
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100151 tmio_mmc_host_remove(host);
Magnus Damma87d5632009-10-02 02:22:09 +0000152 clk_disable(priv->clk);
153 clk_put(priv->clk);
154 kfree(priv);
155
156 return 0;
157}
158
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +0000159static const struct dev_pm_ops tmio_mmc_dev_pm_ops = {
160 .suspend = tmio_mmc_host_suspend,
161 .resume = tmio_mmc_host_resume,
162};
163
Magnus Damma87d5632009-10-02 02:22:09 +0000164static struct platform_driver sh_mobile_sdhi_driver = {
165 .driver = {
166 .name = "sh_mobile_sdhi",
167 .owner = THIS_MODULE,
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +0000168 .pm = &tmio_mmc_dev_pm_ops,
Magnus Damma87d5632009-10-02 02:22:09 +0000169 },
170 .probe = sh_mobile_sdhi_probe,
171 .remove = __devexit_p(sh_mobile_sdhi_remove),
172};
173
174static int __init sh_mobile_sdhi_init(void)
175{
176 return platform_driver_register(&sh_mobile_sdhi_driver);
177}
178
179static void __exit sh_mobile_sdhi_exit(void)
180{
181 platform_driver_unregister(&sh_mobile_sdhi_driver);
182}
183
184module_init(sh_mobile_sdhi_init);
185module_exit(sh_mobile_sdhi_exit);
186
187MODULE_DESCRIPTION("SuperH Mobile SDHI driver");
188MODULE_AUTHOR("Magnus Damm");
189MODULE_LICENSE("GPL v2");
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100190MODULE_ALIAS("platform:sh_mobile_sdhi");