xref: /rk3399_ARM-atf/plat/mediatek/include/drivers/mminfra_public.h (revision 6ef685a913f990314ed5f8f68986476d373b119b)
1*4794746eSYong Wu /*
2*4794746eSYong Wu  * Copyright (c) 2025, MediaTek Inc. All rights reserved.
3*4794746eSYong Wu  *
4*4794746eSYong Wu  * SPDX-License-Identifier: BSD-3-Clause
5*4794746eSYong Wu  */
6*4794746eSYong Wu #ifndef MMINFRA_PUBLIC_H
7*4794746eSYong Wu #define MMINFRA_PUBLIC_H
8*4794746eSYong Wu 
9*4794746eSYong Wu #define MMINFRA_RET_ERR		(-1)
10*4794746eSYong Wu #define MMINFRA_RET_POWER_OFF	0
11*4794746eSYong Wu #define MMINFRA_RET_POWER_ON	1
12*4794746eSYong Wu 
13*4794746eSYong Wu int mminfra_get_if_in_use(void);
14*4794746eSYong Wu int mminfra_put(void);
15*4794746eSYong Wu 
16*4794746eSYong Wu #endif
17