Information
-
Patent Application
-
20030061414
-
Publication Number
20030061414
-
Date Filed
September 27, 200123 years ago
-
Date Published
March 27, 200321 years ago
-
CPC
-
US Classifications
-
International Classifications
Abstract
Direct memory access data transfers may be initiated between buffers on one processor system to corresponding buffers in another processor system. The buffers in each system may be provided as a linked list such that transfers successively occur between the buffers. Each buffer may include a descriptor that indicates whether or not the buffer is full or empty. As a result, the buffer may be accessed by controllers in either processor system.
Description
BACKGROUND
[0001] This invention relates generally to processor-based systems and particularly to systems including two separate processor systems that communicate with one another.
[0002] In many wireless systems, a baseband processor is available to handle communication tasks. A multimedia processor is generally available for the wealth of non-communication-based tasks. For example, in cellular telephones, the baseband processor may be responsible for implementing the relevant wireless protocol. Conversely, the multimedia processor may be responsible for controlling the display, providing games, and implementing address book and calendar features and the like.
[0003] Thus, it is convenient in many wireless systems to provide two processors that operate as intercommunicating systems. That is, each processor system communicates with the other processor system. The processor systems may be separately integrated or commonly integrated on the same chip.
[0004] Direct memory access or DMA forms a second data channel between peripherals and main memory through which a peripheral can directly access the main memory without the help of the processor to read or write data. DMA may be implemented by a DMA controller.
[0005] Existing DMA controllers are primarily concerned with the internal data flows of a particular process or processor. Streaming data flows between different processors in the same processor-based system add additional complexities that may lead to flow bottlenecks and inefficient use of processor resources. Each DMA controller, in a multi-processor system, may be focused on its associated processor, resulting in too many interrupts to each processor.
[0006] Thus, there is a need, in multi-processor systems, to facilitate DMA operations.
BRIEF DESCRIPTION OF THE DRAWINGS
[0007]
FIG. 1 is a block depiction of a system in accordance with one embodiment of the present invention;
[0008]
FIG. 2 is a flow chart for “send” software in accordance with one embodiment of the present invention; and
[0009]
FIG. 3 is a flowchart for “receive” software in accordance with one embodiment of the present invention.
DETAILED DESCRIPTION
[0010] Referring to FIG. 1, a processor-based system 10 may include a pair of processor systems 12 and 14. In one embodiment, the system 10 is a wireless communication system, such as a cellular telephone. The systems 12 and 14 communicate over a bus 13. In one embodiment, the system 12 may be a multimedia processor system and the system 14 may be a baseband processor system. The systems 12 and 14 may be integrated on separate or the same integrated circuit.
[0011] The system 12 may include a first-in-first-out (FIFO) buffer 18a that is coupled to a direct memory access (DMA) controller 16a that includes a storage 32a in one embodiment. The controller 16a communicates with a linked list of descriptors, indicated as descriptors 26a, 28a, and 30a. Each descriptor 26a, 28a, and 30a is coupled to its respective buffer 20a, 22a, and 24a. The descriptors 26-30 include flags that indicate whether the associated buffer is either empty or full. In the illustrated embodiment, the buffers 20a, 22a, and 24a are illustrated as being in their empty state following a transfer to the system 14, for example.
[0012] Similarly, the system 14 includes a first-in-first-out (FIFO) buffer 18b, a controller 16b with a storage 32b in one embodiment. The descriptors 26b, 28b, and 30b are arranged in a linked list, and coupled to associated buffers 20b, 22b, and 24b.
[0013] Through the use of the buffers 20-24 and descriptors 26-30, inter-processor data flow may be made more efficient in some embodiments. Each of the buffers 20-24 are maintained as a linked list with descriptors 26-30 acting as queue flags to indicate whether the associated buffer 20-24 is either empty or full. This enables software on each system 12 or 14 to freely interact with any of the buffers 20-24.
[0014] As shown in FIG. 1, immediately following a data transfer, the buffers 20a-24a are designated by descriptors 26a-30a as being empty while the buffers 20b-24b are indicated by their descriptors 26b-30b as being full.
[0015] Turning to FIG. 2, the software 34, that may, for example, be stored in the storage 32a and 32b, may send information across the bus 13 from the system 12 to the system 14, in one example. If both systems 12 and 14 are aware of an impending data transfer, the buffers 20-24 on each side of the interface 13 are prepared as indicated in block 36. The buffers 20a-24b are set with the first data to send as indicated in block 38. The descriptors 26-30 for each linked buffer 20a-24b are prepared in linked list fashion as indicated in block 40. Then, the empty bit is set for each buffer, as indicated in block 42. When ready, DMA requests on both sides are initiated by the corresponding FIFOs 18, as indicated in block 44. The DMA transfer then begins, as indicated in block 46. Data may stream from the buffers 20a-24a through the interface 13 and the FIFO 18b to the buffers 20b-24b on the system 14.
[0016] When data transfer from one source buffer is complete, as determined at diamond 48, the DMA controller 16a sets the empty bit in the corresponding descriptor, as indicated in block 50. The controller 16a then writes the descriptor back to memory, as indicated in block 52, and moves on to the next descriptor in the linked list as indicated in block 54. Before transferring the data from a buffer, the controller 16a checks the empty bit, as indicated in diamond 56. If the empty bit is set, the controller 16a causes an interrupt, as indicated in block 58. Software intercepts this interrupt, fills the buffers 20a-24a with more data, clears the empty bit in each descriptor 26a-30a and starts the DMA channel again by setting a run bit.
[0017] As shown in FIG. 3, the receive software 60 prepares the buffers 20b-24b in the system 14, as indicated in block 62. The software 60 may be stored in storage 32. The descriptors are prepared, as indicated in block 64, the full bit is clear as indicated in block 66 and the DMA channels are prepared to receive the data. When ready, the DMA requests are initiated by the FIFOs 18, as indicated in the block 68. The DMA transfer then proceeds, as indicated in block 70, with data streaming from memory buffers in one processor system (12 or 14) to the other processor system (12 or 14).
[0018] When the data transfer from the source buffers (in this case the buffers 20a-24a) is complete, a check at diamond 72 determines when a target buffer is full. The controller 16b sets the full bit, as indicated in block 74 in the corresponding descriptor 26b-30b, writes the descriptor back to memory, as indicated in block 76, and moves on to the next descriptor in the linked list, as indicated in block 78. Before the controller 16b attempts to fill the next buffer, it checks the full bit, as indicated in diamond 80. If the full bit is set, the controller 16b generates an interrupt, as shown in block 82. Software intercepts this interrupt, copies the buffers into other locations, clears the full bit in each descriptor and starts the DMA channel again by setting the run bit.
[0019] In some embodiments, the software is able to detect empty and full buffers and, even as DMA transfer continues, perform the necessary handling before an interrupt becomes necessary. In this manner, the number of interrupts may be greatly reduced. Thus, source buffers may be refilled and target buffers may be emptied to continue data transfer.
[0020] In one embodiment, the empty and full flags may be fully interchangeable. In such an embodiment, the same flag may be used to indicate “empty” when the DMA buffer descriptor is used to transmit data and “full” when the DMA buffer descriptor is used to receive data.
[0021] While the present invention has been described with respect to a limited number of embodiments, those skilled in the art will appreciate numerous modifications and variations therefrom. It is intended that the appended claims cover all such modifications and variations as fall within the true spirit and scope of this present invention.
Claims
- 1. A method comprising:
initiating a direct memory access; and successively transferring data from linked buffers in a first processor system to linked buffers in a second processor system.
- 2. The method of claim 1 wherein successively transferring data from linked buffers includes successively transferring data from buffers arranged in a linked list on a first processor system to buffers arranged in a linked list on a second processor system.
- 3. The method of claim 2 including providing descriptors that indicate the status of each of said buffers.
- 4. The method of claim 3 including providing flags that indicate whether a buffer is empty or full.
- 5. The method of claim 1 including transferring data between buffers in a cellular telephone.
- 6. The method of claim 5 including transferring data between a first processor system that includes a baseband processor and a second processor system that includes a multimedia processor.
- 7. The method of claim 1 including determining the status of a buffer to which data is to be transferred before transferring the data.
- 8. The method of claim 7 including determining if a buffer from which data is to be transferred is empty and if so, automatically filling the buffer with data.
- 9. The method of claim 8 including generating an interrupt when a buffer is empty and data is to be transferred from the buffer, intercepting the interrupt, and automatically filling the buffer.
- 10. The method of claim 9 including determining whether a buffer that is to receive data is full and if the buffer is full, automatically generating an interrupt, intercepting the interrupt, and automatically emptying the buffer.
- 11. An article comprising a medium storing instructions that enable a processor-based system to:
initiate a direct memory access; and successively transfer data from linked buffers in a first processor system to linked buffers in a second processor system.
- 12. The article of claim 11 further storing instructions that enable the processor-based system to successively transfer data from linked buffers arranged in a linked list on a first processor system to buffers arranged in a linked list on a second processor system.
- 13. The article of claim 12 further storing instructions that enable the processor-based system to provide descriptors that indicate the status of each of said buffers.
- 14. The article of claim 13 further storing instructions that enable the processor-based system to provide flags that indicate whether a buffer is empty or full.
- 15. The article of claim 11 further storing instructions that enable the processor-based system to transfer data between buffers in a cellular telephone.
- 16. The article of claim 15 further storing instructions that enable the processor-based system to transfer data between a first processor system that includes a baseband processor and a second processor system that includes a multimedia processor.
- 17. The article of claim 11 further storing instructions that enable the processor-based system to determine the status of a buffer to which data is to be transferred before transferring the data.
- 18. The article of claim 17 further storing instructions that enable the processor-based system to determine if a buffer from which data is to be transferred is empty and if so, automatically fill the buffer with data.
- 19. The article of claim 18 further storing instructions that enable the processor-based system to generate an interrupt when a buffer is empty and data is to be transferred from the buffer, intercept the interrupt, and automatically fill the buffer.
- 20. The article of claim 19 further storing instructions that enable the processor-based system to determine whether a buffer that is to receive data is full and if the buffer is full, automatically generate an interrupt, intercept the interrupt, and automatically empty the buffer.
- 21. A system comprising:
a processor; and a storage coupled to said processor storing instructions that enable the processor to:
initiate a direct memory access; and successively transfer data from linked buffers in a first processor system to linked buffers in a second processor system.
- 22. The system of claim 21 wherein said storage stores instructions that enable the processor to successively transfer data from linked buffers arranged in a linked list on a first processor system to buffers arranged in a linked list on a second processor system.
- 23. The system of claim 22 wherein said storage stores instructions that enable the processor to provide descriptors that indicate the status of each of said buffers.
- 24. The system of claim 23 wherein said storage stores instructions that enable the processor to provide flags that indicate whether a buffer is empty or full.
- 25. The system of claim 21 wherein said system is a cellular telephone.
- 26. The system of claim 25 wherein said processor is a baseband processor, said system further including a multimedia processor.
- 27. The system of claim 21 wherein said storage stores instructions that enable the processor to determine the status of a buffer to which data is to be transferred before transferring the data.
- 28. The system of claim 27 wherein said storage stores instructions that enable the processor to determine if a buffer from which data is to be transferred is empty and if so, automatically fill the buffer with data.
- 29. The system of claim 28 wherein said storage stores instructions that enable the processor to generate an interrupt when a buffer is empty and data is to be transferred from the buffer, intercept the interrupt, and automatically fill the buffer.
- 30. The system of claim 29 wherein said storage stores instructions that enable the processor to determine whether a buffer that is to receive data is full and if the buffer is full, automatically generate an interrupt, intercept the interrupt, and automatically empty the buffer.