mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
39 lines
1.0 KiB
C
39 lines
1.0 KiB
C
/**
|
|
******************************************************************************
|
|
* @file npu_cache.h
|
|
* @brief Prototypes of NPU-cache-handling functions (CACHEAXI)
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2024 STMicroelectronics.
|
|
* All rights reserved.
|
|
*
|
|
* This software is licensed under terms that can be found in the LICENSE file
|
|
* in the root directory of this software component.
|
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef NPU_CACHE_H
|
|
#define NPU_CACHE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "stm32n6xx_hal.h"
|
|
|
|
void npu_cache_init(void);
|
|
void npu_cache_enable(void);
|
|
void npu_cache_disable(void);
|
|
void npu_cache_invalidate(void);
|
|
void npu_cache_clean_invalidate_range(uint32_t start_addr, uint32_t end_addr);
|
|
void npu_cache_clean_range(uint32_t start_addr, uint32_t end_addr);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* NPU_CACHE_H */
|