SlideShare a Scribd company logo
1 of 34
Download to read offline
RTOS
Design & Implementation
Introduction
 A variant of OS that operates in
constrained environment in which
computer memory and processing
power is limited. Moreover they often
need to provide their services in
definite amount of time.
 Hard, Soft & Firm RTOS
 Example RTOS: VxWorks, pSOS,
Nucleus, RTLinux…
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
Structure of a RTOS
Custom-Hardware
RTOS-kernel
Applications
BSP
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
Components of RTOS
 The most important
component of RTOS is its
kernel (Monolithic & Microkernel).
 BSP or Board Support
Package makes an RTOS
target-specific (It’s a processor specific
code onto (processor) which we like to have our
RTOS running).
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: Tasks(1)
 A task is basic unit of
execution in RTOS.
 RTOS scheduler needs to be
deterministic ~ O(1) or O(n).
Scheduling policies that are
available in a RTOS are:
Clock driven
Priority driven (RMS & EDF)
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: Tasks(2)
.
.
TID
SAVED_TASK_STATE
Resource 1 (signals)
Resource 2 (events)
Resource 3 (shared memory)
System Variables
Task Control Block
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: Tasks(3)
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: Tasks(4)
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: Tasks(5)
RMS, EDF
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: Tasks(6)
 XXX_CreateTask
 XXX_AddtoProcessQueue
 XXX_ChangePriority
 XXX_KillTask
 XXX_CreateTaskQueues
…
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: Memory(1)
 Memory is premium in
environments where RTOS
work.
 Supports Virtual Memory
(MMU) and Memory
Protection (MPU) models.
 User space and Kernel space
memory.
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: Memory(2)
Virtual Memory Concept
Physical Address Virtual Address
M
.
.
.
.
.
PHY1 VIRT1
PHY2 VIRT2
PHY3 VIRT3
PHY4 VIRT4
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: Memory(3)
Virtual Memory Concept
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: Memory(4)
Participation of User space programs with kernel for
services and as a central pool of memory for
specialized applications.
Kernel Space Memory
User Space memory
P1 P2
M1 M2
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: Memory(5)
 XXX_Kmap
 XXX_PassToUserSpace
 XXX_Mmap
 XXX_PurgeMemory/Kfree
 XXX_Kmalloc
…
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: Timer(1)
 Timer is software entity
derived from hardware clock.
 Timer provides mechanism to
introduce task-delays and/or
to help synchronize and
provide time off-course.
 Watchdog Timers,
Programmable Timers
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: Timer(2)
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: Timer(3)
 Based upon these hardware-
programmable timers, RTOS
kernel can use to create
software structures of timers
associated with tasks.
 Scheduling, Synchronization,
time-stamping…
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: Timer(4)
 XXX_SetTimer
 XXX_AddtoTimerQueue
 XXX_isExpired
 XXX_RunAtExpiry
 XXX_PurgeTimerQueue
…
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: I/O(1)
 I/O is slow as compared to
CPU.
 I/O: Interrupt-driven, Polling,
DMA.
 I/O map: Memory Space & IO
Space.
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: I/O(2)
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: I/O(3)
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: I/O(4)
DMA driven I/O
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL: I/O(5)
 XXX_IORead/IOWrite
 XXX_IOMap/Unmap
 XXX_BindInterrupt
…
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL:
Inter-process Communication(1)
 Most of the time tasks cannot
run in isolation. They require
to talk to each other.
 Synchronization, Protection
and Sharing are goals of IPC.
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL:
Inter-process Communication(2)
 Semaphores
(Binary, Mutual)
 Message Queues
 Pipes/Named
Pipes
 Shared Memory
 Signals/Slots
 Mail slots
 Sockets/XTI …
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL:
Inter-process Communication(3)
 A common
shared data-
structure
residing in
kernel or user
space.
 Mechanism to
access it.
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL:
Device Drivers(1)
 A piece of software that enables
devices connected to particular
processor, via various
interfaces.
 Controls, manages and
configures devices connected to
system.
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL:
Device Drivers(2)
Client Drivers
Protocol Layers
Host Controller Drivers
Hardware
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
RTOS KERNEL:
Device Drivers(3)
 A host controller driver enables
system to accept a particular type of
device.
 Client drivers are device specific.
 Protocol layer converts device
request to form that is understood
by corresponding host controllers
through their drivers.
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
Expectations from RTOS
 Deadline-driven
 Work with Dearth of Resources
 Intricate I/O interfaces (Touch
panels, Push buttons …)
 Fail-safe and Robust
 Availability
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
An Example RTOS
EMERALDS architecture
• Introduction
• Structure of RTOS
• Components of RTOS
• RTOS Kernel
• Tasks
• Memory
• Timers
• I/O
• IPCs
• Device Drivers
• Expectations
• Examples
Relevant books and
websites
 http://www.intelinfo.com/it_training_materials_and_books/free_real_time_
operating_systems_training_materials.html
 Linux Device Drivers – Alexander Rubini, Oreilly publications
 http://www.ddjembedded.com : Dr. Dobb’s Journal
 http://www.embedded.com
Some RTOS based Embedded Systems
 http://www.ll.mit.edu/HPEC/agendas/proc02/abstracts/ahlander.pdf
 http://www.cs.berkeley.edu/~culler/cs294-f03/papers/emeralds.pdf

More Related Content

Similar to rtos-160730105504.pdf

Introduction to RTOS
Introduction to RTOSIntroduction to RTOS
Introduction to RTOSYong Heui Cho
 
MK Sistem Operasi.pdf
MK Sistem Operasi.pdfMK Sistem Operasi.pdf
MK Sistem Operasi.pdfwisard1
 
Challenges in Embedded Computing
Challenges in Embedded ComputingChallenges in Embedded Computing
Challenges in Embedded ComputingPradeep Kumar TS
 
Real-Time Operating Systems Real-Time Operating Systems RTOS .ppt
Real-Time Operating Systems Real-Time Operating Systems RTOS .pptReal-Time Operating Systems Real-Time Operating Systems RTOS .ppt
Real-Time Operating Systems Real-Time Operating Systems RTOS .pptlematadese670
 
Building the Internet of Things with Thingsquare and Contiki - day 2 part 1
Building the Internet of Things with Thingsquare and Contiki - day 2 part 1Building the Internet of Things with Thingsquare and Contiki - day 2 part 1
Building the Internet of Things with Thingsquare and Contiki - day 2 part 1Adam Dunkels
 
Lecture10_RealTimeOperatingSystems.pptx
Lecture10_RealTimeOperatingSystems.pptxLecture10_RealTimeOperatingSystems.pptx
Lecture10_RealTimeOperatingSystems.pptxSekharSankuri1
 
CSW2017Richard Johnson_harnessing intel processor trace on windows for vulner...
CSW2017Richard Johnson_harnessing intel processor trace on windows for vulner...CSW2017Richard Johnson_harnessing intel processor trace on windows for vulner...
CSW2017Richard Johnson_harnessing intel processor trace on windows for vulner...CanSecWest
 
Advanced debugging on ARM Cortex devices such as STM32, Kinetis, LPC, etc.
Advanced debugging on ARM Cortex devices such as STM32, Kinetis, LPC, etc.Advanced debugging on ARM Cortex devices such as STM32, Kinetis, LPC, etc.
Advanced debugging on ARM Cortex devices such as STM32, Kinetis, LPC, etc.Atollic
 
The sunsparc architecture
The sunsparc architectureThe sunsparc architecture
The sunsparc architectureTaha Malampatti
 
Computer Architecture & Organization.ppt
Computer Architecture & Organization.pptComputer Architecture & Organization.ppt
Computer Architecture & Organization.pptFarhanaMariyam1
 
embedded system CHAPTER four about design .pdf
embedded system CHAPTER four about design .pdfembedded system CHAPTER four about design .pdf
embedded system CHAPTER four about design .pdfabdulkerimaragaw936
 
finaldraft-intelcorei5processorsarchitecture-130207093535-phpapp01.pdf
finaldraft-intelcorei5processorsarchitecture-130207093535-phpapp01.pdffinaldraft-intelcorei5processorsarchitecture-130207093535-phpapp01.pdf
finaldraft-intelcorei5processorsarchitecture-130207093535-phpapp01.pdfNazarAhmadAlkhidir
 
Central Processing Unit
Central Processing Unit Central Processing Unit
Central Processing Unit Alaka Acharya
 
Exploiting Modern Microarchitectures: Meltdown, Spectre, and other Attacks
Exploiting Modern Microarchitectures: Meltdown, Spectre, and other AttacksExploiting Modern Microarchitectures: Meltdown, Spectre, and other Attacks
Exploiting Modern Microarchitectures: Meltdown, Spectre, and other Attacksinside-BigData.com
 

Similar to rtos-160730105504.pdf (20)

ch1.ppt
ch1.pptch1.ppt
ch1.ppt
 
Introduction to RTOS
Introduction to RTOSIntroduction to RTOS
Introduction to RTOS
 
RTOS [Autosaved].pptx
RTOS [Autosaved].pptxRTOS [Autosaved].pptx
RTOS [Autosaved].pptx
 
MK Sistem Operasi.pdf
MK Sistem Operasi.pdfMK Sistem Operasi.pdf
MK Sistem Operasi.pdf
 
Challenges in Embedded Computing
Challenges in Embedded ComputingChallenges in Embedded Computing
Challenges in Embedded Computing
 
Real-Time Operating Systems Real-Time Operating Systems RTOS .ppt
Real-Time Operating Systems Real-Time Operating Systems RTOS .pptReal-Time Operating Systems Real-Time Operating Systems RTOS .ppt
Real-Time Operating Systems Real-Time Operating Systems RTOS .ppt
 
gg
gggg
gg
 
Building the Internet of Things with Thingsquare and Contiki - day 2 part 1
Building the Internet of Things with Thingsquare and Contiki - day 2 part 1Building the Internet of Things with Thingsquare and Contiki - day 2 part 1
Building the Internet of Things with Thingsquare and Contiki - day 2 part 1
 
Lecture10_RealTimeOperatingSystems.pptx
Lecture10_RealTimeOperatingSystems.pptxLecture10_RealTimeOperatingSystems.pptx
Lecture10_RealTimeOperatingSystems.pptx
 
Embedded systems
Embedded systemsEmbedded systems
Embedded systems
 
CSW2017Richard Johnson_harnessing intel processor trace on windows for vulner...
CSW2017Richard Johnson_harnessing intel processor trace on windows for vulner...CSW2017Richard Johnson_harnessing intel processor trace on windows for vulner...
CSW2017Richard Johnson_harnessing intel processor trace on windows for vulner...
 
Advanced debugging on ARM Cortex devices such as STM32, Kinetis, LPC, etc.
Advanced debugging on ARM Cortex devices such as STM32, Kinetis, LPC, etc.Advanced debugging on ARM Cortex devices such as STM32, Kinetis, LPC, etc.
Advanced debugging on ARM Cortex devices such as STM32, Kinetis, LPC, etc.
 
The sunsparc architecture
The sunsparc architectureThe sunsparc architecture
The sunsparc architecture
 
Computer Architecture & Organization.ppt
Computer Architecture & Organization.pptComputer Architecture & Organization.ppt
Computer Architecture & Organization.ppt
 
embedded system CHAPTER four about design .pdf
embedded system CHAPTER four about design .pdfembedded system CHAPTER four about design .pdf
embedded system CHAPTER four about design .pdf
 
finaldraft-intelcorei5processorsarchitecture-130207093535-phpapp01.pdf
finaldraft-intelcorei5processorsarchitecture-130207093535-phpapp01.pdffinaldraft-intelcorei5processorsarchitecture-130207093535-phpapp01.pdf
finaldraft-intelcorei5processorsarchitecture-130207093535-phpapp01.pdf
 
Central Processing Unit
Central Processing Unit Central Processing Unit
Central Processing Unit
 
Exploiting Modern Microarchitectures: Meltdown, Spectre, and other Attacks
Exploiting Modern Microarchitectures: Meltdown, Spectre, and other AttacksExploiting Modern Microarchitectures: Meltdown, Spectre, and other Attacks
Exploiting Modern Microarchitectures: Meltdown, Spectre, and other Attacks
 
PILOT Session for Embedded Systems
PILOT Session for Embedded Systems PILOT Session for Embedded Systems
PILOT Session for Embedded Systems
 
Autosar Basics hand book_v1
Autosar Basics  hand book_v1Autosar Basics  hand book_v1
Autosar Basics hand book_v1
 

Recently uploaded

University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Christo Ananth
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICS
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICSUNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICS
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICSrknatarajan
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdfankushspencer015
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01KreezheaRecto
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLPVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLManishPatel169454
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 

Recently uploaded (20)

University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICS
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICSUNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICS
UNIT-IFLUID PROPERTIES & FLOW CHARACTERISTICS
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLPVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 

rtos-160730105504.pdf

  • 2. Introduction  A variant of OS that operates in constrained environment in which computer memory and processing power is limited. Moreover they often need to provide their services in definite amount of time.  Hard, Soft & Firm RTOS  Example RTOS: VxWorks, pSOS, Nucleus, RTLinux… • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 3. Structure of a RTOS Custom-Hardware RTOS-kernel Applications BSP • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 4. Components of RTOS  The most important component of RTOS is its kernel (Monolithic & Microkernel).  BSP or Board Support Package makes an RTOS target-specific (It’s a processor specific code onto (processor) which we like to have our RTOS running). • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 5. RTOS KERNEL • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 6. RTOS KERNEL: Tasks(1)  A task is basic unit of execution in RTOS.  RTOS scheduler needs to be deterministic ~ O(1) or O(n). Scheduling policies that are available in a RTOS are: Clock driven Priority driven (RMS & EDF) • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 7. RTOS KERNEL: Tasks(2) . . TID SAVED_TASK_STATE Resource 1 (signals) Resource 2 (events) Resource 3 (shared memory) System Variables Task Control Block • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 8. RTOS KERNEL: Tasks(3) • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 9. RTOS KERNEL: Tasks(4) • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 10. RTOS KERNEL: Tasks(5) RMS, EDF • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 11. RTOS KERNEL: Tasks(6)  XXX_CreateTask  XXX_AddtoProcessQueue  XXX_ChangePriority  XXX_KillTask  XXX_CreateTaskQueues … • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 12. RTOS KERNEL: Memory(1)  Memory is premium in environments where RTOS work.  Supports Virtual Memory (MMU) and Memory Protection (MPU) models.  User space and Kernel space memory. • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 13. RTOS KERNEL: Memory(2) Virtual Memory Concept Physical Address Virtual Address M . . . . . PHY1 VIRT1 PHY2 VIRT2 PHY3 VIRT3 PHY4 VIRT4 • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 14. RTOS KERNEL: Memory(3) Virtual Memory Concept • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 15. RTOS KERNEL: Memory(4) Participation of User space programs with kernel for services and as a central pool of memory for specialized applications. Kernel Space Memory User Space memory P1 P2 M1 M2 • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 16. RTOS KERNEL: Memory(5)  XXX_Kmap  XXX_PassToUserSpace  XXX_Mmap  XXX_PurgeMemory/Kfree  XXX_Kmalloc … • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 17. RTOS KERNEL: Timer(1)  Timer is software entity derived from hardware clock.  Timer provides mechanism to introduce task-delays and/or to help synchronize and provide time off-course.  Watchdog Timers, Programmable Timers • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 18. RTOS KERNEL: Timer(2) • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 19. RTOS KERNEL: Timer(3)  Based upon these hardware- programmable timers, RTOS kernel can use to create software structures of timers associated with tasks.  Scheduling, Synchronization, time-stamping… • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 20. RTOS KERNEL: Timer(4)  XXX_SetTimer  XXX_AddtoTimerQueue  XXX_isExpired  XXX_RunAtExpiry  XXX_PurgeTimerQueue … • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 21. RTOS KERNEL: I/O(1)  I/O is slow as compared to CPU.  I/O: Interrupt-driven, Polling, DMA.  I/O map: Memory Space & IO Space. • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 22. RTOS KERNEL: I/O(2) • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 23. RTOS KERNEL: I/O(3) • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 24. RTOS KERNEL: I/O(4) DMA driven I/O • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 25. RTOS KERNEL: I/O(5)  XXX_IORead/IOWrite  XXX_IOMap/Unmap  XXX_BindInterrupt … • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 26. RTOS KERNEL: Inter-process Communication(1)  Most of the time tasks cannot run in isolation. They require to talk to each other.  Synchronization, Protection and Sharing are goals of IPC. • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 27. RTOS KERNEL: Inter-process Communication(2)  Semaphores (Binary, Mutual)  Message Queues  Pipes/Named Pipes  Shared Memory  Signals/Slots  Mail slots  Sockets/XTI … • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 28. RTOS KERNEL: Inter-process Communication(3)  A common shared data- structure residing in kernel or user space.  Mechanism to access it. • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 29. RTOS KERNEL: Device Drivers(1)  A piece of software that enables devices connected to particular processor, via various interfaces.  Controls, manages and configures devices connected to system. • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 30. RTOS KERNEL: Device Drivers(2) Client Drivers Protocol Layers Host Controller Drivers Hardware • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 31. RTOS KERNEL: Device Drivers(3)  A host controller driver enables system to accept a particular type of device.  Client drivers are device specific.  Protocol layer converts device request to form that is understood by corresponding host controllers through their drivers. • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 32. Expectations from RTOS  Deadline-driven  Work with Dearth of Resources  Intricate I/O interfaces (Touch panels, Push buttons …)  Fail-safe and Robust  Availability • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 33. An Example RTOS EMERALDS architecture • Introduction • Structure of RTOS • Components of RTOS • RTOS Kernel • Tasks • Memory • Timers • I/O • IPCs • Device Drivers • Expectations • Examples
  • 34. Relevant books and websites  http://www.intelinfo.com/it_training_materials_and_books/free_real_time_ operating_systems_training_materials.html  Linux Device Drivers – Alexander Rubini, Oreilly publications  http://www.ddjembedded.com : Dr. Dobb’s Journal  http://www.embedded.com Some RTOS based Embedded Systems  http://www.ll.mit.edu/HPEC/agendas/proc02/abstracts/ahlander.pdf  http://www.cs.berkeley.edu/~culler/cs294-f03/papers/emeralds.pdf