2 * Copyright (C) 2014 Broadcom Corporation
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation version 2.
8 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
9 * kind, whether express or implied; without even the implied warranty
10 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
15 * iProc SDHCI platform driver
18 #include <linux/delay.h>
19 #include <linux/module.h>
20 #include <linux/mmc/host.h>
22 #include <linux/of_device.h>
23 #include "sdhci-pltfm.h"
25 struct sdhci_iproc_data
{
26 const struct sdhci_pltfm_data
*pdata
;
32 struct sdhci_iproc_host
{
33 const struct sdhci_iproc_data
*data
;
38 #define REG_OFFSET_IN_BITS(reg) ((reg) << 3 & 0x18)
40 static inline u32
sdhci_iproc_readl(struct sdhci_host
*host
, int reg
)
42 u32 val
= readl(host
->ioaddr
+ reg
);
44 pr_debug("%s: readl [0x%02x] 0x%08x\n",
45 mmc_hostname(host
->mmc
), reg
, val
);
49 static u16
sdhci_iproc_readw(struct sdhci_host
*host
, int reg
)
51 u32 val
= sdhci_iproc_readl(host
, (reg
& ~3));
52 u16 word
= val
>> REG_OFFSET_IN_BITS(reg
) & 0xffff;
56 static u8
sdhci_iproc_readb(struct sdhci_host
*host
, int reg
)
58 u32 val
= sdhci_iproc_readl(host
, (reg
& ~3));
59 u8 byte
= val
>> REG_OFFSET_IN_BITS(reg
) & 0xff;
63 static inline void sdhci_iproc_writel(struct sdhci_host
*host
, u32 val
, int reg
)
65 pr_debug("%s: writel [0x%02x] 0x%08x\n",
66 mmc_hostname(host
->mmc
), reg
, val
);
68 writel(val
, host
->ioaddr
+ reg
);
70 if (host
->clock
<= 400000) {
71 /* Round up to micro-second four SD clock delay */
73 udelay((4 * 1000000 + host
->clock
- 1) / host
->clock
);
80 * The Arasan has a bugette whereby it may lose the content of successive
81 * writes to the same register that are within two SD-card clock cycles of
82 * each other (a clock domain crossing problem). The data
83 * register does not have this problem, which is just as well - otherwise we'd
84 * have to nobble the DMA engine too.
86 * This wouldn't be a problem with the code except that we can only write the
87 * controller with 32-bit writes. So two different 16-bit registers are
88 * written back to back creates the problem.
90 * In reality, this only happens when SDHCI_BLOCK_SIZE and SDHCI_BLOCK_COUNT
91 * are written followed by SDHCI_TRANSFER_MODE and SDHCI_COMMAND.
92 * The BLOCK_SIZE and BLOCK_COUNT are meaningless until a command issued so
93 * the work around can be further optimized. We can keep shadow values of
94 * BLOCK_SIZE, BLOCK_COUNT, and TRANSFER_MODE until a COMMAND is issued.
95 * Then, write the BLOCK_SIZE+BLOCK_COUNT in a single 32-bit write followed
96 * by the TRANSFER+COMMAND in another 32-bit write.
98 static void sdhci_iproc_writew(struct sdhci_host
*host
, u16 val
, int reg
)
100 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
101 struct sdhci_iproc_host
*iproc_host
= sdhci_pltfm_priv(pltfm_host
);
102 u32 word_shift
= REG_OFFSET_IN_BITS(reg
);
103 u32 mask
= 0xffff << word_shift
;
106 if (reg
== SDHCI_COMMAND
) {
107 /* Write the block now as we are issuing a command */
108 if (iproc_host
->shadow_blk
!= 0) {
109 sdhci_iproc_writel(host
, iproc_host
->shadow_blk
,
111 iproc_host
->shadow_blk
= 0;
113 oldval
= iproc_host
->shadow_cmd
;
114 } else if (reg
== SDHCI_BLOCK_SIZE
|| reg
== SDHCI_BLOCK_COUNT
) {
115 /* Block size and count are stored in shadow reg */
116 oldval
= iproc_host
->shadow_blk
;
118 /* Read reg, all other registers are not shadowed */
119 oldval
= sdhci_iproc_readl(host
, (reg
& ~3));
121 newval
= (oldval
& ~mask
) | (val
<< word_shift
);
123 if (reg
== SDHCI_TRANSFER_MODE
) {
124 /* Save the transfer mode until the command is issued */
125 iproc_host
->shadow_cmd
= newval
;
126 } else if (reg
== SDHCI_BLOCK_SIZE
|| reg
== SDHCI_BLOCK_COUNT
) {
127 /* Save the block info until the command is issued */
128 iproc_host
->shadow_blk
= newval
;
130 /* Command or other regular 32-bit write */
131 sdhci_iproc_writel(host
, newval
, reg
& ~3);
135 static void sdhci_iproc_writeb(struct sdhci_host
*host
, u8 val
, int reg
)
137 u32 oldval
= sdhci_iproc_readl(host
, (reg
& ~3));
138 u32 byte_shift
= REG_OFFSET_IN_BITS(reg
);
139 u32 mask
= 0xff << byte_shift
;
140 u32 newval
= (oldval
& ~mask
) | (val
<< byte_shift
);
142 sdhci_iproc_writel(host
, newval
, reg
& ~3);
145 static const struct sdhci_ops sdhci_iproc_ops
= {
146 .set_clock
= sdhci_set_clock
,
147 .get_max_clock
= sdhci_pltfm_clk_get_max_clock
,
148 .set_bus_width
= sdhci_set_bus_width
,
149 .reset
= sdhci_reset
,
150 .set_uhs_signaling
= sdhci_set_uhs_signaling
,
153 static const struct sdhci_ops sdhci_iproc_32only_ops
= {
154 .read_l
= sdhci_iproc_readl
,
155 .read_w
= sdhci_iproc_readw
,
156 .read_b
= sdhci_iproc_readb
,
157 .write_l
= sdhci_iproc_writel
,
158 .write_w
= sdhci_iproc_writew
,
159 .write_b
= sdhci_iproc_writeb
,
160 .set_clock
= sdhci_set_clock
,
161 .get_max_clock
= sdhci_pltfm_clk_get_max_clock
,
162 .set_bus_width
= sdhci_set_bus_width
,
163 .reset
= sdhci_reset
,
164 .set_uhs_signaling
= sdhci_set_uhs_signaling
,
167 static const struct sdhci_pltfm_data sdhci_iproc_cygnus_pltfm_data
= {
168 .quirks
= SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK
,
169 .quirks2
= SDHCI_QUIRK2_ACMD23_BROKEN
,
170 .ops
= &sdhci_iproc_32only_ops
,
173 static const struct sdhci_iproc_data iproc_cygnus_data
= {
174 .pdata
= &sdhci_iproc_cygnus_pltfm_data
,
175 .caps
= ((0x1 << SDHCI_MAX_BLOCK_SHIFT
)
176 & SDHCI_MAX_BLOCK_MASK
) |
179 SDHCI_CAN_DO_SUSPEND
|
183 .caps1
= SDHCI_DRIVER_TYPE_C
|
184 SDHCI_DRIVER_TYPE_D
|
186 .mmc_caps
= MMC_CAP_1_8V_DDR
,
189 static const struct sdhci_pltfm_data sdhci_iproc_pltfm_data
= {
190 .quirks
= SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK
,
191 .quirks2
= SDHCI_QUIRK2_ACMD23_BROKEN
,
192 .ops
= &sdhci_iproc_ops
,
195 static const struct sdhci_iproc_data iproc_data
= {
196 .pdata
= &sdhci_iproc_pltfm_data
,
197 .caps
= ((0x1 << SDHCI_MAX_BLOCK_SHIFT
)
198 & SDHCI_MAX_BLOCK_MASK
) |
201 SDHCI_CAN_DO_SUSPEND
|
205 .caps1
= SDHCI_DRIVER_TYPE_C
|
206 SDHCI_DRIVER_TYPE_D
|
208 .mmc_caps
= MMC_CAP_1_8V_DDR
,
211 static const struct sdhci_pltfm_data sdhci_bcm2835_pltfm_data
= {
212 .quirks
= SDHCI_QUIRK_BROKEN_CARD_DETECTION
|
213 SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK
|
214 SDHCI_QUIRK_MISSING_CAPS
,
215 .ops
= &sdhci_iproc_32only_ops
,
218 static const struct sdhci_iproc_data bcm2835_data
= {
219 .pdata
= &sdhci_bcm2835_pltfm_data
,
220 .caps
= SDHCI_CAN_VDD_330
,
222 .mmc_caps
= 0x00000000,
225 static const struct of_device_id sdhci_iproc_of_match
[] = {
226 { .compatible
= "brcm,bcm2835-sdhci", .data
= &bcm2835_data
},
227 { .compatible
= "brcm,sdhci-iproc-cygnus", .data
= &iproc_cygnus_data
},
228 { .compatible
= "brcm,sdhci-iproc", .data
= &iproc_data
},
231 MODULE_DEVICE_TABLE(of
, sdhci_iproc_of_match
);
233 static int sdhci_iproc_probe(struct platform_device
*pdev
)
235 const struct of_device_id
*match
;
236 const struct sdhci_iproc_data
*iproc_data
;
237 struct sdhci_host
*host
;
238 struct sdhci_iproc_host
*iproc_host
;
239 struct sdhci_pltfm_host
*pltfm_host
;
242 match
= of_match_device(sdhci_iproc_of_match
, &pdev
->dev
);
245 iproc_data
= match
->data
;
247 host
= sdhci_pltfm_init(pdev
, iproc_data
->pdata
, sizeof(*iproc_host
));
249 return PTR_ERR(host
);
251 pltfm_host
= sdhci_priv(host
);
252 iproc_host
= sdhci_pltfm_priv(pltfm_host
);
254 iproc_host
->data
= iproc_data
;
256 mmc_of_parse(host
->mmc
);
257 sdhci_get_of_property(pdev
);
259 host
->mmc
->caps
|= iproc_host
->data
->mmc_caps
;
261 pltfm_host
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
262 if (IS_ERR(pltfm_host
->clk
)) {
263 ret
= PTR_ERR(pltfm_host
->clk
);
266 ret
= clk_prepare_enable(pltfm_host
->clk
);
268 dev_err(&pdev
->dev
, "failed to enable host clk\n");
272 if (iproc_host
->data
->pdata
->quirks
& SDHCI_QUIRK_MISSING_CAPS
) {
273 host
->caps
= iproc_host
->data
->caps
;
274 host
->caps1
= iproc_host
->data
->caps1
;
277 ret
= sdhci_add_host(host
);
284 clk_disable_unprepare(pltfm_host
->clk
);
286 sdhci_pltfm_free(pdev
);
290 static struct platform_driver sdhci_iproc_driver
= {
292 .name
= "sdhci-iproc",
293 .of_match_table
= sdhci_iproc_of_match
,
294 .pm
= &sdhci_pltfm_pmops
,
296 .probe
= sdhci_iproc_probe
,
297 .remove
= sdhci_pltfm_unregister
,
299 module_platform_driver(sdhci_iproc_driver
);
301 MODULE_AUTHOR("Broadcom");
302 MODULE_DESCRIPTION("IPROC SDHCI driver");
303 MODULE_LICENSE("GPL v2");