144014763SCK Hu /* SPDX-License-Identifier: GPL-2.0-only */ 244014763SCK Hu 344014763SCK Hu #ifndef __SOC_MEDIATEK_MTK_MMSYS_H 444014763SCK Hu #define __SOC_MEDIATEK_MTK_MMSYS_H 544014763SCK Hu 644014763SCK Hu #define DISP_REG_CONFIG_DISP_OVL0_MOUT_EN 0x040 744014763SCK Hu #define DISP_REG_CONFIG_DISP_OVL1_MOUT_EN 0x044 844014763SCK Hu #define DISP_REG_CONFIG_DISP_OD_MOUT_EN 0x048 944014763SCK Hu #define DISP_REG_CONFIG_DISP_GAMMA_MOUT_EN 0x04c 1044014763SCK Hu #define DISP_REG_CONFIG_DISP_UFOE_MOUT_EN 0x050 1144014763SCK Hu #define DISP_REG_CONFIG_DISP_COLOR0_SEL_IN 0x084 1244014763SCK Hu #define DISP_REG_CONFIG_DISP_COLOR1_SEL_IN 0x088 1344014763SCK Hu #define DISP_REG_CONFIG_DSIE_SEL_IN 0x0a4 1444014763SCK Hu #define DISP_REG_CONFIG_DSIO_SEL_IN 0x0a8 1544014763SCK Hu #define DISP_REG_CONFIG_DPI_SEL_IN 0x0ac 1644014763SCK Hu #define DISP_REG_CONFIG_DISP_RDMA2_SOUT 0x0b8 1744014763SCK Hu #define DISP_REG_CONFIG_DISP_RDMA0_SOUT_EN 0x0c4 1844014763SCK Hu #define DISP_REG_CONFIG_DISP_RDMA1_SOUT_EN 0x0c8 1944014763SCK Hu #define DISP_REG_CONFIG_MMSYS_CG_CON0 0x100 2044014763SCK Hu 2144014763SCK Hu #define DISP_REG_CONFIG_DISP_OVL_MOUT_EN 0x030 2244014763SCK Hu #define DISP_REG_CONFIG_OUT_SEL 0x04c 2344014763SCK Hu #define DISP_REG_CONFIG_DSI_SEL 0x050 2444014763SCK Hu #define DISP_REG_CONFIG_DPI_SEL 0x064 2544014763SCK Hu 2644014763SCK Hu #define OVL0_MOUT_EN_COLOR0 0x1 2744014763SCK Hu #define OD_MOUT_EN_RDMA0 0x1 2844014763SCK Hu #define OD1_MOUT_EN_RDMA1 BIT(16) 2944014763SCK Hu #define UFOE_MOUT_EN_DSI0 0x1 3044014763SCK Hu #define COLOR0_SEL_IN_OVL0 0x1 3144014763SCK Hu #define OVL1_MOUT_EN_COLOR1 0x1 3244014763SCK Hu #define GAMMA_MOUT_EN_RDMA1 0x1 3344014763SCK Hu #define RDMA0_SOUT_DPI0 0x2 3444014763SCK Hu #define RDMA0_SOUT_DPI1 0x3 3544014763SCK Hu #define RDMA0_SOUT_DSI1 0x1 3644014763SCK Hu #define RDMA0_SOUT_DSI2 0x4 3744014763SCK Hu #define RDMA0_SOUT_DSI3 0x5 38*7bdcead7SCK Hu #define RDMA0_SOUT_MASK 0x7 3944014763SCK Hu #define RDMA1_SOUT_DPI0 0x2 4044014763SCK Hu #define RDMA1_SOUT_DPI1 0x3 4144014763SCK Hu #define RDMA1_SOUT_DSI1 0x1 4244014763SCK Hu #define RDMA1_SOUT_DSI2 0x4 4344014763SCK Hu #define RDMA1_SOUT_DSI3 0x5 44*7bdcead7SCK Hu #define RDMA1_SOUT_MASK 0x7 4544014763SCK Hu #define RDMA2_SOUT_DPI0 0x2 4644014763SCK Hu #define RDMA2_SOUT_DPI1 0x3 4744014763SCK Hu #define RDMA2_SOUT_DSI1 0x1 4844014763SCK Hu #define RDMA2_SOUT_DSI2 0x4 4944014763SCK Hu #define RDMA2_SOUT_DSI3 0x5 50*7bdcead7SCK Hu #define RDMA2_SOUT_MASK 0x7 5144014763SCK Hu #define DPI0_SEL_IN_RDMA1 0x1 5244014763SCK Hu #define DPI0_SEL_IN_RDMA2 0x3 53*7bdcead7SCK Hu #define DPI0_SEL_IN_MASK 0x3 5444014763SCK Hu #define DPI1_SEL_IN_RDMA1 (0x1 << 8) 5544014763SCK Hu #define DPI1_SEL_IN_RDMA2 (0x3 << 8) 56*7bdcead7SCK Hu #define DPI1_SEL_IN_MASK (0x3 << 8) 5744014763SCK Hu #define DSI0_SEL_IN_RDMA1 0x1 5844014763SCK Hu #define DSI0_SEL_IN_RDMA2 0x4 59*7bdcead7SCK Hu #define DSI0_SEL_IN_MASK 0x7 6044014763SCK Hu #define DSI1_SEL_IN_RDMA1 0x1 6144014763SCK Hu #define DSI1_SEL_IN_RDMA2 0x4 62*7bdcead7SCK Hu #define DSI1_SEL_IN_MASK 0x7 6344014763SCK Hu #define DSI2_SEL_IN_RDMA1 (0x1 << 16) 6444014763SCK Hu #define DSI2_SEL_IN_RDMA2 (0x4 << 16) 65*7bdcead7SCK Hu #define DSI2_SEL_IN_MASK (0x7 << 16) 6644014763SCK Hu #define DSI3_SEL_IN_RDMA1 (0x1 << 16) 6744014763SCK Hu #define DSI3_SEL_IN_RDMA2 (0x4 << 16) 68*7bdcead7SCK Hu #define DSI3_SEL_IN_MASK (0x7 << 16) 6944014763SCK Hu #define COLOR1_SEL_IN_OVL1 0x1 7044014763SCK Hu 7144014763SCK Hu #define OVL_MOUT_EN_RDMA 0x1 7244014763SCK Hu #define BLS_TO_DSI_RDMA1_TO_DPI1 0x8 7344014763SCK Hu #define BLS_TO_DPI_RDMA1_TO_DSI 0x2 74*7bdcead7SCK Hu #define BLS_RDMA1_DSI_DPI_MASK 0xf 7544014763SCK Hu #define DSI_SEL_IN_BLS 0x0 7644014763SCK Hu #define DPI_SEL_IN_BLS 0x0 77*7bdcead7SCK Hu #define DPI_SEL_IN_MASK 0x1 7844014763SCK Hu #define DSI_SEL_IN_RDMA 0x1 79*7bdcead7SCK Hu #define DSI_SEL_IN_MASK 0x1 8044014763SCK Hu 8144014763SCK Hu struct mtk_mmsys_routes { 8244014763SCK Hu u32 from_comp; 8344014763SCK Hu u32 to_comp; 8444014763SCK Hu u32 addr; 85*7bdcead7SCK Hu u32 mask; 8644014763SCK Hu u32 val; 8744014763SCK Hu }; 8844014763SCK Hu 8944014763SCK Hu struct mtk_mmsys_driver_data { 9044014763SCK Hu const char *clk_driver; 9144014763SCK Hu const struct mtk_mmsys_routes *routes; 9244014763SCK Hu const unsigned int num_routes; 9344014763SCK Hu }; 9444014763SCK Hu 9544014763SCK Hu /* 9644014763SCK Hu * Routes in mt8173, mt2701, mt2712 are different. That means 9744014763SCK Hu * in the same register address, it controls different input/output 9844014763SCK Hu * selection for each SoC. But, right now, they use the same table as 9944014763SCK Hu * default routes meet their requirements. But we don't have the complete 10044014763SCK Hu * route information for these three SoC, so just keep them in the same 10144014763SCK Hu * table. After we've more information, we could separate mt2701, mt2712 10244014763SCK Hu * to an independent table. 10344014763SCK Hu */ 10444014763SCK Hu static const struct mtk_mmsys_routes mmsys_default_routing_table[] = { 10544014763SCK Hu { 10644014763SCK Hu DDP_COMPONENT_BLS, DDP_COMPONENT_DSI0, 107*7bdcead7SCK Hu DISP_REG_CONFIG_OUT_SEL, BLS_RDMA1_DSI_DPI_MASK, 108*7bdcead7SCK Hu BLS_TO_DSI_RDMA1_TO_DPI1 10944014763SCK Hu }, { 11044014763SCK Hu DDP_COMPONENT_BLS, DDP_COMPONENT_DSI0, 111*7bdcead7SCK Hu DISP_REG_CONFIG_DSI_SEL, DSI_SEL_IN_MASK, 112*7bdcead7SCK Hu DSI_SEL_IN_BLS 11344014763SCK Hu }, { 11444014763SCK Hu DDP_COMPONENT_BLS, DDP_COMPONENT_DPI0, 115*7bdcead7SCK Hu DISP_REG_CONFIG_OUT_SEL, BLS_RDMA1_DSI_DPI_MASK, 116*7bdcead7SCK Hu BLS_TO_DPI_RDMA1_TO_DSI 11744014763SCK Hu }, { 11844014763SCK Hu DDP_COMPONENT_BLS, DDP_COMPONENT_DPI0, 119*7bdcead7SCK Hu DISP_REG_CONFIG_DSI_SEL, DSI_SEL_IN_MASK, 120*7bdcead7SCK Hu DSI_SEL_IN_RDMA 12144014763SCK Hu }, { 12244014763SCK Hu DDP_COMPONENT_BLS, DDP_COMPONENT_DPI0, 123*7bdcead7SCK Hu DISP_REG_CONFIG_DPI_SEL, DPI_SEL_IN_MASK, 124*7bdcead7SCK Hu DPI_SEL_IN_BLS 12544014763SCK Hu }, { 12644014763SCK Hu DDP_COMPONENT_GAMMA, DDP_COMPONENT_RDMA1, 127*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_GAMMA_MOUT_EN, GAMMA_MOUT_EN_RDMA1, 128*7bdcead7SCK Hu GAMMA_MOUT_EN_RDMA1 12944014763SCK Hu }, { 13044014763SCK Hu DDP_COMPONENT_OD0, DDP_COMPONENT_RDMA0, 131*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_OD_MOUT_EN, OD_MOUT_EN_RDMA0, 132*7bdcead7SCK Hu OD_MOUT_EN_RDMA0 13344014763SCK Hu }, { 13444014763SCK Hu DDP_COMPONENT_OD1, DDP_COMPONENT_RDMA1, 135*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_OD_MOUT_EN, OD1_MOUT_EN_RDMA1, 136*7bdcead7SCK Hu OD1_MOUT_EN_RDMA1 13744014763SCK Hu }, { 13844014763SCK Hu DDP_COMPONENT_OVL0, DDP_COMPONENT_COLOR0, 139*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_OVL0_MOUT_EN, OVL0_MOUT_EN_COLOR0, 140*7bdcead7SCK Hu OVL0_MOUT_EN_COLOR0 14144014763SCK Hu }, { 14244014763SCK Hu DDP_COMPONENT_OVL0, DDP_COMPONENT_COLOR0, 143*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_COLOR0_SEL_IN, COLOR0_SEL_IN_OVL0, 144*7bdcead7SCK Hu COLOR0_SEL_IN_OVL0 14544014763SCK Hu }, { 14644014763SCK Hu DDP_COMPONENT_OVL0, DDP_COMPONENT_RDMA0, 147*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_OVL_MOUT_EN, OVL_MOUT_EN_RDMA, 148*7bdcead7SCK Hu OVL_MOUT_EN_RDMA 14944014763SCK Hu }, { 15044014763SCK Hu DDP_COMPONENT_OVL1, DDP_COMPONENT_COLOR1, 151*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_OVL1_MOUT_EN, OVL1_MOUT_EN_COLOR1, 152*7bdcead7SCK Hu OVL1_MOUT_EN_COLOR1 15344014763SCK Hu }, { 15444014763SCK Hu DDP_COMPONENT_OVL1, DDP_COMPONENT_COLOR1, 155*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_COLOR1_SEL_IN, COLOR1_SEL_IN_OVL1, 156*7bdcead7SCK Hu COLOR1_SEL_IN_OVL1 15744014763SCK Hu }, { 15844014763SCK Hu DDP_COMPONENT_RDMA0, DDP_COMPONENT_DPI0, 159*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_RDMA0_SOUT_EN, RDMA0_SOUT_MASK, 160*7bdcead7SCK Hu RDMA0_SOUT_DPI0 16144014763SCK Hu }, { 16244014763SCK Hu DDP_COMPONENT_RDMA0, DDP_COMPONENT_DPI1, 163*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_RDMA0_SOUT_EN, RDMA0_SOUT_MASK, 164*7bdcead7SCK Hu RDMA0_SOUT_DPI1 16544014763SCK Hu }, { 16644014763SCK Hu DDP_COMPONENT_RDMA0, DDP_COMPONENT_DSI1, 167*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_RDMA0_SOUT_EN, RDMA0_SOUT_MASK, 168*7bdcead7SCK Hu RDMA0_SOUT_DSI1 16944014763SCK Hu }, { 17044014763SCK Hu DDP_COMPONENT_RDMA0, DDP_COMPONENT_DSI2, 171*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_RDMA0_SOUT_EN, RDMA0_SOUT_MASK, 172*7bdcead7SCK Hu RDMA0_SOUT_DSI2 17344014763SCK Hu }, { 17444014763SCK Hu DDP_COMPONENT_RDMA0, DDP_COMPONENT_DSI3, 175*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_RDMA0_SOUT_EN, RDMA0_SOUT_MASK, 176*7bdcead7SCK Hu RDMA0_SOUT_DSI3 17744014763SCK Hu }, { 17844014763SCK Hu DDP_COMPONENT_RDMA1, DDP_COMPONENT_DPI0, 179*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_RDMA1_SOUT_EN, RDMA1_SOUT_MASK, 180*7bdcead7SCK Hu RDMA1_SOUT_DPI0 18144014763SCK Hu }, { 18244014763SCK Hu DDP_COMPONENT_RDMA1, DDP_COMPONENT_DPI0, 183*7bdcead7SCK Hu DISP_REG_CONFIG_DPI_SEL_IN, DPI0_SEL_IN_MASK, 184*7bdcead7SCK Hu DPI0_SEL_IN_RDMA1 18544014763SCK Hu }, { 18644014763SCK Hu DDP_COMPONENT_RDMA1, DDP_COMPONENT_DPI1, 187*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_RDMA1_SOUT_EN, RDMA1_SOUT_MASK, 188*7bdcead7SCK Hu RDMA1_SOUT_DPI1 18944014763SCK Hu }, { 19044014763SCK Hu DDP_COMPONENT_RDMA1, DDP_COMPONENT_DPI1, 191*7bdcead7SCK Hu DISP_REG_CONFIG_DPI_SEL_IN, DPI1_SEL_IN_MASK, 192*7bdcead7SCK Hu DPI1_SEL_IN_RDMA1 19344014763SCK Hu }, { 19444014763SCK Hu DDP_COMPONENT_RDMA1, DDP_COMPONENT_DSI0, 195*7bdcead7SCK Hu DISP_REG_CONFIG_DSIE_SEL_IN, DSI0_SEL_IN_MASK, 196*7bdcead7SCK Hu DSI0_SEL_IN_RDMA1 19744014763SCK Hu }, { 19844014763SCK Hu DDP_COMPONENT_RDMA1, DDP_COMPONENT_DSI1, 199*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_RDMA1_SOUT_EN, RDMA1_SOUT_MASK, 200*7bdcead7SCK Hu RDMA1_SOUT_DSI1 20144014763SCK Hu }, { 20244014763SCK Hu DDP_COMPONENT_RDMA1, DDP_COMPONENT_DSI1, 203*7bdcead7SCK Hu DISP_REG_CONFIG_DSIO_SEL_IN, DSI1_SEL_IN_MASK, 204*7bdcead7SCK Hu DSI1_SEL_IN_RDMA1 20544014763SCK Hu }, { 20644014763SCK Hu DDP_COMPONENT_RDMA1, DDP_COMPONENT_DSI2, 207*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_RDMA1_SOUT_EN, RDMA1_SOUT_MASK, 208*7bdcead7SCK Hu RDMA1_SOUT_DSI2 20944014763SCK Hu }, { 21044014763SCK Hu DDP_COMPONENT_RDMA1, DDP_COMPONENT_DSI2, 211*7bdcead7SCK Hu DISP_REG_CONFIG_DSIE_SEL_IN, DSI2_SEL_IN_MASK, 212*7bdcead7SCK Hu DSI2_SEL_IN_RDMA1 21344014763SCK Hu }, { 21444014763SCK Hu DDP_COMPONENT_RDMA1, DDP_COMPONENT_DSI3, 215*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_RDMA1_SOUT_EN, RDMA1_SOUT_MASK, 216*7bdcead7SCK Hu RDMA1_SOUT_DSI3 21744014763SCK Hu }, { 21844014763SCK Hu DDP_COMPONENT_RDMA1, DDP_COMPONENT_DSI3, 219*7bdcead7SCK Hu DISP_REG_CONFIG_DSIO_SEL_IN, DSI3_SEL_IN_MASK, 220*7bdcead7SCK Hu DSI3_SEL_IN_RDMA1 22144014763SCK Hu }, { 22244014763SCK Hu DDP_COMPONENT_RDMA2, DDP_COMPONENT_DPI0, 223*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_RDMA2_SOUT, RDMA2_SOUT_MASK, 224*7bdcead7SCK Hu RDMA2_SOUT_DPI0 22544014763SCK Hu }, { 22644014763SCK Hu DDP_COMPONENT_RDMA2, DDP_COMPONENT_DPI0, 227*7bdcead7SCK Hu DISP_REG_CONFIG_DPI_SEL_IN, DPI0_SEL_IN_MASK, 228*7bdcead7SCK Hu DPI0_SEL_IN_RDMA2 22944014763SCK Hu }, { 23044014763SCK Hu DDP_COMPONENT_RDMA2, DDP_COMPONENT_DPI1, 231*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_RDMA2_SOUT, RDMA2_SOUT_MASK, 232*7bdcead7SCK Hu RDMA2_SOUT_DPI1 23344014763SCK Hu }, { 23444014763SCK Hu DDP_COMPONENT_RDMA2, DDP_COMPONENT_DPI1, 235*7bdcead7SCK Hu DISP_REG_CONFIG_DPI_SEL_IN, DPI1_SEL_IN_MASK, 236*7bdcead7SCK Hu DPI1_SEL_IN_RDMA2 23744014763SCK Hu }, { 23844014763SCK Hu DDP_COMPONENT_RDMA2, DDP_COMPONENT_DSI0, 239*7bdcead7SCK Hu DISP_REG_CONFIG_DSIE_SEL_IN, DSI0_SEL_IN_MASK, 240*7bdcead7SCK Hu DSI0_SEL_IN_RDMA2 24144014763SCK Hu }, { 24244014763SCK Hu DDP_COMPONENT_RDMA2, DDP_COMPONENT_DSI1, 243*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_RDMA2_SOUT, RDMA2_SOUT_MASK, 244*7bdcead7SCK Hu RDMA2_SOUT_DSI1 24544014763SCK Hu }, { 24644014763SCK Hu DDP_COMPONENT_RDMA2, DDP_COMPONENT_DSI1, 247*7bdcead7SCK Hu DISP_REG_CONFIG_DSIO_SEL_IN, DSI1_SEL_IN_MASK, 248*7bdcead7SCK Hu DSI1_SEL_IN_RDMA2 24944014763SCK Hu }, { 25044014763SCK Hu DDP_COMPONENT_RDMA2, DDP_COMPONENT_DSI2, 251*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_RDMA2_SOUT, RDMA2_SOUT_MASK, 252*7bdcead7SCK Hu RDMA2_SOUT_DSI2 25344014763SCK Hu }, { 25444014763SCK Hu DDP_COMPONENT_RDMA2, DDP_COMPONENT_DSI2, 255*7bdcead7SCK Hu DISP_REG_CONFIG_DSIE_SEL_IN, DSI2_SEL_IN_MASK, 256*7bdcead7SCK Hu DSI2_SEL_IN_RDMA2 25744014763SCK Hu }, { 25844014763SCK Hu DDP_COMPONENT_RDMA2, DDP_COMPONENT_DSI3, 259*7bdcead7SCK Hu DISP_REG_CONFIG_DISP_RDMA2_SOUT, RDMA2_SOUT_MASK, 260*7bdcead7SCK Hu RDMA2_SOUT_DSI3 26144014763SCK Hu }, { 26244014763SCK Hu DDP_COMPONENT_RDMA2, DDP_COMPONENT_DSI3, 263*7bdcead7SCK Hu DISP_REG_CONFIG_DSIO_SEL_IN, DSI3_SEL_IN_MASK, 264*7bdcead7SCK Hu DSI3_SEL_IN_RDMA2 26544014763SCK Hu } 26644014763SCK Hu }; 26744014763SCK Hu 26844014763SCK Hu #endif /* __SOC_MEDIATEK_MTK_MMSYS_H */ 269