Skip to content
Snippets Groups Projects
Commit 3ecfb72b authored by Reinier van der Walle's avatar Reinier van der Walle
Browse files

processed review comments

parent f9aaad17
No related branches found
No related tags found
1 merge request!332Resolve HPR-122
Pipeline #50653 passed
...@@ -36,8 +36,12 @@ USE work.dp_stream_pkg.ALL; ...@@ -36,8 +36,12 @@ USE work.dp_stream_pkg.ALL;
-- . The initial (default) values of the override bits are passed via g_field_sel(one bit per field); -- . The initial (default) values of the override bits are passed via g_field_sel(one bit per field);
-- . Both the SLV as the override (ovr) fields can be read back via MM; -- . Both the SLV as the override (ovr) fields can be read back via MM;
-- . g_mode can be used to select in which mode dp_field_blk should work. Most of the time, the -- . g_mode can be used to select in which mode dp_field_blk should work. Most of the time, the
-- default g_mode = 0 can be used. Forcing either source or sink mode could be done when the -- default g_mode = 0 can be used. When using g_mode = 0, it is assumed that dp_field_blk must be
-- data sosi data length is larger than the field block. -- used in source mode when g_snk_data_w > g_src_data_w, else in sink mode. This is a typical
-- application as it is often the case that the total width of the field block is larger than the
-- serial data width as shown in the example below. There are cases where the width of the
-- field-block is smaller than the serial data words. Therefore it is possible to force either sink
-- or source mode.
-- . g_mode = 0: auto select mode based on g_snk_data_w and g_src_data_w. -- . g_mode = 0: auto select mode based on g_snk_data_w and g_src_data_w.
-- . g_mode = 1: use dp_field_blk in source mode regardless of g_*_data_w. -- . g_mode = 1: use dp_field_blk in source mode regardless of g_*_data_w.
-- . g_mode = 2: use dp_field_blk in sink mode regardless of g_*_data_w. -- . g_mode = 2: use dp_field_blk in sink mode regardless of g_*_data_w.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment