Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1 | /* |
2 | * SPDX-License-Identifier: BSD-3-Clause | ||||
3 | * SPDX-FileCopyrightText: Copyright TF-RMM Contributors. | ||||
4 | */ | ||||
5 | |||||
6 | #ifndef PLAT_COMMON_H | ||||
7 | #define PLAT_COMMON_H | ||||
8 | |||||
9 | /* Forward declaration */ | ||||
10 | struct xlat_mmap_region; | ||||
11 | |||||
12 | int plat_cmn_setup(unsigned long x0, unsigned long x1, | ||||
13 | unsigned long x2, unsigned long x3, | ||||
14 | struct xlat_mmap_region *plat_regions); | ||||
15 | int plat_cmn_warmboot_setup(void); | ||||
16 | |||||
17 | #endif /* PLAT_COMMON_H */ |