forked from OP-TEE/optee_os
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
core: imx: add imx7ulp CRM registers
Add imx7ulp CRM registers in a header file. Signed-off-by: Clement Faure <[email protected]> Acked-by: Etienne Carriere <[email protected]>
- Loading branch information
1 parent
7815588
commit 0f68a8c
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* SPDX-License-Identifier: BSD-2-Clause */ | ||
/* | ||
* Copyright 2017-2019 NXP | ||
*/ | ||
#ifndef __MX7ULP_CRM_H__ | ||
#define __MX7ULP_CRM_H__ | ||
|
||
#include <util.h> | ||
|
||
#define PCC_CGC_BIT_SHIFT 30 | ||
|
||
#define PCC_ENABLE_CLOCK BIT32(PCC_CGC_BIT_SHIFT) | ||
#define PCC_DISABLE_CLOCK BIT32(0) | ||
|
||
#define PCC_CAAM 0x90 | ||
|
||
#endif /* __MX7ULP_CRM_H__ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters