Modes of transfer - Computer Organization & Architecture - Nithiyapriya Pasavaraj
2,959 views
15 slides
May 19, 2020
Slide 1 of 15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
About This Presentation
Computer Organization & Architecture - Modes of Transaction By Nithiyapriya Pasavaraj
Size: 557.03 KB
Language: en
Added: May 19, 2020
Slides: 15 pages
Slide Content
Modes of Transfer Computer organization & Architecture By Nithiyapriya Pasavaraj
The Data transfer between the central unit and I/O devices can be handled in one of the possible three modes:: Programmed I/O Interrupt Initiated I/O Direct Memory Access
Programmed I/O Programmed I/O instructions are the result of I/O instructions written in computer program. Each data item transfer is initiated by the instruction in the program. I/O instructions are needed to transfer data from & to a CPU a register & peripherals. Once a data transfer is initiated , the CPU is required to monitor the interface to see when a transfer can again be made. In the programmed I/O method, the CPU stays in a program loop until the I/O unit indicates that it is ready for data transfer.
Programmed I/O In the programmed I/O method , the I/O device does not have direct access to memory A transfer from an I/O device to memory requires the execution of several instructions by the CPU, including an input instruction to transfer the data from the device to the CPU a store instruction to transfer the data from the CPU to memory. The device transfer bytes of data one at a time as they are available.
Data transfer from I/O device to CPU Programmed IO - Example
When a byte of data is available, the device places it in the I/O bus and enables its data valid line. The interface accepts the byte into its data register and enables the data accepted line. The interface sets a bit in the status register that we will refer to as an F or "flag" bit. The device can now disable the data valid line, but it will not transfer another byte until the data accepted line is disabled by the interface. A program is written for the computer to check the flag in the status register to determine if a byte has been placed in the data register by the I/O device.& it is is done by reading the status register into a CPU register and checking the value of the flag bit. If the flag is equal to 1, the CPU reads the data from the data register.& then the flag bit is cleared to 0 by either the CPU or the interface. Once the flag is cleared , the interface disables the data accepted line and the device can then transfer the next data byte.
The Transfer of each byte requires 3 instructions(Steps). Read the status register Check the status of flag bit & go to step 1 , if it is not set (or) go to step 3 if it is set. Read the data register.
The Transfer of each byte requires 3 instructions. Read the status register Check the status of flag bit & go to step 1 , if it is not set (or) go to step 3 if it is set. Read the data register.
Disadvantage of Programmed I/O: The problem with programmed I/O is that it is time consuming , since it keeps the processor busy The processor, while waiting, must repeatedly interrogate the status of the I/O module. Performance of the entire system is severely degraded.
Interrupt - initiated I/O In the programmed I/O method the CPU stays in the program loop until the I/O unit indicates that it is ready for data transfer. This is time consuming process because it keeps the processor busy needlessly. This problem can be overcome by using interrupt initiated I/O . In Interrupt initiated IO, when the interface determines that the peripheral is ready for data transfer, it generates an interrupt. After receiving the interrupt signal, the CPU stops the task which it is processing and service the I/O transfer and then returns back to its previous processing task.
The CPU responds to the interrupt signal by storing the return address from the program counter into a memory stack and then control branches to a service routine that processes the required I/O transfer. This can be done by two methods: Vectored interrupt Non-vectored interrupt Vectored Interrupt: In a vectored interrupt , the source that interrupts supplies the branch information to the computer. This information is called the interrupt vector. Non-vectored Interrupt: In a non vectored interrupt, the branch address is assigned to a fixed location in memory.
Priority Interrupt A priority interrupt is a system that establishes a priority over the various sources to determine which condition is to be serviced first when two or more requests arrive simultaneously.
Direct Memory Access
Direct Memory Access The technique of Removing the CPU from the path of data transfer and letting the peripheral device to manage the memory buses directly to improve the speed of transfer ,is known as DMA . In this method , the interface transfer data to and from the memory through memory bus. The DMA controller manages to transfer data between peripherals and memory unit. In DMA , when the CPU initiate the transfer, DMA request memory cycle through the memory bus. When the request is granted by the memory controller, th DMA transfer the data directly to the memory. M any hardware systems use DMA such as disk drive controllers, graphic cards, network cards and sound cards etc. It is also used for intra chip data transfer in multicore processors.