xref: /openbmc/linux/drivers/mmc/host/sdhci-dove.c (revision 96d7b78c)
1 /*
2  * sdhci-dove.c Support for SDHCI on Marvell's Dove SoC
3  *
4  * Author: Saeed Bishara <saeed@marvell.com>
5  *	   Mike Rapoport <mike@compulab.co.il>
6  * Based on sdhci-cns3xxx.c
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21 
22 #include <linux/clk.h>
23 #include <linux/err.h>
24 #include <linux/gpio.h>
25 #include <linux/io.h>
26 #include <linux/mmc/host.h>
27 #include <linux/module.h>
28 #include <linux/of.h>
29 #include <linux/of_gpio.h>
30 
31 #include "sdhci-pltfm.h"
32 
33 struct sdhci_dove_priv {
34 	struct clk *clk;
35 	int gpio_cd;
36 };
37 
38 static irqreturn_t sdhci_dove_carddetect_irq(int irq, void *data)
39 {
40 	struct sdhci_host *host = data;
41 
42 	tasklet_schedule(&host->card_tasklet);
43 	return IRQ_HANDLED;
44 }
45 
46 static u16 sdhci_dove_readw(struct sdhci_host *host, int reg)
47 {
48 	u16 ret;
49 
50 	switch (reg) {
51 	case SDHCI_HOST_VERSION:
52 	case SDHCI_SLOT_INT_STATUS:
53 		/* those registers don't exist */
54 		return 0;
55 	default:
56 		ret = readw(host->ioaddr + reg);
57 	}
58 	return ret;
59 }
60 
61 static u32 sdhci_dove_readl(struct sdhci_host *host, int reg)
62 {
63 	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
64 	struct sdhci_dove_priv *priv = pltfm_host->priv;
65 	u32 ret;
66 
67 	ret = readl(host->ioaddr + reg);
68 
69 	switch (reg) {
70 	case SDHCI_CAPABILITIES:
71 		/* Mask the support for 3.0V */
72 		ret &= ~SDHCI_CAN_VDD_300;
73 		break;
74 	case SDHCI_PRESENT_STATE:
75 		if (gpio_is_valid(priv->gpio_cd)) {
76 			if (gpio_get_value(priv->gpio_cd) == 0)
77 				ret |= SDHCI_CARD_PRESENT;
78 			else
79 				ret &= ~SDHCI_CARD_PRESENT;
80 		}
81 		break;
82 	}
83 	return ret;
84 }
85 
86 static const struct sdhci_ops sdhci_dove_ops = {
87 	.read_w	= sdhci_dove_readw,
88 	.read_l	= sdhci_dove_readl,
89 	.set_clock = sdhci_set_clock,
90 	.set_bus_width = sdhci_set_bus_width,
91 	.reset = sdhci_reset,
92 	.set_uhs_signaling = sdhci_set_uhs_signaling,
93 };
94 
95 static const struct sdhci_pltfm_data sdhci_dove_pdata = {
96 	.ops	= &sdhci_dove_ops,
97 	.quirks	= SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER |
98 		  SDHCI_QUIRK_NO_BUSY_IRQ |
99 		  SDHCI_QUIRK_BROKEN_TIMEOUT_VAL |
100 		  SDHCI_QUIRK_FORCE_DMA |
101 		  SDHCI_QUIRK_NO_HISPD_BIT,
102 };
103 
104 static int sdhci_dove_probe(struct platform_device *pdev)
105 {
106 	struct sdhci_host *host;
107 	struct sdhci_pltfm_host *pltfm_host;
108 	struct sdhci_dove_priv *priv;
109 	int ret;
110 
111 	priv = devm_kzalloc(&pdev->dev, sizeof(struct sdhci_dove_priv),
112 			    GFP_KERNEL);
113 	if (!priv) {
114 		dev_err(&pdev->dev, "unable to allocate private data");
115 		return -ENOMEM;
116 	}
117 
118 	priv->clk = devm_clk_get(&pdev->dev, NULL);
119 
120 	if (pdev->dev.of_node) {
121 		priv->gpio_cd = of_get_named_gpio(pdev->dev.of_node,
122 						  "cd-gpios", 0);
123 	} else {
124 		priv->gpio_cd = -EINVAL;
125 	}
126 
127 	if (gpio_is_valid(priv->gpio_cd)) {
128 		ret = gpio_request(priv->gpio_cd, "sdhci-cd");
129 		if (ret) {
130 			dev_err(&pdev->dev, "card detect gpio request failed: %d\n",
131 				ret);
132 			return ret;
133 		}
134 		gpio_direction_input(priv->gpio_cd);
135 	}
136 
137 	host = sdhci_pltfm_init(pdev, &sdhci_dove_pdata, 0);
138 	if (IS_ERR(host)) {
139 		ret = PTR_ERR(host);
140 		goto err_sdhci_pltfm_init;
141 	}
142 
143 	pltfm_host = sdhci_priv(host);
144 	pltfm_host->priv = priv;
145 
146 	if (!IS_ERR(priv->clk))
147 		clk_prepare_enable(priv->clk);
148 
149 	sdhci_get_of_property(pdev);
150 
151 	ret = sdhci_add_host(host);
152 	if (ret)
153 		goto err_sdhci_add;
154 
155 	/*
156 	 * We must request the IRQ after sdhci_add_host(), as the tasklet only
157 	 * gets setup in sdhci_add_host() and we oops.
158 	 */
159 	if (gpio_is_valid(priv->gpio_cd)) {
160 		ret = request_irq(gpio_to_irq(priv->gpio_cd),
161 				  sdhci_dove_carddetect_irq,
162 				  IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
163 				  mmc_hostname(host->mmc), host);
164 		if (ret) {
165 			dev_err(&pdev->dev, "card detect irq request failed: %d\n",
166 				ret);
167 			goto err_request_irq;
168 		}
169 	}
170 
171 	return 0;
172 
173 err_request_irq:
174 	sdhci_remove_host(host, 0);
175 err_sdhci_add:
176 	if (!IS_ERR(priv->clk))
177 		clk_disable_unprepare(priv->clk);
178 	sdhci_pltfm_free(pdev);
179 err_sdhci_pltfm_init:
180 	if (gpio_is_valid(priv->gpio_cd))
181 		gpio_free(priv->gpio_cd);
182 	return ret;
183 }
184 
185 static int sdhci_dove_remove(struct platform_device *pdev)
186 {
187 	struct sdhci_host *host = platform_get_drvdata(pdev);
188 	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
189 	struct sdhci_dove_priv *priv = pltfm_host->priv;
190 
191 	sdhci_pltfm_unregister(pdev);
192 
193 	if (gpio_is_valid(priv->gpio_cd)) {
194 		free_irq(gpio_to_irq(priv->gpio_cd), host);
195 		gpio_free(priv->gpio_cd);
196 	}
197 
198 	if (!IS_ERR(priv->clk))
199 		clk_disable_unprepare(priv->clk);
200 
201 	return 0;
202 }
203 
204 static const struct of_device_id sdhci_dove_of_match_table[] = {
205 	{ .compatible = "marvell,dove-sdhci", },
206 	{}
207 };
208 MODULE_DEVICE_TABLE(of, sdhci_dove_of_match_table);
209 
210 static struct platform_driver sdhci_dove_driver = {
211 	.driver		= {
212 		.name	= "sdhci-dove",
213 		.owner	= THIS_MODULE,
214 		.pm	= SDHCI_PLTFM_PMOPS,
215 		.of_match_table = sdhci_dove_of_match_table,
216 	},
217 	.probe		= sdhci_dove_probe,
218 	.remove		= sdhci_dove_remove,
219 };
220 
221 module_platform_driver(sdhci_dove_driver);
222 
223 MODULE_DESCRIPTION("SDHCI driver for Dove");
224 MODULE_AUTHOR("Saeed Bishara <saeed@marvell.com>, "
225 	      "Mike Rapoport <mike@compulab.co.il>");
226 MODULE_LICENSE("GPL v2");
227