1/*
2 * Copyright 2016, 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/generic_timer.h>
14#include <linker.h>
15
16BOOT_CODE void
17initTimer(void)
18{
19    initGenericTimer();
20}
21
22void
23initL2Cache(void)
24{
25
26}
27
28void plat_cleanL2Range(paddr_t start, paddr_t end) {}
29void plat_invalidateL2Range(paddr_t start, paddr_t end) {}
30void plat_cleanInvalidateL2Range(paddr_t start, paddr_t end) {}
31void plat_cleanInvalidateCache(void) {}
32