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