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, |
Javier Almansa Sobrino | ed93259 | 2023-01-24 12:50:41 +0000 | [diff] [blame^] | 14 | struct xlat_mmap_region *plat_regions, |
| 15 | unsigned int nregions); |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 16 | int plat_cmn_warmboot_setup(void); |
| 17 | |
| 18 | #endif /* PLAT_COMMON_H */ |