+ All Categories
Home > Documents > Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter...

Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter...

Date post: 22-Dec-2015
Category:
Upload: piers-gilbert
View: 216 times
Download: 0 times
Share this document with a friend
Popular Tags:
35
fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte, Gesine Marwedel, 2003 2008/11/11
Transcript
Page 1: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

fakultät für informatikinformatik 12

technische universität dortmund

Modeling levels

Peter MarwedelTU Dortmund,Informatik 12

Gra

phic

s: ©

Ale

xand

ra N

olte

, Ges

ine

Mar

wed

el, 2

003

2008/11/11

Peter Marwedel
Still lecture 8.
Page 2: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 2 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Levels of hardware modeling

Possible set of levels (others exist)

System level

Algorithmic level

Instruction set level

Register-transfer level (RTL)

Gate-level models

Switch-level models

Circuit-level models

Device-level models

Layout models

Process and device models

Page 3: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 3 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

System level

Term not clearly defined.

Here: denotes the entire embedded system,system into which information processing is embedded, and possibly also the environment.

Models may include mechanics + information processing.May be difficult to find appropriate simulators.Solutions: VHDL-AMS, SystemC or MATLAB.MATLAB+VHDL-AMS support partial differential equations.

Challenge to model information processing parts of the system such that the simulation model can be used for the synthesis of the embedded system.

Peter Marwedel
Need to introduce transaction level
Page 4: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 4 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Algorithmic level

Simulating the algorithms that we intend to use within the embedded system.

No reference is made to processors or instruction sets.

Data types may still allow a higher precision than the final implementation.

If data types have been selected such that every bit corresponds to exactly one bit in the final implementation, the model is said to be bit-true. non-bit-true bit-true should be done with tool support.

Single process or sets of cooperating processes.

Page 5: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 5 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Algorithmic level: Example: -MPEG-4 full motion search -

for (z=0; z<20; z++) for (x=0; x<36; x++) {x1=4*x; for (y=0; y<49; y++) {y1=4*y; for (k=0; k<9; k++) {x2=x1+k-4; for (l=0; l<9; ) {y2=y1+l-4; for (i=0; i<4; i++) {x3=x1+i; x4=x2+i; for (j=0; j<4;j++) {y3=y1+j; y4=y2+j; if (x3<0 || 35<x3||y3<0||48<y3) then_block_1; else else_block_1; if (x4<0|| 35<x4||y4<0||48<y4) then_block_2; else else_block_2;}}}}}}

Page 6: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 6 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Instruction level

Algorithms already compiled for the instruction set.Model allows counting the executed number of instructions.

Variations:

Simulation only of the effect of instructions

Transaction-level modeling: each read/write is onetransaction, instead of a set of signal assignments

Cycle-true simulations: exact number of cycles

Bit-true simulations: simulations using exactly the correct number of bits

Page 7: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 7 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Instruction level: example

Assembler (MIPS) Simulated semantics

and $1,$2,$3 Reg[1]:=Reg[2] Reg[3]

or $1,$2,$3 Reg[1]:=Reg[2] Reg[3]

andi $1,$2,100 Reg[1]:=Reg[2] 100

sll $1,$2,10 Reg[1]:=Reg[2] << 10

srl $1,$2,10 Reg[1]:=Reg[2] >> 10

Page 8: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 8 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Register transfer level (RTL)

Modelling of all components at the register-transfer level, including

arithmetic/logic units (ALUs),

registers,

memories,

muxes and

decoders.

Models at this level are always cycle-true.

Automatic synthesis from such models is not a major challenge.

Page 9: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 9 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Register transfer level: example (MIPS)

Controller

BP

C

Inst

ruct

ion

reg

iste

r IR

Mem

ory

Spe

iche

r

alu_

co

ntro

l

T

sign_extend

<<

2

4

*

AL

U

Reg

0

0

0

0

0

01

1

1

1

1

1

2

2

3

§

31:26

25:21

20:16

25:0

15:0

15:11

i2

a2

a1

i3

a

3

a

2

a

1

o2

o1

PC

So

urc

e

Ta

rge

tWrit

e

AL

UO

p

AL

US

elA

AL

US

elB

Re

gW

rite

Re

gD

est

Me

mT

oR

eg

IRW

rite

Me

mR

ea

d

Me

mW

rite

PC

Writ

e

PC

Wr it

eC

IorD

*§ 31: 28

"00“

Page 10: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 10 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Gate-level models

Models contain gates as the basic components.

Information about signal transition probabilities can be used for power estimations.

Delay calculations can be more precise than for RTL. Typically no information about the length of wires(still estimates).

Term sometimes also denotes Boolean functions(No physical gates; only considering the behavior of the gates).Such models should be called “Boolean function models”.

Page 11: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 11 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Gate-level models: Example

source: http://geda.seul.org/screenshots/screenshot-schem2.png

Page 12: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 12 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Switch-level models

Switch level models use switches (transistors) as their basic components.

Switch level models use digital values models.

In contrast to gate-level models, switch level models are capable of reflecting bidirectional transfer of information.

Page 13: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 13 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Switch level model: example

Source: http://vada1.skku.ac.kr/ClassInfo/ic/vlsicad/chap-10.pdf

Page 14: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 14 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Circuit level models: Example

Models circuit theory. Its components (current and voltage sources, resistors, capacitances, inductances and possibly macro-models of semiconductors) form the basis of simulations at this level.

Simulations involve partial differential equations. Linear if and only if the behavior of semiconductors is linearized.

Simulations involve partial differential equations. Linear if and only if the behavior of semiconductors is linearized.

Ideal MOSFET

Tran-sistor model

Page 15: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 15 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Circuit level models: SPICE

The most frequently used simulator at this level is SPICE [Vladimirescu, 1987] and its variants.

Example:

Page 16: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 16 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Circuit level models:sample simulation results

Page 17: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 17 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Device level

Simulation of a single device(such as a transistor).Example (SPICE-simulation [IMEC]):

Measured and simulated currents

Page 18: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 18 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Layout models

Reflect the actual circuit layout,

include geometric information,

cannot be simulated directly:behavior can be deduced by correlating the layout model with a behavioral description at a higher level or by extracting circuits from the layout.

Length of wires and capacitances frequently extracted from the layout,back-annotated to descriptions at higher levels(more precision for delay and power estimations).

Page 19: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 19 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Layout models: Example

din

powlo

powhi

dout

© Mosis (http://www. mosis.org/Technical/Designsupport/polyflowC.html);Tool: Cadence

Page 20: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 20 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Process models

Model of fabrication process; Example [IMEC]:Doping as a function of the distance from the surface

Simulated

Measured

Movie (German)

Page 21: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 21 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Levels covered by the different languages

Verilog VHDL

SystemVerilog

Verae

SugarJeda

SystemC

Matlab

Transistors

Gates

RTL

Test bench

FunctionalVerification

Behavior

HW/SW

Architecture

Requirements

Verilog VHDL

SystemVerilog

matlab

Verae

SugarJeda

Peter Marwedel
Mit Film (Hagen) starten. Start of lecture 9
Page 22: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

fakultät für informatikinformatik 12

technische universität dortmund

Comparison of languages

Peter MarwedelTU Dortmund,Informatik 12

Gra

phic

s: ©

Ale

xand

ra N

olte

, Ges

ine

Mar

wed

el, 2

003

2008/11/1

Page 23: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 23 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Comparison of languages demonstrated

Communication/local computations

Shared memory

Message passingSynchronous | Asynchronous

Communicating finite state machines

StateCharts SDL

Data flow model

Not useful Simulink Kahn process networks, SDF

Computational graphs

Sequence dia-gram, Petri nets

Von Neumann model

C, C++, Java

C, C++, Java with librariesCSP, ADA |

Discrete event (DE) model

VHDL, … Only experimental systems, e.g. distributed DE in Ptolemy

Page 24: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 24 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Models of computation in Ptolemy

1. Finite state machines

2. Communicating sequential processes

3. Discrete event model

4. Distributed discrete event model

5. Process networks, including Kahn process networks

6. Synchronous dataflow (SDF)

7. Continuous time

8. Synchronous/reactive models

Page 25: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 25 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Properties of processes (1)

Number of processesstatic;dynamic (dynamically changed hardware architecture?)

Nesting:• Nested declaration of processes

process { process { process {}}}

• or all declared at the same levelprocess { … }process { … }process { … }

Page 26: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 26 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Properties of processes (2)

Different techniques for process creation• Elaboration in the source (c.f. ADA, below)declare process P1 …

• explicit fork and join (c.f. Unix)id = fork();

• process creation callsid = create_process(P1);

E.g.: StateCharts comprises a static number of processes, nested declaration of processes, and process creation through elaboration in the source.

Page 27: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 27 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Language Comparison

Page 28: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 28 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

How to cope with language problemsin practice?

Mixed approaches:Mixed approaches:

Page 29: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

fakultät für informatikinformatik 12

technische universität dortmund

Dependability requirements

Peter MarwedelTU Dortmund,Informatik 12

Gra

phic

s: ©

Ale

xand

ra N

olte

, Ges

ine

Mar

wed

el, 2

003

2008/11/1

Peter Marwedel
Still lecture 8.
Page 30: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 30 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Dependability requirements

Allowed failures may be in the order of 1 failure per 10 9 h.

~ 1000 times less than typical failure rates of chips.

For safety-critical systems, the system as a whole must be more dependable than any of its parts.

fault-tolerance mechanisms must be used.

Low acceptable failure rate systems not 100% testable.

Safety must be shown by a combination of testing and reasoning. Abstraction must be used to make the system explainable using a hierarchical set of behavioral models. Design faults and human failures must be taken into account.

Page 31: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 31 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Kopetz‘s 12 design principles (1-3)

1. Safety considerations may have to be used as the important part of the specification, driving the entire design process.

2. Precise specifications of design hypotheses must be made right at the beginning. These include expected failures and their probability.

3. Fault containment regions (FCRs) must be considered. Faults in one FCR should not affect other FCRs.

Passenger compart-ment stable

Safety-critical & non-safety critical electronics

Page 32: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 32 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Kopetz‘s 12 design principles (4-6)

4. A consistent notion of time and state must be established. Otherwise, it will be impossible to differentiate between original and follow-up errors.

5. Well-defined interfaces have to hide the internals of components.

6. It must be ensured that components fail independently.

2 independentbrake hose systems

t

source

Follow-up

Page 33: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 33 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Kopetz‘s 12 design principles (7-9)

7. Components should consider themselves to be correct unless two or more other components pretend the contrary to be true (principle of self-confidence).

8. Fault tolerance mechanisms must be designed such that they do not create any additional difficulty in explaining the behavior of the system. Fault tolerance mechanisms should be decoupled from the regular function.

9. The system must be designed for diagnosis. For example, it has to be possible to identifying existing (but masked) errors.

one of the systems sufficient for braking

Page 34: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 34 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Kopetz‘s 12 design principles (10)

10.The man-machine interface must be intuitive and forgiving. Safety should be maintained despite mistakes made by humans airbag

Page 35: Fakultät für informatik informatik 12 technische universität dortmund Modeling levels Peter Marwedel TU Dortmund, Informatik 12 Graphics: © Alexandra Nolte,

- 35 -technische universitätdortmund

fakultät für informatik

p. marwedel, informatik 12, 2008

Kopetz‘s 12 design principles (11-12)

11.Every anomaly should be recorded. These anomalies may be unobservable at the regular interface level. Recording to involve internal effects, otherwise they may be masked by fault-tolerance mechanisms.

12.Provide a never-give up strategy.ES may have to provide uninterrupted service. Going offline is unacceptable.


Recommended