You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
305 B
18 lines
305 B
/*
|
|
* Copyright (c) 2020, Nuvia Inc
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef SBSA_PRIVATE_H
|
|
#define SBSA_PRIVATE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
unsigned int plat_qemu_calc_core_pos(u_register_t mpidr);
|
|
|
|
void qemu_pwr_gic_on_finish(void);
|
|
void qemu_pwr_gic_off(void);
|
|
|
|
#endif /* SBSA_PRIVATE_H */
|