2 * AT86RF230/RF231 driver
4 * Copyright (C) 2009-2012 Siemens AG
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.
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.
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>
36 #include <net/mac802154.h>
37 #include <net/cfg802154.h>
39 #include "at86rf230.h"
41 struct at86rf230_local;
42 /* at86rf2xx chip depend data.
43 * All timings are in us.
45 struct at86rf2xx_chip_data {
57 int (*set_channel)(struct at86rf230_local *, u8, u8);
58 int (*set_txpower)(struct at86rf230_local *, s32);
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.
65 * We assume the max_frame_retries (7) value of 802.15.4 here.
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)
71 struct at86rf230_state_change {
72 struct at86rf230_local *lp;
76 struct spi_message msg;
77 struct spi_transfer trx;
78 u8 buf[AT86RF2XX_MAX_BUF];
80 void (*complete)(void *context);
87 struct at86rf230_trac {
89 u64 success_data_pending;
90 u64 success_wait_for_ack;
91 u64 channel_access_failure;
96 struct at86rf230_local {
97 struct spi_device *spi;
99 struct ieee802154_hw *hw;
100 struct at86rf2xx_chip_data *data;
101 struct regmap *regmap;
105 struct completion state_complete;
106 struct at86rf230_state_change state;
108 unsigned long cal_timeout;
112 struct sk_buff *tx_skb;
113 struct at86rf230_state_change tx;
115 struct at86rf230_trac trac;
118 #define AT86RF2XX_NUMREGS 0x3F
121 at86rf230_async_state_change(struct at86rf230_local *lp,
122 struct at86rf230_state_change *ctx,
123 const u8 state, void (*complete)(void *context));
126 at86rf230_sleep(struct at86rf230_local *lp)
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);
137 at86rf230_awake(struct at86rf230_local *lp)
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);
148 __at86rf230_write(struct at86rf230_local *lp,
149 unsigned int addr, unsigned int data)
151 bool sleep = lp->sleep;
154 /* awake for register setting if sleep */
158 ret = regmap_write(lp->regmap, addr, data);
160 /* sleep again if was sleeping */
168 __at86rf230_read(struct at86rf230_local *lp,
169 unsigned int addr, unsigned int *data)
171 bool sleep = lp->sleep;
174 /* awake for register setting if sleep */
178 ret = regmap_read(lp->regmap, addr, data);
180 /* sleep again if was sleeping */
188 at86rf230_read_subreg(struct at86rf230_local *lp,
189 unsigned int addr, unsigned int mask,
190 unsigned int shift, unsigned int *data)
194 rc = __at86rf230_read(lp, addr, data);
196 *data = (*data & mask) >> shift;
202 at86rf230_write_subreg(struct at86rf230_local *lp,
203 unsigned int addr, unsigned int mask,
204 unsigned int shift, unsigned int data)
206 bool sleep = lp->sleep;
209 /* awake for register setting if sleep */
213 ret = regmap_update_bits(lp->regmap, addr, mask, data << shift);
215 /* sleep again if was sleeping */
223 at86rf230_slp_tr_rising_edge(struct at86rf230_local *lp)
225 gpio_set_value(lp->slp_tr, 1);
227 gpio_set_value(lp->slp_tr, 0);
231 at86rf230_reg_writeable(struct device *dev, unsigned int reg)
238 case RG_PHY_ED_LEVEL:
254 case RG_SHORT_ADDR_0:
255 case RG_SHORT_ADDR_1:
277 at86rf230_reg_readable(struct device *dev, unsigned int reg)
281 /* all writeable are also readable */
282 rc = at86rf230_reg_writeable(dev, reg);
302 at86rf230_reg_volatile(struct device *dev, unsigned int reg)
304 /* can be changed during runtime */
309 case RG_PHY_ED_LEVEL:
321 at86rf230_reg_precious(struct device *dev, unsigned int reg)
323 /* don't clear irq line on read */
332 static const struct regmap_config at86rf230_regmap_spi_config = {
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,
346 at86rf230_async_error_recover_complete(void *context)
348 struct at86rf230_state_change *ctx = context;
349 struct at86rf230_local *lp = ctx->lp;
354 ieee802154_wake_queue(lp->hw);
358 at86rf230_async_error_recover(void *context)
360 struct at86rf230_state_change *ctx = context;
361 struct at86rf230_local *lp = ctx->lp;
364 at86rf230_async_state_change(lp, ctx, STATE_RX_AACK_ON,
365 at86rf230_async_error_recover_complete);
369 at86rf230_async_error(struct at86rf230_local *lp,
370 struct at86rf230_state_change *ctx, int rc)
372 dev_err(&lp->spi->dev, "spi_async error %d\n", rc);
374 at86rf230_async_state_change(lp, ctx, STATE_FORCE_TRX_OFF,
375 at86rf230_async_error_recover);
378 /* Generic function to get some register value in async mode */
380 at86rf230_async_read_reg(struct at86rf230_local *lp, u8 reg,
381 struct at86rf230_state_change *ctx,
382 void (*complete)(void *context))
386 u8 *tx_buf = ctx->buf;
388 tx_buf[0] = (reg & CMD_REG_MASK) | CMD_REG;
389 ctx->msg.complete = complete;
390 rc = spi_async(lp->spi, &ctx->msg);
392 at86rf230_async_error(lp, ctx, rc);
396 at86rf230_async_write_reg(struct at86rf230_local *lp, u8 reg, u8 val,
397 struct at86rf230_state_change *ctx,
398 void (*complete)(void *context))
402 ctx->buf[0] = (reg & CMD_REG_MASK) | CMD_REG | CMD_WRITE;
404 ctx->msg.complete = complete;
405 rc = spi_async(lp->spi, &ctx->msg);
407 at86rf230_async_error(lp, ctx, rc);
411 at86rf230_async_state_assert(void *context)
413 struct at86rf230_state_change *ctx = context;
414 struct at86rf230_local *lp = ctx->lp;
415 const u8 *buf = ctx->buf;
416 const u8 trx_state = buf[1] & TRX_STATE_MASK;
418 /* Assert state change */
419 if (trx_state != ctx->to_state) {
420 /* Special handling if transceiver state is in
421 * STATE_BUSY_RX_AACK and a SHR was detected.
423 if (trx_state == STATE_BUSY_RX_AACK) {
424 /* Undocumented race condition. If we send a state
425 * change to STATE_RX_AACK_ON the transceiver could
426 * change his state automatically to STATE_BUSY_RX_AACK
427 * if a SHR was detected. This is not an error, but we
430 if (ctx->to_state == STATE_RX_AACK_ON)
433 /* If we change to STATE_TX_ON without forcing and
434 * transceiver state is STATE_BUSY_RX_AACK, we wait
435 * 'tFrame + tPAck' receiving time. In this time the
436 * PDU should be received. If the transceiver is still
437 * in STATE_BUSY_RX_AACK, we run a force state change
438 * to STATE_TX_ON. This is a timeout handling, if the
439 * transceiver stucks in STATE_BUSY_RX_AACK.
441 * Additional we do several retries to try to get into
442 * TX_ON state without forcing. If the retries are
443 * higher or equal than AT86RF2XX_MAX_TX_RETRIES we
444 * will do a force change.
446 if (ctx->to_state == STATE_TX_ON ||
447 ctx->to_state == STATE_TRX_OFF) {
448 u8 state = ctx->to_state;
450 if (lp->tx_retry >= AT86RF2XX_MAX_TX_RETRIES)
451 state = STATE_FORCE_TRX_OFF;
454 at86rf230_async_state_change(lp, ctx, state,
460 dev_warn(&lp->spi->dev, "unexcept state change from 0x%02x to 0x%02x. Actual state: 0x%02x\n",
461 ctx->from_state, ctx->to_state, trx_state);
466 ctx->complete(context);
469 static enum hrtimer_restart at86rf230_async_state_timer(struct hrtimer *timer)
471 struct at86rf230_state_change *ctx =
472 container_of(timer, struct at86rf230_state_change, timer);
473 struct at86rf230_local *lp = ctx->lp;
475 at86rf230_async_read_reg(lp, RG_TRX_STATUS, ctx,
476 at86rf230_async_state_assert);
478 return HRTIMER_NORESTART;
481 /* Do state change timing delay. */
483 at86rf230_async_state_delay(void *context)
485 struct at86rf230_state_change *ctx = context;
486 struct at86rf230_local *lp = ctx->lp;
487 struct at86rf2xx_chip_data *c = lp->data;
491 /* The force state changes are will show as normal states in the
492 * state status subregister. We change the to_state to the
493 * corresponding one and remember if it was a force change, this
494 * differs if we do a state change from STATE_BUSY_RX_AACK.
496 switch (ctx->to_state) {
497 case STATE_FORCE_TX_ON:
498 ctx->to_state = STATE_TX_ON;
501 case STATE_FORCE_TRX_OFF:
502 ctx->to_state = STATE_TRX_OFF;
509 switch (ctx->from_state) {
511 switch (ctx->to_state) {
512 case STATE_RX_AACK_ON:
513 tim = c->t_off_to_aack * NSEC_PER_USEC;
514 /* state change from TRX_OFF to RX_AACK_ON to do a
515 * calibration, we need to reset the timeout for the
518 lp->cal_timeout = jiffies + AT86RF2XX_CAL_LOOP_TIMEOUT;
520 case STATE_TX_ARET_ON:
522 tim = c->t_off_to_tx_on * NSEC_PER_USEC;
523 /* state change from TRX_OFF to TX_ON or ARET_ON to do
524 * a calibration, we need to reset the timeout for the
527 lp->cal_timeout = jiffies + AT86RF2XX_CAL_LOOP_TIMEOUT;
533 case STATE_BUSY_RX_AACK:
534 switch (ctx->to_state) {
537 /* Wait for worst case receiving time if we
538 * didn't make a force change from BUSY_RX_AACK
539 * to TX_ON or TRX_OFF.
542 tim = (c->t_frame + c->t_p_ack) * NSEC_PER_USEC;
550 /* Default value, means RESET state */
552 switch (ctx->to_state) {
554 tim = c->t_reset_to_off * NSEC_PER_USEC;
564 /* Default delay is 1us in the most cases */
566 at86rf230_async_state_timer(&ctx->timer);
570 hrtimer_start(&ctx->timer, tim, HRTIMER_MODE_REL);
574 at86rf230_async_state_change_start(void *context)
576 struct at86rf230_state_change *ctx = context;
577 struct at86rf230_local *lp = ctx->lp;
579 const u8 trx_state = buf[1] & TRX_STATE_MASK;
581 /* Check for "possible" STATE_TRANSITION_IN_PROGRESS */
582 if (trx_state == STATE_TRANSITION_IN_PROGRESS) {
584 at86rf230_async_read_reg(lp, RG_TRX_STATUS, ctx,
585 at86rf230_async_state_change_start);
589 /* Check if we already are in the state which we change in */
590 if (trx_state == ctx->to_state) {
592 ctx->complete(context);
596 /* Set current state to the context of state change */
597 ctx->from_state = trx_state;
599 /* Going into the next step for a state change which do a timing
602 at86rf230_async_write_reg(lp, RG_TRX_STATE, ctx->to_state, ctx,
603 at86rf230_async_state_delay);
607 at86rf230_async_state_change(struct at86rf230_local *lp,
608 struct at86rf230_state_change *ctx,
609 const u8 state, void (*complete)(void *context))
611 /* Initialization for the state change context */
612 ctx->to_state = state;
613 ctx->complete = complete;
614 at86rf230_async_read_reg(lp, RG_TRX_STATUS, ctx,
615 at86rf230_async_state_change_start);
619 at86rf230_sync_state_change_complete(void *context)
621 struct at86rf230_state_change *ctx = context;
622 struct at86rf230_local *lp = ctx->lp;
624 complete(&lp->state_complete);
627 /* This function do a sync framework above the async state change.
628 * Some callbacks of the IEEE 802.15.4 driver interface need to be
629 * handled synchronously.
632 at86rf230_sync_state_change(struct at86rf230_local *lp, unsigned int state)
636 at86rf230_async_state_change(lp, &lp->state, state,
637 at86rf230_sync_state_change_complete);
639 rc = wait_for_completion_timeout(&lp->state_complete,
640 msecs_to_jiffies(100));
642 at86rf230_async_error(lp, &lp->state, -ETIMEDOUT);
650 at86rf230_tx_complete(void *context)
652 struct at86rf230_state_change *ctx = context;
653 struct at86rf230_local *lp = ctx->lp;
655 ieee802154_xmit_complete(lp->hw, lp->tx_skb, false);
660 at86rf230_tx_on(void *context)
662 struct at86rf230_state_change *ctx = context;
663 struct at86rf230_local *lp = ctx->lp;
665 at86rf230_async_state_change(lp, ctx, STATE_RX_AACK_ON,
666 at86rf230_tx_complete);
670 at86rf230_tx_trac_check(void *context)
672 struct at86rf230_state_change *ctx = context;
673 struct at86rf230_local *lp = ctx->lp;
675 if (IS_ENABLED(CONFIG_IEEE802154_AT86RF230_DEBUGFS)) {
676 u8 trac = TRAC_MASK(ctx->buf[1]);
682 case TRAC_SUCCESS_DATA_PENDING:
683 lp->trac.success_data_pending++;
685 case TRAC_CHANNEL_ACCESS_FAILURE:
686 lp->trac.channel_access_failure++;
695 WARN_ONCE(1, "received tx trac status %d\n", trac);
700 at86rf230_async_state_change(lp, ctx, STATE_TX_ON, at86rf230_tx_on);
704 at86rf230_rx_read_frame_complete(void *context)
706 struct at86rf230_state_change *ctx = context;
707 struct at86rf230_local *lp = ctx->lp;
708 const u8 *buf = ctx->buf;
713 if (!ieee802154_is_valid_psdu_len(len)) {
714 dev_vdbg(&lp->spi->dev, "corrupted frame received\n");
715 len = IEEE802154_MTU;
719 skb = dev_alloc_skb(IEEE802154_MTU);
721 dev_vdbg(&lp->spi->dev, "failed to allocate sk_buff\n");
726 skb_put_data(skb, buf + 2, len);
727 ieee802154_rx_irqsafe(lp->hw, skb, lqi);
732 at86rf230_rx_trac_check(void *context)
734 struct at86rf230_state_change *ctx = context;
735 struct at86rf230_local *lp = ctx->lp;
739 if (IS_ENABLED(CONFIG_IEEE802154_AT86RF230_DEBUGFS)) {
740 u8 trac = TRAC_MASK(buf[1]);
746 case TRAC_SUCCESS_WAIT_FOR_ACK:
747 lp->trac.success_wait_for_ack++;
753 WARN_ONCE(1, "received rx trac status %d\n", trac);
759 ctx->trx.len = AT86RF2XX_MAX_BUF;
760 ctx->msg.complete = at86rf230_rx_read_frame_complete;
761 rc = spi_async(lp->spi, &ctx->msg);
764 at86rf230_async_error(lp, ctx, rc);
769 at86rf230_irq_trx_end(void *context)
771 struct at86rf230_state_change *ctx = context;
772 struct at86rf230_local *lp = ctx->lp;
776 at86rf230_async_read_reg(lp, RG_TRX_STATE, ctx,
777 at86rf230_tx_trac_check);
779 at86rf230_async_read_reg(lp, RG_TRX_STATE, ctx,
780 at86rf230_rx_trac_check);
785 at86rf230_irq_status(void *context)
787 struct at86rf230_state_change *ctx = context;
788 struct at86rf230_local *lp = ctx->lp;
789 const u8 *buf = ctx->buf;
792 enable_irq(lp->spi->irq);
794 if (irq & IRQ_TRX_END) {
795 at86rf230_irq_trx_end(ctx);
797 dev_err(&lp->spi->dev, "not supported irq %02x received\n",
804 at86rf230_setup_spi_messages(struct at86rf230_local *lp,
805 struct at86rf230_state_change *state)
808 state->irq = lp->spi->irq;
809 spi_message_init(&state->msg);
810 state->msg.context = state;
812 state->trx.tx_buf = state->buf;
813 state->trx.rx_buf = state->buf;
814 spi_message_add_tail(&state->trx, &state->msg);
815 hrtimer_init(&state->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
816 state->timer.function = at86rf230_async_state_timer;
819 static irqreturn_t at86rf230_isr(int irq, void *data)
821 struct at86rf230_local *lp = data;
822 struct at86rf230_state_change *ctx;
825 disable_irq_nosync(irq);
827 ctx = kzalloc(sizeof(*ctx), GFP_ATOMIC);
833 at86rf230_setup_spi_messages(lp, ctx);
834 /* tell on error handling to free ctx */
837 ctx->buf[0] = (RG_IRQ_STATUS & CMD_REG_MASK) | CMD_REG;
838 ctx->msg.complete = at86rf230_irq_status;
839 rc = spi_async(lp->spi, &ctx->msg);
841 at86rf230_async_error(lp, ctx, rc);
850 at86rf230_write_frame_complete(void *context)
852 struct at86rf230_state_change *ctx = context;
853 struct at86rf230_local *lp = ctx->lp;
857 if (gpio_is_valid(lp->slp_tr))
858 at86rf230_slp_tr_rising_edge(lp);
860 at86rf230_async_write_reg(lp, RG_TRX_STATE, STATE_BUSY_TX, ctx,
865 at86rf230_write_frame(void *context)
867 struct at86rf230_state_change *ctx = context;
868 struct at86rf230_local *lp = ctx->lp;
869 struct sk_buff *skb = lp->tx_skb;
875 buf[0] = CMD_FB | CMD_WRITE;
876 buf[1] = skb->len + 2;
877 memcpy(buf + 2, skb->data, skb->len);
878 ctx->trx.len = skb->len + 2;
879 ctx->msg.complete = at86rf230_write_frame_complete;
880 rc = spi_async(lp->spi, &ctx->msg);
883 at86rf230_async_error(lp, ctx, rc);
888 at86rf230_xmit_tx_on(void *context)
890 struct at86rf230_state_change *ctx = context;
891 struct at86rf230_local *lp = ctx->lp;
893 at86rf230_async_state_change(lp, ctx, STATE_TX_ARET_ON,
894 at86rf230_write_frame);
898 at86rf230_xmit_start(void *context)
900 struct at86rf230_state_change *ctx = context;
901 struct at86rf230_local *lp = ctx->lp;
903 /* check if we change from off state */
904 if (lp->is_tx_from_off)
905 at86rf230_async_state_change(lp, ctx, STATE_TX_ARET_ON,
906 at86rf230_write_frame);
908 at86rf230_async_state_change(lp, ctx, STATE_TX_ON,
909 at86rf230_xmit_tx_on);
913 at86rf230_xmit(struct ieee802154_hw *hw, struct sk_buff *skb)
915 struct at86rf230_local *lp = hw->priv;
916 struct at86rf230_state_change *ctx = &lp->tx;
921 /* After 5 minutes in PLL and the same frequency we run again the
922 * calibration loops which is recommended by at86rf2xx datasheets.
924 * The calibration is initiate by a state change from TRX_OFF
925 * to TX_ON, the lp->cal_timeout should be reinit by state_delay
926 * function then to start in the next 5 minutes.
928 if (time_is_before_jiffies(lp->cal_timeout)) {
929 lp->is_tx_from_off = true;
930 at86rf230_async_state_change(lp, ctx, STATE_TRX_OFF,
931 at86rf230_xmit_start);
933 lp->is_tx_from_off = false;
934 at86rf230_xmit_start(ctx);
941 at86rf230_ed(struct ieee802154_hw *hw, u8 *level)
949 at86rf230_start(struct ieee802154_hw *hw)
951 struct at86rf230_local *lp = hw->priv;
953 /* reset trac stats on start */
954 if (IS_ENABLED(CONFIG_IEEE802154_AT86RF230_DEBUGFS))
955 memset(&lp->trac, 0, sizeof(struct at86rf230_trac));
958 enable_irq(lp->spi->irq);
960 return at86rf230_sync_state_change(lp, STATE_RX_AACK_ON);
964 at86rf230_stop(struct ieee802154_hw *hw)
966 struct at86rf230_local *lp = hw->priv;
969 at86rf230_sync_state_change(lp, STATE_FORCE_TRX_OFF);
971 disable_irq(lp->spi->irq);
973 /* It's recommended to set random new csma_seeds before sleep state.
974 * Makes only sense in the stop callback, not doing this inside of
975 * at86rf230_sleep, this is also used when we don't transmit afterwards
976 * when calling start callback again.
978 get_random_bytes(csma_seed, ARRAY_SIZE(csma_seed));
979 at86rf230_write_subreg(lp, SR_CSMA_SEED_0, csma_seed[0]);
980 at86rf230_write_subreg(lp, SR_CSMA_SEED_1, csma_seed[1]);
986 at86rf23x_set_channel(struct at86rf230_local *lp, u8 page, u8 channel)
988 return at86rf230_write_subreg(lp, SR_CHANNEL, channel);
991 #define AT86RF2XX_MAX_ED_LEVELS 0xF
992 static const s32 at86rf233_ed_levels[AT86RF2XX_MAX_ED_LEVELS + 1] = {
993 -9400, -9200, -9000, -8800, -8600, -8400, -8200, -8000, -7800, -7600,
994 -7400, -7200, -7000, -6800, -6600, -6400,
997 static const s32 at86rf231_ed_levels[AT86RF2XX_MAX_ED_LEVELS + 1] = {
998 -9100, -8900, -8700, -8500, -8300, -8100, -7900, -7700, -7500, -7300,
999 -7100, -6900, -6700, -6500, -6300, -6100,
1002 static const s32 at86rf212_ed_levels_100[AT86RF2XX_MAX_ED_LEVELS + 1] = {
1003 -10000, -9800, -9600, -9400, -9200, -9000, -8800, -8600, -8400, -8200,
1004 -8000, -7800, -7600, -7400, -7200, -7000,
1007 static const s32 at86rf212_ed_levels_98[AT86RF2XX_MAX_ED_LEVELS + 1] = {
1008 -9800, -9600, -9400, -9200, -9000, -8800, -8600, -8400, -8200, -8000,
1009 -7800, -7600, -7400, -7200, -7000, -6800,
1013 at86rf212_update_cca_ed_level(struct at86rf230_local *lp, int rssi_base_val)
1015 unsigned int cca_ed_thres;
1018 rc = at86rf230_read_subreg(lp, SR_CCA_ED_THRES, &cca_ed_thres);
1022 switch (rssi_base_val) {
1024 lp->hw->phy->supported.cca_ed_levels = at86rf212_ed_levels_98;
1025 lp->hw->phy->supported.cca_ed_levels_size = ARRAY_SIZE(at86rf212_ed_levels_98);
1026 lp->hw->phy->cca_ed_level = at86rf212_ed_levels_98[cca_ed_thres];
1029 lp->hw->phy->supported.cca_ed_levels = at86rf212_ed_levels_100;
1030 lp->hw->phy->supported.cca_ed_levels_size = ARRAY_SIZE(at86rf212_ed_levels_100);
1031 lp->hw->phy->cca_ed_level = at86rf212_ed_levels_100[cca_ed_thres];
1041 at86rf212_set_channel(struct at86rf230_local *lp, u8 page, u8 channel)
1046 rc = at86rf230_write_subreg(lp, SR_SUB_MODE, 0);
1048 rc = at86rf230_write_subreg(lp, SR_SUB_MODE, 1);
1053 rc = at86rf230_write_subreg(lp, SR_BPSK_QPSK, 0);
1054 lp->data->rssi_base_val = -100;
1056 rc = at86rf230_write_subreg(lp, SR_BPSK_QPSK, 1);
1057 lp->data->rssi_base_val = -98;
1062 rc = at86rf212_update_cca_ed_level(lp, lp->data->rssi_base_val);
1066 /* This sets the symbol_duration according frequency on the 212.
1067 * TODO move this handling while set channel and page in cfg802154.
1068 * We can do that, this timings are according 802.15.4 standard.
1069 * If we do that in cfg802154, this is a more generic calculation.
1071 * This should also protected from ifs_timer. Means cancel timer and
1072 * init with a new value. For now, this is okay.
1076 /* SUB:0 and BPSK:0 -> BPSK-20 */
1077 lp->hw->phy->symbol_duration = 50;
1079 /* SUB:1 and BPSK:0 -> BPSK-40 */
1080 lp->hw->phy->symbol_duration = 25;
1084 /* SUB:0 and BPSK:1 -> OQPSK-100/200/400 */
1085 lp->hw->phy->symbol_duration = 40;
1087 /* SUB:1 and BPSK:1 -> OQPSK-250/500/1000 */
1088 lp->hw->phy->symbol_duration = 16;
1091 lp->hw->phy->lifs_period = IEEE802154_LIFS_PERIOD *
1092 lp->hw->phy->symbol_duration;
1093 lp->hw->phy->sifs_period = IEEE802154_SIFS_PERIOD *
1094 lp->hw->phy->symbol_duration;
1096 return at86rf230_write_subreg(lp, SR_CHANNEL, channel);
1100 at86rf230_channel(struct ieee802154_hw *hw, u8 page, u8 channel)
1102 struct at86rf230_local *lp = hw->priv;
1105 rc = lp->data->set_channel(lp, page, channel);
1107 usleep_range(lp->data->t_channel_switch,
1108 lp->data->t_channel_switch + 10);
1110 lp->cal_timeout = jiffies + AT86RF2XX_CAL_LOOP_TIMEOUT;
1115 at86rf230_set_hw_addr_filt(struct ieee802154_hw *hw,
1116 struct ieee802154_hw_addr_filt *filt,
1117 unsigned long changed)
1119 struct at86rf230_local *lp = hw->priv;
1121 if (changed & IEEE802154_AFILT_SADDR_CHANGED) {
1122 u16 addr = le16_to_cpu(filt->short_addr);
1124 dev_vdbg(&lp->spi->dev,
1125 "at86rf230_set_hw_addr_filt called for saddr\n");
1126 __at86rf230_write(lp, RG_SHORT_ADDR_0, addr);
1127 __at86rf230_write(lp, RG_SHORT_ADDR_1, addr >> 8);
1130 if (changed & IEEE802154_AFILT_PANID_CHANGED) {
1131 u16 pan = le16_to_cpu(filt->pan_id);
1133 dev_vdbg(&lp->spi->dev,
1134 "at86rf230_set_hw_addr_filt called for pan id\n");
1135 __at86rf230_write(lp, RG_PAN_ID_0, pan);
1136 __at86rf230_write(lp, RG_PAN_ID_1, pan >> 8);
1139 if (changed & IEEE802154_AFILT_IEEEADDR_CHANGED) {
1142 memcpy(addr, &filt->ieee_addr, 8);
1143 dev_vdbg(&lp->spi->dev,
1144 "at86rf230_set_hw_addr_filt called for IEEE addr\n");
1145 for (i = 0; i < 8; i++)
1146 __at86rf230_write(lp, RG_IEEE_ADDR_0 + i, addr[i]);
1149 if (changed & IEEE802154_AFILT_PANC_CHANGED) {
1150 dev_vdbg(&lp->spi->dev,
1151 "at86rf230_set_hw_addr_filt called for panc change\n");
1152 if (filt->pan_coord)
1153 at86rf230_write_subreg(lp, SR_AACK_I_AM_COORD, 1);
1155 at86rf230_write_subreg(lp, SR_AACK_I_AM_COORD, 0);
1161 #define AT86RF23X_MAX_TX_POWERS 0xF
1162 static const s32 at86rf233_powers[AT86RF23X_MAX_TX_POWERS + 1] = {
1163 400, 370, 340, 300, 250, 200, 100, 0, -100, -200, -300, -400, -600,
1167 static const s32 at86rf231_powers[AT86RF23X_MAX_TX_POWERS + 1] = {
1168 300, 280, 230, 180, 130, 70, 0, -100, -200, -300, -400, -500, -700,
1172 #define AT86RF212_MAX_TX_POWERS 0x1F
1173 static const s32 at86rf212_powers[AT86RF212_MAX_TX_POWERS + 1] = {
1174 500, 400, 300, 200, 100, 0, -100, -200, -300, -400, -500, -600, -700,
1175 -800, -900, -1000, -1100, -1200, -1300, -1400, -1500, -1600, -1700,
1176 -1800, -1900, -2000, -2100, -2200, -2300, -2400, -2500, -2600,
1180 at86rf23x_set_txpower(struct at86rf230_local *lp, s32 mbm)
1184 for (i = 0; i < lp->hw->phy->supported.tx_powers_size; i++) {
1185 if (lp->hw->phy->supported.tx_powers[i] == mbm)
1186 return at86rf230_write_subreg(lp, SR_TX_PWR_23X, i);
1193 at86rf212_set_txpower(struct at86rf230_local *lp, s32 mbm)
1197 for (i = 0; i < lp->hw->phy->supported.tx_powers_size; i++) {
1198 if (lp->hw->phy->supported.tx_powers[i] == mbm)
1199 return at86rf230_write_subreg(lp, SR_TX_PWR_212, i);
1206 at86rf230_set_txpower(struct ieee802154_hw *hw, s32 mbm)
1208 struct at86rf230_local *lp = hw->priv;
1210 return lp->data->set_txpower(lp, mbm);
1214 at86rf230_set_lbt(struct ieee802154_hw *hw, bool on)
1216 struct at86rf230_local *lp = hw->priv;
1218 return at86rf230_write_subreg(lp, SR_CSMA_LBT_MODE, on);
1222 at86rf230_set_cca_mode(struct ieee802154_hw *hw,
1223 const struct wpan_phy_cca *cca)
1225 struct at86rf230_local *lp = hw->priv;
1228 /* mapping 802.15.4 to driver spec */
1229 switch (cca->mode) {
1230 case NL802154_CCA_ENERGY:
1233 case NL802154_CCA_CARRIER:
1236 case NL802154_CCA_ENERGY_CARRIER:
1238 case NL802154_CCA_OPT_ENERGY_CARRIER_AND:
1241 case NL802154_CCA_OPT_ENERGY_CARRIER_OR:
1252 return at86rf230_write_subreg(lp, SR_CCA_MODE, val);
1257 at86rf230_set_cca_ed_level(struct ieee802154_hw *hw, s32 mbm)
1259 struct at86rf230_local *lp = hw->priv;
1262 for (i = 0; i < hw->phy->supported.cca_ed_levels_size; i++) {
1263 if (hw->phy->supported.cca_ed_levels[i] == mbm)
1264 return at86rf230_write_subreg(lp, SR_CCA_ED_THRES, i);
1271 at86rf230_set_csma_params(struct ieee802154_hw *hw, u8 min_be, u8 max_be,
1274 struct at86rf230_local *lp = hw->priv;
1277 rc = at86rf230_write_subreg(lp, SR_MIN_BE, min_be);
1281 rc = at86rf230_write_subreg(lp, SR_MAX_BE, max_be);
1285 return at86rf230_write_subreg(lp, SR_MAX_CSMA_RETRIES, retries);
1289 at86rf230_set_frame_retries(struct ieee802154_hw *hw, s8 retries)
1291 struct at86rf230_local *lp = hw->priv;
1293 return at86rf230_write_subreg(lp, SR_MAX_FRAME_RETRIES, retries);
1297 at86rf230_set_promiscuous_mode(struct ieee802154_hw *hw, const bool on)
1299 struct at86rf230_local *lp = hw->priv;
1303 rc = at86rf230_write_subreg(lp, SR_AACK_DIS_ACK, 1);
1307 rc = at86rf230_write_subreg(lp, SR_AACK_PROM_MODE, 1);
1311 rc = at86rf230_write_subreg(lp, SR_AACK_PROM_MODE, 0);
1315 rc = at86rf230_write_subreg(lp, SR_AACK_DIS_ACK, 0);
1323 static const struct ieee802154_ops at86rf230_ops = {
1324 .owner = THIS_MODULE,
1325 .xmit_async = at86rf230_xmit,
1327 .set_channel = at86rf230_channel,
1328 .start = at86rf230_start,
1329 .stop = at86rf230_stop,
1330 .set_hw_addr_filt = at86rf230_set_hw_addr_filt,
1331 .set_txpower = at86rf230_set_txpower,
1332 .set_lbt = at86rf230_set_lbt,
1333 .set_cca_mode = at86rf230_set_cca_mode,
1334 .set_cca_ed_level = at86rf230_set_cca_ed_level,
1335 .set_csma_params = at86rf230_set_csma_params,
1336 .set_frame_retries = at86rf230_set_frame_retries,
1337 .set_promiscuous_mode = at86rf230_set_promiscuous_mode,
1340 static struct at86rf2xx_chip_data at86rf233_data = {
1341 .t_sleep_cycle = 330,
1342 .t_channel_switch = 11,
1343 .t_reset_to_off = 26,
1344 .t_off_to_aack = 80,
1345 .t_off_to_tx_on = 80,
1346 .t_off_to_sleep = 35,
1347 .t_sleep_to_off = 1000,
1350 .rssi_base_val = -94,
1351 .set_channel = at86rf23x_set_channel,
1352 .set_txpower = at86rf23x_set_txpower,
1355 static struct at86rf2xx_chip_data at86rf231_data = {
1356 .t_sleep_cycle = 330,
1357 .t_channel_switch = 24,
1358 .t_reset_to_off = 37,
1359 .t_off_to_aack = 110,
1360 .t_off_to_tx_on = 110,
1361 .t_off_to_sleep = 35,
1362 .t_sleep_to_off = 1000,
1365 .rssi_base_val = -91,
1366 .set_channel = at86rf23x_set_channel,
1367 .set_txpower = at86rf23x_set_txpower,
1370 static struct at86rf2xx_chip_data at86rf212_data = {
1371 .t_sleep_cycle = 330,
1372 .t_channel_switch = 11,
1373 .t_reset_to_off = 26,
1374 .t_off_to_aack = 200,
1375 .t_off_to_tx_on = 200,
1376 .t_off_to_sleep = 35,
1377 .t_sleep_to_off = 1000,
1380 .rssi_base_val = -100,
1381 .set_channel = at86rf212_set_channel,
1382 .set_txpower = at86rf212_set_txpower,
1385 static int at86rf230_hw_init(struct at86rf230_local *lp, u8 xtal_trim)
1387 int rc, irq_type, irq_pol = IRQ_ACTIVE_HIGH;
1391 rc = at86rf230_sync_state_change(lp, STATE_FORCE_TRX_OFF);
1395 irq_type = irq_get_trigger_type(lp->spi->irq);
1396 if (irq_type == IRQ_TYPE_EDGE_FALLING ||
1397 irq_type == IRQ_TYPE_LEVEL_LOW)
1398 irq_pol = IRQ_ACTIVE_LOW;
1400 rc = at86rf230_write_subreg(lp, SR_IRQ_POLARITY, irq_pol);
1404 rc = at86rf230_write_subreg(lp, SR_RX_SAFE_MODE, 1);
1408 rc = at86rf230_write_subreg(lp, SR_IRQ_MASK, IRQ_TRX_END);
1412 /* reset values differs in at86rf231 and at86rf233 */
1413 rc = at86rf230_write_subreg(lp, SR_IRQ_MASK_MODE, 0);
1417 get_random_bytes(csma_seed, ARRAY_SIZE(csma_seed));
1418 rc = at86rf230_write_subreg(lp, SR_CSMA_SEED_0, csma_seed[0]);
1421 rc = at86rf230_write_subreg(lp, SR_CSMA_SEED_1, csma_seed[1]);
1425 /* CLKM changes are applied immediately */
1426 rc = at86rf230_write_subreg(lp, SR_CLKM_SHA_SEL, 0x00);
1431 rc = at86rf230_write_subreg(lp, SR_CLKM_CTRL, 0x00);
1434 /* Wait the next SLEEP cycle */
1435 usleep_range(lp->data->t_sleep_cycle,
1436 lp->data->t_sleep_cycle + 100);
1438 /* xtal_trim value is calculated by:
1439 * CL = 0.5 * (CX + CTRIM + CPAR)
1442 * CL = capacitor of used crystal
1443 * CX = connected capacitors at xtal pins
1444 * CPAR = in all at86rf2xx datasheets this is a constant value 3 pF,
1445 * but this is different on each board setup. You need to fine
1446 * tuning this value via CTRIM.
1447 * CTRIM = variable capacitor setting. Resolution is 0.3 pF range is
1451 * atben transceiver:
1455 * CPAR = 3 pF (We assume the magic constant from datasheet)
1458 * (12+0.9+3)/2 = 7.95 which is nearly at 8 pF
1462 * openlabs transceiver:
1466 * CPAR = 3 pF (We assume the magic constant from datasheet)
1469 * (22+4.5+3)/2 = 14.75 which is the nearest value to 16 pF
1473 rc = at86rf230_write_subreg(lp, SR_XTAL_TRIM, xtal_trim);
1477 rc = at86rf230_read_subreg(lp, SR_DVDD_OK, &dvdd);
1481 dev_err(&lp->spi->dev, "DVDD error\n");
1485 /* Force setting slotted operation bit to 0. Sometimes the atben
1486 * sets this bit and I don't know why. We set this always force
1487 * to zero while probing.
1489 return at86rf230_write_subreg(lp, SR_SLOTTED_OPERATION, 0);
1493 at86rf230_get_pdata(struct spi_device *spi, int *rstn, int *slp_tr,
1496 struct at86rf230_platform_data *pdata = spi->dev.platform_data;
1499 if (!IS_ENABLED(CONFIG_OF) || !spi->dev.of_node) {
1503 *rstn = pdata->rstn;
1504 *slp_tr = pdata->slp_tr;
1505 *xtal_trim = pdata->xtal_trim;
1509 *rstn = of_get_named_gpio(spi->dev.of_node, "reset-gpio", 0);
1510 *slp_tr = of_get_named_gpio(spi->dev.of_node, "sleep-gpio", 0);
1511 ret = of_property_read_u8(spi->dev.of_node, "xtal-trim", xtal_trim);
1512 if (ret < 0 && ret != -EINVAL)
1519 at86rf230_detect_device(struct at86rf230_local *lp)
1521 unsigned int part, version, val;
1526 rc = __at86rf230_read(lp, RG_MAN_ID_0, &val);
1531 rc = __at86rf230_read(lp, RG_MAN_ID_1, &val);
1534 man_id |= (val << 8);
1536 rc = __at86rf230_read(lp, RG_PART_NUM, &part);
1540 rc = __at86rf230_read(lp, RG_VERSION_NUM, &version);
1544 if (man_id != 0x001f) {
1545 dev_err(&lp->spi->dev, "Non-Atmel dev found (MAN_ID %02x %02x)\n",
1546 man_id >> 8, man_id & 0xFF);
1550 lp->hw->flags = IEEE802154_HW_TX_OMIT_CKSUM |
1551 IEEE802154_HW_CSMA_PARAMS |
1552 IEEE802154_HW_FRAME_RETRIES | IEEE802154_HW_AFILT |
1553 IEEE802154_HW_PROMISCUOUS;
1555 lp->hw->phy->flags = WPAN_PHY_FLAG_TXPOWER |
1556 WPAN_PHY_FLAG_CCA_ED_LEVEL |
1557 WPAN_PHY_FLAG_CCA_MODE;
1559 lp->hw->phy->supported.cca_modes = BIT(NL802154_CCA_ENERGY) |
1560 BIT(NL802154_CCA_CARRIER) | BIT(NL802154_CCA_ENERGY_CARRIER);
1561 lp->hw->phy->supported.cca_opts = BIT(NL802154_CCA_OPT_ENERGY_CARRIER_AND) |
1562 BIT(NL802154_CCA_OPT_ENERGY_CARRIER_OR);
1564 lp->hw->phy->cca.mode = NL802154_CCA_ENERGY;
1573 lp->data = &at86rf231_data;
1574 lp->hw->phy->supported.channels[0] = 0x7FFF800;
1575 lp->hw->phy->current_channel = 11;
1576 lp->hw->phy->symbol_duration = 16;
1577 lp->hw->phy->supported.tx_powers = at86rf231_powers;
1578 lp->hw->phy->supported.tx_powers_size = ARRAY_SIZE(at86rf231_powers);
1579 lp->hw->phy->supported.cca_ed_levels = at86rf231_ed_levels;
1580 lp->hw->phy->supported.cca_ed_levels_size = ARRAY_SIZE(at86rf231_ed_levels);
1584 lp->data = &at86rf212_data;
1585 lp->hw->flags |= IEEE802154_HW_LBT;
1586 lp->hw->phy->supported.channels[0] = 0x00007FF;
1587 lp->hw->phy->supported.channels[2] = 0x00007FF;
1588 lp->hw->phy->current_channel = 5;
1589 lp->hw->phy->symbol_duration = 25;
1590 lp->hw->phy->supported.lbt = NL802154_SUPPORTED_BOOL_BOTH;
1591 lp->hw->phy->supported.tx_powers = at86rf212_powers;
1592 lp->hw->phy->supported.tx_powers_size = ARRAY_SIZE(at86rf212_powers);
1593 lp->hw->phy->supported.cca_ed_levels = at86rf212_ed_levels_100;
1594 lp->hw->phy->supported.cca_ed_levels_size = ARRAY_SIZE(at86rf212_ed_levels_100);
1598 lp->data = &at86rf233_data;
1599 lp->hw->phy->supported.channels[0] = 0x7FFF800;
1600 lp->hw->phy->current_channel = 13;
1601 lp->hw->phy->symbol_duration = 16;
1602 lp->hw->phy->supported.tx_powers = at86rf233_powers;
1603 lp->hw->phy->supported.tx_powers_size = ARRAY_SIZE(at86rf233_powers);
1604 lp->hw->phy->supported.cca_ed_levels = at86rf233_ed_levels;
1605 lp->hw->phy->supported.cca_ed_levels_size = ARRAY_SIZE(at86rf233_ed_levels);
1613 lp->hw->phy->cca_ed_level = lp->hw->phy->supported.cca_ed_levels[7];
1614 lp->hw->phy->transmit_power = lp->hw->phy->supported.tx_powers[0];
1617 dev_info(&lp->spi->dev, "Detected %s chip version %d\n", chip, version);
1622 #ifdef CONFIG_IEEE802154_AT86RF230_DEBUGFS
1623 static struct dentry *at86rf230_debugfs_root;
1625 static int at86rf230_stats_show(struct seq_file *file, void *offset)
1627 struct at86rf230_local *lp = file->private;
1629 seq_printf(file, "SUCCESS:\t\t%8llu\n", lp->trac.success);
1630 seq_printf(file, "SUCCESS_DATA_PENDING:\t%8llu\n",
1631 lp->trac.success_data_pending);
1632 seq_printf(file, "SUCCESS_WAIT_FOR_ACK:\t%8llu\n",
1633 lp->trac.success_wait_for_ack);
1634 seq_printf(file, "CHANNEL_ACCESS_FAILURE:\t%8llu\n",
1635 lp->trac.channel_access_failure);
1636 seq_printf(file, "NO_ACK:\t\t\t%8llu\n", lp->trac.no_ack);
1637 seq_printf(file, "INVALID:\t\t%8llu\n", lp->trac.invalid);
1641 static int at86rf230_stats_open(struct inode *inode, struct file *file)
1643 return single_open(file, at86rf230_stats_show, inode->i_private);
1646 static const struct file_operations at86rf230_stats_fops = {
1647 .open = at86rf230_stats_open,
1649 .llseek = seq_lseek,
1650 .release = single_release,
1653 static int at86rf230_debugfs_init(struct at86rf230_local *lp)
1655 char debugfs_dir_name[DNAME_INLINE_LEN + 1] = "at86rf230-";
1656 struct dentry *stats;
1658 strncat(debugfs_dir_name, dev_name(&lp->spi->dev), DNAME_INLINE_LEN);
1660 at86rf230_debugfs_root = debugfs_create_dir(debugfs_dir_name, NULL);
1661 if (!at86rf230_debugfs_root)
1664 stats = debugfs_create_file("trac_stats", S_IRUGO,
1665 at86rf230_debugfs_root, lp,
1666 &at86rf230_stats_fops);
1673 static void at86rf230_debugfs_remove(void)
1675 debugfs_remove_recursive(at86rf230_debugfs_root);
1678 static int at86rf230_debugfs_init(struct at86rf230_local *lp) { return 0; }
1679 static void at86rf230_debugfs_remove(void) { }
1682 static int at86rf230_probe(struct spi_device *spi)
1684 struct ieee802154_hw *hw;
1685 struct at86rf230_local *lp;
1686 unsigned int status;
1687 int rc, irq_type, rstn, slp_tr;
1691 dev_err(&spi->dev, "no IRQ specified\n");
1695 rc = at86rf230_get_pdata(spi, &rstn, &slp_tr, &xtal_trim);
1697 dev_err(&spi->dev, "failed to parse platform_data: %d\n", rc);
1701 if (gpio_is_valid(rstn)) {
1702 rc = devm_gpio_request_one(&spi->dev, rstn,
1703 GPIOF_OUT_INIT_HIGH, "rstn");
1708 if (gpio_is_valid(slp_tr)) {
1709 rc = devm_gpio_request_one(&spi->dev, slp_tr,
1710 GPIOF_OUT_INIT_LOW, "slp_tr");
1716 if (gpio_is_valid(rstn)) {
1718 gpio_set_value_cansleep(rstn, 0);
1720 gpio_set_value_cansleep(rstn, 1);
1721 usleep_range(120, 240);
1724 hw = ieee802154_alloc_hw(sizeof(*lp), &at86rf230_ops);
1731 lp->slp_tr = slp_tr;
1732 hw->parent = &spi->dev;
1733 ieee802154_random_extended_addr(&hw->phy->perm_extended_addr);
1735 lp->regmap = devm_regmap_init_spi(spi, &at86rf230_regmap_spi_config);
1736 if (IS_ERR(lp->regmap)) {
1737 rc = PTR_ERR(lp->regmap);
1738 dev_err(&spi->dev, "Failed to allocate register map: %d\n",
1743 at86rf230_setup_spi_messages(lp, &lp->state);
1744 at86rf230_setup_spi_messages(lp, &lp->tx);
1746 rc = at86rf230_detect_device(lp);
1750 init_completion(&lp->state_complete);
1752 spi_set_drvdata(spi, lp);
1754 rc = at86rf230_hw_init(lp, xtal_trim);
1758 /* Read irq status register to reset irq line */
1759 rc = at86rf230_read_subreg(lp, RG_IRQ_STATUS, 0xff, 0, &status);
1763 irq_type = irq_get_trigger_type(spi->irq);
1765 irq_type = IRQF_TRIGGER_HIGH;
1767 rc = devm_request_irq(&spi->dev, spi->irq, at86rf230_isr,
1768 IRQF_SHARED | irq_type, dev_name(&spi->dev), lp);
1772 /* disable_irq by default and wait for starting hardware */
1773 disable_irq(spi->irq);
1775 /* going into sleep by default */
1776 at86rf230_sleep(lp);
1778 rc = at86rf230_debugfs_init(lp);
1782 rc = ieee802154_register_hw(lp->hw);
1789 at86rf230_debugfs_remove();
1791 ieee802154_free_hw(lp->hw);
1796 static int at86rf230_remove(struct spi_device *spi)
1798 struct at86rf230_local *lp = spi_get_drvdata(spi);
1800 /* mask all at86rf230 irq's */
1801 at86rf230_write_subreg(lp, SR_IRQ_MASK, 0);
1802 ieee802154_unregister_hw(lp->hw);
1803 ieee802154_free_hw(lp->hw);
1804 at86rf230_debugfs_remove();
1805 dev_dbg(&spi->dev, "unregistered at86rf230\n");
1810 static const struct of_device_id at86rf230_of_match[] = {
1811 { .compatible = "atmel,at86rf230", },
1812 { .compatible = "atmel,at86rf231", },
1813 { .compatible = "atmel,at86rf233", },
1814 { .compatible = "atmel,at86rf212", },
1817 MODULE_DEVICE_TABLE(of, at86rf230_of_match);
1819 static const struct spi_device_id at86rf230_device_id[] = {
1820 { .name = "at86rf230", },
1821 { .name = "at86rf231", },
1822 { .name = "at86rf233", },
1823 { .name = "at86rf212", },
1826 MODULE_DEVICE_TABLE(spi, at86rf230_device_id);
1828 static struct spi_driver at86rf230_driver = {
1829 .id_table = at86rf230_device_id,
1831 .of_match_table = of_match_ptr(at86rf230_of_match),
1832 .name = "at86rf230",
1834 .probe = at86rf230_probe,
1835 .remove = at86rf230_remove,
1838 module_spi_driver(at86rf230_driver);
1840 MODULE_DESCRIPTION("AT86RF230 Transceiver Driver");
1841 MODULE_LICENSE("GPL v2");