US20060251090A1 - Method and apparatus for queue depth detection in a memory system - Google Patents

Method and apparatus for queue depth detection in a memory system Download PDF

Info

Publication number
US20060251090A1
US20060251090A1 US11/091,476 US9147605A US2006251090A1 US 20060251090 A1 US20060251090 A1 US 20060251090A1 US 9147605 A US9147605 A US 9147605A US 2006251090 A1 US2006251090 A1 US 2006251090A1
Authority
US
United States
Prior art keywords
queue
pointer
memory
pointers
bits
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
US11/091,476
Other versions
US8416793B2 (en
Inventor
Thomas Jones
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.)
Alcatel Lucent SAS
Original Assignee
Alcatel SA
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Alcatel SA filed Critical Alcatel SA
Assigned to ALCATEL reassignment ALCATEL ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: JONES, THOMAS CARLETON
Priority to US11/091,476 priority Critical patent/US8416793B2/en
Priority to EP06300293A priority patent/EP1710702A3/en
Priority to CNA2006100840279A priority patent/CN1848075A/en
Publication of US20060251090A1 publication Critical patent/US20060251090A1/en
Assigned to CREDIT SUISSE AG reassignment CREDIT SUISSE AG SECURITY AGREEMENT Assignors: ALCATEL LUCENT
Assigned to ALCATEL LUCENT reassignment ALCATEL LUCENT CHANGE OF NAME (SEE DOCUMENT FOR DETAILS). Assignors: ALCATEL
Publication of US8416793B2 publication Critical patent/US8416793B2/en
Application granted granted Critical
Assigned to ALCATEL LUCENT reassignment ALCATEL LUCENT RELEASE BY SECURED PARTY (SEE DOCUMENT FOR DETAILS). Assignors: CREDIT SUISSE AG
Expired - Fee Related legal-status Critical Current
Adjusted expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F5/00Methods or arrangements for data conversion without changing the order or content of the data handled
    • G06F5/06Methods or arrangements for data conversion without changing the order or content of the data handled for changing the speed of data flow, i.e. speed regularising or timing, e.g. delay lines, FIFO buffers; over- or underrun control therefor
    • G06F5/10Methods or arrangements for data conversion without changing the order or content of the data handled for changing the speed of data flow, i.e. speed regularising or timing, e.g. delay lines, FIFO buffers; over- or underrun control therefor having a sequence of storage locations each being individually accessible for both enqueue and dequeue operations, e.g. using random access memory
    • G06F5/12Means for monitoring the fill level; Means for resolving contention, i.e. conflicts between simultaneous enqueue and dequeue operations
    • G06F5/14Means for monitoring the fill level; Means for resolving contention, i.e. conflicts between simultaneous enqueue and dequeue operations for overflow or underflow handling, e.g. full or empty flags
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F2205/00Indexing scheme relating to group G06F5/00; Methods or arrangements for data conversion without changing the order or content of the data handled
    • G06F2205/10Indexing scheme relating to groups G06F5/10 - G06F5/14
    • G06F2205/106Details of pointers, i.e. structure of the address generators
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F2205/00Indexing scheme relating to group G06F5/00; Methods or arrangements for data conversion without changing the order or content of the data handled
    • G06F2205/12Indexing scheme relating to groups G06F5/12 - G06F5/14
    • G06F2205/126Monitoring of intermediate fill level, i.e. with additional means for monitoring the fill level, e.g. half full flag, almost empty flag

Definitions

  • the invention relates to the art of memory system controls and more specifically to the detection of queue depth in a memory system.
  • FIFO queues may be implemented as a technique for processing a memory structure, in which items in the memory structure are removed in the same order in which they were added to the memory structure.
  • FIFO queues may be utilized in memory systems of different applications.
  • FIFO queues are implemented on network elements, such as a network interface card (NIC), to provide sequential processing of data items to a network processor.
  • NIC network interface card
  • queue depth detection may be useful to detect a queue “almost-full” condition, so as to provide an opportunity for the memory system, or a system utilizing the memory system, to take action before a “queue full” error arises. This may be particularly important in high speed NICs, in which data may fill available space in a FIFO queue quickly.
  • a method for detecting a queue depth of a memory queue in a memory system comprises: estimating a start position of the queue by examining a portion of a queue start identifier of the memory queue; estimating an end position of the queue by examining a portion of a queue end identifier of the memory queue; and utilizing the start position and the end position to estimate the queue depth of the memory queue.
  • the queue start identifier may be a queue start memory pointer
  • the queue end identifier may be a queue end memory pointer
  • the memory queue may be a first-in-first-out queue, and the queue start and queue end memory pointers may be binary pointers.
  • the queue start identifier may comprise binary bits, and the portion of the queue start identifier may be a subset of the binary bits of the queue start identifier.
  • the queue end identifier may also comprise binary bits, and the portion of the queue end identifier may be a subset of the binary bits of the queue end identifier.
  • the subset of binary bits of the queue start identifier may include the two most significant bits of the queue start pointer, and the subset of binary bits of the queue end identifier may include the two most significant bits of the queue end pointer.
  • the most significant bit of each of the queue start pointer and the queue end pointer may be a redundant bit for determining a queue full and a queue empty condition.
  • the subset of the binary bits of the queue start identifier may comprise the four most significant bits of the queue start memory pointer, and the subset of the binary bits of the queue end identifier may comprise the four most significant bits of the queue end memory pointer.
  • the queue depth to be detected is an almost empty condition of the memory queue.
  • the queue depth to be detected is an almost full condition of the memory queue.
  • An adjustable threshold may be provided for detecting the almost full condition or almost empty condition.
  • the first and second most significant bits of each of the queue start and queue end pointers may define one of four pointer quarters in a pointer space.
  • the step of comparing the start position and the end position to estimate the queue depth of the memory queue may comprise: determining from the first and second most significant bits of each of the queue start and queue end pointers whether the queue start and queue end pointers identify adjacent pointer quarters or the same pointer quarter; and examining the third and forth most significant bits of each of the queue start and queue end pointers for detecting the almost full condition if the queue start and queue end pointers identify adjacent quarters or the same pointer quarter.
  • the steps of determining whether the queue start and queue end pointers identify adjacent pointer quarters or the same pointer quarter, examining the third and forth most significant bits and detecting the almost full condition may be performed with the use of look-up tables.
  • the look-up tables may be found within one or more field programmable gate arrays.
  • the steps of determining whether the queue start and queue end pointers identify adjacent pointer quarters or the same pointer quarter, examining the third and forth most significant bits and detecting the almost full condition may be performed with the use of application specific integrated circuits.
  • FIGS. 1 a to 1 d are block diagram representations of a memory queue in a memory system
  • FIG. 2 is table of information relating to two pointers identifying memory locations in the memory queue of FIGS. 1 a to 1 d;
  • FIG. 3 is a block diagram representation of a memory queue in a memory system in another embodiment of the present invention.
  • FIG. 4 is an alternate block diagram representation of the memory queue of FIG. 3 ;
  • FIGS. 5 a to 5 c are alternate block diagram representations of the memory queue of FIG. 3 ;
  • FIG. 6 is another alternate block diagram representation of the memory queue of FIG. 3 ;
  • FIG. 7 is a table of information relating to a relationship between two memory location identifiers in the memory queue of FIG. 3 that may be used for the detection of queue depth;
  • FIGS. 8 a to 8 c are block diagram representations of relationships between the memory location identifiers of FIG. 7 ;
  • FIGS. 9 a to 9 b are block diagram representations of other relationships between the memory location identifiers of FIG. 7 ;
  • FIGS. 10 a to 10 c are block diagram representations of yet other relationships between the memory location identifiers of FIG. 7
  • FIGS. 11 a to 11 b are block diagram representations of still other relationships between the memory location identifiers of FIG. 7 ;
  • FIG. 12 is a table of information relating to another relationship between the two memory location identifiers of FIG. 7 that may be used for the detection of queue depth;
  • FIG. 13 is a block diagram of an implementation of a technique for the detection of queue depth using the information from the tables of FIGS. 3 and 7 ;
  • FIG. 14 is a table of information relating to the implementation of the technique for the detection of queue depth of FIG. 13 ;
  • FIG. 15 if a graphical representation of a result of the detection of queue depth according to the implementation of FIG. 13 ;
  • FIG. 16 is an alternate graphical representation of a result of the detection of queue depth according to the implementation of FIG. 13 ;
  • FIG. 17 are graphical representations of two comparisons between the implementation of the detection of queue depth of FIG. 13 with other techniques.
  • FIG. 18 are tables of information relating to the implementation of the detection of queue depth according to another embodiment of the present invention.
  • a data structure for a queue may be implemented by way of pointers to particular memory location.
  • a FIFO queue may be implemented by way of a read pointer that refers to the memory location at which data is being removed from the queue, and a write pointer that refers to the memory location at which data is being stored to the queue.
  • the read and write pointers refer to the same memory location. The first in, first out order is implemented by incrementing the write pointer to a new location as data in stored onto the queue, and then have the read pointer moved to follow the same memory location path as data is read, or removed, from the queue.
  • FIG. 1 a to 1 d pictorial representations are shown of memory space that is occupied by a FIFO queue.
  • a circle may be used to represent the memory space of a FIFO queue defined by a read pointer (shown as “rp” and designated 102 ) and a write pointer (shown as “wp” and designated 104 ), and that each sweep or revolution of each pointer through the circle represents one complete traversal of the entire memory space allocated to the FIFO queue.
  • the memory space allocated to FIFO queue 100 is shown to be empty, with the read pointer 102 and writer pointer 104 both referring to the same memory location.
  • FIG. 1 a the memory space allocated to FIFO queue 100 is shown to be empty, with the read pointer 102 and writer pointer 104 both referring to the same memory location.
  • queue 100 as shown is approximately a quarter full, as the writer pointer 104 has moved ahead of the read pointer 102 by approximately one quarter of the addressable memory locations available to queue 100 .
  • queue 100 as shown is approximately half full and nearly full, respectively. It will be appreciated that as write pointer 104 sweeps around queue 100 and catches up to read pointer 102 , queue 100 will experience a queue full condition, as any more data writing, that is, any more data being stored into queue 100 , will overwrite data that has yet to be removed from queue 100 and cause data corruption.
  • a read pointer may be a queue start identifier identifying the start position or location in memory where a queue begins
  • a write pointer may be an queue end identifier identifying the end position or location of the queue in memory.
  • the queue start and end identifiers for the embodiment are also memory pointers, they may also be referred to as a queue start pointer and a queue end pointer.
  • a feature of memory queues, and particularly FIFO queues, is that the memory locations may be addressed in a logically sequential manner.
  • a queue may be establish for an application in a memory system if the memory locations may be address according to a logically sequential scheme.
  • a sequentially addressable set of memory locations is assumed, but it will be appreciated that such a sequentially addressable set of memory locations maybe generated as necessary in another embodiment, or may be provided by another application, such as a software application in the operating system layer, in other embodiments.
  • a non-sequential but deterministic addressing scheme may be implemented.
  • queue full and queue empty conditions may be indicated by both read pointer 102 and write pointer 104 referring to the same memory location.
  • pointers 102 and 104 may be implemented as binary pointers, and since a situation in which pointers 102 and 104 referring to the same memory location denotes either a queue full or queue empty condition, to distinguish between a the full or empty condition, there may be a redundant, high-order bit appended to the FIFO read and write pointers 102 and 104 . This extra redundant bit may be added as the most significant bit (MSB) of the pointers, and may be used to determine queue “full” and queue “empty” conditions of the queue.
  • MSB most significant bit
  • FIG. 2 there is a table showing a list of memory locations that are referable in an embodiment in which pointer 102 and 104 are implemented with the use of binary pointers of 3 bits length.
  • the 3-bit binary points may address eight separate memory locations, which are shown as L 1 to L 8 in the table. If both read an write pointers 102 and 104 are of 3 bit length, a redundant MSB may be appended to each pointer 102 and 104 , and thus provide a 4-bit pointer to each of pointer 102 and 104 , as shown in FIG. 2 .
  • both read and writer pointers 102 and 104 are set to identify memory location L 1 initially when queue 100 is empty, and each binary pointer, including the redundant bit, provides “0000”.
  • write pointer 104 may be sequentially incremented after each memory location is stored with a data item. For instance, after the first data item is inserted into queue 100 at location L 1 , write pointer 104 may be incremented by one to “0001” which refers to memory location L 2 . Thus, if there are no read operations to remove data items, when the last memory location L 8 is filled, writer pointer 104 will be incremented from “0111” to “1000”.
  • write pointer 104 now refer to memory location L 1 by “000”, which already has data, but the redundant MSB is now “1” instead of “0”. Now, since there has been no read operations to remove data items from queue 100 , read pointer 102 is still “0000”, which also refers to memory location L 1 and had valid data. However, the redundant MSB of read pointer 102 is “0”, rather than “1” which is the value of the redundant MSB of write pointer 104 .
  • read pointer 102 will progress through memory locations L 1 to L 8 after each read operation, as described above with respect to pointer 102 .
  • the value of read pointer 102 will increment from “0111” to “1000”.
  • read pointer 102 is now also referring to the same memory location, that is location L 1 , as write pointer 104 .
  • the redundant MSB of each pointer is also identical.
  • a queue empty condition may be distinguished from a queue full condition by way of comparing the redundant MSB of each of read pointer 102 and write pointer 104 . If the redundant MSBs are identical, then a queue empty condition is detected, and if the redundant MSBs are different, then a queue full condition is detected. This determination may be by a direct comparison of read pointer and write pointers of a memory system given by the following formulas:
  • n is the required pointer length given by log2(Queue Depth), and n+1 is the pointer length with the redundant most significant bit. Details on the determination of absolute queue full and queue empty conditions is described in Cummings, Clifford E., Simulation and Synthesis Techniques for Asynchronous FIFO Design (Rev 1.1), SNUG 2002, Sunburst Design, Inc., San Jose, http://www.sunburst-design.com/papers/CummingsSNUG2002SJ_FIFO2_rev1 — 1.pdf, the contents of which are hereby incorporated by reference.
  • the simple determination of a queue full and queue empty condition may not yield sufficient information in some applications for which it maybe desirable to obtain intelligence as to the queue depth itself rather than simply an indication of the absolute full or empty conditions. For instance, it may be advantageous to detect a queue “almost full” condition or a queue “almost empty” condition so that a “warning window” of time may be provided before the actual absolute queue full or queue empty conditions are encountered. For example, an almost full condition may be useful in applications in which a data producer (or data writer) cannot respond sufficiently fast enough to a queue “full” condition to slow or stop a of data into a queue before overflowing the FIFO.
  • skid distance may be considered the distance, in data units, from when a command is issued to stop data flow, and when the data flow stops.
  • skid distance may be determined as “skid time ⁇ data rate”, and thus, for example, if a transfer rate is 1 byte/sec and it takes one second for a stop command to stop the data flow, then the skid distance would be 1 byte. It may also be advantageous to detect an “almost empty” condition, for example, at the restart of a memory service such that a queue never runs empty and an uninterrupted flow of data is seen at the queue read interface while freeing data producers to process other tasks.
  • the queue depth of a queue may be detected by way of examining a portion of memory location identifiers, such as the most significant bits of read and write pointers of a FIFO queue, to obtain an estimate of the queue depth. This estimate of queue depth maybe useful for determining queue “almost full” and “almost empty” conditions.
  • the detection of queue depth may be conducted by way of examining a subset of memory location information, such as the most significant bits of binary pointers relating to the read pointer 302 and write pointer 304 .
  • queue 300 may be accessed by binary read pointer 302 and write pointer 304 .
  • pointers 302 and 304 are also provided with a redundant MSB, that may provided for detection of queue full or queue empty conditions, and each of pointers 302 and 304 are of n-bits, including the redundant MSB.
  • pointers 302 and 304 of at least 4 bits, including the redundant MSB.
  • the addressable memory locations of queue 300 is at least 3 bits, and hence there are at least eight memory locations of queue 300 . It will be appreciated that pointers of having a greater or lesser number of bits may be used to reference memory queues having greater or lesser memory locations.
  • the actual pointer space (including redundant bit) that may be identified by pointers 302 and 304 may be partitioned into four equal parts as defined by the two upper bits (n:n ⁇ 1) of each of the pointers.
  • the two upper bits may change in value from “00” to 01” to “10” to “11” in repeating succession.
  • the two upper bits of each pointer 302 , 304 may be used to place the pointer in one of four quadrants in the pointer space, and also place the pointer in one of two halves in the memory space of queue 300 . This arises because the redundant MSB is not being used for memory location referencing.
  • a comparison of the upper two bits of read pointer 302 and write pointer 304 may be performed to determine if the pointers 302 and 304 are in “adjacent” pointer quadrants or the “same” quadrant, or neither adjacent nor in the same quadrant in the pointer space. This comparison may be referred to as a “course-grained comparison”. With reference to the actual memory space of queue 300 , a course-grained comparison determines if the pointers are in an adjacent half or same half of the memory space. For example, referring to FIG.
  • the queue depth of queue 300 may be estimated as between empty and half full when the pointers are logically adjacent (as shown in FIG. 5 a ), and between half full and full when the pointers are in the same logical quadrant (as shown in FIG. 5 b ).
  • the above technique for course-grained comparison is based on pointers 302 and 304 each having a redundant MSB for queue full or empty conditions, the above technique need not be concerned with a queue full or empty situation as a memory system associated with queue 300 may be taken to have other mechanisms, such as additional control logic (not shown), to ensures that the FIFO never overflows or underflows does not occur.
  • additional control logic not shown
  • Progressively finer estimation of queue depth may be obtained by examination of an increasing number of most-significant bits corresponding to pointers 302 and 304 . For instance, if the next two most significant bits of pointers 302 and 304 are also examined (that is, examining bits n ⁇ 2:n ⁇ 3), finer resolution as to the determination of queue depth for queue 300 may be provided. Referring to FIG. 7 , the memory space of queue 300 is shown again with next two most significant bits n ⁇ 2:n ⁇ 3 also examined. From the course-grained comparison technique discussed above, it was shown that queue 300 may be divided into halves 402 and 404 .
  • each of halves 402 and 404 may be divided into quarters, or with reference to the pointer space, sub-quarters.
  • sub-quarters 602 , 604 , 606 , and 608 corresponding to half 402 ; and sub-quarters 610 , 612 , 614 and 616 corresponding to half 404 .
  • the queue depth may be determined as between empty and 1 ⁇ 8 full (recalling that the queue full condition maybe ignored), and (ii) if pointer 304 is ahead of pointer 302 by more than one sub-quarter (that is, the pointers are in different sub-quarters), the queue depth may be determined within a resolution of 1 ⁇ 4 the memory space in the range between but not including queue full or queue empty.
  • greater resolution in the detection of queue depth in a memory system may be obtained with examination of a greater number of bits in each of the read and write pointers of a queue.
  • the choice as to the number of bits to examine may vary between different applications and memory systems being considered, and may include considerations of different factors such as the precision of queue depth estimation required, the size of the memory allocated to a queue, the amount of software or hardware logic (or a combination of software and hardware logic) required to examine the bits, and the desired response time for detecting the queue depth of the memory system under consideration.
  • One application of the queue depth detection technique describe above is to determine a queue “almost full” condition of a FIFO queue in a memory system.
  • a technique for determining an almost full condition for queue 300 by examining the 4 most significant bits of read pointer 302 and write pointer 304 . It will be appreciated by one of skill in this art that the technique described below may be readily modified to determine a queue “almost empty” condition, or to determine when a queue is at a particular estimated depth.
  • the detection of an almost full condition for queue 300 is conducted by way of a course-grained comparison of the two most significant bits (n:n ⁇ 1; including the redundant MSB), and a fine grained comparison of the nest two most significant bits (n ⁇ 2:n ⁇ 3).
  • the examination of two bits in each of the course-grained and fine-grained comparison may be suitable for implemented by way of a 4-input look-up table (LUT) architecture that may be found in modern static RAM-based field programmable gate arrays (FPGA).
  • LUT 4-input look-up table
  • FPGA field programmable gate arrays
  • the detection technique described below may also be utilized to reduce application specific integrated circuit (ASIC) libraries which contain complex logic gates. Still further, it will be appreciated that the detection technique described below may be suitable for use in other memory systems, as will be apparent to those of skill in this art.
  • the comparison of the two high-order bits (n:n ⁇ 1) from each pointer 302 and 304 may be accomplished by using 4-input loot-up tables (LUT) implemented on a FPGA. It will be appreciated that such a table would have twelve entries (or rows) corresponding to different combinations of the two high-order bits of pointers 302 and 304 .
  • LUT 4-input loot-up tables
  • column 702 provides the different combinations of the write pointer 304
  • column 704 provides the combinations of read pointer 304 .
  • Column 704 provides, with the binary value “1”, situations in which the combination of read pointer 302 and write pointer 304 in which an “adjacent” or “same” situation may be declared.
  • each of the “adjacent” or “same” condition may be determined by a 4-input LUT in a FPGA, as describe later below.
  • table 700 examples for the construction of four entries of table 700 is provided below. It will be appreciated that other entries in table 700 may be completed in the same manner, and that table 700 may be generated using a different technique in other embodiments.
  • read pointer 302 may be incrementing as data is read from queue 300 , it stays within quadrant “00” identified by its two most significant bits, shown as rp 502 , in all four exemplary scenarios considered (that is, the two most significant bits rp 502 remain “00” throughout).
  • the two most significant bits of write pointer 304 shown as wp 504 , also provide “00”, then the relationship of between the pointers may be illustrated as FIG. 5 a .
  • queue 300 is nowhere near full, and thus pointers 302 and 304 are considered to be neither “adjacent” nor in the “same” logical quadrant.
  • pointers 302 and 304 are considered to be neither “adjacent” nor in the “same” logical quadrant.
  • the first entry in which wp 504 is “00” and rp 504 is “00”, is not identified as “adjacent” or “same”.
  • write pointer 304 swings into the next quadrant and wp 502 is “01”, the situation is that as shown on FIG. 5 b . In this situation, pointers 302 and 304 are considered to be in “adjacent” quadrants. Thus, the value of “adjacent” is set to “1” (or any positive indicator) in the fifth row of table 700 having a bit combination of “0100”, which combination is the combined value of wp 504 being “01” and rp 502 being “00”.
  • write pointer 304 then wraps back into the first half of the memory space, that is, into quadrant “10” identified by wp 504 , the situation is a shown in FIG. 5c .
  • pointers 302 and 304 are considered to be in the “same” logical quadrant, and thus the value of“same” is set to “1” (or any other positive indicator) in the ninth row of table 700 having a bit combination of “1000”, which combination is the combined value of wp 504 being “10” and rp 502 being “00”.
  • the values of “adjacent” and “same” may be completed for the rest of table 700 , as shown in FIG. 7 .
  • two LUTs may be implemented in a FPGA to determine if the course-grained comparison yields an “adjacent” or “same” condition. This provides some insight into the queue depth of queue 300 , and may be combined with the results of the fine-grained comparison described below to detect an “almost full” condition of queue 300 . It will be appreciated that if the course-grained comparison yields neither “adjacent” nor “same”, then queue 300 must not be anywhere near full and hence an “almost full” condition would not be declared.
  • two fine-grained comparisons may also be performed on the next two most significant bits of the pointers 302 and 304 , shown as rp 802 for read pointer 302 and wp 804 for write pointer 304 with reference to FIGS. 8 a to 1 1 b. While the fine-grained comparison described below detects an almost full condition based on whether the course-grained comparison yields a result of “adjacent” or “same” quadrant, it will be appreciated that the fine-grained comparison may be performed concurrently with the course-grained comparison in applications for which a fast response time is desired, as described later below.
  • bits rp 802 and wp 804 that is, bits n ⁇ 2:n ⁇ 3 further subdivides each quarter of the pointer space associated with queue 300 into four sub-quadrants, as shown in FIG. 6 .
  • the threshold In the fine-grained comparison for determining a queue almost full condition, there is some flexibility for setting the threshold of “almost full”. For instance, in this example of queue depth detection for queue 300 , there is provided three exemplary threshold levels: optimistic; nominal, and pessimistic. These different threshold levels pertain to how closely write pointer 304 is permitted to approach read pointer 302 before an “almost full” condition is declared. Thus, it will be appreciated that the threshold may be considered the queue depth at which an almost full condition may be asserted, and that this threshold is adjustable according to the requirements of a particular application.
  • the fine-grained comparison determines an almost full condition when the combination of wp 804 and rp 802 is “1100”. This situation of almost full may be entered into a table 1200 in FIG. 12 under in column 1206 when the combination of wp 804 and rp 802 is “1100”.
  • a “nominal” threshold may include combinations of pointers 302 and 304 where they are separated by a sub-quadrant, as shown in FIGS. 9 a and 9 b . These wp 804 and rp 802 combinations of“1000”, “1100”, “1101” may also be marked as “almost full if_adjacent” in column 1208 of table 1200 . It will be appreciated that a more pessimistic threshold always subsumes the more optimistic situations, and hence combination wp 804 and rp 802 combination “1100” is included in the “nominal” threshold cases.
  • a respective zero, one or two sub-quadrant separation may also be determined.
  • pointers 302 and 304 are declared “almost full” if the pointers lie in adjacent sub-quadrants or the same sub-quadrant, as shown in FIG. 11 a and 11 b, which shows two of the seven possible scenarios of wp 804 and rp 802 combinations of “0000”, “0001”, “0101”, “0110”, “1010”, and “1111” for a “same” condition.
  • the more pessimistic thresholds of “nominal” and “pessimistic” for the “if_same” scenario would require the addition of combinations of pointers 302 and 304 at which they are respectively one or two sub-quadrants apart.
  • These combinations of wp 804 and rp 802 for which an almost full condition may be declared when the course-grained comparison indicates that pointers 302 and 304 are in the same quadrant are shown in column 1214 for the nominal threshold, and in column 1216 for the pessimistic threshold, as shown in table 1200 .
  • table 1200 shows the combinations of wp 804 in column 1202 and rp 802 in column 1204 , that will produce different results of “almost full” in “if_adjacent” and “if_same” scenarios of varying optimism.
  • an almost full condition of queue 300 may be detected.
  • this rule is also suitable for a 4-input LUT.
  • the entire detection of an almost full condition as described above may be implemented on five 4-input LUTs as shown in FIG. 13 . It will be appreciated that by having the arrangement as shown, the entire detection of an almost full condition may be carried out in only two gate delays, which may be advantageous for applications in which a fast response time is desired.
  • LUT 1302 is provided to receive as inputs wp 504 and rp 502 with each bit of wp 504 and rp 502 being one of the four inputs to LUT 1302 .
  • wp 504 and rp 502 correspond to the two most significant bits of pointers 304 and 302 , respectively.
  • a table look up is performed at LUT 1302 for “adjacent” as defined in column 706 of table 700 shown in FIG. 7 .
  • LUT 1304 is also configured to receive as inputs the four bits of wp 504 and rp 502 and perform a table look up for “same” as defined in column 706 of table 700 .
  • a threshold level such as optimistic, nominal, and pessimistic as described above, is selected and implemented within LUTs 1306 and 1308 .
  • LUT 1306 is configured to receive as inputs the four bits of wp 804 and rp 802 combined, corresponding to the second pair of most significant bits (n ⁇ 2:n ⁇ 3) of pointers 304 and 302 , respectively.
  • LUT 1306 determines if an almost full condition would arise if the course-grained comparison of the two most significant bits of pointers 304 and 302 yields an “adjacent” result, according to columns 1206 , 1208 or 1210 of table 1200 shown in FIG. 12 .
  • LUT 1306 This output of LUT 1306 for declaring an almost full condition for “adjacent” course-grained results is shown as “if_adjacent” in FIG. 13 .
  • LUT 1308 also receives the four bits of wp 804 and rp 802 as inputs, and provides a look up at a particular threshold level according to columns 1212 , 1214 or 1216 of table 1200 to determine an almost full condition for situations where the two most significant bits of pointers 304 and 302 yields a “same” result.
  • the output of LUT 1308 declaring an almost full condition for “same” course-grained results is shown as “if_same” in FIG. 13 .
  • LUT 1310 receives as its 4-inputs: (i) “adjacent” from LUT 1302 , (ii) “same” from LUT 1304 , (iii) “if_adjacent” from LUT 1306 , and (iv) “if_same” from LUT 1308 .
  • threshold levels may be selectable and adjusted in hardware or software. Further, it will be appreciated that other combinations of software or hardware logic may be used in conjunction or in lieu of LUTs in other embodiments to detect an almost full condition of a queue.
  • FIG. 15 there is an illustration of the behaviour of the almost full status condition to assert for different values of read pointer, write pointer and threshold levels. It will be appreciated that since only the upper most significant four bits are examined in an embodiment, the diagram shown in FIG. 15 scales to any size of read and write pointers of four bits or greater, (ie., where n ⁇ 4, including the redundant MSB).
  • FIG. 16 there is an alternative illustration of the almost full condition.
  • this illustration there is shown variations of queue depth versus a position of the write pointer at a given “almost full” threshold.
  • the graphical shape of the regions of “almost full” may be represented as a saw tooth waveform.
  • a queue depth detection technique as described above may be somewhat imprecise, for some applications, such as determining a queue “almost full” condition, the technique may be more than adequate. For instance, if the almost full condition is set for “pessimistic” as described above, then assertion of a queue almost full state at near half queue depth is typically more than adequate to provide notice, and hence enough time, to a memory system to take corrective action, such as having data read from a FIFO queue more quickly or squelching incoming data traffic to the FIFO queue.
  • the very minimal skid distance for instance of approximately 1 ⁇ 8 of the queue depth for an optimistic threshold described above, is also typically sufficient in most applications to suppress the flow of data into a queue of a memory system in order to overflowing a FIFO queue. It will be appreciated that different threshold levels may be chosen for application in different memory systems, as appropriate.
  • the queue depth detection technique may operate on varying number of bits of read and write pointers to provide varying degrees of resolution.
  • the technique for any number of examined bits is also scalable to varying sizes of memory space., since only the upper most significant bits are used.
  • the 5-LUTs implementation shown on FIG. 13 maybe used for detection of an almost full condition an a queue of any size greater than 8 memory locations, as only the upper four most significant bits (including the redundant MSB) are examined.
  • there is a minimum memory space location size that is associated with the number of bits examined given by 2 (n ⁇ 1) , where n is the number of bits in the read and write pointers, including the redundant MSB.
  • the same two delay 5-LUT system described with reference to FIG. 13 may be used to determine an almost full condition on FIFO queues of any size greater than 8 memory locations, and would not require any additional logic to implement even as queue size increases significantly.
  • the above described technique may be used in other embodiments of memory systems.
  • the above described technique for queue depth detection, and particularly determination of a queue almost full condition may be used with grey-coded pointers.
  • a grey-coded pointer, or cyclic binary code is a binary representation of number sin which each incremental number differs from the one that precedes it by one unit or bit, in one position.
  • Table 1800 a shows a first set of “adjacent” and “if_adjacent” combinations that may be selected
  • table 1800 b shows a second set of “adjacent” and “if_adjacent” combinations that may be selected for LUTs.

Abstract

A method and apparatus for detecting a queue depth of a memory queue in a memory system is described. The method includes estimating a start position of the queue by examining a portion of a queue start identifier of the memory queue, estimating an end position of the queue by examining a portion of a queue end identifier of the memory queue, and utilizing the start position and the end position to estimate the queue depth of the memory queue. The apparatus applies the method. One embodiment of the method and apparatus may be suitable for implementation on look-up tables of field general programmable gate arrays.

Description

    FIELD OF INVENTION
  • The invention relates to the art of memory system controls and more specifically to the detection of queue depth in a memory system.
  • BACKGROUND OF THE INVENTION
  • In memory systems, it is common to implement data structures, such as first-in-first-out (FIFO) queues, for the storage and retrieval of data. FIFO queues may be implemented as a technique for processing a memory structure, in which items in the memory structure are removed in the same order in which they were added to the memory structure. FIFO queues may be utilized in memory systems of different applications. In some applications, FIFO queues are implemented on network elements, such as a network interface card (NIC), to provide sequential processing of data items to a network processor.
  • It may be advantageous in some applications to be able to detect the queue depth of a memory structure, such as a FIFO queue, at a particular time. That is, at any particular time, it may be advantageous to detect how much of the available memory to a queue is being used. Unless a memory system can expand indefinitely, queue depth detection may be useful to detect a queue “almost-full” condition, so as to provide an opportunity for the memory system, or a system utilizing the memory system, to take action before a “queue full” error arises. This may be particularly important in high speed NICs, in which data may fill available space in a FIFO queue quickly.
  • As such, there is a need for a method and apparatus that seeks to provide queue depth detection for memory systems.
  • SUMMARY OF THE INVENTION
  • In an aspect of the present invention, there is provided a method for detecting a queue depth of a memory queue in a memory system. The method comprises: estimating a start position of the queue by examining a portion of a queue start identifier of the memory queue; estimating an end position of the queue by examining a portion of a queue end identifier of the memory queue; and utilizing the start position and the end position to estimate the queue depth of the memory queue.
  • The queue start identifier may be a queue start memory pointer, and the queue end identifier may be a queue end memory pointer.
  • The memory queue may be a first-in-first-out queue, and the queue start and queue end memory pointers may be binary pointers.
  • The queue start identifier may comprise binary bits, and the portion of the queue start identifier may be a subset of the binary bits of the queue start identifier. The queue end identifier may also comprise binary bits, and the portion of the queue end identifier may be a subset of the binary bits of the queue end identifier.
  • The subset of binary bits of the queue start identifier may include the two most significant bits of the queue start pointer, and the subset of binary bits of the queue end identifier may include the two most significant bits of the queue end pointer.
  • The most significant bit of each of the queue start pointer and the queue end pointer may be a redundant bit for determining a queue full and a queue empty condition.
  • The subset of the binary bits of the queue start identifier may comprise the four most significant bits of the queue start memory pointer, and the subset of the binary bits of the queue end identifier may comprise the four most significant bits of the queue end memory pointer.
  • The queue depth to be detected is an almost empty condition of the memory queue. The queue depth to be detected is an almost full condition of the memory queue. An adjustable threshold may be provided for detecting the almost full condition or almost empty condition.
  • The first and second most significant bits of each of the queue start and queue end pointers may define one of four pointer quarters in a pointer space. The step of comparing the start position and the end position to estimate the queue depth of the memory queue may comprise: determining from the first and second most significant bits of each of the queue start and queue end pointers whether the queue start and queue end pointers identify adjacent pointer quarters or the same pointer quarter; and examining the third and forth most significant bits of each of the queue start and queue end pointers for detecting the almost full condition if the queue start and queue end pointers identify adjacent quarters or the same pointer quarter.
  • The steps of determining whether the queue start and queue end pointers identify adjacent pointer quarters or the same pointer quarter, examining the third and forth most significant bits and detecting the almost full condition may be performed with the use of look-up tables. The look-up tables may be found within one or more field programmable gate arrays.
  • The steps of determining whether the queue start and queue end pointers identify adjacent pointer quarters or the same pointer quarter, examining the third and forth most significant bits and detecting the almost full condition may be performed with the use of application specific integrated circuits.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • The foregoing and other aspects of the invention will become more apparent from the following description of specific embodiments thereof and the accompanying drawings which illustrate, by way of example only, the principles of the invention. In the drawings, where like elements feature like reference numerals (and wherein individual elements bear unique alphabetical suffixes):
  • FIGS. 1 a to 1 d are block diagram representations of a memory queue in a memory system;
  • FIG. 2 is table of information relating to two pointers identifying memory locations in the memory queue of FIGS. 1 a to 1 d;
  • FIG. 3 is a block diagram representation of a memory queue in a memory system in another embodiment of the present invention;
  • FIG. 4 is an alternate block diagram representation of the memory queue of FIG. 3;
  • FIGS. 5 a to 5 c are alternate block diagram representations of the memory queue of FIG. 3;
  • FIG. 6 is another alternate block diagram representation of the memory queue of FIG. 3;
  • FIG. 7 is a table of information relating to a relationship between two memory location identifiers in the memory queue of FIG. 3 that may be used for the detection of queue depth;
  • FIGS. 8 a to 8 c are block diagram representations of relationships between the memory location identifiers of FIG. 7;
  • FIGS. 9 a to 9 b are block diagram representations of other relationships between the memory location identifiers of FIG. 7;
  • FIGS. 10 a to 10 c are block diagram representations of yet other relationships between the memory location identifiers of FIG. 7
  • FIGS. 11 a to 11 b are block diagram representations of still other relationships between the memory location identifiers of FIG. 7;
  • FIG. 12 is a table of information relating to another relationship between the two memory location identifiers of FIG. 7 that may be used for the detection of queue depth;
  • FIG. 13 is a block diagram of an implementation of a technique for the detection of queue depth using the information from the tables of FIGS. 3 and 7;
  • FIG. 14 is a table of information relating to the implementation of the technique for the detection of queue depth of FIG. 13;
  • FIG. 15 if a graphical representation of a result of the detection of queue depth according to the implementation of FIG. 13;
  • FIG. 16 is an alternate graphical representation of a result of the detection of queue depth according to the implementation of FIG. 13;
  • FIG. 17 are graphical representations of two comparisons between the implementation of the detection of queue depth of FIG. 13 with other techniques; and
  • FIG. 18 are tables of information relating to the implementation of the detection of queue depth according to another embodiment of the present invention.
  • DETAILED DESCRIPTION OF AN EMBODIMENT
  • The description which follows, and the embodiments described therein, are provided by way of illustration of an example, or examples, of particular embodiments of the principles of the present invention. These examples are provided for the purposes of explanation, and not limitation, of those principles and of the invention. In the description, which follows, like parts are marked throughout the specification and the drawings with the same respective reference numerals.
  • In a memory system, a data structure for a queue may be implemented by way of pointers to particular memory location. For instance, a FIFO queue may be implemented by way of a read pointer that refers to the memory location at which data is being removed from the queue, and a write pointer that refers to the memory location at which data is being stored to the queue. At initialization of such a FIFO queue, the read and write pointers refer to the same memory location. The first in, first out order is implemented by incrementing the write pointer to a new location as data in stored onto the queue, and then have the read pointer moved to follow the same memory location path as data is read, or removed, from the queue.
  • Referring to FIG. 1 a to 1 d, pictorial representations are shown of memory space that is occupied by a FIFO queue. It will be apparent to one of skill in this art that a circle may be used to represent the memory space of a FIFO queue defined by a read pointer (shown as “rp” and designated 102) and a write pointer (shown as “wp” and designated 104), and that each sweep or revolution of each pointer through the circle represents one complete traversal of the entire memory space allocated to the FIFO queue. Thus, in FIG. 1 a, the memory space allocated to FIFO queue 100 is shown to be empty, with the read pointer 102 and writer pointer 104 both referring to the same memory location. In FIG. 1 b, queue 100 as shown is approximately a quarter full, as the writer pointer 104 has moved ahead of the read pointer 102 by approximately one quarter of the addressable memory locations available to queue 100. In FIGS. 1 c and 1 d, queue 100 as shown is approximately half full and nearly full, respectively. It will be appreciated that as write pointer 104 sweeps around queue 100 and catches up to read pointer 102, queue 100 will experience a queue full condition, as any more data writing, that is, any more data being stored into queue 100, will overwrite data that has yet to be removed from queue 100 and cause data corruption. Thus, in an embodiment a read pointer may be a queue start identifier identifying the start position or location in memory where a queue begins, and a write pointer may be an queue end identifier identifying the end position or location of the queue in memory. As the queue start and end identifiers for the embodiment are also memory pointers, they may also be referred to as a queue start pointer and a queue end pointer.
  • A feature of memory queues, and particularly FIFO queues, is that the memory locations may be addressed in a logically sequential manner. Thus, while the memory queue may occupy non-contiguous blocks of physical memory, a queue may be establish for an application in a memory system if the memory locations may be address according to a logically sequential scheme. In an embodiment described below, a sequentially addressable set of memory locations is assumed, but it will be appreciated that such a sequentially addressable set of memory locations maybe generated as necessary in another embodiment, or may be provided by another application, such as a software application in the operating system layer, in other embodiments. Thus, in another embodiment a non-sequential but deterministic addressing scheme may be implemented.
  • It will thus be appreciated by one of skill in this art that with pointers 102 and 104, queue full and queue empty conditions may be indicated by both read pointer 102 and write pointer 104 referring to the same memory location. In an embodiment, pointers 102 and 104 may be implemented as binary pointers, and since a situation in which pointers 102 and 104 referring to the same memory location denotes either a queue full or queue empty condition, to distinguish between a the full or empty condition, there may be a redundant, high-order bit appended to the FIFO read and write pointers 102 and 104. This extra redundant bit may be added as the most significant bit (MSB) of the pointers, and may be used to determine queue “full” and queue “empty” conditions of the queue. For instance, in FIG. 2 there is a table showing a list of memory locations that are referable in an embodiment in which pointer 102 and 104 are implemented with the use of binary pointers of 3 bits length. As shown in FIG. 2, the 3-bit binary points may address eight separate memory locations, which are shown as L1 to L8 in the table. If both read an write pointers 102 and 104 are of 3 bit length, a redundant MSB may be appended to each pointer 102 and 104, and thus provide a 4-bit pointer to each of pointer 102 and 104, as shown in FIG. 2.
  • Assume now that both read and writer pointers 102 and 104 are set to identify memory location L1 initially when queue 100 is empty, and each binary pointer, including the redundant bit, provides “0000”. As data items are inserted into queue 100, write pointer 104 may be sequentially incremented after each memory location is stored with a data item. For instance, after the first data item is inserted into queue 100 at location L1, write pointer 104 may be incremented by one to “0001” which refers to memory location L2. Thus, if there are no read operations to remove data items, when the last memory location L8 is filled, writer pointer 104 will be incremented from “0111” to “1000”. The 3 least significant bits of write pointer 104 now refer to memory location L1 by “000”, which already has data, but the redundant MSB is now “1” instead of “0”. Now, since there has been no read operations to remove data items from queue 100, read pointer 102 is still “0000”, which also refers to memory location L1 and had valid data. However, the redundant MSB of read pointer 102 is “0”, rather than “1” which is the value of the redundant MSB of write pointer 104.
  • Now, if data starts to be read from queue 100, read pointer 102 will progress through memory locations L1 to L8 after each read operation, as described above with respect to pointer 102. When the last data item is read from memory location L8, the value of read pointer 102 will increment from “0111” to “1000”. Thus, read pointer 102 is now also referring to the same memory location, that is location L1, as write pointer 104. Now, not only are the 3 least significant bits of each pointer 102 and 104 is identical, the redundant MSB of each pointer is also identical.
  • Thus, it will be appreciated that a queue empty condition may be distinguished from a queue full condition by way of comparing the redundant MSB of each of read pointer 102 and write pointer 104. If the redundant MSBs are identical, then a queue empty condition is detected, and if the redundant MSBs are different, then a queue full condition is detected. This determination may be by a direct comparison of read pointer and write pointers of a memory system given by the following formulas:
      • empty:=rd_ptr==wr_ptr;
      • full:=rd_ptr[n]!=wr_ptr[n]&& rd_ptr[n−1:0]=wr_ptr[n−1:0];
        • where rd_ptr is the read pointer,
          • wr_ptr is the write pointer, and
          • n+1 is the bit length of the pointers given by n=log2(Queue Depth)
  • Thus, n is the required pointer length given by log2(Queue Depth), and n+1 is the pointer length with the redundant most significant bit. Details on the determination of absolute queue full and queue empty conditions is described in Cummings, Clifford E., Simulation and Synthesis Techniques for Asynchronous FIFO Design (Rev 1.1), SNUG 2002, Sunburst Design, Inc., San Jose, http://www.sunburst-design.com/papers/CummingsSNUG2002SJ_FIFO2_rev11.pdf, the contents of which are hereby incorporated by reference.
  • The simple determination of a queue full and queue empty condition may not yield sufficient information in some applications for which it maybe desirable to obtain intelligence as to the queue depth itself rather than simply an indication of the absolute full or empty conditions. For instance, it may be advantageous to detect a queue “almost full” condition or a queue “almost empty” condition so that a “warning window” of time may be provided before the actual absolute queue full or queue empty conditions are encountered. For example, an almost full condition may be useful in applications in which a data producer (or data writer) cannot respond sufficiently fast enough to a queue “full” condition to slow or stop a of data into a queue before overflowing the FIFO. This may be particularly useful in applications at an inter-chip interface of, for instance, one or more network interface cards where the detection of only an absolute queue full condition does not provide enough time to avoid a queue overflow condition if the “skid distance” of an interface exceeds a single clock cycle. A skid distance may be considered the distance, in data units, from when a command is issued to stop data flow, and when the data flow stops. Thus, skid distance may be determined as “skid time×data rate”, and thus, for example, if a transfer rate is 1 byte/sec and it takes one second for a stop command to stop the data flow, then the skid distance would be 1 byte. It may also be advantageous to detect an “almost empty” condition, for example, at the restart of a memory service such that a queue never runs empty and an uninterrupted flow of data is seen at the queue read interface while freeing data producers to process other tasks.
  • In an embodiment, the queue depth of a queue may be detected by way of examining a portion of memory location identifiers, such as the most significant bits of read and write pointers of a FIFO queue, to obtain an estimate of the queue depth. This estimate of queue depth maybe useful for determining queue “almost full” and “almost empty” conditions.
  • Referring to FIG. 3, the detection of queue depth, such as for queue 300, may be conducted by way of examining a subset of memory location information, such as the most significant bits of binary pointers relating to the read pointer 302 and write pointer 304. Like queue 100 described above, queue 300 may be accessed by binary read pointer 302 and write pointer 304. For the embodiment, pointers 302 and 304 are also provided with a redundant MSB, that may provided for detection of queue full or queue empty conditions, and each of pointers 302 and 304 are of n-bits, including the redundant MSB. For the examples below given for illustrative purposes, pointers 302 and 304 of at least 4 bits, including the redundant MSB. Thus, for the illustrated examples, the addressable memory locations of queue 300 is at least 3 bits, and hence there are at least eight memory locations of queue 300. It will be appreciated that pointers of having a greater or lesser number of bits may be used to reference memory queues having greater or lesser memory locations.
  • Referring to FIG. 4, in detecting the queue depth of queue 300, the actual pointer space (including redundant bit) that may be identified by pointers 302 and 304 may be partitioned into four equal parts as defined by the two upper bits (n:n−1) of each of the pointers. Thus, for each of pointers 302 and 304, the two upper bits may change in value from “00” to 01” to “10” to “11” in repeating succession. Thus, the two upper bits of each pointer 302, 304 may be used to place the pointer in one of four quadrants in the pointer space, and also place the pointer in one of two halves in the memory space of queue 300. This arises because the redundant MSB is not being used for memory location referencing. Thus, only bit n−1 of the two upper bits of pointers 302, 304 may be used to place the pointer in the memory space of queue 300, and the two upper bits may be used to place pointer 302 or 304 in one of two halves of the memory space of queue 300 (shown on FIG. 4 as half 402 defined by bit n−1=0, and half 404 defined by bit n−1=1).
  • A comparison of the upper two bits of read pointer 302 and write pointer 304 may be performed to determine if the pointers 302 and 304 are in “adjacent” pointer quadrants or the “same” quadrant, or neither adjacent nor in the same quadrant in the pointer space. This comparison may be referred to as a “course-grained comparison”. With reference to the actual memory space of queue 300, a course-grained comparison determines if the pointers are in an adjacent half or same half of the memory space. For example, referring to FIG. 5 b if the upper-most two bits of read pointer 302, shown as rp 502, identifies the pointer in quadrant “00”, and the upper-most two bits of write pointer 304, shown as wp 504, shows that write pointer 304 has swung around to “10”, the pointers may be considered “logically adjacent”. Similarly, referring to FIG. 5 c, if the upper-most two bits of read pointer 302, shown as rp 502, is in quadrant “01” and the upper-most two bits of write pointer 304, shown as wp 504, has wrapped around to “11”, then the pointers maybe considered to be in the “logically same” quadrant. Thus, it will be appreciated that with a course-grained comparison using the two upper-most bits rp 502 and wp 504 of read and write pointers 302 and 304, respectively, the queue depth of queue 300 may be estimated as between empty and half full when the pointers are logically adjacent (as shown in FIG. 5 a), and between half full and full when the pointers are in the same logical quadrant (as shown in FIG. 5 b).
  • As the above technique for course-grained comparison is based on pointers 302 and 304 each having a redundant MSB for queue full or empty conditions, the above technique need not be concerned with a queue full or empty situation as a memory system associated with queue 300 may be taken to have other mechanisms, such as additional control logic (not shown), to ensures that the FIFO never overflows or underflows does not occur. Thus, a logical situation where wp 501 is “11” and rp 502 is “00”, or other situations in which the write pointer 304 catches up or overtakes read pointer 302, may be ignored
  • Progressively finer estimation of queue depth may be obtained by examination of an increasing number of most-significant bits corresponding to pointers 302 and 304. For instance, if the next two most significant bits of pointers 302 and 304 are also examined (that is, examining bits n−2:n−3), finer resolution as to the determination of queue depth for queue 300 may be provided. Referring to FIG. 7, the memory space of queue 300 is shown again with next two most significant bits n−2:n−3 also examined. From the course-grained comparison technique discussed above, it was shown that queue 300 may be divided into halves 402 and 404. Now, with the examination of the next two most significant bits n−2:n−3 in a fine-grained examination, each of halves 402 and 404 may be divided into quarters, or with reference to the pointer space, sub-quarters. Thus, as shown there are sub-quarters 602, 604, 606, and 608 corresponding to half 402; and sub-quarters 610, 612, 614 and 616 corresponding to half 404. With examination of the four most significant bits of pointers 302 and 304, it can be determined at any time the sub-quarter(s) of queue 300 that each of read pointer 302 or write pointer 304 is referencing. Thus, by examining the four most significant bits of pointers 302 (including the redundant MSB), then it may be determined that (i) if both pointers 302 and 304 are pointing within the same sub-quarter, the queue depth may be determined as between empty and ⅛ full (recalling that the queue full condition maybe ignored), and (ii) if pointer 304 is ahead of pointer 302 by more than one sub-quarter (that is, the pointers are in different sub-quarters), the queue depth may be determined within a resolution of ¼ the memory space in the range between but not including queue full or queue empty.
  • Thus, it will be appreciated that greater resolution in the detection of queue depth in a memory system may be obtained with examination of a greater number of bits in each of the read and write pointers of a queue. The choice as to the number of bits to examine may vary between different applications and memory systems being considered, and may include considerations of different factors such as the precision of queue depth estimation required, the size of the memory allocated to a queue, the amount of software or hardware logic (or a combination of software and hardware logic) required to examine the bits, and the desired response time for detecting the queue depth of the memory system under consideration.
  • One application of the queue depth detection technique describe above is to determine a queue “almost full” condition of a FIFO queue in a memory system. Referring again to FIGS. 5 a to 5 c and queue 300 shown therein, in one embodiment there is provided a technique for determining an almost full condition for queue 300 by examining the 4 most significant bits of read pointer 302 and write pointer 304. It will be appreciated by one of skill in this art that the technique described below may be readily modified to determine a queue “almost empty” condition, or to determine when a queue is at a particular estimated depth.
  • For an embodiment, the detection of an almost full condition for queue 300 is conducted by way of a course-grained comparison of the two most significant bits (n:n−1; including the redundant MSB), and a fine grained comparison of the nest two most significant bits (n−2:n−3). Due to the binary nature of pointers 302 and 304, the examination of two bits in each of the course-grained and fine-grained comparison may be suitable for implemented by way of a 4-input look-up table (LUT) architecture that may be found in modern static RAM-based field programmable gate arrays (FPGA). However, it will be appreciated the detection technique described below may also be utilized to reduce application specific integrated circuit (ASIC) libraries which contain complex logic gates. Still further, it will be appreciated that the detection technique described below may be suitable for use in other memory systems, as will be apparent to those of skill in this art.
  • Course-Grained Comparison
  • In an embodiment, the comparison of the two high-order bits (n:n−1) from each pointer 302 and 304 may be accomplished by using 4-input loot-up tables (LUT) implemented on a FPGA. It will be appreciated that such a table would have twelve entries (or rows) corresponding to different combinations of the two high-order bits of pointers 302 and 304. Referring to table 700 of FIG. 7, column 702 provides the different combinations of the write pointer 304, and column 704 provides the combinations of read pointer 304. Column 704 provides, with the binary value “1”, situations in which the combination of read pointer 302 and write pointer 304 in which an “adjacent” or “same” situation may be declared. In an embodiment, each of the “adjacent” or “same” condition may be determined by a 4-input LUT in a FPGA, as describe later below.
  • With reference to FIGS. 5 a to 5 c, examples for the construction of four entries of table 700 is provided below. It will be appreciated that other entries in table 700 may be completed in the same manner, and that table 700 may be generated using a different technique in other embodiments. For the embodiment, first suppose that while read pointer 302 may be incrementing as data is read from queue 300, it stays within quadrant “00” identified by its two most significant bits, shown as rp 502, in all four exemplary scenarios considered (that is, the two most significant bits rp 502 remain “00” throughout). Now, if the two most significant bits of write pointer 304, shown as wp 504, also provide “00”, then the relationship of between the pointers may be illustrated as FIG. 5 a. As shown, queue 300 is nowhere near full, and thus pointers 302 and 304 are considered to be neither “adjacent” nor in the “same” logical quadrant. Thus, referring to FIG. 7, the first entry in which wp 504 is “00” and rp 504 is “00”, is not identified as “adjacent” or “same”.
  • Now, if write pointer 304 swings into the next quadrant and wp 502 is “01”, the situation is that as shown on FIG. 5 b. In this situation, pointers 302 and 304 are considered to be in “adjacent” quadrants. Thus, the value of “adjacent” is set to “1” (or any positive indicator) in the fifth row of table 700 having a bit combination of “0100”, which combination is the combined value of wp 504 being “01” and rp 502 being “00”.
  • If write pointer 304 then wraps back into the first half of the memory space, that is, into quadrant “10” identified by wp 504, the situation is a shown in FIG. 5c. In this situation, pointers 302 and 304 are considered to be in the “same” logical quadrant, and thus the value of“same” is set to “1” (or any other positive indicator) in the ninth row of table 700 having a bit combination of “1000”, which combination is the combined value of wp 504 being “10” and rp 502 being “00”.
  • Finally, if the wp 504 becomes “11” while rp 502 is “00”, that is, if write pointer 304 ever surpasses read pointer 302, then it can be assumed that an error has occurred since, as described, the condition of an actual queue overflow is protected against by other techniques, such as additional logic, in the embodiment. Thus, scenarios such as “1100” in table 700, being the combined value of wp 504 being “11” and rp 502 being “00”, may be marked as “don't-care” combinations and set to logical “0” in an embodiment utilizing a FPGA LUT architecture. In an ASIC implementation, these combinations may be set to “don't-care” to reduce the elements in an ASIC library. Other “don't-care” situations in table 700 identified with wp 504 and rp 502 combinations of “0001”, “0110” and “1011” are shown.
  • According to the above describe technique, the values of “adjacent” and “same” may be completed for the rest of table 700, as shown in FIG. 7. Using the values of table 700, two LUTs may be implemented in a FPGA to determine if the course-grained comparison yields an “adjacent” or “same” condition. This provides some insight into the queue depth of queue 300, and may be combined with the results of the fine-grained comparison described below to detect an “almost full” condition of queue 300. It will be appreciated that if the course-grained comparison yields neither “adjacent” nor “same”, then queue 300 must not be anywhere near full and hence an “almost full” condition would not be declared.
  • Fine-Grained Comparison
  • Similarly to the technique described above with respect to the course-grained comparison, two fine-grained comparisons may also be performed on the next two most significant bits of the pointers 302 and 304, shown as rp 802 for read pointer 302 and wp 804 for write pointer 304 with reference to FIGS. 8 a to 1 1 b. While the fine-grained comparison described below detects an almost full condition based on whether the course-grained comparison yields a result of “adjacent” or “same” quadrant, it will be appreciated that the fine-grained comparison may be performed concurrently with the course-grained comparison in applications for which a fast response time is desired, as described later below.
  • As described above with reference to FIG. 6, the examination of bits rp 802 and wp 804 (that is, bits n−2:n−3) further subdivides each quarter of the pointer space associated with queue 300 into four sub-quadrants, as shown in FIG. 6. In the fine-grained comparison for determining a queue almost full condition, there is some flexibility for setting the threshold of “almost full”. For instance, in this example of queue depth detection for queue 300, there is provided three exemplary threshold levels: optimistic; nominal, and pessimistic. These different threshold levels pertain to how closely write pointer 304 is permitted to approach read pointer 302 before an “almost full” condition is declared. Thus, it will be appreciated that the threshold may be considered the queue depth at which an almost full condition may be asserted, and that this threshold is adjustable according to the requirements of a particular application.
  • For instance, if the course-grained comparison indicates that pointers 302 and 304 are in “adjacent” quadrants, then in an “optimistic” setting an almost full condition may be set to be declared only when there is not a single sub-quadrant separating pointers 302 and 304. For this optimistic threshold scenario, if the course-grained comparison shows “adjacent”, then there are only two occurrences of rp 802 and wp 804 that would yield an almost full condition, as shown in FIG. 8 a and 8 b. However, it will be noted that in both occurrences, the value of wp 804 is “11” and rp 802 is “00”. Thus, if the course-grained comparison showed that the quadrants are adjacent, then the fine-grained comparison determine an almost full condition when the combination of wp 804 and rp 802 is “1100”. This situation of almost full may be entered into a table 1200 in FIG. 12 under in column 1206 when the combination of wp 804 and rp 802 is “1100”.
  • For the embodiment, a “nominal” threshold may include combinations of pointers 302 and 304 where they are separated by a sub-quadrant, as shown in FIGS. 9 a and 9 b. These wp 804 and rp 802 combinations of“1000”, “1100”, “1101” may also be marked as “almost full if_adjacent” in column 1208 of table 1200. It will be appreciated that a more pessimistic threshold always subsumes the more optimistic situations, and hence combination wp 804 and rp 802 combination “1100” is included in the “nominal” threshold cases.
  • For an even more pessimistic threshold in which an almost full condition may be declared when there are two sub-quadrants separating read pointer 302 from write pointer 304, as shown in FIGS. 10 a to 10 c. From this, entries for almost full when the course-grained comparison shows “adjacent” is added to column 1210 of table 1200, in addition to the more optimistic identified situations of “optimistic” and “nominal” that will be subsumed in the “pessimistic” scenarios identified in column 1206.
  • If the course-grained comparison produced a condition of a “same” logical quadrant, the same threshold of optimistic, nominal, and pessimistic, then a respective zero, one or two sub-quadrant separation may also be determined. For the optimistic threshold, pointers 302 and 304 are declared “almost full” if the pointers lie in adjacent sub-quadrants or the same sub-quadrant, as shown in FIG. 11 a and 11 b, which shows two of the seven possible scenarios of wp 804 and rp 802 combinations of “0000”, “0001”, “0101”, “0110”, “1010”, and “1111” for a “same” condition.
  • These values are shown in column 1212 of table 1200. It will be appreciated that since pointers 302 and 304 are in the same quadrant, only one half of the circle representing queue 300 need be analyzed as shown in FIGS. 11 a and 11 b.
  • Like the “if_adjacent” scenario, the more pessimistic thresholds of “nominal” and “pessimistic” for the “if_same” scenario would require the addition of combinations of pointers 302 and 304 at which they are respectively one or two sub-quadrants apart. These combinations of wp 804 and rp 802 for which an almost full condition may be declared when the course-grained comparison indicates that pointers 302 and 304 are in the same quadrant are shown in column 1214 for the nominal threshold, and in column 1216 for the pessimistic threshold, as shown in table 1200. Thus, table 1200 shows the combinations of wp 804 in column 1202 and rp 802 in column 1204, that will produce different results of “almost full” in “if_adjacent” and “if_same” scenarios of varying optimism.
  • Thus, based on the course-grained comparison and on the fine-grained comparison with a set threshold, an almost full condition of queue 300 may be detected. For the embodiment, the results of the course-grained and fine-grained comparisons maybe combined to determine an almost full condition with the following rule:
    almost_full:=(adjacent && if_adjacent)∥(same && if_same)
  • It will be appreciated that this rule is also suitable for a 4-input LUT. Thus, for an embodiment, the entire detection of an almost full condition as described above may be implemented on five 4-input LUTs as shown in FIG. 13. It will be appreciated that by having the arrangement as shown, the entire detection of an almost full condition may be carried out in only two gate delays, which may be advantageous for applications in which a fast response time is desired.
  • Referring to FIG. 13, LUT 1302 is provided to receive as inputs wp 504 and rp 502 with each bit of wp 504 and rp 502 being one of the four inputs to LUT 1302. As described above, wp 504 and rp 502 correspond to the two most significant bits of pointers 304 and 302, respectively. A table look up is performed at LUT 1302 for “adjacent” as defined in column 706 of table 700 shown in FIG. 7. LUT 1304 is also configured to receive as inputs the four bits of wp 504 and rp 502 and perform a table look up for “same” as defined in column 706 of table 700. Thus, if the bit combination of wp 504 and rp 502 resolves into “adjacent”, then the output for LUT 1302, shown as “adjacent”, is set to “1”; otherwise, the output is “0”. For LUT 1304, if combination of wp 504 and rp 502 resolves into “same”, then the output for LUT 1304, shown as “same”, is set to “1”; otherwise, the output is “0”.
  • For the fine-grained comparison, a threshold level, such as optimistic, nominal, and pessimistic as described above, is selected and implemented within LUTs 1306 and 1308. For a particular threshold level, LUT 1306 is configured to receive as inputs the four bits of wp 804 and rp 802 combined, corresponding to the second pair of most significant bits (n−2:n−3) of pointers 304 and 302, respectively. For a particular threshold level, LUT 1306 determines if an almost full condition would arise if the course-grained comparison of the two most significant bits of pointers 304 and 302 yields an “adjacent” result, according to columns 1206, 1208 or 1210 of table 1200 shown in FIG. 12. This output of LUT 1306 for declaring an almost full condition for “adjacent” course-grained results is shown as “if_adjacent” in FIG. 13. LUT 1308 also receives the four bits of wp 804 and rp 802 as inputs, and provides a look up at a particular threshold level according to columns 1212, 1214 or 1216 of table 1200 to determine an almost full condition for situations where the two most significant bits of pointers 304 and 302 yields a “same” result. The output of LUT 1308 declaring an almost full condition for “same” course-grained results is shown as “if_same” in FIG. 13.
  • Finally, LUT 1310 receives as its 4-inputs: (i) “adjacent” from LUT 1302, (ii) “same” from LUT 1304, (iii) “if_adjacent” from LUT 1306, and (iv) “if_same” from LUT 1308. A further lookup is performed in LUT 1308 to declare an almost full condition for queue 300 according to the rule almost_full:=(adjacent && if_adjacent)∥(same && if_same), which may be shown in tabular form in FIG. 14.
  • While the above embodiment describes a pre-selected threshold for the fine grained comparison, it will be appreciated that in other embodiments threshold levels may be selectable and adjusted in hardware or software. Further, it will be appreciated that other combinations of software or hardware logic may be used in conjunction or in lieu of LUTs in other embodiments to detect an almost full condition of a queue.
  • Referring to FIG. 15, there is an illustration of the behaviour of the almost full status condition to assert for different values of read pointer, write pointer and threshold levels. It will be appreciated that since only the upper most significant four bits are examined in an embodiment, the diagram shown in FIG. 15 scales to any size of read and write pointers of four bits or greater, (ie., where n≧4, including the redundant MSB).
  • Referring to FIG. 16, there is an alternative illustration of the almost full condition. In this illustration, there is shown variations of queue depth versus a position of the write pointer at a given “almost full” threshold. It can be seen that the graphical shape of the regions of “almost full” may be represented as a saw tooth waveform. Thus, it will be appreciated that, without any a priori knowledge of the read and write pointers of a queue, there is some uncertainty with respect to the queue depth at which an almost full condition will assert at a given threshold level. However, as shown in FIG. 16, the range of uncertainty is known to be approximately ⅛ of the full 2n−1 range of the pointers for a given threshold level for the condition to assert. Thus, for example, if there were 4 bits then the range would be 0 to 2(4−1), or zero to fifteen. As shown in FIG. 16,
  • It will be appreciated that although a queue depth detection technique as described above may be somewhat imprecise, for some applications, such as determining a queue “almost full” condition, the technique may be more than adequate. For instance, if the almost full condition is set for “pessimistic” as described above, then assertion of a queue almost full state at near half queue depth is typically more than adequate to provide notice, and hence enough time, to a memory system to take corrective action, such as having data read from a FIFO queue more quickly or squelching incoming data traffic to the FIFO queue. Likewise, the very minimal skid distance, for instance of approximately ⅛ of the queue depth for an optimistic threshold described above, is also typically sufficient in most applications to suppress the flow of data into a queue of a memory system in order to overflowing a FIFO queue. It will be appreciated that different threshold levels may be chosen for application in different memory systems, as appropriate.
  • As described above, the queue depth detection technique may operate on varying number of bits of read and write pointers to provide varying degrees of resolution. The technique for any number of examined bits is also scalable to varying sizes of memory space., since only the upper most significant bits are used. For instance, the 5-LUTs implementation shown on FIG. 13 maybe used for detection of an almost full condition an a queue of any size greater than 8 memory locations, as only the upper four most significant bits (including the redundant MSB) are examined. As will be appreciated by one of skill in this art, that there is a minimum memory space location size that is associated with the number of bits examined given by 2(n−1), where n is the number of bits in the read and write pointers, including the redundant MSB. Thus, the same two delay 5-LUT system described with reference to FIG. 13 may be used to determine an almost full condition on FIFO queues of any size greater than 8 memory locations, and would not require any additional logic to implement even as queue size increases significantly.
  • It will be appreciated that the highly scalable nature of this queue depth detection technique, and in particular the determination of a queue almost full condition, makes the technique compelling for use compared to some other techniques for queue depth detection. Referring to FIG. 17, it can be seen that while the embodiment described in FIG. 13 uses a fixed 5 LUTs and provides a fixed 2 element delays and is thus highly scalable (shown as “almost_full” in FIG. 17), other techniques for queue depth detection, such as a programmable depth threshold register or a hard-wired (i.e., fixed depth) detector, may not scale nearly as well with increasing pointer bit width in larger memory queues in some implementations.
  • It will be appreciated that the above described technique may be used in other embodiments of memory systems. For instance, in another embodiment, the above described technique for queue depth detection, and particularly determination of a queue almost full condition, may be used with grey-coded pointers. A grey-coded pointer, or cyclic binary code, is a binary representation of number sin which each incremental number differs from the one that precedes it by one unit or bit, in one position. One of skill in this art would appreciated that since only one bit is changed at any one time, a period of potential value inconsistency, which may occur as two or more bits are changing from “0” to “1” or vice versa, is thereby avoided. The above described technique for detecting queue depth, and particularly queue almost full, may be used to with grey-coded pointers as well. However, it will be appreciated that additional logic in hardware, software, or both would be required to implement the technique with grey codes. For instance, considering only the “adjacent” situation, if the four upper most significant bits of pointer (read or write) are examined, then it will be appreciated that since there are now two fine-grained “if_adjacent” tables, an additional LUT is required for the if_adjacent comparison. Additionally, two course-grained comparisons will also need to be performed for the “adjacent” determination using 2 LUTs. Referring to FIG. 18, there is shown a set of grey code possibilities for the four most significant bits of each pointer. Table 1800 a shows a first set of “adjacent” and “if_adjacent” combinations that may be selected, and table 1800 b shows a second set of “adjacent” and “if_adjacent” combinations that may be selected for LUTs. Thus, to carry out a four-MSB comparison of grey coded pointers, a total of two comparisons are required for each of “adjacent” and “same” quadrants, which combines with the if_adjacent and if_same to require 11 LUTs in three delay stages to carry out.
  • It will be appreciated that the above-described implementation using LUTs in one or more static RAM-based FGPAs as shown in FIG. 13 may tend to provide a fast response time and reduce the logic, and hence cost, required for implementing the detection scheme. This may be particularly desirable for some applications requiring fast response times for the detection of an almost full or other queue depth condition, and can accept some tolerance with respect to the detection of the exact depth of a queue. For instance, in an application at an inter-chip interface for one or more network interface cards, such an implementation of queue depth detection using LUTs may be suitable as a low cost, high speed detection scheme. It will be appreciated that implementation of the techniques using software and hardware combinations besides FGPA is possible in other embodiments.
  • It will be appreciated that although the forgoing embodiments are with respect to binary pointers to memory locations, other memory addressing or indexing systems may be used in other embodiments.
  • Although the invention has been described with reference to certain specific embodiments, various modifications thereof will be apparent to those skilled in the art without department from the scope of the invention as outlined in the claims appended hereto.

Claims (15)

1. A method for detecting a queue depth of a memory queue in a memory system, comprising:
estimating a start position of the queue by examining a portion of a queue start identifier of the memory queue;
estimating an end position of the queue by examining a portion of a queue end identifier of the memory queue; and
utilizing the start position and the end position to estimate the queue depth of the memory queue.
2. The method of claim 1, wherein the queue start identifier is a queue start memory pointer, and the queue end identifier is a queue end memory pointer.
3. The method of claim 2, wherein the memory queue is a first-in-first-out queue.
4. The method of claim 3, wherein the queue start and queue end memory pointers are binary pointers.
5. The method of claim 4, wherein:
the queue start identifier comprise binary bits, and the portion of the queue start identifier is a subset of the binary bits of the queue start identifier; and
the queue end identifier comprise binary bits, and the portion of the queue end identifier is a subset of the binary bits of the queue end identifier.
6. The method of claim 5, wherein:
the subset of binary bits of the queue start identifier include the two most significant bits of the queue start pointer; and
the subset of binary bits of the queue end identifier include the two most significant bits of the queue end pointer.
7. The method of claim 6, wherein the most significant bit of each of the queue start pointer and the queue end pointer is a redundant bit for determining a queue full and a queue empty condition.
8. The method of claim 7, wherein:
the subset of the binary bits of the queue start identifier comprise the four most significant bits of the queue start memory pointer; and
the subset of the binary bits of the queue end identifier comprise the four most significant bits of the queue end memory pointer.
9. The method of claim 8, wherein the queue depth to be detected is an almost empty condition of the memory queue.
10. The method of claim 9, wherein the queue depth to be detected is an almost full condition of the memory queue.
11. The method of claim 10, wherein an adjustable threshold is provided for detecting the almost full condition
12. The method of claim 11, wherein the first and second most significant bits of each of the queue start and queue end pointers define one of four pointer quarters in a pointer space, and the step of comparing the start position and the end position to estimate the queue depth of the memory queue comprises:
determining from the first and second most significant bits of each of the queue start and queue end pointers whether the queue start and queue end pointers identify adjacent pointer quarters or the same pointer quarter; and
examining the third and forth most significant bits of each of the queue start and queue end pointers for detecting the almost full condition if the queue start and queue end pointers identify adjacent quarters or the same pointer quarter.
13. The method of claim 12, wherein the steps of determining whether the queue start and queue end pointers identify adjacent pointer quarters or the same pointer quarter, examining the third and forth most significant bits and detecting the almost full condition are performed with the use of look-up tables.
14. The method of claim 13, wherein the look-up tables are found within one or more field programmable gate arrays.
15. The method of claim 12, wherein the steps of determining whether the queue start and queue end pointers identify adjacent pointer quarters or the same pointer quarter, examining the third and forth most significant bits and detecting the almost full condition are performed with the use of application specific integrated circuits.
US11/091,476 2005-03-29 2005-03-29 Method and apparatus for queue depth detection in a memory system Expired - Fee Related US8416793B2 (en)

Priority Applications (3)

Application Number Priority Date Filing Date Title
US11/091,476 US8416793B2 (en) 2005-03-29 2005-03-29 Method and apparatus for queue depth detection in a memory system
EP06300293A EP1710702A3 (en) 2005-03-29 2006-03-28 Method and apparatus for queue depth detection in a memory system
CNA2006100840279A CN1848075A (en) 2005-03-29 2006-03-29 Method and apparatus for queue depth detection in a memory system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US11/091,476 US8416793B2 (en) 2005-03-29 2005-03-29 Method and apparatus for queue depth detection in a memory system

Publications (2)

Publication Number Publication Date
US20060251090A1 true US20060251090A1 (en) 2006-11-09
US8416793B2 US8416793B2 (en) 2013-04-09

Family

ID=36570756

Family Applications (1)

Application Number Title Priority Date Filing Date
US11/091,476 Expired - Fee Related US8416793B2 (en) 2005-03-29 2005-03-29 Method and apparatus for queue depth detection in a memory system

Country Status (3)

Country Link
US (1) US8416793B2 (en)
EP (1) EP1710702A3 (en)
CN (1) CN1848075A (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20110225374A1 (en) * 2010-03-12 2011-09-15 International Business Machines Corporation Self-adjusting scsi storage port queue
US9292466B1 (en) * 2010-12-28 2016-03-22 Amazon Technologies, Inc. Traffic control for prioritized virtual machines
US20220129275A1 (en) * 2020-10-23 2022-04-28 Ut-Battelle, Llc Circular queue management with split indexes

Families Citing this family (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9183111B2 (en) * 2011-05-10 2015-11-10 Microsoft Technology Licensing, Llc Methods and computer program products for collecting storage resource performance data using file system hooks
EP3422171A1 (en) * 2017-06-30 2019-01-02 INTEL Corporation Dual pointer for memory mapped interface communication
JP6953226B2 (en) * 2017-08-04 2021-10-27 ソニーセミコンダクタソリューションズ株式会社 Communication devices, communication methods, programs, and communication systems
JP7031961B2 (en) 2017-08-04 2022-03-08 ソニーセミコンダクタソリューションズ株式会社 Communication equipment, communication methods, programs, and communication systems

Citations (16)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4374428A (en) * 1979-11-05 1983-02-15 Rca Corporation Expandable FIFO system
US4429604A (en) * 1981-06-22 1984-02-07 Kimball International, Inc. Fill note generation system for microcomputer controlled organ
US4833651A (en) * 1986-07-24 1989-05-23 National Semiconductor Corporation High-speed, asynchronous, No-Fall-Through, first-in-first out memory with high data integrity
US4942553A (en) * 1988-05-12 1990-07-17 Zilog, Inc. System for providing notification of impending FIFO overruns and underruns
US5406554A (en) * 1993-10-05 1995-04-11 Music Semiconductors, Corp. Synchronous FIFO having an alterable buffer store
US5898893A (en) * 1995-10-10 1999-04-27 Xilinx, Inc. Fifo memory system and method for controlling
US6263410B1 (en) * 1998-09-15 2001-07-17 Industrial Technology Research Institute Apparatus and method for asynchronous dual port FIFO
US6384634B1 (en) * 2001-02-21 2002-05-07 Nortel Networks Limited Elastic store: recovery and boundary verification
US6389490B1 (en) * 1999-10-07 2002-05-14 Xilinx, Inc. FIFO memory system and method with improved generation of empty and full control signals in one clock cycle using almost empty and almost full signals
US6480912B1 (en) * 2000-07-21 2002-11-12 Stmicroelectronics, Inc. Method and apparatus for determining the number of empty memory locations in a FIFO memory device
US6590826B1 (en) * 2002-01-22 2003-07-08 Xilinx, Inc. Self-addressing FIFO
US6937172B1 (en) * 2004-05-04 2005-08-30 Xilinx, Inc. Method and system for gray-coding counting
US6956776B1 (en) * 2004-05-04 2005-10-18 Xilinx, Inc. Almost full, almost empty memory system
US7082516B1 (en) * 2000-09-28 2006-07-25 Intel Corporation Aligning instructions using a variable width alignment engine having an intelligent buffer refill mechanism
US20080129506A1 (en) * 2006-08-07 2008-06-05 Symbol Technologies, Inc. Concatenated Pointers for Radio Frequency Identification Tags
US20100174877A1 (en) * 2009-01-07 2010-07-08 Nec Electronics Corporation Ring buffer circuit and control circuit for ring buffer circuit

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6337893B1 (en) 1999-11-04 2002-01-08 Philips Electronics North America Corp. Non-power-of-two grey-code counter system having binary incrementer with counts distributed with bilateral symmetry

Patent Citations (17)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4374428A (en) * 1979-11-05 1983-02-15 Rca Corporation Expandable FIFO system
US4429604A (en) * 1981-06-22 1984-02-07 Kimball International, Inc. Fill note generation system for microcomputer controlled organ
US4833651A (en) * 1986-07-24 1989-05-23 National Semiconductor Corporation High-speed, asynchronous, No-Fall-Through, first-in-first out memory with high data integrity
US4942553A (en) * 1988-05-12 1990-07-17 Zilog, Inc. System for providing notification of impending FIFO overruns and underruns
US5406554A (en) * 1993-10-05 1995-04-11 Music Semiconductors, Corp. Synchronous FIFO having an alterable buffer store
US5898893A (en) * 1995-10-10 1999-04-27 Xilinx, Inc. Fifo memory system and method for controlling
US6263410B1 (en) * 1998-09-15 2001-07-17 Industrial Technology Research Institute Apparatus and method for asynchronous dual port FIFO
US6389490B1 (en) * 1999-10-07 2002-05-14 Xilinx, Inc. FIFO memory system and method with improved generation of empty and full control signals in one clock cycle using almost empty and almost full signals
US6434642B1 (en) * 1999-10-07 2002-08-13 Xilinx, Inc. FIFO memory system and method with improved determination of full and empty conditions and amount of data stored
US6480912B1 (en) * 2000-07-21 2002-11-12 Stmicroelectronics, Inc. Method and apparatus for determining the number of empty memory locations in a FIFO memory device
US7082516B1 (en) * 2000-09-28 2006-07-25 Intel Corporation Aligning instructions using a variable width alignment engine having an intelligent buffer refill mechanism
US6384634B1 (en) * 2001-02-21 2002-05-07 Nortel Networks Limited Elastic store: recovery and boundary verification
US6590826B1 (en) * 2002-01-22 2003-07-08 Xilinx, Inc. Self-addressing FIFO
US6937172B1 (en) * 2004-05-04 2005-08-30 Xilinx, Inc. Method and system for gray-coding counting
US6956776B1 (en) * 2004-05-04 2005-10-18 Xilinx, Inc. Almost full, almost empty memory system
US20080129506A1 (en) * 2006-08-07 2008-06-05 Symbol Technologies, Inc. Concatenated Pointers for Radio Frequency Identification Tags
US20100174877A1 (en) * 2009-01-07 2010-07-08 Nec Electronics Corporation Ring buffer circuit and control circuit for ring buffer circuit

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20110225374A1 (en) * 2010-03-12 2011-09-15 International Business Machines Corporation Self-adjusting scsi storage port queue
US8898403B2 (en) 2010-03-12 2014-11-25 International Business Machines Corporation Self-adjusting SCSI storage port queue
US8904122B2 (en) 2010-03-12 2014-12-02 International Business Machines Corporation Self-adjusting SCSI storage port queue
US9292466B1 (en) * 2010-12-28 2016-03-22 Amazon Technologies, Inc. Traffic control for prioritized virtual machines
US20220129275A1 (en) * 2020-10-23 2022-04-28 Ut-Battelle, Llc Circular queue management with split indexes
US11693663B2 (en) * 2020-10-23 2023-07-04 Ut-Battelle, Llc Circular queue management with split indexes

Also Published As

Publication number Publication date
EP1710702A3 (en) 2008-01-16
EP1710702A2 (en) 2006-10-11
CN1848075A (en) 2006-10-18
US8416793B2 (en) 2013-04-09

Similar Documents

Publication Publication Date Title
US8416793B2 (en) Method and apparatus for queue depth detection in a memory system
US9111615B1 (en) RAM-based ternary content addressable memory
US6263410B1 (en) Apparatus and method for asynchronous dual port FIFO
EP2149083B1 (en) Fifo buffer
US7971125B2 (en) Systems and methods for prioritizing error correction data
JP2010160653A (en) Ring buffer circuit and control circuit for the same
US7702989B2 (en) Systems and methods for generating erasure flags
US5898893A (en) Fifo memory system and method for controlling
US5267191A (en) FIFO memory system
US4031520A (en) Multistage sorter having pushdown stacks with concurrent access to interstage buffer memories for arranging an input list into numerical order
CN1236450C (en) Device and operating method for controlling not synchronous first in first out memories
EP0540665A1 (en) Routing independent circuit components
US5384744A (en) Look ahead flag for FIFO
US9330740B1 (en) First-in first-out circuits and methods
US6745265B1 (en) Method and apparatus for generating status flags in a memory device
TW440867B (en) FIFO memory device and method for controlling same
US6996640B1 (en) Method and system for asynchronously transferring data
US6480912B1 (en) Method and apparatus for determining the number of empty memory locations in a FIFO memory device
KR101192566B1 (en) Memory control method and memory control device
US11532338B1 (en) Mediating between asynchronous clock domains while preventing false indications of FIFO occupancy
US20050091429A1 (en) System and method for designing data structures
US8555026B2 (en) Methods and systems for storing variable width stack elements in a single memory stack
US6721861B2 (en) Indicator of validity status information for data storage within a data processing system
US20070260824A1 (en) Method for memory page management
EP1039371A1 (en) An apparatus and a method for handling data between two asynchronous units

Legal Events

Date Code Title Description
AS Assignment

Owner name: ALCATEL, FRANCE

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:JONES, THOMAS CARLETON;REEL/FRAME:016429/0316

Effective date: 20050324

FEPP Fee payment procedure

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

AS Assignment

Owner name: CREDIT SUISSE AG, NEW YORK

Free format text: SECURITY AGREEMENT;ASSIGNOR:LUCENT, ALCATEL;REEL/FRAME:029821/0001

Effective date: 20130130

Owner name: CREDIT SUISSE AG, NEW YORK

Free format text: SECURITY AGREEMENT;ASSIGNOR:ALCATEL LUCENT;REEL/FRAME:029821/0001

Effective date: 20130130

AS Assignment

Owner name: ALCATEL LUCENT, FRANCE

Free format text: CHANGE OF NAME;ASSIGNOR:ALCATEL;REEL/FRAME:029800/0950

Effective date: 20061130

STCF Information on status: patent grant

Free format text: PATENTED CASE

AS Assignment

Owner name: ALCATEL LUCENT, FRANCE

Free format text: RELEASE BY SECURED PARTY;ASSIGNOR:CREDIT SUISSE AG;REEL/FRAME:033868/0555

Effective date: 20140819

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: 20210409