Lines Matching refs:channel

76 	int (*dpi_select_source)(int port, enum omap_channel channel);
197 enum omap_channel channel) in dss_ctrl_pll_set_control_mux() argument
204 switch (channel) { in dss_ctrl_pll_set_control_mux()
451 void dss_select_lcd_clk_source(enum omap_channel channel, in dss_select_lcd_clk_source() argument
466 BUG_ON(channel != OMAP_DSS_CHANNEL_LCD); in dss_select_lcd_clk_source()
470 BUG_ON(channel != OMAP_DSS_CHANNEL_LCD2 && in dss_select_lcd_clk_source()
471 channel != OMAP_DSS_CHANNEL_LCD3); in dss_select_lcd_clk_source()
479 pos = channel == OMAP_DSS_CHANNEL_LCD ? 0 : in dss_select_lcd_clk_source()
480 (channel == OMAP_DSS_CHANNEL_LCD2 ? 12 : 19); in dss_select_lcd_clk_source()
483 ix = channel == OMAP_DSS_CHANNEL_LCD ? 0 : in dss_select_lcd_clk_source()
484 (channel == OMAP_DSS_CHANNEL_LCD2 ? 1 : 2); in dss_select_lcd_clk_source()
498 enum omap_dss_clk_source dss_get_lcd_clk_source(enum omap_channel channel) in dss_get_lcd_clk_source() argument
501 int ix = channel == OMAP_DSS_CHANNEL_LCD ? 0 : in dss_get_lcd_clk_source()
502 (channel == OMAP_DSS_CHANNEL_LCD2 ? 1 : 2); in dss_get_lcd_clk_source()
653 static int dss_dpi_select_source_omap2_omap3(int port, enum omap_channel channel) in dss_dpi_select_source_omap2_omap3() argument
655 if (channel != OMAP_DSS_CHANNEL_LCD) in dss_dpi_select_source_omap2_omap3()
661 static int dss_dpi_select_source_omap4(int port, enum omap_channel channel) in dss_dpi_select_source_omap4() argument
665 switch (channel) { in dss_dpi_select_source_omap4()
681 static int dss_dpi_select_source_omap5(int port, enum omap_channel channel) in dss_dpi_select_source_omap5() argument
685 switch (channel) { in dss_dpi_select_source_omap5()
707 static int dss_dpi_select_source_dra7xx(int port, enum omap_channel channel) in dss_dpi_select_source_dra7xx() argument
711 return dss_dpi_select_source_omap5(port, channel); in dss_dpi_select_source_dra7xx()
713 if (channel != OMAP_DSS_CHANNEL_LCD2) in dss_dpi_select_source_dra7xx()
717 if (channel != OMAP_DSS_CHANNEL_LCD3) in dss_dpi_select_source_dra7xx()
727 int dss_dpi_select_source(int port, enum omap_channel channel) in dss_dpi_select_source() argument
729 return dss.feat->dpi_select_source(port, channel); in dss_dpi_select_source()