2 * This file is part of wl1251
4 * Copyright (C) 2008 Nokia Corporation
6 * 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.
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.
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
22 #include <linux/interrupt.h>
23 #include <linux/irq.h>
24 #include <linux/module.h>
25 #include <linux/slab.h>
26 #include <linux/swab.h>
27 #include <linux/crc7.h>
28 #include <linux/spi/spi.h>
29 #include <linux/wl12xx.h>
30 #include <linux/gpio.h>
32 #include <linux/of_gpio.h>
33 #include <linux/regulator/consumer.h>
39 static irqreturn_t
wl1251_irq(int irq
, void *cookie
)
43 wl1251_debug(DEBUG_IRQ
, "IRQ");
47 ieee80211_queue_work(wl
->hw
, &wl
->irq_work
);
52 static struct spi_device
*wl_to_spi(struct wl1251
*wl
)
57 static void wl1251_spi_reset(struct wl1251
*wl
)
60 struct spi_transfer t
;
63 cmd
= kzalloc(WSPI_INIT_CMD_LEN
, GFP_KERNEL
);
65 wl1251_error("could not allocate cmd for spi reset");
69 memset(&t
, 0, sizeof(t
));
72 memset(cmd
, 0xff, WSPI_INIT_CMD_LEN
);
75 t
.len
= WSPI_INIT_CMD_LEN
;
76 spi_message_add_tail(&t
, &m
);
78 spi_sync(wl_to_spi(wl
), &m
);
80 wl1251_dump(DEBUG_SPI
, "spi reset -> ", cmd
, WSPI_INIT_CMD_LEN
);
85 static void wl1251_spi_wake(struct wl1251
*wl
)
87 struct spi_transfer t
;
89 u8
*cmd
= kzalloc(WSPI_INIT_CMD_LEN
, GFP_KERNEL
);
92 wl1251_error("could not allocate cmd for spi init");
96 memset(&t
, 0, sizeof(t
));
99 /* Set WSPI_INIT_COMMAND
100 * the data is being send from the MSB to LSB
104 cmd
[2] = WSPI_INIT_CMD_START
| WSPI_INIT_CMD_TX
;
107 cmd
[5] = HW_ACCESS_WSPI_INIT_CMD_MASK
<< 3;
108 cmd
[5] |= HW_ACCESS_WSPI_FIXED_BUSY_LEN
& WSPI_INIT_CMD_FIXEDBUSY_LEN
;
110 cmd
[6] = WSPI_INIT_CMD_IOD
| WSPI_INIT_CMD_IP
| WSPI_INIT_CMD_CS
111 | WSPI_INIT_CMD_WSPI
| WSPI_INIT_CMD_WS
;
113 if (HW_ACCESS_WSPI_FIXED_BUSY_LEN
== 0)
114 cmd
[6] |= WSPI_INIT_CMD_DIS_FIXEDBUSY
;
116 cmd
[6] |= WSPI_INIT_CMD_EN_FIXEDBUSY
;
118 cmd
[7] = crc7_be(0, cmd
+2, WSPI_INIT_CMD_CRC_LEN
) | WSPI_INIT_CMD_END
;
120 * The above is the logical order; it must actually be stored
121 * in the buffer byte-swapped.
123 __swab32s((u32
*)cmd
);
124 __swab32s((u32
*)cmd
+1);
127 t
.len
= WSPI_INIT_CMD_LEN
;
128 spi_message_add_tail(&t
, &m
);
130 spi_sync(wl_to_spi(wl
), &m
);
132 wl1251_dump(DEBUG_SPI
, "spi init -> ", cmd
, WSPI_INIT_CMD_LEN
);
137 static void wl1251_spi_reset_wake(struct wl1251
*wl
)
139 wl1251_spi_reset(wl
);
143 static void wl1251_spi_read(struct wl1251
*wl
, int addr
, void *buf
,
146 struct spi_transfer t
[3];
147 struct spi_message m
;
151 cmd
= &wl
->buffer_cmd
;
152 busy_buf
= wl
->buffer_busyword
;
155 *cmd
|= WSPI_CMD_READ
;
156 *cmd
|= (len
<< WSPI_CMD_BYTE_LENGTH_OFFSET
) & WSPI_CMD_BYTE_LENGTH
;
157 *cmd
|= addr
& WSPI_CMD_BYTE_ADDR
;
159 spi_message_init(&m
);
160 memset(t
, 0, sizeof(t
));
164 spi_message_add_tail(&t
[0], &m
);
166 /* Busy and non busy words read */
167 t
[1].rx_buf
= busy_buf
;
168 t
[1].len
= WL1251_BUSY_WORD_LEN
;
169 spi_message_add_tail(&t
[1], &m
);
173 spi_message_add_tail(&t
[2], &m
);
175 spi_sync(wl_to_spi(wl
), &m
);
177 /* FIXME: check busy words */
179 wl1251_dump(DEBUG_SPI
, "spi_read cmd -> ", cmd
, sizeof(*cmd
));
180 wl1251_dump(DEBUG_SPI
, "spi_read buf <- ", buf
, len
);
183 static void wl1251_spi_write(struct wl1251
*wl
, int addr
, void *buf
,
186 struct spi_transfer t
[2];
187 struct spi_message m
;
190 cmd
= &wl
->buffer_cmd
;
193 *cmd
|= WSPI_CMD_WRITE
;
194 *cmd
|= (len
<< WSPI_CMD_BYTE_LENGTH_OFFSET
) & WSPI_CMD_BYTE_LENGTH
;
195 *cmd
|= addr
& WSPI_CMD_BYTE_ADDR
;
197 spi_message_init(&m
);
198 memset(t
, 0, sizeof(t
));
201 t
[0].len
= sizeof(*cmd
);
202 spi_message_add_tail(&t
[0], &m
);
206 spi_message_add_tail(&t
[1], &m
);
208 spi_sync(wl_to_spi(wl
), &m
);
210 wl1251_dump(DEBUG_SPI
, "spi_write cmd -> ", cmd
, sizeof(*cmd
));
211 wl1251_dump(DEBUG_SPI
, "spi_write buf -> ", buf
, len
);
214 static void wl1251_spi_enable_irq(struct wl1251
*wl
)
216 return enable_irq(wl
->irq
);
219 static void wl1251_spi_disable_irq(struct wl1251
*wl
)
221 return disable_irq(wl
->irq
);
224 static int wl1251_spi_set_power(struct wl1251
*wl
, bool enable
)
226 if (gpio_is_valid(wl
->power_gpio
))
227 gpio_set_value(wl
->power_gpio
, enable
);
232 static const struct wl1251_if_operations wl1251_spi_ops
= {
233 .read
= wl1251_spi_read
,
234 .write
= wl1251_spi_write
,
235 .reset
= wl1251_spi_reset_wake
,
236 .enable_irq
= wl1251_spi_enable_irq
,
237 .disable_irq
= wl1251_spi_disable_irq
,
238 .power
= wl1251_spi_set_power
,
241 static int wl1251_spi_probe(struct spi_device
*spi
)
243 struct wl1251_platform_data
*pdata
= dev_get_platdata(&spi
->dev
);
244 struct device_node
*np
= spi
->dev
.of_node
;
245 struct ieee80211_hw
*hw
;
250 wl1251_error("no platform data");
254 hw
= wl1251_alloc_hw();
260 SET_IEEE80211_DEV(hw
, &spi
->dev
);
261 spi_set_drvdata(spi
, wl
);
263 wl
->if_ops
= &wl1251_spi_ops
;
265 /* This is the only SPI value that we need to set here, the rest
266 * comes from the board-peripherals file
268 spi
->bits_per_word
= 32;
270 ret
= spi_setup(spi
);
272 wl1251_error("spi_setup failed");
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);
280 wl
->power_gpio
= pdata
->power_gpio
;
281 wl
->use_eeprom
= pdata
->use_eeprom
;
284 if (wl
->power_gpio
== -EPROBE_DEFER
) {
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");
293 wl1251_error("Failed to request gpio: %d\n", ret
);
297 wl1251_error("set power gpio missing in platform data");
304 wl1251_error("irq missing in platform data");
309 irq_set_status_flags(wl
->irq
, IRQ_NOAUTOEN
);
310 ret
= devm_request_irq(&spi
->dev
, wl
->irq
, wl1251_irq
, 0,
313 wl1251_error("request_irq() failed: %d", ret
);
317 irq_set_irq_type(wl
->irq
, IRQ_TYPE_EDGE_RISING
);
319 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
);
326 ret
= regulator_enable(wl
->vio
);
330 ret
= wl1251_init_ieee80211(wl
);
332 goto disable_regulator
;
337 regulator_disable(wl
->vio
);
339 ieee80211_free_hw(hw
);
344 static int wl1251_spi_remove(struct spi_device
*spi
)
346 struct wl1251
*wl
= spi_get_drvdata(spi
);
349 regulator_disable(wl
->vio
);
354 static struct spi_driver wl1251_spi_driver
= {
359 .probe
= wl1251_spi_probe
,
360 .remove
= wl1251_spi_remove
,
363 module_spi_driver(wl1251_spi_driver
);
365 MODULE_LICENSE("GPL");
366 MODULE_AUTHOR("Kalle Valo <kvalo@adurom.com>");
367 MODULE_ALIAS("spi:wl1251");