sh_mobile_sdhi.c 4.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * SuperH Mobile SDHI
 *
 * Copyright (C) 2009 Magnus Damm
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * Based on "Compaq ASIC3 support":
 *
 * Copyright 2001 Compaq Computer Corporation.
 * Copyright 2004-2005 Phil Blundell
 * Copyright 2007-2008 OpenedHand Ltd.
 *
 * Authors: Phil Blundell <pb@handhelds.org>,
 *	    Samuel Ortiz <sameo@openedhand.com>
 *
 */

#include <linux/kernel.h>
#include <linux/clk.h>
23
#include <linux/slab.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

30 31
#include "tmio_mmc.h"

32 33 34
struct sh_mobile_sdhi {
	struct clk *clk;
	struct tmio_mmc_data mmc_data;
35 36 37
	struct sh_dmae_slave param_tx;
	struct sh_dmae_slave param_rx;
	struct tmio_mmc_dma dma_priv;
38 39
};

40
static void sh_mobile_sdhi_set_pwr(struct platform_device *pdev, int state)
41 42 43 44 45 46 47
{
	struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;

	if (p && p->set_pwr)
		p->set_pwr(pdev, state);
}

48
static int sh_mobile_sdhi_get_cd(struct platform_device *pdev)
49 50 51 52 53 54 55 56 57
{
	struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;

	if (p && p->get_cd)
		return p->get_cd(pdev);
	else
		return -ENOSYS;
}

58
static int __devinit sh_mobile_sdhi_probe(struct platform_device *pdev)
59 60
{
	struct sh_mobile_sdhi *priv;
61 62
	struct tmio_mmc_data *mmc_data;
	struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
63
	struct tmio_mmc_host *host;
64
	char clk_name[8];
65
	int irq, ret;
66 67 68 69 70 71 72

	priv = kzalloc(sizeof(struct sh_mobile_sdhi), GFP_KERNEL);
	if (priv == NULL) {
		dev_err(&pdev->dev, "kzalloc failed\n");
		return -ENOMEM;
	}

73 74
	mmc_data = &priv->mmc_data;

75 76 77 78 79
	snprintf(clk_name, sizeof(clk_name), "sdhi%d", pdev->id);
	priv->clk = clk_get(&pdev->dev, clk_name);
	if (IS_ERR(priv->clk)) {
		dev_err(&pdev->dev, "cannot get clock \"%s\"\n", clk_name);
		ret = PTR_ERR(priv->clk);
80
		goto eclkget;
81 82 83 84
	}

	clk_enable(priv->clk);

85 86
	mmc_data->hclk = clk_get_rate(priv->clk);
	mmc_data->set_pwr = sh_mobile_sdhi_set_pwr;
87
	mmc_data->get_cd = sh_mobile_sdhi_get_cd;
88
	mmc_data->capabilities = MMC_CAP_MMC_HIGHSPEED;
89
	if (p) {
90
		mmc_data->flags = p->tmio_flags;
91
		mmc_data->ocr_mask = p->tmio_ocr_mask;
92
		mmc_data->capabilities |= p->tmio_caps;
93 94 95 96 97 98 99 100 101

		if (p->dma_slave_tx >= 0 && p->dma_slave_rx >= 0) {
			priv->param_tx.slave_id = p->dma_slave_tx;
			priv->param_rx.slave_id = p->dma_slave_rx;
			priv->dma_priv.chan_priv_tx = &priv->param_tx;
			priv->dma_priv.chan_priv_rx = &priv->param_rx;
			priv->dma_priv.alignment_shift = 1; /* 2-byte alignment */
			mmc_data->dma = &priv->dma_priv;
		}
102
	}
103

104 105 106 107 108 109
	/*
	 * All SDHI blocks support 2-byte and larger block sizes in 4-bit
	 * bus width mode.
	 */
	mmc_data->flags |= TMIO_MMC_BLKSZ_2BYTES;

110 111 112 113 114
	/*
	 * All SDHI blocks support SDIO IRQ signalling.
	 */
	mmc_data->flags |= TMIO_MMC_SDIO_IRQ;

115 116 117
	ret = tmio_mmc_host_probe(&host, pdev, mmc_data);
	if (ret < 0)
		goto eprobe;
118

119 120 121 122 123 124
	irq = platform_get_irq(pdev, 0);
	if (irq < 0) {
		ret = irq;
		goto eirq;
	}

125
	ret = request_irq(irq, tmio_mmc_irq, 0, dev_name(&pdev->dev), host);
126 127 128
	if (ret)
		goto eirq;

129 130 131 132
	dev_info(&pdev->dev, "%s base at 0x%08lx clock rate %u MHz\n",
		 mmc_hostname(host->mmc), (unsigned long)
		 (platform_get_resource(pdev,IORESOURCE_MEM, 0)->start),
		 mmc_data->hclk / 1000000);
133

134
	return ret;
135

136 137
eirq:
	tmio_mmc_host_remove(host);
138 139 140 141 142
eprobe:
	clk_disable(priv->clk);
	clk_put(priv->clk);
eclkget:
	kfree(priv);
143 144 145 146 147
	return ret;
}

static int sh_mobile_sdhi_remove(struct platform_device *pdev)
{
148 149 150
	struct mmc_host *mmc = platform_get_drvdata(pdev);
	struct tmio_mmc_host *host = mmc_priv(mmc);
	struct sh_mobile_sdhi *priv = container_of(host->pdata, struct sh_mobile_sdhi, mmc_data);
151

152
	free_irq(platform_get_irq(pdev, 0), host);
153
	tmio_mmc_host_remove(host);
154 155 156 157 158 159 160
	clk_disable(priv->clk);
	clk_put(priv->clk);
	kfree(priv);

	return 0;
}

161 162 163 164 165
static const struct dev_pm_ops tmio_mmc_dev_pm_ops = {
	.suspend = tmio_mmc_host_suspend,
	.resume = tmio_mmc_host_resume,
};

166 167 168 169
static struct platform_driver sh_mobile_sdhi_driver = {
	.driver		= {
		.name	= "sh_mobile_sdhi",
		.owner	= THIS_MODULE,
170
		.pm	= &tmio_mmc_dev_pm_ops,
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
	},
	.probe		= sh_mobile_sdhi_probe,
	.remove		= __devexit_p(sh_mobile_sdhi_remove),
};

static int __init sh_mobile_sdhi_init(void)
{
	return platform_driver_register(&sh_mobile_sdhi_driver);
}

static void __exit sh_mobile_sdhi_exit(void)
{
	platform_driver_unregister(&sh_mobile_sdhi_driver);
}

module_init(sh_mobile_sdhi_init);
module_exit(sh_mobile_sdhi_exit);

MODULE_DESCRIPTION("SuperH Mobile SDHI driver");
MODULE_AUTHOR("Magnus Damm");
MODULE_LICENSE("GPL v2");
192
MODULE_ALIAS("platform:sh_mobile_sdhi");