mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2026-08-09 09:23:47 +00:00
39424632bb
* Initial commit and pr for HackRF Pro (praline) arch-port to mayhem-firmware. Please see https://github.com/portapack-mayhem/mayhem-firmware/issues/2957. Added flash specifics for -DBOARD=PRALINE. This firmware only builds with toolchain v9.2.1 if hackrf codebase has -B arm in firmware/hackrf_usb/CMakeLists.txt. * Updated CMakeLists.txt per coordination with @HtoToo. For -DBOARD=PRALINE FLASH_MB_SIZE and FLASH_MB_LIMIT_SIZE are now 4. Removed praline specific variable for FLASH limits. * Updated chibios-portapack's board.cpp to support initialization of the HachRF-Pro (praline) FPGA. Added append_fpga_bitstream.py tool to ensure that praline_fgpa.bin bitstream can be appended to -DBOARD=PRALINE produced firmware. In order to ensure successful execution of append_fpga_bitstream.py to append the fpga bitstream we should expect that the bistsream will be located at 0x180000 in flash. This requires that FLASH_MB_LIMIT_SIZE must be 1.5, and FLASH_BYTES_LIMIT_SIZE must be 1535 * 1024. If we want to allow more or less space for the base firmware image sans the fpga bitstream the location of the bistream must be moved to a location other than 0x180000. * Updated location of praline_fpga.bin bitstream to 0x380000 to allow more room for firmware. Firmware now has 3.5MB, or 2MB more available than before as coordinated with @HTotoo. * Expanded #ifndef PRALINE to include og and r9 gpio and pin setup as coordinated with @HTotoo. * Added note for PRALINE FLASH_MB_LIMIT_SIZE and FLASH_BYTES_LIMIT_SIZE to explain why we are using the 3.5 and 3584 values respectively as coordinated with @HTotoo. * Next round of modifications derived heavily, if not entirely from work done by @banandana at https://github.com/Banandana/mayhem-firmware. This commit should power on the HackRF Pro (praline) display, power on the fpga, and enable gpio, and provide debug utilties. There is still a lot of work to be done to fully enable the new praline board with this build and firmware architectural porting effort. However, hackrf-one boards do not seem to be adversely impacted by the #ifdef PRALINE statements, and CMakeLists updates, as far as I have been able to test. * Ran format-code.sh. Updates for this commit are only due to formatting. Tested builds and they seem to work as exptected. * Addressed fixes in firmware/application and firmware/baseband. Stream now flows to capture and looking glass. Issues were related to thread management. Issues were originally addressed by @banandana. * Ran format-code.sh to allow for consistency with autoamted clang checks. * Update hackrf ref repo to mayhem-portapack-hackrf next from https://github.com/portapack-mayhem/hackrf * Addressed format edits necessary to pass clang-format check. * Starting addressing Si5351 Clocks for radio sampling. These updates correctly set the Si5351 clock at start up. There appears to be an issue during runtime when testing with RX Test Init, Capture and Looking glass. * Updated clock_manager.cpp to restore correct function introduced by @banandana when testing with Rx Test Init. * Switched to using decimation for setting the sample rate without changing the Si5351 clock. This assumes that for the praline board Si5351 CLK0 runs at fixed 8 MHz (constant) and the FPGA decimates to get the desired sample rate. For example, for a 1 MHz sample rate -> Si5351 outputs 8 MHz, FPGA decimates by 8. There is still more work needed here, and potential verification that this is the correct way to operate with this new archteitecture. * After deliberating on hackrf_usb hackrf_core.c and radio.c, and reviewing firmware/application/hw/si5351.cpp the original approach of using the aproach detailed in hackrf_core.c sample_rate_frac_set() lines 580-582, via the implementation in firmware/application/hw/si5351.cpp seems like the best place to continue testing efforts. * Tested at ~2.4GHz (2.3 - 2.5) with lookgin glass and was able to receive signals. Added a Signal Path debug app to test gains, and readio mode (receive/transmit). * Added two debug apps for the RFFC507x. Status View and Tuning View. This helped debug some of the potential issues with tuning. * update submodule * format code * Small touch up merging latest next and ensuring build for HackRF One. * Reverted edits to re: firmware/baseband/sd_over_usb/scsi.c and firmware/application/portapack.cpp. Source now builds, had to pull latest hackrf submodule. * Skipped detect hardware for praline board to avoid backscreen in HackRF Pro praline board. --------- Co-authored-by: gullradriel <gullradriel@users.noreply.github.com>
525 lines
15 KiB
C++
525 lines
15 KiB
C++
/*
|
|
* Copyright (C) 2016 Jared Boone, ShareBrained Technology, Inc.
|
|
* Copyright (C) 2016 Furrtek
|
|
*
|
|
* This file is part of PortaPack.
|
|
*
|
|
* 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 "baseband_api.hpp"
|
|
|
|
#include "audio.hpp"
|
|
#include "tonesets.hpp"
|
|
#include "dsp_iir_config.hpp"
|
|
|
|
#include "portapack_shared_memory.hpp"
|
|
#include "portapack_persistent_memory.hpp"
|
|
|
|
#include "core_control.hpp"
|
|
|
|
/* Set true to enable additional checks to ensure
|
|
* M4 and M0 are synchronized before passing messages. */
|
|
static constexpr bool enforce_core_sync = true;
|
|
|
|
/* Set true to enable check for baseband messages getting stuck.
|
|
* This implies the baseband thread is not dequeuing and has probably stalled.
|
|
* NB: This check adds a small amout of overhead to the message sending code
|
|
* and may impact application perf if it is sending a lot of messages. */
|
|
static constexpr bool check_for_message_hang = true;
|
|
|
|
using namespace portapack;
|
|
|
|
namespace baseband {
|
|
|
|
static void send_message(const Message* const message) {
|
|
// If message is only sent by this function via one thread, no need to check if
|
|
// another message is present before setting new message.
|
|
shared_memory.baseband_message = message;
|
|
creg::m0apptxevent::assert_event();
|
|
|
|
if constexpr (check_for_message_hang) {
|
|
#ifdef PRALINE
|
|
/* Timeout: ~3 seconds at typical clock speeds */
|
|
auto count = 200'000'000u;
|
|
#else
|
|
auto count = UINT32_MAX;
|
|
#endif
|
|
while (shared_memory.baseband_message && --count)
|
|
/* spin */;
|
|
|
|
if (count == 0)
|
|
#ifdef PRALINE
|
|
chDbgPanic("BB Msg Timeout");
|
|
#else
|
|
chDbgPanic("Baseband Send Fail");
|
|
#endif
|
|
} else {
|
|
while (shared_memory.baseband_message)
|
|
/* spin */;
|
|
}
|
|
}
|
|
|
|
void AMConfig::apply() const {
|
|
const AMConfigureMessage message{
|
|
taps_6k0_decim_0, // common FIR filter taps pre-decim_0 to all 6 x AM mod types.(AM-9K, AM-6K, USB, LSB, CW, AMFM-WFAX)
|
|
decim_1, // var decim_1 FIR taps filter , variable values , to handle two spectrum decim factor 1 and 2 (zoom) and more APT LPF filtered .
|
|
decim_2, // var decim_2 FIR taps filter , variable values, depending selected AM mod(AM 9k / 6k and all rest AM modes)
|
|
channel, // var channel FIR taps filter , variable values, depending selected AM mode, each one different (DSB-9K, DSB-6K, USB-3K, LSB-3K,CW,AMFM-WFAX)
|
|
modulation, // var parameter . enum class Modulation : int32_t {DSB = 0, SSB = 1, SSB_FM = 2}
|
|
audio_12k_iir_filter_config, // var parameter , 300 Hz hpf all except Wefax (1.500Hz lpf)
|
|
spectrum_decimation_factor}; // var parameter , waterfall no zoom : 1 ,for zoom x 2 : 2
|
|
send_message(&message);
|
|
audio::set_rate(audio::Rate::Hz_12000);
|
|
}
|
|
|
|
void NBFMConfig::apply(const uint8_t squelch_level) const {
|
|
const NBFMConfigureMessage message{
|
|
decim_0,
|
|
decim_1,
|
|
channel,
|
|
2,
|
|
deviation,
|
|
audio_24k_hpf_300hz_config,
|
|
audio_24k_deemph_300_6_config,
|
|
squelch_level};
|
|
send_message(&message);
|
|
audio::set_rate(audio::Rate::Hz_24000);
|
|
}
|
|
|
|
void WFMConfig::apply() const {
|
|
const WFMConfigureMessage message{
|
|
decim_0, // Dynamic array 24 taps : taps_200k_decim_0 , taps_180k_wfm_decim_0, taps_80k_wfm_decim_0
|
|
decim_1, // Dynamic array 16 taps : taps_200k_decim_1 or taps_180k_wfm_decim_1, taps_80k_wfm_decim_1
|
|
taps_64_lp_156_198, // Fixed channel audio filter 15khz
|
|
75000,
|
|
audio_48k_hpf_30hz_config,
|
|
audio_48k_deemph_2122_6_config};
|
|
send_message(&message);
|
|
audio::set_rate(audio::Rate::Hz_48000);
|
|
}
|
|
|
|
void WFMAMConfig::apply() const {
|
|
const WFMAMConfigureMessage message{
|
|
decim_0, // Fixed 24 taps array : taps_16k0_decim_0
|
|
decim_1, // Dynamic 32 taps array : taps_80k_wfmam_decim_1, 38k_wfmam
|
|
taps_64_lp_bpf, // Dynamic 64 taps array , to filter modulated DSB AM 2k4 carrier before demod. AM .(LPF / BPF)
|
|
17000, // NOAA satellite tx , FM deviation = +-17Khz.
|
|
apt_audio_12k_notch_2k4_config,
|
|
apt_audio_12k_lpf_2000hz_config};
|
|
send_message(&message);
|
|
audio::set_rate(audio::Rate::Hz_12000);
|
|
}
|
|
|
|
void set_tone(const uint32_t index, const uint32_t delta, const uint32_t duration) {
|
|
shared_memory.bb_data.tones_data.tone_defs[index].delta = delta;
|
|
shared_memory.bb_data.tones_data.tone_defs[index].duration = duration;
|
|
}
|
|
|
|
void set_tones_config(const uint32_t bw, const uint32_t pre_silence, const uint16_t tone_count, const bool dual_tone, const bool audio_out) {
|
|
const TonesConfigureMessage message{
|
|
bw,
|
|
pre_silence,
|
|
tone_count,
|
|
dual_tone,
|
|
audio_out};
|
|
send_message(&message);
|
|
}
|
|
|
|
void kill_tone() {
|
|
const TonesConfigureMessage message{
|
|
0,
|
|
0,
|
|
0,
|
|
false,
|
|
false};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_sstv_data(const uint8_t vis_code, const uint32_t pixel_duration) {
|
|
const SSTVConfigureMessage message{
|
|
vis_code,
|
|
pixel_duration};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_sstvrx_data(const uint8_t code) {
|
|
const SSTVRXConfigureMessage message{
|
|
code};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_sstvrx_phase_slant(const int16_t phase, const int16_t slant) {
|
|
const SSTVRXPhaseSlantMessage message{
|
|
phase,
|
|
slant};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_afsk(const uint32_t baudrate, const uint32_t word_length, const uint32_t trigger_value, const bool trigger_word) {
|
|
const AFSKRxConfigureMessage message{
|
|
baudrate,
|
|
word_length,
|
|
trigger_value,
|
|
trigger_word};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_aprs(const uint32_t baudrate) {
|
|
const APRSRxConfigureMessage message{
|
|
baudrate};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_btlerx(uint8_t channel_number) {
|
|
const BTLERxConfigureMessage message{
|
|
channel_number};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_btletx(uint8_t channel_number, char* macAddress, char* advertisementData, uint8_t pduType) {
|
|
const BTLETxConfigureMessage message{
|
|
channel_number,
|
|
macAddress,
|
|
advertisementData,
|
|
pduType};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_nrf(const uint32_t baudrate, const uint32_t word_length, const uint32_t trigger_value, const bool trigger_word) {
|
|
const NRFRxConfigureMessage message{
|
|
baudrate,
|
|
word_length,
|
|
trigger_value,
|
|
trigger_word};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_fsk(const uint8_t samplesPerSymbol, const uint32_t syncWord, const uint8_t syncWordLength, const uint32_t preamble, const uint8_t preambleLength, uint16_t numDataBytes) {
|
|
const FSKRxConfigureMessage message{
|
|
samplesPerSymbol,
|
|
syncWord,
|
|
syncWordLength,
|
|
preamble,
|
|
preambleLength,
|
|
numDataBytes};
|
|
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_afsk_data(const uint32_t afsk_samples_per_bit, const uint32_t afsk_phase_inc_mark, const uint32_t afsk_phase_inc_space, const uint8_t afsk_repeat, const uint32_t afsk_bw, const uint8_t symbol_count) {
|
|
const AFSKTxConfigureMessage message{
|
|
afsk_samples_per_bit,
|
|
afsk_phase_inc_mark,
|
|
afsk_phase_inc_space,
|
|
afsk_repeat,
|
|
afsk_bw,
|
|
symbol_count};
|
|
send_message(&message);
|
|
}
|
|
|
|
void kill_afsk() {
|
|
const AFSKTxConfigureMessage message{
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
false};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_audiotx_config(
|
|
const uint32_t divider,
|
|
const float deviation_hz,
|
|
const float audio_gain,
|
|
uint8_t audio_shift_bits_s16,
|
|
uint8_t bits_per_sample,
|
|
const uint32_t tone_key_delta,
|
|
const bool am_enabled,
|
|
const bool dsb_enabled,
|
|
const bool usb_enabled,
|
|
const bool lsb_enabled) {
|
|
const AudioTXConfigMessage message{
|
|
divider,
|
|
deviation_hz,
|
|
audio_gain,
|
|
audio_shift_bits_s16,
|
|
bits_per_sample,
|
|
tone_key_delta,
|
|
(float)persistent_memory::tone_mix() / 100.0f,
|
|
am_enabled,
|
|
dsb_enabled,
|
|
usb_enabled,
|
|
lsb_enabled};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_fifo_data(const int8_t* data) {
|
|
const FIFODataMessage message{
|
|
data};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_pitch_rssi(int32_t avg, bool enabled) {
|
|
const PitchRSSIConfigureMessage message{
|
|
enabled,
|
|
avg};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_ook_data(const uint32_t stream_length, const uint32_t samples_per_bit, const uint8_t repeat, const uint32_t pause_symbols, const uint8_t de_bruijn_length) {
|
|
const OOKConfigureMessage message{
|
|
stream_length,
|
|
samples_per_bit,
|
|
repeat,
|
|
pause_symbols,
|
|
de_bruijn_length};
|
|
send_message(&message);
|
|
}
|
|
|
|
void kill_ook() {
|
|
const OOKConfigureMessage message{
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_fsk_data(const uint32_t stream_length, const uint32_t samples_per_bit, const uint32_t shift, const uint32_t progress_notice) {
|
|
const FSKConfigureMessage message{
|
|
stream_length,
|
|
samples_per_bit,
|
|
shift,
|
|
progress_notice};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_pocsag(int8_t baud_config) {
|
|
const POCSAGConfigureMessage message{baud_config};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_adsb() {
|
|
const ADSBConfigureMessage message{};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_jammer(const bool run, const jammer::JammerType type, const uint32_t speed) {
|
|
const JammerConfigureMessage message{
|
|
run,
|
|
type,
|
|
speed};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_rds_data(const uint16_t message_length) {
|
|
const RDSConfigureMessage message{
|
|
message_length};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_spectrum(const size_t sampling_rate, const size_t trigger) {
|
|
const WidebandSpectrumConfigMessage message{
|
|
sampling_rate, trigger};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_wefax_config(uint8_t lpm = 120, uint8_t ioc = 0) {
|
|
const WeFaxRxConfigureMessage message{lpm, ioc};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_noaaapt_config() {
|
|
const NoaaAptRxConfigureMessage message{};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_flex_config() {
|
|
const FlexConfigureMessage message{};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_siggen_tone(const uint32_t tone) {
|
|
const SigGenToneMessage message{
|
|
TONES_F2D(tone, TONES_SAMPLERATE)};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_siggen_config(const uint32_t bw, const uint32_t shape, const uint32_t duration) {
|
|
const SigGenConfigMessage message{
|
|
bw, shape, duration * TONES_SAMPLERATE};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_spectrum_painter_config(const uint16_t width, const uint16_t height, bool update, int32_t bw) {
|
|
SpectrumPainterBufferConfigureRequestMessage message{width, height, update, bw};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_subghzd_config(uint8_t modulation = 0, uint32_t sampling_rate = 0) {
|
|
const SubGhzFPRxConfigureMessage message{modulation, sampling_rate};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_moreserx_config(uint8_t mode) {
|
|
const MorseRXConfigureMessage message{mode};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_morsetx_config(uint8_t mode, uint32_t tone, float fm_delta) {
|
|
const MorseTXConfigureMessage message{mode, tone, fm_delta};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_morsetx_key(bool key_down) {
|
|
const MorseTXkeyMessage message{key_down};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_bitstream_config(uint32_t deviation, uint8_t mode) {
|
|
const StreamTXConfigurationMessage message{deviation, mode};
|
|
send_message(&message);
|
|
}
|
|
|
|
static bool baseband_image_running = false;
|
|
|
|
void run_image(const spi_flash::image_tag_t image_tag) {
|
|
if (baseband_image_running) {
|
|
chDbgPanic("BBRunning");
|
|
}
|
|
|
|
creg::m4txevent::clear();
|
|
shared_memory.clear_baseband_ready();
|
|
|
|
m4_init(image_tag, memory::map::m4_code, false);
|
|
baseband_image_running = true;
|
|
|
|
creg::m4txevent::enable();
|
|
|
|
if constexpr (enforce_core_sync) {
|
|
// Wait up to 3 seconds for baseband to start handling events.
|
|
auto count = 3'000u;
|
|
while (!shared_memory.baseband_ready && --count)
|
|
chThdSleepMilliseconds(1);
|
|
|
|
if (count == 0)
|
|
chDbgPanic("Baseband Sync Fail");
|
|
}
|
|
}
|
|
|
|
void run_prepared_image(const uint32_t m4_code) {
|
|
if (baseband_image_running) {
|
|
chDbgPanic("BBRunning");
|
|
}
|
|
|
|
creg::m4txevent::clear();
|
|
shared_memory.clear_baseband_ready();
|
|
|
|
m4_init_prepared(m4_code, false);
|
|
baseband_image_running = true;
|
|
|
|
creg::m4txevent::enable();
|
|
|
|
if constexpr (enforce_core_sync) {
|
|
// Wait up to 3 seconds for baseband to start handling events.
|
|
auto count = 3'000u;
|
|
while (!shared_memory.baseband_ready && --count)
|
|
chThdSleepMilliseconds(1);
|
|
|
|
if (count == 0)
|
|
chDbgPanic("Baseband Sync Fail");
|
|
}
|
|
}
|
|
|
|
void shutdown() {
|
|
if (!baseband_image_running) {
|
|
return;
|
|
}
|
|
|
|
creg::m4txevent::disable();
|
|
|
|
ShutdownMessage message;
|
|
send_message(&message);
|
|
|
|
shared_memory.application_queue.reset();
|
|
|
|
baseband_image_running = false;
|
|
}
|
|
|
|
void spectrum_streaming_start() {
|
|
SpectrumStreamingConfigMessage message{
|
|
SpectrumStreamingConfigMessage::Mode::Running};
|
|
send_message(&message);
|
|
}
|
|
|
|
void spectrum_streaming_stop() {
|
|
SpectrumStreamingConfigMessage message{
|
|
SpectrumStreamingConfigMessage::Mode::Stopped};
|
|
send_message(&message);
|
|
}
|
|
|
|
void set_sample_rate(uint32_t sample_rate, OversampleRate oversample_rate) {
|
|
SampleRateConfigMessage message{sample_rate, oversample_rate};
|
|
send_message(&message);
|
|
}
|
|
|
|
void capture_start(CaptureConfig* const config) {
|
|
CaptureConfigMessage message{config};
|
|
send_message(&message);
|
|
}
|
|
|
|
void capture_stop() {
|
|
CaptureConfigMessage message{nullptr};
|
|
send_message(&message);
|
|
}
|
|
|
|
void replay_start(ReplayConfig* const config) {
|
|
ReplayConfigMessage message{config};
|
|
send_message(&message);
|
|
}
|
|
|
|
void replay_stop() {
|
|
ReplayConfigMessage message{nullptr};
|
|
send_message(&message);
|
|
}
|
|
|
|
void request_beep(RequestSignalMessage::Signal beep_type) {
|
|
RequestSignalMessage message{beep_type};
|
|
send_message(&message);
|
|
}
|
|
|
|
void request_roger_beep() {
|
|
request_beep(RequestSignalMessage::Signal::RogerBeepRequest);
|
|
}
|
|
|
|
void request_rssi_beep() {
|
|
request_beep(RequestSignalMessage::Signal::RSSIBeepRequest);
|
|
}
|
|
|
|
void request_beep_stop() {
|
|
request_beep(RequestSignalMessage::Signal::BeepStopRequest);
|
|
}
|
|
|
|
void request_audio_beep(uint32_t freq, uint32_t sample_rate, uint32_t duration_ms) {
|
|
AudioBeepMessage message{freq, sample_rate, duration_ms};
|
|
send_message(&message);
|
|
}
|
|
|
|
} /* namespace baseband */
|