Lines Matching refs:panel
150 static inline struct rockchip_mcu_panel *to_rockchip_mcu_panel(struct rockchip_panel *panel) in to_rockchip_mcu_panel() argument
152 return container_of(panel, struct rockchip_mcu_panel, base); in to_rockchip_mcu_panel()
319 static void rockchip_mcu_panel_prepare(struct rockchip_panel *panel) in rockchip_mcu_panel_prepare() argument
321 struct rockchip_mcu_panel *mcu_panel = to_rockchip_mcu_panel(panel); in rockchip_mcu_panel_prepare()
346 ret = rockchip_mcu_panel_send_cmds(panel->state, mcu_panel->desc->init_seq); in rockchip_mcu_panel_prepare()
354 static void rockchip_mcu_panel_unprepare(struct rockchip_panel *panel) in rockchip_mcu_panel_unprepare() argument
356 struct rockchip_mcu_panel *mcu_panel = to_rockchip_mcu_panel(panel); in rockchip_mcu_panel_unprepare()
363 ret = rockchip_mcu_panel_send_cmds(panel->state, mcu_panel->desc->exit_seq); in rockchip_mcu_panel_unprepare()
380 static void rockchip_mcu_panel_enable(struct rockchip_panel *panel) in rockchip_mcu_panel_enable() argument
382 struct rockchip_mcu_panel *mcu_panel = to_rockchip_mcu_panel(panel); in rockchip_mcu_panel_enable()
396 static void rockchip_mcu_panel_disable(struct rockchip_panel *panel) in rockchip_mcu_panel_disable() argument
398 struct rockchip_mcu_panel *mcu_panel = to_rockchip_mcu_panel(panel); in rockchip_mcu_panel_disable()
597 rgb->connector.panel = &mcu_panel->base; in rockchip_rgb_probe()