Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Chris Zankel | c978b52 | 2016-08-10 18:36:44 +0300 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2008 - 2013 Tensilica Inc. |
| 4 | * (C) Copyright 2014 - 2016 Cadence Design Systems Inc. |
Chris Zankel | c978b52 | 2016-08-10 18:36:44 +0300 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 9edefc2 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 8 | #include <cpu_func.h> |
Chris Zankel | c978b52 | 2016-08-10 18:36:44 +0300 | [diff] [blame] | 9 | #include <asm/cache.h> |
| 10 | |
| 11 | /* |
| 12 | * We currently run always with caches enabled when running from memory. |
| 13 | * Xtensa version D or later will support changing cache behavior, so |
| 14 | * we could implement it if necessary. |
| 15 | */ |
| 16 | |
| 17 | int dcache_status(void) |
| 18 | { |
| 19 | return 1; |
| 20 | } |
| 21 | |
| 22 | void dcache_enable(void) |
| 23 | { |
| 24 | } |
| 25 | |
| 26 | void dcache_disable(void) |
| 27 | { |
| 28 | } |
| 29 | |
| 30 | void flush_cache(ulong start_addr, ulong size) |
| 31 | { |
| 32 | __flush_invalidate_dcache_range(start_addr, size); |
| 33 | __invalidate_icache_range(start_addr, size); |
| 34 | } |
| 35 | |
| 36 | void flush_dcache_all(void) |
| 37 | { |
| 38 | __flush_dcache_all(); |
| 39 | __invalidate_icache_all(); |
| 40 | } |
| 41 | |
| 42 | void flush_dcache_range(ulong start_addr, ulong end_addr) |
| 43 | { |
| 44 | __flush_invalidate_dcache_range(start_addr, end_addr - start_addr); |
| 45 | } |
| 46 | |
| 47 | void invalidate_dcache_range(ulong start, ulong stop) |
| 48 | { |
| 49 | __invalidate_dcache_range(start, stop - start); |
| 50 | } |
| 51 | |
| 52 | void invalidate_dcache_all(void) |
| 53 | { |
| 54 | __invalidate_dcache_all(); |
| 55 | } |
| 56 | |
| 57 | void invalidate_icache_all(void) |
| 58 | { |
| 59 | __invalidate_icache_all(); |
| 60 | } |