1/*
2 * Copyright 2014, General Dynamics C4 Systems
3 *
4 * This software may be distributed and modified according to the terms of
5 * the GNU General Public License version 2. Note that NO WARRANTY is provided.
6 * See "LICENSE_GPLv2.txt" for details.
7 *
8 * @TAG(GD_GPL)
9 */
10
11/*
12 * ARM L2 Cache controller L2C-310
13 */
14
15#ifndef __ARCH_MACHINE_L2C_310_H
16#define __ARCH_MACHINE_L2C_310_H
17
18#include <arch/types.h>
19
20
21void initL2Cache(void);
22
23void plat_cleanInvalidateCache(void);
24void plat_cleanCache(void);
25void plat_cleanL2Range(paddr_t start, paddr_t end);
26void plat_invalidateL2Range(paddr_t start, paddr_t end);
27void plat_cleanInvalidateL2Range(paddr_t start, paddr_t end);
28
29#endif /* !__ARCH_MACHINE_L2C_310_H */
30