Visible to Intel only — GUID: dmi1445964037407
Ixiasoft
Visible to Intel only — GUID: dmi1445964037407
Ixiasoft
4.6.1. Hardware Verification
This interface provides memory-mapped read and write accesses to your design running on an FPGA using the System Console system debugging tool.
Method | Description |
---|---|
executeTcl(script) | Executes a Tcl script specified through <script> string in SystemConsole. |
designLoad(path) | Loads the design (.sof) file specified through <path> parameter to FPGA. |
refreshMasters | Detects and lists all available master connections. |
openMaster(index) | Creates and returns a master connection to a specified master link. The <index> specifies the index (starting 1) of the connection from the list returned by refreshMasters function. For example, M=SystemConsole.openMaster(1); |
Method | Description |
---|---|
close() | Closes the connection associated with the master object.
Note: Always call this method when you finish working with current master connection.
|
setTimeOutValue(timeout) | Use this method to override the default timeout value of 60 seconds for the master connection object. The specified <timeout> value in seconds. |
read(type, address, size [, timeout]) | Returns a list of <size> number of values of type <type> read from memory on FPGA starting at address <address>. For example, data = masterObj.read(‘single’, 1024, 10) Reads consequent 10 4-byte values (40 bytes overall) with a starting address of 1,024 and returns the results as list of 10 ‘single’ typed values. |
write(type, address, data [, timeout]) | Writes <data> (a list of values of type <type>) to memory starting at address <address>. For example: masterObj.write(‘uint16’, 1024, 1:10); Writes values 1 to 10 to memory starting address 1,024, where each value occupies 2 bytes in memory (overall 20 bytes are written). |
Parameter | Description |
---|---|
<type> | The type of each element in returned array.
|
<address> | The start address for the read operation. You can specify as a hexadecimal string.
Note: The address should specify a byte address
|
<size> | The number of <type> (type specifies 1/2/4/8 bytes based on value) values to read. |
<timeout> |
An optional parameter to override the default timeout value for this operation only. |
Parameter | Description |
---|---|
<type> | The type each element in specified <data>. Each type specifies 1/2/4/8 bytes:
|
<address> | The start address for the write operation. You can specify as a hexadecimal string.
Note:
The address should be specified as a byte address |
<data> | An array or single element data to be written to memory. |
<timeout> | An optional parameter to override the default timeout value for this operation only. |
- Hardware Verification Design Example
DSP Builder design example for off chip source and sink buffers.