Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.7-rc4 107 lines 2.7 kB view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Copyright (c) 2015 MediaTek Inc. 4 */ 5 6#ifndef __MTK_MMSYS_H 7#define __MTK_MMSYS_H 8 9#include <linux/mailbox_controller.h> 10#include <linux/mailbox/mtk-cmdq-mailbox.h> 11#include <linux/soc/mediatek/mtk-cmdq.h> 12 13enum mtk_ddp_comp_id; 14struct device; 15 16enum mtk_dpi_out_format_con { 17 MTK_DPI_RGB888_SDR_CON, 18 MTK_DPI_RGB888_DDR_CON, 19 MTK_DPI_RGB565_SDR_CON, 20 MTK_DPI_RGB565_DDR_CON 21}; 22 23enum mtk_ddp_comp_id { 24 DDP_COMPONENT_AAL0, 25 DDP_COMPONENT_AAL1, 26 DDP_COMPONENT_BLS, 27 DDP_COMPONENT_CCORR, 28 DDP_COMPONENT_COLOR0, 29 DDP_COMPONENT_COLOR1, 30 DDP_COMPONENT_DITHER0, 31 DDP_COMPONENT_DITHER1, 32 DDP_COMPONENT_DP_INTF0, 33 DDP_COMPONENT_DP_INTF1, 34 DDP_COMPONENT_DPI0, 35 DDP_COMPONENT_DPI1, 36 DDP_COMPONENT_DSC0, 37 DDP_COMPONENT_DSC1, 38 DDP_COMPONENT_DSI0, 39 DDP_COMPONENT_DSI1, 40 DDP_COMPONENT_DSI2, 41 DDP_COMPONENT_DSI3, 42 DDP_COMPONENT_ETHDR_MIXER, 43 DDP_COMPONENT_GAMMA, 44 DDP_COMPONENT_MDP_RDMA0, 45 DDP_COMPONENT_MDP_RDMA1, 46 DDP_COMPONENT_MDP_RDMA2, 47 DDP_COMPONENT_MDP_RDMA3, 48 DDP_COMPONENT_MDP_RDMA4, 49 DDP_COMPONENT_MDP_RDMA5, 50 DDP_COMPONENT_MDP_RDMA6, 51 DDP_COMPONENT_MDP_RDMA7, 52 DDP_COMPONENT_MERGE0, 53 DDP_COMPONENT_MERGE1, 54 DDP_COMPONENT_MERGE2, 55 DDP_COMPONENT_MERGE3, 56 DDP_COMPONENT_MERGE4, 57 DDP_COMPONENT_MERGE5, 58 DDP_COMPONENT_OD0, 59 DDP_COMPONENT_OD1, 60 DDP_COMPONENT_OVL0, 61 DDP_COMPONENT_OVL_2L0, 62 DDP_COMPONENT_OVL_2L1, 63 DDP_COMPONENT_OVL_2L2, 64 DDP_COMPONENT_OVL1, 65 DDP_COMPONENT_POSTMASK0, 66 DDP_COMPONENT_PWM0, 67 DDP_COMPONENT_PWM1, 68 DDP_COMPONENT_PWM2, 69 DDP_COMPONENT_RDMA0, 70 DDP_COMPONENT_RDMA1, 71 DDP_COMPONENT_RDMA2, 72 DDP_COMPONENT_RDMA4, 73 DDP_COMPONENT_UFOE, 74 DDP_COMPONENT_WDMA0, 75 DDP_COMPONENT_WDMA1, 76 DDP_COMPONENT_ID_MAX, 77}; 78 79void mtk_mmsys_ddp_connect(struct device *dev, 80 enum mtk_ddp_comp_id cur, 81 enum mtk_ddp_comp_id next); 82 83void mtk_mmsys_ddp_disconnect(struct device *dev, 84 enum mtk_ddp_comp_id cur, 85 enum mtk_ddp_comp_id next); 86 87void mtk_mmsys_ddp_dpi_fmt_config(struct device *dev, u32 val); 88 89void mtk_mmsys_merge_async_config(struct device *dev, int idx, int width, 90 int height, struct cmdq_pkt *cmdq_pkt); 91 92void mtk_mmsys_hdr_config(struct device *dev, int be_width, int be_height, 93 struct cmdq_pkt *cmdq_pkt); 94 95void mtk_mmsys_mixer_in_config(struct device *dev, int idx, bool alpha_sel, u16 alpha, 96 u8 mode, u32 biwidth, struct cmdq_pkt *cmdq_pkt); 97 98void mtk_mmsys_mixer_in_channel_swap(struct device *dev, int idx, bool channel_swap, 99 struct cmdq_pkt *cmdq_pkt); 100 101void mtk_mmsys_vpp_rsz_merge_config(struct device *dev, u32 id, bool enable, 102 struct cmdq_pkt *cmdq_pkt); 103 104void mtk_mmsys_vpp_rsz_dcm_config(struct device *dev, bool enable, 105 struct cmdq_pkt *cmdq_pkt); 106 107#endif /* __MTK_MMSYS_H */