Download presentation
Presentation is loading. Please wait.
1
Is the die cast for the token game? Alex Yakovlev, Frank Burns, Alex Bystrov, Delong Shang, Danil Sokolov University of Newcastle upon Tyne ICATPN’02 – Adelaide
2
Casting dice for old and new token games …
3
What is this talk about? Firstly, about the role of Petri nets in modern hardware design process (design flow), which is a gamble of its own Secondly, about searching for the right way of deriving logic circuits (computational structures) from Petri nets (behavioural specifications) However, I won’t talk here about use of Petri nets for circuit verification
4
Int. Technology Roadmap for Semiconductors says: 2010 will bring a system-on-a-chip with: –4 billion 50-nanometer transistors, run at 10GHz –Moore’s law: steady growth at 60% in the number of transistors per chip per year as the functionality of a chip doubles every 1.5-2 years. Technology troubles: process parameter variation, power dissipation (IBM S/390 chip operation PICA video), clock distribution etc. present new challenges for Design and Test But the biggest threat of all is design cost
5
Design productivity gap From ITRS’99 A design team of 1000 working for 3 years on a MPU chip would cost some $1B (25% time spent on verification, 45% on redesign after first silicon)
6
Design costs and time to market How to reduce them? New design approaches to facilitate design component re-use (IP cores), but there is a problem of timing closure New CAD methods to minimise costs of verification, testing and re-design
7
Timing problems Year Clock Frequency GHz 2000 Global clock Local clock Global clock cannot cope with: Fewer gate delays per clock cycle Greater clock skew
8
Timing problems Year Clock Frequency GHz 2000 Global clock Local clock Global clock cannot cope with: Fewer gate delays per clock cycle Greater clock skew Clocks have to be localised The number of Time Zones increases to 1000s and more
9
Self-timed Systems Get rid of global clocking and build systems based on handshaking: –Globally asynchronous locally synchronous (GALS) –Design the whole system in a self-timed way Whatever way is followed new CAD tools for self-timed design are needed
10
The Timing Mode Spectrum Synchronous (globally/locally clocked) Fully delay-insensitive Speed-independent Burst-mode and fundamental mode Globally asynchronous locally synchronous (GALS) Asynchronous (self-timed) Multiple clock domains Clock gating and distribution Single clock With relative timing and i/o mode
11
GALS module with stoppable clock Local CLK RRCL Async-to-sync Wrapper Req1 Req2 Req3 Req4 Ack3 Ack4 Ack2 Ack1 Asynchronous World Clocked Domain
12
GALS: an Example In1Out1 Clock generator EnIn1EnOut1 RCIn1 ACIn1 RCOut1 ACOut1 Out2In2 Clock generator EnOut2EnIn2 RCOut2 ACOut2 RCIn2 ACIn2 clk1 clk2 A1A2R1 R2 Sync Unit 1 Sync Unit 2 Async Interface
13
GALS: Petri net model clk1- clk1+ RCIn1ACIn1 A1 MutexIn1MutexOut1 R2 ACOut1RCOut1 RCOut2 RCIn1 R1A2ACOut2ACIn2 Clk1=0
14
Main talk outline Motivation: design flow problems Backend language: Petri nets? New design flow: two-level control Direct mapping of PNs: event-based and level-based Direct mapping of STGs Case studies Conclusion
15
Motivation Complex self-timed controllers still cannot be designed fully automatically and provably correct (cf. work at Philips, Theseus Logic, Fulcrum, Self-Timed Solutions) It is important to interface to HL hardware description languages, e.g. VHDL, Verilog (standard for digital design) and/or Tangram, Balsa (CSP-based) Success (90’s) of behavioural synthesis for sync design Parts of architectural synthesis (CDFG extraction, scheduling and allocation) are similar to sync. design Synthesis of RTL control/sequencer and its implementation should be completely new for asynchronous circuits Need for a good intermediate (back-end) language
16
Motivation (cont’ed) Existing logic synthesis tools (cf. Petrify and Minimalist) can only cope with small-scale low level designs (state-space explosion, limited optimisation heuristics) Logic synthesis produces circuits whose structure does not correspond to their behaviour structure (bad for analysis and testing) Syntax-direct translation techniques may be a way forward but applied at what level?
17
Motivation for use of Petri nets Implications to new research targets on: –Translation between HDLs and Petri nets, particularly formal underpinning of semantical links between front- end and back-end formats –New composition and decomposition techniques (incl. various forms of refinement and transformation) applied to labelled PNs –New circuit mapping and optimisation techniques for different types of models (under various delay- dependence or relative time assumptions and different signalling schemes) –Combination of direct mapping with logic synthesis (e.g. circuits with ‘peep-hole optimisation’)
18
Main talk outline Motivation: design flow problems Backend language: Petri nets? New design flow: two-level control Direct mapping of PNs: event-based and level-based Direct mapping of STGs Case studies Conclusion
19
Intermediate language What is the most adequate formal language for the intermediate (still behavioural) level? –You don’t need one at all - directly map syntax into circuit structure (Design flow 1) –Petri nets, at the level of Signal Transition Graph (STG), and then use logic synthesis (Design flow 2)
20
Design Flow 1 (e.g. Tangram or Balsa (currently)) HDL Handshake circuit netlist QDI circuit netlist Syntax-direct compilation Direct mapping with Burst Mode FSM ‘peephole’ optimisation
21
HDL syntax directed mapping do if (X=A) then par OP1; OP2; rap else seq OP3; OP4; qes if od do par seq OP2 OP1 OP3 OP4 (X=A) if then else Control flow is transferred between HDL syntax constructs rather than between operations
22
Pros and cons of Flow 1 Pros: –Simple linear-size translation, guarantees high productivity –Allows local optimisation and re-synthesis of parts –Testing can be ‘programmed’ at high-level Cons: –Lack of global optimisation –Circuit structure follows the parsing tree of the specification - this leads to low performance
23
Design Flow 2 (STG logic synthesis) STG specification Synthesisable STG QDI circuit netlist Analysis and optimisation (consistency, CSC, relative timing) Extras (e.g. refining to FC subclass for structural methods) Logic synthesis (via full State Space or structural methods)
24
Logic synthesis (STGs & Petrify) States with state coding problem Total no. of states is 24 but only 16 binary codes Rin Ain Decoupled latch controller Aout Rout STG spec: State graph:
25
Logic synthesis (STGs & Petrify) # EQN file for model decoupled-latch # Estimated area = 16.00 [Rout] = Aout' Rout + csc2; [Ain] = csc0; [csc0] = Aout' csc1' csc2' + Rin csc0; [csc1] = csc1 (csc0 + Rin') + Rout; [csc2] = csc1' (csc2 + csc0); # Set/reset pins: reset(Rout) set(csc1) Output from Petrify: csc0, csc1, csc2 – state encoding signals
26
Logic synthesis (STGs & Petrify) Resulting state graph (with csc signals): has 59 states and no coding conflicts (coding space is 2^7=128)
27
Logic synthesis (STGs & Petrify) Rin Ain Decoupled latch controller R2out/A2out R1out/A1out What if the system gets bigger?
28
# EQN file for model decoupled-latch.1-2 # Estimated area = 34.00 [R1out] = A1out' R1out + csc2 csc3'; [R2out] = R2out A2out' + csc4; [Ain] = csc0; [csc0] = A1out' A2out' csc1 csc2 csc3 csc4' + csc0 (csc1 csc4' + csc3 + Rin); [csc1] = R2out' (csc0' Rin + csc1); [csc2] = R1out' csc2 + csc3; [csc3] = csc0' (R1out' Rin csc2' + csc3); [csc4] = csc1 (csc4 + csc0); # Set/reset pins: reset(R1out) reset(R2out) reset(csc1) reset(csc2) reset(csc3) Logic synthesis (STGs & Petrify) Logic is asymmetric Delay grows out of proportion
29
Pros and cons of Flow 2 Pros: –Guarantees global optimality –Allows HDL to STG translation for ‘more pragmatic’ front-end (e.g. Blunno&Lavagno: Verilog to STG translation) and allows model- checking together with synthesis (so makes design provably correct) Cons: –State space size is a problem –Solving state-coding in a ‘good way’ is a problem
30
Main talk outline Motivation: design flow problems Backend language: Petri nets? New design flow: two-level control Direct mapping of PNs: event-based and level-based Direct mapping of STGs Case studies Conclusion
31
Towards new design flow How to combine advantages of both approaches? –Use them at different levels –Introduce intermediate behavioural level - labelled Petri nets (LPNs) –Perform semantical (based on execution order) translation of HDLs to LPNs –Use direct mapping for large LPNs –Decompose control and use STGs and logic synthesis at the low level (apply structural methods – e.g. Pastor at al.)
32
New Design Flow HDL: Standard (VHDL, Verilog) or Async design specific (Balsa) LPNs CDFG and LPN Compilation (semantic) Synthesisable LPN DC netlist Verification (coherence etc.) Optimisation (scheduling, dummies, fanin/fanout) Direct mapping
33
New Design Flow: possible sources of useful translation techniques HDL to PN translation: –VHDL to Extended Timed PNs (Linkoping) –VHDL to Control Data Flow Graphs (Lyngby) –Verilog to PN/STGs (Torino) –B(PN^2) to M-net translation (PEP tool) –… But none of them caters for a good PN structure needed for direct mapping from PNs to circuits (mostly to work via state space exploration, esp. in model- checking)
34
Design flow Control/data splitting Hierarchical control spec HDL specification Datapath spec LPN to circuit synthesis (direct mapping) HDL implementation Data logic synthesis Control&data interfacing Hierarchical control logic STG to circuit synthesis (Petrify & direct mapping) LPN STG Data logic Our present focus
35
HDL syntax directed mapping do if (X=A) then par OP1; OP2; rap else seq OP3; OP4; qes if od do par seq OP2 OP1 OP3 OP4 (X=A) if then else Control flow is transferred between HDL syntax constructs rather than between operations
36
HDL-to-LPN (high-level control) do if (X=A) then par OP1; OP2; rap else seq OP3; OP4; qes if od (X=A) (X<>A) OP1 OP2 OP3 OP4 dum High level control: Labelled Petri net (LPN)
37
Labelled PNs and Datapath LPN is defined as (PN,OP,L) underlying PN (P,T,F,M0), operation alphabet OP and labelling function: L:T->OP Operations (typically assignments, comparisons, calls to macros such as arbiters) in OP are defined as signatures on the elements of datapath (e.g. lists of input/output registers R and operation units involved in the operation U), e.g. op(i)=
38
Labelled PNs and Datapath Operations in OP are associated with req,ack (two-way, for assignments, or multi-way for comparisons and arbitration) handshakes – hence opr(i) and opa(i) signals Interface with actual req and ack signals associated with registers in R and op- units in U is either synthesized via Petrify (low-level control) or hardwired using MUXes and DEMUXes
39
Low-level control Data path 1 OP1r OP3r OP1a OP4r OP3a OP4a req1 ack1 Data path 2 OP2r OP2a ack2req2 OP1r OP1a OP3r OP3a OP4r OP4a req1 ack1 dum OP2r+ req2+ ack2+ OP2a+ req2- OP2r- OP2a+ ack2- Low level control: Signal Transition Graphs (STG)
40
Direct mapping of LPN to David cells (X=A) (X<>A) OP1 OP2 OP3 OP4 dum DC1 DC2 DC3 DC4 DC5 High-level control logic directly mapped from LPN Basic David cell (DC)
41
Direct mapping cell library LPN-to-DC mapping elements linear join fork controlled choice arbitrated choice merge input test Gate-level DC implementations
42
Main talk outline Motivation: design flow problems Backend language: Petri nets? New design flow: two-level control Direct mapping of PNs: event-based and level-based Direct mapping of STGs Case studies Conclusion
43
Direct mapping vs logic synthesis: conceptual difference Logic synthesis uses a Petri net (STG) as a generator of an encoded state-space. The circuit structure is not directly related to the net structure (though some correspondence exists and is exploited in structural logic synthesis methods, Pastor et al.) Direct mapping considers a PN literally, as a prototype of the circuit structure (cf. Varshavsky’s use of term ‘modelling circuit’)
44
Direct mapping vs logic synthesis Direct mapping has linear computational complexity but can be area inefficient (inherent one-hot encoding) Logic synthesis has problems with state space explosion, and with recognition of repetitive and regular structures (log-based encoding approach)
45
Direct Translation of Petri Nets Previous work dates back to 70s Synthesis into event-based (two-phase) circuits –S.Patil, F.Furtek (MIT) Synthesis into level-based (four-phase) circuits –R. David (’69, translation of FSM graphs to CUSA cells) –L. Hollaar (’82, translation from parallel flowcharts) –V. Varshavsky et al. (’90,’96, translation from PN into an interconnection of David Cells) See various examples of synthesis in both styles in Yakovlev&Koelmans (Petri net lectures, LNCS, 1998)
46
Patil’s set of modules Petri net fragment: Circuit equivalent: wire place marked place inverter joinC C-element merge XOR fork fan-out shared (conflict) place S s switch Effectively RGD arbiter
47
Example Buf(1) P(ut) pr pa gr ga G(et) passive h/s active h/s Two phase (NRZ) protocol: pr pa ga gr Two-phase implementation (using Patil’s elements): C Environment
48
Example Buf(1) P(ut) pr pa gr ga G(et) passive h/s active h/s Two phase (NRZ) protocol: pr pa ga gr Two-phase implementation (using Patil’s elements): C Environment
49
Example Buf(1) P(ut) pr pa gr ga G(et) passive h/s active h/s Two phase (NRZ) protocol: pr pa ga gr Two-phase implementation (using Patil’s elements): Environment C pr pa gr ga Environment
50
Other useful elements Select: Call: Toggle:
51
Direct synthesis example (modulo-k Up-Down counter) Mod-k counter LPN Environment LPN
52
Direct synthesis example (modulo-k Up-Down counter) Decomposition (structural view)
53
Direct synthesis example (modulo-k Up-Down counter) structure LPN
54
Direct synthesis example (modulo-k Up-Down counter) structure LPN
55
Direct synthesis example (modulo-k Up-Down counter)
56
Synthesis into level-based circuits David’s method for asynchronous Finite State Machines Hollaar’s extensions to parallel flow charts Varshavsky’s method for 1-safe persistent Petri nets: based on associating places with latches; the method works for closed (autonomous) circuits with no input choice, arbitration and inputs can only be part of handshakes activated by control logic
57
David’s original approach a b c d x1x1 x’ 2 x’ 1 x2x2 yaya ycyc ybyb x’ 2 x1x1 Fragment of a State Machine flow graph CUSA element for storing state b
58
Hollaar’s approach K L A B K N M L N Fragment of a flow-chart (allows parallelism) One-hot circuit cell A B (0) (1) 1 1 (0) (1) M
59
Hollaar’s approach K L M A B K N M L N Fragment of flow-chart One-hot circuit cell A B 1 1 0 (1) (0) (1) 0 1
60
Hollaar’s approach K L M A B K N M L N Fragment of flow-chart One-hot circuit cell A B 0 1 1 (1) (0) (1) 0 1
61
Varshavsky’s Approach p1p2 p1 p2 (1)(0) (1) 1* (1) Operation Controlled To Operation
62
Varshavsky’s Approach p1p2 p1 p2 (1)(0) 0->11->0 (1) To Operation
63
Varshavsky’s Approach p1p2 p1 p2 1->0 0->1 1->0 1->0->1 1* To Operation
64
Varshavsky’s Approach This method associates places with latches (flip- flops) – so the state memory (marking) of PN is directly mimicked in the circuit’s state memory Transitions are associated with controlled actions (e.g. activations of data path units or lower level control blocks – by using handshake protocols) Modelling discrepancy (be careful!): –in Petri nets removal of a token from pre-places and adding tokens in post-places is instantaneous (i.e. no intermediate states) –in circuits the “move of a token” has a duration and there is an intermediate state
65
Direct mapping of LPNs and STGs LPN-to-DC mapping elements linear join fork controlled choice arbitrated choice merge input test Gate-level DC implementations
66
Fast David cell Fast DC Timing assumptions GasP section The same with negative gates
67
Implementability condition for LPNs Autonomous control interpretation: each transition is associated with a handshake to the controlled part (datapath) or a dummy Implementability: Any 1-safe labelled PN with autonomous control semantics of transitions with no loops of less than three transitions can be directly mapped into a speed-implemented control circuit whose behaviour is equivalent (bisimilar) to the PN Consistency of labelling: transitions labelled by reference to the same datapath blocks must be conistent with the local semantics of those blocks (e.g. must not be mutually concurrent)
68
Main talk outline Motivation: design flow problems Backend language: Petri nets? New design flow: two-level control Direct mapping of PNs: event-based and level-based Direct mapping of STGs Case studies Conclusion
69
Direct mapping of STGs Rin Ain Decoupled latch controller Aout Rout STG specification: Mapped circuit: RoutAout Here all signal transitions are associated with handshakes and handshake compression must be done before mapping
70
What about direct mapping of arbitrary STGs Associate with each output transition a latch (one per signal x), with each input some sampling logic and set (for x+) or reset (for x-) handshake - pull for inputs, and push for outputs. inp1+inp2+ out1+ out2+ inp1- out1- inp1+ inp1- inp1 Input sample pull out1 Output latch push out1+ out1-
71
What about direct mapping of arbitrary STGs inp1+inp2+ out1+ out2+ inp1- out1- inp2+ inp2- inp2 Input sample pull out1 Output latch push out1+ out1- DC1DC3 inp2+ out1+ Problem: long delay between input event and output response mux & demux logic
72
What about direct mapping of arbitrary STGs Another problem for direct mapping: STGs may contain self-loops (or read arcs) for testing ‘level-oriented’ inputs and outputs: x+x- x=1 y+
73
Low latency approach Can we connect inputs directly to the control structure to minimise the i/o latency? DC1DC3 inp2 out1+
74
The problem of mapping STGs Given: an 1-safe STG Target: netlist of David cells, input wires and output flip-flops Procedure: use direct mapping of elements of underlying PN into elements of the netlist Problem: need for intermediate form of STG, where I/O is connected to control by read arcs only
75
Device environment interface
76
tracker Output latch Input wire To derive circuit implementation we only use tracker and i/o subnets
77
Direct mapping
78
Optimisation Removing places from the tracker. Latency reduction effect if the place between an input and the following output is removed. Coding conflicts are possible. Places perform state separation. Tracker
79
Optimisation: coding conflicts Input signal a changes twice between p1 and p5. Keeping p3 solves the conflict and preserves low latency.
80
Irreducible input coding conflicts Certain input labelling cannot be implemented in a speed-independent way, without timing assumptions (e.g. input changes are slower than David cell operation) or without changing the I/O interface (introduce new outputs response to the environment) inp+inp-out+ inp=0 Inseparable states (for the tracker)
81
Implementability of STGs Sufficient condition: –an STG with a 1-safe underlying PN with consistent signal transition labelling (transitions of the same signal are in precedence and +/- alternate) and monotonic input bursts (for each connected input-labelled subgraph each signal changes only once) N&S condition is an open problem!
82
Main talk outline Motivation: design flow problems Backend language: Petri nets? New design flow: two-level control Direct mapping of PNs: event-based and level-based Direct mapping of STGs Case studies Conclusion
83
Communication channel example A duplex delay-insensitive channel for low power and pin-efficiency proposed by Steve Furber (AINT’2002) Relatively simple data path (with handshake access via push and pull protocols) Sophisticated control (involves arbitration, choice and concurrency) Natural two-level control decomposition Requires low-latency (existing STG and BM solutions produce too heavy logic)
84
Channel Structure MasterSlave N-of-M code N-of-M codes: dual-rail, 3-of-6,2-of-7 Key Protocol Symbols (e.g. in dual rail): Start (01), Ack (10), Slave-Ack (11), Data (01 or 10)
85
Protocol Specification Master Slave Protocol Automaton The protocol can be defined on an imaginary Protocol Automaton receiving symbols from both sides (it will hide all activity internal to Master and Slave)
86
Protocol Specification Master Slave Protocol Automaton
87
Controller Overview push pull High Level control Data path and low level control push
88
Low-level logic Tx controller Sending interface
89
LPN model for high level control (master) Calls to local arbiters Slave-Ack pull Three-way pulls Three-way pushes pushes pulls dummies inserted for direct DC mapping
90
High level control (master) mapped directly from LPN arbiter1 arbiter2 push pull dummies pull push pull
91
Towards synthesis for higher performance dummy pull push pull Is the dummy in the right place? It is on the cycle of (output) push and (input) pull: pull->dummy->push- >pull-dummy->push -> …
92
Towards synthesis for higher performance pull push Critical path Non-critical path Synthesis rule: Don’t insert dummies on critical paths dummy
93
Synthesis for lower I/O latency LPN level pull logic Environment (channel) pullpush internal actions pull High-level control … … push logic input output input … pull logic Low latency shortcut
94
Channel Cycle Time Controller Implementation Simplex modeDuplex mode Direct mapping from LPN 7.6 ns8.3 ns Logic synthesis from STG 12.7 ns16.5 ns These results were obtained for 0.6 micro CMOS Further improvement can be achieved by more use of low latency techniques (at the gate level) and introducing aggressive relative timing, in David cells and low level logic
95
Case study: VME bus controller
98
Circuit generated by logic synthesis (Petrify): Smaller, though comparable in size Transistor stacks are larger
99
Case study: VME bus controller Latency comparison between our method and Petrify solution. TransitionPetrifyFast DC ldtack+ -> d+0.35ns0.29ns ldtack+ -> d-0.20ns0.16ns d+ -> dtack+0.27ns dsw- -> dtack-0.42ns0.44ns ldtack- -> lds+ (rd)0.38ns0.21ns ldtack+ -> lds+ (wr)0.38ns0.29ns dsw- -> lds-0.33ns0.26ns Number of transistors3256
100
Conclusion Hierarchical (eg. Protocol) controller synthesis can go via back-end LPN/STG models Direct mapping from LPNs/STGs yields fast circuits that are easy to analyse and test Translation from PNs to David cell netlists implemented in tool pn2dc Translation from VHDL specs to LPNs and STGs implemented in tools fsm2lpn and fsm2stg Further work needed on: Formal link between HDLs and PNs (semantics and equivalence), leading to better synthesis of PNs from HDLs Optimisation techniques at LPN/STG and circuit levels See our papers in Async’02 and ISCAS’02
101
Open problems Formally characterise properties of PNs that make them good for circuit design, like optimality wrt I/O response time, worst/average case cycle time, positions of silent (dummy) events Control (place/transition nets)+datapath separate versus use of high-level nets for both Testing via Petri nest specification (faults in PNs: stuck tokens, transitions …)
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.