Get_part_info, Usage, Options – Altera Quartus II Scripting User Manual

Page 223: Description, Example, Get_part_info –93

Advertising
background image

Chapter 3: Tcl Packages & Commands

3–93

device

© July 2013

Altera Corporation

Quartus II Scripting Reference Manual

get_part_info

Usage

get_part_info [-default_voltage] [-device] [-family] [-family_variant] [-package]
[-pin_count] [-speed_grade] [-temperature_grade] <part>

Options

-default_voltage: Option to get the default core voltage (such as 0.9V or 1.1V)

-device: Option to get device name (such as EP1S25 or EP1S80)

-family: Option to get family name (such as Stratix or Cyclone)

-family_variant: Option to get family variant (such as Base, E or GX)

-package: Option to get package name (such as FBGA or BGA)

-pin_count: Option to get total number of pins in the package

-speed_grade: Option to get speed grade (such as 5, 6, or 7)

-temperature_grade: Option to get temperature grade of the package (such as COMMERCIAL
or INDUSTRIAL)

<part>: Part name

Description

Returns part characteristics for the specified part.

If you use multiple options, the command returns a list in the following order:

<family> <device> <package> <pin_count> <speed grade> <temperature_grade>
<family_variant>

Example

tcl> get_part_info -family EP1S25F780C5
tcl> Stratix

tcl> get_part_info -family -device EP1S25F780C5
tcl> Stratix EP1S25

tcl> get_part_info -device -package -pin_count -speed_grade EP1S25F780C5
tcl> EP1S25 FBGA 780 5

Advertising