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 
19 #include <rtthread.h>
20 
21 int rt_hw_cpu_cache_init(void);
22 #endif
23