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