blob: 8de9d4444a6a072372b674e88e05fd1741ac235e [file] [log] [blame]
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001/*
Kalle Valo80301cd2009-06-12 14:17:39 +03002 * This file is part of wl1251
Kalle Valo2f01a1f2009-04-29 23:33:31 +03003 *
4 * Copyright (C) 2008 Nokia Corporation
5 *
Kalle Valo2f01a1f2009-04-29 23:33:31 +03006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * version 2 as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18 * 02110-1301 USA
19 *
20 */
21
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000022#include <linux/interrupt.h>
Bob Copeland8e639c02009-08-07 13:33:26 +030023#include <linux/irq.h>
Kalle Valo2f01a1f2009-04-29 23:33:31 +030024#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
George Spelvine7572012014-05-11 06:07:43 -040026#include <linux/swab.h>
Kalle Valo2f01a1f2009-04-29 23:33:31 +030027#include <linux/crc7.h>
28#include <linux/spi/spi.h>
Ohad Ben-Cohenc1f9a092010-09-16 13:16:02 +020029#include <linux/wl12xx.h>
Sebastian Reichel1d207cd2014-02-15 00:05:53 +010030#include <linux/gpio.h>
Sebastian Reichel07bbca62014-02-15 00:05:55 +010031#include <linux/of.h>
32#include <linux/of_gpio.h>
Sebastian Reichele4c2e092014-02-15 00:05:54 +010033#include <linux/regulator/consumer.h>
Kalle Valo2f01a1f2009-04-29 23:33:31 +030034
Kalle Valo13674112009-06-12 14:17:25 +030035#include "wl1251.h"
Kalle Valo9bc67722010-10-10 11:28:32 +030036#include "reg.h"
37#include "spi.h"
Kalle Valo2f01a1f2009-04-29 23:33:31 +030038
Bob Copelandb5ed9c12009-08-07 13:33:49 +030039static irqreturn_t wl1251_irq(int irq, void *cookie)
40{
41 struct wl1251 *wl;
42
43 wl1251_debug(DEBUG_IRQ, "IRQ");
44
45 wl = cookie;
46
Kalle Valo16e711f2009-08-07 13:35:04 +030047 ieee80211_queue_work(wl->hw, &wl->irq_work);
Bob Copelandb5ed9c12009-08-07 13:33:49 +030048
49 return IRQ_HANDLED;
50}
51
Bob Copelandaf8c78e2009-08-07 13:33:34 +030052static struct spi_device *wl_to_spi(struct wl1251 *wl)
53{
54 return wl->if_priv;
55}
56
Bob Copeland08d9f5722009-08-07 13:33:11 +030057static void wl1251_spi_reset(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030058{
59 u8 *cmd;
60 struct spi_transfer t;
61 struct spi_message m;
62
63 cmd = kzalloc(WSPI_INIT_CMD_LEN, GFP_KERNEL);
64 if (!cmd) {
Kalle Valo80301cd2009-06-12 14:17:39 +030065 wl1251_error("could not allocate cmd for spi reset");
Kalle Valo2f01a1f2009-04-29 23:33:31 +030066 return;
67 }
68
69 memset(&t, 0, sizeof(t));
70 spi_message_init(&m);
71
72 memset(cmd, 0xff, WSPI_INIT_CMD_LEN);
73
74 t.tx_buf = cmd;
75 t.len = WSPI_INIT_CMD_LEN;
76 spi_message_add_tail(&t, &m);
77
Bob Copelandaf8c78e2009-08-07 13:33:34 +030078 spi_sync(wl_to_spi(wl), &m);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030079
Kalle Valo80301cd2009-06-12 14:17:39 +030080 wl1251_dump(DEBUG_SPI, "spi reset -> ", cmd, WSPI_INIT_CMD_LEN);
Grazvydas Ignotasa859e4d2012-06-16 22:26:48 +030081
82 kfree(cmd);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030083}
84
Bob Copeland8e639c02009-08-07 13:33:26 +030085static void wl1251_spi_wake(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030086{
Kalle Valo2f01a1f2009-04-29 23:33:31 +030087 struct spi_transfer t;
88 struct spi_message m;
George Spelvine7572012014-05-11 06:07:43 -040089 u8 *cmd = kzalloc(WSPI_INIT_CMD_LEN, GFP_KERNEL);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030090
Kalle Valo2f01a1f2009-04-29 23:33:31 +030091 if (!cmd) {
Kalle Valo80301cd2009-06-12 14:17:39 +030092 wl1251_error("could not allocate cmd for spi init");
Kalle Valo2f01a1f2009-04-29 23:33:31 +030093 return;
94 }
95
Kalle Valo2f01a1f2009-04-29 23:33:31 +030096 memset(&t, 0, sizeof(t));
97 spi_message_init(&m);
98
Sachin Kamat789e90e2013-05-29 15:48:23 +053099 /* Set WSPI_INIT_COMMAND
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300100 * the data is being send from the MSB to LSB
101 */
George Spelvine7572012014-05-11 06:07:43 -0400102 cmd[0] = 0xff;
103 cmd[1] = 0xff;
104 cmd[2] = WSPI_INIT_CMD_START | WSPI_INIT_CMD_TX;
105 cmd[3] = 0;
106 cmd[4] = 0;
107 cmd[5] = HW_ACCESS_WSPI_INIT_CMD_MASK << 3;
108 cmd[5] |= HW_ACCESS_WSPI_FIXED_BUSY_LEN & WSPI_INIT_CMD_FIXEDBUSY_LEN;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300109
George Spelvine7572012014-05-11 06:07:43 -0400110 cmd[6] = WSPI_INIT_CMD_IOD | WSPI_INIT_CMD_IP | WSPI_INIT_CMD_CS
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300111 | WSPI_INIT_CMD_WSPI | WSPI_INIT_CMD_WS;
112
George Spelvine7572012014-05-11 06:07:43 -0400113 if (HW_ACCESS_WSPI_FIXED_BUSY_LEN == 0)
114 cmd[6] |= WSPI_INIT_CMD_DIS_FIXEDBUSY;
115 else
116 cmd[6] |= WSPI_INIT_CMD_EN_FIXEDBUSY;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300117
George Spelvine7572012014-05-11 06:07:43 -0400118 cmd[7] = crc7_be(0, cmd+2, WSPI_INIT_CMD_CRC_LEN) | WSPI_INIT_CMD_END;
119 /*
120 * The above is the logical order; it must actually be stored
121 * in the buffer byte-swapped.
122 */
123 __swab32s((u32 *)cmd);
124 __swab32s((u32 *)cmd+1);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300125
126 t.tx_buf = cmd;
127 t.len = WSPI_INIT_CMD_LEN;
128 spi_message_add_tail(&t, &m);
129
Bob Copelandaf8c78e2009-08-07 13:33:34 +0300130 spi_sync(wl_to_spi(wl), &m);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300131
Kalle Valo80301cd2009-06-12 14:17:39 +0300132 wl1251_dump(DEBUG_SPI, "spi init -> ", cmd, WSPI_INIT_CMD_LEN);
Grazvydas Ignotasa859e4d2012-06-16 22:26:48 +0300133
134 kfree(cmd);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300135}
136
Bob Copeland08d9f5722009-08-07 13:33:11 +0300137static void wl1251_spi_reset_wake(struct wl1251 *wl)
138{
139 wl1251_spi_reset(wl);
Bob Copeland8e639c02009-08-07 13:33:26 +0300140 wl1251_spi_wake(wl);
Bob Copeland08d9f5722009-08-07 13:33:11 +0300141}
142
Bob Copeland08d9f5722009-08-07 13:33:11 +0300143static void wl1251_spi_read(struct wl1251 *wl, int addr, void *buf,
144 size_t len)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300145{
146 struct spi_transfer t[3];
147 struct spi_message m;
Kalle Valo5262c122009-06-12 14:14:55 +0300148 u8 *busy_buf;
Kalle Valo56343a32009-06-12 14:14:47 +0300149 u32 *cmd;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300150
Kalle Valo56343a32009-06-12 14:14:47 +0300151 cmd = &wl->buffer_cmd;
Kalle Valo5262c122009-06-12 14:14:55 +0300152 busy_buf = wl->buffer_busyword;
Kalle Valo56343a32009-06-12 14:14:47 +0300153
154 *cmd = 0;
155 *cmd |= WSPI_CMD_READ;
156 *cmd |= (len << WSPI_CMD_BYTE_LENGTH_OFFSET) & WSPI_CMD_BYTE_LENGTH;
157 *cmd |= addr & WSPI_CMD_BYTE_ADDR;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300158
159 spi_message_init(&m);
160 memset(t, 0, sizeof(t));
161
Kalle Valo56343a32009-06-12 14:14:47 +0300162 t[0].tx_buf = cmd;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300163 t[0].len = 4;
164 spi_message_add_tail(&t[0], &m);
165
166 /* Busy and non busy words read */
167 t[1].rx_buf = busy_buf;
Kalle Valo80301cd2009-06-12 14:17:39 +0300168 t[1].len = WL1251_BUSY_WORD_LEN;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300169 spi_message_add_tail(&t[1], &m);
170
171 t[2].rx_buf = buf;
172 t[2].len = len;
173 spi_message_add_tail(&t[2], &m);
174
Bob Copelandaf8c78e2009-08-07 13:33:34 +0300175 spi_sync(wl_to_spi(wl), &m);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300176
177 /* FIXME: check busy words */
178
Kalle Valo80301cd2009-06-12 14:17:39 +0300179 wl1251_dump(DEBUG_SPI, "spi_read cmd -> ", cmd, sizeof(*cmd));
180 wl1251_dump(DEBUG_SPI, "spi_read buf <- ", buf, len);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300181}
182
Bob Copeland08d9f5722009-08-07 13:33:11 +0300183static void wl1251_spi_write(struct wl1251 *wl, int addr, void *buf,
184 size_t len)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300185{
186 struct spi_transfer t[2];
187 struct spi_message m;
Kalle Valo56343a32009-06-12 14:14:47 +0300188 u32 *cmd;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300189
Kalle Valo56343a32009-06-12 14:14:47 +0300190 cmd = &wl->buffer_cmd;
191
192 *cmd = 0;
193 *cmd |= WSPI_CMD_WRITE;
194 *cmd |= (len << WSPI_CMD_BYTE_LENGTH_OFFSET) & WSPI_CMD_BYTE_LENGTH;
195 *cmd |= addr & WSPI_CMD_BYTE_ADDR;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300196
197 spi_message_init(&m);
198 memset(t, 0, sizeof(t));
199
Kalle Valo56343a32009-06-12 14:14:47 +0300200 t[0].tx_buf = cmd;
201 t[0].len = sizeof(*cmd);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300202 spi_message_add_tail(&t[0], &m);
203
204 t[1].tx_buf = buf;
205 t[1].len = len;
206 spi_message_add_tail(&t[1], &m);
207
Bob Copelandaf8c78e2009-08-07 13:33:34 +0300208 spi_sync(wl_to_spi(wl), &m);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300209
Kalle Valo80301cd2009-06-12 14:17:39 +0300210 wl1251_dump(DEBUG_SPI, "spi_write cmd -> ", cmd, sizeof(*cmd));
211 wl1251_dump(DEBUG_SPI, "spi_write buf -> ", buf, len);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300212}
Bob Copeland08d9f5722009-08-07 13:33:11 +0300213
Bob Copelandb5ed9c12009-08-07 13:33:49 +0300214static void wl1251_spi_enable_irq(struct wl1251 *wl)
215{
216 return enable_irq(wl->irq);
217}
218
219static void wl1251_spi_disable_irq(struct wl1251 *wl)
220{
221 return disable_irq(wl->irq);
222}
223
Grazvydas Ignotascb7bbc72010-11-04 00:13:47 +0200224static int wl1251_spi_set_power(struct wl1251 *wl, bool enable)
225{
Sebastian Reichel1d207cd2014-02-15 00:05:53 +0100226 if (gpio_is_valid(wl->power_gpio))
227 gpio_set_value(wl->power_gpio, enable);
Grazvydas Ignotascb7bbc72010-11-04 00:13:47 +0200228
229 return 0;
230}
231
Bob Copelandaf8c78e2009-08-07 13:33:34 +0300232static const struct wl1251_if_operations wl1251_spi_ops = {
Bob Copeland08d9f5722009-08-07 13:33:11 +0300233 .read = wl1251_spi_read,
234 .write = wl1251_spi_write,
235 .reset = wl1251_spi_reset_wake,
Bob Copelandb5ed9c12009-08-07 13:33:49 +0300236 .enable_irq = wl1251_spi_enable_irq,
237 .disable_irq = wl1251_spi_disable_irq,
Grazvydas Ignotascb7bbc72010-11-04 00:13:47 +0200238 .power = wl1251_spi_set_power,
Bob Copeland08d9f5722009-08-07 13:33:11 +0300239};
Bob Copeland8e639c02009-08-07 13:33:26 +0300240
Bill Pembertonb74324d2012-12-03 09:56:42 -0500241static int wl1251_spi_probe(struct spi_device *spi)
Bob Copeland8e639c02009-08-07 13:33:26 +0300242{
Sebastian Reichel07bbca62014-02-15 00:05:55 +0100243 struct wl1251_platform_data *pdata = dev_get_platdata(&spi->dev);
244 struct device_node *np = spi->dev.of_node;
Bob Copeland8e639c02009-08-07 13:33:26 +0300245 struct ieee80211_hw *hw;
246 struct wl1251 *wl;
247 int ret;
248
Sebastian Reichel07bbca62014-02-15 00:05:55 +0100249 if (!np && !pdata) {
Bob Copeland8e639c02009-08-07 13:33:26 +0300250 wl1251_error("no platform data");
251 return -ENODEV;
252 }
253
254 hw = wl1251_alloc_hw();
255 if (IS_ERR(hw))
256 return PTR_ERR(hw);
257
258 wl = hw->priv;
259
260 SET_IEEE80211_DEV(hw, &spi->dev);
Jingoo Hanc49b05a2013-04-05 20:36:25 +0000261 spi_set_drvdata(spi, wl);
Bob Copelandaf8c78e2009-08-07 13:33:34 +0300262 wl->if_priv = spi;
Bob Copeland8e639c02009-08-07 13:33:26 +0300263 wl->if_ops = &wl1251_spi_ops;
264
265 /* This is the only SPI value that we need to set here, the rest
Sachin Kamat789e90e2013-05-29 15:48:23 +0530266 * comes from the board-peripherals file
267 */
Bob Copeland8e639c02009-08-07 13:33:26 +0300268 spi->bits_per_word = 32;
269
270 ret = spi_setup(spi);
271 if (ret < 0) {
272 wl1251_error("spi_setup failed");
273 goto out_free;
274 }
275
Sebastian Reichel07bbca62014-02-15 00:05:55 +0100276 if (np) {
277 wl->use_eeprom = of_property_read_bool(np, "ti,wl1251-has-eeprom");
278 wl->power_gpio = of_get_named_gpio(np, "ti,power-gpio", 0);
279 } else if (pdata) {
280 wl->power_gpio = pdata->power_gpio;
281 wl->use_eeprom = pdata->use_eeprom;
282 }
283
284 if (wl->power_gpio == -EPROBE_DEFER) {
285 ret = -EPROBE_DEFER;
286 goto out_free;
287 }
Sebastian Reichel1d207cd2014-02-15 00:05:53 +0100288
289 if (gpio_is_valid(wl->power_gpio)) {
290 ret = devm_gpio_request_one(&spi->dev, wl->power_gpio,
291 GPIOF_OUT_INIT_LOW, "wl1251 power");
292 if (ret) {
293 wl1251_error("Failed to request gpio: %d\n", ret);
294 goto out_free;
295 }
296 } else {
297 wl1251_error("set power gpio missing in platform data");
298 ret = -ENODEV;
299 goto out_free;
Bob Copeland8e639c02009-08-07 13:33:26 +0300300 }
301
302 wl->irq = spi->irq;
303 if (wl->irq < 0) {
304 wl1251_error("irq missing in platform data");
Sebastian Reichel1d207cd2014-02-15 00:05:53 +0100305 ret = -ENODEV;
306 goto out_free;
Bob Copeland8e639c02009-08-07 13:33:26 +0300307 }
308
Grazvydas Ignotasf380f2c2012-05-18 03:04:08 +0300309 irq_set_status_flags(wl->irq, IRQ_NOAUTOEN);
Sebastian Reichel1d207cd2014-02-15 00:05:53 +0100310 ret = devm_request_irq(&spi->dev, wl->irq, wl1251_irq, 0,
311 DRIVER_NAME, wl);
Bob Copeland8e639c02009-08-07 13:33:26 +0300312 if (ret < 0) {
313 wl1251_error("request_irq() failed: %d", ret);
314 goto out_free;
315 }
316
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200317 irq_set_irq_type(wl->irq, IRQ_TYPE_EDGE_RISING);
Bob Copeland8e639c02009-08-07 13:33:26 +0300318
Sebastian Reichele4c2e092014-02-15 00:05:54 +0100319 wl->vio = devm_regulator_get(&spi->dev, "vio");
320 if (IS_ERR(wl->vio)) {
321 ret = PTR_ERR(wl->vio);
322 wl1251_error("vio regulator missing: %d", ret);
323 goto out_free;
324 }
325
326 ret = regulator_enable(wl->vio);
Bob Copeland8e639c02009-08-07 13:33:26 +0300327 if (ret)
Sebastian Reichel1d207cd2014-02-15 00:05:53 +0100328 goto out_free;
Bob Copeland8e639c02009-08-07 13:33:26 +0300329
Sebastian Reichele4c2e092014-02-15 00:05:54 +0100330 ret = wl1251_init_ieee80211(wl);
331 if (ret)
332 goto disable_regulator;
333
Bob Copeland8e639c02009-08-07 13:33:26 +0300334 return 0;
335
Sebastian Reichele4c2e092014-02-15 00:05:54 +0100336disable_regulator:
337 regulator_disable(wl->vio);
338out_free:
Bob Copeland8e639c02009-08-07 13:33:26 +0300339 ieee80211_free_hw(hw);
340
341 return ret;
342}
343
Bill Pembertonb74324d2012-12-03 09:56:42 -0500344static int wl1251_spi_remove(struct spi_device *spi)
Bob Copeland8e639c02009-08-07 13:33:26 +0300345{
Jingoo Hanc49b05a2013-04-05 20:36:25 +0000346 struct wl1251 *wl = spi_get_drvdata(spi);
Bob Copeland8e639c02009-08-07 13:33:26 +0300347
348 wl1251_free_hw(wl);
Sebastian Reichele4c2e092014-02-15 00:05:54 +0100349 regulator_disable(wl->vio);
Bob Copeland8e639c02009-08-07 13:33:26 +0300350
351 return 0;
352}
353
354static struct spi_driver wl1251_spi_driver = {
355 .driver = {
Kalle Valo7590a552010-04-02 15:31:46 +0300356 .name = DRIVER_NAME,
Bob Copeland8e639c02009-08-07 13:33:26 +0300357 },
358
359 .probe = wl1251_spi_probe,
Bill Pembertonb74324d2012-12-03 09:56:42 -0500360 .remove = wl1251_spi_remove,
Bob Copeland8e639c02009-08-07 13:33:26 +0300361};
362
Sachin Kamat19a4e682013-05-29 15:48:22 +0530363module_spi_driver(wl1251_spi_driver);
Bob Copeland8e639c02009-08-07 13:33:26 +0300364
365MODULE_LICENSE("GPL");
Kalle Valo31c726f2010-08-22 22:46:15 +0300366MODULE_AUTHOR("Kalle Valo <kvalo@adurom.com>");
Ameya Palandef148cfd2010-07-05 17:12:38 +0300367MODULE_ALIAS("spi:wl1251");