MIG 3.5 modified the assignment of DATA_PATTERN from DGEN_ALL to DGEN_ADDR. This limits the available data pattern to address as data. See
UG416 > Traffic Generator Signal Descriptions for full details on the available data patterns. To enable the ability to use all data patterns in the debug port, modify the following:
1. Open the example_top.v module and modify the cx_vio_data_mode_value:
// assign c3_vio_data_mode_value = 3'b010;
assign c3_vio_data_mode_value = c3_vio_out[5:3] ;
This change allows the data mode to be changed using VIO.
2. Open thee memcx_tb_top.v module and modify the assignment of the DATA_PATTERN parameter:
// .DATA_PATTERN ("DGEN_ADDR"),
.DATA_PATTERN ("DGEN_ALL"),
NOTE: These changes are required to run the SP60x reference design demos in hardware.