Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of wl1271 |
| 3 | * |
| 4 | * Copyright (C) 2009-2010 Nokia Corporation |
| 5 | * |
| 6 | * Contact: Luciano Coelho <luciano.coelho@nokia.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License |
| 10 | * version 2 as published by the Free Software Foundation. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, but |
| 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * 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., 51 Franklin St, Fifth Floor, Boston, MA |
| 20 | * 02110-1301 USA |
| 21 | * |
| 22 | */ |
| 23 | |
| 24 | #include <linux/irq.h> |
| 25 | #include <linux/module.h> |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 26 | #include <linux/vmalloc.h> |
Felipe Balbi | 025aef8 | 2011-10-05 09:00:12 +0300 | [diff] [blame] | 27 | #include <linux/platform_device.h> |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 28 | #include <linux/mmc/sdio_func.h> |
| 29 | #include <linux/mmc/sdio_ids.h> |
| 30 | #include <linux/mmc/card.h> |
Ido Yariv | 11251e7 | 2011-02-28 00:13:58 +0200 | [diff] [blame] | 31 | #include <linux/mmc/host.h> |
Ohad Ben-Cohen | 19b8717 | 2010-05-13 12:43:24 +0300 | [diff] [blame] | 32 | #include <linux/gpio.h> |
Ohad Ben-Cohen | 09cecc3 | 2010-09-16 01:31:35 +0200 | [diff] [blame] | 33 | #include <linux/wl12xx.h> |
Ohad Ben-Cohen | 00cbb3c | 2010-10-08 16:16:16 +0300 | [diff] [blame] | 34 | #include <linux/pm_runtime.h> |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 35 | |
Shahar Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 36 | #include "wl12xx.h" |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 37 | #include "wl12xx_80211.h" |
Shahar Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 38 | #include "io.h" |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 39 | |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 40 | #ifndef SDIO_VENDOR_ID_TI |
| 41 | #define SDIO_VENDOR_ID_TI 0x0097 |
| 42 | #endif |
| 43 | |
| 44 | #ifndef SDIO_DEVICE_ID_TI_WL1271 |
| 45 | #define SDIO_DEVICE_ID_TI_WL1271 0x4076 |
| 46 | #endif |
| 47 | |
Felipe Balbi | fbe936b | 2011-10-04 23:10:28 +0300 | [diff] [blame] | 48 | struct wl12xx_sdio_glue { |
| 49 | struct device *dev; |
Felipe Balbi | 025aef8 | 2011-10-05 09:00:12 +0300 | [diff] [blame] | 50 | struct platform_device *core; |
Felipe Balbi | fbe936b | 2011-10-04 23:10:28 +0300 | [diff] [blame] | 51 | }; |
| 52 | |
Felipe Balbi | 33dd74c | 2011-05-14 00:26:18 +0300 | [diff] [blame] | 53 | static const struct sdio_device_id wl1271_devices[] __devinitconst = { |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 54 | { SDIO_DEVICE(SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1271) }, |
| 55 | {} |
| 56 | }; |
| 57 | MODULE_DEVICE_TABLE(sdio, wl1271_devices); |
| 58 | |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 59 | static void wl1271_sdio_set_block_size(struct device *child, |
| 60 | unsigned int blksz) |
Luciano Coelho | a81159e | 2011-03-14 14:05:13 +0200 | [diff] [blame] | 61 | { |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 62 | struct wl12xx_sdio_glue *glue = dev_get_drvdata(child->parent); |
| 63 | struct sdio_func *func = dev_to_sdio_func(glue->dev); |
| 64 | |
| 65 | sdio_claim_host(func); |
| 66 | sdio_set_block_size(func, blksz); |
| 67 | sdio_release_host(func); |
Luciano Coelho | a81159e | 2011-03-14 14:05:13 +0200 | [diff] [blame] | 68 | } |
| 69 | |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 70 | static void wl12xx_sdio_raw_read(struct device *child, int addr, void *buf, |
Teemu Paasikivi | a3b8ea7 | 2010-03-18 12:26:41 +0200 | [diff] [blame] | 71 | size_t len, bool fixed) |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 72 | { |
| 73 | int ret; |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 74 | struct wl12xx_sdio_glue *glue = dev_get_drvdata(child->parent); |
Felipe Balbi | fbe936b | 2011-10-04 23:10:28 +0300 | [diff] [blame] | 75 | struct sdio_func *func = dev_to_sdio_func(glue->dev); |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 76 | |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 77 | if (unlikely(addr == HW_ACCESS_ELP_CTRL_REG_ADDR)) { |
| 78 | ((u8 *)buf)[0] = sdio_f0_readb(func, addr, &ret); |
Teemu Paasikivi | a3b8ea7 | 2010-03-18 12:26:41 +0200 | [diff] [blame] | 79 | wl1271_debug(DEBUG_SDIO, "sdio read 52 addr 0x%x, byte 0x%02x", |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 80 | addr, ((u8 *)buf)[0]); |
| 81 | } else { |
| 82 | if (fixed) |
| 83 | ret = sdio_readsb(func, buf, addr, len); |
| 84 | else |
| 85 | ret = sdio_memcpy_fromio(func, buf, addr, len); |
| 86 | |
Teemu Paasikivi | 99e5031 | 2010-03-26 12:53:16 +0200 | [diff] [blame] | 87 | wl1271_debug(DEBUG_SDIO, "sdio read 53 addr 0x%x, %zu bytes", |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 88 | addr, len); |
Teemu Paasikivi | a3b8ea7 | 2010-03-18 12:26:41 +0200 | [diff] [blame] | 89 | wl1271_dump_ascii(DEBUG_SDIO, "data: ", buf, len); |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | if (ret) |
| 93 | wl1271_error("sdio read failed (%d)", ret); |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 94 | } |
| 95 | |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 96 | static void wl12xx_sdio_raw_write(struct device *child, int addr, void *buf, |
Teemu Paasikivi | a3b8ea7 | 2010-03-18 12:26:41 +0200 | [diff] [blame] | 97 | size_t len, bool fixed) |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 98 | { |
| 99 | int ret; |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 100 | struct wl12xx_sdio_glue *glue = dev_get_drvdata(child->parent); |
Felipe Balbi | fbe936b | 2011-10-04 23:10:28 +0300 | [diff] [blame] | 101 | struct sdio_func *func = dev_to_sdio_func(glue->dev); |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 102 | |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 103 | if (unlikely(addr == HW_ACCESS_ELP_CTRL_REG_ADDR)) { |
| 104 | sdio_f0_writeb(func, ((u8 *)buf)[0], addr, &ret); |
Teemu Paasikivi | a3b8ea7 | 2010-03-18 12:26:41 +0200 | [diff] [blame] | 105 | wl1271_debug(DEBUG_SDIO, "sdio write 52 addr 0x%x, byte 0x%02x", |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 106 | addr, ((u8 *)buf)[0]); |
| 107 | } else { |
Teemu Paasikivi | 99e5031 | 2010-03-26 12:53:16 +0200 | [diff] [blame] | 108 | wl1271_debug(DEBUG_SDIO, "sdio write 53 addr 0x%x, %zu bytes", |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 109 | addr, len); |
Teemu Paasikivi | a3b8ea7 | 2010-03-18 12:26:41 +0200 | [diff] [blame] | 110 | wl1271_dump_ascii(DEBUG_SDIO, "data: ", buf, len); |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 111 | |
| 112 | if (fixed) |
| 113 | ret = sdio_writesb(func, addr, buf, len); |
| 114 | else |
| 115 | ret = sdio_memcpy_toio(func, addr, buf, len); |
| 116 | } |
Ohad Ben-Cohen | 49063a0 | 2010-09-07 04:24:21 +0300 | [diff] [blame] | 117 | |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 118 | if (ret) |
| 119 | wl1271_error("sdio write failed (%d)", ret); |
Ohad Ben-Cohen | 49063a0 | 2010-09-07 04:24:21 +0300 | [diff] [blame] | 120 | } |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 121 | |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 122 | static int wl12xx_sdio_power_on(struct wl12xx_sdio_glue *glue) |
Ohad Ben-Cohen | 49063a0 | 2010-09-07 04:24:21 +0300 | [diff] [blame] | 123 | { |
Ohad Ben-Cohen | 00cbb3c | 2010-10-08 16:16:16 +0300 | [diff] [blame] | 124 | int ret; |
Felipe Balbi | fbe936b | 2011-10-04 23:10:28 +0300 | [diff] [blame] | 125 | struct sdio_func *func = dev_to_sdio_func(glue->dev); |
Ohad Ben-Cohen | 00cbb3c | 2010-10-08 16:16:16 +0300 | [diff] [blame] | 126 | |
Ohad Ben-Cohen | 86046da | 2011-05-29 16:36:03 +0300 | [diff] [blame] | 127 | /* If enabled, tell runtime PM not to power off the card */ |
| 128 | if (pm_runtime_enabled(&func->dev)) { |
| 129 | ret = pm_runtime_get_sync(&func->dev); |
Ido Yariv | a15f1c4 | 2011-08-22 23:19:49 +0300 | [diff] [blame] | 130 | if (ret < 0) |
Ohad Ben-Cohen | 86046da | 2011-05-29 16:36:03 +0300 | [diff] [blame] | 131 | goto out; |
Ohad Ben-Cohen | b5d6e5f | 2011-06-26 18:00:11 +0300 | [diff] [blame] | 132 | } else { |
| 133 | /* Runtime PM is disabled: power up the card manually */ |
| 134 | ret = mmc_power_restore_host(func->card->host); |
| 135 | if (ret < 0) |
| 136 | goto out; |
Ohad Ben-Cohen | 86046da | 2011-05-29 16:36:03 +0300 | [diff] [blame] | 137 | } |
Ohad Ben-Cohen | 49063a0 | 2010-09-07 04:24:21 +0300 | [diff] [blame] | 138 | |
| 139 | sdio_claim_host(func); |
| 140 | sdio_enable_func(func); |
Ohad Ben-Cohen | 2cc78ff | 2010-09-16 01:22:04 +0200 | [diff] [blame] | 141 | |
Ohad Ben-Cohen | 00cbb3c | 2010-10-08 16:16:16 +0300 | [diff] [blame] | 142 | out: |
| 143 | return ret; |
Ohad Ben-Cohen | 49063a0 | 2010-09-07 04:24:21 +0300 | [diff] [blame] | 144 | } |
| 145 | |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 146 | static int wl12xx_sdio_power_off(struct wl12xx_sdio_glue *glue) |
Ohad Ben-Cohen | 49063a0 | 2010-09-07 04:24:21 +0300 | [diff] [blame] | 147 | { |
Ido Yariv | 11251e7 | 2011-02-28 00:13:58 +0200 | [diff] [blame] | 148 | int ret; |
Felipe Balbi | fbe936b | 2011-10-04 23:10:28 +0300 | [diff] [blame] | 149 | struct sdio_func *func = dev_to_sdio_func(glue->dev); |
Ohad Ben-Cohen | 49063a0 | 2010-09-07 04:24:21 +0300 | [diff] [blame] | 150 | |
Ohad Ben-Cohen | 49063a0 | 2010-09-07 04:24:21 +0300 | [diff] [blame] | 151 | sdio_disable_func(func); |
| 152 | sdio_release_host(func); |
Ohad Ben-Cohen | 2cc78ff | 2010-09-16 01:22:04 +0200 | [diff] [blame] | 153 | |
Ohad Ben-Cohen | b5d6e5f | 2011-06-26 18:00:11 +0300 | [diff] [blame] | 154 | /* Power off the card manually, even if runtime PM is enabled. */ |
Ido Yariv | 11251e7 | 2011-02-28 00:13:58 +0200 | [diff] [blame] | 155 | ret = mmc_power_save_host(func->card->host); |
| 156 | if (ret < 0) |
| 157 | return ret; |
| 158 | |
Ohad Ben-Cohen | 86046da | 2011-05-29 16:36:03 +0300 | [diff] [blame] | 159 | /* If enabled, let runtime PM know the card is powered off */ |
| 160 | if (pm_runtime_enabled(&func->dev)) |
| 161 | ret = pm_runtime_put_sync(&func->dev); |
| 162 | |
| 163 | return ret; |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 164 | } |
| 165 | |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 166 | static int wl12xx_sdio_set_power(struct device *child, bool enable) |
Teemu Paasikivi | becd551 | 2010-03-18 12:26:27 +0200 | [diff] [blame] | 167 | { |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 168 | struct wl12xx_sdio_glue *glue = dev_get_drvdata(child->parent); |
| 169 | |
Ohad Ben-Cohen | 49063a0 | 2010-09-07 04:24:21 +0300 | [diff] [blame] | 170 | if (enable) |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 171 | return wl12xx_sdio_power_on(glue); |
Ohad Ben-Cohen | 49063a0 | 2010-09-07 04:24:21 +0300 | [diff] [blame] | 172 | else |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 173 | return wl12xx_sdio_power_off(glue); |
Teemu Paasikivi | becd551 | 2010-03-18 12:26:27 +0200 | [diff] [blame] | 174 | } |
| 175 | |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 176 | static struct wl1271_if_operations sdio_ops = { |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 177 | .read = wl12xx_sdio_raw_read, |
| 178 | .write = wl12xx_sdio_raw_write, |
| 179 | .power = wl12xx_sdio_set_power, |
Luciano Coelho | a81159e | 2011-03-14 14:05:13 +0200 | [diff] [blame] | 180 | .set_block_size = wl1271_sdio_set_block_size, |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 181 | }; |
| 182 | |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 183 | static int __devinit wl1271_probe(struct sdio_func *func, |
| 184 | const struct sdio_device_id *id) |
| 185 | { |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 186 | struct wl12xx_platform_data *wlan_data; |
Felipe Balbi | fbe936b | 2011-10-04 23:10:28 +0300 | [diff] [blame] | 187 | struct wl12xx_sdio_glue *glue; |
Felipe Balbi | 025aef8 | 2011-10-05 09:00:12 +0300 | [diff] [blame] | 188 | struct resource res[1]; |
Eliad Peller | f795ea8 | 2011-05-13 11:57:12 +0300 | [diff] [blame] | 189 | mmc_pm_flag_t mmcflags; |
Felipe Balbi | fbe936b | 2011-10-04 23:10:28 +0300 | [diff] [blame] | 190 | int ret = -ENOMEM; |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 191 | |
| 192 | /* We are only able to handle the wlan function */ |
| 193 | if (func->num != 0x02) |
| 194 | return -ENODEV; |
| 195 | |
Felipe Balbi | fbe936b | 2011-10-04 23:10:28 +0300 | [diff] [blame] | 196 | glue = kzalloc(sizeof(*glue), GFP_KERNEL); |
| 197 | if (!glue) { |
| 198 | wl1271_error("can't allocate glue"); |
| 199 | goto out; |
| 200 | } |
| 201 | |
Felipe Balbi | fbe936b | 2011-10-04 23:10:28 +0300 | [diff] [blame] | 202 | glue->dev = &func->dev; |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 203 | |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 204 | /* Grab access to FN0 for ELP reg. */ |
| 205 | func->card->quirks |= MMC_QUIRK_LENIENT_FN0; |
| 206 | |
Arik Nemtsov | 1d732e8 | 2011-03-18 14:49:57 +0200 | [diff] [blame] | 207 | /* Use block mode for transferring over one block size of data */ |
| 208 | func->card->quirks |= MMC_QUIRK_BLKSZ_FOR_BYTE_MODE; |
| 209 | |
Ohad Ben-Cohen | 09cecc3 | 2010-09-16 01:31:35 +0200 | [diff] [blame] | 210 | wlan_data = wl12xx_get_platform_data(); |
| 211 | if (IS_ERR(wlan_data)) { |
| 212 | ret = PTR_ERR(wlan_data); |
| 213 | wl1271_error("missing wlan platform data: %d", ret); |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 214 | goto out_free_glue; |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 215 | } |
| 216 | |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 217 | /* if sdio can keep power while host is suspended, enable wow */ |
| 218 | mmcflags = sdio_get_host_pm_caps(func); |
| 219 | wl1271_debug(DEBUG_SDIO, "sdio PM caps = 0x%x", mmcflags); |
Ido Yariv | 341b7cd | 2011-03-31 10:07:01 +0200 | [diff] [blame] | 220 | |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 221 | if (mmcflags & MMC_PM_KEEP_POWER) |
| 222 | wlan_data->pwr_in_suspend = true; |
Ohad Ben-Cohen | 09cecc3 | 2010-09-16 01:31:35 +0200 | [diff] [blame] | 223 | |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 224 | wlan_data->ops = &sdio_ops; |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 225 | |
Felipe Balbi | fbe936b | 2011-10-04 23:10:28 +0300 | [diff] [blame] | 226 | sdio_set_drvdata(func, glue); |
Teemu Paasikivi | 49d7f6d | 2010-02-22 08:38:29 +0200 | [diff] [blame] | 227 | |
Ohad Ben-Cohen | 00cbb3c | 2010-10-08 16:16:16 +0300 | [diff] [blame] | 228 | /* Tell PM core that we don't need the card to be powered now */ |
| 229 | pm_runtime_put_noidle(&func->dev); |
| 230 | |
Felipe Balbi | 025aef8 | 2011-10-05 09:00:12 +0300 | [diff] [blame] | 231 | glue->core = platform_device_alloc("wl12xx-sdio", -1); |
| 232 | if (!glue->core) { |
| 233 | wl1271_error("can't allocate platform_device"); |
| 234 | ret = -ENOMEM; |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 235 | goto out_free_glue; |
Felipe Balbi | 025aef8 | 2011-10-05 09:00:12 +0300 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | glue->core->dev.parent = &func->dev; |
| 239 | |
| 240 | memset(res, 0x00, sizeof(res)); |
| 241 | |
| 242 | res[0].start = wlan_data->irq; |
| 243 | res[0].flags = IORESOURCE_IRQ; |
| 244 | res[0].name = "irq"; |
| 245 | |
| 246 | ret = platform_device_add_resources(glue->core, res, ARRAY_SIZE(res)); |
| 247 | if (ret) { |
| 248 | wl1271_error("can't add resources"); |
| 249 | goto out_dev_put; |
| 250 | } |
| 251 | |
| 252 | ret = platform_device_add_data(glue->core, wlan_data, |
| 253 | sizeof(*wlan_data)); |
| 254 | if (ret) { |
| 255 | wl1271_error("can't add platform data"); |
| 256 | goto out_dev_put; |
| 257 | } |
| 258 | |
| 259 | ret = platform_device_add(glue->core); |
| 260 | if (ret) { |
| 261 | wl1271_error("can't add platform device"); |
| 262 | goto out_dev_put; |
| 263 | } |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 264 | return 0; |
| 265 | |
Felipe Balbi | 025aef8 | 2011-10-05 09:00:12 +0300 | [diff] [blame] | 266 | out_dev_put: |
| 267 | platform_device_put(glue->core); |
| 268 | |
Felipe Balbi | fbe936b | 2011-10-04 23:10:28 +0300 | [diff] [blame] | 269 | out_free_glue: |
| 270 | kfree(glue); |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame^] | 271 | |
Felipe Balbi | fbe936b | 2011-10-04 23:10:28 +0300 | [diff] [blame] | 272 | out: |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 273 | return ret; |
| 274 | } |
| 275 | |
| 276 | static void __devexit wl1271_remove(struct sdio_func *func) |
| 277 | { |
Felipe Balbi | fbe936b | 2011-10-04 23:10:28 +0300 | [diff] [blame] | 278 | struct wl12xx_sdio_glue *glue = sdio_get_drvdata(func); |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 279 | |
Ohad Ben-Cohen | 00cbb3c | 2010-10-08 16:16:16 +0300 | [diff] [blame] | 280 | /* Undo decrement done above in wl1271_probe */ |
| 281 | pm_runtime_get_noresume(&func->dev); |
| 282 | |
Felipe Balbi | 025aef8 | 2011-10-05 09:00:12 +0300 | [diff] [blame] | 283 | platform_device_del(glue->core); |
| 284 | platform_device_put(glue->core); |
Felipe Balbi | fbe936b | 2011-10-04 23:10:28 +0300 | [diff] [blame] | 285 | kfree(glue); |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 286 | } |
| 287 | |
Luciano Coelho | f634a4e | 2011-05-18 16:51:26 -0400 | [diff] [blame] | 288 | #ifdef CONFIG_PM |
Ohad Ben-Cohen | 674f305 | 2010-10-08 16:16:27 +0300 | [diff] [blame] | 289 | static int wl1271_suspend(struct device *dev) |
| 290 | { |
| 291 | /* Tell MMC/SDIO core it's OK to power down the card |
| 292 | * (if it isn't already), but not to remove it completely */ |
Eliad Peller | 039bdb1 | 2011-05-13 11:57:10 +0300 | [diff] [blame] | 293 | struct sdio_func *func = dev_to_sdio_func(dev); |
| 294 | struct wl1271 *wl = sdio_get_drvdata(func); |
| 295 | mmc_pm_flag_t sdio_flags; |
| 296 | int ret = 0; |
| 297 | |
| 298 | wl1271_debug(DEBUG_MAC80211, "wl1271 suspend. wow_enabled: %d", |
| 299 | wl->wow_enabled); |
| 300 | |
| 301 | /* check whether sdio should keep power */ |
| 302 | if (wl->wow_enabled) { |
| 303 | sdio_flags = sdio_get_host_pm_caps(func); |
| 304 | |
| 305 | if (!(sdio_flags & MMC_PM_KEEP_POWER)) { |
| 306 | wl1271_error("can't keep power while host " |
| 307 | "is suspended"); |
| 308 | ret = -EINVAL; |
| 309 | goto out; |
| 310 | } |
| 311 | |
| 312 | /* keep power while host suspended */ |
| 313 | ret = sdio_set_host_pm_flags(func, MMC_PM_KEEP_POWER); |
| 314 | if (ret) { |
| 315 | wl1271_error("error while trying to keep power"); |
| 316 | goto out; |
| 317 | } |
Eliad Peller | f44e586 | 2011-05-13 11:57:11 +0300 | [diff] [blame] | 318 | |
| 319 | /* release host */ |
| 320 | sdio_release_host(func); |
Eliad Peller | 039bdb1 | 2011-05-13 11:57:10 +0300 | [diff] [blame] | 321 | } |
| 322 | out: |
| 323 | return ret; |
Ohad Ben-Cohen | 674f305 | 2010-10-08 16:16:27 +0300 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | static int wl1271_resume(struct device *dev) |
| 327 | { |
Eliad Peller | f44e586 | 2011-05-13 11:57:11 +0300 | [diff] [blame] | 328 | struct sdio_func *func = dev_to_sdio_func(dev); |
| 329 | struct wl1271 *wl = sdio_get_drvdata(func); |
| 330 | |
| 331 | wl1271_debug(DEBUG_MAC80211, "wl1271 resume"); |
| 332 | if (wl->wow_enabled) { |
| 333 | /* claim back host */ |
| 334 | sdio_claim_host(func); |
| 335 | } |
| 336 | |
Ohad Ben-Cohen | 674f305 | 2010-10-08 16:16:27 +0300 | [diff] [blame] | 337 | return 0; |
| 338 | } |
| 339 | |
| 340 | static const struct dev_pm_ops wl1271_sdio_pm_ops = { |
| 341 | .suspend = wl1271_suspend, |
| 342 | .resume = wl1271_resume, |
| 343 | }; |
Luciano Coelho | f634a4e | 2011-05-18 16:51:26 -0400 | [diff] [blame] | 344 | #endif |
Ohad Ben-Cohen | 674f305 | 2010-10-08 16:16:27 +0300 | [diff] [blame] | 345 | |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 346 | static struct sdio_driver wl1271_sdio_driver = { |
Luciano Coelho | f4b5d8d | 2010-04-01 11:38:17 +0300 | [diff] [blame] | 347 | .name = "wl1271_sdio", |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 348 | .id_table = wl1271_devices, |
| 349 | .probe = wl1271_probe, |
| 350 | .remove = __devexit_p(wl1271_remove), |
Luciano Coelho | f634a4e | 2011-05-18 16:51:26 -0400 | [diff] [blame] | 351 | #ifdef CONFIG_PM |
Ohad Ben-Cohen | 674f305 | 2010-10-08 16:16:27 +0300 | [diff] [blame] | 352 | .drv = { |
| 353 | .pm = &wl1271_sdio_pm_ops, |
| 354 | }, |
Luciano Coelho | f634a4e | 2011-05-18 16:51:26 -0400 | [diff] [blame] | 355 | #endif |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 356 | }; |
| 357 | |
| 358 | static int __init wl1271_init(void) |
| 359 | { |
Felipe Balbi | 6bdaf79 | 2011-05-14 00:26:20 +0300 | [diff] [blame] | 360 | return sdio_register_driver(&wl1271_sdio_driver); |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | static void __exit wl1271_exit(void) |
| 364 | { |
| 365 | sdio_unregister_driver(&wl1271_sdio_driver); |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | module_init(wl1271_init); |
| 369 | module_exit(wl1271_exit); |
| 370 | |
| 371 | MODULE_LICENSE("GPL"); |
Luciano Coelho | 5245e3a | 2011-03-30 21:31:39 +0300 | [diff] [blame] | 372 | MODULE_AUTHOR("Luciano Coelho <coelho@ti.com>"); |
Teemu Paasikivi | 5129dff | 2010-02-22 08:38:27 +0200 | [diff] [blame] | 373 | MODULE_AUTHOR("Juuso Oikarinen <juuso.oikarinen@nokia.com>"); |
Arik Nemtsov | c302b2c | 2011-08-17 10:45:48 +0300 | [diff] [blame] | 374 | MODULE_FIRMWARE(WL127X_FW_NAME); |
Shahar Levi | 5aa4234 | 2011-03-06 16:32:07 +0200 | [diff] [blame] | 375 | MODULE_FIRMWARE(WL128X_FW_NAME); |