19 lines
452 B
C
19 lines
452 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2019 MediaTek Inc.
|
|
*
|
|
* Author: ChenHung Yang <chenhung.yang@mediatek.com>
|
|
*/
|
|
|
|
#ifndef MTK_AOV_CONFIG_H
|
|
#define MTK_AOV_CONFIG_H
|
|
|
|
#define AOV_DEVICE_NAME "mtk_aov"
|
|
#define AOV_EVENT_IN_PLACE (0)
|
|
#define AOV_EVENT_COPY_IMG (1)
|
|
#define AOV_WAIT_POWER_ACK (1)
|
|
#define AOV_SLB_ALLOC_FREE (0)
|
|
#define AOV_FORCE_SKIP_MODE (1)
|
|
#define AOV_SUPPORT_TRACE (1)
|
|
|
|
#endif /* MTK_AOV_CONFIG_H */
|