mac802154: declare struct ieee802154_ops as const
[deliverable/linux.git] / drivers / net / ieee802154 / at86rf230.c
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 * Written by:
16 * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
17 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
18 * Alexander Aring <aar@pengutronix.de>
19 */
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/interrupt.h>
23 #include <linux/irq.h>
24 #include <linux/gpio.h>
25 #include <linux/delay.h>
26 #include <linux/spinlock.h>
27 #include <linux/spi/spi.h>
28 #include <linux/spi/at86rf230.h>
29 #include <linux/regmap.h>
30 #include <linux/skbuff.h>
31 #include <linux/of_gpio.h>
32 #include <linux/ieee802154.h>
33
34 #include <net/mac802154.h>
35 #include <net/cfg802154.h>
36
37 struct at86rf230_local;
38 /* at86rf2xx chip depend data.
39 * All timings are in us.
40 */
41 struct at86rf2xx_chip_data {
42 u16 t_sleep_cycle;
43 u16 t_channel_switch;
44 u16 t_reset_to_off;
45 u16 t_off_to_aack;
46 u16 t_off_to_tx_on;
47 u16 t_frame;
48 u16 t_p_ack;
49 /* short interframe spacing time */
50 u16 t_sifs;
51 /* long interframe spacing time */
52 u16 t_lifs;
53 /* completion timeout for tx in msecs */
54 u16 t_tx_timeout;
55 int rssi_base_val;
56
57 int (*set_channel)(struct at86rf230_local *, int, int);
58 int (*get_desense_steps)(struct at86rf230_local *, s32);
59 };
60
61 #define AT86RF2XX_MAX_BUF (127 + 3)
62
63 struct at86rf230_state_change {
64 struct at86rf230_local *lp;
65
66 struct spi_message msg;
67 struct spi_transfer trx;
68 u8 buf[AT86RF2XX_MAX_BUF];
69
70 void (*complete)(void *context);
71 u8 from_state;
72 u8 to_state;
73
74 bool irq_enable;
75 };
76
77 struct at86rf230_local {
78 struct spi_device *spi;
79
80 struct ieee802154_hw *hw;
81 struct at86rf2xx_chip_data *data;
82 struct regmap *regmap;
83
84 struct completion state_complete;
85 struct at86rf230_state_change state;
86
87 struct at86rf230_state_change irq;
88
89 bool tx_aret;
90 s8 max_frame_retries;
91 bool is_tx;
92 /* spinlock for is_tx protection */
93 spinlock_t lock;
94 struct sk_buff *tx_skb;
95 struct at86rf230_state_change tx;
96 };
97
98 #define RG_TRX_STATUS (0x01)
99 #define SR_TRX_STATUS 0x01, 0x1f, 0
100 #define SR_RESERVED_01_3 0x01, 0x20, 5
101 #define SR_CCA_STATUS 0x01, 0x40, 6
102 #define SR_CCA_DONE 0x01, 0x80, 7
103 #define RG_TRX_STATE (0x02)
104 #define SR_TRX_CMD 0x02, 0x1f, 0
105 #define SR_TRAC_STATUS 0x02, 0xe0, 5
106 #define RG_TRX_CTRL_0 (0x03)
107 #define SR_CLKM_CTRL 0x03, 0x07, 0
108 #define SR_CLKM_SHA_SEL 0x03, 0x08, 3
109 #define SR_PAD_IO_CLKM 0x03, 0x30, 4
110 #define SR_PAD_IO 0x03, 0xc0, 6
111 #define RG_TRX_CTRL_1 (0x04)
112 #define SR_IRQ_POLARITY 0x04, 0x01, 0
113 #define SR_IRQ_MASK_MODE 0x04, 0x02, 1
114 #define SR_SPI_CMD_MODE 0x04, 0x0c, 2
115 #define SR_RX_BL_CTRL 0x04, 0x10, 4
116 #define SR_TX_AUTO_CRC_ON 0x04, 0x20, 5
117 #define SR_IRQ_2_EXT_EN 0x04, 0x40, 6
118 #define SR_PA_EXT_EN 0x04, 0x80, 7
119 #define RG_PHY_TX_PWR (0x05)
120 #define SR_TX_PWR 0x05, 0x0f, 0
121 #define SR_PA_LT 0x05, 0x30, 4
122 #define SR_PA_BUF_LT 0x05, 0xc0, 6
123 #define RG_PHY_RSSI (0x06)
124 #define SR_RSSI 0x06, 0x1f, 0
125 #define SR_RND_VALUE 0x06, 0x60, 5
126 #define SR_RX_CRC_VALID 0x06, 0x80, 7
127 #define RG_PHY_ED_LEVEL (0x07)
128 #define SR_ED_LEVEL 0x07, 0xff, 0
129 #define RG_PHY_CC_CCA (0x08)
130 #define SR_CHANNEL 0x08, 0x1f, 0
131 #define SR_CCA_MODE 0x08, 0x60, 5
132 #define SR_CCA_REQUEST 0x08, 0x80, 7
133 #define RG_CCA_THRES (0x09)
134 #define SR_CCA_ED_THRES 0x09, 0x0f, 0
135 #define SR_RESERVED_09_1 0x09, 0xf0, 4
136 #define RG_RX_CTRL (0x0a)
137 #define SR_PDT_THRES 0x0a, 0x0f, 0
138 #define SR_RESERVED_0a_1 0x0a, 0xf0, 4
139 #define RG_SFD_VALUE (0x0b)
140 #define SR_SFD_VALUE 0x0b, 0xff, 0
141 #define RG_TRX_CTRL_2 (0x0c)
142 #define SR_OQPSK_DATA_RATE 0x0c, 0x03, 0
143 #define SR_SUB_MODE 0x0c, 0x04, 2
144 #define SR_BPSK_QPSK 0x0c, 0x08, 3
145 #define SR_OQPSK_SUB1_RC_EN 0x0c, 0x10, 4
146 #define SR_RESERVED_0c_5 0x0c, 0x60, 5
147 #define SR_RX_SAFE_MODE 0x0c, 0x80, 7
148 #define RG_ANT_DIV (0x0d)
149 #define SR_ANT_CTRL 0x0d, 0x03, 0
150 #define SR_ANT_EXT_SW_EN 0x0d, 0x04, 2
151 #define SR_ANT_DIV_EN 0x0d, 0x08, 3
152 #define SR_RESERVED_0d_2 0x0d, 0x70, 4
153 #define SR_ANT_SEL 0x0d, 0x80, 7
154 #define RG_IRQ_MASK (0x0e)
155 #define SR_IRQ_MASK 0x0e, 0xff, 0
156 #define RG_IRQ_STATUS (0x0f)
157 #define SR_IRQ_0_PLL_LOCK 0x0f, 0x01, 0
158 #define SR_IRQ_1_PLL_UNLOCK 0x0f, 0x02, 1
159 #define SR_IRQ_2_RX_START 0x0f, 0x04, 2
160 #define SR_IRQ_3_TRX_END 0x0f, 0x08, 3
161 #define SR_IRQ_4_CCA_ED_DONE 0x0f, 0x10, 4
162 #define SR_IRQ_5_AMI 0x0f, 0x20, 5
163 #define SR_IRQ_6_TRX_UR 0x0f, 0x40, 6
164 #define SR_IRQ_7_BAT_LOW 0x0f, 0x80, 7
165 #define RG_VREG_CTRL (0x10)
166 #define SR_RESERVED_10_6 0x10, 0x03, 0
167 #define SR_DVDD_OK 0x10, 0x04, 2
168 #define SR_DVREG_EXT 0x10, 0x08, 3
169 #define SR_RESERVED_10_3 0x10, 0x30, 4
170 #define SR_AVDD_OK 0x10, 0x40, 6
171 #define SR_AVREG_EXT 0x10, 0x80, 7
172 #define RG_BATMON (0x11)
173 #define SR_BATMON_VTH 0x11, 0x0f, 0
174 #define SR_BATMON_HR 0x11, 0x10, 4
175 #define SR_BATMON_OK 0x11, 0x20, 5
176 #define SR_RESERVED_11_1 0x11, 0xc0, 6
177 #define RG_XOSC_CTRL (0x12)
178 #define SR_XTAL_TRIM 0x12, 0x0f, 0
179 #define SR_XTAL_MODE 0x12, 0xf0, 4
180 #define RG_RX_SYN (0x15)
181 #define SR_RX_PDT_LEVEL 0x15, 0x0f, 0
182 #define SR_RESERVED_15_2 0x15, 0x70, 4
183 #define SR_RX_PDT_DIS 0x15, 0x80, 7
184 #define RG_XAH_CTRL_1 (0x17)
185 #define SR_RESERVED_17_8 0x17, 0x01, 0
186 #define SR_AACK_PROM_MODE 0x17, 0x02, 1
187 #define SR_AACK_ACK_TIME 0x17, 0x04, 2
188 #define SR_RESERVED_17_5 0x17, 0x08, 3
189 #define SR_AACK_UPLD_RES_FT 0x17, 0x10, 4
190 #define SR_AACK_FLTR_RES_FT 0x17, 0x20, 5
191 #define SR_CSMA_LBT_MODE 0x17, 0x40, 6
192 #define SR_RESERVED_17_1 0x17, 0x80, 7
193 #define RG_FTN_CTRL (0x18)
194 #define SR_RESERVED_18_2 0x18, 0x7f, 0
195 #define SR_FTN_START 0x18, 0x80, 7
196 #define RG_PLL_CF (0x1a)
197 #define SR_RESERVED_1a_2 0x1a, 0x7f, 0
198 #define SR_PLL_CF_START 0x1a, 0x80, 7
199 #define RG_PLL_DCU (0x1b)
200 #define SR_RESERVED_1b_3 0x1b, 0x3f, 0
201 #define SR_RESERVED_1b_2 0x1b, 0x40, 6
202 #define SR_PLL_DCU_START 0x1b, 0x80, 7
203 #define RG_PART_NUM (0x1c)
204 #define SR_PART_NUM 0x1c, 0xff, 0
205 #define RG_VERSION_NUM (0x1d)
206 #define SR_VERSION_NUM 0x1d, 0xff, 0
207 #define RG_MAN_ID_0 (0x1e)
208 #define SR_MAN_ID_0 0x1e, 0xff, 0
209 #define RG_MAN_ID_1 (0x1f)
210 #define SR_MAN_ID_1 0x1f, 0xff, 0
211 #define RG_SHORT_ADDR_0 (0x20)
212 #define SR_SHORT_ADDR_0 0x20, 0xff, 0
213 #define RG_SHORT_ADDR_1 (0x21)
214 #define SR_SHORT_ADDR_1 0x21, 0xff, 0
215 #define RG_PAN_ID_0 (0x22)
216 #define SR_PAN_ID_0 0x22, 0xff, 0
217 #define RG_PAN_ID_1 (0x23)
218 #define SR_PAN_ID_1 0x23, 0xff, 0
219 #define RG_IEEE_ADDR_0 (0x24)
220 #define SR_IEEE_ADDR_0 0x24, 0xff, 0
221 #define RG_IEEE_ADDR_1 (0x25)
222 #define SR_IEEE_ADDR_1 0x25, 0xff, 0
223 #define RG_IEEE_ADDR_2 (0x26)
224 #define SR_IEEE_ADDR_2 0x26, 0xff, 0
225 #define RG_IEEE_ADDR_3 (0x27)
226 #define SR_IEEE_ADDR_3 0x27, 0xff, 0
227 #define RG_IEEE_ADDR_4 (0x28)
228 #define SR_IEEE_ADDR_4 0x28, 0xff, 0
229 #define RG_IEEE_ADDR_5 (0x29)
230 #define SR_IEEE_ADDR_5 0x29, 0xff, 0
231 #define RG_IEEE_ADDR_6 (0x2a)
232 #define SR_IEEE_ADDR_6 0x2a, 0xff, 0
233 #define RG_IEEE_ADDR_7 (0x2b)
234 #define SR_IEEE_ADDR_7 0x2b, 0xff, 0
235 #define RG_XAH_CTRL_0 (0x2c)
236 #define SR_SLOTTED_OPERATION 0x2c, 0x01, 0
237 #define SR_MAX_CSMA_RETRIES 0x2c, 0x0e, 1
238 #define SR_MAX_FRAME_RETRIES 0x2c, 0xf0, 4
239 #define RG_CSMA_SEED_0 (0x2d)
240 #define SR_CSMA_SEED_0 0x2d, 0xff, 0
241 #define RG_CSMA_SEED_1 (0x2e)
242 #define SR_CSMA_SEED_1 0x2e, 0x07, 0
243 #define SR_AACK_I_AM_COORD 0x2e, 0x08, 3
244 #define SR_AACK_DIS_ACK 0x2e, 0x10, 4
245 #define SR_AACK_SET_PD 0x2e, 0x20, 5
246 #define SR_AACK_FVN_MODE 0x2e, 0xc0, 6
247 #define RG_CSMA_BE (0x2f)
248 #define SR_MIN_BE 0x2f, 0x0f, 0
249 #define SR_MAX_BE 0x2f, 0xf0, 4
250
251 #define CMD_REG 0x80
252 #define CMD_REG_MASK 0x3f
253 #define CMD_WRITE 0x40
254 #define CMD_FB 0x20
255
256 #define IRQ_BAT_LOW (1 << 7)
257 #define IRQ_TRX_UR (1 << 6)
258 #define IRQ_AMI (1 << 5)
259 #define IRQ_CCA_ED (1 << 4)
260 #define IRQ_TRX_END (1 << 3)
261 #define IRQ_RX_START (1 << 2)
262 #define IRQ_PLL_UNL (1 << 1)
263 #define IRQ_PLL_LOCK (1 << 0)
264
265 #define IRQ_ACTIVE_HIGH 0
266 #define IRQ_ACTIVE_LOW 1
267
268 #define STATE_P_ON 0x00 /* BUSY */
269 #define STATE_BUSY_RX 0x01
270 #define STATE_BUSY_TX 0x02
271 #define STATE_FORCE_TRX_OFF 0x03
272 #define STATE_FORCE_TX_ON 0x04 /* IDLE */
273 /* 0x05 */ /* INVALID_PARAMETER */
274 #define STATE_RX_ON 0x06
275 /* 0x07 */ /* SUCCESS */
276 #define STATE_TRX_OFF 0x08
277 #define STATE_TX_ON 0x09
278 /* 0x0a - 0x0e */ /* 0x0a - UNSUPPORTED_ATTRIBUTE */
279 #define STATE_SLEEP 0x0F
280 #define STATE_PREP_DEEP_SLEEP 0x10
281 #define STATE_BUSY_RX_AACK 0x11
282 #define STATE_BUSY_TX_ARET 0x12
283 #define STATE_RX_AACK_ON 0x16
284 #define STATE_TX_ARET_ON 0x19
285 #define STATE_RX_ON_NOCLK 0x1C
286 #define STATE_RX_AACK_ON_NOCLK 0x1D
287 #define STATE_BUSY_RX_AACK_NOCLK 0x1E
288 #define STATE_TRANSITION_IN_PROGRESS 0x1F
289
290 #define AT86RF2XX_NUMREGS 0x3F
291
292 static void
293 at86rf230_async_state_change(struct at86rf230_local *lp,
294 struct at86rf230_state_change *ctx,
295 const u8 state, void (*complete)(void *context),
296 const bool irq_enable);
297
298 static inline int
299 __at86rf230_write(struct at86rf230_local *lp,
300 unsigned int addr, unsigned int data)
301 {
302 return regmap_write(lp->regmap, addr, data);
303 }
304
305 static inline int
306 __at86rf230_read(struct at86rf230_local *lp,
307 unsigned int addr, unsigned int *data)
308 {
309 return regmap_read(lp->regmap, addr, data);
310 }
311
312 static inline int
313 at86rf230_read_subreg(struct at86rf230_local *lp,
314 unsigned int addr, unsigned int mask,
315 unsigned int shift, unsigned int *data)
316 {
317 int rc;
318
319 rc = __at86rf230_read(lp, addr, data);
320 if (rc > 0)
321 *data = (*data & mask) >> shift;
322
323 return rc;
324 }
325
326 static inline int
327 at86rf230_write_subreg(struct at86rf230_local *lp,
328 unsigned int addr, unsigned int mask,
329 unsigned int shift, unsigned int data)
330 {
331 return regmap_update_bits(lp->regmap, addr, mask, data << shift);
332 }
333
334 static bool
335 at86rf230_reg_writeable(struct device *dev, unsigned int reg)
336 {
337 switch (reg) {
338 case RG_TRX_STATE:
339 case RG_TRX_CTRL_0:
340 case RG_TRX_CTRL_1:
341 case RG_PHY_TX_PWR:
342 case RG_PHY_ED_LEVEL:
343 case RG_PHY_CC_CCA:
344 case RG_CCA_THRES:
345 case RG_RX_CTRL:
346 case RG_SFD_VALUE:
347 case RG_TRX_CTRL_2:
348 case RG_ANT_DIV:
349 case RG_IRQ_MASK:
350 case RG_VREG_CTRL:
351 case RG_BATMON:
352 case RG_XOSC_CTRL:
353 case RG_RX_SYN:
354 case RG_XAH_CTRL_1:
355 case RG_FTN_CTRL:
356 case RG_PLL_CF:
357 case RG_PLL_DCU:
358 case RG_SHORT_ADDR_0:
359 case RG_SHORT_ADDR_1:
360 case RG_PAN_ID_0:
361 case RG_PAN_ID_1:
362 case RG_IEEE_ADDR_0:
363 case RG_IEEE_ADDR_1:
364 case RG_IEEE_ADDR_2:
365 case RG_IEEE_ADDR_3:
366 case RG_IEEE_ADDR_4:
367 case RG_IEEE_ADDR_5:
368 case RG_IEEE_ADDR_6:
369 case RG_IEEE_ADDR_7:
370 case RG_XAH_CTRL_0:
371 case RG_CSMA_SEED_0:
372 case RG_CSMA_SEED_1:
373 case RG_CSMA_BE:
374 return true;
375 default:
376 return false;
377 }
378 }
379
380 static bool
381 at86rf230_reg_readable(struct device *dev, unsigned int reg)
382 {
383 bool rc;
384
385 /* all writeable are also readable */
386 rc = at86rf230_reg_writeable(dev, reg);
387 if (rc)
388 return rc;
389
390 /* readonly regs */
391 switch (reg) {
392 case RG_TRX_STATUS:
393 case RG_PHY_RSSI:
394 case RG_IRQ_STATUS:
395 case RG_PART_NUM:
396 case RG_VERSION_NUM:
397 case RG_MAN_ID_1:
398 case RG_MAN_ID_0:
399 return true;
400 default:
401 return false;
402 }
403 }
404
405 static bool
406 at86rf230_reg_volatile(struct device *dev, unsigned int reg)
407 {
408 /* can be changed during runtime */
409 switch (reg) {
410 case RG_TRX_STATUS:
411 case RG_TRX_STATE:
412 case RG_PHY_RSSI:
413 case RG_PHY_ED_LEVEL:
414 case RG_IRQ_STATUS:
415 case RG_VREG_CTRL:
416 return true;
417 default:
418 return false;
419 }
420 }
421
422 static bool
423 at86rf230_reg_precious(struct device *dev, unsigned int reg)
424 {
425 /* don't clear irq line on read */
426 switch (reg) {
427 case RG_IRQ_STATUS:
428 return true;
429 default:
430 return false;
431 }
432 }
433
434 static struct regmap_config at86rf230_regmap_spi_config = {
435 .reg_bits = 8,
436 .val_bits = 8,
437 .write_flag_mask = CMD_REG | CMD_WRITE,
438 .read_flag_mask = CMD_REG,
439 .cache_type = REGCACHE_RBTREE,
440 .max_register = AT86RF2XX_NUMREGS,
441 .writeable_reg = at86rf230_reg_writeable,
442 .readable_reg = at86rf230_reg_readable,
443 .volatile_reg = at86rf230_reg_volatile,
444 .precious_reg = at86rf230_reg_precious,
445 };
446
447 static void
448 at86rf230_async_error_recover(void *context)
449 {
450 struct at86rf230_state_change *ctx = context;
451 struct at86rf230_local *lp = ctx->lp;
452
453 at86rf230_async_state_change(lp, ctx, STATE_RX_AACK_ON, NULL, false);
454 ieee802154_wake_queue(lp->hw);
455 }
456
457 static void
458 at86rf230_async_error(struct at86rf230_local *lp,
459 struct at86rf230_state_change *ctx, int rc)
460 {
461 dev_err(&lp->spi->dev, "spi_async error %d\n", rc);
462
463 at86rf230_async_state_change(lp, ctx, STATE_FORCE_TRX_OFF,
464 at86rf230_async_error_recover, false);
465 }
466
467 /* Generic function to get some register value in async mode */
468 static void
469 at86rf230_async_read_reg(struct at86rf230_local *lp, const u8 reg,
470 struct at86rf230_state_change *ctx,
471 void (*complete)(void *context),
472 const bool irq_enable)
473 {
474 int rc;
475
476 u8 *tx_buf = ctx->buf;
477
478 tx_buf[0] = (reg & CMD_REG_MASK) | CMD_REG;
479 ctx->trx.len = 2;
480 ctx->msg.complete = complete;
481 ctx->irq_enable = irq_enable;
482 rc = spi_async(lp->spi, &ctx->msg);
483 if (rc) {
484 if (irq_enable)
485 enable_irq(lp->spi->irq);
486
487 at86rf230_async_error(lp, ctx, rc);
488 }
489 }
490
491 static void
492 at86rf230_async_state_assert(void *context)
493 {
494 struct at86rf230_state_change *ctx = context;
495 struct at86rf230_local *lp = ctx->lp;
496 const u8 *buf = ctx->buf;
497 const u8 trx_state = buf[1] & 0x1f;
498
499 /* Assert state change */
500 if (trx_state != ctx->to_state) {
501 /* Special handling if transceiver state is in
502 * STATE_BUSY_RX_AACK and a SHR was detected.
503 */
504 if (trx_state == STATE_BUSY_RX_AACK) {
505 /* Undocumented race condition. If we send a state
506 * change to STATE_RX_AACK_ON the transceiver could
507 * change his state automatically to STATE_BUSY_RX_AACK
508 * if a SHR was detected. This is not an error, but we
509 * can't assert this.
510 */
511 if (ctx->to_state == STATE_RX_AACK_ON)
512 goto done;
513
514 /* If we change to STATE_TX_ON without forcing and
515 * transceiver state is STATE_BUSY_RX_AACK, we wait
516 * 'tFrame + tPAck' receiving time. In this time the
517 * PDU should be received. If the transceiver is still
518 * in STATE_BUSY_RX_AACK, we run a force state change
519 * to STATE_TX_ON. This is a timeout handling, if the
520 * transceiver stucks in STATE_BUSY_RX_AACK.
521 */
522 if (ctx->to_state == STATE_TX_ON) {
523 at86rf230_async_state_change(lp, ctx,
524 STATE_FORCE_TX_ON,
525 ctx->complete,
526 ctx->irq_enable);
527 return;
528 }
529 }
530
531
532 dev_warn(&lp->spi->dev, "unexcept state change from 0x%02x to 0x%02x. Actual state: 0x%02x\n",
533 ctx->from_state, ctx->to_state, trx_state);
534 }
535
536 done:
537 if (ctx->complete)
538 ctx->complete(context);
539 }
540
541 /* Do state change timing delay. */
542 static void
543 at86rf230_async_state_delay(void *context)
544 {
545 struct at86rf230_state_change *ctx = context;
546 struct at86rf230_local *lp = ctx->lp;
547 struct at86rf2xx_chip_data *c = lp->data;
548 bool force = false;
549
550 /* The force state changes are will show as normal states in the
551 * state status subregister. We change the to_state to the
552 * corresponding one and remember if it was a force change, this
553 * differs if we do a state change from STATE_BUSY_RX_AACK.
554 */
555 switch (ctx->to_state) {
556 case STATE_FORCE_TX_ON:
557 ctx->to_state = STATE_TX_ON;
558 force = true;
559 break;
560 case STATE_FORCE_TRX_OFF:
561 ctx->to_state = STATE_TRX_OFF;
562 force = true;
563 break;
564 default:
565 break;
566 }
567
568 switch (ctx->from_state) {
569 case STATE_TRX_OFF:
570 switch (ctx->to_state) {
571 case STATE_RX_AACK_ON:
572 usleep_range(c->t_off_to_aack, c->t_off_to_aack + 10);
573 goto change;
574 case STATE_TX_ON:
575 usleep_range(c->t_off_to_tx_on,
576 c->t_off_to_tx_on + 10);
577 goto change;
578 default:
579 break;
580 }
581 break;
582 case STATE_BUSY_RX_AACK:
583 switch (ctx->to_state) {
584 case STATE_TX_ON:
585 /* Wait for worst case receiving time if we
586 * didn't make a force change from BUSY_RX_AACK
587 * to TX_ON.
588 */
589 if (!force) {
590 usleep_range(c->t_frame + c->t_p_ack,
591 c->t_frame + c->t_p_ack + 1000);
592 goto change;
593 }
594 break;
595 default:
596 break;
597 }
598 break;
599 /* Default value, means RESET state */
600 case STATE_P_ON:
601 switch (ctx->to_state) {
602 case STATE_TRX_OFF:
603 usleep_range(c->t_reset_to_off, c->t_reset_to_off + 10);
604 goto change;
605 default:
606 break;
607 }
608 break;
609 default:
610 break;
611 }
612
613 /* Default delay is 1us in the most cases */
614 udelay(1);
615
616 change:
617 at86rf230_async_read_reg(lp, RG_TRX_STATUS, ctx,
618 at86rf230_async_state_assert,
619 ctx->irq_enable);
620 }
621
622 static void
623 at86rf230_async_state_change_start(void *context)
624 {
625 struct at86rf230_state_change *ctx = context;
626 struct at86rf230_local *lp = ctx->lp;
627 u8 *buf = ctx->buf;
628 const u8 trx_state = buf[1] & 0x1f;
629 int rc;
630
631 /* Check for "possible" STATE_TRANSITION_IN_PROGRESS */
632 if (trx_state == STATE_TRANSITION_IN_PROGRESS) {
633 udelay(1);
634 at86rf230_async_read_reg(lp, RG_TRX_STATUS, ctx,
635 at86rf230_async_state_change_start,
636 ctx->irq_enable);
637 return;
638 }
639
640 /* Check if we already are in the state which we change in */
641 if (trx_state == ctx->to_state) {
642 if (ctx->complete)
643 ctx->complete(context);
644 return;
645 }
646
647 /* Set current state to the context of state change */
648 ctx->from_state = trx_state;
649
650 /* Going into the next step for a state change which do a timing
651 * relevant delay.
652 */
653 buf[0] = (RG_TRX_STATE & CMD_REG_MASK) | CMD_REG | CMD_WRITE;
654 buf[1] = ctx->to_state;
655 ctx->trx.len = 2;
656 ctx->msg.complete = at86rf230_async_state_delay;
657 rc = spi_async(lp->spi, &ctx->msg);
658 if (rc) {
659 if (ctx->irq_enable)
660 enable_irq(lp->spi->irq);
661
662 at86rf230_async_error(lp, &lp->state, rc);
663 }
664 }
665
666 static void
667 at86rf230_async_state_change(struct at86rf230_local *lp,
668 struct at86rf230_state_change *ctx,
669 const u8 state, void (*complete)(void *context),
670 const bool irq_enable)
671 {
672 /* Initialization for the state change context */
673 ctx->to_state = state;
674 ctx->complete = complete;
675 ctx->irq_enable = irq_enable;
676 at86rf230_async_read_reg(lp, RG_TRX_STATUS, ctx,
677 at86rf230_async_state_change_start,
678 irq_enable);
679 }
680
681 static void
682 at86rf230_sync_state_change_complete(void *context)
683 {
684 struct at86rf230_state_change *ctx = context;
685 struct at86rf230_local *lp = ctx->lp;
686
687 complete(&lp->state_complete);
688 }
689
690 /* This function do a sync framework above the async state change.
691 * Some callbacks of the IEEE 802.15.4 driver interface need to be
692 * handled synchronously.
693 */
694 static int
695 at86rf230_sync_state_change(struct at86rf230_local *lp, unsigned int state)
696 {
697 int rc;
698
699 at86rf230_async_state_change(lp, &lp->state, state,
700 at86rf230_sync_state_change_complete,
701 false);
702
703 rc = wait_for_completion_timeout(&lp->state_complete,
704 msecs_to_jiffies(100));
705 if (!rc) {
706 at86rf230_async_error(lp, &lp->state, -ETIMEDOUT);
707 return -ETIMEDOUT;
708 }
709
710 return 0;
711 }
712
713 static void
714 at86rf230_tx_complete(void *context)
715 {
716 struct at86rf230_state_change *ctx = context;
717 struct at86rf230_local *lp = ctx->lp;
718 struct sk_buff *skb = lp->tx_skb;
719
720 enable_irq(lp->spi->irq);
721
722 if (lp->max_frame_retries <= 0) {
723 /* Interfame spacing time, which is phy depend.
724 * TODO
725 * Move this handling in MAC 802.15.4 layer.
726 * This is currently a workaround to avoid fragmenation issues.
727 */
728 if (skb->len > 18)
729 udelay(lp->data->t_lifs);
730 else
731 udelay(lp->data->t_sifs);
732 }
733
734 ieee802154_xmit_complete(lp->hw, skb);
735 }
736
737 static void
738 at86rf230_tx_on(void *context)
739 {
740 struct at86rf230_state_change *ctx = context;
741 struct at86rf230_local *lp = ctx->lp;
742
743 at86rf230_async_state_change(lp, &lp->irq, STATE_RX_AACK_ON,
744 at86rf230_tx_complete, true);
745 }
746
747 static void
748 at86rf230_tx_trac_error(void *context)
749 {
750 struct at86rf230_state_change *ctx = context;
751 struct at86rf230_local *lp = ctx->lp;
752
753 at86rf230_async_state_change(lp, ctx, STATE_TX_ON,
754 at86rf230_tx_on, true);
755 }
756
757 static void
758 at86rf230_tx_trac_check(void *context)
759 {
760 struct at86rf230_state_change *ctx = context;
761 struct at86rf230_local *lp = ctx->lp;
762 const u8 *buf = ctx->buf;
763 const u8 trac = (buf[1] & 0xe0) >> 5;
764
765 /* If trac status is different than zero we need to do a state change
766 * to STATE_FORCE_TRX_OFF then STATE_TX_ON to recover the transceiver
767 * state to TX_ON.
768 */
769 if (trac) {
770 at86rf230_async_state_change(lp, ctx, STATE_FORCE_TRX_OFF,
771 at86rf230_tx_trac_error, true);
772 return;
773 }
774
775 at86rf230_tx_on(context);
776 }
777
778
779 static void
780 at86rf230_tx_trac_status(void *context)
781 {
782 struct at86rf230_state_change *ctx = context;
783 struct at86rf230_local *lp = ctx->lp;
784
785 at86rf230_async_read_reg(lp, RG_TRX_STATE, ctx,
786 at86rf230_tx_trac_check, true);
787 }
788
789 static void
790 at86rf230_rx(struct at86rf230_local *lp,
791 const u8 *data, const u8 len, const u8 lqi)
792 {
793 struct sk_buff *skb;
794 u8 rx_local_buf[AT86RF2XX_MAX_BUF];
795
796 memcpy(rx_local_buf, data, len);
797 enable_irq(lp->spi->irq);
798
799 skb = dev_alloc_skb(IEEE802154_MTU);
800 if (!skb) {
801 dev_vdbg(&lp->spi->dev, "failed to allocate sk_buff\n");
802 return;
803 }
804
805 memcpy(skb_put(skb, len), rx_local_buf, len);
806 ieee802154_rx_irqsafe(lp->hw, skb, lqi);
807 }
808
809 static void
810 at86rf230_rx_read_frame_complete(void *context)
811 {
812 struct at86rf230_state_change *ctx = context;
813 struct at86rf230_local *lp = ctx->lp;
814 const u8 *buf = lp->irq.buf;
815 u8 len = buf[1];
816
817 if (!ieee802154_is_valid_psdu_len(len)) {
818 dev_vdbg(&lp->spi->dev, "corrupted frame received\n");
819 len = IEEE802154_MTU;
820 }
821
822 at86rf230_rx(lp, buf + 2, len - 2, buf[2 + len]);
823 }
824
825 static void
826 at86rf230_rx_read_frame(struct at86rf230_local *lp)
827 {
828 int rc;
829
830 u8 *buf = lp->irq.buf;
831
832 buf[0] = CMD_FB;
833 lp->irq.trx.len = AT86RF2XX_MAX_BUF;
834 lp->irq.msg.complete = at86rf230_rx_read_frame_complete;
835 rc = spi_async(lp->spi, &lp->irq.msg);
836 if (rc) {
837 enable_irq(lp->spi->irq);
838 at86rf230_async_error(lp, &lp->irq, rc);
839 }
840 }
841
842 static void
843 at86rf230_rx_trac_check(void *context)
844 {
845 struct at86rf230_state_change *ctx = context;
846 struct at86rf230_local *lp = ctx->lp;
847
848 /* Possible check on trac status here. This could be useful to make
849 * some stats why receive is failed. Not used at the moment, but it's
850 * maybe timing relevant. Datasheet doesn't say anything about this.
851 * The programming guide say do it so.
852 */
853
854 at86rf230_rx_read_frame(lp);
855 }
856
857 static void
858 at86rf230_irq_trx_end(struct at86rf230_local *lp)
859 {
860 spin_lock(&lp->lock);
861 if (lp->is_tx) {
862 lp->is_tx = 0;
863 spin_unlock(&lp->lock);
864
865 if (lp->tx_aret)
866 at86rf230_async_state_change(lp, &lp->irq,
867 STATE_FORCE_TX_ON,
868 at86rf230_tx_trac_status,
869 true);
870 else
871 at86rf230_async_state_change(lp, &lp->irq,
872 STATE_RX_AACK_ON,
873 at86rf230_tx_complete,
874 true);
875 } else {
876 spin_unlock(&lp->lock);
877 at86rf230_async_read_reg(lp, RG_TRX_STATE, &lp->irq,
878 at86rf230_rx_trac_check, true);
879 }
880 }
881
882 static void
883 at86rf230_irq_status(void *context)
884 {
885 struct at86rf230_state_change *ctx = context;
886 struct at86rf230_local *lp = ctx->lp;
887 const u8 *buf = lp->irq.buf;
888 const u8 irq = buf[1];
889
890 if (irq & IRQ_TRX_END) {
891 at86rf230_irq_trx_end(lp);
892 } else {
893 enable_irq(lp->spi->irq);
894 dev_err(&lp->spi->dev, "not supported irq %02x received\n",
895 irq);
896 }
897 }
898
899 static irqreturn_t at86rf230_isr(int irq, void *data)
900 {
901 struct at86rf230_local *lp = data;
902 struct at86rf230_state_change *ctx = &lp->irq;
903 u8 *buf = ctx->buf;
904 int rc;
905
906 disable_irq_nosync(irq);
907
908 buf[0] = (RG_IRQ_STATUS & CMD_REG_MASK) | CMD_REG;
909 ctx->trx.len = 2;
910 ctx->msg.complete = at86rf230_irq_status;
911 rc = spi_async(lp->spi, &ctx->msg);
912 if (rc) {
913 enable_irq(irq);
914 at86rf230_async_error(lp, ctx, rc);
915 return IRQ_NONE;
916 }
917
918 return IRQ_HANDLED;
919 }
920
921 static void
922 at86rf230_write_frame_complete(void *context)
923 {
924 struct at86rf230_state_change *ctx = context;
925 struct at86rf230_local *lp = ctx->lp;
926 u8 *buf = ctx->buf;
927 int rc;
928
929 buf[0] = (RG_TRX_STATE & CMD_REG_MASK) | CMD_REG | CMD_WRITE;
930 buf[1] = STATE_BUSY_TX;
931 ctx->trx.len = 2;
932 ctx->msg.complete = NULL;
933 rc = spi_async(lp->spi, &ctx->msg);
934 if (rc)
935 at86rf230_async_error(lp, ctx, rc);
936 }
937
938 static void
939 at86rf230_write_frame(void *context)
940 {
941 struct at86rf230_state_change *ctx = context;
942 struct at86rf230_local *lp = ctx->lp;
943 struct sk_buff *skb = lp->tx_skb;
944 u8 *buf = lp->tx.buf;
945 int rc;
946
947 spin_lock(&lp->lock);
948 lp->is_tx = 1;
949 spin_unlock(&lp->lock);
950
951 buf[0] = CMD_FB | CMD_WRITE;
952 buf[1] = skb->len + 2;
953 memcpy(buf + 2, skb->data, skb->len);
954 lp->tx.trx.len = skb->len + 2;
955 lp->tx.msg.complete = at86rf230_write_frame_complete;
956 rc = spi_async(lp->spi, &lp->tx.msg);
957 if (rc)
958 at86rf230_async_error(lp, ctx, rc);
959 }
960
961 static void
962 at86rf230_xmit_tx_on(void *context)
963 {
964 struct at86rf230_state_change *ctx = context;
965 struct at86rf230_local *lp = ctx->lp;
966
967 at86rf230_async_state_change(lp, ctx, STATE_TX_ARET_ON,
968 at86rf230_write_frame, false);
969 }
970
971 static int
972 at86rf230_xmit(struct ieee802154_hw *hw, struct sk_buff *skb)
973 {
974 struct at86rf230_local *lp = hw->priv;
975 struct at86rf230_state_change *ctx = &lp->tx;
976
977 void (*tx_complete)(void *context) = at86rf230_write_frame;
978
979 lp->tx_skb = skb;
980
981 /* In ARET mode we need to go into STATE_TX_ARET_ON after we
982 * are in STATE_TX_ON. The pfad differs here, so we change
983 * the complete handler.
984 */
985 if (lp->tx_aret)
986 tx_complete = at86rf230_xmit_tx_on;
987
988 at86rf230_async_state_change(lp, ctx, STATE_TX_ON, tx_complete, false);
989
990 return 0;
991 }
992
993 static int
994 at86rf230_ed(struct ieee802154_hw *hw, u8 *level)
995 {
996 might_sleep();
997 BUG_ON(!level);
998 *level = 0xbe;
999 return 0;
1000 }
1001
1002 static int
1003 at86rf230_start(struct ieee802154_hw *hw)
1004 {
1005 return at86rf230_sync_state_change(hw->priv, STATE_RX_AACK_ON);
1006 }
1007
1008 static void
1009 at86rf230_stop(struct ieee802154_hw *hw)
1010 {
1011 at86rf230_sync_state_change(hw->priv, STATE_FORCE_TRX_OFF);
1012 }
1013
1014 static int
1015 at86rf23x_set_channel(struct at86rf230_local *lp, int page, int channel)
1016 {
1017 return at86rf230_write_subreg(lp, SR_CHANNEL, channel);
1018 }
1019
1020 static int
1021 at86rf212_set_channel(struct at86rf230_local *lp, int page, int channel)
1022 {
1023 int rc;
1024
1025 if (channel == 0)
1026 rc = at86rf230_write_subreg(lp, SR_SUB_MODE, 0);
1027 else
1028 rc = at86rf230_write_subreg(lp, SR_SUB_MODE, 1);
1029 if (rc < 0)
1030 return rc;
1031
1032 if (page == 0) {
1033 rc = at86rf230_write_subreg(lp, SR_BPSK_QPSK, 0);
1034 lp->data->rssi_base_val = -100;
1035 } else {
1036 rc = at86rf230_write_subreg(lp, SR_BPSK_QPSK, 1);
1037 lp->data->rssi_base_val = -98;
1038 }
1039 if (rc < 0)
1040 return rc;
1041
1042 return at86rf230_write_subreg(lp, SR_CHANNEL, channel);
1043 }
1044
1045 static int
1046 at86rf230_channel(struct ieee802154_hw *hw, int page, int channel)
1047 {
1048 struct at86rf230_local *lp = hw->priv;
1049 int rc;
1050
1051 might_sleep();
1052
1053 if (page < 0 || page > 31 ||
1054 !(lp->hw->phy->channels_supported[page] & BIT(channel))) {
1055 WARN_ON(1);
1056 return -EINVAL;
1057 }
1058
1059 rc = lp->data->set_channel(lp, page, channel);
1060 if (rc < 0)
1061 return rc;
1062
1063 /* Wait for PLL */
1064 usleep_range(lp->data->t_channel_switch,
1065 lp->data->t_channel_switch + 10);
1066 hw->phy->current_channel = channel;
1067 hw->phy->current_page = page;
1068
1069 return 0;
1070 }
1071
1072 static int
1073 at86rf230_set_hw_addr_filt(struct ieee802154_hw *hw,
1074 struct ieee802154_hw_addr_filt *filt,
1075 unsigned long changed)
1076 {
1077 struct at86rf230_local *lp = hw->priv;
1078
1079 if (changed & IEEE802154_AFILT_SADDR_CHANGED) {
1080 u16 addr = le16_to_cpu(filt->short_addr);
1081
1082 dev_vdbg(&lp->spi->dev,
1083 "at86rf230_set_hw_addr_filt called for saddr\n");
1084 __at86rf230_write(lp, RG_SHORT_ADDR_0, addr);
1085 __at86rf230_write(lp, RG_SHORT_ADDR_1, addr >> 8);
1086 }
1087
1088 if (changed & IEEE802154_AFILT_PANID_CHANGED) {
1089 u16 pan = le16_to_cpu(filt->pan_id);
1090
1091 dev_vdbg(&lp->spi->dev,
1092 "at86rf230_set_hw_addr_filt called for pan id\n");
1093 __at86rf230_write(lp, RG_PAN_ID_0, pan);
1094 __at86rf230_write(lp, RG_PAN_ID_1, pan >> 8);
1095 }
1096
1097 if (changed & IEEE802154_AFILT_IEEEADDR_CHANGED) {
1098 u8 i, addr[8];
1099
1100 memcpy(addr, &filt->ieee_addr, 8);
1101 dev_vdbg(&lp->spi->dev,
1102 "at86rf230_set_hw_addr_filt called for IEEE addr\n");
1103 for (i = 0; i < 8; i++)
1104 __at86rf230_write(lp, RG_IEEE_ADDR_0 + i, addr[i]);
1105 }
1106
1107 if (changed & IEEE802154_AFILT_PANC_CHANGED) {
1108 dev_vdbg(&lp->spi->dev,
1109 "at86rf230_set_hw_addr_filt called for panc change\n");
1110 if (filt->pan_coord)
1111 at86rf230_write_subreg(lp, SR_AACK_I_AM_COORD, 1);
1112 else
1113 at86rf230_write_subreg(lp, SR_AACK_I_AM_COORD, 0);
1114 }
1115
1116 return 0;
1117 }
1118
1119 static int
1120 at86rf230_set_txpower(struct ieee802154_hw *hw, int db)
1121 {
1122 struct at86rf230_local *lp = hw->priv;
1123
1124 /* typical maximum output is 5dBm with RG_PHY_TX_PWR 0x60, lower five
1125 * bits decrease power in 1dB steps. 0x60 represents extra PA gain of
1126 * 0dB.
1127 * thus, supported values for db range from -26 to 5, for 31dB of
1128 * reduction to 0dB of reduction.
1129 */
1130 if (db > 5 || db < -26)
1131 return -EINVAL;
1132
1133 db = -(db - 5);
1134
1135 return __at86rf230_write(lp, RG_PHY_TX_PWR, 0x60 | db);
1136 }
1137
1138 static int
1139 at86rf230_set_lbt(struct ieee802154_hw *hw, bool on)
1140 {
1141 struct at86rf230_local *lp = hw->priv;
1142
1143 return at86rf230_write_subreg(lp, SR_CSMA_LBT_MODE, on);
1144 }
1145
1146 static int
1147 at86rf230_set_cca_mode(struct ieee802154_hw *hw, u8 mode)
1148 {
1149 struct at86rf230_local *lp = hw->priv;
1150
1151 return at86rf230_write_subreg(lp, SR_CCA_MODE, mode);
1152 }
1153
1154 static int
1155 at86rf212_get_desens_steps(struct at86rf230_local *lp, s32 level)
1156 {
1157 return (level - lp->data->rssi_base_val) * 100 / 207;
1158 }
1159
1160 static int
1161 at86rf23x_get_desens_steps(struct at86rf230_local *lp, s32 level)
1162 {
1163 return (level - lp->data->rssi_base_val) / 2;
1164 }
1165
1166 static int
1167 at86rf230_set_cca_ed_level(struct ieee802154_hw *hw, s32 level)
1168 {
1169 struct at86rf230_local *lp = hw->priv;
1170
1171 if (level < lp->data->rssi_base_val || level > 30)
1172 return -EINVAL;
1173
1174 return at86rf230_write_subreg(lp, SR_CCA_ED_THRES,
1175 lp->data->get_desense_steps(lp, level));
1176 }
1177
1178 static int
1179 at86rf230_set_csma_params(struct ieee802154_hw *hw, u8 min_be, u8 max_be,
1180 u8 retries)
1181 {
1182 struct at86rf230_local *lp = hw->priv;
1183 int rc;
1184
1185 if (min_be > max_be || max_be > 8 || retries > 5)
1186 return -EINVAL;
1187
1188 rc = at86rf230_write_subreg(lp, SR_MIN_BE, min_be);
1189 if (rc)
1190 return rc;
1191
1192 rc = at86rf230_write_subreg(lp, SR_MAX_BE, max_be);
1193 if (rc)
1194 return rc;
1195
1196 return at86rf230_write_subreg(lp, SR_MAX_CSMA_RETRIES, retries);
1197 }
1198
1199 static int
1200 at86rf230_set_frame_retries(struct ieee802154_hw *hw, s8 retries)
1201 {
1202 struct at86rf230_local *lp = hw->priv;
1203 int rc = 0;
1204
1205 if (retries < -1 || retries > 15)
1206 return -EINVAL;
1207
1208 lp->tx_aret = retries >= 0;
1209 lp->max_frame_retries = retries;
1210
1211 if (retries >= 0)
1212 rc = at86rf230_write_subreg(lp, SR_MAX_FRAME_RETRIES, retries);
1213
1214 return rc;
1215 }
1216
1217 static const struct ieee802154_ops at86rf230_ops = {
1218 .owner = THIS_MODULE,
1219 .xmit_async = at86rf230_xmit,
1220 .ed = at86rf230_ed,
1221 .set_channel = at86rf230_channel,
1222 .start = at86rf230_start,
1223 .stop = at86rf230_stop,
1224 .set_hw_addr_filt = at86rf230_set_hw_addr_filt,
1225 .set_txpower = at86rf230_set_txpower,
1226 .set_lbt = at86rf230_set_lbt,
1227 .set_cca_mode = at86rf230_set_cca_mode,
1228 .set_cca_ed_level = at86rf230_set_cca_ed_level,
1229 .set_csma_params = at86rf230_set_csma_params,
1230 .set_frame_retries = at86rf230_set_frame_retries,
1231 };
1232
1233 static struct at86rf2xx_chip_data at86rf233_data = {
1234 .t_sleep_cycle = 330,
1235 .t_channel_switch = 11,
1236 .t_reset_to_off = 26,
1237 .t_off_to_aack = 80,
1238 .t_off_to_tx_on = 80,
1239 .t_frame = 4096,
1240 .t_p_ack = 545,
1241 .t_sifs = 192,
1242 .t_lifs = 640,
1243 .t_tx_timeout = 2000,
1244 .rssi_base_val = -91,
1245 .set_channel = at86rf23x_set_channel,
1246 .get_desense_steps = at86rf23x_get_desens_steps
1247 };
1248
1249 static struct at86rf2xx_chip_data at86rf231_data = {
1250 .t_sleep_cycle = 330,
1251 .t_channel_switch = 24,
1252 .t_reset_to_off = 37,
1253 .t_off_to_aack = 110,
1254 .t_off_to_tx_on = 110,
1255 .t_frame = 4096,
1256 .t_p_ack = 545,
1257 .t_sifs = 192,
1258 .t_lifs = 640,
1259 .t_tx_timeout = 2000,
1260 .rssi_base_val = -91,
1261 .set_channel = at86rf23x_set_channel,
1262 .get_desense_steps = at86rf23x_get_desens_steps
1263 };
1264
1265 static struct at86rf2xx_chip_data at86rf212_data = {
1266 .t_sleep_cycle = 330,
1267 .t_channel_switch = 11,
1268 .t_reset_to_off = 26,
1269 .t_off_to_aack = 200,
1270 .t_off_to_tx_on = 200,
1271 .t_frame = 4096,
1272 .t_p_ack = 545,
1273 .t_sifs = 192,
1274 .t_lifs = 640,
1275 .t_tx_timeout = 2000,
1276 .rssi_base_val = -100,
1277 .set_channel = at86rf212_set_channel,
1278 .get_desense_steps = at86rf212_get_desens_steps
1279 };
1280
1281 static int at86rf230_hw_init(struct at86rf230_local *lp)
1282 {
1283 int rc, irq_type, irq_pol = IRQ_ACTIVE_HIGH;
1284 unsigned int dvdd;
1285 u8 csma_seed[2];
1286
1287 rc = at86rf230_sync_state_change(lp, STATE_FORCE_TRX_OFF);
1288 if (rc)
1289 return rc;
1290
1291 irq_type = irq_get_trigger_type(lp->spi->irq);
1292 if (irq_type == IRQ_TYPE_EDGE_FALLING)
1293 irq_pol = IRQ_ACTIVE_LOW;
1294
1295 rc = at86rf230_write_subreg(lp, SR_IRQ_POLARITY, irq_pol);
1296 if (rc)
1297 return rc;
1298
1299 rc = at86rf230_write_subreg(lp, SR_RX_SAFE_MODE, 1);
1300 if (rc)
1301 return rc;
1302
1303 rc = at86rf230_write_subreg(lp, SR_IRQ_MASK, IRQ_TRX_END);
1304 if (rc)
1305 return rc;
1306
1307 get_random_bytes(csma_seed, ARRAY_SIZE(csma_seed));
1308 rc = at86rf230_write_subreg(lp, SR_CSMA_SEED_0, csma_seed[0]);
1309 if (rc)
1310 return rc;
1311 rc = at86rf230_write_subreg(lp, SR_CSMA_SEED_1, csma_seed[1]);
1312 if (rc)
1313 return rc;
1314
1315 /* CLKM changes are applied immediately */
1316 rc = at86rf230_write_subreg(lp, SR_CLKM_SHA_SEL, 0x00);
1317 if (rc)
1318 return rc;
1319
1320 /* Turn CLKM Off */
1321 rc = at86rf230_write_subreg(lp, SR_CLKM_CTRL, 0x00);
1322 if (rc)
1323 return rc;
1324 /* Wait the next SLEEP cycle */
1325 usleep_range(lp->data->t_sleep_cycle,
1326 lp->data->t_sleep_cycle + 100);
1327
1328 rc = at86rf230_read_subreg(lp, SR_DVDD_OK, &dvdd);
1329 if (rc)
1330 return rc;
1331 if (!dvdd) {
1332 dev_err(&lp->spi->dev, "DVDD error\n");
1333 return -EINVAL;
1334 }
1335
1336 return 0;
1337 }
1338
1339 static struct at86rf230_platform_data *
1340 at86rf230_get_pdata(struct spi_device *spi)
1341 {
1342 struct at86rf230_platform_data *pdata;
1343
1344 if (!IS_ENABLED(CONFIG_OF) || !spi->dev.of_node)
1345 return spi->dev.platform_data;
1346
1347 pdata = devm_kzalloc(&spi->dev, sizeof(*pdata), GFP_KERNEL);
1348 if (!pdata)
1349 goto done;
1350
1351 pdata->rstn = of_get_named_gpio(spi->dev.of_node, "reset-gpio", 0);
1352 pdata->slp_tr = of_get_named_gpio(spi->dev.of_node, "sleep-gpio", 0);
1353
1354 spi->dev.platform_data = pdata;
1355 done:
1356 return pdata;
1357 }
1358
1359 static int
1360 at86rf230_detect_device(struct at86rf230_local *lp)
1361 {
1362 unsigned int part, version, val;
1363 u16 man_id = 0;
1364 const char *chip;
1365 int rc;
1366
1367 rc = __at86rf230_read(lp, RG_MAN_ID_0, &val);
1368 if (rc)
1369 return rc;
1370 man_id |= val;
1371
1372 rc = __at86rf230_read(lp, RG_MAN_ID_1, &val);
1373 if (rc)
1374 return rc;
1375 man_id |= (val << 8);
1376
1377 rc = __at86rf230_read(lp, RG_PART_NUM, &part);
1378 if (rc)
1379 return rc;
1380
1381 rc = __at86rf230_read(lp, RG_PART_NUM, &version);
1382 if (rc)
1383 return rc;
1384
1385 if (man_id != 0x001f) {
1386 dev_err(&lp->spi->dev, "Non-Atmel dev found (MAN_ID %02x %02x)\n",
1387 man_id >> 8, man_id & 0xFF);
1388 return -EINVAL;
1389 }
1390
1391 lp->hw->extra_tx_headroom = 0;
1392 lp->hw->flags = IEEE802154_HW_OMIT_CKSUM | IEEE802154_HW_AACK |
1393 IEEE802154_HW_TXPOWER | IEEE802154_HW_CSMA;
1394
1395 switch (part) {
1396 case 2:
1397 chip = "at86rf230";
1398 rc = -ENOTSUPP;
1399 break;
1400 case 3:
1401 chip = "at86rf231";
1402 lp->data = &at86rf231_data;
1403 lp->hw->phy->channels_supported[0] = 0x7FFF800;
1404 break;
1405 case 7:
1406 chip = "at86rf212";
1407 if (version == 1) {
1408 lp->data = &at86rf212_data;
1409 lp->hw->flags |= IEEE802154_HW_LBT;
1410 lp->hw->phy->channels_supported[0] = 0x00007FF;
1411 lp->hw->phy->channels_supported[2] = 0x00007FF;
1412 } else {
1413 rc = -ENOTSUPP;
1414 }
1415 break;
1416 case 11:
1417 chip = "at86rf233";
1418 lp->data = &at86rf233_data;
1419 lp->hw->phy->channels_supported[0] = 0x7FFF800;
1420 break;
1421 default:
1422 chip = "unkown";
1423 rc = -ENOTSUPP;
1424 break;
1425 }
1426
1427 dev_info(&lp->spi->dev, "Detected %s chip version %d\n", chip, version);
1428
1429 return rc;
1430 }
1431
1432 static void
1433 at86rf230_setup_spi_messages(struct at86rf230_local *lp)
1434 {
1435 lp->state.lp = lp;
1436 spi_message_init(&lp->state.msg);
1437 lp->state.msg.context = &lp->state;
1438 lp->state.trx.tx_buf = lp->state.buf;
1439 lp->state.trx.rx_buf = lp->state.buf;
1440 spi_message_add_tail(&lp->state.trx, &lp->state.msg);
1441
1442 lp->irq.lp = lp;
1443 spi_message_init(&lp->irq.msg);
1444 lp->irq.msg.context = &lp->irq;
1445 lp->irq.trx.tx_buf = lp->irq.buf;
1446 lp->irq.trx.rx_buf = lp->irq.buf;
1447 spi_message_add_tail(&lp->irq.trx, &lp->irq.msg);
1448
1449 lp->tx.lp = lp;
1450 spi_message_init(&lp->tx.msg);
1451 lp->tx.msg.context = &lp->tx;
1452 lp->tx.trx.tx_buf = lp->tx.buf;
1453 lp->tx.trx.rx_buf = lp->tx.buf;
1454 spi_message_add_tail(&lp->tx.trx, &lp->tx.msg);
1455 }
1456
1457 static int at86rf230_probe(struct spi_device *spi)
1458 {
1459 struct at86rf230_platform_data *pdata;
1460 struct ieee802154_hw *hw;
1461 struct at86rf230_local *lp;
1462 unsigned int status;
1463 int rc, irq_type;
1464
1465 if (!spi->irq) {
1466 dev_err(&spi->dev, "no IRQ specified\n");
1467 return -EINVAL;
1468 }
1469
1470 pdata = at86rf230_get_pdata(spi);
1471 if (!pdata) {
1472 dev_err(&spi->dev, "no platform_data\n");
1473 return -EINVAL;
1474 }
1475
1476 if (gpio_is_valid(pdata->rstn)) {
1477 rc = devm_gpio_request_one(&spi->dev, pdata->rstn,
1478 GPIOF_OUT_INIT_HIGH, "rstn");
1479 if (rc)
1480 return rc;
1481 }
1482
1483 if (gpio_is_valid(pdata->slp_tr)) {
1484 rc = devm_gpio_request_one(&spi->dev, pdata->slp_tr,
1485 GPIOF_OUT_INIT_LOW, "slp_tr");
1486 if (rc)
1487 return rc;
1488 }
1489
1490 /* Reset */
1491 if (gpio_is_valid(pdata->rstn)) {
1492 udelay(1);
1493 gpio_set_value(pdata->rstn, 0);
1494 udelay(1);
1495 gpio_set_value(pdata->rstn, 1);
1496 usleep_range(120, 240);
1497 }
1498
1499 hw = ieee802154_alloc_hw(sizeof(*lp), &at86rf230_ops);
1500 if (!hw)
1501 return -ENOMEM;
1502
1503 lp = hw->priv;
1504 lp->hw = hw;
1505 lp->spi = spi;
1506 hw->parent = &spi->dev;
1507
1508 lp->regmap = devm_regmap_init_spi(spi, &at86rf230_regmap_spi_config);
1509 if (IS_ERR(lp->regmap)) {
1510 rc = PTR_ERR(lp->regmap);
1511 dev_err(&spi->dev, "Failed to allocate register map: %d\n",
1512 rc);
1513 goto free_dev;
1514 }
1515
1516 at86rf230_setup_spi_messages(lp);
1517
1518 rc = at86rf230_detect_device(lp);
1519 if (rc < 0)
1520 goto free_dev;
1521
1522 spin_lock_init(&lp->lock);
1523 init_completion(&lp->state_complete);
1524
1525 spi_set_drvdata(spi, lp);
1526
1527 rc = at86rf230_hw_init(lp);
1528 if (rc)
1529 goto free_dev;
1530
1531 /* Read irq status register to reset irq line */
1532 rc = at86rf230_read_subreg(lp, RG_IRQ_STATUS, 0xff, 0, &status);
1533 if (rc)
1534 goto free_dev;
1535
1536 irq_type = irq_get_trigger_type(spi->irq);
1537 if (!irq_type)
1538 irq_type = IRQF_TRIGGER_RISING;
1539
1540 rc = devm_request_irq(&spi->dev, spi->irq, at86rf230_isr,
1541 IRQF_SHARED | irq_type, dev_name(&spi->dev), lp);
1542 if (rc)
1543 goto free_dev;
1544
1545 rc = ieee802154_register_hw(lp->hw);
1546 if (rc)
1547 goto free_dev;
1548
1549 return rc;
1550
1551 free_dev:
1552 ieee802154_free_hw(lp->hw);
1553
1554 return rc;
1555 }
1556
1557 static int at86rf230_remove(struct spi_device *spi)
1558 {
1559 struct at86rf230_local *lp = spi_get_drvdata(spi);
1560
1561 /* mask all at86rf230 irq's */
1562 at86rf230_write_subreg(lp, SR_IRQ_MASK, 0);
1563 ieee802154_unregister_hw(lp->hw);
1564 ieee802154_free_hw(lp->hw);
1565 dev_dbg(&spi->dev, "unregistered at86rf230\n");
1566
1567 return 0;
1568 }
1569
1570 static const struct of_device_id at86rf230_of_match[] = {
1571 { .compatible = "atmel,at86rf230", },
1572 { .compatible = "atmel,at86rf231", },
1573 { .compatible = "atmel,at86rf233", },
1574 { .compatible = "atmel,at86rf212", },
1575 { },
1576 };
1577 MODULE_DEVICE_TABLE(of, at86rf230_of_match);
1578
1579 static const struct spi_device_id at86rf230_device_id[] = {
1580 { .name = "at86rf230", },
1581 { .name = "at86rf231", },
1582 { .name = "at86rf233", },
1583 { .name = "at86rf212", },
1584 { },
1585 };
1586 MODULE_DEVICE_TABLE(spi, at86rf230_device_id);
1587
1588 static struct spi_driver at86rf230_driver = {
1589 .id_table = at86rf230_device_id,
1590 .driver = {
1591 .of_match_table = of_match_ptr(at86rf230_of_match),
1592 .name = "at86rf230",
1593 .owner = THIS_MODULE,
1594 },
1595 .probe = at86rf230_probe,
1596 .remove = at86rf230_remove,
1597 };
1598
1599 module_spi_driver(at86rf230_driver);
1600
1601 MODULE_DESCRIPTION("AT86RF230 Transceiver Driver");
1602 MODULE_LICENSE("GPL v2");
This page took 0.114144 seconds and 5 git commands to generate.