Device

The Device class is a container representing a Xilinx device. Device has methods for programming, memory access, and contains the detected collection of debug cores. The collection of detected devices is held in the session.

see chipscopy.Session.devices

class chipscopy.api.device.device.Device(*, hw_server, cs_server, device_spec, disable_core_scan, disable_cache)[source]

Bases: object

The Device class represents a single device. It is the base class for other Xilinx or Generic devices. Depending on the device type, some features may be available or unavailable.

Device has the kitchen sink of properties functions to make documentation and type hints easy. Child classes raise FeatureNotAvailable for functions they do not support.

property chipscope_node: CoreParent | None

Low level TCF node access - For advanced use

Return type:

Optional[CoreParent]

property context: str

Returns the unique context for this device. Normally this is the jtag node context. If this device is not on a jtag chain, the top level device context will be a non-jtag node.

Return type:

str

property ddrs: QueryList[DDR]

Returns: list of detected DDRMC cores in the device

Return type:

QueryList[DDR]

property debugcore_node: CoreParent | None

Low level TCF node access - For advanced use

Return type:

Optional[CoreParent]

discover_and_setup_cores(*, hub_address_list=None, ltx_file=None, **kwargs)[source]

Scan device for debug cores. This may take some time depending on what gets scanned.

Parameters:
  • hub_address_list (Optional[List[int]]) – List of debug hub addresses to scan

  • ltx_file (Union[Path, str, None]) – LTX file (which contains debug hub addresses)

Keyword Arguments:
  • ila_scan – True=Scan Device for ILAs

  • vio_scan – True=Scan Device for VIOs

  • ibert_scan – True=Scan Device for IBERTs

  • pcie_scan – True=Scan Device for PCIEs

  • noc_scan – True=Scan Device for NOC

  • ddr_scan – True=Scan Device for DDRs

  • hbm_scan – True=Scan Device for HBMs

  • sysmon_scan – True=Scan Device for System Monitor

get_program_log(memory_target='APU', slr_index=0)[source]

Returns: Programming log read from hardware (None=Use default transport)

Parameters:
  • memory_target – Optional name of memory target such as APU, RPU, DPC

  • slr_index (int) – Optional SLR index for multi-SLR devices

Return type:

str

property hbms: QueryList[HBM]

Returns: list of detected HBM cores in the device

Return type:

QueryList[HBM]

property ibert_cores: QueryList[IBERT]

Returns: list of detected IBERT cores in the device

Return type:

QueryList[IBERT]

property ila_cores: QueryList[ILA]

Returns: list of detected ILA cores in the device

Return type:

QueryList[ILA]

property is_programmable: bool

Returns True if this Device is programmable, False otherwise

Return type:

bool

property is_programmed: bool

Returns True if this Device is programmed, False otherwise.

Return type:

bool

property is_valid: bool

Returns True if this Node is valid, False otherwise.

Return type:

bool

property jtag_cable_node: JtagCable | None

Low level TCF node access - For advanced use

Return type:

Optional[JtagCable]

property jtag_node: JtagDevice | None

Low level TCF node access - For advanced use

Return type:

Optional[JtagDevice]

property memory: QueryList[Memory]

Returns: the memory access for the device

Return type:

QueryList[Memory]

memory_read(address, num=1, *, size='w', target=None)[source]

Read num values from given memory address. This method is slow because it locates the memory context in the target tree every time. If you want to execute a large number of memory operations, grab a memory context and do all the operations in batch. Note: This method should not be used in inner loops. It is not the fastest because it looks up the memory target every time. Inner loops should just call the find_memory_target once.

Return type:

List[int]

property memory_target_names: List[str]

Returns: list of supported memory targets

Return type:

List[str]

memory_write(address, values, *, size='w', target=None)[source]

Write list of values to given memory address. This method is slow because it locates the memory context in the target tree every time. If you want to execute a large number of memory operations, grab a memory context and do the operations in batch. Note: This method should not be used in inner loops. It is not the fastest because it looks up the memory target every time. Inner loops should just call the find_memory_target once.

property noc_core: QueryList[NocPerfmon]

Returns: List with NOC roots for the device

Return type:

QueryList[NocPerfmon]

property pcie_cores: QueryList[PCIe]

Returns: list of detected PCIe cores in the device

Return type:

QueryList[PCIe]

program(programming_file, *, skip_reset=False, delay_after_program=0, show_progress_bar=True, progress=None, done=None)[source]

Program the device with a given programming file (bit or pdi).

Parameters:
  • programming_file (Union[str, Path]) – PDI file path

  • skip_reset (bool) – False = Do not reset device prior to program

  • delay_after_program (int) – Seconds to delay at end of programming (default=0)

  • show_progress_bar (bool) – False if the progress bar doesn’t need to be shown

  • progress (Optional[NewType()(ProgressFutureCallback, Callable[[ForwardRef], None])]) – Optional progress callback

  • done (Optional[NewType()(DoneFutureCallback, Callable[[ForwardRef], None])]) – Optional async future callback

reset()[source]

Reset the device to a non-programmed state.

scan_is_programmable()[source]

Returns True if this Device is programmable, False otherwise

Return type:

bool

scan_is_programmed(*, force_update=True)[source]

Returns True if this Device is programmed, False otherwise.

Return type:

bool

scan_props(*, force_update=True)[source]

Scan device properties from hardware.

Returns: Dict of properties

Return type:

Dict[str, Any]

property sysmon_root: QueryList[Sysmon]

Returns: List with one SysMon core for the device

Return type:

QueryList[Sysmon]

to_dict()[source]

Returns a dictionary representation of the device data

Return type:

Dict[str, Any]

to_json()[source]

Returns a json representation of the device data

Return type:

str

property trace_cores: QueryList[Trace]

Returns: list of detected Trace cores in the device

Return type:

QueryList[Trace]

property vio_cores: QueryList[VIO]

Returns: list of detected VIO cores in the device

Return type:

QueryList[VIO]

exception chipscopy.api.device.device.DeviceException[source]

Bases: Exception

class chipscopy.api.device.device.DeviceFamily(value)[source]

Bases: Enum

An enumeration.

class chipscopy.api.device.device.DeviceState(value)[source]

Bases: Enum

An enumeration.

exception chipscopy.api.device.device.FeatureNotAvailableError[source]

Bases: Exception