40 // Comments from the x353 code: 41 // This command sequencer is designed (together with i2c sequencer) to provide 42 // pipelined operation of the sensor, FPGA pre-processor and compressor, to avoid 43 // requirement of resetting the circuitry and loosing several frames when the sensor 44 // acquisition parameters are changed (especially geometry - WOI, decimation). 45 // It also reduces real-time requirements to the software, as it is possible to 46 // program parameters related to the events several frames in the future. 49 // Controller is programmed through 32 locations. Each registers but the control require two writes: 50 // First write - register address (AXI_WR_ADDR_BITS bits), second - register data (32 bits) 51 // Writing to the contol register (0x1f) resets the first/second counter so the next write will be "first" 52 // 0x0..0xf write directly to the frame number [3:0] modulo 16, except if you write to the frame 53 // "just missed" - in that case data will go to the current frame. 54 // 0x10 - write seq commands to be sent ASAP 55 // 0x11 - write seq commands to be sent after the next frame starts 57 // 0x1e - write seq commands to be sent after the next 14 frame start pulses 58 // 0x1f - control register: 59 // [14] - reset all FIFO (takes 32 clock pulses), also - stops seq until run command 60 // [13:12] - 3 - run seq, 2 - stop seq , 1,0 - no change to run state 61 // New - [1:0] - 0: NOP, 1: clear IRQ, 2 - Clear IE, 3: set IE 76 input mclk,
// for command/status 77 // programming interface 78 input [
7:
0]
cmd_ad,
// byte-serial command address/data (up to 6 bytes: AL-AH-D0-D1-D2-D3 79 input cmd_stb,
// strobe (with first byte) for the command a/d 80 // frame sync and frame number 83 // command mux interface 85 output valid,
// output data valid 86 output [
31:
0]
wdata,
// write data, valid with waddr_out and wr_en_out 87 input ackn,
// command sequencer address/data accepted 88 // Interrupt mask, status, request 89 output is,
// interrupt status (not masked) 90 output im // interrupt mask 93 wire [
4:
0]
cmd_a;
// 3 cycles before data 95 reg [
2:
0]
cmd_we_r;
// cmd_we_r[2] - with cmd_data 99 reg [
3:
0]
wpage_prev;
// unused page, currently being cleared 101 reg [
3:
0]
wpage_w;
// FIFO page where current writes go 102 reg [
1:
0]
wpage_inc;
// increment wpage_asap (after frame sync or during reset), and [1] next clock cycle after [0] 108 reg we_fifo_wp;
// enable writing to fifo write pointer memory 109 reg next_frame_rq;
// request to switch to the new frame page, clear pointer for the one just left 117 reg d_na;
// register counting address(0) or data(1) when writing sequences 120 reg [
2:
0]
por=
0;
//power on reset 129 reg [
2:
0]
cmd_we_any_r;
// any of the abs or rel (valid 2, 1 and 0 cycles before data) 135 reg [
3:
0]
page_r;
// FIFO page from where commands are generated 136 reg [
1:
0]
page_r_inc;
// increment page_r - signal and delayed version 141 reg [
1:
0]
ren;
// 1-hot ren to BRAM, then regen to BRAM 148 reg is_r;
// interrupt status (not masked) 152 assign is =
is_r;
// interrupt status (not masked) 153 assign im =
im_r;
// interrtupt mask 165 // assign reset_seq_done = reset_on && wpage_inc[0] && (wpage_asap == 4'hf); 168 // assign pre_wpage_inc = (!cmd_we && !(|cmd_we_r) ) && (!wpage_inc[0] && !wpage_inc[1]) && ((next_frame_rq && initialized) || reset_on) ; 169 // During reset_on write pointer every cycle: 170 // assign pre_wpage_inc = (!cmd_we && !(|cmd_we_r) ) && ((next_frame_rq && initialized) || reset_on) ; 176 // parameter CMDFRAMESEQ_IRQ_BIT = 0, 177 // parameter CMDFRAMESEQ_IRQ_BITS = 2 189 else por <= {
por[
1:
0],
1'b1};
214 // signals related to writing to seq FIFO 217 // write pointer memory 238 // now cmd_we_abs_r or cmd_we_rel_r can not happen with wpage_inc[0] - earliest at the next cycle 246 // write to pointer RAM (to the same address as just read from if read) 253 (~
read_busy[
0] |
conf_send) &
// not busy or will not be busy next cycle (when page_r_inc active) 254 ~(|
page_r_inc) &
// read_page was not just incremented, so updated read pointer had a chance to propagate 256 (
page_r !=
wpage_asap)};
// the page commands are taken from is not the ASAP (current) page 261 // if (reset_on || reset_cmd || page_r_inc[0]) rpointer <= 0; // TODO: move to rst ? 267 // if (reset_on || reset_cmd) read_busy <= 0; 272 // TODO: check generation of the reset sequence 282 .
WE_EARLY (
3)
// generate cmd_we and cmd_a three cycles before cmd_data is valid 283 )
cmd_deser_32bit_i (
284 .
rst (
1'b0),
// rst), // input 294 // Generate one x64 BRAM, 3 of x32 or 3 x64, depending on the sequnecer depth (CMDFRAMESEQ_DEPTH): 32/64/128 commands per frame 302 )
ram_var_w_var_r_i (
304 // .raddr (seq_cmd_ra), // input[8:0] 310 // VDT TODO: make conditions in generate skip parsing if condition does not match 311 // .waddr (seq_cmd_wa), // input[8:0] 314 .
web (
8'hff),
// input[7:0] 325 )
ram18_var_w_var_r_dl_i (
327 // .raddr (seq_cmd_ra), // input[9:0] 333 // .waddr (seq_cmd_wa), // input[9:0] 336 .
web (
4'hf),
// input[3:0] 345 )
ram18_var_w_var_r_dh_i (
347 // .raddr (seq_cmd_ra), // input[9:0] 353 // .waddr (seq_cmd_wa), // input[9:0] 356 .
web (
4'hf),
// input[3:0] 365 )
ram18_var_w_var_r_ad_i (
367 // .raddr (seq_cmd_ra), // input[9:0] 373 // .waddr (seq_cmd_wa), // input[9:0] 376 .
web (
4'hf),
// input[3:0] 388 )
ram_var_w_var_r_dl_i (
390 // .raddr (seq_cmd_ra), // input[10:0] 396 // .waddr (seq_cmd_wa), // input[9:0] 399 .
web (
8'hff),
// input[7:0] 408 )
ram_var_w_var_r_dh_i (
410 // .raddr (seq_cmd_ra), // input[10:0] 416 // .waddr (seq_cmd_wa), // input[9:0] 419 .
web (
8'hff),
// input[7:0] 428 )
ram_var_w_var_r_ad_i (
430 // .raddr (seq_cmd_ra), // input[10:0] 436 // .waddr (seq_cmd_wa), // input[9:0] 439 .
web (
8'hff),
// input[7:0] 445 // cause some error - invalid CMDFRAMESEQ_DEPTH
10096seq_cmd_wareg[PNTR_WIDH+3:0]
10103commands_pendingwire
cmd_deser_32bit_i cmd_deser
10081fifo_wr_pointers_outw_rreg[PNTR_WIDH-1:0]
[1 << LOG2WIDTH_WR-1:0] 11872data_in
10039CMDFRAMESEQ_ADDR'h780
[14-LOG2WIDTH_WR:0] 11869waddr
10097seq_cmd_rawire[PNTR_WIDH+3:0]
10048CMDFRAMESEQ_IRQ_BIT0
[1 << LOG2WIDTH_WR-1:0] 11597data_in
10061PNTR_WIDH(CMDFRAMESEQ_DEPTH > 32) ?((CMDFRAMESEQ_DEPTH > 64) ? 7 : 6) : 5
[1 << LOG2WIDTH_RD-1:0] 11592data_out
10089cmd_we_ctl_rreg[2:0]
[13-LOG2WIDTH_RD:0] 11589raddr
10079fifo_wr_pointers_outwwire[PNTR_WIDH-1:0]
[ADDR_MASK2!=0?2:ADDR_MASK1!=0?1:0:0] 9935we
[AXI_WR_ADDR_BITS-1:0] 10055waddr
10084address_holdreg[AXI_WR_ADDR_BITS-1:0]
ram_var_w_var_r_ad_i ram_var_w_var_r[generate]
[1 << LOG2WIDTH_RD-1:0] 11867data_out
10047CMDFRAMESEQ_RUN_BIT13
[DATA_WIDTH-1:0] 9934data
ram18_var_w_var_r_ad_i ram18_var_w_var_r[generate]
10040CMDFRAMESEQ_MASK'h7e0
[14-LOG2WIDTH_RD:0] 11864raddr
[ADDR_WIDTH-1:0] 9933addr
10094cmd_we_any_rreg[2:0]
[13-LOG2WIDTH_WR:0] 11594waddr
[0:15] 10078fifo_wr_pointers_ramreg[PNTR_WIDH-1:0]
10100rpointerreg[PNTR_WIDH-1:0]
10082fifo_wr_pointers_outr_rreg[PNTR_WIDH-1:0]
10080fifo_wr_pointers_outrwire[PNTR_WIDH-1:0]
10046CMDFRAMESEQ_RST_BIT14