You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
643 B
21 lines
643 B
/*
|
|
* Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#ifndef ARM_GICV3_COMMON_H
|
|
#define ARM_GICV3_COMMON_H
|
|
|
|
/*******************************************************************************
|
|
* GIC500/GIC600 Re-distributor interface registers & constants
|
|
******************************************************************************/
|
|
|
|
/* GICR_WAKER implementation-defined bit definitions */
|
|
#define WAKER_SL_SHIFT 0
|
|
#define WAKER_QSC_SHIFT 31
|
|
|
|
#define WAKER_SL_BIT (1U << WAKER_SL_SHIFT)
|
|
#define WAKER_QSC_BIT (1U << WAKER_QSC_SHIFT)
|
|
|
|
#endif /* ARM_GICV3_COMMON_H */
|