Interrupt Structure of 8051
Interrupt Structure of 8051
Lesson 15
Interrupts
Version 2 EE IIT, Kharagpur 2
Instructional Objectives
After going through this lesson the student would learn Interrupts Interrupt Service Subroutines Polling Priority Resolving Daisy Chain Interrupts Interrupt Structure in 8051 Microcontroller Programmable Interrupt Controller
Pre-Requisite
Digital Electronics, Microprocessors
15
Introduction
Real Time Embedded System design requires that I/O devices receive servicing in an efficient manner so that large amounts of the total system tasks can be assumed by the processor with little or no effect on throughput. The most common method of servicing such devices is the polled approach. This is where the processor must test each device in sequence and in effect ask each one if it needs servicing. It is easy to see that a large portion of the main program is looping through this continuous polling cycle and that such a method would have a serious, detrimental effect on system throughput, thus, limiting the tasks that could be assumed by the microcomputer and reducing the cost effectiveness of using such devices. A more desirable method would be one that would allow the microprocessor to be executing its main program and only stop to service peripheral devices when it is told to do so by the device itself. In effect, the method would provide an external asynchronous input that would inform the processor that it should complete whatever instruction that is currently being executed and fetch a new routine that will service the requesting device. Once this servicing is complete, however, the processor would resume exactly where it left off. This can be effectively handled by interrupts. A signal informing a program or a device connected to the processor that an event has occurred. When a processor receives an interrupt signal, it takes a specified action depending on the priority and importance of the entity generating the signal. Interrupt signals can cause a program to suspend itself temporarily to service the interrupt by branching into another program called Interrupt Service Subroutines (ISS) for the specified device which has caused the interrupt.
Types of Interrupts
Interrupts can be broadly classified as - Hardware Interrupts These are interrupts caused by the connected devices. - Software Interrupts These are interrupts deliberately introduced by software instructions to generate user defined exceptions - Trap Version 2 EE IIT, Kharagpur 3
These are interrupts used by the processor alone to detect any exception such as divide by zero Depending on the service the interrupts also can be classified as - Fixed interrupt Address of the ISR built into microprocessor, cannot be changed Either ISR stored at address or a jump to actual ISR stored if not enough bytes available - Vectored interrupt Peripheral must provide the address of the ISR Common when microprocessor has multiple peripherals connected by a system bus Compromise between fixed and vectored interrupts One interrupt pin Table in memory holding ISR addresses (maybe 256 words) Peripheral doesnt provide ISR address, but rather index into table Fewer bits are sent by the peripheral Can move ISR location without changing peripheral Maskable vs. Non-maskable interrupts Maskable: programmer can set bit that causes processor to ignore interrupt This is important when the processor is executing a time-critical code Non-maskable: a separate interrupt pin that cant be masked Typically reserved for drastic situations, like power failure requiring immediate backup of data to non-volatile memory Example: Interrupt Driven Data Transfer (Fixed Interrupt) Fig.15.1(a) shows the block diagram of a system where it is required to read data from a input port P1, modify (according to some given algorithm) and send to port P2. The input port generates data at a very slow pace. There are two ways to transfer data (a) The processor waits till the input is ready with the data and performs a read operation from P1 followed by a write operation to P2. This is called Programmed Data Transfer (b) The other option is when the input/output device is slow then the device whenever is ready interrupts the microprocessor through an Int pin as shown in Fig.15.1. The processor which may be otherwise busy in executing another program (main program here) after receiving the interrupts calls an Interrupt Service Subroutine (ISR) to accomplish the required data transfer. This is known as Interrupt Driven Data Transfer.
Data memory C
System bus
Main program
... 100: instruction 101: instruction
Int
P1 0x8000
P2 0x8001
PC
After completing instruction at 100, C sees Int asserted, saves the PCs value of 100, and sets PC to the ISR fixed location of 16. The ISR reads data from 0x8000, modifies the data, and writes the resulting data to 0x8001.
The ISR returns, thus restoring PC to 100+1=101, where P resumes executing. Fig. 15.1(b) Flow chart for Interrupt Service Fig.15.1(b) describes the sequence of action taking place after the Port P1 is ready with the data. Example: Interrupt Driven Data Transfer (Vectored Interrupt) Version 2 EE IIT, Kharagpur 5
Data memory
System bus
Main program
... 100: instruction 101: instruction
PC
100 Fig. 15.2(a)
Time
P1 receives input data in a register with address 0x8000. P1 asserts Int to request servicing by the microprocessor. P1 detects Inta and puts interrupt address vector 16 on the data bus.
After completing instruction at 100, C sees Int asserted, saves the PCs value of 100, and asserts Inta.
C jumps to the address on the bus (16). The ISR there reads data from 0x8000, modifies the data, and writes the resulting data to 0x8001. The ISR returns, thus restoring PC to 100+1=101, where P resumes executing.
CPU
Osc
Bus Control
P0
P2
P1
P3
Address/Data
Fig. 15.3 The 8051 Architecture The 8051 has 5 interrupt sources: 2 external interrupts, 2 timer interrupts, and the serial port interrupt. These interrupts occur because of 1. timers overflowing 2. receiving character via the serial port 3. transmitting character via the serial port 4. Two external events
Interrupt Enables
Each interrupt source can be individually enabled or disabled by setting or clearing a bit in a Special Function Register (SFR) named IE (Interrupt Enable). This register also contains a global disable bit, which can be cleared to disable all interrupts at once.
Interrupt Priorities
Each interrupt source can also be individually programmed to one of two priority levels by setting or clearing a bit in the SFR named IP (Interrupt Priority). A low-priority interrupt can be interrupted by a high-priority interrupt, but not by another low-priority interrupt. A high-priority interrupt cant be interrupted by any other interrupt source. If two interrupt requests of different priority levels are received simultaneously, the request of higher priority is serviced. If interrupt requests of the same priority level are received simultaneously, an internal polling sequence determines which request is serviced. Thus within each priority level there is a second priority structure determined by the polling sequence. In operation, all the interrupt flags are latched into the interrupt control system during State 5 of every machine cycle. The samples are polled during the following machine cycle. If the flag for an enabled interrupt is found to be set (1), the Version 2 EE IIT, Kharagpur 7
interrupt system generates a CALL to the appropriate location in Program Memory, unless some other condition blocks the interrupt. Several conditions can block an interrupt, among them that an interrupt of equal or higher priority level is already in progress. The hardware-generated CALL causes the contents of the Program Counter to be pushed into the stack, and reloads the PC with the beginning address of the service routine. Interrupt Enable(IE) Register terrupt Priority (IP) Regist
IP Register
INT1
Global Disable
INT0 : External Interrupt 0 INT0 : External Interrupt 1 TF0: Timer 0 Interrupt TF1: Timer 1 Interrupt RI,TI: Serial Port Receive/Transmit Interrupt
The service routine for each interrupt begins at a fixed location (fixed address interrupts). Only the Program Counter (PC) is automatically pushed onto the stack, not the Processor Status Word (which includes the contents of the accumulator and flag register) or any other register. Having only the PC automatically saved allows the programmer to decide how much time should be spent saving other registers. This enhances the interrupt response time, albeit at the expense of increasing the programmers burden of responsibility. As a result, many interrupt functions that are typical in control applications toggling a port pin for example, or reloading a timer, or unloading a serial buffer can often be completed in less time than it takes other architectures to complete. Interrupt Number 0 1 2 3 4 Interrupt Vector Address 0003h 000Bh 0013h 001Bh 0023h Description EXTERNAL 0 TIMER/COUNTER 0 EXTERNAL 1 TIMER/COUNTER 1 SERIAL PORT
Simultaneously occurring interrupts are serviced in the following order: 1. 2. 3. 4. 5. External 0 Interrupt Timer 0 Interrupt External 1 Interrupt Timer 1 Interrupt Serial Interrupt
Priority Arbiter
C
System bus Inta Int 5 3 Priority arbiter Ireq1 Iack1 Ireq2 Iack2 Fig. 15.5 The Priority Arbitration Let us assume that the Priority of the devices are Device1 > Device 2 1. The Processor is executing its program. 2. Peripheral1 needs servicing so asserts Ireq1. Peripheral2 also needs servicing so asserts Ireq2. 3. Priority arbiter sees at least one Ireq input asserted, so asserts Int. 4. Processor stops executing its program and stores its state. 5. Processor asserts Inta. 6. Priority arbiter asserts Iack1 to acknowledge Peripheral1. 7. Peripheral1 puts its interrupt address vector on the system bus 8. Processor jumps to the address of ISR read from data bus, ISR executes and returns(and completes handshake with arbiter). Thus in case of simultaneous interrupts the device with the highest priority will be served. 6 7 Peripheral 1 2 Peripheral 2 2
8. The processor jumps to the address of ISR read from data bus, ISR executes and returns. 9. The flag is reset. The processor now check for the next device which has interrupted simultaneously. C System bus Peripheral 1 Ack_in Ack_out Req_out Req_in Peripheral 2 Ack_in Ack_out Req_out Req_in
Inta Int
Fig. 15.6 The Daisy Chain Arbitration In this case The device nearest to the processor has the highest priority The service to the subsequent stages is interrupted if the chain is broken at one place.
PIC
RAM
I/O (1)
ROM
I/O (2)
I/O (N)
Each peripheral device or structure usually has a special program or routine that is associated with its specific functional or operational requirements; this is referred to as a service routine. The PlC, after issuing an interrupt to the CPU, must somehow input information into the CPU that can point (vector) the Program Counter to the service routine associated with the requesting device. The PIC manages eight levels of requests and has built-in features for expandability to other PIC (up to 64 levels). It is programmed by system software as an I/O peripheral. The priority modes can be changed or reconfigured dynamically at any time during main program operation.
Priority Resolver
This logic block determines the priorities of the bits set in the lRR. The highest priority is selected and strobed into the corresponding bit of the lSR during the INTA sequence.
Intel 8259
INT
CONTROL LOGIC
PRIORITY RESOLVER
Fig. 15.9 The Functional Block Diagram Table of Signals of the PIC Signal D[7..0] A[0..0] Description These wires are connected to the system bus and are used by the microprocessor to write or read the internal registers of the 8259. This pin acts in conjunction with WR/RD signals. It is used by the 8259 to decipher various command words the microprocessor writes and status the microprocessor wishes to read. When this write signal is asserted, the 8259 accepts the command on the data line, i.e., the microprocessor writes to the 8259 by placing a command on the data lines and asserting this signal. When this read signal is asserted, the 8259 provides on the data lines its status, i.e., the microprocessor reads the status of the 8259 by asserting this signal and reading the data lines. This signal is asserted whenever a valid interrupt request is received by the 8259, i.e., it is used to interrupt the microprocessor.
WR
RD
INT
INTA
This signal, is used to enable 8259 interrupt-vector data onto the data bus by a sequence of interrupt acknowledge pulses issued by the microprocessor. An interrupt request is executed by a peripheral device when one of these signals is asserted. These are cascade signals to enable multiple 8259 chips to be chained together. This function is used in conjunction with the CAS signals for cascading purposes.
Fig.15.10 shows the daisy chain connection of a number of PICs. The extreme right PIC interrupts the processor. In this figure the processor can entertain up to 24 different interrupt requests. The SP/EN signal has been connected to Vcc for the master and grounded for the slaves.
ADDRESS BUS (16) CONTROL BUS INT REQ DATA BUS (8)
INTERRUPT REQUESTS
Software Interrupts
These are initiated by the program by specific instructions. On encountering such instructions the CPU executes an Interrupt service subroutine.
Conclusion
In this chapter you have learnt about the Interrupts and the Programmable Interrupt Controller. Different methods of interrupt services such as Priority arbitration and Daisy Chain arbitration have been discussed. In real time systems the interrupts are used for specific cases and the time of execution of these Interrupt Service Subroutines are almost fixed. Too many interrupts are not encouraged in real time as it may severely disrupt the services. Please look at problem no.1 in the exercise. Most of the embedded processors are equipped with an interrupt structure. Rarely there is a need to use a PIC. Some of the entry level microcontrollers do not have an inbuilt exception Version 2 EE IIT, Kharagpur 14
handler called trap. The trap is also an interrupt which is used to handle some extreme processor conditions such as divide by 0, overflow etc.
Question Answers
Q1. A computer system has three devices whose characteristics are summarized in the following table: Device D1 D2 D3 Service Time 150s 50s 100s Interrupt Frequency 1/(800s) 1/(1000s) 1/(800s) Allowable Latency 50s 50s 100s
Service time indicates how long it takes to run the interrupt handler for each device. The maximum time allowed to elapse between an interrupt request and the start of the interrupt handler is indicated by allowable latency. If a program P takes 100 seconds to execute when interrupts are disabled, how long will P take to run when interrupts are enabled? Ans: The CPU time taken to service the interrupts must be found out. Let us consider Device 1. It takes 400 s to execute and occurs at a frequency of 1/(800s) (1250 times a second). Consider a time quantum of 1 unit. The Device 1 shall take (150+50)/800= 1/4 unit The Device 2 shall take (50+50)/1000=1/10 unit The Device 3 shall take (100+100)/800=1/4 unit In one unit of real time the cpu time taken by all these devices is (1/4+1/10+1/4) = 0.6 units The cpu idle time 0.4 units which can be used by the Program P. For 100 seconds of CPU time the Real Time required will be 100/0.4= 250 seconds Q.2 What is TRAP? Ans: The term trap denotes a programmer initiated and expected transfer of control to a special handler routine. In many respects, a trap is nothing more than a specialized subroutine call. Many texts refer to traps as software interrupts. Traps are usually unconditional; that is, when you execute an Interrupt instruction, control always transfers to the procedure associated with the trap. Since traps execute via an explicit instruction, it is easy to determine exactly which instructions in a program will invoke a trap handling routine.
Q.3. Discuss about the Interrupt Acknowledge Machine Cycle. Ans: For vectored interrupts the processor expects the address from the external device. Once it receives the interrupt it starts an Interrupt acknowledge cycle as shown in the figure. In the figure TN is the last clock state of the previous instruction immediately after which the processor checks the status of the Intr pin which has already become high by the external device. Therefore the processor starts an INTA cycle in which it brings the interrupt vector through the data lines. If the data lines arte 8-bits and the address required is 16 bits there will be two I/O read. If the interrupt vector is a number which will be vectored to a look up table then only 8-bits are required and hence one I/O read will be there.
TN T1 T2 T3
CLK
INTREQ
INTACK
Data
Address code