xref: /rk3399_ARM-atf/plat/imx/common/include/imx_aips.h (revision 36044baf08a9f816a8a062a8a50ede12a816a6dd)
1 /*
2  * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef __IMX_AIPS_H__
8 #define __IMX_AIPS_H__
9 
10 #include <stdint.h>
11 
12 #define AIPSTZ_OAPCR_COUNT	0x05
13 
14 struct aipstz_regs {
15 	uint32_t aipstz_mpr;
16 	uint32_t res[15];
17 	uint32_t aipstz_opacr[AIPSTZ_OAPCR_COUNT];
18 };
19 
20 void imx_aips_init(void);
21 
22 #endif /* __IMX_AIPS_H__ */
23