mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-23 13:36:05 +00:00

This is based on the rpi implementation from https://review.trustedfirmware.org/c/TF-A/trusted-firmware-a/+/2746. Signed-off-by: Andrew Walbran <qwandor@google.com> Change-Id: I5fe324fcd9d5e232091e01267ea12147c46bc9c1
37 lines
1.1 KiB
C
37 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2015-2019, 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);
|
|
|
|
void qemu_console_init(void);
|
|
|
|
void plat_qemu_gic_init(void);
|
|
void qemu_pwr_gic_on_finish(void);
|
|
void qemu_pwr_gic_off(void);
|
|
|
|
#endif /* QEMU_PRIVATE_H */
|