developer | 550bf5e | 2016-07-11 16:05:23 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
developer | 550bf5e | 2016-07-11 16:05:23 +0800 | [diff] [blame] | 5 | */ |
| 6 | |
Antonio Nino Diaz | 5eb8837 | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 7 | #ifndef PLAT_PRIVATE_H |
| 8 | #define PLAT_PRIVATE_H |
| 9 | |
developer | 550bf5e | 2016-07-11 16:05:23 +0800 | [diff] [blame] | 10 | #include <stdint.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 11 | |
| 12 | #include <lib/xlat_tables/xlat_tables.h> |
developer | 550bf5e | 2016-07-11 16:05:23 +0800 | [diff] [blame] | 13 | |
| 14 | void plat_configure_mmu_el3(unsigned long total_base, |
| 15 | unsigned long total_size, |
| 16 | unsigned long, |
| 17 | unsigned long, |
| 18 | unsigned long, |
| 19 | unsigned long); |
| 20 | |
| 21 | void plat_cci_init(void); |
| 22 | void plat_cci_enable(void); |
| 23 | void plat_cci_disable(void); |
| 24 | |
| 25 | /* Declarations for plat_mt_gic.c */ |
| 26 | void plat_mt_gic_init(void); |
| 27 | |
| 28 | /* Declarations for plat_topology.c */ |
| 29 | int mt_setup_topology(void); |
| 30 | void plat_delay_timer_init(void); |
| 31 | |
| 32 | void plat_mt_gic_driver_init(void); |
| 33 | void plat_mt_gic_init(void); |
| 34 | void plat_mt_gic_cpuif_enable(void); |
| 35 | void plat_mt_gic_cpuif_disable(void); |
| 36 | void plat_mt_gic_pcpu_init(void); |
| 37 | |
Antonio Nino Diaz | 5eb8837 | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 38 | #endif /* PLAT_PRIVATE_H */ |