armv7: Add emulation/qemu-armv7 board.
[coreboot.git] / src / cpu / armltd / cortex-a9 / cache.c
blob957871dba7fa1c91b4abaa3098734593235ca366
1 /*
2 * Copyright (C) 2013 Google, Inc.
4 * This software is licensed under the terms of the GNU General Public
5 * License version 2, as published by the Free Software Foundation, and
6 * may be copied, distributed, and modified under those terms.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
14 #include <common.h>
15 #include <system.h>
16 #include <armv7.h>
19 * Sets L2 cache related parameters before enabling data cache
21 void v7_outer_cache_enable(void)
25 /* stubs so we don't need weak symbols in cache_v7.c */
26 void v7_outer_cache_disable(void)
30 void v7_outer_cache_flush_all(void)
34 void v7_outer_cache_inval_all(void)
38 void v7_outer_cache_flush_range(u32 start, u32 end)
42 void v7_outer_cache_inval_range(u32 start, u32 end)