6lowpan: revert: add missing spin_lock_init()
[deliverable/linux.git] / drivers / ieee802154 / at86rf230.c
CommitLineData
7b8e19b6 1/*
2 * AT86RF230/RF231 driver
3 *
4 * Copyright (C) 2009-2012 Siemens AG
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Written by:
20 * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
21 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
22 */
23#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/interrupt.h>
26#include <linux/gpio.h>
27#include <linux/delay.h>
28#include <linux/mutex.h>
29#include <linux/workqueue.h>
30#include <linux/spinlock.h>
31#include <linux/spi/spi.h>
32#include <linux/spi/at86rf230.h>
33#include <linux/skbuff.h>
34
35#include <net/mac802154.h>
36#include <net/wpan-phy.h>
37
38struct at86rf230_local {
39 struct spi_device *spi;
40 int rstn, slp_tr, dig2;
41
42 u8 part;
43 u8 vers;
44
45 u8 buf[2];
46 struct mutex bmux;
47
48 struct work_struct irqwork;
49 struct completion tx_complete;
50
51 struct ieee802154_dev *dev;
52
53 spinlock_t lock;
54 bool irq_disabled;
55 bool is_tx;
56};
57
58#define RG_TRX_STATUS (0x01)
59#define SR_TRX_STATUS 0x01, 0x1f, 0
60#define SR_RESERVED_01_3 0x01, 0x20, 5
61#define SR_CCA_STATUS 0x01, 0x40, 6
62#define SR_CCA_DONE 0x01, 0x80, 7
63#define RG_TRX_STATE (0x02)
64#define SR_TRX_CMD 0x02, 0x1f, 0
65#define SR_TRAC_STATUS 0x02, 0xe0, 5
66#define RG_TRX_CTRL_0 (0x03)
67#define SR_CLKM_CTRL 0x03, 0x07, 0
68#define SR_CLKM_SHA_SEL 0x03, 0x08, 3
69#define SR_PAD_IO_CLKM 0x03, 0x30, 4
70#define SR_PAD_IO 0x03, 0xc0, 6
71#define RG_TRX_CTRL_1 (0x04)
72#define SR_IRQ_POLARITY 0x04, 0x01, 0
73#define SR_IRQ_MASK_MODE 0x04, 0x02, 1
74#define SR_SPI_CMD_MODE 0x04, 0x0c, 2
75#define SR_RX_BL_CTRL 0x04, 0x10, 4
76#define SR_TX_AUTO_CRC_ON 0x04, 0x20, 5
77#define SR_IRQ_2_EXT_EN 0x04, 0x40, 6
78#define SR_PA_EXT_EN 0x04, 0x80, 7
79#define RG_PHY_TX_PWR (0x05)
80#define SR_TX_PWR 0x05, 0x0f, 0
81#define SR_PA_LT 0x05, 0x30, 4
82#define SR_PA_BUF_LT 0x05, 0xc0, 6
83#define RG_PHY_RSSI (0x06)
84#define SR_RSSI 0x06, 0x1f, 0
85#define SR_RND_VALUE 0x06, 0x60, 5
86#define SR_RX_CRC_VALID 0x06, 0x80, 7
87#define RG_PHY_ED_LEVEL (0x07)
88#define SR_ED_LEVEL 0x07, 0xff, 0
89#define RG_PHY_CC_CCA (0x08)
90#define SR_CHANNEL 0x08, 0x1f, 0
91#define SR_CCA_MODE 0x08, 0x60, 5
92#define SR_CCA_REQUEST 0x08, 0x80, 7
93#define RG_CCA_THRES (0x09)
94#define SR_CCA_ED_THRES 0x09, 0x0f, 0
95#define SR_RESERVED_09_1 0x09, 0xf0, 4
96#define RG_RX_CTRL (0x0a)
97#define SR_PDT_THRES 0x0a, 0x0f, 0
98#define SR_RESERVED_0a_1 0x0a, 0xf0, 4
99#define RG_SFD_VALUE (0x0b)
100#define SR_SFD_VALUE 0x0b, 0xff, 0
101#define RG_TRX_CTRL_2 (0x0c)
102#define SR_OQPSK_DATA_RATE 0x0c, 0x03, 0
103#define SR_RESERVED_0c_2 0x0c, 0x7c, 2
104#define SR_RX_SAFE_MODE 0x0c, 0x80, 7
105#define RG_ANT_DIV (0x0d)
106#define SR_ANT_CTRL 0x0d, 0x03, 0
107#define SR_ANT_EXT_SW_EN 0x0d, 0x04, 2
108#define SR_ANT_DIV_EN 0x0d, 0x08, 3
109#define SR_RESERVED_0d_2 0x0d, 0x70, 4
110#define SR_ANT_SEL 0x0d, 0x80, 7
111#define RG_IRQ_MASK (0x0e)
112#define SR_IRQ_MASK 0x0e, 0xff, 0
113#define RG_IRQ_STATUS (0x0f)
114#define SR_IRQ_0_PLL_LOCK 0x0f, 0x01, 0
115#define SR_IRQ_1_PLL_UNLOCK 0x0f, 0x02, 1
116#define SR_IRQ_2_RX_START 0x0f, 0x04, 2
117#define SR_IRQ_3_TRX_END 0x0f, 0x08, 3
118#define SR_IRQ_4_CCA_ED_DONE 0x0f, 0x10, 4
119#define SR_IRQ_5_AMI 0x0f, 0x20, 5
120#define SR_IRQ_6_TRX_UR 0x0f, 0x40, 6
121#define SR_IRQ_7_BAT_LOW 0x0f, 0x80, 7
122#define RG_VREG_CTRL (0x10)
123#define SR_RESERVED_10_6 0x10, 0x03, 0
124#define SR_DVDD_OK 0x10, 0x04, 2
125#define SR_DVREG_EXT 0x10, 0x08, 3
126#define SR_RESERVED_10_3 0x10, 0x30, 4
127#define SR_AVDD_OK 0x10, 0x40, 6
128#define SR_AVREG_EXT 0x10, 0x80, 7
129#define RG_BATMON (0x11)
130#define SR_BATMON_VTH 0x11, 0x0f, 0
131#define SR_BATMON_HR 0x11, 0x10, 4
132#define SR_BATMON_OK 0x11, 0x20, 5
133#define SR_RESERVED_11_1 0x11, 0xc0, 6
134#define RG_XOSC_CTRL (0x12)
135#define SR_XTAL_TRIM 0x12, 0x0f, 0
136#define SR_XTAL_MODE 0x12, 0xf0, 4
137#define RG_RX_SYN (0x15)
138#define SR_RX_PDT_LEVEL 0x15, 0x0f, 0
139#define SR_RESERVED_15_2 0x15, 0x70, 4
140#define SR_RX_PDT_DIS 0x15, 0x80, 7
141#define RG_XAH_CTRL_1 (0x17)
142#define SR_RESERVED_17_8 0x17, 0x01, 0
143#define SR_AACK_PROM_MODE 0x17, 0x02, 1
144#define SR_AACK_ACK_TIME 0x17, 0x04, 2
145#define SR_RESERVED_17_5 0x17, 0x08, 3
146#define SR_AACK_UPLD_RES_FT 0x17, 0x10, 4
147#define SR_AACK_FLTR_RES_FT 0x17, 0x20, 5
148#define SR_RESERVED_17_2 0x17, 0x40, 6
149#define SR_RESERVED_17_1 0x17, 0x80, 7
150#define RG_FTN_CTRL (0x18)
151#define SR_RESERVED_18_2 0x18, 0x7f, 0
152#define SR_FTN_START 0x18, 0x80, 7
153#define RG_PLL_CF (0x1a)
154#define SR_RESERVED_1a_2 0x1a, 0x7f, 0
155#define SR_PLL_CF_START 0x1a, 0x80, 7
156#define RG_PLL_DCU (0x1b)
157#define SR_RESERVED_1b_3 0x1b, 0x3f, 0
158#define SR_RESERVED_1b_2 0x1b, 0x40, 6
159#define SR_PLL_DCU_START 0x1b, 0x80, 7
160#define RG_PART_NUM (0x1c)
161#define SR_PART_NUM 0x1c, 0xff, 0
162#define RG_VERSION_NUM (0x1d)
163#define SR_VERSION_NUM 0x1d, 0xff, 0
164#define RG_MAN_ID_0 (0x1e)
165#define SR_MAN_ID_0 0x1e, 0xff, 0
166#define RG_MAN_ID_1 (0x1f)
167#define SR_MAN_ID_1 0x1f, 0xff, 0
168#define RG_SHORT_ADDR_0 (0x20)
169#define SR_SHORT_ADDR_0 0x20, 0xff, 0
170#define RG_SHORT_ADDR_1 (0x21)
171#define SR_SHORT_ADDR_1 0x21, 0xff, 0
172#define RG_PAN_ID_0 (0x22)
173#define SR_PAN_ID_0 0x22, 0xff, 0
174#define RG_PAN_ID_1 (0x23)
175#define SR_PAN_ID_1 0x23, 0xff, 0
176#define RG_IEEE_ADDR_0 (0x24)
177#define SR_IEEE_ADDR_0 0x24, 0xff, 0
178#define RG_IEEE_ADDR_1 (0x25)
179#define SR_IEEE_ADDR_1 0x25, 0xff, 0
180#define RG_IEEE_ADDR_2 (0x26)
181#define SR_IEEE_ADDR_2 0x26, 0xff, 0
182#define RG_IEEE_ADDR_3 (0x27)
183#define SR_IEEE_ADDR_3 0x27, 0xff, 0
184#define RG_IEEE_ADDR_4 (0x28)
185#define SR_IEEE_ADDR_4 0x28, 0xff, 0
186#define RG_IEEE_ADDR_5 (0x29)
187#define SR_IEEE_ADDR_5 0x29, 0xff, 0
188#define RG_IEEE_ADDR_6 (0x2a)
189#define SR_IEEE_ADDR_6 0x2a, 0xff, 0
190#define RG_IEEE_ADDR_7 (0x2b)
191#define SR_IEEE_ADDR_7 0x2b, 0xff, 0
192#define RG_XAH_CTRL_0 (0x2c)
193#define SR_SLOTTED_OPERATION 0x2c, 0x01, 0
194#define SR_MAX_CSMA_RETRIES 0x2c, 0x0e, 1
195#define SR_MAX_FRAME_RETRIES 0x2c, 0xf0, 4
196#define RG_CSMA_SEED_0 (0x2d)
197#define SR_CSMA_SEED_0 0x2d, 0xff, 0
198#define RG_CSMA_SEED_1 (0x2e)
199#define SR_CSMA_SEED_1 0x2e, 0x07, 0
200#define SR_AACK_I_AM_COORD 0x2e, 0x08, 3
201#define SR_AACK_DIS_ACK 0x2e, 0x10, 4
202#define SR_AACK_SET_PD 0x2e, 0x20, 5
203#define SR_AACK_FVN_MODE 0x2e, 0xc0, 6
204#define RG_CSMA_BE (0x2f)
205#define SR_MIN_BE 0x2f, 0x0f, 0
206#define SR_MAX_BE 0x2f, 0xf0, 4
207
208#define CMD_REG 0x80
209#define CMD_REG_MASK 0x3f
210#define CMD_WRITE 0x40
211#define CMD_FB 0x20
212
213#define IRQ_BAT_LOW (1 << 7)
214#define IRQ_TRX_UR (1 << 6)
215#define IRQ_AMI (1 << 5)
216#define IRQ_CCA_ED (1 << 4)
217#define IRQ_TRX_END (1 << 3)
218#define IRQ_RX_START (1 << 2)
219#define IRQ_PLL_UNL (1 << 1)
220#define IRQ_PLL_LOCK (1 << 0)
221
222#define STATE_P_ON 0x00 /* BUSY */
223#define STATE_BUSY_RX 0x01
224#define STATE_BUSY_TX 0x02
225#define STATE_FORCE_TRX_OFF 0x03
226#define STATE_FORCE_TX_ON 0x04 /* IDLE */
227/* 0x05 */ /* INVALID_PARAMETER */
228#define STATE_RX_ON 0x06
229/* 0x07 */ /* SUCCESS */
230#define STATE_TRX_OFF 0x08
231#define STATE_TX_ON 0x09
232/* 0x0a - 0x0e */ /* 0x0a - UNSUPPORTED_ATTRIBUTE */
233#define STATE_SLEEP 0x0F
234#define STATE_BUSY_RX_AACK 0x11
235#define STATE_BUSY_TX_ARET 0x12
236#define STATE_BUSY_RX_AACK_ON 0x16
237#define STATE_BUSY_TX_ARET_ON 0x19
238#define STATE_RX_ON_NOCLK 0x1C
239#define STATE_RX_AACK_ON_NOCLK 0x1D
240#define STATE_BUSY_RX_AACK_NOCLK 0x1E
241#define STATE_TRANSITION_IN_PROGRESS 0x1F
242
243static int
244__at86rf230_write(struct at86rf230_local *lp, u8 addr, u8 data)
245{
246 u8 *buf = lp->buf;
247 int status;
248 struct spi_message msg;
249 struct spi_transfer xfer = {
250 .len = 2,
251 .tx_buf = buf,
252 };
253
254 buf[0] = (addr & CMD_REG_MASK) | CMD_REG | CMD_WRITE;
255 buf[1] = data;
256 dev_vdbg(&lp->spi->dev, "buf[0] = %02x\n", buf[0]);
257 dev_vdbg(&lp->spi->dev, "buf[1] = %02x\n", buf[1]);
258 spi_message_init(&msg);
259 spi_message_add_tail(&xfer, &msg);
260
261 status = spi_sync(lp->spi, &msg);
262 dev_vdbg(&lp->spi->dev, "status = %d\n", status);
263 if (msg.status)
264 status = msg.status;
265
266 dev_vdbg(&lp->spi->dev, "status = %d\n", status);
267 dev_vdbg(&lp->spi->dev, "buf[0] = %02x\n", buf[0]);
268 dev_vdbg(&lp->spi->dev, "buf[1] = %02x\n", buf[1]);
269
270 return status;
271}
272
273static int
274__at86rf230_read_subreg(struct at86rf230_local *lp,
275 u8 addr, u8 mask, int shift, u8 *data)
276{
277 u8 *buf = lp->buf;
278 int status;
279 struct spi_message msg;
280 struct spi_transfer xfer = {
281 .len = 2,
282 .tx_buf = buf,
283 .rx_buf = buf,
284 };
285
286 buf[0] = (addr & CMD_REG_MASK) | CMD_REG;
287 buf[1] = 0xff;
288 dev_vdbg(&lp->spi->dev, "buf[0] = %02x\n", buf[0]);
289 spi_message_init(&msg);
290 spi_message_add_tail(&xfer, &msg);
291
292 status = spi_sync(lp->spi, &msg);
293 dev_vdbg(&lp->spi->dev, "status = %d\n", status);
294 if (msg.status)
295 status = msg.status;
296
297 dev_vdbg(&lp->spi->dev, "status = %d\n", status);
298 dev_vdbg(&lp->spi->dev, "buf[0] = %02x\n", buf[0]);
299 dev_vdbg(&lp->spi->dev, "buf[1] = %02x\n", buf[1]);
300
301 if (status == 0)
302 *data = buf[1];
303
304 return status;
305}
306
307static int
308at86rf230_read_subreg(struct at86rf230_local *lp,
309 u8 addr, u8 mask, int shift, u8 *data)
310{
311 int status;
312
313 mutex_lock(&lp->bmux);
314 status = __at86rf230_read_subreg(lp, addr, mask, shift, data);
315 mutex_unlock(&lp->bmux);
316
317 return status;
318}
319
320static int
321at86rf230_write_subreg(struct at86rf230_local *lp,
322 u8 addr, u8 mask, int shift, u8 data)
323{
324 int status;
325 u8 val;
326
327 mutex_lock(&lp->bmux);
328 status = __at86rf230_read_subreg(lp, addr, 0xff, 0, &val);
329 if (status)
330 goto out;
331
332 val &= ~mask;
333 val |= (data << shift) & mask;
334
335 status = __at86rf230_write(lp, addr, val);
336out:
337 mutex_unlock(&lp->bmux);
338
339 return status;
340}
341
342static int
343at86rf230_write_fbuf(struct at86rf230_local *lp, u8 *data, u8 len)
344{
345 u8 *buf = lp->buf;
346 int status;
347 struct spi_message msg;
348 struct spi_transfer xfer_head = {
349 .len = 2,
350 .tx_buf = buf,
351
352 };
353 struct spi_transfer xfer_buf = {
354 .len = len,
355 .tx_buf = data,
356 };
357
358 mutex_lock(&lp->bmux);
359 buf[0] = CMD_WRITE | CMD_FB;
360 buf[1] = len + 2; /* 2 bytes for CRC that isn't written */
361
362 dev_vdbg(&lp->spi->dev, "buf[0] = %02x\n", buf[0]);
363 dev_vdbg(&lp->spi->dev, "buf[1] = %02x\n", buf[1]);
364
365 spi_message_init(&msg);
366 spi_message_add_tail(&xfer_head, &msg);
367 spi_message_add_tail(&xfer_buf, &msg);
368
369 status = spi_sync(lp->spi, &msg);
370 dev_vdbg(&lp->spi->dev, "status = %d\n", status);
371 if (msg.status)
372 status = msg.status;
373
374 dev_vdbg(&lp->spi->dev, "status = %d\n", status);
375 dev_vdbg(&lp->spi->dev, "buf[0] = %02x\n", buf[0]);
376 dev_vdbg(&lp->spi->dev, "buf[1] = %02x\n", buf[1]);
377
378 mutex_unlock(&lp->bmux);
379 return status;
380}
381
382static int
383at86rf230_read_fbuf(struct at86rf230_local *lp, u8 *data, u8 *len, u8 *lqi)
384{
385 u8 *buf = lp->buf;
386 int status;
387 struct spi_message msg;
388 struct spi_transfer xfer_head = {
389 .len = 2,
390 .tx_buf = buf,
391 .rx_buf = buf,
392 };
393 struct spi_transfer xfer_head1 = {
394 .len = 2,
395 .tx_buf = buf,
396 .rx_buf = buf,
397 };
398 struct spi_transfer xfer_buf = {
399 .len = 0,
400 .rx_buf = data,
401 };
402
403 mutex_lock(&lp->bmux);
404
405 buf[0] = CMD_FB;
406 buf[1] = 0x00;
407
408 spi_message_init(&msg);
409 spi_message_add_tail(&xfer_head, &msg);
410
411 status = spi_sync(lp->spi, &msg);
412 dev_vdbg(&lp->spi->dev, "status = %d\n", status);
413
414 xfer_buf.len = *(buf + 1) + 1;
415 *len = buf[1];
416
417 buf[0] = CMD_FB;
418 buf[1] = 0x00;
419
420 spi_message_init(&msg);
421 spi_message_add_tail(&xfer_head1, &msg);
422 spi_message_add_tail(&xfer_buf, &msg);
423
424 status = spi_sync(lp->spi, &msg);
425
426 if (msg.status)
427 status = msg.status;
428
429 dev_vdbg(&lp->spi->dev, "status = %d\n", status);
430 dev_vdbg(&lp->spi->dev, "buf[0] = %02x\n", buf[0]);
431 dev_vdbg(&lp->spi->dev, "buf[1] = %02x\n", buf[1]);
432
433 if (status) {
434 if (lqi && (*len > lp->buf[1]))
435 *lqi = data[lp->buf[1]];
436 }
437 mutex_unlock(&lp->bmux);
438
439 return status;
440}
441
442static int
443at86rf230_ed(struct ieee802154_dev *dev, u8 *level)
444{
445 might_sleep();
446 BUG_ON(!level);
447 *level = 0xbe;
448 return 0;
449}
450
451static int
452at86rf230_state(struct ieee802154_dev *dev, int state)
453{
454 struct at86rf230_local *lp = dev->priv;
455 int rc;
456 u8 val;
457 u8 desired_status;
458
459 might_sleep();
460
461 if (state == STATE_FORCE_TX_ON)
462 desired_status = STATE_TX_ON;
463 else if (state == STATE_FORCE_TRX_OFF)
464 desired_status = STATE_TRX_OFF;
465 else
466 desired_status = state;
467
468 do {
469 rc = at86rf230_read_subreg(lp, SR_TRX_STATUS, &val);
470 if (rc)
471 goto err;
472 } while (val == STATE_TRANSITION_IN_PROGRESS);
473
474 if (val == desired_status)
475 return 0;
476
477 /* state is equal to phy states */
478 rc = at86rf230_write_subreg(lp, SR_TRX_CMD, state);
479 if (rc)
480 goto err;
481
482 do {
483 rc = at86rf230_read_subreg(lp, SR_TRX_STATUS, &val);
484 if (rc)
485 goto err;
486 } while (val == STATE_TRANSITION_IN_PROGRESS);
487
488
489 if (val == desired_status)
490 return 0;
491
492 pr_err("unexpected state change: %d, asked for %d\n", val, state);
493 return -EBUSY;
494
495err:
496 pr_err("error: %d\n", rc);
497 return rc;
498}
499
500static int
501at86rf230_start(struct ieee802154_dev *dev)
502{
503 struct at86rf230_local *lp = dev->priv;
504 u8 rc;
505
506 rc = at86rf230_write_subreg(lp, SR_RX_SAFE_MODE, 1);
507 if (rc)
508 return rc;
509
510 return at86rf230_state(dev, STATE_RX_ON);
511}
512
513static void
514at86rf230_stop(struct ieee802154_dev *dev)
515{
516 at86rf230_state(dev, STATE_FORCE_TRX_OFF);
517}
518
519static int
520at86rf230_channel(struct ieee802154_dev *dev, int page, int channel)
521{
522 struct at86rf230_local *lp = dev->priv;
523 int rc;
524
525 might_sleep();
526
527 if (page != 0 || channel < 11 || channel > 26) {
528 WARN_ON(1);
529 return -EINVAL;
530 }
531
532 rc = at86rf230_write_subreg(lp, SR_CHANNEL, channel);
533 msleep(1); /* Wait for PLL */
534 dev->phy->current_channel = channel;
535
536 return 0;
537}
538
539static int
540at86rf230_xmit(struct ieee802154_dev *dev, struct sk_buff *skb)
541{
542 struct at86rf230_local *lp = dev->priv;
543 int rc;
544 unsigned long flags;
545
546 might_sleep();
547
548 rc = at86rf230_state(dev, STATE_FORCE_TX_ON);
549 if (rc)
550 goto err;
551
552 spin_lock_irqsave(&lp->lock, flags);
553 lp->is_tx = 1;
554 INIT_COMPLETION(lp->tx_complete);
555 spin_unlock_irqrestore(&lp->lock, flags);
556
557 rc = at86rf230_write_fbuf(lp, skb->data, skb->len);
558 if (rc)
559 goto err_rx;
560
561 rc = at86rf230_write_subreg(lp, SR_TRX_CMD, STATE_BUSY_TX);
562 if (rc)
563 goto err_rx;
564
565 rc = wait_for_completion_interruptible(&lp->tx_complete);
566 if (rc < 0)
567 goto err_rx;
568
569 rc = at86rf230_start(dev);
570
571 return rc;
572
573err_rx:
574 at86rf230_start(dev);
575err:
576 pr_err("error: %d\n", rc);
577
578 spin_lock_irqsave(&lp->lock, flags);
579 lp->is_tx = 0;
580 spin_unlock_irqrestore(&lp->lock, flags);
581
582 return rc;
583}
584
585static int at86rf230_rx(struct at86rf230_local *lp)
586{
587 u8 len = 128, lqi = 0;
7b8e19b6 588 struct sk_buff *skb;
589
590 skb = alloc_skb(len, GFP_KERNEL);
591
592 if (!skb)
593 return -ENOMEM;
594
595 if (at86rf230_write_subreg(lp, SR_RX_PDT_DIS, 1) ||
596 at86rf230_read_fbuf(lp, skb_put(skb, len), &len, &lqi) ||
597 at86rf230_write_subreg(lp, SR_RX_SAFE_MODE, 1) ||
598 at86rf230_write_subreg(lp, SR_RX_PDT_DIS, 0)) {
599 goto err;
600 }
601
602 if (len < 2)
603 goto err;
604
605 skb_trim(skb, len - 2); /* We do not put CRC into the frame */
606
607 ieee802154_rx_irqsafe(lp->dev, skb, lqi);
608
23c34215 609 dev_dbg(&lp->spi->dev, "READ_FBUF: %d %x\n", len, lqi);
7b8e19b6 610
611 return 0;
612err:
613 pr_debug("received frame is too small\n");
614
615 kfree_skb(skb);
616 return -EINVAL;
617}
618
619static struct ieee802154_ops at86rf230_ops = {
620 .owner = THIS_MODULE,
621 .xmit = at86rf230_xmit,
622 .ed = at86rf230_ed,
623 .set_channel = at86rf230_channel,
624 .start = at86rf230_start,
625 .stop = at86rf230_stop,
626};
627
628static void at86rf230_irqwork(struct work_struct *work)
629{
630 struct at86rf230_local *lp =
631 container_of(work, struct at86rf230_local, irqwork);
632 u8 status = 0, val;
633 int rc;
634 unsigned long flags;
635
636 spin_lock_irqsave(&lp->lock, flags);
637 rc = at86rf230_read_subreg(lp, RG_IRQ_STATUS, 0xff, 0, &val);
638 status |= val;
639
640 status &= ~IRQ_PLL_LOCK; /* ignore */
641 status &= ~IRQ_RX_START; /* ignore */
642 status &= ~IRQ_AMI; /* ignore */
643 status &= ~IRQ_TRX_UR; /* FIXME: possibly handle ???*/
644
645 if (status & IRQ_TRX_END) {
646 status &= ~IRQ_TRX_END;
647 if (lp->is_tx) {
648 lp->is_tx = 0;
649 complete(&lp->tx_complete);
650 } else {
651 at86rf230_rx(lp);
652 }
653 }
654
655 if (lp->irq_disabled) {
656 lp->irq_disabled = 0;
657 enable_irq(lp->spi->irq);
658 }
659 spin_unlock_irqrestore(&lp->lock, flags);
660}
661
662static irqreturn_t at86rf230_isr(int irq, void *data)
663{
664 struct at86rf230_local *lp = data;
665
666 spin_lock(&lp->lock);
667 if (!lp->irq_disabled) {
668 disable_irq_nosync(irq);
669 lp->irq_disabled = 1;
670 }
671 spin_unlock(&lp->lock);
672
673 schedule_work(&lp->irqwork);
674
675 return IRQ_HANDLED;
676}
677
678
679static int at86rf230_hw_init(struct at86rf230_local *lp)
680{
681 u8 status;
682 int rc;
683
684 rc = at86rf230_read_subreg(lp, SR_TRX_STATUS, &status);
685 if (rc)
686 return rc;
687
688 dev_info(&lp->spi->dev, "Status: %02x\n", status);
689 if (status == STATE_P_ON) {
690 rc = at86rf230_write_subreg(lp, SR_TRX_CMD, STATE_TRX_OFF);
691 if (rc)
692 return rc;
693 msleep(1);
694 rc = at86rf230_read_subreg(lp, SR_TRX_STATUS, &status);
695 if (rc)
696 return rc;
697 dev_info(&lp->spi->dev, "Status: %02x\n", status);
698 }
699
700 rc = at86rf230_write_subreg(lp, SR_IRQ_MASK, 0xff); /* IRQ_TRX_UR |
701 * IRQ_CCA_ED |
702 * IRQ_TRX_END |
703 * IRQ_PLL_UNL |
704 * IRQ_PLL_LOCK
705 */
706 if (rc)
707 return rc;
708
709 /* CLKM changes are applied immediately */
710 rc = at86rf230_write_subreg(lp, SR_CLKM_SHA_SEL, 0x00);
711 if (rc)
712 return rc;
713
714 /* Turn CLKM Off */
715 rc = at86rf230_write_subreg(lp, SR_CLKM_CTRL, 0x00);
716 if (rc)
717 return rc;
718 /* Wait the next SLEEP cycle */
719 msleep(100);
720
721 rc = at86rf230_write_subreg(lp, SR_TRX_CMD, STATE_TX_ON);
722 if (rc)
723 return rc;
724 msleep(1);
725
726 rc = at86rf230_read_subreg(lp, SR_TRX_STATUS, &status);
727 if (rc)
728 return rc;
729 dev_info(&lp->spi->dev, "Status: %02x\n", status);
730
731 rc = at86rf230_read_subreg(lp, SR_DVDD_OK, &status);
732 if (rc)
733 return rc;
734 if (!status) {
735 dev_err(&lp->spi->dev, "DVDD error\n");
736 return -EINVAL;
737 }
738
739 rc = at86rf230_read_subreg(lp, SR_AVDD_OK, &status);
740 if (rc)
741 return rc;
742 if (!status) {
743 dev_err(&lp->spi->dev, "AVDD error\n");
744 return -EINVAL;
745 }
746
747 return 0;
748}
749
750static int at86rf230_suspend(struct spi_device *spi, pm_message_t message)
751{
752 return 0;
753}
754
755static int at86rf230_resume(struct spi_device *spi)
756{
757 return 0;
758}
759
760static int at86rf230_fill_data(struct spi_device *spi)
761{
762 struct at86rf230_local *lp = spi_get_drvdata(spi);
763 struct at86rf230_platform_data *pdata = spi->dev.platform_data;
764
765 if (!pdata) {
766 dev_err(&spi->dev, "no platform_data\n");
767 return -EINVAL;
768 }
769
770 lp->rstn = pdata->rstn;
771 lp->slp_tr = pdata->slp_tr;
772 lp->dig2 = pdata->dig2;
773
774 return 0;
775}
776
777static int __devinit at86rf230_probe(struct spi_device *spi)
778{
779 struct ieee802154_dev *dev;
780 struct at86rf230_local *lp;
781 u8 man_id_0, man_id_1;
782 int rc;
783 const char *chip;
784 int supported = 0;
785
786 if (!spi->irq) {
787 dev_err(&spi->dev, "no IRQ specified\n");
788 return -EINVAL;
789 }
790
791 dev = ieee802154_alloc_device(sizeof(*lp), &at86rf230_ops);
792 if (!dev)
793 return -ENOMEM;
794
795 lp = dev->priv;
796 lp->dev = dev;
797
798 lp->spi = spi;
799
800 dev->priv = lp;
801 dev->parent = &spi->dev;
802 dev->extra_tx_headroom = 0;
803 /* We do support only 2.4 Ghz */
804 dev->phy->channels_supported[0] = 0x7FFF800;
805 dev->flags = IEEE802154_HW_OMIT_CKSUM;
806
807 mutex_init(&lp->bmux);
808 INIT_WORK(&lp->irqwork, at86rf230_irqwork);
809 spin_lock_init(&lp->lock);
810 init_completion(&lp->tx_complete);
811
812 spi_set_drvdata(spi, lp);
813
814 rc = at86rf230_fill_data(spi);
815 if (rc)
816 goto err_fill;
817
818 rc = gpio_request(lp->rstn, "rstn");
819 if (rc)
820 goto err_rstn;
821
822 if (gpio_is_valid(lp->slp_tr)) {
823 rc = gpio_request(lp->slp_tr, "slp_tr");
824 if (rc)
825 goto err_slp_tr;
826 }
827
828 rc = gpio_direction_output(lp->rstn, 1);
829 if (rc)
830 goto err_gpio_dir;
831
832 if (gpio_is_valid(lp->slp_tr)) {
833 rc = gpio_direction_output(lp->slp_tr, 0);
834 if (rc)
835 goto err_gpio_dir;
836 }
837
838 /* Reset */
839 msleep(1);
840 gpio_set_value(lp->rstn, 0);
841 msleep(1);
842 gpio_set_value(lp->rstn, 1);
843 msleep(1);
844
845 rc = at86rf230_read_subreg(lp, SR_MAN_ID_0, &man_id_0);
846 if (rc)
847 goto err_gpio_dir;
848 rc = at86rf230_read_subreg(lp, SR_MAN_ID_1, &man_id_1);
849 if (rc)
850 goto err_gpio_dir;
851
852 if (man_id_1 != 0x00 || man_id_0 != 0x1f) {
853 dev_err(&spi->dev, "Non-Atmel dev found (MAN_ID %02x %02x)\n",
854 man_id_1, man_id_0);
855 rc = -EINVAL;
856 goto err_gpio_dir;
857 }
858
859 rc = at86rf230_read_subreg(lp, SR_PART_NUM, &lp->part);
860 if (rc)
861 goto err_gpio_dir;
862
863 rc = at86rf230_read_subreg(lp, SR_VERSION_NUM, &lp->vers);
864 if (rc)
865 goto err_gpio_dir;
866
867 switch (lp->part) {
868 case 2:
869 chip = "at86rf230";
870 /* supported = 1; FIXME: should be easy to support; */
871 break;
872 case 3:
873 chip = "at86rf231";
874 supported = 1;
875 break;
876 default:
877 chip = "UNKNOWN";
878 break;
879 }
880
881 dev_info(&spi->dev, "Detected %s chip version %d\n", chip, lp->vers);
882 if (!supported) {
883 rc = -ENOTSUPP;
884 goto err_gpio_dir;
885 }
886
887 rc = at86rf230_hw_init(lp);
888 if (rc)
889 goto err_gpio_dir;
890
891 rc = request_irq(spi->irq, at86rf230_isr, IRQF_SHARED,
892 dev_name(&spi->dev), lp);
893 if (rc)
894 goto err_gpio_dir;
895
896 rc = ieee802154_register_device(lp->dev);
897 if (rc)
898 goto err_irq;
899
900 return rc;
901
902 ieee802154_unregister_device(lp->dev);
903err_irq:
904 free_irq(spi->irq, lp);
905 flush_work(&lp->irqwork);
906err_gpio_dir:
907 if (gpio_is_valid(lp->slp_tr))
908 gpio_free(lp->slp_tr);
909err_slp_tr:
910 gpio_free(lp->rstn);
911err_rstn:
912err_fill:
913 spi_set_drvdata(spi, NULL);
914 mutex_destroy(&lp->bmux);
915 ieee802154_free_device(lp->dev);
916 return rc;
917}
918
919static int __devexit at86rf230_remove(struct spi_device *spi)
920{
921 struct at86rf230_local *lp = spi_get_drvdata(spi);
922
923 ieee802154_unregister_device(lp->dev);
924
925 free_irq(spi->irq, lp);
926 flush_work(&lp->irqwork);
927
928 if (gpio_is_valid(lp->slp_tr))
929 gpio_free(lp->slp_tr);
930 gpio_free(lp->rstn);
931
932 spi_set_drvdata(spi, NULL);
933 mutex_destroy(&lp->bmux);
934 ieee802154_free_device(lp->dev);
935
936 dev_dbg(&spi->dev, "unregistered at86rf230\n");
937 return 0;
938}
939
940static struct spi_driver at86rf230_driver = {
941 .driver = {
942 .name = "at86rf230",
943 .owner = THIS_MODULE,
944 },
945 .probe = at86rf230_probe,
946 .remove = __devexit_p(at86rf230_remove),
947 .suspend = at86rf230_suspend,
948 .resume = at86rf230_resume,
949};
950
951static int __init at86rf230_init(void)
952{
953 return spi_register_driver(&at86rf230_driver);
954}
955module_init(at86rf230_init);
956
957static void __exit at86rf230_exit(void)
958{
959 spi_unregister_driver(&at86rf230_driver);
960}
961module_exit(at86rf230_exit);
962
963MODULE_DESCRIPTION("AT86RF230 Transceiver Driver");
964MODULE_LICENSE("GPL v2");
This page took 0.072547 seconds and 5 git commands to generate.