2 * Copyright (C) 2010 Marvell International Ltd.
3 * Zhangfei Gao <zhangfei.gao@marvell.com>
4 * Kevin Wang <dwang4@marvell.com>
5 * Jun Nie <njun@marvell.com>
6 * Qiming Wu <wuqm@marvell.com>
7 * Philip Rakity <prakity@marvell.com>
9 * This software is licensed under the terms of the GNU General Public
10 * License version 2, as published by the Free Software Foundation, and
11 * may be copied, distributed, and modified under those terms.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
20 #include <linux/err.h>
21 #include <linux/init.h>
22 #include <linux/platform_device.h>
23 #include <linux/clk.h>
25 #include <linux/gpio.h>
26 #include <linux/mmc/card.h>
27 #include <linux/mmc/host.h>
28 #include <linux/platform_data/pxa_sdhci.h>
29 #include <linux/slab.h>
31 #include "sdhci-pltfm.h"
33 #define SD_FIFO_PARAM 0xe0
34 #define DIS_PAD_SD_CLK_GATE 0x0400 /* Turn on/off Dynamic SD Clock Gating */
35 #define CLK_GATE_ON 0x0200 /* Disable/enable Clock Gate */
36 #define CLK_GATE_CTL 0x0100 /* Clock Gate Control */
37 #define CLK_GATE_SETTING_BITS (DIS_PAD_SD_CLK_GATE | \
38 CLK_GATE_ON | CLK_GATE_CTL)
40 #define SD_CLOCK_BURST_SIZE_SETUP 0xe6
41 #define SDCLK_SEL_SHIFT 8
42 #define SDCLK_SEL_MASK 0x3
43 #define SDCLK_DELAY_SHIFT 10
44 #define SDCLK_DELAY_MASK 0x3c
46 #define SD_CE_ATA_2 0xea
47 #define MMC_CARD 0x1000
48 #define MMC_WIDTH 0x0100
50 static void pxav2_set_private_registers(struct sdhci_host
*host
, u8 mask
)
52 struct platform_device
*pdev
= to_platform_device(mmc_dev(host
->mmc
));
53 struct sdhci_pxa_platdata
*pdata
= pdev
->dev
.platform_data
;
55 if (mask
== SDHCI_RESET_ALL
) {
59 * tune timing of read data/command when crc error happen
60 * no performance impact
62 if (pdata
->clk_delay_sel
== 1) {
63 tmp
= readw(host
->ioaddr
+ SD_CLOCK_BURST_SIZE_SETUP
);
65 tmp
&= ~(SDCLK_DELAY_MASK
<< SDCLK_DELAY_SHIFT
);
66 tmp
|= (pdata
->clk_delay_cycles
& SDCLK_DELAY_MASK
)
68 tmp
&= ~(SDCLK_SEL_MASK
<< SDCLK_SEL_SHIFT
);
69 tmp
|= (1 & SDCLK_SEL_MASK
) << SDCLK_SEL_SHIFT
;
71 writew(tmp
, host
->ioaddr
+ SD_CLOCK_BURST_SIZE_SETUP
);
74 if (pdata
->flags
& PXA_FLAG_ENABLE_CLOCK_GATING
) {
75 tmp
= readw(host
->ioaddr
+ SD_FIFO_PARAM
);
76 tmp
&= ~CLK_GATE_SETTING_BITS
;
77 writew(tmp
, host
->ioaddr
+ SD_FIFO_PARAM
);
79 tmp
= readw(host
->ioaddr
+ SD_FIFO_PARAM
);
80 tmp
&= ~CLK_GATE_SETTING_BITS
;
81 tmp
|= CLK_GATE_SETTING_BITS
;
82 writew(tmp
, host
->ioaddr
+ SD_FIFO_PARAM
);
87 static int pxav2_mmc_set_width(struct sdhci_host
*host
, int width
)
92 ctrl
= readb(host
->ioaddr
+ SDHCI_HOST_CONTROL
);
93 tmp
= readw(host
->ioaddr
+ SD_CE_ATA_2
);
94 if (width
== MMC_BUS_WIDTH_8
) {
95 ctrl
&= ~SDHCI_CTRL_4BITBUS
;
96 tmp
|= MMC_CARD
| MMC_WIDTH
;
98 tmp
&= ~(MMC_CARD
| MMC_WIDTH
);
99 if (width
== MMC_BUS_WIDTH_4
)
100 ctrl
|= SDHCI_CTRL_4BITBUS
;
102 ctrl
&= ~SDHCI_CTRL_4BITBUS
;
104 writew(tmp
, host
->ioaddr
+ SD_CE_ATA_2
);
105 writeb(ctrl
, host
->ioaddr
+ SDHCI_HOST_CONTROL
);
110 static u32
pxav2_get_max_clock(struct sdhci_host
*host
)
112 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
114 return clk_get_rate(pltfm_host
->clk
);
117 static struct sdhci_ops pxav2_sdhci_ops
= {
118 .get_max_clock
= pxav2_get_max_clock
,
119 .platform_reset_exit
= pxav2_set_private_registers
,
120 .platform_8bit_width
= pxav2_mmc_set_width
,
123 static int __devinit
sdhci_pxav2_probe(struct platform_device
*pdev
)
125 struct sdhci_pltfm_host
*pltfm_host
;
126 struct sdhci_pxa_platdata
*pdata
= pdev
->dev
.platform_data
;
127 struct device
*dev
= &pdev
->dev
;
128 struct sdhci_host
*host
= NULL
;
129 struct sdhci_pxa
*pxa
= NULL
;
133 pxa
= kzalloc(sizeof(struct sdhci_pxa
), GFP_KERNEL
);
137 host
= sdhci_pltfm_init(pdev
, NULL
);
140 return PTR_ERR(host
);
142 pltfm_host
= sdhci_priv(host
);
143 pltfm_host
->priv
= pxa
;
145 clk
= clk_get(dev
, "PXA-SDHCLK");
147 dev_err(dev
, "failed to get io clock\n");
151 pltfm_host
->clk
= clk
;
154 host
->quirks
= SDHCI_QUIRK_BROKEN_ADMA
155 | SDHCI_QUIRK_BROKEN_TIMEOUT_VAL
156 | SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN
;
159 if (pdata
->flags
& PXA_FLAG_CARD_PERMANENT
) {
161 host
->quirks
|= SDHCI_QUIRK_BROKEN_CARD_DETECTION
;
162 host
->mmc
->caps
|= MMC_CAP_NONREMOVABLE
;
165 /* If slot design supports 8 bit data, indicate this to MMC. */
166 if (pdata
->flags
& PXA_FLAG_SD_8_BIT_CAPABLE_SLOT
)
167 host
->mmc
->caps
|= MMC_CAP_8_BIT_DATA
;
170 host
->quirks
|= pdata
->quirks
;
171 if (pdata
->host_caps
)
172 host
->mmc
->caps
|= pdata
->host_caps
;
174 host
->mmc
->pm_caps
|= pdata
->pm_caps
;
177 host
->ops
= &pxav2_sdhci_ops
;
179 ret
= sdhci_add_host(host
);
181 dev_err(&pdev
->dev
, "failed to add host\n");
185 platform_set_drvdata(pdev
, host
);
193 sdhci_pltfm_free(pdev
);
198 static int __devexit
sdhci_pxav2_remove(struct platform_device
*pdev
)
200 struct sdhci_host
*host
= platform_get_drvdata(pdev
);
201 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
202 struct sdhci_pxa
*pxa
= pltfm_host
->priv
;
204 sdhci_remove_host(host
, 1);
206 clk_disable(pltfm_host
->clk
);
207 clk_put(pltfm_host
->clk
);
208 sdhci_pltfm_free(pdev
);
211 platform_set_drvdata(pdev
, NULL
);
216 static struct platform_driver sdhci_pxav2_driver
= {
218 .name
= "sdhci-pxav2",
219 .owner
= THIS_MODULE
,
221 .probe
= sdhci_pxav2_probe
,
222 .remove
= __devexit_p(sdhci_pxav2_remove
),
224 .suspend
= sdhci_pltfm_suspend
,
225 .resume
= sdhci_pltfm_resume
,
228 static int __init
sdhci_pxav2_init(void)
230 return platform_driver_register(&sdhci_pxav2_driver
);
233 static void __exit
sdhci_pxav2_exit(void)
235 platform_driver_unregister(&sdhci_pxav2_driver
);
238 module_init(sdhci_pxav2_init
);
239 module_exit(sdhci_pxav2_exit
);
241 MODULE_DESCRIPTION("SDHCI driver for pxav2");
242 MODULE_AUTHOR("Marvell International Ltd.");
243 MODULE_LICENSE("GPL v2");