Logic Synthesis¶
Abstract
- Introduction
- Compilation - Syntax Analysis
- Library Definition
- LEF
- Liberty Timing Models
- Boolen Minimization - Elaboration and Binding, Pre-mapping Optimization
- Constraint Definition
- Technology Mapping
- Verilog for Synthesis
- Timing Optimization - Post-mapping Optimization
Introduction¶
-
什么是 logic synthesis 逻辑综合?
- Synthesis is the process that converts RTL into a technology specific gate-level netlist, optimized for a set of pre-defined constraints.
- 输入包括一个行为级 RTL 设计、一个 standard cell library 标准单元库,一组设计约束。
-
输出包括一个映射到标准单元库的 gate-level netlist 门级网表。(例如对 FPGA 来说,是用 LUTs,flip-flops 和 RAM blocks)
Logic Synthesis
将 FSM 转为目标电路:
-
Motivation: 为什么需要逻辑综合?
- 可以自动管理很多设计流程中的细节:
- Fewer bugs。
- Improve productivity,不用手工绘制门电路或者逻辑。
- 将设计数据(HDL 描述)从特定的实现 technology 中抽象出来。
- Designs can be re-synthesized targeting different chip technologies,即设计可以在不同工艺之间进行迁移。
- 有时可以带来比人工设计更优的结果。
Example
如下图,这里的
!s0 && s1 || s0
实际上可以直接由一个 OR 门实现。这个提取的过程可以由逻辑综合工具自动完成。 - 可以自动管理很多设计流程中的细节:
-
逻辑综合的目标:
- Minimize area
- In terms of literal count, cell count, register count, etc.
- Minimize power
- In terms of switching activity in individual gates, deactivated circuit blocks, etc.
- Maximize performance
- In terms of maximal clock frequency of synchronous systems, throughput for asynchronous systems
- Any combination of the above
- Combined with different weights
- Formulated as a constraint problem e.g., 在时钟频率 > 300MHz 的情况下最小化面积
- More global objectives
- Feedback from layout
- Minimize area
-
How does it work?
- Instantiation 实例化:维护一个 primitive modules 的库(如 AND, OR...)以及用户定义的模块。e.g., 当 verilog 中有 OR 时,就在综合工具中选择 OR primitive 进行绑定。
- Macro expansion/substitution: 综合工具将 HDL 中的高级语言操作符(如 +, -, 布尔运算符)和构造(如 if-else、case)展开成特定的电路。
- Inference: special patterns 会被检测并进行特殊处理。e.g.,
always@(posedge clk)
会生成一个 FSM。 - Logic optimization: 在读取设计并转为某种内部数据库之后,利用 logic minimization 技术(如卡诺图)对布尔运算分组、优化。
- Structural reorganization: 结构重组包括高级技术,如 sharing of operators、retiming of circuits。
-
"Basic Synthesis Flow"
https://cdn.hobbitqia.cc/20241126163123.png- Syntax Analysis: 语法分析,读入 HDL 文件,检查语法错误。
read_hdl–verilog sourceCode/toplevel.v
- Library Definition: 库定义,提供标准单元库和 IP 库。
read_libs “/design/data/my_fab/digital/lib/TT1V25C.lib”
- Elaboration and Binding: 展开和绑定,将 RTL 转为布尔结构,并进行优化(state reduction、encoding、register infering...),并将无法进一步优化的 leaf cell 绑定到标准单元库或者实际 IP。
elaborate toplevel
- Constraint Definition: 约束定义,定义时钟频率和其他设计约束。
read_sdc sdc/constraints.sdc
- Pre-mapping Optimization: 将 RTL 代码中的逻辑表达式映射到通用的逻辑单元。
syn_generic
- Technology Mapping: 将通用的逻辑单元映射到目标技术库中的标准单元。(从 technology independent 到实际的 std cells)
syn_map
- Post-mapping Optimization: 对映射后的电路进行优化,包括时序、面积等。
syn_opt
- Report and export: 在综合完成后,综合工具会生成一份详细的报告,包括综合结果、时序分析、面积估计等。
report timing –numpaths 10 > reports/timing_reports.rpt
,write_hdl> export/netlist.v
- Syntax Analysis: 语法分析,读入 HDL 文件,检查语法错误。
Compilation¶
在综合之前,我们需要检查 RTL 代码的语法正确性。需要注意的是,综合和编译是两个不同的过程:
- Compiler
- Recognizes all possible constructs in a formally defined program language
- Translates them to a machine language representation of execution process
- Synthesis
- Recognizes a target dependent subset of a hardware description language
- Maps to collection of concrete hardware resources
- Iterative tool in the design flow
可以使用 ncvlog <filename.v>
进行编译以实现语法检查。
Library Definition¶
The library definition stage tells the synthesizer where to look for leaf cells for binding and the target library for technology mapping.
- Leaf cells: 在综合过程中,叶子单元是指那些没有子节点的单元,它们通常是综合过程中最基础的单元。
- Target library: 工艺映射时会将 RTL 代码映射到实际的硬件单元的过程,因此综合工具需要知道目标库中的哪些单元可以用于映射。
- 我们可以通过提供一个 paths 的列表来提供库的位置,如
set_db init_lib_search_path “/design/data/my_fab/digital/lib/”
,以及我们可以提供特定库的名字,进行读取read_libs “TT1V25C.lib”
。
Library
准单元库类似于乐高积木,它们必须满足预定义的规格要求,以便综合、布局、布线等 EDA 工具能够无误地操作它们。可以理解为 Libray 就是蕴含了一套特定的信息的库(或文件),EDA 工具可以基于这套信息做出不同的规划决策。
Example
一个与非门,其包含了 cell 的高度,宽度,Voltage rails 电压轨,Well 阱、引脚放置、PR 边界、金属层等信息。
- 这里的 PR 边界不是整个 cell,因为 VDD 和 GND 可以与其他 cell 共享。
- 理想情况下,标准单元应该完全在 Metal1(M1)层上布线,完全在M1层上布线可以减少布线延迟。(实际上由于大小和布局限制,可能需要其他金属层布线)。
- 标准单元库里的 cells:
- Combinational logic cells (NAND, NOR, INV, etc.):
- Variety of drive strengths for all cells. cell 里有 output buffer,可以驱动不同的输出电压。
- Complex cells (AOI, OAI, etc.)
- Fan-In <= 4,即输入端口数不超过 4,否则 CMOS 工艺难以处理。
- ECO (Engineering Change Order) Cells: 易于更改的单元,用于在设计过程中进行快速的修改。
- Buffers/Inverters
- Larger variety of drive strengths.
- “Clock cells” with balanced rise and fall delays.
- Delay cells: 提供固定的延迟时间的单元,用于时序调整。
- Level Shifters: 用于将信号从一个电压电平转换到另一个电压电平的单元。
- Sequential Cells
- Many types of flip flops: pos/negedge, set/reset, Q/QB, enable,各种类型的触发器。
- Latches
- Integrated Clock Gating cells: 集成时钟门控单元,在时钟信号到达时才激活存储单元。
- Scan enabled cells for ATPG
- Physical Cells
- Fillers, Tap cells, Antennas, DeCaps, EndCaps, Tie Cells
- Combinational logic cells (NAND, NOR, INV, etc.):
- Multiple Drive Strengths and VTs
- 即使是同样的元件,不同的尺寸也有着不同的驱动强度。更大的驱动能力强,但是对应的面积和 leakage 泄露功耗也更大。通常用 X1, X2 或者 1X 2X 来表示相对大小。
- Multiple Threshold (MT-CMOS): CMOS 工艺允许添加一个额外的 mask 来改变 threshold voltage 阈值电压。这样可以 trade-off 泄露电流和速度。
Tip
我们不需要对 cell 了解的很清楚,而是针对我们使用的工具和执行的操作,明确我们需要什么信息。
Clock Cells¶
- General standard cells are optimized for speed.
- 但他们的延时不一定平衡(rise != fall)。
- 这样会带来 clock skew,即时钟信号在不同的地方到达时间不同。
- 我们有特殊的 clock cells,有 balanced rising/falling delays 来最小化 skew。
- 但这些 cells 对于数据的优化并不是最好的,因此应该避免在数据传输的单元上使用数据传输路径。
- 通常,我们只在 buffers/inverters 上使用 clock nets。
- 特殊的 Integrated Clock Gating 集成时钟门控可以用于时钟网络上的门控逻辑。
Sequentials¶
- 时序单元,包括 Flip Flops 触发器和 Latches 锁存器。
- 他们提供了多种选项:
- Positive/Negative Edge Triggered
- Synchronous/Asynchronous Reset/Set
- Q/QB Outputs
- Enable
- Scan
- etc.
Level Shifters¶
- 是一种 buffer,可以进行电压域的转换。
- HL (high-to-low) shifter
- Requires only one voltage
- Single height cell
- LH (low-to-high) shifter
- Needs 2 voltages
- Often double height
Filler and Tap Cells¶
-
Filler cells Must be inserted in empty areas in rows.
- 用于填充空的地方。为了确保布局的完整性和性能。
- 有时需要在行的边界处使用特殊的单元 End Caps Cells,端帽单元的作用是填充行之间的空隙,并提供额外的电气连接。
-
还有在 VDD 和 GND 中间填充的 MOSCAPs 电容器,称为 DeCAP cells 去耦电容,去耦电容单元有助于减少电源和地之间的噪声,从而提高电路的稳定性。
-
Well Taps needed to ensure local body voltage.
- 消除 latch-up,不用对每个 cell 都 tap。
ECO Cells¶
- An Engineering Change Order (ECO) is a very late change in the design.
- P&R 之后通常需要 ECOs,但是重新流片或者 P&R 的代价很高。
- 解决方法:使用 Spare(Bonus) cells
- 不带功能的单元,在设计的时候填充技巧怒。
- 当出现问题的时候,可以重新赋予它们所需的功能。
- Special standard cells are used to differentiate from real cells.
Example
绿色的是 ECO cells,起初他们是没有功能的。如果左上角的绿色块旁边的 cell 出现了问题,我们可以把他的连线断开,练到 ECO cell 上,这样就代替了他的功能。
Library Exchange Format (LEF)¶
-
Abstract description of the layout for P&R
- Readable ASCII Format.
- Contains detailed PIN information for connecting.
- Does not include front-end of the line (poly, diffusion, etc.) data,即没有详细的引脚信息。
Example
如图,这里包括了 cell 的轮廓(size 和 shape),pin 的位置和层(通常在 M1 层),金属障碍物(即这里被使用了不能在这里布线)
LEF
Technology LEF¶
- Technology LEF: contain (simplified) information about the technology for use by the placer and route
- Layers:
- Name,如 M1, M2...
- Layer type, 如 routing, cut(via,特殊类型,用于连接不同层)
- Electrical properties(R,C),即电阻、电容
- Design Rules, Antenna data, Preferred routing direction
- SITE (x and y grid of the library)
- COREsites are minimum standard cell size,最小单位。
- Can have site for double height cells!
- IOs have special SITE.
- Via definitions
- Units
- Grids for layout and routing
- Layers:
-
std cell 的高度用 Tracks 来衡量的。
- A Track is one M1 pitch,例如 8-Track cell 有空间插入 8 条水平 M1 导线(可以在 VDD 和 GND 之间插入多少个 track 的 M1)。
- 用 track 衡量的原因:track 越多,说明可以放更多的金属,晶体管更宽,那么 cell 更快。
- 7-8 low-tracklibraries for area efficiency
- 11-12 tall-tracklibraries for performance, but have high leakage
- 9-10 standard-tracklibraries for a reasonable area-performance tradeoff
-
Cells must fit into a predefined grid
- 最小高度和宽度被称为 SITE,必须是最小 x-grid 单元和行高的倍数。
Liberty Timing Model (.lib)¶
.lib
文件,其包含单元的时序和功耗特性。这些文件用于静态时序分析(Static Timing Analysis, STA),以确保设计满足时序要求,并优化功耗性能。- 目标:
- 对于每个 timing arc,计算 propagation delay \(t_{pd}\),以及 output transition \(t_{rise}, t_{fall}\)。基于 input net transition \(t_{rise}, t_{fall}\) 和 output load capacitance \(C_{load}\) 进行计算。
Note
每个 .lib
文件通常只针对一个特定的工艺条件,即 corner 角点。例如,一个 .lib
文件可能会包含在 25°C 温度、标准工艺窗口和 1.2V 供电电压下的时序参数。另一个 .lib
文件可能会包含在 100°C 温度、最小工艺窗口和 1.2V 供电电压下的时序参数。
-
Liberty 包含的时序数据内容:
- Library:
- General information common to all cells in the library. e.g., 操作条件,线负载模型,查找表。
- Cell:
- Specific information about each standard cell. e.g., 功能,面积。
- Pin:
- Timing, power, capacitance, leakage, functionality, etc. characteristics of each pin in each cell.
Example
- Library:
Timing Models¶
-
Non-Linear Delay Model (NLDM)
- Driver model: 描述了驱动单元的时序行为,包括驱动单元的输出电容、输出电阻等,例如使用一个斜坡电压源和一个固定的驱动电阻来模拟驱动单元的时序行为。
- Receiver model: 描述了接收单元的时序行为,包括接收单元的输入电容、输入电阻等,例如使用最小/最大上升/下降输入电容来模拟接收单元的时序行为。
- NLDM 模型有一些局限性,它不建模电容随信号过渡过程中的变化,因此在超过 130nm 工艺节点时可能会失去准确性。
NLDM
对每个元件,我们有三张表,横纵坐标分别是输入延时和输出电容,表格中的时间是延时。\(t_{pd}=f(t_{input}, C_{load})\)。给定输入延时和输出电容,我们可以查表并进行插值得到结果。
-
Current Source Models (CCS, ECSM)
- Model a cell's nonlinear output behavior as a current source
- Driver 模型是 nonlinear current source,Receiver 模型是 Changing Capacitance 可变电容。
Note
Wire Load Models¶
- Wire Load Models 是
.lib
文件中描述电源和地网络特性的模型。包括电阻和电容,来模拟电源和地网络的传播延迟,这些延迟会影响信号在电源和地网络上的传播时间。 -
基本方法是根据 fanout 来查表估算电阻电容,但是这样可能会不准确。
Physical-Aware Synthesis¶
- wireload models 准确度不高,反之可以在综合的时候使用物理信息。
- Physical-Aware Synthesis 物理感知综合基本上在综合器内部运行布局,以获得更准确的寄生估计。可以在没有 floorplan 的情况下,仅使用
.lef
文件进行操作。在第一次迭代后,可以将 floorplan.def
文件导入综合器,以进一步优化设计。syn_opt-physical
Boolen minimization¶
Elaboration and Binding:
- elaboration: Compiles the RTL into a Boolean data structure.
- binding: Binds the non-Boolean modules to leaf cells,将非布尔模块(如算术运算、寄存器、触发器等)绑定到库中的具体单元,这些单元通常是 std cell lib 里的基本逻辑门和存储单元。
- minimization: Optimizes the Boolean logic.
- The resulting design is mapped to generic, technology independent logic gates.
- During elaboration, primary inputs and outputs (ports) are defined and sequential elements (flip-flops, latches) are inferred.
- input ports 和 register outputs 作为逻辑的输入,output ports 和 register inputs 作为逻辑的输出。输出可以用输入的布尔函数来表示。
- Boolen minimization 的目的就是减少输出函数的 literal(即输入在我们函数中出现的次数)。
Elaboration Illustrated
如图,这里从 FSM 开始(由 RTL 代码描述),elaboration 时会继续 infer,将 always@(posedge clk)
转为除法器,并添加输入输出。随后创建布尔表达式。
Two-Level Logic¶
-
这里有很多种方式表示布尔函数,包括真值表、cubes、Binary Decision Diagrams (BDDs) 等。
-
其中使用 SOP or POS 表示的,称为 Two-Level Logic 两级逻辑。
Example
对于两级逻辑,literal 只看第一层的输入。如下图的两个两级逻辑,上面的图有 10 个输入,因此 literal 为 10;下图只有 8 个 literal。
-
-
Two-Level Logic Minimization
- Karnaugh Maps
- \(n\) 输入,图会包括 \(2^n\) 个格子,目标是找到最小的 prime cover。
- 但是很难自动化(NP-complete),而且随着维度增加,cell 数量指数上升。
- Quine-McCluskey
- 容易实现,但是计算复杂度很高。
-
Espresso Heuristic Minimizer
- 从一个 SOP 开始,有下面的操作:
- Expand: Make each cube as large as possible without covering a point in the OFF-set,这个操作会增加 literal 的数量,得到更坏的结果。
- Irredundant: Throw out redundantcubes, remove smaller cubes whose points are covered by larger cubes.
- Reduce: The cubes in the cover are reduced in size.
-
总体算法流程如下:
-
需要注意的是,这个算法不一定找到更优的的解,但是可以找到和初始解不同的答案,我们可以从不同维度进行寻找。
Example
- 从一个 SOP 开始,有下面的操作:
- Karnaugh Maps
Multi-Level Logic¶
-
一般电路表示形式则是更为灵活的多级形式(Multi-Level)。
Multi-level Logic Minimization
-
Binary Decision Diagrams (BDD),电脑中存储真值表的一种方式。
-
BDDs are DAGs that represent the truth table of a given function
Example
注意 x1 x2 x3 的顺序对于树的构建是有影响的,不同的顺序会导致不同的树。每层代表一个变量的取值,这里从上至下依次是 x1, x2, x3。每个子树可以认为是一个布尔表达式,如左边的 x2 的子树对应的表达式其实是 NAND,即 ~(x2x3)。
-
Shannon Expansion
- 给定一个布尔函数 \(f(x_1, x_2, ..., x_n)\),我们可以将其展开为 \(f(x_1, x_2, ..., x_n) = x_if(x_1, x_2, ...,1,..., x_n) + x_i'f(x_1, x_2, ...,0,..., x_n)\),这里 \(f_i^1=f(x_1, x_2, ...,1,..., x_n)\) 和 \(f_i^0=f(x_1, x_2, ...,0,..., x_n)\) 分别称为 positive cofactor 和 negative cofactor 余子式。
-
这个展开过程可以用 BDD 来表示。
Example
如下图,这里 \(f=ac+bc+a'b'c'=a'(b'c'+bc)+a(c+bc)=a'(b'c'+bc)+a(c)\)
-
-
Reduced Ordered BDD (ROBDD)
- BDDs 可能很大,因此需要进行简化。
-
Reduction Rule 1: Merge equivalent leaves.
-
Reduction Rule 2: Merge isomorphic nodes.
-
Reduction Rule 3: Eliminate Redundant Tests.
-
BDD 是 canonical 规范化的,即我们反复运用上面的三个规则最后得到的结果是一样的(只要变量顺序一致)。但是不同顺序可能带来数量差别很大的 BDD。
-
Some benefits of BDDs:
- 用于检验 tautology 恒真式。
- 求补(只需要交换 0 和 1 节点)。
- 进行等价性检测(只要 f g 的在相同变量次序情况下的 BDD 相同)。
Constraint Definition¶
Technology Mapping¶
- Technology mapping is the phase of logic synthesis when gates are selected from a technology library to implement the circuit,即将我们现有的通用的表示(BDD 或者其他 universal gates)映射为实际的标准单元。
- Why technology mapping?
- 直接映射可能效果不好,例如直接映射
F=abcdef
6 输入 AND 门,会带来很长的延时。 - 库里的门是预先定义好的,通常在 PPA 方面最优。
- 映射时我们可以让最快的门在 critical path 上,critial path 以外可以放 area-efficient 的门。
- 直接映射可能效果不好,例如直接映射
- 可以使用 minimum cost tree-covering algorithm 来解决这个映射问题。
Technology Mapping Algorithm¶
- Using a recursive tree-covering algorithm, we can easily, and almost optimally, map a logic network to a technology library.
- 算法包括下面三步:
- Map netlist and tech library to simple gates
- 只用 NAND2,NOT 门描述网表。
- 只用 NAND2,NOT 门描述标准单元库,同时对于每个门赋予一个 cost。
- Tree-ifying the input netlist
- 将电路分解为若干棵树。即对于任何节点,若 fanout >=2,就将其作为树的根节点,与后面的节点断开。
- Minimum Cost Tree matching
- 本质是树形 DP,类似于编译原理中的指令选择。
- 从图的输出节点开始(根),对于每个节点,找匹配的对应模式,并计算 \(cost(i)=\min\limits_{k}\{cost(g_i)+\sum\limits_k (k_i)\}\),这里 \(k_i\) 是门 \(g\) 的输入。
- Map netlist and tech library to simple gates
Example
-
第一步:这里的 cost 可能和 PPA 有关,需要人工设置
-
第二步:这里黄色部分的 fanout 为 2,所以需要拆开(树中一个节点只能有一个父节点)。
-
第三步:匹配
Verilog for Synthesis¶
-
以 4->2 encoder 为例,
-
朴素使用
if-else
实现如下:这种方式叫做 priority logic 优先逻辑,也就是某些位的优先级会较高,电路会先判断这个条件。这也会导致电路会是一个串行的结构。
-
使用
case
实现如下:这样会让电路成为并行架构。其延迟自然而然就变低。
-
上述的第一种写法。如果我们传的的数据不是 one-hot code,则输出 X。但是如果我们能够保证输入是 one-hot code 的话,可以用下面的写法。
这种电路叫做 priority decoder 优先译码器(最低 bit 获得了高优先级)。该电路常常用在固定优先级仲裁器设计上。
-
-
operators
- Logical operators map into primitive logic gates
- Arithmetic operators map into adders, subtractors, ...
- Unsigned or signed 2’s complement
- Model carry: target is one-bit wider that source
- Watch out for *, %, and /
- Relational operators generate comparators
- No logic involved
-
Shifts by constant amount are just wire connections
Example
-
Variable shift amounts a whole different story -> shifter
- Conditional expression generates logic or MUX
-
Datapath Synthesis
- 复杂的运算(如加法器、乘法器)用特殊的方式实现。如乘法器可以用 Wall 算法、Booth 算法、CSA Array 等。
- Pre-written descriptions can be found in Synopsys DesignWare or Cadence ChipWare IP libraries.
-
Clock Gating
- 时钟一直 toggling,这是动态功耗的主要消耗。因此为了节约功耗,我们可以在不需要时关闭时钟信号。
-
Block level (Global) clock-gating,这种技术在不需要整个模块或组件时,通过在 RTL 中定义时钟门控来关闭时钟信号。我们直接看图可以看到,时钟信号和 enable 信号与在一起。如果 enable 拉低。则输入进去的时钟信号为 0。整个系统自然也就不会工作了。
-
Register level (Local) clock-gating,更细粒度的时钟门控技术,它可以在寄存器级别上节省功耗。如下图将本来作用在 input 上的使能信号转移到 clk 输入上。
-
要实现时钟门控,有下面三种方法:正常写 RTL 代码等待综合器自行实现;将 clk 和 enable 信号与之后传递给综合器;直接调用现成的时钟模块 cell。
-
会遇到 glitch 毛刺问题:
-
解决方法是采用 glitch-free clock gate,本质就是集成时钟门控,这里的 latch 是负边沿触发的。
-
-
我们还可以将不同寄存器的时钟门控合并在一起,节约 power 同时使用更少的逻辑门。
-
Data Gating: 和时钟门控类似,用于在数据信号不被使用时关闭这些信号,以节省功耗。这种情况类似于时钟门控,其中数据信号的切换也会导致功耗的产生,即使这些信号在某些时刻没有被使用。实现起来更复杂,要在写 RTL 时注意。
Example
-
Design and Verification – HDL Linting
- 进行代码的 LINT 检查,这些原因可能导致仿真和综合的结果不匹配。
Post-Synthesis Optimization¶
-
There are many ‘transforms’ that the synthesizer applies to the logic to improve the cost function:
-
Resize cells
Resize a logic gate to better drive a load
-
Buffer or clone to reduce load on critical nets
make a copy (clone of the gate) to distribute the load, orjust buffer the fanout net
-
Redesign Fan-In/Fan-out Trees
Example
-
Decompose large cells
Decomposition and Swapping
-
Move critical signals forward
Retiming
-
Pad early paths
- Swap connections on commutative pins or among equivalent nets
- Area recovery
-