blob: c7429975647f44c7ce1724c48764c853c289749d [file]
/*
* 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.
*/
/*!
* \file src/runtime/vm/hexagon/builtin.cc
* \brief The hexagon graph related builtin functions for Relax virtual machine.
*/
#include <tvm/ffi/function.h>
#include <tvm/ffi/reflection/registry.h>
#include <tvm/runtime/device_api.h>
#include <tvm/runtime/vm/vm.h>
#include "../../hexagon/hexagon_device_api.h"
namespace tvm {
namespace runtime {
namespace vm {
// clang-format off
TVM_FFI_STATIC_INIT_BLOCK() {
namespace refl = tvm::ffi::reflection;
refl::GlobalDef()
.def("vm.builtin.hexagon.dma_copy",
[](ffi::AnyView vm_ptr, Tensor src_arr, Tensor dst_arr, int queue_id,
bool bypass_cache) {
const DLTensor* dptr = dst_arr.operator->();
const DLTensor* sptr = src_arr.operator->();
void* dst = dptr->data;
void* src = sptr->data;
int ret = DMA_RETRY;
TVM_FFI_ICHECK_EQ(ffi::GetDataSize(*dptr), ffi::GetDataSize(*sptr));
auto size = ffi::GetDataSize(*dptr);
TVM_FFI_ICHECK(size > 0);
if (bypass_cache)
qurt_mem_cache_clean(reinterpret_cast<qurt_addr_t>(src), size,
QURT_MEM_CACHE_INVALIDATE, QURT_MEM_DCACHE);
do {
ret = tvm::runtime::hexagon::HexagonDeviceAPI::Global()->UserDMA()->Copy(
queue_id, dst, src, size, bypass_cache);
} while (ret == DMA_RETRY);
TVM_FFI_ICHECK(ret == DMA_SUCCESS);
})
.def("vm.builtin.hexagon.dma_wait", [](ffi::AnyView vm_ptr, int queue_id, int inflight_dma,
bool bypass_cache, [[maybe_unused]] Tensor src_arr,
[[maybe_unused]] Tensor dst_arr) {
TVM_FFI_ICHECK(inflight_dma >= 0);
tvm::runtime::hexagon::HexagonDeviceAPI::Global()->UserDMA()->Wait(queue_id, inflight_dma);
if (bypass_cache) {
const DLTensor* dptr = dst_arr.operator->();
void* dst = dptr->data;
auto size = ffi::GetDataSize(*dptr);
qurt_mem_cache_clean(reinterpret_cast<qurt_addr_t>(dst), size, QURT_MEM_CACHE_FLUSH,
QURT_MEM_DCACHE);
}
});
}
// clang-format on
} // namespace vm
} // namespace runtime
} // namespace tvm