/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (c) 2019 MediaTek Inc. */ #ifndef __SMI_HW_H__ #define __SMI_HW_H__ #include #include static const u32 smi_subsys_to_larbs[NR_SYSS] = { [SYS_DIS] = ((1 << 0) | (1 << (SMI_LARB_NUM))), [SYS_VDEC] = (1 << 1), [SYS_ISP] = (1 << 2), [SYS_CAM] = (1 << 3), [SYS_VENC] = (1 << 4), }; #if IS_ENABLED(CONFIG_MMPROFILE) #include static const char *smi_mmp_name[NR_SYSS] = { [SYS_DIS] = "DIS", [SYS_VDEC] = "VDE", [SYS_ISP] = "ISP", [SYS_CAM] = "CAM", [SYS_VENC] = "VEN", }; static mmp_event smi_mmp_event[NR_SYSS]; #endif #endif