1 / 35

I/O Unit

I/O Unit. transferring data between the microcomputer system and the external devices: Programmed I/O. Interrupt I/O. Direct Memory Access (DMA). Programmed I/O.

snowy
Download Presentation

I/O Unit

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. I/O Unit

  2. transferring data between the microcomputer system and the external devices: • Programmed I/O. • Interrupt I/O. • Direct Memory Access (DMA).

  3. Programmed I/O. • Using this technique, the microprocessor executes a program to perform all data transfers between the microcomputer system and the external devices, • The main characteristic of this type of I/O technique is that the external device carries out the functions as dictated by the program inside the microcomputer memory. In other words, the microprocessor completely controls all the transfers

  4. Interrupt I/O. • In this technique, an external device or an exceptional condition such as overflow can force the microcomputer system to stop executing the current program temporarily so that it can execute another program, known as the “interrupt service routine.” This routine satisfies the needs of the external device or the exceptional condition. After having completed this program, the microprocessor returns to the program that it was executing before the interrupt.

  5. Direct Memory Access (DMA). • This is a type of I/O technique in which data can be transferred between the microcomputer memory and external devices without any microprocessor (CPU) involvement. Direct memory access is typically used to transfer blocks of data between the microcomputer’s main memory and an external device such as hard disk. An interface chip called the DMA controller chip is used with the microprocessor for transferring data via direct memory access.

  6. Programmed I/O. • A microcomputer communicates with an external device via one or more registers called “I/O ports” using programmed I/O. • I/O ports are usually of two types. For one type, each bit in the port can be individually configured as either input or output. • For the other type, all bits in the port can be set up as all parallel input or output bits. • Each port can be configured as an input or output port by another register called the “command” or “data-direction register.” • The port contains the actual input or output data. • The data-direction register is an output register and can be used to configure the bits in the port as inputs or outputs.

  7. For parallel I/O,

  8. I/O ports are addressed using either standard I/O or memory-mapped I/O techniques • Motorola microprocessors do not have the control pin such as M/IO pin and use only “memory-mapped I/O’ while Intel microprocessors can use both types.

  9. When standard I/O is used, typical processors normally use 2-byte M or OUT instruction as follows:

  10. With memory-mapped I/O, the processor normally uses instructions, namely, MOVE, as follows:

  11. There are typically two ways via which programmed I/O can be utilized. These are unconditional I/O and conditional I/O

  12. Interrupt I/O • A disadvantage of conditional programmed I/O is that the microcomputer needs to check the status bit (BUSY signal for the A/D converter) by waiting in a loop. • Interrupt I/O is a device-initiated I/O transfer. • The external device is connected to a pin called the “interrupt (INT) pin” on the processor chip

  13. There are typically three types of interrupts: external interrupts, traps or internal interrupts, and software interrupts • External interrupts are initiated through the microcomputer’s interrupt pins by external devices such as A/D converters. • External interrupts can either be divided into two types: • maskable and • nonmaskable.

  14. Nonmaskable interrupt can not be enabled or disabled by instructions while microprocessor’s instruction set contains instructions to enable or disable maskable interrupt. • For example, Intel 8086 can disable or enable maskable interrupt by executing instructions such as CLI (Clear interrupt flag in the Status register to 0) or STI (Set interrupt flag in the Status register to 1) .

  15. Microcomputer A/D converter interface via interrupt I/0

  16. Interrupt Address Vector • The technique used to find the starting address of the service routine (commonly known as the interrupt address vector) varies from one processor to another • When a processor is interrupted, it saves at least the program counter on the stack so that the processor can return to the main program after executing the service routine. • Typical processors save one or two registers, such as the program counter and status register, before going to the service routine.

  17. Interrupt Priorities • There are two ways of servicing multiple interrupts: polled and daisy chain techniques.

  18. Polled Interrupts • Polled interrupts are handled by software and are therefore are slower than daisy chaining.

  19. Polled Interrupts

  20. several external devices (device 1, device 2, ..., device N) are • connected to a single interrupt line of the processor via an OR gate (not shown in the • figure). When one or more devices activate the INT line HIGH, the processor pushes the • program counter and possibly some other registers onto the stack. It then branches to an • address defined by the manufacturer of the processor. The user can write a program at this • address to poll each device, starting with the highest-priority device, to find the source of • the interrupt

  21. Daisy Chain Interrupts Figure 8.38

  22. Daisy Chain Interrupts

  23. Daisy Chain Interrupts • Devices are connected in a daisy chain fashion, as shown in Figure 8.38, to set up priority systems. Suppose one or more devices interrupt the processor. In response, the processor pushes at least the PC and generates an interrupt acknowledge (INTA) signal to the highest-priority device (device 1 in this case).

  24. Direct Memory Access (DMA) • Direct memory access (DMA) is a technique that transfers data between a microcomputer’s memory and an I/O device without involving the microprocessor. • DMA is widely used in transferring large blocks of data between a peripheral device such as a hard disk and the microcomputer’s memory.

  25. The main functions of a typical DMA controller are summarized as follows: • The I/O devices request DMA operation via the DMA request line of the controller chip. • The controller chip activates the microprocessor HOLD pin, requesting the microprocessor to release the bus. • The processor sends HLDA (hold acknowledge) back to the DMA controller, indicating that the bus is disabled. The DMA controller places the current value of its internal registers, such as the address register and counter, on the system bus and sends a DMA acknowledge to the peripheral device. The DMA controller completes the DMA transfer.

  26. Typical block transfer

  27. In the figure, the I/O device requests the DMA transfer via the DMA request line connected to the controller chip. • The DMA controller chip then sends a HOLD signal to the microprocessor, and it then waits for the HOLD acknowledge (HLDA) signal from the microprocessor. • On receipt of the HLDA, the controller chip sends a DMA ACK signal to the I/O device. • The controller takes over the bus and controls data transfer between the RAM and I/O device. • On completion of the data transfer, the controller interrupts the microprocessor by the INT line and returns the bus to the microprocessor by disabling the HOLD and DMA ACK signals.

  28. I/O structure of a typical microcomputer

  29. Timing Diagram Proses Baca Mikroprosesor dari Port Input

  30. Timing Diagram Proses Tulis dari Mikroprosesor ke Unit Output

More Related