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#include <config.h>
12#include <types.h>
13#include <arch/machine.h>
14#include <arch/machine/generic_timer.h>
15
16/* we use the count-down timer of the GPT as the kernel preemption timer */
17void
18initTimer(void)
19{
20    initGenericTimer();
21}
22
23/* Cortex-A7 uses an integrated L2 cache controller */
24void
25initL2Cache(void)
26{
27}
28
29void plat_cleanL2Range(paddr_t start, paddr_t end) {}
30void plat_invalidateL2Range(paddr_t start, paddr_t end) {}
31void plat_cleanInvalidateL2Range(paddr_t start, paddr_t end) {}
32void plat_cleanInvalidateCache(void) {}
33