1
0
mirror of https://github.com/physwizz/a155-U-u1.git synced 2025-09-26 19:04:54 +00:00
Files
a155-U-u1/kernel-5.10/drivers/misc/mediatek/vcp/rv/vcp_feature_table.c
physwizz 99537be4e2 first
2024-03-11 06:53:12 +11:00

39 lines
692 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,
},
};
EXPORT_SYMBOL(feature_table);