Download presentation
Presentation is loading. Please wait.
Published byKerry Patrick Modified over 9 years ago
1
1 COSC 3P92 Cosc 3P92 Week 11 Lecture slides Violence is the last refuge of the incompetent. Isaac Asimov, Salvor Hardin in "Foundation"
2
2 COSC 3P92 Input/ Output There are two general types of I/O devices: 1. physical I/O devices eg. output port to printer 2. virtual (logical) I/O devices: operating system abstractions eg. spooled print file, files vs. sectors on disk »Telephony Application Programmed Interface (TAPI) »Telephony Service Provider Programming Interface (TSPI) Physical I/O To transfer information between CPU and physical I/O devices, one may use the following techniques: 1. programmed I/O 2. interrupt (-driven) I/O 3. direct memory access (DMA)
3
3 COSC 3P92 1. Programmed I/O I/O ports may be addressed using: 1. standard (isolated) I/O address space –eg. Intel –In and OUT instructions –pin on CPU chip indicates whether IO or memory address space being used. [See next slide] 2. memory-mapped I/O address space –eg. Motorola –devices reside at specific memory locations.
4
4 COSC 3P92 8088 i/o port control
5
5 COSC 3P92 1. Programmed I/O Advantages Memory-mapped I/O: –no special I/O opcodes –all instns that reference memory can access IO –# I/O ports is unlimited –hardware bus simplified Disadvantages: –I/O interfaces may need more circuitry to recognize larger addresses. –possible slow down in bus performance.
6
6 COSC 3P92 An I/O operation may be performed: 1. unconditionally – CPU sends data to device at any time 2. conditionally – checking the status of the device before the operation (i.e. handshaking). –CPU may have to poll and wait for device -> inefficient The CPU communicates with an I/O devices via one or more registers called I/O ports. –Bit-serial ports »Every bit in the port may be configured as either input or output. 01100110 Data-direction register I/O port 1=output 0=input
7
7 COSC 3P92 –Parallel ports »Each I/O port (as a whole) may be configured as either input or output. 01100110 Command register I/O port A (output) 1=output 0=input I/O port B (input) ABOther control signals
8
8 COSC 3P92 Interrupt I/O When an I/O device is ready to send (receive) data to (from) the CPU, it signals (or interrupts) the CPU for its attention. –No need to poll device status. –As soon as the CPU finishes the current instruction, it transfers its execution to an interrupt-service routine which responds to the external interrupt. Q.How does the CPU know which one of the ISRs to execute when there is more than one? –Interrupt Service Vectors: address of interrupt service routines, commonly kept in special jump table. Current execution path Interrupt occurs Interrupted Resume Return from interrupt Interrupt-service routine perform I/O transfer
9
9 COSC 3P92 Interrupt I/O example code: Setting up interrupt I/O... move.b #$81, DDRA ; data direction move.b #$00, DDRB ; registers move.b #$81, PORTA ; start pulse move.b #$01, PORTA ; to device... Device will cause interrupt when ready/done, and an interrupt routine will complete transaction... move.b PORTB, D1 ; interrupt service rtn. rte
10
10 COSC 3P92 Interrupt I/O (continued) Polled Daisy-chain
11
11 COSC 3P92 Direct Memory Access (DMA) It is a technique of transferring data between memory and I/O devices without CPU intervention. –CPU sets up transfer with DMA controller; then transaction occurs without CPU
12
12 COSC 3P92 Direct Memory Access (DMA)
13
13 COSC 3P92 DMA 3 techniques: 1. Block transfer - whole data block transferred - CPU can do non-related bus activities in the meanwhile 2. Cycle stealing - DMA controller freezes the CPU, and then does a DMA while CPU frozen - word-by-word transfer 3. Interleaved - DMA controller uses CPU cycles that aren't using the bus, letting DMA xfers and CPU alternate use of the bus
14
14 COSC 3P92 I/O Processor (data channel) Independent dedicated I/O processors (smart DMA controllers) are used in mainframe computer systems to communicate with I/O devices.
15
15 COSC 3P92 I/O processors Each IOP uses DMA to communicate with devices Some considerations: –priority system for IOP's sharing system bus –priority system for devices on one IO bus –IOP requires software or hardware to manage different devices
16
16 COSC 3P92 IO example: LED Encoder, part of kbd. –Converts key press into ASCII encoded byte. –Bus Interface communicates data to I/O bus.
17
17 COSC 3P92 8086 Programmed IO
18
18 COSC 3P92 8086 Programmed IO
19
19 COSC 3P92 68000 Memory-mapped IO
20
20 COSC 3P92 68000 IO
21
21 COSC 3P92 68000 IO
22
22 COSC 3P92 68000 memory
23
23 COSC 3P92 68000 Interrupt-driven IO
24
24 COSC 3P92 68000 Interrupt-driven IO
25
25 COSC 3P92 68000 DMA
26
26 COSC 3P92 The end
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.