US8364862B2 - Delegating a poll operation to another device - Google Patents

Delegating a poll operation to another device Download PDF

Info

Publication number
US8364862B2
US8364862B2 US12/482,614 US48261409A US8364862B2 US 8364862 B2 US8364862 B2 US 8364862B2 US 48261409 A US48261409 A US 48261409A US 8364862 B2 US8364862 B2 US 8364862B2
Authority
US
United States
Prior art keywords
interconnect
poll
core
memory
address
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.)
Expired - Fee Related, expires
Application number
US12/482,614
Other versions
US20100318693A1 (en
Inventor
Michael J. Espig
Zhen Fang
Ravishankar Iyer
David J. Harriman
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.)
Intel Corp
Original Assignee
Intel Corp
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 Intel Corp filed Critical Intel Corp
Priority to US12/482,614 priority Critical patent/US8364862B2/en
Assigned to INTEL CORPORATION reassignment INTEL CORPORATION ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: ESPIG, MICHAEL J., FANG, ZHEN, IYER, RAVISHANKAR, HARRIMAN, DAVID J.
Priority to DE201011002425 priority patent/DE112010002425B4/en
Priority to CN201080025454.4A priority patent/CN102804155B/en
Priority to PCT/US2010/027003 priority patent/WO2010144164A1/en
Publication of US20100318693A1 publication Critical patent/US20100318693A1/en
Priority to US13/729,172 priority patent/US8762599B2/en
Application granted granted Critical
Publication of US8364862B2 publication Critical patent/US8364862B2/en
Expired - Fee Related legal-status Critical Current
Adjusted expiration legal-status Critical

Links

Images

Classifications

    • 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
    • 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/54Interprogram communication
    • G06F9/542Event management; Broadcasting; Multicasting; Notifications

Definitions

  • Modern computer systems typically include a processor and various other components that are coupled together.
  • many systems include one or more peripheral or input/output (IO) devices.
  • IO input/output
  • the core/thread that needs to know the completion status has to continuously check (e.g., via a busy spin operation) on a memory mapped input/output (MMIO) status register, preventing itself from entering a low power state.
  • MMIO memory mapped input/output
  • repetitive polling on an uncacheable MMIO address results in a large amount of traffic on a system interconnect.
  • the fast response time comes at a cost of power consumption (a major issue especially for ultra-low power environments) and waste of system resources.
  • An interrupt method avoids busy spinning of a processor on the status register. While waiting, the core/thread can either context switch to execute another process or enter a lower power state. Completion of the task on the IO device triggers an interrupt into the OS. However, in a typical system, several hundred cache misses and tens of thousand clock cycles are induced by a kernel interrupt handler. This performance overhead of interrupt handling is not acceptable for many fine-grained logic blocks.
  • FIG. 1 is a block diagram of a system in accordance with one embodiment of the present invention.
  • FIG. 2 is a flow diagram of a method in accordance with one embodiment of the present invention.
  • FIG. 3 is a block diagram of a system in accordance with another embodiment of the present invention.
  • a poll delegation technique may be implemented in which an interconnect serves as a delegate in a polling and notification process.
  • the interconnect may be an input/output (IO) interconnect, although the scope of the present invention is not limited in this regard.
  • the interconnect polls IO devices for a host processor such as a central processing unit (CPU) and notifies an application software of a given event using one of a number of techniques such as a test and hold operation, or by update to a user-selected memory location that triggers a processor's exit from a power optimized state.
  • user-level instructions such as MONITOR/MWAIT may be used to notify application software.
  • poll delegation may enable a response time as short as polling, and power consumption/resource usage as low as an interrupt-based technique, thus providing user-level notification of IO device status without the need for polling or interrupts.
  • the IO interconnect may include specific-purpose hardware to poll status register(s) of an IO device. Then upon a status change, the IO interconnect can issue a write operation (e.g., a coherent write) to the memory address that is being monitored by the host. The coherent write will be detected by this hardware, and cause the thread that is waiting on the address to resume execution.
  • a processor can stay in a low power state until the IO device is done with its task, and resume execution almost as fast as if it had been busy-spinning. No change is required in the processor core, the cache, the system coherent interconnect, or the IO devices.
  • the MONITOR/MWAIT pair of instructions can support inter-thread synchronization.
  • the instruction pair can be available at all privilege levels.
  • MONITOR can be used to enable a CPU to set up monitoring hardware of the CPU to detect stores to an effective address range (typically a cacheline). This address range belongs to a coherent, write-back address range.
  • cache coherency hardware may monitor for a write to the destination address. When that write occurs the cache coherency controller will send a message to the processor to come out of the low power state. After this set up, the succeeding MWAIT instruction puts the processor core into a selected low-power state (e.g., a clock-gated state or a power-gated state).
  • MWAIT behaves like a no operation (NOP). While these MONITOR and MWAIT instructions are designed to implement performance and power-optimized inter-thread synchronization, embodiments can leverage the instructions for IO device completion notification.
  • system 100 may be a system on a chip (SoC) that includes various components interconnected together and which may provide mechanisms to handle polling delegation in accordance with an embodiment of the present invention.
  • SoC 100 may include a plurality of processor cores only one of which, core 110 a , is shown for ease of illustration.
  • the one or more cores may be coupled via a coherent interconnect 115 to one or more cache memory 120 a .
  • Coherent interconnect 115 may include various hardware, software and/or firmware to implement a cache coherency protocol, such as a modified exclusive shared invalid (MESI) protocol, to maintain a coherent view of information stored within the system.
  • a cache coherency protocol such as a modified exclusive shared invalid (MESI) protocol
  • MMI modified exclusive shared invalid
  • coherent interconnect 115 may be a layered protocol including various layers such as a protocol layer, a link layer and possibly a physical layer (where the system is not on a single die).
  • coherent interconnect 115 may be coupled via a hub 120 to a memory controller 130 that in turn may be coupled to a system memory, e.g., dynamic random access memory (DRAM), for example.
  • DRAM dynamic random access memory
  • coherent interconnect 115 may be coupled to an upstream side of an IO interconnect 140 which may be of a given communication protocol such as a Peripheral Component Interconnect Express (PCI ExpressTM (PCIeTM)) protocol in accordance with links based on the PCI ExpressTM Specification Base Specification version 2.0 (published Jan. 17, 2007) (hereafter the PCIeTM Specification), or another such protocol.
  • IO interconnect 140 may include a polling table 150 in accordance with an embodiment of the present invention. While shown as being present in the interconnect, other implementations may locate this buffer elsewhere in close relation to the interconnect.
  • various devices e.g., devices 160 0 and 160 1 , which may be IO devices, intellectual property (IP) blocks or so forth may be coupled to a downstream side of IO interconnect 140 .
  • polling table 150 stores a plurality of entries including, e.g., entry 156 .
  • Each entry may include a device monitored location such as an address of a status register present in one of devices 160 , a memory monitored address, which may correspond to a physical address in system memory that corresponds to a monitored location for an MWAIT instruction, and a initial value, which may be the initial value of the device monitored location, e.g., the initial value of the status register.
  • Embodiments thus essentially associate each status register on an IO device with a corresponding memory address that is being monitored by the CPU. While shown with this particular implementation in the embodiment of FIG. 1 , the scope of the present invention is not limited in this regard.
  • FIG. 2 shown is a flow diagram of a method in accordance with one embodiment of the present invention.
  • FIG. 2 shows a flow diagram that may be performed by logic of an IO or other interconnect that handles poll delegation on behalf of a host processor.
  • method 200 may be implemented by way of a state machine or other logic of an interconnect, although other implementations are possible.
  • method 200 may begin by receiving a registration message from an application (block 210 ).
  • the registration message may include a tuple of MMIO address, true physical memory address, and initial value.
  • this registration message may include a physical address range for a location and a monitored system memory that backs up a monitored virtual address range, a MMIO address for obtaining the status of a location in a device to be monitored, e.g., a status register, and an initial value of such register, which may also correspond to the initial value stored in the monitored address of system memory.
  • an application may make a system called to pass this information to the interconnect, e.g., using a host processor.
  • a failure message may be sent back to the host (block 220 ). Otherwise, the information may be stored into an entry of the polling table (block 230 ).
  • This information thus may correspond to a device monitored location (i.e., corresponding to a MMIO address of a completion status register of the device), an initial value of the register, and a memory monitored address (which may be a physical address location within the system memory that is monitored, e.g., by a MONITOR/MWAIT instruction pair). Accordingly, a success message may be sent from the interconnect to the host processor (block 240 ).
  • the application then initializes the monitored location, issuing the MONITOR and MWAIT instructions, thus enabling the device to begin executing its task.
  • Various such tasks may be realized, including offloading of specialized functions, graphics processing, physics processing or so forth.
  • the function may be a specialized calculation such as a fast fourier transform (FFT).
  • FFT fast fourier transform
  • one or more cores of the host processor may enter a low power state, which may be configurable depending on a type of operation that the device is to perform.
  • the interconnect may perform polling at the device monitored locations (block 245 ).
  • the polling operation may issue a read operation to each register address in the polling table, and compare the fetched value against the initial value in the polling table entry, as discussed with regard to diamond 250 . Understand that such polling may poll a number of locations present in one or more devices, namely whatever addresses are indicated in a polling table. It may be determined on each polling operation whether there is a change in any entries' value from its initial value (diamond 250 ). If not, a further polling iteration may occur.
  • the interconnect may issue a coherent write to this address, which may be realized using a message signaling interrupt (MSI), in one embodiment.
  • MSI message signaling interrupt
  • This coherent write to the monitored address in memory will cause the processor core to wake up from the low power state, enabling the halted thread to proceed.
  • it may be determined after issuing the write operation whether a release of the entry has been received (diamond 270 ). In one embodiment, such a release may be received from the OS when a given application associated with the poll delegation entry terminates.
  • the generation of the registration message and release message may use help from the OS.
  • the user-level MONITOR and MWAIT instructions may be performed completely in user mode, and the poll delegation operation can be purely hardware. Note that the registration and release are usually only performed at the application initialization and cleanup phases. Therefore their power and performance do not matter. In contrast, the user-level setup and poll detection usually are executed a large number of times. The efficiency of these two steps thus enables efficient system power and performance characteristics.
  • polling table 150 may be a multi-entry translation table.
  • each entry 156 contains an MMIO address and the physical memory address that is linked to it.
  • a message signaling interrupt (MSI-X) feature of PCI that may be in IO interconnect 140 provides hardware that allows devices 160 to issue writes to system memory locations.
  • MSI-X the target memory locations are special addresses that will lead to interrupts. In embodiments instead addresses in write back memory space can be used as targets of such writes.
  • the property of the target memory location is transparent to MSI-X hardware, it simply delivers a packet from the IO interconnect to the memory system.
  • the polling performed by interconnect 140 may cause a poll of registered status register addresses, even if the devices that some of the registers represent not actively computing. This is because in some implementations the poll delegation logic 145 has no knowledge of whether or not a valid entry in its mapping table represents an inactive device.
  • a system call can be provided by the OS to allow an application to release a particular entry in the polling table.
  • the IO interconnect 140 could intercept power-state transition commands that are sent to the IP blocks 160 so that it will know which status register will not be updated any time soon. This information may be included in a status portion of the entries of polling table 150 in such embodiments. It is noted however, that the cost for the interconnect 140 to poll IO registers is rather low, and as such the power and performance impact of indiscriminate polling may be minimal.
  • SoC system-on-chip
  • a computing device such as an embedded, portable or mobile device
  • other implementations may be used in other systems such as multiprocessor computer systems having a processor coupled to a coherent interconnect, that in turn may be coupled to an IO interconnect via one or more chipsets or other components.
  • embodiments may be implemented in a multi-chip architecture for a computing device.
  • system 300 may be multi-chip architecture, namely a system 300 including a first chip 100 , which may be a first SoC, and which may be configured the same as that of FIG. 1 , a second integrated circuit 310 , which may provide peripheral functionality, and a memory 370 , which may be a DRAM coupled to one or more of the chips.
  • SoC 100 may communicate with IC 310 via an interconnect 305 that in turn is coupled to a first bridge 170 of SoC 100 and a second bridge 320 of IC 310 .
  • second bridge 320 may be coupled to an IO interconnect 330 that in turn can be coupled to one or more peripheral devices, e.g., a PCIe device 340 and a universal serial bus (USB) device 350 .
  • IO interconnect 330 may be coupled via a third bridge 360 to off-chip components via a serial over network interface (SONIC)/external fabric.
  • SONIC serial over network interface
  • a process can avoid either suffering from long latency for interrupt handling, or have to busy-spin in a high power state.
  • poll delegation allows the processor to enter power and performance-optimized states while still achieving the quick response time of busy spins.
  • embodiments provide a near-optimal completion notification solution in terms of power and performance.
  • Embodiments may be implemented in code and may be stored on a storage medium having stored thereon instructions which can be used to program a system to perform the instructions.
  • the storage medium may include, but is not limited to, any type of disk including floppy disks, optical disks, compact disk read-only memories (CD-ROMs), compact disk rewritables (CD-RWs), and magneto-optical disks, semiconductor devices such as read-only memories (ROMs), random access memories (RAMs) such as dynamic random access memories (DRAMs), static random access memories (SRAMs), erasable programmable read-only memories (EPROMs), flash memories, electrically erasable programmable read-only memories (EEPROMs), magnetic or optical cards, or any other type of media suitable for storing electronic instructions.
  • ROMs read-only memories
  • RAMs random access memories
  • DRAMs dynamic random access memories
  • SRAMs static random access memories
  • EPROMs erasable programmable read-only memories
  • EEPROMs electrical

Abstract

In one embodiment, the present invention includes a method for handling a registration message received from a host processor, where the registration message delegates a poll operation with respect to a device from the host processor to another component. Information from the message may be stored in a poll table, and the component may send a read request to poll the device and report a result of the poll to the host processor based on a state of the device. Other embodiments are described and claimed.

Description

BACKGROUND
Modern computer systems typically include a processor and various other components that are coupled together. In addition, many systems include one or more peripheral or input/output (IO) devices.
To enable communications between software that executes on the processor and operations that may be performed by the other devices, different mechanisms can be used. Common mechanisms include a polling method and an interrupt method. However, neither of these methods is optimal. Using a polling technique, software either continuously polls status registers on the IO device if the IO device's task is fine-grained, or relies on an asynchronous interrupt through the operating system (OS) if the IO device's task is coarse-grained. While a polling method may ensure good performance, it suffers from drawbacks. First, the core/thread that needs to know the completion status has to continuously check (e.g., via a busy spin operation) on a memory mapped input/output (MMIO) status register, preventing itself from entering a low power state. Second, repetitive polling on an uncacheable MMIO address results in a large amount of traffic on a system interconnect. In a word, the fast response time comes at a cost of power consumption (a major issue especially for ultra-low power environments) and waste of system resources.
An interrupt method avoids busy spinning of a processor on the status register. While waiting, the core/thread can either context switch to execute another process or enter a lower power state. Completion of the task on the IO device triggers an interrupt into the OS. However, in a typical system, several hundred cache misses and tens of thousand clock cycles are induced by a kernel interrupt handler. This performance overhead of interrupt handling is not acceptable for many fine-grained logic blocks.
Thus both polling and interrupt techniques are not satisfactory for a low power application, as polling negates a large portion of any power benefits from using an IO device, while interrupts introduce a large performance penalty.
BRIEF DESCRIPTION OF THE DRAWINGS
FIG. 1 is a block diagram of a system in accordance with one embodiment of the present invention.
FIG. 2 is a flow diagram of a method in accordance with one embodiment of the present invention.
FIG. 3 is a block diagram of a system in accordance with another embodiment of the present invention.
DETAILED DESCRIPTION
In various embodiments, a poll delegation technique may be implemented in which an interconnect serves as a delegate in a polling and notification process. In one embodiment the interconnect may be an input/output (IO) interconnect, although the scope of the present invention is not limited in this regard. Using this technique, the interconnect polls IO devices for a host processor such as a central processing unit (CPU) and notifies an application software of a given event using one of a number of techniques such as a test and hold operation, or by update to a user-selected memory location that triggers a processor's exit from a power optimized state. In one embodiment, user-level instructions such as MONITOR/MWAIT may be used to notify application software. In various embodiments, poll delegation may enable a response time as short as polling, and power consumption/resource usage as low as an interrupt-based technique, thus providing user-level notification of IO device status without the need for polling or interrupts.
In one embodiment the IO interconnect may include specific-purpose hardware to poll status register(s) of an IO device. Then upon a status change, the IO interconnect can issue a write operation (e.g., a coherent write) to the memory address that is being monitored by the host. The coherent write will be detected by this hardware, and cause the thread that is waiting on the address to resume execution. Thus in various embodiments, a processor can stay in a low power state until the IO device is done with its task, and resume execution almost as fast as if it had been busy-spinning. No change is required in the processor core, the cache, the system coherent interconnect, or the IO devices.
The MONITOR/MWAIT pair of instructions can support inter-thread synchronization. The instruction pair can be available at all privilege levels. MONITOR can be used to enable a CPU to set up monitoring hardware of the CPU to detect stores to an effective address range (typically a cacheline). This address range belongs to a coherent, write-back address range. In one embodiment, cache coherency hardware may monitor for a write to the destination address. When that write occurs the cache coherency controller will send a message to the processor to come out of the low power state. After this set up, the succeeding MWAIT instruction puts the processor core into a selected low-power state (e.g., a clock-gated state or a power-gated state). When the monitoring hardware detects a store to any byte in the address range, the stalled thread resumes execution from the instruction following MWAIT. Architecturally, MWAIT behaves like a no operation (NOP). While these MONITOR and MWAIT instructions are designed to implement performance and power-optimized inter-thread synchronization, embodiments can leverage the instructions for IO device completion notification.
Referring now to FIG. 1, shown is a block diagram of a system in accordance with one embodiment of the present invention. As shown in FIG. 1, system 100 may be a system on a chip (SoC) that includes various components interconnected together and which may provide mechanisms to handle polling delegation in accordance with an embodiment of the present invention. Specifically, in the embodiment of FIG. 1, SoC 100 may include a plurality of processor cores only one of which, core 110 a, is shown for ease of illustration.
The one or more cores may be coupled via a coherent interconnect 115 to one or more cache memory 120 a. Coherent interconnect 115 may include various hardware, software and/or firmware to implement a cache coherency protocol, such as a modified exclusive shared invalid (MESI) protocol, to maintain a coherent view of information stored within the system. In some implementations, coherent interconnect 115 may be a layered protocol including various layers such as a protocol layer, a link layer and possibly a physical layer (where the system is not on a single die).
In turn, coherent interconnect 115 may be coupled via a hub 120 to a memory controller 130 that in turn may be coupled to a system memory, e.g., dynamic random access memory (DRAM), for example. Note that such memory is not shown in FIG. 1, as the memory may be external to the SoC.
In addition, coherent interconnect 115 may be coupled to an upstream side of an IO interconnect 140 which may be of a given communication protocol such as a Peripheral Component Interconnect Express (PCI Express™ (PCIe™)) protocol in accordance with links based on the PCI Express™ Specification Base Specification version 2.0 (published Jan. 17, 2007) (hereafter the PCIe™ Specification), or another such protocol. IO interconnect 140 may include a polling table 150 in accordance with an embodiment of the present invention. While shown as being present in the interconnect, other implementations may locate this buffer elsewhere in close relation to the interconnect. In turn, various devices, e.g., devices 160 0 and 160 1, which may be IO devices, intellectual property (IP) blocks or so forth may be coupled to a downstream side of IO interconnect 140.
As seen in FIG. 1, polling table 150 stores a plurality of entries including, e.g., entry 156. Each entry may include a device monitored location such as an address of a status register present in one of devices 160, a memory monitored address, which may correspond to a physical address in system memory that corresponds to a monitored location for an MWAIT instruction, and a initial value, which may be the initial value of the device monitored location, e.g., the initial value of the status register. Embodiments thus essentially associate each status register on an IO device with a corresponding memory address that is being monitored by the CPU. While shown with this particular implementation in the embodiment of FIG. 1, the scope of the present invention is not limited in this regard.
Referring now to FIG. 2, shown is a flow diagram of a method in accordance with one embodiment of the present invention. Specifically, FIG. 2 shows a flow diagram that may be performed by logic of an IO or other interconnect that handles poll delegation on behalf of a host processor. In some implementations, method 200 may be implemented by way of a state machine or other logic of an interconnect, although other implementations are possible. As shown in FIG. 2, method 200 may begin by receiving a registration message from an application (block 210). In one embodiment, the registration message may include a tuple of MMIO address, true physical memory address, and initial value. In one embodiment, this registration message may include a physical address range for a location and a monitored system memory that backs up a monitored virtual address range, a MMIO address for obtaining the status of a location in a device to be monitored, e.g., a status register, and an initial value of such register, which may also correspond to the initial value stored in the monitored address of system memory. In one embodiment, an application may make a system called to pass this information to the interconnect, e.g., using a host processor.
Still referring to FIG. 2, it may be determined whether an entry is available in the polling table of the interconnect (diamond 215). If not, a failure message may be sent back to the host (block 220). Otherwise, the information may be stored into an entry of the polling table (block 230). This information thus may correspond to a device monitored location (i.e., corresponding to a MMIO address of a completion status register of the device), an initial value of the register, and a memory monitored address (which may be a physical address location within the system memory that is monitored, e.g., by a MONITOR/MWAIT instruction pair). Accordingly, a success message may be sent from the interconnect to the host processor (block 240).
During operation, the application then initializes the monitored location, issuing the MONITOR and MWAIT instructions, thus enabling the device to begin executing its task. Various such tasks may be realized, including offloading of specialized functions, graphics processing, physics processing or so forth. As one example, the function may be a specialized calculation such as a fast fourier transform (FFT). The application thus may pass various information regarding the FFT such as the number of points, the starting address and so forth, prior to execution of the MONITOR/MWAIT instructions.
Accordingly, at this time one or more cores of the host processor may enter a low power state, which may be configurable depending on a type of operation that the device is to perform.
Referring still to FIG. 2, after the device begins executing its operation, the interconnect may perform polling at the device monitored locations (block 245). In one embodiment, the polling operation may issue a read operation to each register address in the polling table, and compare the fetched value against the initial value in the polling table entry, as discussed with regard to diamond 250. Understand that such polling may poll a number of locations present in one or more devices, namely whatever addresses are indicated in a polling table. It may be determined on each polling operation whether there is a change in any entries' value from its initial value (diamond 250). If not, a further polling iteration may occur. If a change occurs, control instead passes to block 260, where a write operation may be issued to the memory monitored address with the new value. In one embodiment, the interconnect may issue a coherent write to this address, which may be realized using a message signaling interrupt (MSI), in one embodiment. This coherent write to the monitored address in memory will cause the processor core to wake up from the low power state, enabling the halted thread to proceed. With reference to FIG. 2, it may be determined after issuing the write operation whether a release of the entry has been received (diamond 270). In one embodiment, such a release may be received from the OS when a given application associated with the poll delegation entry terminates. Accordingly, if the device knows the task is done, the device could issue an eviction request to the IO interconnect. Control passes from diamond 270, if the release is not indicated, back to block 245, where further polling may be performed. While shown with this particular implementation in the embodiment of FIG. 2, the scope of the present invention is not limited in this regard.
The generation of the registration message and release message may use help from the OS. The user-level MONITOR and MWAIT instructions may be performed completely in user mode, and the poll delegation operation can be purely hardware. Note that the registration and release are usually only performed at the application initialization and cleanup phases. Therefore their power and performance do not matter. In contrast, the user-level setup and poll detection usually are executed a large number of times. The efficiency of these two steps thus enables efficient system power and performance characteristics.
To support multiple IP accelerators, polling table 150 may be a multi-entry translation table. In one embodiment, each entry 156 contains an MMIO address and the physical memory address that is linked to it. In some implementations, the number of entries in the polling table can be a small number, e.g., N=8. In the extreme case when more than N registers need to be checked at the same time, the user thread can always directly poll the registers instead of using the above method, although a virtualized polling table could instead be used.
In one embodiment, a message signaling interrupt (MSI-X) feature of PCI that may be in IO interconnect 140 provides hardware that allows devices 160 to issue writes to system memory locations. In MSI-X, the target memory locations are special addresses that will lead to interrupts. In embodiments instead addresses in write back memory space can be used as targets of such writes. The property of the target memory location is transparent to MSI-X hardware, it simply delivers a packet from the IO interconnect to the memory system. In some implementations the polling performed by interconnect 140 may cause a poll of registered status register addresses, even if the devices that some of the registers represent not actively computing. This is because in some implementations the poll delegation logic 145 has no knowledge of whether or not a valid entry in its mapping table represents an inactive device. Different mechanisms can be used to provide this information to the logic. For example, a system call can be provided by the OS to allow an application to release a particular entry in the polling table. Alternatively, the IO interconnect 140 could intercept power-state transition commands that are sent to the IP blocks 160 so that it will know which status register will not be updated any time soon. This information may be included in a status portion of the entries of polling table 150 in such embodiments. It is noted however, that the cost for the interconnect 140 to poll IO registers is rather low, and as such the power and performance impact of indiscriminate polling may be minimal.
While described herein for a system-on-chip (SoC) configuration, which may be the primary processing component for a computing device such as an embedded, portable or mobile device, other implementations may be used in other systems such as multiprocessor computer systems having a processor coupled to a coherent interconnect, that in turn may be coupled to an IO interconnect via one or more chipsets or other components. Still further, embodiments may be implemented in a multi-chip architecture for a computing device.
Referring now to FIG. 3, shown is a block diagram of a system in accordance with another embodiment of the present invention. As shown in FIG. 3, system 300 may be multi-chip architecture, namely a system 300 including a first chip 100, which may be a first SoC, and which may be configured the same as that of FIG. 1, a second integrated circuit 310, which may provide peripheral functionality, and a memory 370, which may be a DRAM coupled to one or more of the chips. As shown in FIG. 3, SoC 100 may communicate with IC 310 via an interconnect 305 that in turn is coupled to a first bridge 170 of SoC 100 and a second bridge 320 of IC 310. In turn, second bridge 320 may be coupled to an IO interconnect 330 that in turn can be coupled to one or more peripheral devices, e.g., a PCIe device 340 and a universal serial bus (USB) device 350. Still further, IO interconnect 330 may be coupled via a third bridge 360 to off-chip components via a serial over network interface (SONIC)/external fabric. In the embodiment of FIG. 3, note that both I0 interconnect 140 and IO interconnect 330 may include polling tables and poll delegation logic in accordance with an embodiment of the present invention. While shown with this particular implementation in the embodiment of FIG. 3, other implementations are of course possible.
Using an embodiment of the present invention, a process can avoid either suffering from long latency for interrupt handling, or have to busy-spin in a high power state. On a processor that supports MONITOR/MWAIT or similar test and set functions, poll delegation allows the processor to enter power and performance-optimized states while still achieving the quick response time of busy spins. For low-power SoCs that include finer-grained IP blocks, embodiments provide a near-optimal completion notification solution in terms of power and performance.
Embodiments may be implemented in code and may be stored on a storage medium having stored thereon instructions which can be used to program a system to perform the instructions. The storage medium may include, but is not limited to, any type of disk including floppy disks, optical disks, compact disk read-only memories (CD-ROMs), compact disk rewritables (CD-RWs), and magneto-optical disks, semiconductor devices such as read-only memories (ROMs), random access memories (RAMs) such as dynamic random access memories (DRAMs), static random access memories (SRAMs), erasable programmable read-only memories (EPROMs), flash memories, electrically erasable programmable read-only memories (EEPROMs), magnetic or optical cards, or any other type of media suitable for storing electronic instructions.
While the present invention has been described with respect to a limited number of embodiments, those skilled in the art will appreciate numerous modifications and variations therefrom. It is intended that the appended claims cover all such modifications and variations as fall within the true spirit and scope of this present invention.

Claims (17)

1. An apparatus comprising:
a core to generate a registration message to delegate a poll operation to an input/output (IO) interconnect;
a coherent interconnect coupled to the core;
the IO interconnect coupled to the coherent interconnect, the IO interconnect including a poll table having a plurality of entries each having a register address field to store a register address received in a registration message, a destination address field to store a destination address in a system memory received in the registration message, and an initial value field to store an initial value associated with the register address received in the registration message; and
at least one device coupled to the IO interconnect to perform an operation for an application executing on the core and including at least one status register, the IO interconnect to poll the at least one status register responsive to information in a poll table entry, and to issue a write transaction to the destination address if a polled value of the at least one status register differs from the initial value, the IO interconnect further including a poll delegation logic to issue a read request to the at least one device at a predetermined interval to perform the poll.
2. The apparatus of claim 1, wherein the at least one device is to update the initial value to the polled value upon completion of the operation.
3. The apparatus of claim 1, wherein the apparatus comprises a system on a chip (SoC) formed on a single semiconductor die, and the at least one device comprises an intellectual property (IP) block.
4. The apparatus of claim 1, wherein the poll delegation logic is to perform a comparison between data received from the at least one device responsive to the read request and the initial value and to perform the write transaction when the data and the initial value differ.
5. The apparatus of claim 1, wherein the core is to send an eviction message to the IO interconnect to delete an entry in the poll table when an application corresponding to the entry is terminated.
6. The apparatus of claim 1, wherein the core is to execute a first instruction to set up the destination address and a second instruction to cause the core to enter a low power state until the destination address is updated.
7. The apparatus of claim 6, wherein the core is to send the registration message to the IO interconnect prior to execution of the first and second instructions.
8. A system comprising:
a first integrated circuit including:
at least one core including a first logic to execute a first instruction to set up a monitored address in a memory and a second logic to cause the at least one core to enter a low power state when a predetermined instruction follows the first instruction;
a first coherent interconnect coupled to the at least one core;
a first input/output (IO) interconnect including a poll table to store a tuple including a register identifier of a register in an intellectual property (IP) block coupled to the first IO interconnect, the monitored address in the memory, and an initial value associated with the register, and a delegation logic to receive a delegation message from the at least one core, and based on the tuple, obtain a current value of the register until the current value differs from the initial value and responsive to the difference write data to the monitored address; and
the IP block coupled to the first IO interconnect including the register and to perform a function for an application executing on the at least one core; and
the memory coupled to the first integrated circuit via a memory interconnect, wherein the at least one core is to exit the low power state responsive to the data being written to the destination address of the memory and to continue execution of the application at a next instruction following the predetermined instruction.
9. The system of claim 8, wherein the IP block is to update the initial value to the current value upon completion of the operation.
10. The system of claim 8, wherein the at least one core is to send the delegation message to the first IO interconnect with the tuple prior to execution of the first instruction.
11. A method comprising:
receiving a registration message from a host processor in an interconnect coupled between the host processor and a device, the registration message to delegate a poll operation with respect to the device to the interconnect;
storing information regarding a device monitored location, a memory monitored address, and an initial value of the device monitored location in a poll table associated with the interconnect; and
using a poll delegation logic of the interconnect to send a read request from the interconnect to the device to poll the device and to compare the initial value with a device value obtained from the device monitored location, and reporting a result of the poll to the host processor if the device value is different than the initial value.
12. The method of claim 11, further comprising issuing a write request from the interconnect to the memory monitored address in a system memory to report the result.
13. The method of claim 12, further comprising issuing a message signaling interrupt from the interconnect to the system memory to issue the write request.
14. The method of claim 13, wherein the host processor is placed into a low power state after sending the registration message, and responsive to the write to the memory monitored address, the host processor is to exit the low power state.
15. The method of claim 11, wherein the poll table includes a plurality of entries each including a device monitored location, a memory monitored address, and an initial value, and further comprising sending a read request to the device for each of the plurality of entries.
16. The method of claim 11, wherein the device monitored location corresponds to a status register of the device, and associating the status register with the memory monitored address via the poll table.
17. The method of claim 11, further comprising initiating the registration message via an application, and performing a first function on the device for the application, wherein the application is to initiate the first function after the information is stored in the poll table, and to cause the host processor to enter into a low power state.
US12/482,614 2009-06-11 2009-06-11 Delegating a poll operation to another device Expired - Fee Related US8364862B2 (en)

Priority Applications (5)

Application Number Priority Date Filing Date Title
US12/482,614 US8364862B2 (en) 2009-06-11 2009-06-11 Delegating a poll operation to another device
DE201011002425 DE112010002425B4 (en) 2009-06-11 2010-03-11 Delegate a request operation to another facility
CN201080025454.4A CN102804155B (en) 2009-06-11 2010-03-11 Delegating a poll operation to another device
PCT/US2010/027003 WO2010144164A1 (en) 2009-06-11 2010-03-11 Delegating a poll operation to another device
US13/729,172 US8762599B2 (en) 2009-06-11 2012-12-28 Delegating a poll operation to another device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US12/482,614 US8364862B2 (en) 2009-06-11 2009-06-11 Delegating a poll operation to another device

Related Child Applications (1)

Application Number Title Priority Date Filing Date
US13/729,172 Continuation US8762599B2 (en) 2009-06-11 2012-12-28 Delegating a poll operation to another device

Publications (2)

Publication Number Publication Date
US20100318693A1 US20100318693A1 (en) 2010-12-16
US8364862B2 true US8364862B2 (en) 2013-01-29

Family

ID=43307351

Family Applications (2)

Application Number Title Priority Date Filing Date
US12/482,614 Expired - Fee Related US8364862B2 (en) 2009-06-11 2009-06-11 Delegating a poll operation to another device
US13/729,172 Expired - Fee Related US8762599B2 (en) 2009-06-11 2012-12-28 Delegating a poll operation to another device

Family Applications After (1)

Application Number Title Priority Date Filing Date
US13/729,172 Expired - Fee Related US8762599B2 (en) 2009-06-11 2012-12-28 Delegating a poll operation to another device

Country Status (4)

Country Link
US (2) US8364862B2 (en)
CN (1) CN102804155B (en)
DE (1) DE112010002425B4 (en)
WO (1) WO2010144164A1 (en)

Families Citing this family (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9235458B2 (en) * 2011-01-06 2016-01-12 International Business Machines Corporation Methods and systems for delegating work objects across a mixed computer environment
US9052968B2 (en) 2011-01-17 2015-06-09 International Business Machines Corporation Methods and systems for linking objects across a mixed computer environment
EP2573948B1 (en) * 2011-09-23 2017-03-15 Nxp B.V. System and method for commissioning devices
EP2624081B1 (en) 2012-01-31 2018-01-10 Nxp B.V. Configuration method, configuration device, computer program product and control system
US9256573B2 (en) 2013-02-14 2016-02-09 International Business Machines Corporation Dynamic thread status retrieval using inter-thread communication
US10078356B2 (en) * 2015-08-20 2018-09-18 Intel Corporation Apparatus and method for saving and restoring data for power saving in a processor
US9898351B2 (en) * 2015-12-24 2018-02-20 Intel Corporation Method and apparatus for user-level thread synchronization with a monitor and MWAIT architecture
US10025727B2 (en) * 2016-02-05 2018-07-17 Honeywell International Inc. Relay mechanism to facilitate processor communication with inaccessible input/output (I/O) device
US10394747B1 (en) * 2017-05-31 2019-08-27 Mellanox Technologies Ltd. Implementing hierarchical PCI express switch topology over coherent mesh interconnect
US10564995B2 (en) 2017-06-07 2020-02-18 Red Hat, Inc. Dynamic control of halt polling based on receiving a monitoring instruction executed by a guest
CN111737173B (en) 2020-06-24 2022-03-22 浪潮(北京)电子信息产业有限公司 I2C bus communication control method, device, system and readable storage medium

Citations (37)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4598363A (en) * 1983-07-07 1986-07-01 At&T Bell Laboratories Adaptive delayed polling of sensors
US5504921A (en) * 1990-09-17 1996-04-02 Cabletron Systems, Inc. Network management system using model-based intelligence
US5586297A (en) 1994-03-24 1996-12-17 Hewlett-Packard Company Partial cache line write transactions in a computing system with a write back cache
US5819028A (en) * 1992-06-10 1998-10-06 Bay Networks, Inc. Method and apparatus for determining the health of a network
US5903749A (en) * 1996-07-02 1999-05-11 Institute For The Development Of Emerging Architecture, L.L.C. Method and apparatus for implementing check instructions that allow for the reuse of memory conflict information if no memory conflict occurs
US6009488A (en) * 1997-11-07 1999-12-28 Microlinc, Llc Computer having packet-based interconnect channel
US6138171A (en) * 1996-11-14 2000-10-24 Alcatel Usa Sourcing, L.P. Generic software state machine
US6148337A (en) * 1998-04-01 2000-11-14 Bridgeway Corporation Method and system for monitoring and manipulating the flow of private information on public networks
US6477667B1 (en) * 1999-10-07 2002-11-05 Critical Devices, Inc. Method and system for remote device monitoring
US6504785B1 (en) * 1998-02-20 2003-01-07 Silicon Aquarius, Inc. Multiprocessor system with integrated memory
US20040024871A1 (en) * 2002-07-30 2004-02-05 Kitchin Duncan M. Point coordinator delegation in a wireless network
US6704842B1 (en) 2000-04-12 2004-03-09 Hewlett-Packard Development Company, L.P. Multi-processor system with proactive speculative data transfer
US20040078528A1 (en) 2002-07-31 2004-04-22 Texas Instruments Incorporated Cache coherency in a multi-processor system
US6892312B1 (en) * 2001-10-30 2005-05-10 Lsi Logic Corporation Power monitoring and reduction for embedded IO processors
US20050223178A1 (en) * 2004-03-30 2005-10-06 Hewlett-Packard Development Company, L.P. Delegated write for race avoidance in a processor
US20060101226A1 (en) 2004-11-05 2006-05-11 Benhase Michael T Method, system, and program for transferring data directed to virtual memory addresses to a device memory
US7069480B1 (en) * 2001-03-28 2006-06-27 The Shoregroup, Inc. Method and apparatus for identifying problems in computer networks
US20060168396A1 (en) * 2005-01-24 2006-07-27 Daniel Measurement And Control, Inc. Method and system of obtaining data from field devices
KR20060112184A (en) 2003-10-24 2006-10-31 마이크로소프트 코포레이션 Scalable synchronous and asynchronous processing of monitoring rules
US20060277594A1 (en) 2005-06-02 2006-12-07 International Business Machines Corporation Policy implementation delegation
KR20060126065A (en) 2005-06-03 2006-12-07 삼성전자주식회사 Apparatus and method for processing polling message
US20070150671A1 (en) * 2005-12-23 2007-06-28 Boston Circuits, Inc. Supporting macro memory instructions
US7298758B2 (en) * 2002-07-08 2007-11-20 Brooktree Broadband Holding, Inc. Method and system for optimizing UTOPIA CLAV polling arbitration
US20070294486A1 (en) 2005-02-11 2007-12-20 International Business Machines Corporation Reducing Number of Rejected Snoop Requests By Extending Time to Respond to Snoop Request
US20080130543A1 (en) * 2006-12-04 2008-06-05 Samsung Electronics Co., Ltd. Apparatus and method for adaptive sleep of wirelessly networked devices
US20080209133A1 (en) 2007-02-22 2008-08-28 Arm Limited Managing cache coherency in a data processing apparatus
US20090019232A1 (en) 2007-07-11 2009-01-15 Freescale Semiconductor, Inc. Specification of coherence domain during address translation
US7509540B1 (en) * 2001-03-28 2009-03-24 Shoregroup, Inc. Method and apparatus for maintaining the status of objects in computer networks using virtual state machines
US7516247B2 (en) * 2005-08-12 2009-04-07 Advanced Micro Devices, Inc. Avoiding silent data corruption and data leakage in a virtual environment with multiple guests
US7610569B2 (en) * 2004-02-17 2009-10-27 Dong-goo YUN Chip design verification apparatus and data communication method for the same
US20100191921A1 (en) 2009-01-26 2010-07-29 International Business Machines Corporation Region coherence array for a mult-processor system having subregions and subregion prefetching
US20100191920A1 (en) * 2009-01-27 2010-07-29 Zhen Fang Providing Address Range Coherency Capability To A Device
US7774522B2 (en) * 2008-11-17 2010-08-10 Applied Micro Circuits Corporation Cache stashing processor control messages
US7805550B2 (en) * 2004-05-26 2010-09-28 Arm Limited Management of polling loops in a data processing apparatus
US7917729B2 (en) * 2003-07-25 2011-03-29 International Business Machines Corporation System on chip IC with subsystem of multiple processing cores switch coupled to network protocol device and bus bridge to local system bus
US8009584B1 (en) * 2001-06-11 2011-08-30 GlobalFoundries, Inc. System and method for implementing an IRC across multiple network devices
US8024499B1 (en) * 2008-01-17 2011-09-20 Juniper Networks, Inc. Systems and methods for automated sensor polling

Family Cites Families (15)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5615323A (en) * 1994-11-04 1997-03-25 Concord Communications, Inc. Displaying resource performance and utilization information
US5862338A (en) * 1996-12-30 1999-01-19 Compaq Computer Corporation Polling system that determines the status of network ports and that stores values indicative thereof
US7363474B2 (en) * 2001-12-31 2008-04-22 Intel Corporation Method and apparatus for suspending execution of a thread until a specified memory access occurs
US7093141B2 (en) * 2002-12-18 2006-08-15 International Business Machines Corporation Power aware adaptive polling
US7213093B2 (en) * 2003-06-27 2007-05-01 Intel Corporation Queued locks using monitor-memory wait
CN1864356B (en) * 2003-08-07 2012-06-06 蒂蒙系统公司 Communication system providing adaptive polling
US7451333B2 (en) * 2004-09-03 2008-11-11 Intel Corporation Coordinating idle state transitions in multi-core processors
US7257679B2 (en) * 2004-10-01 2007-08-14 Advanced Micro Devices, Inc. Sharing monitored cache lines across multiple cores
CN100442248C (en) * 2004-11-16 2008-12-10 惠普开发有限公司 Delegated write for race avoidance in a processor
US7523197B2 (en) * 2006-03-09 2009-04-21 International Business Machines Corporation Method for IP address discovery in rapidly changing network environment
US7797563B1 (en) * 2006-06-09 2010-09-14 Oracle America System and method for conserving power
US8301870B2 (en) * 2006-07-27 2012-10-30 International Business Machines Corporation Method and apparatus for fast synchronization and out-of-order execution of instructions in a meta-program based computing system
JP5328225B2 (en) * 2008-05-14 2013-10-30 キヤノン株式会社 Device monitoring apparatus and control method thereof, device monitoring system, and program
CN101442439B (en) * 2008-12-17 2012-07-11 杭州华三通信技术有限公司 Method for reporting interruption and PCI bus system
US8209559B2 (en) * 2008-12-24 2012-06-26 Intel Corporation Low power polling techniques

Patent Citations (37)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4598363A (en) * 1983-07-07 1986-07-01 At&T Bell Laboratories Adaptive delayed polling of sensors
US5504921A (en) * 1990-09-17 1996-04-02 Cabletron Systems, Inc. Network management system using model-based intelligence
US5819028A (en) * 1992-06-10 1998-10-06 Bay Networks, Inc. Method and apparatus for determining the health of a network
US5586297A (en) 1994-03-24 1996-12-17 Hewlett-Packard Company Partial cache line write transactions in a computing system with a write back cache
US5903749A (en) * 1996-07-02 1999-05-11 Institute For The Development Of Emerging Architecture, L.L.C. Method and apparatus for implementing check instructions that allow for the reuse of memory conflict information if no memory conflict occurs
US6138171A (en) * 1996-11-14 2000-10-24 Alcatel Usa Sourcing, L.P. Generic software state machine
US6009488A (en) * 1997-11-07 1999-12-28 Microlinc, Llc Computer having packet-based interconnect channel
US6504785B1 (en) * 1998-02-20 2003-01-07 Silicon Aquarius, Inc. Multiprocessor system with integrated memory
US6148337A (en) * 1998-04-01 2000-11-14 Bridgeway Corporation Method and system for monitoring and manipulating the flow of private information on public networks
US6477667B1 (en) * 1999-10-07 2002-11-05 Critical Devices, Inc. Method and system for remote device monitoring
US6704842B1 (en) 2000-04-12 2004-03-09 Hewlett-Packard Development Company, L.P. Multi-processor system with proactive speculative data transfer
US7509540B1 (en) * 2001-03-28 2009-03-24 Shoregroup, Inc. Method and apparatus for maintaining the status of objects in computer networks using virtual state machines
US7069480B1 (en) * 2001-03-28 2006-06-27 The Shoregroup, Inc. Method and apparatus for identifying problems in computer networks
US8009584B1 (en) * 2001-06-11 2011-08-30 GlobalFoundries, Inc. System and method for implementing an IRC across multiple network devices
US6892312B1 (en) * 2001-10-30 2005-05-10 Lsi Logic Corporation Power monitoring and reduction for embedded IO processors
US7298758B2 (en) * 2002-07-08 2007-11-20 Brooktree Broadband Holding, Inc. Method and system for optimizing UTOPIA CLAV polling arbitration
US20040024871A1 (en) * 2002-07-30 2004-02-05 Kitchin Duncan M. Point coordinator delegation in a wireless network
US20040078528A1 (en) 2002-07-31 2004-04-22 Texas Instruments Incorporated Cache coherency in a multi-processor system
US7917729B2 (en) * 2003-07-25 2011-03-29 International Business Machines Corporation System on chip IC with subsystem of multiple processing cores switch coupled to network protocol device and bus bridge to local system bus
KR20060112184A (en) 2003-10-24 2006-10-31 마이크로소프트 코포레이션 Scalable synchronous and asynchronous processing of monitoring rules
US7610569B2 (en) * 2004-02-17 2009-10-27 Dong-goo YUN Chip design verification apparatus and data communication method for the same
US20050223178A1 (en) * 2004-03-30 2005-10-06 Hewlett-Packard Development Company, L.P. Delegated write for race avoidance in a processor
US7805550B2 (en) * 2004-05-26 2010-09-28 Arm Limited Management of polling loops in a data processing apparatus
US20060101226A1 (en) 2004-11-05 2006-05-11 Benhase Michael T Method, system, and program for transferring data directed to virtual memory addresses to a device memory
US20060168396A1 (en) * 2005-01-24 2006-07-27 Daniel Measurement And Control, Inc. Method and system of obtaining data from field devices
US20070294486A1 (en) 2005-02-11 2007-12-20 International Business Machines Corporation Reducing Number of Rejected Snoop Requests By Extending Time to Respond to Snoop Request
US20060277594A1 (en) 2005-06-02 2006-12-07 International Business Machines Corporation Policy implementation delegation
KR20060126065A (en) 2005-06-03 2006-12-07 삼성전자주식회사 Apparatus and method for processing polling message
US7516247B2 (en) * 2005-08-12 2009-04-07 Advanced Micro Devices, Inc. Avoiding silent data corruption and data leakage in a virtual environment with multiple guests
US20070150671A1 (en) * 2005-12-23 2007-06-28 Boston Circuits, Inc. Supporting macro memory instructions
US20080130543A1 (en) * 2006-12-04 2008-06-05 Samsung Electronics Co., Ltd. Apparatus and method for adaptive sleep of wirelessly networked devices
US20080209133A1 (en) 2007-02-22 2008-08-28 Arm Limited Managing cache coherency in a data processing apparatus
US20090019232A1 (en) 2007-07-11 2009-01-15 Freescale Semiconductor, Inc. Specification of coherence domain during address translation
US8024499B1 (en) * 2008-01-17 2011-09-20 Juniper Networks, Inc. Systems and methods for automated sensor polling
US7774522B2 (en) * 2008-11-17 2010-08-10 Applied Micro Circuits Corporation Cache stashing processor control messages
US20100191921A1 (en) 2009-01-26 2010-07-29 International Business Machines Corporation Region coherence array for a mult-processor system having subregions and subregion prefetching
US20100191920A1 (en) * 2009-01-27 2010-07-29 Zhen Fang Providing Address Range Coherency Capability To A Device

Non-Patent Citations (4)

* Cited by examiner, † Cited by third party
Title
Intel "Prescott New Instructions Software Developer's Guide," Jun. 2003, pp. 1-76.
Korean Patent Office, Combined Search and Written Opinion for PCT Application No. PCT/US2010/027003, dated Sep. 30, 2010, 9 pgs.
Mike Parker, "A Case for User-Level Interrupts," School of Computing, University of Utah, Feb. 22, 2000, pp. 1-2.
U.S. Appl. No. 12/360,533, filed Jan. 27, 2009, entitled, "Providing Address Range Coherency Capability to a Device," by Zhen Fang, et al.

Also Published As

Publication number Publication date
CN102804155A (en) 2012-11-28
CN102804155B (en) 2015-07-15
DE112010002425B4 (en) 2015-02-19
US20100318693A1 (en) 2010-12-16
US8762599B2 (en) 2014-06-24
DE112010002425T5 (en) 2012-08-30
WO2010144164A1 (en) 2010-12-16
US20130138843A1 (en) 2013-05-30

Similar Documents

Publication Publication Date Title
US8364862B2 (en) Delegating a poll operation to another device
US20210357214A1 (en) Methods, apparatus, and instructions for user-level thread suspension
US10877766B2 (en) Embedded scheduling of hardware resources for hardware acceleration
US20180143923A1 (en) Providing State Storage in a Processor for System Management Mode
JP5963282B2 (en) Interrupt distribution scheme
TWI428823B (en) Microprocessor integrated circuits and methods for debugging a microprocessor integrated circuit
JP4982375B2 (en) Sharing a monitored cache line across multiple cores
US20160019168A1 (en) On-Demand Shareability Conversion In A Heterogeneous Shared Virtual Memory
US20200218568A1 (en) Mechanism for issuing requests to an accelerator from multiple threads
US11360809B2 (en) Multithreaded processor core with hardware-assisted task scheduling
KR20080038389A (en) Incresing workload performance of one or more cores on multiple core processors
US20140129784A1 (en) Methods and systems for polling memory outside a processor thread
JP2010535384A (en) Mechanism for broadcasting system management interrupts to other processors in a computer system
TW200525365A (en) Optimization of SMI handling and initialization
KR20190050988A (en) Dynamic input / output coherence
CN109716305B (en) Method, computing device, and medium for implementing asynchronous cache maintenance operations
US9043507B2 (en) Information processing system

Legal Events

Date Code Title Description
AS Assignment

Owner name: INTEL CORPORATION, CALIFORNIA

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:ESPIG, MICHAEL J.;FANG, ZHEN;IYER, RAVISHANKAR;AND OTHERS;SIGNING DATES FROM 20090603 TO 20090610;REEL/FRAME:022811/0512

FEPP Fee payment procedure

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

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: MAINTENANCE FEE REMINDER MAILED (ORIGINAL EVENT CODE: REM.); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

LAPS Lapse for failure to pay maintenance fees

Free format text: PATENT EXPIRED FOR FAILURE TO PAY MAINTENANCE FEES (ORIGINAL EVENT CODE: EXP.); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

STCH Information on status: patent discontinuation

Free format text: PATENT EXPIRED DUE TO NONPAYMENT OF MAINTENANCE FEES UNDER 37 CFR 1.362

FP Lapsed due to failure to pay maintenance fee

Effective date: 20210129