upsilon/firmware/rtl/autoapproach/autoapproach.v

88 lines
1.8 KiB
Coq
Raw Normal View History

2022-12-28 14:32:35 -05:00
/* Autoapproach module. This module applies a waveform located in memory
* (and copied into Block RAM). This waveform is arbitrary but of fixed
* length.
2023-01-22 23:43:51 -05:00
* time in between sent sample, total period 10-50ms
2022-12-28 14:32:35 -05:00
*/
module autoapproach #(
2023-01-22 23:43:51 -05:00
parameter DAC_WID = 24,
parameter DAC_DATA_WID = 20,
parameter ADC_WID = 24
2022-12-28 14:32:35 -05:00
) (
input clk,
input arm,
output stopped,
output detected,
input polarity,
2023-01-22 23:43:51 -05:00
input [ADC_WID-1:0] setpoint,
2022-12-28 14:32:35 -05:00
/* BRAM memory interface. Each pulse returns the next value in
* the sequence, and also informs the module if the sequence
* is completed. The kernel interacts primarily with this interface.
*/
2023-01-22 23:43:51 -05:00
input [DAC_DATA_WID-1:0] word,
2022-12-28 14:32:35 -05:00
output word_next,
input word_last,
input word_ok,
output word_rst,
/* DAC wires. */
input dac_finished,
output dac_arm,
2023-01-22 23:43:51 -05:00
input [DAC_WID-1:0] dac_in,
output [DAC_WID-1:0] dac_out,
2022-12-28 14:32:35 -05:00
input adc_finished,
output adc_arm,
2023-01-22 23:43:51 -05:00
input [ADC_WID-1:0] measurement
2022-12-28 14:32:35 -05:00
);
localparam WAIT_ON_ARM = 0;
localparam RECV_WORD = 1;
localparam WAIT_ON_DAC = 2;
localparam WAIT_ON_DETECTION = 3;
localparam DETECTED = 4;
reg [2:0] state = WAIT_ON_ARM;
always @ (posedge clk) case (state)
WAIT_ON_ARM: if (arm) begin
state <= RECV_WORD;
word_next <= 1;
stopped <= 0;
end else begin
stopped <= 1;
word_rst <= 1;
end
RECV_WORD: if (word_ok) begin
dac_out <= {4'b0001, word};
dac_arm <= 1;
2023-01-22 23:43:51 -05:00
2022-12-28 14:32:35 -05:00
word_next <= 0;
state <= WAIT_ON_DAC;
end
WAIT_ON_DAC: if (dac_finished) begin
dac_arm <= 0;
2023-01-22 23:43:51 -05:00
/* Was the last word read *the* last word? */
if (word_last) begin
2022-12-28 14:32:35 -05:00
state <= WAIT_ON_DETECTION;
2023-01-22 23:43:51 -05:00
adc_arm <= 1;
2022-12-28 14:32:35 -05:00
end else begin
state <= WAIT_ON_ARM;
end
endcase
WAIT_ON_DETECTION: if (adc_finished) begin
2023-01-22 23:43:51 -05:00
if ((polarity && measurement >= setpt) ||
(!polarity && measurement <= setpt)) begin
2022-12-28 14:32:35 -05:00
state <= DETECTED;
detected <= 1;
end
end
DETECTED: if (!arm) begin
state <= WAIT_ON_ARM;
detected <= 0;
end
endcase
endmodule