EP3292474A1 - Interrupt controller - Google Patents
Interrupt controllerInfo
- Publication number
- EP3292474A1 EP3292474A1 EP16716445.8A EP16716445A EP3292474A1 EP 3292474 A1 EP3292474 A1 EP 3292474A1 EP 16716445 A EP16716445 A EP 16716445A EP 3292474 A1 EP3292474 A1 EP 3292474A1
- Authority
- EP
- European Patent Office
- Prior art keywords
- interrupt
- data
- mmio
- line
- register
- 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
Links
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F13/00—Interconnection of, or transfer of information or other signals between, memories, input/output devices or central processing units
- G06F13/14—Handling requests for interconnection or transfer
- G06F13/16—Handling requests for interconnection or transfer for access to memory bus
- G06F13/1668—Details of memory controller
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F13/00—Interconnection of, or transfer of information or other signals between, memories, input/output devices or central processing units
- G06F13/14—Handling requests for interconnection or transfer
- G06F13/20—Handling requests for interconnection or transfer for access to input/output bus
- G06F13/24—Handling requests for interconnection or transfer for access to input/output bus using interrupt
Definitions
- interrupts In many computer systems, including Systems On a Chip (SOC), hardware devices (processor cores, network cards, printers, other peripheral devices, etc.) communicate with the processor cores and other entities through interrupts. Traditionally, interrupts have been asserted using direct line connections to an interrupt input of a processor core (or other device).
- SOC Systems On a Chip
- interrupt controller does not require many direct lines.
- interrupts can also be Memory Mapped Input/Output (MMIO) based, where the source of the interrupt uses a standard fabric/bus write to send an interrupt.
- MMIO Memory Mapped Input/Output
- the interrupt controller includes a set of MMIO readable interrupt registers to allow the interrupt targets to later determine data or messages about the interrupt. Routing circuitry is used to route messages/data about the interrupt to the appropriate interrupt register so that the messages/data can be persistently maintained, and multiple entities can send interrupts to a common target.
- an interrupt controller includes a fabric (e.g., bus) slave that can receive MMIO operation requests, a plurality of output interrupt lines, a plurality of interrupt registers with each interrupt register corresponding to an output interrupt line, a MMIO routing circuit in communication with the fabric slave and the interrupt registers, a plurality of input interrupt lines for receiving line interrupts, and a line interrupt routing circuit in communication with the input interrupt lines and the interrupt registers.
- the interrupt registers store data for an interrupt such that the data serves as an indication of the source of the interrupt and/or what task(s) need to be done for the interrupt.
- Figure 1 is a block diagram of an example computing system that includes an interrupt controller.
- Figure 2 is a block diagram of one embodiment of an interrupt controller.
- Figure 3 is a schematic diagram of a portion of one embodiment of a circuit that can set a bit of an interrupt register.
- Figure 4 depicts one example of a MMIO address format used to assert an interrupt.
- Figure 5 is a table that describes the mapping of bits from the example address format of Figure 4.
- Figure 6 is a flow chart describing one embodiment of a process performed by a source entity asserting a MMIO interrupt through the interrupt controller.
- Figure 7 is a flow chart describing one embodiment of a process performed by the interrupt controller in response to an MMIO interrupt request.
- Figure 8 is a flow chart describing one embodiment of a process performed by the target of an interrupt in response to the interrupt from the interrupt controller.
- Figure 9 is a flow chart describing one embodiment of a process performed by a source entity asserting a line interrupt through the interrupt controller.
- Figure 10 is a flow chart describing one embodiment of a process performed by the interrupt controller in response to a line interrupt request.
- Figure 11 is a flow chart describing an example process performed when two source entities requests interrupts to the same target.
- interrupts have been asserted using direct line connections to an interrupt input of a processor core (or other device).
- Memory Mapped Input/Output (MMIO) operations can also be used to assert interrupts.
- MMIO Memory Mapped Input/Output
- all such interactions initiated from outside the core are funneled through a single, simple interrupt delivery mechanism, or relatively small number of interrupt delivery mechanisms.
- the number of interrupt signals is very limited, which makes it necessary to group events together under a single common interrupt for each group.
- some existing interrupt delivery mechanisms generally have limited provisions for reliably identifying the source or cause of an interrupt, as well as work that needs to be done for the interrupt.
- interrupt controller which is a device that serves as a hub for interrupts. Entities that wish to assert an interrupt will contact the interrupt controller, which will receive the request for an interrupt and make the appropriate interrupt based on a set of factors. For example, the interrupt controller may assign priority to some interrupts, arbitrate among competing interrupts, and route interrupts. Because interrupt controllers can become quite complex as the number of supported features increases, many interrupt controllers are designed with a limited feature set.
- the disclosed interrupt controller can receive multiple types of interrupts (e.g., line interrupts and MMIO interrupts).
- a set of interrupt registers are used to persistently maintain messages or data associated with the interrupts in a manner such that messages/data can be maintained (without data destruction) for multiple interrupts to the same target, and the messages/data will remain available until the target of the interrupt (or other devices) actively resets the interrupt register.
- the use of the persistently stored messages provides for the flexibility in the feature set that can be supported by the interrupt controller.
- the interrupt controller is a slave on a fabric.
- a fabric is a bus or set of busses.
- One example of a suitable bus is the AMBA peripheral bus (APB).
- APB AMBA peripheral bus
- the interrupt controller can receive MMIO write requests from the APB and drive the appropriate level sensitive interrupt line to one of the on chip interrupt destinations, as determined by the address of the MMIO write.
- the fabric or bus includes four bytes for write data, four bytes for read data, and a four byte address. The interrupt controller stores four bytes of data in one of its MMIO readable interrupt registers.
- the MMIO writes will result in any of the following functions being performed, as determined by a portion of the MMIO address: a full write (overwriting any content in the interrupt register with the new data), a masked set (where the new data is bitwise ORed with the current content of the interrupt register), or a masked clear (where the new data is bitwise inverted and ANDed with the current content of the interrupt register).
- a logical OR of the content in the interrupt register will be used to set the interrupt; therefore, one bit of the interrupt register has to be written to a logic one to cause an interrupt.
- the interrupt controller can receive interrupt pulses or levels from a source, as an input line interrupt, and redirect them to the proper output interrupt line.
- Each input line interrupt will go through a synchronization and edge detect. All writes to the interrupt register from input line interrupt lines are sticky in that once a bit is set it will remain set until cleared.
- the routing between line interrupt input lines and interrupt output lines is configurable. For example, a configuration register or software can be used to configure a line interrupt routing circuit to route input line interrupts to interrupt registers for the output interrupt lines.
- the proposed interrupt controller can implement many different use cases. For example, a single processor to processor interrupt, with message passing, can be implemented. That is, a single processor, or other MMIO capable bus master (also known as a source), can send an interrupt by writing a non-zero value to the appropriate interrupt register corresponding to the processor and interrupt line of the desired target. The proper address can be determined by adding an offset (discussed below) to the interrupt controller base address.
- the source of the interrupt is free to send any useful data as long as at least one bit is set to one. This data can be configurable by hardware or software, and will be read by the destination processor (target) and, therefore, can be used to pass a message from the source to the target.
- Another use case supported is multiple processor to processor interrupts. For example, if multiple sources are mapped to the same target, care must be taken to not overwrite the data in the interrupt registers when sending the MMIO write (or line interrupts). The MMIO write should be performed, as discussed below, so that the existing data is not destroyed. This will result in only the bits set to one in the write data, plus existing bits in the register already at logic one, being set to logic one in the interrupt register.
- the bits of the interrupt registers can be divided up per source.
- the bits of the interrupt registers can be divided up by task. For example, a bit in the interrupt register can be an indication for the target to access data at a particular location main memory. That particular location main memory can include more information about the interrupt.
- the bits of the interrupt registers can be divided up by a combination of source and task. The bits of the interrupt register can also be divided up or assigned based on other criteria.
- the destination for inline interrupts are configured based on a line interrupt routing circuit and/or configuration register.
- each input line interrupt can result in one bit being set in the appropriate interrupt register.
- the routing circuitry described below, will create a full byte message where all the bits are logic zero except for one bit set to logic one.
- multiple bits of the interrupt register can be set to logic one based on the interrupt input line.
- a setting a bit can include that bit being at logic zero, rather than logic one.
- Figure 1 is an example computing system that can be used with the proposed interrupt controller.
- Figure 1 represents a System on a Chip (SoC).
- SoC System on a Chip
- the computing system in Figure 1 can be implemented on one or more printed circuit boards and does not necessarily need to be a SoC.
- the computing system of Figure 1 includes fabric 102 for interconnecting the various entities or components.
- fabric 102 is a set of one or more buses and/or interconnects.
- fabric 102 includes a 32 bit address bus, 32 bit write data bus and 32 bit read data bus.
- Interconnected by fabric 102 are interrupt controller 104, control processor 106, general processor 108, general processor 110, general processor 112, DSP processor 114, math co-processor 116, video processor 118, DRAM controller 120, flash controller 124, I/O interface 128, I/O interface 130, peripheral interface 132 and peripheral interface 134.
- control processor 106 is the main processor for controlling the system of Figure 1.
- Interrupt controller 104 is the proposed new interrupt controller that will process requests for interrupts, and will be discussed in more detail below.
- General processors 108, 110 and 112 are programmable CPU cores that can be used to perform various tasks, as per the requirements of the specific implementation.
- Figure 1 shows three general processors (108, 110 and 112); however, more or less than three general processors can be used. In one embodiment, 32 general processors can be implemented in the system.
- Interrupt controller 104 is scalable and can accommodate any number of general processors.
- DSP processor 114 DSP processor 114
- math co-processor 116 and video processor 118
- DSP processor 114 DSP processor 114
- math co-processor 116 are examples of specific/specialty processors that can be included in a computing system.
- the inclusion of specific/specialty processors and the types of specific/specialty processors included in a system depends on the requirements of the specific implementation.
- Interrupt controller 104 can be configured to work with many different types of specific/specialty processors, with no particular number or type of specific/specialty processor required.
- Each of the processors 106-118 can be implemented using the same architecture or different architectures. Different subsets of those processors can be the same architecture or different architectures.
- the system in Figure 1 can include, and interrupt controller 104 can work with, many different processors having different architectures.
- the system of Figure 1 also includes DRAM controller 120 for interfacing with DRAM 122, which serves as main memory. Flash memory controller 124 interfaces with flash memory 126 to provide nonvolatile memory for the system.
- Interrupt controller 104 can work with one or multiple memory systems, and no particular type of memory system is required.
- I/O interfaces 128 and 130 are circuits for connecting the system to input and/or output devices. Although two I/O interfaces are depicted in Figure 1, more or less than two I/O interfaces can be implemented in the system and supported by interrupt controller 104. Figure 1 also shows two peripheral interfaces 132 and 134 for interfacing with peripheral devices (e.g., printers, monitors, keyboards, communication devices etc.) In other embodiments more than two peripheral interfaces (and more than two peripherals) can be implemented in the system and supported by interrupt controller 104.
- peripheral devices e.g., printers, monitors, keyboards, communication devices etc.
- Each of the components 106-134 depicted in Figure 1 can be a source or a target of an interrupt. Therefore, each of the components 106-134 depicted in Figure 1 can communicate with interrupt controller 104 via fabric 102; for example, by MMIO write operations and MMIO read operations. Additionally, all or a subset of components 106-134 can have a direct signal line connecting to interrupt controller 104 (outside of fabric 102) serving as an input line interrupt to interrupt controller 104.
- Figure 2 is a block diagram of one embodiment of interrupt controller 104.
- Figure 2 shows a fabric slave circuit 200 which connects to and interfaces with fabric 102.
- MMIO interrupt routing circuit 202 Connected to fabric slave circuit 200 are MMIO interrupt routing circuit 202 and MMIO reading circuit 204.
- Figure 2 shows a plurality of interrupt registers including interrupt register 0-0, interrupt register 0-1, interrupt register 0-2, interrupt register 1-0, interrupt register 1-1, interrupt register 1-2, interrupt register N-0, interrupt register N-l, interrupt register N-2, and interrupt register X.
- the output of AND gate 240 is the output interrupt line labelled as "CoreO Interrupt 0." All of the bits of interrupt register 0-1 are OR'd together and sent to AND gate 242. The other input to AND gate 242 is Output Enable 0-1. The output of AND gate 242 is the output interrupt line labelled as "CoreO Interrupt 1.” All of the bits of interrupt register 0-2 are OR'd together and sent to AND gate 244. The other input to AND gate 244 is Output Enable 0-2. The output of AND gate 244 is the output interrupt line labelled as "CoreO Interrupt 2.”
- All of the bits of interrupt register 1 -0 are OR' d together and sent to AND gate 246.
- the other input to AND gate 246 is Output Enable 1-0.
- the output of AND gate 246 is the output interrupt line labelled as "Corel Interrupt 0."
- All of the bits of interrupt register 1-1 are OR'd together and sent to AND gate 248.
- the other input to AND gate 248 is Output Enable 1-1.
- the output of AND gate 28 is the output interrupt line labelled as "Corel Interrupt 1.”
- All of the bits of interrupt register 1-2 are OR'd together and sent to AND gate 250.
- the other input to AND gate 250 is Output Enable 1-2.
- the output of AND gate 250 is the output interrupt line labelled as "Corel Interrupt 2.”
- All of the bits of interrupt register N-0 are OR'd together and sent to AND gate 252.
- the other input to AND gate 252 is Output Enable N-0.
- the output of AND gate 252 is the output interrupt line labelled as "CoreN Interrupt 0."
- All of the bits of interrupt register N-l are OR'd together and sent to AND gate 254.
- the other input to AND gate 254 is Output Enable N-l .
- the output of AND gate 254 is the output interrupt line labelled as "CoreN Interrupt 1.”
- All of the bits of interrupt register N-2 are OR'd together and sent to AND gate 256.
- the other input to AND gate 256 is Output Enable N-2.
- the output of AND gate 256 is the output interrupt line labelled as "CoreN Interrupt 2.”
- interrupt register X All of the bits of interrupt register X are OR'd together and sent to AND gate 258.
- the other input to AND gate 258 is Output Enable X.
- the output of AND gate 258 is the output interrupt line labelled as "IPX Interrupt.”
- Figure 2 explicitly depicts ten output interrupt lines: CoreO InterruptO, CoreO Interrupt 1, CoreO Interrupt2, Corel InterruptO, Corel Interrupt 1, Corel Interrupt2, CoreN InterruptO, CoreN Interrupt 1, CoreN Interrupt2, and IPC Interrupt.
- Each of these interrupt lines connects to an interrupt input of the corresponding core or non-core block.
- the output interrupt lines CoreO InterruptO, CoreO Interrupt 1 and CoreO Interrupt2 are three output interrupt lines that all connect to the same core/processor (core 0). That is, in this example, core 0 has three interrupt inputs which are connected to CoreO InterruptO, CoreO Interrupt 1 and CoreO Interrupt2.
- Figure 2 discloses interrupt lines for N cores/processors (CoreO, Corel, ... Core N) as well as for a non-core block (block X).
- the interrupt controller can be used with more or less cores than indicated and more or less blocks that are not cores.
- Figure 2 only shows one output interrupt line for the non-core block (block X); however, that is only an example implementation and non-core blocks can have more than one output interrupt line.
- Figure 2 shows three output interrupt lines for cores; however, that is only an example implementation and cores can have more or less than three output interrupt lines. Also, in other embodiments, different cores can have different numbers of output interrupt lines.
- each interrupt register corresponds to one output interrupt line.
- interrupt register 0-0 corresponds to output interrupt line CoreO InterruptO
- interrupt register 0-1 corresponds to output interrupt line CoreO Interruptl
- interrupt register 0-2 corresponds to output interrupt line CoreO Interrupt2
- interrupt register 1-0 corresponds to output interrupt line Corel InterruptO
- all or a subset of interrupt registers can correspond to more than one output interrupt line.
- the interrupt registers each include a set of one or more OR gates (or logical OR circuit) for performing a logic OR operation on all the bits so that if any one bit of the register is at logic one, and the appropriate output enable signal is at logic one, the corresponding output interrupt line will be asserted.
- each interrupt register has 32 bits. However, in other embodiments more or less than 32 bits can be used. In some embodiments, different registers can have different numbers of bits so that not all the registers have the same number of bits.
- Each bit in the interrupt register can be used to identify one or more tasks that need to be performed in response to an interrupt. Examples of tasks include accessing data in memory, performing a function, fixing a problem, clearing data, etc. Almost any task can be included, as the system is configurable. In some cases each bit corresponds to a source of the interrupt. In other embodiments, multiple sources can share a bit. In some embodiments, the bits of the interrupt registers correspond to a source and task.
- the bits in the interrupt registers do not correspond to a source and only correspond to a task to be performed.
- the task and/or source associated with each bit in the interrupt register is configured by software.
- the bits can be configured by dedicated hardware register or other dedicated hardware.
- fabric slave circuit 200 is in communication with fabric 102 for receiving an MMIO address and MMIO write data.
- Fabric slave circuit 200 can also provide MMIO read data to fabric 102, as discussed below.
- the received MMIO address and MMIO write data is provided to MMIO interrupt routing circuit 202, which includes decoding circuitry to identify which output interrupt line is being addressed.
- MMIO interrupt routing circuit 202 includes decoding circuitry to identify which output interrupt line is being addressed.
- each address interrupt line corresponds to an interrupt register. Therefore, the MMIO address also points to an interrupt register.
- MMIO interrupt routing circuit 202 will route the received MMIO data to the address interrupt register.
- Figure 2 also shows write mode circuits 210, 212, 214, 216, 218, 220, 222, 224, 226 and 230 between MMIO interrupt routing circuit 202 and the interrupt registers.
- write mode circuits 210-230 can be part of MMIO interrupt routing circuitry 202 or can be separated. Circuits 210-230 are used to appropriately write data into the interrupt registers while optionally performing one or more operations on the data.
- Figure 2 On the left side of Figure 2 are a set of input interrupt lines including Interrupt Line 0, Interrupt Line 1, Interrupt Line 2, and Interrupt Line 3. These input interrupt lines implement line interrupts. Although Figure 2 shows four interrupt lines, a system could have more or less than four interrupt lines.
- the input interrupt lines are wire connections from other components of the computing system.
- Each of the input interrupt lines are connected to an AND gate along with an enable signal. For example, Interrupt line 0 and Enable int 0 are connected to AND gate 274, Interrupt line 1 and Enable int 1 are connected to AND gate 276, Interrupt line 2 and Enable int 2 are connected to AND gate 278, and Interrupt line 3 and Enable int 3 are connected to AND gate 280.
- the outputs of AND gate 274, AND gate 276, AND gate 278 and AND gate 280 are provided to line interrupt routing circuit 270.
- the enable signals allow the input interrupt lines to be disabled.
- the input interrupt lines are provided to interrupt routing circuit 270, which generates multiple bit data (e.g., 32 bits of data) for an input interrupt line and routes that multiple bit data to the appropriate interrupt register.
- Configuration register 272 (or multiple configuration registers), or software, can be used to configure the line interrupting routing circuit 270 in order to set which input interrupt lines map to which output interrupt lines (and corresponding interrupt registers), and what multiple bit data is generated for an input interrupt line.
- line interrupt routing circuit 270 can be preconfigured (hardwired).
- line interrupt routing circuit 270 when line interrupt routing circuit 270 creates the multiple bit data for the interrupt registers, all the bits will be zeros except for one bit which will be logic one. In other embodiments, more than one bit can be logic one.
- the 32 bits of information are then routed to the appropriate interrupt register via circuits 210-230, based on their preconfigured address.
- a direct line interrupt only alters one bit in the corresponding interrupt register (ie only sets one bit to logic 1). In the event that that multiple direct line interrupts come in simultaneously and each alter their own bit in the register, the interrupt handling software on the target can trace back and figure out who set the bits without any race conditions.
- MMIO reading circuit 204 is connected to the interrupt registers and is capable of reading the contents of any of the interrupt registers.
- Fabric slave circuit 200 will receive an MMIO read request with an address, and pass that address to MMIO reading circuit 204 to perform a read process.
- MMIO reading circuit 204 will use the address to access the appropriate interrupt register, read the contents of that register, and provide the contents back to fabric slave circuit 200, which will then provide the data onto the fabric 102 for transmission to the requester of the read operation.
- a source of an interrupt can send an MMIO based interrupt via fabric slave circuit 200 or a line interrupt via the input interrupt lines. If sending a line interrupt, the appropriate input interrupt line (interrupt line 0, interrupt line 1, interrupt line 2, interrupt line 3, . . .) will be asserted, line interrupt routing circuit 270 will generate 32 bits of data and that data will be routed to the preconfigured interrupt register. In the example where there are only four line inputs, data can only be routed to one of four interrupt registers of the total set of interrupt registers. At least one of the bits stored into the interrupt register will be a one which will cause the output of the corresponding AND gate (240-258) to assert an interrupt on the appropriate output interrupt line. The target of the output can then perform an MMIO read in order to access the full contents of the interrupt register to determine what tasks need to be performed and/or the source of the interrupt.
- the appropriate input interrupt line interrupt line 0, interrupt line 1, interrupt line 2, interrupt line 3, . . .
- line interrupt routing circuit 270 will generate 32 bits of data and
- a source of an interrupt can also perform an MMIO type interrupt by sending an MMIO write request via fabric 102. That MMIO write request will be received by fabric slave circuit 200, and the address and data will be routed to MMIO interrupt routing circuit 202.
- MMIO interrupt routing circuit 202 will use the MMIO address to route the MMIO data to the appropriate interrupt register. At least one of the bits of the MMIO data must be a logic one so that the appropriate output interrupt line will be asserted.
- the target of the interrupt will then perform an MMIO read in order to obtain the contents of the interrupt register via MMIO reading circuit 204. The target will use the contents of the appropriate interrupt register in order to determine what tasks and/or what source of the interrupt.
- Fabric slave circuit 200 and/or AND gates 274-280 can receive multiple interrupt requests for a same target.
- MMIO interrupt routing circuit 202 and/or line interrupt routing circuit 270 are configured to route the interrupt requests to interrupt registers corresponding to target interrupt lines so that multiple interrupt requests for the same target active at overlapping time periods get routed to the same interrupt register and concurrently populate the same interrupt register with different data indicating different work to be done for respective interrupts. This feature is accomplished using the non-destructive writing to the interrupt registers described below.
- MMIO interrupt routing circuit 202 is all configurable. That is, the architecture depicted in Figure 2 configurable in a number of dimensions, including the number of bits associated with an output interrupt line, the number of output interrupt lines, the number of input interrupt lines, etc.
- Figure 3 is a schematic diagram depicting a portion of an interrupt register and the corresponding write mode circuit (see 210-230 of Fig. 2).
- the interrupt register depicted in Figure 3 is interrupt register 0-0, then the components of Figure 3 can be found in write mode circuit 210.
- the interrupt register includes 32 bits.
- Figure 3 only shows five of those 32 bits as Reg[12], Reg[13], Reg[14], Reg[15], and Reg[16]. In other embodiments, more or less than 32 bits can be used.
- the circuit of Figure 3 has three inputs, depicted on the left side of the diagram.
- the signal Reg [14] is the current contents of one bit, Reg [14], in the interrupt register.
- the signal MMIO Data is one bit of the MMIO write data received by fabric slave circuit 200 and provided to MMIO interrupt routing circuit 202 for routing to the appropriate interrupt register. This is the one bit of data destined for Reg [14].
- the signal MMIO Data is provided to one input of multiplexer 304, an input of inverter 308 and an input of OR gate 306.
- This current data Reg [14] is connected to another input of OR gate 306 and an input of AND gate 310.
- the output of AND gate 310 is provided to an input of multiplexer 304.
- OR gate 306 is provided to multiplexer 304.
- the output of multiplexer 304 is provided to an input AND gate 312.
- the signal Address Decoded (received from MMIO interrupt routing circuit 202) is also provided to an input of AND gate 312.
- the output of AND gate 312 is connected to one input of OR gate 314.
- the other input to OR gate 314 is from the output od AND gate 316.
- the output of OR gate 314 is provided to the input of Reg [14] of the interrupt register.
- the configuration decode signal is also from line interruptjouting circuit 270 and is provided as a decoding signal to allow the data to pass to their interrupt register or prevent it from passing to the interrupt register.
- Figure 3 also shows OR gate 302 that performs the logical OR of all of the bits in the interrupt register.
- the output (labelled Target) is provided to the corresponding output interrupt line. If any of the bits of the interrupt register are logic one, then the output of OR gate 302 is at logic one and the corresponding output interrupt line for the target of the interrupt is asserted.
- one embodiment When writing MMIO data, one embodiment includes three write modes. In one mode the circuit of Figure 3 allows the new data to be written to the interrupt register by overwriting any existing contents of the interrupt register. In another embodiment, the MMIO register is added to the existing contents so that the existing contents is not destroyed. In this case, the new MMIO write data is logically ORed with the existing content. This can be referred to as a set operation. In a third write mode, known as a reset operation, the MMIO data is inverted and then ANDed with the existing content in order to remove the existing content. The third reset mode can be used by a target of an interrupt in order to clear the interrupt.
- fabric slave circuit 200 receives an MMIO address.
- the MMIO address is a 32 bit address. Of those 32 bits, 17 bits are used to address the interrupt controller. The remaining 15 bits is an address offset to the address of the interrupt controller.
- Figure 4 shows one example of an address offset.
- Figure 5 is a table providing an explanation of the various fields of Figure 4. Bit 0 and bit 1 are always set to 0 so that every address is four bit aligned. Bits 2 and 3 identifies a write mode. As discussed above, in one embodiment, there are three write modes: write (00), set (01) and reset (10). In other embodiments, there can be more than three write modes, less than three write modes or different write modes. Bit 4, 5 and 6 identify an Output interrupt line.
- a particular core can have three (or a different number of) output interrupt lines.
- Bits 4, 5 and 6 are used to select the appropriate output interrupt line for the core (or other type of block).
- Bits 7-13 are used to identify the processor/core or other type of block (as not all targets have to be cores).
- Bit 14 indicates whether the address is for an interrupt register or a configuration register.
- Figures 6, 7 and 8 are flowcharts which depict example operations for an MMIO based interrupt.
- Figure 6 is a flowchart describing one embodiment of a process performed by a source of an MMIO interrupt.
- an event occurs while the source is performing a task.
- the source is a processor (e.g., any of processors 106-118 of Figure 1, or other processor) that is performing a task under the control of software.
- the source must assert an interrupt to get that other processor or entity to perform the task.
- the source obtains configuration information so that it can identify the appropriate address and the appropriate write data associated with the interrupt. This information can be configured into software.
- tables and/or main memory can include the configuration information. In other embodiments the information can be hardwired into a circuit.
- the source will determine the target of the interrupt.
- the source determines the address of the target.
- the source gathers a set of data for the task to be used by the target of the interrupt.
- the task that the source wants the target to perform may involve performing one or more operations on the set of data. That data needs that to be operated on will be gathered in step 610.
- the source writes that data to some location in main memory by performing an MMIO write via fabric 102. In some embodiments, steps 610 and 612 are not performed, as data may not be written to main memory for the interrupt.
- step 614 the source determines the data to be stored in the appropriate interrupt register for the target. In the embodiment where there are 32 bits in the interrupt register, the source will determine the value of the 32 bits. In other embodiments, the source can simply determine which bits are logic one.
- step 618 the source performs an MMIO write. That is, in step 616, the source will send the write data for the interrupt register as MMIO write data on the fabric. In step 618, the source will send the target address as an MMIO write address on the fabric 102.
- FIG. 7 is a flowchart describing one embodiment of a process performed by interrupt controller 104 in response to the MMIO interrupt request received from fabric 102 (i.e., in response to the process of Figure 6).
- interrupt controller 104 receives an MMIO address from fabric 102 at fabric slave circuit 200.
- interrupt controller 104 receives the MMIO data from fabric 102 fabric slave circuit 200.
- Steps 702 and 704 comprise fabric slave circuit 200 receiving an MMIO write request.
- MMIO interrupt routing circuit 202 determines the interrupt output line based on the processor ID and interrupt line in the address (see Figures 4 and 5).
- MMIO interrupt routing circuit 202 routes the MMIO data to the appropriate interrupt register.
- the write mode circuit of interrupt controller 104 performs the appropriate operation on the MMIO data. For example, based on the write mode, the data can be logically OR'd with existing content or inverted and logically A D'd with the existing content. After performing that operation on the MMIO data, if any, the post operation data is stored in the appropriate interrupt register in step 712. Because at least one bit of the data stored in the interrupt register should now be a logic one, and all of the bits are OR'd together, the corresponding output interrupt line connected to the interrupt register is asserted in step 714.
- Figure 8 is a flowchart describing one embodiment of a process performed by the target of an interrupt in response to the interrupt being asserted by the interrupt controller. That is the process of Figure 8 will be performed by the target in response to the process of Figure 7 being performed by interrupt controller 104.
- the target detects the assertion of its interrupt line.
- the target invoke its interrupt service routine, which in one embodiment is software that runs on the target for servicing interrupts.
- the interrupt service routine reads the appropriate interrupt register by performing an MMIO read via fabric 102 and using its own Processor ID and Interrupt Line (see Figures 4 and 5) in the MMIO address in order to access the appropriate interrupt register.
- the data from the interrupt register is transmitted to the target via fabric 102.
- step 810 the target determines whether the interrupt register has data for more than one interrupt. As explained above, it is possible that when the data was written to the interrupt register there was existing data. In order to write the new data without destroying the existing data, the new data is logically OR'd with the existing data. In one embodiment, each interrupt only gets to set one bit of data in the interrupt register. Therefore, if there are more than one bit set, then the target knows there is data for more than one interrupt. The target will only service one interrupt at a time. Therefore the target will unpack the data and choose one of the interrupts to service. In other embodiments, there can be other mathematical functions for packing and unpacking data for multiple interrupts. If the interrupt register has data for more than one interrupt, it is unpacked in step 812.
- step 814 the target identifies the bits of interrupt register that are set to logic one. Based on that set bit, the target identified the source and/or task that needs to be performed.
- Step 816 can be based on configuration information from the software.
- step 818 the target will perform the task corresponding to the bit(s) read from the interrupt register.
- step 818 includes accessing the data that was written to main memory by the source in step 612 of Figure 6.
- the data that is read from main memory includes identification of additional tasks, as well as data. After step 818 is completed, the task associated with the interrupt has been completed. Therefore, the interrupt service routine may clear the interrupt.
- the interrupt service routine will create a data set (32 bits in one embodiment) to be used to clear the interrupt information from the interrupt register.
- the data created in step 822 is sent by the target as part of an MMIO write to the fabric using its own Processor ID and Interrupt Line (see Figures 4 and 5) in the MMIO address in order to access the appropriate interrupt register. That MMIO address and write data will be received by fabric slave circuit 200 and provided to MMIO interrupt routing 202, which will then write the data to the appropriately addressed register.
- the MMIO address transmitted in step 826 will have a write mode (see Figure 5) of 10, corresponding to reset so that the data will be inverted and A Ded with the existing data in order to reset the data to 0.
- interrupt controller 104 can receive MMIO type interrupt requests as well as line interrupt requests.
- Figure 9 is a flowchart describing one embodiment of a process performed by a source entity to assert a line interrupt through the interrupt controller.
- Figure 10 is a flowchart describing one embodiment of a process performed by interrupt controller 104 in response to receiving a line interrupt request. The target of the interrupt will perform the process of Figure 8 in response to receiving an interrupt based on a line interrupt request.
- step 902 of Figure 9 an event occurs while performing a task (similar to step 602 described above).
- the source obtains configuration information so that it can identify the appropriate address and the appropriate write data associated with the interrupt.
- This information can be configured into software.
- tables and/or main memory e.g., DRAM 122 can include the configuration information.
- the information can be hardwired into a circuit.
- the source determines the target of the interrupt based on the configuration information from step 904.
- step 908 the source gathers a dataset for the interrupt task.
- the gathered data set can be written to main memory in a predetermined location via an MMIO write using the fabric.
- steps 908 and 910 will not be performed, as data may not be written to main memory for the interrupt.
- the source assert the appropriate line interrupt, such as (for example) input interrupt lines depicted in Figure 2 (Interrupt Line 0, Interrupt Line 1, Interrupt Line 2 or Interrupt Line 3).
- Figure 10 is a flowchart describing one embodiment of a process performed by the interrupt controller in response to receiving a line interrupt request.
- the process of Figure 10 is performed in response to the process of Figure 9.
- interrupt controller 104 receives an assertion of one of its interrupt lines (see, e.g., Interrupt Line 0, Interrupt Line 1, Interrupt Line 2 or Interrupt Line 3 of Figure 2).
- line interrupt routing circuit 270 determines the target device.
- line interrupt routing circuit 270 determines the target's output interrupt line that will be used to assert the interrupt. As discussed above, some target devices can have more than one interrupt line.
- line interrupt routing circuit 270 creates the multi-bit data to be stored in the interrupt register.
- each interrupt register stores 32 bits of data; therefore, line interrupt routing circuit 270 create 32 bits of data.
- 31 are logic zero and one would be logic one. In other embodiments, more than one bit can be logic one.
- steps 1004, 1006 and 1008 are performed based on configured information such as configuration information found in configuration register(s) 272.
- step 1010 line interrupt routing circuit 270 routes the created data to the appropriate interrupt register.
- step 1012 that data is stored in the interrupt register (e.g., via AND gate 316 and OR gate 314 of Figure 3).
- step 1014 because at least one bit of the interrupt register is set to one, the corresponding output interrupt line is asserted in step 1014.
- MMIO interrupt routing circuit 202 and/or line interrupt routing circuit 270 are configured to route interrupt request data into interrupt registers such that multiple interrupt requests for the same target active at overlapping time periods get routed to a same interrupt register and concurrently populate the same interrupt register with different data indicating different tasks to be done for different respective interrupts. As depicted in Figure 3, if any one bit of the interrupt register is logic one, and therefore if any interrupt is still active, the corresponding interrupt output line will continue to be asserted.
- FIG 11 is a flowchart describing example process performed when two source entities request interrupt to the same target.
- the process of Figure 11 is performed by interrupt controller 104.
- interrupt controller 104 receives a first request (e.g., MMIO write request that includes an MMIO address and MMIO write data) for a first interrupt for a first target.
- first interrupt data e.g., MMIO write data that indicates a task to be performed
- Step 1104 includes performing the process of Figure 6 (or the process of Figure 9).
- the first interrupt output line will be asserted in response to the data in the first interrupt register.
- step 1108 the interrupt controller will receive a second request (e.g., MMIO write request that includes an MMIO address and MMIO write data) for a second interrupt to the first target while the first interrupt is still active.
- step 1108 includes receiving a line interrupt request (e.g. at Interrupt Line 0, Interrupt Line 1, Interrupt Line 2 or Interrupt Line 3) for an interrupt to the same first target.
- second interrupt data e.g., data that indicates a task to be performed
- the second interrupt will be routed to and stored in the first interrupt register in a nondestructive manner so that both sets of data are concurrently in the interrupt register.
- Step 1110 can include performing the process of Figure 6 for an MMIO based interrupt or the process of Figure 9 for a line based interrupt. If the interrupt is a line based interrupt then line interrupt routing circuit 270 generates the multiple (e.g., 32) bit second interrupt data. MMIO interrupt routing circuit 202 and/or line interrupt routing circuit 270 are configured to route interrupt request data into interrupt registers such that multiple interrupt requests for the same target active at overlapping time periods get routed to a same interrupt register and concurrently populate the same interrupt register with different data indicating different tasks to be done for different respective interrupts. In step 1112, interrupt controller 104 will continue to assert the first interrupt output line as long as either the first interrupt data or the second interrupt data remains in the interrupt register. That is, the interrupt output line will continue to be asserted as long as either one of the interrupts are active and in this example, both interrupts are concurrently active for at least a period of time.
- the interrupt is a line based interrupt then line interrupt routing circuit 270 generates the multiple (e.g.
- video processor 118 will see the two bits set and understand that there are two interrupts pending. Configuration information will be used to understand the significance of each bit and what task must be performed by each interrupt. After performing the task asserted with the first interrupt, video processor may perform an MMIO read in order to clear one of the bits in interrupt 1-2. After performing the second task, video processor 118 would perform another MMIO write to interrupt controller 104 in order to clear the second bit of interrupt register interrupt 1 -2.
- a connection may be a direct connection or an indirect connection (e.g., via one or more other parts).
- the element when an element is referred to as being connected or coupled to another element, the element may be directly connected to the other element or indirectly connected to the other element via intervening elements.
- the element When an element is referred to as being directly connected to another element, then there are no intervening elements between the element and the other element.
- two devices are "in communication" with each other is they can communicate via a direct or indirect (e.g., via one or more other parts) connection.
- One embodiment includes an interrupt controller, comprising: a fabric slave circuit connected to a fabric for a computing system, the fabric slave circuit configured to receive an MMIO write request including an MMIO address and MMIO write data, the MMIO write data includes an indication of a task to be done for a MMIO interrupt; a plurality of output interrupt lines; a plurality of interrupt registers, each interrupt register corresponds to at least one output interrupt line of the plurality of output interrupt lines; and a MMIO routing circuit connected to the fabric slave and the plurality of interrupt registers.
- the MMIO routing circuit is configured to route the received MMIO write data to a targeted interrupt register corresponding to a targeted output interrupt line identified by the received MMIO address so that the targeted interrupt register stores the indication of the task to be done for the MMIO interrupt. Storing of the indication of the task to be done for the MMIO interrupt in the targeted interrupt register triggers assertion of the targeted output interrupt line.
- One alternative further includes a reading circuit, connected to the fabric slave circuit and the plurality of interrupt registers, configured to enable the reading of the contents of the interrupt registers in response to an MMIO read received at the fabric slave circuit.
- the computing system includes multiple source entities connected to the fabric, the computing system includes multiple targets connected to the output interrupt lines, and the fabric slave circuit is configured to route MMIO write requests received from any of the source entities to any of the targets based MMIO addresses.
- One embodiment includes a method of processing interrupts, comprising: receiving an MMIO write request including an MMIO address and MMIO write data, the MMIO write data includes an indication of first work to be done for a first interrupt for a first target; storing the MMIO write data, including the indication of a first task to be done for the first interrupt, in a data store; receiving a line interrupt signal for a second interrupt for the first target; automatically generating multiple bit line interrupt data that includes an indication of a second task to be done for the second interrupt for the first target; storing the multiple bit line interrupt data in the data store; and asserting an interrupt signal to the first target.
- One embodiment includes a circuit for processing interrupts, comprising: a communication interface circuit configured to receive multiple interrupt requests for a same target; a plurality of output interrupt lines connected to targets; a plurality of interrupt registers, each interrupt register corresponds to one output interrupt line of the plurality of interrupt lines; routing circuitry connected to the communication interface circuit and the plurality of interrupt registers, the routing circuitry configured to route the interrupt requests to interrupt registers corresponding to target interrupt lines so that multiple interrupt requests for the same target active at overlapping time periods get routed to the same interrupt register and concurrently populate the same interrupt register with different data indicating different work to be done for respective interrupts, populating interrupt registers causes corresponding output interrupt lines to be asserted; and a reading circuit connected to the communication interface circuit and the plurality of interrupt registers such that the reading circuit is configured to enable the reading of the contents of the interrupt registers in response to requests to read received at the communication interface circuit.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Bus Control (AREA)
Abstract
Description
Claims
Applications Claiming Priority (2)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US14/704,092 US9747225B2 (en) | 2015-05-05 | 2015-05-05 | Interrupt controller |
| PCT/US2016/026299 WO2016178784A1 (en) | 2015-05-05 | 2016-04-07 | Interrupt controller |
Publications (2)
| Publication Number | Publication Date |
|---|---|
| EP3292474A1 true EP3292474A1 (en) | 2018-03-14 |
| EP3292474B1 EP3292474B1 (en) | 2019-11-27 |
Family
ID=55752818
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| EP16716445.8A Active EP3292474B1 (en) | 2015-05-05 | 2016-04-07 | Interrupt controller |
Country Status (4)
| Country | Link |
|---|---|
| US (1) | US9747225B2 (en) |
| EP (1) | EP3292474B1 (en) |
| CN (1) | CN107636630B (en) |
| WO (1) | WO2016178784A1 (en) |
Families Citing this family (9)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US10585826B2 (en) * | 2016-01-25 | 2020-03-10 | Advanced Micro Devices, Inc. | Using processor types for processing interrupts in a computing device |
| WO2020055921A1 (en) * | 2018-09-10 | 2020-03-19 | GigaIO Networks, Inc. | Methods and apparatus for high-speed data bus connection and fabric management |
| US11403247B2 (en) | 2019-09-10 | 2022-08-02 | GigaIO Networks, Inc. | Methods and apparatus for network interface fabric send/receive operations |
| EP4049143A4 (en) | 2019-10-25 | 2024-02-21 | GigaIO Networks, Inc. | Methods and apparatus for dma engine descriptors for high speed data systems |
| KR102823707B1 (en) * | 2019-11-28 | 2025-06-24 | 한국전자통신연구원 | Electronic Device and the method for Controlling interrupt configuration and Storage Medium |
| US11630789B2 (en) * | 2020-09-11 | 2023-04-18 | Apple Inc. | Scalable interrupts |
| CN113238802A (en) * | 2021-05-28 | 2021-08-10 | 上海阵量智能科技有限公司 | Interrupt distributor, data processing chip, interrupt distribution method and data processing method |
| US11934313B2 (en) | 2021-08-23 | 2024-03-19 | Apple Inc. | Scalable system on a chip |
| CN119718979B (en) * | 2023-09-28 | 2025-10-24 | 北京字跳网络技术有限公司 | Method, device, equipment and storage medium for managing line interruption |
Family Cites Families (33)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| JPH02128267A (en) | 1988-11-09 | 1990-05-16 | Fujitsu Ltd | Communication system by sharing memory |
| CA2131235A1 (en) * | 1993-09-10 | 1995-03-11 | Randall L. Hess | Personal computer with keyboard and auxiliary device emulation |
| US5568649A (en) | 1994-05-31 | 1996-10-22 | Advanced Micro Devices | Interrupt cascading and priority configuration for a symmetrical multiprocessing system |
| US5644772A (en) * | 1994-08-12 | 1997-07-01 | Advanced Micro Devices, Inc. | Signal dispatching for C language interrupt handling |
| US5708813A (en) * | 1994-12-12 | 1998-01-13 | Digital Equipment Corporation | Programmable interrupt signal router |
| US5745772A (en) | 1996-08-02 | 1998-04-28 | Micron Electronics, Inc. | Advanced programmable interrupt controller |
| US5987538A (en) | 1997-08-15 | 1999-11-16 | Compaq Computer Corporation | Apparatus for initiating generation of an inter-processor interrupt by a peripheral device not directly connected to any of the multi-processor local interrupt controllers |
| US6400830B1 (en) | 1998-02-06 | 2002-06-04 | Compaq Computer Corporation | Technique for tracking objects through a series of images |
| US6222846B1 (en) * | 1998-04-22 | 2001-04-24 | Compaq Computer Corporation | Method and system for employing a non-masking interrupt as an input-output processor interrupt |
| US6370606B1 (en) | 1998-11-05 | 2002-04-09 | Compaq Computer Corporation | System and method for simulating hardware interrupts in a multiprocessor computer system |
| US6205508B1 (en) | 1999-02-16 | 2001-03-20 | Advanced Micro Devices, Inc. | Method for distributing interrupts in a multi-processor system |
| US6842811B2 (en) * | 2000-02-24 | 2005-01-11 | Pts Corporation | Methods and apparatus for scalable array processor interrupt detection and response |
| US6539448B1 (en) * | 2000-05-26 | 2003-03-25 | Texas Instruments Incorporated | Priority first come first serve interrupt controller |
| US7069367B2 (en) * | 2000-12-29 | 2006-06-27 | Intel Corporation | Method and apparatus for avoiding race condition with edge-triggered interrupts |
| US7177967B2 (en) * | 2003-09-30 | 2007-02-13 | Intel Corporation | Chipset support for managing hardware interrupts in a virtual machine system |
| US7197588B2 (en) * | 2004-03-31 | 2007-03-27 | Intel Corporation | Interrupt scheme for an Input/Output device |
| US7689747B2 (en) | 2005-03-28 | 2010-03-30 | Microsoft Corporation | Systems and methods for an augmented interrupt controller and synthetic interrupt sources |
| US7500039B2 (en) * | 2005-08-19 | 2009-03-03 | International Business Machines Corporation | Method for communicating with a processor event facility |
| US7415557B2 (en) | 2006-06-06 | 2008-08-19 | Honeywell International Inc. | Methods and system for providing low latency and scalable interrupt collection |
| US7725637B2 (en) | 2007-12-31 | 2010-05-25 | Intel Corporation | Methods and apparatus for generating system management interrupts |
| US8103816B2 (en) | 2008-10-28 | 2012-01-24 | Intel Corporation | Technique for communicating interrupts in a computer system |
| TWI393002B (en) * | 2009-09-22 | 2013-04-11 | Inventec Corp | Method for detecting abnormal of interrupt pins |
| US9081501B2 (en) | 2010-01-08 | 2015-07-14 | International Business Machines Corporation | Multi-petascale highly efficient parallel supercomputer |
| US8650349B2 (en) * | 2010-05-26 | 2014-02-11 | International Business Machines Corporation | Memory mapped input/output bus address range translation for virtual bridges |
| US8589613B2 (en) * | 2010-06-02 | 2013-11-19 | Intel Corporation | Method and system to improve the operations of an integrated non-transparent bridge device |
| US8553998B1 (en) | 2011-08-16 | 2013-10-08 | Google Inc. | Depthmap compression using a primitive |
| US9147123B2 (en) | 2012-05-31 | 2015-09-29 | Qualcomm Incorporated | System and method to perform feature detection and to determine a feature score |
| US9304813B2 (en) * | 2012-07-18 | 2016-04-05 | Intel Corporation | CPU independent graphics scheduler for performing scheduling operations for graphics hardware |
| US9043521B2 (en) * | 2012-11-13 | 2015-05-26 | Intel Corporation | Technique for communicating interrupts in a computer system |
| US9465760B2 (en) * | 2013-11-18 | 2016-10-11 | Futurewei Technologies, Inc. | Method and apparatus for delivering MSI-X interrupts through non-transparent bridges to computing resources in PCI-express clusters |
| US20150261709A1 (en) * | 2014-03-14 | 2015-09-17 | Emilio Billi | Peripheral component interconnect express (pcie) distributed non- transparent bridging designed for scalability,networking and io sharing enabling the creation of complex architectures. |
| US10394730B2 (en) * | 2014-11-14 | 2019-08-27 | Cavium, Llc | Distributed interrupt scheme in a multi-processor system |
| US10387343B2 (en) * | 2015-04-07 | 2019-08-20 | International Business Machines Corporation | Processing of events for accelerators utilized for parallel processing |
-
2015
- 2015-05-05 US US14/704,092 patent/US9747225B2/en active Active
-
2016
- 2016-04-07 EP EP16716445.8A patent/EP3292474B1/en active Active
- 2016-04-07 WO PCT/US2016/026299 patent/WO2016178784A1/en not_active Ceased
- 2016-04-07 CN CN201680026322.0A patent/CN107636630B/en active Active
Also Published As
| Publication number | Publication date |
|---|---|
| US20160328339A1 (en) | 2016-11-10 |
| CN107636630A (en) | 2018-01-26 |
| EP3292474B1 (en) | 2019-11-27 |
| CN107636630B (en) | 2021-03-16 |
| WO2016178784A1 (en) | 2016-11-10 |
| US9747225B2 (en) | 2017-08-29 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| US9747225B2 (en) | Interrupt controller | |
| CN102567109B (en) | Interrupt distribution scheme | |
| US9910693B2 (en) | Virtual machine to host device bridging | |
| KR101056153B1 (en) | Method and apparatus for conditional broadcast of barrier operations | |
| US20130173837A1 (en) | Methods and apparatus for implementing pci express lightweight notification protocols in a cpu/memory complex | |
| JP2022025000A (en) | Copy command processing method and storage device | |
| CN104298628A (en) | Data storage device arbitration circuit and method for concurrent access | |
| US9875131B2 (en) | Virtual PCI device based hypervisor bypass using a bridge virtual machine | |
| US9575796B2 (en) | Virtual device timeout by memory offlining | |
| JP7609729B2 (en) | Command processing method and storage device | |
| US7600082B2 (en) | Virtualization logic | |
| US10120435B2 (en) | Multiprocessing system with peripheral power consumption control | |
| US8938588B2 (en) | Ensuring forward progress of token-required cache operations in a shared cache | |
| US20160103769A1 (en) | Processing device and method thereof | |
| JP5981004B2 (en) | Semiconductor device | |
| US9858222B2 (en) | Register access control among multiple devices | |
| US6119191A (en) | Performing PCI access cycles through PCI bridge hub routing | |
| US9152588B2 (en) | Race-free level-sensitive interrupt delivery using fabric delivered interrupts | |
| US7240144B2 (en) | Arbitration of data transfer requests | |
| US10083142B2 (en) | Addressing topology specific replicated bus units | |
| US9514083B1 (en) | Topology specific replicated bus unit addressing in a data processing system | |
| JP5805546B2 (en) | Semiconductor device | |
| US8380908B2 (en) | Emulation of an input/output advanced programmable interrupt controller | |
| JPH02257356A (en) | Data transfer method for multiprocessor system |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| STAA | Information on the status of an ep patent application or granted ep patent |
Free format text: STATUS: THE INTERNATIONAL PUBLICATION HAS BEEN MADE |
|
| PUAI | Public reference made under article 153(3) epc to a published international application that has entered the european phase |
Free format text: ORIGINAL CODE: 0009012 |
|
| STAA | Information on the status of an ep patent application or granted ep patent |
Free format text: STATUS: REQUEST FOR EXAMINATION WAS MADE |
|
| 17P | Request for examination filed |
Effective date: 20171103 |
|
| AK | Designated contracting states |
Kind code of ref document: A1 Designated state(s): AL AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HR HU IE IS IT LI LT LU LV MC MK MT NL NO PL PT RO RS SE SI SK SM TR |
|
| AX | Request for extension of the european patent |
Extension state: BA ME |
|
| DAV | Request for validation of the european patent (deleted) | ||
| DAX | Request for extension of the european patent (deleted) | ||
| GRAP | Despatch of communication of intention to grant a patent |
Free format text: ORIGINAL CODE: EPIDOSNIGR1 |
|
| STAA | Information on the status of an ep patent application or granted ep patent |
Free format text: STATUS: GRANT OF PATENT IS INTENDED |
|
| INTG | Intention to grant announced |
Effective date: 20190102 |
|
| GRAJ | Information related to disapproval of communication of intention to grant by the applicant or resumption of examination proceedings by the epo deleted |
Free format text: ORIGINAL CODE: EPIDOSDIGR1 |
|
| STAA | Information on the status of an ep patent application or granted ep patent |
Free format text: STATUS: REQUEST FOR EXAMINATION WAS MADE |
|
| GRAS | Grant fee paid |
Free format text: ORIGINAL CODE: EPIDOSNIGR3 |
|
| INTC | Intention to grant announced (deleted) | ||
| STAA | Information on the status of an ep patent application or granted ep patent |
Free format text: STATUS: GRANT OF PATENT IS INTENDED |
|
| GRAP | Despatch of communication of intention to grant a patent |
Free format text: ORIGINAL CODE: EPIDOSNIGR1 |
|
| INTG | Intention to grant announced |
Effective date: 20190614 |
|
| GRAA | (expected) grant |
Free format text: ORIGINAL CODE: 0009210 |
|
| STAA | Information on the status of an ep patent application or granted ep patent |
Free format text: STATUS: THE PATENT HAS BEEN GRANTED |
|
| AK | Designated contracting states |
Kind code of ref document: B1 Designated state(s): AL AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HR HU IE IS IT LI LT LU LV MC MK MT NL NO PL PT RO RS SE SI SK SM TR |
|
| REG | Reference to a national code |
Ref country code: GB Ref legal event code: FG4D |
|
| REG | Reference to a national code |
Ref country code: CH Ref legal event code: EP |
|
| REG | Reference to a national code |
Ref country code: AT Ref legal event code: REF Ref document number: 1207479 Country of ref document: AT Kind code of ref document: T Effective date: 20191215 |
|
| REG | Reference to a national code |
Ref country code: DE Ref legal event code: R096 Ref document number: 602016025053 Country of ref document: DE |
|
| REG | Reference to a national code |
Ref country code: IE Ref legal event code: FG4D |
|
| REG | Reference to a national code |
Ref country code: NL Ref legal event code: FP |
|
| REG | Reference to a national code |
Ref country code: LT Ref legal event code: MG4D |
|
| PG25 | Lapsed in a contracting state [announced via postgrant information from national office to epo] |
Ref country code: SE Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 Ref country code: LV Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 Ref country code: BG Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20200227 Ref country code: FI Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 Ref country code: GR Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20200228 Ref country code: NO Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20200227 Ref country code: LT Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 |
|
| PG25 | Lapsed in a contracting state [announced via postgrant information from national office to epo] |
Ref country code: HR Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 Ref country code: IS Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20200327 Ref country code: RS Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 |
|
| PG25 | Lapsed in a contracting state [announced via postgrant information from national office to epo] |
Ref country code: AL Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 |
|
| PG25 | Lapsed in a contracting state [announced via postgrant information from national office to epo] |
Ref country code: PT Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20200419 Ref country code: EE Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 Ref country code: DK Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 Ref country code: CZ Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 Ref country code: RO Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 Ref country code: ES Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 |
|
| REG | Reference to a national code |
Ref country code: DE Ref legal event code: R097 Ref document number: 602016025053 Country of ref document: DE |
|
| PG25 | Lapsed in a contracting state [announced via postgrant information from national office to epo] |
Ref country code: SM Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 Ref country code: SK Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 |
|
| REG | Reference to a national code |
Ref country code: AT Ref legal event code: MK05 Ref document number: 1207479 Country of ref document: AT Kind code of ref document: T Effective date: 20191127 |
|
| PLBE | No opposition filed within time limit |
Free format text: ORIGINAL CODE: 0009261 |
|
| STAA | Information on the status of an ep patent application or granted ep patent |
Free format text: STATUS: NO OPPOSITION FILED WITHIN TIME LIMIT |
|
| 26N | No opposition filed |
Effective date: 20200828 |
|
| PG25 | Lapsed in a contracting state [announced via postgrant information from national office to epo] |
Ref country code: SI Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 Ref country code: AT Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 Ref country code: MC Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 Ref country code: PL Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 |
|
| REG | Reference to a national code |
Ref country code: CH Ref legal event code: PL |
|
| PG25 | Lapsed in a contracting state [announced via postgrant information from national office to epo] |
Ref country code: LI Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES Effective date: 20200430 Ref country code: IT Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 Ref country code: LU Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES Effective date: 20200407 Ref country code: CH Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES Effective date: 20200430 |
|
| REG | Reference to a national code |
Ref country code: BE Ref legal event code: MM Effective date: 20200430 |
|
| PG25 | Lapsed in a contracting state [announced via postgrant information from national office to epo] |
Ref country code: BE Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES Effective date: 20200430 |
|
| PG25 | Lapsed in a contracting state [announced via postgrant information from national office to epo] |
Ref country code: IE Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES Effective date: 20200407 |
|
| PG25 | Lapsed in a contracting state [announced via postgrant information from national office to epo] |
Ref country code: TR Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 Ref country code: MT Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 Ref country code: CY Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 |
|
| PG25 | Lapsed in a contracting state [announced via postgrant information from national office to epo] |
Ref country code: MK Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT Effective date: 20191127 |
|
| P01 | Opt-out of the competence of the unified patent court (upc) registered |
Effective date: 20230430 |
|
| PGFP | Annual fee paid to national office [announced via postgrant information from national office to epo] |
Ref country code: FR Payment date: 20240320 Year of fee payment: 9 |
|
| PGFP | Annual fee paid to national office [announced via postgrant information from national office to epo] |
Ref country code: NL Payment date: 20250319 Year of fee payment: 10 |
|
| PGFP | Annual fee paid to national office [announced via postgrant information from national office to epo] |
Ref country code: GB Payment date: 20250319 Year of fee payment: 10 |
|
| PGFP | Annual fee paid to national office [announced via postgrant information from national office to epo] |
Ref country code: DE Payment date: 20250319 Year of fee payment: 10 |