Fix generator output spikes

- Add manual overwrite in FPGA for hardware that is usually handled by sweep control
- Use static hardware configuration for generator (no sweep active anymore)
This commit is contained in:
Jan Käberich 2022-06-23 17:51:15 +02:00
parent 36f826f7a6
commit 43b588c2f6
12 changed files with 169 additions and 72 deletions

View File

@ -343,10 +343,10 @@ The register contains the number of points per sweep negative one, e.g. set to 1
\rwbits{9}{2}{Window[1:0]} \rwbits{9}{2}{Window[1:0]}
\rwbits{11}{1}{SCEN} \rwbits{11}{1}{SCEN}
\rwbits{12}{1}{LCEN} \rwbits{12}{1}{LCEN}
\robits{13}{3}{reserved} \robits{13}{2}{reserved}
%\rwbits{13}{1}{EXP2} %\rwbits{13}{1}{EXP2}
%\rwbits{14}{1}{EXP1} %\rwbits{14}{1}{EXP1}
%\rwbits{15}{1}{PSEN} \rwbits{15}{1}{PSEN}
\end{tikzpicture} \end{tikzpicture}
\end{center} \end{center}
\begin{itemize} \begin{itemize}
@ -426,7 +426,40 @@ Each point in the sweep is done in stages. Each stage consists of (optionally) r
\item \textbf{IH:} Individual halt: Sets the behavior of the "halt sweep" bit (see section~\ref{sweepconfig}). If 1, the sampling is halted before each stage. If 0, the sampling is only halted before the point and all stages are executed without additional halts inbetween. \item \textbf{IH:} Individual halt: Sets the behavior of the "halt sweep" bit (see section~\ref{sweepconfig}). If 1, the sampling is halted before each stage. If 0, the sampling is only halted before the point and all stages are executed without additional halts inbetween.
\item \textbf{Port 1 stage} Number of stage during which the source signal is routed to port 1. Must not have the same value as Port 2 stage. \item \textbf{Port 1 stage} Number of stage during which the source signal is routed to port 1. Must not have the same value as Port 2 stage.
\item \textbf{Port 2 stage} Number of stage during which the source signal is routed to port 2. Must not have the same value as Port 1 stage. \item \textbf{Port 2 stage} Number of stage during which the source signal is routed to port 2. Must not have the same value as Port 1 stage.
\end{itemize}
\subsection{Hardware override register: 0x07}
Allows overwriting hardware settings, regardless of whether a sweep is active or not.
\label{reg:hw_override}
\begin{center}
\begin{tikzpicture}
\bitrect{16}{16-\bit}
\rwbits{0}{1}{OWE}
\rwbits{1}{7}{Attenuator[6:0]}
\rwbits{8}{2}{SourceFilter}
\rwbits{10}{1}{BS}
\rwbits{11}{1}{P1EN}
\rwbits{12}{1}{P2EN}
\robits{13}{3}{reserved}
\end{tikzpicture}
\end{center}
\begin{itemize}
\item \textbf{OWE:} Overwrite enable. If 1, this register is used to configure the hardware. If 0, all other bits in the register are ignored. Must be set to 0 for valid sweep operation.
\item \textbf{Attenuator[6:0]:} Attenuator setting
\item \textbf{SourceFilter:} Low pass filter selection for source signal
\begin{center}
\begin{tabular}{ c|c }
Setting & Selected Band\\
\hline
00 & \SIrange{0}{900}{\mega\hertz}\\
01 & \SIrange{900}{1800}{\mega\hertz}\\
10 & \SIrange{1800}{3500}{\mega\hertz}\\
11 & \SIrange{3500}{6000}{\mega\hertz}\\
\end{tabular}
\end{center}
\item \textbf{BS: Band select.} Set to 0 for highband, set to 1 for lowband.
\item \textbf{P1EN:} Route signal to port 1. Must not be enabled at the same time as P2EN.
\item \textbf{P2EN:} Route signal to port 2. Must not be enabled at the same time as P1EN.
\end{itemize} \end{itemize}
\subsection{MAX2871 Default Values Registers: 0x08-0x0F} \subsection{MAX2871 Default Values Registers: 0x08-0x0F}

View File

@ -72,6 +72,10 @@ entity SPICommands is
SWEEP_HALTED : in STD_LOGIC; SWEEP_HALTED : in STD_LOGIC;
SWEEP_RESUME : out STD_LOGIC; SWEEP_RESUME : out STD_LOGIC;
-- hardware overwrite signals
SPI_OVERWRITE_ENABLED : out STD_LOGIC;
SPI_OVERWRITE_DATA : out STD_LOGIC_VECTOR(14 downto 0);
-- DFT signals -- DFT signals
DFT_BIN1_PHASEINC : out STD_LOGIC_VECTOR (15 downto 0); DFT_BIN1_PHASEINC : out STD_LOGIC_VECTOR (15 downto 0);
DFT_DIFFBIN_PHASEINC : out STD_LOGIC_VECTOR (15 downto 0); DFT_DIFFBIN_PHASEINC : out STD_LOGIC_VECTOR (15 downto 0);
@ -166,6 +170,9 @@ begin
INTERRUPT_ASSERTED <= '0'; INTERRUPT_ASSERTED <= '0';
latched_result <= (others => '0'); latched_result <= (others => '0');
SPI_OVERWRITE_ENABLED <= '0';
SPI_OVERWRITE_DATA <= (others => '0');
DFT_BIN1_PHASEINC <= (others => '0'); DFT_BIN1_PHASEINC <= (others => '0');
DFT_DIFFBIN_PHASEINC <= (others => '0'); DFT_DIFFBIN_PHASEINC <= (others => '0');
dft_next <= '0'; dft_next <= '0';
@ -249,6 +256,8 @@ begin
INDIVIDUAL_HALT <= spi_buf_out(12); INDIVIDUAL_HALT <= spi_buf_out(12);
PORT1_STAGE <= spi_buf_out(5 downto 3); PORT1_STAGE <= spi_buf_out(5 downto 3);
PORT2_STAGE <= spi_buf_out(2 downto 0); PORT2_STAGE <= spi_buf_out(2 downto 0);
when 7 => SPI_OVERWRITE_ENABLED <= spi_buf_out(15);
SPI_OVERWRITE_DATA <= spi_buf_out(14 downto 0);
when 8 => MAX2871_DEF_0(15 downto 0) <= spi_buf_out; when 8 => MAX2871_DEF_0(15 downto 0) <= spi_buf_out;
when 9 => MAX2871_DEF_0(31 downto 16) <= spi_buf_out; when 9 => MAX2871_DEF_0(31 downto 16) <= spi_buf_out;
when 10 => MAX2871_DEF_1(15 downto 0) <= spi_buf_out; when 10 => MAX2871_DEF_1(15 downto 0) <= spi_buf_out;

View File

@ -224,7 +224,7 @@
<status xil_pn:value="SuccessfullyRun"/> <status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="ReadyToRun"/> <status xil_pn:value="ReadyToRun"/>
</transform> </transform>
<transform xil_pn:end_ts="1648844622" xil_pn:in_ck="-4366097307991745463" xil_pn:name="TRAN_regenerateCores" xil_pn:prop_ck="-2723611991789822717" xil_pn:start_ts="1648844621"> <transform xil_pn:end_ts="1655996970" xil_pn:in_ck="-4366097307991745463" xil_pn:name="TRAN_regenerateCores" xil_pn:prop_ck="-2723611991789822717" xil_pn:start_ts="1655996970">
<status xil_pn:value="SuccessfullyRun"/> <status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="ReadyToRun"/> <status xil_pn:value="ReadyToRun"/>
<outfile xil_pn:name="ipcore_dir/DSP_SLICE.ngc"/> <outfile xil_pn:name="ipcore_dir/DSP_SLICE.ngc"/>
@ -253,7 +253,7 @@
<status xil_pn:value="SuccessfullyRun"/> <status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="ReadyToRun"/> <status xil_pn:value="ReadyToRun"/>
</transform> </transform>
<transform xil_pn:end_ts="1648846416" xil_pn:in_ck="2241500006820465658" xil_pn:name="TRANEXT_xstsynthesize_spartan6" xil_pn:prop_ck="3256065936432453276" xil_pn:start_ts="1648846407"> <transform xil_pn:end_ts="1655998603" xil_pn:in_ck="2241500006820465658" xil_pn:name="TRANEXT_xstsynthesize_spartan6" xil_pn:prop_ck="3256065936432453276" xil_pn:start_ts="1655998594">
<status xil_pn:value="SuccessfullyRun"/> <status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="WarningsGenerated"/> <status xil_pn:value="WarningsGenerated"/>
<status xil_pn:value="ReadyToRun"/> <status xil_pn:value="ReadyToRun"/>
@ -275,7 +275,7 @@
<status xil_pn:value="SuccessfullyRun"/> <status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="ReadyToRun"/> <status xil_pn:value="ReadyToRun"/>
</transform> </transform>
<transform xil_pn:end_ts="1648846420" xil_pn:in_ck="5411862124762956458" xil_pn:name="TRANEXT_ngdbuild_FPGA" xil_pn:prop_ck="4604875190571501774" xil_pn:start_ts="1648846416"> <transform xil_pn:end_ts="1655998607" xil_pn:in_ck="5411862124762956458" xil_pn:name="TRANEXT_ngdbuild_FPGA" xil_pn:prop_ck="4604875190571501774" xil_pn:start_ts="1655998603">
<status xil_pn:value="SuccessfullyRun"/> <status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="ReadyToRun"/> <status xil_pn:value="ReadyToRun"/>
<outfile xil_pn:name="_ngo"/> <outfile xil_pn:name="_ngo"/>
@ -284,7 +284,7 @@
<outfile xil_pn:name="top.ngd"/> <outfile xil_pn:name="top.ngd"/>
<outfile xil_pn:name="top_ngdbuild.xrpt"/> <outfile xil_pn:name="top_ngdbuild.xrpt"/>
</transform> </transform>
<transform xil_pn:end_ts="1648846449" xil_pn:in_ck="8512332261572065657" xil_pn:name="TRANEXT_map_spartan6" xil_pn:prop_ck="-4668962392366239264" xil_pn:start_ts="1648846420"> <transform xil_pn:end_ts="1655998649" xil_pn:in_ck="8512332261572065657" xil_pn:name="TRANEXT_map_spartan6" xil_pn:prop_ck="-4668962392366239264" xil_pn:start_ts="1655998607">
<status xil_pn:value="SuccessfullyRun"/> <status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="WarningsGenerated"/> <status xil_pn:value="WarningsGenerated"/>
<status xil_pn:value="ReadyToRun"/> <status xil_pn:value="ReadyToRun"/>
@ -298,7 +298,7 @@
<outfile xil_pn:name="top_summary.xml"/> <outfile xil_pn:name="top_summary.xml"/>
<outfile xil_pn:name="top_usage.xml"/> <outfile xil_pn:name="top_usage.xml"/>
</transform> </transform>
<transform xil_pn:end_ts="1648846462" xil_pn:in_ck="1117507038335044978" xil_pn:name="TRANEXT_par_spartan6" xil_pn:prop_ck="-1085068593928086116" xil_pn:start_ts="1648846449"> <transform xil_pn:end_ts="1655998662" xil_pn:in_ck="1117507038335044978" xil_pn:name="TRANEXT_par_spartan6" xil_pn:prop_ck="-1085068593928086116" xil_pn:start_ts="1655998649">
<status xil_pn:value="SuccessfullyRun"/> <status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="ReadyToRun"/> <status xil_pn:value="ReadyToRun"/>
<outfile xil_pn:name="_xmsgs/par.xmsgs"/> <outfile xil_pn:name="_xmsgs/par.xmsgs"/>
@ -312,7 +312,7 @@
<outfile xil_pn:name="top_pad.txt"/> <outfile xil_pn:name="top_pad.txt"/>
<outfile xil_pn:name="top_par.xrpt"/> <outfile xil_pn:name="top_par.xrpt"/>
</transform> </transform>
<transform xil_pn:end_ts="1648846469" xil_pn:in_ck="154288912438" xil_pn:name="TRANEXT_bitFile_spartan6" xil_pn:prop_ck="3274353840855015246" xil_pn:start_ts="1648846462"> <transform xil_pn:end_ts="1655998669" xil_pn:in_ck="154288912438" xil_pn:name="TRANEXT_bitFile_spartan6" xil_pn:prop_ck="3274353840855015246" xil_pn:start_ts="1655998662">
<status xil_pn:value="SuccessfullyRun"/> <status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="ReadyToRun"/> <status xil_pn:value="ReadyToRun"/>
<outfile xil_pn:name="_xmsgs/bitgen.xmsgs"/> <outfile xil_pn:name="_xmsgs/bitgen.xmsgs"/>
@ -365,7 +365,7 @@
<status xil_pn:value="InputChanged"/> <status xil_pn:value="InputChanged"/>
<status xil_pn:value="InputRemoved"/> <status xil_pn:value="InputRemoved"/>
</transform> </transform>
<transform xil_pn:end_ts="1648846462" xil_pn:in_ck="8512326635937592693" xil_pn:name="TRAN_postRouteTrce" xil_pn:prop_ck="445577401284416184" xil_pn:start_ts="1648846459"> <transform xil_pn:end_ts="1655998662" xil_pn:in_ck="8512326635937592693" xil_pn:name="TRAN_postRouteTrce" xil_pn:prop_ck="445577401284416184" xil_pn:start_ts="1655998659">
<status xil_pn:value="SuccessfullyRun"/> <status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="ReadyToRun"/> <status xil_pn:value="ReadyToRun"/>
<outfile xil_pn:name="_xmsgs/trce.xmsgs"/> <outfile xil_pn:name="_xmsgs/trce.xmsgs"/>

Binary file not shown.

View File

@ -268,6 +268,8 @@ architecture Behavioral of top is
RESET_MINMAX : out STD_LOGIC; RESET_MINMAX : out STD_LOGIC;
SWEEP_HALTED : in STD_LOGIC; SWEEP_HALTED : in STD_LOGIC;
SWEEP_RESUME : out STD_LOGIC; SWEEP_RESUME : out STD_LOGIC;
SPI_OVERWRITE_ENABLED : out STD_LOGIC;
SPI_OVERWRITE_DATA : out STD_LOGIC_VECTOR(14 downto 0);
DFT_BIN1_PHASEINC : out STD_LOGIC_VECTOR (15 downto 0); DFT_BIN1_PHASEINC : out STD_LOGIC_VECTOR (15 downto 0);
DFT_DIFFBIN_PHASEINC : out STD_LOGIC_VECTOR (15 downto 0); DFT_DIFFBIN_PHASEINC : out STD_LOGIC_VECTOR (15 downto 0);
DFT_RESULT_READY : in STD_LOGIC; DFT_RESULT_READY : in STD_LOGIC;
@ -339,6 +341,8 @@ architecture Behavioral of top is
signal source_unlocked : std_logic; signal source_unlocked : std_logic;
signal lo_unlocked : std_logic; signal lo_unlocked : std_logic;
signal source_filter : std_logic_vector(1 downto 0);
-- ADC signals -- ADC signals
signal adc_trigger_sample : std_logic; signal adc_trigger_sample : std_logic;
signal adc_port1_ready : std_logic; signal adc_port1_ready : std_logic;
@ -372,8 +376,9 @@ architecture Behavioral of top is
signal sweep_port2_stage : STD_LOGIC_VECTOR (2 downto 0); signal sweep_port2_stage : STD_LOGIC_VECTOR (2 downto 0);
signal sweep_config_data : std_logic_vector(95 downto 0); signal sweep_config_data : std_logic_vector(95 downto 0);
signal sweep_config_address : std_logic_vector(12 downto 0); signal sweep_config_address : std_logic_vector(12 downto 0);
signal source_filter : std_logic_vector(1 downto 0); signal sweep_source_filter : std_logic_vector(1 downto 0);
signal sweep_band : std_logic; signal sweep_band : std_logic;
signal sweep_attenuator : std_logic_vector(6 downto 0);
signal sweep_config_write_address : std_logic_vector(12 downto 0); signal sweep_config_write_address : std_logic_vector(12 downto 0);
signal sweep_config_write_data : std_logic_vector(95 downto 0); signal sweep_config_write_data : std_logic_vector(95 downto 0);
@ -419,6 +424,10 @@ architecture Behavioral of top is
signal debug : std_logic_vector(10 downto 0); signal debug : std_logic_vector(10 downto 0);
signal intr : std_logic; signal intr : std_logic;
-- HW overwrite signals
signal HW_overwrite_enabled : std_logic;
signal HW_overwrite_data : std_logic_vector(14 downto 0);
-- DFT signals -- DFT signals
signal dft_bin1_phaseinc : std_logic_vector (15 downto 0); signal dft_bin1_phaseinc : std_logic_vector (15 downto 0);
signal dft_diffbin_phaseinc : std_logic_vector (15 downto 0); signal dft_diffbin_phaseinc : std_logic_vector (15 downto 0);
@ -436,20 +445,20 @@ begin
LEDS(2) <= SOURCE_LD; LEDS(2) <= SOURCE_LD;
LEDS(3) <= LO1_LD; LEDS(3) <= LO1_LD;
-- Sweep and active port -- Sweep and active port
PORT_SELECT2 <= sweep_excite_port2 and portswitch_en; PORT_SELECT2 <= (sweep_excite_port2 and portswitch_en) when HW_overwrite_enabled = '0' else HW_overwrite_data(3);
PORT2_SELECT <= sweep_excite_port2 and portswitch_en; PORT2_SELECT <= (sweep_excite_port2 and portswitch_en) when HW_overwrite_enabled = '0' else HW_overwrite_data(3);
PORT_SELECT1 <= sweep_excite_port1 and portswitch_en; PORT_SELECT1 <= (sweep_excite_port1 and portswitch_en) when HW_overwrite_enabled = '0' else HW_overwrite_data(4);
PORT1_SELECT <= sweep_excite_port1 and portswitch_en; PORT1_SELECT <= (sweep_excite_port1 and portswitch_en) when HW_overwrite_enabled = '0' else HW_overwrite_data(4);
BAND_SELECT_HIGH <= not sweep_band; BAND_SELECT_HIGH <= not sweep_band when HW_overwrite_enabled = '0' else not HW_overwrite_data(5);
BAND_SELECT_LOW <= sweep_band; BAND_SELECT_LOW <= sweep_band when HW_overwrite_enabled = '0' else HW_overwrite_data(5);
PORT1_MIX2_EN <= port1mix_en; PORT1_MIX2_EN <= port1mix_en;
PORT1_MIX1_EN <= not port1mix_en; PORT1_MIX1_EN <= not port1mix_en;
PORT2_MIX2_EN <= port2mix_en; PORT2_MIX2_EN <= port2mix_en;
PORT2_MIX1_EN <= not port2mix_en; PORT2_MIX1_EN <= not port2mix_en;
REF_MIX2_EN <= refmix_en; REF_MIX2_EN <= refmix_en;
REF_MIX1_EN <= not refmix_en; REF_MIX1_EN <= not refmix_en;
LEDS(4) <= not (not sweep_reset and sweep_excite_port2 and portswitch_en); LEDS(4) <= not (not sweep_reset and sweep_excite_port2 and portswitch_en) when HW_overwrite_enabled = '0' else not HW_overwrite_data(3);
LEDS(5) <= not (not sweep_reset and sweep_excite_port1 and portswitch_en); LEDS(5) <= not (not sweep_reset and sweep_excite_port1 and portswitch_en) when HW_overwrite_enabled = '0' else not HW_overwrite_data(4);
-- Uncommitted LEDs -- Uncommitted LEDs
LEDS(7 downto 6) <= user_leds(1 downto 0); LEDS(7 downto 6) <= user_leds(1 downto 0);
--LEDS(7) <= '0'; --LEDS(7) <= '0';
@ -675,8 +684,8 @@ begin
PLL_LOCKED => plls_locked, PLL_LOCKED => plls_locked,
SWEEP_HALTED => sweep_halted, SWEEP_HALTED => sweep_halted,
SWEEP_RESUME => sweep_resume, SWEEP_RESUME => sweep_resume,
ATTENUATOR => ATTENUATION, ATTENUATOR => sweep_attenuator,
SOURCE_FILTER => source_filter, SOURCE_FILTER => sweep_source_filter,
STAGES => sweep_stages, STAGES => sweep_stages,
INDIVIDUAL_HALT => sweep_individual_halt, INDIVIDUAL_HALT => sweep_individual_halt,
PORT1_STAGE => sweep_port1_stage, PORT1_STAGE => sweep_port1_stage,
@ -689,11 +698,14 @@ begin
); );
-- Source filter mapping -- Source filter mapping
source_filter <= sweep_source_filter when HW_overwrite_enabled = '0' else HW_overwrite_data(7 downto 6);
FILT_IN_C1 <= '0' when source_filter = "00" or source_filter = "10" else '1'; FILT_IN_C1 <= '0' when source_filter = "00" or source_filter = "10" else '1';
FILT_IN_C2 <= '0' when source_filter = "11" or source_filter = "10" else '1'; FILT_IN_C2 <= '0' when source_filter = "11" or source_filter = "10" else '1';
FILT_OUT_C1 <= '0' when source_filter = "00" or source_filter = "10" else '1'; FILT_OUT_C1 <= '0' when source_filter = "00" or source_filter = "10" else '1';
FILT_OUT_C2 <= '0' when source_filter = "00" or source_filter = "01" else '1'; FILT_OUT_C2 <= '0' when source_filter = "00" or source_filter = "01" else '1';
ATTENUATION <= sweep_attenuator when HW_overwrite_enabled = '0' else HW_overwrite_data(14 downto 8);
-- PLL/SPI mux -- PLL/SPI mux
-- only select FPGA SPI slave when both AUX1 and AUX2 are low -- only select FPGA SPI slave when both AUX1 and AUX2 are low
fpga_select <= nss_sync when aux1_sync = '0' and aux2_sync = '0' else '1'; fpga_select <= nss_sync when aux1_sync = '0' and aux2_sync = '0' else '1';
@ -756,6 +768,8 @@ begin
INDIVIDUAL_HALT => sweep_individual_halt, INDIVIDUAL_HALT => sweep_individual_halt,
PORT1_STAGE => sweep_port1_stage, PORT1_STAGE => sweep_port1_stage,
PORT2_STAGE => sweep_port2_stage, PORT2_STAGE => sweep_port2_stage,
SPI_OVERWRITE_ENABLED => HW_overwrite_enabled,
SPI_OVERWRITE_DATA => HW_overwrite_data,
DFT_BIN1_PHASEINC => dft_bin1_phaseinc, DFT_BIN1_PHASEINC => dft_bin1_phaseinc,
DFT_DIFFBIN_PHASEINC => dft_diffbin_phaseinc, DFT_DIFFBIN_PHASEINC => dft_diffbin_phaseinc,
DFT_RESULT_READY => dft_ready, DFT_RESULT_READY => dft_ready,

View File

@ -259,6 +259,7 @@ inline void App_Process() {
// insert the last received packet (restarts the timed out operation) // insert the last received packet (restarts the timed out operation)
USBPacketReceived(last_measure_packet); USBPacketReceived(last_measure_packet);
} }
HW::updateDeviceStatus();
} }
} }

View File

@ -356,6 +356,27 @@ uint16_t FPGA::GetStatus() {
return (uint16_t) status[0] << 8 | status[1]; return (uint16_t) status[0] << 8 | status[1];
} }
void FPGA::OverwriteHardware(uint8_t attenuation, LowpassFilter filter, bool lowband, bool port1_enabled, bool port2_enabled) {
uint16_t val = 0;
val |= 0x8000; // enable overwrite
val |= (attenuation & 0x7F) << 8;
val |= (int) filter << 6;
if (lowband) {
val |= 0x0020;
}
if (port1_enabled) {
val |= 0x0010;
}
if (port2_enabled) {
val |= 0x0008;
}
WriteRegister(Reg::HardwareOverwrite, val);
}
void FPGA::DisableHardwareOverwrite() {
WriteRegister(Reg::HardwareOverwrite, 0x0000);
}
FPGA::ADCLimits FPGA::GetADCLimits() { FPGA::ADCLimits FPGA::GetADCLimits() {
uint16_t cmd = 0xE000; uint16_t cmd = 0xE000;
SwitchBytes(cmd); SwitchBytes(cmd);

View File

@ -18,6 +18,7 @@ enum class Reg {
ADCPrescaler = 0x04, ADCPrescaler = 0x04,
PhaseIncrement = 0x05, PhaseIncrement = 0x05,
SweepSetup = 0x06, SweepSetup = 0x06,
HardwareOverwrite = 0x07,
MAX2871Def0LSB = 0x08, MAX2871Def0LSB = 0x08,
MAX2871Def0MSB = 0x09, MAX2871Def0MSB = 0x09,
MAX2871Def1LSB = 0x0A, MAX2871Def1LSB = 0x0A,
@ -134,6 +135,9 @@ void ResetADCLimits();
void ResumeHaltedSweep(); void ResumeHaltedSweep();
uint16_t GetStatus(); uint16_t GetStatus();
void OverwriteHardware(uint8_t attenuation, LowpassFilter filter, bool lowband, bool port1_enabled, bool port2_enabled);
void DisableHardwareOverwrite();
void StartSweep(); void StartSweep();
void AbortSweep(); void AbortSweep();

View File

@ -2,73 +2,59 @@
#include "Generator.hpp" #include "Generator.hpp"
#include "Manual.hpp" #include "Manual.hpp"
#include "Hardware.hpp" #include "Hardware.hpp"
#include "HW_HAL.hpp"
#include "max2871.hpp" #include "max2871.hpp"
#include "Si5351C.hpp" #include "Si5351C.hpp"
using namespace HWHAL;
void Generator::Setup(Protocol::GeneratorSettings g) { void Generator::Setup(Protocol::GeneratorSettings g) {
HW::SetMode(HW::Mode::Generator);
if(g.activePort == 0) { if(g.activePort == 0) {
// both ports disabled, no need to configure PLLs // both ports disabled, no need to configure PLLs
HW::SetIdle(); Si5351.Disable(SiChannel::LowbandSource);
FPGA::Disable(FPGA::Periphery::SourceChip);
FPGA::Disable(FPGA::Periphery::Amplifier);
FPGA::Disable(FPGA::Periphery::SourceRF);
FPGA::Disable(FPGA::Periphery::PortSwitch);
FPGA::DisableHardwareOverwrite();
return; return;
} }
Protocol::ManualControlV1 m;
// LOs not required
m.LO1CE = 0;
m.LO1Frequency = 1000000000;
m.LO1RFEN = 0;
m.LO1RFEN = 0;
m.LO2EN = 0;
m.LO2Frequency = 60000000;
m.Port1EN = 0;
m.Port2EN = 0;
m.RefEN = 0;
m.Samples = 131072;
m.WindowType = (int) FPGA::Window::None;
switch(g.activePort) {
case 1:
m.AmplifierEN = 1;
m.PortSwitch = 0;
break;
case 2:
m.AmplifierEN = 1;
m.PortSwitch = 1;
break;
}
g.frequency = Cal::FrequencyCorrectionToDevice(g.frequency); g.frequency = Cal::FrequencyCorrectionToDevice(g.frequency);
auto amplitude = HW::GetAmplitudeSettings(g.cdbm_level, g.frequency, g.applyAmplitudeCorrection, g.activePort == 2); auto amplitude = HW::GetAmplitudeSettings(g.cdbm_level, g.frequency, g.applyAmplitudeCorrection, g.activePort == 2);
// Select correct source // Select correct source
bool bandSelect;
FPGA::LowpassFilter lp = FPGA::LowpassFilter::M947;
if(g.frequency < HW::BandSwitchFrequency) { if(g.frequency < HW::BandSwitchFrequency) {
m.SourceLowEN = 1; bandSelect = true;
m.SourceLowFrequency = g.frequency; FPGA::Disable(FPGA::Periphery::SourceChip);
m.SourceHighCE = 0; Si5351.SetCLK(SiChannel::LowbandSource, g.frequency, Si5351C::PLL::B,
m.SourceHighRFEN = 0; amplitude.lowBandPower);
m.SourceHighFrequency = HW::BandSwitchFrequency; Si5351.Enable(SiChannel::LowbandSource);
m.SourceHighLowpass = (int) FPGA::LowpassFilter::M947;
m.SourceHighPower = (int) MAX2871::Power::n4dbm;
m.SourceHighband = false;
m.SourceLowPower = (int) amplitude.lowBandPower;
} else { } else {
m.SourceLowEN = 0; bandSelect = false;
m.SourceLowFrequency = HW::BandSwitchFrequency; Si5351.Disable(SiChannel::LowbandSource);
m.SourceHighCE = 1; FPGA::Enable(FPGA::Periphery::SourceChip);
m.SourceHighRFEN = 1; FPGA::SetMode(FPGA::Mode::SourcePLL);
m.SourceHighFrequency = g.frequency; Source.SetPowerOutA(amplitude.highBandPower);
Source.SetFrequency(g.frequency);
Source.Update();
FPGA::SetMode(FPGA::Mode::FPGA);
if(g.frequency < 900000000UL) { if(g.frequency < 900000000UL) {
m.SourceHighLowpass = (int) FPGA::LowpassFilter::M947; lp = FPGA::LowpassFilter::M947;
} else if(g.frequency < 1800000000UL) { } else if(g.frequency < 1800000000UL) {
m.SourceHighLowpass = (int) FPGA::LowpassFilter::M1880; lp = FPGA::LowpassFilter::M1880;
} else if(g.frequency < 3500000000UL) { } else if(g.frequency < 3500000000UL) {
m.SourceHighLowpass = (int) FPGA::LowpassFilter::M3500; lp = FPGA::LowpassFilter::M3500;
} else { } else {
m.SourceHighLowpass = (int) FPGA::LowpassFilter::None; lp = FPGA::LowpassFilter::None;
} }
m.SourceHighband = true;
m.SourceHighPower = (int) amplitude.highBandPower;
m.SourceLowPower = (int) Si5351C::DriveStrength::mA2;
} }
m.attenuator = amplitude.attenuator; FPGA::OverwriteHardware(amplitude.attenuator, lp, bandSelect, g.activePort == 1, g.activePort == 2);
Manual::Setup(m);
HW::SetOutputUnlevel(amplitude.unlevel); HW::SetOutputUnlevel(amplitude.unlevel);
FPGA::Enable(FPGA::Periphery::Amplifier, true);
FPGA::Enable(FPGA::Periphery::SourceRF, true);
FPGA::Enable(FPGA::Periphery::PortSwitch, true);
} }

View File

@ -8,6 +8,7 @@
#include "Manual.hpp" #include "Manual.hpp"
#include "delay.hpp" #include "delay.hpp"
#include "SpectrumAnalyzer.hpp" #include "SpectrumAnalyzer.hpp"
#include "Communication.h"
#include <cstring> #include <cstring>
#define LOG_LEVEL LOG_LEVEL_INFO #define LOG_LEVEL LOG_LEVEL_INFO
@ -139,6 +140,8 @@ bool HW::Init() {
return false; return false;
} }
FPGA::DisableHardwareOverwrite();
// Set default ADC samplerate // Set default ADC samplerate
FPGA::WriteRegister(FPGA::Reg::ADCPrescaler, ADCprescaler); FPGA::WriteRegister(FPGA::Reg::ADCPrescaler, ADCprescaler);
// Set phase increment according to // Set phase increment according to
@ -229,6 +232,7 @@ void HW::SetIdle() {
unlevel = false; unlevel = false;
FPGA::AbortSweep(); FPGA::AbortSweep();
FPGA::SetMode(FPGA::Mode::FPGA); FPGA::SetMode(FPGA::Mode::FPGA);
FPGA::DisableHardwareOverwrite();
FPGA::Enable(FPGA::Periphery::SourceChip, false); FPGA::Enable(FPGA::Periphery::SourceChip, false);
FPGA::Enable(FPGA::Periphery::SourceRF, false); FPGA::Enable(FPGA::Periphery::SourceRF, false);
FPGA::Enable(FPGA::Periphery::LO1Chip, false); FPGA::Enable(FPGA::Periphery::LO1Chip, false);
@ -289,7 +293,7 @@ HW::AmplitudeSettings HW::GetAmplitudeSettings(int16_t cdbm, uint64_t freq, bool
bool HW::TimedOut() { bool HW::TimedOut() {
constexpr uint64_t timeout = 1000000; constexpr uint64_t timeout = 1000000;
if(activeMode != Mode::Idle && Delay::get_us() - lastISR > timeout) { if(activeMode != Mode::Idle && activeMode != Mode::Generator && Delay::get_us() - lastISR > timeout) {
return true; return true;
} else { } else {
return false; return false;
@ -420,6 +424,28 @@ uint64_t HW::getLastISRTimestamp() {
return lastISR; return lastISR;
} }
void HW::updateDeviceStatus() {
if(activeMode == Mode::Idle || activeMode == Mode::Generator) {
static uint32_t last_update = 0;
if(HAL_GetTick() - last_update >= 1000) {
last_update = HAL_GetTick();
HW::Ref::update();
Protocol::PacketInfo packet;
packet.type = Protocol::PacketType::DeviceStatusV1;
// Enable PLL chips for temperature reading
bool srcEn = FPGA::IsEnabled(FPGA::Periphery::SourceChip);
bool LOEn = FPGA::IsEnabled(FPGA::Periphery::LO1Chip);
FPGA::Enable(FPGA::Periphery::SourceChip);
FPGA::Enable(FPGA::Periphery::LO1Chip);
HW::getDeviceStatus(&packet.statusV1, true);
// restore PLL state
FPGA::Enable(FPGA::Periphery::SourceChip, srcEn);
FPGA::Enable(FPGA::Periphery::LO1Chip, LOEn);
Communication::Send(packet);
}
}
}
uint16_t HW::getDFTPhaseInc() { uint16_t HW::getDFTPhaseInc() {
return DFTphaseInc; return DFTphaseInc;
} }

View File

@ -88,6 +88,7 @@ static constexpr Protocol::DeviceInfo Info = {
enum class Mode { enum class Mode {
Idle, Idle,
Manual, Manual,
Generator,
VNA, VNA,
SA, SA,
}; };
@ -101,6 +102,8 @@ uint64_t getLastISRTimestamp();
void SetOutputUnlevel(bool unlev); void SetOutputUnlevel(bool unlev);
void updateDeviceStatus();
using AmplitudeSettings = struct _amplitudeSettings { using AmplitudeSettings = struct _amplitudeSettings {
uint8_t attenuator; uint8_t attenuator;
union { union {