1 // SPDX-License-Identifier: GPL-2.0-only
3 * Mac80211 SDIO driver for ST-Ericsson CW1200 device
5 * Copyright (c) 2010, ST-Ericsson
6 * Author: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
9 #include <linux/module.h>
10 #include <linux/interrupt.h>
11 #include <linux/gpio/consumer.h>
12 #include <linux/delay.h>
13 #include <linux/mmc/host.h>
14 #include <linux/mmc/sdio_func.h>
15 #include <linux/mmc/card.h>
16 #include <linux/mmc/sdio.h>
17 #include <linux/mmc/sdio_ids.h>
18 #include <net/mac80211.h>
22 #include <linux/platform_data/net-cw1200.h>
25 MODULE_AUTHOR("Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>");
26 MODULE_DESCRIPTION("mac80211 ST-Ericsson CW1200 SDIO driver");
27 MODULE_LICENSE("GPL");
29 #define SDIO_BLOCK_SIZE (512)
31 /* Default platform data for Sagrad modules */
32 static struct cw1200_platform_data_sdio sagrad_109x_evk_platform_data
= {
35 .sdd_file
= "sdd_sagrad_1091_1098.bin",
38 /* Allow platform data to be overridden */
39 static struct cw1200_platform_data_sdio
*global_plat_data
= &sagrad_109x_evk_platform_data
;
41 void __init
cw1200_sdio_set_platform_data(struct cw1200_platform_data_sdio
*pdata
)
43 global_plat_data
= pdata
;
47 struct sdio_func
*func
;
48 struct cw1200_common
*core
;
49 const struct cw1200_platform_data_sdio
*pdata
;
52 static const struct sdio_device_id cw1200_sdio_ids
[] = {
53 { SDIO_DEVICE(SDIO_VENDOR_ID_STE
, SDIO_DEVICE_ID_STE_CW1200
) },
54 { /* end: all zeroes */ },
56 MODULE_DEVICE_TABLE(sdio
, cw1200_sdio_ids
);
58 /* hwbus_ops implemetation */
60 static int cw1200_sdio_memcpy_fromio(struct hwbus_priv
*self
,
64 return sdio_memcpy_fromio(self
->func
, dst
, addr
, count
);
67 static int cw1200_sdio_memcpy_toio(struct hwbus_priv
*self
,
69 const void *src
, int count
)
71 return sdio_memcpy_toio(self
->func
, addr
, (void *)src
, count
);
74 static void cw1200_sdio_lock(struct hwbus_priv
*self
)
76 sdio_claim_host(self
->func
);
79 static void cw1200_sdio_unlock(struct hwbus_priv
*self
)
81 sdio_release_host(self
->func
);
84 static void cw1200_sdio_irq_handler(struct sdio_func
*func
)
86 struct hwbus_priv
*self
= sdio_get_drvdata(func
);
88 /* note: sdio_host already claimed here. */
90 cw1200_irq_handler(self
->core
);
93 static irqreturn_t
cw1200_gpio_hardirq(int irq
, void *dev_id
)
95 return IRQ_WAKE_THREAD
;
98 static irqreturn_t
cw1200_gpio_irq(int irq
, void *dev_id
)
100 struct hwbus_priv
*self
= dev_id
;
103 cw1200_sdio_lock(self
);
104 cw1200_irq_handler(self
->core
);
105 cw1200_sdio_unlock(self
);
112 static int cw1200_request_irq(struct hwbus_priv
*self
)
117 cccr
= sdio_f0_readb(self
->func
, SDIO_CCCR_IENx
, &ret
);
121 /* Master interrupt enable ... */
124 /* ... for our function */
125 cccr
|= BIT(self
->func
->num
);
127 sdio_f0_writeb(self
->func
, cccr
, SDIO_CCCR_IENx
, &ret
);
131 ret
= enable_irq_wake(self
->pdata
->irq
);
135 /* Request the IRQ */
136 ret
= request_threaded_irq(self
->pdata
->irq
, cw1200_gpio_hardirq
,
138 IRQF_TRIGGER_HIGH
| IRQF_ONESHOT
,
139 "cw1200_wlan_irq", self
);
149 static int cw1200_sdio_irq_subscribe(struct hwbus_priv
*self
)
153 pr_debug("SW IRQ subscribe\n");
154 sdio_claim_host(self
->func
);
155 if (self
->pdata
->irq
)
156 ret
= cw1200_request_irq(self
);
158 ret
= sdio_claim_irq(self
->func
, cw1200_sdio_irq_handler
);
160 sdio_release_host(self
->func
);
164 static int cw1200_sdio_irq_unsubscribe(struct hwbus_priv
*self
)
168 pr_debug("SW IRQ unsubscribe\n");
170 if (self
->pdata
->irq
) {
171 disable_irq_wake(self
->pdata
->irq
);
172 free_irq(self
->pdata
->irq
, self
);
174 sdio_claim_host(self
->func
);
175 ret
= sdio_release_irq(self
->func
);
176 sdio_release_host(self
->func
);
181 /* Like the rest of the driver, this only supports one device per system */
182 static struct gpio_desc
*cw1200_reset
;
183 static struct gpio_desc
*cw1200_powerup
;
185 static int cw1200_sdio_off(const struct cw1200_platform_data_sdio
*pdata
)
188 gpiod_set_value(cw1200_reset
, 0);
189 msleep(30); /* Min is 2 * CLK32K cycles */
192 if (pdata
->power_ctrl
)
193 pdata
->power_ctrl(pdata
, false);
195 pdata
->clk_ctrl(pdata
, false);
200 static int cw1200_sdio_on(const struct cw1200_platform_data_sdio
*pdata
)
202 /* Ensure I/Os are pulled low (reset is active low) */
203 cw1200_reset
= devm_gpiod_get_optional(NULL
, "reset", GPIOD_OUT_HIGH
);
204 if (IS_ERR(cw1200_reset
)) {
205 pr_err("could not get CW1200 SDIO reset GPIO\n");
206 return PTR_ERR(cw1200_reset
);
208 gpiod_set_consumer_name(cw1200_reset
, "cw1200_wlan_reset");
209 cw1200_powerup
= devm_gpiod_get_optional(NULL
, "powerup", GPIOD_OUT_LOW
);
210 if (IS_ERR(cw1200_powerup
)) {
211 pr_err("could not get CW1200 SDIO powerup GPIO\n");
212 return PTR_ERR(cw1200_powerup
);
214 gpiod_set_consumer_name(cw1200_powerup
, "cw1200_wlan_powerup");
216 if (cw1200_reset
|| cw1200_powerup
)
217 msleep(10); /* Settle time? */
219 /* Enable 3v3 and 1v8 to hardware */
220 if (pdata
->power_ctrl
) {
221 if (pdata
->power_ctrl(pdata
, true)) {
222 pr_err("power_ctrl() failed!\n");
228 if (pdata
->clk_ctrl
) {
229 if (pdata
->clk_ctrl(pdata
, true)) {
230 pr_err("clk_ctrl() failed!\n");
233 msleep(10); /* Delay until clock is stable for 2 cycles */
236 /* Enable POWERUP signal */
237 if (cw1200_powerup
) {
238 gpiod_set_value(cw1200_powerup
, 1);
239 msleep(250); /* or more..? */
241 /* Deassert RSTn signal, note active low */
243 gpiod_set_value(cw1200_reset
, 0);
244 msleep(50); /* Or more..? */
249 static size_t cw1200_sdio_align_size(struct hwbus_priv
*self
, size_t size
)
251 if (self
->pdata
->no_nptb
)
252 size
= round_up(size
, SDIO_BLOCK_SIZE
);
254 size
= sdio_align_size(self
->func
, size
);
259 static int cw1200_sdio_pm(struct hwbus_priv
*self
, bool suspend
)
263 if (self
->pdata
->irq
)
264 ret
= irq_set_irq_wake(self
->pdata
->irq
, suspend
);
268 static const struct hwbus_ops cw1200_sdio_hwbus_ops
= {
269 .hwbus_memcpy_fromio
= cw1200_sdio_memcpy_fromio
,
270 .hwbus_memcpy_toio
= cw1200_sdio_memcpy_toio
,
271 .lock
= cw1200_sdio_lock
,
272 .unlock
= cw1200_sdio_unlock
,
273 .align_size
= cw1200_sdio_align_size
,
274 .power_mgmt
= cw1200_sdio_pm
,
277 /* Probe Function to be called by SDIO stack when device is discovered */
278 static int cw1200_sdio_probe(struct sdio_func
*func
,
279 const struct sdio_device_id
*id
)
281 struct hwbus_priv
*self
;
284 pr_info("cw1200_wlan_sdio: Probe called\n");
286 /* We are only able to handle the wlan function */
287 if (func
->num
!= 0x01)
290 self
= kzalloc(sizeof(*self
), GFP_KERNEL
);
292 pr_err("Can't allocate SDIO hwbus_priv.\n");
296 func
->card
->quirks
|= MMC_QUIRK_LENIENT_FN0
;
298 self
->pdata
= global_plat_data
; /* FIXME */
300 sdio_set_drvdata(func
, self
);
301 sdio_claim_host(func
);
302 sdio_enable_func(func
);
303 sdio_release_host(func
);
305 status
= cw1200_sdio_irq_subscribe(self
);
307 status
= cw1200_core_probe(&cw1200_sdio_hwbus_ops
,
308 self
, &func
->dev
, &self
->core
,
309 self
->pdata
->ref_clk
,
310 self
->pdata
->macaddr
,
311 self
->pdata
->sdd_file
,
312 self
->pdata
->have_5ghz
);
314 cw1200_sdio_irq_unsubscribe(self
);
315 sdio_claim_host(func
);
316 sdio_disable_func(func
);
317 sdio_release_host(func
);
318 sdio_set_drvdata(func
, NULL
);
325 /* Disconnect Function to be called by SDIO stack when
326 * device is disconnected
328 static void cw1200_sdio_disconnect(struct sdio_func
*func
)
330 struct hwbus_priv
*self
= sdio_get_drvdata(func
);
333 cw1200_sdio_irq_unsubscribe(self
);
335 cw1200_core_release(self
->core
);
338 sdio_claim_host(func
);
339 sdio_disable_func(func
);
340 sdio_release_host(func
);
341 sdio_set_drvdata(func
, NULL
);
347 static int cw1200_sdio_suspend(struct device
*dev
)
350 struct sdio_func
*func
= dev_to_sdio_func(dev
);
351 struct hwbus_priv
*self
= sdio_get_drvdata(func
);
353 if (!cw1200_can_suspend(self
->core
))
356 /* Notify SDIO that CW1200 will remain powered during suspend */
357 ret
= sdio_set_host_pm_flags(func
, MMC_PM_KEEP_POWER
);
359 pr_err("Error setting SDIO pm flags: %i\n", ret
);
364 static int cw1200_sdio_resume(struct device
*dev
)
369 static const struct dev_pm_ops cw1200_pm_ops
= {
370 .suspend
= cw1200_sdio_suspend
,
371 .resume
= cw1200_sdio_resume
,
375 static struct sdio_driver sdio_driver
= {
376 .name
= "cw1200_wlan_sdio",
377 .id_table
= cw1200_sdio_ids
,
378 .probe
= cw1200_sdio_probe
,
379 .remove
= cw1200_sdio_disconnect
,
382 .pm
= &cw1200_pm_ops
,
387 /* Init Module function -> Called by insmod */
388 static int __init
cw1200_sdio_init(void)
390 const struct cw1200_platform_data_sdio
*pdata
;
393 /* FIXME -- this won't support multiple devices */
394 pdata
= global_plat_data
;
396 if (cw1200_sdio_on(pdata
)) {
401 ret
= sdio_register_driver(&sdio_driver
);
408 cw1200_sdio_off(pdata
);
412 /* Called at Driver Unloading */
413 static void __exit
cw1200_sdio_exit(void)
415 const struct cw1200_platform_data_sdio
*pdata
;
417 /* FIXME -- this won't support multiple devices */
418 pdata
= global_plat_data
;
419 sdio_unregister_driver(&sdio_driver
);
420 cw1200_sdio_off(pdata
);
424 module_init(cw1200_sdio_init
);
425 module_exit(cw1200_sdio_exit
);