Lines Matching refs:dbidev
41 struct mipi_dbi_dev *dbidev = drm_to_mipi_dbi_dev(pipe->crtc.dev); in yx240qv29_enable() local
42 struct mipi_dbi *dbi = &dbidev->dbi; in yx240qv29_enable()
51 ret = mipi_dbi_poweron_conditional_reset(dbidev); in yx240qv29_enable()
82 switch (dbidev->rotation) { in yx240qv29_enable()
98 mipi_dbi_enable_flush(dbidev, crtc_state, plane_state); in yx240qv29_enable()
140 struct mipi_dbi_dev *dbidev; in ili9163_probe() local
147 dbidev = devm_drm_dev_alloc(dev, &ili9163_driver, in ili9163_probe()
149 if (IS_ERR(dbidev)) in ili9163_probe()
150 return PTR_ERR(dbidev); in ili9163_probe()
152 dbi = &dbidev->dbi; in ili9163_probe()
153 drm = &dbidev->drm; in ili9163_probe()
169 dbidev->backlight = devm_of_find_backlight(dev); in ili9163_probe()
170 if (IS_ERR(dbidev->backlight)) in ili9163_probe()
171 return PTR_ERR(dbidev->backlight); in ili9163_probe()
179 ret = mipi_dbi_dev_init(dbidev, &ili9163_pipe_funcs, &yx240qv29_mode, rotation); in ili9163_probe()