24 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * Copyright (c) 2016 MediaTek Inc.4 * Author: Ming Hsiu Tsai <minghsiu.tsai@mediatek.com>5 */6 7#ifndef __MTK_MDP_REGS_H__8#define __MTK_MDP_REGS_H__9 10 11void mtk_mdp_hw_set_input_addr(struct mtk_mdp_ctx *ctx,12 struct mtk_mdp_addr *addr);13void mtk_mdp_hw_set_output_addr(struct mtk_mdp_ctx *ctx,14 struct mtk_mdp_addr *addr);15void mtk_mdp_hw_set_in_size(struct mtk_mdp_ctx *ctx);16void mtk_mdp_hw_set_in_image_format(struct mtk_mdp_ctx *ctx);17void mtk_mdp_hw_set_out_size(struct mtk_mdp_ctx *ctx);18void mtk_mdp_hw_set_out_image_format(struct mtk_mdp_ctx *ctx);19void mtk_mdp_hw_set_rotation(struct mtk_mdp_ctx *ctx);20void mtk_mdp_hw_set_global_alpha(struct mtk_mdp_ctx *ctx);21 22 23#endif /* __MTK_MDP_REGS_H__ */24