21.4.38 sd_remove_pins_from_group

Description

This tcl command removes one or more pins from a pin group on an instance in a SmartDesign component.

sd_remove_pins_from_group -sd_name {smartdesign component name} \
                          -instance_name {instance name} \
                          -group_name {group name} \
                          -pin_names {pin names}

Arguments

ParameterTypeDescription
sd_namestringSpecifies the name of the SmartDesign component. It is mandatory.
instance_namestringSpecifies the name of the instance on which the pin group is present. It is mandatory.
group_namestringSpecifies the name of the pin group from which pins need to be removed. It is mandatory.
pin_namesstringSpecifies the list of pin names to be removed from the pin group(example below). It is mandatory.
Return TypeDescription
NoneNone

Error Codes

Error CodeDescription
NoneParameter 'param_name' is not defined. Valid command formatting is 'sd_remove_pins_from_group -sd_name "sd_name" -instance_name "instance_name" [-group_name "group_name"] [-pin_names "[pin_names]+"]'.
NoneRequired parameter 'sd_name' is missing.
NoneRequired parameter 'instance_name' is missing.
NoneThe component 'component_name' doesn't exist.
SDCTRL05Pin 'group_name' does not exist.

Supported Families

Supported Families
PolarFire®
PolarFire SoC
RTG4
SmartFusion® 2
IGLOO® 2

Example

The following example removes "ARESETN ACLK" pin from "MyGroup", that is on "COREAXINTERCONNECT_C0_0" instance, in the "TOP" design:

sd_remove_pins_from_group -sd_name {TOP} \
                          -instance_name {COREAXINTERCONNECT_C0_0} \
                          -group_name {Group} \
                          -pin_names {ARESETN ACLK}

The following example removes "WA_RSTn", "DISP_SEL" pins from "MyGroup", that is on "CorePCS_C0_0" instance, in the "TOP" design:

sd_remove_pins_from_group -sd_name {TOP} \
			  -instance_name {CorePCS_C0_0} \
                          -group_name {MyGroup} \
                          -pin_names {"WA_RSTn" "DISP_SEL"}

See Also

  • sd_create_pin_group
  • sd_add_pins_to_group