xref: /rk3399_ARM-atf/include/drivers/arm/arm_gicv3_common.h (revision 61f72a34250d063da67f4fc2b0eb8c3fda3376be)
1 /*
2  * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 #ifndef __ARM_GICV3_COMMON_H__
7 #define __ARM_GICV3_COMMON_H__
8 
9 /*******************************************************************************
10  * GIC500/GIC600 Re-distributor interface registers & constants
11  ******************************************************************************/
12 
13 /* GICR_WAKER implementation-defined bit definitions */
14 #define	WAKER_SL_SHIFT		0
15 #define	WAKER_QSC_SHIFT		31
16 
17 #define WAKER_SL_BIT		(1U << WAKER_SL_SHIFT)
18 #define WAKER_QSC_BIT		(1U << WAKER_QSC_SHIFT)
19 
20 #endif /* __ARM_GICV3_COMMON_H__ */
21