1 // SPDX-License-Identifier: GPL-2.0-only
3 * This file is part of wl1271
5 * Copyright (C) 2009-2010 Nokia Corporation
10 #include <linux/irq.h>
11 #include <linux/module.h>
12 #include <linux/vmalloc.h>
13 #include <linux/platform_device.h>
14 #include <linux/mmc/sdio.h>
15 #include <linux/mmc/sdio_func.h>
16 #include <linux/mmc/sdio_ids.h>
17 #include <linux/mmc/card.h>
18 #include <linux/mmc/host.h>
19 #include <linux/pm_runtime.h>
20 #include <linux/printk.h>
22 #include <linux/of_irq.h>
25 #include "wl12xx_80211.h"
30 struct wl12xx_sdio_glue {
32 struct platform_device *core;
35 static const struct sdio_device_id wl1271_devices[] = {
36 { SDIO_DEVICE(SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1271) },
39 MODULE_DEVICE_TABLE(sdio, wl1271_devices);
41 static void wl1271_sdio_set_block_size(struct device *child,
44 struct wl12xx_sdio_glue *glue = dev_get_drvdata(child->parent);
45 struct sdio_func *func = dev_to_sdio_func(glue->dev);
47 sdio_claim_host(func);
48 sdio_set_block_size(func, blksz);
49 sdio_release_host(func);
52 static int __must_check wl12xx_sdio_raw_read(struct device *child, int addr,
53 void *buf, size_t len, bool fixed)
56 struct wl12xx_sdio_glue *glue = dev_get_drvdata(child->parent);
57 struct sdio_func *func = dev_to_sdio_func(glue->dev);
59 sdio_claim_host(func);
61 if (unlikely(addr == HW_ACCESS_ELP_CTRL_REG)) {
62 ((u8 *)buf)[0] = sdio_f0_readb(func, addr, &ret);
63 dev_dbg(child->parent, "sdio read 52 addr 0x%x, byte 0x%02x\n",
64 addr, ((u8 *)buf)[0]);
67 ret = sdio_readsb(func, buf, addr, len);
69 ret = sdio_memcpy_fromio(func, buf, addr, len);
71 dev_dbg(child->parent, "sdio read 53 addr 0x%x, %zu bytes\n",
75 sdio_release_host(func);
78 dev_err_ratelimited(child->parent, "sdio read failed (%d)\n", ret);
81 printk(KERN_DEBUG "wlcore_sdio: READ from 0x%04x\n", addr);
82 print_hex_dump(KERN_DEBUG, "wlcore_sdio: READ ",
83 DUMP_PREFIX_OFFSET, 16, 1,
90 static int __must_check wl12xx_sdio_raw_write(struct device *child, int addr,
91 void *buf, size_t len, bool fixed)
94 struct wl12xx_sdio_glue *glue = dev_get_drvdata(child->parent);
95 struct sdio_func *func = dev_to_sdio_func(glue->dev);
97 sdio_claim_host(func);
100 printk(KERN_DEBUG "wlcore_sdio: WRITE to 0x%04x\n", addr);
101 print_hex_dump(KERN_DEBUG, "wlcore_sdio: WRITE ",
102 DUMP_PREFIX_OFFSET, 16, 1,
106 if (unlikely(addr == HW_ACCESS_ELP_CTRL_REG)) {
107 sdio_f0_writeb(func, ((u8 *)buf)[0], addr, &ret);
108 dev_dbg(child->parent, "sdio write 52 addr 0x%x, byte 0x%02x\n",
109 addr, ((u8 *)buf)[0]);
111 dev_dbg(child->parent, "sdio write 53 addr 0x%x, %zu bytes\n",
115 ret = sdio_writesb(func, addr, buf, len);
117 ret = sdio_memcpy_toio(func, addr, buf, len);
120 sdio_release_host(func);
123 dev_err_ratelimited(child->parent, "sdio write failed (%d)\n", ret);
128 static int wl12xx_sdio_power_on(struct wl12xx_sdio_glue *glue)
131 struct sdio_func *func = dev_to_sdio_func(glue->dev);
132 struct mmc_card *card = func->card;
134 ret = pm_runtime_resume_and_get(&card->dev);
136 dev_err(glue->dev, "%s: failed to get_sync(%d)\n",
142 sdio_claim_host(func);
144 * To guarantee that the SDIO card is power cycled, as required to make
145 * the FW programming to succeed, let's do a brute force HW reset.
149 sdio_enable_func(func);
150 sdio_release_host(func);
155 static int wl12xx_sdio_power_off(struct wl12xx_sdio_glue *glue)
157 struct sdio_func *func = dev_to_sdio_func(glue->dev);
158 struct mmc_card *card = func->card;
160 sdio_claim_host(func);
161 sdio_disable_func(func);
162 sdio_release_host(func);
164 /* Let runtime PM know the card is powered off */
165 pm_runtime_put(&card->dev);
169 static int wl12xx_sdio_set_power(struct device *child, bool enable)
171 struct wl12xx_sdio_glue *glue = dev_get_drvdata(child->parent);
174 return wl12xx_sdio_power_on(glue);
176 return wl12xx_sdio_power_off(glue);
179 static struct wl1271_if_operations sdio_ops = {
180 .read = wl12xx_sdio_raw_read,
181 .write = wl12xx_sdio_raw_write,
182 .power = wl12xx_sdio_set_power,
183 .set_block_size = wl1271_sdio_set_block_size,
188 static const struct wilink_family_data wl127x_data = {
190 .nvs_name = "ti-connectivity/wl127x-nvs.bin",
193 static const struct wilink_family_data wl128x_data = {
195 .nvs_name = "ti-connectivity/wl128x-nvs.bin",
198 static const struct wilink_family_data wl18xx_data = {
200 .cfg_name = "ti-connectivity/wl18xx-conf.bin",
201 .nvs_name = "ti-connectivity/wl1271-nvs.bin",
204 static const struct of_device_id wlcore_sdio_of_match_table[] = {
205 { .compatible = "ti,wl1271", .data = &wl127x_data },
206 { .compatible = "ti,wl1273", .data = &wl127x_data },
207 { .compatible = "ti,wl1281", .data = &wl128x_data },
208 { .compatible = "ti,wl1283", .data = &wl128x_data },
209 { .compatible = "ti,wl1285", .data = &wl128x_data },
210 { .compatible = "ti,wl1801", .data = &wl18xx_data },
211 { .compatible = "ti,wl1805", .data = &wl18xx_data },
212 { .compatible = "ti,wl1807", .data = &wl18xx_data },
213 { .compatible = "ti,wl1831", .data = &wl18xx_data },
214 { .compatible = "ti,wl1835", .data = &wl18xx_data },
215 { .compatible = "ti,wl1837", .data = &wl18xx_data },
219 static int wlcore_probe_of(struct device *dev, int *irq, int *wakeirq,
220 struct wlcore_platdev_data *pdev_data)
222 struct device_node *np = dev->of_node;
223 const struct of_device_id *of_id;
225 of_id = of_match_node(wlcore_sdio_of_match_table, np);
229 pdev_data->family = of_id->data;
231 *irq = irq_of_parse_and_map(np, 0);
233 dev_err(dev, "No irq in platform data\n");
237 *wakeirq = irq_of_parse_and_map(np, 1);
239 /* optional clock frequency params */
240 of_property_read_u32(np, "ref-clock-frequency",
241 &pdev_data->ref_clock_freq);
242 of_property_read_u32(np, "tcxo-clock-frequency",
243 &pdev_data->tcxo_clock_freq);
248 static int wlcore_probe_of(struct device *dev, int *irq, int *wakeirq,
249 struct wlcore_platdev_data *pdev_data)
255 static int wl1271_probe(struct sdio_func *func,
256 const struct sdio_device_id *id)
258 struct wlcore_platdev_data *pdev_data;
259 struct wl12xx_sdio_glue *glue;
260 struct resource res[2];
261 mmc_pm_flag_t mmcflags;
263 int irq, wakeirq, num_irqs;
264 const char *chip_family;
266 /* We are only able to handle the wlan function */
267 if (func->num != 0x02)
270 pdev_data = devm_kzalloc(&func->dev, sizeof(*pdev_data), GFP_KERNEL);
274 pdev_data->if_ops = &sdio_ops;
276 glue = devm_kzalloc(&func->dev, sizeof(*glue), GFP_KERNEL);
280 glue->dev = &func->dev;
282 /* Grab access to FN0 for ELP reg. */
283 func->card->quirks |= MMC_QUIRK_LENIENT_FN0;
285 /* Use block mode for transferring over one block size of data */
286 func->card->quirks |= MMC_QUIRK_BLKSZ_FOR_BYTE_MODE;
288 ret = wlcore_probe_of(&func->dev, &irq, &wakeirq, pdev_data);
292 /* if sdio can keep power while host is suspended, enable wow */
293 mmcflags = sdio_get_host_pm_caps(func);
294 dev_dbg(glue->dev, "sdio PM caps = 0x%x\n", mmcflags);
296 if (mmcflags & MMC_PM_KEEP_POWER)
297 pdev_data->pwr_in_suspend = true;
299 sdio_set_drvdata(func, glue);
301 /* Tell PM core that we don't need the card to be powered now */
302 pm_runtime_put_noidle(&func->dev);
305 * Due to a hardware bug, we can't differentiate wl18xx from
306 * wl12xx, because both report the same device ID. The only
307 * way to differentiate is by checking the SDIO revision,
308 * which is 3.00 on the wl18xx chips.
310 if (func->card->cccr.sdio_vsn == SDIO_SDIO_REV_3_00)
311 chip_family = "wl18xx";
313 chip_family = "wl12xx";
315 glue->core = platform_device_alloc(chip_family, PLATFORM_DEVID_AUTO);
317 dev_err(glue->dev, "can't allocate platform_device");
322 glue->core->dev.parent = &func->dev;
324 memset(res, 0x00, sizeof(res));
326 res[0] = DEFINE_RES_IRQ_NAMED(irq, "irq");
327 res[0].flags |= irq_get_trigger_type(irq);
330 res[1] = DEFINE_RES_IRQ_NAMED(wakeirq, "wakeirq");
331 res[1].flags |= irq_get_trigger_type(wakeirq);
336 ret = platform_device_add_resources(glue->core, res, num_irqs);
338 dev_err(glue->dev, "can't add resources\n");
342 ret = platform_device_add_data(glue->core, pdev_data,
345 dev_err(glue->dev, "can't add platform data\n");
349 ret = platform_device_add(glue->core);
351 dev_err(glue->dev, "can't add platform device\n");
357 platform_device_put(glue->core);
363 static void wl1271_remove(struct sdio_func *func)
365 struct wl12xx_sdio_glue *glue = sdio_get_drvdata(func);
367 /* Undo decrement done above in wl1271_probe */
368 pm_runtime_get_noresume(&func->dev);
370 platform_device_unregister(glue->core);
374 static int wl1271_suspend(struct device *dev)
376 /* Tell MMC/SDIO core it's OK to power down the card
377 * (if it isn't already), but not to remove it completely */
378 struct sdio_func *func = dev_to_sdio_func(dev);
379 struct wl12xx_sdio_glue *glue = sdio_get_drvdata(func);
380 struct wl1271 *wl = platform_get_drvdata(glue->core);
381 mmc_pm_flag_t sdio_flags;
385 dev_err(dev, "no wilink module was probed\n");
389 dev_dbg(dev, "wl1271 suspend. wow_enabled: %d\n",
392 /* check whether sdio should keep power */
393 if (wl->wow_enabled) {
394 sdio_flags = sdio_get_host_pm_caps(func);
396 if (!(sdio_flags & MMC_PM_KEEP_POWER)) {
397 dev_err(dev, "can't keep power while host "
403 /* keep power while host suspended */
404 ret = sdio_set_host_pm_flags(func, MMC_PM_KEEP_POWER);
406 dev_err(dev, "error while trying to keep power\n");
414 static int wl1271_resume(struct device *dev)
416 dev_dbg(dev, "wl1271 resume\n");
421 static const struct dev_pm_ops wl1271_sdio_pm_ops = {
422 .suspend = wl1271_suspend,
423 .resume = wl1271_resume,
427 static struct sdio_driver wl1271_sdio_driver = {
428 .name = "wl1271_sdio",
429 .id_table = wl1271_devices,
430 .probe = wl1271_probe,
431 .remove = wl1271_remove,
434 .pm = &wl1271_sdio_pm_ops,
439 module_sdio_driver(wl1271_sdio_driver);
441 module_param(dump, bool, 0600);
442 MODULE_PARM_DESC(dump, "Enable sdio read/write dumps.");
444 MODULE_DESCRIPTION("TI WLAN SDIO helpers");
445 MODULE_LICENSE("GPL");