Operating System Concepts - Chapter 13: I/O Systems pptx

38 700 0
Operating System Concepts - Chapter 13: I/O Systems pptx

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

Chapter 13: I/O Systems Chapter 13: I/O Systems 13.2 Silberschatz, Galvin and Gagne ©2005 Operating System Concepts – 7 th Edition, Jan 2, 2005 Chapter 13: I/O Systems Chapter 13: I/O SystemsI/O Hardware  Application I/O Interface  Kernel I/O Subsystem  Transforming I/O Requests to Hardware Operations  Streams  Performance 13.3 Silberschatz, Galvin and Gagne ©2005 Operating System Concepts – 7 th Edition, Jan 2, 2005 Objectives Objectives  Explore the structure of an operating system’s I/O subsystem  Discuss the principles of I/O hardware and its complexity  Provide details of the performance aspects of I/O hardware and software 13.4 Silberschatz, Galvin and Gagne ©2005 Operating System Concepts – 7 th Edition, Jan 2, 2005 I/O Hardware I/O Hardware  Incredible variety of I/O devices  Common concepts z Port z Bus (daisy chain or shared direct access) z Controller (host adapter)  I/O instructions control devices  Devices have addresses, used by z Direct I/O instructions z Memory-mapped I/O 13.5 Silberschatz, Galvin and Gagne ©2005 Operating System Concepts – 7 th Edition, Jan 2, 2005 A Typical PC Bus Structure A Typical PC Bus Structure 13.6 Silberschatz, Galvin and Gagne ©2005 Operating System Concepts – 7 th Edition, Jan 2, 2005 Device I/O Port Locations on PCs (partial) Device I/O Port Locations on PCs (partial) 13.7 Silberschatz, Galvin and Gagne ©2005 Operating System Concepts – 7 th Edition, Jan 2, 2005 Polling Polling  Determines state of device z command-ready z busy z Error  Busy-wait cycle to wait for I/O from device 13.8 Silberschatz, Galvin and Gagne ©2005 Operating System Concepts – 7 th Edition, Jan 2, 2005 Interrupts Interrupts  CPU Interrupt-request line triggered by I/O device  Interrupt handler receives interrupts  Maskable to ignore or delay some interrupts  Interrupt vector to dispatch interrupt to correct handler z Based on priority z Some nonmaskable  Interrupt mechanism also used for exceptions 13.9 Silberschatz, Galvin and Gagne ©2005 Operating System Concepts – 7 th Edition, Jan 2, 2005 Interrupt Interrupt - - Driven I/O Cycle Driven I/O Cycle 13.10 Silberschatz, Galvin and Gagne ©2005 Operating System Concepts – 7 th Edition, Jan 2, 2005 Intel Pentium Processor Event Intel Pentium Processor Event - - Vector Table Vector Table [...]... Asynchronous - process runs while I/O executes Difficult to use I/O subsystem signals process when I/O completed Operating System Concepts – 7th Edition, Jan 2, 2005 13.19 Silberschatz, Galvin and Gagne ©2005 Two I/O Methods Synchronous Operating System Concepts – 7th Edition, Jan 2, 2005 Asynchronous 13.20 Silberschatz, Galvin and Gagne ©2005 Kernel I/O Subsystem Scheduling Some I/O request ordering via per-device... attempt to disrupt normal operation via illegal I/O instructions All I/O instructions defined to be privileged I/O must be performed via system calls Memory-mapped and I/O port memory locations must be protected too Operating System Concepts – 7th Edition, Jan 2, 2005 13.26 Silberschatz, Galvin and Gagne ©2005 Use of a System Call to Perform I/O Operating System Concepts – 7th Edition, Jan 2, 2005 13.27... generic classes Device-driver layer hides differences among I/O controllers from kernel Devices vary in many dimensions Character-stream or block Sequential or random-access Sharable or dedicated Speed of operation read-write, read only, or write only Operating System Concepts – 7th Edition, Jan 2, 2005 13.13 Silberschatz, Galvin and Gagne ©2005 A Kernel I/O Structure Operating System Concepts – 7th Edition,... programmed I/O for large data movement Requires DMA controller Bypasses CPU to transfer data directly between I/O device and memory Operating System Concepts – 7th Edition, Jan 2, 2005 13.11 Silberschatz, Galvin and Gagne ©2005 Six Step Process to Perform DMA Transfer Operating System Concepts – 7th Edition, Jan 2, 2005 13.12 Silberschatz, Galvin and Gagne ©2005 Application I/O Interface I/O system calls... odd aspects of I/O such as clocks and timers Operating System Concepts – 7th Edition, Jan 2, 2005 13.18 Silberschatz, Galvin and Gagne ©2005 Blocking and Nonblocking I/O Blocking - process suspended until I/O completed Easy to use and understand Insufficient for some needs Nonblocking - I/O call returns as much as available User interface, data copy (buffered I/O) Implemented via multi-threading Returns... Enterprise 6000 Device-Transfer Rates Operating System Concepts – 7th Edition, Jan 2, 2005 13.23 Silberschatz, Galvin and Gagne ©2005 Kernel I/O Subsystem Caching - fast memory holding copy of data Always just a copy Key to performance Spooling - hold output for a device If device can serve only one request at a time i.e., Printing Device reservation - provides exclusive access to a device System calls for... info for I/O components, including open file tables, network connections, character device state Many, many complex data structures to track buffers, memory allocation, “dirty” blocks Some use object-oriented methods and message passing to implement I/O Operating System Concepts – 7th Edition, Jan 2, 2005 13.28 Silberschatz, Galvin and Gagne ©2005 UNIX I/O Kernel Structure Operating System Concepts. .. of I/O Devices Operating System Concepts – 7th Edition, Jan 2, 2005 13.15 Silberschatz, Galvin and Gagne ©2005 Block and Character Devices Block devices include disk drives Commands include read, write, seek Raw I/O or file -system access Memory-mapped file access possible Character devices include keyboards, mice, serial ports Commands include get, put Libraries layered on top allow line editing Operating. .. for deadlock Operating System Concepts – 7th Edition, Jan 2, 2005 13.24 Silberschatz, Galvin and Gagne ©2005 Error Handling OS can recover from disk read, device unavailable, transient write failures Most return an error number or code when I/O request fails System error logs hold problem reports Operating System Concepts – 7th Edition, Jan 2, 2005 13.25 Silberschatz, Galvin and Gagne ©2005 I/O Protection... passing is used to communicate between queues Operating System Concepts – 7th Edition, Jan 2, 2005 13.32 Silberschatz, Galvin and Gagne ©2005 The STREAMS Structure Operating System Concepts – 7th Edition, Jan 2, 2005 13.33 Silberschatz, Galvin and Gagne ©2005 Performance I/O a major factor in system performance: Demands CPU to execute device driver, kernel I/O code Context switches due to interrupts . Chapter 13: I/O Systems Chapter 13: I/O Systems 13.2 Silberschatz, Galvin and Gagne ©2005 Operating System Concepts – 7 th Edition, Jan 2, 2005 Chapter 13: I/O Systems Chapter 13: I/O Systems . Gagne ©2005 Operating System Concepts – 7 th Edition, Jan 2, 2005 Interrupt Interrupt - - Driven I/O Cycle Driven I/O Cycle 13.10 Silberschatz, Galvin and Gagne ©2005 Operating System Concepts –. ©2005 Operating System Concepts – 7 th Edition, Jan 2, 2005 Application I/O Interface Application I/O Interface  I/O system calls encapsulate device behaviors in generic classes  Device-driver

Ngày đăng: 28/06/2014, 02:20

Từ khóa liên quan

Mục lục

  • Chapter 13: I/O Systems

  • Chapter 13: I/O Systems

  • Objectives

  • I/O Hardware

  • A Typical PC Bus Structure

  • Device I/O Port Locations on PCs (partial)

  • Polling

  • Interrupts

  • Interrupt-Driven I/O Cycle

  • Intel Pentium Processor Event-Vector Table

  • Direct Memory Access

  • Six Step Process to Perform DMA Transfer

  • Application I/O Interface

  • A Kernel I/O Structure

  • Characteristics of I/O Devices

  • Block and Character Devices

  • Network Devices

  • Clocks and Timers

  • Blocking and Nonblocking I/O

  • Two I/O Methods

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan