linux/drivers/media/usb/airspy/airspy.c
<<
>>
Prefs
   1// SPDX-License-Identifier: GPL-2.0-or-later
   2/*
   3 * AirSpy SDR driver
   4 *
   5 * Copyright (C) 2014 Antti Palosaari <crope@iki.fi>
   6 */
   7
   8#include <linux/module.h>
   9#include <linux/slab.h>
  10#include <linux/usb.h>
  11#include <media/v4l2-device.h>
  12#include <media/v4l2-ioctl.h>
  13#include <media/v4l2-ctrls.h>
  14#include <media/v4l2-event.h>
  15#include <media/videobuf2-v4l2.h>
  16#include <media/videobuf2-vmalloc.h>
  17
  18/* AirSpy USB API commands (from AirSpy Library) */
  19enum {
  20        CMD_INVALID                       = 0x00,
  21        CMD_RECEIVER_MODE                 = 0x01,
  22        CMD_SI5351C_WRITE                 = 0x02,
  23        CMD_SI5351C_READ                  = 0x03,
  24        CMD_R820T_WRITE                   = 0x04,
  25        CMD_R820T_READ                    = 0x05,
  26        CMD_SPIFLASH_ERASE                = 0x06,
  27        CMD_SPIFLASH_WRITE                = 0x07,
  28        CMD_SPIFLASH_READ                 = 0x08,
  29        CMD_BOARD_ID_READ                 = 0x09,
  30        CMD_VERSION_STRING_READ           = 0x0a,
  31        CMD_BOARD_PARTID_SERIALNO_READ    = 0x0b,
  32        CMD_SET_SAMPLE_RATE               = 0x0c,
  33        CMD_SET_FREQ                      = 0x0d,
  34        CMD_SET_LNA_GAIN                  = 0x0e,
  35        CMD_SET_MIXER_GAIN                = 0x0f,
  36        CMD_SET_VGA_GAIN                  = 0x10,
  37        CMD_SET_LNA_AGC                   = 0x11,
  38        CMD_SET_MIXER_AGC                 = 0x12,
  39        CMD_SET_PACKING                   = 0x13,
  40};
  41
  42/*
  43 *       bEndpointAddress     0x81  EP 1 IN
  44 *         Transfer Type            Bulk
  45 *       wMaxPacketSize     0x0200  1x 512 bytes
  46 */
  47#define MAX_BULK_BUFS            (6)
  48#define BULK_BUFFER_SIZE         (128 * 512)
  49
  50static const struct v4l2_frequency_band bands[] = {
  51        {
  52                .tuner = 0,
  53                .type = V4L2_TUNER_ADC,
  54                .index = 0,
  55                .capability = V4L2_TUNER_CAP_1HZ | V4L2_TUNER_CAP_FREQ_BANDS,
  56                .rangelow   = 20000000,
  57                .rangehigh  = 20000000,
  58        },
  59};
  60
  61static const struct v4l2_frequency_band bands_rf[] = {
  62        {
  63                .tuner = 1,
  64                .type = V4L2_TUNER_RF,
  65                .index = 0,
  66                .capability = V4L2_TUNER_CAP_1HZ | V4L2_TUNER_CAP_FREQ_BANDS,
  67                .rangelow   =   24000000,
  68                .rangehigh  = 1750000000,
  69        },
  70};
  71
  72/* stream formats */
  73struct airspy_format {
  74        u32     pixelformat;
  75        u32     buffersize;
  76};
  77
  78/* format descriptions for capture and preview */
  79static struct airspy_format formats[] = {
  80        {
  81                .pixelformat    = V4L2_SDR_FMT_RU12LE,
  82                .buffersize     = BULK_BUFFER_SIZE,
  83        },
  84};
  85
  86static const unsigned int NUM_FORMATS = ARRAY_SIZE(formats);
  87
  88/* intermediate buffers with raw data from the USB device */
  89struct airspy_frame_buf {
  90        /* common v4l buffer stuff -- must be first */
  91        struct vb2_v4l2_buffer vb;
  92        struct list_head list;
  93};
  94
  95struct airspy {
  96#define POWER_ON           1
  97#define USB_STATE_URB_BUF  2
  98        unsigned long flags;
  99
 100        struct device *dev;
 101        struct usb_device *udev;
 102        struct video_device vdev;
 103        struct v4l2_device v4l2_dev;
 104
 105        /* videobuf2 queue and queued buffers list */
 106        struct vb2_queue vb_queue;
 107        struct list_head queued_bufs;
 108        spinlock_t queued_bufs_lock; /* Protects queued_bufs */
 109        unsigned sequence;           /* Buffer sequence counter */
 110        unsigned int vb_full;        /* vb is full and packets dropped */
 111
 112        /* Note if taking both locks v4l2_lock must always be locked first! */
 113        struct mutex v4l2_lock;      /* Protects everything else */
 114        struct mutex vb_queue_lock;  /* Protects vb_queue and capt_file */
 115
 116        struct urb     *urb_list[MAX_BULK_BUFS];
 117        int            buf_num;
 118        unsigned long  buf_size;
 119        u8             *buf_list[MAX_BULK_BUFS];
 120        dma_addr_t     dma_addr[MAX_BULK_BUFS];
 121        int            urbs_initialized;
 122        int            urbs_submitted;
 123
 124        /* USB control message buffer */
 125        #define BUF_SIZE 128
 126        u8 buf[BUF_SIZE];
 127
 128        /* Current configuration */
 129        unsigned int f_adc;
 130        unsigned int f_rf;
 131        u32 pixelformat;
 132        u32 buffersize;
 133
 134        /* Controls */
 135        struct v4l2_ctrl_handler hdl;
 136        struct v4l2_ctrl *lna_gain_auto;
 137        struct v4l2_ctrl *lna_gain;
 138        struct v4l2_ctrl *mixer_gain_auto;
 139        struct v4l2_ctrl *mixer_gain;
 140        struct v4l2_ctrl *if_gain;
 141
 142        /* Sample rate calc */
 143        unsigned long jiffies_next;
 144        unsigned int sample;
 145        unsigned int sample_measured;
 146};
 147
 148#define airspy_dbg_usb_control_msg(_dev, _r, _t, _v, _i, _b, _l) { \
 149        char *_direction; \
 150        if (_t & USB_DIR_IN) \
 151                _direction = "<<<"; \
 152        else \
 153                _direction = ">>>"; \
 154        dev_dbg(_dev, "%02x %02x %02x %02x %02x %02x %02x %02x %s %*ph\n", \
 155                        _t, _r, _v & 0xff, _v >> 8, _i & 0xff, _i >> 8, \
 156                        _l & 0xff, _l >> 8, _direction, _l, _b); \
 157}
 158
 159/* execute firmware command */
 160static int airspy_ctrl_msg(struct airspy *s, u8 request, u16 value, u16 index,
 161                u8 *data, u16 size)
 162{
 163        int ret;
 164        unsigned int pipe;
 165        u8 requesttype;
 166
 167        switch (request) {
 168        case CMD_RECEIVER_MODE:
 169        case CMD_SET_FREQ:
 170                pipe = usb_sndctrlpipe(s->udev, 0);
 171                requesttype = (USB_TYPE_VENDOR | USB_DIR_OUT);
 172                break;
 173        case CMD_BOARD_ID_READ:
 174        case CMD_VERSION_STRING_READ:
 175        case CMD_BOARD_PARTID_SERIALNO_READ:
 176        case CMD_SET_LNA_GAIN:
 177        case CMD_SET_MIXER_GAIN:
 178        case CMD_SET_VGA_GAIN:
 179        case CMD_SET_LNA_AGC:
 180        case CMD_SET_MIXER_AGC:
 181                pipe = usb_rcvctrlpipe(s->udev, 0);
 182                requesttype = (USB_TYPE_VENDOR | USB_DIR_IN);
 183                break;
 184        default:
 185                dev_err(s->dev, "Unknown command %02x\n", request);
 186                ret = -EINVAL;
 187                goto err;
 188        }
 189
 190        /* write request */
 191        if (!(requesttype & USB_DIR_IN))
 192                memcpy(s->buf, data, size);
 193
 194        ret = usb_control_msg(s->udev, pipe, request, requesttype, value,
 195                        index, s->buf, size, 1000);
 196        airspy_dbg_usb_control_msg(s->dev, request, requesttype, value,
 197                        index, s->buf, size);
 198        if (ret < 0) {
 199                dev_err(s->dev, "usb_control_msg() failed %d request %02x\n",
 200                                ret, request);
 201                goto err;
 202        }
 203
 204        /* read request */
 205        if (requesttype & USB_DIR_IN)
 206                memcpy(data, s->buf, size);
 207
 208        return 0;
 209err:
 210        return ret;
 211}
 212
 213/* Private functions */
 214static struct airspy_frame_buf *airspy_get_next_fill_buf(struct airspy *s)
 215{
 216        unsigned long flags;
 217        struct airspy_frame_buf *buf = NULL;
 218
 219        spin_lock_irqsave(&s->queued_bufs_lock, flags);
 220        if (list_empty(&s->queued_bufs))
 221                goto leave;
 222
 223        buf = list_entry(s->queued_bufs.next,
 224                        struct airspy_frame_buf, list);
 225        list_del(&buf->list);
 226leave:
 227        spin_unlock_irqrestore(&s->queued_bufs_lock, flags);
 228        return buf;
 229}
 230
 231static unsigned int airspy_convert_stream(struct airspy *s,
 232                void *dst, void *src, unsigned int src_len)
 233{
 234        unsigned int dst_len;
 235
 236        if (s->pixelformat == V4L2_SDR_FMT_RU12LE) {
 237                memcpy(dst, src, src_len);
 238                dst_len = src_len;
 239        } else {
 240                dst_len = 0;
 241        }
 242
 243        /* calculate sample rate and output it in 10 seconds intervals */
 244        if (unlikely(time_is_before_jiffies(s->jiffies_next))) {
 245                #define MSECS 10000UL
 246                unsigned int msecs = jiffies_to_msecs(jiffies -
 247                                s->jiffies_next + msecs_to_jiffies(MSECS));
 248                unsigned int samples = s->sample - s->sample_measured;
 249
 250                s->jiffies_next = jiffies + msecs_to_jiffies(MSECS);
 251                s->sample_measured = s->sample;
 252                dev_dbg(s->dev, "slen=%u samples=%u msecs=%u sample rate=%lu\n",
 253                                src_len, samples, msecs,
 254                                samples * 1000UL / msecs);
 255        }
 256
 257        /* total number of samples */
 258        s->sample += src_len / 2;
 259
 260        return dst_len;
 261}
 262
 263/*
 264 * This gets called for the bulk stream pipe. This is done in interrupt
 265 * time, so it has to be fast, not crash, and not stall. Neat.
 266 */
 267static void airspy_urb_complete(struct urb *urb)
 268{
 269        struct airspy *s = urb->context;
 270        struct airspy_frame_buf *fbuf;
 271
 272        dev_dbg_ratelimited(s->dev, "status=%d length=%d/%d errors=%d\n",
 273                        urb->status, urb->actual_length,
 274                        urb->transfer_buffer_length, urb->error_count);
 275
 276        switch (urb->status) {
 277        case 0:             /* success */
 278        case -ETIMEDOUT:    /* NAK */
 279                break;
 280        case -ECONNRESET:   /* kill */
 281        case -ENOENT:
 282        case -ESHUTDOWN:
 283                return;
 284        default:            /* error */
 285                dev_err_ratelimited(s->dev, "URB failed %d\n", urb->status);
 286                break;
 287        }
 288
 289        if (likely(urb->actual_length > 0)) {
 290                void *ptr;
 291                unsigned int len;
 292                /* get free framebuffer */
 293                fbuf = airspy_get_next_fill_buf(s);
 294                if (unlikely(fbuf == NULL)) {
 295                        s->vb_full++;
 296                        dev_notice_ratelimited(s->dev,
 297                                        "videobuf is full, %d packets dropped\n",
 298                                        s->vb_full);
 299                        goto skip;
 300                }
 301
 302                /* fill framebuffer */
 303                ptr = vb2_plane_vaddr(&fbuf->vb.vb2_buf, 0);
 304                len = airspy_convert_stream(s, ptr, urb->transfer_buffer,
 305                                urb->actual_length);
 306                vb2_set_plane_payload(&fbuf->vb.vb2_buf, 0, len);
 307                fbuf->vb.vb2_buf.timestamp = ktime_get_ns();
 308                fbuf->vb.sequence = s->sequence++;
 309                vb2_buffer_done(&fbuf->vb.vb2_buf, VB2_BUF_STATE_DONE);
 310        }
 311skip:
 312        usb_submit_urb(urb, GFP_ATOMIC);
 313}
 314
 315static int airspy_kill_urbs(struct airspy *s)
 316{
 317        int i;
 318
 319        for (i = s->urbs_submitted - 1; i >= 0; i--) {
 320                dev_dbg(s->dev, "kill urb=%d\n", i);
 321                /* stop the URB */
 322                usb_kill_urb(s->urb_list[i]);
 323        }
 324        s->urbs_submitted = 0;
 325
 326        return 0;
 327}
 328
 329static int airspy_submit_urbs(struct airspy *s)
 330{
 331        int i, ret;
 332
 333        for (i = 0; i < s->urbs_initialized; i++) {
 334                dev_dbg(s->dev, "submit urb=%d\n", i);
 335                ret = usb_submit_urb(s->urb_list[i], GFP_ATOMIC);
 336                if (ret) {
 337                        dev_err(s->dev, "Could not submit URB no. %d - get them all back\n",
 338                                        i);
 339                        airspy_kill_urbs(s);
 340                        return ret;
 341                }
 342                s->urbs_submitted++;
 343        }
 344
 345        return 0;
 346}
 347
 348static int airspy_free_stream_bufs(struct airspy *s)
 349{
 350        if (test_bit(USB_STATE_URB_BUF, &s->flags)) {
 351                while (s->buf_num) {
 352                        s->buf_num--;
 353                        dev_dbg(s->dev, "free buf=%d\n", s->buf_num);
 354                        usb_free_coherent(s->udev, s->buf_size,
 355                                          s->buf_list[s->buf_num],
 356                                          s->dma_addr[s->buf_num]);
 357                }
 358        }
 359        clear_bit(USB_STATE_URB_BUF, &s->flags);
 360
 361        return 0;
 362}
 363
 364static int airspy_alloc_stream_bufs(struct airspy *s)
 365{
 366        s->buf_num = 0;
 367        s->buf_size = BULK_BUFFER_SIZE;
 368
 369        dev_dbg(s->dev, "all in all I will use %u bytes for streaming\n",
 370                        MAX_BULK_BUFS * BULK_BUFFER_SIZE);
 371
 372        for (s->buf_num = 0; s->buf_num < MAX_BULK_BUFS; s->buf_num++) {
 373                s->buf_list[s->buf_num] = usb_alloc_coherent(s->udev,
 374                                BULK_BUFFER_SIZE, GFP_ATOMIC,
 375                                &s->dma_addr[s->buf_num]);
 376                if (!s->buf_list[s->buf_num]) {
 377                        dev_dbg(s->dev, "alloc buf=%d failed\n", s->buf_num);
 378                        airspy_free_stream_bufs(s);
 379                        return -ENOMEM;
 380                }
 381
 382                dev_dbg(s->dev, "alloc buf=%d %p (dma %llu)\n", s->buf_num,
 383                                s->buf_list[s->buf_num],
 384                                (long long)s->dma_addr[s->buf_num]);
 385                set_bit(USB_STATE_URB_BUF, &s->flags);
 386        }
 387
 388        return 0;
 389}
 390
 391static int airspy_free_urbs(struct airspy *s)
 392{
 393        int i;
 394
 395        airspy_kill_urbs(s);
 396
 397        for (i = s->urbs_initialized - 1; i >= 0; i--) {
 398                if (s->urb_list[i]) {
 399                        dev_dbg(s->dev, "free urb=%d\n", i);
 400                        /* free the URBs */
 401                        usb_free_urb(s->urb_list[i]);
 402                }
 403        }
 404        s->urbs_initialized = 0;
 405
 406        return 0;
 407}
 408
 409static int airspy_alloc_urbs(struct airspy *s)
 410{
 411        int i, j;
 412
 413        /* allocate the URBs */
 414        for (i = 0; i < MAX_BULK_BUFS; i++) {
 415                dev_dbg(s->dev, "alloc urb=%d\n", i);
 416                s->urb_list[i] = usb_alloc_urb(0, GFP_ATOMIC);
 417                if (!s->urb_list[i]) {
 418                        for (j = 0; j < i; j++)
 419                                usb_free_urb(s->urb_list[j]);
 420                        return -ENOMEM;
 421                }
 422                usb_fill_bulk_urb(s->urb_list[i],
 423                                s->udev,
 424                                usb_rcvbulkpipe(s->udev, 0x81),
 425                                s->buf_list[i],
 426                                BULK_BUFFER_SIZE,
 427                                airspy_urb_complete, s);
 428
 429                s->urb_list[i]->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
 430                s->urb_list[i]->transfer_dma = s->dma_addr[i];
 431                s->urbs_initialized++;
 432        }
 433
 434        return 0;
 435}
 436
 437/* Must be called with vb_queue_lock hold */
 438static void airspy_cleanup_queued_bufs(struct airspy *s)
 439{
 440        unsigned long flags;
 441
 442        dev_dbg(s->dev, "\n");
 443
 444        spin_lock_irqsave(&s->queued_bufs_lock, flags);
 445        while (!list_empty(&s->queued_bufs)) {
 446                struct airspy_frame_buf *buf;
 447
 448                buf = list_entry(s->queued_bufs.next,
 449                                struct airspy_frame_buf, list);
 450                list_del(&buf->list);
 451                vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR);
 452        }
 453        spin_unlock_irqrestore(&s->queued_bufs_lock, flags);
 454}
 455
 456/* The user yanked out the cable... */
 457static void airspy_disconnect(struct usb_interface *intf)
 458{
 459        struct v4l2_device *v = usb_get_intfdata(intf);
 460        struct airspy *s = container_of(v, struct airspy, v4l2_dev);
 461
 462        dev_dbg(s->dev, "\n");
 463
 464        mutex_lock(&s->vb_queue_lock);
 465        mutex_lock(&s->v4l2_lock);
 466        /* No need to keep the urbs around after disconnection */
 467        s->udev = NULL;
 468        v4l2_device_disconnect(&s->v4l2_dev);
 469        video_unregister_device(&s->vdev);
 470        mutex_unlock(&s->v4l2_lock);
 471        mutex_unlock(&s->vb_queue_lock);
 472
 473        v4l2_device_put(&s->v4l2_dev);
 474}
 475
 476/* Videobuf2 operations */
 477static int airspy_queue_setup(struct vb2_queue *vq,
 478                unsigned int *nbuffers,
 479                unsigned int *nplanes, unsigned int sizes[], struct device *alloc_devs[])
 480{
 481        struct airspy *s = vb2_get_drv_priv(vq);
 482
 483        dev_dbg(s->dev, "nbuffers=%d\n", *nbuffers);
 484
 485        /* Need at least 8 buffers */
 486        if (vq->num_buffers + *nbuffers < 8)
 487                *nbuffers = 8 - vq->num_buffers;
 488        *nplanes = 1;
 489        sizes[0] = PAGE_ALIGN(s->buffersize);
 490
 491        dev_dbg(s->dev, "nbuffers=%d sizes[0]=%d\n", *nbuffers, sizes[0]);
 492        return 0;
 493}
 494
 495static void airspy_buf_queue(struct vb2_buffer *vb)
 496{
 497        struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
 498        struct airspy *s = vb2_get_drv_priv(vb->vb2_queue);
 499        struct airspy_frame_buf *buf =
 500                        container_of(vbuf, struct airspy_frame_buf, vb);
 501        unsigned long flags;
 502
 503        /* Check the device has not disconnected between prep and queuing */
 504        if (unlikely(!s->udev)) {
 505                vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR);
 506                return;
 507        }
 508
 509        spin_lock_irqsave(&s->queued_bufs_lock, flags);
 510        list_add_tail(&buf->list, &s->queued_bufs);
 511        spin_unlock_irqrestore(&s->queued_bufs_lock, flags);
 512}
 513
 514static int airspy_start_streaming(struct vb2_queue *vq, unsigned int count)
 515{
 516        struct airspy *s = vb2_get_drv_priv(vq);
 517        int ret;
 518
 519        dev_dbg(s->dev, "\n");
 520
 521        if (!s->udev)
 522                return -ENODEV;
 523
 524        mutex_lock(&s->v4l2_lock);
 525
 526        s->sequence = 0;
 527
 528        set_bit(POWER_ON, &s->flags);
 529
 530        ret = airspy_alloc_stream_bufs(s);
 531        if (ret)
 532                goto err_clear_bit;
 533
 534        ret = airspy_alloc_urbs(s);
 535        if (ret)
 536                goto err_free_stream_bufs;
 537
 538        ret = airspy_submit_urbs(s);
 539        if (ret)
 540                goto err_free_urbs;
 541
 542        /* start hardware streaming */
 543        ret = airspy_ctrl_msg(s, CMD_RECEIVER_MODE, 1, 0, NULL, 0);
 544        if (ret)
 545                goto err_kill_urbs;
 546
 547        goto exit_mutex_unlock;
 548
 549err_kill_urbs:
 550        airspy_kill_urbs(s);
 551err_free_urbs:
 552        airspy_free_urbs(s);
 553err_free_stream_bufs:
 554        airspy_free_stream_bufs(s);
 555err_clear_bit:
 556        clear_bit(POWER_ON, &s->flags);
 557
 558        /* return all queued buffers to vb2 */
 559        {
 560                struct airspy_frame_buf *buf, *tmp;
 561
 562                list_for_each_entry_safe(buf, tmp, &s->queued_bufs, list) {
 563                        list_del(&buf->list);
 564                        vb2_buffer_done(&buf->vb.vb2_buf,
 565                                        VB2_BUF_STATE_QUEUED);
 566                }
 567        }
 568
 569exit_mutex_unlock:
 570        mutex_unlock(&s->v4l2_lock);
 571
 572        return ret;
 573}
 574
 575static void airspy_stop_streaming(struct vb2_queue *vq)
 576{
 577        struct airspy *s = vb2_get_drv_priv(vq);
 578
 579        dev_dbg(s->dev, "\n");
 580
 581        mutex_lock(&s->v4l2_lock);
 582
 583        /* stop hardware streaming */
 584        airspy_ctrl_msg(s, CMD_RECEIVER_MODE, 0, 0, NULL, 0);
 585
 586        airspy_kill_urbs(s);
 587        airspy_free_urbs(s);
 588        airspy_free_stream_bufs(s);
 589
 590        airspy_cleanup_queued_bufs(s);
 591
 592        clear_bit(POWER_ON, &s->flags);
 593
 594        mutex_unlock(&s->v4l2_lock);
 595}
 596
 597static const struct vb2_ops airspy_vb2_ops = {
 598        .queue_setup            = airspy_queue_setup,
 599        .buf_queue              = airspy_buf_queue,
 600        .start_streaming        = airspy_start_streaming,
 601        .stop_streaming         = airspy_stop_streaming,
 602        .wait_prepare           = vb2_ops_wait_prepare,
 603        .wait_finish            = vb2_ops_wait_finish,
 604};
 605
 606static int airspy_querycap(struct file *file, void *fh,
 607                struct v4l2_capability *cap)
 608{
 609        struct airspy *s = video_drvdata(file);
 610
 611        strscpy(cap->driver, KBUILD_MODNAME, sizeof(cap->driver));
 612        strscpy(cap->card, s->vdev.name, sizeof(cap->card));
 613        usb_make_path(s->udev, cap->bus_info, sizeof(cap->bus_info));
 614        return 0;
 615}
 616
 617static int airspy_enum_fmt_sdr_cap(struct file *file, void *priv,
 618                struct v4l2_fmtdesc *f)
 619{
 620        if (f->index >= NUM_FORMATS)
 621                return -EINVAL;
 622
 623        f->pixelformat = formats[f->index].pixelformat;
 624
 625        return 0;
 626}
 627
 628static int airspy_g_fmt_sdr_cap(struct file *file, void *priv,
 629                struct v4l2_format *f)
 630{
 631        struct airspy *s = video_drvdata(file);
 632
 633        f->fmt.sdr.pixelformat = s->pixelformat;
 634        f->fmt.sdr.buffersize = s->buffersize;
 635
 636        return 0;
 637}
 638
 639static int airspy_s_fmt_sdr_cap(struct file *file, void *priv,
 640                struct v4l2_format *f)
 641{
 642        struct airspy *s = video_drvdata(file);
 643        struct vb2_queue *q = &s->vb_queue;
 644        int i;
 645
 646        if (vb2_is_busy(q))
 647                return -EBUSY;
 648
 649        for (i = 0; i < NUM_FORMATS; i++) {
 650                if (formats[i].pixelformat == f->fmt.sdr.pixelformat) {
 651                        s->pixelformat = formats[i].pixelformat;
 652                        s->buffersize = formats[i].buffersize;
 653                        f->fmt.sdr.buffersize = formats[i].buffersize;
 654                        return 0;
 655                }
 656        }
 657
 658        s->pixelformat = formats[0].pixelformat;
 659        s->buffersize = formats[0].buffersize;
 660        f->fmt.sdr.pixelformat = formats[0].pixelformat;
 661        f->fmt.sdr.buffersize = formats[0].buffersize;
 662
 663        return 0;
 664}
 665
 666static int airspy_try_fmt_sdr_cap(struct file *file, void *priv,
 667                struct v4l2_format *f)
 668{
 669        int i;
 670
 671        for (i = 0; i < NUM_FORMATS; i++) {
 672                if (formats[i].pixelformat == f->fmt.sdr.pixelformat) {
 673                        f->fmt.sdr.buffersize = formats[i].buffersize;
 674                        return 0;
 675                }
 676        }
 677
 678        f->fmt.sdr.pixelformat = formats[0].pixelformat;
 679        f->fmt.sdr.buffersize = formats[0].buffersize;
 680
 681        return 0;
 682}
 683
 684static int airspy_s_tuner(struct file *file, void *priv,
 685                const struct v4l2_tuner *v)
 686{
 687        int ret;
 688
 689        if (v->index == 0)
 690                ret = 0;
 691        else if (v->index == 1)
 692                ret = 0;
 693        else
 694                ret = -EINVAL;
 695
 696        return ret;
 697}
 698
 699static int airspy_g_tuner(struct file *file, void *priv, struct v4l2_tuner *v)
 700{
 701        int ret;
 702
 703        if (v->index == 0) {
 704                strscpy(v->name, "AirSpy ADC", sizeof(v->name));
 705                v->type = V4L2_TUNER_ADC;
 706                v->capability = V4L2_TUNER_CAP_1HZ | V4L2_TUNER_CAP_FREQ_BANDS;
 707                v->rangelow  = bands[0].rangelow;
 708                v->rangehigh = bands[0].rangehigh;
 709                ret = 0;
 710        } else if (v->index == 1) {
 711                strscpy(v->name, "AirSpy RF", sizeof(v->name));
 712                v->type = V4L2_TUNER_RF;
 713                v->capability = V4L2_TUNER_CAP_1HZ | V4L2_TUNER_CAP_FREQ_BANDS;
 714                v->rangelow  = bands_rf[0].rangelow;
 715                v->rangehigh = bands_rf[0].rangehigh;
 716                ret = 0;
 717        } else {
 718                ret = -EINVAL;
 719        }
 720
 721        return ret;
 722}
 723
 724static int airspy_g_frequency(struct file *file, void *priv,
 725                struct v4l2_frequency *f)
 726{
 727        struct airspy *s = video_drvdata(file);
 728        int ret;
 729
 730        if (f->tuner == 0) {
 731                f->type = V4L2_TUNER_ADC;
 732                f->frequency = s->f_adc;
 733                dev_dbg(s->dev, "ADC frequency=%u Hz\n", s->f_adc);
 734                ret = 0;
 735        } else if (f->tuner == 1) {
 736                f->type = V4L2_TUNER_RF;
 737                f->frequency = s->f_rf;
 738                dev_dbg(s->dev, "RF frequency=%u Hz\n", s->f_rf);
 739                ret = 0;
 740        } else {
 741                ret = -EINVAL;
 742        }
 743
 744        return ret;
 745}
 746
 747static int airspy_s_frequency(struct file *file, void *priv,
 748                const struct v4l2_frequency *f)
 749{
 750        struct airspy *s = video_drvdata(file);
 751        int ret;
 752        u8 buf[4];
 753
 754        if (f->tuner == 0) {
 755                s->f_adc = clamp_t(unsigned int, f->frequency,
 756                                bands[0].rangelow,
 757                                bands[0].rangehigh);
 758                dev_dbg(s->dev, "ADC frequency=%u Hz\n", s->f_adc);
 759                ret = 0;
 760        } else if (f->tuner == 1) {
 761                s->f_rf = clamp_t(unsigned int, f->frequency,
 762                                bands_rf[0].rangelow,
 763                                bands_rf[0].rangehigh);
 764                dev_dbg(s->dev, "RF frequency=%u Hz\n", s->f_rf);
 765                buf[0] = (s->f_rf >>  0) & 0xff;
 766                buf[1] = (s->f_rf >>  8) & 0xff;
 767                buf[2] = (s->f_rf >> 16) & 0xff;
 768                buf[3] = (s->f_rf >> 24) & 0xff;
 769                ret = airspy_ctrl_msg(s, CMD_SET_FREQ, 0, 0, buf, 4);
 770        } else {
 771                ret = -EINVAL;
 772        }
 773
 774        return ret;
 775}
 776
 777static int airspy_enum_freq_bands(struct file *file, void *priv,
 778                struct v4l2_frequency_band *band)
 779{
 780        int ret;
 781
 782        if (band->tuner == 0) {
 783                if (band->index >= ARRAY_SIZE(bands)) {
 784                        ret = -EINVAL;
 785                } else {
 786                        *band = bands[band->index];
 787                        ret = 0;
 788                }
 789        } else if (band->tuner == 1) {
 790                if (band->index >= ARRAY_SIZE(bands_rf)) {
 791                        ret = -EINVAL;
 792                } else {
 793                        *band = bands_rf[band->index];
 794                        ret = 0;
 795                }
 796        } else {
 797                ret = -EINVAL;
 798        }
 799
 800        return ret;
 801}
 802
 803static const struct v4l2_ioctl_ops airspy_ioctl_ops = {
 804        .vidioc_querycap          = airspy_querycap,
 805
 806        .vidioc_enum_fmt_sdr_cap  = airspy_enum_fmt_sdr_cap,
 807        .vidioc_g_fmt_sdr_cap     = airspy_g_fmt_sdr_cap,
 808        .vidioc_s_fmt_sdr_cap     = airspy_s_fmt_sdr_cap,
 809        .vidioc_try_fmt_sdr_cap   = airspy_try_fmt_sdr_cap,
 810
 811        .vidioc_reqbufs           = vb2_ioctl_reqbufs,
 812        .vidioc_create_bufs       = vb2_ioctl_create_bufs,
 813        .vidioc_prepare_buf       = vb2_ioctl_prepare_buf,
 814        .vidioc_querybuf          = vb2_ioctl_querybuf,
 815        .vidioc_qbuf              = vb2_ioctl_qbuf,
 816        .vidioc_dqbuf             = vb2_ioctl_dqbuf,
 817
 818        .vidioc_streamon          = vb2_ioctl_streamon,
 819        .vidioc_streamoff         = vb2_ioctl_streamoff,
 820
 821        .vidioc_g_tuner           = airspy_g_tuner,
 822        .vidioc_s_tuner           = airspy_s_tuner,
 823
 824        .vidioc_g_frequency       = airspy_g_frequency,
 825        .vidioc_s_frequency       = airspy_s_frequency,
 826        .vidioc_enum_freq_bands   = airspy_enum_freq_bands,
 827
 828        .vidioc_subscribe_event   = v4l2_ctrl_subscribe_event,
 829        .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
 830        .vidioc_log_status        = v4l2_ctrl_log_status,
 831};
 832
 833static const struct v4l2_file_operations airspy_fops = {
 834        .owner                    = THIS_MODULE,
 835        .open                     = v4l2_fh_open,
 836        .release                  = vb2_fop_release,
 837        .read                     = vb2_fop_read,
 838        .poll                     = vb2_fop_poll,
 839        .mmap                     = vb2_fop_mmap,
 840        .unlocked_ioctl           = video_ioctl2,
 841};
 842
 843static const struct video_device airspy_template = {
 844        .name                     = "AirSpy SDR",
 845        .release                  = video_device_release_empty,
 846        .fops                     = &airspy_fops,
 847        .ioctl_ops                = &airspy_ioctl_ops,
 848};
 849
 850static void airspy_video_release(struct v4l2_device *v)
 851{
 852        struct airspy *s = container_of(v, struct airspy, v4l2_dev);
 853
 854        v4l2_ctrl_handler_free(&s->hdl);
 855        v4l2_device_unregister(&s->v4l2_dev);
 856        kfree(s);
 857}
 858
 859static int airspy_set_lna_gain(struct airspy *s)
 860{
 861        int ret;
 862        u8 u8tmp;
 863
 864        dev_dbg(s->dev, "lna auto=%d->%d val=%d->%d\n",
 865                        s->lna_gain_auto->cur.val, s->lna_gain_auto->val,
 866                        s->lna_gain->cur.val, s->lna_gain->val);
 867
 868        ret = airspy_ctrl_msg(s, CMD_SET_LNA_AGC, 0, s->lna_gain_auto->val,
 869                        &u8tmp, 1);
 870        if (ret)
 871                goto err;
 872
 873        if (s->lna_gain_auto->val == false) {
 874                ret = airspy_ctrl_msg(s, CMD_SET_LNA_GAIN, 0, s->lna_gain->val,
 875                                &u8tmp, 1);
 876                if (ret)
 877                        goto err;
 878        }
 879err:
 880        if (ret)
 881                dev_dbg(s->dev, "failed=%d\n", ret);
 882
 883        return ret;
 884}
 885
 886static int airspy_set_mixer_gain(struct airspy *s)
 887{
 888        int ret;
 889        u8 u8tmp;
 890
 891        dev_dbg(s->dev, "mixer auto=%d->%d val=%d->%d\n",
 892                        s->mixer_gain_auto->cur.val, s->mixer_gain_auto->val,
 893                        s->mixer_gain->cur.val, s->mixer_gain->val);
 894
 895        ret = airspy_ctrl_msg(s, CMD_SET_MIXER_AGC, 0, s->mixer_gain_auto->val,
 896                        &u8tmp, 1);
 897        if (ret)
 898                goto err;
 899
 900        if (s->mixer_gain_auto->val == false) {
 901                ret = airspy_ctrl_msg(s, CMD_SET_MIXER_GAIN, 0,
 902                                s->mixer_gain->val, &u8tmp, 1);
 903                if (ret)
 904                        goto err;
 905        }
 906err:
 907        if (ret)
 908                dev_dbg(s->dev, "failed=%d\n", ret);
 909
 910        return ret;
 911}
 912
 913static int airspy_set_if_gain(struct airspy *s)
 914{
 915        int ret;
 916        u8 u8tmp;
 917
 918        dev_dbg(s->dev, "val=%d->%d\n", s->if_gain->cur.val, s->if_gain->val);
 919
 920        ret = airspy_ctrl_msg(s, CMD_SET_VGA_GAIN, 0, s->if_gain->val,
 921                        &u8tmp, 1);
 922        if (ret)
 923                dev_dbg(s->dev, "failed=%d\n", ret);
 924
 925        return ret;
 926}
 927
 928static int airspy_s_ctrl(struct v4l2_ctrl *ctrl)
 929{
 930        struct airspy *s = container_of(ctrl->handler, struct airspy, hdl);
 931        int ret;
 932
 933        switch (ctrl->id) {
 934        case  V4L2_CID_RF_TUNER_LNA_GAIN_AUTO:
 935        case  V4L2_CID_RF_TUNER_LNA_GAIN:
 936                ret = airspy_set_lna_gain(s);
 937                break;
 938        case  V4L2_CID_RF_TUNER_MIXER_GAIN_AUTO:
 939        case  V4L2_CID_RF_TUNER_MIXER_GAIN:
 940                ret = airspy_set_mixer_gain(s);
 941                break;
 942        case  V4L2_CID_RF_TUNER_IF_GAIN:
 943                ret = airspy_set_if_gain(s);
 944                break;
 945        default:
 946                dev_dbg(s->dev, "unknown ctrl: id=%d name=%s\n",
 947                                ctrl->id, ctrl->name);
 948                ret = -EINVAL;
 949        }
 950
 951        return ret;
 952}
 953
 954static const struct v4l2_ctrl_ops airspy_ctrl_ops = {
 955        .s_ctrl = airspy_s_ctrl,
 956};
 957
 958static int airspy_probe(struct usb_interface *intf,
 959                const struct usb_device_id *id)
 960{
 961        struct airspy *s;
 962        int ret;
 963        u8 u8tmp, buf[BUF_SIZE];
 964
 965        s = kzalloc(sizeof(struct airspy), GFP_KERNEL);
 966        if (s == NULL) {
 967                dev_err(&intf->dev, "Could not allocate memory for state\n");
 968                return -ENOMEM;
 969        }
 970
 971        mutex_init(&s->v4l2_lock);
 972        mutex_init(&s->vb_queue_lock);
 973        spin_lock_init(&s->queued_bufs_lock);
 974        INIT_LIST_HEAD(&s->queued_bufs);
 975        s->dev = &intf->dev;
 976        s->udev = interface_to_usbdev(intf);
 977        s->f_adc = bands[0].rangelow;
 978        s->f_rf = bands_rf[0].rangelow;
 979        s->pixelformat = formats[0].pixelformat;
 980        s->buffersize = formats[0].buffersize;
 981
 982        /* Detect device */
 983        ret = airspy_ctrl_msg(s, CMD_BOARD_ID_READ, 0, 0, &u8tmp, 1);
 984        if (ret == 0)
 985                ret = airspy_ctrl_msg(s, CMD_VERSION_STRING_READ, 0, 0,
 986                                buf, BUF_SIZE);
 987        if (ret) {
 988                dev_err(s->dev, "Could not detect board\n");
 989                goto err_free_mem;
 990        }
 991
 992        buf[BUF_SIZE - 1] = '\0';
 993
 994        dev_info(s->dev, "Board ID: %02x\n", u8tmp);
 995        dev_info(s->dev, "Firmware version: %s\n", buf);
 996
 997        /* Init videobuf2 queue structure */
 998        s->vb_queue.type = V4L2_BUF_TYPE_SDR_CAPTURE;
 999        s->vb_queue.io_modes = VB2_MMAP | VB2_USERPTR | VB2_READ;
1000        s->vb_queue.drv_priv = s;
1001        s->vb_queue.buf_struct_size = sizeof(struct airspy_frame_buf);
1002        s->vb_queue.ops = &airspy_vb2_ops;
1003        s->vb_queue.mem_ops = &vb2_vmalloc_memops;
1004        s->vb_queue.timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
1005        ret = vb2_queue_init(&s->vb_queue);
1006        if (ret) {
1007                dev_err(s->dev, "Could not initialize vb2 queue\n");
1008                goto err_free_mem;
1009        }
1010
1011        /* Init video_device structure */
1012        s->vdev = airspy_template;
1013        s->vdev.queue = &s->vb_queue;
1014        s->vdev.queue->lock = &s->vb_queue_lock;
1015        video_set_drvdata(&s->vdev, s);
1016
1017        /* Register the v4l2_device structure */
1018        s->v4l2_dev.release = airspy_video_release;
1019        ret = v4l2_device_register(&intf->dev, &s->v4l2_dev);
1020        if (ret) {
1021                dev_err(s->dev, "Failed to register v4l2-device (%d)\n", ret);
1022                goto err_free_mem;
1023        }
1024
1025        /* Register controls */
1026        v4l2_ctrl_handler_init(&s->hdl, 5);
1027        s->lna_gain_auto = v4l2_ctrl_new_std(&s->hdl, &airspy_ctrl_ops,
1028                        V4L2_CID_RF_TUNER_LNA_GAIN_AUTO, 0, 1, 1, 0);
1029        s->lna_gain = v4l2_ctrl_new_std(&s->hdl, &airspy_ctrl_ops,
1030                        V4L2_CID_RF_TUNER_LNA_GAIN, 0, 14, 1, 8);
1031        v4l2_ctrl_auto_cluster(2, &s->lna_gain_auto, 0, false);
1032        s->mixer_gain_auto = v4l2_ctrl_new_std(&s->hdl, &airspy_ctrl_ops,
1033                        V4L2_CID_RF_TUNER_MIXER_GAIN_AUTO, 0, 1, 1, 0);
1034        s->mixer_gain = v4l2_ctrl_new_std(&s->hdl, &airspy_ctrl_ops,
1035                        V4L2_CID_RF_TUNER_MIXER_GAIN, 0, 15, 1, 8);
1036        v4l2_ctrl_auto_cluster(2, &s->mixer_gain_auto, 0, false);
1037        s->if_gain = v4l2_ctrl_new_std(&s->hdl, &airspy_ctrl_ops,
1038                        V4L2_CID_RF_TUNER_IF_GAIN, 0, 15, 1, 0);
1039        if (s->hdl.error) {
1040                ret = s->hdl.error;
1041                dev_err(s->dev, "Could not initialize controls\n");
1042                goto err_free_controls;
1043        }
1044
1045        v4l2_ctrl_handler_setup(&s->hdl);
1046
1047        s->v4l2_dev.ctrl_handler = &s->hdl;
1048        s->vdev.v4l2_dev = &s->v4l2_dev;
1049        s->vdev.lock = &s->v4l2_lock;
1050        s->vdev.device_caps = V4L2_CAP_SDR_CAPTURE | V4L2_CAP_STREAMING |
1051                              V4L2_CAP_READWRITE | V4L2_CAP_TUNER;
1052
1053        ret = video_register_device(&s->vdev, VFL_TYPE_SDR, -1);
1054        if (ret) {
1055                dev_err(s->dev, "Failed to register as video device (%d)\n",
1056                                ret);
1057                goto err_free_controls;
1058        }
1059        dev_info(s->dev, "Registered as %s\n",
1060                        video_device_node_name(&s->vdev));
1061        dev_notice(s->dev, "SDR API is still slightly experimental and functionality changes may follow\n");
1062        return 0;
1063
1064err_free_controls:
1065        v4l2_ctrl_handler_free(&s->hdl);
1066        v4l2_device_unregister(&s->v4l2_dev);
1067err_free_mem:
1068        kfree(s);
1069        return ret;
1070}
1071
1072/* USB device ID list */
1073static const struct usb_device_id airspy_id_table[] = {
1074        { USB_DEVICE(0x1d50, 0x60a1) }, /* AirSpy */
1075        { }
1076};
1077MODULE_DEVICE_TABLE(usb, airspy_id_table);
1078
1079/* USB subsystem interface */
1080static struct usb_driver airspy_driver = {
1081        .name                     = KBUILD_MODNAME,
1082        .probe                    = airspy_probe,
1083        .disconnect               = airspy_disconnect,
1084        .id_table                 = airspy_id_table,
1085};
1086
1087module_usb_driver(airspy_driver);
1088
1089MODULE_AUTHOR("Antti Palosaari <crope@iki.fi>");
1090MODULE_DESCRIPTION("AirSpy SDR");
1091MODULE_LICENSE("GPL");
1092