mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-05-02 08:49:28 +00:00

To make software license auditing simpler, use SPDX[0] license identifiers instead of duplicating the license text in every file. NOTE: Files that have been imported by FreeBSD have not been modified. [0]: https://spdx.org/ Change-Id: I80a00e1f641b8cc075ca5a95b10607ed9ed8761a Signed-off-by: dp-arm <dimitris.papastamos@arm.com>
26 lines
777 B
C
26 lines
777 B
C
/*
|
|
* Copyright (c) 2015-2016, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef __QEMU_PRIVATE_H
|
|
#define __QEMU_PRIVATE_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
void qemu_configure_mmu_el1(unsigned long total_base, unsigned long total_size,
|
|
unsigned long ro_start, unsigned long ro_limit,
|
|
unsigned long coh_start, unsigned long coh_limit);
|
|
|
|
void qemu_configure_mmu_el3(unsigned long total_base, unsigned long total_size,
|
|
unsigned long ro_start, unsigned long ro_limit,
|
|
unsigned long coh_start, unsigned long coh_limit);
|
|
|
|
void plat_qemu_io_setup(void);
|
|
unsigned int plat_qemu_calc_core_pos(u_register_t mpidr);
|
|
|
|
int dt_add_psci_node(void *fdt);
|
|
int dt_add_psci_cpu_enable_methods(void *fdt);
|
|
|
|
#endif /*__QEMU_PRIVATE_H*/
|