GNU Linux-libre 4.4.284-gnu1
[releases.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/hrtimer.h>
23 #include <linux/jiffies.h>
24 #include <linux/interrupt.h>
25 #include <linux/irq.h>
26 #include <linux/gpio.h>
27 #include <linux/delay.h>
28 #include <linux/spi/spi.h>
29 #include <linux/spi/at86rf230.h>
30 #include <linux/regmap.h>
31 #include <linux/skbuff.h>
32 #include <linux/of_gpio.h>
33 #include <linux/ieee802154.h>
34 #include <linux/debugfs.h>
35
36 #include <net/mac802154.h>
37 #include <net/cfg802154.h>
38
39 #include "at86rf230.h"
40
41 struct at86rf230_local;
42 /* at86rf2xx chip depend data.
43  * All timings are in us.
44  */
45 struct at86rf2xx_chip_data {
46         u16 t_sleep_cycle;
47         u16 t_channel_switch;
48         u16 t_reset_to_off;
49         u16 t_off_to_aack;
50         u16 t_off_to_tx_on;
51         u16 t_off_to_sleep;
52         u16 t_sleep_to_off;
53         u16 t_frame;
54         u16 t_p_ack;
55         int rssi_base_val;
56
57         int (*set_channel)(struct at86rf230_local *, u8, u8);
58         int (*set_txpower)(struct at86rf230_local *, s32);
59 };
60
61 #define AT86RF2XX_MAX_BUF               (127 + 3)
62 /* tx retries to access the TX_ON state
63  * if it's above then force change will be started.
64  *
65  * We assume the max_frame_retries (7) value of 802.15.4 here.
66  */
67 #define AT86RF2XX_MAX_TX_RETRIES        7
68 /* We use the recommended 5 minutes timeout to recalibrate */
69 #define AT86RF2XX_CAL_LOOP_TIMEOUT      (5 * 60 * HZ)
70
71 struct at86rf230_state_change {
72         struct at86rf230_local *lp;
73         int irq;
74
75         struct hrtimer timer;
76         struct spi_message msg;
77         struct spi_transfer trx;
78         u8 buf[AT86RF2XX_MAX_BUF];
79
80         void (*complete)(void *context);
81         u8 from_state;
82         u8 to_state;
83
84         bool free;
85 };
86
87 struct at86rf230_trac {
88         u64 success;
89         u64 success_data_pending;
90         u64 success_wait_for_ack;
91         u64 channel_access_failure;
92         u64 no_ack;
93         u64 invalid;
94 };
95
96 struct at86rf230_local {
97         struct spi_device *spi;
98
99         struct ieee802154_hw *hw;
100         struct at86rf2xx_chip_data *data;
101         struct regmap *regmap;
102         int slp_tr;
103         bool sleep;
104
105         struct completion state_complete;
106         struct at86rf230_state_change state;
107
108         unsigned long cal_timeout;
109         bool is_tx;
110         bool is_tx_from_off;
111         u8 tx_retry;
112         struct sk_buff *tx_skb;
113         struct at86rf230_state_change tx;
114
115         struct at86rf230_trac trac;
116 };
117
118 #define AT86RF2XX_NUMREGS 0x3F
119
120 static void
121 at86rf230_async_state_change(struct at86rf230_local *lp,
122                              struct at86rf230_state_change *ctx,
123                              const u8 state, void (*complete)(void *context));
124
125 static inline void
126 at86rf230_sleep(struct at86rf230_local *lp)
127 {
128         if (gpio_is_valid(lp->slp_tr)) {
129                 gpio_set_value(lp->slp_tr, 1);
130                 usleep_range(lp->data->t_off_to_sleep,
131                              lp->data->t_off_to_sleep + 10);
132                 lp->sleep = true;
133         }
134 }
135
136 static inline void
137 at86rf230_awake(struct at86rf230_local *lp)
138 {
139         if (gpio_is_valid(lp->slp_tr)) {
140                 gpio_set_value(lp->slp_tr, 0);
141                 usleep_range(lp->data->t_sleep_to_off,
142                              lp->data->t_sleep_to_off + 100);
143                 lp->sleep = false;
144         }
145 }
146
147 static inline int
148 __at86rf230_write(struct at86rf230_local *lp,
149                   unsigned int addr, unsigned int data)
150 {
151         bool sleep = lp->sleep;
152         int ret;
153
154         /* awake for register setting if sleep */
155         if (sleep)
156                 at86rf230_awake(lp);
157
158         ret = regmap_write(lp->regmap, addr, data);
159
160         /* sleep again if was sleeping */
161         if (sleep)
162                 at86rf230_sleep(lp);
163
164         return ret;
165 }
166
167 static inline int
168 __at86rf230_read(struct at86rf230_local *lp,
169                  unsigned int addr, unsigned int *data)
170 {
171         bool sleep = lp->sleep;
172         int ret;
173
174         /* awake for register setting if sleep */
175         if (sleep)
176                 at86rf230_awake(lp);
177
178         ret = regmap_read(lp->regmap, addr, data);
179
180         /* sleep again if was sleeping */
181         if (sleep)
182                 at86rf230_sleep(lp);
183
184         return ret;
185 }
186
187 static inline int
188 at86rf230_read_subreg(struct at86rf230_local *lp,
189                       unsigned int addr, unsigned int mask,
190                       unsigned int shift, unsigned int *data)
191 {
192         int rc;
193
194         rc = __at86rf230_read(lp, addr, data);
195         if (!rc)
196                 *data = (*data & mask) >> shift;
197
198         return rc;
199 }
200
201 static inline int
202 at86rf230_write_subreg(struct at86rf230_local *lp,
203                        unsigned int addr, unsigned int mask,
204                        unsigned int shift, unsigned int data)
205 {
206         bool sleep = lp->sleep;
207         int ret;
208
209         /* awake for register setting if sleep */
210         if (sleep)
211                 at86rf230_awake(lp);
212
213         ret = regmap_update_bits(lp->regmap, addr, mask, data << shift);
214
215         /* sleep again if was sleeping */
216         if (sleep)
217                 at86rf230_sleep(lp);
218
219         return ret;
220 }
221
222 static inline void
223 at86rf230_slp_tr_rising_edge(struct at86rf230_local *lp)
224 {
225         gpio_set_value(lp->slp_tr, 1);
226         udelay(1);
227         gpio_set_value(lp->slp_tr, 0);
228 }
229
230 static bool
231 at86rf230_reg_writeable(struct device *dev, unsigned int reg)
232 {
233         switch (reg) {
234         case RG_TRX_STATE:
235         case RG_TRX_CTRL_0:
236         case RG_TRX_CTRL_1:
237         case RG_PHY_TX_PWR:
238         case RG_PHY_ED_LEVEL:
239         case RG_PHY_CC_CCA:
240         case RG_CCA_THRES:
241         case RG_RX_CTRL:
242         case RG_SFD_VALUE:
243         case RG_TRX_CTRL_2:
244         case RG_ANT_DIV:
245         case RG_IRQ_MASK:
246         case RG_VREG_CTRL:
247         case RG_BATMON:
248         case RG_XOSC_CTRL:
249         case RG_RX_SYN:
250         case RG_XAH_CTRL_1:
251         case RG_FTN_CTRL:
252         case RG_PLL_CF:
253         case RG_PLL_DCU:
254         case RG_SHORT_ADDR_0:
255         case RG_SHORT_ADDR_1:
256         case RG_PAN_ID_0:
257         case RG_PAN_ID_1:
258         case RG_IEEE_ADDR_0:
259         case RG_IEEE_ADDR_1:
260         case RG_IEEE_ADDR_2:
261         case RG_IEEE_ADDR_3:
262         case RG_IEEE_ADDR_4:
263         case RG_IEEE_ADDR_5:
264         case RG_IEEE_ADDR_6:
265         case RG_IEEE_ADDR_7:
266         case RG_XAH_CTRL_0:
267         case RG_CSMA_SEED_0:
268         case RG_CSMA_SEED_1:
269         case RG_CSMA_BE:
270                 return true;
271         default:
272                 return false;
273         }
274 }
275
276 static bool
277 at86rf230_reg_readable(struct device *dev, unsigned int reg)
278 {
279         bool rc;
280
281         /* all writeable are also readable */
282         rc = at86rf230_reg_writeable(dev, reg);
283         if (rc)
284                 return rc;
285
286         /* readonly regs */
287         switch (reg) {
288         case RG_TRX_STATUS:
289         case RG_PHY_RSSI:
290         case RG_IRQ_STATUS:
291         case RG_PART_NUM:
292         case RG_VERSION_NUM:
293         case RG_MAN_ID_1:
294         case RG_MAN_ID_0:
295                 return true;
296         default:
297                 return false;
298         }
299 }
300
301 static bool
302 at86rf230_reg_volatile(struct device *dev, unsigned int reg)
303 {
304         /* can be changed during runtime */
305         switch (reg) {
306         case RG_TRX_STATUS:
307         case RG_TRX_STATE:
308         case RG_PHY_RSSI:
309         case RG_PHY_ED_LEVEL:
310         case RG_IRQ_STATUS:
311         case RG_VREG_CTRL:
312         case RG_PLL_CF:
313         case RG_PLL_DCU:
314                 return true;
315         default:
316                 return false;
317         }
318 }
319
320 static bool
321 at86rf230_reg_precious(struct device *dev, unsigned int reg)
322 {
323         /* don't clear irq line on read */
324         switch (reg) {
325         case RG_IRQ_STATUS:
326                 return true;
327         default:
328                 return false;
329         }
330 }
331
332 static const struct regmap_config at86rf230_regmap_spi_config = {
333         .reg_bits = 8,
334         .val_bits = 8,
335         .write_flag_mask = CMD_REG | CMD_WRITE,
336         .read_flag_mask = CMD_REG,
337         .cache_type = REGCACHE_RBTREE,
338         .max_register = AT86RF2XX_NUMREGS,
339         .writeable_reg = at86rf230_reg_writeable,
340         .readable_reg = at86rf230_reg_readable,
341         .volatile_reg = at86rf230_reg_volatile,
342         .precious_reg = at86rf230_reg_precious,
343 };
344
345 static void
346 at86rf230_async_error_recover(void *context)
347 {
348         struct at86rf230_state_change *ctx = context;
349         struct at86rf230_local *lp = ctx->lp;
350
351         lp->is_tx = 0;
352         at86rf230_async_state_change(lp, ctx, STATE_RX_AACK_ON, NULL);
353         ieee802154_wake_queue(lp->hw);
354         if (ctx->free)
355                 kfree(ctx);
356 }
357
358 static inline void
359 at86rf230_async_error(struct at86rf230_local *lp,
360                       struct at86rf230_state_change *ctx, int rc)
361 {
362         dev_err(&lp->spi->dev, "spi_async error %d\n", rc);
363
364         at86rf230_async_state_change(lp, ctx, STATE_FORCE_TRX_OFF,
365                                      at86rf230_async_error_recover);
366 }
367
368 /* Generic function to get some register value in async mode */
369 static void
370 at86rf230_async_read_reg(struct at86rf230_local *lp, u8 reg,
371                          struct at86rf230_state_change *ctx,
372                          void (*complete)(void *context))
373 {
374         int rc;
375
376         u8 *tx_buf = ctx->buf;
377
378         tx_buf[0] = (reg & CMD_REG_MASK) | CMD_REG;
379         ctx->msg.complete = complete;
380         rc = spi_async(lp->spi, &ctx->msg);
381         if (rc)
382                 at86rf230_async_error(lp, ctx, rc);
383 }
384
385 static void
386 at86rf230_async_write_reg(struct at86rf230_local *lp, u8 reg, u8 val,
387                           struct at86rf230_state_change *ctx,
388                           void (*complete)(void *context))
389 {
390         int rc;
391
392         ctx->buf[0] = (reg & CMD_REG_MASK) | CMD_REG | CMD_WRITE;
393         ctx->buf[1] = val;
394         ctx->msg.complete = complete;
395         rc = spi_async(lp->spi, &ctx->msg);
396         if (rc)
397                 at86rf230_async_error(lp, ctx, rc);
398 }
399
400 static void
401 at86rf230_async_state_assert(void *context)
402 {
403         struct at86rf230_state_change *ctx = context;
404         struct at86rf230_local *lp = ctx->lp;
405         const u8 *buf = ctx->buf;
406         const u8 trx_state = buf[1] & TRX_STATE_MASK;
407
408         /* Assert state change */
409         if (trx_state != ctx->to_state) {
410                 /* Special handling if transceiver state is in
411                  * STATE_BUSY_RX_AACK and a SHR was detected.
412                  */
413                 if  (trx_state == STATE_BUSY_RX_AACK) {
414                         /* Undocumented race condition. If we send a state
415                          * change to STATE_RX_AACK_ON the transceiver could
416                          * change his state automatically to STATE_BUSY_RX_AACK
417                          * if a SHR was detected. This is not an error, but we
418                          * can't assert this.
419                          */
420                         if (ctx->to_state == STATE_RX_AACK_ON)
421                                 goto done;
422
423                         /* If we change to STATE_TX_ON without forcing and
424                          * transceiver state is STATE_BUSY_RX_AACK, we wait
425                          * 'tFrame + tPAck' receiving time. In this time the
426                          * PDU should be received. If the transceiver is still
427                          * in STATE_BUSY_RX_AACK, we run a force state change
428                          * to STATE_TX_ON. This is a timeout handling, if the
429                          * transceiver stucks in STATE_BUSY_RX_AACK.
430                          *
431                          * Additional we do several retries to try to get into
432                          * TX_ON state without forcing. If the retries are
433                          * higher or equal than AT86RF2XX_MAX_TX_RETRIES we
434                          * will do a force change.
435                          */
436                         if (ctx->to_state == STATE_TX_ON ||
437                             ctx->to_state == STATE_TRX_OFF) {
438                                 u8 state = ctx->to_state;
439
440                                 if (lp->tx_retry >= AT86RF2XX_MAX_TX_RETRIES)
441                                         state = STATE_FORCE_TRX_OFF;
442                                 lp->tx_retry++;
443
444                                 at86rf230_async_state_change(lp, ctx, state,
445                                                              ctx->complete);
446                                 return;
447                         }
448                 }
449
450                 dev_warn(&lp->spi->dev, "unexcept state change from 0x%02x to 0x%02x. Actual state: 0x%02x\n",
451                          ctx->from_state, ctx->to_state, trx_state);
452         }
453
454 done:
455         if (ctx->complete)
456                 ctx->complete(context);
457 }
458
459 static enum hrtimer_restart at86rf230_async_state_timer(struct hrtimer *timer)
460 {
461         struct at86rf230_state_change *ctx =
462                 container_of(timer, struct at86rf230_state_change, timer);
463         struct at86rf230_local *lp = ctx->lp;
464
465         at86rf230_async_read_reg(lp, RG_TRX_STATUS, ctx,
466                                  at86rf230_async_state_assert);
467
468         return HRTIMER_NORESTART;
469 }
470
471 /* Do state change timing delay. */
472 static void
473 at86rf230_async_state_delay(void *context)
474 {
475         struct at86rf230_state_change *ctx = context;
476         struct at86rf230_local *lp = ctx->lp;
477         struct at86rf2xx_chip_data *c = lp->data;
478         bool force = false;
479         ktime_t tim;
480
481         /* The force state changes are will show as normal states in the
482          * state status subregister. We change the to_state to the
483          * corresponding one and remember if it was a force change, this
484          * differs if we do a state change from STATE_BUSY_RX_AACK.
485          */
486         switch (ctx->to_state) {
487         case STATE_FORCE_TX_ON:
488                 ctx->to_state = STATE_TX_ON;
489                 force = true;
490                 break;
491         case STATE_FORCE_TRX_OFF:
492                 ctx->to_state = STATE_TRX_OFF;
493                 force = true;
494                 break;
495         default:
496                 break;
497         }
498
499         switch (ctx->from_state) {
500         case STATE_TRX_OFF:
501                 switch (ctx->to_state) {
502                 case STATE_RX_AACK_ON:
503                         tim = ktime_set(0, c->t_off_to_aack * NSEC_PER_USEC);
504                         /* state change from TRX_OFF to RX_AACK_ON to do a
505                          * calibration, we need to reset the timeout for the
506                          * next one.
507                          */
508                         lp->cal_timeout = jiffies + AT86RF2XX_CAL_LOOP_TIMEOUT;
509                         goto change;
510                 case STATE_TX_ARET_ON:
511                 case STATE_TX_ON:
512                         tim = ktime_set(0, c->t_off_to_tx_on * NSEC_PER_USEC);
513                         /* state change from TRX_OFF to TX_ON or ARET_ON to do
514                          * a calibration, we need to reset the timeout for the
515                          * next one.
516                          */
517                         lp->cal_timeout = jiffies + AT86RF2XX_CAL_LOOP_TIMEOUT;
518                         goto change;
519                 default:
520                         break;
521                 }
522                 break;
523         case STATE_BUSY_RX_AACK:
524                 switch (ctx->to_state) {
525                 case STATE_TRX_OFF:
526                 case STATE_TX_ON:
527                         /* Wait for worst case receiving time if we
528                          * didn't make a force change from BUSY_RX_AACK
529                          * to TX_ON or TRX_OFF.
530                          */
531                         if (!force) {
532                                 tim = ktime_set(0, (c->t_frame + c->t_p_ack) *
533                                                    NSEC_PER_USEC);
534                                 goto change;
535                         }
536                         break;
537                 default:
538                         break;
539                 }
540                 break;
541         /* Default value, means RESET state */
542         case STATE_P_ON:
543                 switch (ctx->to_state) {
544                 case STATE_TRX_OFF:
545                         tim = ktime_set(0, c->t_reset_to_off * NSEC_PER_USEC);
546                         goto change;
547                 default:
548                         break;
549                 }
550                 break;
551         default:
552                 break;
553         }
554
555         /* Default delay is 1us in the most cases */
556         udelay(1);
557         at86rf230_async_state_timer(&ctx->timer);
558         return;
559
560 change:
561         hrtimer_start(&ctx->timer, tim, HRTIMER_MODE_REL);
562 }
563
564 static void
565 at86rf230_async_state_change_start(void *context)
566 {
567         struct at86rf230_state_change *ctx = context;
568         struct at86rf230_local *lp = ctx->lp;
569         u8 *buf = ctx->buf;
570         const u8 trx_state = buf[1] & TRX_STATE_MASK;
571
572         /* Check for "possible" STATE_TRANSITION_IN_PROGRESS */
573         if (trx_state == STATE_TRANSITION_IN_PROGRESS) {
574                 udelay(1);
575                 at86rf230_async_read_reg(lp, RG_TRX_STATUS, ctx,
576                                          at86rf230_async_state_change_start);
577                 return;
578         }
579
580         /* Check if we already are in the state which we change in */
581         if (trx_state == ctx->to_state) {
582                 if (ctx->complete)
583                         ctx->complete(context);
584                 return;
585         }
586
587         /* Set current state to the context of state change */
588         ctx->from_state = trx_state;
589
590         /* Going into the next step for a state change which do a timing
591          * relevant delay.
592          */
593         at86rf230_async_write_reg(lp, RG_TRX_STATE, ctx->to_state, ctx,
594                                   at86rf230_async_state_delay);
595 }
596
597 static void
598 at86rf230_async_state_change(struct at86rf230_local *lp,
599                              struct at86rf230_state_change *ctx,
600                              const u8 state, void (*complete)(void *context))
601 {
602         /* Initialization for the state change context */
603         ctx->to_state = state;
604         ctx->complete = complete;
605         at86rf230_async_read_reg(lp, RG_TRX_STATUS, ctx,
606                                  at86rf230_async_state_change_start);
607 }
608
609 static void
610 at86rf230_sync_state_change_complete(void *context)
611 {
612         struct at86rf230_state_change *ctx = context;
613         struct at86rf230_local *lp = ctx->lp;
614
615         complete(&lp->state_complete);
616 }
617
618 /* This function do a sync framework above the async state change.
619  * Some callbacks of the IEEE 802.15.4 driver interface need to be
620  * handled synchronously.
621  */
622 static int
623 at86rf230_sync_state_change(struct at86rf230_local *lp, unsigned int state)
624 {
625         unsigned long rc;
626
627         at86rf230_async_state_change(lp, &lp->state, state,
628                                      at86rf230_sync_state_change_complete);
629
630         rc = wait_for_completion_timeout(&lp->state_complete,
631                                          msecs_to_jiffies(100));
632         if (!rc) {
633                 at86rf230_async_error(lp, &lp->state, -ETIMEDOUT);
634                 return -ETIMEDOUT;
635         }
636
637         return 0;
638 }
639
640 static void
641 at86rf230_tx_complete(void *context)
642 {
643         struct at86rf230_state_change *ctx = context;
644         struct at86rf230_local *lp = ctx->lp;
645
646         ieee802154_xmit_complete(lp->hw, lp->tx_skb, false);
647         kfree(ctx);
648 }
649
650 static void
651 at86rf230_tx_on(void *context)
652 {
653         struct at86rf230_state_change *ctx = context;
654         struct at86rf230_local *lp = ctx->lp;
655
656         at86rf230_async_state_change(lp, ctx, STATE_RX_AACK_ON,
657                                      at86rf230_tx_complete);
658 }
659
660 static void
661 at86rf230_tx_trac_check(void *context)
662 {
663         struct at86rf230_state_change *ctx = context;
664         struct at86rf230_local *lp = ctx->lp;
665
666         if (IS_ENABLED(CONFIG_IEEE802154_AT86RF230_DEBUGFS)) {
667                 u8 trac = TRAC_MASK(ctx->buf[1]);
668
669                 switch (trac) {
670                 case TRAC_SUCCESS:
671                         lp->trac.success++;
672                         break;
673                 case TRAC_SUCCESS_DATA_PENDING:
674                         lp->trac.success_data_pending++;
675                         break;
676                 case TRAC_CHANNEL_ACCESS_FAILURE:
677                         lp->trac.channel_access_failure++;
678                         break;
679                 case TRAC_NO_ACK:
680                         lp->trac.no_ack++;
681                         break;
682                 case TRAC_INVALID:
683                         lp->trac.invalid++;
684                         break;
685                 default:
686                         WARN_ONCE(1, "received tx trac status %d\n", trac);
687                         break;
688                 }
689         }
690
691         at86rf230_async_state_change(lp, ctx, STATE_TX_ON, at86rf230_tx_on);
692 }
693
694 static void
695 at86rf230_rx_read_frame_complete(void *context)
696 {
697         struct at86rf230_state_change *ctx = context;
698         struct at86rf230_local *lp = ctx->lp;
699         const u8 *buf = ctx->buf;
700         struct sk_buff *skb;
701         u8 len, lqi;
702
703         len = buf[1];
704         if (!ieee802154_is_valid_psdu_len(len)) {
705                 dev_vdbg(&lp->spi->dev, "corrupted frame received\n");
706                 len = IEEE802154_MTU;
707         }
708         lqi = buf[2 + len];
709
710         skb = dev_alloc_skb(IEEE802154_MTU);
711         if (!skb) {
712                 dev_vdbg(&lp->spi->dev, "failed to allocate sk_buff\n");
713                 kfree(ctx);
714                 return;
715         }
716
717         memcpy(skb_put(skb, len), buf + 2, len);
718         ieee802154_rx_irqsafe(lp->hw, skb, lqi);
719         kfree(ctx);
720 }
721
722 static void
723 at86rf230_rx_trac_check(void *context)
724 {
725         struct at86rf230_state_change *ctx = context;
726         struct at86rf230_local *lp = ctx->lp;
727         u8 *buf = ctx->buf;
728         int rc;
729
730         if (IS_ENABLED(CONFIG_IEEE802154_AT86RF230_DEBUGFS)) {
731                 u8 trac = TRAC_MASK(buf[1]);
732
733                 switch (trac) {
734                 case TRAC_SUCCESS:
735                         lp->trac.success++;
736                         break;
737                 case TRAC_SUCCESS_WAIT_FOR_ACK:
738                         lp->trac.success_wait_for_ack++;
739                         break;
740                 case TRAC_INVALID:
741                         lp->trac.invalid++;
742                         break;
743                 default:
744                         WARN_ONCE(1, "received rx trac status %d\n", trac);
745                         break;
746                 }
747         }
748
749         buf[0] = CMD_FB;
750         ctx->trx.len = AT86RF2XX_MAX_BUF;
751         ctx->msg.complete = at86rf230_rx_read_frame_complete;
752         rc = spi_async(lp->spi, &ctx->msg);
753         if (rc) {
754                 ctx->trx.len = 2;
755                 at86rf230_async_error(lp, ctx, rc);
756         }
757 }
758
759 static void
760 at86rf230_irq_trx_end(void *context)
761 {
762         struct at86rf230_state_change *ctx = context;
763         struct at86rf230_local *lp = ctx->lp;
764
765         if (lp->is_tx) {
766                 lp->is_tx = 0;
767                 at86rf230_async_read_reg(lp, RG_TRX_STATE, ctx,
768                                          at86rf230_tx_trac_check);
769         } else {
770                 at86rf230_async_read_reg(lp, RG_TRX_STATE, ctx,
771                                          at86rf230_rx_trac_check);
772         }
773 }
774
775 static void
776 at86rf230_irq_status(void *context)
777 {
778         struct at86rf230_state_change *ctx = context;
779         struct at86rf230_local *lp = ctx->lp;
780         const u8 *buf = ctx->buf;
781         u8 irq = buf[1];
782
783         enable_irq(lp->spi->irq);
784
785         if (irq & IRQ_TRX_END) {
786                 at86rf230_irq_trx_end(ctx);
787         } else {
788                 dev_err(&lp->spi->dev, "not supported irq %02x received\n",
789                         irq);
790                 kfree(ctx);
791         }
792 }
793
794 static void
795 at86rf230_setup_spi_messages(struct at86rf230_local *lp,
796                              struct at86rf230_state_change *state)
797 {
798         state->lp = lp;
799         state->irq = lp->spi->irq;
800         spi_message_init(&state->msg);
801         state->msg.context = state;
802         state->trx.len = 2;
803         state->trx.tx_buf = state->buf;
804         state->trx.rx_buf = state->buf;
805         spi_message_add_tail(&state->trx, &state->msg);
806         hrtimer_init(&state->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
807         state->timer.function = at86rf230_async_state_timer;
808 }
809
810 static irqreturn_t at86rf230_isr(int irq, void *data)
811 {
812         struct at86rf230_local *lp = data;
813         struct at86rf230_state_change *ctx;
814         int rc;
815
816         disable_irq_nosync(irq);
817
818         ctx = kzalloc(sizeof(*ctx), GFP_ATOMIC);
819         if (!ctx) {
820                 enable_irq(irq);
821                 return IRQ_NONE;
822         }
823
824         at86rf230_setup_spi_messages(lp, ctx);
825         /* tell on error handling to free ctx */
826         ctx->free = true;
827
828         ctx->buf[0] = (RG_IRQ_STATUS & CMD_REG_MASK) | CMD_REG;
829         ctx->msg.complete = at86rf230_irq_status;
830         rc = spi_async(lp->spi, &ctx->msg);
831         if (rc) {
832                 at86rf230_async_error(lp, ctx, rc);
833                 enable_irq(irq);
834                 return IRQ_NONE;
835         }
836
837         return IRQ_HANDLED;
838 }
839
840 static void
841 at86rf230_write_frame_complete(void *context)
842 {
843         struct at86rf230_state_change *ctx = context;
844         struct at86rf230_local *lp = ctx->lp;
845
846         ctx->trx.len = 2;
847
848         if (gpio_is_valid(lp->slp_tr))
849                 at86rf230_slp_tr_rising_edge(lp);
850         else
851                 at86rf230_async_write_reg(lp, RG_TRX_STATE, STATE_BUSY_TX, ctx,
852                                           NULL);
853 }
854
855 static void
856 at86rf230_write_frame(void *context)
857 {
858         struct at86rf230_state_change *ctx = context;
859         struct at86rf230_local *lp = ctx->lp;
860         struct sk_buff *skb = lp->tx_skb;
861         u8 *buf = ctx->buf;
862         int rc;
863
864         lp->is_tx = 1;
865
866         buf[0] = CMD_FB | CMD_WRITE;
867         buf[1] = skb->len + 2;
868         memcpy(buf + 2, skb->data, skb->len);
869         ctx->trx.len = skb->len + 2;
870         ctx->msg.complete = at86rf230_write_frame_complete;
871         rc = spi_async(lp->spi, &ctx->msg);
872         if (rc) {
873                 ctx->trx.len = 2;
874                 at86rf230_async_error(lp, ctx, rc);
875         }
876 }
877
878 static void
879 at86rf230_xmit_tx_on(void *context)
880 {
881         struct at86rf230_state_change *ctx = context;
882         struct at86rf230_local *lp = ctx->lp;
883
884         at86rf230_async_state_change(lp, ctx, STATE_TX_ARET_ON,
885                                      at86rf230_write_frame);
886 }
887
888 static void
889 at86rf230_xmit_start(void *context)
890 {
891         struct at86rf230_state_change *ctx = context;
892         struct at86rf230_local *lp = ctx->lp;
893
894         /* check if we change from off state */
895         if (lp->is_tx_from_off) {
896                 lp->is_tx_from_off = false;
897                 at86rf230_async_state_change(lp, ctx, STATE_TX_ARET_ON,
898                                              at86rf230_write_frame);
899         } else {
900                 at86rf230_async_state_change(lp, ctx, STATE_TX_ON,
901                                              at86rf230_xmit_tx_on);
902         }
903 }
904
905 static int
906 at86rf230_xmit(struct ieee802154_hw *hw, struct sk_buff *skb)
907 {
908         struct at86rf230_local *lp = hw->priv;
909         struct at86rf230_state_change *ctx = &lp->tx;
910
911         lp->tx_skb = skb;
912         lp->tx_retry = 0;
913
914         /* After 5 minutes in PLL and the same frequency we run again the
915          * calibration loops which is recommended by at86rf2xx datasheets.
916          *
917          * The calibration is initiate by a state change from TRX_OFF
918          * to TX_ON, the lp->cal_timeout should be reinit by state_delay
919          * function then to start in the next 5 minutes.
920          */
921         if (time_is_before_jiffies(lp->cal_timeout)) {
922                 lp->is_tx_from_off = true;
923                 at86rf230_async_state_change(lp, ctx, STATE_TRX_OFF,
924                                              at86rf230_xmit_start);
925         } else {
926                 at86rf230_xmit_start(ctx);
927         }
928
929         return 0;
930 }
931
932 static int
933 at86rf230_ed(struct ieee802154_hw *hw, u8 *level)
934 {
935         WARN_ON(!level);
936         *level = 0xbe;
937         return 0;
938 }
939
940 static int
941 at86rf230_start(struct ieee802154_hw *hw)
942 {
943         struct at86rf230_local *lp = hw->priv;
944
945         /* reset trac stats on start */
946         if (IS_ENABLED(CONFIG_IEEE802154_AT86RF230_DEBUGFS))
947                 memset(&lp->trac, 0, sizeof(struct at86rf230_trac));
948
949         at86rf230_awake(lp);
950         enable_irq(lp->spi->irq);
951
952         return at86rf230_sync_state_change(lp, STATE_RX_AACK_ON);
953 }
954
955 static void
956 at86rf230_stop(struct ieee802154_hw *hw)
957 {
958         struct at86rf230_local *lp = hw->priv;
959         u8 csma_seed[2];
960
961         at86rf230_sync_state_change(lp, STATE_FORCE_TRX_OFF);
962
963         disable_irq(lp->spi->irq);
964
965         /* It's recommended to set random new csma_seeds before sleep state.
966          * Makes only sense in the stop callback, not doing this inside of
967          * at86rf230_sleep, this is also used when we don't transmit afterwards
968          * when calling start callback again.
969          */
970         get_random_bytes(csma_seed, ARRAY_SIZE(csma_seed));
971         at86rf230_write_subreg(lp, SR_CSMA_SEED_0, csma_seed[0]);
972         at86rf230_write_subreg(lp, SR_CSMA_SEED_1, csma_seed[1]);
973
974         at86rf230_sleep(lp);
975 }
976
977 static int
978 at86rf23x_set_channel(struct at86rf230_local *lp, u8 page, u8 channel)
979 {
980         return at86rf230_write_subreg(lp, SR_CHANNEL, channel);
981 }
982
983 #define AT86RF2XX_MAX_ED_LEVELS 0xF
984 static const s32 at86rf23x_ed_levels[AT86RF2XX_MAX_ED_LEVELS + 1] = {
985         -9100, -8900, -8700, -8500, -8300, -8100, -7900, -7700, -7500, -7300,
986         -7100, -6900, -6700, -6500, -6300, -6100,
987 };
988
989 static const s32 at86rf212_ed_levels_100[AT86RF2XX_MAX_ED_LEVELS + 1] = {
990         -10000, -9800, -9600, -9400, -9200, -9000, -8800, -8600, -8400, -8200,
991         -8000, -7800, -7600, -7400, -7200, -7000,
992 };
993
994 static const s32 at86rf212_ed_levels_98[AT86RF2XX_MAX_ED_LEVELS + 1] = {
995         -9800, -9600, -9400, -9200, -9000, -8800, -8600, -8400, -8200, -8000,
996         -7800, -7600, -7400, -7200, -7000, -6800,
997 };
998
999 static inline int
1000 at86rf212_update_cca_ed_level(struct at86rf230_local *lp, int rssi_base_val)
1001 {
1002         unsigned int cca_ed_thres;
1003         int rc;
1004
1005         rc = at86rf230_read_subreg(lp, SR_CCA_ED_THRES, &cca_ed_thres);
1006         if (rc < 0)
1007                 return rc;
1008
1009         switch (rssi_base_val) {
1010         case -98:
1011                 lp->hw->phy->supported.cca_ed_levels = at86rf212_ed_levels_98;
1012                 lp->hw->phy->supported.cca_ed_levels_size = ARRAY_SIZE(at86rf212_ed_levels_98);
1013                 lp->hw->phy->cca_ed_level = at86rf212_ed_levels_98[cca_ed_thres];
1014                 break;
1015         case -100:
1016                 lp->hw->phy->supported.cca_ed_levels = at86rf212_ed_levels_100;
1017                 lp->hw->phy->supported.cca_ed_levels_size = ARRAY_SIZE(at86rf212_ed_levels_100);
1018                 lp->hw->phy->cca_ed_level = at86rf212_ed_levels_100[cca_ed_thres];
1019                 break;
1020         default:
1021                 WARN_ON(1);
1022         }
1023
1024         return 0;
1025 }
1026
1027 static int
1028 at86rf212_set_channel(struct at86rf230_local *lp, u8 page, u8 channel)
1029 {
1030         int rc;
1031
1032         if (channel == 0)
1033                 rc = at86rf230_write_subreg(lp, SR_SUB_MODE, 0);
1034         else
1035                 rc = at86rf230_write_subreg(lp, SR_SUB_MODE, 1);
1036         if (rc < 0)
1037                 return rc;
1038
1039         if (page == 0) {
1040                 rc = at86rf230_write_subreg(lp, SR_BPSK_QPSK, 0);
1041                 lp->data->rssi_base_val = -100;
1042         } else {
1043                 rc = at86rf230_write_subreg(lp, SR_BPSK_QPSK, 1);
1044                 lp->data->rssi_base_val = -98;
1045         }
1046         if (rc < 0)
1047                 return rc;
1048
1049         rc = at86rf212_update_cca_ed_level(lp, lp->data->rssi_base_val);
1050         if (rc < 0)
1051                 return rc;
1052
1053         /* This sets the symbol_duration according frequency on the 212.
1054          * TODO move this handling while set channel and page in cfg802154.
1055          * We can do that, this timings are according 802.15.4 standard.
1056          * If we do that in cfg802154, this is a more generic calculation.
1057          *
1058          * This should also protected from ifs_timer. Means cancel timer and
1059          * init with a new value. For now, this is okay.
1060          */
1061         if (channel == 0) {
1062                 if (page == 0) {
1063                         /* SUB:0 and BPSK:0 -> BPSK-20 */
1064                         lp->hw->phy->symbol_duration = 50;
1065                 } else {
1066                         /* SUB:1 and BPSK:0 -> BPSK-40 */
1067                         lp->hw->phy->symbol_duration = 25;
1068                 }
1069         } else {
1070                 if (page == 0)
1071                         /* SUB:0 and BPSK:1 -> OQPSK-100/200/400 */
1072                         lp->hw->phy->symbol_duration = 40;
1073                 else
1074                         /* SUB:1 and BPSK:1 -> OQPSK-250/500/1000 */
1075                         lp->hw->phy->symbol_duration = 16;
1076         }
1077
1078         lp->hw->phy->lifs_period = IEEE802154_LIFS_PERIOD *
1079                                    lp->hw->phy->symbol_duration;
1080         lp->hw->phy->sifs_period = IEEE802154_SIFS_PERIOD *
1081                                    lp->hw->phy->symbol_duration;
1082
1083         return at86rf230_write_subreg(lp, SR_CHANNEL, channel);
1084 }
1085
1086 static int
1087 at86rf230_channel(struct ieee802154_hw *hw, u8 page, u8 channel)
1088 {
1089         struct at86rf230_local *lp = hw->priv;
1090         int rc;
1091
1092         rc = lp->data->set_channel(lp, page, channel);
1093         /* Wait for PLL */
1094         usleep_range(lp->data->t_channel_switch,
1095                      lp->data->t_channel_switch + 10);
1096
1097         lp->cal_timeout = jiffies + AT86RF2XX_CAL_LOOP_TIMEOUT;
1098         return rc;
1099 }
1100
1101 static int
1102 at86rf230_set_hw_addr_filt(struct ieee802154_hw *hw,
1103                            struct ieee802154_hw_addr_filt *filt,
1104                            unsigned long changed)
1105 {
1106         struct at86rf230_local *lp = hw->priv;
1107
1108         if (changed & IEEE802154_AFILT_SADDR_CHANGED) {
1109                 u16 addr = le16_to_cpu(filt->short_addr);
1110
1111                 dev_vdbg(&lp->spi->dev, "%s called for saddr\n", __func__);
1112                 __at86rf230_write(lp, RG_SHORT_ADDR_0, addr);
1113                 __at86rf230_write(lp, RG_SHORT_ADDR_1, addr >> 8);
1114         }
1115
1116         if (changed & IEEE802154_AFILT_PANID_CHANGED) {
1117                 u16 pan = le16_to_cpu(filt->pan_id);
1118
1119                 dev_vdbg(&lp->spi->dev, "%s called for pan id\n", __func__);
1120                 __at86rf230_write(lp, RG_PAN_ID_0, pan);
1121                 __at86rf230_write(lp, RG_PAN_ID_1, pan >> 8);
1122         }
1123
1124         if (changed & IEEE802154_AFILT_IEEEADDR_CHANGED) {
1125                 u8 i, addr[8];
1126
1127                 memcpy(addr, &filt->ieee_addr, 8);
1128                 dev_vdbg(&lp->spi->dev, "%s called for IEEE addr\n", __func__);
1129                 for (i = 0; i < 8; i++)
1130                         __at86rf230_write(lp, RG_IEEE_ADDR_0 + i, addr[i]);
1131         }
1132
1133         if (changed & IEEE802154_AFILT_PANC_CHANGED) {
1134                 dev_vdbg(&lp->spi->dev, "%s called for panc change\n", __func__);
1135                 if (filt->pan_coord)
1136                         at86rf230_write_subreg(lp, SR_AACK_I_AM_COORD, 1);
1137                 else
1138                         at86rf230_write_subreg(lp, SR_AACK_I_AM_COORD, 0);
1139         }
1140
1141         return 0;
1142 }
1143
1144 #define AT86RF23X_MAX_TX_POWERS 0xF
1145 static const s32 at86rf233_powers[AT86RF23X_MAX_TX_POWERS + 1] = {
1146         400, 370, 340, 300, 250, 200, 100, 0, -100, -200, -300, -400, -600,
1147         -800, -1200, -1700,
1148 };
1149
1150 static const s32 at86rf231_powers[AT86RF23X_MAX_TX_POWERS + 1] = {
1151         300, 280, 230, 180, 130, 70, 0, -100, -200, -300, -400, -500, -700,
1152         -900, -1200, -1700,
1153 };
1154
1155 #define AT86RF212_MAX_TX_POWERS 0x1F
1156 static const s32 at86rf212_powers[AT86RF212_MAX_TX_POWERS + 1] = {
1157         500, 400, 300, 200, 100, 0, -100, -200, -300, -400, -500, -600, -700,
1158         -800, -900, -1000, -1100, -1200, -1300, -1400, -1500, -1600, -1700,
1159         -1800, -1900, -2000, -2100, -2200, -2300, -2400, -2500, -2600,
1160 };
1161
1162 static int
1163 at86rf23x_set_txpower(struct at86rf230_local *lp, s32 mbm)
1164 {
1165         u32 i;
1166
1167         for (i = 0; i < lp->hw->phy->supported.tx_powers_size; i++) {
1168                 if (lp->hw->phy->supported.tx_powers[i] == mbm)
1169                         return at86rf230_write_subreg(lp, SR_TX_PWR_23X, i);
1170         }
1171
1172         return -EINVAL;
1173 }
1174
1175 static int
1176 at86rf212_set_txpower(struct at86rf230_local *lp, s32 mbm)
1177 {
1178         u32 i;
1179
1180         for (i = 0; i < lp->hw->phy->supported.tx_powers_size; i++) {
1181                 if (lp->hw->phy->supported.tx_powers[i] == mbm)
1182                         return at86rf230_write_subreg(lp, SR_TX_PWR_212, i);
1183         }
1184
1185         return -EINVAL;
1186 }
1187
1188 static int
1189 at86rf230_set_txpower(struct ieee802154_hw *hw, s32 mbm)
1190 {
1191         struct at86rf230_local *lp = hw->priv;
1192
1193         return lp->data->set_txpower(lp, mbm);
1194 }
1195
1196 static int
1197 at86rf230_set_lbt(struct ieee802154_hw *hw, bool on)
1198 {
1199         struct at86rf230_local *lp = hw->priv;
1200
1201         return at86rf230_write_subreg(lp, SR_CSMA_LBT_MODE, on);
1202 }
1203
1204 static int
1205 at86rf230_set_cca_mode(struct ieee802154_hw *hw,
1206                        const struct wpan_phy_cca *cca)
1207 {
1208         struct at86rf230_local *lp = hw->priv;
1209         u8 val;
1210
1211         /* mapping 802.15.4 to driver spec */
1212         switch (cca->mode) {
1213         case NL802154_CCA_ENERGY:
1214                 val = 1;
1215                 break;
1216         case NL802154_CCA_CARRIER:
1217                 val = 2;
1218                 break;
1219         case NL802154_CCA_ENERGY_CARRIER:
1220                 switch (cca->opt) {
1221                 case NL802154_CCA_OPT_ENERGY_CARRIER_AND:
1222                         val = 3;
1223                         break;
1224                 case NL802154_CCA_OPT_ENERGY_CARRIER_OR:
1225                         val = 0;
1226                         break;
1227                 default:
1228                         return -EINVAL;
1229                 }
1230                 break;
1231         default:
1232                 return -EINVAL;
1233         }
1234
1235         return at86rf230_write_subreg(lp, SR_CCA_MODE, val);
1236 }
1237
1238 static int
1239 at86rf230_set_cca_ed_level(struct ieee802154_hw *hw, s32 mbm)
1240 {
1241         struct at86rf230_local *lp = hw->priv;
1242         u32 i;
1243
1244         for (i = 0; i < hw->phy->supported.cca_ed_levels_size; i++) {
1245                 if (hw->phy->supported.cca_ed_levels[i] == mbm)
1246                         return at86rf230_write_subreg(lp, SR_CCA_ED_THRES, i);
1247         }
1248
1249         return -EINVAL;
1250 }
1251
1252 static int
1253 at86rf230_set_csma_params(struct ieee802154_hw *hw, u8 min_be, u8 max_be,
1254                           u8 retries)
1255 {
1256         struct at86rf230_local *lp = hw->priv;
1257         int rc;
1258
1259         rc = at86rf230_write_subreg(lp, SR_MIN_BE, min_be);
1260         if (rc)
1261                 return rc;
1262
1263         rc = at86rf230_write_subreg(lp, SR_MAX_BE, max_be);
1264         if (rc)
1265                 return rc;
1266
1267         return at86rf230_write_subreg(lp, SR_MAX_CSMA_RETRIES, retries);
1268 }
1269
1270 static int
1271 at86rf230_set_frame_retries(struct ieee802154_hw *hw, s8 retries)
1272 {
1273         struct at86rf230_local *lp = hw->priv;
1274
1275         return at86rf230_write_subreg(lp, SR_MAX_FRAME_RETRIES, retries);
1276 }
1277
1278 static int
1279 at86rf230_set_promiscuous_mode(struct ieee802154_hw *hw, const bool on)
1280 {
1281         struct at86rf230_local *lp = hw->priv;
1282         int rc;
1283
1284         if (on) {
1285                 rc = at86rf230_write_subreg(lp, SR_AACK_DIS_ACK, 1);
1286                 if (rc < 0)
1287                         return rc;
1288
1289                 rc = at86rf230_write_subreg(lp, SR_AACK_PROM_MODE, 1);
1290                 if (rc < 0)
1291                         return rc;
1292         } else {
1293                 rc = at86rf230_write_subreg(lp, SR_AACK_PROM_MODE, 0);
1294                 if (rc < 0)
1295                         return rc;
1296
1297                 rc = at86rf230_write_subreg(lp, SR_AACK_DIS_ACK, 0);
1298                 if (rc < 0)
1299                         return rc;
1300         }
1301
1302         return 0;
1303 }
1304
1305 static const struct ieee802154_ops at86rf230_ops = {
1306         .owner = THIS_MODULE,
1307         .xmit_async = at86rf230_xmit,
1308         .ed = at86rf230_ed,
1309         .set_channel = at86rf230_channel,
1310         .start = at86rf230_start,
1311         .stop = at86rf230_stop,
1312         .set_hw_addr_filt = at86rf230_set_hw_addr_filt,
1313         .set_txpower = at86rf230_set_txpower,
1314         .set_lbt = at86rf230_set_lbt,
1315         .set_cca_mode = at86rf230_set_cca_mode,
1316         .set_cca_ed_level = at86rf230_set_cca_ed_level,
1317         .set_csma_params = at86rf230_set_csma_params,
1318         .set_frame_retries = at86rf230_set_frame_retries,
1319         .set_promiscuous_mode = at86rf230_set_promiscuous_mode,
1320 };
1321
1322 static struct at86rf2xx_chip_data at86rf233_data = {
1323         .t_sleep_cycle = 330,
1324         .t_channel_switch = 11,
1325         .t_reset_to_off = 26,
1326         .t_off_to_aack = 80,
1327         .t_off_to_tx_on = 80,
1328         .t_off_to_sleep = 35,
1329         .t_sleep_to_off = 210,
1330         .t_frame = 4096,
1331         .t_p_ack = 545,
1332         .rssi_base_val = -91,
1333         .set_channel = at86rf23x_set_channel,
1334         .set_txpower = at86rf23x_set_txpower,
1335 };
1336
1337 static struct at86rf2xx_chip_data at86rf231_data = {
1338         .t_sleep_cycle = 330,
1339         .t_channel_switch = 24,
1340         .t_reset_to_off = 37,
1341         .t_off_to_aack = 110,
1342         .t_off_to_tx_on = 110,
1343         .t_off_to_sleep = 35,
1344         .t_sleep_to_off = 380,
1345         .t_frame = 4096,
1346         .t_p_ack = 545,
1347         .rssi_base_val = -91,
1348         .set_channel = at86rf23x_set_channel,
1349         .set_txpower = at86rf23x_set_txpower,
1350 };
1351
1352 static struct at86rf2xx_chip_data at86rf212_data = {
1353         .t_sleep_cycle = 330,
1354         .t_channel_switch = 11,
1355         .t_reset_to_off = 26,
1356         .t_off_to_aack = 200,
1357         .t_off_to_tx_on = 200,
1358         .t_off_to_sleep = 35,
1359         .t_sleep_to_off = 380,
1360         .t_frame = 4096,
1361         .t_p_ack = 545,
1362         .rssi_base_val = -100,
1363         .set_channel = at86rf212_set_channel,
1364         .set_txpower = at86rf212_set_txpower,
1365 };
1366
1367 static int at86rf230_hw_init(struct at86rf230_local *lp, u8 xtal_trim)
1368 {
1369         int rc, irq_type, irq_pol = IRQ_ACTIVE_HIGH;
1370         unsigned int dvdd;
1371         u8 csma_seed[2];
1372
1373         rc = at86rf230_sync_state_change(lp, STATE_FORCE_TRX_OFF);
1374         if (rc)
1375                 return rc;
1376
1377         irq_type = irq_get_trigger_type(lp->spi->irq);
1378         if (irq_type == IRQ_TYPE_EDGE_FALLING ||
1379             irq_type == IRQ_TYPE_LEVEL_LOW)
1380                 irq_pol = IRQ_ACTIVE_LOW;
1381
1382         rc = at86rf230_write_subreg(lp, SR_IRQ_POLARITY, irq_pol);
1383         if (rc)
1384                 return rc;
1385
1386         rc = at86rf230_write_subreg(lp, SR_RX_SAFE_MODE, 1);
1387         if (rc)
1388                 return rc;
1389
1390         rc = at86rf230_write_subreg(lp, SR_IRQ_MASK, IRQ_TRX_END);
1391         if (rc)
1392                 return rc;
1393
1394         /* reset values differs in at86rf231 and at86rf233 */
1395         rc = at86rf230_write_subreg(lp, SR_IRQ_MASK_MODE, 0);
1396         if (rc)
1397                 return rc;
1398
1399         get_random_bytes(csma_seed, ARRAY_SIZE(csma_seed));
1400         rc = at86rf230_write_subreg(lp, SR_CSMA_SEED_0, csma_seed[0]);
1401         if (rc)
1402                 return rc;
1403         rc = at86rf230_write_subreg(lp, SR_CSMA_SEED_1, csma_seed[1]);
1404         if (rc)
1405                 return rc;
1406
1407         /* CLKM changes are applied immediately */
1408         rc = at86rf230_write_subreg(lp, SR_CLKM_SHA_SEL, 0x00);
1409         if (rc)
1410                 return rc;
1411
1412         /* Turn CLKM Off */
1413         rc = at86rf230_write_subreg(lp, SR_CLKM_CTRL, 0x00);
1414         if (rc)
1415                 return rc;
1416         /* Wait the next SLEEP cycle */
1417         usleep_range(lp->data->t_sleep_cycle,
1418                      lp->data->t_sleep_cycle + 100);
1419
1420         /* xtal_trim value is calculated by:
1421          * CL = 0.5 * (CX + CTRIM + CPAR)
1422          *
1423          * whereas:
1424          * CL = capacitor of used crystal
1425          * CX = connected capacitors at xtal pins
1426          * CPAR = in all at86rf2xx datasheets this is a constant value 3 pF,
1427          *        but this is different on each board setup. You need to fine
1428          *        tuning this value via CTRIM.
1429          * CTRIM = variable capacitor setting. Resolution is 0.3 pF range is
1430          *         0 pF upto 4.5 pF.
1431          *
1432          * Examples:
1433          * atben transceiver:
1434          *
1435          * CL = 8 pF
1436          * CX = 12 pF
1437          * CPAR = 3 pF (We assume the magic constant from datasheet)
1438          * CTRIM = 0.9 pF
1439          *
1440          * (12+0.9+3)/2 = 7.95 which is nearly at 8 pF
1441          *
1442          * xtal_trim = 0x3
1443          *
1444          * openlabs transceiver:
1445          *
1446          * CL = 16 pF
1447          * CX = 22 pF
1448          * CPAR = 3 pF (We assume the magic constant from datasheet)
1449          * CTRIM = 4.5 pF
1450          *
1451          * (22+4.5+3)/2 = 14.75 which is the nearest value to 16 pF
1452          *
1453          * xtal_trim = 0xf
1454          */
1455         rc = at86rf230_write_subreg(lp, SR_XTAL_TRIM, xtal_trim);
1456         if (rc)
1457                 return rc;
1458
1459         rc = at86rf230_read_subreg(lp, SR_DVDD_OK, &dvdd);
1460         if (rc)
1461                 return rc;
1462         if (!dvdd) {
1463                 dev_err(&lp->spi->dev, "DVDD error\n");
1464                 return -EINVAL;
1465         }
1466
1467         /* Force setting slotted operation bit to 0. Sometimes the atben
1468          * sets this bit and I don't know why. We set this always force
1469          * to zero while probing.
1470          */
1471         return at86rf230_write_subreg(lp, SR_SLOTTED_OPERATION, 0);
1472 }
1473
1474 static int
1475 at86rf230_get_pdata(struct spi_device *spi, int *rstn, int *slp_tr,
1476                     u8 *xtal_trim)
1477 {
1478         struct at86rf230_platform_data *pdata = spi->dev.platform_data;
1479         int ret;
1480
1481         if (!IS_ENABLED(CONFIG_OF) || !spi->dev.of_node) {
1482                 if (!pdata)
1483                         return -ENOENT;
1484
1485                 *rstn = pdata->rstn;
1486                 *slp_tr = pdata->slp_tr;
1487                 *xtal_trim = pdata->xtal_trim;
1488                 return 0;
1489         }
1490
1491         *rstn = of_get_named_gpio(spi->dev.of_node, "reset-gpio", 0);
1492         *slp_tr = of_get_named_gpio(spi->dev.of_node, "sleep-gpio", 0);
1493         ret = of_property_read_u8(spi->dev.of_node, "xtal-trim", xtal_trim);
1494         if (ret < 0 && ret != -EINVAL)
1495                 return ret;
1496
1497         return 0;
1498 }
1499
1500 static int
1501 at86rf230_detect_device(struct at86rf230_local *lp)
1502 {
1503         unsigned int part, version, val;
1504         u16 man_id = 0;
1505         const char *chip;
1506         int rc;
1507
1508         rc = __at86rf230_read(lp, RG_MAN_ID_0, &val);
1509         if (rc)
1510                 return rc;
1511         man_id |= val;
1512
1513         rc = __at86rf230_read(lp, RG_MAN_ID_1, &val);
1514         if (rc)
1515                 return rc;
1516         man_id |= (val << 8);
1517
1518         rc = __at86rf230_read(lp, RG_PART_NUM, &part);
1519         if (rc)
1520                 return rc;
1521
1522         rc = __at86rf230_read(lp, RG_VERSION_NUM, &version);
1523         if (rc)
1524                 return rc;
1525
1526         if (man_id != 0x001f) {
1527                 dev_err(&lp->spi->dev, "Non-Atmel dev found (MAN_ID %02x %02x)\n",
1528                         man_id >> 8, man_id & 0xFF);
1529                 return -EINVAL;
1530         }
1531
1532         lp->hw->flags = IEEE802154_HW_TX_OMIT_CKSUM |
1533                         IEEE802154_HW_CSMA_PARAMS |
1534                         IEEE802154_HW_FRAME_RETRIES | IEEE802154_HW_AFILT |
1535                         IEEE802154_HW_PROMISCUOUS;
1536
1537         lp->hw->phy->flags = WPAN_PHY_FLAG_TXPOWER |
1538                              WPAN_PHY_FLAG_CCA_ED_LEVEL |
1539                              WPAN_PHY_FLAG_CCA_MODE;
1540
1541         lp->hw->phy->supported.cca_modes = BIT(NL802154_CCA_ENERGY) |
1542                 BIT(NL802154_CCA_CARRIER) | BIT(NL802154_CCA_ENERGY_CARRIER);
1543         lp->hw->phy->supported.cca_opts = BIT(NL802154_CCA_OPT_ENERGY_CARRIER_AND) |
1544                 BIT(NL802154_CCA_OPT_ENERGY_CARRIER_OR);
1545
1546         lp->hw->phy->supported.cca_ed_levels = at86rf23x_ed_levels;
1547         lp->hw->phy->supported.cca_ed_levels_size = ARRAY_SIZE(at86rf23x_ed_levels);
1548
1549         lp->hw->phy->cca.mode = NL802154_CCA_ENERGY;
1550
1551         switch (part) {
1552         case 2:
1553                 chip = "at86rf230";
1554                 rc = -ENOTSUPP;
1555                 goto not_supp;
1556         case 3:
1557                 chip = "at86rf231";
1558                 lp->data = &at86rf231_data;
1559                 lp->hw->phy->supported.channels[0] = 0x7FFF800;
1560                 lp->hw->phy->current_channel = 11;
1561                 lp->hw->phy->symbol_duration = 16;
1562                 lp->hw->phy->supported.tx_powers = at86rf231_powers;
1563                 lp->hw->phy->supported.tx_powers_size = ARRAY_SIZE(at86rf231_powers);
1564                 break;
1565         case 7:
1566                 chip = "at86rf212";
1567                 lp->data = &at86rf212_data;
1568                 lp->hw->flags |= IEEE802154_HW_LBT;
1569                 lp->hw->phy->supported.channels[0] = 0x00007FF;
1570                 lp->hw->phy->supported.channels[2] = 0x00007FF;
1571                 lp->hw->phy->current_channel = 5;
1572                 lp->hw->phy->symbol_duration = 25;
1573                 lp->hw->phy->supported.lbt = NL802154_SUPPORTED_BOOL_BOTH;
1574                 lp->hw->phy->supported.tx_powers = at86rf212_powers;
1575                 lp->hw->phy->supported.tx_powers_size = ARRAY_SIZE(at86rf212_powers);
1576                 lp->hw->phy->supported.cca_ed_levels = at86rf212_ed_levels_100;
1577                 lp->hw->phy->supported.cca_ed_levels_size = ARRAY_SIZE(at86rf212_ed_levels_100);
1578                 break;
1579         case 11:
1580                 chip = "at86rf233";
1581                 lp->data = &at86rf233_data;
1582                 lp->hw->phy->supported.channels[0] = 0x7FFF800;
1583                 lp->hw->phy->current_channel = 13;
1584                 lp->hw->phy->symbol_duration = 16;
1585                 lp->hw->phy->supported.tx_powers = at86rf233_powers;
1586                 lp->hw->phy->supported.tx_powers_size = ARRAY_SIZE(at86rf233_powers);
1587                 break;
1588         default:
1589                 chip = "unknown";
1590                 rc = -ENOTSUPP;
1591                 goto not_supp;
1592         }
1593
1594         lp->hw->phy->cca_ed_level = lp->hw->phy->supported.cca_ed_levels[7];
1595         lp->hw->phy->transmit_power = lp->hw->phy->supported.tx_powers[0];
1596
1597 not_supp:
1598         dev_info(&lp->spi->dev, "Detected %s chip version %d\n", chip, version);
1599
1600         return rc;
1601 }
1602
1603 #ifdef CONFIG_IEEE802154_AT86RF230_DEBUGFS
1604 static struct dentry *at86rf230_debugfs_root;
1605
1606 static int at86rf230_stats_show(struct seq_file *file, void *offset)
1607 {
1608         struct at86rf230_local *lp = file->private;
1609
1610         seq_printf(file, "SUCCESS:\t\t%8llu\n", lp->trac.success);
1611         seq_printf(file, "SUCCESS_DATA_PENDING:\t%8llu\n",
1612                    lp->trac.success_data_pending);
1613         seq_printf(file, "SUCCESS_WAIT_FOR_ACK:\t%8llu\n",
1614                    lp->trac.success_wait_for_ack);
1615         seq_printf(file, "CHANNEL_ACCESS_FAILURE:\t%8llu\n",
1616                    lp->trac.channel_access_failure);
1617         seq_printf(file, "NO_ACK:\t\t\t%8llu\n", lp->trac.no_ack);
1618         seq_printf(file, "INVALID:\t\t%8llu\n", lp->trac.invalid);
1619         return 0;
1620 }
1621
1622 static int at86rf230_stats_open(struct inode *inode, struct file *file)
1623 {
1624         return single_open(file, at86rf230_stats_show, inode->i_private);
1625 }
1626
1627 static const struct file_operations at86rf230_stats_fops = {
1628         .open           = at86rf230_stats_open,
1629         .read           = seq_read,
1630         .llseek         = seq_lseek,
1631         .release        = single_release,
1632 };
1633
1634 static int at86rf230_debugfs_init(struct at86rf230_local *lp)
1635 {
1636         char debugfs_dir_name[DNAME_INLINE_LEN + 1] = "at86rf230-";
1637         struct dentry *stats;
1638
1639         strncat(debugfs_dir_name, dev_name(&lp->spi->dev), DNAME_INLINE_LEN);
1640
1641         at86rf230_debugfs_root = debugfs_create_dir(debugfs_dir_name, NULL);
1642         if (!at86rf230_debugfs_root)
1643                 return -ENOMEM;
1644
1645         stats = debugfs_create_file("trac_stats", S_IRUGO,
1646                                     at86rf230_debugfs_root, lp,
1647                                     &at86rf230_stats_fops);
1648         if (!stats)
1649                 return -ENOMEM;
1650
1651         return 0;
1652 }
1653
1654 static void at86rf230_debugfs_remove(void)
1655 {
1656         debugfs_remove_recursive(at86rf230_debugfs_root);
1657 }
1658 #else
1659 static int at86rf230_debugfs_init(struct at86rf230_local *lp) { return 0; }
1660 static void at86rf230_debugfs_remove(void) { }
1661 #endif
1662
1663 static int at86rf230_probe(struct spi_device *spi)
1664 {
1665         struct ieee802154_hw *hw;
1666         struct at86rf230_local *lp;
1667         unsigned int status;
1668         int rc, irq_type, rstn, slp_tr;
1669         u8 xtal_trim = 0;
1670
1671         if (!spi->irq) {
1672                 dev_err(&spi->dev, "no IRQ specified\n");
1673                 return -EINVAL;
1674         }
1675
1676         rc = at86rf230_get_pdata(spi, &rstn, &slp_tr, &xtal_trim);
1677         if (rc < 0) {
1678                 dev_err(&spi->dev, "failed to parse platform_data: %d\n", rc);
1679                 return rc;
1680         }
1681
1682         if (gpio_is_valid(rstn)) {
1683                 rc = devm_gpio_request_one(&spi->dev, rstn,
1684                                            GPIOF_OUT_INIT_HIGH, "rstn");
1685                 if (rc)
1686                         return rc;
1687         }
1688
1689         if (gpio_is_valid(slp_tr)) {
1690                 rc = devm_gpio_request_one(&spi->dev, slp_tr,
1691                                            GPIOF_OUT_INIT_LOW, "slp_tr");
1692                 if (rc)
1693                         return rc;
1694         }
1695
1696         /* Reset */
1697         if (gpio_is_valid(rstn)) {
1698                 udelay(1);
1699                 gpio_set_value(rstn, 0);
1700                 udelay(1);
1701                 gpio_set_value(rstn, 1);
1702                 usleep_range(120, 240);
1703         }
1704
1705         hw = ieee802154_alloc_hw(sizeof(*lp), &at86rf230_ops);
1706         if (!hw)
1707                 return -ENOMEM;
1708
1709         lp = hw->priv;
1710         lp->hw = hw;
1711         lp->spi = spi;
1712         lp->slp_tr = slp_tr;
1713         hw->parent = &spi->dev;
1714         ieee802154_random_extended_addr(&hw->phy->perm_extended_addr);
1715
1716         lp->regmap = devm_regmap_init_spi(spi, &at86rf230_regmap_spi_config);
1717         if (IS_ERR(lp->regmap)) {
1718                 rc = PTR_ERR(lp->regmap);
1719                 dev_err(&spi->dev, "Failed to allocate register map: %d\n",
1720                         rc);
1721                 goto free_dev;
1722         }
1723
1724         at86rf230_setup_spi_messages(lp, &lp->state);
1725         at86rf230_setup_spi_messages(lp, &lp->tx);
1726
1727         rc = at86rf230_detect_device(lp);
1728         if (rc < 0)
1729                 goto free_dev;
1730
1731         init_completion(&lp->state_complete);
1732
1733         spi_set_drvdata(spi, lp);
1734
1735         rc = at86rf230_hw_init(lp, xtal_trim);
1736         if (rc)
1737                 goto free_dev;
1738
1739         /* Read irq status register to reset irq line */
1740         rc = at86rf230_read_subreg(lp, RG_IRQ_STATUS, 0xff, 0, &status);
1741         if (rc)
1742                 goto free_dev;
1743
1744         irq_type = irq_get_trigger_type(spi->irq);
1745         if (!irq_type)
1746                 irq_type = IRQF_TRIGGER_HIGH;
1747
1748         rc = devm_request_irq(&spi->dev, spi->irq, at86rf230_isr,
1749                               IRQF_SHARED | irq_type, dev_name(&spi->dev), lp);
1750         if (rc)
1751                 goto free_dev;
1752
1753         /* disable_irq by default and wait for starting hardware */
1754         disable_irq(spi->irq);
1755
1756         /* going into sleep by default */
1757         at86rf230_sleep(lp);
1758
1759         rc = at86rf230_debugfs_init(lp);
1760         if (rc)
1761                 goto free_dev;
1762
1763         rc = ieee802154_register_hw(lp->hw);
1764         if (rc)
1765                 goto free_debugfs;
1766
1767         return rc;
1768
1769 free_debugfs:
1770         at86rf230_debugfs_remove();
1771 free_dev:
1772         ieee802154_free_hw(lp->hw);
1773
1774         return rc;
1775 }
1776
1777 static int at86rf230_remove(struct spi_device *spi)
1778 {
1779         struct at86rf230_local *lp = spi_get_drvdata(spi);
1780
1781         /* mask all at86rf230 irq's */
1782         at86rf230_write_subreg(lp, SR_IRQ_MASK, 0);
1783         ieee802154_unregister_hw(lp->hw);
1784         ieee802154_free_hw(lp->hw);
1785         at86rf230_debugfs_remove();
1786         dev_dbg(&spi->dev, "unregistered at86rf230\n");
1787
1788         return 0;
1789 }
1790
1791 static const struct of_device_id at86rf230_of_match[] = {
1792         { .compatible = "atmel,at86rf230", },
1793         { .compatible = "atmel,at86rf231", },
1794         { .compatible = "atmel,at86rf233", },
1795         { .compatible = "atmel,at86rf212", },
1796         { },
1797 };
1798 MODULE_DEVICE_TABLE(of, at86rf230_of_match);
1799
1800 static const struct spi_device_id at86rf230_device_id[] = {
1801         { .name = "at86rf230", },
1802         { .name = "at86rf231", },
1803         { .name = "at86rf233", },
1804         { .name = "at86rf212", },
1805         { },
1806 };
1807 MODULE_DEVICE_TABLE(spi, at86rf230_device_id);
1808
1809 static struct spi_driver at86rf230_driver = {
1810         .id_table = at86rf230_device_id,
1811         .driver = {
1812                 .of_match_table = of_match_ptr(at86rf230_of_match),
1813                 .name   = "at86rf230",
1814         },
1815         .probe      = at86rf230_probe,
1816         .remove     = at86rf230_remove,
1817 };
1818
1819 module_spi_driver(at86rf230_driver);
1820
1821 MODULE_DESCRIPTION("AT86RF230 Transceiver Driver");
1822 MODULE_LICENSE("GPL v2");