21.9.28 smartpower_remove_domain

Description

This Tcl command removes an existing clock or set domain.

smartpower_remove_domain -domain_name {domain name} -domain_type "set | clock"

Arguments

ParameterTypeDescription
domain_typestringSpecifies the type of domain to remove. The acceptable values for this argument are:
  • clock - The domain is a clock domain.
  • set - The domain is a set domain.
domain_namestringSpecifies the name of the domain to remove.
Return TypeDescription
NoneNone

Error Codes

Error CodeDescription
NoneRequired parameter 'domain_name' is missing.
NoneParameter 'domain_name' has illegal value.
Nonedomain_type: Invalid argument value: 'value' (expecting set or clock).
NoneCould not delete domain 'domain name'.
NoneParameter 'param_name' is not defined. Valid command formatting is 'smartpower_remove_domain -domain_name "domain name" -domain_type "set | clock"'.

Supported Families

PolarFire®
SmartFusion® 2
RTG4™
IGLOO® 2
PolarFire SoC

Example

This example removes the clock domain names "myclk":

smartpower_remove_domain -domain_type {clock} -domain_name {myclk}

This example removes the set domain names "myset":

smartpower_remove_domain -domain_type {set} -domain_name {myset}

See Also