Lines Matching refs:config_regs
338 static void mtk_ddp_sout_sel(void __iomem *config_regs, in mtk_ddp_sout_sel() argument
344 config_regs + DISP_REG_CONFIG_OUT_SEL); in mtk_ddp_sout_sel()
347 void mtk_ddp_add_comp_to_path(void __iomem *config_regs, in mtk_ddp_add_comp_to_path() argument
355 reg = readl_relaxed(config_regs + addr) | value; in mtk_ddp_add_comp_to_path()
356 writel_relaxed(reg, config_regs + addr); in mtk_ddp_add_comp_to_path()
359 mtk_ddp_sout_sel(config_regs, cur, next); in mtk_ddp_add_comp_to_path()
363 reg = readl_relaxed(config_regs + addr) | value; in mtk_ddp_add_comp_to_path()
364 writel_relaxed(reg, config_regs + addr); in mtk_ddp_add_comp_to_path()
368 void mtk_ddp_remove_comp_from_path(void __iomem *config_regs, in mtk_ddp_remove_comp_from_path() argument
376 reg = readl_relaxed(config_regs + addr) & ~value; in mtk_ddp_remove_comp_from_path()
377 writel_relaxed(reg, config_regs + addr); in mtk_ddp_remove_comp_from_path()
382 reg = readl_relaxed(config_regs + addr) & ~value; in mtk_ddp_remove_comp_from_path()
383 writel_relaxed(reg, config_regs + addr); in mtk_ddp_remove_comp_from_path()