barto b170-w/mapld2005 page 1 verification of moderate complexity ip: case study, mil-std-1553b...

16
Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD- 1553B Interface Rod Barto NASA Office of Logic Design

Upload: jerome-watts

Post on 13-Dec-2015

216 views

Category:

Documents


3 download

TRANSCRIPT

Page 1: Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD-1553B Interface Rod Barto NASA Office of Logic Design

Barto B170-W/MAPLD2005 Page 1

Verification of Moderate Complexity IP:

Case Study, MIL-STD-1553B Interface

Rod Barto

NASA Office of Logic Design

Page 2: Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD-1553B Interface Rod Barto NASA Office of Logic Design

Barto B170-W/MAPLD2005 Page 2

Review Questions for a 1553 IP Core

• Has the core passed a 1553 verification test?• Is the internal design sufficiently robust for

space usage?– Treatment of illegal state machine states– Sensitivity to noise in incoming bit stream

• How well is the user interface documented?– Don’t want to “reverse engineer” the interface to figure

out how it works

Page 3: Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD-1553B Interface Rod Barto NASA Office of Logic Design

Barto B170-W/MAPLD2005 Page 3

Method of review

• Read spec and supporting documentation

• Review verification report

• Read through VHDL

• Run VHDL simulations as necessary

• Synthesize modules and review netlist schematic as necessary

Page 4: Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD-1553B Interface Rod Barto NASA Office of Logic Design

Barto B170-W/MAPLD2005 Page 4

1553 Verification

• Assumption: passing verification shows front end design to be logically correct

• Verification does not validate user interface• XCo: had passed verification, but

– Not at frequency the core would be run at– Significant changes had been made to the core after

the verification test, including to the decoder– XCo agreed to re-run the test

• YCo: had passed verification, but– Only in Xilinx FPGA, while project target was Actel– YCo agreed to re-run the test

Page 5: Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD-1553B Interface Rod Barto NASA Office of Logic Design

Barto B170-W/MAPLD2005 Page 5

Design Robustness

• XCo– “Safe” attribute not used– Decoder showed sensitivity to bit errors, and

would require pre-filtering

• YCo– “Safe” attribute used– Decoder incorporated pre-filtering and was

otherwise by design less sensitive to bit errors

Page 6: Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD-1553B Interface Rod Barto NASA Office of Logic Design

Barto B170-W/MAPLD2005 Page 6

Documentation

• Documentation Standard: TI Data Book– Truth tables, timing diagrams, etc., always

provided– Never any confusion about how a TI part

worked– Never had to call tech support to resolve

ambiguities

• Neither core met this standard– Both XCo and YCo had to be contacted to

resolve documentation deficiencies

Page 7: Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD-1553B Interface Rod Barto NASA Office of Logic Design

Barto B170-W/MAPLD2005 Page 7

Conclusions Regarding IP• Use of proven IP cores can reduce the time

required to produce a proven design, but:– Users should be skeptical about how well “proven” the

core is– Users should be skeptical that the design meets their

robustness requirements– Vendors should raise the quality of their

documentation

• No IP reviewed to date meets the overall quality standard set by the vendors of SSI/MSI/LSI parts

Page 8: Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD-1553B Interface Rod Barto NASA Office of Logic Design

Barto B170-W/MAPLD2005 Page 8

What Documentation Should the User Request?

• Full data sheet and any user guides, application notes, etc.

• Verification reports– Every piece of IP should have been subjected to

some formal verification test by the vendor• Change and verification history• VHDL or other circuit description

– IP vendors are reluctant to release this– Can obtain some information in other ways, e.g.,

• Ask direct questions• Review synthesis reports for information about state machine

handling, asynchronous design techniques, etc.

Page 9: Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD-1553B Interface Rod Barto NASA Office of Logic Design

Barto B170-W/MAPLD2005 Page 9

Example: ACTgen RTAX-S FIFO

• Candidate FIFO for 1553 backend circuitry

• Uses RTAX RAM and FIFO resources

• Generated by ACTgen, so it really is IP

Page 10: Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD-1553B Interface Rod Barto NASA Office of Logic Design

Barto B170-W/MAPLD2005 Page 10

AFULL and EMPTY flagsSource: Actel RTAX-S Data Sheet

Write address is delayed before comparison with read address on writes, delaying empty flag falling on writes but not delaying its rising on reads

Subtraction and comparison with threshold (AFVAL) is not delayed, so AFULL flag is not delayed on writes or reads

AEMPTY and FULL flags are ignored in design

Page 11: Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD-1553B Interface Rod Barto NASA Office of Logic Design

Barto B170-W/MAPLD2005 Page 11

Verification Plan:Run FIFO Simulations

• Actel doesn’t provide any verification results• So, IP verification task falls to user• Verification plan: write test bench

– Resets FIFO– Writes 35 words, values 0 to 34

• AFULL flag should rise after value 31 written• Logic checks the AFULL flag, only values 0 to 31 should be

written

– Reads 40 words• Only values 0 through 31 should come out, empty flag should

rise after 31

Page 12: Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD-1553B Interface Rod Barto NASA Office of Logic Design

Barto B170-W/MAPLD2005 Page 12

FIFO Write and Read

• Scale 1 usec/div

Reset FIFO

first write is 0

Empty Flag falls

Last write is 31, further writes suppressed by AFULL flag rising and being checked

Start of read cycles

EMPTY flag rises

Last value read out is 31

Page 13: Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD-1553B Interface Rod Barto NASA Office of Logic Design

Barto B170-W/MAPLD2005 Page 13

First Write Details

• Scale 10 nsec/div

Value of 0 written on this clock edge when we is low Note empty flag fall delayed one

clock edge

Page 14: Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD-1553B Interface Rod Barto NASA Office of Logic Design

Barto B170-W/MAPLD2005 Page 14

Last Read Details

• Scale 50 nsec/div

Read of value 31 occurs on this clock edge with RE low

Empty flag rises immediately

No further reads occur

Page 15: Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD-1553B Interface Rod Barto NASA Office of Logic Design

Barto B170-W/MAPLD2005 Page 15

First Read Details

• Scale 50 nsec/div

Data appears on this clock edge when RE is low. AFULL flag falls

immediately on the same clock edge

Note that Q output is indeterminate before the first read, i.e., the first value written doesn’t fall through the FIFO and appear as valid data on the output, at least not in the simulation

Page 16: Barto B170-W/MAPLD2005 Page 1 Verification of Moderate Complexity IP: Case Study, MIL-STD-1553B Interface Rod Barto NASA Office of Logic Design

Barto B170-W/MAPLD2005 Page 16

Conclusion

• Investigation shows idiosyncrasies of IP– Empty flag rise/fall inconsistency could be

inferred by reviewing RTAX-S documentation, but simulation shows it clearly

– Indeterminate Q output before Read was a surprise

• Better to take a skeptical approach to IP than to accept it blindly