mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-24 22:05:40 +00:00

The definitions in bl1/bl1_private.h and bl2/bl2_private.h are useful for platforms that may need to access them. Change-Id: Ifd1880f855ddafcb3bfcaf1ed4a4e0f121eda174 Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
36 lines
1.1 KiB
C
36 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef QEMU_PRIVATE_H
|
|
#define QEMU_PRIVATE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void qemu_configure_mmu_svc_mon(unsigned long total_base,
|
|
unsigned long total_size,
|
|
unsigned long code_start, unsigned long code_limit,
|
|
unsigned long ro_start, unsigned long ro_limit,
|
|
unsigned long coh_start, unsigned long coh_limit);
|
|
|
|
void qemu_configure_mmu_el1(unsigned long total_base, unsigned long total_size,
|
|
unsigned long code_start, unsigned long code_limit,
|
|
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 code_start, unsigned long code_limit,
|
|
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);
|
|
|
|
void qemu_console_init(void);
|
|
|
|
#endif /* QEMU_PRIVATE_H */
|