US20020156764A1 - Method of managing data - Google Patents

Method of managing data Download PDF

Info

Publication number
US20020156764A1
US20020156764A1 US10/032,806 US3280601A US2002156764A1 US 20020156764 A1 US20020156764 A1 US 20020156764A1 US 3280601 A US3280601 A US 3280601A US 2002156764 A1 US2002156764 A1 US 2002156764A1
Authority
US
United States
Prior art keywords
queue
data
blocks
field
committed
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.)
Abandoned
Application number
US10/032,806
Inventor
Alistair Goudie
Colin Helliwell
Marcus 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.)
Microsemi Semiconductor Ltd
Original Assignee
Zarlink Semiconductor Ltd
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
Priority claimed from GBGB0031761.0A external-priority patent/GB0031761D0/en
Application filed by Zarlink Semiconductor Ltd filed Critical Zarlink Semiconductor Ltd
Assigned to ZARLINK SEMICONDUCTOR LIMITED, A UK COMPANY reassignment ZARLINK SEMICONDUCTOR LIMITED, A UK COMPANY ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: HELLIWELL, COLIN, JONES, MARCUS, GOUDIE, ALISTAIR
Publication of US20020156764A1 publication Critical patent/US20020156764A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L49/00Packet switching elements
    • H04L49/90Buffering arrangements
    • H04L49/901Buffering arrangements using storage descriptor, e.g. read or write pointers
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L49/00Packet switching elements
    • H04L49/90Buffering arrangements
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L69/00Network arrangements, protocols or services independent of the application payload and not provided for in the other groups of this subclass
    • H04L69/22Parsing or analysis of headers

Definitions

  • This invention relates to a method of managing data stored in a queue in memory.
  • a method of managing data stored in a queue in memory comprising: reading data from a head of the queue; updating the location of a latest read pointer to a location corresponding to the end of the data; transferring the data to a destination and, upon receiving confirmation that the data transfer was successful, updating the location of a committed read pointer to a location corresponding to the end of the data.
  • the method further comprises, upon receiving no confirmation or a negative confirmation that the data transfer was successful, updating the location of the latest read pointer to assume the location of the committed read pointer.
  • FIG. 1 shows a queue manager system with four queue users.
  • a queue manager system 10 is shown connected to first to fourth queue users 11 - 14 via a respective one of first to fourth hardware queue user interfaces 15 - 18 .
  • the queue manager system 10 comprises a hardware queue manager core 19 , which is controlled by software through a software interface 20 .
  • the queue manager core 19 is connected to each of the queue user interfaces 15 - 18 via a respective one of first to fourth queue portals 21 - 24 and a common bus (not shown).
  • the software interface 20 is responsible for creating and destroying queues, for resizing queues, and for supplying the memory blocks used in the queues.
  • the principle task of the queue manager core 19 is to re-allocate ‘used blocks’ back onto the tails of queues.
  • the queue manager core 19 also includes a bus arbiter (not shown) that controls how and when parallel hardware and software functions can get access to the bus (not shown).
  • the queue portals 21 - 24 provide access to the queues.
  • Each queue portal 21 - 24 comprises two parts. One part can be used to write to a queue, the other part can be used to read from a queue (each part can be accessing different queues). Although only four queue portals 21 - 24 are shown, there is no limit to the number of portals that could be used. The main constraint on the number of portals is the worst case bus bandwidth required by them.
  • One queue portal 21 - 24 is required for each queue user 11 - 14 .
  • a queue user 11 - 14 can access multiple queues, and can simultaneously read from one queue whilst writing to another queue. In this case, the tasks are simultaneous but bus accesses are made sequential by the bus arbiter. However, each time a queue user 11 - 14 wants to read or write to or from a different queue, it must tell its queue portal 21 - 24 to unload the current queue pointers and to then load new queue pointers.
  • Each queue user 11 - 14 is a standard component or function with a direct memory access (DMA) capability. Therefore, each queue user 11 - 14 requires its queue user interface 15 - 18 to translate DMA request and acknowledge signals into a standard set of signals recognised by the queue portals 21 - 24 . In some applications this is a simple signal translation, whilst in other applications the interface 15 - 18 adds or removes data, to translate to or from an application specific packet format.
  • DMA direct memory access
  • the basic building block of asynchronous queues is a block of random access memory (RAM) (not shown).
  • RAM random access memory
  • the amount of RAM available to the queue manager system 10 is split into lots of small memory blocks of the same size, in order to avoid the overhead of storing the memory ‘block size ’ with every memory block.
  • different queues could use different memory block sizes, although this would complicate the software which creates and re-sizes queues.
  • the memory blocks are 64 bytes long.
  • Every memory block starts with a ‘link field’, which is a pointer to the address of the link field of the next memory block.
  • the memory used by a queue is made up of a number of memory blocks which can be distributed anywhere in the RAM, and which are linked together by link fields.
  • a ‘block control’ field This contains a length field indicating how many information bytes are currently stored in the block, and four control bits.
  • the four most significant bits (MSBs) of the block control field constitute the control bits, which indicate boundaries in the data flow.
  • the length field is stored in the least significant bits (LSBs) of the block control field.
  • a memory block is shown in Table 1: TABLE 1 Link Field Control (4-bits) Length (12-bits) Data . . . (High byte, Low byte)
  • the queue manager system 10 identifies multiple types of packet boundaries by using the four control flags in each memory block. These control flags are the 4 MSBs of the block control field. If the most significant control bit is set, it means the first information byte in the memory block is the start of a packet. The remaining three control bits indicate other types of boundaries. The next MSB indicates transport packet boundaries, and the next bit indicates application packet boundaries. If the three LSBs were used without the MSB, the system would not be able to indicate where in the memory block the boundary occurred.
  • a queue user 11 - 14 If, when a queue user 11 - 14 is writing to its queue portal 21 - 24 , it writes to the MSB of the control flags, the queue portal stops writing to the current memory block, and advance its pointers (not shown) to the link field of the next memory block.
  • the queue user 11 - 14 asks a queue portal 21 - 24 how many bytes of data are available, the queue user 11 - 14 also supplies the required number of bytes, and applies a mask to the control field.
  • the queue portal 21 - 24 searches through the queue until either it reaches the set of control flags identified by the mask, it finds the required number of bytes, or it reaches the end of the data available, whichever occurs first.
  • This mechanism allows control information to be included in the data stream at the start of a data packet.
  • the queue user interface 15 - 18 that subsequently reads the data out of the queue is then able to extract the control information.
  • control flags are not used, i.e. they are always zero.
  • a standard asynchronous queue has a defined number of memory blocks allocated to it. If data is consumed more quickly than it is added to the queue, the queue may become empty. The blocks allocated to the queue will be unused, but unavailable to other queues. Meanwhile, another queue may be receiving too much data. The queue will be filled, and then the sender must either be stopped, or the data will be lost.
  • This type of queue is referred to as a ‘single queue’.
  • the advantage of this type of queue is that the resources available to a queue are defined. In a system that dynamically re-allocates memory blocks as required, if a queue is slow to empty it could utilise all the available memory blocks. In this case, all the other queues may be stopped because there are no more memory blocks available.
  • the queue manager system 10 supports dynamic memory allocation, using ‘grouped queues’.
  • a grouped queue consists of a number of ‘element queues’ and a ‘resource queue’.
  • the element queues are the same as single queues except that there is a difference in the number of spare blocks allocated to element queues. Data is read to and written from element queues.
  • the resource queue is, in effect, a linked list of spare memory blocks. All of the element queues in a grouped queue use memory blocks of the same size.
  • memory blocks When memory blocks are released from the head of a single queue, they are re-allocated to the tail of the same queue, unless there has been a request to reduce the size of the queue.
  • memory blocks When memory blocks are released from the head of an element queue, they are usually allocated to the resource queue. While an element queue is not loaded for writing, it does not have any ‘empty blocks’. The tail of the element queue points to the same memory block that the last ‘committed write’ points to.
  • a queue portal 21 - 24 loads an element queue for writing, the resource queue is linked onto the tail of the element queue, making all the blocks in the resource queue available.
  • the queue portal 21 - 24 unloads an element queue (at which point it will do a commit or discard), any spare memory blocks are removed from the element queue, and re-allocated to the resource queue.
  • the main constraint of this system is that only one element of a grouped queue may be written to at any one time. Since the whole resource queue is added to the active element. In most instances, a single queue portal 21 - 24 writes to the grouped queue, and, therefore, there is only ever one element queue loaded for writing. There is, in theory, no limit to the number of single or grouped queues that can be created.
  • the main constraint is the memory resources required.
  • the other type of queue is an isochronous (ISO) queue.
  • Isochronous data is time critical data, such as telephone speech data.
  • An ISO queue uses different control mechanisms, which are managed by different hardware. ISO queue control mechanisms can be an additional component or an alternative component to a queue portal 21 - 24 .
  • An ISO queue uses a single contiguous block of memory rather then the linked memory blocks used by asynchronous queues. This memory area is typically quite small, for example 32-256 bytes.
  • An ISO queue provides a small buffer space to isolate queue users that generate and/or use data in a jittery or bursty way. If an ISO queue becomes full, the oldest data is disposed of by overwriting it. This type of queue is not used if data integrity is important. If the queue becomes empty or effectively empty, the data most recently read from the queue is read again.
  • isochronous data is linear pulse code modulation (PCM) data, which comprises samples of an analogue signal, such as a voice recording.
  • PCM linear pulse code modulation
  • the data read again from the queue consists of a number of bytes of data which when reconstructed into an audio signal sounds the same as or similar to sounds immediately before and after it. This is much less noticeable than a gap in an audio signal.
  • isochronous data is data such as continuous variable slope delta (CVSD) modulation data
  • CVSD continuous variable slope delta
  • special arrangements are made to ensure that the mean of the reconstructed signal remains at zero, since otherwise saturation or digital overflow may occur.
  • This type of data, and types similar thereto, is accommodated in one of two ways. Firstly, the data read again may be processed to provide a zero offset. It will be appreciated that there are many ways of achieving this. Secondly, data may be generated which corresponds to a sequence of alternate increments and decrements, i.e. a small amplitude sinusoid signal is generated in place of data being read again.
  • a queue descriptor is a set of pointers and control fields that control how the chains of blocks are used and managed.
  • the queue descriptors are stored in a different part of memory.
  • the software interface 20 creates a queue, it also creates a queue descriptor.
  • a queue is identified by the address of the start of the corresponding queue descriptor.
  • a queue user 11 - 14 accesses a queue through a queue portal 21 - 24 , it provides the address of the start of the descriptor, which is hereafter termed the queue identifier (QID).
  • QID queue identifier
  • the single queues and element queues use similar queue descriptors.
  • This type of queue descriptor is made-up of a number of sub-descriptors and access control bits.
  • the resource queue uses a simplified version of a queue descriptor.
  • the access control bits in the queue descriptors ensure that, at any point in time, only one queue portal or the software interface 20 is allowed to modify a field in the descriptor.
  • Table 3 illustrates the fields in a resource queue descriptor, in which RID is the resource queue identifier. TABLE 3 Address Lock bit High byte Low byte RID 0 — Blocks to remove Lock control RID + 2 2 Head of blocks RID + 3 1 Tail of blocks RID + 4 RmW — Empty Blocks (12-bits)
  • the lock control field is a byte wide field containing bits for controlling write permission to other fields in the descriptor.
  • the hardware includes an un-interruptible, read-modify-write sequence to ensure that only one function (portal 21 - 24 or software interface 20 ) can change the lock value at any given time.
  • the lock bit column in the two tables indicate which bits control accesses to which fields. Lock bit 0 only applies to the ‘blocks to remove’ field. The lock control field can be modified while bit 0 is set.
  • the ‘blocks to remove’ field is a byte wide field which indicates the number of memory blocks which should be removed from the queue. This requires an access control lock since there are two functions that can modify the value.
  • the software interface 20 can modify the value to request the queue length to be re-sized, and the re-allocation function then decrements the value as blocks are released.
  • the ‘blocks to remove’ field is only valid for single queues and resource queues—i.e. element queue descriptors, the field is unused. If blocks are to be removed from a grouped queue, the software interface 20 requests that they are removed from the resource queue rather than the element queues. If the ‘blocks to remove’ field is set to 255, all the blocks in the queue are removed as they go through a re-allocation. Here, the ‘blocks to remove’ value will not be reduced.
  • the ‘block size’ field is a 12-bit field, i.e. excluding the four control bits that indicate how many bytes of information can be written to the memory blocks used by the queue.
  • the ‘block size’ field is modified only when the queue is created. While the queue is active, the ‘block size’ field is read only, and therefore doesn't require a lock.
  • the element queue descriptors define the resource queue ‘block size’, which is the same for all elements in a grouped queue.
  • resource queues In place of the ‘block size’ field, resource queues have a 2-byte word wide ‘head of blocks’ field.
  • the ‘head of blocks’ field contains the address of the memory block at the head of the chain of unused blocks.
  • a queue portal 21 - 24 updates the ‘head of blocks’ field and releases the lock when it unloads a queue.
  • the ‘tail of blocks’ field in a single queue is a word wide field containing the address of the last memory block to be added to the queue.
  • the block re-allocation function uses this field to identify where released blocks should be linked back onto the tail of the queue.
  • the ‘tail of blocks’ field points to the link field in the memory block at the tail of the queue. Since the re-allocation function is the only function that modifies the ‘tail of blocks’ field, lock control is not required. As all single queues must contain at least one memory block, the ‘tail of blocks’ field is always valid.
  • the ‘tail of blocks’ field in a resource queue is similar to the ‘tail of blocks’ in a single queue. However, a resource queue can become empty, which would make the ‘tail of blocks’ field invalid.
  • the resource queue descriptor therefore includes an access control bit for the ‘tail of blocks’ field.
  • the ‘empty blocks’ field is a byte wide field that indicates the number of spare (unused) blocks on the tail of a single queue, although some of the blocks may be used by an uncommitted write process which is still loaded).
  • a single queue contains a maximum of 255 blocks, which enables the ‘empty blocks’ and ‘used blocks’ fields to be accessed together.
  • the value in ‘empty blocks’ multiplied by the ‘block size’ gives a good approximation of the storage space (RAM) currently available, although this excludes any space available in the block which ‘committed tail block’ points to.
  • the ‘empty blocks’ and the ‘used blocks’ fields are modified using an un-interruptable, read-modify-write sequence rather than using a lock bit.
  • a queue portal 21 - 24 commits to write, it increases the value in the ‘used blocks’ field by the number of blocks being committed to, and decreases the value in the ‘empty blocks’ field by the same amount.
  • the re-allocation function adds a block to a queue, it increments the value in the ‘empty blocks’.
  • the ‘empty blocks’ field of element queue descriptors is termed the ‘used blocks threshold’.
  • the resource queue is usually linked onto the element queue. However, if the value in the ‘used blocks’ field is greater than the value in ‘used blocks threshold’ field, the resource queue is not appended to the element queue.
  • the ‘used blocks threshold’ field can be used to prevent one element of a grouped queue using all the spare memory blocks.
  • the threshold is only applied when the queue is loaded. If an element queue is loaded with the resource queue, it can commit to any number of blocks, up to the number of blocks in the resource queue. These committed blocks are added to the ‘used blocks’ field even if the result is greater than the ‘used blocks threshold’.
  • grouped queues a single ‘empty blocks’ count is kept in the resource queue.
  • the ‘empty blocks’ field in an element queue is used to store the ‘used blocks threshold’ field. Since the grouped queue may need to keep track of more spare blocks, to service multiple element queues, the ‘empty blocks’ field in the resource queue descriptor is 12 bits instead of 8 bits long.
  • the ‘empty blocks’ field is updated using an un-interruptible read-modify-write sequence.
  • a queue portal commits to a write, it increases the value in the ‘used blocks’ field of the element queue descriptor by the number of blocks being committed to, and decreases the ‘empty blocks’ field of the resource queue descriptor by the same amount.
  • the re-allocation function adds a block to a queue, it increments the value in the ‘empty blocks’ field of the resource queue descriptor.
  • the ‘used block’ field is a byte wide field that indicates the number of memory blocks in the queue which contain data to be read and committed to.
  • a queue portal commits to a write, it increases the ‘used block’ count by the number of extra blocks added (using an un-interruptible, read-modify-write sequence).
  • the number of blocks released is subtracted from the value in the ‘used blocks’ field.
  • the ‘used block’ count is not used directly by the queue manager system 10 .
  • the ‘used block’ count is maintained so that external control functions can monitor and control how much data is stored in a queue. With element queues, there is complication in that a resource queue could supply more than 255 blocks to an element queue. This causes the ‘used block’ count to rollover, i.e. exceed the permitted maximum.
  • the ‘type’ field is a word wide field that distinguishes between single queues and element queues.
  • the type field contains the address of the associated resource identifier (RID).
  • the type field is treated as part of the write sub-descriptor, so is locked when a queue portal 21 - 24 loads the queue for writing. There are two occasions when the field is written to.
  • the software interface 10 sets up the type field. If the software interface 20 wants to destroy a grouped queue, it destroys all except one of the element queues. Then, with the last element queue, it chains the resource queue onto the element queue and converts the element queue into a single queue. The resource queue no longer exists, and the newly created single queue may be destroyed in the same way as other single queues are destroyed.
  • the ‘committed tail block’ field is a word wide field which is part of the pointer that identifies the location of the last committed write.
  • the ‘committed tail block’ field contains the address of the start of the memory block in which the committed write occurred.
  • the field is locked when a queue portal 21 - 24 loads a queue for writing.
  • the queue portal 21 - 24 will load the committed pointer into a current tail pointer register, which is only valid while the queue is loaded. While writes occur, the current tail pointer is updated, but the committed tail pointer is unaffected. If the queue portal is told to commit written data, it loads the current tail pointer into the committed tail pointer. If the queue portal is told to discard the written data, it loads the committed tail pointer into the current tail pointer.
  • the queue portal unloads a write sub-descriptor, it always does either a commit or a discard operation first. Then, when the write sub-descriptor is unloaded, the write access control bit is unlocked.
  • the ‘committed tail offset’ field which is the second part of the committed tail pointer, is a 12-bit field which is an offset from the start of the ‘committed tail block’ (until otherwise defined, the four MSBs are zero).
  • the ‘committed tail offset’ field is essentially the same as the ‘memory block length’ field. Whenever the ‘memory block length’ field is updated, it is loaded with the current tail offset.
  • the ‘committed tail offset’ field has a resolution of bytes, and excludes the four bytes of control information at the start of the memory block. The address where the last write commit occurred is given by ‘committed tail block’ field + 4 +‘committed tail offset’ field. All the queue pointers in the queue manager system 10 are pre-incremented, so the pointers point to the last write location rather than the next write location in the static state.
  • the ‘current head block’ field is a word wide field which is part of the read sub-descriptor. Unlike the write sub-descriptor, the read sub-descriptor can be unloaded without doing a commit/discard operation, since it may take longer to get feedback to indicate the data was transferred out of the queue manager system 10 successfully. In the case of received information that is written to the queue manager system 10 , the data integrity check is usually part of the data stream, and so the check is done immediately after the data block is received. Therefore, the current head pointer is stored as well as the committed head pointer.
  • the ‘current head block’ field contains the address of the start of the memory block in which the last read occurred.
  • a queue portal When a queue portal loads a queue for reading, it locks the read sub-descriptor access control bit. It then loads the current head pointer into a register. Any read operations cause only the register value, not the value stored in RAM, to be updated.
  • a read commit occurs, the contents of the current head pointer register are copied into the committed head pointer in RAM.
  • a read discard occurs, the committed head pointer in RAM is copied into the current head pointer register.
  • the queue is unloaded, the current head pointer register is copied into the current head pointer in RAM, and the read sub-descriptor access control bit is unlocked.
  • a read commit occurs when confirmation is received that the data was successfully transferred, and a read discard occurs otherwise.
  • the ‘current head offset’ field is the second part of the current head pointer. It is a 12-bit field that is an offset from the start of the ‘current head block’.
  • the current head offset field has a resolution of bytes, and excludes the four bytes of control information at the start of a memory block.
  • the address where the last read operation occurred is given by ‘current head block’ field + 4 +‘current head offset’ field.
  • the ‘committed head block’ field is a word wide field that is part of the read sub-descriptor.
  • the committed head block field contains the address at the start of the memory block at which the last read commit occurred.
  • the ‘committed head offset’ field is the second part of the committed head pointer. It is a 12-bit field that is an offset from the start of the committed head block. The field has a resolution of bytes, and excludes the four bytes of control information at the start of a memory block. The address where the last read commit occurred is given by ‘committed head block’ field + 4 +‘committed head offset’ field.
  • the ‘blocks to release’ field is a byte wide field which keeps track of the number of blocks which may be released when a read commit is done.
  • the field is transferred into a register when the queue is loaded.
  • the blocks to release register is incremented. If a read commit is done, the blocks to release register is used by the release procedure.
  • the blocks to release register is reset to zero.
  • the blocks to release register is reset to zero and copied into the blocks to release field in RAM.
  • the segmentation and re-assembly mechanism in the (QMS) 10 includes a means for indicating packet boundaries at different communication protocol levels. By storing the information in an efficient, generic format, devices using the queues are able to make decisions about joining and splitting packets without having knowledge of different packet formats.
  • the four most significant bits (MSBs) of the ‘block control’ field are used to indicate boundaries in the data flow. These bits are hereafter referred to as control bits or flags.
  • the main purpose of the QMS 10 is to transfer data from one device to another, such as from a universal serial bus (USB) host interface (not shown) to a radio transceiver module (not shown).
  • USB host interface may constitute the queue user ‘A’ 11
  • the radio transceiver module may constitute the queue user ‘B’ 12 .
  • a PC host (not shown) or some other host device is connected to the USB host interface 11 .
  • the data is put into the payload section of an L2CAP packet which has the following format: 2-byte Protocol/Service Multiplexer 0 to 65533 bytes of Payload Data
  • Each HCI packet is then formed into one or more USB packets, where a USB packet consists of: 8-bit Data transfer token indicating data direction 7-bit address + 4-bit endpoint to identify Bluetooth data connection 5-bit checksum 8-bit Data transfer toggle (to ensure no data lost) Payload Data (HCI fragment) 16-bit checksum
  • the extra USB information is used to ensure that data is transferred from the host correctly, but is not stored.
  • the extra USB information is extracted by the USB host interface 11 , which transfers the remaining USB payload to the queue user interface 15 . If the USB payload is the start of an HCI packet, the queue user interface 15 extracts the first 4 bytes of HCI packet header, and transfers the remainder of the payload to the QMS IO. If a USB packet is the start of a HCI packet, the first two bytes of the HCI packet are used by the queue user interface 11 to decide which queue to store the data in. Included in the first two bytes are 2-bits which indicate if the HCI packet is the start or continuation of an L2CAP packet.
  • bit 2 of the 4-bit flag field maintained by the QMS 10 is set by the queue user interface 11 .
  • the QMS 10 is informed of the start of different packets by the USB host interface through the use of pre-defined instruction codes. If the USB packet contains the start of the HCI packet, bit 3 of the 4-bit flag field maintained by the QMS 10 is set. If the USB packet contains a continuation of an HCI packet, no flags are set. The flags are constituted by the four bits adjacent to the block size field in the memory blocks which form the queue.
  • the payload (excluding the 4-bytes of HCI packet header) is stored in the queue.
  • the data in the queue is committed. If the data transfer fails, the data is discarded.
  • the start of an L2CAP message is at the start of a radio packet.
  • HCI packet boundaries do not have to be maintained. Therefore, a radio packet could be made up of a fragment of a HCI packet, or it could contain multiple HCI packets.
  • a radio packet starts with a 2-bit field, which indicates if it is the start or continuation of an L2CAP packet. There is then a flow bit (which indicates whether the radio can receive data), and either a 5-bit or 9-bit length field, depending on the type of packet used.
  • the radio transceiver module 12 is not concerned with HCI packet boundaries, it counts how many HCI packets have been successfully sent, and informs the PC host through the QMS 10 how many more packets it can download. By virtue of the packet boundary flags managed by the queue manager system 10 , the radio transceiver module does not need the capability to decode HCI and L2CAP packets.
  • the radio transceiver module 12 When the radio transceiver module 12 receives packets, it sets bit 3 of the 4-bit flag field maintained by the QMS 10 , to indicate the start of a radio packet, by generating the appropriate instruction code. If the packet header indicates it is the start of an L2CAP packet, bit 2 is also set. The length field of the radio packet is discarded by the radio transceiver module. The payload data is stored in the queue associated with the link or channel that the packet was received on.
  • the host side of the queue ignores radio packet boundaries, and creates HCI packets up to an L2CAP packet boundary. In order to do this, the host has a pre-set maximum HCI packet size. The host asks the QMS 10 how much data there is from the current pointer to either the end of the queue, or the next point at which bit 2 of the 4-bit field is set, or until there is enough data to fill a HCI packet size. The host then builds an HCI packet header, using a connection handle that is associated with the queue, and L2CAP start or continuation flags based on the control flags, and the length field based on how much data is available.
  • the HCI packets are further broken down into USB packets, whereall data packets use the same USB address and endpoint.

Abstract

A method of managing data stored in a queue in memory comprises reading data from a head of the queue, and updating the location of a ‘latest read’ pointer, separate from the memory blocks in which the data is stored, to a location corresponding to the end of the data. After transferring the data to a destination and upon receiving confirmation that the data transfer was successful, the location of a ‘committed read’ pointer is updated to point to a location corresponding to the end of the data. This allows uncommitted data to be stored without requiring a separate area of memory.

Description

    CROSS-REFERENCES TO RELATED APPLICATIONS
  • This application claims a benefit of foreign priority under 35 U.S.C. 119(a-d) from GB 0031761.0, filed Dec. 29, 2000, and GB 0102278.9, filed Jan. 29, 2001, the entire contents of both of which are hereby expressly incorporated by reference for all purposes. [0001]
  • FIELD OF THE INVENTION
  • This invention relates to a method of managing data stored in a queue in memory. [0002]
  • BACKGROUND OF THE INVENTION
  • When writing data from a queue to a destination device, and particularly to a remote destination device, it is usual to write the data to memory separate from the memory in which the queue is held, until confirmation that the data has been properly received at the destination is received at the queue manager system. This allows the memory in which the queue is held to be released, to allow it to be written to with data received from a source. [0003]
  • SUMMARY OF THE INVENTION
  • In accordance with the invention, there is provided: a method of managing data stored in a queue in memory, the method comprising: reading data from a head of the queue; updating the location of a latest read pointer to a location corresponding to the end of the data; transferring the data to a destination and, upon receiving confirmation that the data transfer was successful, updating the location of a committed read pointer to a location corresponding to the end of the data. [0004]
  • This allows uncommitted data to be stored without the provision of a separate area of memory. Preferably, the method further comprises, upon receiving no confirmation or a negative confirmation that the data transfer was successful, updating the location of the latest read pointer to assume the location of the committed read pointer. [0005]
  • Embodiments of the present invention will now be described by way of example only with reference to the accompanying drawings.[0006]
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 shows a queue manager system with four queue users.[0007]
  • DESCRIPTION OF ILLUSTRATIVE EMBODIMENTS
  • Referring to FIG. 1, a [0008] queue manager system 10 is shown connected to first to fourth queue users 11-14 via a respective one of first to fourth hardware queue user interfaces 15-18. The queue manager system 10 comprises a hardware queue manager core 19, which is controlled by software through a software interface 20. The queue manager core 19 is connected to each of the queue user interfaces 15-18 via a respective one of first to fourth queue portals 21-24 and a common bus (not shown).
  • The [0009] software interface 20 is responsible for creating and destroying queues, for resizing queues, and for supplying the memory blocks used in the queues. The principle task of the queue manager core 19 is to re-allocate ‘used blocks’ back onto the tails of queues. The queue manager core 19 also includes a bus arbiter (not shown) that controls how and when parallel hardware and software functions can get access to the bus (not shown).
  • The queue portals [0010] 21-24 provide access to the queues. Each queue portal 21-24 comprises two parts. One part can be used to write to a queue, the other part can be used to read from a queue (each part can be accessing different queues). Although only four queue portals 21-24 are shown, there is no limit to the number of portals that could be used. The main constraint on the number of portals is the worst case bus bandwidth required by them.
  • One queue portal [0011] 21-24 is required for each queue user 11-14. A queue user 11-14 can access multiple queues, and can simultaneously read from one queue whilst writing to another queue. In this case, the tasks are simultaneous but bus accesses are made sequential by the bus arbiter. However, each time a queue user 11-14 wants to read or write to or from a different queue, it must tell its queue portal 21-24 to unload the current queue pointers and to then load new queue pointers.
  • Each queue user [0012] 11-14 is a standard component or function with a direct memory access (DMA) capability. Therefore, each queue user 11-14 requires its queue user interface 15-18 to translate DMA request and acknowledge signals into a standard set of signals recognised by the queue portals 21-24. In some applications this is a simple signal translation, whilst in other applications the interface 15-18 adds or removes data, to translate to or from an application specific packet format.
  • The basic building block of asynchronous queues is a block of random access memory (RAM) (not shown). The amount of RAM available to the [0013] queue manager system 10 is split into lots of small memory blocks of the same size, in order to avoid the overhead of storing the memory ‘block size ’ with every memory block. Alternatively, different queues could use different memory block sizes, although this would complicate the software which creates and re-sizes queues. In this embodiment, the memory blocks are 64 bytes long.
  • Every memory block starts with a ‘link field’, which is a pointer to the address of the link field of the next memory block. The memory used by a queue is made up of a number of memory blocks which can be distributed anywhere in the RAM, and which are linked together by link fields. This [0014] queue manager system 10 only uses unidirectional link fields, so the QMS is able only to search forwards through blocks. If the current block is the last link in the chain, its link field contains all ones (=−1). Alternatively, bidirectional link fields could be used, albeit with additional complexity and with reduced memory use efficiency.
  • There are also two implementation dependent constraints. The first is that all memory blocks (and therefore link fields) start on an even byte boundary. The second constraint is that the maximum RAM size is 64 kbytes. These two constraints mean that the link field can be read or written in one bus cycle. [0015]
  • Immediately after the link field is a ‘block control’ field. This contains a length field indicating how many information bytes are currently stored in the block, and four control bits. The four most significant bits (MSBs) of the block control field constitute the control bits, which indicate boundaries in the data flow. The length field is stored in the least significant bits (LSBs) of the block control field. [0016]
  • A memory block is shown in Table 1: [0017]
    TABLE 1
    Link Field
    Control (4-bits) Length (12-bits)
    Data
    . . .
    (High byte, Low byte)
  • Many communications systems deal with packets of data rather than a continuous data stream. The [0018] queue manager system 10 identifies multiple types of packet boundaries by using the four control flags in each memory block. These control flags are the 4 MSBs of the block control field. If the most significant control bit is set, it means the first information byte in the memory block is the start of a packet. The remaining three control bits indicate other types of boundaries. The next MSB indicates transport packet boundaries, and the next bit indicates application packet boundaries. If the three LSBs were used without the MSB, the system would not be able to indicate where in the memory block the boundary occurred.
  • If, when a queue user [0019] 11-14 is writing to its queue portal 21-24, it writes to the MSB of the control flags, the queue portal stops writing to the current memory block, and advance its pointers (not shown) to the link field of the next memory block. When a queue user 11-14 asks a queue portal 21-24 how many bytes of data are available, the queue user 11-14 also supplies the required number of bytes, and applies a mask to the control field. The queue portal 21-24 then searches through the queue until either it reaches the set of control flags identified by the mask, it finds the required number of bytes, or it reaches the end of the data available, whichever occurs first.
  • This mechanism allows control information to be included in the data stream at the start of a data packet. The queue user interface [0020] 15-18 that subsequently reads the data out of the queue is then able to extract the control information.
  • Where the data steam is a continuous data stream, the control flags are not used, i.e. they are always zero. [0021]
  • A standard asynchronous queue has a defined number of memory blocks allocated to it. If data is consumed more quickly than it is added to the queue, the queue may become empty. The blocks allocated to the queue will be unused, but unavailable to other queues. Meanwhile, another queue may be receiving too much data. The queue will be filled, and then the sender must either be stopped, or the data will be lost. This type of queue is referred to as a ‘single queue’. The advantage of this type of queue is that the resources available to a queue are defined. In a system that dynamically re-allocates memory blocks as required, if a queue is slow to empty it could utilise all the available memory blocks. In this case, all the other queues may be stopped because there are no more memory blocks available. [0022]
  • The [0023] queue manager system 10 supports dynamic memory allocation, using ‘grouped queues’. A grouped queue consists of a number of ‘element queues’ and a ‘resource queue’. The element queues are the same as single queues except that there is a difference in the number of spare blocks allocated to element queues. Data is read to and written from element queues. The resource queue is, in effect, a linked list of spare memory blocks. All of the element queues in a grouped queue use memory blocks of the same size.
  • When memory blocks are released from the head of a single queue, they are re-allocated to the tail of the same queue, unless there has been a request to reduce the size of the queue. When memory blocks are released from the head of an element queue, they are usually allocated to the resource queue. While an element queue is not loaded for writing, it does not have any ‘empty blocks’. The tail of the element queue points to the same memory block that the last ‘committed write’ points to. When a queue portal [0024] 21-24 loads an element queue for writing, the resource queue is linked onto the tail of the element queue, making all the blocks in the resource queue available. When the queue portal 21-24 unloads an element queue (at which point it will do a commit or discard), any spare memory blocks are removed from the element queue, and re-allocated to the resource queue.
  • The main constraint of this system is that only one element of a grouped queue may be written to at any one time. Since the whole resource queue is added to the active element. In most instances, a single queue portal [0025] 21-24 writes to the grouped queue, and, therefore, there is only ever one element queue loaded for writing. There is, in theory, no limit to the number of single or grouped queues that can be created. The main constraint is the memory resources required.
  • The other type of queue is an isochronous (ISO) queue. Isochronous data is time critical data, such as telephone speech data. An ISO queue uses different control mechanisms, which are managed by different hardware. ISO queue control mechanisms can be an additional component or an alternative component to a queue portal [0026] 21-24. An ISO queue uses a single contiguous block of memory rather then the linked memory blocks used by asynchronous queues. This memory area is typically quite small, for example 32-256 bytes. An ISO queue provides a small buffer space to isolate queue users that generate and/or use data in a jittery or bursty way. If an ISO queue becomes full, the oldest data is disposed of by overwriting it. This type of queue is not used if data integrity is important. If the queue becomes empty or effectively empty, the data most recently read from the queue is read again.
  • Typically, isochronous data is linear pulse code modulation (PCM) data, which comprises samples of an analogue signal, such as a voice recording. In this case, the data read again from the queue consists of a number of bytes of data which when reconstructed into an audio signal sounds the same as or similar to sounds immediately before and after it. This is much less noticeable than a gap in an audio signal. [0027]
  • Where isochronous data is data such as continuous variable slope delta (CVSD) modulation data, special arrangements are made to ensure that the mean of the reconstructed signal remains at zero, since otherwise saturation or digital overflow may occur. This type of data, and types similar thereto, is accommodated in one of two ways. Firstly, the data read again may be processed to provide a zero offset. It will be appreciated that there are many ways of achieving this. Secondly, data may be generated which corresponds to a sequence of alternate increments and decrements, i.e. a small amplitude sinusoid signal is generated in place of data being read again. [0028]
  • As described above, many memory blocks are linked to form a chain of blocks in which a sequence of data is stored. A queue descriptor is a set of pointers and control fields that control how the chains of blocks are used and managed. The queue descriptors are stored in a different part of memory. When the [0029] software interface 20 creates a queue, it also creates a queue descriptor. A queue is identified by the address of the start of the corresponding queue descriptor. When a queue user 11-14 accesses a queue through a queue portal 21-24, it provides the address of the start of the descriptor, which is hereafter termed the queue identifier (QID).
  • The single queues and element queues use similar queue descriptors. This type of queue descriptor is made-up of a number of sub-descriptors and access control bits. The resource queue uses a simplified version of a queue descriptor. The access control bits in the queue descriptors ensure that, at any point in time, only one queue portal or the [0030] software interface 20 is allowed to modify a field in the descriptor.
  • Table 2 illustrates the fields in single and element queue descriptors, and where the field is stored in memory, for an asynchronous queue: [0031]
    TABLE 2
    Address Lock bit High byte Low byte
    QID 0 Rm W Blocks to remove Lock control
    QID + 2 Block size (12-bits)
    QID + 4 Tail of blocks
    QID + 6 RmW Used blocks Empty blocks
    (/Used Threshold)
    QID + 8 1 Type (Single = −1/Element = RID)
    QID + 10 1 Committed Tail Block
    QID + 12 1 Committed Tail Offset (12-bits)
    QID + 14 2 Current Head Block
    QID + 16 2 Current Head Offset (12-bits)
    QID + 18 2 Committed Head Block
    QID + 20 2 Committed Head Offset (12-bits)
    QID + 22 2 Blocks to release
  • Table 3 illustrates the fields in a resource queue descriptor, in which RID is the resource queue identifier. [0032]
    TABLE 3
    Address Lock bit High byte Low byte
    RID 0 Blocks to remove Lock control
    RID + 2 2 Head of blocks
    RID + 3 1 Tail of blocks
    RID + 4 RmW Empty Blocks (12-bits)
  • In a resource queue descriptor, the lock control field is a byte wide field containing bits for controlling write permission to other fields in the descriptor. The hardware includes an un-interruptible, read-modify-write sequence to ensure that only one function (portal [0033] 21-24 or software interface 20 ) can change the lock value at any given time. The lock bit column in the two tables indicate which bits control accesses to which fields. Lock bit 0 only applies to the ‘blocks to remove’ field. The lock control field can be modified while bit 0 is set.
  • The ‘blocks to remove’ field is a byte wide field which indicates the number of memory blocks which should be removed from the queue. This requires an access control lock since there are two functions that can modify the value. The [0034] software interface 20 can modify the value to request the queue length to be re-sized, and the re-allocation function then decrements the value as blocks are released.
  • The ‘blocks to remove’ field is only valid for single queues and resource queues—i.e. element queue descriptors, the field is unused. If blocks are to be removed from a grouped queue, the [0035] software interface 20 requests that they are removed from the resource queue rather than the element queues. If the ‘blocks to remove’ field is set to 255, all the blocks in the queue are removed as they go through a re-allocation. Here, the ‘blocks to remove’ value will not be reduced.
  • The ‘block size’ field is a 12-bit field, i.e. excluding the four control bits that indicate how many bytes of information can be written to the memory blocks used by the queue. The ‘block size’ field is modified only when the queue is created. While the queue is active, the ‘block size’ field is read only, and therefore doesn't require a lock. The element queue descriptors define the resource queue ‘block size’, which is the same for all elements in a grouped queue. [0036]
  • In place of the ‘block size’ field, resource queues have a 2-byte word wide ‘head of blocks’ field. The ‘head of blocks’ field contains the address of the memory block at the head of the chain of unused blocks. When a queue portal [0037] 21-24 loads an element queue, it locks the ‘head of blocks’ field of the associated resource queue. This ensures that, at any given time, only one element queue can use the associated resource queue. The queue portal then links the resource queue onto the element queue. The ‘head of blocks’ field of the resource queue being all 1s (=−1) indicates that the resource queue is empty. If the resource queue is empty, the queue portal immediately releases the resource queue by unlocking the ‘head of blocks’. If the resource queue is not empty when the element queue is loaded, a queue portal 21-24 updates the ‘head of blocks’ field and releases the lock when it unloads a queue. When the queue is unloaded the ‘head of blocks’ field is loaded with all 1s (=−1), if there are no spare memory blocks.
  • The ‘tail of blocks’ field in a single queue is a word wide field containing the address of the last memory block to be added to the queue. The block re-allocation function uses this field to identify where released blocks should be linked back onto the tail of the queue. The ‘tail of blocks’ field points to the link field in the memory block at the tail of the queue. Since the re-allocation function is the only function that modifies the ‘tail of blocks’ field, lock control is not required. As all single queues must contain at least one memory block, the ‘tail of blocks’ field is always valid. [0038]
  • The ‘tail of blocks’ field in a resource queue is similar to the ‘tail of blocks’ in a single queue. However, a resource queue can become empty, which would make the ‘tail of blocks’ field invalid. The resource queue descriptor therefore includes an access control bit for the ‘tail of blocks’ field. When a queue portal [0039] 21-24 wants to unload an element queue, it firstly locks the ‘tail of blocks’ field in the associated resource queue descriptor, and then continues with the unload procedure. If the unload procedure has no spare blocks to pass back to the resource queue, it writes all 1s (=−1), to both the ‘tail of blocks’ and to the ‘head of blocks’. The queue portal then unlocks both the ‘head of blocks’ and the ‘tail of blocks’ fields. The re-allocation function always locks the ‘tail of blocks’ field before it re-allocates blocks onto the resource queue.
  • The ‘empty blocks’ field is a byte wide field that indicates the number of spare (unused) blocks on the tail of a single queue, although some of the blocks may be used by an uncommitted write process which is still loaded). A single queue contains a maximum of 255 blocks, which enables the ‘empty blocks’ and ‘used blocks’ fields to be accessed together. The value in ‘empty blocks’ multiplied by the ‘block size’ gives a good approximation of the storage space (RAM) currently available, although this excludes any space available in the block which ‘committed tail block’ points to. [0040]
  • The ‘empty blocks’ and the ‘used blocks’ fields are modified using an un-interruptable, read-modify-write sequence rather than using a lock bit. When a queue portal [0041] 21-24 commits to write, it increases the value in the ‘used blocks’ field by the number of blocks being committed to, and decreases the value in the ‘empty blocks’ field by the same amount. When the re-allocation function adds a block to a queue, it increments the value in the ‘empty blocks’.
  • The ‘empty blocks’ field of element queue descriptors is termed the ‘used blocks threshold’. When an element queue is loaded for writing , the resource queue is usually linked onto the element queue. However, if the value in the ‘used blocks’ field is greater than the value in ‘used blocks threshold’ field, the resource queue is not appended to the element queue. The ‘used blocks threshold’ field can be used to prevent one element of a grouped queue using all the spare memory blocks. [0042]
  • The threshold is only applied when the queue is loaded. If an element queue is loaded with the resource queue, it can commit to any number of blocks, up to the number of blocks in the resource queue. These committed blocks are added to the ‘used blocks’ field even if the result is greater than the ‘used blocks threshold’. [0043]
  • In grouped queues, a single ‘empty blocks’ count is kept in the resource queue. The ‘empty blocks’ field in an element queue is used to store the ‘used blocks threshold’ field. Since the grouped queue may need to keep track of more spare blocks, to service multiple element queues, the ‘empty blocks’ field in the resource queue descriptor is 12 bits instead of 8 bits long. [0044]
  • The ‘empty blocks’ field is updated using an un-interruptible read-modify-write sequence. When a queue portal commits to a write, it increases the value in the ‘used blocks’ field of the element queue descriptor by the number of blocks being committed to, and decreases the ‘empty blocks’ field of the resource queue descriptor by the same amount. When the re-allocation function adds a block to a queue, it increments the value in the ‘empty blocks’ field of the resource queue descriptor. [0045]
  • The ‘used block’ field is a byte wide field that indicates the number of memory blocks in the queue which contain data to be read and committed to. When a queue portal commits to a write, it increases the ‘used block’ count by the number of extra blocks added (using an un-interruptible, read-modify-write sequence). When a queue portal commits to a read, the number of blocks released is subtracted from the value in the ‘used blocks’ field. The ‘used block’ count is not used directly by the [0046] queue manager system 10. The ‘used block’ count is maintained so that external control functions can monitor and control how much data is stored in a queue. With element queues, there is complication in that a resource queue could supply more than 255 blocks to an element queue. This causes the ‘used block’ count to rollover, i.e. exceed the permitted maximum.
  • The ‘type’ field is a word wide field that distinguishes between single queues and element queues. The type field for single queues is all 1s (=−1). Any other value in the type field indicates the queue to be an element queue. For element queues, the type field contains the address of the associated resource identifier (RID). [0047]
  • The type field is treated as part of the write sub-descriptor, so is locked when a queue portal [0048] 21-24 loads the queue for writing. There are two occasions when the field is written to. When the queue is created, the software interface 10 sets up the type field. If the software interface 20 wants to destroy a grouped queue, it destroys all except one of the element queues. Then, with the last element queue, it chains the resource queue onto the element queue and converts the element queue into a single queue. The resource queue no longer exists, and the newly created single queue may be destroyed in the same way as other single queues are destroyed.
  • The ‘committed tail block’ field is a word wide field which is part of the pointer that identifies the location of the last committed write. The ‘committed tail block’ field contains the address of the start of the memory block in which the committed write occurred. The field is locked when a queue portal [0049] 21-24 loads a queue for writing. The queue portal 21-24 will load the committed pointer into a current tail pointer register, which is only valid while the queue is loaded. While writes occur, the current tail pointer is updated, but the committed tail pointer is unaffected. If the queue portal is told to commit written data, it loads the current tail pointer into the committed tail pointer. If the queue portal is told to discard the written data, it loads the committed tail pointer into the current tail pointer. When the queue portal unloads a write sub-descriptor, it always does either a commit or a discard operation first. Then, when the write sub-descriptor is unloaded, the write access control bit is unlocked.
  • The ‘committed tail offset’ field, which is the second part of the committed tail pointer, is a 12-bit field which is an offset from the start of the ‘committed tail block’ (until otherwise defined, the four MSBs are zero). The ‘committed tail offset’ field is essentially the same as the ‘memory block length’ field. Whenever the ‘memory block length’ field is updated, it is loaded with the current tail offset. The ‘committed tail offset’ field has a resolution of bytes, and excludes the four bytes of control information at the start of the memory block. The address where the last write commit occurred is given by ‘committed tail block’ field +[0050] 4+‘committed tail offset’ field. All the queue pointers in the queue manager system 10 are pre-incremented, so the pointers point to the last write location rather than the next write location in the static state.
  • The ‘current head block’ field is a word wide field which is part of the read sub-descriptor. Unlike the write sub-descriptor, the read sub-descriptor can be unloaded without doing a commit/discard operation, since it may take longer to get feedback to indicate the data was transferred out of the [0051] queue manager system 10 successfully. In the case of received information that is written to the queue manager system 10, the data integrity check is usually part of the data stream, and so the check is done immediately after the data block is received. Therefore, the current head pointer is stored as well as the committed head pointer. The ‘current head block’ field contains the address of the start of the memory block in which the last read occurred.
  • When a queue portal loads a queue for reading, it locks the read sub-descriptor access control bit. It then loads the current head pointer into a register. Any read operations cause only the register value, not the value stored in RAM, to be updated. When a read commit occurs, the contents of the current head pointer register are copied into the committed head pointer in RAM. When a read discard occurs, the committed head pointer in RAM is copied into the current head pointer register. When the queue is unloaded, the current head pointer register is copied into the current head pointer in RAM, and the read sub-descriptor access control bit is unlocked. A read commit occurs when confirmation is received that the data was successfully transferred, and a read discard occurs otherwise. [0052]
  • The ‘current head offset’ field is the second part of the current head pointer. It is a 12-bit field that is an offset from the start of the ‘current head block’. The current head offset field has a resolution of bytes, and excludes the four bytes of control information at the start of a memory block. The address where the last read operation occurred is given by ‘current head block’ field +[0053] 4+‘current head offset’ field.
  • The ‘committed head block’ field is a word wide field that is part of the read sub-descriptor. The committed head block field contains the address at the start of the memory block at which the last read commit occurred. When a queue portal commits to a read and there is at least one memory block that can be released, the release procedure is triggered. The release procedure loads the queue identifier and value in the number of blocks to release field into the start of the data section of the memory block which the committed head block field points to. The address in the committed head block field is then passed to the released blocks queue ready for reallocation. The read commit procedure then completes by copying the current head pointer into the committed head pointer. When a read discard occurs, the committed head pointer is copied into the current head pointer. [0054]
  • The ‘committed head offset’ field is the second part of the committed head pointer. It is a 12-bit field that is an offset from the start of the committed head block. The field has a resolution of bytes, and excludes the four bytes of control information at the start of a memory block. The address where the last read commit occurred is given by ‘committed head block’ field +[0055] 4+‘committed head offset’ field.
  • The ‘blocks to release’ field is a byte wide field which keeps track of the number of blocks which may be released when a read commit is done. The field is transferred into a register when the queue is loaded. When a read operation causes the current head pointer to advance to a new memory block, the blocks to release register is incremented. If a read commit is done, the blocks to release register is used by the release procedure. At the end of either a commit or a discard operation, the blocks to release register is reset to zero. When the queue is unloaded, the blocks to release register is reset to zero and copied into the blocks to release field in RAM. [0056]
  • The segmentation and re-assembly mechanism in the (QMS) [0057] 10 includes a means for indicating packet boundaries at different communication protocol levels. By storing the information in an efficient, generic format, devices using the queues are able to make decisions about joining and splitting packets without having knowledge of different packet formats. The four most significant bits (MSBs) of the ‘block control’ field are used to indicate boundaries in the data flow. These bits are hereafter referred to as control bits or flags.
  • The main purpose of the [0058] QMS 10 is to transfer data from one device to another, such as from a universal serial bus (USB) host interface (not shown) to a radio transceiver module (not shown). The USB host interface may constitute the queue user ‘A’ 11, and the radio transceiver module may constitute the queue user ‘B’ 12. A PC host (not shown) or some other host device is connected to the USB host interface 11. At the USB host interface 11, the data is put into the payload section of an L2CAP packet which has the following format:
    2-byte Protocol/Service Multiplexer
    0 to 65533 bytes of Payload Data
  • Each HCI packet is then formed into one or more USB packets, where a USB packet consists of: [0059]
    8-bit Data transfer token indicating data direction
    7-bit address + 4-bit endpoint to identify
    Bluetooth data connection
    5-bit checksum
    8-bit Data transfer toggle (to ensure no data lost)
    Payload Data (HCI fragment)
    16-bit checksum
  • The extra USB information is used to ensure that data is transferred from the host correctly, but is not stored. The extra USB information is extracted by the [0060] USB host interface 11, which transfers the remaining USB payload to the queue user interface 15. If the USB payload is the start of an HCI packet, the queue user interface 15 extracts the first 4 bytes of HCI packet header, and transfers the remainder of the payload to the QMS IO. If a USB packet is the start of a HCI packet, the first two bytes of the HCI packet are used by the queue user interface 11 to decide which queue to store the data in. Included in the first two bytes are 2-bits which indicate if the HCI packet is the start or continuation of an L2CAP packet. If it is the start of an L2CAP packet, bit 2 of the 4-bit flag field maintained by the QMS 10 is set by the queue user interface 11. The QMS 10 is informed of the start of different packets by the USB host interface through the use of pre-defined instruction codes. If the USB packet contains the start of the HCI packet, bit 3 of the 4-bit flag field maintained by the QMS 10 is set. If the USB packet contains a continuation of an HCI packet, no flags are set. The flags are constituted by the four bits adjacent to the block size field in the memory blocks which form the queue.
  • As USB packets are transferred, the payload (excluding the 4-bytes of HCI packet header) is stored in the queue. At the end of every good USB packet transfer, the data in the queue is committed. If the data transfer fails, the data is discarded. [0061]
  • At the [0062] radio transceiver module 12 side of the queue, the start of an L2CAP message is at the start of a radio packet. However, HCI packet boundaries do not have to be maintained. Therefore, a radio packet could be made up of a fragment of a HCI packet, or it could contain multiple HCI packets. A radio packet starts with a 2-bit field, which indicates if it is the start or continuation of an L2CAP packet. There is then a flow bit (which indicates whether the radio can receive data), and either a 5-bit or 9-bit length field, depending on the type of packet used. Although the radio transceiver module 12 is not concerned with HCI packet boundaries, it counts how many HCI packets have been successfully sent, and informs the PC host through the QMS 10 how many more packets it can download. By virtue of the packet boundary flags managed by the queue manager system 10, the radio transceiver module does not need the capability to decode HCI and L2CAP packets.
  • When the [0063] radio transceiver module 12 receives packets, it sets bit 3 of the 4-bit flag field maintained by the QMS 10, to indicate the start of a radio packet, by generating the appropriate instruction code. If the packet header indicates it is the start of an L2CAP packet, bit 2 is also set. The length field of the radio packet is discarded by the radio transceiver module. The payload data is stored in the queue associated with the link or channel that the packet was received on.
  • The host side of the queue ignores radio packet boundaries, and creates HCI packets up to an L2CAP packet boundary. In order to do this, the host has a pre-set maximum HCI packet size. The host asks the [0064] QMS 10 how much data there is from the current pointer to either the end of the queue, or the next point at which bit 2 of the 4-bit field is set, or until there is enough data to fill a HCI packet size. The host then builds an HCI packet header, using a connection handle that is associated with the queue, and L2CAP start or continuation flags based on the control flags, and the length field based on how much data is available.
  • For a USB interface, the HCI packets are further broken down into USB packets, whereall data packets use the same USB address and endpoint. [0065]

Claims (5)

What is claimed is:
1. A method of managing data stored in a queue in memory, the method comprising:
reading data from a head of the queue;
updating the location of a latest read pointer to a location corresponding to the end of the data;
transferring the data to a destination; and,
upon receiving confirmation that the data transfer was successful, updating the location of a committed read pointer to a location corresponding to the end of the data.
2. A method as claimed in claim 1, further comprising:
upon receiving no confirmation or a negative confirmation that the data transfer was successful;
updating the location of the latest read pointer to assume the location of the committed read pointer.
3. A method according to either preceding claim, further comprising: storing the latest read pointer location and the committed read pointer location, and using the latest read pointer and the committed read pointer to manage data subsequently read from a second queue.
4. A method according to either of claims 1 and 2, further comprising:
reading second data from the head of the queue;
updating the location of a second latest read pointer to a location corresponding to the end of the second data;
transferring the second data to the destination; and,
upon receiving confirmation that the transfer of the second data was successful, removing the second latest read pointer from the location corresponding to the end of the second data.
5. A method as claimed in claim 1, further comprising:
writing data to a tail of the queue;
updating the location of a latest write pointer to a location corresponding to the end of the data; and,
upon receiving confirmation that the received data is correct, updating the location of a committed write pointer to a location corresponding to the end of the data.
US10/032,806 2000-12-29 2001-12-28 Method of managing data Abandoned US20020156764A1 (en)

Applications Claiming Priority (4)

Application Number Priority Date Filing Date Title
GBGB0031761.0 2000-12-29
GBGB0031761.0A GB0031761D0 (en) 2000-12-29 2000-12-29 Data queues
GBGB0102278.9 2001-01-29
GB0102278A GB2370661B (en) 2000-12-29 2001-01-29 Method of, and apparatus for, storing a data packet

Publications (1)

Publication Number Publication Date
US20020156764A1 true US20020156764A1 (en) 2002-10-24

Family

ID=26245499

Family Applications (3)

Application Number Title Priority Date Filing Date
US10/032,806 Abandoned US20020156764A1 (en) 2000-12-29 2001-12-28 Method of managing data
US10/035,000 Expired - Fee Related US6760795B2 (en) 2000-12-29 2001-12-28 Data queue system
US10/035,002 Abandoned US20020129213A1 (en) 2000-12-29 2001-12-28 Method of storing a data packet

Family Applications After (2)

Application Number Title Priority Date Filing Date
US10/035,000 Expired - Fee Related US6760795B2 (en) 2000-12-29 2001-12-28 Data queue system
US10/035,002 Abandoned US20020129213A1 (en) 2000-12-29 2001-12-28 Method of storing a data packet

Country Status (5)

Country Link
US (3) US20020156764A1 (en)
JP (3) JP2002261840A (en)
DE (3) DE10164456A1 (en)
FR (3) FR2819090A1 (en)
GB (2) GB2382898B (en)

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20050004996A1 (en) * 2003-03-24 2005-01-06 International Business Machines Corporation System, method and program for grouping data update requests for efficient processing
US20060056436A1 (en) * 2004-09-10 2006-03-16 Nec Corporation Method, device, system and program for time-series data management
US20090172094A1 (en) * 2003-02-28 2009-07-02 Bea Systems, Inc. Connection Pool and Prepared Statement Cache
US20150254257A1 (en) * 2014-03-04 2015-09-10 Microsoft Corporation Seamless data migration across databases
WO2016178706A1 (en) * 2015-05-02 2016-11-10 Hewlett Packard Enterprise Development Lp Storage memory direct access

Families Citing this family (20)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7024662B2 (en) 2001-03-14 2006-04-04 Microsoft Corporation Executing dynamically assigned functions while providing services
US7302634B2 (en) * 2001-03-14 2007-11-27 Microsoft Corporation Schema-based services for identity-based data access
US7260646B1 (en) * 2002-01-25 2007-08-21 Palmsource, Inc. Method of software distribution among hand held computers via file sharing with link references to a web site for complete software versions
US9886309B2 (en) * 2002-06-28 2018-02-06 Microsoft Technology Licensing, Llc Identity-based distributed computing for device resources
JP3955512B2 (en) * 2002-08-27 2007-08-08 富士通株式会社 Data processing apparatus and packet discrimination method
EP1559222B1 (en) * 2002-10-18 2010-03-24 Broadcom Corporation System and method for receive queue provisioning
KR100528967B1 (en) * 2002-12-18 2005-11-15 한국전자통신연구원 Apparatus and method for controlling memory allocation for variable sized packets
CN1323513C (en) * 2003-07-22 2007-06-27 中兴通讯股份有限公司 Method of timed user charging information output for charging server
US7408875B2 (en) 2004-04-09 2008-08-05 International Business Machines Corporation System and program product for actively managing central queue buffer allocation
US7349334B2 (en) * 2004-04-09 2008-03-25 International Business Machines Corporation Method, system and program product for actively managing central queue buffer allocation using a backpressure mechanism
US7555579B2 (en) * 2004-05-21 2009-06-30 Nortel Networks Limited Implementing FIFOs in shared memory using linked lists and interleaved linked lists
KR101110902B1 (en) * 2004-08-31 2012-03-16 파나소닉 주식회사 Information recording medium, multiplexer, and decoder
US20070022231A1 (en) * 2005-07-25 2007-01-25 Rolf Fritz Method and System for Transferring a Stream of Data
JP4798495B2 (en) * 2006-05-30 2011-10-19 日本電気株式会社 Video distribution quality measurement system, apparatus and method
US20080175442A1 (en) * 2007-01-22 2008-07-24 Dennis Megarry Method of displaying graphic images
CN105743549B (en) * 2014-12-10 2019-02-01 展讯通信(上海)有限公司 User terminal and its audio bluetooth playback method, digital signal processor
US10210106B2 (en) 2017-03-15 2019-02-19 International Business Machines Corporation Configurable hardware queue management
US10795836B2 (en) 2017-04-17 2020-10-06 Microsoft Technology Licensing, Llc Data processing performance enhancement for neural networks using a virtualized data iterator
CN108462652B (en) 2017-07-31 2019-11-12 新华三技术有限公司 A kind of message processing method, device and the network equipment
DE102018220224A1 (en) * 2018-11-26 2020-05-28 Deutsche Bahn Ag Method for tamper-proof storage of data in an electronic memory using a chained blockchain structure

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5016221A (en) * 1989-12-01 1991-05-14 National Semiconductor Corporation First-in, first-out (FIFO) memory with variable commit point
US5696910A (en) * 1995-09-26 1997-12-09 Intel Corporation Method and apparatus for tracking transactions in a pipelined bus
US5708779A (en) * 1994-07-29 1998-01-13 International Business Machines Corporation Multimedia system and method of controlling data transfer between a host system and a network adapter using a DMA engine
US6817018B1 (en) * 1993-10-08 2004-11-09 International Business Machines Corporation Method of transferring messages between computer programs across a network

Family Cites Families (25)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US3821703A (en) 1972-12-26 1974-06-28 Ibm Signal transferring
US4507760A (en) * 1982-08-13 1985-03-26 At&T Bell Laboratories First-in, first-out (FIFO) memory configuration for queue storage
US4949301A (en) * 1986-03-06 1990-08-14 Advanced Micro Devices, Inc. Improved pointer FIFO controller for converting a standard RAM into a simulated dual FIFO by controlling the RAM's address inputs
EP0273083B1 (en) * 1986-12-30 1993-10-06 International Business Machines Corporation Non-locking queueing mechanism
BE1000396A7 (en) 1987-03-18 1988-11-22 Electronique Et Telecomm Bell Switching system.
EP0382699A3 (en) * 1989-02-07 1992-07-15 International Business Machines Corporation Interprocessor data transfer system and method
US5249292A (en) * 1989-03-31 1993-09-28 Chiappa J Noel Data packet switch using a primary processing unit to designate one of a plurality of data stream control circuits to selectively handle the header processing of incoming packets in one data packet stream
FR2660818B1 (en) * 1990-04-06 1992-06-19 France Telecom FRAME SWITCHER FOR ASYNCHRONOUS DIGITAL NETWORK.
IL96808A (en) * 1990-04-18 1996-03-31 Rambus Inc Integrated circuit i/o using a high performance bus interface
AU641288B2 (en) * 1990-09-28 1993-09-16 Fujitsu Limited Message control method for data communication system
GB2267588B (en) * 1992-06-06 1996-03-20 Motorola Inc FIFO memory system
US5652879A (en) * 1993-05-12 1997-07-29 Apple Computer, Inc. Dynamic value mechanism for computer storage container manager enabling access of objects by multiple application programs
US5870627A (en) * 1995-12-20 1999-02-09 Cirrus Logic, Inc. System for managing direct memory access transfer in a multi-channel system using circular descriptor queue, descriptor FIFO, and receive status queue
US6233637B1 (en) * 1996-03-07 2001-05-15 Sony Corporation Isochronous data pipe for managing and manipulating a high-speed stream of isochronous data flowing between an application and a bus structure
GB2330479B (en) 1997-10-15 2002-10-09 Motorola Inc Router and method for use in a communication system
US6377574B1 (en) * 1997-10-24 2002-04-23 Hitachi, Ltd. Packet switch and method for relaying management cells and data cells in a form of IP packet
US6061690A (en) * 1997-10-31 2000-05-09 Oracle Corporation Apparatus and method for storage of object collections in a database system
EP1211681B1 (en) * 1998-01-20 2007-02-14 Fujitsu Limited Data storage device and control method therefor
US6157635A (en) * 1998-02-13 2000-12-05 3Com Corporation Integrated remote data access and audio/visual conference gateway
US6115394A (en) * 1998-03-04 2000-09-05 Ericsson Inc. Methods, apparatus and computer program products for packet transport over wireless communication links
US6505255B1 (en) * 1999-04-29 2003-01-07 Mitsubishi Electric Information Technology Center America, Inc. (Ita) Method for formatting and routing data between an external network and an internal network
US6389468B1 (en) * 1999-03-01 2002-05-14 Sun Microsystems, Inc. Method and apparatus for distributing network traffic processing on a multiprocessor computer
GB2350533B (en) 1999-05-28 2001-07-04 Mitel Corp Method to control data reception buffers for packetized voice channels
US6308238B1 (en) * 1999-09-24 2001-10-23 Akamba Corporation System and method for managing connections between clients and a server with independent connection and data buffers
US6532503B1 (en) * 2000-02-18 2003-03-11 3Com Corporation Method and apparatus to detect lost buffers with a descriptor based queue

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5016221A (en) * 1989-12-01 1991-05-14 National Semiconductor Corporation First-in, first-out (FIFO) memory with variable commit point
US6817018B1 (en) * 1993-10-08 2004-11-09 International Business Machines Corporation Method of transferring messages between computer programs across a network
US5708779A (en) * 1994-07-29 1998-01-13 International Business Machines Corporation Multimedia system and method of controlling data transfer between a host system and a network adapter using a DMA engine
US5696910A (en) * 1995-09-26 1997-12-09 Intel Corporation Method and apparatus for tracking transactions in a pipelined bus

Cited By (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20090172094A1 (en) * 2003-02-28 2009-07-02 Bea Systems, Inc. Connection Pool and Prepared Statement Cache
US7761575B2 (en) * 2003-02-28 2010-07-20 Bea Systems, Inc. Connection pool and prepared statement cache
US20050004996A1 (en) * 2003-03-24 2005-01-06 International Business Machines Corporation System, method and program for grouping data update requests for efficient processing
US7593947B2 (en) * 2003-03-24 2009-09-22 Ibm Corporation System, method and program for grouping data update requests for efficient processing
US20060056436A1 (en) * 2004-09-10 2006-03-16 Nec Corporation Method, device, system and program for time-series data management
US7577159B2 (en) * 2004-09-10 2009-08-18 Nec Corporation Method, device, system and program for time-series data management
US20150254257A1 (en) * 2014-03-04 2015-09-10 Microsoft Corporation Seamless data migration across databases
US9720991B2 (en) * 2014-03-04 2017-08-01 Microsoft Technology Licensing, Llc Seamless data migration across databases
US10831779B2 (en) 2014-03-04 2020-11-10 Microsoft Technology Licensing, Llc Seamless data migration across databases
WO2016178706A1 (en) * 2015-05-02 2016-11-10 Hewlett Packard Enterprise Development Lp Storage memory direct access
US10255206B2 (en) 2015-05-02 2019-04-09 Hewlett Packard Enterprise Development Lp Storage memory direct access

Also Published As

Publication number Publication date
GB0230171D0 (en) 2003-02-05
GB2382899B (en) 2003-12-17
US20020133648A1 (en) 2002-09-19
GB0230176D0 (en) 2003-02-05
GB2382899A (en) 2003-06-11
GB2382898A (en) 2003-06-11
JP2002236608A (en) 2002-08-23
DE10164455A1 (en) 2002-07-25
FR2821454A1 (en) 2002-08-30
DE10164456A1 (en) 2002-08-01
FR2819090A1 (en) 2002-07-05
US20020129213A1 (en) 2002-09-12
GB2382898B (en) 2005-06-29
US6760795B2 (en) 2004-07-06
DE10164453A1 (en) 2002-07-25
JP2002278830A (en) 2002-09-27
JP2002261840A (en) 2002-09-13
FR2819069A1 (en) 2002-07-05

Similar Documents

Publication Publication Date Title
US6760795B2 (en) Data queue system
KR100350141B1 (en) An application interface to a media server and a method of implementing the same
US8499137B2 (en) Memory manager for a network communications processor architecture
US20070073973A1 (en) Method and apparatus for managing buffers in a data processing system
US6385658B2 (en) Method and apparatus for synchronized message passing using shared resources
US20050147100A1 (en) Dynamic management of TCP reassembly buffers
US20040047361A1 (en) Method and system for TCP/IP using generic buffers for non-posting TCP applications
US7113516B1 (en) Transmit buffer with dynamic size queues
US20080034168A1 (en) Transferring memory buffers between multiple processing entities
US6820087B1 (en) Method and apparatus for initializing data structures to accelerate variable length decode
US20040019882A1 (en) Scalable data communication model
GB2370661A (en) Data queues
US20040221066A1 (en) Method and apparatus for implementing packet command instructions for network processing
US20020194332A1 (en) Method and apparatus to manage resources for a multi-threaded device driver
US6799229B1 (en) Data-burst-count-base receive FIFO control design and early packet discard for DMA optimization
US6526458B1 (en) Method and system for efficient i/o operation completion in a fibre channel node using an application specific integration circuit and determining i/o operation completion status within interface controller
US20050172096A1 (en) Morphing memory pools
US20010018732A1 (en) Parallel processor and parallel processing method
US6629168B1 (en) Byte-swapping for efficient use of memory
US7239640B1 (en) Method and apparatus for controlling ATM streams
JP2001103116A (en) Stream generator
JP4465603B2 (en) Receive data storage method
Karaorman et al. Design and Implementation of an eXpressDSP− Compliant DMA Manager for C6X1X
KR20000044726A (en) Method for managing a memory in a digital processing system
JPH1079774A (en) Processing system for protocol data

Legal Events

Date Code Title Description
AS Assignment

Owner name: ZARLINK SEMICONDUCTOR LIMITED, A UK COMPANY, UNITE

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:GOUDIE, ALISTAIR;HELLIWELL, COLIN;JONES, MARCUS;REEL/FRAME:012677/0106;SIGNING DATES FROM 20020121 TO 20020129

STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION