Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 1 | /* |
| 2 | * atusb.c - Driver for the ATUSB IEEE 802.15.4 dongle |
| 3 | * |
| 4 | * Written 2013 by Werner Almesberger <werner@almesberger.net> |
| 5 | * |
Stefan Schmidt | 151c37b | 2016-04-19 16:28:55 +0200 | [diff] [blame] | 6 | * Copyright (c) 2015 - 2016 Stefan Schmidt <stefan@datenfreihafen.org> |
| 7 | * |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation, version 2 |
| 11 | * |
| 12 | * Based on at86rf230.c and spi_atusb.c. |
| 13 | * at86rf230.c is |
| 14 | * Copyright (C) 2009 Siemens AG |
| 15 | * Written by: Dmitry Eremin-Solenikov <dmitry.baryshkov@siemens.com> |
| 16 | * |
| 17 | * spi_atusb.c is |
| 18 | * Copyright (c) 2011 Richard Sharpe <realrichardsharpe@gmail.com> |
| 19 | * Copyright (c) 2011 Stefan Schmidt <stefan@datenfreihafen.org> |
| 20 | * Copyright (c) 2011 Werner Almesberger <werner@almesberger.net> |
| 21 | * |
| 22 | * USB initialization is |
| 23 | * Copyright (c) 2013 Alexander Aring <alex.aring@gmail.com> |
| 24 | */ |
| 25 | |
| 26 | #include <linux/kernel.h> |
| 27 | #include <linux/slab.h> |
| 28 | #include <linux/module.h> |
| 29 | #include <linux/jiffies.h> |
| 30 | #include <linux/usb.h> |
| 31 | #include <linux/skbuff.h> |
| 32 | |
| 33 | #include <net/cfg802154.h> |
| 34 | #include <net/mac802154.h> |
| 35 | |
| 36 | #include "at86rf230.h" |
| 37 | #include "atusb.h" |
| 38 | |
| 39 | #define ATUSB_JEDEC_ATMEL 0x1f /* JEDEC manufacturer ID */ |
| 40 | |
| 41 | #define ATUSB_NUM_RX_URBS 4 /* allow for a bit of local latency */ |
| 42 | #define ATUSB_ALLOC_DELAY_MS 100 /* delay after failed allocation */ |
| 43 | #define ATUSB_TX_TIMEOUT_MS 200 /* on the air timeout */ |
| 44 | |
| 45 | struct atusb { |
| 46 | struct ieee802154_hw *hw; |
| 47 | struct usb_device *usb_dev; |
| 48 | int shutdown; /* non-zero if shutting down */ |
| 49 | int err; /* set by first error */ |
| 50 | |
| 51 | /* RX variables */ |
| 52 | struct delayed_work work; /* memory allocations */ |
| 53 | struct usb_anchor idle_urbs; /* URBs waiting to be submitted */ |
| 54 | struct usb_anchor rx_urbs; /* URBs waiting for reception */ |
| 55 | |
| 56 | /* TX variables */ |
| 57 | struct usb_ctrlrequest tx_dr; |
| 58 | struct urb *tx_urb; |
| 59 | struct sk_buff *tx_skb; |
| 60 | uint8_t tx_ack_seq; /* current TX ACK sequence number */ |
Stefan Schmidt | 4655156 | 2016-12-05 14:47:18 +0100 | [diff] [blame] | 61 | |
| 62 | /* Firmware variable */ |
| 63 | unsigned char fw_ver_maj; /* Firmware major version number */ |
| 64 | unsigned char fw_ver_min; /* Firmware minor version number */ |
| 65 | unsigned char fw_hw_type; /* Firmware hardware type */ |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 66 | }; |
| 67 | |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 68 | /* ----- USB commands without data ----------------------------------------- */ |
| 69 | |
| 70 | /* To reduce the number of error checks in the code, we record the first error |
| 71 | * in atusb->err and reject all subsequent requests until the error is cleared. |
| 72 | */ |
| 73 | |
| 74 | static int atusb_control_msg(struct atusb *atusb, unsigned int pipe, |
| 75 | __u8 request, __u8 requesttype, |
| 76 | __u16 value, __u16 index, |
| 77 | void *data, __u16 size, int timeout) |
| 78 | { |
| 79 | struct usb_device *usb_dev = atusb->usb_dev; |
| 80 | int ret; |
| 81 | |
| 82 | if (atusb->err) |
| 83 | return atusb->err; |
| 84 | |
| 85 | ret = usb_control_msg(usb_dev, pipe, request, requesttype, |
| 86 | value, index, data, size, timeout); |
| 87 | if (ret < 0) { |
| 88 | atusb->err = ret; |
| 89 | dev_err(&usb_dev->dev, |
| 90 | "atusb_control_msg: req 0x%02x val 0x%x idx 0x%x, error %d\n", |
| 91 | request, value, index, ret); |
| 92 | } |
| 93 | return ret; |
| 94 | } |
| 95 | |
| 96 | static int atusb_command(struct atusb *atusb, uint8_t cmd, uint8_t arg) |
| 97 | { |
| 98 | struct usb_device *usb_dev = atusb->usb_dev; |
| 99 | |
| 100 | dev_dbg(&usb_dev->dev, "atusb_command: cmd = 0x%x\n", cmd); |
| 101 | return atusb_control_msg(atusb, usb_sndctrlpipe(usb_dev, 0), |
| 102 | cmd, ATUSB_REQ_TO_DEV, arg, 0, NULL, 0, 1000); |
| 103 | } |
| 104 | |
| 105 | static int atusb_write_reg(struct atusb *atusb, uint8_t reg, uint8_t value) |
| 106 | { |
| 107 | struct usb_device *usb_dev = atusb->usb_dev; |
| 108 | |
| 109 | dev_dbg(&usb_dev->dev, "atusb_write_reg: 0x%02x <- 0x%02x\n", |
| 110 | reg, value); |
| 111 | return atusb_control_msg(atusb, usb_sndctrlpipe(usb_dev, 0), |
| 112 | ATUSB_REG_WRITE, ATUSB_REQ_TO_DEV, |
| 113 | value, reg, NULL, 0, 1000); |
| 114 | } |
| 115 | |
| 116 | static int atusb_read_reg(struct atusb *atusb, uint8_t reg) |
| 117 | { |
| 118 | struct usb_device *usb_dev = atusb->usb_dev; |
| 119 | int ret; |
Stefan Schmidt | 05a974e | 2016-12-15 18:40:14 +0100 | [diff] [blame] | 120 | uint8_t *buffer; |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 121 | uint8_t value; |
| 122 | |
Stefan Schmidt | 05a974e | 2016-12-15 18:40:14 +0100 | [diff] [blame] | 123 | buffer = kmalloc(1, GFP_KERNEL); |
| 124 | if (!buffer) |
| 125 | return -ENOMEM; |
| 126 | |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 127 | dev_dbg(&usb_dev->dev, "atusb: reg = 0x%x\n", reg); |
| 128 | ret = atusb_control_msg(atusb, usb_rcvctrlpipe(usb_dev, 0), |
| 129 | ATUSB_REG_READ, ATUSB_REQ_FROM_DEV, |
Stefan Schmidt | 05a974e | 2016-12-15 18:40:14 +0100 | [diff] [blame] | 130 | 0, reg, buffer, 1, 1000); |
| 131 | |
| 132 | if (ret >= 0) { |
| 133 | value = buffer[0]; |
| 134 | kfree(buffer); |
| 135 | return value; |
| 136 | } else { |
| 137 | kfree(buffer); |
| 138 | return ret; |
| 139 | } |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 140 | } |
| 141 | |
Stefan Schmidt | bdc7873 | 2015-05-29 10:51:25 +0200 | [diff] [blame] | 142 | static int atusb_write_subreg(struct atusb *atusb, uint8_t reg, uint8_t mask, |
| 143 | uint8_t shift, uint8_t value) |
| 144 | { |
| 145 | struct usb_device *usb_dev = atusb->usb_dev; |
| 146 | uint8_t orig, tmp; |
| 147 | int ret = 0; |
| 148 | |
| 149 | dev_dbg(&usb_dev->dev, "atusb_write_subreg: 0x%02x <- 0x%02x\n", |
| 150 | reg, value); |
| 151 | |
| 152 | orig = atusb_read_reg(atusb, reg); |
| 153 | |
| 154 | /* Write the value only into that part of the register which is allowed |
| 155 | * by the mask. All other bits stay as before. |
| 156 | */ |
| 157 | tmp = orig & ~mask; |
| 158 | tmp |= (value << shift) & mask; |
| 159 | |
| 160 | if (tmp != orig) |
| 161 | ret = atusb_write_reg(atusb, reg, tmp); |
| 162 | |
| 163 | return ret; |
| 164 | } |
| 165 | |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 166 | static int atusb_get_and_clear_error(struct atusb *atusb) |
| 167 | { |
| 168 | int err = atusb->err; |
| 169 | |
| 170 | atusb->err = 0; |
| 171 | return err; |
| 172 | } |
| 173 | |
| 174 | /* ----- skb allocation ---------------------------------------------------- */ |
| 175 | |
| 176 | #define MAX_PSDU 127 |
| 177 | #define MAX_RX_XFER (1 + MAX_PSDU + 2 + 1) /* PHR+PSDU+CRC+LQI */ |
| 178 | |
| 179 | #define SKB_ATUSB(skb) (*(struct atusb **)(skb)->cb) |
| 180 | |
| 181 | static void atusb_in(struct urb *urb); |
| 182 | |
| 183 | static int atusb_submit_rx_urb(struct atusb *atusb, struct urb *urb) |
| 184 | { |
| 185 | struct usb_device *usb_dev = atusb->usb_dev; |
| 186 | struct sk_buff *skb = urb->context; |
| 187 | int ret; |
| 188 | |
| 189 | if (!skb) { |
| 190 | skb = alloc_skb(MAX_RX_XFER, GFP_KERNEL); |
| 191 | if (!skb) { |
| 192 | dev_warn_ratelimited(&usb_dev->dev, |
| 193 | "atusb_in: can't allocate skb\n"); |
| 194 | return -ENOMEM; |
| 195 | } |
| 196 | skb_put(skb, MAX_RX_XFER); |
| 197 | SKB_ATUSB(skb) = atusb; |
| 198 | } |
| 199 | |
| 200 | usb_fill_bulk_urb(urb, usb_dev, usb_rcvbulkpipe(usb_dev, 1), |
| 201 | skb->data, MAX_RX_XFER, atusb_in, skb); |
| 202 | usb_anchor_urb(urb, &atusb->rx_urbs); |
| 203 | |
| 204 | ret = usb_submit_urb(urb, GFP_KERNEL); |
| 205 | if (ret) { |
| 206 | usb_unanchor_urb(urb); |
| 207 | kfree_skb(skb); |
| 208 | urb->context = NULL; |
| 209 | } |
| 210 | return ret; |
| 211 | } |
| 212 | |
| 213 | static void atusb_work_urbs(struct work_struct *work) |
| 214 | { |
| 215 | struct atusb *atusb = |
| 216 | container_of(to_delayed_work(work), struct atusb, work); |
| 217 | struct usb_device *usb_dev = atusb->usb_dev; |
| 218 | struct urb *urb; |
| 219 | int ret; |
| 220 | |
| 221 | if (atusb->shutdown) |
| 222 | return; |
| 223 | |
| 224 | do { |
| 225 | urb = usb_get_from_anchor(&atusb->idle_urbs); |
| 226 | if (!urb) |
| 227 | return; |
| 228 | ret = atusb_submit_rx_urb(atusb, urb); |
| 229 | } while (!ret); |
| 230 | |
| 231 | usb_anchor_urb(urb, &atusb->idle_urbs); |
| 232 | dev_warn_ratelimited(&usb_dev->dev, |
| 233 | "atusb_in: can't allocate/submit URB (%d)\n", ret); |
| 234 | schedule_delayed_work(&atusb->work, |
| 235 | msecs_to_jiffies(ATUSB_ALLOC_DELAY_MS) + 1); |
| 236 | } |
| 237 | |
| 238 | /* ----- Asynchronous USB -------------------------------------------------- */ |
| 239 | |
| 240 | static void atusb_tx_done(struct atusb *atusb, uint8_t seq) |
| 241 | { |
| 242 | struct usb_device *usb_dev = atusb->usb_dev; |
| 243 | uint8_t expect = atusb->tx_ack_seq; |
| 244 | |
| 245 | dev_dbg(&usb_dev->dev, "atusb_tx_done (0x%02x/0x%02x)\n", seq, expect); |
| 246 | if (seq == expect) { |
| 247 | /* TODO check for ifs handling in firmware */ |
| 248 | ieee802154_xmit_complete(atusb->hw, atusb->tx_skb, false); |
| 249 | } else { |
| 250 | /* TODO I experience this case when atusb has a tx complete |
| 251 | * irq before probing, we should fix the firmware it's an |
| 252 | * unlikely case now that seq == expect is then true, but can |
| 253 | * happen and fail with a tx_skb = NULL; |
| 254 | */ |
| 255 | ieee802154_wake_queue(atusb->hw); |
| 256 | if (atusb->tx_skb) |
| 257 | dev_kfree_skb_irq(atusb->tx_skb); |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | static void atusb_in_good(struct urb *urb) |
| 262 | { |
| 263 | struct usb_device *usb_dev = urb->dev; |
| 264 | struct sk_buff *skb = urb->context; |
| 265 | struct atusb *atusb = SKB_ATUSB(skb); |
| 266 | uint8_t len, lqi; |
| 267 | |
| 268 | if (!urb->actual_length) { |
| 269 | dev_dbg(&usb_dev->dev, "atusb_in: zero-sized URB ?\n"); |
| 270 | return; |
| 271 | } |
| 272 | |
| 273 | len = *skb->data; |
| 274 | |
| 275 | if (urb->actual_length == 1) { |
| 276 | atusb_tx_done(atusb, len); |
| 277 | return; |
| 278 | } |
| 279 | |
| 280 | if (len + 1 > urb->actual_length - 1) { |
| 281 | dev_dbg(&usb_dev->dev, "atusb_in: frame len %d+1 > URB %u-1\n", |
| 282 | len, urb->actual_length); |
| 283 | return; |
| 284 | } |
| 285 | |
| 286 | if (!ieee802154_is_valid_psdu_len(len)) { |
| 287 | dev_dbg(&usb_dev->dev, "atusb_in: frame corrupted\n"); |
| 288 | return; |
| 289 | } |
| 290 | |
| 291 | lqi = skb->data[len + 1]; |
| 292 | dev_dbg(&usb_dev->dev, "atusb_in: rx len %d lqi 0x%02x\n", len, lqi); |
| 293 | skb_pull(skb, 1); /* remove PHR */ |
| 294 | skb_trim(skb, len); /* get payload only */ |
| 295 | ieee802154_rx_irqsafe(atusb->hw, skb, lqi); |
| 296 | urb->context = NULL; /* skb is gone */ |
| 297 | } |
| 298 | |
| 299 | static void atusb_in(struct urb *urb) |
| 300 | { |
| 301 | struct usb_device *usb_dev = urb->dev; |
| 302 | struct sk_buff *skb = urb->context; |
| 303 | struct atusb *atusb = SKB_ATUSB(skb); |
| 304 | |
| 305 | dev_dbg(&usb_dev->dev, "atusb_in: status %d len %d\n", |
| 306 | urb->status, urb->actual_length); |
| 307 | if (urb->status) { |
| 308 | if (urb->status == -ENOENT) { /* being killed */ |
| 309 | kfree_skb(skb); |
| 310 | urb->context = NULL; |
| 311 | return; |
| 312 | } |
| 313 | dev_dbg(&usb_dev->dev, "atusb_in: URB error %d\n", urb->status); |
| 314 | } else { |
| 315 | atusb_in_good(urb); |
| 316 | } |
| 317 | |
| 318 | usb_anchor_urb(urb, &atusb->idle_urbs); |
| 319 | if (!atusb->shutdown) |
| 320 | schedule_delayed_work(&atusb->work, 0); |
| 321 | } |
| 322 | |
| 323 | /* ----- URB allocation/deallocation --------------------------------------- */ |
| 324 | |
| 325 | static void atusb_free_urbs(struct atusb *atusb) |
| 326 | { |
| 327 | struct urb *urb; |
| 328 | |
| 329 | while (1) { |
| 330 | urb = usb_get_from_anchor(&atusb->idle_urbs); |
| 331 | if (!urb) |
| 332 | break; |
Markus Elfring | 4188146 | 2015-12-10 23:44:34 +0100 | [diff] [blame] | 333 | kfree_skb(urb->context); |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 334 | usb_free_urb(urb); |
| 335 | } |
| 336 | } |
| 337 | |
| 338 | static int atusb_alloc_urbs(struct atusb *atusb, int n) |
| 339 | { |
| 340 | struct urb *urb; |
| 341 | |
| 342 | while (n) { |
| 343 | urb = usb_alloc_urb(0, GFP_KERNEL); |
| 344 | if (!urb) { |
| 345 | atusb_free_urbs(atusb); |
| 346 | return -ENOMEM; |
| 347 | } |
| 348 | usb_anchor_urb(urb, &atusb->idle_urbs); |
| 349 | n--; |
| 350 | } |
| 351 | return 0; |
| 352 | } |
| 353 | |
| 354 | /* ----- IEEE 802.15.4 interface operations -------------------------------- */ |
| 355 | |
| 356 | static void atusb_xmit_complete(struct urb *urb) |
| 357 | { |
| 358 | dev_dbg(&urb->dev->dev, "atusb_xmit urb completed"); |
| 359 | } |
| 360 | |
| 361 | static int atusb_xmit(struct ieee802154_hw *hw, struct sk_buff *skb) |
| 362 | { |
| 363 | struct atusb *atusb = hw->priv; |
| 364 | struct usb_device *usb_dev = atusb->usb_dev; |
| 365 | int ret; |
| 366 | |
| 367 | dev_dbg(&usb_dev->dev, "atusb_xmit (%d)\n", skb->len); |
| 368 | atusb->tx_skb = skb; |
| 369 | atusb->tx_ack_seq++; |
| 370 | atusb->tx_dr.wIndex = cpu_to_le16(atusb->tx_ack_seq); |
| 371 | atusb->tx_dr.wLength = cpu_to_le16(skb->len); |
| 372 | |
| 373 | usb_fill_control_urb(atusb->tx_urb, usb_dev, |
| 374 | usb_sndctrlpipe(usb_dev, 0), |
| 375 | (unsigned char *)&atusb->tx_dr, skb->data, |
| 376 | skb->len, atusb_xmit_complete, NULL); |
| 377 | ret = usb_submit_urb(atusb->tx_urb, GFP_ATOMIC); |
| 378 | dev_dbg(&usb_dev->dev, "atusb_xmit done (%d)\n", ret); |
| 379 | return ret; |
| 380 | } |
| 381 | |
| 382 | static int atusb_channel(struct ieee802154_hw *hw, u8 page, u8 channel) |
| 383 | { |
| 384 | struct atusb *atusb = hw->priv; |
| 385 | int ret; |
| 386 | |
Alexander Aring | 3896129 | 2016-07-06 23:32:29 +0200 | [diff] [blame] | 387 | ret = atusb_write_subreg(atusb, SR_CHANNEL, channel); |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 388 | if (ret < 0) |
| 389 | return ret; |
| 390 | msleep(1); /* @@@ ugly synchronization */ |
| 391 | return 0; |
| 392 | } |
| 393 | |
| 394 | static int atusb_ed(struct ieee802154_hw *hw, u8 *level) |
| 395 | { |
Stefan Schmidt | 2d8cbd3 | 2015-05-21 16:51:37 +0200 | [diff] [blame] | 396 | BUG_ON(!level); |
| 397 | *level = 0xbe; |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 398 | return 0; |
| 399 | } |
| 400 | |
| 401 | static int atusb_set_hw_addr_filt(struct ieee802154_hw *hw, |
| 402 | struct ieee802154_hw_addr_filt *filt, |
| 403 | unsigned long changed) |
| 404 | { |
| 405 | struct atusb *atusb = hw->priv; |
| 406 | struct device *dev = &atusb->usb_dev->dev; |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 407 | |
| 408 | if (changed & IEEE802154_AFILT_SADDR_CHANGED) { |
| 409 | u16 addr = le16_to_cpu(filt->short_addr); |
| 410 | |
| 411 | dev_vdbg(dev, "atusb_set_hw_addr_filt called for saddr\n"); |
| 412 | atusb_write_reg(atusb, RG_SHORT_ADDR_0, addr); |
| 413 | atusb_write_reg(atusb, RG_SHORT_ADDR_1, addr >> 8); |
| 414 | } |
| 415 | |
| 416 | if (changed & IEEE802154_AFILT_PANID_CHANGED) { |
| 417 | u16 pan = le16_to_cpu(filt->pan_id); |
| 418 | |
| 419 | dev_vdbg(dev, "atusb_set_hw_addr_filt called for pan id\n"); |
| 420 | atusb_write_reg(atusb, RG_PAN_ID_0, pan); |
| 421 | atusb_write_reg(atusb, RG_PAN_ID_1, pan >> 8); |
| 422 | } |
| 423 | |
| 424 | if (changed & IEEE802154_AFILT_IEEEADDR_CHANGED) { |
| 425 | u8 i, addr[IEEE802154_EXTENDED_ADDR_LEN]; |
| 426 | |
| 427 | memcpy(addr, &filt->ieee_addr, IEEE802154_EXTENDED_ADDR_LEN); |
| 428 | dev_vdbg(dev, "atusb_set_hw_addr_filt called for IEEE addr\n"); |
| 429 | for (i = 0; i < 8; i++) |
| 430 | atusb_write_reg(atusb, RG_IEEE_ADDR_0 + i, addr[i]); |
| 431 | } |
| 432 | |
| 433 | if (changed & IEEE802154_AFILT_PANC_CHANGED) { |
| 434 | dev_vdbg(dev, |
| 435 | "atusb_set_hw_addr_filt called for panc change\n"); |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 436 | if (filt->pan_coord) |
Stefan Schmidt | bdc7873 | 2015-05-29 10:51:25 +0200 | [diff] [blame] | 437 | atusb_write_subreg(atusb, SR_AACK_I_AM_COORD, 1); |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 438 | else |
Stefan Schmidt | bdc7873 | 2015-05-29 10:51:25 +0200 | [diff] [blame] | 439 | atusb_write_subreg(atusb, SR_AACK_I_AM_COORD, 0); |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | return atusb_get_and_clear_error(atusb); |
| 443 | } |
| 444 | |
| 445 | static int atusb_start(struct ieee802154_hw *hw) |
| 446 | { |
| 447 | struct atusb *atusb = hw->priv; |
| 448 | struct usb_device *usb_dev = atusb->usb_dev; |
| 449 | int ret; |
| 450 | |
| 451 | dev_dbg(&usb_dev->dev, "atusb_start\n"); |
| 452 | schedule_delayed_work(&atusb->work, 0); |
| 453 | atusb_command(atusb, ATUSB_RX_MODE, 1); |
| 454 | ret = atusb_get_and_clear_error(atusb); |
| 455 | if (ret < 0) |
| 456 | usb_kill_anchored_urbs(&atusb->idle_urbs); |
| 457 | return ret; |
| 458 | } |
| 459 | |
| 460 | static void atusb_stop(struct ieee802154_hw *hw) |
| 461 | { |
| 462 | struct atusb *atusb = hw->priv; |
| 463 | struct usb_device *usb_dev = atusb->usb_dev; |
| 464 | |
| 465 | dev_dbg(&usb_dev->dev, "atusb_stop\n"); |
| 466 | usb_kill_anchored_urbs(&atusb->idle_urbs); |
| 467 | atusb_command(atusb, ATUSB_RX_MODE, 0); |
| 468 | atusb_get_and_clear_error(atusb); |
| 469 | } |
| 470 | |
Stefan Schmidt | 8702cb0 | 2015-05-29 10:51:26 +0200 | [diff] [blame] | 471 | #define ATUSB_MAX_TX_POWERS 0xF |
| 472 | static const s32 atusb_powers[ATUSB_MAX_TX_POWERS + 1] = { |
| 473 | 300, 280, 230, 180, 130, 70, 0, -100, -200, -300, -400, -500, -700, |
| 474 | -900, -1200, -1700, |
| 475 | }; |
| 476 | |
| 477 | static int |
| 478 | atusb_set_txpower(struct ieee802154_hw *hw, s32 mbm) |
| 479 | { |
| 480 | struct atusb *atusb = hw->priv; |
| 481 | u32 i; |
| 482 | |
| 483 | for (i = 0; i < hw->phy->supported.tx_powers_size; i++) { |
| 484 | if (hw->phy->supported.tx_powers[i] == mbm) |
| 485 | return atusb_write_subreg(atusb, SR_TX_PWR_23X, i); |
| 486 | } |
| 487 | |
| 488 | return -EINVAL; |
| 489 | } |
| 490 | |
Stefan Schmidt | 0f4715c | 2016-04-19 16:28:53 +0200 | [diff] [blame] | 491 | #define ATUSB_MAX_ED_LEVELS 0xF |
| 492 | static const s32 atusb_ed_levels[ATUSB_MAX_ED_LEVELS + 1] = { |
| 493 | -9100, -8900, -8700, -8500, -8300, -8100, -7900, -7700, -7500, -7300, |
| 494 | -7100, -6900, -6700, -6500, -6300, -6100, |
| 495 | }; |
| 496 | |
| 497 | static int |
Stefan Schmidt | 308dbb7 | 2016-04-19 16:28:54 +0200 | [diff] [blame] | 498 | atusb_set_cca_mode(struct ieee802154_hw *hw, const struct wpan_phy_cca *cca) |
| 499 | { |
| 500 | struct atusb *atusb = hw->priv; |
| 501 | u8 val; |
| 502 | |
| 503 | /* mapping 802.15.4 to driver spec */ |
| 504 | switch (cca->mode) { |
| 505 | case NL802154_CCA_ENERGY: |
| 506 | val = 1; |
| 507 | break; |
| 508 | case NL802154_CCA_CARRIER: |
| 509 | val = 2; |
| 510 | break; |
| 511 | case NL802154_CCA_ENERGY_CARRIER: |
| 512 | switch (cca->opt) { |
| 513 | case NL802154_CCA_OPT_ENERGY_CARRIER_AND: |
| 514 | val = 3; |
| 515 | break; |
| 516 | case NL802154_CCA_OPT_ENERGY_CARRIER_OR: |
| 517 | val = 0; |
| 518 | break; |
| 519 | default: |
| 520 | return -EINVAL; |
| 521 | } |
| 522 | break; |
| 523 | default: |
| 524 | return -EINVAL; |
| 525 | } |
| 526 | |
| 527 | return atusb_write_subreg(atusb, SR_CCA_MODE, val); |
| 528 | } |
| 529 | |
| 530 | static int |
Stefan Schmidt | 0f4715c | 2016-04-19 16:28:53 +0200 | [diff] [blame] | 531 | atusb_set_cca_ed_level(struct ieee802154_hw *hw, s32 mbm) |
| 532 | { |
| 533 | struct atusb *atusb = hw->priv; |
| 534 | u32 i; |
| 535 | |
| 536 | for (i = 0; i < hw->phy->supported.cca_ed_levels_size; i++) { |
| 537 | if (hw->phy->supported.cca_ed_levels[i] == mbm) |
| 538 | return atusb_write_subreg(atusb, SR_CCA_ED_THRES, i); |
| 539 | } |
| 540 | |
| 541 | return -EINVAL; |
| 542 | } |
| 543 | |
Stefan Schmidt | c61c9bd | 2015-05-29 10:51:27 +0200 | [diff] [blame] | 544 | static int |
Stefan Schmidt | fb7c579 | 2016-04-19 16:28:52 +0200 | [diff] [blame] | 545 | atusb_set_csma_params(struct ieee802154_hw *hw, u8 min_be, u8 max_be, u8 retries) |
| 546 | { |
| 547 | struct atusb *atusb = hw->priv; |
| 548 | int ret; |
| 549 | |
| 550 | ret = atusb_write_subreg(atusb, SR_MIN_BE, min_be); |
| 551 | if (ret) |
| 552 | return ret; |
| 553 | |
| 554 | ret = atusb_write_subreg(atusb, SR_MAX_BE, max_be); |
| 555 | if (ret) |
| 556 | return ret; |
| 557 | |
| 558 | return atusb_write_subreg(atusb, SR_MAX_CSMA_RETRIES, retries); |
| 559 | } |
| 560 | |
| 561 | static int |
Stefan Schmidt | 5d82288 | 2016-12-05 14:47:20 +0100 | [diff] [blame] | 562 | atusb_set_frame_retries(struct ieee802154_hw *hw, s8 retries) |
| 563 | { |
| 564 | struct atusb *atusb = hw->priv; |
Stefan Schmidt | 5d82288 | 2016-12-05 14:47:20 +0100 | [diff] [blame] | 565 | |
| 566 | return atusb_write_subreg(atusb, SR_MAX_FRAME_RETRIES, retries); |
| 567 | } |
| 568 | |
| 569 | static int |
Stefan Schmidt | c61c9bd | 2015-05-29 10:51:27 +0200 | [diff] [blame] | 570 | atusb_set_promiscuous_mode(struct ieee802154_hw *hw, const bool on) |
| 571 | { |
| 572 | struct atusb *atusb = hw->priv; |
| 573 | int ret; |
| 574 | |
| 575 | if (on) { |
| 576 | ret = atusb_write_subreg(atusb, SR_AACK_DIS_ACK, 1); |
| 577 | if (ret < 0) |
| 578 | return ret; |
| 579 | |
| 580 | ret = atusb_write_subreg(atusb, SR_AACK_PROM_MODE, 1); |
| 581 | if (ret < 0) |
| 582 | return ret; |
| 583 | } else { |
| 584 | ret = atusb_write_subreg(atusb, SR_AACK_PROM_MODE, 0); |
| 585 | if (ret < 0) |
| 586 | return ret; |
| 587 | |
| 588 | ret = atusb_write_subreg(atusb, SR_AACK_DIS_ACK, 0); |
| 589 | if (ret < 0) |
| 590 | return ret; |
| 591 | } |
| 592 | |
| 593 | return 0; |
| 594 | } |
| 595 | |
Bhumika Goyal | e796f49 | 2016-11-22 02:00:14 +0530 | [diff] [blame] | 596 | static const struct ieee802154_ops atusb_ops = { |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 597 | .owner = THIS_MODULE, |
| 598 | .xmit_async = atusb_xmit, |
| 599 | .ed = atusb_ed, |
| 600 | .set_channel = atusb_channel, |
| 601 | .start = atusb_start, |
| 602 | .stop = atusb_stop, |
| 603 | .set_hw_addr_filt = atusb_set_hw_addr_filt, |
Stefan Schmidt | 8702cb0 | 2015-05-29 10:51:26 +0200 | [diff] [blame] | 604 | .set_txpower = atusb_set_txpower, |
Stefan Schmidt | 308dbb7 | 2016-04-19 16:28:54 +0200 | [diff] [blame] | 605 | .set_cca_mode = atusb_set_cca_mode, |
Stefan Schmidt | 0f4715c | 2016-04-19 16:28:53 +0200 | [diff] [blame] | 606 | .set_cca_ed_level = atusb_set_cca_ed_level, |
Stefan Schmidt | fb7c579 | 2016-04-19 16:28:52 +0200 | [diff] [blame] | 607 | .set_csma_params = atusb_set_csma_params, |
Stefan Schmidt | 5d82288 | 2016-12-05 14:47:20 +0100 | [diff] [blame] | 608 | .set_frame_retries = atusb_set_frame_retries, |
Stefan Schmidt | c61c9bd | 2015-05-29 10:51:27 +0200 | [diff] [blame] | 609 | .set_promiscuous_mode = atusb_set_promiscuous_mode, |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 610 | }; |
| 611 | |
| 612 | /* ----- Firmware and chip version information ----------------------------- */ |
| 613 | |
| 614 | static int atusb_get_and_show_revision(struct atusb *atusb) |
| 615 | { |
| 616 | struct usb_device *usb_dev = atusb->usb_dev; |
Stefan Schmidt | 05a974e | 2016-12-15 18:40:14 +0100 | [diff] [blame] | 617 | unsigned char *buffer; |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 618 | int ret; |
| 619 | |
Stefan Schmidt | 05a974e | 2016-12-15 18:40:14 +0100 | [diff] [blame] | 620 | buffer = kmalloc(3, GFP_KERNEL); |
| 621 | if (!buffer) |
| 622 | return -ENOMEM; |
| 623 | |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 624 | /* Get a couple of the ATMega Firmware values */ |
| 625 | ret = atusb_control_msg(atusb, usb_rcvctrlpipe(usb_dev, 0), |
| 626 | ATUSB_ID, ATUSB_REQ_FROM_DEV, 0, 0, |
| 627 | buffer, 3, 1000); |
Stefan Schmidt | 4655156 | 2016-12-05 14:47:18 +0100 | [diff] [blame] | 628 | if (ret >= 0) { |
| 629 | atusb->fw_ver_maj = buffer[0]; |
| 630 | atusb->fw_ver_min = buffer[1]; |
| 631 | atusb->fw_hw_type = buffer[2]; |
| 632 | |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 633 | dev_info(&usb_dev->dev, |
| 634 | "Firmware: major: %u, minor: %u, hardware type: %u\n", |
Stefan Schmidt | 4655156 | 2016-12-05 14:47:18 +0100 | [diff] [blame] | 635 | atusb->fw_ver_maj, atusb->fw_ver_min, atusb->fw_hw_type); |
| 636 | } |
| 637 | if (atusb->fw_ver_maj == 0 && atusb->fw_ver_min < 2) { |
Stefan Schmidt | 33a238a | 2015-05-21 16:51:35 +0200 | [diff] [blame] | 638 | dev_info(&usb_dev->dev, |
Stefan Schmidt | 4655156 | 2016-12-05 14:47:18 +0100 | [diff] [blame] | 639 | "Firmware version (%u.%u) predates our first public release.", |
| 640 | atusb->fw_ver_maj, atusb->fw_ver_min); |
Stefan Schmidt | 33a238a | 2015-05-21 16:51:35 +0200 | [diff] [blame] | 641 | dev_info(&usb_dev->dev, "Please update to version 0.2 or newer"); |
| 642 | } |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 643 | |
Stefan Schmidt | 05a974e | 2016-12-15 18:40:14 +0100 | [diff] [blame] | 644 | kfree(buffer); |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 645 | return ret; |
| 646 | } |
| 647 | |
| 648 | static int atusb_get_and_show_build(struct atusb *atusb) |
| 649 | { |
| 650 | struct usb_device *usb_dev = atusb->usb_dev; |
Stefan Schmidt | 05a974e | 2016-12-15 18:40:14 +0100 | [diff] [blame] | 651 | char *build; |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 652 | int ret; |
| 653 | |
Stefan Schmidt | 05a974e | 2016-12-15 18:40:14 +0100 | [diff] [blame] | 654 | build = kmalloc(ATUSB_BUILD_SIZE + 1, GFP_KERNEL); |
| 655 | if (!build) |
| 656 | return -ENOMEM; |
| 657 | |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 658 | ret = atusb_control_msg(atusb, usb_rcvctrlpipe(usb_dev, 0), |
| 659 | ATUSB_BUILD, ATUSB_REQ_FROM_DEV, 0, 0, |
| 660 | build, ATUSB_BUILD_SIZE, 1000); |
| 661 | if (ret >= 0) { |
| 662 | build[ret] = 0; |
| 663 | dev_info(&usb_dev->dev, "Firmware: build %s\n", build); |
| 664 | } |
| 665 | |
Stefan Schmidt | 05a974e | 2016-12-15 18:40:14 +0100 | [diff] [blame] | 666 | kfree(build); |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 667 | return ret; |
| 668 | } |
| 669 | |
| 670 | static int atusb_get_and_show_chip(struct atusb *atusb) |
| 671 | { |
| 672 | struct usb_device *usb_dev = atusb->usb_dev; |
| 673 | uint8_t man_id_0, man_id_1, part_num, version_num; |
Alexander Aring | 9def9af | 2015-09-05 12:27:59 +0200 | [diff] [blame] | 674 | const char *chip; |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 675 | |
| 676 | man_id_0 = atusb_read_reg(atusb, RG_MAN_ID_0); |
| 677 | man_id_1 = atusb_read_reg(atusb, RG_MAN_ID_1); |
| 678 | part_num = atusb_read_reg(atusb, RG_PART_NUM); |
| 679 | version_num = atusb_read_reg(atusb, RG_VERSION_NUM); |
| 680 | |
| 681 | if (atusb->err) |
| 682 | return atusb->err; |
| 683 | |
| 684 | if ((man_id_1 << 8 | man_id_0) != ATUSB_JEDEC_ATMEL) { |
| 685 | dev_err(&usb_dev->dev, |
| 686 | "non-Atmel transceiver xxxx%02x%02x\n", |
| 687 | man_id_1, man_id_0); |
| 688 | goto fail; |
| 689 | } |
Alexander Aring | 9def9af | 2015-09-05 12:27:59 +0200 | [diff] [blame] | 690 | |
| 691 | switch (part_num) { |
| 692 | case 2: |
| 693 | chip = "AT86RF230"; |
| 694 | break; |
| 695 | case 3: |
| 696 | chip = "AT86RF231"; |
| 697 | break; |
| 698 | default: |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 699 | dev_err(&usb_dev->dev, |
| 700 | "unexpected transceiver, part 0x%02x version 0x%02x\n", |
| 701 | part_num, version_num); |
| 702 | goto fail; |
| 703 | } |
| 704 | |
Alexander Aring | 9def9af | 2015-09-05 12:27:59 +0200 | [diff] [blame] | 705 | dev_info(&usb_dev->dev, "ATUSB: %s version %d\n", chip, version_num); |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 706 | |
| 707 | return 0; |
| 708 | |
| 709 | fail: |
| 710 | atusb->err = -ENODEV; |
| 711 | return -ENODEV; |
| 712 | } |
| 713 | |
Stefan Schmidt | 6cc33eb | 2016-12-05 14:47:19 +0100 | [diff] [blame] | 714 | static int atusb_set_extended_addr(struct atusb *atusb) |
| 715 | { |
| 716 | struct usb_device *usb_dev = atusb->usb_dev; |
Stefan Schmidt | 5eb35a6c | 2016-12-15 18:40:16 +0100 | [diff] [blame] | 717 | unsigned char *buffer; |
Stefan Schmidt | 6cc33eb | 2016-12-05 14:47:19 +0100 | [diff] [blame] | 718 | __le64 extended_addr; |
| 719 | u64 addr; |
| 720 | int ret; |
| 721 | |
| 722 | /* Firmware versions before 0.3 do not support the EUI64_READ command. |
| 723 | * Just use a random address and be done */ |
| 724 | if (atusb->fw_ver_maj == 0 && atusb->fw_ver_min < 3) { |
| 725 | ieee802154_random_extended_addr(&atusb->hw->phy->perm_extended_addr); |
| 726 | return 0; |
| 727 | } |
| 728 | |
Stefan Schmidt | 5eb35a6c | 2016-12-15 18:40:16 +0100 | [diff] [blame] | 729 | buffer = kmalloc(IEEE802154_EXTENDED_ADDR_LEN, GFP_KERNEL); |
| 730 | if (!buffer) |
| 731 | return -ENOMEM; |
| 732 | |
Stefan Schmidt | 6cc33eb | 2016-12-05 14:47:19 +0100 | [diff] [blame] | 733 | /* Firmware is new enough so we fetch the address from EEPROM */ |
| 734 | ret = atusb_control_msg(atusb, usb_rcvctrlpipe(usb_dev, 0), |
| 735 | ATUSB_EUI64_READ, ATUSB_REQ_FROM_DEV, 0, 0, |
| 736 | buffer, IEEE802154_EXTENDED_ADDR_LEN, 1000); |
Stefan Schmidt | 2fd2b55 | 2016-12-15 18:40:15 +0100 | [diff] [blame] | 737 | if (ret < 0) { |
| 738 | dev_err(&usb_dev->dev, "failed to fetch extended address, random address set\n"); |
| 739 | ieee802154_random_extended_addr(&atusb->hw->phy->perm_extended_addr); |
Stefan Schmidt | 5eb35a6c | 2016-12-15 18:40:16 +0100 | [diff] [blame] | 740 | kfree(buffer); |
Stefan Schmidt | 2fd2b55 | 2016-12-15 18:40:15 +0100 | [diff] [blame] | 741 | return ret; |
| 742 | } |
Stefan Schmidt | 6cc33eb | 2016-12-05 14:47:19 +0100 | [diff] [blame] | 743 | |
| 744 | memcpy(&extended_addr, buffer, IEEE802154_EXTENDED_ADDR_LEN); |
| 745 | /* Check if read address is not empty and the unicast bit is set correctly */ |
| 746 | if (!ieee802154_is_valid_extended_unicast_addr(extended_addr)) { |
| 747 | dev_info(&usb_dev->dev, "no permanent extended address found, random address set\n"); |
| 748 | ieee802154_random_extended_addr(&atusb->hw->phy->perm_extended_addr); |
| 749 | } else { |
| 750 | atusb->hw->phy->perm_extended_addr = extended_addr; |
| 751 | addr = swab64((__force u64)atusb->hw->phy->perm_extended_addr); |
| 752 | dev_info(&usb_dev->dev, "Read permanent extended address %8phC from device\n", |
| 753 | &addr); |
| 754 | } |
| 755 | |
Stefan Schmidt | 5eb35a6c | 2016-12-15 18:40:16 +0100 | [diff] [blame] | 756 | kfree(buffer); |
Stefan Schmidt | 6cc33eb | 2016-12-05 14:47:19 +0100 | [diff] [blame] | 757 | return ret; |
| 758 | } |
| 759 | |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 760 | /* ----- Setup ------------------------------------------------------------- */ |
| 761 | |
| 762 | static int atusb_probe(struct usb_interface *interface, |
| 763 | const struct usb_device_id *id) |
| 764 | { |
| 765 | struct usb_device *usb_dev = interface_to_usbdev(interface); |
| 766 | struct ieee802154_hw *hw; |
| 767 | struct atusb *atusb = NULL; |
| 768 | int ret = -ENOMEM; |
| 769 | |
| 770 | hw = ieee802154_alloc_hw(sizeof(struct atusb), &atusb_ops); |
| 771 | if (!hw) |
| 772 | return -ENOMEM; |
| 773 | |
| 774 | atusb = hw->priv; |
| 775 | atusb->hw = hw; |
| 776 | atusb->usb_dev = usb_get_dev(usb_dev); |
| 777 | usb_set_intfdata(interface, atusb); |
| 778 | |
| 779 | atusb->shutdown = 0; |
| 780 | atusb->err = 0; |
| 781 | INIT_DELAYED_WORK(&atusb->work, atusb_work_urbs); |
| 782 | init_usb_anchor(&atusb->idle_urbs); |
| 783 | init_usb_anchor(&atusb->rx_urbs); |
| 784 | |
| 785 | if (atusb_alloc_urbs(atusb, ATUSB_NUM_RX_URBS)) |
| 786 | goto fail; |
| 787 | |
| 788 | atusb->tx_dr.bRequestType = ATUSB_REQ_TO_DEV; |
| 789 | atusb->tx_dr.bRequest = ATUSB_TX; |
| 790 | atusb->tx_dr.wValue = cpu_to_le16(0); |
| 791 | |
| 792 | atusb->tx_urb = usb_alloc_urb(0, GFP_ATOMIC); |
| 793 | if (!atusb->tx_urb) |
| 794 | goto fail; |
| 795 | |
| 796 | hw->parent = &usb_dev->dev; |
Stefan Schmidt | f1a71886 | 2015-05-21 16:51:36 +0200 | [diff] [blame] | 797 | hw->flags = IEEE802154_HW_TX_OMIT_CKSUM | IEEE802154_HW_AFILT | |
Stefan Schmidt | 8e38b7d | 2017-01-02 16:58:13 +0100 | [diff] [blame] | 798 | IEEE802154_HW_PROMISCUOUS | IEEE802154_HW_CSMA_PARAMS; |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 799 | |
Stefan Schmidt | 308dbb7 | 2016-04-19 16:28:54 +0200 | [diff] [blame] | 800 | hw->phy->flags = WPAN_PHY_FLAG_TXPOWER | WPAN_PHY_FLAG_CCA_ED_LEVEL | |
| 801 | WPAN_PHY_FLAG_CCA_MODE; |
| 802 | |
| 803 | hw->phy->supported.cca_modes = BIT(NL802154_CCA_ENERGY) | |
| 804 | BIT(NL802154_CCA_CARRIER) | BIT(NL802154_CCA_ENERGY_CARRIER); |
| 805 | hw->phy->supported.cca_opts = BIT(NL802154_CCA_OPT_ENERGY_CARRIER_AND) | |
| 806 | BIT(NL802154_CCA_OPT_ENERGY_CARRIER_OR); |
Stefan Schmidt | 0f4715c | 2016-04-19 16:28:53 +0200 | [diff] [blame] | 807 | |
| 808 | hw->phy->supported.cca_ed_levels = atusb_ed_levels; |
| 809 | hw->phy->supported.cca_ed_levels_size = ARRAY_SIZE(atusb_ed_levels); |
Stefan Schmidt | 8702cb0 | 2015-05-29 10:51:26 +0200 | [diff] [blame] | 810 | |
Stefan Schmidt | 308dbb7 | 2016-04-19 16:28:54 +0200 | [diff] [blame] | 811 | hw->phy->cca.mode = NL802154_CCA_ENERGY; |
| 812 | |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 813 | hw->phy->current_page = 0; |
| 814 | hw->phy->current_channel = 11; /* reset default */ |
| 815 | hw->phy->supported.channels[0] = 0x7FFF800; |
Stefan Schmidt | 8702cb0 | 2015-05-29 10:51:26 +0200 | [diff] [blame] | 816 | hw->phy->supported.tx_powers = atusb_powers; |
| 817 | hw->phy->supported.tx_powers_size = ARRAY_SIZE(atusb_powers); |
| 818 | hw->phy->transmit_power = hw->phy->supported.tx_powers[0]; |
Stefan Schmidt | 0f4715c | 2016-04-19 16:28:53 +0200 | [diff] [blame] | 819 | hw->phy->cca_ed_level = hw->phy->supported.cca_ed_levels[7]; |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 820 | |
| 821 | atusb_command(atusb, ATUSB_RF_RESET, 0); |
| 822 | atusb_get_and_show_chip(atusb); |
| 823 | atusb_get_and_show_revision(atusb); |
| 824 | atusb_get_and_show_build(atusb); |
Stefan Schmidt | 6cc33eb | 2016-12-05 14:47:19 +0100 | [diff] [blame] | 825 | atusb_set_extended_addr(atusb); |
| 826 | |
Stefan Schmidt | 8e38b7d | 2017-01-02 16:58:13 +0100 | [diff] [blame] | 827 | if (atusb->fw_ver_maj >= 0 && atusb->fw_ver_min >= 3) |
| 828 | hw->flags |= IEEE802154_HW_FRAME_RETRIES; |
| 829 | |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 830 | ret = atusb_get_and_clear_error(atusb); |
| 831 | if (ret) { |
| 832 | dev_err(&atusb->usb_dev->dev, |
| 833 | "%s: initialization failed, error = %d\n", |
| 834 | __func__, ret); |
| 835 | goto fail; |
| 836 | } |
| 837 | |
| 838 | ret = ieee802154_register_hw(hw); |
| 839 | if (ret) |
| 840 | goto fail; |
| 841 | |
| 842 | /* If we just powered on, we're now in P_ON and need to enter TRX_OFF |
| 843 | * explicitly. Any resets after that will send us straight to TRX_OFF, |
| 844 | * making the command below redundant. |
| 845 | */ |
| 846 | atusb_write_reg(atusb, RG_TRX_STATE, STATE_FORCE_TRX_OFF); |
| 847 | msleep(1); /* reset => TRX_OFF, tTR13 = 37 us */ |
| 848 | |
| 849 | #if 0 |
| 850 | /* Calculating the maximum time available to empty the frame buffer |
| 851 | * on reception: |
| 852 | * |
| 853 | * According to [1], the inter-frame gap is |
| 854 | * R * 20 * 16 us + 128 us |
| 855 | * where R is a random number from 0 to 7. Furthermore, we have 20 bit |
| 856 | * times (80 us at 250 kbps) of SHR of the next frame before the |
| 857 | * transceiver begins storing data in the frame buffer. |
| 858 | * |
| 859 | * This yields a minimum time of 208 us between the last data of a |
| 860 | * frame and the first data of the next frame. This time is further |
| 861 | * reduced by interrupt latency in the atusb firmware. |
| 862 | * |
| 863 | * atusb currently needs about 500 us to retrieve a maximum-sized |
| 864 | * frame. We therefore have to allow reception of a new frame to begin |
| 865 | * while we retrieve the previous frame. |
| 866 | * |
| 867 | * [1] "JN-AN-1035 Calculating data rates in an IEEE 802.15.4-based |
| 868 | * network", Jennic 2006. |
| 869 | * http://www.jennic.com/download_file.php?supportFile=JN-AN-1035%20Calculating%20802-15-4%20Data%20Rates-1v0.pdf |
| 870 | */ |
| 871 | |
Stefan Schmidt | bdc7873 | 2015-05-29 10:51:25 +0200 | [diff] [blame] | 872 | atusb_write_subreg(atusb, SR_RX_SAFE_MODE, 1); |
Alexander Aring | 7490b00 | 2015-05-17 21:44:57 +0200 | [diff] [blame] | 873 | #endif |
| 874 | atusb_write_reg(atusb, RG_IRQ_MASK, 0xff); |
| 875 | |
| 876 | ret = atusb_get_and_clear_error(atusb); |
| 877 | if (!ret) |
| 878 | return 0; |
| 879 | |
| 880 | dev_err(&atusb->usb_dev->dev, |
| 881 | "%s: setup failed, error = %d\n", |
| 882 | __func__, ret); |
| 883 | |
| 884 | ieee802154_unregister_hw(hw); |
| 885 | fail: |
| 886 | atusb_free_urbs(atusb); |
| 887 | usb_kill_urb(atusb->tx_urb); |
| 888 | usb_free_urb(atusb->tx_urb); |
| 889 | usb_put_dev(usb_dev); |
| 890 | ieee802154_free_hw(hw); |
| 891 | return ret; |
| 892 | } |
| 893 | |
| 894 | static void atusb_disconnect(struct usb_interface *interface) |
| 895 | { |
| 896 | struct atusb *atusb = usb_get_intfdata(interface); |
| 897 | |
| 898 | dev_dbg(&atusb->usb_dev->dev, "atusb_disconnect\n"); |
| 899 | |
| 900 | atusb->shutdown = 1; |
| 901 | cancel_delayed_work_sync(&atusb->work); |
| 902 | |
| 903 | usb_kill_anchored_urbs(&atusb->rx_urbs); |
| 904 | atusb_free_urbs(atusb); |
| 905 | usb_kill_urb(atusb->tx_urb); |
| 906 | usb_free_urb(atusb->tx_urb); |
| 907 | |
| 908 | ieee802154_unregister_hw(atusb->hw); |
| 909 | |
| 910 | ieee802154_free_hw(atusb->hw); |
| 911 | |
| 912 | usb_set_intfdata(interface, NULL); |
| 913 | usb_put_dev(atusb->usb_dev); |
| 914 | |
| 915 | pr_debug("atusb_disconnect done\n"); |
| 916 | } |
| 917 | |
| 918 | /* The devices we work with */ |
| 919 | static const struct usb_device_id atusb_device_table[] = { |
| 920 | { |
| 921 | .match_flags = USB_DEVICE_ID_MATCH_DEVICE | |
| 922 | USB_DEVICE_ID_MATCH_INT_INFO, |
| 923 | .idVendor = ATUSB_VENDOR_ID, |
| 924 | .idProduct = ATUSB_PRODUCT_ID, |
| 925 | .bInterfaceClass = USB_CLASS_VENDOR_SPEC |
| 926 | }, |
| 927 | /* end with null element */ |
| 928 | {} |
| 929 | }; |
| 930 | MODULE_DEVICE_TABLE(usb, atusb_device_table); |
| 931 | |
| 932 | static struct usb_driver atusb_driver = { |
| 933 | .name = "atusb", |
| 934 | .probe = atusb_probe, |
| 935 | .disconnect = atusb_disconnect, |
| 936 | .id_table = atusb_device_table, |
| 937 | }; |
| 938 | module_usb_driver(atusb_driver); |
| 939 | |
| 940 | MODULE_AUTHOR("Alexander Aring <alex.aring@gmail.com>"); |
| 941 | MODULE_AUTHOR("Richard Sharpe <realrichardsharpe@gmail.com>"); |
| 942 | MODULE_AUTHOR("Stefan Schmidt <stefan@datenfreihafen.org>"); |
| 943 | MODULE_AUTHOR("Werner Almesberger <werner@almesberger.net>"); |
| 944 | MODULE_DESCRIPTION("ATUSB IEEE 802.15.4 Driver"); |
| 945 | MODULE_LICENSE("GPL"); |