Presentation is loading. Please wait.

Presentation is loading. Please wait.

10/14/2005Caltech1 Reliable State Machines Dr. Gary R Burke California Institute of Technology Jet Propulsion Laboratory.

Similar presentations


Presentation on theme: "10/14/2005Caltech1 Reliable State Machines Dr. Gary R Burke California Institute of Technology Jet Propulsion Laboratory."— Presentation transcript:

1 10/14/2005Caltech1 Reliable State Machines Dr. Gary R Burke California Institute of Technology Jet Propulsion Laboratory

2 10/14/2005Caltech2 outline Background –JPL MER example JPL FPGA/ASIC Process –Procedure –Guidelines State machines –Traditional –Highly Reliable –Comparison

3 10/14/2005Caltech3

4 10/14/2005Caltech4

5 10/14/2005Caltech5

6 10/14/2005Caltech6 MER Mission example Large number of FPGAs Mostly fuse programmable – but at least one RAM programmable FPGA Several ASICs Many standard parts eg Microprocessor, RAM chips.

7 10/14/2005Caltech7

8 10/14/2005Caltech8

9 10/14/2005Caltech9

10 10/14/2005Caltech10

11 10/14/2005Caltech11

12 10/14/2005Caltech12

13 10/14/2005Caltech13

14 10/14/2005Caltech14 FPGA/ASIC Process JPL needs to ensure design process is sound A bug in an FPGA/ASIC can halt a billion dollar mission Tight schedules can result in inadequate testing Inadequate version control can result in the wrong code First Pass success important for ASIC design

15 10/14/2005Caltech15 FPGA/ASIC Process To ensure a quality product: Requirements are correct and do not change Specification is complete Design will meet the specification and requirements Testing has covered all possible cases

16 10/14/2005Caltech16 FPGA/ASIC Process Peer reviews by experts to check the design and design approach Formal Reviews to ensure design process is adequate, and to sign off on the design Documentation for review and archiving Check-lists to ensure all problems are fixed

17 10/14/2005Caltech17 FPGA/ASIC Process Configuration Management to ensure correct versions are used Verification Matrix – which documents all testing Checking tools e.g. Lint, DRC; all errors, and warnings documented

18 10/14/2005Caltech18 ASIC PROCESS

19 10/14/2005Caltech19 FPGA PROCESS

20 10/14/2005Caltech20 Guidelines Define set of rules for HDL design Reduce ambiguity Clarify design to be easily checked and reviewed Implement most reliable design techniques

21 10/14/2005Caltech21 Fault Tolerant State Machines The state machine needs to be tolerant of single event upsets State machine should not hang State machine should always be in a defined state No asynchronous inputs to state machine Default state must be specified

22 10/14/2005Caltech22 State Machines A state machine is a sequential machine that when built into an FPGA or ASIC controls the sequencing of actions in the digital logic The current state of a machine is held in a state register which is updated on a clock The next value of the state register (next state) is derived from the current state and the inputs Outputs from the state machine are decoded from the state register and can also be combined with the inputs

23 10/14/2005Caltech23 State-Machine (SM) Encoding Each distinct state of the SM is represented by a unique code The allocation of these binary codes to states is the Encoding The simplest encoding is Binary In Binary encoding each state is given the next available binary number in sequence.

24 10/14/2005Caltech24 Other SM Encoding 1-hot encoding –The number of bits in the code is equal to the number of states. Each encoded state has just 1 bit in the encoded word set to a 1 (the rest are 0) –The advantage is that when optimized for non-reliable use, the amount of logic needed is less than Binary encoding, and it can be faster. One bit change with a SEU will result in a bad code which can be detected. –The disadvantage is the increased number of bits results in more flip/flops and therefore more targets for SEUs. The SEU advantage is lost when the 1-hot encoding is optimized. The simplest encoding is Binary In Binary encoding each state is given the next available binary number in sequence.

25 10/14/2005Caltech25 Other SM Encoding- cont Grey-code –Similar to binary encoding, except the codes are chosen so that in the main state-machine sequence only 1 bit changes at a time –No major advantage over binary with this code. Decoded outputs from the state register can make use of the nature of the encoding to simplify producing a glitch free output.

26 10/14/2005Caltech26 Other SM Encoding- cont H2-code –This variation on Binary encoding uses one extra bit to ensure all codes are separated by a Hamming distance of 2. That is, it will take 2 changes in the state register to reach another known state. –The advantage is that it has less bits and so less SEU targets than 1-hot, but retains the fault tolerance of the un-optimized 1-hot encoding.

27 10/14/2005Caltech27 Other SM Encoding- cont H3-code –This extension on H2 encoding uses additional bits to ensure all codes are separated by a Hamming distance of 3. That is, it will take 3 changes in the state register to reach another known state. –The advantage is that the SM can be designed such that a single change in the state register has no effect on the state. –The disadvantage is that it requires more logic to implement

28 10/14/2005Caltech28 Synthesis To check the overhead of each of the state machines, they were individually synthesized Finite state machine optimization is turned off A clock frequency of 50 MHz is used Target device is a Xilinx Spartan 2, speed grade 6 Error injection circuitry is not included

29 10/14/2005Caltech29 Synthesis Results

30 10/14/2005Caltech30 Four Bit State Encoding

31 10/14/2005Caltech31 Eight Bit State Encoding

32 10/14/2005Caltech32 Twelve Bit State Encoding

33 10/14/2005Caltech33 Sixteen Bit State Encoding

34 10/14/2005Caltech34 Twenty-Four Bit State Encoding

35 10/14/2005Caltech35 Thirty-Two Bit State Encoding

36 10/14/2005Caltech36 Fault Injection Test A test circuit is generated with an example of each state machine executing the same task, plus a reference state machine The task chosen requires a16-state state machine, to detect a 16-bit pattern in a serial input stream An error generator injects faults into all state machines except the reference state machine

37 10/14/2005Caltech37 Error Injection Test Continued The outputs of each state machine are compared to the reference output A set of counters tallies the comparison outputs 2 types of failure are logged for each state machine: –Failure to detect pattern –False detection of pattern (false-positive)

38 10/14/2005Caltech38 Error Injection Test Continued Non-key patterns are 1-bit different from the key pattern, to increase the likelihood of a false match Error rate can vary, set to 1:199 clocks in example Errors are weighted by distributing them pseudo-randomly over 16 bits. A state machine with a word size of n, receives n/16 of the total faults Synchronous fault injection is before the state register Asynchronous fault injection is after the state register All results are from actual implementation of the test circuits in a Spartan 2 FPGA

39 10/14/2005Caltech39 Error Rate – Synchronous Faults

40 10/14/2005Caltech40 Error Rate – Asynchronous Faults

41 10/14/2005Caltech41 Error Rate – Asynchronous Pulse Faults

42 10/14/2005Caltech42 Results: Binary Encoding Lowest resources used Second fastest speed after One Hot –Fastest for small number of states Second-most sensitive to errors Generates false-positive errors i.e. reports false pattern matches

43 10/14/2005Caltech43 Results: One Hot Encoding No false-positive errors (single faults) Fastest speed except for small number of states and large number of states Uses more resources than Binary Inefficient for large number of states Worst fault tolerance of all encoding tested Has 2x the error rate of binary encoding

44 10/14/2005Caltech44 Results: Hamming Distance of 2 (H2) Encoding No false-positive errors (single faults) Better Fault Tolerance than Binary More resources needed than One Hot, except for large number of states

45 10/14/2005Caltech45 Results: Hamming Distance of 3 (H3) Encoding Zero single-fault errors –Immune to synchronous and asynchronous errors Lowest double-fault errors Most resources used (*) ~2x binary encoding Slowest speed (*) (*) Except for large number of states


Download ppt "10/14/2005Caltech1 Reliable State Machines Dr. Gary R Burke California Institute of Technology Jet Propulsion Laboratory."

Similar presentations


Ads by Google