mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-14 08:27:00 +02:00
MISRA Violation: MISRA-C:2012 R.4.6 - Using basic numerical type int rather than a typedef that includes size and signedness information. Signed-off-by: Venkatesh Yadav Abbarapu <venkatesh.abbarapu@xilinx.com> Change-Id: I9fb686e7aa2b85af6dfcb7bb5f87eddf469fb85c
34 lines
706 B
C
34 lines
706 B
C
/*
|
|
* Copyright (c) 2014-2020, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef PLAT_PRIVATE_H
|
|
#define PLAT_PRIVATE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <bl31/interrupt_mgmt.h>
|
|
#include <common/bl_common.h>
|
|
#include <drivers/cadence/cdns_uart.h>
|
|
|
|
void zynqmp_config_setup(void);
|
|
|
|
uint32_t zynqmp_calc_core_pos(u_register_t mpidr);
|
|
|
|
/* ZynqMP specific functions */
|
|
uint32_t zynqmp_get_uart_clk(void);
|
|
uint32_t zynqmp_get_bootmode(void);
|
|
|
|
|
|
#if ZYNQMP_WDT_RESTART
|
|
/*
|
|
* Register handler to specific GIC entrance
|
|
* for INTR_TYPE_EL3 type of interrupt
|
|
*/
|
|
int request_intr_type_el3(uint32_t, interrupt_type_handler_t);
|
|
#endif
|
|
|
|
#endif /* PLAT_PRIVATE_H */
|