This repository has been archived by the owner on Nov 25, 2022. It is now read-only.
forked from apache/tvm
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Hexagon] Asynchronous DMA support (apache#12411)
Adds adds asynchronous DMA support through the Hexagon User DMA engine with unit tests to validate basic functionality. Asynchronous DMA support here means the ability to "kick off" asynchronously a number of DMAs using the Copy API and then to Poll for or Wait on a number of "in flight" (not done) DMAs. Enables future testing and development for asynchronous memory copy on Hexagon. For now, Hexagon DMA support remains synchronous in nature through existing hexagon_user_dma_1d_sync interface which uses asynchronous capable HexagonUserDMA class in a synchronous way --- calling Copy and Wait back to back for each request. * use ring buffer to store DMA descriptors * add RingBuffer class; used by HexUserDMA to store descriptors * add test to overflow the HexagonUserDMA ring buffer
- Loading branch information
Showing
8 changed files
with
631 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
#ifndef TVM_RUNTIME_HEXAGON_HEXAGON_USER_DMA_H_ | ||
#define TVM_RUNTIME_HEXAGON_HEXAGON_USER_DMA_H_ | ||
|
||
#include "hexagon_common.h" | ||
#include "hexagon_user_dma_descriptors.h" | ||
#include "hexagon_user_dma_instructions.h" | ||
#include "hexagon_user_dma_registers.h" | ||
#include "ring_buffer.h" | ||
|
||
namespace tvm { | ||
namespace runtime { | ||
namespace hexagon { | ||
|
||
#define DMA_SUCCESS 0 | ||
#define DMA_FAILURE -1 | ||
#define DMA_RETRY 1 | ||
#define MAX_DMA_DESCRIPTORS 100 | ||
|
||
class HexagonUserDMA { | ||
public: | ||
/*! | ||
* \brief Initiate DMA to copy memory from source to destination address | ||
* \param dst Destination address | ||
* \param src Source address | ||
* \param length Length in bytes to copy | ||
* \returns Status: DMA_SUCCESS or DMA_FAILURE | ||
*/ | ||
int Copy(void* dst, void* src, uint32_t length); | ||
|
||
/*! | ||
* \brief Wait until the number of DMAs in flight is less than or equal to some maximum | ||
* \param max_dmas_in_flight Maximum number of DMAs allowed to be in flight | ||
* to satisfy the `Wait` e.g. use `Wait(0)` to wait on "all" outstanding DMAs to complete | ||
*/ | ||
void Wait(uint32_t max_dmas_in_flight); | ||
|
||
/*! | ||
* \brief Poll the number of DMAs in flight | ||
* \returns Number of DMAs in flight | ||
*/ | ||
uint32_t Poll(); | ||
|
||
//! \brief HexagonUserDMA uses the singleton pattern | ||
static HexagonUserDMA& Get() { | ||
static HexagonUserDMA* hud = new HexagonUserDMA(); | ||
return *hud; | ||
} | ||
|
||
private: | ||
// HexagonUserDMA uses the singleton pattern | ||
HexagonUserDMA(); | ||
~HexagonUserDMA(); | ||
HexagonUserDMA(const HexagonUserDMA&) = delete; | ||
HexagonUserDMA& operator=(const HexagonUserDMA&) = delete; | ||
HexagonUserDMA(HexagonUserDMA&&) = delete; | ||
HexagonUserDMA& operator=(HexagonUserDMA&&) = delete; | ||
|
||
//! \brief Initializes the Hexagon User DMA engine | ||
unsigned int Init(); | ||
|
||
//! \brief Calculates and returns the number of DMAs in flight | ||
uint32_t DMAsInFlight(); | ||
|
||
//! \brief Tracks whether the very first DMA has been executed | ||
bool first_dma_{true}; | ||
|
||
//! \brief Tracks the tail DMA descriptor | ||
void* tail_dma_desc_{nullptr}; | ||
|
||
//! \brief Storage for all DMA descriptors | ||
RingBuffer<dma_desc_2d_t>* descriptors_{nullptr}; | ||
}; | ||
|
||
} // namespace hexagon | ||
} // namespace runtime | ||
} // namespace tvm | ||
|
||
#endif // TVM_RUNTIME_HEXAGON_HEXAGON_USER_DMA_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.