blob: b7ba28a4ac9a1ce6770578f074c63699a8b41d01 [file] [log] [blame]
John Tsichritzis4daa1de2018-07-23 09:11:59 +01001/*
Antonio Nino Diaz5e79cfe2019-02-11 13:34:15 +00002 * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
John Tsichritzis4daa1de2018-07-23 09:11:59 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef DSU_DEF_H
8#define DSU_DEF_H
9
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <lib/utils_def.h>
John Tsichritzis4daa1de2018-07-23 09:11:59 +010011
12/********************************************************************
13 * DSU control registers definitions *
14 ********************************************************************/
15#define CLUSTERCFR_EL1 S3_0_C15_C3_0
16#define CLUSTERIDR_EL1 S3_0_C15_C3_1
17#define CLUSTERACTLR_EL1 S3_0_C15_C3_3
18
19/********************************************************************
20 * DSU control registers bit fields *
21 ********************************************************************/
22#define CLUSTERIDR_REV_SHIFT U(0)
23#define CLUSTERIDR_REV_BITS U(4)
24#define CLUSTERIDR_VAR_SHIFT U(4)
25#define CLUSTERIDR_VAR_BITS U(4)
26#define CLUSTERCFR_ACP_SHIFT U(11)
27
28/********************************************************************
29 * Masks applied for DSU errata workarounds *
30 ********************************************************************/
Antonio Nino Diaz5e79cfe2019-02-11 13:34:15 +000031#define DSU_ERRATA_936184_MASK (U(0x3) << 15)
John Tsichritzis4daa1de2018-07-23 09:11:59 +010032
33#endif /* DSU_DEF_H */