INPUT-OUTPUT ORGANIZATION
Peripheral Devices
The input-output subsystem of a computer, referred to as I/O, provides an efficient mode of
communication between the central system and the outside environment.
A computer serves no useful purpose without the ability to receive information from an outside source and
to transmit results in a meaningful form.
The most familiar means of entering information into a computer is through a typewriter like keyboard that
allows a person to enter alphanumeric information directly. Every time a key is depressed, the terminal
sends a binary coded character to the computer.
The fastest possible speed for entering information this way depends on the person’s typing speed. On the
other hand, the central processing unit is an extremely fast device capable of performing operations at very
high speed.
When input information is transferred to the processor via a slow keyboard, the processor will be idle most
of the time while waiting for the information to arrive. To use a computer efficiently, a large amount of
programs and data must be prepared in advance and transmitted into a storage medium such as magnetic
tapes or disks. The information in the disk is then transferred into computer memory at a rapid rate. Results
of programs are also transferred into a high-speed storage, such as disks, from which they can be
transferred later into a printer to provide a printed output of results.
Devices that are under the direct control of the computer are said to be connected on-line. These devices
are designed to read information into or out of the memory unit upon command from the CPU and are
considered to be part of the total computer system.
Input or output devices attached to the computer are also called peripherals.
The input-output organization of a computer is a function of the size of the computer and the devices
connected to it.
ASCII ALPHANUMERIC CHARACTERS
Input and output devices that communicate with people and the computer are usually involved in the
transfer of alphanumeric information to and from the device and the computer is ASCII It uses seven bits
to code 128 characters. The seven bits of the code are designated by b1 through b7 being the most
significant bit. The letter A, for example, is represented in ASCII as 1000001 (column 100, row 0001).
The ASCII code contains 94 characters that can be printed and 34 nonprinting characters used for various
control functions. The printing characters consist of the 26 uppercase letters A through Z, the 26 lowercase
letters, the 10 numerals 0 through 9, and 32 special printable characters such as %, *, and $.
The 34 control characters are designated in the ASCII table with abbreviated names.
The control characters are used for routing data and arranging the printed text into a prescribed format.
There are three types of control characters: format effectors, information separators, and communication
control characters.
Format effectors are characters that control the layout of printing. They include the familiar typewriter
controls, such as backspace (BS), horizontal tabulation (HT), and carriage return (CR). Information
separators are used to separate the data into divisions like paragraphs and pages. They include characters
such as record separator (RS) and file separator (FS).
The communication control characters are useful during the transmission of text between remote terminals.
Examples of communication control characters are STX (start of text) and ETX (end of text), which are
used to frame a text message when transmitted through a communication medium.
INPUT-OUTPUT INTERFACE
Input-output interface provides a method for transferring information between internal storage and external
I/O devices.
Peripherals connected to a computer need special communication links for interfacing them with the
central processing unit.
The purpose of the communication link is to resolve the differences that exist between the central
computer and each peripheral. The major differences are:
1. Peripherals are electromechanical and electromagnetic devices and their manner of operation is different
from the operation of the CPU and memory, which are electronic devices. Therefore, a conversion of
signal values may be required.
2. The data transfer rate of peripherals is usually slower than the transfer rate of the CPU, and
consequently, a synchronization mechanism may be need.
3. Data codes and formats in peripherals differ form the word format in the CPU and memory.
4. The operating modes of peripherals are different from each other and each must be controlled so as not
to disturb the operation of other peripherals connected to the CPU.
To resolve these differences, computer systems include special hardware components between the CPU
and peripherals to supervise and synchronize all input and output transfers.
These components are called interface units because they interface between the processor bus and the
peripheral device. In addition, each device may have its own controller that supervises the operations of
the particular mechanism in the peripheral.
I/O

BUS

AND

INTERFACE

MODULES

The I/O bus from the processor is attached to all peripheral interfaces. To communicate with a particular
device, the processor places a device address on the address lines.
Each interface attached to the I/O bus contains an address decoder that monitors the address lines. When
the interface detects its own address, it activates the path between the bus lines and the device that it
controls.
At the same time that the address is made available in the address lines, the processor provides a function
code in the control lines. The interface selected responds to the function code and proceeds to execute it.
The function code is referred to as an I/O command and is in essence an instruction that is executed in the
interface and its attached peripheral unit.
There are four types of commands that an interface may receive. They are classified as control, status,
status, data output, and data input.
A control command is issued to activate the peripheral and to inform it what to do.
A status command is used to test various status conditions in the interface and the peripheral.
A data output command causes the interface to respond by transferring data from the bus into one of its
registers.
The data input command is the opposite of the data output. In this case the interface receives an item of
data from the peripheral and places it in its buffer register. The processor checks if data are available by
means of a status command and then issues a data input command.
The interface places the data on the data lines, where they are accepted by the processor.
I/O VERSUS MEMORY BUS
In addition to communicating with I/O, the processor must communicate with the memory unit.
Like the I/O bus, the memory bus contains data, address, and read/write control lines.
There are three ways that computer buses can be used to communicate with memory and I/O:
1. Use two separate buses, one for memory and the other for I/O.
2. Use one common bus for both memory and I/O but have separate control lines for each.
3. Use one common bus for memory and I/O with common control lines.
In the first method, the computer has independent sets of data, address, and control buses, one for
accessing memory and the other for I/O. This is done in computers that provide a separate I/O processor
(IOP) in addition to the central processing unit (CPU). The memory communicates with both the CPU and
the IOP through a memory bus. The IOP communicates also with the input and output devices through a
separate I/O bus with its own address, data and control lines.
The purpose of the IOP is to provide an independent pathway for the transfer of information between
external devices and internal memory.
ISOLATED VERSUS MEMORY-MAPPED I/O
Many computers use one common bus to transfer information between memory or I/O and the CPU.
The distinction between a memory transfer and I/O transfer is made through separate read and write lines.
The I/O read and I/O write control lines are enabled during an I/O transfer. The memory read and memory
write control lines are enabled during a memory transfer.
In the isolated I/O configuration, the CPU has distinct input and output instructions, and each of these
instructions is associated with the address of an interface register.
When the CPU fetches and decodes the operation code of an input or output instruction, it places the
address associated with the instruction into the common address lines.
At the same time, it enables the I/O read (for input) or I/O write (for output) control line. This informs the
external components that are attached to the common bus that the address in the address lines is for an
interface register and not for a memory word. On the other hand, when the CPU is fetching an instruction
or an operand from memory, it places the memory address on the address lines and enables the memory
read or memory write control line. This informs the external components that the address is for a
memory word and not for an I/O interface.
ASYNCHRONOUS DATA TRANSFER
The internal operations in a digital system are synchronized by means of clock pulses supplied by a
common pulse generator.
Two units, such as a CPU and an I/O interface, are designed independently of each other. If the registers in
the interface share a common clock with the CPU registers, the transfer between the two units is said to be
synchronous.
In most cases, the internal timing in each unit is independent from the other in that each uses its own
private clock for internal registers. In that case, the two units are said to be asynchronous to each other.
This approach is widely used in most computer systems.
Asynchronous data transfer between two independent units requires that control signals be transmitted
between the communicating units to indicate the time at which data is being transmitted.
One way of achieving this is by means of a strobe pulse supplied by one of the units to indicate to the other
unit when the transfer has to occur.
Another method commonly used is to accompany each data item being transferred with a control signal
that indicates the presence ofdata in the bus. The unit receiving the data item responds with another control
signal to acknowledge receipt of the data. This type of agreement between two independent units is
referred to as handshaking.
STROBE CONTROL
The strobe control method of asynchronous data transfer employs a single control line to time each
transfer. The strobe may be activated by either the source or the destination unit.

The data bus carries the binary information from source unit to the destination unit.
The strobe is a single line that informs the destination unit when a valid data word is available in the bus
In this case the destination unit activates the strobe pulse, informing the source to provide the data. The
source unit responds by placing the requested binary information on the data bus. The data must be valid
and remain in the bus long enough for the destination unit to accept it.
In many computers the strobe pulse is actually controlled by the clock pulses in the CPU.
The CPU is always in control of the buses and informs the external units how to transfer data.
HANDSHAKING
The disadvantage of the strobe method is that the source unit that initiates the transfer has no way of
knowing whether the destination unit has actually received the data item that was placed in the bus.
Similarly, a destination unit that initiates the transfer has no way of knowing whether the source unit has
actually placed the data on the bus.
The handshake method solves this problem by introducing a second control signal that provides a reply to
the unit that initiates the transfer.
The basic principle of the two-write handshaking method of data transfer is as follows:
One control line is in the same direction as the data flow in the bus from the source to the
destination. It is used by the source unit to inform the destination unit whether there are valued
data in the bus. The other control line is in the other direction from the destination to the source.
It is used by the destination unit to inform the source whether it can accept data. The sequence of
control during the transfer depends on the unit that initiates the transfer.

The source unit initiates the transfer by placing the data on the bus and enabling its data valid signal. The
data accepted signal is activated by the destination unit after it accepts the data from the bus. The source
unit then disables its data valid signal, which invalidates the data on the bus. The destination unit then
disables its data accepted signal and the system goes into its initial state. The source dies not send the next
data item until after the destination unit shows its readiness to accept new data by disabling its data
accepted signal.
MODES OF TRANSFER
Data transfer between the central computer and I/O devices may be handled in a variety of modes. Some
modes use the CPU as an intermediate path; other transfer the data directly to and from the memory unit.
Data transfer to and from peripherals may be handled in one of three possible modes:
1. Programmed I/O
2. Interrupt-initiated I/O
3. Direct memory access (DMA)
Programmed I/O operations are the result of I/O instructions written in the computer program. Each data
item transfer is initiated by an instruction in the program.
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. This is a time-consuming process since it keeps the processor busy needlessly.
It can be avoided by using an interrupt facility and special commands to inform the interface to issue an
interrupt request signal when the data are available from the device. In the meantime the CU can proceed
to execute another program. The interface meanwhile keeps monitoring the device. When the interface
determines that the device is ready for data transfer, it generates an interrupt request to the computer.
In direct memory access (DMA), the interface transfers data into and out of the memory unit through the
memory bus. The CPU initiates the transfer by supplying the interface with the starting address and the
number of words needed to be transferred and then proceeds to execute other tasks. When the transfer is
made, the DMA requests memory cycles through the memory bus. When the request is granted by the
memory controller, the DMA transfers the data directly into memory.
PRIORITY INTERRUPT
Data transfer between the CPU and an I/O device is initiated by the CPU. However, the CPU cannot start
the transfer unless the device is ready to communicate with the CPU. The readiness of the device can be
determined from an interrupt signal.
The CPU responds to the interrupt request by storing the return address from PC into a memory stack and
then the program branches to a service routine that processes the required transfer.
A priority interrupts is a system that establishes a priority over the various sources to determine which
condition is to be serviced first when two or more request arrive simultaneously.
The system may also determine which conditions are permitted to interrupt the computer while another
interrupt is being serviced.
Higher-priority interrupt levels are assigned to request which, if delayed of interrupted, could have serious
consequences. Devices with high-speed transfers such as keyboards receive low priority. When two
devices interrupt the computer at the same time, the computer services the devices interrupt the computer
at the same time, the computer services the device, with the higher priority first.
Establishing the priority of simultaneous interrupts can be done by software or hardware.
A polling procedure is used to identify the highest-priority source by software means.
In this method there is one common branch address for all interrupts.
The order in which they are tested determines the priority of each interrupt. The highest-priority source is
tested first, and if its interrupt signal is on, control branches to a service routine for this source. Otherwise,
the next-lower-priority source is tested, and so on.
The disadvantage of the soft ware method is that if there are many interrupts, the time required to poll
them can exceed the time available to service the I/O device. In this situation a hardware priority-interrupt
unit can be used to speed up the operation.
A hardware priority-interrupt unit functions as an overall manager in an interrupt system environment.
It accepts interrupt requests from many sources, determines which of the incoming requests has the highest
priority, and issues an interrupt request to the computer based on this determination.

no polling is required because all the decisions are established by the hardware priority-interrupt unit. The
hardware priority function can be established by either a serial or a parallel connection of interrupt lines.
The serial connection is also known as the daisy chaining method.
DAISY-CHAINING PRIORITY
The daisy-chaining method of establishing priority consists of a serial connection of all devices that
request an interrupt. The device with the highest priority is placed in the first position, followed by lowerpriority devices up to the device with the lowest priority, which is placed last in the chain.
T’lkhis method of connection between three devices and the CPU is shown in Fig. 6-10

The interrupt request line is common to all devices and forms a wired logic connection. If any device has
its interrupt signal in the low-level state, the interrupt line goes to the low-level state and enables the
interrupt input in the CPU.
When no interrupts are pending, the interrupt line stays in the high-level state and no interrupts are
recognized by the CPU.
This is equivalent to a negative logic OR operation. The CPU responds to an interrupt request by enabling
the interrupt acknowledge line. This signal is received by device 1 at its PI (priority in) input. The
acknowledge signal passes on to the next device through the PO (priority out) output only if device 1 is not
requesting an interrupt.
If device 1 has a pending interrupt, it blocks the acknowledge signal from the next device by placing a 0 in
the PO output. It then proceeds to insert its own interrupt vector address (VAD) into the data bus for the
CPU to use during the interrupt cycle.
A device with a 0 in its PI input generates a 0 in its PO output to inform the next-lower priority device that
the acknowledge signal has been blocked.
A device that is requesting an interrupt and has a 1 in its PI input will intercept the acknowledge signal by
placing a 0 in its PO output.
If the device does not have pending interrupts, it transmits the acknowledge signal to the next device

PARALLEL PRIORITY INTERRUPT
The parallel priority interrupt method uses a register whose bits are set separately by the interrupt signal
from each device.
Priority is established according to the position of the bits in the register.
In addition to the interrupt register the circuit may include a mask register whose purpose is to control the
status of each interrupt request. The mask register can be programmed to disable lower-priority interrupts
while a higher-priority device is being serviced.
It can also provide a facility that allows a high-priority device to interrupt the CPU while a lower-priority
device is being serviced.
DIRECT MEMORY ACCESS (DMA)
The transfer of data between a fast storage device such as magnetic disk and memory is often limited by
the speed of the CPU.
Removing the CPU from the path and letting the peripheral device manage the memory buses directly
would improve the speed of transfer.
This transfer technique is called direct memory access (DMA).
During DMA transfer, the CPU is idle and has no control of the memory buses. A DMA controller takes
over the buses to manage the transfer directly between the I/O device and memory.

Data Transfer mediated by CPU
Data Transfer without CPU
DMA Controller:
The DMA controller needs the usual circuits of an interface to communicate with the CPU and I/O device.
In addition, it needs an address register, a word count register, and a set of address lines.

Figure 6.14 shows the block diagram of a typical DMA controller.
Components of DMA Controller
The unit communicates with the CPU via the data bus and control lines.
The registers in the DMA are selected by the CPU through the address bus by enabling the DS (DMA
select) and RS (register select) inputs.
When the BG (bus grant) input is 0, the CPU can communicate with the DMA registers through the data
bus to read from or write to the DMA registers.
When BG = 1, the CPU has relinquished the buses and the DMA can communicate directly with the
memory by specifying an address in the address bus and activating the RD or WR control.
The DMA controller has three registers: an address register, a word count register, and a control register.
The address register contains an address to specify the desired location in memory.
The word count register is incremented after each word that is transferred to memory. This register is
decremented by one after each word transfer and internally tested for zero.
The control register specifies the mode of transfer. All registers in the DMA appear to the CPU as I/O
interface registers. Thus the CPU can read from or write into the DMA registers under program control via
the data bus.
Functionality of DMA Controller
The DMA is first initialized by the CPU. After that, the DMA starts and continues to transfer data between
memory and peripheral unit until an entire block is transferred.
The CPU initializes the DMA by sending the following information through the data bus:
1. The starting address of the memory block where data are available (for read) or where data are to be
stored (for write)
2. The word count, which is the number of words in the memory block
3. Control to specify the mode of transfer such as read or write
4. A control to start the DMA transfer
The starting address is stored in the address register. The word count is stored in the word count register,
and the control information in the control register. Once the DMA is initialized, the CPU stops
communicating with the DMA unless it receives an interrupt signal or if it wants to check how many
words have been transferred.
DMA Transfer
- The CPU communicates with the DMA through the address and data buses
- The DMA has its own address, which activates the DS and RS lines.
- The CPU initializes the DMA through the data bus.
- Once the DMA receives the start control command, it can start the transfer between the peripheral
device and the memory
- When the peripheral device sends a DMA request, the DMA controller activates the BR line,
informing the CPU to relinquish the buses.
- The CPU responds with its BG line, informing the DMA that its buses are disabled.
- The DMA then puts the current value of its address register into the address bus, initiates the RD
or WR signal, and sends a DMA acknowledge to the peripheral device.
- When BG = 0, the RD and WR are input lines allowing the CPU to communicate with the internal
DMA registers.
- When BG = 1, the RD and WR and output lines from the DMA controller to the random-access
memory to specify the read or write operation for the data.
- When the peripheral device receives a DMA acknowledge, it puts a word in the data us (for write)
or receives a word from the data bus (for read).
- Thus the DMA controls the read or write operations and supplies the address for the memory. The
peripheral unit can then communicate with memory through the data bus for direct transfer
between the two units while the CPU is momentarily disabled.
Data transfer in a Computer System

More Related Content

PPT
Chapter 6 input output
PPTX
Input & Output
PPTX
IO and file systems
PPTX
IO Techniques in Computer Organization
PPT
Input output hardware of operating system
PPT
I/O System
PPTX
Io system
PPTX
Io techniques & its types
Chapter 6 input output
Input & Output
IO and file systems
IO Techniques in Computer Organization
Input output hardware of operating system
I/O System
Io system
Io techniques & its types

What's hot (20)

PPT
Design an I/O system
PPTX
Input Output - Computer Architecture
PPTX
I/O Organization
PPTX
i/o interface
PDF
Programed I/O Modul..
PPTX
Computer architecture input output organization
PPTX
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II Embeded Hardware
PPTX
I/O Management
PPTX
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II Embedded Systems Memory
PPTX
Computer organization
PPTX
Hardware I/O organization
PPT
Input output module
PPTX
Input output in computer Orgranization and architecture
PDF
Unit 5
PPTX
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT III The 8051 Microcontrollers
PPT
13. Computer Systems Input And Output Architecture
PPTX
I/O Channel IBM 370
PPT
07 Input Output
PDF
Input-Output Modules
PPT
Computer organisation
Design an I/O system
Input Output - Computer Architecture
I/O Organization
i/o interface
Programed I/O Modul..
Computer architecture input output organization
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II Embeded Hardware
I/O Management
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT II Embedded Systems Memory
Computer organization
Hardware I/O organization
Input output module
Input output in computer Orgranization and architecture
Unit 5
SYBSC IT SEM IV EMBEDDED SYSTEMS UNIT III The 8051 Microcontrollers
13. Computer Systems Input And Output Architecture
I/O Channel IBM 370
07 Input Output
Input-Output Modules
Computer organisation
Ad

Similar to Input output (20)

PPTX
Input_Output_Organization.pptx
PPT
Peripheral devices
PPT
Unit4_IO_13623_AnilRawat.ppt
PPTX
Module-4 gitam engineering 3rd PPT.pptx
PPT
COMPUTER ORGANIZATION-Input-Output Organization
PPT
Unit 4-lecte3-io interface
PPT
Unit 4-l ecture3-io interface
PPT
Unit 4-lecte3-io interface
PPTX
comporgppt.pptx
PDF
IO_ORGANIZATION.pdf
PPTX
ghgfjfhgdjfdhgdhgfdgfdhgdhgfdhgzeka.pptx
PPTX
input -output organization From Computer Organization and Architecture.pptx
PDF
CS304PC:Computer Organization and Architecture Unit IV_merged.pdf
PPT
Input Output Operations
PDF
chapter7-input-output-COMPUTER organization.pdf
PPT
io orgnz.ppt
PPT
Computer Organisation and Architecture
PPTX
input output organization.pptx
PPT
inputoutput_organization__Morrismano.ppt
PDF
Unit 6
Input_Output_Organization.pptx
Peripheral devices
Unit4_IO_13623_AnilRawat.ppt
Module-4 gitam engineering 3rd PPT.pptx
COMPUTER ORGANIZATION-Input-Output Organization
Unit 4-lecte3-io interface
Unit 4-l ecture3-io interface
Unit 4-lecte3-io interface
comporgppt.pptx
IO_ORGANIZATION.pdf
ghgfjfhgdjfdhgdhgfdgfdhgdhgfdhgzeka.pptx
input -output organization From Computer Organization and Architecture.pptx
CS304PC:Computer Organization and Architecture Unit IV_merged.pdf
Input Output Operations
chapter7-input-output-COMPUTER organization.pdf
io orgnz.ppt
Computer Organisation and Architecture
input output organization.pptx
inputoutput_organization__Morrismano.ppt
Unit 6
Ad

More from jyoti_lakhani (20)

PPSX
CG02 Computer Graphic Systems.ppsx
PPTX
Projections.pptx
PPSX
CG04 Color Models.ppsx
PPSX
CG03 Random Raster Scan displays and Color CRTs.ppsx
PPTX
CG02 Computer Graphic Systems.pptx
PPSX
CG01 introduction.ppsx
PDF
Doubly linked list
PDF
Double ended queue
PDF
Tree terminology and introduction to binary tree
PDF
Priority queue
PDF
Ds006 linked list- delete from front
PPSX
Ds06 linked list- insert a node after a given node
PPSX
Ds06 linked list- insert a node at end
PPSX
Ds06 linked list- insert a node at beginning
PPSX
Ds06 linked list- intro and create a node
PPSX
Ds04 abstract data types (adt) jyoti lakhani
PPSX
Ds03 part i algorithms by jyoti lakhani
PPSX
Ds03 algorithms jyoti lakhani
PPSX
Ds02 flow chart and pseudo code
PPSX
Ds01 data structure introduction - by jyoti lakhani
CG02 Computer Graphic Systems.ppsx
Projections.pptx
CG04 Color Models.ppsx
CG03 Random Raster Scan displays and Color CRTs.ppsx
CG02 Computer Graphic Systems.pptx
CG01 introduction.ppsx
Doubly linked list
Double ended queue
Tree terminology and introduction to binary tree
Priority queue
Ds006 linked list- delete from front
Ds06 linked list- insert a node after a given node
Ds06 linked list- insert a node at end
Ds06 linked list- insert a node at beginning
Ds06 linked list- intro and create a node
Ds04 abstract data types (adt) jyoti lakhani
Ds03 part i algorithms by jyoti lakhani
Ds03 algorithms jyoti lakhani
Ds02 flow chart and pseudo code
Ds01 data structure introduction - by jyoti lakhani

Recently uploaded (20)

PDF
CISA (Certified Information Systems Auditor) Domain-Wise Summary.pdf
PDF
Practical Manual AGRO-233 Principles and Practices of Natural Farming
PPTX
Unit 4 Computer Architecture Multicore Processor.pptx
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
DOCX
Cambridge-Practice-Tests-for-IELTS-12.docx
PDF
ChatGPT for Dummies - Pam Baker Ccesa007.pdf
PDF
International_Financial_Reporting_Standa.pdf
PDF
LDMMIA Reiki Yoga Finals Review Spring Summer
PPTX
History, Philosophy and sociology of education (1).pptx
PDF
Empowerment Technology for Senior High School Guide
PDF
1.3 FINAL REVISED K-10 PE and Health CG 2023 Grades 4-10 (1).pdf
PPTX
Introduction to pro and eukaryotes and differences.pptx
PPTX
Onco Emergencies - Spinal cord compression Superior vena cava syndrome Febr...
PPTX
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
PDF
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
PPTX
TNA_Presentation-1-Final(SAVE)) (1).pptx
PDF
Complications of Minimal Access-Surgery.pdf
PDF
AI-driven educational solutions for real-life interventions in the Philippine...
PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
PPTX
A powerpoint presentation on the Revised K-10 Science Shaping Paper
CISA (Certified Information Systems Auditor) Domain-Wise Summary.pdf
Practical Manual AGRO-233 Principles and Practices of Natural Farming
Unit 4 Computer Architecture Multicore Processor.pptx
Chinmaya Tiranga quiz Grand Finale.pdf
Cambridge-Practice-Tests-for-IELTS-12.docx
ChatGPT for Dummies - Pam Baker Ccesa007.pdf
International_Financial_Reporting_Standa.pdf
LDMMIA Reiki Yoga Finals Review Spring Summer
History, Philosophy and sociology of education (1).pptx
Empowerment Technology for Senior High School Guide
1.3 FINAL REVISED K-10 PE and Health CG 2023 Grades 4-10 (1).pdf
Introduction to pro and eukaryotes and differences.pptx
Onco Emergencies - Spinal cord compression Superior vena cava syndrome Febr...
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
TNA_Presentation-1-Final(SAVE)) (1).pptx
Complications of Minimal Access-Surgery.pdf
AI-driven educational solutions for real-life interventions in the Philippine...
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
A powerpoint presentation on the Revised K-10 Science Shaping Paper

Input output

  • 1. INPUT-OUTPUT ORGANIZATION Peripheral Devices The input-output subsystem of a computer, referred to as I/O, provides an efficient mode of communication between the central system and the outside environment. A computer serves no useful purpose without the ability to receive information from an outside source and to transmit results in a meaningful form. The most familiar means of entering information into a computer is through a typewriter like keyboard that allows a person to enter alphanumeric information directly. Every time a key is depressed, the terminal sends a binary coded character to the computer. The fastest possible speed for entering information this way depends on the person’s typing speed. On the other hand, the central processing unit is an extremely fast device capable of performing operations at very high speed. When input information is transferred to the processor via a slow keyboard, the processor will be idle most of the time while waiting for the information to arrive. To use a computer efficiently, a large amount of programs and data must be prepared in advance and transmitted into a storage medium such as magnetic tapes or disks. The information in the disk is then transferred into computer memory at a rapid rate. Results of programs are also transferred into a high-speed storage, such as disks, from which they can be transferred later into a printer to provide a printed output of results. Devices that are under the direct control of the computer are said to be connected on-line. These devices are designed to read information into or out of the memory unit upon command from the CPU and are considered to be part of the total computer system. Input or output devices attached to the computer are also called peripherals. The input-output organization of a computer is a function of the size of the computer and the devices connected to it. ASCII ALPHANUMERIC CHARACTERS Input and output devices that communicate with people and the computer are usually involved in the transfer of alphanumeric information to and from the device and the computer is ASCII It uses seven bits to code 128 characters. The seven bits of the code are designated by b1 through b7 being the most significant bit. The letter A, for example, is represented in ASCII as 1000001 (column 100, row 0001). The ASCII code contains 94 characters that can be printed and 34 nonprinting characters used for various control functions. The printing characters consist of the 26 uppercase letters A through Z, the 26 lowercase letters, the 10 numerals 0 through 9, and 32 special printable characters such as %, *, and $. The 34 control characters are designated in the ASCII table with abbreviated names. The control characters are used for routing data and arranging the printed text into a prescribed format. There are three types of control characters: format effectors, information separators, and communication control characters. Format effectors are characters that control the layout of printing. They include the familiar typewriter controls, such as backspace (BS), horizontal tabulation (HT), and carriage return (CR). Information separators are used to separate the data into divisions like paragraphs and pages. They include characters such as record separator (RS) and file separator (FS).
  • 2. The communication control characters are useful during the transmission of text between remote terminals. Examples of communication control characters are STX (start of text) and ETX (end of text), which are used to frame a text message when transmitted through a communication medium. INPUT-OUTPUT INTERFACE Input-output interface provides a method for transferring information between internal storage and external I/O devices. Peripherals connected to a computer need special communication links for interfacing them with the central processing unit. The purpose of the communication link is to resolve the differences that exist between the central computer and each peripheral. The major differences are: 1. Peripherals are electromechanical and electromagnetic devices and their manner of operation is different from the operation of the CPU and memory, which are electronic devices. Therefore, a conversion of signal values may be required. 2. The data transfer rate of peripherals is usually slower than the transfer rate of the CPU, and consequently, a synchronization mechanism may be need. 3. Data codes and formats in peripherals differ form the word format in the CPU and memory. 4. The operating modes of peripherals are different from each other and each must be controlled so as not to disturb the operation of other peripherals connected to the CPU. To resolve these differences, computer systems include special hardware components between the CPU and peripherals to supervise and synchronize all input and output transfers. These components are called interface units because they interface between the processor bus and the peripheral device. In addition, each device may have its own controller that supervises the operations of the particular mechanism in the peripheral. I/O BUS AND INTERFACE MODULES The I/O bus from the processor is attached to all peripheral interfaces. To communicate with a particular device, the processor places a device address on the address lines. Each interface attached to the I/O bus contains an address decoder that monitors the address lines. When the interface detects its own address, it activates the path between the bus lines and the device that it controls.
  • 3. At the same time that the address is made available in the address lines, the processor provides a function code in the control lines. The interface selected responds to the function code and proceeds to execute it. The function code is referred to as an I/O command and is in essence an instruction that is executed in the interface and its attached peripheral unit. There are four types of commands that an interface may receive. They are classified as control, status, status, data output, and data input. A control command is issued to activate the peripheral and to inform it what to do. A status command is used to test various status conditions in the interface and the peripheral. A data output command causes the interface to respond by transferring data from the bus into one of its registers. The data input command is the opposite of the data output. In this case the interface receives an item of data from the peripheral and places it in its buffer register. The processor checks if data are available by means of a status command and then issues a data input command. The interface places the data on the data lines, where they are accepted by the processor. I/O VERSUS MEMORY BUS In addition to communicating with I/O, the processor must communicate with the memory unit. Like the I/O bus, the memory bus contains data, address, and read/write control lines. There are three ways that computer buses can be used to communicate with memory and I/O: 1. Use two separate buses, one for memory and the other for I/O. 2. Use one common bus for both memory and I/O but have separate control lines for each. 3. Use one common bus for memory and I/O with common control lines. In the first method, the computer has independent sets of data, address, and control buses, one for accessing memory and the other for I/O. This is done in computers that provide a separate I/O processor (IOP) in addition to the central processing unit (CPU). The memory communicates with both the CPU and the IOP through a memory bus. The IOP communicates also with the input and output devices through a separate I/O bus with its own address, data and control lines. The purpose of the IOP is to provide an independent pathway for the transfer of information between external devices and internal memory. ISOLATED VERSUS MEMORY-MAPPED I/O Many computers use one common bus to transfer information between memory or I/O and the CPU. The distinction between a memory transfer and I/O transfer is made through separate read and write lines. The I/O read and I/O write control lines are enabled during an I/O transfer. The memory read and memory write control lines are enabled during a memory transfer. In the isolated I/O configuration, the CPU has distinct input and output instructions, and each of these instructions is associated with the address of an interface register. When the CPU fetches and decodes the operation code of an input or output instruction, it places the address associated with the instruction into the common address lines.
  • 4. At the same time, it enables the I/O read (for input) or I/O write (for output) control line. This informs the external components that are attached to the common bus that the address in the address lines is for an interface register and not for a memory word. On the other hand, when the CPU is fetching an instruction or an operand from memory, it places the memory address on the address lines and enables the memory read or memory write control line. This informs the external components that the address is for a memory word and not for an I/O interface. ASYNCHRONOUS DATA TRANSFER The internal operations in a digital system are synchronized by means of clock pulses supplied by a common pulse generator. Two units, such as a CPU and an I/O interface, are designed independently of each other. If the registers in the interface share a common clock with the CPU registers, the transfer between the two units is said to be synchronous. In most cases, the internal timing in each unit is independent from the other in that each uses its own private clock for internal registers. In that case, the two units are said to be asynchronous to each other. This approach is widely used in most computer systems. Asynchronous data transfer between two independent units requires that control signals be transmitted between the communicating units to indicate the time at which data is being transmitted. One way of achieving this is by means of a strobe pulse supplied by one of the units to indicate to the other unit when the transfer has to occur. Another method commonly used is to accompany each data item being transferred with a control signal that indicates the presence ofdata in the bus. The unit receiving the data item responds with another control signal to acknowledge receipt of the data. This type of agreement between two independent units is referred to as handshaking. STROBE CONTROL The strobe control method of asynchronous data transfer employs a single control line to time each transfer. The strobe may be activated by either the source or the destination unit. The data bus carries the binary information from source unit to the destination unit. The strobe is a single line that informs the destination unit when a valid data word is available in the bus
  • 5. In this case the destination unit activates the strobe pulse, informing the source to provide the data. The source unit responds by placing the requested binary information on the data bus. The data must be valid and remain in the bus long enough for the destination unit to accept it. In many computers the strobe pulse is actually controlled by the clock pulses in the CPU. The CPU is always in control of the buses and informs the external units how to transfer data. HANDSHAKING The disadvantage of the strobe method is that the source unit that initiates the transfer has no way of knowing whether the destination unit has actually received the data item that was placed in the bus. Similarly, a destination unit that initiates the transfer has no way of knowing whether the source unit has actually placed the data on the bus. The handshake method solves this problem by introducing a second control signal that provides a reply to the unit that initiates the transfer. The basic principle of the two-write handshaking method of data transfer is as follows: One control line is in the same direction as the data flow in the bus from the source to the destination. It is used by the source unit to inform the destination unit whether there are valued data in the bus. The other control line is in the other direction from the destination to the source. It is used by the destination unit to inform the source whether it can accept data. The sequence of control during the transfer depends on the unit that initiates the transfer. The source unit initiates the transfer by placing the data on the bus and enabling its data valid signal. The data accepted signal is activated by the destination unit after it accepts the data from the bus. The source unit then disables its data valid signal, which invalidates the data on the bus. The destination unit then disables its data accepted signal and the system goes into its initial state. The source dies not send the next data item until after the destination unit shows its readiness to accept new data by disabling its data accepted signal.
  • 6. MODES OF TRANSFER Data transfer between the central computer and I/O devices may be handled in a variety of modes. Some modes use the CPU as an intermediate path; other transfer the data directly to and from the memory unit. Data transfer to and from peripherals may be handled in one of three possible modes: 1. Programmed I/O 2. Interrupt-initiated I/O 3. Direct memory access (DMA) Programmed I/O operations are the result of I/O instructions written in the computer program. Each data item transfer is initiated by an instruction in the program. 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. This is a time-consuming process since it keeps the processor busy needlessly. It can be avoided by using an interrupt facility and special commands to inform the interface to issue an interrupt request signal when the data are available from the device. In the meantime the CU can proceed to execute another program. The interface meanwhile keeps monitoring the device. When the interface determines that the device is ready for data transfer, it generates an interrupt request to the computer. In direct memory access (DMA), the interface transfers data into and out of the memory unit through the memory bus. The CPU initiates the transfer by supplying the interface with the starting address and the number of words needed to be transferred and then proceeds to execute other tasks. When the transfer is made, the DMA requests memory cycles through the memory bus. When the request is granted by the memory controller, the DMA transfers the data directly into memory.
  • 7. PRIORITY INTERRUPT Data transfer between the CPU and an I/O device is initiated by the CPU. However, the CPU cannot start the transfer unless the device is ready to communicate with the CPU. The readiness of the device can be determined from an interrupt signal. The CPU responds to the interrupt request by storing the return address from PC into a memory stack and then the program branches to a service routine that processes the required transfer. A priority interrupts is a system that establishes a priority over the various sources to determine which condition is to be serviced first when two or more request arrive simultaneously. The system may also determine which conditions are permitted to interrupt the computer while another interrupt is being serviced. Higher-priority interrupt levels are assigned to request which, if delayed of interrupted, could have serious consequences. Devices with high-speed transfers such as keyboards receive low priority. When two devices interrupt the computer at the same time, the computer services the devices interrupt the computer at the same time, the computer services the device, with the higher priority first. Establishing the priority of simultaneous interrupts can be done by software or hardware. A polling procedure is used to identify the highest-priority source by software means.
  • 8. In this method there is one common branch address for all interrupts. The order in which they are tested determines the priority of each interrupt. The highest-priority source is tested first, and if its interrupt signal is on, control branches to a service routine for this source. Otherwise, the next-lower-priority source is tested, and so on. The disadvantage of the soft ware method is that if there are many interrupts, the time required to poll them can exceed the time available to service the I/O device. In this situation a hardware priority-interrupt unit can be used to speed up the operation. A hardware priority-interrupt unit functions as an overall manager in an interrupt system environment. It accepts interrupt requests from many sources, determines which of the incoming requests has the highest priority, and issues an interrupt request to the computer based on this determination. no polling is required because all the decisions are established by the hardware priority-interrupt unit. The hardware priority function can be established by either a serial or a parallel connection of interrupt lines. The serial connection is also known as the daisy chaining method. DAISY-CHAINING PRIORITY The daisy-chaining method of establishing priority consists of a serial connection of all devices that request an interrupt. The device with the highest priority is placed in the first position, followed by lowerpriority devices up to the device with the lowest priority, which is placed last in the chain. T’lkhis method of connection between three devices and the CPU is shown in Fig. 6-10 The interrupt request line is common to all devices and forms a wired logic connection. If any device has its interrupt signal in the low-level state, the interrupt line goes to the low-level state and enables the interrupt input in the CPU. When no interrupts are pending, the interrupt line stays in the high-level state and no interrupts are recognized by the CPU. This is equivalent to a negative logic OR operation. The CPU responds to an interrupt request by enabling the interrupt acknowledge line. This signal is received by device 1 at its PI (priority in) input. The
  • 9. acknowledge signal passes on to the next device through the PO (priority out) output only if device 1 is not requesting an interrupt. If device 1 has a pending interrupt, it blocks the acknowledge signal from the next device by placing a 0 in the PO output. It then proceeds to insert its own interrupt vector address (VAD) into the data bus for the CPU to use during the interrupt cycle. A device with a 0 in its PI input generates a 0 in its PO output to inform the next-lower priority device that the acknowledge signal has been blocked. A device that is requesting an interrupt and has a 1 in its PI input will intercept the acknowledge signal by placing a 0 in its PO output. If the device does not have pending interrupts, it transmits the acknowledge signal to the next device PARALLEL PRIORITY INTERRUPT The parallel priority interrupt method uses a register whose bits are set separately by the interrupt signal from each device. Priority is established according to the position of the bits in the register. In addition to the interrupt register the circuit may include a mask register whose purpose is to control the status of each interrupt request. The mask register can be programmed to disable lower-priority interrupts while a higher-priority device is being serviced. It can also provide a facility that allows a high-priority device to interrupt the CPU while a lower-priority device is being serviced. DIRECT MEMORY ACCESS (DMA) The transfer of data between a fast storage device such as magnetic disk and memory is often limited by the speed of the CPU. Removing the CPU from the path and letting the peripheral device manage the memory buses directly would improve the speed of transfer. This transfer technique is called direct memory access (DMA). During DMA transfer, the CPU is idle and has no control of the memory buses. A DMA controller takes over the buses to manage the transfer directly between the I/O device and memory. Data Transfer mediated by CPU
  • 10. Data Transfer without CPU DMA Controller: The DMA controller needs the usual circuits of an interface to communicate with the CPU and I/O device. In addition, it needs an address register, a word count register, and a set of address lines. Figure 6.14 shows the block diagram of a typical DMA controller. Components of DMA Controller The unit communicates with the CPU via the data bus and control lines. The registers in the DMA are selected by the CPU through the address bus by enabling the DS (DMA select) and RS (register select) inputs. When the BG (bus grant) input is 0, the CPU can communicate with the DMA registers through the data bus to read from or write to the DMA registers. When BG = 1, the CPU has relinquished the buses and the DMA can communicate directly with the memory by specifying an address in the address bus and activating the RD or WR control.
  • 11. The DMA controller has three registers: an address register, a word count register, and a control register. The address register contains an address to specify the desired location in memory. The word count register is incremented after each word that is transferred to memory. This register is decremented by one after each word transfer and internally tested for zero. The control register specifies the mode of transfer. All registers in the DMA appear to the CPU as I/O interface registers. Thus the CPU can read from or write into the DMA registers under program control via the data bus. Functionality of DMA Controller The DMA is first initialized by the CPU. After that, the DMA starts and continues to transfer data between memory and peripheral unit until an entire block is transferred. The CPU initializes the DMA by sending the following information through the data bus: 1. The starting address of the memory block where data are available (for read) or where data are to be stored (for write) 2. The word count, which is the number of words in the memory block 3. Control to specify the mode of transfer such as read or write 4. A control to start the DMA transfer The starting address is stored in the address register. The word count is stored in the word count register, and the control information in the control register. Once the DMA is initialized, the CPU stops communicating with the DMA unless it receives an interrupt signal or if it wants to check how many words have been transferred. DMA Transfer - The CPU communicates with the DMA through the address and data buses - The DMA has its own address, which activates the DS and RS lines. - The CPU initializes the DMA through the data bus. - Once the DMA receives the start control command, it can start the transfer between the peripheral device and the memory - When the peripheral device sends a DMA request, the DMA controller activates the BR line, informing the CPU to relinquish the buses. - The CPU responds with its BG line, informing the DMA that its buses are disabled. - The DMA then puts the current value of its address register into the address bus, initiates the RD or WR signal, and sends a DMA acknowledge to the peripheral device. - When BG = 0, the RD and WR are input lines allowing the CPU to communicate with the internal DMA registers. - When BG = 1, the RD and WR and output lines from the DMA controller to the random-access memory to specify the read or write operation for the data. - When the peripheral device receives a DMA acknowledge, it puts a word in the data us (for write) or receives a word from the data bus (for read). - Thus the DMA controls the read or write operations and supplies the address for the memory. The peripheral unit can then communicate with memory through the data bus for direct transfer between the two units while the CPU is momentarily disabled.
  • 12. Data transfer in a Computer System