
This is a defensive change to make the transceiver code easier to reason about, and to avoid the possibility of races such as that seen in #1042. Previously, set_transceiver_mode() was called in the vendor request handler for the SET_TRANSCEIVER_MODE request, as well in the callback for a USB configuration change. Both these calls are made from the USB0 ISR, so could interrupt the rx_mode(), tx_mode() and sweep_mode() functions at any point. It was hard to tell if this was safe. Instead, set_transceiver_mode() has been removed, and its work is split into three parts: - request_transceiver_mode(), which is safe to call from ISR context. All this function does is update the requested mode and increment a sequence number. This builds on work already done in PR #1029, but the interface has been simplified to use a shared volatile structure. - transceiver_startup(), which transitions the transceiver from an idle state to the configuration required for a specific mode, including setting up the RF path, configuring the M0, adjusting LEDs and UI etc. - transceiver_shutdown(), which transitions the transceiver back to an idle state. The *_mode() functions that implement the transceiver modes now call transceiver_startup() before starting work, and transceiver_shutdown() before returning, and all this happens in the main thread of execution. As such, it is now guaranteed that all the steps involved happen in a consistent order, with the transceiver starting from an idle state, and being returned to an idle state before control returns to the main loop. For consistency of interface, an off_mode() function has been added to implement the behaviour of the OFF transceiver mode. Since the transceiver is already guaranteed to be in an idle state when this is called, the only work required is to set the UI mode and wait for a new mode request.
173 lines
5.0 KiB
C
173 lines
5.0 KiB
C
/*
|
|
* Copyright 2016 Mike Walters, Dominic Spill
|
|
*
|
|
* This file is part of HackRF.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "usb_api_sweep.h"
|
|
#include "usb_queue.h"
|
|
#include <stddef.h>
|
|
#include <hackrf_core.h>
|
|
#include "usb_api_transceiver.h"
|
|
#include "usb_bulk_buffer.h"
|
|
#include "m0_state.h"
|
|
#include "tuning.h"
|
|
#include "usb_endpoint.h"
|
|
#include "streaming.h"
|
|
|
|
#include <libopencm3/lpc43xx/m4/nvic.h>
|
|
|
|
#define MIN(x,y) ((x)<(y)?(x):(y))
|
|
#define MAX(x,y) ((x)>(y)?(x):(y))
|
|
#define FREQ_GRANULARITY 1000000
|
|
#define MAX_RANGES 10
|
|
#define THROWAWAY_BUFFERS 2
|
|
|
|
static uint64_t sweep_freq;
|
|
static uint16_t frequencies[MAX_RANGES * 2];
|
|
static unsigned char data[9 + MAX_RANGES * 2 * sizeof(frequencies[0])];
|
|
static uint16_t num_ranges = 0;
|
|
static uint32_t dwell_blocks = 0;
|
|
static uint32_t step_width = 0;
|
|
static uint32_t offset = 0;
|
|
static enum sweep_style style = LINEAR;
|
|
|
|
/* Do this before starting sweep mode with request_transceiver_mode(). */
|
|
usb_request_status_t usb_vendor_request_init_sweep(
|
|
usb_endpoint_t* const endpoint, const usb_transfer_stage_t stage)
|
|
{
|
|
uint32_t num_bytes;
|
|
int i;
|
|
if (stage == USB_TRANSFER_STAGE_SETUP) {
|
|
num_bytes = (endpoint->setup.index << 16) | endpoint->setup.value;
|
|
dwell_blocks = num_bytes / 0x4000;
|
|
if(1 > dwell_blocks) {
|
|
return USB_REQUEST_STATUS_STALL;
|
|
}
|
|
num_ranges = (endpoint->setup.length - 9) / (2 * sizeof(frequencies[0]));
|
|
if((1 > num_ranges) || (MAX_RANGES < num_ranges)) {
|
|
return USB_REQUEST_STATUS_STALL;
|
|
}
|
|
usb_transfer_schedule_block(endpoint->out, &data,
|
|
endpoint->setup.length, NULL, NULL);
|
|
} else if (stage == USB_TRANSFER_STAGE_DATA) {
|
|
step_width = ((uint32_t)(data[3]) << 24) | ((uint32_t)(data[2]) << 16)
|
|
| ((uint32_t)(data[1]) << 8) | data[0];
|
|
if(1 > step_width) {
|
|
return USB_REQUEST_STATUS_STALL;
|
|
}
|
|
offset = ((uint32_t)(data[7]) << 24) | ((uint32_t)(data[6]) << 16)
|
|
| ((uint32_t)(data[5]) << 8) | data[4];
|
|
style = data[8];
|
|
if(INTERLEAVED < style) {
|
|
return USB_REQUEST_STATUS_STALL;
|
|
}
|
|
for(i=0; i<(num_ranges*2); i++) {
|
|
frequencies[i] = ((uint16_t)(data[10+i*2]) << 8) + data[9+i*2];
|
|
}
|
|
sweep_freq = (uint64_t)frequencies[0] * FREQ_GRANULARITY;
|
|
set_freq(sweep_freq + offset);
|
|
usb_transfer_schedule_ack(endpoint->in);
|
|
}
|
|
return USB_REQUEST_STATUS_OK;
|
|
}
|
|
|
|
void sweep_mode(uint32_t seq) {
|
|
unsigned int blocks_queued = 0;
|
|
unsigned int phase = 1;
|
|
bool odd = true;
|
|
uint16_t range = 0;
|
|
|
|
uint8_t *buffer;
|
|
bool transfer = false;
|
|
|
|
transceiver_startup(TRANSCEIVER_MODE_RX_SWEEP);
|
|
|
|
baseband_streaming_enable(&sgpio_config);
|
|
|
|
while (transceiver_request.seq == seq) {
|
|
// Set up IN transfer of buffer 0.
|
|
if ( m0_state.offset >= 16384 && phase == 1) {
|
|
transfer = true;
|
|
buffer = &usb_bulk_buffer[0x0000];
|
|
phase = 0;
|
|
blocks_queued++;
|
|
}
|
|
|
|
// Set up IN transfer of buffer 1.
|
|
if ( m0_state.offset < 16384 && phase == 0) {
|
|
transfer = true;
|
|
buffer = &usb_bulk_buffer[0x4000];
|
|
phase = 1;
|
|
blocks_queued++;
|
|
}
|
|
|
|
if (transfer) {
|
|
*buffer = 0x7f;
|
|
*(buffer+1) = 0x7f;
|
|
*(buffer+2) = sweep_freq & 0xff;
|
|
*(buffer+3) = (sweep_freq >> 8) & 0xff;
|
|
*(buffer+4) = (sweep_freq >> 16) & 0xff;
|
|
*(buffer+5) = (sweep_freq >> 24) & 0xff;
|
|
*(buffer+6) = (sweep_freq >> 32) & 0xff;
|
|
*(buffer+7) = (sweep_freq >> 40) & 0xff;
|
|
*(buffer+8) = (sweep_freq >> 48) & 0xff;
|
|
*(buffer+9) = (sweep_freq >> 56) & 0xff;
|
|
if (blocks_queued > THROWAWAY_BUFFERS) {
|
|
usb_transfer_schedule_block(
|
|
&usb_endpoint_bulk_in,
|
|
buffer,
|
|
0x4000,
|
|
NULL, NULL
|
|
);
|
|
}
|
|
transfer = false;
|
|
}
|
|
|
|
if ((dwell_blocks + THROWAWAY_BUFFERS) <= blocks_queued) {
|
|
if(INTERLEAVED == style) {
|
|
if(!odd && ((sweep_freq + step_width) >= ((uint64_t)frequencies[1+range*2] * FREQ_GRANULARITY))) {
|
|
range = (range + 1) % num_ranges;
|
|
sweep_freq = (uint64_t)frequencies[range*2] * FREQ_GRANULARITY;
|
|
} else {
|
|
if(odd) {
|
|
sweep_freq += step_width/4;
|
|
} else {
|
|
sweep_freq += 3*step_width/4;
|
|
}
|
|
}
|
|
odd = !odd;
|
|
} else {
|
|
if((sweep_freq + step_width) >= ((uint64_t)frequencies[1+range*2] * FREQ_GRANULARITY)) {
|
|
range = (range + 1) % num_ranges;
|
|
sweep_freq = (uint64_t)frequencies[range*2] * FREQ_GRANULARITY;
|
|
} else {
|
|
sweep_freq += step_width;
|
|
}
|
|
}
|
|
|
|
nvic_disable_irq(NVIC_USB0_IRQ);
|
|
set_freq(sweep_freq + offset);
|
|
nvic_enable_irq(NVIC_USB0_IRQ);
|
|
blocks_queued = 0;
|
|
}
|
|
}
|
|
|
|
transceiver_shutdown();
|
|
}
|