1 /* 2 * Copyright (c) 2022, MediaTek Inc. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef MTK_DCM_H 8 #define MTK_DCM_H 9 10 #include <stdbool.h> 11 12 bool dcm_check_state(uintptr_t addr, unsigned int mask, unsigned int compare); 13 int dcm_set_init(void); 14 15 #endif /* #ifndef MTK_DCM_H */ 16