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/crc7.h>
27 #include <linux/spi/spi.h>
28 #include <linux/wl12xx.h>
34 static irqreturn_t
wl1251_irq(int irq
, void *cookie
)
38 wl1251_debug(DEBUG_IRQ
, "IRQ");
42 ieee80211_queue_work(wl
->hw
, &wl
->irq_work
);
47 static struct spi_device
*wl_to_spi(struct wl1251
*wl
)
52 static void wl1251_spi_reset(struct wl1251
*wl
)
55 struct spi_transfer t
;
58 cmd
= kzalloc(WSPI_INIT_CMD_LEN
, GFP_KERNEL
);
60 wl1251_error("could not allocate cmd for spi reset");
64 memset(&t
, 0, sizeof(t
));
67 memset(cmd
, 0xff, WSPI_INIT_CMD_LEN
);
70 t
.len
= WSPI_INIT_CMD_LEN
;
71 spi_message_add_tail(&t
, &m
);
73 spi_sync(wl_to_spi(wl
), &m
);
75 wl1251_dump(DEBUG_SPI
, "spi reset -> ", cmd
, WSPI_INIT_CMD_LEN
);
80 static void wl1251_spi_wake(struct wl1251
*wl
)
82 u8 crc
[WSPI_INIT_CMD_CRC_LEN
], *cmd
;
83 struct spi_transfer t
;
86 cmd
= kzalloc(WSPI_INIT_CMD_LEN
, GFP_KERNEL
);
88 wl1251_error("could not allocate cmd for spi init");
92 memset(crc
, 0, sizeof(crc
));
93 memset(&t
, 0, sizeof(t
));
96 /* Set WSPI_INIT_COMMAND
97 * the data is being send from the MSB to LSB
101 cmd
[1] = WSPI_INIT_CMD_START
| WSPI_INIT_CMD_TX
;
104 cmd
[6] |= HW_ACCESS_WSPI_INIT_CMD_MASK
<< 3;
105 cmd
[6] |= HW_ACCESS_WSPI_FIXED_BUSY_LEN
& WSPI_INIT_CMD_FIXEDBUSY_LEN
;
107 if (HW_ACCESS_WSPI_FIXED_BUSY_LEN
== 0)
108 cmd
[5] |= WSPI_INIT_CMD_DIS_FIXEDBUSY
;
110 cmd
[5] |= WSPI_INIT_CMD_EN_FIXEDBUSY
;
112 cmd
[5] |= WSPI_INIT_CMD_IOD
| WSPI_INIT_CMD_IP
| WSPI_INIT_CMD_CS
113 | WSPI_INIT_CMD_WSPI
| WSPI_INIT_CMD_WS
;
121 cmd
[4] |= crc7(0, crc
, WSPI_INIT_CMD_CRC_LEN
) << 1;
122 cmd
[4] |= WSPI_INIT_CMD_END
;
125 t
.len
= WSPI_INIT_CMD_LEN
;
126 spi_message_add_tail(&t
, &m
);
128 spi_sync(wl_to_spi(wl
), &m
);
130 wl1251_dump(DEBUG_SPI
, "spi init -> ", cmd
, WSPI_INIT_CMD_LEN
);
135 static void wl1251_spi_reset_wake(struct wl1251
*wl
)
137 wl1251_spi_reset(wl
);
141 static void wl1251_spi_read(struct wl1251
*wl
, int addr
, void *buf
,
144 struct spi_transfer t
[3];
145 struct spi_message m
;
149 cmd
= &wl
->buffer_cmd
;
150 busy_buf
= wl
->buffer_busyword
;
153 *cmd
|= WSPI_CMD_READ
;
154 *cmd
|= (len
<< WSPI_CMD_BYTE_LENGTH_OFFSET
) & WSPI_CMD_BYTE_LENGTH
;
155 *cmd
|= addr
& WSPI_CMD_BYTE_ADDR
;
157 spi_message_init(&m
);
158 memset(t
, 0, sizeof(t
));
162 spi_message_add_tail(&t
[0], &m
);
164 /* Busy and non busy words read */
165 t
[1].rx_buf
= busy_buf
;
166 t
[1].len
= WL1251_BUSY_WORD_LEN
;
167 spi_message_add_tail(&t
[1], &m
);
171 spi_message_add_tail(&t
[2], &m
);
173 spi_sync(wl_to_spi(wl
), &m
);
175 /* FIXME: check busy words */
177 wl1251_dump(DEBUG_SPI
, "spi_read cmd -> ", cmd
, sizeof(*cmd
));
178 wl1251_dump(DEBUG_SPI
, "spi_read buf <- ", buf
, len
);
181 static void wl1251_spi_write(struct wl1251
*wl
, int addr
, void *buf
,
184 struct spi_transfer t
[2];
185 struct spi_message m
;
188 cmd
= &wl
->buffer_cmd
;
191 *cmd
|= WSPI_CMD_WRITE
;
192 *cmd
|= (len
<< WSPI_CMD_BYTE_LENGTH_OFFSET
) & WSPI_CMD_BYTE_LENGTH
;
193 *cmd
|= addr
& WSPI_CMD_BYTE_ADDR
;
195 spi_message_init(&m
);
196 memset(t
, 0, sizeof(t
));
199 t
[0].len
= sizeof(*cmd
);
200 spi_message_add_tail(&t
[0], &m
);
204 spi_message_add_tail(&t
[1], &m
);
206 spi_sync(wl_to_spi(wl
), &m
);
208 wl1251_dump(DEBUG_SPI
, "spi_write cmd -> ", cmd
, sizeof(*cmd
));
209 wl1251_dump(DEBUG_SPI
, "spi_write buf -> ", buf
, len
);
212 static void wl1251_spi_enable_irq(struct wl1251
*wl
)
214 return enable_irq(wl
->irq
);
217 static void wl1251_spi_disable_irq(struct wl1251
*wl
)
219 return disable_irq(wl
->irq
);
222 static int wl1251_spi_set_power(struct wl1251
*wl
, bool enable
)
225 wl
->set_power(enable
);
230 static const struct wl1251_if_operations wl1251_spi_ops
= {
231 .read
= wl1251_spi_read
,
232 .write
= wl1251_spi_write
,
233 .reset
= wl1251_spi_reset_wake
,
234 .enable_irq
= wl1251_spi_enable_irq
,
235 .disable_irq
= wl1251_spi_disable_irq
,
236 .power
= wl1251_spi_set_power
,
239 static int wl1251_spi_probe(struct spi_device
*spi
)
241 struct wl12xx_platform_data
*pdata
;
242 struct ieee80211_hw
*hw
;
246 pdata
= dev_get_platdata(&spi
->dev
);
248 wl1251_error("no platform data");
252 hw
= wl1251_alloc_hw();
258 SET_IEEE80211_DEV(hw
, &spi
->dev
);
259 spi_set_drvdata(spi
, wl
);
261 wl
->if_ops
= &wl1251_spi_ops
;
263 /* This is the only SPI value that we need to set here, the rest
264 * comes from the board-peripherals file
266 spi
->bits_per_word
= 32;
268 ret
= spi_setup(spi
);
270 wl1251_error("spi_setup failed");
274 wl
->set_power
= pdata
->set_power
;
275 if (!wl
->set_power
) {
276 wl1251_error("set power function missing in platform data");
282 wl1251_error("irq missing in platform data");
286 wl
->use_eeprom
= pdata
->use_eeprom
;
288 irq_set_status_flags(wl
->irq
, IRQ_NOAUTOEN
);
289 ret
= request_irq(wl
->irq
, wl1251_irq
, 0, DRIVER_NAME
, wl
);
291 wl1251_error("request_irq() failed: %d", ret
);
295 irq_set_irq_type(wl
->irq
, IRQ_TYPE_EDGE_RISING
);
297 ret
= wl1251_init_ieee80211(wl
);
304 free_irq(wl
->irq
, wl
);
307 ieee80211_free_hw(hw
);
312 static int wl1251_spi_remove(struct spi_device
*spi
)
314 struct wl1251
*wl
= spi_get_drvdata(spi
);
316 free_irq(wl
->irq
, wl
);
322 static struct spi_driver wl1251_spi_driver
= {
325 .owner
= THIS_MODULE
,
328 .probe
= wl1251_spi_probe
,
329 .remove
= wl1251_spi_remove
,
332 module_spi_driver(wl1251_spi_driver
);
334 MODULE_LICENSE("GPL");
335 MODULE_AUTHOR("Kalle Valo <kvalo@adurom.com>");
336 MODULE_ALIAS("spi:wl1251");