1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright 2017-2019 NXP
4  */
5 #ifndef __IMX7ULP_CRM_H__
6 #define __IMX7ULP_CRM_H__
7 
8 #include <util.h>
9 
10 #define PCC_CGC_BIT_SHIFT	30
11 
12 #define PCC_ENABLE_CLOCK	BIT32(PCC_CGC_BIT_SHIFT)
13 #define PCC_DISABLE_CLOCK	BIT32(0)
14 
15 #define PCC_CAAM		0x90
16 
17 #endif /* __IMX7ULP_CRM_H__ */
18