kernel-brax3-ubuntu-touch/drivers/misc/mediatek/vcp/rv/vcp_feature_table.c
erascape f319b992b1 kernel-5.15: Initial import brax3 UT kernel
* halium configs enabled

Signed-off-by: erascape <erascape@proton.me>
2025-09-23 15:17:10 +00:00

44 lines
786 B
C

// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2020 MediaTek Inc.
*/
#include <linux/module.h> /* needed by all modules */
#include "vcp_feature_define.h"
#include "vcp_ipi_pin.h"
#include "vcp.h"
/*vcp feature list*/
struct vcp_feature_tb feature_table[NUM_FEATURE_ID] = {
{
.feature = RTOS_FEATURE_ID,
.freq = 0,
.enable = 0,
.sys_id = VCPSYS_CORE0,
},
{
.feature = VDEC_FEATURE_ID,
.freq = 0,
.enable = 0,
.sys_id = VCPSYS_CORE0,
},
{
.feature = VENC_FEATURE_ID,
.freq = 0,
.enable = 0,
.sys_id = VCPSYS_CORE0,
},
{
.feature = GCE_FEATURE_ID,
.freq = 0,
.enable = 0,
.sys_id = VCPSYS_CORE0,
},
{
.feature = MMDVFS_FEATURE_ID,
.freq = 0,
.enable = 0,
.sys_id = VCPSYS_CORE0,
},
};
EXPORT_SYMBOL(feature_table);