US20010047470A1 - Management of interrupts each having hardware and software priorities in a microprocessor - Google Patents

Management of interrupts each having hardware and software priorities in a microprocessor Download PDF

Info

Publication number
US20010047470A1
US20010047470A1 US09/251,552 US25155299A US2001047470A1 US 20010047470 A1 US20010047470 A1 US 20010047470A1 US 25155299 A US25155299 A US 25155299A US 2001047470 A1 US2001047470 A1 US 2001047470A1
Authority
US
United States
Prior art keywords
interrupt
microprocessor
interrupts
software
priority
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
US09/251,552
Other versions
US6356998B2 (en
Inventor
Franck Roche
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
STMicroelectronics SA
Original Assignee
STMicroelectronics SA
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by STMicroelectronics SA filed Critical STMicroelectronics SA
Assigned to STMICROELECTRONICS S.A. reassignment STMICROELECTRONICS S.A. ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: ROCHE, FRANCK
Publication of US20010047470A1 publication Critical patent/US20010047470A1/en
Application granted granted Critical
Publication of US6356998B2 publication Critical patent/US6356998B2/en
Anticipated expiration legal-status Critical
Expired - Lifetime legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/48Program initiating; Program switching, e.g. by interrupt
    • G06F9/4806Task transfer initiation or dispatching
    • G06F9/4812Task transfer initiation or dispatching by interrupt, e.g. masked
    • G06F9/4818Priority circuits therefor
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F13/00Interconnection of, or transfer of information or other signals between, memories, input/output devices or central processing units
    • G06F13/14Handling requests for interconnection or transfer
    • G06F13/20Handling requests for interconnection or transfer for access to input/output bus
    • G06F13/24Handling requests for interconnection or transfer for access to input/output bus using interrupt
    • G06F13/26Handling requests for interconnection or transfer for access to input/output bus using interrupt with priority control

Definitions

  • the present invention relates to the field of microprocessors, and, more particularly, to interrupts in a microprocessor.
  • Interrupts are used for reporting an event to a microprocessor.
  • an interrupt When an interrupt is received by the microprocessor, it interrupts the execution of the program in progress, saves the value of the instruction counter in a stack, and then executes a processing routine corresponding to this interrupt. After this processing routine, the execution of the program is resumed starting from the value saved in the stack.
  • the microprocessor includes several interrupt inputs that enable the microprocessor to receive several interrupts at a time. There is an order of priority between these different interrupts. When two interrupts arrive simultaneously, the interrupt having the highest hierarchical priority is processed first.
  • the order of priority of the interrupts is generally determined by hardware circuits in an interrupt controller of the microprocessor. Furthermore, some of these interrupts are maskable, i.e. the microprocessor is not effected by these interrupts.
  • Management of the interrupts in a microprocessor can be accomplished in two modes.
  • a first mode commonly called a “concurrent mode”
  • execution of an interrupt routine cannot be interrupted by the arrival of a new interrupt even if it has priority.
  • the new interrupt is then placed in a pending state.
  • Only a non-maskable interrupt is capable of interrupting execution of an interrupt routine in progress.
  • the microprocessor is not effected by the arrival of any new interrupts, except for the non-maskable interrupts.
  • the masking bit is contained in a state register of the microprocessor, and is set at a 1 as soon as the interrupt is received by the microprocessor.
  • the masking bit remains at a 1 during the processing of the interrupt.
  • the masking bit is often called an I bit. This setting at a 1 is done by hardware. When there is no interrupt, this bit is at a 0.
  • the microprocessor receives a non-maskable interrupt during the processing of an interrupt that is maskable, the non-maskable interrupt is processed immediately by the microprocessor without this bit being taken into account.
  • the contents of the instruction counter and of the state register are saved in the stack as in the case of a standard interrupt.
  • This mode is the default mode of operation for the microprocessor, and is hereinafter called mode A.
  • the state register of the microprocessor includes, in addition to the masking bit, flags on the state of the microprocessor.
  • This register in particular, includes flag C which is set at a 1 when the carry value exceeds the most significant bit of the operands during an addition.
  • Flag Z is set at a 1 if the result of the operation is a 0, and flag N is set at a 1 when the result is negative.
  • mode B In a second mode of operation, commonly called the “nested mode”, the arrival of an interrupt with a higher priority than the ongoing one interrupts the processing of this ongoing interrupt. Processing is resumed only after the processing of the priority interrupt is completed.
  • This mode makes it possible to overlap the interrupts, and is hereinafter called mode B.
  • mode B To implement this mode, it is generally planned after reception of an interrupt to set the masking bit at a 1 by the hardware, and then to reset it at a 1 by software.
  • Management of the interrupts during this mode operates as follows. During the execution of the main program, the masking bit is at 1 and the microprocessor is then in a state enabling it to process any possible interrupt as soon as it is received.
  • an interrupt IT 1 is received by the microprocessor, the contents of the instruction counter and of the state register of the microprocessor are saved in the stack.
  • the masking bit is set at a 1 by hardware.
  • the instruction counter is loaded with the interrupt vector corresponding to the interrupt IT 1 .
  • the routine corresponding to the interrupt IT 1 is then executed. In order that the upcoming priority interrupts be processed immediately, the masking bit is set at a 1 by the software.
  • interrupt controller includes a software modification of this order of priority.
  • a hardware priority will be understood to mean a priority achieved by hardware circuits
  • a software priority will be understood to mean a priority achieved by a program.
  • Operation of this type of microprocessor is as follows. If the microprocessor receives an interrupt, a comparison is made initially between its level of software priority and that of the interrupt or of the program in progress. If the level of software priority of the new interrupt is higher, the interrupt routine or the program in progress is interrupted. The masking bit of the microprocessor is set at a 1 so that the priority interrupt is processed immediately. If not, the new interrupt is placed in a pending state. Thus, in order that the microprocessor may operate in mode A, it is sufficient that all the interrupts should have the same level of software priority. If this is not the case, the microprocessor operates in mode B.
  • the software step that places the masking bit at a 1 for reducing the time needed for the management of the interrupts in mode B is eliminated.
  • Another object of the invention is to provide a method for the management of interrupts in a microprocessor.
  • the interrupts have a two-fold order of priority, i.e., a software priority and a hardware priority.
  • the microprocessor operates in two modes. A first mode executes an interrupt routine which cannot be interrupted by the arrival of a new interrupt, even if it is a priority interrupt, unless this interrupt is non-maskable. In a second mode, the execution of an interrupt routine is interrupted by the arrival of a priority interrupt.
  • the mode of operation of the microprocessor is conditioned by the software priority level of the interrupts. At the time of the execution of an interrupt, its software priority level is loaded into the state register of the microprocessor. This loading operation replaces the two-fold operation for the one-setting of the masking bit by hardware and its zero-setting by software. This operation is performed automatically by hardware circuits.
  • the software priority level assigned to each interrupt is encoded on n bits and these bits, which are to be loaded into the state register of the microprocessor, are preferably contained in n distinct registers.
  • FIG. 1 is a flow chart for the management of interrupts, according to the present invention.
  • FIG. 2 is a diagram of the sequencing according to mode A for a succession of interrupts given by way of an example, according to the present invention.
  • FIG. 3 is a diagram of the sequencing according to mode B for the succession of interrupts of FIG. 2.
  • a software priority level is loaded into the state register of the microprocessor.
  • the software priority levels are encoded on one or more bits.
  • the method given by way of an example and illustrated in FIGS. 2 and 3, comprises four software priority levels. Each level is encoded on two bits, I 1 and I 0 .
  • the software priority levels are defined in the following table: Software priority I1 I0 Level 0 (main prog.) 1 0 Level 1 0 1 Level 2 0 0 Level 3 1 1
  • the corresponding bits I 0 and I 1 are loaded by hardware into the state register of the microprocessor.
  • the bits to be loaded into the state register are provided by two registers R 0 and R 1 .
  • the register R 0 provides the bit I 0
  • the register R 1 provides the bit I 1 .
  • the registers R 0 and R 1 are 16-bit registers, with each bit relating to a particular interrupt. Interrupt IT15 IT14 IT13 IT0 Register R0 1 1 I1_13 I1_0 Register R1 1 1 I0_13 I0_0
  • the bit I 0 is preferably loaded into the location of the state register reserved for the masking bit, i.e., bit I.
  • the bit I 1 is loaded into an unused location of the register. This location generally stores a logic level 1.
  • the lowest software priority level is 10 and the highest software priority level is 11 to preserve compatibility with the operation of existing microprocessors.
  • the bits I 1 and I 0 stored in a state register are respectively equal to 1 and 0, i.e., the lowest software priority level.
  • this signal interrupts execution of the main program and processes the interrupt.
  • FIG. 1 The flow chart for the processing of the interrupts according to the present invention is shown in FIG. 1.
  • the management of the interrupts is performed as follows. Whenever the software priority level of the new interrupt is greater than that of the interrupt in progress, or whenever the new interrupt is a non-maskable interrupt, the interrupt routine in progress is interrupted. The contents of the instructions counter and of the state register of the microprocessor are saved in the stack. The instructions counter and the state register are then loaded respectively with the interrupt vector and the software priority level of the new interrupt. The routine of the new interrupt is then executed. As long as the microprocessor does not receive any new interrupt requests, it performs the instructions of the interrupt routine. This permanent looping to detect the arrival of new interrupts is symbolized in FIG. 1 by the letter A.
  • the microprocessor receives interrupts of a same software priority level or of a lower level, it keeps them pending. As soon as the routine of the interrupt in progress has ended, the microprocessor restores the contents of the stack in the instructions counter and the state register. Detection of the end-of-interrupt instruction indicates that the interrupt in progress has ended. If a pending interrupt has a higher software priority level than that of the restored interrupt, then this restored interrupt is again saved in the stack (looping by A), and the pending interrupt is executed. If several interrupts having the same software priority are pending or arrive simultaneously at the inputs of the microprocessor, then the interrupt having the highest hardware priority level will be processed first.
  • the software priority level of the interrupts are saved in the stack of the interrupts controller.
  • the interrupts are then identifiable by groups of priority levels at the level of the stack. Handling operations to reverse the elements of the stack are then made possible.
  • the microprocessor may operate according to mode A, it is sufficient to make one and the same level of software priority for all the interrupts.
  • FIG. 2 illustrates this mode of operation of the microprocessor.
  • the software priority level chosen for this mode is 11.
  • the loading of this bit into the state register is then equivalent to a one-setting of the masking bit of the register.
  • the value of the bit I 1 is taken to be equal to 1 so as not to modify the value of the bit corresponding to the state register.
  • Operation of the microprocessor is activated by an interrupt, commonly called RESET, whose execution is completed when the microprocessor is turned off. This interrupt has the highest software priority level. This is why it is necessary to load the level 10 into the state register so that the execution of the RESET interrupt can be suspended by the other interrupts.
  • the interrupt NMI designates a non-maskable interrupt.
  • the software priority level assigned to these interrupts is 11.
  • the software priority level goes from 11 to 10 so that the interrupts IT 4 , IT 3 , IT 2 , IT 1 , IT 0 and NMI are processed.
  • the interrupts reach the interrupt inputs of the microprocessor in the following order: IT 2 , IT 1 , IT 4 , IT 3 , NMI and IT 0 . These interrupts are processed in the following order.
  • the interrupt IT 2 suspends the execution of the main program.
  • the contents of the instructions counter and of the state register are saved in the stack, and IT 2 is executed.
  • the interrupts IT 1 and IT 4 are placed in a pending state.
  • the stack is restored. Since the software priority level of the main program is smaller than that of IT 1 , the contents of the instructions counter and of the state register are put back in the stack.
  • the interrupt routine IT 1 is executed because IT 1 has a higher software priority level than the interrupt IT 4 .
  • the interrupt IT 3 is placed in a pending state. Then the non-maskable interrupt NMI comes into play and the processing of IT 1 is suspended. The contents of the instructions counter and of the state register are saved in the stack, and the routine of NMI is executed. IT 0 is placed in a pending state. After the execution of the routine of NMI, the stack is restored and the processing of IT 1 is continued until it reaches its end. Then, the routines of the three pending interrupts IT 0 , IT 3 and IT 4 are executed in descending order of their software priority level. Finally, the stack is restored for a last time and the execution of the main program can be continued.
  • FIG. 3 illustrates operation of the microprocessor according to the mode B through the same sequence of interrupts as in the preceding figure.
  • the interrupts are distributed on three software priority levels.
  • the fourth level corresponding to the lowest level is reserved for the main program. More specifically, level 3 is assigned to the interrupts IT 0 , IT 3 , IT 4 and NMI. Level 2 is assigned to the interrupt IT 1 , level 1 is assigned to the interrupt IT 2 , and level 0 is assigned to the main program.
  • the interrupts are processed in the following order.
  • the interrupt IT 2 (level 1) suspends the execution of the main program (level 0).
  • the contents of the instructions counter and of the state register are saved in the stack, and the routine of IT 2 is executed. Its execution is interrupted by the arrival of IT 1 (level 2).
  • the contents of the instructions counter and of the state register are saved in the stack, and the routine of IT 1 is executed.
  • Its execution is interrupted by the arrival of IT 4 (level 3).
  • the contents of the instructions counter and of the state register are saved in the stack, and the routine of IT 4 is executed.
  • IT 3 is placed in a pending state.
  • the processing of IT 4 is interrupted by the arrival of NMI, which is non-maskable.
  • the contents of the instructions counter and of the state register are saved in the stack, and the routine of NMI is executed.
  • IT 0 is put into a pending state.
  • the stack is restored and the processing of IT 4 is continued up to its end.
  • the interrupt having the highest software priority level is then processed. This level is IT 0 , and then IT 3 .
  • the interrupts of the stack namely IT 1 and IT 2 , are processed.
  • the stack is restored for a last time and the execution of the main program can continue.

Abstract

A method for managing interrupts in a microprocessor includes interrupts having a two-fold order of priority, i.e., a software priority and a hardware priority, wherein the microprocessor operates in two modes. During a first mode, the execution of an interrupt routine cannot be interrupted by the arrival of a new interrupt, even if it is a priority interrupt, unless this new interrupt is non-maskable. During a second mode, the execution of an interrupt routine is interrupted by the arrival of a priority interrupt. At the time of the execution of an interrupt, its software priority level is loaded into the state register of the microprocessor.

Description

    FIELD OF THE INVENTION
  • The present invention relates to the field of microprocessors, and, more particularly, to interrupts in a microprocessor. [0001]
  • BACKGROUND OF THE INVENTION
  • Interrupts are used for reporting an event to a microprocessor. When an interrupt is received by the microprocessor, it interrupts the execution of the program in progress, saves the value of the instruction counter in a stack, and then executes a processing routine corresponding to this interrupt. After this processing routine, the execution of the program is resumed starting from the value saved in the stack. [0002]
  • Conventionally, the microprocessor includes several interrupt inputs that enable the microprocessor to receive several interrupts at a time. There is an order of priority between these different interrupts. When two interrupts arrive simultaneously, the interrupt having the highest hierarchical priority is processed first. The order of priority of the interrupts is generally determined by hardware circuits in an interrupt controller of the microprocessor. Furthermore, some of these interrupts are maskable, i.e. the microprocessor is not effected by these interrupts. [0003]
  • Management of the interrupts in a microprocessor can be accomplished in two modes. In a first mode, commonly called a “concurrent mode”, execution of an interrupt routine cannot be interrupted by the arrival of a new interrupt even if it has priority. The new interrupt is then placed in a pending state. Only a non-maskable interrupt is capable of interrupting execution of an interrupt routine in progress. [0004]
  • During this mode, the microprocessor is not effected by the arrival of any new interrupts, except for the non-maskable interrupts. The masking bit is contained in a state register of the microprocessor, and is set at a 1 as soon as the interrupt is received by the microprocessor. The masking bit remains at a 1 during the processing of the interrupt. The masking bit is often called an I bit. This setting at a 1 is done by hardware. When there is no interrupt, this bit is at a 0. Furthermore, if the microprocessor receives a non-maskable interrupt during the processing of an interrupt that is maskable, the non-maskable interrupt is processed immediately by the microprocessor without this bit being taken into account. [0005]
  • The contents of the instruction counter and of the state register are saved in the stack as in the case of a standard interrupt. This mode is the default mode of operation for the microprocessor, and is hereinafter called mode A. The state register of the microprocessor includes, in addition to the masking bit, flags on the state of the microprocessor. This register, in particular, includes flag C which is set at a 1 when the carry value exceeds the most significant bit of the operands during an addition. Flag Z is set at a 1 if the result of the operation is a 0, and flag N is set at a 1 when the result is negative. [0006]
  • In a second mode of operation, commonly called the “nested mode”, the arrival of an interrupt with a higher priority than the ongoing one interrupts the processing of this ongoing interrupt. Processing is resumed only after the processing of the priority interrupt is completed. This mode makes it possible to overlap the interrupts, and is hereinafter called mode B. To implement this mode, it is generally planned after reception of an interrupt to set the masking bit at a 1 by the hardware, and then to reset it at a 1 by software. [0007]
  • Management of the interrupts during this mode operates as follows. During the execution of the main program, the masking bit is at 1 and the microprocessor is then in a state enabling it to process any possible interrupt as soon as it is received. When an interrupt IT[0008] 1 is received by the microprocessor, the contents of the instruction counter and of the state register of the microprocessor are saved in the stack. The masking bit is set at a 1 by hardware. The instruction counter is loaded with the interrupt vector corresponding to the interrupt IT1. The routine corresponding to the interrupt IT1 is then executed. In order that the upcoming priority interrupts be processed immediately, the masking bit is set at a 1 by the software.
  • If a second interrupt IT[0009] 2 with a higher priority appears at the interrupt inputs of the microprocessor during the processing of the interrupt IT1, the contents of the instruction counter and those of the state register are saved in the stack. The instruction counter is loaded with the interrupt vector corresponding to the interrupt IT2. The routine corresponding to the interrupt IT2 is executed. Once this routine is completed, the last value of the stack is restored. The execution of the interrupt routine IT1 is continued until its end. Then the stack is again restored and the execution of the main program is continued.
  • There also exist microprocessors in which the order of priority is double, i.e., in addition to the circuits used to define a fixed order of hardware priority, the interrupt controller includes a software modification of this order of priority. Hereinafter in the description, a hardware priority will be understood to mean a priority achieved by hardware circuits, and a software priority will be understood to mean a priority achieved by a program. [0010]
  • Operation of this type of microprocessor is as follows. If the microprocessor receives an interrupt, a comparison is made initially between its level of software priority and that of the interrupt or of the program in progress. If the level of software priority of the new interrupt is higher, the interrupt routine or the program in progress is interrupted. The masking bit of the microprocessor is set at a 1 so that the priority interrupt is processed immediately. If not, the new interrupt is placed in a pending state. Thus, in order that the microprocessor may operate in mode A, it is sufficient that all the interrupts should have the same level of software priority. If this is not the case, the microprocessor operates in mode B. [0011]
  • The mode of operation of this type of microprocessor is therefore dictated by the software priority. This type of microprocessor is especially appropriate when the operation of the microprocessor has to be customized for the requirements of an application. However these microprocessors, with or without software priority, require a software step for the zero-setting of the masking bit after it has been set at a 1 by the hardware to operate in mode B. [0012]
  • SUMMARY OF THE INVENTION
  • It is an object of the invention to reduce the number of operations to be performed for the microprocessor to operate in mode B, i.e., an overlapping mode. In particular, the software step that places the masking bit at a 1 for reducing the time needed for the management of the interrupts in mode B is eliminated. [0013]
  • Another object of the invention is to provide a method for the management of interrupts in a microprocessor. The interrupts have a two-fold order of priority, i.e., a software priority and a hardware priority. The microprocessor operates in two modes. A first mode executes an interrupt routine which cannot be interrupted by the arrival of a new interrupt, even if it is a priority interrupt, unless this interrupt is non-maskable. In a second mode, the execution of an interrupt routine is interrupted by the arrival of a priority interrupt. [0014]
  • The mode of operation of the microprocessor is conditioned by the software priority level of the interrupts. At the time of the execution of an interrupt, its software priority level is loaded into the state register of the microprocessor. This loading operation replaces the two-fold operation for the one-setting of the masking bit by hardware and its zero-setting by software. This operation is performed automatically by hardware circuits. [0015]
  • Execution of an interrupt routine in progress is interrupted by the arrival of a new interrupt when the software priority level of this new interrupt is greater than that of the interrupt in progress. Thus, the software priority modifies the order of hardware priorities and informs the microprocessor whether or not it should interrupt the execution of the interrupt in progress. [0016]
  • To obtain the operation of the microprocessor in mode A, it is sufficient to provide one and the same software priority level for each interrupt. The software priority level assigned to each interrupt is encoded on n bits and these bits, which are to be loaded into the state register of the microprocessor, are preferably contained in n distinct registers.[0017]
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • Other objects, features and advantages of the present invention will become apparent from the detailed description of the invention which follows, when considered in light of the accompanying drawings, in which: [0018]
  • FIG. 1 is a flow chart for the management of interrupts, according to the present invention; [0019]
  • FIG. 2 is a diagram of the sequencing according to mode A for a succession of interrupts given by way of an example, according to the present invention; and [0020]
  • FIG. 3 is a diagram of the sequencing according to mode B for the succession of interrupts of FIG. 2.[0021]
  • DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS
  • According to the invention, at the time of the execution of an interrupt, a software priority level is loaded into the state register of the microprocessor. Depending on their number, the software priority levels are encoded on one or more bits. Hereinafter in the description, the method, given by way of an example and illustrated in FIGS. 2 and 3, comprises four software priority levels. Each level is encoded on two bits, I[0022] 1 and I0. The software priority levels are defined in the following table:
    Software priority I1 I0
    Level 0 (main prog.) 1 0
    Level 1 0 1
    Level 2 0 0
    Level 3 1 1
  • At the time of the execution of an interrupt, the corresponding bits I[0023] 0 and I1 are loaded by hardware into the state register of the microprocessor. The bits to be loaded into the state register are provided by two registers R0 and R1. The register R0 provides the bit I0 and the register R1 provides the bit I1. In the example that follows, the registers R0 and R1 are 16-bit registers, with each bit relating to a particular interrupt.
    Interrupt IT15 IT14 IT13 IT0
    Register R0
    1 1 I1_13 I1_0
    Register R1
    1 1 I0_13 I0_0
  • The bit I[0024] 0 is preferably loaded into the location of the state register reserved for the masking bit, i.e., bit I. The bit I1 is loaded into an unused location of the register. This location generally stores a logic level 1. Thus, the lowest software priority level is 10 and the highest software priority level is 11 to preserve compatibility with the operation of existing microprocessors. During execution of the main program, the bits I1 and I0 stored in a state register are respectively equal to 1 and 0, i.e., the lowest software priority level. Thus, when the interrupt signal appears at the interrupt inputs of the microprocessor, this signal interrupts execution of the main program and processes the interrupt.
  • The flow chart for the processing of the interrupts according to the present invention is shown in FIG. 1. The management of the interrupts is performed as follows. Whenever the software priority level of the new interrupt is greater than that of the interrupt in progress, or whenever the new interrupt is a non-maskable interrupt, the interrupt routine in progress is interrupted. The contents of the instructions counter and of the state register of the microprocessor are saved in the stack. The instructions counter and the state register are then loaded respectively with the interrupt vector and the software priority level of the new interrupt. The routine of the new interrupt is then executed. As long as the microprocessor does not receive any new interrupt requests, it performs the instructions of the interrupt routine. This permanent looping to detect the arrival of new interrupts is symbolized in FIG. 1 by the letter A. [0025]
  • If the microprocessor receives interrupts of a same software priority level or of a lower level, it keeps them pending. As soon as the routine of the interrupt in progress has ended, the microprocessor restores the contents of the stack in the instructions counter and the state register. Detection of the end-of-interrupt instruction indicates that the interrupt in progress has ended. If a pending interrupt has a higher software priority level than that of the restored interrupt, then this restored interrupt is again saved in the stack (looping by A), and the pending interrupt is executed. If several interrupts having the same software priority are pending or arrive simultaneously at the inputs of the microprocessor, then the interrupt having the highest hardware priority level will be processed first. [0026]
  • According to the invention, the software priority level of the interrupts are saved in the stack of the interrupts controller. The interrupts are then identifiable by groups of priority levels at the level of the stack. Handling operations to reverse the elements of the stack are then made possible. In order that the microprocessor may operate according to mode A, it is sufficient to make one and the same level of software priority for all the interrupts. [0027]
  • FIG. 2 illustrates this mode of operation of the microprocessor. The software priority level chosen for this mode is 11. As the value of the bit I[0028] 0 is 1, the loading of this bit into the state register is then equivalent to a one-setting of the masking bit of the register. The value of the bit I1 is taken to be equal to 1 so as not to modify the value of the bit corresponding to the state register. Operation of the microprocessor is activated by an interrupt, commonly called RESET, whose execution is completed when the microprocessor is turned off. This interrupt has the highest software priority level. This is why it is necessary to load the level 10 into the state register so that the execution of the RESET interrupt can be suspended by the other interrupts. FIG. 2 brings into operation six interrupts, mentioned hereinafter in the rising order of their level of hardware priority: IT4, IT3, IT2, IT1, IT0 and NMI. The interrupt NMI designates a non-maskable interrupt. The software priority level assigned to these interrupts is 11.
  • During the execution of the main program, the software priority level goes from 11 to 10 so that the interrupts IT[0029] 4, IT3, IT2, IT1, IT0 and NMI are processed. The interrupts reach the interrupt inputs of the microprocessor in the following order: IT2, IT1, IT4, IT3, NMI and IT0. These interrupts are processed in the following order. The interrupt IT2 suspends the execution of the main program. The contents of the instructions counter and of the state register are saved in the stack, and IT2 is executed. During its execution, the interrupts IT1 and IT4 are placed in a pending state. At the end of the execution of the interrupt routine IT2, the stack is restored. Since the software priority level of the main program is smaller than that of IT1, the contents of the instructions counter and of the state register are put back in the stack. Then, the interrupt routine IT1 is executed because IT1 has a higher software priority level than the interrupt IT4.
  • During the processing of IT[0030] 1, the interrupt IT3 is placed in a pending state. Then the non-maskable interrupt NMI comes into play and the processing of IT1 is suspended. The contents of the instructions counter and of the state register are saved in the stack, and the routine of NMI is executed. IT0 is placed in a pending state. After the execution of the routine of NMI, the stack is restored and the processing of IT1 is continued until it reaches its end. Then, the routines of the three pending interrupts IT0, IT3 and IT4 are executed in descending order of their software priority level. Finally, the stack is restored for a last time and the execution of the main program can be continued.
  • FIG. 3 illustrates operation of the microprocessor according to the mode B through the same sequence of interrupts as in the preceding figure. In this mode, the interrupts are distributed on three software priority levels. The fourth level corresponding to the lowest level is reserved for the main program. More specifically, [0031] level 3 is assigned to the interrupts IT0, IT3, IT4 and NMI. Level 2 is assigned to the interrupt IT1, level 1 is assigned to the interrupt IT2, and level 0 is assigned to the main program.
  • The interrupts are processed in the following order. The interrupt IT[0032] 2 (level 1) suspends the execution of the main program (level 0). The contents of the instructions counter and of the state register are saved in the stack, and the routine of IT2 is executed. Its execution is interrupted by the arrival of IT1 (level 2). The contents of the instructions counter and of the state register are saved in the stack, and the routine of IT1 is executed. Its execution is interrupted by the arrival of IT4 (level 3). The contents of the instructions counter and of the state register are saved in the stack, and the routine of IT4 is executed. IT3 is placed in a pending state. The processing of IT4 is interrupted by the arrival of NMI, which is non-maskable. The contents of the instructions counter and of the state register are saved in the stack, and the routine of NMI is executed. IT0 is put into a pending state.
  • At the end of the execution of the routine of NMI, the stack is restored and the processing of IT[0033] 4 is continued up to its end. The interrupt having the highest software priority level is then processed. This level is IT0, and then IT3. Finally, the interrupts of the stack, namely IT1 and IT2, are processed. The stack is restored for a last time and the execution of the main program can continue.

Claims (6)

That which is claimed is:
1. A method for the management of interrupts in a microprocessor, said interrupts having a two-fold order of priority, on the one hand a software priority and on the other hand a hardware priority, the microprocessor working in two modes, a first mode during which the execution of an interrupt routine cannot be interrupted by the arrival of a new interrupt, even if it is a priority interrupt, unless this new interrupt is non-maskable, a second mode during which the execution of an interrupt routine is interrupted by the arrival of a priority interrupt, the mode of operation of the microprocessor being conditioned by the software priority level of the interrupts,
wherein, at the time of the execution of an interrupt, its software priority level is loaded into the state register of the microprocessor.
2. A method for the management of interrupts according to
claim 1
, wherein the execution of an interrupt routine in progress is interrupted by the arrival of a new interrupt if the software priority level of this interrupt is higher than that of the interrupt in progress.
3. A method for the management of interrupts according to
claim 2
wherein, in order that the microprocessor may function in the first mode, one and the same software priority level is assigned to each interrupt.
4. A method for the management of interrupts according to
claim 2
or
3
, wherein the software priority level assigned to each interrupt is encoded on n bits and wherein said n bits to be loaded into the state register of the microprocessor are contained in n distinct registers.
5. A method for the management of interrupts according to
claim 4
, wherein the software priority level is encoded on two bits and wherein the highest software priority level is 11 and the lowest software priority level is 10.
6. A method for the management of interrupts according to
claim 1
, wherein the execution of an interrupt routine in progress is interrupted by the arrival of a new interrupt if the software priority level of this interrupt is greater than that of the interrupt in progress.
US09/251,552 1998-02-20 1999-02-17 Method for the management of interrupts in a microprocessor Expired - Lifetime US6356998B2 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
FR9802302 1998-02-20
FR9802302A FR2775370B1 (en) 1998-02-20 1998-02-20 METHOD FOR MANAGING INTERRUPTIONS IN A MICROPROCESSOR

Publications (2)

Publication Number Publication Date
US20010047470A1 true US20010047470A1 (en) 2001-11-29
US6356998B2 US6356998B2 (en) 2002-03-12

Family

ID=9523369

Family Applications (1)

Application Number Title Priority Date Filing Date
US09/251,552 Expired - Lifetime US6356998B2 (en) 1998-02-20 1999-02-17 Method for the management of interrupts in a microprocessor

Country Status (2)

Country Link
US (1) US6356998B2 (en)
FR (1) FR2775370B1 (en)

Cited By (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020144184A1 (en) * 2001-03-30 2002-10-03 Transmeta Corporation Method and apparatus for handling nested faults
US6845419B1 (en) * 2000-01-24 2005-01-18 Freescale Semiconductor, Inc. Flexible interrupt controller that includes an interrupt force register
US20070066321A1 (en) * 2005-09-21 2007-03-22 Kabushiki Kaisha Toshiba Method and apparatus for applications including position determination
US20150294114A1 (en) * 2012-09-28 2015-10-15 Hewlett-Packard Development Company, L.P. Application randomization
CN105453029A (en) * 2013-08-23 2016-03-30 Arm有限公司 Handling access attributes for data accesses
US20160321131A1 (en) * 2014-01-28 2016-11-03 Fujitsu Limited Method for diagnosing information processing device, recording medium, and information processing device
US9946668B1 (en) * 2007-01-10 2018-04-17 The Mathworks, Inc. Automatic prioritization of interrupts in a modeling environment
CN111133418A (en) * 2017-09-29 2020-05-08 Arm有限公司 Allowing non-aborted transactions after an exception mask update instruction
US11245549B2 (en) * 2015-07-17 2022-02-08 Robert Bosch Gmbh Bus system, subscriber station therefor, and method for configuring a static bus system for a dynamic communication

Families Citing this family (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6845409B1 (en) * 2000-07-25 2005-01-18 Sun Microsystems, Inc. Data exchange methods for a switch which selectively forms a communication channel between a processing unit and multiple devices
US6697867B1 (en) 2000-07-25 2004-02-24 Sun Microsystems, Inc. System and method for accessing multiple groups of peripheral devices
US20020116563A1 (en) * 2000-12-12 2002-08-22 Lever Paul D. Apparatus and method to reduce interrupt latency in shared interrupt systems
US6993685B2 (en) * 2002-09-12 2006-01-31 Hewlett-Packard Development Company, L.P. Technique for testing processor interrupt logic
GB2409543B (en) * 2003-12-23 2006-11-01 Advanced Risc Mach Ltd Interrupt masking control
US7149831B2 (en) * 2004-09-27 2006-12-12 Hewlett-Packard Development Company, L.P. Batch processing of interrupts
US9032127B2 (en) * 2006-09-14 2015-05-12 Hewlett-Packard Development Company, L.P. Method of balancing I/O device interrupt service loading in a computer system
JP4897851B2 (en) * 2009-05-14 2012-03-14 インターナショナル・ビジネス・マシーンズ・コーポレーション Computer system and computer system control method

Family Cites Families (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
DE2061983B2 (en) * 1970-12-16 1973-02-01 METHOD FOR PRIORITY-DEPENDENT PROCESSING OF PROCESS REQUIREMENTS IN A PROCESSING UNIT
US3828327A (en) * 1973-04-30 1974-08-06 Ibm Simplified storage protection and address translation under system mode control in a data processing system
US4250546A (en) * 1978-07-31 1981-02-10 Motorola, Inc. Fast interrupt method
FR2658628B1 (en) * 1990-02-20 1992-09-18 Renault COMPUTER SYSTEM FOR MANAGING REAL-TIME EXECUTION OF TASKS ACCORDING TO PREDETERMINED PRIORITIES AND HIERARCHIES.
US5495615A (en) * 1990-12-21 1996-02-27 Intel Corp Multiprocessor interrupt controller with remote reading of interrupt control registers
US5551033A (en) * 1991-05-17 1996-08-27 Zenith Data Systems Corporation Apparatus for maintaining one interrupt mask register in conformity with another in a manner invisible to an executing program
US5437042A (en) * 1992-10-02 1995-07-25 Compaq Computer Corporation Arrangement of DMA, interrupt and timer functions to implement symmetrical processing in a multiprocessor computer system
US5455934A (en) * 1993-03-23 1995-10-03 Eclipse Technologies, Inc. Fault tolerant hard disk array controller
US5671424A (en) * 1994-02-02 1997-09-23 Advanced Micro Devices, Inc. Immediate system management interrupt source with associated reason register
US5685009A (en) * 1994-07-20 1997-11-04 Exponential Technology, Inc. Shared floating-point registers and register port-pairing in a dual-architecture CPU
US5606671A (en) * 1994-11-04 1997-02-25 Canon Information Systems, Inc. Serial port using non-maskable interrupt terminal of a microprocessor
US5875342A (en) * 1997-06-03 1999-02-23 International Business Machines Corporation User programmable interrupt mask with timeout
US5958036A (en) * 1997-09-08 1999-09-28 Lucent Technologies Inc. Circuit for arbitrating interrupts with programmable priority levels

Cited By (15)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6845419B1 (en) * 2000-01-24 2005-01-18 Freescale Semiconductor, Inc. Flexible interrupt controller that includes an interrupt force register
US6829719B2 (en) * 2001-03-30 2004-12-07 Transmeta Corporation Method and apparatus for handling nested faults
US7640450B1 (en) * 2001-03-30 2009-12-29 Anvin H Peter Method and apparatus for handling nested faults
US20020144184A1 (en) * 2001-03-30 2002-10-03 Transmeta Corporation Method and apparatus for handling nested faults
US20070066321A1 (en) * 2005-09-21 2007-03-22 Kabushiki Kaisha Toshiba Method and apparatus for applications including position determination
US7580717B2 (en) * 2005-09-21 2009-08-25 Kabushiki Kaisha Toshiba Method and apparatus for applications including position determination
US9946668B1 (en) * 2007-01-10 2018-04-17 The Mathworks, Inc. Automatic prioritization of interrupts in a modeling environment
US20150294114A1 (en) * 2012-09-28 2015-10-15 Hewlett-Packard Development Company, L.P. Application randomization
US20160210465A1 (en) * 2013-08-23 2016-07-21 Arm Limited Handling access attributes for data accesses
CN105453029A (en) * 2013-08-23 2016-03-30 Arm有限公司 Handling access attributes for data accesses
US10354092B2 (en) * 2013-08-23 2019-07-16 Arm Limited Handling access attributes for data accesses
US11055440B2 (en) 2013-08-23 2021-07-06 Arm Limited Handling access attributes for data accesses
US20160321131A1 (en) * 2014-01-28 2016-11-03 Fujitsu Limited Method for diagnosing information processing device, recording medium, and information processing device
US11245549B2 (en) * 2015-07-17 2022-02-08 Robert Bosch Gmbh Bus system, subscriber station therefor, and method for configuring a static bus system for a dynamic communication
CN111133418A (en) * 2017-09-29 2020-05-08 Arm有限公司 Allowing non-aborted transactions after an exception mask update instruction

Also Published As

Publication number Publication date
FR2775370B1 (en) 2001-10-19
US6356998B2 (en) 2002-03-12
FR2775370A1 (en) 1999-08-27

Similar Documents

Publication Publication Date Title
US6356998B2 (en) Method for the management of interrupts in a microprocessor
US5768599A (en) Interrupt managing system for real-time operating system
EP1080422B1 (en) Software configurable technique for prioritizing interrupts in a microprocessor-based system
EP0021146B1 (en) Computer system including a task handling apparatus
US6006247A (en) Method and system for scheduling threads and handling exceptions within a multiprocessor data processing system
US5247628A (en) Parallel processor instruction dispatch apparatus with interrupt handler
JP3176093B2 (en) Microprocessor interrupt controller
US6820155B1 (en) Interruption managing device and interruption managing method
EP0464615A2 (en) Microcomputer equipped with DMA controller
US6499078B1 (en) Interrupt handler with prioritized interrupt vector generator
EP0783734A1 (en) System and method for providing cooperative interrupts in a preemptive task scheduling environment
JPH0454255B2 (en)
US20020099893A1 (en) System and method for the handling of system management interrupts in a multiprocessor computer system
EP0239078B1 (en) Register saving/restoring system
CA1217565A (en) Vector interrupt system and method
US20030037227A1 (en) Processor enabling exception handling to be set by program
Hills Structured interrupts
EP0319132B1 (en) Interrupt handling in a parallel data processing
EP0594377B1 (en) Method and apparatus for unstacking registers in a data processing system
JPH0895798A (en) Data processor
JPS6290728A (en) Interruption processing method
US20030023799A1 (en) Interrupt processing apparatus
EP0933705A2 (en) Data processor with robust interrupt branching and method of operation
JPS62262146A (en) Processor
GB2030331A (en) Real-time Data Processing System for Processing Time Period Commands

Legal Events

Date Code Title Description
AS Assignment

Owner name: STMICROELECTRONICS S.A., FRANCE

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:ROCHE, FRANCK;REEL/FRAME:009836/0279

Effective date: 19990205

STCF Information on status: patent grant

Free format text: PATENTED CASE

FPAY Fee payment

Year of fee payment: 4

FEPP Fee payment procedure

Free format text: PAYOR NUMBER ASSIGNED (ORIGINAL EVENT CODE: ASPN); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

FPAY Fee payment

Year of fee payment: 8

FPAY Fee payment

Year of fee payment: 12