1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Copyright (c) 2023 MediaTek Inc.
4 * Author: Ping-Hsun Wu <ping-hsun.wu@mediatek.com>
5 */
6
7#ifndef __MTK_MDP3_CFG_H__
8#define __MTK_MDP3_CFG_H__
9
10#include <linux/types.h>
11
12extern const struct mtk_mdp_driver_data mt8183_mdp_driver_data;
13
14struct mdp_dev;
15enum mtk_mdp_comp_id;
16
17s32 mdp_cfg_get_id_inner(struct mdp_dev *mdp_dev, enum mtk_mdp_comp_id id);
18enum mtk_mdp_comp_id mdp_cfg_get_id_public(struct mdp_dev *mdp_dev, s32 id);
19
20#endif  /* __MTK_MDP3_CFG_H__ */
21