blob: e2272cc6e5dd12a51205d760c50e34ee4faf4574 [file] [log] [blame]
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +02001/*
2 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef __PLAT_PRIVATE_H__
8#define __PLAT_PRIVATE_H__
9
10#include <bl_common.h>
11#include "hi3798cv200.h"
12
13void plat_configure_mmu_el3(unsigned long total_base,
14 unsigned long total_size,
15 unsigned long ro_start,
16 unsigned long ro_limit,
17 unsigned long coh_start,
18 unsigned long coh_limit);
19
20void plat_configure_mmu_el1(unsigned long total_base,
21 unsigned long total_size,
22 unsigned long ro_start,
23 unsigned long ro_limit,
24 unsigned long coh_start,
25 unsigned long coh_limit);
26
27void plat_delay_timer_init(void);
28void plat_io_setup(void);
29
30#endif /* __PLAT_PRIVATE_H__ */