| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /*
- * Copyright (c) 2006-2021, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2021-07-14 JasonHu first version
- */
- #include <rthw.h>
- #include <rtdef.h>
- #include "cache.h"
- void rt_hw_cpu_icache_invalidate(void *addr,int size)
- {
- }
- void rt_hw_cpu_dcache_invalidate(void *addr,int size)
- {
- }
- void rt_hw_cpu_dcache_clean(void *addr,int size)
- {
- }
- void rt_hw_cpu_icache_ops(int ops,void *addr,int size)
- {
- }
- void rt_hw_cpu_dcache_ops(int ops,void *addr,int size)
- {
- }
- void rt_hw_cpu_dcache_flush_all()
- {
- }
- void rt_hw_cpu_icache_invalidate_all()
- {
- }
- rt_base_t rt_hw_cpu_icache_status()
- {
- return 0;
- }
- rt_base_t rt_hw_cpu_dcache_status()
- {
- return 0;
- }
- int sys_cacheflush(void *addr, int size, int cache)
- {
- return 0;
- }
|