Hello, I have an RFNoC block that generates command packets to write settings registers of the downstream connected block using the Control Source (cmdout_tdata) of the noc_shell . Previously this had worked perfectly (prior to approximately d6b2283 on rfnoc-devel), for both the X300 and E310, but this functionality appears to perhaps be broken in the more recent FPGA releases — since around the switch to Vivado 2017.4 and the move of the noc block clock domain crossing to axi_wrapper.v). I have tried the latest master branch (4f25ed1) with no success.
Is this a known issue? Can anyone shed light on what might have caused this? The control packets are generated in my block as follows: wire eob = 1’b0; wire [1:0] pkt_type = 2'b10; wire [11:0] seqnum = 12'd0; // don't care wire [15:0] payload_length = 16'd16; //don't care (payload length in bytes) assign cmd_tdata = {24’d0,set_bus_addr[7:0], set_bus_val[31:0]}; cvita_hdr_encoder cvita_hdr_encoder( .pkt_type(pkt_type),.eob(eob), .has_time(1'b0), .seqnum(seqnum), .payload_length(payload_length), .src_sid(src_sid), .dst_sid(dst_sid), .vita_time(vita_time), .header(cmd_tuser) ); chdr_framer #(.SIZE(FIFO_SIZE), .WIDTH(64)) chdr_framer ( .clk(clk), .reset(reset), .clear(clear), .i_tdata(cmd_tdata), .i_tuser(cmd_tuser), .i_tlast(cmd_tlast), .i_tvalid(cmd_tvalid), .i_tready(cmd_tready), .o_tdata(cmdout_tdata), .o_tlast(cmdout_tlast), .o_tvalid(cmdout_tvalid), .o_tready(cmdout_tready)); The command packets appear to never reach the destination rfnoc block, but I am at a loss for the cause. Is anyone currently using the control source functionality of the noc_shell? I would really appreciate any pointers on how to fix this. Thank you, Sam
_______________________________________________ USRP-users mailing list USRP-users@lists.ettus.com http://lists.ettus.com/mailman/listinfo/usrp-users_lists.ettus.com