The CDCAM IP generator core provides a quick way to run a C-based software example application and observe the behavior of the core by using the provided Software Application example design, which has a self-checking test bench.
The Software Driver API is described in CAM Driver API Description (cam-api-reference.zip). The Software Application example design makes use of functions described in this.
After configuring the CDCAM IP based on your design requirements, and selecting the Generate Output Products… option to generate the core outputs, the Software Application example design is created.
If the default directory location is specified, then a sw directory will be created at the following location:
<user_location>/project_1/project_1.gen/sources_1/ip/<cdcam_instance_name>/sw/sw_example
For example, if the CDCAM IP instance name is cdcam_0
, then the location
would be:
<user_location>/project_1/project_1.srcs/sources_1/ip/cdcam_0/sw
This sw directory contains the sub-directories detailed in the following table.
Sub-directory | Description |
---|---|
sw/cdcam_src | CDCAM IP obfuscated source code |
sw/dpi |
DPI cdcam_dpi.so library generation. Refer to the readme.txt file for instructions on how to use this if customization is required. |
sw/sw_example | Software Application Example Design The following three file names will be prepended with the CDCAM IP instance name chosen. For instance, if the CDCAM IP instance
name is
data_stim.c – the stimulus file restricted to 10 entries only. data_stim.h – contains exported definitions and function declarations
Makefile – used
by |
The Software Application example design performs the following tasks:
- Creates an instance of the CDCAM, based on the settings you selected, via the CAM API functions.
- Based on the input stimulus file data_stim.c:
- Creates 10 random entries.
- Get the response (default) for the first entry.
- Inserts 10 entries into shadow memory using CAM API.
- Get responses of 10 inserted entries in shadow memory using CAM API.
- Get keys of 10 inserted entries in shadow memory using CAM API.
- Update an inserted entry’s response in shadow memory using the CAM API.
- Get the response of the updated entry in shadow memory using CAM API.
- Delete 10 entries in shadow memory using CAM API.
- Get responses of deleted entries using CAM API.
- Print out the results to the console window.