SV For VDL Users
SV For VDL Users
Tom Fitzpatrick
Principal Technical Specialist
Synopsys, Inc.
Agenda
• Introduction
• SystemVerilog Design Features
• SystemVerilog Assertions
• SystemVerilog Verification Features
• Using SystemVerilog and VHDL Together
2
SystemVerilog Charter
• Charter: Extend Verilog IEEE 2001 to higher
abstraction levels for Architectural and
Algorithmic Design , and Advanced
Verification.
Advanced
Transaction-Level V
As er verification capability
be g
Full Testbench
st ilo se ilog
h
for semiformal and
nc
Language with rt
Te Ver
io formal methods.
Coverage n
IEEE The Assertion
Language Standard
Verilog For Verilog
2001 PI
A e
Ar
Ve itect
Design c
&
ch
a
ril ur
Abstraction:
P I rf Direct C interface,
D nte
og al
Operator
Packages Overloading
Associative
Dynamic & Sparse arrays
Architecture Simple assertions pointers
memory
configuration allocation
User-defined types Void type Further
records/ programming
Dynamic enums structs Unions
multi-D arrays (do while,
hardware
break, continue,
generation Automatic variables Signed numbers Strings
++, --, +=. etc)
Platform Software
Based
Design
Transaction
Level (TL) System
Testbench
RTL
Assertions RTL
Testbench RTL
RTL
Assertions
Coverage Gates
SystemC
Coverage Gates
Gates
SystemVerilog
….
Verilog/VHDL
10
Agenda
• Introduction
• SystemVerilog Design Features
• SystemVerilog Assertions
• SystemVerilog Verification Features
• Using SystemVerilog and VHDL Together
11
Basic SystemVerilog Data Types
12
Familiar C Features In SystemVerilog
do continue starts
begin next loop iteration works with:
for
if ( (n%3) == 0 ) continue;
while
if (foo == 22) break; break exits
forever
end the loop repeat
while (foo != 0); (= “exit” in VHDL do while
…
13
SystemVerilog Struct = Record
type PKT_T is record typedef struct {
PARITY: std_ulogic; logic PARITY;
ADDR: std_ulogic_vector(3 downto 0); logic[3:0] ADDR;
DEST: std_ulogic_vector(3 downto 0); logic[3:0] DEST;
end record; } pkt_t;
31 3 0 The mypkt
PARITY structure/
ADDR record is
DEST “unpacked”
ip_h.udp_h.length = 5;
ip_h.bits[31:16] = 5;
tcp_t source_port dest_port sequence ip_h.bytes[3:2] = 5;
udp_t source_port dest_port length checksum
parity = ^ip_h; Equivalent
Operate on entire
Create multiple layouts for accessing data structure as a whole
VHDL records not explicitly packed
15
Type Conversion
Unpacked Structure
typedef struct {
logic PARITY;
logic[3:0] ADDR; User-defined type:
logic[3:0] DEST; packed bit vector
} pkt_t;
pkt_t mypkt;
vec_t myvec;
Cast mypkt as type vec_t
myvec = vec_t’(mypkt);
mypkt = pkt_t’(myvec);
Cast myvec as type pkt_t
Don’t
Don’tget
getthem
themmixed
mixedup
up unused
a3
packed
array of bit [3:0] p; p3 p2 p1 p0
bits
1k 16 bit
unpacked bit [15:0] memory [1023:0];
memory memory[i] = ~memory[i]; Packed
memory[i][15:8] = 0; indexes can be
1k 16 bit sliced
packed bit [15:0][1023:0] Frame;
Can operate on
memory always @inv Frame = ~Frame;
entire memory
RTL Synthesis
Gates
=/
• Causes
• Sensitivity list mismatches
• Pragmas affect synthesis but not simulation
• SystemVerilog Solves these problems
• Specialized always blocks automate sensitivity
• Synthesis directives built into the language
19
Design Intent – always_{comb,latch,ff}
• always blocks do not //OOPS forgot Else but it’s
guarantee capture of intent //only a synthesis warning
always @(a or b)
• If not edge-sensitive then if (b) c = a;
only a warning if latch
inferred
//Compiler now asks
• always_comb, always_latch //“Where’s the else?”
and always_ff are explicit always_comb
• Compiler Now Knows User if (b) c = a;
Intent and can flag errors //Intent: Conditional
accordingly // Assignment
always_latch
if (clk)
if (en) Q <= d;
//Conversely unconditionally
//assigned –is it a latch?
always_latch
q <=d
20
always_comb Sensitivity
• always_comb eliminates sensitivity list issues
• Ensures synthesis-compatible sensitivity
• Helps reduce “spaghetti code”
• Consider that always_comb derives sensitivity from
• RHS/expr in process
• RHS/expr of statements in Function Calls
logic avar,a,b,c,d,e;
logic [1:0] sel;
always_comb begin
a = b; always @(sel,b,c,d,e) begin
StepA(); a = b;
end case (sel)
…
function StepA
endcase
case (sel)
end
2’b01: avar = a | c;
2’b10: avar = d & e;
Encapsulate blocks of
default: avar = c;
combinational logic into functions –
endcase
endfunction
Easier to read and debug
21
Design Intent – Unique/Priority
• Parallel_case/full_case pragmas affect synthesis behavior
but not simulation behavior
• Unique keyword means that one and only one branch will be taken
(same as full_case parallel_case)
• Priority keyword means that the first branch will be taken (same
as full_case)
• Will cause simulation run-time error if illegal value is seen
sel must be unique case (sel) unique if (sel==3’b001)
“one-hot” sel[0] : muxo = a; muxo = a;
sel[1] : muxo = b; else if (sel == 3’b010)
sel[2] : muxo = c; muxo = b;
No default endcase else if (sel == 3’b100) No ending
clause needed muxo = c; else needed
22
Syntax – Implicit Named Port
Connections
• Creating netlists by hand is
tedious
• Generated netlists are module top();
unreadable logic rd,wr;
• Many signals in tri [31:0] dbus,abus;
instantiations tb(.*);
dut(.*);
• Instantiations cumbersome
to manage endmodule
23
SystemVerilog Interfaces
Design On A White Board HDL Design
Complex signals
SystemVerilog Bus protocol repeated in blocks
Interface Bus Hard to add signal through hierarchy
Design Signal 1
Signal 2
Read()
Communication encapsulated in interface
Write()
- Reduces errors, easier to modify
Bus Bus Assert
- Significant code reduction saves time
- Enables efficient transaction modeling
Bus
- Allows automated block verification
24
Example without Interface
entity memMod is architecture netlist of top is
port(reg,clk,start : in bit; signal req,gnt,start,rdy : bit;
mode : in std_logic_vector(1 downto 0); signal clk : bit := ‘0’;
addr : in std_logic_vector(7 downto 0); signal mode :
std_logic_vector(1 downto 0);
data : inout std_logic_vector(7 downto 0);
signal addr, data :
gnt, rdy : out bit); std_logic_vector(7 downto 0);
end memMod;
mem: memMod port map
architecture RTL of memMod is (req,clk,start,mode,
process (clk) begin addr,data,gnt,rdy);
wait until clk’event and clk=‘1’; cpu: cpuMod port map
gnt <= req AND avail; (clk,gnt,rdy,data,
end architecture RTL; req,start,mode,addr);
end architecture netlist;
entity cpuMod is
port(clk, gnt, rdy : in bit;
data : inout std_logic_vector(7 downto 0);
Top clk
req, start : out bit; req
mode : out std_logic_vector(1 downto 0); start
addr : out std_logic_vector(7 downto 0)); gnt
rdy
CPU Mem
end cpuMod; mode[1:0]
addr[7:0]
architecture RTL of cpuMod is
... data[7:0]
end architecture RTL;
25
Example Using Interfaces
interface simple_bus; module top;
logic req,gnt; bit clk = 0;
Bundle
logic [7:0] addr,data; simple_bus sb_intf;
signals in
logic [1:0] mode; interface instance
interface
logic start,rdy; memMod mem(sb_intf, clk);
endinterface: simple_bus
cpuMod cpu(.b(sb_intf),
Use interface .clk(clk));
keyword in port list endmodule
Connect
module memMod(interface a, interface
input bit clk);
logic avail;
always @(posedge clk)
a.gnt <= a.req & avail; Top clk
endmodule
Refer to intf
signals
module cpuMod(interface b, sb_intf
input bit clk); CPU Mem
endmodule
26
Using Different Interfaces
typedef logic [31:0] typedef logic [31:0]
data_type; data_type;
tbS • Complex
Only need to
interconnect
test S
interconnect • Hard to create tests
to check all signals
structure. A B
(missing wires, • Slow, runs whole
twisted busses) design even if only
structure is tested
• Post-
Integration
28
SystemVerilog Verification
Strategy
• Pre-Integration
• Interfaces provide
tbI
tbA tbB reusable
I I components
• tbA and tbB are
Test
I
in ‘linked’
f ace s A B
inter ion
• Interface is
isolat executable spec
• Wiring up is simple
and not error prone
• Post-Integration • Interfaces can
tbS contain protocol
checkers and
S coverage counters
Protocol bugs • Start Chip-Level
already flushed A I
B Verification at the
out Block Level
29
Operator Overloading
• Enable use of simple operators with Complex SV Types
struct3 = struct1 + struct2
• Operator Overloading is allowed for type combinations
not already defined by SV Syntax
bind overload_operator function data_type
function_identifier (overload_proto_formals)
typedef struct {
bit sign;
bit [3:0] exponent;
bit [10:0] mantissa;
} float;
bind + function float faddfr(float, real);
bind + function float faddff(float, float);
float A, B, C, D;
assign A = B + C; //equivalent to A = faddff(B, C);
assign D = A + 1.0; //equivalent to A = faddfr(A, 1.0);
30
Packages and Separate
Compilation
• Allows sharing of: package ComplexPkg;
declarations
• Built-in functions and types module foo (input bit clk);
import ComplexPkg::*
included in std package Complex a,b;
• Groups of files can now be always @(posedge clk)
compiled separately c = add(a,b);
endmodule
31
Agenda
• Introduction
• SystemVerilog Design Features
• SystemVerilog Assertions
• SystemVerilog Verification Features
• Using SystemVerilog and VHDL Together
32
What is an Assertion?
A concise description of [un]desired behavior
0 1 2 3 4 5
req
ack
Example intended behavior
33
Concise and Expressive SVA
property req_ack;
SVA Assertion @(posedge clk) req ##[1:3] $rose(ack);
endproperty
as_req_ack: assert property (req_ack);
34
Sequential Regular Expressions
• Describing a sequence of events
• Sequences of Boolean expressions can be described
with a specified time step in-between
z
c
b
a
clk
35
Property Definition
• Property Declaration: property
• Declares property by name
• Formal parameters to enable property reuse
• Top Level Operators
–not desired/undesired
–disable iff reset
–|->, |=> precondition
• Assertion Directives
• assert – checks that the property is never violated
• cover – tracks all occurrences of property
property prop1(a,b,c,d);
disable iff (reset)
(a) |-> [not](b ##[2:3]c ##1 d);
endproperty
assert1: assert prop1 (g1, h2, hxl, in3);
36
Manipulating Data:
Local Dynamic Variables
• Declared Locally within Sequence/Property
• New copy of variable for each sequence invocation
• Assigned anywhere in the sequence
• Value of assigned variable remains stable until
reassigned in a sequence
Local Dynamic Variable Example
valid
in EA BF
out EB C0
property e;
int x;
(valid,(x=in))|=> ##5(out==(x+1));
endproperty
37
Embedding Concurrent Assertions
property s1;
(req && !gnt)[*0:5] ##1 gnt && req ##1 !req ;
endproperty
• Automatically Updates
always @(posedge clk or negedge reset) Enabling Condition as
if(reset == 0) do_reset; Design Changes
else if (mode == 1) • Infers clock from
case(st) instantiation
REQ: if (!arb)
if (foo)
• Requires User to Update
st <= REQ2;
PA: assert property (s1); Manually as Design
Changes
property p1;
@(posedge clk) ((reset == 1) && (mode == 1)
&& (st == REQ) && (!arb) && (foo)) => s1;
endproperty
38
Bind statement
bind module_or_instance_name instantiation;
cpu1
module cpu(a,b); bind cpu cpu_props cpu_rules1(a,b,c);
reg c;
... instance name
endmodule
program name
cpu2
module cpu(a,b); program cpu_props(input d,e,f);
reg c; assert property (d ##1 e |=> f[*3]);
... endprogram
endmodule
Equivalent to:
assert property (top.cpu1.a ##1 top.cpu1.b |=> top.cpu1.c[*3]);
assert property (top.cpu2.a ##1 top.cpu2.b |=> top.cpu2.c[*3]);
or
cpu_props cpu_rules1(a,b,c); // in module cpu
40
Agenda
• Introduction
• SystemVerilog Design Features
• SystemVerilog Assertions
• SystemVerilog Verification Features
• Using SystemVerilog and VHDL Together
41
Dynamic Arrays
Declaration syntax
<type> <identifier> [ ];
bit[3:0] dyn[ ];
Initialization syntax
<array> = new[<size>];
dyn = new[4]; dyn
Equivalent to:
bit[3:0] dyn[0:3];
Size method
function int size();
int j = dyn.size;//j=4
Resize syntax
dyn = new[j * 2];
Equivalent to:
bit[3:0] dyn[0:7];
42
Associative Arrays
• Sparse Storage
• Elements Not Allocated Until Used
• Index Can Be of Any Packed Type, String or Class
Declaration syntax
<type> <identifier> [<index_type>];
<type> <identifier> [*]; // “arbitrary” type
Example
struct packed {int a; logic[7:0] b} mystruct;
int myArr [mystruct]; //Assoc array indexed by mystruct
Built-in Methods
num(), delete([index]), exists(index);
first/last/prev/next(ref index);
Ideal for Dealing with Sparse Data
43
Queues
• Variable-sized Array: data_type name [$]
• Uses array syntax and operators
int q[$] = { 2, 4, 8 }; int e, pos, p[$];
e = q[0]; // read the first (leftmost) item
e = q[$]; // read the last (rightmost) item
q = { q, 6 }; // append: insert ‘6’ at the end
q = { e, q }; // insert ‘e’ at the beginning
q = q[1:$]; // delete the first (leftmost) item
q = q[1:$-1]; // delete the first and last items
44
Dynamic Processes and Threads
• SystemVerilog adds dynamic parallel processes
using fork/join_any and fork/join_none
fork fork fork
packetN
packet1
mailbox #(type) mbID = new(5);
mbID.get(msg);
mbID.put(msg);
46
Class Definition
Definition syntax
class name;
<data_declarations>; class Packet;
<task/func_decls>; bit[3:0] cmd;
endclass int status;
myStruct header;
extern keyword function int get_status();
allows for out-of-body return(status);
method declaration endfunction
extern task set_cmd(input bit[3:0] a);
endclass
Packet myPkt
myPkt;= new;
Call to “new” method
allocates storage for object
myPkt
cmd
status
header
Packet: ErrPkt:
cmd cmd
status get_status status get_status
show_err
header header
set_cmd set_cmd
cmd = a; err cmd = a+1;
Input Space
Design
Constraint Solver
• Find solutions
Valid
52
Layered Constraints
• Constraints Inherited via Class Extension
• Just like data and methods, constraints can be
inherited or overridden
typedef enum { low, high, other } AddrType ;
type variable
class MyBus extends Bus; selects address
rand AddrType type;
constraint addr_rang { range
( type == low ) => addr in { [ 0 : 15] };
( type == high ) => addr in { [128 : 255] }; }
endclass
• If a == 4:
–branch 1 taken with 3/8 probability (37.5%)
–branch 2 taken with 1/8 probability (12.5%)
–branch 3 taken with 4/8 probability (50.0%)
54
Scope Randomization &
Constraint Checking
• randomize method can be applied to any
variable
[std::] randomize ( [ variable_list ] ) [ with { constraint_block } ]
module stim;
bit[15:0] a;
bit[31:0] b;
Optional “::” namespace operator to
function bit gen_stim(); disambiguate method name
bit success, rd_wr;
success = randomize( a, b, rd_wr ) with { a > b };
return rd_wr ;
endfunction
...
endmodule
55
Functional Coverage
• New covergroup container allows
declaration of
• coverage points
–variables
–expressions
–transitions
• cross coverage
• sampling expression : clocking event
initial begin
tb_en = bus.enable; // read sampled value of enable
bus.empty <= 1; // write “empty” after 2 ns
end
57
Program Block
• Purpose: Identifies verification code
• A program differs from a module
• Only initial blocks allowed
• Special semantics
– Executes in Reactive region
design → clocking/assertions → program
• Program block variables cannot be modified by
the design
program name (<port_list>);
<declarations>;// type, func, class, clocking…
<continuous_assign>
initial <statement_block>
endprogram
property wait_after_abort;
@(posedge clk) abort_cycle |=> !as[*2];
endproperty
assert property (wait_after_abort);
program manual_stimulus_generator;
Simulation Monitors repeat(1000) begin
and Constraints generate_transaction(addr,data);
for Formal while(wait_cnt > 0)
@(posedge clk) wait_cnt--;
Analysis end
endprogram
59
SystemVerilog Enhanced Scheduling
Previous
Time Slot
Active
Inactive
NBA
Next
Read-Only Time Slot
60
SystemVerilog Enhanced Scheduling
Previous
Time Slot
Preponed Active
Inactive Verilog
Sample 2001
Stable
Values NBA
Evaluate
Assertions
Observe
SystemVerilog
Execute
3.1 TestBench
Reactive
Next
Postponed Time Slot
61
Agenda
• Introduction
• SystemVerilog Design Features
• SystemVerilog Assertions
• SystemVerilog Verification Features
• Using SystemVerilog and VHDL Together
62
SystemVerilog With VHDL
• Verilog-VHDL Interface limited to net/vector
types
• VHDL records and arrays packed into bit
vectors
• SystemVerilog supports higher-level data
types
• Synthesizable types are synthesizable across
the interface
VHDL SystemVerilog
Record Struct
Array Array
Multi-D Array Multi-D Array
Enum Enum
63
Pure VHDL Simulation Flow
+ Single language (VHDL) for
Design Testbench
design and testbench
- No constrained
VHDL RTL VHDL
random TB
Performance
- No temporal
assertions
Effectiveness
- No functional
coverage
64
SystemVerilog is Evolutionary for
VHDL and Verilog Users
Design Testbench Design
SystemVerilog
HVL VHDL/ Verilog
VHDL / Verilog
(Behavioral Testbench
RTL)
C/C++ Assertions
VHPI / FLI
65
The Importance of a Single
Language
Unified Scheduling Knowledge of
• Basic Verilog Other Language
won’t work Features
• Ensures Pre/Post- • Testbench and
Synth Consistency Assertions
• Enables • Interfaces and
Performance Classes
Optimizations • Sequences
and Events
Reuse of Syntax/Concepts
• Sampling for assertions and clocking domains
• Method syntax
• Queues use common concat/array operations
• Constraints in classes and procedural code
66
SystemVerilog Benefits for VHDL Users
• Many VHDL modeling features are in SystemVerilog
• Don’t have to give up high-level data types
• Some features (enums) extended beyond VHDL
capabilities
• Mixed-HDL environments are a reality
• Higher-level data types supported across boundary
• Continue to use VHDL legacy blocks
• Easier to adopt SystemVerilog incrementally
• Industry-Standard Verification Language works
with VHDL designs
• Constrained random data generation
• Object-oriented
• Assertions
• SystemVerilog supports Design for Verification
• Interfaces and assertions capture design intent
• Efficient and intuitive interactions between testbench and
assertions 67
Evolution of Verification Productivity
Unified
Language
Formal
Testbench
Assertions C++
Unified
Coverage Mixed-
Mixed-HDL Platforms
Unified
Methodology Axes of Verification Productivity
68