1
0

drv_cache.h 584 B

12345678910111213141516171819202122
  1. /**
  2. * Copyright (c) 2019 Fuzhou Rockchip Electronics Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. ******************************************************************************
  6. * @file drv_cache.h
  7. * @version V0.1
  8. * @brief cpu cache interface
  9. *
  10. * Change Logs:
  11. * Date Author Notes
  12. * 2019-04-01 Cliff.Chen first implementation
  13. *
  14. ******************************************************************************
  15. */
  16. #ifndef __DRV_CACHE_H__
  17. #define __DRV_CACHE_H__
  18. #include <rtthread.h>
  19. int rt_hw_cpu_cache_init(void);
  20. #endif