blob: 9f00f7263674f2d67bdc796a42bf392834ed2c81 [file] [log] [blame]
Soby Mathewb4c6df42022-11-09 11:13:29 +00001/*
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 */
10struct xlat_mmap_region;
11
12int plat_cmn_setup(unsigned long x0, unsigned long x1,
13 unsigned long x2, unsigned long x3,
Javier Almansa Sobrinoed932592023-01-24 12:50:41 +000014 struct xlat_mmap_region *plat_regions,
15 unsigned int nregions);
Soby Mathewb4c6df42022-11-09 11:13:29 +000016int plat_cmn_warmboot_setup(void);
17
18#endif /* PLAT_COMMON_H */