Description
This Tcl command removes an existing clock or set domain.
smartpower_remove_domain -domain_name {domain name} -domain_type "set | clock"
Arguments
Parameter | Type | Description |
---|
domain_type | string | Specifies 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_name | string | Specifies the name of the domain to remove. |
Return Type | Description |
---|
None | None |
Error Codes
Error Code | Description |
---|
None | Required parameter 'domain_name' is missing. |
None | Parameter 'domain_name' has illegal value. |
None | domain_type: Invalid argument value: 'value' (expecting set or clock). |
None | Could not delete domain 'domain name'. |
None | Parameter '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}