mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 14:13:39 +00:00

Now that all of the mmsys routing tables have been fixed, migrate all of them to use the MMSYS_ROUTE() macro: this will make sure that future additions to any of the tables for the currently supported SoCs are compile-time sanity checked, greatly reducing room for (way too common) mistakes. Link: https://lore.kernel.org/r/20250212100012.33001-8-angelogioacchino.delregno@collabora.com Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
35 lines
1.3 KiB
C
35 lines
1.3 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[] = {
|
|
MMSYS_ROUTE(OVL0, COLOR0,
|
|
MT8167_DISP_REG_CONFIG_DISP_OVL0_MOUT_EN, OVL0_MOUT_EN_COLOR0,
|
|
OVL0_MOUT_EN_COLOR0),
|
|
MMSYS_ROUTE(DITHER0, RDMA0,
|
|
MT8167_DISP_REG_CONFIG_DISP_DITHER_MOUT_EN, MT8167_DITHER_MOUT_EN_RDMA0,
|
|
MT8167_DITHER_MOUT_EN_RDMA0),
|
|
MMSYS_ROUTE(OVL0, COLOR0,
|
|
MT8167_DISP_REG_CONFIG_DISP_COLOR0_SEL_IN, COLOR0_SEL_IN_OVL0,
|
|
COLOR0_SEL_IN_OVL0),
|
|
MMSYS_ROUTE(RDMA0, DSI0,
|
|
MT8167_DISP_REG_CONFIG_DISP_DSI0_SEL_IN, MT8167_DSI0_SEL_IN_RDMA0,
|
|
MT8167_DSI0_SEL_IN_RDMA0),
|
|
MMSYS_ROUTE(RDMA0, DSI0,
|
|
MT8167_DISP_REG_CONFIG_DISP_RDMA0_SOUT_SEL_IN, MT8167_RDMA0_SOUT_DSI0,
|
|
MT8167_RDMA0_SOUT_DSI0),
|
|
};
|
|
|
|
#endif /* __SOC_MEDIATEK_MT8167_MMSYS_H */
|