Introduction to Real Time Systems

Slides:



Advertisements
Similar presentations
©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 13Slide 1 Chapter 13 Real-time Software Design.
Advertisements

Introduction Frank Drews
© Alan Burns and Andy Wellings, 2001 Real-Time Systems and Programming Languages n Buy Real-Time Systems: Ada 95, Real-Time Java and Real-Time POSIX by.
EE5900 Advanced Embedded System For Smart Infrastructure
Chapter 20- Embedded Systems
INSE - Lectures 19 & 20 SE for Real-Time & SE for Concurrency  Really these are two topics – but rather tangled together.
©Ian Sommerville 2004Software Engineering, 7th edition. Chapter 15 Slide 1 Real-time Systems 2.
© Andy Wellings, 2004 Concurrent and Real-Time Programming in Java  Electronic copies of course foils available via 
REAL-TIME SOFTWARE SYSTEMS DEVELOPMENT Instructor: Dr. Hany H. Ammar Dept. of Computer Science and Electrical Engineering, WVU.
Real-Time Systems and Programming Languages
Real-Time Kernels and Operating Systems. Operating System: Software that coordinates multiple tasks in processor, including peripheral interfacing Types.
Real-Time Systems – The big Picture
CprE 458/558: Real-Time Systems
Real-Time Operating System Chapter – 8 Embedded System: An integrated approach.
1 Chapter 13 Embedded Systems Embedded Systems Characteristics of Embedded Operating Systems.
Introduction to Embedded Systems Resource Management in (Embedded) Real-Time Systems Lecture 17.
EMBEDDED SOFTWARE Team victorious Team Victorious.
©Ian Sommerville 2004Software Engineering, 7th edition. Chapter 15 Slide 1 Real-time Systems 1.
BEH30802 :: REAL-TIME EMBEDDED SYSTEM
1 Embedded Systems Development. 2 Topics covered  Embedded systems design  Architectural patterns  Timing analysis  Real-time operating systems.
Real-Time Software Design Yonsei University 2 nd Semester, 2014 Sanghyun Park.
REAL-TIME SOFTWARE SYSTEMS DEVELOPMENT Instructor: Dr. Hany H. Ammar Dept. of Computer Science and Electrical Engineering, WVU.
Real Time Process Control (Introduction)
Real Time Systems Design
Introduction to Real Time Systems Akos Ledeczi EECE 354, Fall 2010 Vanderbilt University.
 Dr. Syed Noman Hasany 1.  Review of known methodologies  Analysis of software requirements  Real-time software  Software cost, quality, testing.
1. Introduction 1.1 Background 1.2 Real-time applications 1.3 Misconceptions 1.4 Issues in real-time computing 1.5 Structure of a real-time system.
1 소프트웨어공학 강좌 Chap 11. Real-time software Design - Designing embedded software systems whose behaviour is subject to time constraints -
CS4730 Real-Time Systems and Modeling Fall 2010 José M. Garrido Department of Computer Science & Information Systems Kennesaw State University.
Recall: Three I/O Methods Synchronous: Wait for I/O operation to complete. Asynchronous: Post I/O request and switch to other work. DMA (Direct Memory.
© Oxford University Press 2011 DISTRIBUTED COMPUTING Sunita Mahajan Sunita Mahajan, Principal, Institute of Computer Science, MET League of Colleges, Mumbai.
EEL Software development for real-time engineering systems.
Scheduling policies for real- time embedded systems.
Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Patricia Roy Manatee Community.
Multiprocessor and Real-Time Scheduling Chapter 10.
Chapter 101 Multiprocessor and Real- Time Scheduling Chapter 10.
Real-Time Systems Mark Stanovich. Introduction System with timing constraints (e.g., deadlines) What makes a real-time system different? – Meeting timing.
Reference: Ian Sommerville, Chap 15  Systems which monitor and control their environment.  Sometimes associated with hardware devices ◦ Sensors: Collect.
Slide 1 Chapter 11 Real –time Software Designs. Slide 2 Real-time systems l Systems which monitor and control their environment l Inevitably associated.
REAL-TIME SOFTWARE SYSTEMS DEVELOPMENT Instructor: Dr. Hany H. Ammar Dept. of Computer Science and Electrical Engineering, WVU.
2.5 Scheduling Given a multiprogramming system. Given a multiprogramming system. Many times when more than 1 process is waiting for the CPU (in the ready.
©Ian Sommerville, Robin Abraham 2004CS 361, Summer 2004 Slide 1 Real-time Software Design.
Real-time Software Design King Saud University College of Computer and Information Sciences Department of Computer Science Dr. S. HAMMAMI.
CS4730 Real-Time Systems and Modeling Fall 2010 José M. Garrido Department of Computer Science & Information Systems Kennesaw State University.
2.5 Scheduling. Given a multiprogramming system, there are many times when more than 1 process is waiting for the CPU (in the ready queue). Given a multiprogramming.
For a good summary, visit:
Embedded Computer - Definition When a microcomputer is part of a larger product, it is said to be an embedded computer. The embedded computer retrieves.
CS4315A. Berrached:CMS:UHD1 Introduction to Operating Systems Chapter 1.
1.  System Characteristics  Features of Real-Time Systems  Implementing Real-Time Operating Systems  Real-Time CPU Scheduling  An Example: VxWorks5.x.
Real-time System Definition A real-time system is a software system where the correct functioning of the system depends on the results produced by the.
Unit - I Real Time Operating System. Content : Operating System Concepts Real-Time Tasks Real-Time Systems Types of Real-Time Tasks Real-Time Operating.
Embedded System Design and Development Introduction to Embedded System.
©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 10Slide 1 Chapter 5:Architectural Design l Establishing the overall structure of a software.
CONCEPTS OF REAL-TIME OPERATING SYSTEM. OBJECTIVE  To Understand Why we need OS?  To identify Types of OS  To Define Real - Time Systems  To Classify.
Real-Time Operating Systems RTOS For Embedded systems.
Embedded System Scheduling
Real-time Software Design
Real-time Software Design
Real-time Software Design
REAL-TIME OPERATING SYSTEMS
Chapter 19: Real-Time Systems
Introduction Frank Drews
Chapter 2 Scheduling.
Real-time Software Design
Introduction to Realtime Systems (& Embedded Systems)
Internet-of-Things (IoT)
Real-time Software Design
Multiprocessor and Real-Time Scheduling
Chapter 19: Real-Time Systems
CS703 - Advanced Operating Systems
Presentation transcript:

Introduction to Real Time Systems Akos Ledeczi EECE 354, Fall 2015 Vanderbilt University

Disclaimer Some of the material/slides are adapted from various presentations found on the internet: Johnnie W. Baker Ian Sommerville Alan Burns and Andy Wellings Others And Prof. Kopetz’s Real Time Systems book

Embedded vs. Real Time Systems Embedded system: is a computer system that performs a limited set of specific functions. It often interacts with its environment. RTS: Correctness of the system depends not only on the logical results, but also on the time in which the results are produced. Embedded Systems Real Time Examples?

Examples Real Time Embedded: Real Time, but not Embedded: Nuclear reactor control Flight control Basically any safety critical system GPS MP3 player Mobile phone Real Time, but not Embedded: Stock trading system Skype Pandora Embedded, but not Real Time: Home temperature control Sprinkler system Washing machine, refrigerator, etc. Blood pressure meter

Characteristics of RTS Event-driven, reactive. High cost of failure. Concurrency/multiprogramming. Stand-alone/continuous operation. Reliability/fault-tolerance requirements. Predictable behavior.

Time now instant past future duration event time line digital clock tick granule

Definitions Hard real-time — systems where it is absolutely imperative that responses occur within the required deadline. E.g. Flight control systems. Soft real-time — systems where deadlines are important but which will still function correctly if deadlines are occasionally missed. E.g. Data acquisition system. Real real-time — systems which are hard real-time and which the response times are very short. E.g. Missile guidance system. Firm real-time — systems which are soft real-time but in which there is no benefit from late delivery of service. A single system may have all hard, soft and real real-time subsystems. In reality many systems will have a cost function associated with missing each deadline

Real-Time Computer System Control systems Operator Controlled Object Real-Time Computer System Man-Machine Interface Instrumentation Man-machine interface: input devices, e.g. keyboard and output devices, e.g. display Instrumentation interface: sensors and actuators that transform between physical signals and digital data Most control systems are hard real-time Deadlines are determined by the controlled object, i.e. the temporal behavior of the physical phenomenon

Control system example Example: A simple one-sensor, one-actuator control system. rk reference input r(t) A/D control-law computation uk D/A yk A/D y(t) u(t) sensor plant actuator Outside effects The system being controlled

Control systems cont’d. Pseudo-code for this system: set timer to interrupt periodically with period T; at each timer interrupt do do analog-to-digital conversion to get y; compute control output u; output u and do digital-to-analog conversion; end do T is called the sampling period. T is a key design choice. Typical range for T: seconds to milliseconds.

Reliability and Safety Reliability: probability that the system will provide the specified service for a given time period. (Also see Failure Rate or Mean Time To Failure: MTTF) Safety: reliability regarding critical failure modes Fail-safe system: if the system has a guaranteed safe state that can be reached in case of a critical failure. It is a property of the controlled object and not the computer system. Watchdog: external device that gets periodic life sign from the computer system. If it does not get it, it forces the controlled object into a safe state. Fail-operational system: no such safe state exists, so the computer system must provided (limited) functionality in case of failures to avoid a catastrophic failure. Alarm monitoring. Primary event Secondary alarms. Temporal order is very important. Alarm shower Rare events

Taxonomy of Real-Time Systems

Taxonomy of Real-Time Systems

Taxonomy of Real-Time Systems

Taxonomy: Static Task arrival times can be predicted Static (compile-time) analysis possible Allows good resource usage (low idle time for processors).

Taxonomy: Dynamic Arrival times unpredictable Static (compile-time) analysis possible only for simple cases. Processor utilization decreases dramatically. In many real systems, this is very difficult to handle. Must avoid over-simplifying assumptions e.g., assuming that all tasks are independent, when this is unlikely.

Taxonomy: Soft Real-Time Allows more slack in the implementation Timings may be suboptimal without being incorrect. Problem formulation can be much more complicated than hard real-time Two common and an uncommon way of handling non-trivial soft real-time system requirements Set somewhat loose hard timing constraints Informal design and testing Formulate as an optimization problem

Taxonomy: Hard Real-Time Creates difficult problems. Some timing constraints are inflexible Simplifies problem formulation.

Taxonomy: Periodic Each task (or group of tasks) executes repeatedly with a particular period. Allows some static analysis techniques to be used. Matches characteristics of many real problems It is possible to have tasks with deadlines smaller, equal to, or greater than their period. The later are difficult to handle (i.e., multiple concurrent task instances occur).

Periodic Single rate: Multi rate: One period in the system Simple but inflexible Used in implementing a lot of wireless sensor networks. Multi rate: Multiple periods Should be harmonics to simplify system design

Taxonomy: Aperiodic Are also called sporadic, asynchronous, or reactive. Creates a dynamic situation Bounded arrival time interval are easier to handle Unbounded arrival time intervals are impossible to handle with resource-constrained systems.

Example: Adaptive Cruise Control Demo video Control system Hard Real Time Multi-rate periodic Camera GPS Low-speed mode for rush hour traffic United States Patent 7096109

Data Acquisition and Signal-Processing Systems Examples: Video capture. Digital filtering. Video and voice compression/decompression. Radar signal processing. Response times range from a few milliseconds to a few seconds. Typically simpler than control systems

Other Real-Time Applications Real-time databases. Examples: stock market, airline reservations, etc. Transactions must complete by deadlines. Main dilemma: Transaction scheduling algorithms and real-time scheduling algorithms often have conflicting goals. Data is subject temporal consistency requirements. Multimedia. Want to process audio and video frames at steady rates. TV video rate is 30 frames/sec. HDTV is 60 frames/sec. Telephone audio is 16 Kbits/sec. CD audio is 128 Kbits/sec. Other requirements: Lip synchronization, low jitter, low end-to-end response times (if interactive).

Are All Systems Real-Time Systems? Question: Is a payroll processing system a real-time system? It has a time constraint: Print the pay checks every two weeks. Perhaps it is a real-time system in a definitional sense, but it doesn’t pay us to view it as such. We are interested in systems for which it is not a priori obvious how to meet timing constraints.

The “Window of Scarcity” Resources may be categorized as: Abundant: Virtually any system design methodology can be used to realize the timing requirements of the application. Insufficient: The application is ahead of the technology curve; no design methodology can be used to realize the timing requirements of the application. Sufficient but scarce: It is possible to realize the timing requirements of the application, but careful resource allocation is required.

Example: Interactive/Multimedia Applications Requirements (performance, scale) The interesting real-time applications are here sufficient but scarce resources Interactive Video insufficient resources High-quality Audio Network File Access abundant resources Remote Login 1980 1990 2000 Hardware resources in year X

OS or not? Hardware Operating System User Programs Hardware Including Operating System Components User Program Typical Embedded Configuration Typical OS Configuration

Foreground/Background Systems Task-level, interrupt level Critical operations must be performed at the interrupt level (not good) Response time/timing depends on the entire loop Code change affects timing Simple, low-cost systems

RTS Programming Concurrent programming Because of the need to respond to timing demands made by different stimuli/responses, the system architecture must allow for fast switching between stimulus handlers. Because of different priorities, unknown ordering and different timing requirements of different stimuli, a simple sequential loop is not usually adequate. Real-time systems are therefore usually designed as cooperating processes with a real-time kernel controlling these processes. Concurrent programming

Real Time Java? Java supports lightweight concurrency (threads and synchronized methods) and can be used for some soft real-time systems. Java is not suitable for hard RT programming but real-time versions of Java are now available that address problems such as Not possible to specify thread execution time; Uncontrollable garbage collection; Not possible to access system hardware; Etc. Real-Time Specification for Java Sun Java Real-Time System Requires a Real Time OS underneath (e.g., no Windows support)

Classification of Scheduling Algorithms All scheduling algorithms static scheduling (or offline, or clock driven) dynamic scheduling (or online, or priority driven) static-priority scheduling dynamic-priority scheduling

Scheduling strategies Non pre-emptive scheduling Once a process has been scheduled for execution, it runs to completion or until it is blocked for some reason (e.g. waiting for I/O). Pre-emptive scheduling The execution of an executing processes may be stopped if a higher priority process requires service. Scheduling algorithms Round-robin; Rate monotonic; Shortest deadline first; Etc.

Real-time operating systems Real-time operating systems are specialised operating systems which manage the processes in the RTS. Responsible for process management and resource (processor and memory) allocation. Do not normally include facilities such as file management. 14

Operating system components Real-time clock Provides information for process scheduling. Interrupt handler Manages aperiodic requests for service. Scheduler Chooses the next process to be run. Resource manager Allocates memory and processor resources. Dispatcher Starts process execution.

Interrupt servicing Control is transferred automatically to a pre-determined memory location. This location contains an instruction to jump to an interrupt service routine. Further interrupts are disabled, the interrupt serviced and control returned to the interrupted process. Interrupt service routines MUST be short, simple and fast.

What’s Important in Real-Time Metrics for real-time systems differ from that for time-sharing systems. schedulability is the ability of tasks to meet all hard deadlines latency is the worst-case system response time to events stability in overload means the system meets critical deadlines even if all deadlines cannot be met Time-Sharing Systems Real-Time Systems Capacity High throughput Schedulability Responsiveness Fast average response Ensured worst-case response Overload Fairness Stability