Lines Matching refs:dbidev
57 struct mipi_dbi_dev *dbidev = drm_to_mipi_dbi_dev(pipe->crtc.dev); in yx240qv29_enable() local
58 struct mipi_dbi *dbi = &dbidev->dbi; in yx240qv29_enable()
67 ret = mipi_dbi_poweron_conditional_reset(dbidev); in yx240qv29_enable()
117 switch (dbidev->rotation) { in yx240qv29_enable()
134 mipi_dbi_enable_flush(dbidev, crtc_state, plane_state); in yx240qv29_enable()
176 struct mipi_dbi_dev *dbidev; in ili9341_probe() local
183 dbidev = devm_drm_dev_alloc(dev, &ili9341_driver, in ili9341_probe()
185 if (IS_ERR(dbidev)) in ili9341_probe()
186 return PTR_ERR(dbidev); in ili9341_probe()
188 dbi = &dbidev->dbi; in ili9341_probe()
189 drm = &dbidev->drm; in ili9341_probe()
199 dbidev->backlight = devm_of_find_backlight(dev); in ili9341_probe()
200 if (IS_ERR(dbidev->backlight)) in ili9341_probe()
201 return PTR_ERR(dbidev->backlight); in ili9341_probe()
209 ret = mipi_dbi_dev_init(dbidev, &ili9341_pipe_funcs, &yx240qv29_mode, rotation); in ili9341_probe()