mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
4e8988c634
The mmsys routing table of mt8195 vdosys0 has 2 DITHER components, so mmsys need to add DDP_COMPONENT_DITHER1 and change all usages of DITHER enum form DDP_COMPONENT_DITHER to DDP_COMPONENT_DITHER0. But its header need to keep DDP_COMPONENT_DITHER enum until drm/mediatek also changed it. Signed-off-by: jason-jh.lin <jason-jh.lin@mediatek.com> Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Reviewed-by: Rex-BC Chen <rex-bc.chen@mediatek.com> Link: https://lore.kernel.org/r/20220419094143.9561-7-jason-jh.lin@mediatek.com Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>
36 lines
1.2 KiB
C
36 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#ifndef __SOC_MEDIATEK_MT8167_MMSYS_H
|
|
#define __SOC_MEDIATEK_MT8167_MMSYS_H
|
|
|
|
#define MT8167_DISP_REG_CONFIG_DISP_OVL0_MOUT_EN 0x030
|
|
#define MT8167_DISP_REG_CONFIG_DISP_DITHER_MOUT_EN 0x038
|
|
#define MT8167_DISP_REG_CONFIG_DISP_COLOR0_SEL_IN 0x058
|
|
#define MT8167_DISP_REG_CONFIG_DISP_DSI0_SEL_IN 0x064
|
|
#define MT8167_DISP_REG_CONFIG_DISP_RDMA0_SOUT_SEL_IN 0x06c
|
|
|
|
#define MT8167_DITHER_MOUT_EN_RDMA0 0x1
|
|
#define MT8167_RDMA0_SOUT_DSI0 0x2
|
|
#define MT8167_DSI0_SEL_IN_RDMA0 0x1
|
|
|
|
static const struct mtk_mmsys_routes mt8167_mmsys_routing_table[] = {
|
|
{
|
|
DDP_COMPONENT_OVL0, DDP_COMPONENT_COLOR0,
|
|
MT8167_DISP_REG_CONFIG_DISP_OVL0_MOUT_EN, OVL0_MOUT_EN_COLOR0,
|
|
}, {
|
|
DDP_COMPONENT_DITHER0, DDP_COMPONENT_RDMA0,
|
|
MT8167_DISP_REG_CONFIG_DISP_DITHER_MOUT_EN, MT8167_DITHER_MOUT_EN_RDMA0
|
|
}, {
|
|
DDP_COMPONENT_OVL0, DDP_COMPONENT_COLOR0,
|
|
MT8167_DISP_REG_CONFIG_DISP_COLOR0_SEL_IN, COLOR0_SEL_IN_OVL0
|
|
}, {
|
|
DDP_COMPONENT_RDMA0, DDP_COMPONENT_DSI0,
|
|
MT8167_DISP_REG_CONFIG_DISP_DSI0_SEL_IN, MT8167_DSI0_SEL_IN_RDMA0
|
|
}, {
|
|
DDP_COMPONENT_RDMA0, DDP_COMPONENT_DSI0,
|
|
MT8167_DISP_REG_CONFIG_DISP_RDMA0_SOUT_SEL_IN, MT8167_RDMA0_SOUT_DSI0
|
|
},
|
|
};
|
|
|
|
#endif /* __SOC_MEDIATEK_MT8167_MMSYS_H */
|