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#include <config.h>
11#include <types.h>
12#include <arch/machine.h>
13#include <arch/machine/generic_timer.h>
14#include <linker.h>
15
16BOOT_CODE void
17initTimer(void)
18{
19    /* we use the physical count-down timer of the GPT as the kernel preemption timer */
20    initGenericTimer();
21}
22
23void plat_cleanL2Range(paddr_t start, paddr_t end) {}
24void plat_invalidateL2Range(paddr_t start, paddr_t end) {}
25void plat_cleanInvalidateL2Range(paddr_t start, paddr_t end) {}
26void plat_cleanInvalidateCache(void) {}
27