CPF文件可以有两种组织方式:Flat CPF file or Hierarchical CPF file。
由于在大型的SoC设计中,一般都采用Hierarchical的形式,所以本文主要按这个方式来讲。
Hierarchical CPF file:一般定义多个CPF file,通过include来组织起来,
可以分为Top_file:定义一个CPF_MODE变量来选择各个子CPF file,从而适用在FE-BE的flow中。
xxx_domain.cpf:定义各个power domain,如pad,analog,SOC,CPU等。
xxx_mode.cpf:定义各种用到的nominal_condition + mode,来定义各个mode。
xxx_power.cpf:定义power and ground nets
xxx_rule.cpf:定义level_shifter,isolate_cells,state_retention_cells,power_switch_cells等,可以再细分各个block的rule。
xxx_macro.cpf:定义一些macro来建模,如analog, CPU,MEM等。
CPF的顶层一般规定:
set_cpf_version 2.0
set_hierarchy_separator /(default .)
set_register_naming_style "_reg%s" (netlist与RTL的FF或latches对应,a-->a_reg)
set_array_naming_style "_%d" (netlist与RTL的FF或latches对应,[3:2]b--->b_reg_2, b_reg_3)
set_power_unit [mw] (default mw)
set_time_unit ns (default ns)
set_design xxx
end_design
set_macro_model xxx
end_macro_model xxx
set_power_target -leakage xx -dynamic xxx
Library-related definitions:一般都用define_xxx commands